diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..0a44a5cf --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +frontend/public/gridded-world.json filter=lfs diff=lfs merge=lfs -text diff --git a/.vscode/launch.json b/.vscode/launch.json index 6f3c990b..8f30e65a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -12,4 +12,4 @@ "webRoot": "${workspaceFolder}" } ] -} \ No newline at end of file +} diff --git a/backend/.vscode/launch.json b/backend/.vscode/launch.json index 019727ee..9701b48f 100644 --- a/backend/.vscode/launch.json +++ b/backend/.vscode/launch.json @@ -61,4 +61,4 @@ "cwd": "${workspaceFolder}" } ] -} \ No newline at end of file +} diff --git a/backend/migrations/20230920100538_add_future_data_table.sql b/backend/migrations/20230920100538_add_future_data_table.sql new file mode 100644 index 00000000..c43b0239 --- /dev/null +++ b/backend/migrations/20230920100538_add_future_data_table.sql @@ -0,0 +1,61 @@ +-- setup table for models, as each dataset can have multiple models +CREATE TABLE future_model ( + id SERIAL NOT NULL, + name TEXT NOT NULL, + dataset INT NOT NULL, + source SMALLINT NOT NULL, + domain float8 [] NOT NULL DEFAULT '{}', + PRIMARY KEY(id), + FOREIGN KEY(dataset) REFERENCES dataset(id), + FOREIGN KEY(source) REFERENCES data_source(id) +); + +-- each year will have a different confidence interval, so setup tables to store that information +-- stores upper ci for a county/country +CREATE TABLE ci_above ( + id SERIAL NOT NULL, + model INT NOT NULL, + geo_id SMALLINT NOT NULL, + PRIMARY KEY (id) +); + +-- stores lower ci for a county/country +CREATE TABLE ci_below ( + id SERIAL NOT NULL, + model INT NOT NULL, + geo_id SMALLINT NOT NULL, + PRIMARY KEY (id) +); + +-- setup table for future/predictive data +CREATE TABLE future_data ( + model INT NOT NULL, + ci_above INT, + ci_below INT, + start_date DATE NOT NULL, + end_date DATE NOT NULL, + interval SMALLINT NOT NULL, + id SMALLINT NOT NULL, + geography_type INT NOT NULL, + PRIMARY KEY ( + model, + start_date, + end_date, + id + ), + FOREIGN KEY (model) REFERENCES future_model(id), + FOREIGN KEY (ci_above) REFERENCES ci_above(id), + FOREIGN KEY (ci_below) REFERENCES ci_below(id), + CONSTRAINT data_geo_ids_fkey FOREIGN KEY (geography_type, id) REFERENCES geo_id (geography_type, id) +); + +-- add columns for years up to 2200 +DO $$ +DECLARE +cur_year INT := 2024; +BEGIN +WHILE cur_year <2201 LOOP +EXECUTE 'ALTER TABLE future_data ADD value_' || cur_year || ' FLOAT'; +cur_year := cur_year+1; +END LOOP; +END$$; \ No newline at end of file diff --git a/backend/migrations/20230921144639_remove-model-domain.sql b/backend/migrations/20230921144639_remove-model-domain.sql new file mode 100644 index 00000000..20a10d3b --- /dev/null +++ b/backend/migrations/20230921144639_remove-model-domain.sql @@ -0,0 +1,3 @@ +-- Remove domain from future model table, as future data already has a start and end date +ALTER TABLE + future_model DROP COLUMN domain; \ No newline at end of file diff --git a/backend/migrations/20230921145028_description-for-model.sql b/backend/migrations/20230921145028_description-for-model.sql new file mode 100644 index 00000000..002e8b3c --- /dev/null +++ b/backend/migrations/20230921145028_description-for-model.sql @@ -0,0 +1,5 @@ +-- Add column for a description +ALTER TABLE + future_model +ADD + COLUMN description TEXT; \ No newline at end of file diff --git a/backend/migrations/20240810112520_drop-future-tables.sql b/backend/migrations/20240810112520_drop-future-tables.sql new file mode 100644 index 00000000..8fb37972 --- /dev/null +++ b/backend/migrations/20240810112520_drop-future-tables.sql @@ -0,0 +1,5 @@ +-- future data visualization is not ready yet, so no need for the tables currently +DROP TABLE IF EXISTS future_data; +DROP TABLE IF EXISTS ci_above; +DROP TABLE IF EXISTS ci_below; +DROP TABLE IF EXISTS future_model; \ No newline at end of file diff --git a/backend/migrations/20240814143647_add-merra-era-projection-datasets.sql b/backend/migrations/20240814143647_add-merra-era-projection-datasets.sql new file mode 100644 index 00000000..c66fb8a7 --- /dev/null +++ b/backend/migrations/20240814143647_add-merra-era-projection-datasets.sql @@ -0,0 +1,65 @@ +INSERT INTO + dataset ( + short_name, + name, + description, + units, + geography_type + ) +VALUES + ( + 'cmi_MERRA2_ERA5', + 'cmi_MERRA2_ERA5', + 'placeholder', + '', + 2 + ), + ( + 'dry_MERRA2_ERA5', + 'dry_MERRA2_ERA5', + 'placeholder', + '', + 2 + ), + ( + 'gw_MERRA2_ERA5', + 'gw_MERRA2_ERA5', + 'placeholder', + '', + 2 + ), + ( + 'ht_MERRA2_ERA5', + 'ht_MERRA2_ERA5', + 'placeholder', + '', + 2 + ), + ( + 'pet_MERRA2_ERA5', + 'pet_MERRA2_ERA5', + 'placeholder', + '', + 2 + ), + ( + 'prc_MERRA2_ERA5', + 'prc_MERRA2_ERA5', + 'placeholder', + '', + 2 + ), + ( + 'ro_MERRA2_ERA5', + 'ro_MERRA2_ERA5', + 'placeholder', + '', + 2 + ), + ( + 'wet_MERRA2_ERA5', + 'wet_MERRA2_ERA5', + 'placeholder', + '', + 2 + ); diff --git a/backend/migrations/20240814144321_add-merra-era-cmi-projection-data.sql b/backend/migrations/20240814144321_add-merra-era-cmi-projection-data.sql new file mode 100644 index 00000000..a28fa5b3 --- /dev/null +++ b/backend/migrations/20240814144321_add-merra-era-cmi-projection-data.sql @@ -0,0 +1,1053 @@ +do $$ +DECLARE + dataset_id int; +BEGIN + SELECT id INTO dataset_id FROM dataset WHERE short_name = 'cmi_MERRA2_ERA5'; + + INSERT INTO data (id,value,start_date,end_date,source,dataset,geography_type) + VALUES + (12,-9.413127803,'2001-01-01','2022-12-31',1,dataset_id,2), + (24,-4.834548453,'2001-01-01','2022-12-31',1,dataset_id,2), + (204,-2.429965318,'2001-01-01','2022-12-31',1,dataset_id,2), + (72,-7.772952795,'2001-01-01','2022-12-31',1,dataset_id,2), + (854,-5.742465107,'2001-01-01','2022-12-31',1,dataset_id,2), + (108,0.067581394,'2001-01-01','2022-12-31',1,dataset_id,2), + (120,1.156987284,'2001-01-01','2022-12-31',1,dataset_id,2), + (140,-1.644053935,'2001-01-01','2022-12-31',1,dataset_id,2), + (148,-8.388824527,'2001-01-01','2022-12-31',1,dataset_id,2), + (818,-9.840767428,'2001-01-01','2022-12-31',1,dataset_id,2), + (566,-2.459253229,'2001-01-01','2022-12-31',1,dataset_id,2), + (178,2.875186789,'2001-01-01','2022-12-31',1,dataset_id,2), + (180,1.074942589,'2001-01-01','2022-12-31',1,dataset_id,2), + (384,-0.564704718,'2001-01-01','2022-12-31',1,dataset_id,2), + (262,-8.37103224,'2001-01-01','2022-12-31',1,dataset_id,2), + (226,6.126760334,'2001-01-01','2022-12-31',1,dataset_id,2), + (232,-8.109200994,'2001-01-01','2022-12-31',1,dataset_id,2), + (231,-4.660430374,'2001-01-01','2022-12-31',1,dataset_id,2), + (260,8.31595608,'2001-01-01','2022-12-31',1,dataset_id,2), + (266,4.325634333,'2001-01-01','2022-12-31',1,dataset_id,2), + (288,-0.964551137,'2001-01-01','2022-12-31',1,dataset_id,2), + (324,0.210506836,'2001-01-01','2022-12-31',1,dataset_id,2), + (624,-0.049362017,'2001-01-01','2022-12-31',1,dataset_id,2), + (404,-5.89269097,'2001-01-01','2022-12-31',1,dataset_id,2), + (426,-3.89983213,'2001-01-01','2022-12-31',1,dataset_id,2), + (430,4.649584415,'2001-01-01','2022-12-31',1,dataset_id,2), + (434,-9.726168972,'2001-01-01','2022-12-31',1,dataset_id,2), + (450,1.453359883,'2001-01-01','2022-12-31',1,dataset_id,2), + (454,-1.055394298,'2001-01-01','2022-12-31',1,dataset_id,2), + (466,-8.265279878,'2001-01-01','2022-12-31',1,dataset_id,2), + (478,-9.322487841,'2001-01-01','2022-12-31',1,dataset_id,2), + (504,-7.680139679,'2001-01-01','2022-12-31',1,dataset_id,2), + (508,-2.924214037,'2001-01-01','2022-12-31',1,dataset_id,2), + (516,-8.463477258,'2001-01-01','2022-12-31',1,dataset_id,2), + (562,-9.188031373,'2001-01-01','2022-12-31',1,dataset_id,2), + (646,0.433087124,'2001-01-01','2022-12-31',1,dataset_id,2), + (686,-6.130100827,'2001-01-01','2022-12-31',1,dataset_id,2), + (694,4.167080059,'2001-01-01','2022-12-31',1,dataset_id,2), + (706,-7.916452718,'2001-01-01','2022-12-31',1,dataset_id,2), + (729,-8.8937595,'2001-01-01','2022-12-31',1,dataset_id,2), + (834,-2.302852015,'2001-01-01','2022-12-31',1,dataset_id,2), + (710,-6.798420909,'2001-01-01','2022-12-31',1,dataset_id,2), + (728,-5.030799272,'2001-01-01','2022-12-31',1,dataset_id,2), + (748,-5.606614764,'2001-01-01','2022-12-31',1,dataset_id,2), + (270,-4.762559267,'2001-01-01','2022-12-31',1,dataset_id,2), + (768,-0.916602059,'2001-01-01','2022-12-31',1,dataset_id,2), + (788,-8.021666944,'2001-01-01','2022-12-31',1,dataset_id,2), + (800,-1.419418212,'2001-01-01','2022-12-31',1,dataset_id,2), + (732,-9.45379794,'2001-01-01','2022-12-31',1,dataset_id,2), + (894,-4.099755044,'2001-01-01','2022-12-31',1,dataset_id,2), + (716,-6.151620024,'2001-01-01','2022-12-31',1,dataset_id,2), + (620,-3.212351153,'2001-01-01','2022-12-31',1,dataset_id,2), + (4,-8.191533219,'2001-01-01','2022-12-31',1,dataset_id,2), + (50,4.621362287,'2001-01-01','2022-12-31',1,dataset_id,2), + (64,2.501602147,'2001-01-01','2022-12-31',1,dataset_id,2), + (104,-2.970487799,'2001-01-01','2022-12-31',1,dataset_id,2), + (116,0.360987631,'2001-01-01','2022-12-31',1,dataset_id,2), + (156,-3.748898308,'2001-01-01','2022-12-31',1,dataset_id,2), + (356,-2.958912493,'2001-01-01','2022-12-31',1,dataset_id,2), + (392,5.998717955,'2001-01-01','2022-12-31',1,dataset_id,2), + (398,-7.247387731,'2001-01-01','2022-12-31',1,dataset_id,2), + (417,-6.039139816,'2001-01-01','2022-12-31',1,dataset_id,2), + (418,-0.738159178,'2001-01-01','2022-12-31',1,dataset_id,2), + (496,-7.325824629,'2001-01-01','2022-12-31',1,dataset_id,2), + (524,0.49231374,'2001-01-01','2022-12-31',1,dataset_id,2), + (408,2.306776449,'2001-01-01','2022-12-31',1,dataset_id,2), + (586,-7.932078724,'2001-01-01','2022-12-31',1,dataset_id,2), + (643,2.701145783,'2001-01-01','2022-12-31',1,dataset_id,2), + (410,4.167366261,'2001-01-01','2022-12-31',1,dataset_id,2), + (144,4.266197559,'2001-01-01','2022-12-31',1,dataset_id,2), + (158,6.344345584,'2001-01-01','2022-12-31',1,dataset_id,2), + (762,-7.252864796,'2001-01-01','2022-12-31',1,dataset_id,2), + (764,1.009209698,'2001-01-01','2022-12-31',1,dataset_id,2), + (795,-9.054011716,'2001-01-01','2022-12-31',1,dataset_id,2), + (860,-8.746095922,'2001-01-01','2022-12-31',1,dataset_id,2), + (704,2.016939329,'2001-01-01','2022-12-31',1,dataset_id,2), + (8,0.11208502,'2001-01-01','2022-12-31',1,dataset_id,2), + (51,-6.392496882,'2001-01-01','2022-12-31',1,dataset_id,2), + (40,2.545420338,'2001-01-01','2022-12-31',1,dataset_id,2), + (31,-6.767275123,'2001-01-01','2022-12-31',1,dataset_id,2), + (112,0.649702355,'2001-01-01','2022-12-31',1,dataset_id,2), + (56,1.182965325,'2001-01-01','2022-12-31',1,dataset_id,2), + (70,0.238757402,'2001-01-01','2022-12-31',1,dataset_id,2), + (100,-3.83300684,'2001-01-01','2022-12-31',1,dataset_id,2), + (191,0.675627961,'2001-01-01','2022-12-31',1,dataset_id,2), + (196,-3.704311172,'2001-01-01','2022-12-31',1,dataset_id,2), + (203,-0.859761929,'2001-01-01','2022-12-31',1,dataset_id,2), + (208,5.045764364,'2001-01-01','2022-12-31',1,dataset_id,2), + (233,3.451185608,'2001-01-01','2022-12-31',1,dataset_id,2), + (246,5.058005283,'2001-01-01','2022-12-31',1,dataset_id,2), + (250,-0.780303997,'2001-01-01','2022-12-31',1,dataset_id,2), + (275,-7.412404374,'2001-01-01','2022-12-31',1,dataset_id,2), + (268,-1.110628582,'2001-01-01','2022-12-31',1,dataset_id,2), + (276,0.350761289,'2001-01-01','2022-12-31',1,dataset_id,2), + (300,-2.695818539,'2001-01-01','2022-12-31',1,dataset_id,2), + (348,-3.530781037,'2001-01-01','2022-12-31',1,dataset_id,2), + (352,8.647828121,'2001-01-01','2022-12-31',1,dataset_id,2), + (364,-8.753292433,'2001-01-01','2022-12-31',1,dataset_id,2), + (368,-9.245616832,'2001-01-01','2022-12-31',1,dataset_id,2), + (372,6.276282349,'2001-01-01','2022-12-31',1,dataset_id,2), + (376,-7.937642343,'2001-01-01','2022-12-31',1,dataset_id,2), + (380,-0.781799826,'2001-01-01','2022-12-31',1,dataset_id,2), + (400,-9.492773708,'2001-01-01','2022-12-31',1,dataset_id,2), + (414,-9.7850027,'2001-01-01','2022-12-31',1,dataset_id,2), + (428,2.478548691,'2001-01-01','2022-12-31',1,dataset_id,2), + (422,-5.53191654,'2001-01-01','2022-12-31',1,dataset_id,2), + (440,1.666835352,'2001-01-01','2022-12-31',1,dataset_id,2), + (442,0.982873297,'2001-01-01','2022-12-31',1,dataset_id,2), + (807,-3.212859302,'2001-01-01','2022-12-31',1,dataset_id,2), + (498,-4.533381546,'2001-01-01','2022-12-31',1,dataset_id,2), + (499,3.397217031,'2001-01-01','2022-12-31',1,dataset_id,2), + (528,2.403926163,'2001-01-01','2022-12-31',1,dataset_id,2), + (578,7.563947667,'2001-01-01','2022-12-31',1,dataset_id,2), + (512,-9.470610351,'2001-01-01','2022-12-31',1,dataset_id,2), + (616,-0.853810005,'2001-01-01','2022-12-31',1,dataset_id,2), + (634,-9.683069169,'2001-01-01','2022-12-31',1,dataset_id,2), + (642,-2.760076693,'2001-01-01','2022-12-31',1,dataset_id,2), + (682,-9.858607454,'2001-01-01','2022-12-31',1,dataset_id,2), + (688,-2.6451208,'2001-01-01','2022-12-31',1,dataset_id,2), + (703,-0.837755751,'2001-01-01','2022-12-31',1,dataset_id,2), + (705,2.005696151,'2001-01-01','2022-12-31',1,dataset_id,2), + (724,-5.027840061,'2001-01-01','2022-12-31',1,dataset_id,2), + (752,5.091872835,'2001-01-01','2022-12-31',1,dataset_id,2), + (756,4.978736814,'2001-01-01','2022-12-31',1,dataset_id,2), + (760,-8.576833038,'2001-01-01','2022-12-31',1,dataset_id,2), + (792,-4.916613337,'2001-01-01','2022-12-31',1,dataset_id,2), + (804,-2.930164183,'2001-01-01','2022-12-31',1,dataset_id,2), + (784,-9.698747488,'2001-01-01','2022-12-31',1,dataset_id,2), + (826,4.949525261,'2001-01-01','2022-12-31',1,dataset_id,2), + (887,-9.587954421,'2001-01-01','2022-12-31',1,dataset_id,2), + (84,4.984841229,'2001-01-01','2022-12-31',1,dataset_id,2), + (124,3.306875102,'2001-01-01','2022-12-31',1,dataset_id,2), + (170,4.132924178,'2001-01-01','2022-12-31',1,dataset_id,2), + (188,5.829841653,'2001-01-01','2022-12-31',1,dataset_id,2), + (192,-1.039985587,'2001-01-01','2022-12-31',1,dataset_id,2), + (214,-3.28169962,'2001-01-01','2022-12-31',1,dataset_id,2), + (222,1.313971869,'2001-01-01','2022-12-31',1,dataset_id,2), + (304,7.902002039,'2001-01-01','2022-12-31',1,dataset_id,2), + (320,3.112191129,'2001-01-01','2022-12-31',1,dataset_id,2), + (332,-2.448249599,'2001-01-01','2022-12-31',1,dataset_id,2), + (340,1.332087602,'2001-01-01','2022-12-31',1,dataset_id,2), + (388,4.410784065,'2001-01-01','2022-12-31',1,dataset_id,2), + (484,-4.748812123,'2001-01-01','2022-12-31',1,dataset_id,2), + (558,2.262518467,'2001-01-01','2022-12-31',1,dataset_id,2), + (591,7.175543186,'2001-01-01','2022-12-31',1,dataset_id,2), + (630,4.033673686,'2001-01-01','2022-12-31',1,dataset_id,2), + (44,6.668467899,'2001-01-01','2022-12-31',1,dataset_id,2), + (840,-1.470917459,'2001-01-01','2022-12-31',1,dataset_id,2), + (10,9.4469621,'2001-01-01','2022-12-31',1,dataset_id,2), + (36,-6.993113621,'2001-01-01','2022-12-31',1,dataset_id,2), + (96,8.234777414,'2001-01-01','2022-12-31',1,dataset_id,2), + (242,8.07176831,'2001-01-01','2022-12-31',1,dataset_id,2), + (360,7.505574029,'2001-01-01','2022-12-31',1,dataset_id,2), + (458,7.705385333,'2001-01-01','2022-12-31',1,dataset_id,2), + (540,6.183752566,'2001-01-01','2022-12-31',1,dataset_id,2), + (554,3.965415642,'2001-01-01','2022-12-31',1,dataset_id,2), + (598,6.09734695,'2001-01-01','2022-12-31',1,dataset_id,2), + (608,7.31570447,'2001-01-01','2022-12-31',1,dataset_id,2), + (90,8.863118585,'2001-01-01','2022-12-31',1,dataset_id,2), + (626,1.596230118,'2001-01-01','2022-12-31',1,dataset_id,2), + (548,8.440483471,'2001-01-01','2022-12-31',1,dataset_id,2), + (32,-4.976693607,'2001-01-01','2022-12-31',1,dataset_id,2), + (68,-2.506895563,'2001-01-01','2022-12-31',1,dataset_id,2), + (76,0.90428195,'2001-01-01','2022-12-31',1,dataset_id,2), + (152,-2.323683183,'2001-01-01','2022-12-31',1,dataset_id,2), + (218,1.033333678,'2001-01-01','2022-12-31',1,dataset_id,2), + (238,5.145601143,'2001-01-01','2022-12-31',1,dataset_id,2), + (328,3.187892215,'2001-01-01','2022-12-31',1,dataset_id,2), + (740,4.30974154,'2001-01-01','2022-12-31',1,dataset_id,2), + (600,-2.853629883,'2001-01-01','2022-12-31',1,dataset_id,2), + (604,-1.652437571,'2001-01-01','2022-12-31',1,dataset_id,2), + (780,6.866521824,'2001-01-01','2022-12-31',1,dataset_id,2), + (858,0.340695107,'2001-01-01','2022-12-31',1,dataset_id,2), + (862,0.236646791,'2001-01-01','2022-12-31',1,dataset_id,2), + (12,-9.429371103,'1980-01-01','2000-12-31',1,dataset_id,2), + (24,-3.246907003,'1980-01-01','2000-12-31',1,dataset_id,2), + (204,-3.060390646,'1980-01-01','2000-12-31',1,dataset_id,2), + (72,-7.993787845,'1980-01-01','2000-12-31',1,dataset_id,2), + (854,-6.087317398,'1980-01-01','2000-12-31',1,dataset_id,2), + (108,-1.588718737,'1980-01-01','2000-12-31',1,dataset_id,2), + (120,2.628024163,'1980-01-01','2000-12-31',1,dataset_id,2), + (140,-0.114933846,'1980-01-01','2000-12-31',1,dataset_id,2), + (148,-8.30334479,'1980-01-01','2000-12-31',1,dataset_id,2), + (818,-9.848565502,'1980-01-01','2000-12-31',1,dataset_id,2), + (566,-1.575059846,'1980-01-01','2000-12-31',1,dataset_id,2), + (178,3.773565995,'1980-01-01','2000-12-31',1,dataset_id,2), + (180,3.048584875,'1980-01-01','2000-12-31',1,dataset_id,2), + (384,-0.024124942,'1980-01-01','2000-12-31',1,dataset_id,2), + (262,-7.67720726,'1980-01-01','2000-12-31',1,dataset_id,2), + (226,6.856519809,'1980-01-01','2000-12-31',1,dataset_id,2), + (232,-7.503153518,'1980-01-01','2000-12-31',1,dataset_id,2), + (231,-3.805375358,'1980-01-01','2000-12-31',1,dataset_id,2), + (260,8.299073348,'1980-01-01','2000-12-31',1,dataset_id,2), + (266,5.549122957,'1980-01-01','2000-12-31',1,dataset_id,2), + (288,-1.006557806,'1980-01-01','2000-12-31',1,dataset_id,2), + (324,1.535067842,'1980-01-01','2000-12-31',1,dataset_id,2), + (624,-0.660775928,'1980-01-01','2000-12-31',1,dataset_id,2), + (404,-6.03761419,'1980-01-01','2000-12-31',1,dataset_id,2), + (426,-3.248931805,'1980-01-01','2000-12-31',1,dataset_id,2), + (430,5.987846854,'1980-01-01','2000-12-31',1,dataset_id,2), + (434,-9.679073318,'1980-01-01','2000-12-31',1,dataset_id,2), + (450,1.981797599,'1980-01-01','2000-12-31',1,dataset_id,2), + (454,-0.821560141,'1980-01-01','2000-12-31',1,dataset_id,2), + (466,-8.361268762,'1980-01-01','2000-12-31',1,dataset_id,2), + (478,-9.474946408,'1980-01-01','2000-12-31',1,dataset_id,2), + (504,-7.896012306,'1980-01-01','2000-12-31',1,dataset_id,2), + (508,-3.024157541,'1980-01-01','2000-12-31',1,dataset_id,2), + (516,-8.736400233,'1980-01-01','2000-12-31',1,dataset_id,2), + (562,-9.286874495,'1980-01-01','2000-12-31',1,dataset_id,2), + (646,-1.833212032,'1980-01-01','2000-12-31',1,dataset_id,2), + (686,-6.555753255,'1980-01-01','2000-12-31',1,dataset_id,2), + (694,5.950055037,'1980-01-01','2000-12-31',1,dataset_id,2), + (706,-8.089524194,'1980-01-01','2000-12-31',1,dataset_id,2), + (729,-8.702558585,'1980-01-01','2000-12-31',1,dataset_id,2), + (834,-3.484820496,'1980-01-01','2000-12-31',1,dataset_id,2), + (710,-6.427447059,'1980-01-01','2000-12-31',1,dataset_id,2), + (728,-3.809409741,'1980-01-01','2000-12-31',1,dataset_id,2), + (748,-4.230290018,'1980-01-01','2000-12-31',1,dataset_id,2), + (270,-5.404771092,'1980-01-01','2000-12-31',1,dataset_id,2), + (768,-1.472388951,'1980-01-01','2000-12-31',1,dataset_id,2), + (788,-8.102911454,'1980-01-01','2000-12-31',1,dataset_id,2), + (800,-0.12926686,'1980-01-01','2000-12-31',1,dataset_id,2), + (732,-9.633158585,'1980-01-01','2000-12-31',1,dataset_id,2), + (894,-3.864325575,'1980-01-01','2000-12-31',1,dataset_id,2), + (716,-6.156671145,'1980-01-01','2000-12-31',1,dataset_id,2), + (620,-3.02762645,'1980-01-01','2000-12-31',1,dataset_id,2), + (4,-8.66285278,'1980-01-01','2000-12-31',1,dataset_id,2), + (50,-0.819764688,'1980-01-01','2000-12-31',1,dataset_id,2), + (64,0.415185081,'1980-01-01','2000-12-31',1,dataset_id,2), + (104,-4.118149033,'1980-01-01','2000-12-31',1,dataset_id,2), + (116,0.989794169,'1980-01-01','2000-12-31',1,dataset_id,2), + (156,-4.457938624,'1980-01-01','2000-12-31',1,dataset_id,2), + (356,-3.995727289,'1980-01-01','2000-12-31',1,dataset_id,2), + (392,5.397081797,'1980-01-01','2000-12-31',1,dataset_id,2), + (398,-7.60408659,'1980-01-01','2000-12-31',1,dataset_id,2), + (417,-6.678229115,'1980-01-01','2000-12-31',1,dataset_id,2), + (418,-0.019360332,'1980-01-01','2000-12-31',1,dataset_id,2), + (496,-7.046218994,'1980-01-01','2000-12-31',1,dataset_id,2), + (524,-4.240532099,'1980-01-01','2000-12-31',1,dataset_id,2), + (408,1.322147462,'1980-01-01','2000-12-31',1,dataset_id,2), + (586,-8.523409828,'1980-01-01','2000-12-31',1,dataset_id,2), + (643,2.689161353,'1980-01-01','2000-12-31',1,dataset_id,2), + (410,4.207792564,'1980-01-01','2000-12-31',1,dataset_id,2), + (144,0.766775933,'1980-01-01','2000-12-31',1,dataset_id,2), + (158,6.067504721,'1980-01-01','2000-12-31',1,dataset_id,2), + (762,-6.958682013,'1980-01-01','2000-12-31',1,dataset_id,2), + (764,0.297635771,'1980-01-01','2000-12-31',1,dataset_id,2), + (795,-9.163091409,'1980-01-01','2000-12-31',1,dataset_id,2), + (860,-8.884940509,'1980-01-01','2000-12-31',1,dataset_id,2), + (704,0.269559232,'1980-01-01','2000-12-31',1,dataset_id,2), + (8,-1.003842477,'1980-01-01','2000-12-31',1,dataset_id,2), + (51,-7.28093157,'1980-01-01','2000-12-31',1,dataset_id,2), + (40,2.371932146,'1980-01-01','2000-12-31',1,dataset_id,2), + (31,-6.751562082,'1980-01-01','2000-12-31',1,dataset_id,2), + (112,0.866921409,'1980-01-01','2000-12-31',1,dataset_id,2), + (56,2.039009668,'1980-01-01','2000-12-31',1,dataset_id,2), + (70,0.122566561,'1980-01-01','2000-12-31',1,dataset_id,2), + (100,-5.034069335,'1980-01-01','2000-12-31',1,dataset_id,2), + (191,0.502196073,'1980-01-01','2000-12-31',1,dataset_id,2), + (196,-4.200883411,'1980-01-01','2000-12-31',1,dataset_id,2), + (203,-0.583978063,'1980-01-01','2000-12-31',1,dataset_id,2), + (208,5.001665058,'1980-01-01','2000-12-31',1,dataset_id,2), + (233,4.302405052,'1980-01-01','2000-12-31',1,dataset_id,2), + (246,5.3645632,'1980-01-01','2000-12-31',1,dataset_id,2), + (250,-0.101726026,'1980-01-01','2000-12-31',1,dataset_id,2), + (275,-7.383509021,'1980-01-01','2000-12-31',1,dataset_id,2), + (268,-1.293414638,'1980-01-01','2000-12-31',1,dataset_id,2), + (276,1.174398356,'1980-01-01','2000-12-31',1,dataset_id,2), + (300,-3.519012001,'1980-01-01','2000-12-31',1,dataset_id,2), + (348,-3.484162573,'1980-01-01','2000-12-31',1,dataset_id,2), + (352,8.538566636,'1980-01-01','2000-12-31',1,dataset_id,2), + (364,-8.962915369,'1980-01-01','2000-12-31',1,dataset_id,2), + (368,-9.316793938,'1980-01-01','2000-12-31',1,dataset_id,2), + (372,6.201703533,'1980-01-01','2000-12-31',1,dataset_id,2), + (376,-7.878627061,'1980-01-01','2000-12-31',1,dataset_id,2), + (380,-1.231669934,'1980-01-01','2000-12-31',1,dataset_id,2), + (400,-9.409116395,'1980-01-01','2000-12-31',1,dataset_id,2), + (414,-9.540207754,'1980-01-01','2000-12-31',1,dataset_id,2), + (428,3.435585891,'1980-01-01','2000-12-31',1,dataset_id,2), + (422,-5.65685006,'1980-01-01','2000-12-31',1,dataset_id,2), + (440,2.220069377,'1980-01-01','2000-12-31',1,dataset_id,2), + (442,2.377029867,'1980-01-01','2000-12-31',1,dataset_id,2), + (807,-4.308775264,'1980-01-01','2000-12-31',1,dataset_id,2), + (498,-4.629194437,'1980-01-01','2000-12-31',1,dataset_id,2), + (499,2.217918111,'1980-01-01','2000-12-31',1,dataset_id,2), + (528,2.985852079,'1980-01-01','2000-12-31',1,dataset_id,2), + (578,7.549560289,'1980-01-01','2000-12-31',1,dataset_id,2), + (512,-9.696550955,'1980-01-01','2000-12-31',1,dataset_id,2), + (616,-0.675421424,'1980-01-01','2000-12-31',1,dataset_id,2), + (634,-9.49045268,'1980-01-01','2000-12-31',1,dataset_id,2), + (642,-3.858277659,'1980-01-01','2000-12-31',1,dataset_id,2), + (682,-9.785398548,'1980-01-01','2000-12-31',1,dataset_id,2), + (688,-3.536913023,'1980-01-01','2000-12-31',1,dataset_id,2), + (703,-0.742379228,'1980-01-01','2000-12-31',1,dataset_id,2), + (705,2.093619249,'1980-01-01','2000-12-31',1,dataset_id,2), + (724,-5.166957851,'1980-01-01','2000-12-31',1,dataset_id,2), + (752,5.446868946,'1980-01-01','2000-12-31',1,dataset_id,2), + (756,4.981903384,'1980-01-01','2000-12-31',1,dataset_id,2), + (760,-8.686701018,'1980-01-01','2000-12-31',1,dataset_id,2), + (792,-5.298054129,'1980-01-01','2000-12-31',1,dataset_id,2), + (804,-2.815212856,'1980-01-01','2000-12-31',1,dataset_id,2), + (784,-9.590310648,'1980-01-01','2000-12-31',1,dataset_id,2), + (826,4.796497676,'1980-01-01','2000-12-31',1,dataset_id,2), + (887,-9.576875179,'1980-01-01','2000-12-31',1,dataset_id,2), + (84,0.894707154,'1980-01-01','2000-12-31',1,dataset_id,2), + (124,3.068537472,'1980-01-01','2000-12-31',1,dataset_id,2), + (170,4.680111719,'1980-01-01','2000-12-31',1,dataset_id,2), + (188,1.601882041,'1980-01-01','2000-12-31',1,dataset_id,2), + (192,-1.664272758,'1980-01-01','2000-12-31',1,dataset_id,2), + (214,-2.409363861,'1980-01-01','2000-12-31',1,dataset_id,2), + (222,-4.085888735,'1980-01-01','2000-12-31',1,dataset_id,2), + (304,8.174695709,'1980-01-01','2000-12-31',1,dataset_id,2), + (320,-1.358626297,'1980-01-01','2000-12-31',1,dataset_id,2), + (332,-3.098568982,'1980-01-01','2000-12-31',1,dataset_id,2), + (340,-3.828328282,'1980-01-01','2000-12-31',1,dataset_id,2), + (388,2.016575368,'1980-01-01','2000-12-31',1,dataset_id,2), + (484,-4.739058079,'1980-01-01','2000-12-31',1,dataset_id,2), + (558,-3.469869786,'1980-01-01','2000-12-31',1,dataset_id,2), + (591,5.989219821,'1980-01-01','2000-12-31',1,dataset_id,2), + (630,5.224244818,'1980-01-01','2000-12-31',1,dataset_id,2), + (44,6.252353892,'1980-01-01','2000-12-31',1,dataset_id,2), + (840,-1.344389306,'1980-01-01','2000-12-31',1,dataset_id,2), + (10,9.386154275,'1980-01-01','2000-12-31',1,dataset_id,2), + (36,-6.940965953,'1980-01-01','2000-12-31',1,dataset_id,2), + (96,7.806783279,'1980-01-01','2000-12-31',1,dataset_id,2), + (242,7.330032939,'1980-01-01','2000-12-31',1,dataset_id,2), + (360,6.708894198,'1980-01-01','2000-12-31',1,dataset_id,2), + (458,7.185606299,'1980-01-01','2000-12-31',1,dataset_id,2), + (540,6.373556486,'1980-01-01','2000-12-31',1,dataset_id,2), + (554,4.533010278,'1980-01-01','2000-12-31',1,dataset_id,2), + (598,5.934241515,'1980-01-01','2000-12-31',1,dataset_id,2), + (608,5.0779085,'1980-01-01','2000-12-31',1,dataset_id,2), + (90,8.507807947,'1980-01-01','2000-12-31',1,dataset_id,2), + (626,1.284797207,'1980-01-01','2000-12-31',1,dataset_id,2), + (548,8.192129519,'1980-01-01','2000-12-31',1,dataset_id,2), + (32,-4.568501236,'1980-01-01','2000-12-31',1,dataset_id,2), + (68,-1.685466163,'1980-01-01','2000-12-31',1,dataset_id,2), + (76,2.298091818,'1980-01-01','2000-12-31',1,dataset_id,2), + (152,-1.756887669,'1980-01-01','2000-12-31',1,dataset_id,2), + (218,1.808068138,'1980-01-01','2000-12-31',1,dataset_id,2), + (238,5.097260928,'1980-01-01','2000-12-31',1,dataset_id,2), + (328,3.236938522,'1980-01-01','2000-12-31',1,dataset_id,2), + (740,4.626805499,'1980-01-01','2000-12-31',1,dataset_id,2), + (600,-2.981285925,'1980-01-01','2000-12-31',1,dataset_id,2), + (604,-1.529087177,'1980-01-01','2000-12-31',1,dataset_id,2), + (780,4.764163128,'1980-01-01','2000-12-31',1,dataset_id,2), + (858,-0.326417218,'1980-01-01','2000-12-31',1,dataset_id,2), + (862,3.175449387,'1980-01-01','2000-12-31',1,dataset_id,2), + (12,-9.421076638,'1980-01-01','2022-12-31',1,dataset_id,2), + (24,-4.100535052,'1980-01-01','2022-12-31',1,dataset_id,2), + (204,-2.742706801,'1980-01-01','2022-12-31',1,dataset_id,2), + (72,-7.881514724,'1980-01-01','2022-12-31',1,dataset_id,2), + (854,-5.91130995,'1980-01-01','2022-12-31',1,dataset_id,2), + (108,-0.731328017,'1980-01-01','2022-12-31',1,dataset_id,2), + (120,1.90791461,'1980-01-01','2022-12-31',1,dataset_id,2), + (140,-0.907253603,'1980-01-01','2022-12-31',1,dataset_id,2), + (148,-8.34818239,'1980-01-01','2022-12-31',1,dataset_id,2), + (818,-9.844652019,'1980-01-01','2022-12-31',1,dataset_id,2), + (566,-2.021963593,'1980-01-01','2022-12-31',1,dataset_id,2), + (178,3.34427221,'1980-01-01','2022-12-31',1,dataset_id,2), + (180,2.093133671,'1980-01-01','2022-12-31',1,dataset_id,2), + (384,-0.297219951,'1980-01-01','2022-12-31',1,dataset_id,2), + (262,-8.040363001,'1980-01-01','2022-12-31',1,dataset_id,2), + (226,6.512347987,'1980-01-01','2022-12-31',1,dataset_id,2), + (232,-7.820239,'1980-01-01','2022-12-31',1,dataset_id,2), + (231,-4.237219898,'1980-01-01','2022-12-31',1,dataset_id,2), + (260,8.308351824,'1980-01-01','2022-12-31',1,dataset_id,2), + (266,4.974999796,'1980-01-01','2022-12-31',1,dataset_id,2), + (288,-0.986503046,'1980-01-01','2022-12-31',1,dataset_id,2), + (324,0.87859263,'1980-01-01','2022-12-31',1,dataset_id,2), + (624,-0.341748605,'1980-01-01','2022-12-31',1,dataset_id,2), + (404,-5.966280712,'1980-01-01','2022-12-31',1,dataset_id,2), + (426,-3.587583321,'1980-01-01','2022-12-31',1,dataset_id,2), + (430,5.382949096,'1980-01-01','2022-12-31',1,dataset_id,2), + (434,-9.703280572,'1980-01-01','2022-12-31',1,dataset_id,2), + (450,1.725766359,'1980-01-01','2022-12-31',1,dataset_id,2), + (454,-0.942333394,'1980-01-01','2022-12-31',1,dataset_id,2), + (466,-8.313530949,'1980-01-01','2022-12-31',1,dataset_id,2), + (478,-9.397414877,'1980-01-01','2022-12-31',1,dataset_id,2), + (504,-7.78522068,'1980-01-01','2022-12-31',1,dataset_id,2), + (508,-2.975561131,'1980-01-01','2022-12-31',1,dataset_id,2), + (516,-8.598418327,'1980-01-01','2022-12-31',1,dataset_id,2), + (562,-9.236389717,'1980-01-01','2022-12-31',1,dataset_id,2), + (646,-0.655479474,'1980-01-01','2022-12-31',1,dataset_id,2), + (686,-6.339731924,'1980-01-01','2022-12-31',1,dataset_id,2), + (694,5.139767615,'1980-01-01','2022-12-31',1,dataset_id,2), + (706,-8.003433087,'1980-01-01','2022-12-31',1,dataset_id,2), + (729,-8.802883666,'1980-01-01','2022-12-31',1,dataset_id,2), + (834,-2.897071864,'1980-01-01','2022-12-31',1,dataset_id,2), + (710,-6.621688951,'1980-01-01','2022-12-31',1,dataset_id,2), + (728,-4.460313633,'1980-01-01','2022-12-31',1,dataset_id,2), + (748,-4.959372598,'1980-01-01','2022-12-31',1,dataset_id,2), + (270,-5.079922661,'1980-01-01','2022-12-31',1,dataset_id,2), + (768,-1.190081677,'1980-01-01','2022-12-31',1,dataset_id,2), + (788,-8.062027373,'1980-01-01','2022-12-31',1,dataset_id,2), + (800,-0.786480355,'1980-01-01','2022-12-31',1,dataset_id,2), + (732,-9.541692948,'1980-01-01','2022-12-31',1,dataset_id,2), + (894,-3.986647016,'1980-01-01','2022-12-31',1,dataset_id,2), + (716,-6.154848276,'1980-01-01','2022-12-31',1,dataset_id,2), + (620,-3.122141717,'1980-01-01','2022-12-31',1,dataset_id,2), + (4,-8.42844402,'1980-01-01','2022-12-31',1,dataset_id,2), + (50,2.43113128,'1980-01-01','2022-12-31',1,dataset_id,2), + (64,1.585456164,'1980-01-01','2022-12-31',1,dataset_id,2), + (104,-3.488913479,'1980-01-01','2022-12-31',1,dataset_id,2), + (116,0.663504797,'1980-01-01','2022-12-31',1,dataset_id,2), + (156,-4.09139899,'1980-01-01','2022-12-31',1,dataset_id,2), + (356,-3.461870007,'1980-01-01','2022-12-31',1,dataset_id,2), + (392,5.724575963,'1980-01-01','2022-12-31',1,dataset_id,2), + (398,-7.422669883,'1980-01-01','2022-12-31',1,dataset_id,2), + (417,-6.355711532,'1980-01-01','2022-12-31',1,dataset_id,2), + (418,-0.385647635,'1980-01-01','2022-12-31',1,dataset_id,2), + (496,-7.19247992,'1980-01-01','2022-12-31',1,dataset_id,2), + (524,-1.773133744,'1980-01-01','2022-12-31',1,dataset_id,2), + (408,1.857954408,'1980-01-01','2022-12-31',1,dataset_id,2), + (586,-8.23022146,'1980-01-01','2022-12-31',1,dataset_id,2), + (643,2.697529021,'1980-01-01','2022-12-31',1,dataset_id,2), + (410,4.18795996,'1980-01-01','2022-12-31',1,dataset_id,2), + (144,2.784286157,'1980-01-01','2022-12-31',1,dataset_id,2), + (158,6.215917048,'1980-01-01','2022-12-31',1,dataset_id,2), + (762,-7.112030233,'1980-01-01','2022-12-31',1,dataset_id,2), + (764,0.663180921,'1980-01-01','2022-12-31',1,dataset_id,2), + (795,-9.107382324,'1980-01-01','2022-12-31',1,dataset_id,2), + (860,-8.813839616,'1980-01-01','2022-12-31',1,dataset_id,2), + (704,1.225714326,'1980-01-01','2022-12-31',1,dataset_id,2), + (8,-0.412194879,'1980-01-01','2022-12-31',1,dataset_id,2), + (51,-6.828587611,'1980-01-01','2022-12-31',1,dataset_id,2), + (40,2.464037019,'1980-01-01','2022-12-31',1,dataset_id,2), + (31,-6.760557838,'1980-01-01','2022-12-31',1,dataset_id,2), + (112,0.754339348,'1980-01-01','2022-12-31',1,dataset_id,2), + (56,1.612176359,'1980-01-01','2022-12-31',1,dataset_id,2), + (70,0.187434424,'1980-01-01','2022-12-31',1,dataset_id,2), + (100,-4.42132818,'1980-01-01','2022-12-31',1,dataset_id,2), + (191,0.60155229,'1980-01-01','2022-12-31',1,dataset_id,2), + (196,-3.94474078,'1980-01-01','2022-12-31',1,dataset_id,2), + (203,-0.728194354,'1980-01-01','2022-12-31',1,dataset_id,2), + (208,5.025488832,'1980-01-01','2022-12-31',1,dataset_id,2), + (233,3.88501044,'1980-01-01','2022-12-31',1,dataset_id,2), + (246,5.210431373,'1980-01-01','2022-12-31',1,dataset_id,2), + (250,-0.446805395,'1980-01-01','2022-12-31',1,dataset_id,2), + (275,-7.398303434,'1980-01-01','2022-12-31',1,dataset_id,2), + (268,-1.198622833,'1980-01-01','2022-12-31',1,dataset_id,2), + (276,0.754735146,'1980-01-01','2022-12-31',1,dataset_id,2), + (300,-3.091485033,'1980-01-01','2022-12-31',1,dataset_id,2), + (348,-3.508703263,'1980-01-01','2022-12-31',1,dataset_id,2), + (352,8.596359071,'1980-01-01','2022-12-31',1,dataset_id,2), + (364,-8.854941932,'1980-01-01','2022-12-31',1,dataset_id,2), + (368,-9.28052587,'1980-01-01','2022-12-31',1,dataset_id,2), + (372,6.24091727,'1980-01-01','2022-12-31',1,dataset_id,2), + (376,-7.908784031,'1980-01-01','2022-12-31',1,dataset_id,2), + (380,-0.996952388,'1980-01-01','2022-12-31',1,dataset_id,2), + (400,-9.452622956,'1980-01-01','2022-12-31',1,dataset_id,2), + (414,-9.666792335,'1980-01-01','2022-12-31',1,dataset_id,2), + (428,2.964973985,'1980-01-01','2022-12-31',1,dataset_id,2), + (422,-5.59231049,'1980-01-01','2022-12-31',1,dataset_id,2), + (440,1.941890002,'1980-01-01','2022-12-31',1,dataset_id,2), + (442,1.694550156,'1980-01-01','2022-12-31',1,dataset_id,2), + (807,-3.751275113,'1980-01-01','2022-12-31',1,dataset_id,2), + (498,-4.579494673,'1980-01-01','2022-12-31',1,dataset_id,2), + (499,2.870409709,'1980-01-01','2022-12-31',1,dataset_id,2), + (528,2.692244777,'1980-01-01','2022-12-31',1,dataset_id,2), + (578,7.557651695,'1980-01-01','2022-12-31',1,dataset_id,2), + (512,-9.581945142,'1980-01-01','2022-12-31',1,dataset_id,2), + (616,-0.768684469,'1980-01-01','2022-12-31',1,dataset_id,2), + (634,-9.590347092,'1980-01-01','2022-12-31',1,dataset_id,2), + (642,-3.2900135,'1980-01-01','2022-12-31',1,dataset_id,2), + (682,-9.823183673,'1980-01-01','2022-12-31',1,dataset_id,2), + (688,-3.07779803,'1980-01-01','2022-12-31',1,dataset_id,2), + (703,-0.792167133,'1980-01-01','2022-12-31',1,dataset_id,2), + (705,2.050416614,'1980-01-01','2022-12-31',1,dataset_id,2), + (724,-5.094669181,'1980-01-01','2022-12-31',1,dataset_id,2), + (752,5.268272992,'1980-01-01','2022-12-31',1,dataset_id,2), + (756,4.984442268,'1980-01-01','2022-12-31',1,dataset_id,2), + (760,-8.63013261,'1980-01-01','2022-12-31',1,dataset_id,2), + (792,-5.100779366,'1980-01-01','2022-12-31',1,dataset_id,2), + (804,-2.876391592,'1980-01-01','2022-12-31',1,dataset_id,2), + (784,-9.646301409,'1980-01-01','2022-12-31',1,dataset_id,2), + (826,4.87758515,'1980-01-01','2022-12-31',1,dataset_id,2), + (887,-9.582777875,'1980-01-01','2022-12-31',1,dataset_id,2), + (84,3.383014944,'1980-01-01','2022-12-31',1,dataset_id,2), + (124,3.199664991,'1980-01-01','2022-12-31',1,dataset_id,2), + (170,4.519834595,'1980-01-01','2022-12-31',1,dataset_id,2), + (188,4.125528444,'1980-01-01','2022-12-31',1,dataset_id,2), + (192,-1.33362692,'1980-01-01','2022-12-31',1,dataset_id,2), + (214,-2.860976659,'1980-01-01','2022-12-31',1,dataset_id,2), + (222,-1.307728952,'1980-01-01','2022-12-31',1,dataset_id,2), + (304,8.044587107,'1980-01-01','2022-12-31',1,dataset_id,2), + (320,1.139443963,'1980-01-01','2022-12-31',1,dataset_id,2), + (332,-2.758661045,'1980-01-01','2022-12-31',1,dataset_id,2), + (340,-1.119516482,'1980-01-01','2022-12-31',1,dataset_id,2), + (388,3.35455623,'1980-01-01','2022-12-31',1,dataset_id,2), + (484,-4.737946325,'1980-01-01','2022-12-31',1,dataset_id,2), + (558,-0.414353538,'1980-01-01','2022-12-31',1,dataset_id,2), + (591,6.684761462,'1980-01-01','2022-12-31',1,dataset_id,2), + (630,4.678928891,'1980-01-01','2022-12-31',1,dataset_id,2), + (44,6.501012611,'1980-01-01','2022-12-31',1,dataset_id,2), + (840,-1.408208904,'1980-01-01','2022-12-31',1,dataset_id,2), + (10,9.419126718,'1980-01-01','2022-12-31',1,dataset_id,2), + (36,-6.967853128,'1980-01-01','2022-12-31',1,dataset_id,2), + (96,8.037272713,'1980-01-01','2022-12-31',1,dataset_id,2), + (242,7.757663045,'1980-01-01','2022-12-31',1,dataset_id,2), + (360,7.168006457,'1980-01-01','2022-12-31',1,dataset_id,2), + (458,7.468095704,'1980-01-01','2022-12-31',1,dataset_id,2), + (540,6.281988545,'1980-01-01','2022-12-31',1,dataset_id,2), + (554,4.280129707,'1980-01-01','2022-12-31',1,dataset_id,2), + (598,6.155924494,'1980-01-01','2022-12-31',1,dataset_id,2), + (608,6.466835601,'1980-01-01','2022-12-31',1,dataset_id,2), + (90,8.711120029,'1980-01-01','2022-12-31',1,dataset_id,2), + (626,1.447812054,'1980-01-01','2022-12-31',1,dataset_id,2), + (548,8.330261092,'1980-01-01','2022-12-31',1,dataset_id,2), + (32,-4.779206526,'1980-01-01','2022-12-31',1,dataset_id,2), + (68,-2.11120786,'1980-01-01','2022-12-31',1,dataset_id,2), + (76,1.616452739,'1980-01-01','2022-12-31',1,dataset_id,2), + (152,-2.029651952,'1980-01-01','2022-12-31',1,dataset_id,2), + (218,1.471698448,'1980-01-01','2022-12-31',1,dataset_id,2), + (238,5.122962404,'1980-01-01','2022-12-31',1,dataset_id,2), + (328,3.298662394,'1980-01-01','2022-12-31',1,dataset_id,2), + (740,4.474693185,'1980-01-01','2022-12-31',1,dataset_id,2), + (600,-2.919215577,'1980-01-01','2022-12-31',1,dataset_id,2), + (604,-1.571664026,'1980-01-01','2022-12-31',1,dataset_id,2), + (780,6.055291835,'1980-01-01','2022-12-31',1,dataset_id,2), + (858,0.018042753,'1980-01-01','2022-12-31',1,dataset_id,2), + (862,1.856048005,'1980-01-01','2022-12-31',1,dataset_id,2), + (12,-9.487938904,'2001-01-01','2022-12-31',2,dataset_id,2), + (24,-2.303014403,'2001-01-01','2022-12-31',2,dataset_id,2), + (204,-3.174988833,'2001-01-01','2022-12-31',2,dataset_id,2), + (72,-7.468378162,'2001-01-01','2022-12-31',2,dataset_id,2), + (854,-6.729042488,'2001-01-01','2022-12-31',2,dataset_id,2), + (108,1.280457139,'2001-01-01','2022-12-31',2,dataset_id,2), + (120,0.899331378,'2001-01-01','2022-12-31',2,dataset_id,2), + (140,-2.397502651,'2001-01-01','2022-12-31',2,dataset_id,2), + (148,-8.56215496,'2001-01-01','2022-12-31',2,dataset_id,2), + (818,-9.902252125,'2001-01-01','2022-12-31',2,dataset_id,2), + (566,-3.345698535,'2001-01-01','2022-12-31',2,dataset_id,2), + (178,1.486797527,'2001-01-01','2022-12-31',2,dataset_id,2), + (180,1.086012299,'2001-01-01','2022-12-31',2,dataset_id,2), + (384,-1.199363647,'2001-01-01','2022-12-31',2,dataset_id,2), + (262,-8.669436263,'2001-01-01','2022-12-31',2,dataset_id,2), + (226,6.874858325,'2001-01-01','2022-12-31',2,dataset_id,2), + (232,-8.096457552,'2001-01-01','2022-12-31',2,dataset_id,2), + (231,-4.141070798,'2001-01-01','2022-12-31',2,dataset_id,2), + (260,8.735687621,'2001-01-01','2022-12-31',2,dataset_id,2), + (266,4.227168807,'2001-01-01','2022-12-31',2,dataset_id,2), + (288,-1.944534489,'2001-01-01','2022-12-31',2,dataset_id,2), + (324,0.523236571,'2001-01-01','2022-12-31',2,dataset_id,2), + (624,-1.168560879,'2001-01-01','2022-12-31',2,dataset_id,2), + (404,-5.606891825,'2001-01-01','2022-12-31',2,dataset_id,2), + (426,-1.258071929,'2001-01-01','2022-12-31',2,dataset_id,2), + (430,5.678637985,'2001-01-01','2022-12-31',2,dataset_id,2), + (434,-9.825574824,'2001-01-01','2022-12-31',2,dataset_id,2), + (450,0.608260843,'2001-01-01','2022-12-31',2,dataset_id,2), + (454,0.856277812,'2001-01-01','2022-12-31',2,dataset_id,2), + (466,-8.744279123,'2001-01-01','2022-12-31',2,dataset_id,2), + (478,-9.693427724,'2001-01-01','2022-12-31',2,dataset_id,2), + (504,-7.658624884,'2001-01-01','2022-12-31',2,dataset_id,2), + (508,-3.376077081,'2001-01-01','2022-12-31',2,dataset_id,2), + (516,-8.08124172,'2001-01-01','2022-12-31',2,dataset_id,2), + (562,-9.602794451,'2001-01-01','2022-12-31',2,dataset_id,2), + (646,0.302514398,'2001-01-01','2022-12-31',2,dataset_id,2), + (686,-7.27962201,'2001-01-01','2022-12-31',2,dataset_id,2), + (694,5.526926258,'2001-01-01','2022-12-31',2,dataset_id,2), + (706,-8.101628445,'2001-01-01','2022-12-31',2,dataset_id,2), + (729,-9.073037643,'2001-01-01','2022-12-31',2,dataset_id,2), + (834,-2.491329623,'2001-01-01','2022-12-31',2,dataset_id,2), + (710,-6.201003304,'2001-01-01','2022-12-31',2,dataset_id,2), + (728,-4.409189765,'2001-01-01','2022-12-31',2,dataset_id,2), + (748,-3.531951907,'2001-01-01','2022-12-31',2,dataset_id,2), + (270,-5.527472371,'2001-01-01','2022-12-31',2,dataset_id,2), + (768,-1.069420893,'2001-01-01','2022-12-31',2,dataset_id,2), + (788,-8.157099541,'2001-01-01','2022-12-31',2,dataset_id,2), + (800,0.55957051,'2001-01-01','2022-12-31',2,dataset_id,2), + (732,-9.759777244,'2001-01-01','2022-12-31',2,dataset_id,2), + (894,-2.23844338,'2001-01-01','2022-12-31',2,dataset_id,2), + (716,-5.140933071,'2001-01-01','2022-12-31',2,dataset_id,2), + (620,-1.871194069,'2001-01-01','2022-12-31',2,dataset_id,2), + (4,-6.715207116,'2001-01-01','2022-12-31',2,dataset_id,2), + (50,5.282017856,'2001-01-01','2022-12-31',2,dataset_id,2), + (64,8.057440866,'2001-01-01','2022-12-31',2,dataset_id,2), + (104,3.922001012,'2001-01-01','2022-12-31',2,dataset_id,2), + (116,2.794451793,'2001-01-01','2022-12-31',2,dataset_id,2), + (156,-0.801408391,'2001-01-01','2022-12-31',2,dataset_id,2), + (356,-1.282536766,'2001-01-01','2022-12-31',2,dataset_id,2), + (392,6.942240623,'2001-01-01','2022-12-31',2,dataset_id,2), + (398,-6.393584495,'2001-01-01','2022-12-31',2,dataset_id,2), + (417,2.495009708,'2001-01-01','2022-12-31',2,dataset_id,2), + (418,4.03650453,'2001-01-01','2022-12-31',2,dataset_id,2), + (496,-6.315719019,'2001-01-01','2022-12-31',2,dataset_id,2), + (524,5.292452021,'2001-01-01','2022-12-31',2,dataset_id,2), + (408,4.078165158,'2001-01-01','2022-12-31',2,dataset_id,2), + (586,-6.246522522,'2001-01-01','2022-12-31',2,dataset_id,2), + (643,1.581921041,'2001-01-01','2022-12-31',2,dataset_id,2), + (410,4.020551872,'2001-01-01','2022-12-31',2,dataset_id,2), + (144,3.826557069,'2001-01-01','2022-12-31',2,dataset_id,2), + (158,7.888538093,'2001-01-01','2022-12-31',2,dataset_id,2), + (762,0.188699961,'2001-01-01','2022-12-31',2,dataset_id,2), + (764,2.019893239,'2001-01-01','2022-12-31',2,dataset_id,2), + (795,-8.748082462,'2001-01-01','2022-12-31',2,dataset_id,2), + (860,-7.837114595,'2001-01-01','2022-12-31',2,dataset_id,2), + (704,5.477965827,'2001-01-01','2022-12-31',2,dataset_id,2), + (8,2.89233373,'2001-01-01','2022-12-31',2,dataset_id,2), + (51,0.487032625,'2001-01-01','2022-12-31',2,dataset_id,2), + (40,4.137222841,'2001-01-01','2022-12-31',2,dataset_id,2), + (31,-2.887053177,'2001-01-01','2022-12-31',2,dataset_id,2), + (112,0.778996876,'2001-01-01','2022-12-31',2,dataset_id,2), + (56,3.057833134,'2001-01-01','2022-12-31',2,dataset_id,2), + (70,2.907759376,'2001-01-01','2022-12-31',2,dataset_id,2), + (100,-1.551635756,'2001-01-01','2022-12-31',2,dataset_id,2), + (191,2.273003171,'2001-01-01','2022-12-31',2,dataset_id,2), + (196,-2.962770751,'2001-01-01','2022-12-31',2,dataset_id,2), + (203,1.434944526,'2001-01-01','2022-12-31',2,dataset_id,2), + (208,5.187591037,'2001-01-01','2022-12-31',2,dataset_id,2), + (233,3.536613424,'2001-01-01','2022-12-31',2,dataset_id,2), + (246,4.085342581,'2001-01-01','2022-12-31',2,dataset_id,2), + (250,1.538660513,'2001-01-01','2022-12-31',2,dataset_id,2), + (275,-6.935633262,'2001-01-01','2022-12-31',2,dataset_id,2), + (268,3.477748916,'2001-01-01','2022-12-31',2,dataset_id,2), + (276,2.337623685,'2001-01-01','2022-12-31',2,dataset_id,2), + (300,-0.335467843,'2001-01-01','2022-12-31',2,dataset_id,2), + (348,-1.982705245,'2001-01-01','2022-12-31',2,dataset_id,2), + (352,8.4857159,'2001-01-01','2022-12-31',2,dataset_id,2), + (364,-7.900256729,'2001-01-01','2022-12-31',2,dataset_id,2), + (368,-8.780018745,'2001-01-01','2022-12-31',2,dataset_id,2), + (372,6.216642799,'2001-01-01','2022-12-31',2,dataset_id,2), + (376,-7.820934381,'2001-01-01','2022-12-31',2,dataset_id,2), + (380,2.05443102,'2001-01-01','2022-12-31',2,dataset_id,2), + (400,-9.494127077,'2001-01-01','2022-12-31',2,dataset_id,2), + (414,-9.325353006,'2001-01-01','2022-12-31',2,dataset_id,2), + (428,2.618694777,'2001-01-01','2022-12-31',2,dataset_id,2), + (422,-3.774286643,'2001-01-01','2022-12-31',2,dataset_id,2), + (440,1.886906356,'2001-01-01','2022-12-31',2,dataset_id,2), + (442,3.022962631,'2001-01-01','2022-12-31',2,dataset_id,2), + (807,-2.217274786,'2001-01-01','2022-12-31',2,dataset_id,2), + (498,-3.622659783,'2001-01-01','2022-12-31',2,dataset_id,2), + (499,4.995949365,'2001-01-01','2022-12-31',2,dataset_id,2), + (528,3.594663074,'2001-01-01','2022-12-31',2,dataset_id,2), + (578,7.158174375,'2001-01-01','2022-12-31',2,dataset_id,2), + (512,-9.688123627,'2001-01-01','2022-12-31',2,dataset_id,2), + (616,0.856533074,'2001-01-01','2022-12-31',2,dataset_id,2), + (634,-9.592138164,'2001-01-01','2022-12-31',2,dataset_id,2), + (642,-0.736379877,'2001-01-01','2022-12-31',2,dataset_id,2), + (682,-9.694338249,'2001-01-01','2022-12-31',2,dataset_id,2), + (688,-1.488837337,'2001-01-01','2022-12-31',2,dataset_id,2), + (703,0.747670215,'2001-01-01','2022-12-31',2,dataset_id,2), + (705,3.836199054,'2001-01-01','2022-12-31',2,dataset_id,2), + (724,-3.349666701,'2001-01-01','2022-12-31',2,dataset_id,2), + (752,4.29895501,'2001-01-01','2022-12-31',2,dataset_id,2), + (756,6.324183936,'2001-01-01','2022-12-31',2,dataset_id,2), + (760,-8.395381643,'2001-01-01','2022-12-31',2,dataset_id,2), + (792,-3.131876559,'2001-01-01','2022-12-31',2,dataset_id,2), + (804,-2.020047825,'2001-01-01','2022-12-31',2,dataset_id,2), + (784,-9.761831642,'2001-01-01','2022-12-31',2,dataset_id,2), + (826,5.488516036,'2001-01-01','2022-12-31',2,dataset_id,2), + (887,-9.027073785,'2001-01-01','2022-12-31',2,dataset_id,2), + (84,2.981045987,'2001-01-01','2022-12-31',2,dataset_id,2), + (124,2.804922105,'2001-01-01','2022-12-31',2,dataset_id,2), + (170,6.24423875,'2001-01-01','2022-12-31',2,dataset_id,2), + (188,7.659381316,'2001-01-01','2022-12-31',2,dataset_id,2), + (192,0.260450804,'2001-01-01','2022-12-31',2,dataset_id,2), + (214,0.647998302,'2001-01-01','2022-12-31',2,dataset_id,2), + (222,1.905293379,'2001-01-01','2022-12-31',2,dataset_id,2), + (304,7.609892028,'2001-01-01','2022-12-31',2,dataset_id,2), + (320,2.424726435,'2001-01-01','2022-12-31',2,dataset_id,2), + (332,0.41644647,'2001-01-01','2022-12-31',2,dataset_id,2), + (340,2.453681405,'2001-01-01','2022-12-31',2,dataset_id,2), + (388,3.33599694,'2001-01-01','2022-12-31',2,dataset_id,2), + (484,-4.271997012,'2001-01-01','2022-12-31',2,dataset_id,2), + (558,3.970651177,'2001-01-01','2022-12-31',2,dataset_id,2), + (591,7.92809521,'2001-01-01','2022-12-31',2,dataset_id,2), + (630,3.89641369,'2001-01-01','2022-12-31',2,dataset_id,2), + (44,6.364970123,'2001-01-01','2022-12-31',2,dataset_id,2), + (840,-0.9961609,'2001-01-01','2022-12-31',2,dataset_id,2), + (10,9.261924998,'2001-01-01','2022-12-31',2,dataset_id,2), + (36,-6.958307287,'2001-01-01','2022-12-31',2,dataset_id,2), + (96,7.251302961,'2001-01-01','2022-12-31',2,dataset_id,2), + (242,7.955572241,'2001-01-01','2022-12-31',2,dataset_id,2), + (360,7.321203145,'2001-01-01','2022-12-31',2,dataset_id,2), + (458,6.665168137,'2001-01-01','2022-12-31',2,dataset_id,2), + (540,5.533370639,'2001-01-01','2022-12-31',2,dataset_id,2), + (554,5.516055535,'2001-01-01','2022-12-31',2,dataset_id,2), + (598,8.299223876,'2001-01-01','2022-12-31',2,dataset_id,2), + (608,7.547040504,'2001-01-01','2022-12-31',2,dataset_id,2), + (90,9.203267148,'2001-01-01','2022-12-31',2,dataset_id,2), + (626,5.121204821,'2001-01-01','2022-12-31',2,dataset_id,2), + (548,8.542270949,'2001-01-01','2022-12-31',2,dataset_id,2), + (32,-3.759098068,'2001-01-01','2022-12-31',2,dataset_id,2), + (68,0.422296079,'2001-01-01','2022-12-31',2,dataset_id,2), + (76,1.732877585,'2001-01-01','2022-12-31',2,dataset_id,2), + (152,0.28405697,'2001-01-01','2022-12-31',2,dataset_id,2), + (218,6.276479436,'2001-01-01','2022-12-31',2,dataset_id,2), + (238,5.778651577,'2001-01-01','2022-12-31',2,dataset_id,2), + (328,4.849712693,'2001-01-01','2022-12-31',2,dataset_id,2), + (740,4.377246996,'2001-01-01','2022-12-31',2,dataset_id,2), + (600,-1.0928823,'2001-01-01','2022-12-31',2,dataset_id,2), + (604,3.95802376,'2001-01-01','2022-12-31',2,dataset_id,2), + (780,6.592891608,'2001-01-01','2022-12-31',2,dataset_id,2), + (858,1.204322407,'2001-01-01','2022-12-31',2,dataset_id,2), + (862,3.439101174,'2001-01-01','2022-12-31',2,dataset_id,2), + (12,-9.470246515,'1980-01-01','2000-12-31',2,dataset_id,2), + (24,-2.567853451,'1980-01-01','2000-12-31',2,dataset_id,2), + (204,-2.607275506,'1980-01-01','2000-12-31',2,dataset_id,2), + (72,-7.492232745,'1980-01-01','2000-12-31',2,dataset_id,2), + (854,-6.390724386,'1980-01-01','2000-12-31',2,dataset_id,2), + (108,2.232765698,'1980-01-01','2000-12-31',2,dataset_id,2), + (120,2.234992733,'1980-01-01','2000-12-31',2,dataset_id,2), + (140,0.248028357,'1980-01-01','2000-12-31',2,dataset_id,2), + (148,-8.243696679,'1980-01-01','2000-12-31',2,dataset_id,2), + (818,-9.882817223,'1980-01-01','2000-12-31',2,dataset_id,2), + (566,-2.894560222,'1980-01-01','2000-12-31',2,dataset_id,2), + (178,3.283874749,'1980-01-01','2000-12-31',2,dataset_id,2), + (180,3.203497633,'1980-01-01','2000-12-31',2,dataset_id,2), + (384,-0.079297463,'1980-01-01','2000-12-31',2,dataset_id,2), + (262,-8.212035557,'1980-01-01','2000-12-31',2,dataset_id,2), + (226,7.22301048,'1980-01-01','2000-12-31',2,dataset_id,2), + (232,-7.611369862,'1980-01-01','2000-12-31',2,dataset_id,2), + (231,-3.59810041,'1980-01-01','2000-12-31',2,dataset_id,2), + (260,8.755709839,'1980-01-01','2000-12-31',2,dataset_id,2), + (266,5.001211715,'1980-01-01','2000-12-31',2,dataset_id,2), + (288,-0.990542755,'1980-01-01','2000-12-31',2,dataset_id,2), + (324,1.430718985,'1980-01-01','2000-12-31',2,dataset_id,2), + (624,-0.718573709,'1980-01-01','2000-12-31',2,dataset_id,2), + (404,-5.231575517,'1980-01-01','2000-12-31',2,dataset_id,2), + (426,-0.28141167,'1980-01-01','2000-12-31',2,dataset_id,2), + (430,5.734944211,'1980-01-01','2000-12-31',2,dataset_id,2), + (434,-9.789031605,'1980-01-01','2000-12-31',2,dataset_id,2), + (450,0.768219579,'1980-01-01','2000-12-31',2,dataset_id,2), + (454,0.744985021,'1980-01-01','2000-12-31',2,dataset_id,2), + (466,-8.538595503,'1980-01-01','2000-12-31',2,dataset_id,2), + (478,-9.655957731,'1980-01-01','2000-12-31',2,dataset_id,2), + (504,-7.422963334,'1980-01-01','2000-12-31',2,dataset_id,2), + (508,-3.012562709,'1980-01-01','2000-12-31',2,dataset_id,2), + (516,-8.299311222,'1980-01-01','2000-12-31',2,dataset_id,2), + (562,-9.600135047,'1980-01-01','2000-12-31',2,dataset_id,2), + (646,1.339996018,'1980-01-01','2000-12-31',2,dataset_id,2), + (686,-6.987788561,'1980-01-01','2000-12-31',2,dataset_id,2), + (694,5.657778312,'1980-01-01','2000-12-31',2,dataset_id,2), + (706,-7.833621353,'1980-01-01','2000-12-31',2,dataset_id,2), + (729,-8.796919771,'1980-01-01','2000-12-31',2,dataset_id,2), + (834,-1.772343923,'1980-01-01','2000-12-31',2,dataset_id,2), + (710,-5.851153526,'1980-01-01','2000-12-31',2,dataset_id,2), + (728,-2.362622317,'1980-01-01','2000-12-31',2,dataset_id,2), + (748,-3.099990836,'1980-01-01','2000-12-31',2,dataset_id,2), + (270,-5.108620871,'1980-01-01','2000-12-31',2,dataset_id,2), + (768,-0.084274954,'1980-01-01','2000-12-31',2,dataset_id,2), + (788,-8.112760375,'1980-01-01','2000-12-31',2,dataset_id,2), + (800,1.736021531,'1980-01-01','2000-12-31',2,dataset_id,2), + (732,-9.769028323,'1980-01-01','2000-12-31',2,dataset_id,2), + (894,-2.647760049,'1980-01-01','2000-12-31',2,dataset_id,2), + (716,-5.163285093,'1980-01-01','2000-12-31',2,dataset_id,2), + (620,-1.499922637,'1980-01-01','2000-12-31',2,dataset_id,2), + (4,-6.201158926,'1980-01-01','2000-12-31',2,dataset_id,2), + (50,5.445915994,'1980-01-01','2000-12-31',2,dataset_id,2), + (64,8.027987798,'1980-01-01','2000-12-31',2,dataset_id,2), + (104,4.299365099,'1980-01-01','2000-12-31',2,dataset_id,2), + (116,3.141674794,'1980-01-01','2000-12-31',2,dataset_id,2), + (156,-0.268131482,'1980-01-01','2000-12-31',2,dataset_id,2), + (356,-1.826975918,'1980-01-01','2000-12-31',2,dataset_id,2), + (392,6.918086423,'1980-01-01','2000-12-31',2,dataset_id,2), + (398,-5.954801988,'1980-01-01','2000-12-31',2,dataset_id,2), + (417,2.864790262,'1980-01-01','2000-12-31',2,dataset_id,2), + (418,4.617322975,'1980-01-01','2000-12-31',2,dataset_id,2), + (496,-5.419222835,'1980-01-01','2000-12-31',2,dataset_id,2), + (524,4.943018661,'1980-01-01','2000-12-31',2,dataset_id,2), + (408,4.610398408,'1980-01-01','2000-12-31',2,dataset_id,2), + (586,-5.989238992,'1980-01-01','2000-12-31',2,dataset_id,2), + (643,2.183890868,'1980-01-01','2000-12-31',2,dataset_id,2), + (410,4.93372656,'1980-01-01','2000-12-31',2,dataset_id,2), + (144,2.406450859,'1980-01-01','2000-12-31',2,dataset_id,2), + (158,7.882954609,'1980-01-01','2000-12-31',2,dataset_id,2), + (762,0.988443531,'1980-01-01','2000-12-31',2,dataset_id,2), + (764,2.088721317,'1980-01-01','2000-12-31',2,dataset_id,2), + (795,-8.557657384,'1980-01-01','2000-12-31',2,dataset_id,2), + (860,-7.589955707,'1980-01-01','2000-12-31',2,dataset_id,2), + (704,5.667432274,'1980-01-01','2000-12-31',2,dataset_id,2), + (8,2.390062048,'1980-01-01','2000-12-31',2,dataset_id,2), + (51,0.824583043,'1980-01-01','2000-12-31',2,dataset_id,2), + (40,4.2120162,'1980-01-01','2000-12-31',2,dataset_id,2), + (31,-2.210521632,'1980-01-01','2000-12-31',2,dataset_id,2), + (112,1.887789776,'1980-01-01','2000-12-31',2,dataset_id,2), + (56,3.864525666,'1980-01-01','2000-12-31',2,dataset_id,2), + (70,2.764335334,'1980-01-01','2000-12-31',2,dataset_id,2), + (100,-1.303087985,'1980-01-01','2000-12-31',2,dataset_id,2), + (191,2.363539859,'1980-01-01','2000-12-31',2,dataset_id,2), + (196,-3.127108289,'1980-01-01','2000-12-31',2,dataset_id,2), + (203,1.789209283,'1980-01-01','2000-12-31',2,dataset_id,2), + (208,5.220502773,'1980-01-01','2000-12-31',2,dataset_id,2), + (233,4.208205922,'1980-01-01','2000-12-31',2,dataset_id,2), + (246,4.186411671,'1980-01-01','2000-12-31',2,dataset_id,2), + (250,2.58685505,'1980-01-01','2000-12-31',2,dataset_id,2), + (275,-6.559905707,'1980-01-01','2000-12-31',2,dataset_id,2), + (268,4.069136825,'1980-01-01','2000-12-31',2,dataset_id,2), + (276,3.162770921,'1980-01-01','2000-12-31',2,dataset_id,2), + (300,-0.793820534,'1980-01-01','2000-12-31',2,dataset_id,2), + (348,-1.77540165,'1980-01-01','2000-12-31',2,dataset_id,2), + (352,8.470423249,'1980-01-01','2000-12-31',2,dataset_id,2), + (364,-7.675012818,'1980-01-01','2000-12-31',2,dataset_id,2), + (368,-8.639412772,'1980-01-01','2000-12-31',2,dataset_id,2), + (372,6.32603214,'1980-01-01','2000-12-31',2,dataset_id,2), + (376,-7.643319891,'1980-01-01','2000-12-31',2,dataset_id,2), + (380,1.576962566,'1980-01-01','2000-12-31',2,dataset_id,2), + (400,-9.411752317,'1980-01-01','2000-12-31',2,dataset_id,2), + (414,-9.222698006,'1980-01-01','2000-12-31',2,dataset_id,2), + (428,3.610602036,'1980-01-01','2000-12-31',2,dataset_id,2), + (422,-3.739100884,'1980-01-01','2000-12-31',2,dataset_id,2), + (440,2.947229252,'1980-01-01','2000-12-31',2,dataset_id,2), + (442,3.91456325,'1980-01-01','2000-12-31',2,dataset_id,2), + (807,-2.504958754,'1980-01-01','2000-12-31',2,dataset_id,2), + (498,-1.810071687,'1980-01-01','2000-12-31',2,dataset_id,2), + (499,4.90933405,'1980-01-01','2000-12-31',2,dataset_id,2), + (528,4.285647213,'1980-01-01','2000-12-31',2,dataset_id,2), + (578,7.069927855,'1980-01-01','2000-12-31',2,dataset_id,2), + (512,-9.636794977,'1980-01-01','2000-12-31',2,dataset_id,2), + (616,1.696257177,'1980-01-01','2000-12-31',2,dataset_id,2), + (634,-9.416293747,'1980-01-01','2000-12-31',2,dataset_id,2), + (642,0.183473114,'1980-01-01','2000-12-31',2,dataset_id,2), + (682,-9.611640871,'1980-01-01','2000-12-31',2,dataset_id,2), + (688,-1.494857001,'1980-01-01','2000-12-31',2,dataset_id,2), + (703,1.228287517,'1980-01-01','2000-12-31',2,dataset_id,2), + (705,4.172944698,'1980-01-01','2000-12-31',2,dataset_id,2), + (724,-3.08763179,'1980-01-01','2000-12-31',2,dataset_id,2), + (752,4.454584064,'1980-01-01','2000-12-31',2,dataset_id,2), + (756,6.773167785,'1980-01-01','2000-12-31',2,dataset_id,2), + (760,-8.182182426,'1980-01-01','2000-12-31',2,dataset_id,2), + (792,-2.647482984,'1980-01-01','2000-12-31',2,dataset_id,2), + (804,-0.346531102,'1980-01-01','2000-12-31',2,dataset_id,2), + (784,-9.576723332,'1980-01-01','2000-12-31',2,dataset_id,2), + (826,5.628424633,'1980-01-01','2000-12-31',2,dataset_id,2), + (887,-8.875964868,'1980-01-01','2000-12-31',2,dataset_id,2), + (84,3.628222546,'1980-01-01','2000-12-31',2,dataset_id,2), + (124,2.814698836,'1980-01-01','2000-12-31',2,dataset_id,2), + (170,6.746625161,'1980-01-01','2000-12-31',2,dataset_id,2), + (188,7.144393145,'1980-01-01','2000-12-31',2,dataset_id,2), + (192,0.35005255,'1980-01-01','2000-12-31',2,dataset_id,2), + (214,1.081651373,'1980-01-01','2000-12-31',2,dataset_id,2), + (222,1.961564598,'1980-01-01','2000-12-31',2,dataset_id,2), + (304,7.935579001,'1980-01-01','2000-12-31',2,dataset_id,2), + (320,3.030312059,'1980-01-01','2000-12-31',2,dataset_id,2), + (332,0.30755525,'1980-01-01','2000-12-31',2,dataset_id,2), + (340,2.305104288,'1980-01-01','2000-12-31',2,dataset_id,2), + (388,2.535576253,'1980-01-01','2000-12-31',2,dataset_id,2), + (484,-3.839570292,'1980-01-01','2000-12-31',2,dataset_id,2), + (558,3.370572018,'1980-01-01','2000-12-31',2,dataset_id,2), + (591,7.863734391,'1980-01-01','2000-12-31',2,dataset_id,2), + (630,3.121927796,'1980-01-01','2000-12-31',2,dataset_id,2), + (44,6.453017798,'1980-01-01','2000-12-31',2,dataset_id,2), + (840,-0.532388141,'1980-01-01','2000-12-31',2,dataset_id,2), + (10,9.326446232,'1980-01-01','2000-12-31',2,dataset_id,2), + (36,-6.691641347,'1980-01-01','2000-12-31',2,dataset_id,2), + (96,7.16656931,'1980-01-01','2000-12-31',2,dataset_id,2), + (242,7.549469674,'1980-01-01','2000-12-31',2,dataset_id,2), + (360,7.219022805,'1980-01-01','2000-12-31',2,dataset_id,2), + (458,6.501511808,'1980-01-01','2000-12-31',2,dataset_id,2), + (540,5.310598654,'1980-01-01','2000-12-31',2,dataset_id,2), + (554,5.818960798,'1980-01-01','2000-12-31',2,dataset_id,2), + (598,7.98098059,'1980-01-01','2000-12-31',2,dataset_id,2), + (608,7.131779018,'1980-01-01','2000-12-31',2,dataset_id,2), + (90,8.999560223,'1980-01-01','2000-12-31',2,dataset_id,2), + (626,5.300783197,'1980-01-01','2000-12-31',2,dataset_id,2), + (548,8.310468295,'1980-01-01','2000-12-31',2,dataset_id,2), + (32,-2.570752847,'1980-01-01','2000-12-31',2,dataset_id,2), + (68,1.348438798,'1980-01-01','2000-12-31',2,dataset_id,2), + (76,2.613027156,'1980-01-01','2000-12-31',2,dataset_id,2), + (152,0.593849267,'1980-01-01','2000-12-31',2,dataset_id,2), + (218,6.811643397,'1980-01-01','2000-12-31',2,dataset_id,2), + (238,6.110156649,'1980-01-01','2000-12-31',2,dataset_id,2), + (328,3.839456313,'1980-01-01','2000-12-31',2,dataset_id,2), + (740,2.495529426,'1980-01-01','2000-12-31',2,dataset_id,2), + (600,1.2241452,'1980-01-01','2000-12-31',2,dataset_id,2), + (604,4.464185958,'1980-01-01','2000-12-31',2,dataset_id,2), + (780,6.229112868,'1980-01-01','2000-12-31',2,dataset_id,2), + (858,1.88914981,'1980-01-01','2000-12-31',2,dataset_id,2), + (862,3.522818941,'1980-01-01','2000-12-31',2,dataset_id,2), + (12,-9.421076638,'1980-01-01','2022-12-31',2,dataset_id,2), + (24,-4.100535052,'1980-01-01','2022-12-31',2,dataset_id,2), + (204,-2.742706801,'1980-01-01','2022-12-31',2,dataset_id,2), + (72,-7.881514724,'1980-01-01','2022-12-31',2,dataset_id,2), + (854,-5.91130995,'1980-01-01','2022-12-31',2,dataset_id,2), + (108,-0.731328017,'1980-01-01','2022-12-31',2,dataset_id,2), + (120,1.90791461,'1980-01-01','2022-12-31',2,dataset_id,2), + (140,-0.907253603,'1980-01-01','2022-12-31',2,dataset_id,2), + (148,-8.34818239,'1980-01-01','2022-12-31',2,dataset_id,2), + (818,-9.844652019,'1980-01-01','2022-12-31',2,dataset_id,2), + (566,-2.021963593,'1980-01-01','2022-12-31',2,dataset_id,2), + (178,3.34427221,'1980-01-01','2022-12-31',2,dataset_id,2), + (180,2.093133671,'1980-01-01','2022-12-31',2,dataset_id,2), + (384,-0.297219951,'1980-01-01','2022-12-31',2,dataset_id,2), + (262,-8.040363001,'1980-01-01','2022-12-31',2,dataset_id,2), + (226,6.512347987,'1980-01-01','2022-12-31',2,dataset_id,2), + (232,-7.820239,'1980-01-01','2022-12-31',2,dataset_id,2), + (231,-4.237219898,'1980-01-01','2022-12-31',2,dataset_id,2), + (260,8.308351824,'1980-01-01','2022-12-31',2,dataset_id,2), + (266,4.974999796,'1980-01-01','2022-12-31',2,dataset_id,2), + (288,-0.986503046,'1980-01-01','2022-12-31',2,dataset_id,2), + (324,0.87859263,'1980-01-01','2022-12-31',2,dataset_id,2), + (624,-0.341748605,'1980-01-01','2022-12-31',2,dataset_id,2), + (404,-5.966280712,'1980-01-01','2022-12-31',2,dataset_id,2), + (426,-3.587583321,'1980-01-01','2022-12-31',2,dataset_id,2), + (430,5.382949096,'1980-01-01','2022-12-31',2,dataset_id,2), + (434,-9.703280572,'1980-01-01','2022-12-31',2,dataset_id,2), + (450,1.725766359,'1980-01-01','2022-12-31',2,dataset_id,2), + (454,-0.942333394,'1980-01-01','2022-12-31',2,dataset_id,2), + (466,-8.313530949,'1980-01-01','2022-12-31',2,dataset_id,2), + (478,-9.397414877,'1980-01-01','2022-12-31',2,dataset_id,2), + (504,-7.78522068,'1980-01-01','2022-12-31',2,dataset_id,2), + (508,-2.975561131,'1980-01-01','2022-12-31',2,dataset_id,2), + (516,-8.598418327,'1980-01-01','2022-12-31',2,dataset_id,2), + (562,-9.236389717,'1980-01-01','2022-12-31',2,dataset_id,2), + (646,-0.655479474,'1980-01-01','2022-12-31',2,dataset_id,2), + (686,-6.339731924,'1980-01-01','2022-12-31',2,dataset_id,2), + (694,5.139767615,'1980-01-01','2022-12-31',2,dataset_id,2), + (706,-8.003433087,'1980-01-01','2022-12-31',2,dataset_id,2), + (729,-8.802883666,'1980-01-01','2022-12-31',2,dataset_id,2), + (834,-2.897071864,'1980-01-01','2022-12-31',2,dataset_id,2), + (710,-6.621688951,'1980-01-01','2022-12-31',2,dataset_id,2), + (728,-4.460313633,'1980-01-01','2022-12-31',2,dataset_id,2), + (748,-4.959372598,'1980-01-01','2022-12-31',2,dataset_id,2), + (270,-5.079922661,'1980-01-01','2022-12-31',2,dataset_id,2), + (768,-1.190081677,'1980-01-01','2022-12-31',2,dataset_id,2), + (788,-8.062027373,'1980-01-01','2022-12-31',2,dataset_id,2), + (800,-0.786480355,'1980-01-01','2022-12-31',2,dataset_id,2), + (732,-9.541692948,'1980-01-01','2022-12-31',2,dataset_id,2), + (894,-3.986647016,'1980-01-01','2022-12-31',2,dataset_id,2), + (716,-6.154848276,'1980-01-01','2022-12-31',2,dataset_id,2), + (620,-3.122141717,'1980-01-01','2022-12-31',2,dataset_id,2), + (4,-8.42844402,'1980-01-01','2022-12-31',2,dataset_id,2), + (50,2.43113128,'1980-01-01','2022-12-31',2,dataset_id,2), + (64,1.585456164,'1980-01-01','2022-12-31',2,dataset_id,2), + (104,-3.488913479,'1980-01-01','2022-12-31',2,dataset_id,2), + (116,0.663504797,'1980-01-01','2022-12-31',2,dataset_id,2), + (156,-4.09139899,'1980-01-01','2022-12-31',2,dataset_id,2), + (356,-3.461870007,'1980-01-01','2022-12-31',2,dataset_id,2), + (392,5.724575963,'1980-01-01','2022-12-31',2,dataset_id,2), + (398,-7.422669883,'1980-01-01','2022-12-31',2,dataset_id,2), + (417,-6.355711532,'1980-01-01','2022-12-31',2,dataset_id,2), + (418,-0.385647635,'1980-01-01','2022-12-31',2,dataset_id,2), + (496,-7.19247992,'1980-01-01','2022-12-31',2,dataset_id,2), + (524,-1.773133744,'1980-01-01','2022-12-31',2,dataset_id,2), + (408,1.857954408,'1980-01-01','2022-12-31',2,dataset_id,2), + (586,-8.23022146,'1980-01-01','2022-12-31',2,dataset_id,2), + (643,2.697529021,'1980-01-01','2022-12-31',2,dataset_id,2), + (410,4.18795996,'1980-01-01','2022-12-31',2,dataset_id,2), + (144,2.784286157,'1980-01-01','2022-12-31',2,dataset_id,2), + (158,6.215917048,'1980-01-01','2022-12-31',2,dataset_id,2), + (762,-7.112030233,'1980-01-01','2022-12-31',2,dataset_id,2), + (764,0.663180921,'1980-01-01','2022-12-31',2,dataset_id,2), + (795,-9.107382324,'1980-01-01','2022-12-31',2,dataset_id,2), + (860,-8.813839616,'1980-01-01','2022-12-31',2,dataset_id,2), + (704,1.225714326,'1980-01-01','2022-12-31',2,dataset_id,2), + (8,-0.412194879,'1980-01-01','2022-12-31',2,dataset_id,2), + (51,-6.828587611,'1980-01-01','2022-12-31',2,dataset_id,2), + (40,2.464037019,'1980-01-01','2022-12-31',2,dataset_id,2), + (31,-6.760557838,'1980-01-01','2022-12-31',2,dataset_id,2), + (112,0.754339348,'1980-01-01','2022-12-31',2,dataset_id,2), + (56,1.612176359,'1980-01-01','2022-12-31',2,dataset_id,2), + (70,0.187434424,'1980-01-01','2022-12-31',2,dataset_id,2), + (100,-4.42132818,'1980-01-01','2022-12-31',2,dataset_id,2), + (191,0.60155229,'1980-01-01','2022-12-31',2,dataset_id,2), + (196,-3.94474078,'1980-01-01','2022-12-31',2,dataset_id,2), + (203,-0.728194354,'1980-01-01','2022-12-31',2,dataset_id,2), + (208,5.025488832,'1980-01-01','2022-12-31',2,dataset_id,2), + (233,3.88501044,'1980-01-01','2022-12-31',2,dataset_id,2), + (246,5.210431373,'1980-01-01','2022-12-31',2,dataset_id,2), + (250,-0.446805395,'1980-01-01','2022-12-31',2,dataset_id,2), + (275,-7.398303434,'1980-01-01','2022-12-31',2,dataset_id,2), + (268,-1.198622833,'1980-01-01','2022-12-31',2,dataset_id,2), + (276,0.754735146,'1980-01-01','2022-12-31',2,dataset_id,2), + (300,-3.091485033,'1980-01-01','2022-12-31',2,dataset_id,2), + (348,-3.508703263,'1980-01-01','2022-12-31',2,dataset_id,2), + (352,8.596359071,'1980-01-01','2022-12-31',2,dataset_id,2), + (364,-8.854941932,'1980-01-01','2022-12-31',2,dataset_id,2), + (368,-9.28052587,'1980-01-01','2022-12-31',2,dataset_id,2), + (372,6.24091727,'1980-01-01','2022-12-31',2,dataset_id,2), + (376,-7.908784031,'1980-01-01','2022-12-31',2,dataset_id,2), + (380,-0.996952388,'1980-01-01','2022-12-31',2,dataset_id,2), + (400,-9.452622956,'1980-01-01','2022-12-31',2,dataset_id,2), + (414,-9.666792335,'1980-01-01','2022-12-31',2,dataset_id,2), + (428,2.964973985,'1980-01-01','2022-12-31',2,dataset_id,2), + (422,-5.59231049,'1980-01-01','2022-12-31',2,dataset_id,2), + (440,1.941890002,'1980-01-01','2022-12-31',2,dataset_id,2), + (442,1.694550156,'1980-01-01','2022-12-31',2,dataset_id,2), + (807,-3.751275113,'1980-01-01','2022-12-31',2,dataset_id,2), + (498,-4.579494673,'1980-01-01','2022-12-31',2,dataset_id,2), + (499,2.870409709,'1980-01-01','2022-12-31',2,dataset_id,2), + (528,2.692244777,'1980-01-01','2022-12-31',2,dataset_id,2), + (578,7.557651695,'1980-01-01','2022-12-31',2,dataset_id,2), + (512,-9.581945142,'1980-01-01','2022-12-31',2,dataset_id,2), + (616,-0.768684469,'1980-01-01','2022-12-31',2,dataset_id,2), + (634,-9.590347092,'1980-01-01','2022-12-31',2,dataset_id,2), + (642,-3.2900135,'1980-01-01','2022-12-31',2,dataset_id,2), + (682,-9.823183673,'1980-01-01','2022-12-31',2,dataset_id,2), + (688,-3.07779803,'1980-01-01','2022-12-31',2,dataset_id,2), + (703,-0.792167133,'1980-01-01','2022-12-31',2,dataset_id,2), + (705,2.050416614,'1980-01-01','2022-12-31',2,dataset_id,2), + (724,-5.094669181,'1980-01-01','2022-12-31',2,dataset_id,2), + (752,5.268272992,'1980-01-01','2022-12-31',2,dataset_id,2), + (756,4.984442268,'1980-01-01','2022-12-31',2,dataset_id,2), + (760,-8.63013261,'1980-01-01','2022-12-31',2,dataset_id,2), + (792,-5.100779366,'1980-01-01','2022-12-31',2,dataset_id,2), + (804,-2.876391592,'1980-01-01','2022-12-31',2,dataset_id,2), + (784,-9.646301409,'1980-01-01','2022-12-31',2,dataset_id,2), + (826,4.87758515,'1980-01-01','2022-12-31',2,dataset_id,2), + (887,-9.582777875,'1980-01-01','2022-12-31',2,dataset_id,2), + (84,3.383014944,'1980-01-01','2022-12-31',2,dataset_id,2), + (124,3.199664991,'1980-01-01','2022-12-31',2,dataset_id,2), + (170,4.519834595,'1980-01-01','2022-12-31',2,dataset_id,2), + (188,4.125528444,'1980-01-01','2022-12-31',2,dataset_id,2), + (192,-1.33362692,'1980-01-01','2022-12-31',2,dataset_id,2), + (214,-2.860976659,'1980-01-01','2022-12-31',2,dataset_id,2), + (222,-1.307728952,'1980-01-01','2022-12-31',2,dataset_id,2), + (304,8.044587107,'1980-01-01','2022-12-31',2,dataset_id,2), + (320,1.139443963,'1980-01-01','2022-12-31',2,dataset_id,2), + (332,-2.758661045,'1980-01-01','2022-12-31',2,dataset_id,2), + (340,-1.119516482,'1980-01-01','2022-12-31',2,dataset_id,2), + (388,3.35455623,'1980-01-01','2022-12-31',2,dataset_id,2), + (484,-4.737946325,'1980-01-01','2022-12-31',2,dataset_id,2), + (558,-0.414353538,'1980-01-01','2022-12-31',2,dataset_id,2), + (591,6.684761462,'1980-01-01','2022-12-31',2,dataset_id,2), + (630,4.678928891,'1980-01-01','2022-12-31',2,dataset_id,2), + (44,6.501012611,'1980-01-01','2022-12-31',2,dataset_id,2), + (840,-1.408208904,'1980-01-01','2022-12-31',2,dataset_id,2), + (10,9.419126718,'1980-01-01','2022-12-31',2,dataset_id,2), + (36,-6.967853128,'1980-01-01','2022-12-31',2,dataset_id,2), + (96,8.037272713,'1980-01-01','2022-12-31',2,dataset_id,2), + (242,7.757663045,'1980-01-01','2022-12-31',2,dataset_id,2), + (360,7.168006457,'1980-01-01','2022-12-31',2,dataset_id,2), + (458,7.468095704,'1980-01-01','2022-12-31',2,dataset_id,2), + (540,6.281988545,'1980-01-01','2022-12-31',2,dataset_id,2), + (554,4.280129707,'1980-01-01','2022-12-31',2,dataset_id,2), + (598,6.155924494,'1980-01-01','2022-12-31',2,dataset_id,2), + (608,6.466835601,'1980-01-01','2022-12-31',2,dataset_id,2), + (90,8.711120029,'1980-01-01','2022-12-31',2,dataset_id,2), + (626,1.447812054,'1980-01-01','2022-12-31',2,dataset_id,2), + (548,8.330261092,'1980-01-01','2022-12-31',2,dataset_id,2), + (32,-4.779206526,'1980-01-01','2022-12-31',2,dataset_id,2), + (68,-2.11120786,'1980-01-01','2022-12-31',2,dataset_id,2), + (76,1.616452739,'1980-01-01','2022-12-31',2,dataset_id,2), + (152,-2.029651952,'1980-01-01','2022-12-31',2,dataset_id,2), + (218,1.471698448,'1980-01-01','2022-12-31',2,dataset_id,2), + (238,5.122962404,'1980-01-01','2022-12-31',2,dataset_id,2), + (328,3.298662394,'1980-01-01','2022-12-31',2,dataset_id,2), + (740,4.474693185,'1980-01-01','2022-12-31',2,dataset_id,2), + (600,-2.919215577,'1980-01-01','2022-12-31',2,dataset_id,2), + (604,-1.571664026,'1980-01-01','2022-12-31',2,dataset_id,2), + (780,6.055291835,'1980-01-01','2022-12-31',2,dataset_id,2), + (858,0.018042753,'1980-01-01','2022-12-31',2,dataset_id,2), + (862,1.856048005,'1980-01-01','2022-12-31',2,dataset_id,2); +end $$; \ No newline at end of file diff --git a/backend/migrations/20240815121352_add-merra-era-dry-projection-data.sql b/backend/migrations/20240815121352_add-merra-era-dry-projection-data.sql new file mode 100644 index 00000000..57deb61b --- /dev/null +++ b/backend/migrations/20240815121352_add-merra-era-dry-projection-data.sql @@ -0,0 +1,1053 @@ +do $$ +DECLARE + dataset_id int; +BEGIN + SELECT id INTO dataset_id FROM dataset WHERE short_name = 'dry_MERRA2_ERA5'; + + INSERT INTO data (id,value,start_date,end_date,source,dataset,geography_type) + VALUES + (12,6.362558128,'2001-01-01','2022-12-31',1,dataset_id,2), + (24,100.1704223,'2001-01-01','2022-12-31',1,dataset_id,2), + (204,357.6175756,'2001-01-01','2022-12-31',1,dataset_id,2), + (72,9.966302409,'2001-01-01','2022-12-31',1,dataset_id,2), + (854,171.5214749,'2001-01-01','2022-12-31',1,dataset_id,2), + (108,299.7225172,'2001-01-01','2022-12-31',1,dataset_id,2), + (120,519.772932,'2001-01-01','2022-12-31',1,dataset_id,2), + (140,212.3327783,'2001-01-01','2022-12-31',1,dataset_id,2), + (148,50.10528391,'2001-01-01','2022-12-31',1,dataset_id,2), + (818,0.207450886,'2001-01-01','2022-12-31',1,dataset_id,2), + (566,297.5334671,'2001-01-01','2022-12-31',1,dataset_id,2), + (178,450.9850102,'2001-01-01','2022-12-31',1,dataset_id,2), + (180,383.819275,'2001-01-01','2022-12-31',1,dataset_id,2), + (384,338.3923974,'2001-01-01','2022-12-31',1,dataset_id,2), + (262,1.640229023,'2001-01-01','2022-12-31',1,dataset_id,2), + (226,768.335727,'2001-01-01','2022-12-31',1,dataset_id,2), + (232,6.51843285,'2001-01-01','2022-12-31',1,dataset_id,2), + (231,107.4211294,'2001-01-01','2022-12-31',1,dataset_id,2), + (260,746.5731505,'2001-01-01','2022-12-31',1,dataset_id,2), + (266,438.3454468,'2001-01-01','2022-12-31',1,dataset_id,2), + (288,340.6176312,'2001-01-01','2022-12-31',1,dataset_id,2), + (324,233.8694322,'2001-01-01','2022-12-31',1,dataset_id,2), + (624,273.9515541,'2001-01-01','2022-12-31',1,dataset_id,2), + (404,67.88948849,'2001-01-01','2022-12-31',1,dataset_id,2), + (426,99.96420283,'2001-01-01','2022-12-31',1,dataset_id,2), + (430,352.7409242,'2001-01-01','2022-12-31',1,dataset_id,2), + (434,0.88623502,'2001-01-01','2022-12-31',1,dataset_id,2), + (450,557.5176774,'2001-01-01','2022-12-31',1,dataset_id,2), + (454,327.712458,'2001-01-01','2022-12-31',1,dataset_id,2), + (466,50.40531486,'2001-01-01','2022-12-31',1,dataset_id,2), + (478,1.741894534,'2001-01-01','2022-12-31',1,dataset_id,2), + (504,30.80718496,'2001-01-01','2022-12-31',1,dataset_id,2), + (508,223.9004399,'2001-01-01','2022-12-31',1,dataset_id,2), + (516,4.127389638,'2001-01-01','2022-12-31',1,dataset_id,2), + (562,14.99590732,'2001-01-01','2022-12-31',1,dataset_id,2), + (646,252.2721944,'2001-01-01','2022-12-31',1,dataset_id,2), + (686,80.5888884,'2001-01-01','2022-12-31',1,dataset_id,2), + (694,263.4034174,'2001-01-01','2022-12-31',1,dataset_id,2), + (706,12.25681549,'2001-01-01','2022-12-31',1,dataset_id,2), + (729,7.354266615,'2001-01-01','2022-12-31',1,dataset_id,2), + (834,193.1698856,'2001-01-01','2022-12-31',1,dataset_id,2), + (710,30.95742503,'2001-01-01','2022-12-31',1,dataset_id,2), + (728,82.34730764,'2001-01-01','2022-12-31',1,dataset_id,2), + (748,38.71936802,'2001-01-01','2022-12-31',1,dataset_id,2), + (270,131.6861431,'2001-01-01','2022-12-31',1,dataset_id,2), + (768,396.8973659,'2001-01-01','2022-12-31',1,dataset_id,2), + (788,21.49076745,'2001-01-01','2022-12-31',1,dataset_id,2), + (800,225.9193914,'2001-01-01','2022-12-31',1,dataset_id,2), + (732,0.082341016,'2001-01-01','2022-12-31',1,dataset_id,2), + (894,204.033328,'2001-01-01','2022-12-31',1,dataset_id,2), + (716,56.02953309,'2001-01-01','2022-12-31',1,dataset_id,2), + (620,171.3838947,'2001-01-01','2022-12-31',1,dataset_id,2), + (4,5.198611789,'2001-01-01','2022-12-31',1,dataset_id,2), + (50,937.5949818,'2001-01-01','2022-12-31',1,dataset_id,2), + (64,490.0043231,'2001-01-01','2022-12-31',1,dataset_id,2), + (104,139.2261137,'2001-01-01','2022-12-31',1,dataset_id,2), + (116,392.1440958,'2001-01-01','2022-12-31',1,dataset_id,2), + (156,124.2374914,'2001-01-01','2022-12-31',1,dataset_id,2), + (356,317.5681611,'2001-01-01','2022-12-31',1,dataset_id,2), + (392,740.3199292,'2001-01-01','2022-12-31',1,dataset_id,2), + (398,43.7524943,'2001-01-01','2022-12-31',1,dataset_id,2), + (417,38.80550199,'2001-01-01','2022-12-31',1,dataset_id,2), + (418,211.5200402,'2001-01-01','2022-12-31',1,dataset_id,2), + (496,11.63845817,'2001-01-01','2022-12-31',1,dataset_id,2), + (524,153.290855,'2001-01-01','2022-12-31',1,dataset_id,2), + (408,209.6226448,'2001-01-01','2022-12-31',1,dataset_id,2), + (586,7.613730957,'2001-01-01','2022-12-31',1,dataset_id,2), + (643,257.1403226,'2001-01-01','2022-12-31',1,dataset_id,2), + (410,388.6998807,'2001-01-01','2022-12-31',1,dataset_id,2), + (144,562.8372305,'2001-01-01','2022-12-31',1,dataset_id,2), + (158,678.437294,'2001-01-01','2022-12-31',1,dataset_id,2), + (762,23.11949136,'2001-01-01','2022-12-31',1,dataset_id,2), + (764,598.9089038,'2001-01-01','2022-12-31',1,dataset_id,2), + (795,2.709497704,'2001-01-01','2022-12-31',1,dataset_id,2), + (860,11.92931865,'2001-01-01','2022-12-31',1,dataset_id,2), + (704,431.7525473,'2001-01-01','2022-12-31',1,dataset_id,2), + (8,304.9032921,'2001-01-01','2022-12-31',1,dataset_id,2), + (51,28.09209674,'2001-01-01','2022-12-31',1,dataset_id,2), + (40,365.4302555,'2001-01-01','2022-12-31',1,dataset_id,2), + (31,20.97532493,'2001-01-01','2022-12-31',1,dataset_id,2), + (112,232.4496615,'2001-01-01','2022-12-31',1,dataset_id,2), + (56,298.5194756,'2001-01-01','2022-12-31',1,dataset_id,2), + (70,306.1495529,'2001-01-01','2022-12-31',1,dataset_id,2), + (100,97.76781224,'2001-01-01','2022-12-31',1,dataset_id,2), + (191,290.5626695,'2001-01-01','2022-12-31',1,dataset_id,2), + (196,81.74073258,'2001-01-01','2022-12-31',1,dataset_id,2), + (203,179.0851902,'2001-01-01','2022-12-31',1,dataset_id,2), + (208,373.0370824,'2001-01-01','2022-12-31',1,dataset_id,2), + (233,307.6667613,'2001-01-01','2022-12-31',1,dataset_id,2), + (246,375.7839155,'2001-01-01','2022-12-31',1,dataset_id,2), + (250,209.2025296,'2001-01-01','2022-12-31',1,dataset_id,2), + (275,18.29487482,'2001-01-01','2022-12-31',1,dataset_id,2), + (268,160.6089532,'2001-01-01','2022-12-31',1,dataset_id,2), + (276,254.5372971,'2001-01-01','2022-12-31',1,dataset_id,2), + (300,171.759608,'2001-01-01','2022-12-31',1,dataset_id,2), + (348,112.6510033,'2001-01-01','2022-12-31',1,dataset_id,2), + (352,1081.185838,'2001-01-01','2022-12-31',1,dataset_id,2), + (364,10.77610055,'2001-01-01','2022-12-31',1,dataset_id,2), + (368,4.876401363,'2001-01-01','2022-12-31',1,dataset_id,2), + (372,641.6622893,'2001-01-01','2022-12-31',1,dataset_id,2), + (376,22.43339404,'2001-01-01','2022-12-31',1,dataset_id,2), + (380,209.2682559,'2001-01-01','2022-12-31',1,dataset_id,2), + (400,2.644356385,'2001-01-01','2022-12-31',1,dataset_id,2), + (414,0.017834236,'2001-01-01','2022-12-31',1,dataset_id,2), + (428,271.1727222,'2001-01-01','2022-12-31',1,dataset_id,2), + (422,63.78700749,'2001-01-01','2022-12-31',1,dataset_id,2), + (440,278.0442226,'2001-01-01','2022-12-31',1,dataset_id,2), + (442,296.9786245,'2001-01-01','2022-12-31',1,dataset_id,2), + (807,141.0614239,'2001-01-01','2022-12-31',1,dataset_id,2), + (498,90.40207134,'2001-01-01','2022-12-31',1,dataset_id,2), + (499,480.6333554,'2001-01-01','2022-12-31',1,dataset_id,2), + (528,323.586713,'2001-01-01','2022-12-31',1,dataset_id,2), + (578,856.1763515,'2001-01-01','2022-12-31',1,dataset_id,2), + (512,0.060823445,'2001-01-01','2022-12-31',1,dataset_id,2), + (616,188.2917979,'2001-01-01','2022-12-31',1,dataset_id,2), + (634,0.013164594,'2001-01-01','2022-12-31',1,dataset_id,2), + (642,105.0147225,'2001-01-01','2022-12-31',1,dataset_id,2), + (682,0.017568222,'2001-01-01','2022-12-31',1,dataset_id,2), + (688,154.0175751,'2001-01-01','2022-12-31',1,dataset_id,2), + (703,190.5905832,'2001-01-01','2022-12-31',1,dataset_id,2), + (705,311.1088746,'2001-01-01','2022-12-31',1,dataset_id,2), + (724,98.63687854,'2001-01-01','2022-12-31',1,dataset_id,2), + (752,421.5839924,'2001-01-01','2022-12-31',1,dataset_id,2), + (756,506.3446413,'2001-01-01','2022-12-31',1,dataset_id,2), + (760,15.36073956,'2001-01-01','2022-12-31',1,dataset_id,2), + (792,117.1482885,'2001-01-01','2022-12-31',1,dataset_id,2), + (804,137.5864266,'2001-01-01','2022-12-31',1,dataset_id,2), + (784,0.05130122,'2001-01-01','2022-12-31',1,dataset_id,2), + (826,530.7253173,'2001-01-01','2022-12-31',1,dataset_id,2), + (887,0.33006591,'2001-01-01','2022-12-31',1,dataset_id,2), + (84,620.1736,'2001-01-01','2022-12-31',1,dataset_id,2), + (124,286.7226898,'2001-01-01','2022-12-31',1,dataset_id,2), + (170,679.8428106,'2001-01-01','2022-12-31',1,dataset_id,2), + (188,863.1792134,'2001-01-01','2022-12-31',1,dataset_id,2), + (192,24.33832945,'2001-01-01','2022-12-31',1,dataset_id,2), + (214,55.18897935,'2001-01-01','2022-12-31',1,dataset_id,2), + (222,408.7577128,'2001-01-01','2022-12-31',1,dataset_id,2), + (304,289.1979723,'2001-01-01','2022-12-31',1,dataset_id,2), + (320,562.7219554,'2001-01-01','2022-12-31',1,dataset_id,2), + (332,74.32163351,'2001-01-01','2022-12-31',1,dataset_id,2), + (340,377.901992,'2001-01-01','2022-12-31',1,dataset_id,2), + (388,325.2637492,'2001-01-01','2022-12-31',1,dataset_id,2), + (484,182.0926855,'2001-01-01','2022-12-31',1,dataset_id,2), + (558,436.4331997,'2001-01-01','2022-12-31',1,dataset_id,2), + (591,1230.680575,'2001-01-01','2022-12-31',1,dataset_id,2), + (630,279.5860989,'2001-01-01','2022-12-31',1,dataset_id,2), + (44,423.4833956,'2001-01-01','2022-12-31',1,dataset_id,2), + (840,231.1924386,'2001-01-01','2022-12-31',1,dataset_id,2), + (10,145.9795745,'2001-01-01','2022-12-31',1,dataset_id,2), + (36,47.25854273,'2001-01-01','2022-12-31',1,dataset_id,2), + (96,1832.587185,'2001-01-01','2022-12-31',1,dataset_id,2), + (242,1069.694266,'2001-01-01','2022-12-31',1,dataset_id,2), + (360,1328.017666,'2001-01-01','2022-12-31',1,dataset_id,2), + (458,1638.630628,'2001-01-01','2022-12-31',1,dataset_id,2), + (540,379.0053673,'2001-01-01','2022-12-31',1,dataset_id,2), + (554,524.3441017,'2001-01-01','2022-12-31',1,dataset_id,2), + (598,971.069579,'2001-01-01','2022-12-31',1,dataset_id,2), + (608,1300.348413,'2001-01-01','2022-12-31',1,dataset_id,2), + (90,1792.422805,'2001-01-01','2022-12-31',1,dataset_id,2), + (626,296.4176238,'2001-01-01','2022-12-31',1,dataset_id,2), + (548,996.9803059,'2001-01-01','2022-12-31',1,dataset_id,2), + (32,77.91988277,'2001-01-01','2022-12-31',1,dataset_id,2), + (68,251.5628696,'2001-01-01','2022-12-31',1,dataset_id,2), + (76,455.2516858,'2001-01-01','2022-12-31',1,dataset_id,2), + (152,273.3707339,'2001-01-01','2022-12-31',1,dataset_id,2), + (218,322.2509736,'2001-01-01','2022-12-31',1,dataset_id,2), + (238,232.3554901,'2001-01-01','2022-12-31',1,dataset_id,2), + (328,521.398857,'2001-01-01','2022-12-31',1,dataset_id,2), + (740,606.377356,'2001-01-01','2022-12-31',1,dataset_id,2), + (600,193.8627475,'2001-01-01','2022-12-31',1,dataset_id,2), + (604,314.9283898,'2001-01-01','2022-12-31',1,dataset_id,2), + (780,846.3116937,'2001-01-01','2022-12-31',1,dataset_id,2), + (858,267.1618675,'2001-01-01','2022-12-31',1,dataset_id,2), + (862,304.4164197,'2001-01-01','2022-12-31',1,dataset_id,2), + (12,2.886531254,'1980-01-01','2000-12-31',1,dataset_id,2), + (24,221.1805525,'1980-01-01','2000-12-31',1,dataset_id,2), + (204,322.443262,'1980-01-01','2000-12-31',1,dataset_id,2), + (72,8.854950689,'1980-01-01','2000-12-31',1,dataset_id,2), + (854,141.8997769,'1980-01-01','2000-12-31',1,dataset_id,2), + (108,247.274704,'1980-01-01','2000-12-31',1,dataset_id,2), + (120,687.0013466,'1980-01-01','2000-12-31',1,dataset_id,2), + (140,474.6351943,'1980-01-01','2000-12-31',1,dataset_id,2), + (148,50.54176181,'1980-01-01','2000-12-31',1,dataset_id,2), + (818,0.229058708,'1980-01-01','2000-12-31',1,dataset_id,2), + (566,376.3321682,'1980-01-01','2000-12-31',1,dataset_id,2), + (178,575.1031528,'1980-01-01','2000-12-31',1,dataset_id,2), + (180,544.5804372,'1980-01-01','2000-12-31',1,dataset_id,2), + (384,404.6980747,'1980-01-01','2000-12-31',1,dataset_id,2), + (262,3.770360685,'1980-01-01','2000-12-31',1,dataset_id,2), + (226,958.8974357,'1980-01-01','2000-12-31',1,dataset_id,2), + (232,12.34256207,'1980-01-01','2000-12-31',1,dataset_id,2), + (231,231.6031041,'1980-01-01','2000-12-31',1,dataset_id,2), + (260,736.5292726,'1980-01-01','2000-12-31',1,dataset_id,2), + (266,776.9480968,'1980-01-01','2000-12-31',1,dataset_id,2), + (288,306.3474529,'1980-01-01','2000-12-31',1,dataset_id,2), + (324,708.3927104,'1980-01-01','2000-12-31',1,dataset_id,2), + (624,718.8184373,'1980-01-01','2000-12-31',1,dataset_id,2), + (404,66.70395808,'1980-01-01','2000-12-31',1,dataset_id,2), + (426,109.289374,'1980-01-01','2000-12-31',1,dataset_id,2), + (430,771.6984984,'1980-01-01','2000-12-31',1,dataset_id,2), + (434,1.544323153,'1980-01-01','2000-12-31',1,dataset_id,2), + (450,646.7119056,'1980-01-01','2000-12-31',1,dataset_id,2), + (454,293.440052,'1980-01-01','2000-12-31',1,dataset_id,2), + (466,56.6480064,'1980-01-01','2000-12-31',1,dataset_id,2), + (478,1.688564231,'1980-01-01','2000-12-31',1,dataset_id,2), + (504,26.82171132,'1980-01-01','2000-12-31',1,dataset_id,2), + (508,188.7814306,'1980-01-01','2000-12-31',1,dataset_id,2), + (516,5.251570592,'1980-01-01','2000-12-31',1,dataset_id,2), + (562,7.66527373,'1980-01-01','2000-12-31',1,dataset_id,2), + (646,170.7680194,'1980-01-01','2000-12-31',1,dataset_id,2), + (686,147.3206681,'1980-01-01','2000-12-31',1,dataset_id,2), + (694,1041.336183,'1980-01-01','2000-12-31',1,dataset_id,2), + (706,4.315584513,'1980-01-01','2000-12-31',1,dataset_id,2), + (729,19.00364693,'1980-01-01','2000-12-31',1,dataset_id,2), + (834,210.0910479,'1980-01-01','2000-12-31',1,dataset_id,2), + (710,44.28661292,'1980-01-01','2000-12-31',1,dataset_id,2), + (728,219.7855282,'1980-01-01','2000-12-31',1,dataset_id,2), + (748,90.38080836,'1980-01-01','2000-12-31',1,dataset_id,2), + (270,242.7812175,'1980-01-01','2000-12-31',1,dataset_id,2), + (768,384.3708897,'1980-01-01','2000-12-31',1,dataset_id,2), + (788,13.74470295,'1980-01-01','2000-12-31',1,dataset_id,2), + (800,306.8230865,'1980-01-01','2000-12-31',1,dataset_id,2), + (732,0.077080232,'1980-01-01','2000-12-31',1,dataset_id,2), + (894,243.8686483,'1980-01-01','2000-12-31',1,dataset_id,2), + (716,65.26590445,'1980-01-01','2000-12-31',1,dataset_id,2), + (620,197.9166527,'1980-01-01','2000-12-31',1,dataset_id,2), + (4,6.70068048,'1980-01-01','2000-12-31',1,dataset_id,2), + (50,254.0392589,'1980-01-01','2000-12-31',1,dataset_id,2), + (64,328.2712801,'1980-01-01','2000-12-31',1,dataset_id,2), + (104,134.4451026,'1980-01-01','2000-12-31',1,dataset_id,2), + (116,657.8614726,'1980-01-01','2000-12-31',1,dataset_id,2), + (156,97.14778062,'1980-01-01','2000-12-31',1,dataset_id,2), + (356,249.6433368,'1980-01-01','2000-12-31',1,dataset_id,2), + (392,566.095947,'1980-01-01','2000-12-31',1,dataset_id,2), + (398,35.42729881,'1980-01-01','2000-12-31',1,dataset_id,2), + (417,26.65321228,'1980-01-01','2000-12-31',1,dataset_id,2), + (418,375.606703,'1980-01-01','2000-12-31',1,dataset_id,2), + (496,11.73877329,'1980-01-01','2000-12-31',1,dataset_id,2), + (524,70.71256347,'1980-01-01','2000-12-31',1,dataset_id,2), + (408,224.2422738,'1980-01-01','2000-12-31',1,dataset_id,2), + (586,4.19980821,'1980-01-01','2000-12-31',1,dataset_id,2), + (643,250.7338735,'1980-01-01','2000-12-31',1,dataset_id,2), + (410,392.9723592,'1980-01-01','2000-12-31',1,dataset_id,2), + (144,105.5602684,'1980-01-01','2000-12-31',1,dataset_id,2), + (158,649.9880143,'1980-01-01','2000-12-31',1,dataset_id,2), + (762,27.58698035,'1980-01-01','2000-12-31',1,dataset_id,2), + (764,562.9654244,'1980-01-01','2000-12-31',1,dataset_id,2), + (795,1.768546278,'1980-01-01','2000-12-31',1,dataset_id,2), + (860,5.300023537,'1980-01-01','2000-12-31',1,dataset_id,2), + (704,195.5922266,'1980-01-01','2000-12-31',1,dataset_id,2), + (8,268.4362513,'1980-01-01','2000-12-31',1,dataset_id,2), + (51,9.033529635,'1980-01-01','2000-12-31',1,dataset_id,2), + (40,385.1589305,'1980-01-01','2000-12-31',1,dataset_id,2), + (31,9.500104216,'1980-01-01','2000-12-31',1,dataset_id,2), + (112,251.8674556,'1980-01-01','2000-12-31',1,dataset_id,2), + (56,316.3653411,'1980-01-01','2000-12-31',1,dataset_id,2), + (70,263.9742575,'1980-01-01','2000-12-31',1,dataset_id,2), + (100,72.19546101,'1980-01-01','2000-12-31',1,dataset_id,2), + (191,252.8325294,'1980-01-01','2000-12-31',1,dataset_id,2), + (196,79.94097245,'1980-01-01','2000-12-31',1,dataset_id,2), + (203,186.0947757,'1980-01-01','2000-12-31',1,dataset_id,2), + (208,373.758975,'1980-01-01','2000-12-31',1,dataset_id,2), + (233,377.7648822,'1980-01-01','2000-12-31',1,dataset_id,2), + (246,427.2701324,'1980-01-01','2000-12-31',1,dataset_id,2), + (250,216.1901747,'1980-01-01','2000-12-31',1,dataset_id,2), + (275,11.45267018,'1980-01-01','2000-12-31',1,dataset_id,2), + (268,159.2302306,'1980-01-01','2000-12-31',1,dataset_id,2), + (276,264.2282885,'1980-01-01','2000-12-31',1,dataset_id,2), + (300,121.2485036,'1980-01-01','2000-12-31',1,dataset_id,2), + (348,107.0719723,'1980-01-01','2000-12-31',1,dataset_id,2), + (352,991.1756345,'1980-01-01','2000-12-31',1,dataset_id,2), + (364,3.581560716,'1980-01-01','2000-12-31',1,dataset_id,2), + (368,2.989747459,'1980-01-01','2000-12-31',1,dataset_id,2), + (372,691.8587429,'1980-01-01','2000-12-31',1,dataset_id,2), + (376,22.77069887,'1980-01-01','2000-12-31',1,dataset_id,2), + (380,214.0741645,'1980-01-01','2000-12-31',1,dataset_id,2), + (400,2.056887537,'1980-01-01','2000-12-31',1,dataset_id,2), + (414,0.989683888,'1980-01-01','2000-12-31',1,dataset_id,2), + (428,329.7466691,'1980-01-01','2000-12-31',1,dataset_id,2), + (422,52.85654152,'1980-01-01','2000-12-31',1,dataset_id,2), + (440,288.9485417,'1980-01-01','2000-12-31',1,dataset_id,2), + (442,333.6427942,'1980-01-01','2000-12-31',1,dataset_id,2), + (807,114.7755353,'1980-01-01','2000-12-31',1,dataset_id,2), + (498,61.295998,'1980-01-01','2000-12-31',1,dataset_id,2), + (499,375.6060894,'1980-01-01','2000-12-31',1,dataset_id,2), + (528,321.3323395,'1980-01-01','2000-12-31',1,dataset_id,2), + (578,842.169353,'1980-01-01','2000-12-31',1,dataset_id,2), + (512,0.024834784,'1980-01-01','2000-12-31',1,dataset_id,2), + (616,181.3743107,'1980-01-01','2000-12-31',1,dataset_id,2), + (634,0.365868669,'1980-01-01','2000-12-31',1,dataset_id,2), + (642,60.49742899,'1980-01-01','2000-12-31',1,dataset_id,2), + (682,0.040678319,'1980-01-01','2000-12-31',1,dataset_id,2), + (688,103.776306,'1980-01-01','2000-12-31',1,dataset_id,2), + (703,200.0667683,'1980-01-01','2000-12-31',1,dataset_id,2), + (705,333.7175355,'1980-01-01','2000-12-31',1,dataset_id,2), + (724,104.3338975,'1980-01-01','2000-12-31',1,dataset_id,2), + (752,450.01913,'1980-01-01','2000-12-31',1,dataset_id,2), + (756,523.4402523,'1980-01-01','2000-12-31',1,dataset_id,2), + (760,10.46234935,'1980-01-01','2000-12-31',1,dataset_id,2), + (792,102.6250841,'1980-01-01','2000-12-31',1,dataset_id,2), + (804,128.37966,'1980-01-01','2000-12-31',1,dataset_id,2), + (784,0.097385504,'1980-01-01','2000-12-31',1,dataset_id,2), + (826,541.5546568,'1980-01-01','2000-12-31',1,dataset_id,2), + (887,0.328082783,'1980-01-01','2000-12-31',1,dataset_id,2), + (84,153.1131605,'1980-01-01','2000-12-31',1,dataset_id,2), + (124,281.965721,'1980-01-01','2000-12-31',1,dataset_id,2), + (170,960.6074621,'1980-01-01','2000-12-31',1,dataset_id,2), + (188,331.3861188,'1980-01-01','2000-12-31',1,dataset_id,2), + (192,117.3729885,'1980-01-01','2000-12-31',1,dataset_id,2), + (214,45.94048669,'1980-01-01','2000-12-31',1,dataset_id,2), + (222,21.29952219,'1980-01-01','2000-12-31',1,dataset_id,2), + (304,301.4632482,'1980-01-01','2000-12-31',1,dataset_id,2), + (320,50.42551568,'1980-01-01','2000-12-31',1,dataset_id,2), + (332,56.46520181,'1980-01-01','2000-12-31',1,dataset_id,2), + (340,32.24715231,'1980-01-01','2000-12-31',1,dataset_id,2), + (388,178.0429277,'1980-01-01','2000-12-31',1,dataset_id,2), + (484,100.824653,'1980-01-01','2000-12-31',1,dataset_id,2), + (558,56.14551508,'1980-01-01','2000-12-31',1,dataset_id,2), + (591,780.1426713,'1980-01-01','2000-12-31',1,dataset_id,2), + (630,382.219983,'1980-01-01','2000-12-31',1,dataset_id,2), + (44,355.6372726,'1980-01-01','2000-12-31',1,dataset_id,2), + (840,237.2493677,'1980-01-01','2000-12-31',1,dataset_id,2), + (10,138.8980973,'1980-01-01','2000-12-31',1,dataset_id,2), + (36,56.57381169,'1980-01-01','2000-12-31',1,dataset_id,2), + (96,1402.107364,'1980-01-01','2000-12-31',1,dataset_id,2), + (242,751.9214339,'1980-01-01','2000-12-31',1,dataset_id,2), + (360,1009.023437,'1980-01-01','2000-12-31',1,dataset_id,2), + (458,1373.730791,'1980-01-01','2000-12-31',1,dataset_id,2), + (540,400.6387625,'1980-01-01','2000-12-31',1,dataset_id,2), + (554,488.6645067,'1980-01-01','2000-12-31',1,dataset_id,2), + (598,705.2749803,'1980-01-01','2000-12-31',1,dataset_id,2), + (608,625.3857435,'1980-01-01','2000-12-31',1,dataset_id,2), + (90,943.4871868,'1980-01-01','2000-12-31',1,dataset_id,2), + (626,330.0615497,'1980-01-01','2000-12-31',1,dataset_id,2), + (548,700.5104178,'1980-01-01','2000-12-31',1,dataset_id,2), + (32,101.3133471,'1980-01-01','2000-12-31',1,dataset_id,2), + (68,284.5447922,'1980-01-01','2000-12-31',1,dataset_id,2), + (76,682.3957374,'1980-01-01','2000-12-31',1,dataset_id,2), + (152,349.600828,'1980-01-01','2000-12-31',1,dataset_id,2), + (218,495.5116797,'1980-01-01','2000-12-31',1,dataset_id,2), + (238,283.566303,'1980-01-01','2000-12-31',1,dataset_id,2), + (328,453.9872131,'1980-01-01','2000-12-31',1,dataset_id,2), + (740,850.2473057,'1980-01-01','2000-12-31',1,dataset_id,2), + (600,132.3681262,'1980-01-01','2000-12-31',1,dataset_id,2), + (604,314.4557877,'1980-01-01','2000-12-31',1,dataset_id,2), + (780,436.7174209,'1980-01-01','2000-12-31',1,dataset_id,2), + (858,226.7622212,'1980-01-01','2000-12-31',1,dataset_id,2), + (862,931.7434789,'1980-01-01','2000-12-31',1,dataset_id,2), + (12,3.692443922,'1980-01-01','2022-12-31',1,dataset_id,2), + (24,116.9815717,'1980-01-01','2022-12-31',1,dataset_id,2), + (204,339.3721256,'1980-01-01','2022-12-31',1,dataset_id,2), + (72,9.259466838,'1980-01-01','2022-12-31',1,dataset_id,2), + (854,152.5580478,'1980-01-01','2022-12-31',1,dataset_id,2), + (108,270.5491605,'1980-01-01','2022-12-31',1,dataset_id,2), + (120,551.9721437,'1980-01-01','2022-12-31',1,dataset_id,2), + (140,273.7138887,'1980-01-01','2022-12-31',1,dataset_id,2), + (148,49.09475252,'1980-01-01','2022-12-31',1,dataset_id,2), + (818,0.196030528,'1980-01-01','2022-12-31',1,dataset_id,2), + (566,313.1384334,'1980-01-01','2022-12-31',1,dataset_id,2), + (178,488.3830483,'1980-01-01','2022-12-31',1,dataset_id,2), + (180,422.830111,'1980-01-01','2022-12-31',1,dataset_id,2), + (384,350.7115944,'1980-01-01','2022-12-31',1,dataset_id,2), + (262,2.276333076,'1980-01-01','2022-12-31',1,dataset_id,2), + (226,817.9651496,'1980-01-01','2022-12-31',1,dataset_id,2), + (232,8.6964004,'1980-01-01','2022-12-31',1,dataset_id,2), + (231,126.32144,'1980-01-01','2022-12-31',1,dataset_id,2), + (260,745.8896082,'1980-01-01','2022-12-31',1,dataset_id,2), + (266,492.0843661,'1980-01-01','2022-12-31',1,dataset_id,2), + (288,316.6015137,'1980-01-01','2022-12-31',1,dataset_id,2), + (324,327.1503398,'1980-01-01','2022-12-31',1,dataset_id,2), + (624,530.6575041,'1980-01-01','2022-12-31',1,dataset_id,2), + (404,63.92816329,'1980-01-01','2022-12-31',1,dataset_id,2), + (426,104.1877365,'1980-01-01','2022-12-31',1,dataset_id,2), + (430,418.3773644,'1980-01-01','2022-12-31',1,dataset_id,2), + (434,1.029512308,'1980-01-01','2022-12-31',1,dataset_id,2), + (450,573.952508,'1980-01-01','2022-12-31',1,dataset_id,2), + (454,312.3258363,'1980-01-01','2022-12-31',1,dataset_id,2), + (466,49.42449477,'1980-01-01','2022-12-31',1,dataset_id,2), + (478,1.540101597,'1980-01-01','2022-12-31',1,dataset_id,2), + (504,28.44449196,'1980-01-01','2022-12-31',1,dataset_id,2), + (508,202.6130656,'1980-01-01','2022-12-31',1,dataset_id,2), + (516,4.443222792,'1980-01-01','2022-12-31',1,dataset_id,2), + (562,9.767782089,'1980-01-01','2022-12-31',1,dataset_id,2), + (646,186.8455686,'1980-01-01','2022-12-31',1,dataset_id,2), + (686,111.7190453,'1980-01-01','2022-12-31',1,dataset_id,2), + (694,364.356066,'1980-01-01','2022-12-31',1,dataset_id,2), + (706,5.837780431,'1980-01-01','2022-12-31',1,dataset_id,2), + (729,9.459768321,'1980-01-01','2022-12-31',1,dataset_id,2), + (834,195.7055662,'1980-01-01','2022-12-31',1,dataset_id,2), + (710,34.71309939,'1980-01-01','2022-12-31',1,dataset_id,2), + (728,105.7460824,'1980-01-01','2022-12-31',1,dataset_id,2), + (748,55.0658979,'1980-01-01','2022-12-31',1,dataset_id,2), + (270,183.9373725,'1980-01-01','2022-12-31',1,dataset_id,2), + (768,394.5008264,'1980-01-01','2022-12-31',1,dataset_id,2), + (788,15.24981442,'1980-01-01','2022-12-31',1,dataset_id,2), + (800,242.0041794,'1980-01-01','2022-12-31',1,dataset_id,2), + (732,0.076081029,'1980-01-01','2022-12-31',1,dataset_id,2), + (894,217.3049115,'1980-01-01','2022-12-31',1,dataset_id,2), + (716,60.51969853,'1980-01-01','2022-12-31',1,dataset_id,2), + (620,183.0253561,'1980-01-01','2022-12-31',1,dataset_id,2), + (4,5.320100269,'1980-01-01','2022-12-31',1,dataset_id,2), + (50,316.9002507,'1980-01-01','2022-12-31',1,dataset_id,2), + (64,359.2073553,'1980-01-01','2022-12-31',1,dataset_id,2), + (104,131.9097791,'1980-01-01','2022-12-31',1,dataset_id,2), + (116,472.1469404,'1980-01-01','2022-12-31',1,dataset_id,2), + (156,104.5230693,'1980-01-01','2022-12-31',1,dataset_id,2), + (356,263.4735662,'1980-01-01','2022-12-31',1,dataset_id,2), + (392,621.7596939,'1980-01-01','2022-12-31',1,dataset_id,2), + (398,38.44361465,'1980-01-01','2022-12-31',1,dataset_id,2), + (417,26.56172068,'1980-01-01','2022-12-31',1,dataset_id,2), + (418,217.9894454,'1980-01-01','2022-12-31',1,dataset_id,2), + (496,11.47227911,'1980-01-01','2022-12-31',1,dataset_id,2), + (524,85.13317392,'1980-01-01','2022-12-31',1,dataset_id,2), + (408,223.4202458,'1980-01-01','2022-12-31',1,dataset_id,2), + (586,5.125532479,'1980-01-01','2022-12-31',1,dataset_id,2), + (643,253.3227699,'1980-01-01','2022-12-31',1,dataset_id,2), + (410,393.8680122,'1980-01-01','2022-12-31',1,dataset_id,2), + (144,289.9797799,'1980-01-01','2022-12-31',1,dataset_id,2), + (158,671.6072137,'1980-01-01','2022-12-31',1,dataset_id,2), + (762,23.7259941,'1980-01-01','2022-12-31',1,dataset_id,2), + (764,569.1201037,'1980-01-01','2022-12-31',1,dataset_id,2), + (795,1.979682129,'1980-01-01','2022-12-31',1,dataset_id,2), + (860,6.349317451,'1980-01-01','2022-12-31',1,dataset_id,2), + (704,226.3377743,'1980-01-01','2022-12-31',1,dataset_id,2), + (8,278.2060229,'1980-01-01','2022-12-31',1,dataset_id,2), + (51,12.20955002,'1980-01-01','2022-12-31',1,dataset_id,2), + (40,375.241733,'1980-01-01','2022-12-31',1,dataset_id,2), + (31,15.00697203,'1980-01-01','2022-12-31',1,dataset_id,2), + (112,243.4666842,'1980-01-01','2022-12-31',1,dataset_id,2), + (56,306.7763235,'1980-01-01','2022-12-31',1,dataset_id,2), + (70,272.7918842,'1980-01-01','2022-12-31',1,dataset_id,2), + (100,80.22214436,'1980-01-01','2022-12-31',1,dataset_id,2), + (191,263.2107175,'1980-01-01','2022-12-31',1,dataset_id,2), + (196,76.5518485,'1980-01-01','2022-12-31',1,dataset_id,2), + (203,184.2117294,'1980-01-01','2022-12-31',1,dataset_id,2), + (208,372.8818285,'1980-01-01','2022-12-31',1,dataset_id,2), + (233,321.9399142,'1980-01-01','2022-12-31',1,dataset_id,2), + (246,393.8897149,'1980-01-01','2022-12-31',1,dataset_id,2), + (250,211.3298681,'1980-01-01','2022-12-31',1,dataset_id,2), + (275,13.8513309,'1980-01-01','2022-12-31',1,dataset_id,2), + (268,155.663619,'1980-01-01','2022-12-31',1,dataset_id,2), + (276,259.1953331,'1980-01-01','2022-12-31',1,dataset_id,2), + (300,140.296056,'1980-01-01','2022-12-31',1,dataset_id,2), + (348,108.7336256,'1980-01-01','2022-12-31',1,dataset_id,2), + (352,1018.849759,'1980-01-01','2022-12-31',1,dataset_id,2), + (364,5.736466036,'1980-01-01','2022-12-31',1,dataset_id,2), + (368,3.688090466,'1980-01-01','2022-12-31',1,dataset_id,2), + (372,653.0485047,'1980-01-01','2022-12-31',1,dataset_id,2), + (376,22.94838754,'1980-01-01','2022-12-31',1,dataset_id,2), + (380,203.3607338,'1980-01-01','2022-12-31',1,dataset_id,2), + (400,2.101137191,'1980-01-01','2022-12-31',1,dataset_id,2), + (414,0.03371161,'1980-01-01','2022-12-31',1,dataset_id,2), + (428,305.0969455,'1980-01-01','2022-12-31',1,dataset_id,2), + (422,56.77561525,'1980-01-01','2022-12-31',1,dataset_id,2), + (440,283.2378647,'1980-01-01','2022-12-31',1,dataset_id,2), + (442,311.3289971,'1980-01-01','2022-12-31',1,dataset_id,2), + (807,120.7761254,'1980-01-01','2022-12-31',1,dataset_id,2), + (498,67.60285801,'1980-01-01','2022-12-31',1,dataset_id,2), + (499,394.2286927,'1980-01-01','2022-12-31',1,dataset_id,2), + (528,323.6045621,'1980-01-01','2022-12-31',1,dataset_id,2), + (578,851.387536,'1980-01-01','2022-12-31',1,dataset_id,2), + (512,0.03256643,'1980-01-01','2022-12-31',1,dataset_id,2), + (616,183.0034358,'1980-01-01','2022-12-31',1,dataset_id,2), + (634,0.039365131,'1980-01-01','2022-12-31',1,dataset_id,2), + (642,77.80973632,'1980-01-01','2022-12-31',1,dataset_id,2), + (682,0.018141942,'1980-01-01','2022-12-31',1,dataset_id,2), + (688,120.2396534,'1980-01-01','2022-12-31',1,dataset_id,2), + (703,193.1881643,'1980-01-01','2022-12-31',1,dataset_id,2), + (705,322.5084233,'1980-01-01','2022-12-31',1,dataset_id,2), + (724,99.14604134,'1980-01-01','2022-12-31',1,dataset_id,2), + (752,431.9511119,'1980-01-01','2022-12-31',1,dataset_id,2), + (756,508.1043407,'1980-01-01','2022-12-31',1,dataset_id,2), + (760,12.36189962,'1980-01-01','2022-12-31',1,dataset_id,2), + (792,103.432582,'1980-01-01','2022-12-31',1,dataset_id,2), + (804,132.7839546,'1980-01-01','2022-12-31',1,dataset_id,2), + (784,0.063557885,'1980-01-01','2022-12-31',1,dataset_id,2), + (826,536.4680979,'1980-01-01','2022-12-31',1,dataset_id,2), + (887,0.306612415,'1980-01-01','2022-12-31',1,dataset_id,2), + (84,173.207598,'1980-01-01','2022-12-31',1,dataset_id,2), + (124,278.5900132,'1980-01-01','2022-12-31',1,dataset_id,2), + (170,666.0327761,'1980-01-01','2022-12-31',1,dataset_id,2), + (188,410.5831047,'1980-01-01','2022-12-31',1,dataset_id,2), + (192,30.46230771,'1980-01-01','2022-12-31',1,dataset_id,2), + (214,50.38517206,'1980-01-01','2022-12-31',1,dataset_id,2), + (222,38.53670284,'1980-01-01','2022-12-31',1,dataset_id,2), + (304,292.9752933,'1980-01-01','2022-12-31',1,dataset_id,2), + (320,71.27353459,'1980-01-01','2022-12-31',1,dataset_id,2), + (332,62.02589148,'1980-01-01','2022-12-31',1,dataset_id,2), + (340,56.10385333,'1980-01-01','2022-12-31',1,dataset_id,2), + (388,213.0864206,'1980-01-01','2022-12-31',1,dataset_id,2), + (484,125.1175365,'1980-01-01','2022-12-31',1,dataset_id,2), + (558,91.59157156,'1980-01-01','2022-12-31',1,dataset_id,2), + (591,925.5221404,'1980-01-01','2022-12-31',1,dataset_id,2), + (630,308.5480575,'1980-01-01','2022-12-31',1,dataset_id,2), + (44,360.7375555,'1980-01-01','2022-12-31',1,dataset_id,2), + (840,232.4564977,'1980-01-01','2022-12-31',1,dataset_id,2), + (10,142.1818679,'1980-01-01','2022-12-31',1,dataset_id,2), + (36,47.94397692,'1980-01-01','2022-12-31',1,dataset_id,2), + (96,1452.947078,'1980-01-01','2022-12-31',1,dataset_id,2), + (242,885.2399489,'1980-01-01','2022-12-31',1,dataset_id,2), + (360,1083.356982,'1980-01-01','2022-12-31',1,dataset_id,2), + (458,1454.793827,'1980-01-01','2022-12-31',1,dataset_id,2), + (540,389.193973,'1980-01-01','2022-12-31',1,dataset_id,2), + (554,501.3140427,'1980-01-01','2022-12-31',1,dataset_id,2), + (598,696.4332288,'1980-01-01','2022-12-31',1,dataset_id,2), + (608,709.6151705,'1980-01-01','2022-12-31',1,dataset_id,2), + (90,1083.145347,'1980-01-01','2022-12-31',1,dataset_id,2), + (626,276.5933555,'1980-01-01','2022-12-31',1,dataset_id,2), + (548,782.711417,'1980-01-01','2022-12-31',1,dataset_id,2), + (32,85.90394879,'1980-01-01','2022-12-31',1,dataset_id,2), + (68,253.5712665,'1980-01-01','2022-12-31',1,dataset_id,2), + (76,513.6134876,'1980-01-01','2022-12-31',1,dataset_id,2), + (152,286.2299892,'1980-01-01','2022-12-31',1,dataset_id,2), + (218,378.1927737,'1980-01-01','2022-12-31',1,dataset_id,2), + (238,250.6438924,'1980-01-01','2022-12-31',1,dataset_id,2), + (328,430.2392981,'1980-01-01','2022-12-31',1,dataset_id,2), + (740,679.9154787,'1980-01-01','2022-12-31',1,dataset_id,2), + (600,148.8170325,'1980-01-01','2022-12-31',1,dataset_id,2), + (604,290.2604639,'1980-01-01','2022-12-31',1,dataset_id,2), + (780,471.3907966,'1980-01-01','2022-12-31',1,dataset_id,2), + (858,250.1136122,'1980-01-01','2022-12-31',1,dataset_id,2), + (862,384.1812787,'1980-01-01','2022-12-31',1,dataset_id,2), + (12,6.127633109,'2001-01-01','2022-12-31',2,dataset_id,2), + (24,367.7595649,'2001-01-01','2022-12-31',2,dataset_id,2), + (204,343.0257395,'2001-01-01','2022-12-31',2,dataset_id,2), + (72,12.7875575,'2001-01-01','2022-12-31',2,dataset_id,2), + (854,127.3644497,'2001-01-01','2022-12-31',2,dataset_id,2), + (108,851.5531061,'2001-01-01','2022-12-31',2,dataset_id,2), + (120,833.4076301,'2001-01-01','2022-12-31',2,dataset_id,2), + (140,383.4924037,'2001-01-01','2022-12-31',2,dataset_id,2), + (148,66.85106407,'2001-01-01','2022-12-31',2,dataset_id,2), + (818,0.225262731,'2001-01-01','2022-12-31',2,dataset_id,2), + (566,438.3495745,'2001-01-01','2022-12-31',2,dataset_id,2), + (178,528.048706,'2001-01-01','2022-12-31',2,dataset_id,2), + (180,585.1696436,'2001-01-01','2022-12-31',2,dataset_id,2), + (384,400.8651027,'2001-01-01','2022-12-31',2,dataset_id,2), + (262,3.004909557,'2001-01-01','2022-12-31',2,dataset_id,2), + (226,1711.289554,'2001-01-01','2022-12-31',2,dataset_id,2), + (232,37.5919731,'2001-01-01','2022-12-31',2,dataset_id,2), + (231,381.3534396,'2001-01-01','2022-12-31',2,dataset_id,2), + (260,1369.943566,'2001-01-01','2022-12-31',2,dataset_id,2), + (266,970.9263194,'2001-01-01','2022-12-31',2,dataset_id,2), + (288,337.918738,'2001-01-01','2022-12-31',2,dataset_id,2), + (324,908.188348,'2001-01-01','2022-12-31',2,dataset_id,2), + (624,646.2959905,'2001-01-01','2022-12-31',2,dataset_id,2), + (404,128.1590661,'2001-01-01','2022-12-31',2,dataset_id,2), + (426,230.6244408,'2001-01-01','2022-12-31',2,dataset_id,2), + (430,1309.8378,'2001-01-01','2022-12-31',2,dataset_id,2), + (434,0.627088646,'2001-01-01','2022-12-31',2,dataset_id,2), + (450,532.7841192,'2001-01-01','2022-12-31',2,dataset_id,2), + (454,639.4238068,'2001-01-01','2022-12-31',2,dataset_id,2), + (466,50.76042576,'2001-01-01','2022-12-31',2,dataset_id,2), + (478,0.610195412,'2001-01-01','2022-12-31',2,dataset_id,2), + (504,26.03670713,'2001-01-01','2022-12-31',2,dataset_id,2), + (508,219.1017627,'2001-01-01','2022-12-31',2,dataset_id,2), + (516,12.36396068,'2001-01-01','2022-12-31',2,dataset_id,2), + (562,3.594661573,'2001-01-01','2022-12-31',2,dataset_id,2), + (646,557.529523,'2001-01-01','2022-12-31',2,dataset_id,2), + (686,99.73198705,'2001-01-01','2022-12-31',2,dataset_id,2), + (694,1681.020051,'2001-01-01','2022-12-31',2,dataset_id,2), + (706,9.480726605,'2001-01-01','2022-12-31',2,dataset_id,2), + (729,21.71702,'2001-01-01','2022-12-31',2,dataset_id,2), + (834,303.2799012,'2001-01-01','2022-12-31',2,dataset_id,2), + (710,47.26171575,'2001-01-01','2022-12-31',2,dataset_id,2), + (728,202.5175965,'2001-01-01','2022-12-31',2,dataset_id,2), + (748,90.83832969,'2001-01-01','2022-12-31',2,dataset_id,2), + (270,208.4393808,'2001-01-01','2022-12-31',2,dataset_id,2), + (768,477.7536969,'2001-01-01','2022-12-31',2,dataset_id,2), + (788,18.78785755,'2001-01-01','2022-12-31',2,dataset_id,2), + (800,580.3615417,'2001-01-01','2022-12-31',2,dataset_id,2), + (732,0.010189495,'2001-01-01','2022-12-31',2,dataset_id,2), + (894,390.8443925,'2001-01-01','2022-12-31',2,dataset_id,2), + (716,86.9674486,'2001-01-01','2022-12-31',2,dataset_id,2), + (620,218.7252886,'2001-01-01','2022-12-31',2,dataset_id,2), + (4,64.4848738,'2001-01-01','2022-12-31',2,dataset_id,2), + (50,1176.495958,'2001-01-01','2022-12-31',2,dataset_id,2), + (64,2050.945344,'2001-01-01','2022-12-31',2,dataset_id,2), + (104,1328.168555,'2001-01-01','2022-12-31',2,dataset_id,2), + (116,870.0280224,'2001-01-01','2022-12-31',2,dataset_id,2), + (156,260.6902083,'2001-01-01','2022-12-31',2,dataset_id,2), + (356,547.629887,'2001-01-01','2022-12-31',2,dataset_id,2), + (392,949.8994351,'2001-01-01','2022-12-31',2,dataset_id,2), + (398,68.23650027,'2001-01-01','2022-12-31',2,dataset_id,2), + (417,395.4723208,'2001-01-01','2022-12-31',2,dataset_id,2), + (418,991.8939694,'2001-01-01','2022-12-31',2,dataset_id,2), + (496,27.39851311,'2001-01-01','2022-12-31',2,dataset_id,2), + (524,1145.409399,'2001-01-01','2022-12-31',2,dataset_id,2), + (408,313.5375155,'2001-01-01','2022-12-31',2,dataset_id,2), + (586,83.85339186,'2001-01-01','2022-12-31',2,dataset_id,2), + (643,218.4269945,'2001-01-01','2022-12-31',2,dataset_id,2), + (410,363.8865312,'2001-01-01','2022-12-31',2,dataset_id,2), + (144,813.6331162,'2001-01-01','2022-12-31',2,dataset_id,2), + (158,1491.784284,'2001-01-01','2022-12-31',2,dataset_id,2), + (762,315.40483,'2001-01-01','2022-12-31',2,dataset_id,2), + (764,742.107154,'2001-01-01','2022-12-31',2,dataset_id,2), + (795,6.299785448,'2001-01-01','2022-12-31',2,dataset_id,2), + (860,47.38504918,'2001-01-01','2022-12-31',2,dataset_id,2), + (704,1007.151429,'2001-01-01','2022-12-31',2,dataset_id,2), + (8,509.1305437,'2001-01-01','2022-12-31',2,dataset_id,2), + (51,291.4808401,'2001-01-01','2022-12-31',2,dataset_id,2), + (40,517.8840042,'2001-01-01','2022-12-31',2,dataset_id,2), + (31,164.0575348,'2001-01-01','2022-12-31',2,dataset_id,2), + (112,239.8472265,'2001-01-01','2022-12-31',2,dataset_id,2), + (56,359.7519001,'2001-01-01','2022-12-31',2,dataset_id,2), + (70,429.8047712,'2001-01-01','2022-12-31',2,dataset_id,2), + (100,172.2741505,'2001-01-01','2022-12-31',2,dataset_id,2), + (191,367.0326968,'2001-01-01','2022-12-31',2,dataset_id,2), + (196,94.49926595,'2001-01-01','2022-12-31',2,dataset_id,2), + (203,249.0076605,'2001-01-01','2022-12-31',2,dataset_id,2), + (208,398.0427457,'2001-01-01','2022-12-31',2,dataset_id,2), + (233,317.3166827,'2001-01-01','2022-12-31',2,dataset_id,2), + (246,307.2151542,'2001-01-01','2022-12-31',2,dataset_id,2), + (250,336.8743379,'2001-01-01','2022-12-31',2,dataset_id,2), + (275,40.1065684,'2001-01-01','2022-12-31',2,dataset_id,2), + (268,568.6367998,'2001-01-01','2022-12-31',2,dataset_id,2), + (276,314.0350363,'2001-01-01','2022-12-31',2,dataset_id,2), + (300,266.0204829,'2001-01-01','2022-12-31',2,dataset_id,2), + (348,156.0707139,'2001-01-01','2022-12-31',2,dataset_id,2), + (352,1017.012166,'2001-01-01','2022-12-31',2,dataset_id,2), + (364,44.46056298,'2001-01-01','2022-12-31',2,dataset_id,2), + (368,26.76743712,'2001-01-01','2022-12-31',2,dataset_id,2), + (372,588.2952001,'2001-01-01','2022-12-31',2,dataset_id,2), + (376,38.21504081,'2001-01-01','2022-12-31',2,dataset_id,2), + (380,366.1978417,'2001-01-01','2022-12-31',2,dataset_id,2), + (400,2.282450645,'2001-01-01','2022-12-31',2,dataset_id,2), + (414,0.652967204,'2001-01-01','2022-12-31',2,dataset_id,2), + (428,288.1629079,'2001-01-01','2022-12-31',2,dataset_id,2), + (422,166.965441,'2001-01-01','2022-12-31',2,dataset_id,2), + (440,272.944038,'2001-01-01','2022-12-31',2,dataset_id,2), + (442,358.3479559,'2001-01-01','2022-12-31',2,dataset_id,2), + (807,189.6272419,'2001-01-01','2022-12-31',2,dataset_id,2), + (498,102.8300801,'2001-01-01','2022-12-31',2,dataset_id,2), + (499,694.0255857,'2001-01-01','2022-12-31',2,dataset_id,2), + (528,355.3899189,'2001-01-01','2022-12-31',2,dataset_id,2), + (578,786.2278898,'2001-01-01','2022-12-31',2,dataset_id,2), + (512,0.124254081,'2001-01-01','2022-12-31',2,dataset_id,2), + (616,243.5736626,'2001-01-01','2022-12-31',2,dataset_id,2), + (634,0.033330861,'2001-01-01','2022-12-31',2,dataset_id,2), + (642,201.6952779,'2001-01-01','2022-12-31',2,dataset_id,2), + (682,0.602661502,'2001-01-01','2022-12-31',2,dataset_id,2), + (688,189.021,'2001-01-01','2022-12-31',2,dataset_id,2), + (703,254.2497823,'2001-01-01','2022-12-31',2,dataset_id,2), + (705,445.5660422,'2001-01-01','2022-12-31',2,dataset_id,2), + (724,161.2011902,'2001-01-01','2022-12-31',2,dataset_id,2), + (752,361.2453931,'2001-01-01','2022-12-31',2,dataset_id,2), + (756,779.6987504,'2001-01-01','2022-12-31',2,dataset_id,2), + (760,23.71511698,'2001-01-01','2022-12-31',2,dataset_id,2), + (792,217.2301595,'2001-01-01','2022-12-31',2,dataset_id,2), + (804,168.2459808,'2001-01-01','2022-12-31',2,dataset_id,2), + (784,0.039080489,'2001-01-01','2022-12-31',2,dataset_id,2), + (826,549.3752999,'2001-01-01','2022-12-31',2,dataset_id,2), + (887,12.3436068,'2001-01-01','2022-12-31',2,dataset_id,2), + (84,587.2074295,'2001-01-01','2022-12-31',2,dataset_id,2), + (124,309.6512905,'2001-01-01','2022-12-31',2,dataset_id,2), + (170,2009.029424,'2001-01-01','2022-12-31',2,dataset_id,2), + (188,2254.017066,'2001-01-01','2022-12-31',2,dataset_id,2), + (192,222.3014318,'2001-01-01','2022-12-31',2,dataset_id,2), + (214,239.7251357,'2001-01-01','2022-12-31',2,dataset_id,2), + (222,666.5023258,'2001-01-01','2022-12-31',2,dataset_id,2), + (304,252.569004,'2001-01-01','2022-12-31',2,dataset_id,2), + (320,768.5636199,'2001-01-01','2022-12-31',2,dataset_id,2), + (332,187.0176719,'2001-01-01','2022-12-31',2,dataset_id,2), + (340,612.0105407,'2001-01-01','2022-12-31',2,dataset_id,2), + (388,367.9920181,'2001-01-01','2022-12-31',2,dataset_id,2), + (484,231.1107316,'2001-01-01','2022-12-31',2,dataset_id,2), + (558,881.8840246,'2001-01-01','2022-12-31',2,dataset_id,2), + (591,2096.767166,'2001-01-01','2022-12-31',2,dataset_id,2), + (630,343.7391385,'2001-01-01','2022-12-31',2,dataset_id,2), + (44,410.578427,'2001-01-01','2022-12-31',2,dataset_id,2), + (840,256.1982549,'2001-01-01','2022-12-31',2,dataset_id,2), + (10,131.5046163,'2001-01-01','2022-12-31',2,dataset_id,2), + (36,46.75342251,'2001-01-01','2022-12-31',2,dataset_id,2), + (96,1389.733881,'2001-01-01','2022-12-31',2,dataset_id,2), + (242,1303.442015,'2001-01-01','2022-12-31',2,dataset_id,2), + (360,1821.561782,'2001-01-01','2022-12-31',2,dataset_id,2), + (458,1456.554819,'2001-01-01','2022-12-31',2,dataset_id,2), + (540,575.1755515,'2001-01-01','2022-12-31',2,dataset_id,2), + (554,855.8325563,'2001-01-01','2022-12-31',2,dataset_id,2), + (598,2502.555297,'2001-01-01','2022-12-31',2,dataset_id,2), + (608,1493.206928,'2001-01-01','2022-12-31',2,dataset_id,2), + (90,2875.860689,'2001-01-01','2022-12-31',2,dataset_id,2), + (626,718.8809924,'2001-01-01','2022-12-31',2,dataset_id,2), + (548,1252.56761,'2001-01-01','2022-12-31',2,dataset_id,2), + (32,122.5615678,'2001-01-01','2022-12-31',2,dataset_id,2), + (68,533.9842664,'2001-01-01','2022-12-31',2,dataset_id,2), + (76,757.1238641,'2001-01-01','2022-12-31',2,dataset_id,2), + (152,959.1546057,'2001-01-01','2022-12-31',2,dataset_id,2), + (218,1841.551268,'2001-01-01','2022-12-31',2,dataset_id,2), + (238,262.7622606,'2001-01-01','2022-12-31',2,dataset_id,2), + (328,842.1239413,'2001-01-01','2022-12-31',2,dataset_id,2), + (740,709.1379301,'2001-01-01','2022-12-31',2,dataset_id,2), + (600,252.0375219,'2001-01-01','2022-12-31',2,dataset_id,2), + (604,1123.877408,'2001-01-01','2022-12-31',2,dataset_id,2), + (780,810.8441784,'2001-01-01','2022-12-31',2,dataset_id,2), + (858,271.4211015,'2001-01-01','2022-12-31',2,dataset_id,2), + (862,1088.419739,'2001-01-01','2022-12-31',2,dataset_id,2), + (12,4.02303509,'1980-01-01','2000-12-31',2,dataset_id,2), + (24,339.9473913,'1980-01-01','2000-12-31',2,dataset_id,2), + (204,360.3974992,'1980-01-01','2000-12-31',2,dataset_id,2), + (72,16.33251284,'1980-01-01','2000-12-31',2,dataset_id,2), + (854,123.9065593,'1980-01-01','2000-12-31',2,dataset_id,2), + (108,919.5440865,'1980-01-01','2000-12-31',2,dataset_id,2), + (120,994.3041657,'1980-01-01','2000-12-31',2,dataset_id,2), + (140,641.4074552,'1980-01-01','2000-12-31',2,dataset_id,2), + (148,73.40737064,'1980-01-01','2000-12-31',2,dataset_id,2), + (818,0.240122757,'1980-01-01','2000-12-31',2,dataset_id,2), + (566,452.4052321,'1980-01-01','2000-12-31',2,dataset_id,2), + (178,666.8587157,'1980-01-01','2000-12-31',2,dataset_id,2), + (180,865.9522326,'1980-01-01','2000-12-31',2,dataset_id,2), + (384,431.1549895,'1980-01-01','2000-12-31',2,dataset_id,2), + (262,7.628125809,'1980-01-01','2000-12-31',2,dataset_id,2), + (226,1833.483916,'1980-01-01','2000-12-31',2,dataset_id,2), + (232,39.4572775,'1980-01-01','2000-12-31',2,dataset_id,2), + (231,421.7293122,'1980-01-01','2000-12-31',2,dataset_id,2), + (260,1363.156077,'1980-01-01','2000-12-31',2,dataset_id,2), + (266,1077.144798,'1980-01-01','2000-12-31',2,dataset_id,2), + (288,340.9527299,'1980-01-01','2000-12-31',2,dataset_id,2), + (324,1020.796031,'1980-01-01','2000-12-31',2,dataset_id,2), + (624,795.9734334,'1980-01-01','2000-12-31',2,dataset_id,2), + (404,152.5347729,'1980-01-01','2000-12-31',2,dataset_id,2), + (426,228.2986802,'1980-01-01','2000-12-31',2,dataset_id,2), + (430,1318.233396,'1980-01-01','2000-12-31',2,dataset_id,2), + (434,0.940808955,'1980-01-01','2000-12-31',2,dataset_id,2), + (450,521.0841844,'1980-01-01','2000-12-31',2,dataset_id,2), + (454,584.707709,'1980-01-01','2000-12-31',2,dataset_id,2), + (466,61.83617352,'1980-01-01','2000-12-31',2,dataset_id,2), + (478,0.765880233,'1980-01-01','2000-12-31',2,dataset_id,2), + (504,31.26330215,'1980-01-01','2000-12-31',2,dataset_id,2), + (508,206.9075154,'1980-01-01','2000-12-31',2,dataset_id,2), + (516,13.23903886,'1980-01-01','2000-12-31',2,dataset_id,2), + (562,1.867039633,'1980-01-01','2000-12-31',2,dataset_id,2), + (646,645.4887473,'1980-01-01','2000-12-31',2,dataset_id,2), + (686,134.5286537,'1980-01-01','2000-12-31',2,dataset_id,2), + (694,1674.171356,'1980-01-01','2000-12-31',2,dataset_id,2), + (706,15.47571803,'1980-01-01','2000-12-31',2,dataset_id,2), + (729,34.11903831,'1980-01-01','2000-12-31',2,dataset_id,2), + (834,385.9835213,'1980-01-01','2000-12-31',2,dataset_id,2), + (710,53.29121076,'1980-01-01','2000-12-31',2,dataset_id,2), + (728,374.3138085,'1980-01-01','2000-12-31',2,dataset_id,2), + (748,111.4092996,'1980-01-01','2000-12-31',2,dataset_id,2), + (270,281.5751103,'1980-01-01','2000-12-31',2,dataset_id,2), + (768,557.748485,'1980-01-01','2000-12-31',2,dataset_id,2), + (788,18.91685968,'1980-01-01','2000-12-31',2,dataset_id,2), + (800,714.4253943,'1980-01-01','2000-12-31',2,dataset_id,2), + (732,0.020987706,'1980-01-01','2000-12-31',2,dataset_id,2), + (894,367.2470651,'1980-01-01','2000-12-31',2,dataset_id,2), + (716,107.4752542,'1980-01-01','2000-12-31',2,dataset_id,2), + (620,248.100704,'1980-01-01','2000-12-31',2,dataset_id,2), + (4,94.77507518,'1980-01-01','2000-12-31',2,dataset_id,2), + (50,1200.755581,'1980-01-01','2000-12-31',2,dataset_id,2), + (64,1955.131219,'1980-01-01','2000-12-31',2,dataset_id,2), + (104,1491.329201,'1980-01-01','2000-12-31',2,dataset_id,2), + (116,954.565938,'1980-01-01','2000-12-31',2,dataset_id,2), + (156,329.7833052,'1980-01-01','2000-12-31',2,dataset_id,2), + (356,498.6080064,'1980-01-01','2000-12-31',2,dataset_id,2), + (392,874.7889383,'1980-01-01','2000-12-31',2,dataset_id,2), + (398,75.4933062,'1980-01-01','2000-12-31',2,dataset_id,2), + (417,384.7053349,'1980-01-01','2000-12-31',2,dataset_id,2), + (418,1045.475354,'1980-01-01','2000-12-31',2,dataset_id,2), + (496,37.55698689,'1980-01-01','2000-12-31',2,dataset_id,2), + (524,1072.867035,'1980-01-01','2000-12-31',2,dataset_id,2), + (408,417.1028727,'1980-01-01','2000-12-31',2,dataset_id,2), + (586,102.4704949,'1980-01-01','2000-12-31',2,dataset_id,2), + (643,226.9665805,'1980-01-01','2000-12-31',2,dataset_id,2), + (410,410.7293378,'1980-01-01','2000-12-31',2,dataset_id,2), + (144,671.4122096,'1980-01-01','2000-12-31',2,dataset_id,2), + (158,1489.824878,'1980-01-01','2000-12-31',2,dataset_id,2), + (762,324.5027212,'1980-01-01','2000-12-31',2,dataset_id,2), + (764,745.8689518,'1980-01-01','2000-12-31',2,dataset_id,2), + (795,12.97091978,'1980-01-01','2000-12-31',2,dataset_id,2), + (860,45.71016292,'1980-01-01','2000-12-31',2,dataset_id,2), + (704,1068.528173,'1980-01-01','2000-12-31',2,dataset_id,2), + (8,508.4902789,'1980-01-01','2000-12-31',2,dataset_id,2), + (51,292.65372,'1980-01-01','2000-12-31',2,dataset_id,2), + (40,587.2304303,'1980-01-01','2000-12-31',2,dataset_id,2), + (31,164.5957336,'1980-01-01','2000-12-31',2,dataset_id,2), + (112,280.3400921,'1980-01-01','2000-12-31',2,dataset_id,2), + (56,399.8783484,'1980-01-01','2000-12-31',2,dataset_id,2), + (70,431.7631183,'1980-01-01','2000-12-31',2,dataset_id,2), + (100,157.6207525,'1980-01-01','2000-12-31',2,dataset_id,2), + (191,393.2813005,'1980-01-01','2000-12-31',2,dataset_id,2), + (196,91.30407047,'1980-01-01','2000-12-31',2,dataset_id,2), + (203,274.5846103,'1980-01-01','2000-12-31',2,dataset_id,2), + (208,369.8502348,'1980-01-01','2000-12-31',2,dataset_id,2), + (233,359.7081472,'1980-01-01','2000-12-31',2,dataset_id,2), + (246,339.2779979,'1980-01-01','2000-12-31',2,dataset_id,2), + (250,368.5732108,'1980-01-01','2000-12-31',2,dataset_id,2), + (275,33.18557014,'1980-01-01','2000-12-31',2,dataset_id,2), + (268,593.7607289,'1980-01-01','2000-12-31',2,dataset_id,2), + (276,359.2783519,'1980-01-01','2000-12-31',2,dataset_id,2), + (300,216.4134104,'1980-01-01','2000-12-31',2,dataset_id,2), + (348,156.5999991,'1980-01-01','2000-12-31',2,dataset_id,2), + (352,956.2777403,'1980-01-01','2000-12-31',2,dataset_id,2), + (364,55.16433962,'1980-01-01','2000-12-31',2,dataset_id,2), + (368,31.66445069,'1980-01-01','2000-12-31',2,dataset_id,2), + (372,670.1302232,'1980-01-01','2000-12-31',2,dataset_id,2), + (376,37.91488568,'1980-01-01','2000-12-31',2,dataset_id,2), + (380,381.5825729,'1980-01-01','2000-12-31',2,dataset_id,2), + (400,2.320439807,'1980-01-01','2000-12-31',2,dataset_id,2), + (414,2.868983183,'1980-01-01','2000-12-31',2,dataset_id,2), + (428,328.6551715,'1980-01-01','2000-12-31',2,dataset_id,2), + (422,134.2703024,'1980-01-01','2000-12-31',2,dataset_id,2), + (440,296.7467977,'1980-01-01','2000-12-31',2,dataset_id,2), + (442,395.4231958,'1980-01-01','2000-12-31',2,dataset_id,2), + (807,167.1566685,'1980-01-01','2000-12-31',2,dataset_id,2), + (498,102.801029,'1980-01-01','2000-12-31',2,dataset_id,2), + (499,732.622165,'1980-01-01','2000-12-31',2,dataset_id,2), + (528,378.6692554,'1980-01-01','2000-12-31',2,dataset_id,2), + (578,750.2891651,'1980-01-01','2000-12-31',2,dataset_id,2), + (512,0.220952254,'1980-01-01','2000-12-31',2,dataset_id,2), + (616,242.1106919,'1980-01-01','2000-12-31',2,dataset_id,2), + (634,0.168911874,'1980-01-01','2000-12-31',2,dataset_id,2), + (642,216.6652509,'1980-01-01','2000-12-31',2,dataset_id,2), + (682,0.632306625,'1980-01-01','2000-12-31',2,dataset_id,2), + (688,151.9335004,'1980-01-01','2000-12-31',2,dataset_id,2), + (703,280.9936087,'1980-01-01','2000-12-31',2,dataset_id,2), + (705,540.0366412,'1980-01-01','2000-12-31',2,dataset_id,2), + (724,185.0413762,'1980-01-01','2000-12-31',2,dataset_id,2), + (752,355.2127633,'1980-01-01','2000-12-31',2,dataset_id,2), + (756,916.7996895,'1980-01-01','2000-12-31',2,dataset_id,2), + (760,25.00485919,'1980-01-01','2000-12-31',2,dataset_id,2), + (792,232.5222249,'1980-01-01','2000-12-31',2,dataset_id,2), + (804,198.9608257,'1980-01-01','2000-12-31',2,dataset_id,2), + (784,0.09631905,'1980-01-01','2000-12-31',2,dataset_id,2), + (826,599.6430798,'1980-01-01','2000-12-31',2,dataset_id,2), + (887,11.3113958,'1980-01-01','2000-12-31',2,dataset_id,2), + (84,697.0386515,'1980-01-01','2000-12-31',2,dataset_id,2), + (124,296.1681985,'1980-01-01','2000-12-31',2,dataset_id,2), + (170,2206.43185,'1980-01-01','2000-12-31',2,dataset_id,2), + (188,1902.597174,'1980-01-01','2000-12-31',2,dataset_id,2), + (192,253.9488701,'1980-01-01','2000-12-31',2,dataset_id,2), + (214,270.637935,'1980-01-01','2000-12-31',2,dataset_id,2), + (222,604.6014355,'1980-01-01','2000-12-31',2,dataset_id,2), + (304,261.2319474,'1980-01-01','2000-12-31',2,dataset_id,2), + (320,810.1745535,'1980-01-01','2000-12-31',2,dataset_id,2), + (332,203.9196742,'1980-01-01','2000-12-31',2,dataset_id,2), + (340,586.7851746,'1980-01-01','2000-12-31',2,dataset_id,2), + (388,351.611642,'1980-01-01','2000-12-31',2,dataset_id,2), + (484,229.9771546,'1980-01-01','2000-12-31',2,dataset_id,2), + (558,809.6325346,'1980-01-01','2000-12-31',2,dataset_id,2), + (591,1989.485716,'1980-01-01','2000-12-31',2,dataset_id,2), + (630,329.7018519,'1980-01-01','2000-12-31',2,dataset_id,2), + (44,422.5899161,'1980-01-01','2000-12-31',2,dataset_id,2), + (840,267.0333064,'1980-01-01','2000-12-31',2,dataset_id,2), + (10,131.303477,'1980-01-01','2000-12-31',2,dataset_id,2), + (36,53.14630109,'1980-01-01','2000-12-31',2,dataset_id,2), + (96,1582.652278,'1980-01-01','2000-12-31',2,dataset_id,2), + (242,898.2114235,'1980-01-01','2000-12-31',2,dataset_id,2), + (360,1658.186133,'1980-01-01','2000-12-31',2,dataset_id,2), + (458,1440.507828,'1980-01-01','2000-12-31',2,dataset_id,2), + (540,378.2327282,'1980-01-01','2000-12-31',2,dataset_id,2), + (554,889.569325,'1980-01-01','2000-12-31',2,dataset_id,2), + (598,2113.701372,'1980-01-01','2000-12-31',2,dataset_id,2), + (608,1266.129457,'1980-01-01','2000-12-31',2,dataset_id,2), + (90,2175.311279,'1980-01-01','2000-12-31',2,dataset_id,2), + (626,722.211896,'1980-01-01','2000-12-31',2,dataset_id,2), + (548,951.1279307,'1980-01-01','2000-12-31',2,dataset_id,2), + (32,190.3751078,'1980-01-01','2000-12-31',2,dataset_id,2), + (68,620.4266362,'1980-01-01','2000-12-31',2,dataset_id,2), + (76,781.743241,'1980-01-01','2000-12-31',2,dataset_id,2), + (152,960.0406547,'1980-01-01','2000-12-31',2,dataset_id,2), + (218,1818.112253,'1980-01-01','2000-12-31',2,dataset_id,2), + (238,338.9390976,'1980-01-01','2000-12-31',2,dataset_id,2), + (328,747.0076669,'1980-01-01','2000-12-31',2,dataset_id,2), + (740,456.0674608,'1980-01-01','2000-12-31',2,dataset_id,2), + (600,405.4388693,'1980-01-01','2000-12-31',2,dataset_id,2), + (604,1164.299302,'1980-01-01','2000-12-31',2,dataset_id,2), + (780,760.3494813,'1980-01-01','2000-12-31',2,dataset_id,2), + (858,313.6975392,'1980-01-01','2000-12-31',2,dataset_id,2), + (862,1135.265547,'1980-01-01','2000-12-31',2,dataset_id,2), + (12,4.691676697,'1980-01-01','2022-12-31',2,dataset_id,2), + (24,331.0472132,'1980-01-01','2022-12-31',2,dataset_id,2), + (204,343.921363,'1980-01-01','2022-12-31',2,dataset_id,2), + (72,14.18651848,'1980-01-01','2022-12-31',2,dataset_id,2), + (854,120.8977376,'1980-01-01','2022-12-31',2,dataset_id,2), + (108,882.447456,'1980-01-01','2022-12-31',2,dataset_id,2), + (120,866.4259767,'1980-01-01','2022-12-31',2,dataset_id,2), + (140,419.8947673,'1980-01-01','2022-12-31',2,dataset_id,2), + (148,69.4402174,'1980-01-01','2022-12-31',2,dataset_id,2), + (818,0.223999077,'1980-01-01','2022-12-31',2,dataset_id,2), + (566,436.5407899,'1980-01-01','2022-12-31',2,dataset_id,2), + (178,536.478135,'1980-01-01','2022-12-31',2,dataset_id,2), + (180,617.2336172,'1980-01-01','2022-12-31',2,dataset_id,2), + (384,409.0233852,'1980-01-01','2022-12-31',2,dataset_id,2), + (262,3.658327531,'1980-01-01','2022-12-31',2,dataset_id,2), + (226,1760.096691,'1980-01-01','2022-12-31',2,dataset_id,2), + (232,38.27773688,'1980-01-01','2022-12-31',2,dataset_id,2), + (231,393.6662557,'1980-01-01','2022-12-31',2,dataset_id,2), + (260,1368.735707,'1980-01-01','2022-12-31',2,dataset_id,2), + (266,1005.664181,'1980-01-01','2022-12-31',2,dataset_id,2), + (288,339.6022891,'1980-01-01','2022-12-31',2,dataset_id,2), + (324,938.6487277,'1980-01-01','2022-12-31',2,dataset_id,2), + (624,699.4478904,'1980-01-01','2022-12-31',2,dataset_id,2), + (404,137.0133727,'1980-01-01','2022-12-31',2,dataset_id,2), + (426,230.1355351,'1980-01-01','2022-12-31',2,dataset_id,2), + (430,1320.931431,'1980-01-01','2022-12-31',2,dataset_id,2), + (434,0.718693826,'1980-01-01','2022-12-31',2,dataset_id,2), + (450,527.8035794,'1980-01-01','2022-12-31',2,dataset_id,2), + (454,610.4085251,'1980-01-01','2022-12-31',2,dataset_id,2), + (466,54.55835036,'1980-01-01','2022-12-31',2,dataset_id,2), + (478,0.632892683,'1980-01-01','2022-12-31',2,dataset_id,2), + (504,27.7384655,'1980-01-01','2022-12-31',2,dataset_id,2), + (508,213.793184,'1980-01-01','2022-12-31',2,dataset_id,2), + (516,12.63233626,'1980-01-01','2022-12-31',2,dataset_id,2), + (562,2.301711377,'1980-01-01','2022-12-31',2,dataset_id,2), + (646,582.2586331,'1980-01-01','2022-12-31',2,dataset_id,2), + (686,112.2559436,'1980-01-01','2022-12-31',2,dataset_id,2), + (694,1669.636546,'1980-01-01','2022-12-31',2,dataset_id,2), + (706,11.62391167,'1980-01-01','2022-12-31',2,dataset_id,2), + (729,24.00069725,'1980-01-01','2022-12-31',2,dataset_id,2), + (834,335.5693685,'1980-01-01','2022-12-31',2,dataset_id,2), + (710,49.74431479,'1980-01-01','2022-12-31',2,dataset_id,2), + (728,226.2958463,'1980-01-01','2022-12-31',2,dataset_id,2), + (748,100.1950616,'1980-01-01','2022-12-31',2,dataset_id,2), + (270,239.172719,'1980-01-01','2022-12-31',2,dataset_id,2), + (768,491.0338005,'1980-01-01','2022-12-31',2,dataset_id,2), + (788,18.5677056,'1980-01-01','2022-12-31',2,dataset_id,2), + (800,619.659936,'1980-01-01','2022-12-31',2,dataset_id,2), + (732,0.012289551,'1980-01-01','2022-12-31',2,dataset_id,2), + (894,375.2779205,'1980-01-01','2022-12-31',2,dataset_id,2), + (716,99.52099695,'1980-01-01','2022-12-31',2,dataset_id,2), + (620,231.1963641,'1980-01-01','2022-12-31',2,dataset_id,2), + (4,73.50138073,'1980-01-01','2022-12-31',2,dataset_id,2), + (50,1185.20042,'1980-01-01','2022-12-31',2,dataset_id,2), + (64,2016.261675,'1980-01-01','2022-12-31',2,dataset_id,2), + (104,1363.765012,'1980-01-01','2022-12-31',2,dataset_id,2), + (116,901.9276201,'1980-01-01','2022-12-31',2,dataset_id,2), + (156,275.7122826,'1980-01-01','2022-12-31',2,dataset_id,2), + (356,509.9092156,'1980-01-01','2022-12-31',2,dataset_id,2), + (392,913.9133032,'1980-01-01','2022-12-31',2,dataset_id,2), + (398,70.41072833,'1980-01-01','2022-12-31',2,dataset_id,2), + (417,391.3222136,'1980-01-01','2022-12-31',2,dataset_id,2), + (418,1020.917407,'1980-01-01','2022-12-31',2,dataset_id,2), + (496,29.80813018,'1980-01-01','2022-12-31',2,dataset_id,2), + (524,1098.499312,'1980-01-01','2022-12-31',2,dataset_id,2), + (408,371.6714961,'1980-01-01','2022-12-31',2,dataset_id,2), + (586,89.6403089,'1980-01-01','2022-12-31',2,dataset_id,2), + (643,220.6917574,'1980-01-01','2022-12-31',2,dataset_id,2), + (410,377.2883452,'1980-01-01','2022-12-31',2,dataset_id,2), + (144,709.5707406,'1980-01-01','2022-12-31',2,dataset_id,2), + (158,1499.399598,'1980-01-01','2022-12-31',2,dataset_id,2), + (762,318.2279643,'1980-01-01','2022-12-31',2,dataset_id,2), + (764,741.7076893,'1980-01-01','2022-12-31',2,dataset_id,2), + (795,8.511764212,'1980-01-01','2022-12-31',2,dataset_id,2), + (860,46.11437916,'1980-01-01','2022-12-31',2,dataset_id,2), + (704,1026.76547,'1980-01-01','2022-12-31',2,dataset_id,2), + (8,511.1336383,'1980-01-01','2022-12-31',2,dataset_id,2), + (51,292.5319638,'1980-01-01','2022-12-31',2,dataset_id,2), + (40,550.9778299,'1980-01-01','2022-12-31',2,dataset_id,2), + (31,164.6983008,'1980-01-01','2022-12-31',2,dataset_id,2), + (112,255.3403097,'1980-01-01','2022-12-31',2,dataset_id,2), + (56,385.8389896,'1980-01-01','2022-12-31',2,dataset_id,2), + (70,433.202093,'1980-01-01','2022-12-31',2,dataset_id,2), + (100,167.7173581,'1980-01-01','2022-12-31',2,dataset_id,2), + (191,379.744262,'1980-01-01','2022-12-31',2,dataset_id,2), + (196,91.92241327,'1980-01-01','2022-12-31',2,dataset_id,2), + (203,261.0269505,'1980-01-01','2022-12-31',2,dataset_id,2), + (208,382.9687836,'1980-01-01','2022-12-31',2,dataset_id,2), + (233,331.3293399,'1980-01-01','2022-12-31',2,dataset_id,2), + (246,319.2048298,'1980-01-01','2022-12-31',2,dataset_id,2), + (250,348.6701694,'1980-01-01','2022-12-31',2,dataset_id,2), + (275,36.99946755,'1980-01-01','2022-12-31',2,dataset_id,2), + (268,580.7186206,'1980-01-01','2022-12-31',2,dataset_id,2), + (276,338.4028457,'1980-01-01','2022-12-31',2,dataset_id,2), + (300,239.9504726,'1980-01-01','2022-12-31',2,dataset_id,2), + (348,155.017684,'1980-01-01','2022-12-31',2,dataset_id,2), + (352,976.1714567,'1980-01-01','2022-12-31',2,dataset_id,2), + (364,47.26032667,'1980-01-01','2022-12-31',2,dataset_id,2), + (368,28.46398078,'1980-01-01','2022-12-31',2,dataset_id,2), + (372,625.4527272,'1980-01-01','2022-12-31',2,dataset_id,2), + (376,38.69308112,'1980-01-01','2022-12-31',2,dataset_id,2), + (380,367.9691909,'1980-01-01','2022-12-31',2,dataset_id,2), + (400,2.24051687,'1980-01-01','2022-12-31',2,dataset_id,2), + (414,1.557397161,'1980-01-01','2022-12-31',2,dataset_id,2), + (428,310.8997515,'1980-01-01','2022-12-31',2,dataset_id,2), + (422,148.5151023,'1980-01-01','2022-12-31',2,dataset_id,2), + (440,284.3806974,'1980-01-01','2022-12-31',2,dataset_id,2), + (442,372.9272141,'1980-01-01','2022-12-31',2,dataset_id,2), + (807,176.6643805,'1980-01-01','2022-12-31',2,dataset_id,2), + (498,103.9992881,'1980-01-01','2022-12-31',2,dataset_id,2), + (499,725.7246449,'1980-01-01','2022-12-31',2,dataset_id,2), + (528,368.9189442,'1980-01-01','2022-12-31',2,dataset_id,2), + (578,774.5065372,'1980-01-01','2022-12-31',2,dataset_id,2), + (512,0.149661391,'1980-01-01','2022-12-31',2,dataset_id,2), + (616,241.6814479,'1980-01-01','2022-12-31',2,dataset_id,2), + (634,0.053094674,'1980-01-01','2022-12-31',2,dataset_id,2), + (642,208.1177651,'1980-01-01','2022-12-31',2,dataset_id,2), + (682,0.581687688,'1980-01-01','2022-12-31',2,dataset_id,2), + (688,164.0991951,'1980-01-01','2022-12-31',2,dataset_id,2), + (703,269.0370303,'1980-01-01','2022-12-31',2,dataset_id,2), + (705,482.3933351,'1980-01-01','2022-12-31',2,dataset_id,2), + (724,169.0137603,'1980-01-01','2022-12-31',2,dataset_id,2), + (752,359.7586071,'1980-01-01','2022-12-31',2,dataset_id,2), + (756,826.192705,'1980-01-01','2022-12-31',2,dataset_id,2), + (760,23.44468708,'1980-01-01','2022-12-31',2,dataset_id,2), + (792,222.6628083,'1980-01-01','2022-12-31',2,dataset_id,2), + (804,181.1034936,'1980-01-01','2022-12-31',2,dataset_id,2), + (784,0.064124512,'1980-01-01','2022-12-31',2,dataset_id,2), + (826,573.1505992,'1980-01-01','2022-12-31',2,dataset_id,2), + (887,11.93017092,'1980-01-01','2022-12-31',2,dataset_id,2), + (84,625.8546848,'1980-01-01','2022-12-31',2,dataset_id,2), + (124,302.0653562,'1980-01-01','2022-12-31',2,dataset_id,2), + (170,2056.288947,'1980-01-01','2022-12-31',2,dataset_id,2), + (188,2025.480234,'1980-01-01','2022-12-31',2,dataset_id,2), + (192,242.823947,'1980-01-01','2022-12-31',2,dataset_id,2), + (214,249.9393627,'1980-01-01','2022-12-31',2,dataset_id,2), + (222,622.6987432,'1980-01-01','2022-12-31',2,dataset_id,2), + (304,254.9153715,'1980-01-01','2022-12-31',2,dataset_id,2), + (320,776.5035808,'1980-01-01','2022-12-31',2,dataset_id,2), + (332,189.7098572,'1980-01-01','2022-12-31',2,dataset_id,2), + (340,592.9255334,'1980-01-01','2022-12-31',2,dataset_id,2), + (388,357.3911827,'1980-01-01','2022-12-31',2,dataset_id,2), + (484,230.1002061,'1980-01-01','2022-12-31',2,dataset_id,2), + (558,832.0297239,'1980-01-01','2022-12-31',2,dataset_id,2), + (591,2032.860873,'1980-01-01','2022-12-31',2,dataset_id,2), + (630,335.2927235,'1980-01-01','2022-12-31',2,dataset_id,2), + (44,419.7865026,'1980-01-01','2022-12-31',2,dataset_id,2), + (840,259.1386826,'1980-01-01','2022-12-31',2,dataset_id,2), + (10,131.910769,'1980-01-01','2022-12-31',2,dataset_id,2), + (36,48.94914858,'1980-01-01','2022-12-31',2,dataset_id,2), + (96,1496.776356,'1980-01-01','2022-12-31',2,dataset_id,2), + (242,1056.411014,'1980-01-01','2022-12-31',2,dataset_id,2), + (360,1746.470663,'1980-01-01','2022-12-31',2,dataset_id,2), + (458,1442.853515,'1980-01-01','2022-12-31',2,dataset_id,2), + (540,454.590781,'1980-01-01','2022-12-31',2,dataset_id,2), + (554,871.6077249,'1980-01-01','2022-12-31',2,dataset_id,2), + (598,2267.648739,'1980-01-01','2022-12-31',2,dataset_id,2), + (608,1364.659278,'1980-01-01','2022-12-31',2,dataset_id,2), + (90,2369.726579,'1980-01-01','2022-12-31',2,dataset_id,2), + (626,718.1224028,'1980-01-01','2022-12-31',2,dataset_id,2), + (548,1023.613832,'1980-01-01','2022-12-31',2,dataset_id,2), + (32,138.2532451,'1980-01-01','2022-12-31',2,dataset_id,2), + (68,563.9370996,'1980-01-01','2022-12-31',2,dataset_id,2), + (76,752.4854436,'1980-01-01','2022-12-31',2,dataset_id,2), + (152,970.1901926,'1980-01-01','2022-12-31',2,dataset_id,2), + (218,1812.113019,'1980-01-01','2022-12-31',2,dataset_id,2), + (238,290.611606,'1980-01-01','2022-12-31',2,dataset_id,2), + (328,780.1609368,'1980-01-01','2022-12-31',2,dataset_id,2), + (740,538.0771523,'1980-01-01','2022-12-31',2,dataset_id,2), + (600,287.6315528,'1980-01-01','2022-12-31',2,dataset_id,2), + (604,1130.173168,'1980-01-01','2022-12-31',2,dataset_id,2), + (780,760.5835874,'1980-01-01','2022-12-31',2,dataset_id,2), + (858,278.9857966,'1980-01-01','2022-12-31',2,dataset_id,2), + (862,1081.773384,'1980-01-01','2022-12-31',2,dataset_id,2); +end $$; \ No newline at end of file diff --git a/backend/migrations/20240815121412_add-merra-era-gw-projection-data.sql b/backend/migrations/20240815121412_add-merra-era-gw-projection-data.sql new file mode 100644 index 00000000..f4212a4f --- /dev/null +++ b/backend/migrations/20240815121412_add-merra-era-gw-projection-data.sql @@ -0,0 +1,1053 @@ +do $$ +DECLARE + dataset_id int; +BEGIN + SELECT id INTO dataset_id FROM dataset WHERE short_name = 'gw_MERRA2_ERA5'; + + INSERT INTO data (id,value,start_date,end_date,source,dataset,geography_type) + VALUES + (12,0.003205911,'2001-01-01','2022-12-31',1,dataset_id,2), + (24,0.000394803,'2001-01-01','2022-12-31',1,dataset_id,2), + (204,0.174441540,'2001-01-01','2022-12-31',1,dataset_id,2), + (72,0.000558889,'2001-01-01','2022-12-31',1,dataset_id,2), + (854,0.000050496,'2001-01-01','2022-12-31',1,dataset_id,2), + (108,0.497241700,'2001-01-01','2022-12-31',1,dataset_id,2), + (120,1.207716468,'2001-01-01','2022-12-31',1,dataset_id,2), + (140,0.115687500,'2001-01-01','2022-12-31',1,dataset_id,2), + (148,0.000000401,'2001-01-01','2022-12-31',1,dataset_id,2), + (818,0.000001789,'2001-01-01','2022-12-31',1,dataset_id,2), + (566,0.658542265,'2001-01-01','2022-12-31',1,dataset_id,2), + (178,4.307195839,'2001-01-01','2022-12-31',1,dataset_id,2), + (180,6.618123222,'2001-01-01','2022-12-31',1,dataset_id,2), + (384,1.114372455,'2001-01-01','2022-12-31',1,dataset_id,2), + (262,0.070990161,'2001-01-01','2022-12-31',1,dataset_id,2), + (226,9.677810915,'2001-01-01','2022-12-31',1,dataset_id,2), + (232,0.041224308,'2001-01-01','2022-12-31',1,dataset_id,2), + (231,0.607906983,'2001-01-01','2022-12-31',1,dataset_id,2), + (260,55.225995500,'2001-01-01','2022-12-31',1,dataset_id,2), + (266,1.548166635,'2001-01-01','2022-12-31',1,dataset_id,2), + (288,0.631416208,'2001-01-01','2022-12-31',1,dataset_id,2), + (324,0.009547594,'2001-01-01','2022-12-31',1,dataset_id,2), + (624,0.000055574,'2001-01-01','2022-12-31',1,dataset_id,2), + (404,1.020947825,'2001-01-01','2022-12-31',1,dataset_id,2), + (426,1.469453233,'2001-01-01','2022-12-31',1,dataset_id,2), + (430,4.966764011,'2001-01-01','2022-12-31',1,dataset_id,2), + (434,0.000010307,'2001-01-01','2022-12-31',1,dataset_id,2), + (450,6.526783726,'2001-01-01','2022-12-31',1,dataset_id,2), + (454,0.035184573,'2001-01-01','2022-12-31',1,dataset_id,2), + (466,0.000042066,'2001-01-01','2022-12-31',1,dataset_id,2), + (478,0.000052653,'2001-01-01','2022-12-31',1,dataset_id,2), + (504,0.010922911,'2001-01-01','2022-12-31',1,dataset_id,2), + (508,0.148525708,'2001-01-01','2022-12-31',1,dataset_id,2), + (516,0.000543776,'2001-01-01','2022-12-31',1,dataset_id,2), + (562,0.000000564,'2001-01-01','2022-12-31',1,dataset_id,2), + (646,3.743472046,'2001-01-01','2022-12-31',1,dataset_id,2), + (686,0.000356156,'2001-01-01','2022-12-31',1,dataset_id,2), + (694,0.069111798,'2001-01-01','2022-12-31',1,dataset_id,2), + (706,0.061206893,'2001-01-01','2022-12-31',1,dataset_id,2), + (729,0.000023828,'2001-01-01','2022-12-31',1,dataset_id,2), + (834,0.418426350,'2001-01-01','2022-12-31',1,dataset_id,2), + (710,0.952206200,'2001-01-01','2022-12-31',1,dataset_id,2), + (728,0.066659163,'2001-01-01','2022-12-31',1,dataset_id,2), + (748,0.590209297,'2001-01-01','2022-12-31',1,dataset_id,2), + (270,0.000146945,'2001-01-01','2022-12-31',1,dataset_id,2), + (768,0.156207705,'2001-01-01','2022-12-31',1,dataset_id,2), + (788,0.015052470,'2001-01-01','2022-12-31',1,dataset_id,2), + (800,5.128315047,'2001-01-01','2022-12-31',1,dataset_id,2), + (732,0.000478399,'2001-01-01','2022-12-31',1,dataset_id,2), + (894,0.001041186,'2001-01-01','2022-12-31',1,dataset_id,2), + (716,0.006619406,'2001-01-01','2022-12-31',1,dataset_id,2), + (620,0.236013549,'2001-01-01','2022-12-31',1,dataset_id,2), + (4,0.360776545,'2001-01-01','2022-12-31',1,dataset_id,2), + (50,0.983157927,'2001-01-01','2022-12-31',1,dataset_id,2), + (64,0.077179634,'2001-01-01','2022-12-31',1,dataset_id,2), + (104,0.583296552,'2001-01-01','2022-12-31',1,dataset_id,2), + (116,0.722124131,'2001-01-01','2022-12-31',1,dataset_id,2), + (156,2.954181022,'2001-01-01','2022-12-31',1,dataset_id,2), + (356,0.331674987,'2001-01-01','2022-12-31',1,dataset_id,2), + (392,41.453824110,'2001-01-01','2022-12-31',1,dataset_id,2), + (398,0.535878356,'2001-01-01','2022-12-31',1,dataset_id,2), + (417,0.779334779,'2001-01-01','2022-12-31',1,dataset_id,2), + (418,0.933652591,'2001-01-01','2022-12-31',1,dataset_id,2), + (496,0.379723801,'2001-01-01','2022-12-31',1,dataset_id,2), + (524,0.250809535,'2001-01-01','2022-12-31',1,dataset_id,2), + (408,4.981144061,'2001-01-01','2022-12-31',1,dataset_id,2), + (586,0.611388172,'2001-01-01','2022-12-31',1,dataset_id,2), + (643,14.818914650,'2001-01-01','2022-12-31',1,dataset_id,2), + (410,13.473424730,'2001-01-01','2022-12-31',1,dataset_id,2), + (144,17.288676500,'2001-01-01','2022-12-31',1,dataset_id,2), + (158,27.185043270,'2001-01-01','2022-12-31',1,dataset_id,2), + (762,0.009936583,'2001-01-01','2022-12-31',1,dataset_id,2), + (764,3.050618638,'2001-01-01','2022-12-31',1,dataset_id,2), + (795,0.001271182,'2001-01-01','2022-12-31',1,dataset_id,2), + (860,0.003576436,'2001-01-01','2022-12-31',1,dataset_id,2), + (704,2.786641835,'2001-01-01','2022-12-31',1,dataset_id,2), + (8,1.297267417,'2001-01-01','2022-12-31',1,dataset_id,2), + (51,0.667796313,'2001-01-01','2022-12-31',1,dataset_id,2), + (40,22.192753230,'2001-01-01','2022-12-31',1,dataset_id,2), + (31,0.455166902,'2001-01-01','2022-12-31',1,dataset_id,2), + (112,13.065441020,'2001-01-01','2022-12-31',1,dataset_id,2), + (56,10.578901700,'2001-01-01','2022-12-31',1,dataset_id,2), + (70,5.418324698,'2001-01-01','2022-12-31',1,dataset_id,2), + (100,4.087906430,'2001-01-01','2022-12-31',1,dataset_id,2), + (191,7.931115553,'2001-01-01','2022-12-31',1,dataset_id,2), + (196,0.013472444,'2001-01-01','2022-12-31',1,dataset_id,2), + (203,8.179920688,'2001-01-01','2022-12-31',1,dataset_id,2), + (208,15.731832060,'2001-01-01','2022-12-31',1,dataset_id,2), + (233,13.745833230,'2001-01-01','2022-12-31',1,dataset_id,2), + (246,23.084389520,'2001-01-01','2022-12-31',1,dataset_id,2), + (250,7.746284900,'2001-01-01','2022-12-31',1,dataset_id,2), + (275,0.000005772,'2001-01-01','2022-12-31',1,dataset_id,2), + (268,7.118866369,'2001-01-01','2022-12-31',1,dataset_id,2), + (276,10.584172970,'2001-01-01','2022-12-31',1,dataset_id,2), + (300,0.705178290,'2001-01-01','2022-12-31',1,dataset_id,2), + (348,5.750598206,'2001-01-01','2022-12-31',1,dataset_id,2), + (352,48.283694490,'2001-01-01','2022-12-31',1,dataset_id,2), + (364,0.022139701,'2001-01-01','2022-12-31',1,dataset_id,2), + (368,0.000051792,'2001-01-01','2022-12-31',1,dataset_id,2), + (372,34.909689250,'2001-01-01','2022-12-31',1,dataset_id,2), + (376,0.000619932,'2001-01-01','2022-12-31',1,dataset_id,2), + (380,6.916571632,'2001-01-01','2022-12-31',1,dataset_id,2), + (400,0.000014583,'2001-01-01','2022-12-31',1,dataset_id,2), + (414,0.000000044,'2001-01-01','2022-12-31',1,dataset_id,2), + (428,11.947212980,'2001-01-01','2022-12-31',1,dataset_id,2), + (422,0.003210697,'2001-01-01','2022-12-31',1,dataset_id,2), + (440,11.065272810,'2001-01-01','2022-12-31',1,dataset_id,2), + (442,13.367410440,'2001-01-01','2022-12-31',1,dataset_id,2), + (807,1.906075704,'2001-01-01','2022-12-31',1,dataset_id,2), + (498,3.476799625,'2001-01-01','2022-12-31',1,dataset_id,2), + (499,6.751410953,'2001-01-01','2022-12-31',1,dataset_id,2), + (528,10.031661290,'2001-01-01','2022-12-31',1,dataset_id,2), + (578,52.603631240,'2001-01-01','2022-12-31',1,dataset_id,2), + (512,0.010399527,'2001-01-01','2022-12-31',1,dataset_id,2), + (616,8.571025957,'2001-01-01','2022-12-31',1,dataset_id,2), + (634,0.000005025,'2001-01-01','2022-12-31',1,dataset_id,2), + (642,9.100638181,'2001-01-01','2022-12-31',1,dataset_id,2), + (682,0.000148087,'2001-01-01','2022-12-31',1,dataset_id,2), + (688,6.988239358,'2001-01-01','2022-12-31',1,dataset_id,2), + (703,11.147083480,'2001-01-01','2022-12-31',1,dataset_id,2), + (705,16.273394810,'2001-01-01','2022-12-31',1,dataset_id,2), + (724,0.572799012,'2001-01-01','2022-12-31',1,dataset_id,2), + (752,23.184492790,'2001-01-01','2022-12-31',1,dataset_id,2), + (756,41.979260650,'2001-01-01','2022-12-31',1,dataset_id,2), + (760,0.001882457,'2001-01-01','2022-12-31',1,dataset_id,2), + (792,0.752694505,'2001-01-01','2022-12-31',1,dataset_id,2), + (804,5.403658424,'2001-01-01','2022-12-31',1,dataset_id,2), + (784,0.000381668,'2001-01-01','2022-12-31',1,dataset_id,2), + (826,27.168182550,'2001-01-01','2022-12-31',1,dataset_id,2), + (887,0.004910886,'2001-01-01','2022-12-31',1,dataset_id,2), + (84,7.318741837,'2001-01-01','2022-12-31',1,dataset_id,2), + (124,15.839891320,'2001-01-01','2022-12-31',1,dataset_id,2), + (170,37.014723870,'2001-01-01','2022-12-31',1,dataset_id,2), + (188,11.957590030,'2001-01-01','2022-12-31',1,dataset_id,2), + (192,3.336869669,'2001-01-01','2022-12-31',1,dataset_id,2), + (214,4.562917615,'2001-01-01','2022-12-31',1,dataset_id,2), + (222,1.444485348,'2001-01-01','2022-12-31',1,dataset_id,2), + (304,17.026085250,'2001-01-01','2022-12-31',1,dataset_id,2), + (320,2.097821348,'2001-01-01','2022-12-31',1,dataset_id,2), + (332,3.174614191,'2001-01-01','2022-12-31',1,dataset_id,2), + (340,5.596146631,'2001-01-01','2022-12-31',1,dataset_id,2), + (388,5.653475690,'2001-01-01','2022-12-31',1,dataset_id,2), + (484,0.669278636,'2001-01-01','2022-12-31',1,dataset_id,2), + (558,2.128217414,'2001-01-01','2022-12-31',1,dataset_id,2), + (591,5.173974609,'2001-01-01','2022-12-31',1,dataset_id,2), + (630,12.684156850,'2001-01-01','2022-12-31',1,dataset_id,2), + (44,14.520010650,'2001-01-01','2022-12-31',1,dataset_id,2), + (840,11.931947670,'2001-01-01','2022-12-31',1,dataset_id,2), + (10,8.963605115,'2001-01-01','2022-12-31',1,dataset_id,2), + (36,0.829710753,'2001-01-01','2022-12-31',1,dataset_id,2), + (96,113.714954400,'2001-01-01','2022-12-31',1,dataset_id,2), + (242,43.771825720,'2001-01-01','2022-12-31',1,dataset_id,2), + (360,90.793345920,'2001-01-01','2022-12-31',1,dataset_id,2), + (458,107.204866000,'2001-01-01','2022-12-31',1,dataset_id,2), + (540,19.354435160,'2001-01-01','2022-12-31',1,dataset_id,2), + (554,33.382440700,'2001-01-01','2022-12-31',1,dataset_id,2), + (598,64.609946340,'2001-01-01','2022-12-31',1,dataset_id,2), + (608,48.616368820,'2001-01-01','2022-12-31',1,dataset_id,2), + (90,156.525091000,'2001-01-01','2022-12-31',1,dataset_id,2), + (626,0.169980985,'2001-01-01','2022-12-31',1,dataset_id,2), + (548,67.991773940,'2001-01-01','2022-12-31',1,dataset_id,2), + (32,3.443581566,'2001-01-01','2022-12-31',1,dataset_id,2), + (68,1.448995509,'2001-01-01','2022-12-31',1,dataset_id,2), + (76,10.265360530,'2001-01-01','2022-12-31',1,dataset_id,2), + (152,21.499395430,'2001-01-01','2022-12-31',1,dataset_id,2), + (218,28.440930330,'2001-01-01','2022-12-31',1,dataset_id,2), + (238,16.780991480,'2001-01-01','2022-12-31',1,dataset_id,2), + (328,16.742183680,'2001-01-01','2022-12-31',1,dataset_id,2), + (740,11.308237570,'2001-01-01','2022-12-31',1,dataset_id,2), + (600,5.824265521,'2001-01-01','2022-12-31',1,dataset_id,2), + (604,17.192808750,'2001-01-01','2022-12-31',1,dataset_id,2), + (780,19.911351340,'2001-01-01','2022-12-31',1,dataset_id,2), + (858,24.432280690,'2001-01-01','2022-12-31',1,dataset_id,2), + (862,11.825725090,'2001-01-01','2022-12-31',1,dataset_id,2), + (12,0.006202370,'1980-01-01','2000-12-31',1,dataset_id,2), + (24,0.002150984,'1980-01-01','2000-12-31',1,dataset_id,2), + (204,0.049915620,'1980-01-01','2000-12-31',1,dataset_id,2), + (72,0.000995107,'1980-01-01','2000-12-31',1,dataset_id,2), + (854,0.000506064,'1980-01-01','2000-12-31',1,dataset_id,2), + (108,0.634669283,'1980-01-01','2000-12-31',1,dataset_id,2), + (120,2.971706265,'1980-01-01','2000-12-31',1,dataset_id,2), + (140,0.633771410,'1980-01-01','2000-12-31',1,dataset_id,2), + (148,0.000025879,'1980-01-01','2000-12-31',1,dataset_id,2), + (818,0.000002813,'1980-01-01','2000-12-31',1,dataset_id,2), + (566,0.245166542,'1980-01-01','2000-12-31',1,dataset_id,2), + (178,8.778528568,'1980-01-01','2000-12-31',1,dataset_id,2), + (180,10.973289650,'1980-01-01','2000-12-31',1,dataset_id,2), + (384,0.836272215,'1980-01-01','2000-12-31',1,dataset_id,2), + (262,0.091722034,'1980-01-01','2000-12-31',1,dataset_id,2), + (226,23.483306770,'1980-01-01','2000-12-31',1,dataset_id,2), + (232,0.092480726,'1980-01-01','2000-12-31',1,dataset_id,2), + (231,0.881030763,'1980-01-01','2000-12-31',1,dataset_id,2), + (260,53.371747320,'1980-01-01','2000-12-31',1,dataset_id,2), + (266,6.319428295,'1980-01-01','2000-12-31',1,dataset_id,2), + (288,0.604557997,'1980-01-01','2000-12-31',1,dataset_id,2), + (324,0.095804487,'1980-01-01','2000-12-31',1,dataset_id,2), + (624,0.000009579,'1980-01-01','2000-12-31',1,dataset_id,2), + (404,1.359556547,'1980-01-01','2000-12-31',1,dataset_id,2), + (426,2.187494355,'1980-01-01','2000-12-31',1,dataset_id,2), + (430,5.819247528,'1980-01-01','2000-12-31',1,dataset_id,2), + (434,0.000031261,'1980-01-01','2000-12-31',1,dataset_id,2), + (450,8.821356220,'1980-01-01','2000-12-31',1,dataset_id,2), + (454,0.013952743,'1980-01-01','2000-12-31',1,dataset_id,2), + (466,0.000055604,'1980-01-01','2000-12-31',1,dataset_id,2), + (478,0.000060198,'1980-01-01','2000-12-31',1,dataset_id,2), + (504,0.006980464,'1980-01-01','2000-12-31',1,dataset_id,2), + (508,0.289454852,'1980-01-01','2000-12-31',1,dataset_id,2), + (516,0.001160519,'1980-01-01','2000-12-31',1,dataset_id,2), + (562,0.000010477,'1980-01-01','2000-12-31',1,dataset_id,2), + (646,1.751290973,'1980-01-01','2000-12-31',1,dataset_id,2), + (686,0.000237823,'1980-01-01','2000-12-31',1,dataset_id,2), + (694,1.106208467,'1980-01-01','2000-12-31',1,dataset_id,2), + (706,0.035245757,'1980-01-01','2000-12-31',1,dataset_id,2), + (729,0.000610951,'1980-01-01','2000-12-31',1,dataset_id,2), + (834,0.366778361,'1980-01-01','2000-12-31',1,dataset_id,2), + (710,1.090883661,'1980-01-01','2000-12-31',1,dataset_id,2), + (728,0.069551315,'1980-01-01','2000-12-31',1,dataset_id,2), + (748,0.939961575,'1980-01-01','2000-12-31',1,dataset_id,2), + (270,0.000020989,'1980-01-01','2000-12-31',1,dataset_id,2), + (768,0.089779077,'1980-01-01','2000-12-31',1,dataset_id,2), + (788,0.015889151,'1980-01-01','2000-12-31',1,dataset_id,2), + (800,9.830160119,'1980-01-01','2000-12-31',1,dataset_id,2), + (732,0.000320861,'1980-01-01','2000-12-31',1,dataset_id,2), + (894,0.000137077,'1980-01-01','2000-12-31',1,dataset_id,2), + (716,0.034804755,'1980-01-01','2000-12-31',1,dataset_id,2), + (620,0.303756850,'1980-01-01','2000-12-31',1,dataset_id,2), + (4,0.012782549,'1980-01-01','2000-12-31',1,dataset_id,2), + (50,0.120410167,'1980-01-01','2000-12-31',1,dataset_id,2), + (64,0.319765363,'1980-01-01','2000-12-31',1,dataset_id,2), + (104,0.196025726,'1980-01-01','2000-12-31',1,dataset_id,2), + (116,0.357792982,'1980-01-01','2000-12-31',1,dataset_id,2), + (156,1.593629778,'1980-01-01','2000-12-31',1,dataset_id,2), + (356,0.294558420,'1980-01-01','2000-12-31',1,dataset_id,2), + (392,30.219674170,'1980-01-01','2000-12-31',1,dataset_id,2), + (398,0.481156875,'1980-01-01','2000-12-31',1,dataset_id,2), + (417,0.408868069,'1980-01-01','2000-12-31',1,dataset_id,2), + (418,0.551783720,'1980-01-01','2000-12-31',1,dataset_id,2), + (496,0.421855879,'1980-01-01','2000-12-31',1,dataset_id,2), + (524,0.194296988,'1980-01-01','2000-12-31',1,dataset_id,2), + (408,4.967275363,'1980-01-01','2000-12-31',1,dataset_id,2), + (586,0.170275476,'1980-01-01','2000-12-31',1,dataset_id,2), + (643,14.751378490,'1980-01-01','2000-12-31',1,dataset_id,2), + (410,14.304473390,'1980-01-01','2000-12-31',1,dataset_id,2), + (144,10.271738160,'1980-01-01','2000-12-31',1,dataset_id,2), + (158,26.199636200,'1980-01-01','2000-12-31',1,dataset_id,2), + (762,0.032226296,'1980-01-01','2000-12-31',1,dataset_id,2), + (764,1.514209674,'1980-01-01','2000-12-31',1,dataset_id,2), + (795,0.002340598,'1980-01-01','2000-12-31',1,dataset_id,2), + (860,0.005629724,'1980-01-01','2000-12-31',1,dataset_id,2), + (704,1.207142287,'1980-01-01','2000-12-31',1,dataset_id,2), + (8,0.985267855,'1980-01-01','2000-12-31',1,dataset_id,2), + (51,0.328180630,'1980-01-01','2000-12-31',1,dataset_id,2), + (40,27.483662420,'1980-01-01','2000-12-31',1,dataset_id,2), + (31,0.421609096,'1980-01-01','2000-12-31',1,dataset_id,2), + (112,10.260115380,'1980-01-01','2000-12-31',1,dataset_id,2), + (56,11.453517200,'1980-01-01','2000-12-31',1,dataset_id,2), + (70,5.604621003,'1980-01-01','2000-12-31',1,dataset_id,2), + (100,1.918547394,'1980-01-01','2000-12-31',1,dataset_id,2), + (191,6.618990185,'1980-01-01','2000-12-31',1,dataset_id,2), + (196,0.023337830,'1980-01-01','2000-12-31',1,dataset_id,2), + (203,11.583812410,'1980-01-01','2000-12-31',1,dataset_id,2), + (208,17.086378860,'1980-01-01','2000-12-31',1,dataset_id,2), + (233,14.650860110,'1980-01-01','2000-12-31',1,dataset_id,2), + (246,22.366821270,'1980-01-01','2000-12-31',1,dataset_id,2), + (250,5.248052220,'1980-01-01','2000-12-31',1,dataset_id,2), + (275,0.000181561,'1980-01-01','2000-12-31',1,dataset_id,2), + (268,9.480109342,'1980-01-01','2000-12-31',1,dataset_id,2), + (276,13.031483110,'1980-01-01','2000-12-31',1,dataset_id,2), + (300,0.300292376,'1980-01-01','2000-12-31',1,dataset_id,2), + (348,5.137512341,'1980-01-01','2000-12-31',1,dataset_id,2), + (352,45.261547150,'1980-01-01','2000-12-31',1,dataset_id,2), + (364,0.016708591,'1980-01-01','2000-12-31',1,dataset_id,2), + (368,0.000324846,'1980-01-01','2000-12-31',1,dataset_id,2), + (372,26.910854750,'1980-01-01','2000-12-31',1,dataset_id,2), + (376,0.003920198,'1980-01-01','2000-12-31',1,dataset_id,2), + (380,5.270954705,'1980-01-01','2000-12-31',1,dataset_id,2), + (400,0.000000732,'1980-01-01','2000-12-31',1,dataset_id,2), + (414,0.000132143,'1980-01-01','2000-12-31',1,dataset_id,2), + (428,15.173839890,'1980-01-01','2000-12-31',1,dataset_id,2), + (422,0.008160541,'1980-01-01','2000-12-31',1,dataset_id,2), + (440,12.290136440,'1980-01-01','2000-12-31',1,dataset_id,2), + (442,10.515460370,'1980-01-01','2000-12-31',1,dataset_id,2), + (807,1.398042803,'1980-01-01','2000-12-31',1,dataset_id,2), + (498,3.719382612,'1980-01-01','2000-12-31',1,dataset_id,2), + (499,4.047971771,'1980-01-01','2000-12-31',1,dataset_id,2), + (528,13.508867550,'1980-01-01','2000-12-31',1,dataset_id,2), + (578,48.167805880,'1980-01-01','2000-12-31',1,dataset_id,2), + (512,0.003078772,'1980-01-01','2000-12-31',1,dataset_id,2), + (616,9.129693081,'1980-01-01','2000-12-31',1,dataset_id,2), + (634,0.000000507,'1980-01-01','2000-12-31',1,dataset_id,2), + (642,5.564742813,'1980-01-01','2000-12-31',1,dataset_id,2), + (682,0.002211849,'1980-01-01','2000-12-31',1,dataset_id,2), + (688,4.569881326,'1980-01-01','2000-12-31',1,dataset_id,2), + (703,12.803058260,'1980-01-01','2000-12-31',1,dataset_id,2), + (705,17.046354640,'1980-01-01','2000-12-31',1,dataset_id,2), + (724,0.656735358,'1980-01-01','2000-12-31',1,dataset_id,2), + (752,24.652369450,'1980-01-01','2000-12-31',1,dataset_id,2), + (756,38.598836780,'1980-01-01','2000-12-31',1,dataset_id,2), + (760,0.000643668,'1980-01-01','2000-12-31',1,dataset_id,2), + (792,0.660818093,'1980-01-01','2000-12-31',1,dataset_id,2), + (804,5.635486687,'1980-01-01','2000-12-31',1,dataset_id,2), + (784,0.000095887,'1980-01-01','2000-12-31',1,dataset_id,2), + (826,19.321186500,'1980-01-01','2000-12-31',1,dataset_id,2), + (887,0.020772469,'1980-01-01','2000-12-31',1,dataset_id,2), + (84,3.225491220,'1980-01-01','2000-12-31',1,dataset_id,2), + (124,16.471927500,'1980-01-01','2000-12-31',1,dataset_id,2), + (170,50.568085700,'1980-01-01','2000-12-31',1,dataset_id,2), + (188,0.978612084,'1980-01-01','2000-12-31',1,dataset_id,2), + (192,5.813020275,'1980-01-01','2000-12-31',1,dataset_id,2), + (214,7.571735999,'1980-01-01','2000-12-31',1,dataset_id,2), + (222,0.046981582,'1980-01-01','2000-12-31',1,dataset_id,2), + (304,18.496950360,'1980-01-01','2000-12-31',1,dataset_id,2), + (320,0.987641154,'1980-01-01','2000-12-31',1,dataset_id,2), + (332,3.082748997,'1980-01-01','2000-12-31',1,dataset_id,2), + (340,1.042050811,'1980-01-01','2000-12-31',1,dataset_id,2), + (388,9.960895897,'1980-01-01','2000-12-31',1,dataset_id,2), + (484,0.808932495,'1980-01-01','2000-12-31',1,dataset_id,2), + (558,0.144354287,'1980-01-01','2000-12-31',1,dataset_id,2), + (591,6.783765531,'1980-01-01','2000-12-31',1,dataset_id,2), + (630,23.286568570,'1980-01-01','2000-12-31',1,dataset_id,2), + (44,20.139363990,'1980-01-01','2000-12-31',1,dataset_id,2), + (840,10.599540560,'1980-01-01','2000-12-31',1,dataset_id,2), + (10,8.756042214,'1980-01-01','2000-12-31',1,dataset_id,2), + (36,0.904773694,'1980-01-01','2000-12-31',1,dataset_id,2), + (96,78.273921660,'1980-01-01','2000-12-31',1,dataset_id,2), + (242,38.003884490,'1980-01-01','2000-12-31',1,dataset_id,2), + (360,67.511322630,'1980-01-01','2000-12-31',1,dataset_id,2), + (458,81.512419060,'1980-01-01','2000-12-31',1,dataset_id,2), + (540,19.797040910,'1980-01-01','2000-12-31',1,dataset_id,2), + (554,36.180720610,'1980-01-01','2000-12-31',1,dataset_id,2), + (598,52.898398650,'1980-01-01','2000-12-31',1,dataset_id,2), + (608,24.500551810,'1980-01-01','2000-12-31',1,dataset_id,2), + (90,127.181230500,'1980-01-01','2000-12-31',1,dataset_id,2), + (626,0.328260415,'1980-01-01','2000-12-31',1,dataset_id,2), + (548,52.684764550,'1980-01-01','2000-12-31',1,dataset_id,2), + (32,3.963087704,'1980-01-01','2000-12-31',1,dataset_id,2), + (68,3.007944688,'1980-01-01','2000-12-31',1,dataset_id,2), + (76,14.877115170,'1980-01-01','2000-12-31',1,dataset_id,2), + (152,22.323268590,'1980-01-01','2000-12-31',1,dataset_id,2), + (218,26.482943980,'1980-01-01','2000-12-31',1,dataset_id,2), + (238,16.719914650,'1980-01-01','2000-12-31',1,dataset_id,2), + (328,13.085666260,'1980-01-01','2000-12-31',1,dataset_id,2), + (740,14.588846720,'1980-01-01','2000-12-31',1,dataset_id,2), + (600,9.338897120,'1980-01-01','2000-12-31',1,dataset_id,2), + (604,15.475291710,'1980-01-01','2000-12-31',1,dataset_id,2), + (780,3.304726276,'1980-01-01','2000-12-31',1,dataset_id,2), + (858,19.934143550,'1980-01-01','2000-12-31',1,dataset_id,2), + (862,17.309502050,'1980-01-01','2000-12-31',1,dataset_id,2), + (12,0.005237855,'1980-01-01','2022-12-31',1,dataset_id,2), + (24,0.001368631,'1980-01-01','2022-12-31',1,dataset_id,2), + (204,0.170390636,'1980-01-01','2022-12-31',1,dataset_id,2), + (72,0.001082315,'1980-01-01','2022-12-31',1,dataset_id,2), + (854,0.000480596,'1980-01-01','2022-12-31',1,dataset_id,2), + (108,2.089950142,'1980-01-01','2022-12-31',1,dataset_id,2), + (120,2.168115271,'1980-01-01','2022-12-31',1,dataset_id,2), + (140,0.432813369,'1980-01-01','2022-12-31',1,dataset_id,2), + (148,0.000013762,'1980-01-01','2022-12-31',1,dataset_id,2), + (818,0.000003586,'1980-01-01','2022-12-31',1,dataset_id,2), + (566,0.515331755,'1980-01-01','2022-12-31',1,dataset_id,2), + (178,6.534445276,'1980-01-01','2022-12-31',1,dataset_id,2), + (180,9.049013001,'1980-01-01','2022-12-31',1,dataset_id,2), + (384,0.996063409,'1980-01-01','2022-12-31',1,dataset_id,2), + (262,0.111560976,'1980-01-01','2022-12-31',1,dataset_id,2), + (226,16.424801920,'1980-01-01','2022-12-31',1,dataset_id,2), + (232,0.120925056,'1980-01-01','2022-12-31',1,dataset_id,2), + (231,0.917291860,'1980-01-01','2022-12-31',1,dataset_id,2), + (260,55.052885540,'1980-01-01','2022-12-31',1,dataset_id,2), + (266,3.930599772,'1980-01-01','2022-12-31',1,dataset_id,2), + (288,0.707483771,'1980-01-01','2022-12-31',1,dataset_id,2), + (324,0.074294210,'1980-01-01','2022-12-31',1,dataset_id,2), + (624,0.000131937,'1980-01-01','2022-12-31',1,dataset_id,2), + (404,1.385581151,'1980-01-01','2022-12-31',1,dataset_id,2), + (426,2.640131576,'1980-01-01','2022-12-31',1,dataset_id,2), + (430,5.556356701,'1980-01-01','2022-12-31',1,dataset_id,2), + (434,0.000071666,'1980-01-01','2022-12-31',1,dataset_id,2), + (450,8.100405309,'1980-01-01','2022-12-31',1,dataset_id,2), + (454,0.029837038,'1980-01-01','2022-12-31',1,dataset_id,2), + (466,0.000065126,'1980-01-01','2022-12-31',1,dataset_id,2), + (478,0.000152554,'1980-01-01','2022-12-31',1,dataset_id,2), + (504,0.011696621,'1980-01-01','2022-12-31',1,dataset_id,2), + (508,0.239157258,'1980-01-01','2022-12-31',1,dataset_id,2), + (516,0.001582261,'1980-01-01','2022-12-31',1,dataset_id,2), + (562,0.000008840,'1980-01-01','2022-12-31',1,dataset_id,2), + (646,4.063182111,'1980-01-01','2022-12-31',1,dataset_id,2), + (686,0.001018730,'1980-01-01','2022-12-31',1,dataset_id,2), + (694,0.586990839,'1980-01-01','2022-12-31',1,dataset_id,2), + (706,0.109140156,'1980-01-01','2022-12-31',1,dataset_id,2), + (729,0.000389473,'1980-01-01','2022-12-31',1,dataset_id,2), + (834,0.563894915,'1980-01-01','2022-12-31',1,dataset_id,2), + (710,1.170278103,'1980-01-01','2022-12-31',1,dataset_id,2), + (728,0.087312763,'1980-01-01','2022-12-31',1,dataset_id,2), + (748,0.789720001,'1980-01-01','2022-12-31',1,dataset_id,2), + (270,0.000452893,'1980-01-01','2022-12-31',1,dataset_id,2), + (768,0.178529774,'1980-01-01','2022-12-31',1,dataset_id,2), + (788,0.015631217,'1980-01-01','2022-12-31',1,dataset_id,2), + (800,7.758197153,'1980-01-01','2022-12-31',1,dataset_id,2), + (732,0.001259406,'1980-01-01','2022-12-31',1,dataset_id,2), + (894,0.001246484,'1980-01-01','2022-12-31',1,dataset_id,2), + (716,0.021396914,'1980-01-01','2022-12-31',1,dataset_id,2), + (620,0.271163496,'1980-01-01','2022-12-31',1,dataset_id,2), + (4,0.207678404,'1980-01-01','2022-12-31',1,dataset_id,2), + (50,0.589569157,'1980-01-01','2022-12-31',1,dataset_id,2), + (64,0.220668787,'1980-01-01','2022-12-31',1,dataset_id,2), + (104,0.447233910,'1980-01-01','2022-12-31',1,dataset_id,2), + (116,0.555834220,'1980-01-01','2022-12-31',1,dataset_id,2), + (156,2.523754726,'1980-01-01','2022-12-31',1,dataset_id,2), + (356,0.433736821,'1980-01-01','2022-12-31',1,dataset_id,2), + (392,38.455944260,'1980-01-01','2022-12-31',1,dataset_id,2), + (398,0.544664355,'1980-01-01','2022-12-31',1,dataset_id,2), + (417,0.629433194,'1980-01-01','2022-12-31',1,dataset_id,2), + (418,0.931522184,'1980-01-01','2022-12-31',1,dataset_id,2), + (496,0.446578659,'1980-01-01','2022-12-31',1,dataset_id,2), + (524,0.279277233,'1980-01-01','2022-12-31',1,dataset_id,2), + (408,5.882676953,'1980-01-01','2022-12-31',1,dataset_id,2), + (586,0.450958314,'1980-01-01','2022-12-31',1,dataset_id,2), + (643,15.458970740,'1980-01-01','2022-12-31',1,dataset_id,2), + (410,14.313914740,'1980-01-01','2022-12-31',1,dataset_id,2), + (144,15.668347220,'1980-01-01','2022-12-31',1,dataset_id,2), + (158,28.834181160,'1980-01-01','2022-12-31',1,dataset_id,2), + (762,0.030098917,'1980-01-01','2022-12-31',1,dataset_id,2), + (764,2.417501442,'1980-01-01','2022-12-31',1,dataset_id,2), + (795,0.002518914,'1980-01-01','2022-12-31',1,dataset_id,2), + (860,0.006482774,'1980-01-01','2022-12-31',1,dataset_id,2), + (704,2.263254838,'1980-01-01','2022-12-31',1,dataset_id,2), + (8,1.147567006,'1980-01-01','2022-12-31',1,dataset_id,2), + (51,0.538410952,'1980-01-01','2022-12-31',1,dataset_id,2), + (40,25.191340010,'1980-01-01','2022-12-31',1,dataset_id,2), + (31,0.447025169,'1980-01-01','2022-12-31',1,dataset_id,2), + (112,12.974579540,'1980-01-01','2022-12-31',1,dataset_id,2), + (56,14.366487370,'1980-01-01','2022-12-31',1,dataset_id,2), + (70,6.002470229,'1980-01-01','2022-12-31',1,dataset_id,2), + (100,3.114702620,'1980-01-01','2022-12-31',1,dataset_id,2), + (191,7.529334694,'1980-01-01','2022-12-31',1,dataset_id,2), + (196,0.022322291,'1980-01-01','2022-12-31',1,dataset_id,2), + (203,9.923359603,'1980-01-01','2022-12-31',1,dataset_id,2), + (208,17.008656800,'1980-01-01','2022-12-31',1,dataset_id,2), + (233,14.385471360,'1980-01-01','2022-12-31',1,dataset_id,2), + (246,23.872973530,'1980-01-01','2022-12-31',1,dataset_id,2), + (250,7.039211094,'1980-01-01','2022-12-31',1,dataset_id,2), + (275,0.000549985,'1980-01-01','2022-12-31',1,dataset_id,2), + (268,8.752550872,'1980-01-01','2022-12-31',1,dataset_id,2), + (276,13.575655580,'1980-01-01','2022-12-31',1,dataset_id,2), + (300,0.565925827,'1980-01-01','2022-12-31',1,dataset_id,2), + (348,6.181435686,'1980-01-01','2022-12-31',1,dataset_id,2), + (352,46.807762010,'1980-01-01','2022-12-31',1,dataset_id,2), + (364,0.025164292,'1980-01-01','2022-12-31',1,dataset_id,2), + (368,0.000270362,'1980-01-01','2022-12-31',1,dataset_id,2), + (372,33.420774480,'1980-01-01','2022-12-31',1,dataset_id,2), + (376,0.002357116,'1980-01-01','2022-12-31',1,dataset_id,2), + (380,6.402195930,'1980-01-01','2022-12-31',1,dataset_id,2), + (400,0.000013752,'1980-01-01','2022-12-31',1,dataset_id,2), + (414,0.000070835,'1980-01-01','2022-12-31',1,dataset_id,2), + (428,13.815162160,'1980-01-01','2022-12-31',1,dataset_id,2), + (422,0.005663958,'1980-01-01','2022-12-31',1,dataset_id,2), + (440,13.150038730,'1980-01-01','2022-12-31',1,dataset_id,2), + (442,15.138498510,'1980-01-01','2022-12-31',1,dataset_id,2), + (807,1.981859765,'1980-01-01','2022-12-31',1,dataset_id,2), + (498,3.622298903,'1980-01-01','2022-12-31',1,dataset_id,2), + (499,5.452293422,'1980-01-01','2022-12-31',1,dataset_id,2), + (528,13.018878860,'1980-01-01','2022-12-31',1,dataset_id,2), + (578,51.757924750,'1980-01-01','2022-12-31',1,dataset_id,2), + (512,0.013035236,'1980-01-01','2022-12-31',1,dataset_id,2), + (616,9.738281547,'1980-01-01','2022-12-31',1,dataset_id,2), + (634,0.000019481,'1980-01-01','2022-12-31',1,dataset_id,2), + (642,7.658406411,'1980-01-01','2022-12-31',1,dataset_id,2), + (682,0.002320004,'1980-01-01','2022-12-31',1,dataset_id,2), + (688,6.328267351,'1980-01-01','2022-12-31',1,dataset_id,2), + (703,13.427085040,'1980-01-01','2022-12-31',1,dataset_id,2), + (705,16.994091320,'1980-01-01','2022-12-31',1,dataset_id,2), + (724,0.623117688,'1980-01-01','2022-12-31',1,dataset_id,2), + (752,26.125844380,'1980-01-01','2022-12-31',1,dataset_id,2), + (756,42.322013270,'1980-01-01','2022-12-31',1,dataset_id,2), + (760,0.001449591,'1980-01-01','2022-12-31',1,dataset_id,2), + (792,0.755712106,'1980-01-01','2022-12-31',1,dataset_id,2), + (804,6.064808023,'1980-01-01','2022-12-31',1,dataset_id,2), + (784,0.000842283,'1980-01-01','2022-12-31',1,dataset_id,2), + (826,25.328712720,'1980-01-01','2022-12-31',1,dataset_id,2), + (887,0.033207606,'1980-01-01','2022-12-31',1,dataset_id,2), + (84,5.606444125,'1980-01-01','2022-12-31',1,dataset_id,2), + (124,16.777856790,'1980-01-01','2022-12-31',1,dataset_id,2), + (170,45.123855840,'1980-01-01','2022-12-31',1,dataset_id,2), + (188,8.503904763,'1980-01-01','2022-12-31',1,dataset_id,2), + (192,5.234502118,'1980-01-01','2022-12-31',1,dataset_id,2), + (214,6.642494591,'1980-01-01','2022-12-31',1,dataset_id,2), + (222,0.832839030,'1980-01-01','2022-12-31',1,dataset_id,2), + (304,17.996925990,'1980-01-01','2022-12-31',1,dataset_id,2), + (320,1.737143738,'1980-01-01','2022-12-31',1,dataset_id,2), + (332,3.411389479,'1980-01-01','2022-12-31',1,dataset_id,2), + (340,3.437093696,'1980-01-01','2022-12-31',1,dataset_id,2), + (388,8.456019194,'1980-01-01','2022-12-31',1,dataset_id,2), + (484,0.859310118,'1980-01-01','2022-12-31',1,dataset_id,2), + (558,1.206366273,'1980-01-01','2022-12-31',1,dataset_id,2), + (591,6.561553225,'1980-01-01','2022-12-31',1,dataset_id,2), + (630,18.588263420,'1980-01-01','2022-12-31',1,dataset_id,2), + (44,18.377271870,'1980-01-01','2022-12-31',1,dataset_id,2), + (840,11.904556110,'1980-01-01','2022-12-31',1,dataset_id,2), + (10,9.185986726,'1980-01-01','2022-12-31',1,dataset_id,2), + (36,1.063023379,'1980-01-01','2022-12-31',1,dataset_id,2), + (96,100.814000100,'1980-01-01','2022-12-31',1,dataset_id,2), + (242,42.372936290,'1980-01-01','2022-12-31',1,dataset_id,2), + (360,82.824311620,'1980-01-01','2022-12-31',1,dataset_id,2), + (458,97.784537230,'1980-01-01','2022-12-31',1,dataset_id,2), + (540,20.970872610,'1980-01-01','2022-12-31',1,dataset_id,2), + (554,35.887061230,'1980-01-01','2022-12-31',1,dataset_id,2), + (598,62.480031610,'1980-01-01','2022-12-31',1,dataset_id,2), + (608,37.954931650,'1980-01-01','2022-12-31',1,dataset_id,2), + (90,144.301000900,'1980-01-01','2022-12-31',1,dataset_id,2), + (626,0.321999184,'1980-01-01','2022-12-31',1,dataset_id,2), + (548,61.738159350,'1980-01-01','2022-12-31',1,dataset_id,2), + (32,4.251471867,'1980-01-01','2022-12-31',1,dataset_id,2), + (68,2.618051395,'1980-01-01','2022-12-31',1,dataset_id,2), + (76,13.156076180,'1980-01-01','2022-12-31',1,dataset_id,2), + (152,22.211765070,'1980-01-01','2022-12-31',1,dataset_id,2), + (218,29.194513140,'1980-01-01','2022-12-31',1,dataset_id,2), + (238,17.245431620,'1980-01-01','2022-12-31',1,dataset_id,2), + (328,16.139068280,'1980-01-01','2022-12-31',1,dataset_id,2), + (740,13.622735640,'1980-01-01','2022-12-31',1,dataset_id,2), + (600,9.390027364,'1980-01-01','2022-12-31',1,dataset_id,2), + (604,16.807325780,'1980-01-01','2022-12-31',1,dataset_id,2), + (780,15.788518570,'1980-01-01','2022-12-31',1,dataset_id,2), + (858,24.693271680,'1980-01-01','2022-12-31',1,dataset_id,2), + (862,15.759491070,'1980-01-01','2022-12-31',1,dataset_id,2), + (12,0.002073186,'2001-01-01','2022-12-31',2,dataset_id,2), + (24,0.001692804,'2001-01-01','2022-12-31',2,dataset_id,2), + (204,0.220134821,'2001-01-01','2022-12-31',2,dataset_id,2), + (72,0.002003006,'2001-01-01','2022-12-31',2,dataset_id,2), + (854,0.000109040,'2001-01-01','2022-12-31',2,dataset_id,2), + (108,3.762153094,'2001-01-01','2022-12-31',2,dataset_id,2), + (120,4.411841638,'2001-01-01','2022-12-31',2,dataset_id,2), + (140,0.032149529,'2001-01-01','2022-12-31',2,dataset_id,2), + (148,0.000000895,'2001-01-01','2022-12-31',2,dataset_id,2), + (818,0.000001127,'2001-01-01','2022-12-31',2,dataset_id,2), + (566,0.876331129,'2001-01-01','2022-12-31',2,dataset_id,2), + (178,3.681576580,'2001-01-01','2022-12-31',2,dataset_id,2), + (180,5.357216506,'2001-01-01','2022-12-31',2,dataset_id,2), + (384,2.322062848,'2001-01-01','2022-12-31',2,dataset_id,2), + (262,0.012654380,'2001-01-01','2022-12-31',2,dataset_id,2), + (226,56.558336250,'2001-01-01','2022-12-31',2,dataset_id,2), + (232,0.033531626,'2001-01-01','2022-12-31',2,dataset_id,2), + (231,0.990023714,'2001-01-01','2022-12-31',2,dataset_id,2), + (260,90.649417180,'2001-01-01','2022-12-31',2,dataset_id,2), + (266,6.890401739,'2001-01-01','2022-12-31',2,dataset_id,2), + (288,1.227332456,'2001-01-01','2022-12-31',2,dataset_id,2), + (324,0.064786045,'2001-01-01','2022-12-31',2,dataset_id,2), + (624,0.000012879,'2001-01-01','2022-12-31',2,dataset_id,2), + (404,3.196393343,'2001-01-01','2022-12-31',2,dataset_id,2), + (426,2.535308740,'2001-01-01','2022-12-31',2,dataset_id,2), + (430,14.897937920,'2001-01-01','2022-12-31',2,dataset_id,2), + (434,0.000026285,'2001-01-01','2022-12-31',2,dataset_id,2), + (450,5.540199078,'2001-01-01','2022-12-31',2,dataset_id,2), + (454,0.327354987,'2001-01-01','2022-12-31',2,dataset_id,2), + (466,0.000048473,'2001-01-01','2022-12-31',2,dataset_id,2), + (478,0.000013224,'2001-01-01','2022-12-31',2,dataset_id,2), + (504,0.047827404,'2001-01-01','2022-12-31',2,dataset_id,2), + (508,0.140890597,'2001-01-01','2022-12-31',2,dataset_id,2), + (516,0.000428847,'2001-01-01','2022-12-31',2,dataset_id,2), + (562,0.000000518,'2001-01-01','2022-12-31',2,dataset_id,2), + (646,2.476392994,'2001-01-01','2022-12-31',2,dataset_id,2), + (686,0.000002816,'2001-01-01','2022-12-31',2,dataset_id,2), + (694,1.592483872,'2001-01-01','2022-12-31',2,dataset_id,2), + (706,0.003126157,'2001-01-01','2022-12-31',2,dataset_id,2), + (729,0.000027998,'2001-01-01','2022-12-31',2,dataset_id,2), + (834,0.983718148,'2001-01-01','2022-12-31',2,dataset_id,2), + (710,1.128256459,'2001-01-01','2022-12-31',2,dataset_id,2), + (728,0.034779014,'2001-01-01','2022-12-31',2,dataset_id,2), + (748,0.696836192,'2001-01-01','2022-12-31',2,dataset_id,2), + (270,0.000001361,'2001-01-01','2022-12-31',2,dataset_id,2), + (768,0.282348963,'2001-01-01','2022-12-31',2,dataset_id,2), + (788,0.006582041,'2001-01-01','2022-12-31',2,dataset_id,2), + (800,14.096761580,'2001-01-01','2022-12-31',2,dataset_id,2), + (732,0.000053673,'2001-01-01','2022-12-31',2,dataset_id,2), + (894,0.000228562,'2001-01-01','2022-12-31',2,dataset_id,2), + (716,0.010904338,'2001-01-01','2022-12-31',2,dataset_id,2), + (620,0.618928421,'2001-01-01','2022-12-31',2,dataset_id,2), + (4,0.552908468,'2001-01-01','2022-12-31',2,dataset_id,2), + (50,0.359610860,'2001-01-01','2022-12-31',2,dataset_id,2), + (64,25.645103290,'2001-01-01','2022-12-31',2,dataset_id,2), + (104,1.914754226,'2001-01-01','2022-12-31',2,dataset_id,2), + (116,1.134163404,'2001-01-01','2022-12-31',2,dataset_id,2), + (156,6.994418689,'2001-01-01','2022-12-31',2,dataset_id,2), + (356,2.019540462,'2001-01-01','2022-12-31',2,dataset_id,2), + (392,56.233840570,'2001-01-01','2022-12-31',2,dataset_id,2), + (398,1.475074253,'2001-01-01','2022-12-31',2,dataset_id,2), + (417,17.268361970,'2001-01-01','2022-12-31',2,dataset_id,2), + (418,2.539060789,'2001-01-01','2022-12-31',2,dataset_id,2), + (496,1.155517798,'2001-01-01','2022-12-31',2,dataset_id,2), + (524,8.107798132,'2001-01-01','2022-12-31',2,dataset_id,2), + (408,11.251277070,'2001-01-01','2022-12-31',2,dataset_id,2), + (586,2.168832679,'2001-01-01','2022-12-31',2,dataset_id,2), + (643,10.430892420,'2001-01-01','2022-12-31',2,dataset_id,2), + (410,15.078560410,'2001-01-01','2022-12-31',2,dataset_id,2), + (144,19.701703240,'2001-01-01','2022-12-31',2,dataset_id,2), + (158,71.370032110,'2001-01-01','2022-12-31',2,dataset_id,2), + (762,5.186908593,'2001-01-01','2022-12-31',2,dataset_id,2), + (764,2.841498011,'2001-01-01','2022-12-31',2,dataset_id,2), + (795,0.005080367,'2001-01-01','2022-12-31',2,dataset_id,2), + (860,0.373254615,'2001-01-01','2022-12-31',2,dataset_id,2), + (704,12.000228450,'2001-01-01','2022-12-31',2,dataset_id,2), + (8,4.556776121,'2001-01-01','2022-12-31',2,dataset_id,2), + (51,11.711039200,'2001-01-01','2022-12-31',2,dataset_id,2), + (40,38.854902140,'2001-01-01','2022-12-31',2,dataset_id,2), + (31,4.575993100,'2001-01-01','2022-12-31',2,dataset_id,2), + (112,13.527010660,'2001-01-01','2022-12-31',2,dataset_id,2), + (56,18.270126840,'2001-01-01','2022-12-31',2,dataset_id,2), + (70,16.957652810,'2001-01-01','2022-12-31',2,dataset_id,2), + (100,7.506103112,'2001-01-01','2022-12-31',2,dataset_id,2), + (191,13.329173740,'2001-01-01','2022-12-31',2,dataset_id,2), + (196,0.000890084,'2001-01-01','2022-12-31',2,dataset_id,2), + (203,14.324729930,'2001-01-01','2022-12-31',2,dataset_id,2), + (208,18.907032440,'2001-01-01','2022-12-31',2,dataset_id,2), + (233,13.328782870,'2001-01-01','2022-12-31',2,dataset_id,2), + (246,15.233215420,'2001-01-01','2022-12-31',2,dataset_id,2), + (250,13.068673680,'2001-01-01','2022-12-31',2,dataset_id,2), + (275,0.000729309,'2001-01-01','2022-12-31',2,dataset_id,2), + (268,28.182509490,'2001-01-01','2022-12-31',2,dataset_id,2), + (276,17.768474180,'2001-01-01','2022-12-31',2,dataset_id,2), + (300,1.555679982,'2001-01-01','2022-12-31',2,dataset_id,2), + (348,9.111244025,'2001-01-01','2022-12-31',2,dataset_id,2), + (352,41.482458310,'2001-01-01','2022-12-31',2,dataset_id,2), + (364,0.512455317,'2001-01-01','2022-12-31',2,dataset_id,2), + (368,0.000234691,'2001-01-01','2022-12-31',2,dataset_id,2), + (372,37.045903640,'2001-01-01','2022-12-31',2,dataset_id,2), + (376,0.000766024,'2001-01-01','2022-12-31',2,dataset_id,2), + (380,14.338915360,'2001-01-01','2022-12-31',2,dataset_id,2), + (400,0.000004739,'2001-01-01','2022-12-31',2,dataset_id,2), + (414,0.000000528,'2001-01-01','2022-12-31',2,dataset_id,2), + (428,13.494563220,'2001-01-01','2022-12-31',2,dataset_id,2), + (422,0.002440628,'2001-01-01','2022-12-31',2,dataset_id,2), + (440,12.273249230,'2001-01-01','2022-12-31',2,dataset_id,2), + (442,20.481233590,'2001-01-01','2022-12-31',2,dataset_id,2), + (807,3.689163942,'2001-01-01','2022-12-31',2,dataset_id,2), + (498,5.704824126,'2001-01-01','2022-12-31',2,dataset_id,2), + (499,13.468584670,'2001-01-01','2022-12-31',2,dataset_id,2), + (528,17.025561000,'2001-01-01','2022-12-31',2,dataset_id,2), + (578,46.266908940,'2001-01-01','2022-12-31',2,dataset_id,2), + (512,0.000928661,'2001-01-01','2022-12-31',2,dataset_id,2), + (616,12.176105760,'2001-01-01','2022-12-31',2,dataset_id,2), + (634,0.000000338,'2001-01-01','2022-12-31',2,dataset_id,2), + (642,15.171060640,'2001-01-01','2022-12-31',2,dataset_id,2), + (682,0.004239904,'2001-01-01','2022-12-31',2,dataset_id,2), + (688,10.247380980,'2001-01-01','2022-12-31',2,dataset_id,2), + (703,16.101735520,'2001-01-01','2022-12-31',2,dataset_id,2), + (705,32.822160420,'2001-01-01','2022-12-31',2,dataset_id,2), + (724,2.372230017,'2001-01-01','2022-12-31',2,dataset_id,2), + (752,16.632626810,'2001-01-01','2022-12-31',2,dataset_id,2), + (756,64.278707230,'2001-01-01','2022-12-31',2,dataset_id,2), + (760,0.002564377,'2001-01-01','2022-12-31',2,dataset_id,2), + (792,2.833872446,'2001-01-01','2022-12-31',2,dataset_id,2), + (804,7.508256269,'2001-01-01','2022-12-31',2,dataset_id,2), + (784,0.000016627,'2001-01-01','2022-12-31',2,dataset_id,2), + (826,32.287733490,'2001-01-01','2022-12-31',2,dataset_id,2), + (887,0.065623575,'2001-01-01','2022-12-31',2,dataset_id,2), + (84,9.159176789,'2001-01-01','2022-12-31',2,dataset_id,2), + (124,13.842503430,'2001-01-01','2022-12-31',2,dataset_id,2), + (170,77.994582190,'2001-01-01','2022-12-31',2,dataset_id,2), + (188,33.797043100,'2001-01-01','2022-12-31',2,dataset_id,2), + (192,3.156424256,'2001-01-01','2022-12-31',2,dataset_id,2), + (214,8.009737290,'2001-01-01','2022-12-31',2,dataset_id,2), + (222,0.029422625,'2001-01-01','2022-12-31',2,dataset_id,2), + (304,13.387190560,'2001-01-01','2022-12-31',2,dataset_id,2), + (320,6.330826043,'2001-01-01','2022-12-31',2,dataset_id,2), + (332,4.032383038,'2001-01-01','2022-12-31',2,dataset_id,2), + (340,7.498423828,'2001-01-01','2022-12-31',2,dataset_id,2), + (388,9.715208573,'2001-01-01','2022-12-31',2,dataset_id,2), + (484,1.399631975,'2001-01-01','2022-12-31',2,dataset_id,2), + (558,9.422322138,'2001-01-01','2022-12-31',2,dataset_id,2), + (591,34.769263960,'2001-01-01','2022-12-31',2,dataset_id,2), + (630,10.110875480,'2001-01-01','2022-12-31',2,dataset_id,2), + (44,16.196370400,'2001-01-01','2022-12-31',2,dataset_id,2), + (840,12.200118850,'2001-01-01','2022-12-31',2,dataset_id,2), + (10,7.607622962,'2001-01-01','2022-12-31',2,dataset_id,2), + (36,0.991147558,'2001-01-01','2022-12-31',2,dataset_id,2), + (96,115.630016900,'2001-01-01','2022-12-31',2,dataset_id,2), + (242,43.756074330,'2001-01-01','2022-12-31',2,dataset_id,2), + (360,103.741929400,'2001-01-01','2022-12-31',2,dataset_id,2), + (458,91.763184220,'2001-01-01','2022-12-31',2,dataset_id,2), + (540,26.389370330,'2001-01-01','2022-12-31',2,dataset_id,2), + (554,57.951939810,'2001-01-01','2022-12-31',2,dataset_id,2), + (598,170.851286600,'2001-01-01','2022-12-31',2,dataset_id,2), + (608,61.469338200,'2001-01-01','2022-12-31',2,dataset_id,2), + (90,238.084418000,'2001-01-01','2022-12-31',2,dataset_id,2), + (626,2.425962821,'2001-01-01','2022-12-31',2,dataset_id,2), + (548,71.390000680,'2001-01-01','2022-12-31',2,dataset_id,2), + (32,6.053306715,'2001-01-01','2022-12-31',2,dataset_id,2), + (68,6.130136326,'2001-01-01','2022-12-31',2,dataset_id,2), + (76,11.606071830,'2001-01-01','2022-12-31',2,dataset_id,2), + (152,59.228607720,'2001-01-01','2022-12-31',2,dataset_id,2), + (218,87.513109490,'2001-01-01','2022-12-31',2,dataset_id,2), + (238,18.770122410,'2001-01-01','2022-12-31',2,dataset_id,2), + (328,25.919084280,'2001-01-01','2022-12-31',2,dataset_id,2), + (740,11.058957700,'2001-01-01','2022-12-31',2,dataset_id,2), + (600,12.060219350,'2001-01-01','2022-12-31',2,dataset_id,2), + (604,29.650913740,'2001-01-01','2022-12-31',2,dataset_id,2), + (780,17.771702530,'2001-01-01','2022-12-31',2,dataset_id,2), + (858,25.393283670,'2001-01-01','2022-12-31',2,dataset_id,2), + (862,22.840939340,'2001-01-01','2022-12-31',2,dataset_id,2), + (12,0.006052206,'1980-01-01','2000-12-31',2,dataset_id,2), + (24,0.000900135,'1980-01-01','2000-12-31',2,dataset_id,2), + (204,0.541895466,'1980-01-01','2000-12-31',2,dataset_id,2), + (72,0.007630382,'1980-01-01','2000-12-31',2,dataset_id,2), + (854,0.002661876,'1980-01-01','2000-12-31',2,dataset_id,2), + (108,4.973293412,'1980-01-01','2000-12-31',2,dataset_id,2), + (120,9.928284669,'1980-01-01','2000-12-31',2,dataset_id,2), + (140,0.625450494,'1980-01-01','2000-12-31',2,dataset_id,2), + (148,0.000002385,'1980-01-01','2000-12-31',2,dataset_id,2), + (818,0.000001469,'1980-01-01','2000-12-31',2,dataset_id,2), + (566,1.953741843,'1980-01-01','2000-12-31',2,dataset_id,2), + (178,13.389054360,'1980-01-01','2000-12-31',2,dataset_id,2), + (180,13.569297730,'1980-01-01','2000-12-31',2,dataset_id,2), + (384,5.943831490,'1980-01-01','2000-12-31',2,dataset_id,2), + (262,0.011781468,'1980-01-01','2000-12-31',2,dataset_id,2), + (226,83.264293100,'1980-01-01','2000-12-31',2,dataset_id,2), + (232,0.102862340,'1980-01-01','2000-12-31',2,dataset_id,2), + (231,1.583842666,'1980-01-01','2000-12-31',2,dataset_id,2), + (260,90.551060940,'1980-01-01','2000-12-31',2,dataset_id,2), + (266,12.748985920,'1980-01-01','2000-12-31',2,dataset_id,2), + (288,3.558250160,'1980-01-01','2000-12-31',2,dataset_id,2), + (324,0.242392479,'1980-01-01','2000-12-31',2,dataset_id,2), + (624,0.000007688,'1980-01-01','2000-12-31',2,dataset_id,2), + (404,3.612170555,'1980-01-01','2000-12-31',2,dataset_id,2), + (426,3.369778374,'1980-01-01','2000-12-31',2,dataset_id,2), + (430,20.991676720,'1980-01-01','2000-12-31',2,dataset_id,2), + (434,0.000006433,'1980-01-01','2000-12-31',2,dataset_id,2), + (450,6.840112234,'1980-01-01','2000-12-31',2,dataset_id,2), + (454,0.537829864,'1980-01-01','2000-12-31',2,dataset_id,2), + (466,0.000172614,'1980-01-01','2000-12-31',2,dataset_id,2), + (478,0.000025280,'1980-01-01','2000-12-31',2,dataset_id,2), + (504,0.067307144,'1980-01-01','2000-12-31',2,dataset_id,2), + (508,0.377787039,'1980-01-01','2000-12-31',2,dataset_id,2), + (516,0.004422021,'1980-01-01','2000-12-31',2,dataset_id,2), + (562,0.000000369,'1980-01-01','2000-12-31',2,dataset_id,2), + (646,2.507418561,'1980-01-01','2000-12-31',2,dataset_id,2), + (686,0.000004317,'1980-01-01','2000-12-31',2,dataset_id,2), + (694,1.716860009,'1980-01-01','2000-12-31',2,dataset_id,2), + (706,0.012743539,'1980-01-01','2000-12-31',2,dataset_id,2), + (729,0.000218880,'1980-01-01','2000-12-31',2,dataset_id,2), + (834,1.468991951,'1980-01-01','2000-12-31',2,dataset_id,2), + (710,1.374982557,'1980-01-01','2000-12-31',2,dataset_id,2), + (728,0.143812307,'1980-01-01','2000-12-31',2,dataset_id,2), + (748,1.876894308,'1980-01-01','2000-12-31',2,dataset_id,2), + (270,0.000002055,'1980-01-01','2000-12-31',2,dataset_id,2), + (768,0.973294644,'1980-01-01','2000-12-31',2,dataset_id,2), + (788,0.011571270,'1980-01-01','2000-12-31',2,dataset_id,2), + (800,20.920996200,'1980-01-01','2000-12-31',2,dataset_id,2), + (732,0.000034253,'1980-01-01','2000-12-31',2,dataset_id,2), + (894,0.000616867,'1980-01-01','2000-12-31',2,dataset_id,2), + (716,0.053320940,'1980-01-01','2000-12-31',2,dataset_id,2), + (620,0.890744103,'1980-01-01','2000-12-31',2,dataset_id,2), + (4,0.650757566,'1980-01-01','2000-12-31',2,dataset_id,2), + (50,0.486074791,'1980-01-01','2000-12-31',2,dataset_id,2), + (64,27.790594370,'1980-01-01','2000-12-31',2,dataset_id,2), + (104,3.214014944,'1980-01-01','2000-12-31',2,dataset_id,2), + (116,0.470605087,'1980-01-01','2000-12-31',2,dataset_id,2), + (156,7.534300561,'1980-01-01','2000-12-31',2,dataset_id,2), + (356,2.433735154,'1980-01-01','2000-12-31',2,dataset_id,2), + (392,46.009780390,'1980-01-01','2000-12-31',2,dataset_id,2), + (398,1.897396308,'1980-01-01','2000-12-31',2,dataset_id,2), + (417,16.723647910,'1980-01-01','2000-12-31',2,dataset_id,2), + (418,2.043144129,'1980-01-01','2000-12-31',2,dataset_id,2), + (496,1.395017330,'1980-01-01','2000-12-31',2,dataset_id,2), + (524,10.305301420,'1980-01-01','2000-12-31',2,dataset_id,2), + (408,12.552613620,'1980-01-01','2000-12-31',2,dataset_id,2), + (586,2.547840930,'1980-01-01','2000-12-31',2,dataset_id,2), + (643,10.957137440,'1980-01-01','2000-12-31',2,dataset_id,2), + (410,14.633238880,'1980-01-01','2000-12-31',2,dataset_id,2), + (144,18.097730120,'1980-01-01','2000-12-31',2,dataset_id,2), + (158,63.459829130,'1980-01-01','2000-12-31',2,dataset_id,2), + (762,6.940408791,'1980-01-01','2000-12-31',2,dataset_id,2), + (764,1.616751689,'1980-01-01','2000-12-31',2,dataset_id,2), + (795,0.020908796,'1980-01-01','2000-12-31',2,dataset_id,2), + (860,0.329497263,'1980-01-01','2000-12-31',2,dataset_id,2), + (704,9.843107676,'1980-01-01','2000-12-31',2,dataset_id,2), + (8,5.073984273,'1980-01-01','2000-12-31',2,dataset_id,2), + (51,12.635776160,'1980-01-01','2000-12-31',2,dataset_id,2), + (40,44.465063280,'1980-01-01','2000-12-31',2,dataset_id,2), + (31,6.046985859,'1980-01-01','2000-12-31',2,dataset_id,2), + (112,12.915054310,'1980-01-01','2000-12-31',2,dataset_id,2), + (56,19.063196690,'1980-01-01','2000-12-31',2,dataset_id,2), + (70,16.070812990,'1980-01-01','2000-12-31',2,dataset_id,2), + (100,7.700493199,'1980-01-01','2000-12-31',2,dataset_id,2), + (191,11.921542960,'1980-01-01','2000-12-31',2,dataset_id,2), + (196,0.001027925,'1980-01-01','2000-12-31',2,dataset_id,2), + (203,20.016209150,'1980-01-01','2000-12-31',2,dataset_id,2), + (208,20.026650640,'1980-01-01','2000-12-31',2,dataset_id,2), + (233,12.968755870,'1980-01-01','2000-12-31',2,dataset_id,2), + (246,12.309000630,'1980-01-01','2000-12-31',2,dataset_id,2), + (250,13.338990360,'1980-01-01','2000-12-31',2,dataset_id,2), + (275,0.001389259,'1980-01-01','2000-12-31',2,dataset_id,2), + (268,38.782048830,'1980-01-01','2000-12-31',2,dataset_id,2), + (276,21.131531940,'1980-01-01','2000-12-31',2,dataset_id,2), + (300,1.233310650,'1980-01-01','2000-12-31',2,dataset_id,2), + (348,8.809684501,'1980-01-01','2000-12-31',2,dataset_id,2), + (352,41.553685720,'1980-01-01','2000-12-31',2,dataset_id,2), + (364,0.461124860,'1980-01-01','2000-12-31',2,dataset_id,2), + (368,0.000277373,'1980-01-01','2000-12-31',2,dataset_id,2), + (372,30.930949010,'1980-01-01','2000-12-31',2,dataset_id,2), + (376,0.001404872,'1980-01-01','2000-12-31',2,dataset_id,2), + (380,11.139565330,'1980-01-01','2000-12-31',2,dataset_id,2), + (400,0.000011910,'1980-01-01','2000-12-31',2,dataset_id,2), + (414,0.000000302,'1980-01-01','2000-12-31',2,dataset_id,2), + (428,15.276827640,'1980-01-01','2000-12-31',2,dataset_id,2), + (422,0.002351030,'1980-01-01','2000-12-31',2,dataset_id,2), + (440,14.619474790,'1980-01-01','2000-12-31',2,dataset_id,2), + (442,16.656004190,'1980-01-01','2000-12-31',2,dataset_id,2), + (807,3.770080139,'1980-01-01','2000-12-31',2,dataset_id,2), + (498,10.273338970,'1980-01-01','2000-12-31',2,dataset_id,2), + (499,13.178988740,'1980-01-01','2000-12-31',2,dataset_id,2), + (528,19.807425070,'1980-01-01','2000-12-31',2,dataset_id,2), + (578,39.760881150,'1980-01-01','2000-12-31',2,dataset_id,2), + (512,0.000965280,'1980-01-01','2000-12-31',2,dataset_id,2), + (616,14.878519390,'1980-01-01','2000-12-31',2,dataset_id,2), + (634,0.000000349,'1980-01-01','2000-12-31',2,dataset_id,2), + (642,16.075407000,'1980-01-01','2000-12-31',2,dataset_id,2), + (682,0.004923205,'1980-01-01','2000-12-31',2,dataset_id,2), + (688,9.623617426,'1980-01-01','2000-12-31',2,dataset_id,2), + (703,20.889775640,'1980-01-01','2000-12-31',2,dataset_id,2), + (705,30.286683400,'1980-01-01','2000-12-31',2,dataset_id,2), + (724,3.640801339,'1980-01-01','2000-12-31',2,dataset_id,2), + (752,15.909942800,'1980-01-01','2000-12-31',2,dataset_id,2), + (756,73.647033470,'1980-01-01','2000-12-31',2,dataset_id,2), + (760,0.002543983,'1980-01-01','2000-12-31',2,dataset_id,2), + (792,3.269159249,'1980-01-01','2000-12-31',2,dataset_id,2), + (804,11.192108470,'1980-01-01','2000-12-31',2,dataset_id,2), + (784,0.000034673,'1980-01-01','2000-12-31',2,dataset_id,2), + (826,25.698531040,'1980-01-01','2000-12-31',2,dataset_id,2), + (887,0.114041418,'1980-01-01','2000-12-31',2,dataset_id,2), + (84,13.528246320,'1980-01-01','2000-12-31',2,dataset_id,2), + (124,14.039201500,'1980-01-01','2000-12-31',2,dataset_id,2), + (170,86.043601560,'1980-01-01','2000-12-31',2,dataset_id,2), + (188,29.759462200,'1980-01-01','2000-12-31',2,dataset_id,2), + (192,5.628426600,'1980-01-01','2000-12-31',2,dataset_id,2), + (214,10.125924710,'1980-01-01','2000-12-31',2,dataset_id,2), + (222,0.043386253,'1980-01-01','2000-12-31',2,dataset_id,2), + (304,14.786057660,'1980-01-01','2000-12-31',2,dataset_id,2), + (320,9.773850652,'1980-01-01','2000-12-31',2,dataset_id,2), + (332,5.167709829,'1980-01-01','2000-12-31',2,dataset_id,2), + (340,6.451009858,'1980-01-01','2000-12-31',2,dataset_id,2), + (388,9.501387493,'1980-01-01','2000-12-31',2,dataset_id,2), + (484,2.029436710,'1980-01-01','2000-12-31',2,dataset_id,2), + (558,4.996656272,'1980-01-01','2000-12-31',2,dataset_id,2), + (591,32.355887820,'1980-01-01','2000-12-31',2,dataset_id,2), + (630,10.260178570,'1980-01-01','2000-12-31',2,dataset_id,2), + (44,24.332986630,'1980-01-01','2000-12-31',2,dataset_id,2), + (840,12.188570870,'1980-01-01','2000-12-31',2,dataset_id,2), + (10,7.512502715,'1980-01-01','2000-12-31',2,dataset_id,2), + (36,1.147373752,'1980-01-01','2000-12-31',2,dataset_id,2), + (96,103.765717100,'1980-01-01','2000-12-31',2,dataset_id,2), + (242,45.773260880,'1980-01-01','2000-12-31',2,dataset_id,2), + (360,95.464870750,'1980-01-01','2000-12-31',2,dataset_id,2), + (458,84.910575300,'1980-01-01','2000-12-31',2,dataset_id,2), + (540,20.260936220,'1980-01-01','2000-12-31',2,dataset_id,2), + (554,60.487037190,'1980-01-01','2000-12-31',2,dataset_id,2), + (598,142.888105900,'1980-01-01','2000-12-31',2,dataset_id,2), + (608,47.880073030,'1980-01-01','2000-12-31',2,dataset_id,2), + (90,173.679425700,'1980-01-01','2000-12-31',2,dataset_id,2), + (626,1.981170898,'1980-01-01','2000-12-31',2,dataset_id,2), + (548,57.990276430,'1980-01-01','2000-12-31',2,dataset_id,2), + (32,8.463728539,'1980-01-01','2000-12-31',2,dataset_id,2), + (68,8.906216611,'1980-01-01','2000-12-31',2,dataset_id,2), + (76,17.286964250,'1980-01-01','2000-12-31',2,dataset_id,2), + (152,59.336433790,'1980-01-01','2000-12-31',2,dataset_id,2), + (218,101.079982800,'1980-01-01','2000-12-31',2,dataset_id,2), + (238,18.281859330,'1980-01-01','2000-12-31',2,dataset_id,2), + (328,23.757792000,'1980-01-01','2000-12-31',2,dataset_id,2), + (740,8.567369768,'1980-01-01','2000-12-31',2,dataset_id,2), + (600,27.651081100,'1980-01-01','2000-12-31',2,dataset_id,2), + (604,41.666468650,'1980-01-01','2000-12-31',2,dataset_id,2), + (780,12.144669220,'1980-01-01','2000-12-31',2,dataset_id,2), + (858,25.326568850,'1980-01-01','2000-12-31',2,dataset_id,2), + (862,24.344409010,'1980-01-01','2000-12-31',2,dataset_id,2), + (12,0.004087770,'1980-01-01','2022-12-31',2,dataset_id,2), + (24,0.001326163,'1980-01-01','2022-12-31',2,dataset_id,2), + (204,0.390072181,'1980-01-01','2022-12-31',2,dataset_id,2), + (72,0.005069737,'1980-01-01','2022-12-31',2,dataset_id,2), + (854,0.001471481,'1980-01-01','2022-12-31',2,dataset_id,2), + (108,4.453437330,'1980-01-01','2022-12-31',2,dataset_id,2), + (120,7.454646137,'1980-01-01','2022-12-31',2,dataset_id,2), + (140,0.326111317,'1980-01-01','2022-12-31',2,dataset_id,2), + (148,0.000004579,'1980-01-01','2022-12-31',2,dataset_id,2), + (818,0.000001578,'1980-01-01','2022-12-31',2,dataset_id,2), + (566,1.420104210,'1980-01-01','2022-12-31',2,dataset_id,2), + (178,8.452799774,'1980-01-01','2022-12-31',2,dataset_id,2), + (180,9.452129000,'1980-01-01','2022-12-31',2,dataset_id,2), + (384,4.171202291,'1980-01-01','2022-12-31',2,dataset_id,2), + (262,0.012956734,'1980-01-01','2022-12-31',2,dataset_id,2), + (226,70.431521740,'1980-01-01','2022-12-31',2,dataset_id,2), + (232,0.087449367,'1980-01-01','2022-12-31',2,dataset_id,2), + (231,1.378504188,'1980-01-01','2022-12-31',2,dataset_id,2), + (260,91.263245720,'1980-01-01','2022-12-31',2,dataset_id,2), + (266,9.811690644,'1980-01-01','2022-12-31',2,dataset_id,2), + (288,2.401270397,'1980-01-01','2022-12-31',2,dataset_id,2), + (324,0.248957853,'1980-01-01','2022-12-31',2,dataset_id,2), + (624,0.000036590,'1980-01-01','2022-12-31',2,dataset_id,2), + (404,3.583074450,'1980-01-01','2022-12-31',2,dataset_id,2), + (426,3.133388227,'1980-01-01','2022-12-31',2,dataset_id,2), + (430,18.163249560,'1980-01-01','2022-12-31',2,dataset_id,2), + (434,0.000022150,'1980-01-01','2022-12-31',2,dataset_id,2), + (450,6.359103069,'1980-01-01','2022-12-31',2,dataset_id,2), + (454,0.437550194,'1980-01-01','2022-12-31',2,dataset_id,2), + (466,0.000152316,'1980-01-01','2022-12-31',2,dataset_id,2), + (478,0.000040850,'1980-01-01','2022-12-31',2,dataset_id,2), + (504,0.059351408,'1980-01-01','2022-12-31',2,dataset_id,2), + (508,0.300771526,'1980-01-01','2022-12-31',2,dataset_id,2), + (516,0.004182967,'1980-01-01','2022-12-31',2,dataset_id,2), + (562,0.000000619,'1980-01-01','2022-12-31',2,dataset_id,2), + (646,2.495010677,'1980-01-01','2022-12-31',2,dataset_id,2), + (686,0.000007316,'1980-01-01','2022-12-31',2,dataset_id,2), + (694,2.030606551,'1980-01-01','2022-12-31',2,dataset_id,2), + (706,0.009133929,'1980-01-01','2022-12-31',2,dataset_id,2), + (729,0.000192604,'1980-01-01','2022-12-31',2,dataset_id,2), + (834,1.244827635,'1980-01-01','2022-12-31',2,dataset_id,2), + (710,1.382780218,'1980-01-01','2022-12-31',2,dataset_id,2), + (728,0.091625717,'1980-01-01','2022-12-31',2,dataset_id,2), + (748,1.373205135,'1980-01-01','2022-12-31',2,dataset_id,2), + (270,0.000002658,'1980-01-01','2022-12-31',2,dataset_id,2), + (768,0.685249301,'1980-01-01','2022-12-31',2,dataset_id,2), + (788,0.009277049,'1980-01-01','2022-12-31',2,dataset_id,2), + (800,17.613293940,'1980-01-01','2022-12-31',2,dataset_id,2), + (732,0.000065125,'1980-01-01','2022-12-31',2,dataset_id,2), + (894,0.000527947,'1980-01-01','2022-12-31',2,dataset_id,2), + (716,0.037075789,'1980-01-01','2022-12-31',2,dataset_id,2), + (620,0.765650006,'1980-01-01','2022-12-31',2,dataset_id,2), + (4,0.646750489,'1980-01-01','2022-12-31',2,dataset_id,2), + (50,0.463976865,'1980-01-01','2022-12-31',2,dataset_id,2), + (64,26.853386820,'1980-01-01','2022-12-31',2,dataset_id,2), + (104,2.867011952,'1980-01-01','2022-12-31',2,dataset_id,2), + (116,0.904776281,'1980-01-01','2022-12-31',2,dataset_id,2), + (156,7.770429668,'1980-01-01','2022-12-31',2,dataset_id,2), + (356,2.448204224,'1980-01-01','2022-12-31',2,dataset_id,2), + (392,54.368245990,'1980-01-01','2022-12-31',2,dataset_id,2), + (398,1.864490276,'1980-01-01','2022-12-31',2,dataset_id,2), + (417,17.311123650,'1980-01-01','2022-12-31',2,dataset_id,2), + (418,2.772870605,'1980-01-01','2022-12-31',2,dataset_id,2), + (496,1.384647783,'1980-01-01','2022-12-31',2,dataset_id,2), + (524,9.389999276,'1980-01-01','2022-12-31',2,dataset_id,2), + (408,13.531533180,'1980-01-01','2022-12-31',2,dataset_id,2), + (586,2.534469806,'1980-01-01','2022-12-31',2,dataset_id,2), + (643,11.338322670,'1980-01-01','2022-12-31',2,dataset_id,2), + (410,15.395988040,'1980-01-01','2022-12-31',2,dataset_id,2), + (144,20.161351600,'1980-01-01','2022-12-31',2,dataset_id,2), + (158,69.786738140,'1980-01-01','2022-12-31',2,dataset_id,2), + (762,6.165822143,'1980-01-01','2022-12-31',2,dataset_id,2), + (764,2.585265958,'1980-01-01','2022-12-31',2,dataset_id,2), + (795,0.015105022,'1980-01-01','2022-12-31',2,dataset_id,2), + (860,0.359486646,'1980-01-01','2022-12-31',2,dataset_id,2), + (704,12.196289810,'1980-01-01','2022-12-31',2,dataset_id,2), + (8,4.891162084,'1980-01-01','2022-12-31',2,dataset_id,2), + (51,12.876802280,'1980-01-01','2022-12-31',2,dataset_id,2), + (40,43.825634920,'1980-01-01','2022-12-31',2,dataset_id,2), + (31,5.594491164,'1980-01-01','2022-12-31',2,dataset_id,2), + (112,14.315777340,'1980-01-01','2022-12-31',2,dataset_id,2), + (56,23.220246870,'1980-01-01','2022-12-31',2,dataset_id,2), + (70,16.753198020,'1980-01-01','2022-12-31',2,dataset_id,2), + (100,8.311119800,'1980-01-01','2022-12-31',2,dataset_id,2), + (191,12.877478660,'1980-01-01','2022-12-31',2,dataset_id,2), + (196,0.001118714,'1980-01-01','2022-12-31',2,dataset_id,2), + (203,17.751574630,'1980-01-01','2022-12-31',2,dataset_id,2), + (208,20.375925040,'1980-01-01','2022-12-31',2,dataset_id,2), + (233,13.267063550,'1980-01-01','2022-12-31',2,dataset_id,2), + (246,14.430067020,'1980-01-01','2022-12-31',2,dataset_id,2), + (250,14.069549230,'1980-01-01','2022-12-31',2,dataset_id,2), + (275,0.001142228,'1980-01-01','2022-12-31',2,dataset_id,2), + (268,36.291349550,'1980-01-01','2022-12-31',2,dataset_id,2), + (276,21.839688830,'1980-01-01','2022-12-31',2,dataset_id,2), + (300,1.763824370,'1980-01-01','2022-12-31',2,dataset_id,2), + (348,10.108836310,'1980-01-01','2022-12-31',2,dataset_id,2), + (352,41.659012260,'1980-01-01','2022-12-31',2,dataset_id,2), + (364,0.533957899,'1980-01-01','2022-12-31',2,dataset_id,2), + (368,0.000271663,'1980-01-01','2022-12-31',2,dataset_id,2), + (372,37.136087190,'1980-01-01','2022-12-31',2,dataset_id,2), + (376,0.001326980,'1980-01-01','2022-12-31',2,dataset_id,2), + (380,13.518002250,'1980-01-01','2022-12-31',2,dataset_id,2), + (400,0.000010074,'1980-01-01','2022-12-31',2,dataset_id,2), + (414,0.000000664,'1980-01-01','2022-12-31',2,dataset_id,2), + (428,14.593769670,'1980-01-01','2022-12-31',2,dataset_id,2), + (422,0.002868895,'1980-01-01','2022-12-31',2,dataset_id,2), + (440,14.365630300,'1980-01-01','2022-12-31',2,dataset_id,2), + (442,22.414186690,'1980-01-01','2022-12-31',2,dataset_id,2), + (807,4.396857805,'1980-01-01','2022-12-31',2,dataset_id,2), + (498,8.379466623,'1980-01-01','2022-12-31',2,dataset_id,2), + (499,13.428228020,'1980-01-01','2022-12-31',2,dataset_id,2), + (528,20.708151090,'1980-01-01','2022-12-31',2,dataset_id,2), + (578,44.517553690,'1980-01-01','2022-12-31',2,dataset_id,2), + (512,0.001714747,'1980-01-01','2022-12-31',2,dataset_id,2), + (616,15.317047230,'1980-01-01','2022-12-31',2,dataset_id,2), + (634,0.000000159,'1980-01-01','2022-12-31',2,dataset_id,2), + (642,16.293117080,'1980-01-01','2022-12-31',2,dataset_id,2), + (682,0.006301515,'1980-01-01','2022-12-31',2,dataset_id,2), + (688,10.304500700,'1980-01-01','2022-12-31',2,dataset_id,2), + (703,20.221541320,'1980-01-01','2022-12-31',2,dataset_id,2), + (705,32.441536690,'1980-01-01','2022-12-31',2,dataset_id,2), + (724,3.074142581,'1980-01-01','2022-12-31',2,dataset_id,2), + (752,18.482474970,'1980-01-01','2022-12-31',2,dataset_id,2), + (756,71.131615550,'1980-01-01','2022-12-31',2,dataset_id,2), + (760,0.002635980,'1980-01-01','2022-12-31',2,dataset_id,2), + (792,3.127217757,'1980-01-01','2022-12-31',2,dataset_id,2), + (804,10.148212920,'1980-01-01','2022-12-31',2,dataset_id,2), + (784,0.000053045,'1980-01-01','2022-12-31',2,dataset_id,2), + (826,32.178590520,'1980-01-01','2022-12-31',2,dataset_id,2), + (887,0.125085367,'1980-01-01','2022-12-31',2,dataset_id,2), + (84,12.325125820,'1980-01-01','2022-12-31',2,dataset_id,2), + (124,14.366062740,'1980-01-01','2022-12-31',2,dataset_id,2), + (170,83.828421620,'1980-01-01','2022-12-31',2,dataset_id,2), + (188,32.536372720,'1980-01-01','2022-12-31',2,dataset_id,2), + (192,5.637031706,'1980-01-01','2022-12-31',2,dataset_id,2), + (214,9.558787907,'1980-01-01','2022-12-31',2,dataset_id,2), + (222,0.041377840,'1980-01-01','2022-12-31',2,dataset_id,2), + (304,14.247451500,'1980-01-01','2022-12-31',2,dataset_id,2), + (320,8.889110512,'1980-01-01','2022-12-31',2,dataset_id,2), + (332,4.872498294,'1980-01-01','2022-12-31',2,dataset_id,2), + (340,7.245206711,'1980-01-01','2022-12-31',2,dataset_id,2), + (388,10.452721910,'1980-01-01','2022-12-31',2,dataset_id,2), + (484,1.989576876,'1980-01-01','2022-12-31',2,dataset_id,2), + (558,7.377569488,'1980-01-01','2022-12-31',2,dataset_id,2), + (591,34.879163260,'1980-01-01','2022-12-31',2,dataset_id,2), + (630,11.024864980,'1980-01-01','2022-12-31',2,dataset_id,2), + (44,22.664117300,'1980-01-01','2022-12-31',2,dataset_id,2), + (840,13.004586050,'1980-01-01','2022-12-31',2,dataset_id,2), + (10,7.834396800,'1980-01-01','2022-12-31',2,dataset_id,2), + (36,1.340938589,'1980-01-01','2022-12-31',2,dataset_id,2), + (96,114.334196800,'1980-01-01','2022-12-31',2,dataset_id,2), + (242,45.003322400,'1980-01-01','2022-12-31',2,dataset_id,2), + (360,101.835909800,'1980-01-01','2022-12-31',2,dataset_id,2), + (458,91.000311750,'1980-01-01','2022-12-31',2,dataset_id,2), + (540,25.851718240,'1980-01-01','2022-12-31',2,dataset_id,2), + (554,61.555759400,'1980-01-01','2022-12-31',2,dataset_id,2), + (598,163.015726600,'1980-01-01','2022-12-31',2,dataset_id,2), + (608,56.950235030,'1980-01-01','2022-12-31',2,dataset_id,2), + (90,211.374915000,'1980-01-01','2022-12-31',2,dataset_id,2), + (626,2.269700986,'1980-01-01','2022-12-31',2,dataset_id,2), + (548,66.789887200,'1980-01-01','2022-12-31',2,dataset_id,2), + (32,7.980547721,'1980-01-01','2022-12-31',2,dataset_id,2), + (68,7.872893271,'1980-01-01','2022-12-31',2,dataset_id,2), + (76,14.961254510,'1980-01-01','2022-12-31',2,dataset_id,2), + (152,60.803263390,'1980-01-01','2022-12-31',2,dataset_id,2), + (218,96.418562020,'1980-01-01','2022-12-31',2,dataset_id,2), + (238,20.729297150,'1980-01-01','2022-12-31',2,dataset_id,2), + (328,25.592968980,'1980-01-01','2022-12-31',2,dataset_id,2), + (740,10.193614430,'1980-01-01','2022-12-31',2,dataset_id,2), + (600,21.494823750,'1980-01-01','2022-12-31',2,dataset_id,2), + (604,36.353436140,'1980-01-01','2022-12-31',2,dataset_id,2), + (780,15.605830850,'1980-01-01','2022-12-31',2,dataset_id,2), + (858,26.135195220,'1980-01-01','2022-12-31',2,dataset_id,2), + (862,24.889288390,'1980-01-01','2022-12-31',2,dataset_id,2); +end $$; \ No newline at end of file diff --git a/backend/migrations/20240815121427_add-merra-era-ht-projection-data.sql b/backend/migrations/20240815121427_add-merra-era-ht-projection-data.sql new file mode 100644 index 00000000..42c2af1c --- /dev/null +++ b/backend/migrations/20240815121427_add-merra-era-ht-projection-data.sql @@ -0,0 +1,1053 @@ +do $$ +DECLARE + dataset_id int; +BEGIN + SELECT id INTO dataset_id FROM dataset WHERE short_name = 'ht_MERRA2_ERA5'; + + INSERT INTO data (id,value,start_date,end_date,source,dataset,geography_type) + VALUES + (12,35.814303990,'2001-01-01','2022-12-31',1,dataset_id,2), + (24,28.031167760,'2001-01-01','2022-12-31',1,dataset_id,2), + (204,31.365040370,'2001-01-01','2022-12-31',1,dataset_id,2), + (72,30.029697520,'2001-01-01','2022-12-31',1,dataset_id,2), + (854,33.943372380,'2001-01-01','2022-12-31',1,dataset_id,2), + (108,23.577152440,'2001-01-01','2022-12-31',1,dataset_id,2), + (120,28.670356670,'2001-01-01','2022-12-31',1,dataset_id,2), + (140,31.763962960,'2001-01-01','2022-12-31',1,dataset_id,2), + (148,34.314762980,'2001-01-01','2022-12-31',1,dataset_id,2), + (818,32.598742520,'2001-01-01','2022-12-31',1,dataset_id,2), + (566,31.282610040,'2001-01-01','2022-12-31',1,dataset_id,2), + (178,28.549018750,'2001-01-01','2022-12-31',1,dataset_id,2), + (180,28.414599760,'2001-01-01','2022-12-31',1,dataset_id,2), + (384,29.983279230,'2001-01-01','2022-12-31',1,dataset_id,2), + (262,34.879746050,'2001-01-01','2022-12-31',1,dataset_id,2), + (226,26.649472640,'2001-01-01','2022-12-31',1,dataset_id,2), + (232,32.956924570,'2001-01-01','2022-12-31',1,dataset_id,2), + (231,27.811659980,'2001-01-01','2022-12-31',1,dataset_id,2), + (260,7.009351054,'2001-01-01','2022-12-31',1,dataset_id,2), + (266,27.344589500,'2001-01-01','2022-12-31',1,dataset_id,2), + (288,30.793394400,'2001-01-01','2022-12-31',1,dataset_id,2), + (324,31.084263960,'2001-01-01','2022-12-31',1,dataset_id,2), + (624,31.703338340,'2001-01-01','2022-12-31',1,dataset_id,2), + (404,28.925004210,'2001-01-01','2022-12-31',1,dataset_id,2), + (426,20.606812070,'2001-01-01','2022-12-31',1,dataset_id,2), + (430,28.747455230,'2001-01-01','2022-12-31',1,dataset_id,2), + (434,32.531629730,'2001-01-01','2022-12-31',1,dataset_id,2), + (450,26.861186570,'2001-01-01','2022-12-31',1,dataset_id,2), + (454,27.962958580,'2001-01-01','2022-12-31',1,dataset_id,2), + (466,36.501218610,'2001-01-01','2022-12-31',1,dataset_id,2), + (478,36.177057170,'2001-01-01','2022-12-31',1,dataset_id,2), + (504,30.739547280,'2001-01-01','2022-12-31',1,dataset_id,2), + (508,29.652268780,'2001-01-01','2022-12-31',1,dataset_id,2), + (516,28.536759940,'2001-01-01','2022-12-31',1,dataset_id,2), + (562,35.108788960,'2001-01-01','2022-12-31',1,dataset_id,2), + (646,21.979244410,'2001-01-01','2022-12-31',1,dataset_id,2), + (686,33.659308090,'2001-01-01','2022-12-31',1,dataset_id,2), + (694,30.265052260,'2001-01-01','2022-12-31',1,dataset_id,2), + (706,30.890438730,'2001-01-01','2022-12-31',1,dataset_id,2), + (729,34.543793700,'2001-01-01','2022-12-31',1,dataset_id,2), + (834,26.596924260,'2001-01-01','2022-12-31',1,dataset_id,2), + (710,26.035369170,'2001-01-01','2022-12-31',1,dataset_id,2), + (728,33.351591910,'2001-01-01','2022-12-31',1,dataset_id,2), + (748,25.834180090,'2001-01-01','2022-12-31',1,dataset_id,2), + (270,32.088698780,'2001-01-01','2022-12-31',1,dataset_id,2), + (768,30.420946310,'2001-01-01','2022-12-31',1,dataset_id,2), + (788,32.604034850,'2001-01-01','2022-12-31',1,dataset_id,2), + (800,27.290181740,'2001-01-01','2022-12-31',1,dataset_id,2), + (732,32.234860970,'2001-01-01','2022-12-31',1,dataset_id,2), + (894,28.420049850,'2001-01-01','2022-12-31',1,dataset_id,2), + (716,27.907181050,'2001-01-01','2022-12-31',1,dataset_id,2), + (620,26.241994280,'2001-01-01','2022-12-31',1,dataset_id,2), + (4,26.995577300,'2001-01-01','2022-12-31',1,dataset_id,2), + (50,31.602496880,'2001-01-01','2022-12-31',1,dataset_id,2), + (64,17.225873070,'2001-01-01','2022-12-31',1,dataset_id,2), + (104,30.130696380,'2001-01-01','2022-12-31',1,dataset_id,2), + (116,32.612527830,'2001-01-01','2022-12-31',1,dataset_id,2), + (156,22.421676520,'2001-01-01','2022-12-31',1,dataset_id,2), + (356,33.103342050,'2001-01-01','2022-12-31',1,dataset_id,2), + (392,25.386484770,'2001-01-01','2022-12-31',1,dataset_id,2), + (398,27.584040190,'2001-01-01','2022-12-31',1,dataset_id,2), + (417,17.954514190,'2001-01-01','2022-12-31',1,dataset_id,2), + (418,29.617839130,'2001-01-01','2022-12-31',1,dataset_id,2), + (496,22.199473290,'2001-01-01','2022-12-31',1,dataset_id,2), + (524,22.393355680,'2001-01-01','2022-12-31',1,dataset_id,2), + (408,23.481541370,'2001-01-01','2022-12-31',1,dataset_id,2), + (586,32.610823270,'2001-01-01','2022-12-31',1,dataset_id,2), + (643,19.146402940,'2001-01-01','2022-12-31',1,dataset_id,2), + (410,26.578453950,'2001-01-01','2022-12-31',1,dataset_id,2), + (144,29.495646260,'2001-01-01','2022-12-31',1,dataset_id,2), + (158,27.161804800,'2001-01-01','2022-12-31',1,dataset_id,2), + (762,17.586055830,'2001-01-01','2022-12-31',1,dataset_id,2), + (764,31.909555020,'2001-01-01','2022-12-31',1,dataset_id,2), + (795,34.208308170,'2001-01-01','2022-12-31',1,dataset_id,2), + (860,31.898680330,'2001-01-01','2022-12-31',1,dataset_id,2), + (704,29.173789480,'2001-01-01','2022-12-31',1,dataset_id,2), + (8,26.420439180,'2001-01-01','2022-12-31',1,dataset_id,2), + (51,23.304375250,'2001-01-01','2022-12-31',1,dataset_id,2), + (40,20.116016050,'2001-01-01','2022-12-31',1,dataset_id,2), + (31,28.271062020,'2001-01-01','2022-12-31',1,dataset_id,2), + (112,22.735358640,'2001-01-01','2022-12-31',1,dataset_id,2), + (56,21.835785570,'2001-01-01','2022-12-31',1,dataset_id,2), + (70,23.629159490,'2001-01-01','2022-12-31',1,dataset_id,2), + (100,26.676857300,'2001-01-01','2022-12-31',1,dataset_id,2), + (191,25.627511960,'2001-01-01','2022-12-31',1,dataset_id,2), + (196,30.391970440,'2001-01-01','2022-12-31',1,dataset_id,2), + (203,22.487459410,'2001-01-01','2022-12-31',1,dataset_id,2), + (208,19.771058370,'2001-01-01','2022-12-31',1,dataset_id,2), + (233,21.850448300,'2001-01-01','2022-12-31',1,dataset_id,2), + (246,19.681715510,'2001-01-01','2022-12-31',1,dataset_id,2), + (250,24.152573140,'2001-01-01','2022-12-31',1,dataset_id,2), + (275,28.792477320,'2001-01-01','2022-12-31',1,dataset_id,2), + (268,23.670628070,'2001-01-01','2022-12-31',1,dataset_id,2), + (276,22.417063770,'2001-01-01','2022-12-31',1,dataset_id,2), + (300,28.214725930,'2001-01-01','2022-12-31',1,dataset_id,2), + (348,25.634917430,'2001-01-01','2022-12-31',1,dataset_id,2), + (352,9.501641690,'2001-01-01','2022-12-31',1,dataset_id,2), + (364,31.684370750,'2001-01-01','2022-12-31',1,dataset_id,2), + (368,37.450665380,'2001-01-01','2022-12-31',1,dataset_id,2), + (372,17.113841600,'2001-01-01','2022-12-31',1,dataset_id,2), + (376,29.239161820,'2001-01-01','2022-12-31',1,dataset_id,2), + (380,26.473922690,'2001-01-01','2022-12-31',1,dataset_id,2), + (400,31.255019050,'2001-01-01','2022-12-31',1,dataset_id,2), + (414,39.806546230,'2001-01-01','2022-12-31',1,dataset_id,2), + (428,21.763735410,'2001-01-01','2022-12-31',1,dataset_id,2), + (422,27.994090210,'2001-01-01','2022-12-31',1,dataset_id,2), + (440,21.547047350,'2001-01-01','2022-12-31',1,dataset_id,2), + (442,22.651112220,'2001-01-01','2022-12-31',1,dataset_id,2), + (807,26.053624870,'2001-01-01','2022-12-31',1,dataset_id,2), + (498,26.863772390,'2001-01-01','2022-12-31',1,dataset_id,2), + (499,22.764756750,'2001-01-01','2022-12-31',1,dataset_id,2), + (528,21.349157190,'2001-01-01','2022-12-31',1,dataset_id,2), + (578,16.221152420,'2001-01-01','2022-12-31',1,dataset_id,2), + (512,35.984781810,'2001-01-01','2022-12-31',1,dataset_id,2), + (616,23.255785230,'2001-01-01','2022-12-31',1,dataset_id,2), + (634,37.492228170,'2001-01-01','2022-12-31',1,dataset_id,2), + (642,25.481897990,'2001-01-01','2022-12-31',1,dataset_id,2), + (682,36.550073170,'2001-01-01','2022-12-31',1,dataset_id,2), + (688,25.716785760,'2001-01-01','2022-12-31',1,dataset_id,2), + (703,22.473174860,'2001-01-01','2022-12-31',1,dataset_id,2), + (705,23.639522760,'2001-01-01','2022-12-31',1,dataset_id,2), + (724,26.775402890,'2001-01-01','2022-12-31',1,dataset_id,2), + (752,18.865369710,'2001-01-01','2022-12-31',1,dataset_id,2), + (756,18.877227250,'2001-01-01','2022-12-31',1,dataset_id,2), + (760,32.266129160,'2001-01-01','2022-12-31',1,dataset_id,2), + (792,26.110601570,'2001-01-01','2022-12-31',1,dataset_id,2), + (804,25.435284980,'2001-01-01','2022-12-31',1,dataset_id,2), + (784,38.470651760,'2001-01-01','2022-12-31',1,dataset_id,2), + (826,17.604480820,'2001-01-01','2022-12-31',1,dataset_id,2), + (887,32.665107210,'2001-01-01','2022-12-31',1,dataset_id,2), + (84,29.278181510,'2001-01-01','2022-12-31',1,dataset_id,2), + (124,15.852859200,'2001-01-01','2022-12-31',1,dataset_id,2), + (170,26.865786730,'2001-01-01','2022-12-31',1,dataset_id,2), + (188,26.878430090,'2001-01-01','2022-12-31',1,dataset_id,2), + (192,30.288726380,'2001-01-01','2022-12-31',1,dataset_id,2), + (214,27.946742860,'2001-01-01','2022-12-31',1,dataset_id,2), + (222,28.861212540,'2001-01-01','2022-12-31',1,dataset_id,2), + (304,-1.755079105,'2001-01-01','2022-12-31',1,dataset_id,2), + (320,27.395809870,'2001-01-01','2022-12-31',1,dataset_id,2), + (332,29.218936160,'2001-01-01','2022-12-31',1,dataset_id,2), + (340,28.052972710,'2001-01-01','2022-12-31',1,dataset_id,2), + (388,29.052381520,'2001-01-01','2022-12-31',1,dataset_id,2), + (484,27.885675290,'2001-01-01','2022-12-31',1,dataset_id,2), + (558,29.259292380,'2001-01-01','2022-12-31',1,dataset_id,2), + (591,27.903132800,'2001-01-01','2022-12-31',1,dataset_id,2), + (630,28.544908690,'2001-01-01','2022-12-31',1,dataset_id,2), + (44,29.510696720,'2001-01-01','2022-12-31',1,dataset_id,2), + (840,25.422316320,'2001-01-01','2022-12-31',1,dataset_id,2), + (10,-16.980105350,'2001-01-01','2022-12-31',1,dataset_id,2), + (36,32.537888770,'2001-01-01','2022-12-31',1,dataset_id,2), + (96,27.016584920,'2001-01-01','2022-12-31',1,dataset_id,2), + (242,28.513072240,'2001-01-01','2022-12-31',1,dataset_id,2), + (360,26.848497700,'2001-01-01','2022-12-31',1,dataset_id,2), + (458,26.945425470,'2001-01-01','2022-12-31',1,dataset_id,2), + (540,28.333560810,'2001-01-01','2022-12-31',1,dataset_id,2), + (554,18.445157520,'2001-01-01','2022-12-31',1,dataset_id,2), + (598,26.297549010,'2001-01-01','2022-12-31',1,dataset_id,2), + (608,28.830023340,'2001-01-01','2022-12-31',1,dataset_id,2), + (90,28.856998870,'2001-01-01','2022-12-31',1,dataset_id,2), + (626,29.312610250,'2001-01-01','2022-12-31',1,dataset_id,2), + (548,29.116724660,'2001-01-01','2022-12-31',1,dataset_id,2), + (32,24.419469490,'2001-01-01','2022-12-31',1,dataset_id,2), + (68,25.760488970,'2001-01-01','2022-12-31',1,dataset_id,2), + (76,30.249530520,'2001-01-01','2022-12-31',1,dataset_id,2), + (152,15.741302200,'2001-01-01','2022-12-31',1,dataset_id,2), + (218,23.635983650,'2001-01-01','2022-12-31',1,dataset_id,2), + (238,11.554514940,'2001-01-01','2022-12-31',1,dataset_id,2), + (328,29.642407250,'2001-01-01','2022-12-31',1,dataset_id,2), + (740,30.031598050,'2001-01-01','2022-12-31',1,dataset_id,2), + (600,32.310200430,'2001-01-01','2022-12-31',1,dataset_id,2), + (604,22.417364220,'2001-01-01','2022-12-31',1,dataset_id,2), + (780,28.794481770,'2001-01-01','2022-12-31',1,dataset_id,2), + (858,26.472203100,'2001-01-01','2022-12-31',1,dataset_id,2), + (862,30.152090040,'2001-01-01','2022-12-31',1,dataset_id,2), + (12,35.063669780,'1980-01-01','2000-12-31',1,dataset_id,2), + (24,27.360801330,'1980-01-01','2000-12-31',1,dataset_id,2), + (204,31.756765660,'1980-01-01','2000-12-31',1,dataset_id,2), + (72,30.164602490,'1980-01-01','2000-12-31',1,dataset_id,2), + (854,34.041075720,'1980-01-01','2000-12-31',1,dataset_id,2), + (108,24.024831650,'1980-01-01','2000-12-31',1,dataset_id,2), + (120,28.135241580,'1980-01-01','2000-12-31',1,dataset_id,2), + (140,31.188359330,'1980-01-01','2000-12-31',1,dataset_id,2), + (148,34.332607240,'1980-01-01','2000-12-31',1,dataset_id,2), + (818,31.548312110,'1980-01-01','2000-12-31',1,dataset_id,2), + (566,30.850769930,'1980-01-01','2000-12-31',1,dataset_id,2), + (178,28.196959500,'1980-01-01','2000-12-31',1,dataset_id,2), + (180,27.612240590,'1980-01-01','2000-12-31',1,dataset_id,2), + (384,30.350209790,'1980-01-01','2000-12-31',1,dataset_id,2), + (262,34.380221940,'1980-01-01','2000-12-31',1,dataset_id,2), + (226,25.716682890,'1980-01-01','2000-12-31',1,dataset_id,2), + (232,32.219577050,'1980-01-01','2000-12-31',1,dataset_id,2), + (231,27.350397320,'1980-01-01','2000-12-31',1,dataset_id,2), + (260,7.227569532,'1980-01-01','2000-12-31',1,dataset_id,2), + (266,26.265827650,'1980-01-01','2000-12-31',1,dataset_id,2), + (288,31.183092070,'1980-01-01','2000-12-31',1,dataset_id,2), + (324,30.161783060,'1980-01-01','2000-12-31',1,dataset_id,2), + (624,31.431535790,'1980-01-01','2000-12-31',1,dataset_id,2), + (404,28.118218550,'1980-01-01','2000-12-31',1,dataset_id,2), + (426,20.426924560,'1980-01-01','2000-12-31',1,dataset_id,2), + (430,28.341184150,'1980-01-01','2000-12-31',1,dataset_id,2), + (434,31.915154960,'1980-01-01','2000-12-31',1,dataset_id,2), + (450,26.304579310,'1980-01-01','2000-12-31',1,dataset_id,2), + (454,27.885035860,'1980-01-01','2000-12-31',1,dataset_id,2), + (466,36.030871810,'1980-01-01','2000-12-31',1,dataset_id,2), + (478,35.664688350,'1980-01-01','2000-12-31',1,dataset_id,2), + (504,30.013808240,'1980-01-01','2000-12-31',1,dataset_id,2), + (508,29.406647510,'1980-01-01','2000-12-31',1,dataset_id,2), + (516,28.898424900,'1980-01-01','2000-12-31',1,dataset_id,2), + (562,35.003160160,'1980-01-01','2000-12-31',1,dataset_id,2), + (646,22.954334720,'1980-01-01','2000-12-31',1,dataset_id,2), + (686,33.474081790,'1980-01-01','2000-12-31',1,dataset_id,2), + (694,28.876554860,'1980-01-01','2000-12-31',1,dataset_id,2), + (706,30.367116170,'1980-01-01','2000-12-31',1,dataset_id,2), + (729,34.123183200,'1980-01-01','2000-12-31',1,dataset_id,2), + (834,26.527130980,'1980-01-01','2000-12-31',1,dataset_id,2), + (710,26.007652840,'1980-01-01','2000-12-31',1,dataset_id,2), + (728,33.269255160,'1980-01-01','2000-12-31',1,dataset_id,2), + (748,25.667891810,'1980-01-01','2000-12-31',1,dataset_id,2), + (270,32.281584150,'1980-01-01','2000-12-31',1,dataset_id,2), + (768,30.740568230,'1980-01-01','2000-12-31',1,dataset_id,2), + (788,32.092644610,'1980-01-01','2000-12-31',1,dataset_id,2), + (800,27.416545980,'1980-01-01','2000-12-31',1,dataset_id,2), + (732,31.776933990,'1980-01-01','2000-12-31',1,dataset_id,2), + (894,28.196364410,'1980-01-01','2000-12-31',1,dataset_id,2), + (716,28.054497470,'1980-01-01','2000-12-31',1,dataset_id,2), + (620,26.124392620,'1980-01-01','2000-12-31',1,dataset_id,2), + (4,27.154610920,'1980-01-01','2000-12-31',1,dataset_id,2), + (50,32.351165550,'1980-01-01','2000-12-31',1,dataset_id,2), + (64,17.235479250,'1980-01-01','2000-12-31',1,dataset_id,2), + (104,29.863150200,'1980-01-01','2000-12-31',1,dataset_id,2), + (116,32.317277710,'1980-01-01','2000-12-31',1,dataset_id,2), + (156,22.049148490,'1980-01-01','2000-12-31',1,dataset_id,2), + (356,33.390455500,'1980-01-01','2000-12-31',1,dataset_id,2), + (392,25.512069710,'1980-01-01','2000-12-31',1,dataset_id,2), + (398,28.046526430,'1980-01-01','2000-12-31',1,dataset_id,2), + (417,18.189326700,'1980-01-01','2000-12-31',1,dataset_id,2), + (418,28.740186660,'1980-01-01','2000-12-31',1,dataset_id,2), + (496,21.797950990,'1980-01-01','2000-12-31',1,dataset_id,2), + (524,22.628150480,'1980-01-01','2000-12-31',1,dataset_id,2), + (408,23.951736200,'1980-01-01','2000-12-31',1,dataset_id,2), + (586,32.889966800,'1980-01-01','2000-12-31',1,dataset_id,2), + (643,18.737561630,'1980-01-01','2000-12-31',1,dataset_id,2), + (410,26.898734070,'1980-01-01','2000-12-31',1,dataset_id,2), + (144,30.178316410,'1980-01-01','2000-12-31',1,dataset_id,2), + (158,26.932564090,'1980-01-01','2000-12-31',1,dataset_id,2), + (762,18.142641960,'1980-01-01','2000-12-31',1,dataset_id,2), + (764,31.508801580,'1980-01-01','2000-12-31',1,dataset_id,2), + (795,34.304010800,'1980-01-01','2000-12-31',1,dataset_id,2), + (860,32.087913250,'1980-01-01','2000-12-31',1,dataset_id,2), + (704,29.180945030,'1980-01-01','2000-12-31',1,dataset_id,2), + (8,25.519834160,'1980-01-01','2000-12-31',1,dataset_id,2), + (51,23.033036060,'1980-01-01','2000-12-31',1,dataset_id,2), + (40,19.967045940,'1980-01-01','2000-12-31',1,dataset_id,2), + (31,27.652406610,'1980-01-01','2000-12-31',1,dataset_id,2), + (112,21.085196160,'1980-01-01','2000-12-31',1,dataset_id,2), + (56,20.892347220,'1980-01-01','2000-12-31',1,dataset_id,2), + (70,23.416827840,'1980-01-01','2000-12-31',1,dataset_id,2), + (100,25.163608460,'1980-01-01','2000-12-31',1,dataset_id,2), + (191,25.495210860,'1980-01-01','2000-12-31',1,dataset_id,2), + (196,29.787326370,'1980-01-01','2000-12-31',1,dataset_id,2), + (203,22.124857450,'1980-01-01','2000-12-31',1,dataset_id,2), + (208,20.608121080,'1980-01-01','2000-12-31',1,dataset_id,2), + (233,19.596557070,'1980-01-01','2000-12-31',1,dataset_id,2), + (246,17.833320400,'1980-01-01','2000-12-31',1,dataset_id,2), + (250,22.383542820,'1980-01-01','2000-12-31',1,dataset_id,2), + (275,27.938860010,'1980-01-01','2000-12-31',1,dataset_id,2), + (268,22.243100610,'1980-01-01','2000-12-31',1,dataset_id,2), + (276,21.447643940,'1980-01-01','2000-12-31',1,dataset_id,2), + (300,27.303485490,'1980-01-01','2000-12-31',1,dataset_id,2), + (348,26.752476850,'1980-01-01','2000-12-31',1,dataset_id,2), + (352,9.362361961,'1980-01-01','2000-12-31',1,dataset_id,2), + (364,31.165808760,'1980-01-01','2000-12-31',1,dataset_id,2), + (368,37.268962330,'1980-01-01','2000-12-31',1,dataset_id,2), + (372,17.591933590,'1980-01-01','2000-12-31',1,dataset_id,2), + (376,28.571849900,'1980-01-01','2000-12-31',1,dataset_id,2), + (380,25.440078250,'1980-01-01','2000-12-31',1,dataset_id,2), + (400,30.761961620,'1980-01-01','2000-12-31',1,dataset_id,2), + (414,39.299587310,'1980-01-01','2000-12-31',1,dataset_id,2), + (428,19.342714490,'1980-01-01','2000-12-31',1,dataset_id,2), + (422,27.398710640,'1980-01-01','2000-12-31',1,dataset_id,2), + (440,19.591086790,'1980-01-01','2000-12-31',1,dataset_id,2), + (442,21.398854400,'1980-01-01','2000-12-31',1,dataset_id,2), + (807,24.820623910,'1980-01-01','2000-12-31',1,dataset_id,2), + (498,25.684344300,'1980-01-01','2000-12-31',1,dataset_id,2), + (499,22.029333140,'1980-01-01','2000-12-31',1,dataset_id,2), + (528,20.817573840,'1980-01-01','2000-12-31',1,dataset_id,2), + (578,14.694374660,'1980-01-01','2000-12-31',1,dataset_id,2), + (512,35.947162140,'1980-01-01','2000-12-31',1,dataset_id,2), + (616,22.230128650,'1980-01-01','2000-12-31',1,dataset_id,2), + (634,37.605546100,'1980-01-01','2000-12-31',1,dataset_id,2), + (642,24.998046470,'1980-01-01','2000-12-31',1,dataset_id,2), + (682,36.112533590,'1980-01-01','2000-12-31',1,dataset_id,2), + (688,25.670090660,'1980-01-01','2000-12-31',1,dataset_id,2), + (703,22.830549810,'1980-01-01','2000-12-31',1,dataset_id,2), + (705,23.039690580,'1980-01-01','2000-12-31',1,dataset_id,2), + (724,25.654337310,'1980-01-01','2000-12-31',1,dataset_id,2), + (752,17.366429210,'1980-01-01','2000-12-31',1,dataset_id,2), + (756,17.975197780,'1980-01-01','2000-12-31',1,dataset_id,2), + (760,32.015969440,'1980-01-01','2000-12-31',1,dataset_id,2), + (792,25.008609540,'1980-01-01','2000-12-31',1,dataset_id,2), + (804,24.627259100,'1980-01-01','2000-12-31',1,dataset_id,2), + (784,38.485916900,'1980-01-01','2000-12-31',1,dataset_id,2), + (826,17.376489570,'1980-01-01','2000-12-31',1,dataset_id,2), + (887,32.014461040,'1980-01-01','2000-12-31',1,dataset_id,2), + (84,29.249003930,'1980-01-01','2000-12-31',1,dataset_id,2), + (124,15.492294130,'1980-01-01','2000-12-31',1,dataset_id,2), + (170,26.775086830,'1980-01-01','2000-12-31',1,dataset_id,2), + (188,27.252506510,'1980-01-01','2000-12-31',1,dataset_id,2), + (192,30.285713230,'1980-01-01','2000-12-31',1,dataset_id,2), + (214,27.679259060,'1980-01-01','2000-12-31',1,dataset_id,2), + (222,28.889137130,'1980-01-01','2000-12-31',1,dataset_id,2), + (304,-2.976928339,'1980-01-01','2000-12-31',1,dataset_id,2), + (320,27.587946590,'1980-01-01','2000-12-31',1,dataset_id,2), + (332,29.057598820,'1980-01-01','2000-12-31',1,dataset_id,2), + (340,28.168180150,'1980-01-01','2000-12-31',1,dataset_id,2), + (388,28.812924040,'1980-01-01','2000-12-31',1,dataset_id,2), + (484,27.926819420,'1980-01-01','2000-12-31',1,dataset_id,2), + (558,29.421066170,'1980-01-01','2000-12-31',1,dataset_id,2), + (591,28.203305920,'1980-01-01','2000-12-31',1,dataset_id,2), + (630,28.124982020,'1980-01-01','2000-12-31',1,dataset_id,2), + (44,29.441941910,'1980-01-01','2000-12-31',1,dataset_id,2), + (840,24.498363050,'1980-01-01','2000-12-31',1,dataset_id,2), + (10,-16.766766480,'1980-01-01','2000-12-31',1,dataset_id,2), + (36,31.643777870,'1980-01-01','2000-12-31',1,dataset_id,2), + (96,27.770204150,'1980-01-01','2000-12-31',1,dataset_id,2), + (242,27.916008290,'1980-01-01','2000-12-31',1,dataset_id,2), + (360,27.011052750,'1980-01-01','2000-12-31',1,dataset_id,2), + (458,27.438454020,'1980-01-01','2000-12-31',1,dataset_id,2), + (540,27.469075490,'1980-01-01','2000-12-31',1,dataset_id,2), + (554,17.954341950,'1980-01-01','2000-12-31',1,dataset_id,2), + (598,26.392481350,'1980-01-01','2000-12-31',1,dataset_id,2), + (608,28.919158140,'1980-01-01','2000-12-31',1,dataset_id,2), + (90,29.031474410,'1980-01-01','2000-12-31',1,dataset_id,2), + (626,28.893865750,'1980-01-01','2000-12-31',1,dataset_id,2), + (548,28.349181960,'1980-01-01','2000-12-31',1,dataset_id,2), + (32,24.152700980,'1980-01-01','2000-12-31',1,dataset_id,2), + (68,25.654253420,'1980-01-01','2000-12-31',1,dataset_id,2), + (76,29.274906570,'1980-01-01','2000-12-31',1,dataset_id,2), + (152,15.530109740,'1980-01-01','2000-12-31',1,dataset_id,2), + (218,22.982447460,'1980-01-01','2000-12-31',1,dataset_id,2), + (238,12.098655470,'1980-01-01','2000-12-31',1,dataset_id,2), + (328,29.307181200,'1980-01-01','2000-12-31',1,dataset_id,2), + (740,30.116151830,'1980-01-01','2000-12-31',1,dataset_id,2), + (600,33.283198550,'1980-01-01','2000-12-31',1,dataset_id,2), + (604,22.906013790,'1980-01-01','2000-12-31',1,dataset_id,2), + (780,28.460942650,'1980-01-01','2000-12-31',1,dataset_id,2), + (858,26.900956760,'1980-01-01','2000-12-31',1,dataset_id,2), + (862,29.154873870,'1980-01-01','2000-12-31',1,dataset_id,2), + (12,35.835241260,'1980-01-01','2022-12-31',1,dataset_id,2), + (24,28.117034170,'1980-01-01','2022-12-31',1,dataset_id,2), + (204,31.820661500,'1980-01-01','2022-12-31',1,dataset_id,2), + (72,30.279472000,'1980-01-01','2022-12-31',1,dataset_id,2), + (854,34.104237490,'1980-01-01','2022-12-31',1,dataset_id,2), + (108,24.082574620,'1980-01-01','2022-12-31',1,dataset_id,2), + (120,28.778450790,'1980-01-01','2022-12-31',1,dataset_id,2), + (140,31.810207350,'1980-01-01','2022-12-31',1,dataset_id,2), + (148,34.498712000,'1980-01-01','2022-12-31',1,dataset_id,2), + (818,32.600703920,'1980-01-01','2022-12-31',1,dataset_id,2), + (566,31.370233800,'1980-01-01','2022-12-31',1,dataset_id,2), + (178,28.593664930,'1980-01-01','2022-12-31',1,dataset_id,2), + (180,28.469003160,'1980-01-01','2022-12-31',1,dataset_id,2), + (384,30.500258800,'1980-01-01','2022-12-31',1,dataset_id,2), + (262,34.880803170,'1980-01-01','2022-12-31',1,dataset_id,2), + (226,26.655325520,'1980-01-01','2022-12-31',1,dataset_id,2), + (232,32.956924570,'1980-01-01','2022-12-31',1,dataset_id,2), + (231,27.842594670,'1980-01-01','2022-12-31',1,dataset_id,2), + (260,7.242366863,'1980-01-01','2022-12-31',1,dataset_id,2), + (266,27.352984570,'1980-01-01','2022-12-31',1,dataset_id,2), + (288,31.230494480,'1980-01-01','2022-12-31',1,dataset_id,2), + (324,31.104661140,'1980-01-01','2022-12-31',1,dataset_id,2), + (624,31.708581170,'1980-01-01','2022-12-31',1,dataset_id,2), + (404,28.950870630,'1980-01-01','2022-12-31',1,dataset_id,2), + (426,20.740331290,'1980-01-01','2022-12-31',1,dataset_id,2), + (430,28.972894830,'1980-01-01','2022-12-31',1,dataset_id,2), + (434,32.539292270,'1980-01-01','2022-12-31',1,dataset_id,2), + (450,26.915340120,'1980-01-01','2022-12-31',1,dataset_id,2), + (454,28.086156880,'1980-01-01','2022-12-31',1,dataset_id,2), + (466,36.518468820,'1980-01-01','2022-12-31',1,dataset_id,2), + (478,36.201114730,'1980-01-01','2022-12-31',1,dataset_id,2), + (504,30.815474420,'1980-01-01','2022-12-31',1,dataset_id,2), + (508,29.701247400,'1980-01-01','2022-12-31',1,dataset_id,2), + (516,29.018606090,'1980-01-01','2022-12-31',1,dataset_id,2), + (562,35.179185020,'1980-01-01','2022-12-31',1,dataset_id,2), + (646,22.954334720,'1980-01-01','2022-12-31',1,dataset_id,2), + (686,33.747163120,'1980-01-01','2022-12-31',1,dataset_id,2), + (694,30.265154370,'1980-01-01','2022-12-31',1,dataset_id,2), + (706,30.900672270,'1980-01-01','2022-12-31',1,dataset_id,2), + (729,34.594400150,'1980-01-01','2022-12-31',1,dataset_id,2), + (834,26.737534110,'1980-01-01','2022-12-31',1,dataset_id,2), + (710,26.375084730,'1980-01-01','2022-12-31',1,dataset_id,2), + (728,33.491233580,'1980-01-01','2022-12-31',1,dataset_id,2), + (748,25.977690370,'1980-01-01','2022-12-31',1,dataset_id,2), + (270,32.338037710,'1980-01-01','2022-12-31',1,dataset_id,2), + (768,30.840118410,'1980-01-01','2022-12-31',1,dataset_id,2), + (788,32.618842060,'1980-01-01','2022-12-31',1,dataset_id,2), + (800,27.503844690,'1980-01-01','2022-12-31',1,dataset_id,2), + (732,32.377721290,'1980-01-01','2022-12-31',1,dataset_id,2), + (894,28.476845750,'1980-01-01','2022-12-31',1,dataset_id,2), + (716,28.132327460,'1980-01-01','2022-12-31',1,dataset_id,2), + (620,26.428762280,'1980-01-01','2022-12-31',1,dataset_id,2), + (4,27.270215190,'1980-01-01','2022-12-31',1,dataset_id,2), + (50,32.451557830,'1980-01-01','2022-12-31',1,dataset_id,2), + (64,17.405870320,'1980-01-01','2022-12-31',1,dataset_id,2), + (104,30.238946220,'1980-01-01','2022-12-31',1,dataset_id,2), + (116,32.616804360,'1980-01-01','2022-12-31',1,dataset_id,2), + (156,22.596506330,'1980-01-01','2022-12-31',1,dataset_id,2), + (356,33.469525170,'1980-01-01','2022-12-31',1,dataset_id,2), + (392,25.690524180,'1980-01-01','2022-12-31',1,dataset_id,2), + (398,28.268610370,'1980-01-01','2022-12-31',1,dataset_id,2), + (417,18.375837700,'1980-01-01','2022-12-31',1,dataset_id,2), + (418,29.647988360,'1980-01-01','2022-12-31',1,dataset_id,2), + (496,22.303309890,'1980-01-01','2022-12-31',1,dataset_id,2), + (524,22.713660060,'1980-01-01','2022-12-31',1,dataset_id,2), + (408,24.050376890,'1980-01-01','2022-12-31',1,dataset_id,2), + (586,32.974733210,'1980-01-01','2022-12-31',1,dataset_id,2), + (643,19.532999400,'1980-01-01','2022-12-31',1,dataset_id,2), + (410,27.051048370,'1980-01-01','2022-12-31',1,dataset_id,2), + (144,30.199236090,'1980-01-01','2022-12-31',1,dataset_id,2), + (158,27.261329510,'1980-01-01','2022-12-31',1,dataset_id,2), + (762,18.285628560,'1980-01-01','2022-12-31',1,dataset_id,2), + (764,31.944631020,'1980-01-01','2022-12-31',1,dataset_id,2), + (795,34.542752450,'1980-01-01','2022-12-31',1,dataset_id,2), + (860,32.155762580,'1980-01-01','2022-12-31',1,dataset_id,2), + (704,29.454175210,'1980-01-01','2022-12-31',1,dataset_id,2), + (8,26.421240990,'1980-01-01','2022-12-31',1,dataset_id,2), + (51,23.348438650,'1980-01-01','2022-12-31',1,dataset_id,2), + (40,20.308571710,'1980-01-01','2022-12-31',1,dataset_id,2), + (31,28.271421360,'1980-01-01','2022-12-31',1,dataset_id,2), + (112,22.735358640,'1980-01-01','2022-12-31',1,dataset_id,2), + (56,21.836057010,'1980-01-01','2022-12-31',1,dataset_id,2), + (70,23.792510480,'1980-01-01','2022-12-31',1,dataset_id,2), + (100,26.676857300,'1980-01-01','2022-12-31',1,dataset_id,2), + (191,25.915182790,'1980-01-01','2022-12-31',1,dataset_id,2), + (196,30.391970440,'1980-01-01','2022-12-31',1,dataset_id,2), + (203,22.530758650,'1980-01-01','2022-12-31',1,dataset_id,2), + (208,20.611118260,'1980-01-01','2022-12-31',1,dataset_id,2), + (233,21.850448300,'1980-01-01','2022-12-31',1,dataset_id,2), + (246,19.681715510,'1980-01-01','2022-12-31',1,dataset_id,2), + (250,24.153233360,'1980-01-01','2022-12-31',1,dataset_id,2), + (275,28.792477320,'1980-01-01','2022-12-31',1,dataset_id,2), + (268,23.671206700,'1980-01-01','2022-12-31',1,dataset_id,2), + (276,22.430487580,'1980-01-01','2022-12-31',1,dataset_id,2), + (300,28.214760600,'1980-01-01','2022-12-31',1,dataset_id,2), + (348,26.752635840,'1980-01-01','2022-12-31',1,dataset_id,2), + (352,9.669194418,'1980-01-01','2022-12-31',1,dataset_id,2), + (364,31.762562140,'1980-01-01','2022-12-31',1,dataset_id,2), + (368,37.553480200,'1980-01-01','2022-12-31',1,dataset_id,2), + (372,17.591933590,'1980-01-01','2022-12-31',1,dataset_id,2), + (376,29.239161820,'1980-01-01','2022-12-31',1,dataset_id,2), + (380,26.493081540,'1980-01-01','2022-12-31',1,dataset_id,2), + (400,31.255019050,'1980-01-01','2022-12-31',1,dataset_id,2), + (414,39.806546230,'1980-01-01','2022-12-31',1,dataset_id,2), + (428,21.763735410,'1980-01-01','2022-12-31',1,dataset_id,2), + (422,27.994090210,'1980-01-01','2022-12-31',1,dataset_id,2), + (440,21.547047350,'1980-01-01','2022-12-31',1,dataset_id,2), + (442,22.651112220,'1980-01-01','2022-12-31',1,dataset_id,2), + (807,26.053624870,'1980-01-01','2022-12-31',1,dataset_id,2), + (498,26.863772390,'1980-01-01','2022-12-31',1,dataset_id,2), + (499,22.765209460,'1980-01-01','2022-12-31',1,dataset_id,2), + (528,21.358624810,'1980-01-01','2022-12-31',1,dataset_id,2), + (578,16.228467080,'1980-01-01','2022-12-31',1,dataset_id,2), + (512,36.112512780,'1980-01-01','2022-12-31',1,dataset_id,2), + (616,23.264694300,'1980-01-01','2022-12-31',1,dataset_id,2), + (634,37.623637460,'1980-01-01','2022-12-31',1,dataset_id,2), + (642,25.640032850,'1980-01-01','2022-12-31',1,dataset_id,2), + (682,36.561793080,'1980-01-01','2022-12-31',1,dataset_id,2), + (688,25.949586920,'1980-01-01','2022-12-31',1,dataset_id,2), + (703,22.881448340,'1980-01-01','2022-12-31',1,dataset_id,2), + (705,23.742766250,'1980-01-01','2022-12-31',1,dataset_id,2), + (724,26.781476010,'1980-01-01','2022-12-31',1,dataset_id,2), + (752,18.868962950,'1980-01-01','2022-12-31',1,dataset_id,2), + (756,18.877227250,'1980-01-01','2022-12-31',1,dataset_id,2), + (760,32.325207650,'1980-01-01','2022-12-31',1,dataset_id,2), + (792,26.151045620,'1980-01-01','2022-12-31',1,dataset_id,2), + (804,25.455255300,'1980-01-01','2022-12-31',1,dataset_id,2), + (784,38.622632110,'1980-01-01','2022-12-31',1,dataset_id,2), + (826,17.698858370,'1980-01-01','2022-12-31',1,dataset_id,2), + (887,32.665317870,'1980-01-01','2022-12-31',1,dataset_id,2), + (84,29.391871840,'1980-01-01','2022-12-31',1,dataset_id,2), + (124,16.129005290,'1980-01-01','2022-12-31',1,dataset_id,2), + (170,27.243224910,'1980-01-01','2022-12-31',1,dataset_id,2), + (188,27.291378860,'1980-01-01','2022-12-31',1,dataset_id,2), + (192,30.403692330,'1980-01-01','2022-12-31',1,dataset_id,2), + (214,27.953332350,'1980-01-01','2022-12-31',1,dataset_id,2), + (222,28.959291300,'1980-01-01','2022-12-31',1,dataset_id,2), + (304,-1.747130056,'1980-01-01','2022-12-31',1,dataset_id,2), + (320,27.669337270,'1980-01-01','2022-12-31',1,dataset_id,2), + (332,29.224422950,'1980-01-01','2022-12-31',1,dataset_id,2), + (340,28.300265380,'1980-01-01','2022-12-31',1,dataset_id,2), + (388,29.058622200,'1980-01-01','2022-12-31',1,dataset_id,2), + (484,28.074479310,'1980-01-01','2022-12-31',1,dataset_id,2), + (558,29.451619110,'1980-01-01','2022-12-31',1,dataset_id,2), + (591,28.263013710,'1980-01-01','2022-12-31',1,dataset_id,2), + (630,28.544908690,'1980-01-01','2022-12-31',1,dataset_id,2), + (44,29.552780520,'1980-01-01','2022-12-31',1,dataset_id,2), + (840,25.497945890,'1980-01-01','2022-12-31',1,dataset_id,2), + (10,-16.574741240,'1980-01-01','2022-12-31',1,dataset_id,2), + (36,32.613248990,'1980-01-01','2022-12-31',1,dataset_id,2), + (96,27.773762420,'1980-01-01','2022-12-31',1,dataset_id,2), + (242,28.513109610,'1980-01-01','2022-12-31',1,dataset_id,2), + (360,27.142239920,'1980-01-01','2022-12-31',1,dataset_id,2), + (458,27.460809750,'1980-01-01','2022-12-31',1,dataset_id,2), + (540,28.333560810,'1980-01-01','2022-12-31',1,dataset_id,2), + (554,18.639671520,'1980-01-01','2022-12-31',1,dataset_id,2), + (598,26.604101220,'1980-01-01','2022-12-31',1,dataset_id,2), + (608,29.049306520,'1980-01-01','2022-12-31',1,dataset_id,2), + (90,29.127255120,'1980-01-01','2022-12-31',1,dataset_id,2), + (626,29.313854320,'1980-01-01','2022-12-31',1,dataset_id,2), + (548,29.116724660,'1980-01-01','2022-12-31',1,dataset_id,2), + (32,24.597861940,'1980-01-01','2022-12-31',1,dataset_id,2), + (68,26.050157990,'1980-01-01','2022-12-31',1,dataset_id,2), + (76,30.314322320,'1980-01-01','2022-12-31',1,dataset_id,2), + (152,15.920027180,'1980-01-01','2022-12-31',1,dataset_id,2), + (218,23.701577340,'1980-01-01','2022-12-31',1,dataset_id,2), + (238,12.098655470,'1980-01-01','2022-12-31',1,dataset_id,2), + (328,29.737649120,'1980-01-01','2022-12-31',1,dataset_id,2), + (740,30.310383380,'1980-01-01','2022-12-31',1,dataset_id,2), + (600,33.371359700,'1980-01-01','2022-12-31',1,dataset_id,2), + (604,23.017858920,'1980-01-01','2022-12-31',1,dataset_id,2), + (780,28.794481770,'1980-01-01','2022-12-31',1,dataset_id,2), + (858,27.000819980,'1980-01-01','2022-12-31',1,dataset_id,2), + (862,30.196193260,'1980-01-01','2022-12-31',1,dataset_id,2), + (12,36.757786170,'2001-01-01','2022-12-31',2,dataset_id,2), + (24,26.436074390,'2001-01-01','2022-12-31',2,dataset_id,2), + (204,32.057079580,'2001-01-01','2022-12-31',2,dataset_id,2), + (72,29.351177290,'2001-01-01','2022-12-31',2,dataset_id,2), + (854,34.292271350,'2001-01-01','2022-12-31',2,dataset_id,2), + (108,23.006323150,'2001-01-01','2022-12-31',2,dataset_id,2), + (120,28.536313690,'2001-01-01','2022-12-31',2,dataset_id,2), + (140,30.585209630,'2001-01-01','2022-12-31',2,dataset_id,2), + (148,34.329030270,'2001-01-01','2022-12-31',2,dataset_id,2), + (818,32.839014860,'2001-01-01','2022-12-31',2,dataset_id,2), + (566,32.218947850,'2001-01-01','2022-12-31',2,dataset_id,2), + (178,26.869388860,'2001-01-01','2022-12-31',2,dataset_id,2), + (180,27.196642870,'2001-01-01','2022-12-31',2,dataset_id,2), + (384,29.571660850,'2001-01-01','2022-12-31',2,dataset_id,2), + (262,34.762149880,'2001-01-01','2022-12-31',2,dataset_id,2), + (226,25.901795190,'2001-01-01','2022-12-31',2,dataset_id,2), + (232,32.283648020,'2001-01-01','2022-12-31',2,dataset_id,2), + (231,27.784473480,'2001-01-01','2022-12-31',2,dataset_id,2), + (260,7.415764602,'2001-01-01','2022-12-31',2,dataset_id,2), + (266,26.516946930,'2001-01-01','2022-12-31',2,dataset_id,2), + (288,31.336408880,'2001-01-01','2022-12-31',2,dataset_id,2), + (324,30.371111540,'2001-01-01','2022-12-31',2,dataset_id,2), + (624,31.078315950,'2001-01-01','2022-12-31',2,dataset_id,2), + (404,28.622554360,'2001-01-01','2022-12-31',2,dataset_id,2), + (426,20.028383230,'2001-01-01','2022-12-31',2,dataset_id,2), + (430,27.634576540,'2001-01-01','2022-12-31',2,dataset_id,2), + (434,32.825540040,'2001-01-01','2022-12-31',2,dataset_id,2), + (450,26.405251200,'2001-01-01','2022-12-31',2,dataset_id,2), + (454,26.977511020,'2001-01-01','2022-12-31',2,dataset_id,2), + (466,36.553529640,'2001-01-01','2022-12-31',2,dataset_id,2), + (478,36.604058370,'2001-01-01','2022-12-31',2,dataset_id,2), + (504,30.183723410,'2001-01-01','2022-12-31',2,dataset_id,2), + (508,28.822239420,'2001-01-01','2022-12-31',2,dataset_id,2), + (516,28.131870160,'2001-01-01','2022-12-31',2,dataset_id,2), + (562,35.249982440,'2001-01-01','2022-12-31',2,dataset_id,2), + (646,21.745864420,'2001-01-01','2022-12-31',2,dataset_id,2), + (686,33.679822780,'2001-01-01','2022-12-31',2,dataset_id,2), + (694,29.189361430,'2001-01-01','2022-12-31',2,dataset_id,2), + (706,30.250896180,'2001-01-01','2022-12-31',2,dataset_id,2), + (729,34.493154760,'2001-01-01','2022-12-31',2,dataset_id,2), + (834,26.192768610,'2001-01-01','2022-12-31',2,dataset_id,2), + (710,25.539684080,'2001-01-01','2022-12-31',2,dataset_id,2), + (728,33.449552060,'2001-01-01','2022-12-31',2,dataset_id,2), + (748,24.960140690,'2001-01-01','2022-12-31',2,dataset_id,2), + (270,31.923884870,'2001-01-01','2022-12-31',2,dataset_id,2), + (768,30.891186260,'2001-01-01','2022-12-31',2,dataset_id,2), + (788,32.583346880,'2001-01-01','2022-12-31',2,dataset_id,2), + (800,26.469233600,'2001-01-01','2022-12-31',2,dataset_id,2), + (732,32.032450400,'2001-01-01','2022-12-31',2,dataset_id,2), + (894,27.686178470,'2001-01-01','2022-12-31',2,dataset_id,2), + (716,27.289861150,'2001-01-01','2022-12-31',2,dataset_id,2), + (620,25.138703720,'2001-01-01','2022-12-31',2,dataset_id,2), + (4,27.441089520,'2001-01-01','2022-12-31',2,dataset_id,2), + (50,30.388825410,'2001-01-01','2022-12-31',2,dataset_id,2), + (64,17.179293390,'2001-01-01','2022-12-31',2,dataset_id,2), + (104,28.997881660,'2001-01-01','2022-12-31',2,dataset_id,2), + (116,31.471405570,'2001-01-01','2022-12-31',2,dataset_id,2), + (156,22.392240920,'2001-01-01','2022-12-31',2,dataset_id,2), + (356,32.283719390,'2001-01-01','2022-12-31',2,dataset_id,2), + (392,26.030965510,'2001-01-01','2022-12-31',2,dataset_id,2), + (398,26.872690580,'2001-01-01','2022-12-31',2,dataset_id,2), + (417,15.375425690,'2001-01-01','2022-12-31',2,dataset_id,2), + (418,28.030092600,'2001-01-01','2022-12-31',2,dataset_id,2), + (496,22.313123260,'2001-01-01','2022-12-31',2,dataset_id,2), + (524,20.845591770,'2001-01-01','2022-12-31',2,dataset_id,2), + (408,24.006685350,'2001-01-01','2022-12-31',2,dataset_id,2), + (586,31.781672710,'2001-01-01','2022-12-31',2,dataset_id,2), + (643,19.666967330,'2001-01-01','2022-12-31',2,dataset_id,2), + (410,27.157655330,'2001-01-01','2022-12-31',2,dataset_id,2), + (144,29.322078440,'2001-01-01','2022-12-31',2,dataset_id,2), + (158,26.417931720,'2001-01-01','2022-12-31',2,dataset_id,2), + (762,16.776862470,'2001-01-01','2022-12-31',2,dataset_id,2), + (764,30.979418720,'2001-01-01','2022-12-31',2,dataset_id,2), + (795,34.370919920,'2001-01-01','2022-12-31',2,dataset_id,2), + (860,31.604396270,'2001-01-01','2022-12-31',2,dataset_id,2), + (704,28.871639220,'2001-01-01','2022-12-31',2,dataset_id,2), + (8,24.539039370,'2001-01-01','2022-12-31',2,dataset_id,2), + (51,21.512320330,'2001-01-01','2022-12-31',2,dataset_id,2), + (40,19.557126790,'2001-01-01','2022-12-31',2,dataset_id,2), + (31,26.881871690,'2001-01-01','2022-12-31',2,dataset_id,2), + (112,22.907271590,'2001-01-01','2022-12-31',2,dataset_id,2), + (56,22.060418910,'2001-01-01','2022-12-31',2,dataset_id,2), + (70,23.024350280,'2001-01-01','2022-12-31',2,dataset_id,2), + (100,25.308290500,'2001-01-01','2022-12-31',2,dataset_id,2), + (191,24.907391220,'2001-01-01','2022-12-31',2,dataset_id,2), + (196,29.717995930,'2001-01-01','2022-12-31',2,dataset_id,2), + (203,21.756360520,'2001-01-01','2022-12-31',2,dataset_id,2), + (208,20.037347200,'2001-01-01','2022-12-31',2,dataset_id,2), + (233,21.959029830,'2001-01-01','2022-12-31',2,dataset_id,2), + (246,20.224538910,'2001-01-01','2022-12-31',2,dataset_id,2), + (250,23.415581870,'2001-01-01','2022-12-31',2,dataset_id,2), + (275,28.868441270,'2001-01-01','2022-12-31',2,dataset_id,2), + (268,22.264770230,'2001-01-01','2022-12-31',2,dataset_id,2), + (276,22.264908390,'2001-01-01','2022-12-31',2,dataset_id,2), + (300,26.870950700,'2001-01-01','2022-12-31',2,dataset_id,2), + (348,24.606011930,'2001-01-01','2022-12-31',2,dataset_id,2), + (352,11.163122530,'2001-01-01','2022-12-31',2,dataset_id,2), + (364,32.522363250,'2001-01-01','2022-12-31',2,dataset_id,2), + (368,37.880708480,'2001-01-01','2022-12-31',2,dataset_id,2), + (372,17.314190020,'2001-01-01','2022-12-31',2,dataset_id,2), + (376,29.393774030,'2001-01-01','2022-12-31',2,dataset_id,2), + (380,25.436871580,'2001-01-01','2022-12-31',2,dataset_id,2), + (400,31.694987840,'2001-01-01','2022-12-31',2,dataset_id,2), + (414,39.742888970,'2001-01-01','2022-12-31',2,dataset_id,2), + (428,21.900297730,'2001-01-01','2022-12-31',2,dataset_id,2), + (422,27.048721030,'2001-01-01','2022-12-31',2,dataset_id,2), + (440,21.979183870,'2001-01-01','2022-12-31',2,dataset_id,2), + (442,22.296927670,'2001-01-01','2022-12-31',2,dataset_id,2), + (807,25.054032470,'2001-01-01','2022-12-31',2,dataset_id,2), + (498,25.921740510,'2001-01-01','2022-12-31',2,dataset_id,2), + (499,22.408560550,'2001-01-01','2022-12-31',2,dataset_id,2), + (528,21.884342680,'2001-01-01','2022-12-31',2,dataset_id,2), + (578,16.934225420,'2001-01-01','2022-12-31',2,dataset_id,2), + (512,35.718636890,'2001-01-01','2022-12-31',2,dataset_id,2), + (616,22.363442620,'2001-01-01','2022-12-31',2,dataset_id,2), + (634,36.782329520,'2001-01-01','2022-12-31',2,dataset_id,2), + (642,24.189132350,'2001-01-01','2022-12-31',2,dataset_id,2), + (682,37.132873400,'2001-01-01','2022-12-31',2,dataset_id,2), + (688,24.629353800,'2001-01-01','2022-12-31',2,dataset_id,2), + (703,21.730828400,'2001-01-01','2022-12-31',2,dataset_id,2), + (705,22.778908140,'2001-01-01','2022-12-31',2,dataset_id,2), + (724,26.236308650,'2001-01-01','2022-12-31',2,dataset_id,2), + (752,19.191057070,'2001-01-01','2022-12-31',2,dataset_id,2), + (756,18.558446060,'2001-01-01','2022-12-31',2,dataset_id,2), + (760,32.718100780,'2001-01-01','2022-12-31',2,dataset_id,2), + (792,26.014947460,'2001-01-01','2022-12-31',2,dataset_id,2), + (804,24.710220410,'2001-01-01','2022-12-31',2,dataset_id,2), + (784,38.015117030,'2001-01-01','2022-12-31',2,dataset_id,2), + (826,17.841027770,'2001-01-01','2022-12-31',2,dataset_id,2), + (887,32.532633580,'2001-01-01','2022-12-31',2,dataset_id,2), + (84,28.725186340,'2001-01-01','2022-12-31',2,dataset_id,2), + (124,16.450049880,'2001-01-01','2022-12-31',2,dataset_id,2), + (170,26.854250480,'2001-01-01','2022-12-31',2,dataset_id,2), + (188,25.214038500,'2001-01-01','2022-12-31',2,dataset_id,2), + (192,28.640631480,'2001-01-01','2022-12-31',2,dataset_id,2), + (214,26.793273080,'2001-01-01','2022-12-31',2,dataset_id,2), + (222,28.340138920,'2001-01-01','2022-12-31',2,dataset_id,2), + (304,-1.699413838,'2001-01-01','2022-12-31',2,dataset_id,2), + (320,26.924337750,'2001-01-01','2022-12-31',2,dataset_id,2), + (332,27.907658670,'2001-01-01','2022-12-31',2,dataset_id,2), + (340,27.039311350,'2001-01-01','2022-12-31',2,dataset_id,2), + (388,28.353260910,'2001-01-01','2022-12-31',2,dataset_id,2), + (484,27.722274320,'2001-01-01','2022-12-31',2,dataset_id,2), + (558,27.891985460,'2001-01-01','2022-12-31',2,dataset_id,2), + (591,27.043404000,'2001-01-01','2022-12-31',2,dataset_id,2), + (630,27.654816940,'2001-01-01','2022-12-31',2,dataset_id,2), + (44,28.596588880,'2001-01-01','2022-12-31',2,dataset_id,2), + (840,25.085986880,'2001-01-01','2022-12-31',2,dataset_id,2), + (10,-16.487604160,'2001-01-01','2022-12-31',2,dataset_id,2), + (36,31.720304160,'2001-01-01','2022-12-31',2,dataset_id,2), + (96,27.556673650,'2001-01-01','2022-12-31',2,dataset_id,2), + (242,27.230549890,'2001-01-01','2022-12-31',2,dataset_id,2), + (360,26.948353810,'2001-01-01','2022-12-31',2,dataset_id,2), + (458,27.555028410,'2001-01-01','2022-12-31',2,dataset_id,2), + (540,27.166596430,'2001-01-01','2022-12-31',2,dataset_id,2), + (554,18.232760630,'2001-01-01','2022-12-31',2,dataset_id,2), + (598,25.196603420,'2001-01-01','2022-12-31',2,dataset_id,2), + (608,28.370941540,'2001-01-01','2022-12-31',2,dataset_id,2), + (90,27.697279330,'2001-01-01','2022-12-31',2,dataset_id,2), + (626,27.599175610,'2001-01-01','2022-12-31',2,dataset_id,2), + (548,27.826922150,'2001-01-01','2022-12-31',2,dataset_id,2), + (32,23.965756980,'2001-01-01','2022-12-31',2,dataset_id,2), + (68,24.425492320,'2001-01-01','2022-12-31',2,dataset_id,2), + (76,28.672790740,'2001-01-01','2022-12-31',2,dataset_id,2), + (152,15.395614090,'2001-01-01','2022-12-31',2,dataset_id,2), + (218,23.051221280,'2001-01-01','2022-12-31',2,dataset_id,2), + (238,11.873194120,'2001-01-01','2022-12-31',2,dataset_id,2), + (328,27.782950210,'2001-01-01','2022-12-31',2,dataset_id,2), + (740,28.732085250,'2001-01-01','2022-12-31',2,dataset_id,2), + (600,30.847135000,'2001-01-01','2022-12-31',2,dataset_id,2), + (604,21.284011140,'2001-01-01','2022-12-31',2,dataset_id,2), + (780,27.996801680,'2001-01-01','2022-12-31',2,dataset_id,2), + (858,25.765208910,'2001-01-01','2022-12-31',2,dataset_id,2), + (862,28.753499020,'2001-01-01','2022-12-31',2,dataset_id,2), + (12,35.732313880,'1980-01-01','2000-12-31',2,dataset_id,2), + (24,25.627131380,'1980-01-01','2000-12-31',2,dataset_id,2), + (204,31.884937500,'1980-01-01','2000-12-31',2,dataset_id,2), + (72,29.376595510,'1980-01-01','2000-12-31',2,dataset_id,2), + (854,34.077857050,'1980-01-01','2000-12-31',2,dataset_id,2), + (108,23.295099420,'1980-01-01','2000-12-31',2,dataset_id,2), + (120,28.156101360,'1980-01-01','2000-12-31',2,dataset_id,2), + (140,29.721120680,'1980-01-01','2000-12-31',2,dataset_id,2), + (148,33.719756920,'1980-01-01','2000-12-31',2,dataset_id,2), + (818,31.856953060,'1980-01-01','2000-12-31',2,dataset_id,2), + (566,32.008738720,'1980-01-01','2000-12-31',2,dataset_id,2), + (178,26.732271710,'1980-01-01','2000-12-31',2,dataset_id,2), + (180,26.315646560,'1980-01-01','2000-12-31',2,dataset_id,2), + (384,29.782260890,'1980-01-01','2000-12-31',2,dataset_id,2), + (262,34.290974330,'1980-01-01','2000-12-31',2,dataset_id,2), + (226,25.607345900,'1980-01-01','2000-12-31',2,dataset_id,2), + (232,31.716364230,'1980-01-01','2000-12-31',2,dataset_id,2), + (231,27.217916710,'1980-01-01','2000-12-31',2,dataset_id,2), + (260,7.102184085,'1980-01-01','2000-12-31',2,dataset_id,2), + (266,26.429915360,'1980-01-01','2000-12-31',2,dataset_id,2), + (288,31.182942420,'1980-01-01','2000-12-31',2,dataset_id,2), + (324,30.294396740,'1980-01-01','2000-12-31',2,dataset_id,2), + (624,30.995301920,'1980-01-01','2000-12-31',2,dataset_id,2), + (404,27.875314060,'1980-01-01','2000-12-31',2,dataset_id,2), + (426,19.247137240,'1980-01-01','2000-12-31',2,dataset_id,2), + (430,27.569127660,'1980-01-01','2000-12-31',2,dataset_id,2), + (434,32.523457430,'1980-01-01','2000-12-31',2,dataset_id,2), + (450,26.078525620,'1980-01-01','2000-12-31',2,dataset_id,2), + (454,26.658412500,'1980-01-01','2000-12-31',2,dataset_id,2), + (466,36.066289250,'1980-01-01','2000-12-31',2,dataset_id,2), + (478,35.835745490,'1980-01-01','2000-12-31',2,dataset_id,2), + (504,29.370323290,'1980-01-01','2000-12-31',2,dataset_id,2), + (508,28.557293960,'1980-01-01','2000-12-31',2,dataset_id,2), + (516,27.707930000,'1980-01-01','2000-12-31',2,dataset_id,2), + (562,34.859827380,'1980-01-01','2000-12-31',2,dataset_id,2), + (646,21.306601680,'1980-01-01','2000-12-31',2,dataset_id,2), + (686,33.448952570,'1980-01-01','2000-12-31',2,dataset_id,2), + (694,29.197245410,'1980-01-01','2000-12-31',2,dataset_id,2), + (706,29.751515930,'1980-01-01','2000-12-31',2,dataset_id,2), + (729,33.634270150,'1980-01-01','2000-12-31',2,dataset_id,2), + (834,25.935513580,'1980-01-01','2000-12-31',2,dataset_id,2), + (710,25.273524530,'1980-01-01','2000-12-31',2,dataset_id,2), + (728,32.151547200,'1980-01-01','2000-12-31',2,dataset_id,2), + (748,25.628568970,'1980-01-01','2000-12-31',2,dataset_id,2), + (270,31.487924100,'1980-01-01','2000-12-31',2,dataset_id,2), + (768,30.776219490,'1980-01-01','2000-12-31',2,dataset_id,2), + (788,32.165791790,'1980-01-01','2000-12-31',2,dataset_id,2), + (800,25.857605400,'1980-01-01','2000-12-31',2,dataset_id,2), + (732,31.463528030,'1980-01-01','2000-12-31',2,dataset_id,2), + (894,27.192279230,'1980-01-01','2000-12-31',2,dataset_id,2), + (716,27.242771970,'1980-01-01','2000-12-31',2,dataset_id,2), + (620,24.500064900,'1980-01-01','2000-12-31',2,dataset_id,2), + (4,26.469907000,'1980-01-01','2000-12-31',2,dataset_id,2), + (50,30.039130720,'1980-01-01','2000-12-31',2,dataset_id,2), + (64,16.344597910,'1980-01-01','2000-12-31',2,dataset_id,2), + (104,28.678760300,'1980-01-01','2000-12-31',2,dataset_id,2), + (116,31.142139200,'1980-01-01','2000-12-31',2,dataset_id,2), + (156,21.556832740,'1980-01-01','2000-12-31',2,dataset_id,2), + (356,31.884386840,'1980-01-01','2000-12-31',2,dataset_id,2), + (392,25.639867770,'1980-01-01','2000-12-31',2,dataset_id,2), + (398,26.599963020,'1980-01-01','2000-12-31',2,dataset_id,2), + (417,15.137386530,'1980-01-01','2000-12-31',2,dataset_id,2), + (418,26.859968270,'1980-01-01','2000-12-31',2,dataset_id,2), + (496,21.462427730,'1980-01-01','2000-12-31',2,dataset_id,2), + (524,21.012582510,'1980-01-01','2000-12-31',2,dataset_id,2), + (408,23.892717230,'1980-01-01','2000-12-31',2,dataset_id,2), + (586,31.449911470,'1980-01-01','2000-12-31',2,dataset_id,2), + (643,18.890468120,'1980-01-01','2000-12-31',2,dataset_id,2), + (410,27.605459980,'1980-01-01','2000-12-31',2,dataset_id,2), + (144,29.531054590,'1980-01-01','2000-12-31',2,dataset_id,2), + (158,25.961596750,'1980-01-01','2000-12-31',2,dataset_id,2), + (762,15.831603330,'1980-01-01','2000-12-31',2,dataset_id,2), + (764,30.594490060,'1980-01-01','2000-12-31',2,dataset_id,2), + (795,33.241692820,'1980-01-01','2000-12-31',2,dataset_id,2), + (860,30.898793450,'1980-01-01','2000-12-31',2,dataset_id,2), + (704,28.237791700,'1980-01-01','2000-12-31',2,dataset_id,2), + (8,24.255716720,'1980-01-01','2000-12-31',2,dataset_id,2), + (51,20.707277030,'1980-01-01','2000-12-31',2,dataset_id,2), + (40,19.159330940,'1980-01-01','2000-12-31',2,dataset_id,2), + (31,25.998693830,'1980-01-01','2000-12-31',2,dataset_id,2), + (112,21.109399160,'1980-01-01','2000-12-31',2,dataset_id,2), + (56,21.076349810,'1980-01-01','2000-12-31',2,dataset_id,2), + (70,22.211894020,'1980-01-01','2000-12-31',2,dataset_id,2), + (100,23.877130030,'1980-01-01','2000-12-31',2,dataset_id,2), + (191,24.513750370,'1980-01-01','2000-12-31',2,dataset_id,2), + (196,29.355784020,'1980-01-01','2000-12-31',2,dataset_id,2), + (203,21.508497320,'1980-01-01','2000-12-31',2,dataset_id,2), + (208,20.468830620,'1980-01-01','2000-12-31',2,dataset_id,2), + (233,19.624067840,'1980-01-01','2000-12-31',2,dataset_id,2), + (246,18.251210880,'1980-01-01','2000-12-31',2,dataset_id,2), + (250,22.281192030,'1980-01-01','2000-12-31',2,dataset_id,2), + (275,27.879969130,'1980-01-01','2000-12-31',2,dataset_id,2), + (268,20.921828660,'1980-01-01','2000-12-31',2,dataset_id,2), + (276,21.393187970,'1980-01-01','2000-12-31',2,dataset_id,2), + (300,26.231539860,'1980-01-01','2000-12-31',2,dataset_id,2), + (348,25.349703810,'1980-01-01','2000-12-31',2,dataset_id,2), + (352,10.582067620,'1980-01-01','2000-12-31',2,dataset_id,2), + (364,31.417150120,'1980-01-01','2000-12-31',2,dataset_id,2), + (368,37.934231750,'1980-01-01','2000-12-31',2,dataset_id,2), + (372,17.834897460,'1980-01-01','2000-12-31',2,dataset_id,2), + (376,28.672958830,'1980-01-01','2000-12-31',2,dataset_id,2), + (380,24.188760000,'1980-01-01','2000-12-31',2,dataset_id,2), + (400,31.326312040,'1980-01-01','2000-12-31',2,dataset_id,2), + (414,39.261362440,'1980-01-01','2000-12-31',2,dataset_id,2), + (428,19.689116710,'1980-01-01','2000-12-31',2,dataset_id,2), + (422,26.763460280,'1980-01-01','2000-12-31',2,dataset_id,2), + (440,20.288104600,'1980-01-01','2000-12-31',2,dataset_id,2), + (442,21.138079190,'1980-01-01','2000-12-31',2,dataset_id,2), + (807,24.319275580,'1980-01-01','2000-12-31',2,dataset_id,2), + (498,24.248077500,'1980-01-01','2000-12-31',2,dataset_id,2), + (499,21.287076970,'1980-01-01','2000-12-31',2,dataset_id,2), + (528,21.036556580,'1980-01-01','2000-12-31',2,dataset_id,2), + (578,15.521093750,'1980-01-01','2000-12-31',2,dataset_id,2), + (512,35.489005400,'1980-01-01','2000-12-31',2,dataset_id,2), + (616,21.398286450,'1980-01-01','2000-12-31',2,dataset_id,2), + (634,36.808877860,'1980-01-01','2000-12-31',2,dataset_id,2), + (642,23.169821010,'1980-01-01','2000-12-31',2,dataset_id,2), + (682,36.302059600,'1980-01-01','2000-12-31',2,dataset_id,2), + (688,24.383163710,'1980-01-01','2000-12-31',2,dataset_id,2), + (703,21.948051930,'1980-01-01','2000-12-31',2,dataset_id,2), + (705,22.584168710,'1980-01-01','2000-12-31',2,dataset_id,2), + (724,24.992503770,'1980-01-01','2000-12-31',2,dataset_id,2), + (752,17.980209290,'1980-01-01','2000-12-31',2,dataset_id,2), + (756,17.580816940,'1980-01-01','2000-12-31',2,dataset_id,2), + (760,32.544738100,'1980-01-01','2000-12-31',2,dataset_id,2), + (792,25.058390180,'1980-01-01','2000-12-31',2,dataset_id,2), + (804,23.445418300,'1980-01-01','2000-12-31',2,dataset_id,2), + (784,37.019752510,'1980-01-01','2000-12-31',2,dataset_id,2), + (826,17.622105870,'1980-01-01','2000-12-31',2,dataset_id,2), + (887,31.793407400,'1980-01-01','2000-12-31',2,dataset_id,2), + (84,28.201176210,'1980-01-01','2000-12-31',2,dataset_id,2), + (124,15.926217510,'1980-01-01','2000-12-31',2,dataset_id,2), + (170,26.075816790,'1980-01-01','2000-12-31',2,dataset_id,2), + (188,25.316523900,'1980-01-01','2000-12-31',2,dataset_id,2), + (192,29.132910950,'1980-01-01','2000-12-31',2,dataset_id,2), + (214,26.340567620,'1980-01-01','2000-12-31',2,dataset_id,2), + (222,28.015564710,'1980-01-01','2000-12-31',2,dataset_id,2), + (304,-3.126749247,'1980-01-01','2000-12-31',2,dataset_id,2), + (320,25.936120010,'1980-01-01','2000-12-31',2,dataset_id,2), + (332,27.620089550,'1980-01-01','2000-12-31',2,dataset_id,2), + (340,26.448197170,'1980-01-01','2000-12-31',2,dataset_id,2), + (388,27.871756560,'1980-01-01','2000-12-31',2,dataset_id,2), + (484,27.490033210,'1980-01-01','2000-12-31',2,dataset_id,2), + (558,27.736966520,'1980-01-01','2000-12-31',2,dataset_id,2), + (591,26.818351090,'1980-01-01','2000-12-31',2,dataset_id,2), + (630,27.302250650,'1980-01-01','2000-12-31',2,dataset_id,2), + (44,28.638806350,'1980-01-01','2000-12-31',2,dataset_id,2), + (840,24.159168860,'1980-01-01','2000-12-31',2,dataset_id,2), + (10,-16.698242890,'1980-01-01','2000-12-31',2,dataset_id,2), + (36,30.859418000,'1980-01-01','2000-12-31',2,dataset_id,2), + (96,27.807949960,'1980-01-01','2000-12-31',2,dataset_id,2), + (242,26.636287610,'1980-01-01','2000-12-31',2,dataset_id,2), + (360,26.657015730,'1980-01-01','2000-12-31',2,dataset_id,2), + (458,27.570142070,'1980-01-01','2000-12-31',2,dataset_id,2), + (540,26.431686430,'1980-01-01','2000-12-31',2,dataset_id,2), + (554,17.268692070,'1980-01-01','2000-12-31',2,dataset_id,2), + (598,24.947287780,'1980-01-01','2000-12-31',2,dataset_id,2), + (608,28.017699160,'1980-01-01','2000-12-31',2,dataset_id,2), + (90,27.158059700,'1980-01-01','2000-12-31',2,dataset_id,2), + (626,27.264355530,'1980-01-01','2000-12-31',2,dataset_id,2), + (548,27.164580890,'1980-01-01','2000-12-31',2,dataset_id,2), + (32,23.473265550,'1980-01-01','2000-12-31',2,dataset_id,2), + (68,23.467146960,'1980-01-01','2000-12-31',2,dataset_id,2), + (76,27.948341180,'1980-01-01','2000-12-31',2,dataset_id,2), + (152,15.328635110,'1980-01-01','2000-12-31',2,dataset_id,2), + (218,22.532699560,'1980-01-01','2000-12-31',2,dataset_id,2), + (238,11.970756500,'1980-01-01','2000-12-31',2,dataset_id,2), + (328,27.703923670,'1980-01-01','2000-12-31',2,dataset_id,2), + (740,28.765969910,'1980-01-01','2000-12-31',2,dataset_id,2), + (600,29.369278550,'1980-01-01','2000-12-31',2,dataset_id,2), + (604,21.043215300,'1980-01-01','2000-12-31',2,dataset_id,2), + (780,27.523005640,'1980-01-01','2000-12-31',2,dataset_id,2), + (858,25.893293460,'1980-01-01','2000-12-31',2,dataset_id,2), + (862,27.950073010,'1980-01-01','2000-12-31',2,dataset_id,2), + (12,36.763301230,'1980-01-01','2022-12-31',2,dataset_id,2), + (24,26.471439230,'1980-01-01','2022-12-31',2,dataset_id,2), + (204,32.074665440,'1980-01-01','2022-12-31',2,dataset_id,2), + (72,29.627683500,'1980-01-01','2022-12-31',2,dataset_id,2), + (854,34.309504460,'1980-01-01','2022-12-31',2,dataset_id,2), + (108,23.377058790,'1980-01-01','2022-12-31',2,dataset_id,2), + (120,28.560102510,'1980-01-01','2022-12-31',2,dataset_id,2), + (140,30.611863480,'1980-01-01','2022-12-31',2,dataset_id,2), + (148,34.348927760,'1980-01-01','2022-12-31',2,dataset_id,2), + (818,32.839164640,'1980-01-01','2022-12-31',2,dataset_id,2), + (566,32.280569460,'1980-01-01','2022-12-31',2,dataset_id,2), + (178,26.895961530,'1980-01-01','2022-12-31',2,dataset_id,2), + (180,27.212297830,'1980-01-01','2022-12-31',2,dataset_id,2), + (384,29.848237720,'1980-01-01','2022-12-31',2,dataset_id,2), + (262,34.762801850,'1980-01-01','2022-12-31',2,dataset_id,2), + (226,25.924526180,'1980-01-01','2022-12-31',2,dataset_id,2), + (232,32.286683490,'1980-01-01','2022-12-31',2,dataset_id,2), + (231,27.838735500,'1980-01-01','2022-12-31',2,dataset_id,2), + (260,7.460654840,'1980-01-01','2022-12-31',2,dataset_id,2), + (266,26.543210830,'1980-01-01','2022-12-31',2,dataset_id,2), + (288,31.409535110,'1980-01-01','2022-12-31',2,dataset_id,2), + (324,30.481634610,'1980-01-01','2022-12-31',2,dataset_id,2), + (624,31.121168450,'1980-01-01','2022-12-31',2,dataset_id,2), + (404,28.628784780,'1980-01-01','2022-12-31',2,dataset_id,2), + (426,20.053201320,'1980-01-01','2022-12-31',2,dataset_id,2), + (430,27.694532440,'1980-01-01','2022-12-31',2,dataset_id,2), + (434,32.903140610,'1980-01-01','2022-12-31',2,dataset_id,2), + (450,26.473718040,'1980-01-01','2022-12-31',2,dataset_id,2), + (454,26.999064820,'1980-01-01','2022-12-31',2,dataset_id,2), + (466,36.571522840,'1980-01-01','2022-12-31',2,dataset_id,2), + (478,36.610990910,'1980-01-01','2022-12-31',2,dataset_id,2), + (504,30.211021700,'1980-01-01','2022-12-31',2,dataset_id,2), + (508,28.911883620,'1980-01-01','2022-12-31',2,dataset_id,2), + (516,28.245240010,'1980-01-01','2022-12-31',2,dataset_id,2), + (562,35.269580720,'1980-01-01','2022-12-31',2,dataset_id,2), + (646,21.807312470,'1980-01-01','2022-12-31',2,dataset_id,2), + (686,33.740802060,'1980-01-01','2022-12-31',2,dataset_id,2), + (694,29.279901830,'1980-01-01','2022-12-31',2,dataset_id,2), + (706,30.266753890,'1980-01-01','2022-12-31',2,dataset_id,2), + (729,34.498310010,'1980-01-01','2022-12-31',2,dataset_id,2), + (834,26.260450930,'1980-01-01','2022-12-31',2,dataset_id,2), + (710,25.714604510,'1980-01-01','2022-12-31',2,dataset_id,2), + (728,33.450184390,'1980-01-01','2022-12-31',2,dataset_id,2), + (748,25.672251480,'1980-01-01','2022-12-31',2,dataset_id,2), + (270,31.942485400,'1980-01-01','2022-12-31',2,dataset_id,2), + (768,30.947717980,'1980-01-01','2022-12-31',2,dataset_id,2), + (788,32.609068990,'1980-01-01','2022-12-31',2,dataset_id,2), + (800,26.501476170,'1980-01-01','2022-12-31',2,dataset_id,2), + (732,32.068853950,'1980-01-01','2022-12-31',2,dataset_id,2), + (894,27.700962310,'1980-01-01','2022-12-31',2,dataset_id,2), + (716,27.447942800,'1980-01-01','2022-12-31',2,dataset_id,2), + (620,25.177578520,'1980-01-01','2022-12-31',2,dataset_id,2), + (4,27.442507910,'1980-01-01','2022-12-31',2,dataset_id,2), + (50,30.475765580,'1980-01-01','2022-12-31',2,dataset_id,2), + (64,17.179324720,'1980-01-01','2022-12-31',2,dataset_id,2), + (104,29.078462900,'1980-01-01','2022-12-31',2,dataset_id,2), + (116,31.527906680,'1980-01-01','2022-12-31',2,dataset_id,2), + (156,22.439472000,'1980-01-01','2022-12-31',2,dataset_id,2), + (356,32.356811160,'1980-01-01','2022-12-31',2,dataset_id,2), + (392,26.061926550,'1980-01-01','2022-12-31',2,dataset_id,2), + (398,27.190941440,'1980-01-01','2022-12-31',2,dataset_id,2), + (417,15.500486860,'1980-01-01','2022-12-31',2,dataset_id,2), + (418,28.030377440,'1980-01-01','2022-12-31',2,dataset_id,2), + (496,22.334245430,'1980-01-01','2022-12-31',2,dataset_id,2), + (524,21.180831800,'1980-01-01','2022-12-31',2,dataset_id,2), + (408,24.123044150,'1980-01-01','2022-12-31',2,dataset_id,2), + (586,31.919164620,'1980-01-01','2022-12-31',2,dataset_id,2), + (643,19.920226350,'1980-01-01','2022-12-31',2,dataset_id,2), + (410,27.707810240,'1980-01-01','2022-12-31',2,dataset_id,2), + (144,29.579315940,'1980-01-01','2022-12-31',2,dataset_id,2), + (158,26.419758350,'1980-01-01','2022-12-31',2,dataset_id,2), + (762,16.836146710,'1980-01-01','2022-12-31',2,dataset_id,2), + (764,31.026872510,'1980-01-01','2022-12-31',2,dataset_id,2), + (795,34.372886530,'1980-01-01','2022-12-31',2,dataset_id,2), + (860,31.619508200,'1980-01-01','2022-12-31',2,dataset_id,2), + (704,28.887392790,'1980-01-01','2022-12-31',2,dataset_id,2), + (8,24.595602680,'1980-01-01','2022-12-31',2,dataset_id,2), + (51,21.540778350,'1980-01-01','2022-12-31',2,dataset_id,2), + (40,19.699957670,'1980-01-01','2022-12-31',2,dataset_id,2), + (31,26.895861500,'1980-01-01','2022-12-31',2,dataset_id,2), + (112,22.907271590,'1980-01-01','2022-12-31',2,dataset_id,2), + (56,22.060418910,'1980-01-01','2022-12-31',2,dataset_id,2), + (70,23.084256750,'1980-01-01','2022-12-31',2,dataset_id,2), + (100,25.308499010,'1980-01-01','2022-12-31',2,dataset_id,2), + (191,25.136568010,'1980-01-01','2022-12-31',2,dataset_id,2), + (196,29.719348600,'1980-01-01','2022-12-31',2,dataset_id,2), + (203,21.831309400,'1980-01-01','2022-12-31',2,dataset_id,2), + (208,20.472936770,'1980-01-01','2022-12-31',2,dataset_id,2), + (233,21.959029830,'1980-01-01','2022-12-31',2,dataset_id,2), + (246,20.224538910,'1980-01-01','2022-12-31',2,dataset_id,2), + (250,23.422826390,'1980-01-01','2022-12-31',2,dataset_id,2), + (275,28.868441270,'1980-01-01','2022-12-31',2,dataset_id,2), + (268,22.270145030,'1980-01-01','2022-12-31',2,dataset_id,2), + (276,22.270713210,'1980-01-01','2022-12-31',2,dataset_id,2), + (300,26.897072920,'1980-01-01','2022-12-31',2,dataset_id,2), + (348,25.366767730,'1980-01-01','2022-12-31',2,dataset_id,2), + (352,11.232087610,'1980-01-01','2022-12-31',2,dataset_id,2), + (364,32.539138150,'1980-01-01','2022-12-31',2,dataset_id,2), + (368,38.126621940,'1980-01-01','2022-12-31',2,dataset_id,2), + (372,17.834897460,'1980-01-01','2022-12-31',2,dataset_id,2), + (376,29.393774030,'1980-01-01','2022-12-31',2,dataset_id,2), + (380,25.441655490,'1980-01-01','2022-12-31',2,dataset_id,2), + (400,31.694987840,'1980-01-01','2022-12-31',2,dataset_id,2), + (414,39.750014700,'1980-01-01','2022-12-31',2,dataset_id,2), + (428,21.900297730,'1980-01-01','2022-12-31',2,dataset_id,2), + (422,27.087772010,'1980-01-01','2022-12-31',2,dataset_id,2), + (440,21.979183870,'1980-01-01','2022-12-31',2,dataset_id,2), + (442,22.296927670,'1980-01-01','2022-12-31',2,dataset_id,2), + (807,25.055382880,'1980-01-01','2022-12-31',2,dataset_id,2), + (498,25.921740510,'1980-01-01','2022-12-31',2,dataset_id,2), + (499,22.408560550,'1980-01-01','2022-12-31',2,dataset_id,2), + (528,21.899839100,'1980-01-01','2022-12-31',2,dataset_id,2), + (578,16.938298450,'1980-01-01','2022-12-31',2,dataset_id,2), + (512,35.820712370,'1980-01-01','2022-12-31',2,dataset_id,2), + (616,22.366687930,'1980-01-01','2022-12-31',2,dataset_id,2), + (634,36.977809470,'1980-01-01','2022-12-31',2,dataset_id,2), + (642,24.281123350,'1980-01-01','2022-12-31',2,dataset_id,2), + (682,37.134161230,'1980-01-01','2022-12-31',2,dataset_id,2), + (688,24.823876110,'1980-01-01','2022-12-31',2,dataset_id,2), + (703,22.036790930,'1980-01-01','2022-12-31',2,dataset_id,2), + (705,22.978214580,'1980-01-01','2022-12-31',2,dataset_id,2), + (724,26.237115940,'1980-01-01','2022-12-31',2,dataset_id,2), + (752,19.198820940,'1980-01-01','2022-12-31',2,dataset_id,2), + (756,18.558446060,'1980-01-01','2022-12-31',2,dataset_id,2), + (760,32.780909010,'1980-01-01','2022-12-31',2,dataset_id,2), + (792,26.064354030,'1980-01-01','2022-12-31',2,dataset_id,2), + (804,24.710758420,'1980-01-01','2022-12-31',2,dataset_id,2), + (784,38.069768690,'1980-01-01','2022-12-31',2,dataset_id,2), + (826,17.991775300,'1980-01-01','2022-12-31',2,dataset_id,2), + (887,32.555298460,'1980-01-01','2022-12-31',2,dataset_id,2), + (84,28.735171920,'1980-01-01','2022-12-31',2,dataset_id,2), + (124,16.652835950,'1980-01-01','2022-12-31',2,dataset_id,2), + (170,26.858404860,'1980-01-01','2022-12-31',2,dataset_id,2), + (188,25.385560030,'1980-01-01','2022-12-31',2,dataset_id,2), + (192,29.149282240,'1980-01-01','2022-12-31',2,dataset_id,2), + (214,26.794387720,'1980-01-01','2022-12-31',2,dataset_id,2), + (222,28.349094780,'1980-01-01','2022-12-31',2,dataset_id,2), + (304,-1.689284721,'1980-01-01','2022-12-31',2,dataset_id,2), + (320,26.933535790,'1980-01-01','2022-12-31',2,dataset_id,2), + (332,27.919412660,'1980-01-01','2022-12-31',2,dataset_id,2), + (340,27.051954540,'1980-01-01','2022-12-31',2,dataset_id,2), + (388,28.362062170,'1980-01-01','2022-12-31',2,dataset_id,2), + (484,27.843803750,'1980-01-01','2022-12-31',2,dataset_id,2), + (558,27.927255060,'1980-01-01','2022-12-31',2,dataset_id,2), + (591,27.100095250,'1980-01-01','2022-12-31',2,dataset_id,2), + (630,27.654816940,'1980-01-01','2022-12-31',2,dataset_id,2), + (44,28.663955100,'1980-01-01','2022-12-31',2,dataset_id,2), + (840,25.121051850,'1980-01-01','2022-12-31',2,dataset_id,2), + (10,-16.213367220,'1980-01-01','2022-12-31',2,dataset_id,2), + (36,31.821208300,'1980-01-01','2022-12-31',2,dataset_id,2), + (96,27.807949960,'1980-01-01','2022-12-31',2,dataset_id,2), + (242,27.230549890,'1980-01-01','2022-12-31',2,dataset_id,2), + (360,27.032236450,'1980-01-01','2022-12-31',2,dataset_id,2), + (458,27.734597420,'1980-01-01','2022-12-31',2,dataset_id,2), + (540,27.166596430,'1980-01-01','2022-12-31',2,dataset_id,2), + (554,18.288532070,'1980-01-01','2022-12-31',2,dataset_id,2), + (598,25.213209560,'1980-01-01','2022-12-31',2,dataset_id,2), + (608,28.397273320,'1980-01-01','2022-12-31',2,dataset_id,2), + (90,27.697279330,'1980-01-01','2022-12-31',2,dataset_id,2), + (626,27.616940790,'1980-01-01','2022-12-31',2,dataset_id,2), + (548,27.826922150,'1980-01-01','2022-12-31',2,dataset_id,2), + (32,24.056641560,'1980-01-01','2022-12-31',2,dataset_id,2), + (68,24.464712270,'1980-01-01','2022-12-31',2,dataset_id,2), + (76,28.714248110,'1980-01-01','2022-12-31',2,dataset_id,2), + (152,15.693790670,'1980-01-01','2022-12-31',2,dataset_id,2), + (218,23.095126780,'1980-01-01','2022-12-31',2,dataset_id,2), + (238,11.993023360,'1980-01-01','2022-12-31',2,dataset_id,2), + (328,27.907789480,'1980-01-01','2022-12-31',2,dataset_id,2), + (740,28.892673060,'1980-01-01','2022-12-31',2,dataset_id,2), + (600,30.860593700,'1980-01-01','2022-12-31',2,dataset_id,2), + (604,21.461022410,'1980-01-01','2022-12-31',2,dataset_id,2), + (780,27.996801680,'1980-01-01','2022-12-31',2,dataset_id,2), + (858,26.008238610,'1980-01-01','2022-12-31',2,dataset_id,2), + (862,28.774293410,'1980-01-01','2022-12-31',2,dataset_id,2); +end $$; \ No newline at end of file diff --git a/backend/migrations/20240815121614_add-merra-era-pet-projection-data.sql b/backend/migrations/20240815121614_add-merra-era-pet-projection-data.sql new file mode 100644 index 00000000..2747a7cc --- /dev/null +++ b/backend/migrations/20240815121614_add-merra-era-pet-projection-data.sql @@ -0,0 +1,1053 @@ +do $$ +DECLARE + dataset_id int; +BEGIN + SELECT id INTO dataset_id FROM dataset WHERE short_name = 'pet_MERRA2_ERA5'; + + INSERT INTO data (id,value,start_date,end_date,source,dataset,geography_type) + VALUES + (12,2072.324274000,'2001-01-01','2022-12-31',1,dataset_id,2), + (24,1778.466814000,'2001-01-01','2022-12-31',1,dataset_id,2), + (204,1637.027928000,'2001-01-01','2022-12-31',1,dataset_id,2), + (72,2047.770520000,'2001-01-01','2022-12-31',1,dataset_id,2), + (854,2033.519173000,'2001-01-01','2022-12-31',1,dataset_id,2), + (108,1401.076638000,'2001-01-01','2022-12-31',1,dataset_id,2), + (120,1352.389915000,'2001-01-01','2022-12-31',1,dataset_id,2), + (140,1691.126447000,'2001-01-01','2022-12-31',1,dataset_id,2), + (148,2290.996891000,'2001-01-01','2022-12-31',1,dataset_id,2), + (818,2009.806834000,'2001-01-01','2022-12-31',1,dataset_id,2), + (566,1676.096334000,'2001-01-01','2022-12-31',1,dataset_id,2), + (178,1165.671365000,'2001-01-01','2022-12-31',1,dataset_id,2), + (180,1301.755222000,'2001-01-01','2022-12-31',1,dataset_id,2), + (384,1459.783769000,'2001-01-01','2022-12-31',1,dataset_id,2), + (262,1917.632543000,'2001-01-01','2022-12-31',1,dataset_id,2), + (226,753.328273100,'2001-01-01','2022-12-31',1,dataset_id,2), + (232,1941.598799000,'2001-01-01','2022-12-31',1,dataset_id,2), + (231,1800.121210000,'2001-01-01','2022-12-31',1,dataset_id,2), + (260,163.572883400,'2001-01-01','2022-12-31',1,dataset_id,2), + (266,996.668887700,'2001-01-01','2022-12-31',1,dataset_id,2), + (288,1460.872472000,'2001-01-01','2022-12-31',1,dataset_id,2), + (324,1635.094911000,'2001-01-01','2022-12-31',1,dataset_id,2), + (624,1587.446199000,'2001-01-01','2022-12-31',1,dataset_id,2), + (404,1879.528925000,'2001-01-01','2022-12-31',1,dataset_id,2), + (426,1383.284869000,'2001-01-01','2022-12-31',1,dataset_id,2), + (430,1043.284942000,'2001-01-01','2022-12-31',1,dataset_id,2), + (434,1985.765929000,'2001-01-01','2022-12-31',1,dataset_id,2), + (450,1262.666566000,'2001-01-01','2022-12-31',1,dataset_id,2), + (454,1343.026701000,'2001-01-01','2022-12-31',1,dataset_id,2), + (466,2264.619635000,'2001-01-01','2022-12-31',1,dataset_id,2), + (478,2279.842156000,'2001-01-01','2022-12-31',1,dataset_id,2), + (504,1633.170911000,'2001-01-01','2022-12-31',1,dataset_id,2), + (508,1598.437175000,'2001-01-01','2022-12-31',1,dataset_id,2), + (516,2095.458616000,'2001-01-01','2022-12-31',1,dataset_id,2), + (562,2302.592540000,'2001-01-01','2022-12-31',1,dataset_id,2), + (646,1331.891735000,'2001-01-01','2022-12-31',1,dataset_id,2), + (686,2072.145494000,'2001-01-01','2022-12-31',1,dataset_id,2), + (694,1263.192136000,'2001-01-01','2022-12-31',1,dataset_id,2), + (706,1942.502403000,'2001-01-01','2022-12-31',1,dataset_id,2), + (729,2306.009758000,'2001-01-01','2022-12-31',1,dataset_id,2), + (834,1539.221644000,'2001-01-01','2022-12-31',1,dataset_id,2), + (710,1760.663804000,'2001-01-01','2022-12-31',1,dataset_id,2), + (728,1963.212568000,'2001-01-01','2022-12-31',1,dataset_id,2), + (748,1717.319885000,'2001-01-01','2022-12-31',1,dataset_id,2), + (270,1889.553461000,'2001-01-01','2022-12-31',1,dataset_id,2), + (768,1460.390366000,'2001-01-01','2022-12-31',1,dataset_id,2), + (788,1578.516527000,'2001-01-01','2022-12-31',1,dataset_id,2), + (800,1458.108255000,'2001-01-01','2022-12-31',1,dataset_id,2), + (732,2072.820136000,'2001-01-01','2022-12-31',1,dataset_id,2), + (894,1713.204717000,'2001-01-01','2022-12-31',1,dataset_id,2), + (716,1864.284634000,'2001-01-01','2022-12-31',1,dataset_id,2), + (620,1187.307232000,'2001-01-01','2022-12-31',1,dataset_id,2), + (4,1571.942810000,'2001-01-01','2022-12-31',1,dataset_id,2), + (50,1121.791098000,'2001-01-01','2022-12-31',1,dataset_id,2), + (64,854.591142100,'2001-01-01','2022-12-31',1,dataset_id,2), + (104,1533.740659000,'2001-01-01','2022-12-31',1,dataset_id,2), + (116,1370.873446000,'2001-01-01','2022-12-31',1,dataset_id,2), + (156,972.244511000,'2001-01-01','2022-12-31',1,dataset_id,2), + (356,1621.105584000,'2001-01-01','2022-12-31',1,dataset_id,2), + (392,615.696710900,'2001-01-01','2022-12-31',1,dataset_id,2), + (398,1050.542877000,'2001-01-01','2022-12-31',1,dataset_id,2), + (417,852.195273900,'2001-01-01','2022-12-31',1,dataset_id,2), + (418,1381.555020000,'2001-01-01','2022-12-31',1,dataset_id,2), + (496,879.256255900,'2001-01-01','2022-12-31',1,dataset_id,2), + (524,1038.555088000,'2001-01-01','2022-12-31',1,dataset_id,2), + (408,720.063490500,'2001-01-01','2022-12-31',1,dataset_id,2), + (586,1849.610765000,'2001-01-01','2022-12-31',1,dataset_id,2), + (643,456.692985400,'2001-01-01','2022-12-31',1,dataset_id,2), + (410,743.621680500,'2001-01-01','2022-12-31',1,dataset_id,2), + (144,917.753800700,'2001-01-01','2022-12-31',1,dataset_id,2), + (158,676.987441500,'2001-01-01','2022-12-31',1,dataset_id,2), + (762,905.239494800,'2001-01-01','2022-12-31',1,dataset_id,2), + (764,1277.772670000,'2001-01-01','2022-12-31',1,dataset_id,2), + (795,1553.298345000,'2001-01-01','2022-12-31',1,dataset_id,2), + (860,1367.061188000,'2001-01-01','2022-12-31',1,dataset_id,2), + (704,1154.605802000,'2001-01-01','2022-12-31',1,dataset_id,2), + (8,928.401274500,'2001-01-01','2022-12-31',1,dataset_id,2), + (51,1057.997787000,'2001-01-01','2022-12-31',1,dataset_id,2), + (40,725.862017700,'2001-01-01','2022-12-31',1,dataset_id,2), + (31,1156.548298000,'2001-01-01','2022-12-31',1,dataset_id,2), + (112,681.817616200,'2001-01-01','2022-12-31',1,dataset_id,2), + (56,704.722739600,'2001-01-01','2022-12-31',1,dataset_id,2), + (70,924.505445900,'2001-01-01','2022-12-31',1,dataset_id,2), + (100,1050.670324000,'2001-01-01','2022-12-31',1,dataset_id,2), + (191,875.702135500,'2001-01-01','2022-12-31',1,dataset_id,2), + (196,754.725802900,'2001-01-01','2022-12-31',1,dataset_id,2), + (203,775.723318600,'2001-01-01','2022-12-31',1,dataset_id,2), + (208,404.115447400,'2001-01-01','2022-12-31',1,dataset_id,2), + (233,473.198219400,'2001-01-01','2022-12-31',1,dataset_id,2), + (246,396.758465000,'2001-01-01','2022-12-31',1,dataset_id,2), + (250,844.017845500,'2001-01-01','2022-12-31',1,dataset_id,2), + (275,1221.370408000,'2001-01-01','2022-12-31',1,dataset_id,2), + (268,893.310118300,'2001-01-01','2022-12-31',1,dataset_id,2), + (276,730.052487000,'2001-01-01','2022-12-31',1,dataset_id,2), + (300,950.060162900,'2001-01-01','2022-12-31',1,dataset_id,2), + (348,977.701771500,'2001-01-01','2022-12-31',1,dataset_id,2), + (352,178.850263100,'2001-01-01','2022-12-31',1,dataset_id,2), + (364,1765.196558000,'2001-01-01','2022-12-31',1,dataset_id,2), + (368,1966.102522000,'2001-01-01','2022-12-31',1,dataset_id,2), + (372,425.163868700,'2001-01-01','2022-12-31',1,dataset_id,2), + (376,1610.710313000,'2001-01-01','2022-12-31',1,dataset_id,2), + (380,877.858968600,'2001-01-01','2022-12-31',1,dataset_id,2), + (400,1922.801184000,'2001-01-01','2022-12-31',1,dataset_id,2), + (414,2033.402036000,'2001-01-01','2022-12-31',1,dataset_id,2), + (428,557.009060400,'2001-01-01','2022-12-31',1,dataset_id,2), + (422,1221.931160000,'2001-01-01','2022-12-31',1,dataset_id,2), + (440,633.975532700,'2001-01-01','2022-12-31',1,dataset_id,2), + (442,740.233462100,'2001-01-01','2022-12-31',1,dataset_id,2), + (807,1035.894862000,'2001-01-01','2022-12-31',1,dataset_id,2), + (498,993.613048600,'2001-01-01','2022-12-31',1,dataset_id,2), + (499,799.074307000,'2001-01-01','2022-12-31',1,dataset_id,2), + (528,602.778565100,'2001-01-01','2022-12-31',1,dataset_id,2), + (578,300.051774500,'2001-01-01','2022-12-31',1,dataset_id,2), + (512,2210.293881000,'2001-01-01','2022-12-31',1,dataset_id,2), + (616,735.933527700,'2001-01-01','2022-12-31',1,dataset_id,2), + (634,1736.300837000,'2001-01-01','2022-12-31',1,dataset_id,2), + (642,947.304409500,'2001-01-01','2022-12-31',1,dataset_id,2), + (682,2255.581206000,'2001-01-01','2022-12-31',1,dataset_id,2), + (688,1014.192045000,'2001-01-01','2022-12-31',1,dataset_id,2), + (703,818.288504400,'2001-01-01','2022-12-31',1,dataset_id,2), + (705,826.229827000,'2001-01-01','2022-12-31',1,dataset_id,2), + (724,1176.181811000,'2001-01-01','2022-12-31',1,dataset_id,2), + (752,411.519372300,'2001-01-01','2022-12-31',1,dataset_id,2), + (756,611.594245100,'2001-01-01','2022-12-31',1,dataset_id,2), + (760,1717.825492000,'2001-01-01','2022-12-31',1,dataset_id,2), + (792,1170.201854000,'2001-01-01','2022-12-31',1,dataset_id,2), + (804,864.246377700,'2001-01-01','2022-12-31',1,dataset_id,2), + (784,2126.572941000,'2001-01-01','2022-12-31',1,dataset_id,2), + (826,455.808892000,'2001-01-01','2022-12-31',1,dataset_id,2), + (887,2116.650958000,'2001-01-01','2022-12-31',1,dataset_id,2), + (84,868.079544800,'2001-01-01','2022-12-31',1,dataset_id,2), + (124,430.067696200,'2001-01-01','2022-12-31',1,dataset_id,2), + (170,967.096303800,'2001-01-01','2022-12-31',1,dataset_id,2), + (188,790.346670000,'2001-01-01','2022-12-31',1,dataset_id,2), + (192,1067.378207000,'2001-01-01','2022-12-31',1,dataset_id,2), + (214,1190.518414000,'2001-01-01','2022-12-31',1,dataset_id,2), + (222,1198.146701000,'2001-01-01','2022-12-31',1,dataset_id,2), + (304,72.586877000,'2001-01-01','2022-12-31',1,dataset_id,2), + (320,1142.484786000,'2001-01-01','2022-12-31',1,dataset_id,2), + (332,1061.239365000,'2001-01-01','2022-12-31',1,dataset_id,2), + (340,1208.515443000,'2001-01-01','2022-12-31',1,dataset_id,2), + (388,579.408698200,'2001-01-01','2022-12-31',1,dataset_id,2), + (484,1574.633298000,'2001-01-01','2022-12-31',1,dataset_id,2), + (558,1123.027247000,'2001-01-01','2022-12-31',1,dataset_id,2), + (591,629.381911300,'2001-01-01','2022-12-31',1,dataset_id,2), + (630,631.449086600,'2001-01-01','2022-12-31',1,dataset_id,2), + (44,309.889161500,'2001-01-01','2022-12-31',1,dataset_id,2), + (840,1024.885355000,'2001-01-01','2022-12-31',1,dataset_id,2), + (10,15.930240720,'2001-01-01','2022-12-31',1,dataset_id,2), + (36,1877.576315000,'2001-01-01','2022-12-31',1,dataset_id,2), + (96,531.093597600,'2001-01-01','2022-12-31',1,dataset_id,2), + (242,411.697177000,'2001-01-01','2022-12-31',1,dataset_id,2), + (360,618.174044600,'2001-01-01','2022-12-31',1,dataset_id,2), + (458,646.916576400,'2001-01-01','2022-12-31',1,dataset_id,2), + (540,464.164046400,'2001-01-01','2022-12-31',1,dataset_id,2), + (554,639.919097700,'2001-01-01','2022-12-31',1,dataset_id,2), + (598,718.345453100,'2001-01-01','2022-12-31',1,dataset_id,2), + (608,674.927198800,'2001-01-01','2022-12-31',1,dataset_id,2), + (90,318.982775200,'2001-01-01','2022-12-31',1,dataset_id,2), + (626,830.839084300,'2001-01-01','2022-12-31',1,dataset_id,2), + (548,315.865460800,'2001-01-01','2022-12-31',1,dataset_id,2), + (32,1389.146294000,'2001-01-01','2022-12-31',1,dataset_id,2), + (68,1431.953014000,'2001-01-01','2022-12-31',1,dataset_id,2), + (76,1327.682642000,'2001-01-01','2022-12-31',1,dataset_id,2), + (152,946.373658000,'2001-01-01','2022-12-31',1,dataset_id,2), + (218,1115.904175000,'2001-01-01','2022-12-31',1,dataset_id,2), + (238,294.314319900,'2001-01-01','2022-12-31',1,dataset_id,2), + (328,1141.346979000,'2001-01-01','2022-12-31',1,dataset_id,2), + (740,1096.838731000,'2001-01-01','2022-12-31',1,dataset_id,2), + (600,1705.548122000,'2001-01-01','2022-12-31',1,dataset_id,2), + (604,1161.384516000,'2001-01-01','2022-12-31',1,dataset_id,2), + (780,538.486345600,'2001-01-01','2022-12-31',1,dataset_id,2), + (858,1282.485445000,'2001-01-01','2022-12-31',1,dataset_id,2), + (862,1302.579966000,'2001-01-01','2022-12-31',1,dataset_id,2), + (12,2043.901504000,'1980-01-01','2000-12-31',1,dataset_id,2), + (24,1685.575229000,'1980-01-01','2000-12-31',1,dataset_id,2), + (204,1688.773666000,'1980-01-01','2000-12-31',1,dataset_id,2), + (72,2060.947463000,'1980-01-01','2000-12-31',1,dataset_id,2), + (854,2036.732493000,'1980-01-01','2000-12-31',1,dataset_id,2), + (108,1461.020183000,'1980-01-01','2000-12-31',1,dataset_id,2), + (120,1221.393241000,'1980-01-01','2000-12-31',1,dataset_id,2), + (140,1518.518611000,'1980-01-01','2000-12-31',1,dataset_id,2), + (148,2253.809225000,'1980-01-01','2000-12-31',1,dataset_id,2), + (818,1985.286068000,'1980-01-01','2000-12-31',1,dataset_id,2), + (566,1610.549636000,'1980-01-01','2000-12-31',1,dataset_id,2), + (178,1083.610020000,'1980-01-01','2000-12-31',1,dataset_id,2), + (180,1143.864742000,'1980-01-01','2000-12-31',1,dataset_id,2), + (384,1420.711665000,'1980-01-01','2000-12-31',1,dataset_id,2), + (262,1836.955027000,'1980-01-01','2000-12-31',1,dataset_id,2), + (226,691.560783100,'1980-01-01','2000-12-31',1,dataset_id,2), + (232,1864.978228000,'1980-01-01','2000-12-31',1,dataset_id,2), + (231,1736.824139000,'1980-01-01','2000-12-31',1,dataset_id,2), + (260,169.344915900,'1980-01-01','2000-12-31',1,dataset_id,2), + (266,877.519824500,'1980-01-01','2000-12-31',1,dataset_id,2), + (288,1482.600717000,'1980-01-01','2000-12-31',1,dataset_id,2), + (324,1509.406790000,'1980-01-01','2000-12-31',1,dataset_id,2), + (624,1590.467283000,'1980-01-01','2000-12-31',1,dataset_id,2), + (404,1895.358848000,'1980-01-01','2000-12-31',1,dataset_id,2), + (426,1341.117485000,'1980-01-01','2000-12-31',1,dataset_id,2), + (430,933.518502900,'1980-01-01','2000-12-31',1,dataset_id,2), + (434,1965.761712000,'1980-01-01','2000-12-31',1,dataset_id,2), + (450,1205.668858000,'1980-01-01','2000-12-31',1,dataset_id,2), + (454,1336.428539000,'1980-01-01','2000-12-31',1,dataset_id,2), + (466,2243.449914000,'1980-01-01','2000-12-31',1,dataset_id,2), + (478,2269.331170000,'1980-01-01','2000-12-31',1,dataset_id,2), + (504,1620.171720000,'1980-01-01','2000-12-31',1,dataset_id,2), + (508,1601.340675000,'1980-01-01','2000-12-31',1,dataset_id,2), + (516,2121.364803000,'1980-01-01','2000-12-31',1,dataset_id,2), + (562,2291.096213000,'1980-01-01','2000-12-31',1,dataset_id,2), + (646,1424.536402000,'1980-01-01','2000-12-31',1,dataset_id,2), + (686,2110.616889000,'1980-01-01','2000-12-31',1,dataset_id,2), + (694,1072.506856000,'1980-01-01','2000-12-31',1,dataset_id,2), + (706,1949.936419000,'1980-01-01','2000-12-31',1,dataset_id,2), + (729,2247.579504000,'1980-01-01','2000-12-31',1,dataset_id,2), + (834,1624.515638000,'1980-01-01','2000-12-31',1,dataset_id,2), + (710,1724.554743000,'1980-01-01','2000-12-31',1,dataset_id,2), + (728,1825.867776000,'1980-01-01','2000-12-31',1,dataset_id,2), + (748,1603.623629000,'1980-01-01','2000-12-31',1,dataset_id,2), + (270,1944.298194000,'1980-01-01','2000-12-31',1,dataset_id,2), + (768,1511.634511000,'1980-01-01','2000-12-31',1,dataset_id,2), + (788,1556.235653000,'1980-01-01','2000-12-31',1,dataset_id,2), + (800,1395.730750000,'1980-01-01','2000-12-31',1,dataset_id,2), + (732,2062.320479000,'1980-01-01','2000-12-31',1,dataset_id,2), + (894,1704.254879000,'1980-01-01','2000-12-31',1,dataset_id,2), + (716,1866.633911000,'1980-01-01','2000-12-31',1,dataset_id,2), + (620,1160.426513000,'1980-01-01','2000-12-31',1,dataset_id,2), + (4,1584.322017000,'1980-01-01','2000-12-31',1,dataset_id,2), + (50,1423.362503000,'1980-01-01','2000-12-31',1,dataset_id,2), + (64,923.245188600,'1980-01-01','2000-12-31',1,dataset_id,2), + (104,1588.028666000,'1980-01-01','2000-12-31',1,dataset_id,2), + (116,1352.226063000,'1980-01-01','2000-12-31',1,dataset_id,2), + (156,988.440693700,'1980-01-01','2000-12-31',1,dataset_id,2), + (356,1707.574717000,'1980-01-01','2000-12-31',1,dataset_id,2), + (392,635.730566800,'1980-01-01','2000-12-31',1,dataset_id,2), + (398,1052.696140000,'1980-01-01','2000-12-31',1,dataset_id,2), + (417,858.287879100,'1980-01-01','2000-12-31',1,dataset_id,2), + (418,1342.301360000,'1980-01-01','2000-12-31',1,dataset_id,2), + (496,854.156057800,'1980-01-01','2000-12-31',1,dataset_id,2), + (524,1196.766814000,'1980-01-01','2000-12-31',1,dataset_id,2), + (408,732.980973200,'1980-01-01','2000-12-31',1,dataset_id,2), + (586,1918.741063000,'1980-01-01','2000-12-31',1,dataset_id,2), + (643,445.158221600,'1980-01-01','2000-12-31',1,dataset_id,2), + (410,732.348324700,'1980-01-01','2000-12-31',1,dataset_id,2), + (144,1072.850891000,'1980-01-01','2000-12-31',1,dataset_id,2), + (158,676.735507000,'1980-01-01','2000-12-31',1,dataset_id,2), + (762,903.709064400,'1980-01-01','2000-12-31',1,dataset_id,2), + (764,1326.150001000,'1980-01-01','2000-12-31',1,dataset_id,2), + (795,1551.201864000,'1980-01-01','2000-12-31',1,dataset_id,2), + (860,1353.511136000,'1980-01-01','2000-12-31',1,dataset_id,2), + (704,1237.764512000,'1980-01-01','2000-12-31',1,dataset_id,2), + (8,930.825843200,'1980-01-01','2000-12-31',1,dataset_id,2), + (51,1059.996810000,'1980-01-01','2000-12-31',1,dataset_id,2), + (40,699.375245800,'1980-01-01','2000-12-31',1,dataset_id,2), + (31,1121.761367000,'1980-01-01','2000-12-31',1,dataset_id,2), + (112,648.855916200,'1980-01-01','2000-12-31',1,dataset_id,2), + (56,659.289744900,'1980-01-01','2000-12-31',1,dataset_id,2), + (70,886.696006700,'1980-01-01','2000-12-31',1,dataset_id,2), + (100,1052.084450000,'1980-01-01','2000-12-31',1,dataset_id,2), + (191,841.239890100,'1980-01-01','2000-12-31',1,dataset_id,2), + (196,771.925596300,'1980-01-01','2000-12-31',1,dataset_id,2), + (203,733.580300200,'1980-01-01','2000-12-31',1,dataset_id,2), + (208,398.900556300,'1980-01-01','2000-12-31',1,dataset_id,2), + (233,446.088039400,'1980-01-01','2000-12-31',1,dataset_id,2), + (246,377.058172700,'1980-01-01','2000-12-31',1,dataset_id,2), + (250,810.810854600,'1980-01-01','2000-12-31',1,dataset_id,2), + (275,1199.499370000,'1980-01-01','2000-12-31',1,dataset_id,2), + (268,869.462064100,'1980-01-01','2000-12-31',1,dataset_id,2), + (276,681.239727300,'1980-01-01','2000-12-31',1,dataset_id,2), + (300,955.779909300,'1980-01-01','2000-12-31',1,dataset_id,2), + (348,935.044438600,'1980-01-01','2000-12-31',1,dataset_id,2), + (352,184.236065400,'1980-01-01','2000-12-31',1,dataset_id,2), + (364,1744.602248000,'1980-01-01','2000-12-31',1,dataset_id,2), + (368,1946.772270000,'1980-01-01','2000-12-31',1,dataset_id,2), + (372,426.398537100,'1980-01-01','2000-12-31',1,dataset_id,2), + (376,1569.406711000,'1980-01-01','2000-12-31',1,dataset_id,2), + (380,867.918114500,'1980-01-01','2000-12-31',1,dataset_id,2), + (400,1864.300801000,'1980-01-01','2000-12-31',1,dataset_id,2), + (414,1994.759673000,'1980-01-01','2000-12-31',1,dataset_id,2), + (428,523.330843200,'1980-01-01','2000-12-31',1,dataset_id,2), + (422,1193.696609000,'1980-01-01','2000-12-31',1,dataset_id,2), + (440,601.545230800,'1980-01-01','2000-12-31',1,dataset_id,2), + (442,686.248388100,'1980-01-01','2000-12-31',1,dataset_id,2), + (807,1045.073903000,'1980-01-01','2000-12-31',1,dataset_id,2), + (498,947.201503200,'1980-01-01','2000-12-31',1,dataset_id,2), + (499,793.515896500,'1980-01-01','2000-12-31',1,dataset_id,2), + (528,568.238436000,'1980-01-01','2000-12-31',1,dataset_id,2), + (578,295.534932000,'1980-01-01','2000-12-31',1,dataset_id,2), + (512,2215.205349000,'1980-01-01','2000-12-31',1,dataset_id,2), + (616,698.916263300,'1980-01-01','2000-12-31',1,dataset_id,2), + (634,1691.803130000,'1980-01-01','2000-12-31',1,dataset_id,2), + (642,931.155032800,'1980-01-01','2000-12-31',1,dataset_id,2), + (682,2220.817448000,'1980-01-01','2000-12-31',1,dataset_id,2), + (688,1002.720118000,'1980-01-01','2000-12-31',1,dataset_id,2), + (703,775.008600800,'1980-01-01','2000-12-31',1,dataset_id,2), + (705,787.939440900,'1980-01-01','2000-12-31',1,dataset_id,2), + (724,1156.832215000,'1980-01-01','2000-12-31',1,dataset_id,2), + (752,392.844323000,'1980-01-01','2000-12-31',1,dataset_id,2), + (756,591.933219800,'1980-01-01','2000-12-31',1,dataset_id,2), + (760,1687.127668000,'1980-01-01','2000-12-31',1,dataset_id,2), + (792,1151.132100000,'1980-01-01','2000-12-31',1,dataset_id,2), + (804,817.663035600,'1980-01-01','2000-12-31',1,dataset_id,2), + (784,2098.693591000,'1980-01-01','2000-12-31',1,dataset_id,2), + (826,454.278636400,'1980-01-01','2000-12-31',1,dataset_id,2), + (887,2093.261194000,'1980-01-01','2000-12-31',1,dataset_id,2), + (84,1071.247431000,'1980-01-01','2000-12-31',1,dataset_id,2), + (124,437.157507800,'1980-01-01','2000-12-31',1,dataset_id,2), + (170,945.715650700,'1980-01-01','2000-12-31',1,dataset_id,2), + (188,969.994083800,'1980-01-01','2000-12-31',1,dataset_id,2), + (192,1083.587501000,'1980-01-01','2000-12-31',1,dataset_id,2), + (214,1138.101640000,'1980-01-01','2000-12-31',1,dataset_id,2), + (222,1422.441810000,'1980-01-01','2000-12-31',1,dataset_id,2), + (304,68.464602800,'1980-01-01','2000-12-31',1,dataset_id,2), + (320,1369.301030000,'1980-01-01','2000-12-31',1,dataset_id,2), + (332,1065.220064000,'1980-01-01','2000-12-31',1,dataset_id,2), + (340,1475.386136000,'1980-01-01','2000-12-31',1,dataset_id,2), + (388,608.869228000,'1980-01-01','2000-12-31',1,dataset_id,2), + (484,1555.593905000,'1980-01-01','2000-12-31',1,dataset_id,2), + (558,1387.417505000,'1980-01-01','2000-12-31',1,dataset_id,2), + (591,691.788598400,'1980-01-01','2000-12-31',1,dataset_id,2), + (630,583.528171700,'1980-01-01','2000-12-31',1,dataset_id,2), + (44,312.155356800,'1980-01-01','2000-12-31',1,dataset_id,2), + (840,1008.939928000,'1980-01-01','2000-12-31',1,dataset_id,2), + (10,17.121572780,'1980-01-01','2000-12-31',1,dataset_id,2), + (36,1871.075251000,'1980-01-01','2000-12-31',1,dataset_id,2), + (96,594.213258300,'1980-01-01','2000-12-31',1,dataset_id,2), + (242,456.686550100,'1980-01-01','2000-12-31',1,dataset_id,2), + (360,701.857575400,'1980-01-01','2000-12-31',1,dataset_id,2), + (458,707.989499800,'1980-01-01','2000-12-31',1,dataset_id,2), + (540,455.679338300,'1980-01-01','2000-12-31',1,dataset_id,2), + (554,620.453888100,'1980-01-01','2000-12-31',1,dataset_id,2), + (598,773.039749500,'1980-01-01','2000-12-31',1,dataset_id,2), + (608,814.562698700,'1980-01-01','2000-12-31',1,dataset_id,2), + (90,340.653390400,'1980-01-01','2000-12-31',1,dataset_id,2), + (626,839.862305000,'1980-01-01','2000-12-31',1,dataset_id,2), + (548,331.220967800,'1980-01-01','2000-12-31',1,dataset_id,2), + (32,1360.816376000,'1980-01-01','2000-12-31',1,dataset_id,2), + (68,1402.428317000,'1980-01-01','2000-12-31',1,dataset_id,2), + (76,1232.550108000,'1980-01-01','2000-12-31',1,dataset_id,2), + (152,929.083441000,'1980-01-01','2000-12-31',1,dataset_id,2), + (218,1089.791436000,'1980-01-01','2000-12-31',1,dataset_id,2), + (238,299.421208300,'1980-01-01','2000-12-31',1,dataset_id,2), + (328,1173.702540000,'1980-01-01','2000-12-31',1,dataset_id,2), + (740,1076.888063000,'1980-01-01','2000-12-31',1,dataset_id,2), + (600,1728.861814000,'1980-01-01','2000-12-31',1,dataset_id,2), + (604,1169.810877000,'1980-01-01','2000-12-31',1,dataset_id,2), + (780,611.373220300,'1980-01-01','2000-12-31',1,dataset_id,2), + (858,1296.832337000,'1980-01-01','2000-12-31',1,dataset_id,2), + (862,1112.255177000,'1980-01-01','2000-12-31',1,dataset_id,2), + (12,2058.443384000,'1980-01-01','2022-12-31',1,dataset_id,2), + (24,1733.101155000,'1980-01-01','2022-12-31',1,dataset_id,2), + (204,1662.299101000,'1980-01-01','2022-12-31',1,dataset_id,2), + (72,2054.205774000,'1980-01-01','2022-12-31',1,dataset_id,2), + (854,2035.088468000,'1980-01-01','2022-12-31',1,dataset_id,2), + (108,1430.351399000,'1980-01-01','2022-12-31',1,dataset_id,2), + (120,1288.414798000,'1980-01-01','2022-12-31',1,dataset_id,2), + (140,1606.829597000,'1980-01-01','2022-12-31',1,dataset_id,2), + (148,2272.835475000,'1980-01-01','2022-12-31',1,dataset_id,2), + (818,1997.831578000,'1980-01-01','2022-12-31',1,dataset_id,2), + (566,1644.085156000,'1980-01-01','2022-12-31',1,dataset_id,2), + (178,1125.594903000,'1980-01-01','2022-12-31',1,dataset_id,2), + (180,1224.645917000,'1980-01-01','2022-12-31',1,dataset_id,2), + (384,1440.702042000,'1980-01-01','2022-12-31',1,dataset_id,2), + (262,1878.231904000,'1980-01-01','2022-12-31',1,dataset_id,2), + (226,723.162762100,'1980-01-01','2022-12-31',1,dataset_id,2), + (232,1904.179454000,'1980-01-01','2022-12-31',1,dataset_id,2), + (231,1769.208689000,'1980-01-01','2022-12-31',1,dataset_id,2), + (260,166.391779400,'1980-01-01','2022-12-31',1,dataset_id,2), + (266,938.479814200,'1980-01-01','2022-12-31',1,dataset_id,2), + (288,1471.483935000,'1980-01-01','2022-12-31',1,dataset_id,2), + (324,1573.712347000,'1980-01-01','2022-12-31',1,dataset_id,2), + (624,1588.921633000,'1980-01-01','2022-12-31',1,dataset_id,2), + (404,1887.259815000,'1980-01-01','2022-12-31',1,dataset_id,2), + (426,1362.691494000,'1980-01-01','2022-12-31',1,dataset_id,2), + (430,989.678072700,'1980-01-01','2022-12-31',1,dataset_id,2), + (434,1975.996429000,'1980-01-01','2022-12-31',1,dataset_id,2), + (450,1234.830474000,'1980-01-01','2022-12-31',1,dataset_id,2), + (454,1339.804350000,'1980-01-01','2022-12-31',1,dataset_id,2), + (466,2254.280939000,'1980-01-01','2022-12-31',1,dataset_id,2), + (478,2274.708875000,'1980-01-01','2022-12-31',1,dataset_id,2), + (504,1626.822473000,'1980-01-01','2022-12-31',1,dataset_id,2), + (508,1599.855167000,'1980-01-01','2022-12-31',1,dataset_id,2), + (516,2108.110475000,'1980-01-01','2022-12-31',1,dataset_id,2), + (562,2296.978055000,'1980-01-01','2022-12-31',1,dataset_id,2), + (646,1377.136813000,'1980-01-01','2022-12-31',1,dataset_id,2), + (686,2090.933843000,'1980-01-01','2022-12-31',1,dataset_id,2), + (694,1170.066749000,'1980-01-01','2022-12-31',1,dataset_id,2), + (706,1946.132964000,'1980-01-01','2022-12-31',1,dataset_id,2), + (729,2277.474057000,'1980-01-01','2022-12-31',1,dataset_id,2), + (834,1580.876849000,'1980-01-01','2022-12-31',1,dataset_id,2), + (710,1743.029142000,'1980-01-01','2022-12-31',1,dataset_id,2), + (728,1896.137209000,'1980-01-01','2022-12-31',1,dataset_id,2), + (748,1661.793790000,'1980-01-01','2022-12-31',1,dataset_id,2), + (270,1916.289253000,'1980-01-01','2022-12-31',1,dataset_id,2), + (768,1485.416567000,'1980-01-01','2022-12-31',1,dataset_id,2), + (788,1567.635182000,'1980-01-01','2022-12-31',1,dataset_id,2), + (800,1427.644830000,'1980-01-01','2022-12-31',1,dataset_id,2), + (732,2067.692391000,'1980-01-01','2022-12-31',1,dataset_id,2), + (894,1708.833868000,'1980-01-01','2022-12-31',1,dataset_id,2), + (716,1865.431959000,'1980-01-01','2022-12-31',1,dataset_id,2), + (620,1174.179426000,'1980-01-01','2022-12-31',1,dataset_id,2), + (4,1577.988472000,'1980-01-01','2022-12-31',1,dataset_id,2), + (50,1269.070160000,'1980-01-01','2022-12-31',1,dataset_id,2), + (64,888.119861800,'1980-01-01','2022-12-31',1,dataset_id,2), + (104,1560.253410000,'1980-01-01','2022-12-31',1,dataset_id,2), + (116,1361.766585000,'1980-01-01','2022-12-31',1,dataset_id,2), + (156,980.154274100,'1980-01-01','2022-12-31',1,dataset_id,2), + (356,1663.334694000,'1980-01-01','2022-12-31',1,dataset_id,2), + (392,625.480687000,'1980-01-01','2022-12-31',1,dataset_id,2), + (398,1051.594471000,'1980-01-01','2022-12-31',1,dataset_id,2), + (417,855.170732600,'1980-01-01','2022-12-31',1,dataset_id,2), + (418,1362.384623000,'1980-01-01','2022-12-31',1,dataset_id,2), + (496,866.998018400,'1980-01-01','2022-12-31',1,dataset_id,2), + (524,1115.821271000,'1980-01-01','2022-12-31',1,dataset_id,2), + (408,726.372030700,'1980-01-01','2022-12-31',1,dataset_id,2), + (586,1883.372076000,'1980-01-01','2022-12-31',1,dataset_id,2), + (643,451.059728500,'1980-01-01','2022-12-31',1,dataset_id,2), + (410,738.116086400,'1980-01-01','2022-12-31',1,dataset_id,2), + (144,993.498891200,'1980-01-01','2022-12-31',1,dataset_id,2), + (158,676.864402900,'1980-01-01','2022-12-31',1,dataset_id,2), + (762,904.492077600,'1980-01-01','2022-12-31',1,dataset_id,2), + (764,1301.398810000,'1980-01-01','2022-12-31',1,dataset_id,2), + (795,1552.274485000,'1980-01-01','2022-12-31',1,dataset_id,2), + (860,1360.443722000,'1980-01-01','2022-12-31',1,dataset_id,2), + (704,1195.218194000,'1980-01-01','2022-12-31',1,dataset_id,2), + (8,929.585351800,'1980-01-01','2022-12-31',1,dataset_id,2), + (51,1058.974057000,'1980-01-01','2022-12-31',1,dataset_id,2), + (40,712.926618900,'1980-01-01','2022-12-31',1,dataset_id,2), + (31,1139.559341000,'1980-01-01','2022-12-31',1,dataset_id,2), + (112,665.720043800,'1980-01-01','2022-12-31',1,dataset_id,2), + (56,682.534527500,'1980-01-01','2022-12-31',1,dataset_id,2), + (70,906.040375000,'1980-01-01','2022-12-31',1,dataset_id,2), + (100,1051.360945000,'1980-01-01','2022-12-31',1,dataset_id,2), + (191,858.871738500,'1980-01-01','2022-12-31',1,dataset_id,2), + (196,763.125692600,'1980-01-01','2022-12-31',1,dataset_id,2), + (203,755.141847800,'1980-01-01','2022-12-31',1,dataset_id,2), + (208,401.568638500,'1980-01-01','2022-12-31',1,dataset_id,2), + (233,459.958361000,'1980-01-01','2022-12-31',1,dataset_id,2), + (246,387.137391700,'1980-01-01','2022-12-31',1,dataset_id,2), + (250,827.800476800,'1980-01-01','2022-12-31',1,dataset_id,2), + (275,1210.689217000,'1980-01-01','2022-12-31',1,dataset_id,2), + (268,881.663395800,'1980-01-01','2022-12-31',1,dataset_id,2), + (276,706.213697300,'1980-01-01','2022-12-31',1,dataset_id,2), + (300,952.853525100,'1980-01-01','2022-12-31',1,dataset_id,2), + (348,956.869127900,'1980-01-01','2022-12-31',1,dataset_id,2), + (352,181.480538500,'1980-01-01','2022-12-31',1,dataset_id,2), + (364,1755.138871000,'1980-01-01','2022-12-31',1,dataset_id,2), + (368,1956.662170000,'1980-01-01','2022-12-31',1,dataset_id,2), + (372,425.766846000,'1980-01-01','2022-12-31',1,dataset_id,2), + (376,1590.538810000,'1980-01-01','2022-12-31',1,dataset_id,2), + (380,873.004134300,'1980-01-01','2022-12-31',1,dataset_id,2), + (400,1894.231234000,'1980-01-01','2022-12-31',1,dataset_id,2), + (414,2014.530213000,'1980-01-01','2022-12-31',1,dataset_id,2), + (428,540.561554800,'1980-01-01','2022-12-31',1,dataset_id,2), + (422,1208.142203000,'1980-01-01','2022-12-31',1,dataset_id,2), + (440,618.137480700,'1980-01-01','2022-12-31',1,dataset_id,2), + (442,713.868652000,'1980-01-01','2022-12-31',1,dataset_id,2), + (807,1040.377649000,'1980-01-01','2022-12-31',1,dataset_id,2), + (498,970.946954800,'1980-01-01','2022-12-31',1,dataset_id,2), + (499,796.359726600,'1980-01-01','2022-12-31',1,dataset_id,2), + (528,585.910119800,'1980-01-01','2022-12-31',1,dataset_id,2), + (578,297.845874700,'1980-01-01','2022-12-31',1,dataset_id,2), + (512,2212.692505000,'1980-01-01','2022-12-31',1,dataset_id,2), + (616,717.855331900,'1980-01-01','2022-12-31',1,dataset_id,2), + (634,1714.569420000,'1980-01-01','2022-12-31',1,dataset_id,2), + (642,939.417504400,'1980-01-01','2022-12-31',1,dataset_id,2), + (682,2238.603556000,'1980-01-01','2022-12-31',1,dataset_id,2), + (688,1008.589480000,'1980-01-01','2022-12-31',1,dataset_id,2), + (703,797.151810300,'1980-01-01','2022-12-31',1,dataset_id,2), + (705,807.529871100,'1980-01-01','2022-12-31',1,dataset_id,2), + (724,1166.732006000,'1980-01-01','2022-12-31',1,dataset_id,2), + (752,402.399000000,'1980-01-01','2022-12-31',1,dataset_id,2), + (756,601.992344800,'1980-01-01','2022-12-31',1,dataset_id,2), + (760,1702.833533000,'1980-01-01','2022-12-31',1,dataset_id,2), + (792,1160.888719000,'1980-01-01','2022-12-31',1,dataset_id,2), + (804,841.496374900,'1980-01-01','2022-12-31',1,dataset_id,2), + (784,2112.957420000,'1980-01-01','2022-12-31',1,dataset_id,2), + (826,455.061556800,'1980-01-01','2022-12-31',1,dataset_id,2), + (887,2105.228056000,'1980-01-01','2022-12-31',1,dataset_id,2), + (84,967.301093800,'1980-01-01','2022-12-31',1,dataset_id,2), + (124,433.530162400,'1980-01-01','2022-12-31',1,dataset_id,2), + (170,956.654588400,'1980-01-01','2022-12-31',1,dataset_id,2), + (188,878.081449200,'1980-01-01','2022-12-31',1,dataset_id,2), + (192,1075.294369000,'1980-01-01','2022-12-31',1,dataset_id,2), + (214,1164.919525000,'1980-01-01','2022-12-31',1,dataset_id,2), + (222,1307.686181000,'1980-01-01','2022-12-31',1,dataset_id,2), + (304,70.573673230,'1980-01-01','2022-12-31',1,dataset_id,2), + (320,1253.255504000,'1980-01-01','2022-12-31',1,dataset_id,2), + (332,1063.183436000,'1980-01-01','2022-12-31',1,dataset_id,2), + (340,1338.847634000,'1980-01-01','2022-12-31',1,dataset_id,2), + (388,593.796406400,'1980-01-01','2022-12-31',1,dataset_id,2), + (484,1565.334988000,'1980-01-01','2022-12-31',1,dataset_id,2), + (558,1252.148072000,'1980-01-01','2022-12-31',1,dataset_id,2), + (591,659.859593100,'1980-01-01','2022-12-31',1,dataset_id,2), + (630,608.045844300,'1980-01-01','2022-12-31',1,dataset_id,2), + (44,310.995903000,'1980-01-01','2022-12-31',1,dataset_id,2), + (840,1017.098052000,'1980-01-01','2022-12-31',1,dataset_id,2), + (10,16.512054050,'1980-01-01','2022-12-31',1,dataset_id,2), + (36,1874.401381000,'1980-01-01','2022-12-31',1,dataset_id,2), + (96,561.919470000,'1980-01-01','2022-12-31',1,dataset_id,2), + (242,433.668731100,'1980-01-01','2022-12-31',1,dataset_id,2), + (360,659.042745700,'1980-01-01','2022-12-31',1,dataset_id,2), + (458,676.742886700,'1980-01-01','2022-12-31',1,dataset_id,2), + (540,460.020350900,'1980-01-01','2022-12-31',1,dataset_id,2), + (554,630.412833400,'1980-01-01','2022-12-31',1,dataset_id,2), + (598,745.056623300,'1980-01-01','2022-12-31',1,dataset_id,2), + (608,743.121279000,'1980-01-01','2022-12-31',1,dataset_id,2), + (90,329.566096900,'1980-01-01','2022-12-31',1,dataset_id,2), + (626,835.245769800,'1980-01-01','2022-12-31',1,dataset_id,2), + (548,323.364661100,'1980-01-01','2022-12-31',1,dataset_id,2), + (32,1375.310752000,'1980-01-01','2022-12-31',1,dataset_id,2), + (68,1417.533979000,'1980-01-01','2022-12-31',1,dataset_id,2), + (76,1281.222568000,'1980-01-01','2022-12-31',1,dataset_id,2), + (152,937.929595500,'1980-01-01','2022-12-31',1,dataset_id,2), + (218,1103.151444000,'1980-01-01','2022-12-31',1,dataset_id,2), + (238,296.808381000,'1980-01-01','2022-12-31',1,dataset_id,2), + (328,1157.148533000,'1980-01-01','2022-12-31',1,dataset_id,2), + (740,1087.095378000,'1980-01-01','2022-12-31',1,dataset_id,2), + (600,1716.933881000,'1980-01-01','2022-12-31',1,dataset_id,2), + (604,1165.499718000,'1980-01-01','2022-12-31',1,dataset_id,2), + (780,574.082270900,'1980-01-01','2022-12-31',1,dataset_id,2), + (858,1289.492066000,'1980-01-01','2022-12-31',1,dataset_id,2), + (862,1209.630649000,'1980-01-01','2022-12-31',1,dataset_id,2), + (12,1925.163463000,'2001-01-01','2022-12-31',2,dataset_id,2), + (24,1507.625907000,'2001-01-01','2022-12-31',2,dataset_id,2), + (204,1578.885282000,'2001-01-01','2022-12-31',2,dataset_id,2), + (72,1811.012474000,'2001-01-01','2022-12-31',2,dataset_id,2), + (854,1853.899376000,'2001-01-01','2022-12-31',2,dataset_id,2), + (108,1136.843703000,'2001-01-01','2022-12-31',2,dataset_id,2), + (120,1354.812704000,'2001-01-01','2022-12-31',2,dataset_id,2), + (140,1577.517467000,'2001-01-01','2022-12-31',2,dataset_id,2), + (148,2073.606884000,'2001-01-01','2022-12-31',2,dataset_id,2), + (818,1803.208956000,'2001-01-01','2022-12-31',2,dataset_id,2), + (566,1620.800050000,'2001-01-01','2022-12-31',2,dataset_id,2), + (178,1225.665207000,'2001-01-01','2022-12-31',2,dataset_id,2), + (180,1289.248921000,'2001-01-01','2022-12-31',2,dataset_id,2), + (384,1432.601005000,'2001-01-01','2022-12-31',2,dataset_id,2), + (262,1732.044793000,'2001-01-01','2022-12-31',2,dataset_id,2), + (226,791.140556100,'2001-01-01','2022-12-31',2,dataset_id,2), + (232,1763.844776000,'2001-01-01','2022-12-31',2,dataset_id,2), + (231,1592.314741000,'2001-01-01','2022-12-31',2,dataset_id,2), + (260,173.244273000,'2001-01-01','2022-12-31',2,dataset_id,2), + (266,1059.189655000,'2001-01-01','2022-12-31',2,dataset_id,2), + (288,1403.651493000,'2001-01-01','2022-12-31',2,dataset_id,2), + (324,1484.605314000,'2001-01-01','2022-12-31',2,dataset_id,2), + (624,1518.822211000,'2001-01-01','2022-12-31',2,dataset_id,2), + (404,1579.207948000,'2001-01-01','2022-12-31',2,dataset_id,2), + (426,1210.004999000,'2001-01-01','2022-12-31',2,dataset_id,2), + (430,928.293570700,'2001-01-01','2022-12-31',2,dataset_id,2), + (434,1822.592076000,'2001-01-01','2022-12-31',2,dataset_id,2), + (450,1228.973479000,'2001-01-01','2022-12-31',2,dataset_id,2), + (454,1091.081702000,'2001-01-01','2022-12-31',2,dataset_id,2), + (466,2123.915522000,'2001-01-01','2022-12-31',2,dataset_id,2), + (478,2081.724664000,'2001-01-01','2022-12-31',2,dataset_id,2), + (504,1425.085479000,'2001-01-01','2022-12-31',2,dataset_id,2), + (508,1389.521296000,'2001-01-01','2022-12-31',2,dataset_id,2), + (516,1843.736024000,'2001-01-01','2022-12-31',2,dataset_id,2), + (562,2226.733452000,'2001-01-01','2022-12-31',2,dataset_id,2), + (646,1176.914793000,'2001-01-01','2022-12-31',2,dataset_id,2), + (686,1955.530077000,'2001-01-01','2022-12-31',2,dataset_id,2), + (694,1046.229547000,'2001-01-01','2022-12-31',2,dataset_id,2), + (706,1668.251259000,'2001-01-01','2022-12-31',2,dataset_id,2), + (729,2064.657711000,'2001-01-01','2022-12-31',2,dataset_id,2), + (834,1386.389950000,'2001-01-01','2022-12-31',2,dataset_id,2), + (710,1524.176416000,'2001-01-01','2022-12-31',2,dataset_id,2), + (728,1681.344863000,'2001-01-01','2022-12-31',2,dataset_id,2), + (748,1317.492665000,'2001-01-01','2022-12-31',2,dataset_id,2), + (270,1780.947081000,'2001-01-01','2022-12-31',2,dataset_id,2), + (768,1419.937524000,'2001-01-01','2022-12-31',2,dataset_id,2), + (788,1408.164510000,'2001-01-01','2022-12-31',2,dataset_id,2), + (800,1264.380902000,'2001-01-01','2022-12-31',2,dataset_id,2), + (732,1831.054863000,'2001-01-01','2022-12-31',2,dataset_id,2), + (894,1454.416502000,'2001-01-01','2022-12-31',2,dataset_id,2), + (716,1571.713856000,'2001-01-01','2022-12-31',2,dataset_id,2), + (620,997.681129200,'2001-01-01','2022-12-31',2,dataset_id,2), + (4,1388.645987000,'2001-01-01','2022-12-31',2,dataset_id,2), + (50,971.882241100,'2001-01-01','2022-12-31',2,dataset_id,2), + (64,552.549584900,'2001-01-01','2022-12-31',2,dataset_id,2), + (104,1137.637711000,'2001-01-01','2022-12-31',2,dataset_id,2), + (116,1204.850978000,'2001-01-01','2022-12-31',2,dataset_id,2), + (156,793.968656000,'2001-01-01','2022-12-31',2,dataset_id,2), + (356,1350.396800000,'2001-01-01','2022-12-31',2,dataset_id,2), + (392,514.055343800,'2001-01-01','2022-12-31',2,dataset_id,2), + (398,976.407518600,'2001-01-01','2022-12-31',2,dataset_id,2), + (417,604.117079100,'2001-01-01','2022-12-31',2,dataset_id,2), + (418,1103.561713000,'2001-01-01','2022-12-31',2,dataset_id,2), + (496,787.247560300,'2001-01-01','2022-12-31',2,dataset_id,2), + (524,822.992556900,'2001-01-01','2022-12-31',2,dataset_id,2), + (408,649.281729900,'2001-01-01','2022-12-31',2,dataset_id,2), + (586,1574.407102000,'2001-01-01','2022-12-31',2,dataset_id,2), + (643,481.083692400,'2001-01-01','2022-12-31',2,dataset_id,2), + (410,714.623582300,'2001-01-01','2022-12-31',2,dataset_id,2), + (144,959.597537000,'2001-01-01','2022-12-31',2,dataset_id,2), + (158,517.426442800,'2001-01-01','2022-12-31',2,dataset_id,2), + (762,708.111330000,'2001-01-01','2022-12-31',2,dataset_id,2), + (764,1238.076541000,'2001-01-01','2022-12-31',2,dataset_id,2), + (795,1404.799769000,'2001-01-01','2022-12-31',2,dataset_id,2), + (860,1281.115170000,'2001-01-01','2022-12-31',2,dataset_id,2), + (704,857.682820800,'2001-01-01','2022-12-31',2,dataset_id,2), + (8,869.802078700,'2001-01-01','2022-12-31',2,dataset_id,2), + (51,795.126154900,'2001-01-01','2022-12-31',2,dataset_id,2), + (40,632.992863500,'2001-01-01','2022-12-31',2,dataset_id,2), + (31,922.916021100,'2001-01-01','2022-12-31',2,dataset_id,2), + (112,667.609274500,'2001-01-01','2022-12-31',2,dataset_id,2), + (56,613.633242700,'2001-01-01','2022-12-31',2,dataset_id,2), + (70,832.803534500,'2001-01-01','2022-12-31',2,dataset_id,2), + (100,925.326697700,'2001-01-01','2022-12-31',2,dataset_id,2), + (191,789.261306800,'2001-01-01','2022-12-31',2,dataset_id,2), + (196,737.740513100,'2001-01-01','2022-12-31',2,dataset_id,2), + (203,676.700461600,'2001-01-01','2022-12-31',2,dataset_id,2), + (208,391.698844600,'2001-01-01','2022-12-31',2,dataset_id,2), + (233,482.797958600,'2001-01-01','2022-12-31',2,dataset_id,2), + (246,423.417726700,'2001-01-01','2022-12-31',2,dataset_id,2), + (250,759.768360100,'2001-01-01','2022-12-31',2,dataset_id,2), + (275,1105.417781000,'2001-01-01','2022-12-31',2,dataset_id,2), + (268,713.466135000,'2001-01-01','2022-12-31',2,dataset_id,2), + (276,643.319546400,'2001-01-01','2022-12-31',2,dataset_id,2), + (300,859.969941500,'2001-01-01','2022-12-31',2,dataset_id,2), + (348,880.951291000,'2001-01-01','2022-12-31',2,dataset_id,2), + (352,196.785053700,'2001-01-01','2022-12-31',2,dataset_id,2), + (364,1550.698827000,'2001-01-01','2022-12-31',2,dataset_id,2), + (368,1829.244665000,'2001-01-01','2022-12-31',2,dataset_id,2), + (372,402.434349200,'2001-01-01','2022-12-31',2,dataset_id,2), + (376,1385.909525000,'2001-01-01','2022-12-31',2,dataset_id,2), + (380,743.185033900,'2001-01-01','2022-12-31',2,dataset_id,2), + (400,1667.894175000,'2001-01-01','2022-12-31',2,dataset_id,2), + (414,1877.904909000,'2001-01-01','2022-12-31',2,dataset_id,2), + (428,555.998300500,'2001-01-01','2022-12-31',2,dataset_id,2), + (422,1060.758034000,'2001-01-01','2022-12-31',2,dataset_id,2), + (440,603.483932200,'2001-01-01','2022-12-31',2,dataset_id,2), + (442,638.295049100,'2001-01-01','2022-12-31',2,dataset_id,2), + (807,1025.466780000,'2001-01-01','2022-12-31',2,dataset_id,2), + (498,877.437940300,'2001-01-01','2022-12-31',2,dataset_id,2), + (499,739.271812400,'2001-01-01','2022-12-31',2,dataset_id,2), + (528,550.880630500,'2001-01-01','2022-12-31',2,dataset_id,2), + (578,318.150968200,'2001-01-01','2022-12-31',2,dataset_id,2), + (512,2012.780859000,'2001-01-01','2022-12-31',2,dataset_id,2), + (616,674.458812500,'2001-01-01','2022-12-31',2,dataset_id,2), + (634,1582.842562000,'2001-01-01','2022-12-31',2,dataset_id,2), + (642,851.335059600,'2001-01-01','2022-12-31',2,dataset_id,2), + (682,2061.594301000,'2001-01-01','2022-12-31',2,dataset_id,2), + (688,944.735266200,'2001-01-01','2022-12-31',2,dataset_id,2), + (703,763.143307800,'2001-01-01','2022-12-31',2,dataset_id,2), + (705,729.785082300,'2001-01-01','2022-12-31',2,dataset_id,2), + (724,1043.072180000,'2001-01-01','2022-12-31',2,dataset_id,2), + (752,434.367477900,'2001-01-01','2022-12-31',2,dataset_id,2), + (756,557.681034200,'2001-01-01','2022-12-31',2,dataset_id,2), + (760,1532.799665000,'2001-01-01','2022-12-31',2,dataset_id,2), + (792,1064.051636000,'2001-01-01','2022-12-31',2,dataset_id,2), + (804,794.027050000,'2001-01-01','2022-12-31',2,dataset_id,2), + (784,1949.396461000,'2001-01-01','2022-12-31',2,dataset_id,2), + (826,415.680168900,'2001-01-01','2022-12-31',2,dataset_id,2), + (887,1882.682494000,'2001-01-01','2022-12-31',2,dataset_id,2), + (84,1005.370374000,'2001-01-01','2022-12-31',2,dataset_id,2), + (124,434.741527300,'2001-01-01','2022-12-31',2,dataset_id,2), + (170,896.434602200,'2001-01-01','2022-12-31',2,dataset_id,2), + (188,647.270150300,'2001-01-01','2022-12-31',2,dataset_id,2), + (192,946.723469100,'2001-01-01','2022-12-31',2,dataset_id,2), + (214,993.668647300,'2001-01-01','2022-12-31',2,dataset_id,2), + (222,1253.100229000,'2001-01-01','2022-12-31',2,dataset_id,2), + (304,75.559580540,'2001-01-01','2022-12-31',2,dataset_id,2), + (320,1217.754063000,'2001-01-01','2022-12-31',2,dataset_id,2), + (332,855.182357300,'2001-01-01','2022-12-31',2,dataset_id,2), + (340,1150.212629000,'2001-01-01','2022-12-31',2,dataset_id,2), + (388,717.630898200,'2001-01-01','2022-12-31',2,dataset_id,2), + (484,1492.249543000,'2001-01-01','2022-12-31',2,dataset_id,2), + (558,964.359868200,'2001-01-01','2022-12-31',2,dataset_id,2), + (591,611.381131100,'2001-01-01','2022-12-31',2,dataset_id,2), + (630,667.372303700,'2001-01-01','2022-12-31',2,dataset_id,2), + (44,332.042716400,'2001-01-01','2022-12-31',2,dataset_id,2), + (840,952.012165400,'2001-01-01','2022-12-31',2,dataset_id,2), + (10,17.607400580,'2001-01-01','2022-12-31',2,dataset_id,2), + (36,1676.351330000,'2001-01-01','2022-12-31',2,dataset_id,2), + (96,812.245735000,'2001-01-01','2022-12-31',2,dataset_id,2), + (242,467.912557000,'2001-01-01','2022-12-31',2,dataset_id,2), + (360,761.806340800,'2001-01-01','2022-12-31',2,dataset_id,2), + (458,908.043006000,'2001-01-01','2022-12-31',2,dataset_id,2), + (540,610.674481000,'2001-01-01','2022-12-31',2,dataset_id,2), + (554,562.064648000,'2001-01-01','2022-12-31',2,dataset_id,2), + (598,576.391697200,'2001-01-01','2022-12-31',2,dataset_id,2), + (608,637.321227000,'2001-01-01','2022-12-31',2,dataset_id,2), + (90,311.132793400,'2001-01-01','2022-12-31',2,dataset_id,2), + (626,752.782924700,'2001-01-01','2022-12-31',2,dataset_id,2), + (548,317.649485100,'2001-01-01','2022-12-31',2,dataset_id,2), + (32,1185.100420000,'2001-01-01','2022-12-31',2,dataset_id,2), + (68,1249.179838000,'2001-01-01','2022-12-31',2,dataset_id,2), + (76,1265.236355000,'2001-01-01','2022-12-31',2,dataset_id,2), + (152,773.934823600,'2001-01-01','2022-12-31',2,dataset_id,2), + (218,770.360089000,'2001-01-01','2022-12-31',2,dataset_id,2), + (238,258.433936000,'2001-01-01','2022-12-31',2,dataset_id,2), + (328,1026.943780000,'2001-01-01','2022-12-31',2,dataset_id,2), + (740,1110.463839000,'2001-01-01','2022-12-31',2,dataset_id,2), + (600,1446.887383000,'2001-01-01','2022-12-31',2,dataset_id,2), + (604,970.572219600,'2001-01-01','2022-12-31',2,dataset_id,2), + (780,513.539039800,'2001-01-01','2022-12-31',2,dataset_id,2), + (858,1105.946432000,'2001-01-01','2022-12-31',2,dataset_id,2), + (862,1127.219754000,'2001-01-01','2022-12-31',2,dataset_id,2), + (12,1871.854503000,'1980-01-01','2000-12-31',2,dataset_id,2), + (24,1526.294214000,'1980-01-01','2000-12-31',2,dataset_id,2), + (204,1589.613224000,'1980-01-01','2000-12-31',2,dataset_id,2), + (72,1762.498876000,'1980-01-01','2000-12-31',2,dataset_id,2), + (854,1830.081355000,'1980-01-01','2000-12-31',2,dataset_id,2), + (108,1076.656166000,'1980-01-01','2000-12-31',2,dataset_id,2), + (120,1280.788629000,'1980-01-01','2000-12-31',2,dataset_id,2), + (140,1512.720559000,'1980-01-01','2000-12-31',2,dataset_id,2), + (148,2035.014215000,'1980-01-01','2000-12-31',2,dataset_id,2), + (818,1760.623297000,'1980-01-01','2000-12-31',2,dataset_id,2), + (566,1595.312382000,'1980-01-01','2000-12-31',2,dataset_id,2), + (178,1133.727201000,'1980-01-01','2000-12-31',2,dataset_id,2), + (180,1175.445571000,'1980-01-01','2000-12-31',2,dataset_id,2), + (384,1333.372793000,'1980-01-01','2000-12-31',2,dataset_id,2), + (262,1692.344255000,'1980-01-01','2000-12-31',2,dataset_id,2), + (226,735.242259900,'1980-01-01','2000-12-31',2,dataset_id,2), + (232,1712.108042000,'1980-01-01','2000-12-31',2,dataset_id,2), + (231,1535.814468000,'1980-01-01','2000-12-31',2,dataset_id,2), + (260,168.701549000,'1980-01-01','2000-12-31',2,dataset_id,2), + (266,985.511078000,'1980-01-01','2000-12-31',2,dataset_id,2), + (288,1359.453428000,'1980-01-01','2000-12-31',2,dataset_id,2), + (324,1427.712185000,'1980-01-01','2000-12-31',2,dataset_id,2), + (624,1463.268199000,'1980-01-01','2000-12-31',2,dataset_id,2), + (404,1537.918209000,'1980-01-01','2000-12-31',2,dataset_id,2), + (426,1160.592450000,'1980-01-01','2000-12-31',2,dataset_id,2), + (430,919.378559500,'1980-01-01','2000-12-31',2,dataset_id,2), + (434,1777.439037000,'1980-01-01','2000-12-31',2,dataset_id,2), + (450,1183.697636000,'1980-01-01','2000-12-31',2,dataset_id,2), + (454,1090.064083000,'1980-01-01','2000-12-31',2,dataset_id,2), + (466,2068.400678000,'1980-01-01','2000-12-31',2,dataset_id,2), + (478,2034.033936000,'1980-01-01','2000-12-31',2,dataset_id,2), + (504,1355.898439000,'1980-01-01','2000-12-31',2,dataset_id,2), + (508,1353.147567000,'1980-01-01','2000-12-31',2,dataset_id,2), + (516,1781.166679000,'1980-01-01','2000-12-31',2,dataset_id,2), + (562,2192.479755000,'1980-01-01','2000-12-31',2,dataset_id,2), + (646,1111.661981000,'1980-01-01','2000-12-31',2,dataset_id,2), + (686,1888.806352000,'1980-01-01','2000-12-31',2,dataset_id,2), + (694,1034.785320000,'1980-01-01','2000-12-31',2,dataset_id,2), + (706,1619.357811000,'1980-01-01','2000-12-31',2,dataset_id,2), + (729,2038.694236000,'1980-01-01','2000-12-31',2,dataset_id,2), + (834,1339.760471000,'1980-01-01','2000-12-31',2,dataset_id,2), + (710,1471.892675000,'1980-01-01','2000-12-31',2,dataset_id,2), + (728,1578.862830000,'1980-01-01','2000-12-31',2,dataset_id,2), + (748,1307.135269000,'1980-01-01','2000-12-31',2,dataset_id,2), + (270,1696.017690000,'1980-01-01','2000-12-31',2,dataset_id,2), + (768,1413.205074000,'1980-01-01','2000-12-31',2,dataset_id,2), + (788,1359.664420000,'1980-01-01','2000-12-31',2,dataset_id,2), + (800,1193.073932000,'1980-01-01','2000-12-31',2,dataset_id,2), + (732,1796.834496000,'1980-01-01','2000-12-31',2,dataset_id,2), + (894,1474.647624000,'1980-01-01','2000-12-31',2,dataset_id,2), + (716,1520.070121000,'1980-01-01','2000-12-31',2,dataset_id,2), + (620,947.953070800,'1980-01-01','2000-12-31',2,dataset_id,2), + (4,1327.958578000,'1980-01-01','2000-12-31',2,dataset_id,2), + (50,955.838869900,'1980-01-01','2000-12-31',2,dataset_id,2), + (64,547.702783100,'1980-01-01','2000-12-31',2,dataset_id,2), + (104,1086.591145000,'1980-01-01','2000-12-31',2,dataset_id,2), + (116,1165.756030000,'1980-01-01','2000-12-31',2,dataset_id,2), + (156,760.223871900,'1980-01-01','2000-12-31',2,dataset_id,2), + (356,1371.648522000,'1980-01-01','2000-12-31',2,dataset_id,2), + (392,504.206992900,'1980-01-01','2000-12-31',2,dataset_id,2), + (398,918.083469600,'1980-01-01','2000-12-31',2,dataset_id,2), + (417,578.741605200,'1980-01-01','2000-12-31',2,dataset_id,2), + (418,1040.293677000,'1980-01-01','2000-12-31',2,dataset_id,2), + (496,745.278442900,'1980-01-01','2000-12-31',2,dataset_id,2), + (524,850.918861600,'1980-01-01','2000-12-31',2,dataset_id,2), + (408,606.188882700,'1980-01-01','2000-12-31',2,dataset_id,2), + (586,1564.206382000,'1980-01-01','2000-12-31',2,dataset_id,2), + (643,447.540872700,'1980-01-01','2000-12-31',2,dataset_id,2), + (410,661.865624400,'1980-01-01','2000-12-31',2,dataset_id,2), + (144,1010.105683000,'1980-01-01','2000-12-31',2,dataset_id,2), + (158,510.207015300,'1980-01-01','2000-12-31',2,dataset_id,2), + (762,656.724693900,'1980-01-01','2000-12-31',2,dataset_id,2), + (764,1216.288647000,'1980-01-01','2000-12-31',2,dataset_id,2), + (795,1332.659679000,'1980-01-01','2000-12-31',2,dataset_id,2), + (860,1194.302049000,'1980-01-01','2000-12-31',2,dataset_id,2), + (704,840.358465600,'1980-01-01','2000-12-31',2,dataset_id,2), + (8,823.815039700,'1980-01-01','2000-12-31',2,dataset_id,2), + (51,759.417910100,'1980-01-01','2000-12-31',2,dataset_id,2), + (40,601.995738500,'1980-01-01','2000-12-31',2,dataset_id,2), + (31,875.430159500,'1980-01-01','2000-12-31',2,dataset_id,2), + (112,611.936108200,'1980-01-01','2000-12-31',2,dataset_id,2), + (56,549.198593000,'1980-01-01','2000-12-31',2,dataset_id,2), + (70,791.146753000,'1980-01-01','2000-12-31',2,dataset_id,2), + (100,855.333802800,'1980-01-01','2000-12-31',2,dataset_id,2), + (191,741.563493200,'1980-01-01','2000-12-31',2,dataset_id,2), + (196,728.381208100,'1980-01-01','2000-12-31',2,dataset_id,2), + (203,631.823120700,'1980-01-01','2000-12-31',2,dataset_id,2), + (208,372.461232600,'1980-01-01','2000-12-31',2,dataset_id,2), + (233,443.770462700,'1980-01-01','2000-12-31',2,dataset_id,2), + (246,405.502641100,'1980-01-01','2000-12-31',2,dataset_id,2), + (250,688.024598700,'1980-01-01','2000-12-31',2,dataset_id,2), + (275,1073.882696000,'1980-01-01','2000-12-31',2,dataset_id,2), + (268,665.751538400,'1980-01-01','2000-12-31',2,dataset_id,2), + (276,584.208001600,'1980-01-01','2000-12-31',2,dataset_id,2), + (300,826.204582600,'1980-01-01','2000-12-31',2,dataset_id,2), + (348,819.599609300,'1980-01-01','2000-12-31',2,dataset_id,2), + (352,191.059131400,'1980-01-01','2000-12-31',2,dataset_id,2), + (364,1491.027586000,'1980-01-01','2000-12-31',2,dataset_id,2), + (368,1774.987268000,'1980-01-01','2000-12-31',2,dataset_id,2), + (372,392.415545700,'1980-01-01','2000-12-31',2,dataset_id,2), + (376,1343.112573000,'1980-01-01','2000-12-31',2,dataset_id,2), + (380,727.153276200,'1980-01-01','2000-12-31',2,dataset_id,2), + (400,1595.670284000,'1980-01-01','2000-12-31',2,dataset_id,2), + (414,1854.448550000,'1980-01-01','2000-12-31',2,dataset_id,2), + (428,501.500248000,'1980-01-01','2000-12-31',2,dataset_id,2), + (422,1049.529158000,'1980-01-01','2000-12-31',2,dataset_id,2), + (440,549.397522400,'1980-01-01','2000-12-31',2,dataset_id,2), + (442,576.448668100,'1980-01-01','2000-12-31',2,dataset_id,2), + (807,952.658859900,'1980-01-01','2000-12-31',2,dataset_id,2), + (498,765.448849300,'1980-01-01','2000-12-31',2,dataset_id,2), + (499,689.181275800,'1980-01-01','2000-12-31',2,dataset_id,2), + (528,490.454486100,'1980-01-01','2000-12-31',2,dataset_id,2), + (578,315.074583500,'1980-01-01','2000-12-31',2,dataset_id,2), + (512,1957.687545000,'1980-01-01','2000-12-31',2,dataset_id,2), + (616,615.275629400,'1980-01-01','2000-12-31',2,dataset_id,2), + (634,1562.515556000,'1980-01-01','2000-12-31',2,dataset_id,2), + (642,777.114320800,'1980-01-01','2000-12-31',2,dataset_id,2), + (682,2033.356011000,'1980-01-01','2000-12-31',2,dataset_id,2), + (688,881.435885100,'1980-01-01','2000-12-31',2,dataset_id,2), + (703,699.009506100,'1980-01-01','2000-12-31',2,dataset_id,2), + (705,673.207265400,'1980-01-01','2000-12-31',2,dataset_id,2), + (724,984.013711600,'1980-01-01','2000-12-31',2,dataset_id,2), + (752,418.650802800,'1980-01-01','2000-12-31',2,dataset_id,2), + (756,511.591947100,'1980-01-01','2000-12-31',2,dataset_id,2), + (760,1483.416409000,'1980-01-01','2000-12-31',2,dataset_id,2), + (792,1006.793576000,'1980-01-01','2000-12-31',2,dataset_id,2), + (804,698.994866800,'1980-01-01','2000-12-31',2,dataset_id,2), + (784,1940.707338000,'1980-01-01','2000-12-31',2,dataset_id,2), + (826,396.915648700,'1980-01-01','2000-12-31',2,dataset_id,2), + (887,1875.864702000,'1980-01-01','2000-12-31',2,dataset_id,2), + (84,943.291921600,'1980-01-01','2000-12-31',2,dataset_id,2), + (124,420.942441000,'1980-01-01','2000-12-31',2,dataset_id,2), + (170,821.107205100,'1980-01-01','2000-12-31',2,dataset_id,2), + (188,711.614931600,'1980-01-01','2000-12-31',2,dataset_id,2), + (192,954.891209100,'1980-01-01','2000-12-31',2,dataset_id,2), + (214,978.413015100,'1980-01-01','2000-12-31',2,dataset_id,2), + (222,1182.892524000,'1980-01-01','2000-12-31',2,dataset_id,2), + (304,67.415625030,'1980-01-01','2000-12-31',2,dataset_id,2), + (320,1119.808765000,'1980-01-01','2000-12-31',2,dataset_id,2), + (332,856.798948800,'1980-01-01','2000-12-31',2,dataset_id,2), + (340,1132.869840000,'1980-01-01','2000-12-31',2,dataset_id,2), + (388,763.658331800,'1980-01-01','2000-12-31',2,dataset_id,2), + (484,1435.372752000,'1980-01-01','2000-12-31',2,dataset_id,2), + (558,989.648116400,'1980-01-01','2000-12-31',2,dataset_id,2), + (591,609.181320100,'1980-01-01','2000-12-31',2,dataset_id,2), + (630,720.371894600,'1980-01-01','2000-12-31',2,dataset_id,2), + (44,328.043077200,'1980-01-01','2000-12-31',2,dataset_id,2), + (840,921.918932800,'1980-01-01','2000-12-31',2,dataset_id,2), + (10,16.743191900,'1980-01-01','2000-12-31',2,dataset_id,2), + (36,1621.757620000,'1980-01-01','2000-12-31',2,dataset_id,2), + (96,811.018801800,'1980-01-01','2000-12-31',2,dataset_id,2), + (242,490.771830900,'1980-01-01','2000-12-31',2,dataset_id,2), + (360,765.528538800,'1980-01-01','2000-12-31',2,dataset_id,2), + (458,910.644090000,'1980-01-01','2000-12-31',2,dataset_id,2), + (540,578.329964400,'1980-01-01','2000-12-31',2,dataset_id,2), + (554,524.859351100,'1980-01-01','2000-12-31',2,dataset_id,2), + (598,614.251691200,'1980-01-01','2000-12-31',2,dataset_id,2), + (608,675.233332200,'1980-01-01','2000-12-31',2,dataset_id,2), + (90,317.743601600,'1980-01-01','2000-12-31',2,dataset_id,2), + (626,718.194844500,'1980-01-01','2000-12-31',2,dataset_id,2), + (548,325.100512400,'1980-01-01','2000-12-31',2,dataset_id,2), + (32,1121.505623000,'1980-01-01','2000-12-31',2,dataset_id,2), + (68,1165.848771000,'1980-01-01','2000-12-31',2,dataset_id,2), + (76,1185.953937000,'1980-01-01','2000-12-31',2,dataset_id,2), + (152,759.393360900,'1980-01-01','2000-12-31',2,dataset_id,2), + (218,721.296779800,'1980-01-01','2000-12-31',2,dataset_id,2), + (238,245.897103600,'1980-01-01','2000-12-31',2,dataset_id,2), + (328,1051.827564000,'1980-01-01','2000-12-31',2,dataset_id,2), + (740,1173.619819000,'1980-01-01','2000-12-31',2,dataset_id,2), + (600,1316.771832000,'1980-01-01','2000-12-31',2,dataset_id,2), + (604,903.079779000,'1980-01-01','2000-12-31',2,dataset_id,2), + (780,504.881664400,'1980-01-01','2000-12-31',2,dataset_id,2), + (858,1075.635349000,'1980-01-01','2000-12-31',2,dataset_id,2), + (862,1072.197713000,'1980-01-01','2000-12-31',2,dataset_id,2), + (12,1899.128856000,'1980-01-01','2022-12-31',2,dataset_id,2), + (24,1516.742989000,'1980-01-01','2022-12-31',2,dataset_id,2), + (204,1584.124514000,'1980-01-01','2022-12-31',2,dataset_id,2), + (72,1787.319791000,'1980-01-01','2022-12-31',2,dataset_id,2), + (854,1842.267319000,'1980-01-01','2022-12-31',2,dataset_id,2), + (108,1107.449794000,'1980-01-01','2022-12-31',2,dataset_id,2), + (120,1318.661414000,'1980-01-01','2022-12-31',2,dataset_id,2), + (140,1545.872470000,'1980-01-01','2022-12-31',2,dataset_id,2), + (148,2054.759307000,'1980-01-01','2022-12-31',2,dataset_id,2), + (818,1782.411309000,'1980-01-01','2022-12-31',2,dataset_id,2), + (566,1608.352585000,'1980-01-01','2022-12-31',2,dataset_id,2), + (178,1180.765251000,'1980-01-01','2022-12-31',2,dataset_id,2), + (180,1233.670540000,'1980-01-01','2022-12-31',2,dataset_id,2), + (384,1384.140711000,'1980-01-01','2022-12-31',2,dataset_id,2), + (262,1712.656140000,'1980-01-01','2022-12-31',2,dataset_id,2), + (226,763.841393100,'1980-01-01','2022-12-31',2,dataset_id,2), + (232,1738.578011000,'1980-01-01','2022-12-31',2,dataset_id,2), + (231,1564.721584000,'1980-01-01','2022-12-31',2,dataset_id,2), + (260,171.025733900,'1980-01-01','2022-12-31',2,dataset_id,2), + (266,1023.207096000,'1980-01-01','2022-12-31',2,dataset_id,2), + (288,1382.066398000,'1980-01-01','2022-12-31',2,dataset_id,2), + (324,1456.820288000,'1980-01-01','2022-12-31',2,dataset_id,2), + (624,1491.691172000,'1980-01-01','2022-12-31',2,dataset_id,2), + (404,1559.043193000,'1980-01-01','2022-12-31',2,dataset_id,2), + (426,1185.873296000,'1980-01-01','2022-12-31',2,dataset_id,2), + (430,923.939735500,'1980-01-01','2022-12-31',2,dataset_id,2), + (434,1800.540592000,'1980-01-01','2022-12-31',2,dataset_id,2), + (450,1206.862018000,'1980-01-01','2022-12-31',2,dataset_id,2), + (454,1090.584732000,'1980-01-01','2022-12-31',2,dataset_id,2), + (466,2096.803626000,'1980-01-01','2022-12-31',2,dataset_id,2), + (478,2058.433845000,'1980-01-01','2022-12-31',2,dataset_id,2), + (504,1391.296458000,'1980-01-01','2022-12-31',2,dataset_id,2), + (508,1371.757382000,'1980-01-01','2022-12-31',2,dataset_id,2), + (516,1813.178902000,'1980-01-01','2022-12-31',2,dataset_id,2), + (562,2210.004901000,'1980-01-01','2022-12-31',2,dataset_id,2), + (646,1145.047156000,'1980-01-01','2022-12-31',2,dataset_id,2), + (686,1922.944071000,'1980-01-01','2022-12-31',2,dataset_id,2), + (694,1040.640517000,'1980-01-01','2022-12-31',2,dataset_id,2), + (706,1644.373062000,'1980-01-01','2022-12-31',2,dataset_id,2), + (729,2051.977872000,'1980-01-01','2022-12-31',2,dataset_id,2), + (834,1363.617412000,'1980-01-01','2022-12-31',2,dataset_id,2), + (710,1498.642497000,'1980-01-01','2022-12-31',2,dataset_id,2), + (728,1631.295502000,'1980-01-01','2022-12-31',2,dataset_id,2), + (748,1312.434412000,'1980-01-01','2022-12-31',2,dataset_id,2), + (270,1739.469939000,'1980-01-01','2022-12-31',2,dataset_id,2), + (768,1416.649573000,'1980-01-01','2022-12-31',2,dataset_id,2), + (788,1384.478413000,'1980-01-01','2022-12-31',2,dataset_id,2), + (800,1229.556571000,'1980-01-01','2022-12-31',2,dataset_id,2), + (732,1814.342589000,'1980-01-01','2022-12-31',2,dataset_id,2), + (894,1464.296815000,'1980-01-01','2022-12-31',2,dataset_id,2), + (716,1546.492499000,'1980-01-01','2022-12-31',2,dataset_id,2), + (620,973.395334200,'1980-01-01','2022-12-31',2,dataset_id,2), + (4,1359.007953000,'1980-01-01','2022-12-31',2,dataset_id,2), + (50,964.047097700,'1980-01-01','2022-12-31',2,dataset_id,2), + (64,550.182544200,'1980-01-01','2022-12-31',2,dataset_id,2), + (104,1112.707991000,'1980-01-01','2022-12-31',2,dataset_id,2), + (116,1185.758097000,'1980-01-01','2022-12-31',2,dataset_id,2), + (156,777.488645400,'1980-01-01','2022-12-31',2,dataset_id,2), + (356,1360.775548000,'1980-01-01','2022-12-31',2,dataset_id,2), + (392,509.245684500,'1980-01-01','2022-12-31',2,dataset_id,2), + (398,947.923680500,'1980-01-01','2022-12-31',2,dataset_id,2), + (417,591.724404700,'1980-01-01','2022-12-31',2,dataset_id,2), + (418,1072.663376000,'1980-01-01','2022-12-31',2,dataset_id,2), + (496,766.751015000,'1980-01-01','2022-12-31',2,dataset_id,2), + (524,836.630984500,'1980-01-01','2022-12-31',2,dataset_id,2), + (408,628.236387200,'1980-01-01','2022-12-31',2,dataset_id,2), + (586,1569.425349000,'1980-01-01','2022-12-31',2,dataset_id,2), + (643,464.702315400,'1980-01-01','2022-12-31',2,dataset_id,2), + (410,688.858074300,'1980-01-01','2022-12-31',2,dataset_id,2), + (144,984.264305100,'1980-01-01','2022-12-31',2,dataset_id,2), + (158,513.900676400,'1980-01-01','2022-12-31',2,dataset_id,2), + (762,683.015527700,'1980-01-01','2022-12-31',2,dataset_id,2), + (764,1227.435942000,'1980-01-01','2022-12-31',2,dataset_id,2), + (795,1369.568563000,'1980-01-01','2022-12-31',2,dataset_id,2), + (860,1238.718066000,'1980-01-01','2022-12-31',2,dataset_id,2), + (704,849.222091500,'1980-01-01','2022-12-31',2,dataset_id,2), + (8,847.343280100,'1980-01-01','2022-12-31',2,dataset_id,2), + (51,777.687250700,'1980-01-01','2022-12-31',2,dataset_id,2), + (40,617.854732000,'1980-01-01','2022-12-31',2,dataset_id,2), + (31,899.725248000,'1980-01-01','2022-12-31',2,dataset_id,2), + (112,640.420052300,'1980-01-01','2022-12-31',2,dataset_id,2), + (56,582.165151700,'1980-01-01','2022-12-31',2,dataset_id,2), + (70,812.459525800,'1980-01-01','2022-12-31',2,dataset_id,2), + (100,891.144121200,'1980-01-01','2022-12-31',2,dataset_id,2), + (191,765.967026000,'1980-01-01','2022-12-31',2,dataset_id,2), + (196,733.169710300,'1980-01-01','2022-12-31',2,dataset_id,2), + (203,654.783622500,'1980-01-01','2022-12-31',2,dataset_id,2), + (208,382.303730400,'1980-01-01','2022-12-31',2,dataset_id,2), + (233,463.738020400,'1980-01-01','2022-12-31',2,dataset_id,2), + (246,414.668497800,'1980-01-01','2022-12-31',2,dataset_id,2), + (250,724.730710600,'1980-01-01','2022-12-31',2,dataset_id,2), + (275,1090.016898000,'1980-01-01','2022-12-31',2,dataset_id,2), + (268,690.163655300,'1980-01-01','2022-12-31',2,dataset_id,2), + (276,614.451118200,'1980-01-01','2022-12-31',2,dataset_id,2), + (300,843.479885900,'1980-01-01','2022-12-31',2,dataset_id,2), + (348,850.988837600,'1980-01-01','2022-12-31',2,dataset_id,2), + (352,193.988672600,'1980-01-01','2022-12-31',2,dataset_id,2), + (364,1521.557056000,'1980-01-01','2022-12-31',2,dataset_id,2), + (368,1802.746862000,'1980-01-01','2022-12-31',2,dataset_id,2), + (372,397.541446200,'1980-01-01','2022-12-31',2,dataset_id,2), + (376,1365.008687000,'1980-01-01','2022-12-31',2,dataset_id,2), + (380,735.355570700,'1980-01-01','2022-12-31',2,dataset_id,2), + (400,1632.622038000,'1980-01-01','2022-12-31',2,dataset_id,2), + (414,1866.449479000,'1980-01-01','2022-12-31',2,dataset_id,2), + (428,529.382967200,'1980-01-01','2022-12-31',2,dataset_id,2), + (422,1055.274146000,'1980-01-01','2022-12-31',2,dataset_id,2), + (440,577.069638300,'1980-01-01','2022-12-31',2,dataset_id,2), + (442,608.091016400,'1980-01-01','2022-12-31',2,dataset_id,2), + (807,989.909438200,'1980-01-01','2022-12-31',2,dataset_id,2), + (498,822.745594200,'1980-01-01','2022-12-31',2,dataset_id,2), + (499,714.809007200,'1980-01-01','2022-12-31',2,dataset_id,2), + (528,521.370187000,'1980-01-01','2022-12-31',2,dataset_id,2), + (578,316.648547500,'1980-01-01','2022-12-31',2,dataset_id,2), + (512,1985.874828000,'1980-01-01','2022-12-31',2,dataset_id,2), + (616,645.555395200,'1980-01-01','2022-12-31',2,dataset_id,2), + (634,1572.915402000,'1980-01-01','2022-12-31',2,dataset_id,2), + (642,815.087720800,'1980-01-01','2022-12-31',2,dataset_id,2), + (682,2047.803507000,'1980-01-01','2022-12-31',2,dataset_id,2), + (688,913.821616800,'1980-01-01','2022-12-31',2,dataset_id,2), + (703,731.822148300,'1980-01-01','2022-12-31',2,dataset_id,2), + (705,702.154061400,'1980-01-01','2022-12-31',2,dataset_id,2), + (724,1014.229677000,'1980-01-01','2022-12-31',2,dataset_id,2), + (752,426.691893300,'1980-01-01','2022-12-31',2,dataset_id,2), + (756,535.172412400,'1980-01-01','2022-12-31',2,dataset_id,2), + (760,1508.682255000,'1980-01-01','2022-12-31',2,dataset_id,2), + (792,1036.088396000,'1980-01-01','2022-12-31',2,dataset_id,2), + (804,747.615983000,'1980-01-01','2022-12-31',2,dataset_id,2), + (784,1945.152937000,'1980-01-01','2022-12-31',2,dataset_id,2), + (826,406.516101200,'1980-01-01','2022-12-31',2,dataset_id,2), + (887,1879.352879000,'1980-01-01','2022-12-31',2,dataset_id,2), + (84,975.052998000,'1980-01-01','2022-12-31',2,dataset_id,2), + (124,428.002438400,'1980-01-01','2022-12-31',2,dataset_id,2), + (170,859.646803400,'1980-01-01','2022-12-31',2,dataset_id,2), + (188,678.694340500,'1980-01-01','2022-12-31',2,dataset_id,2), + (192,950.712363100,'1980-01-01','2022-12-31',2,dataset_id,2), + (214,986.218212800,'1980-01-01','2022-12-31',2,dataset_id,2), + (222,1218.812756000,'1980-01-01','2022-12-31',2,dataset_id,2), + (304,71.582299980,'1980-01-01','2022-12-31',2,dataset_id,2), + (320,1169.920318000,'1980-01-01','2022-12-31',2,dataset_id,2), + (332,855.971850800,'1980-01-01','2022-12-31',2,dataset_id,2), + (340,1141.742896000,'1980-01-01','2022-12-31',2,dataset_id,2), + (388,740.109413100,'1980-01-01','2022-12-31',2,dataset_id,2), + (484,1464.472504000,'1980-01-01','2022-12-31',2,dataset_id,2), + (558,976.709942100,'1980-01-01','2022-12-31',2,dataset_id,2), + (591,610.306804900,'1980-01-01','2022-12-31',2,dataset_id,2), + (630,693.255836000,'1980-01-01','2022-12-31',2,dataset_id,2), + (44,330.089404000,'1980-01-01','2022-12-31',2,dataset_id,2), + (840,937.315470800,'1980-01-01','2022-12-31',2,dataset_id,2), + (10,17.185345180,'1980-01-01','2022-12-31',2,dataset_id,2), + (36,1649.689285000,'1980-01-01','2022-12-31',2,dataset_id,2), + (96,811.646544900,'1980-01-01','2022-12-31',2,dataset_id,2), + (242,479.076383100,'1980-01-01','2022-12-31',2,dataset_id,2), + (360,763.624157500,'1980-01-01','2022-12-31',2,dataset_id,2), + (458,909.313307200,'1980-01-01','2022-12-31',2,dataset_id,2), + (540,594.878316200,'1980-01-01','2022-12-31',2,dataset_id,2), + (554,543.894619600,'1980-01-01','2022-12-31',2,dataset_id,2), + (598,594.881458700,'1980-01-01','2022-12-31',2,dataset_id,2), + (608,655.836446200,'1980-01-01','2022-12-31',2,dataset_id,2), + (90,314.361328700,'1980-01-01','2022-12-31',2,dataset_id,2), + (626,735.891076000,'1980-01-01','2022-12-31',2,dataset_id,2), + (548,321.288365100,'1980-01-01','2022-12-31',2,dataset_id,2), + (32,1154.042495000,'1980-01-01','2022-12-31',2,dataset_id,2), + (68,1208.483271000,'1980-01-01','2022-12-31',2,dataset_id,2), + (76,1226.517034000,'1980-01-01','2022-12-31',2,dataset_id,2), + (152,766.833178200,'1980-01-01','2022-12-31',2,dataset_id,2), + (218,746.398936000,'1980-01-01','2022-12-31',2,dataset_id,2), + (238,252.311300600,'1980-01-01','2022-12-31',2,dataset_id,2), + (328,1039.096323000,'1980-01-01','2022-12-31',2,dataset_id,2), + (740,1141.307454000,'1980-01-01','2022-12-31',2,dataset_id,2), + (600,1383.342583000,'1980-01-01','2022-12-31',2,dataset_id,2), + (604,937.610795300,'1980-01-01','2022-12-31',2,dataset_id,2), + (780,509.311022200,'1980-01-01','2022-12-31',2,dataset_id,2), + (858,1091.143340000,'1980-01-01','2022-12-31',2,dataset_id,2), + (862,1100.348526000,'1980-01-01','2022-12-31',2,dataset_id,2); +end $$; \ No newline at end of file diff --git a/backend/migrations/20240815121649_add-merra-era-prc-projection-data.sql b/backend/migrations/20240815121649_add-merra-era-prc-projection-data.sql new file mode 100644 index 00000000..80ba0d51 --- /dev/null +++ b/backend/migrations/20240815121649_add-merra-era-prc-projection-data.sql @@ -0,0 +1,1053 @@ +do $$ +DECLARE + dataset_id int; +BEGIN + SELECT id INTO dataset_id FROM dataset WHERE short_name = 'prc_MERRA2_ERA5'; + + INSERT INTO data (id,value,start_date,end_date,source,dataset,geography_type) + VALUES + (12,91.769338550,'2001-01-01','2022-12-31',1,dataset_id,2), + (24,886.602747900,'2001-01-01','2022-12-31',1,dataset_id,2), + (204,1174.509422000,'2001-01-01','2022-12-31',1,dataset_id,2), + (72,455.072452000,'2001-01-01','2022-12-31',1,dataset_id,2), + (854,851.766476700,'2001-01-01','2022-12-31',1,dataset_id,2), + (108,1422.346509000,'2001-01-01','2022-12-31',1,dataset_id,2), + (120,1594.575844000,'2001-01-01','2022-12-31',1,dataset_id,2), + (140,1379.869756000,'2001-01-01','2022-12-31',1,dataset_id,2), + (148,351.690015900,'2001-01-01','2022-12-31',1,dataset_id,2), + (818,22.957383990,'2001-01-01','2022-12-31',1,dataset_id,2), + (566,1176.346871000,'2001-01-01','2022-12-31',1,dataset_id,2), + (178,1654.347247000,'2001-01-01','2022-12-31',1,dataset_id,2), + (180,1507.729206000,'2001-01-01','2022-12-31',1,dataset_id,2), + (384,1354.626133000,'2001-01-01','2022-12-31',1,dataset_id,2), + (262,301.326947500,'2001-01-01','2022-12-31',1,dataset_id,2), + (226,2116.154748000,'2001-01-01','2022-12-31',1,dataset_id,2), + (232,353.183948600,'2001-01-01','2022-12-31',1,dataset_id,2), + (231,874.049889000,'2001-01-01','2022-12-31',1,dataset_id,2), + (260,1074.018557000,'2001-01-01','2022-12-31',1,dataset_id,2), + (266,1811.806446000,'2001-01-01','2022-12-31',1,dataset_id,2), + (288,1274.065676000,'2001-01-01','2022-12-31',1,dataset_id,2), + (324,1745.435880000,'2001-01-01','2022-12-31',1,dataset_id,2), + (624,1564.456636000,'2001-01-01','2022-12-31',1,dataset_id,2), + (404,701.367489900,'2001-01-01','2022-12-31',1,dataset_id,2), + (426,819.403454900,'2001-01-01','2022-12-31',1,dataset_id,2), + (430,1953.508743000,'2001-01-01','2022-12-31',1,dataset_id,2), + (434,42.179184790,'2001-01-01','2022-12-31',1,dataset_id,2), + (450,1617.809455000,'2001-01-01','2022-12-31',1,dataset_id,2), + (454,1159.719599000,'2001-01-01','2022-12-31',1,dataset_id,2), + (466,363.856790100,'2001-01-01','2022-12-31',1,dataset_id,2), + (478,152.925611000,'2001-01-01','2022-12-31',1,dataset_id,2), + (504,329.676329000,'2001-01-01','2022-12-31',1,dataset_id,2), + (508,1058.923176000,'2001-01-01','2022-12-31',1,dataset_id,2), + (516,321.360570000,'2001-01-01','2022-12-31',1,dataset_id,2), + (562,181.928909800,'2001-01-01','2022-12-31',1,dataset_id,2), + (646,1408.872520000,'2001-01-01','2022-12-31',1,dataset_id,2), + (686,753.612026600,'2001-01-01','2022-12-31',1,dataset_id,2), + (694,2206.801635000,'2001-01-01','2022-12-31',1,dataset_id,2), + (706,373.154440700,'2001-01-01','2022-12-31',1,dataset_id,2), + (729,234.318659900,'2001-01-01','2022-12-31',1,dataset_id,2), + (834,1127.946367000,'2001-01-01','2022-12-31',1,dataset_id,2), + (710,506.046383800,'2001-01-01','2022-12-31',1,dataset_id,2), + (728,962.555231000,'2001-01-01','2022-12-31',1,dataset_id,2), + (748,751.636830900,'2001-01-01','2022-12-31',1,dataset_id,2), + (270,934.020812300,'2001-01-01','2022-12-31',1,dataset_id,2), + (768,1297.773386000,'2001-01-01','2022-12-31',1,dataset_id,2), + (788,255.730550800,'2001-01-01','2022-12-31',1,dataset_id,2), + (800,1185.249100000,'2001-01-01','2022-12-31',1,dataset_id,2), + (732,99.424010940,'2001-01-01','2022-12-31',1,dataset_id,2), + (894,990.454580100,'2001-01-01','2022-12-31',1,dataset_id,2), + (716,701.178433400,'2001-01-01','2022-12-31',1,dataset_id,2), + (620,739.381671200,'2001-01-01','2022-12-31',1,dataset_id,2), + (4,241.982343300,'2001-01-01','2022-12-31',1,dataset_id,2), + (50,2349.705487000,'2001-01-01','2022-12-31',1,dataset_id,2), + (64,1276.394446000,'2001-01-01','2022-12-31',1,dataset_id,2), + (104,1044.123330000,'2001-01-01','2022-12-31',1,dataset_id,2), + (116,1569.262821000,'2001-01-01','2022-12-31',1,dataset_id,2), + (156,625.437852400,'2001-01-01','2022-12-31',1,dataset_id,2), + (356,1092.010448000,'2001-01-01','2022-12-31',1,dataset_id,2), + (392,1619.304397000,'2001-01-01','2022-12-31',1,dataset_id,2), + (398,267.205274700,'2001-01-01','2022-12-31',1,dataset_id,2), + (417,311.934518800,'2001-01-01','2022-12-31',1,dataset_id,2), + (418,1285.642519000,'2001-01-01','2022-12-31',1,dataset_id,2), + (496,210.577722900,'2001-01-01','2022-12-31',1,dataset_id,2), + (524,1104.414575000,'2001-01-01','2022-12-31',1,dataset_id,2), + (408,971.015123100,'2001-01-01','2022-12-31',1,dataset_id,2), + (586,304.177889200,'2001-01-01','2022-12-31',1,dataset_id,2), + (643,640.065099400,'2001-01-01','2022-12-31',1,dataset_id,2), + (410,1293.533054000,'2001-01-01','2022-12-31',1,dataset_id,2), + (144,1660.550141000,'2001-01-01','2022-12-31',1,dataset_id,2), + (158,1848.504876000,'2001-01-01','2022-12-31',1,dataset_id,2), + (762,228.933590400,'2001-01-01','2022-12-31',1,dataset_id,2), + (764,1542.548003000,'2001-01-01','2022-12-31',1,dataset_id,2), + (795,145.605632000,'2001-01-01','2022-12-31',1,dataset_id,2), + (860,161.638237600,'2001-01-01','2022-12-31',1,dataset_id,2), + (704,1511.022028000,'2001-01-01','2022-12-31',1,dataset_id,2), + (8,943.946980100,'2001-01-01','2022-12-31',1,dataset_id,2), + (51,370.481123600,'2001-01-01','2022-12-31',1,dataset_id,2), + (40,1047.829051000,'2001-01-01','2022-12-31',1,dataset_id,2), + (31,337.149732100,'2001-01-01','2022-12-31',1,dataset_id,2), + (112,733.563788900,'2001-01-01','2022-12-31',1,dataset_id,2), + (56,802.627933200,'2001-01-01','2022-12-31',1,dataset_id,2), + (70,955.387270300,'2001-01-01','2022-12-31',1,dataset_id,2), + (100,636.897798300,'2001-01-01','2022-12-31',1,dataset_id,2), + (191,953.747090200,'2001-01-01','2022-12-31',1,dataset_id,2), + (196,369.855628000,'2001-01-01','2022-12-31',1,dataset_id,2), + (203,706.187727100,'2001-01-01','2022-12-31',1,dataset_id,2), + (208,825.904261400,'2001-01-01','2022-12-31',1,dataset_id,2), + (233,720.728364000,'2001-01-01','2022-12-31',1,dataset_id,2), + (246,806.423941500,'2001-01-01','2022-12-31',1,dataset_id,2), + (250,767.303070800,'2001-01-01','2022-12-31',1,dataset_id,2), + (275,207.365018800,'2001-01-01','2022-12-31',1,dataset_id,2), + (268,771.443532900,'2001-01-01','2022-12-31',1,dataset_id,2), + (276,773.468442900,'2001-01-01','2022-12-31',1,dataset_id,2), + (300,628.587909700,'2001-01-01','2022-12-31',1,dataset_id,2), + (348,629.482422700,'2001-01-01','2022-12-31',1,dataset_id,2), + (352,1510.479370000,'2001-01-01','2022-12-31',1,dataset_id,2), + (364,189.506667300,'2001-01-01','2022-12-31',1,dataset_id,2), + (368,141.291278000,'2001-01-01','2022-12-31',1,dataset_id,2), + (372,1178.174601000,'2001-01-01','2022-12-31',1,dataset_id,2), + (376,234.719195000,'2001-01-01','2022-12-31',1,dataset_id,2), + (380,776.077145300,'2001-01-01','2022-12-31',1,dataset_id,2), + (400,94.531037670,'2001-01-01','2022-12-31',1,dataset_id,2), + (414,41.233841340,'2001-01-01','2022-12-31',1,dataset_id,2), + (428,741.133179900,'2001-01-01','2022-12-31',1,dataset_id,2), + (422,405.052530200,'2001-01-01','2022-12-31',1,dataset_id,2), + (440,762.647984000,'2001-01-01','2022-12-31',1,dataset_id,2), + (442,825.307045200,'2001-01-01','2022-12-31',1,dataset_id,2), + (807,695.453670900,'2001-01-01','2022-12-31',1,dataset_id,2), + (498,540.342836400,'2001-01-01','2022-12-31',1,dataset_id,2), + (499,1238.244366000,'2001-01-01','2022-12-31',1,dataset_id,2), + (528,803.015635900,'2001-01-01','2022-12-31',1,dataset_id,2), + (578,1389.270139000,'2001-01-01','2022-12-31',1,dataset_id,2), + (512,98.002974330,'2001-01-01','2022-12-31',1,dataset_id,2), + (616,670.106198600,'2001-01-01','2022-12-31',1,dataset_id,2), + (634,44.906698870,'2001-01-01','2022-12-31',1,dataset_id,2), + (642,665.876661200,'2001-01-01','2022-12-31',1,dataset_id,2), + (682,29.504466490,'2001-01-01','2022-12-31',1,dataset_id,2), + (688,740.913496500,'2001-01-01','2022-12-31',1,dataset_id,2), + (703,745.513190900,'2001-01-01','2022-12-31',1,dataset_id,2), + (705,1052.119398000,'2001-01-01','2022-12-31',1,dataset_id,2), + (724,522.279734700,'2001-01-01','2022-12-31',1,dataset_id,2), + (752,873.396712600,'2001-01-01','2022-12-31',1,dataset_id,2), + (756,1247.573831000,'2001-01-01','2022-12-31',1,dataset_id,2), + (760,224.262976600,'2001-01-01','2022-12-31',1,dataset_id,2), + (792,546.956297000,'2001-01-01','2022-12-31',1,dataset_id,2), + (804,592.844087200,'2001-01-01','2022-12-31',1,dataset_id,2), + (784,50.412430430,'2001-01-01','2022-12-31',1,dataset_id,2), + (826,1023.887029000,'2001-01-01','2022-12-31',1,dataset_id,2), + (887,59.513406810,'2001-01-01','2022-12-31',1,dataset_id,2), + (84,1769.831239000,'2001-01-01','2022-12-31',1,dataset_id,2), + (124,676.700070900,'2001-01-01','2022-12-31',1,dataset_id,2), + (170,2083.812828000,'2001-01-01','2022-12-31',1,dataset_id,2), + (188,2129.438766000,'2001-01-01','2022-12-31',1,dataset_id,2), + (192,879.471742400,'2001-01-01','2022-12-31',1,dataset_id,2), + (214,671.325915400,'2001-01-01','2022-12-31',1,dataset_id,2), + (222,1404.261698000,'2001-01-01','2022-12-31',1,dataset_id,2), + (304,493.144402900,'2001-01-01','2022-12-31',1,dataset_id,2), + (320,1714.280225000,'2001-01-01','2022-12-31',1,dataset_id,2), + (332,621.151396800,'2001-01-01','2022-12-31',1,dataset_id,2), + (340,1510.032933000,'2001-01-01','2022-12-31',1,dataset_id,2), + (388,1059.498452000,'2001-01-01','2022-12-31',1,dataset_id,2), + (484,756.987694400,'2001-01-01','2022-12-31',1,dataset_id,2), + (558,1591.487785000,'2001-01-01','2022-12-31',1,dataset_id,2), + (591,2341.935825000,'2001-01-01','2022-12-31',1,dataset_id,2), + (630,1075.289809000,'2001-01-01','2022-12-31',1,dataset_id,2), + (44,982.904955100,'2001-01-01','2022-12-31',1,dataset_id,2), + (840,802.917792300,'2001-01-01','2022-12-31',1,dataset_id,2), + (10,217.098066500,'2001-01-01','2022-12-31',1,dataset_id,2), + (36,484.796424400,'2001-01-01','2022-12-31',1,dataset_id,2), + (96,3007.236053000,'2001-01-01','2022-12-31',1,dataset_id,2), + (242,2139.998957000,'2001-01-01','2022-12-31',1,dataset_id,2), + (360,2678.196022000,'2001-01-01','2022-12-31',1,dataset_id,2), + (458,2955.722456000,'2001-01-01','2022-12-31',1,dataset_id,2), + (540,1222.764286000,'2001-01-01','2022-12-31',1,dataset_id,2), + (554,1217.060422000,'2001-01-01','2022-12-31',1,dataset_id,2), + (598,2174.325229000,'2001-01-01','2022-12-31',1,dataset_id,2), + (608,2578.499984000,'2001-01-01','2022-12-31',1,dataset_id,2), + (90,2863.289091000,'2001-01-01','2022-12-31',1,dataset_id,2), + (626,988.081701400,'2001-01-01','2022-12-31',1,dataset_id,2), + (548,2071.264902000,'2001-01-01','2022-12-31',1,dataset_id,2), + (32,676.077448600,'2001-01-01','2022-12-31',1,dataset_id,2), + (68,1057.304959000,'2001-01-01','2022-12-31',1,dataset_id,2), + (76,1555.072874000,'2001-01-01','2022-12-31',1,dataset_id,2), + (152,685.135436400,'2001-01-01','2022-12-31',1,dataset_id,2), + (218,1478.465160000,'2001-01-01','2022-12-31',1,dataset_id,2), + (238,623.622557900,'2001-01-01','2022-12-31',1,dataset_id,2), + (328,1735.885172000,'2001-01-01','2022-12-31',1,dataset_id,2), + (740,1944.941896000,'2001-01-01','2022-12-31',1,dataset_id,2), + (600,1148.485311000,'2001-01-01','2022-12-31',1,dataset_id,2), + (604,1153.224623000,'2001-01-01','2022-12-31',1,dataset_id,2), + (780,1695.134349000,'2001-01-01','2022-12-31',1,dataset_id,2), + (858,1326.625597000,'2001-01-01','2022-12-31',1,dataset_id,2), + (862,1420.717577000,'2001-01-01','2022-12-31',1,dataset_id,2), + (12,90.531871000,'1980-01-01','2000-12-31',1,dataset_id,2), + (24,1061.564931000,'1980-01-01','2000-12-31',1,dataset_id,2), + (204,1111.961158000,'1980-01-01','2000-12-31',1,dataset_id,2), + (72,412.453829500,'1980-01-01','2000-12-31',1,dataset_id,2), + (854,781.747963600,'1980-01-01','2000-12-31',1,dataset_id,2), + (108,1202.242908000,'1980-01-01','2000-12-31',1,dataset_id,2), + (120,1778.628026000,'1980-01-01','2000-12-31',1,dataset_id,2), + (140,1482.461485000,'1980-01-01','2000-12-31',1,dataset_id,2), + (148,359.020615400,'1980-01-01','2000-12-31',1,dataset_id,2), + (818,22.055916820,'1980-01-01','2000-12-31',1,dataset_id,2), + (566,1304.355726000,'1980-01-01','2000-12-31',1,dataset_id,2), + (178,1757.269368000,'1980-01-01','2000-12-31',1,dataset_id,2), + (180,1747.345321000,'1980-01-01','2000-12-31',1,dataset_id,2), + (384,1424.589451000,'1980-01-01','2000-12-31',1,dataset_id,2), + (262,416.684593200,'1980-01-01','2000-12-31',1,dataset_id,2), + (226,2300.226482000,'1980-01-01','2000-12-31',1,dataset_id,2), + (232,455.577887600,'1980-01-01','2000-12-31',1,dataset_id,2), + (231,986.215179500,'1980-01-01','2000-12-31',1,dataset_id,2), + (260,1081.066924000,'1980-01-01','2000-12-31',1,dataset_id,2), + (266,1992.222490000,'1980-01-01','2000-12-31',1,dataset_id,2), + (288,1291.547983000,'1980-01-01','2000-12-31',1,dataset_id,2), + (324,1897.124058000,'1980-01-01','2000-12-31',1,dataset_id,2), + (624,1449.264201000,'1980-01-01','2000-12-31',1,dataset_id,2), + (404,683.941769000,'1980-01-01','2000-12-31',1,dataset_id,2), + (426,879.671002900,'1980-01-01','2000-12-31',1,dataset_id,2), + (430,2371.722630000,'1980-01-01','2000-12-31',1,dataset_id,2), + (434,49.998273230,'1980-01-01','2000-12-31',1,dataset_id,2), + (450,1688.859366000,'1980-01-01','2000-12-31',1,dataset_id,2), + (454,1184.235115000,'1980-01-01','2000-12-31',1,dataset_id,2), + (466,336.608410800,'1980-01-01','2000-12-31',1,dataset_id,2), + (478,119.386968000,'1980-01-01','2000-12-31',1,dataset_id,2), + (504,296.753390800,'1980-01-01','2000-12-31',1,dataset_id,2), + (508,1046.313322000,'1980-01-01','2000-12-31',1,dataset_id,2), + (516,268.379717300,'1980-01-01','2000-12-31',1,dataset_id,2), + (562,159.695526300,'1980-01-01','2000-12-31',1,dataset_id,2), + (646,1125.337016000,'1980-01-01','2000-12-31',1,dataset_id,2), + (686,682.275650600,'1980-01-01','2000-12-31',1,dataset_id,2), + (694,2679.455677000,'1980-01-01','2000-12-31',1,dataset_id,2), + (706,345.488512000,'1980-01-01','2000-12-31',1,dataset_id,2), + (729,264.807337700,'1980-01-01','2000-12-31',1,dataset_id,2), + (834,981.090409100,'1980-01-01','2000-12-31',1,dataset_id,2), + (710,550.112058600,'1980-01-01','2000-12-31',1,dataset_id,2), + (728,1105.558745000,'1980-01-01','2000-12-31',1,dataset_id,2), + (748,920.082486500,'1980-01-01','2000-12-31',1,dataset_id,2), + (270,847.380055100,'1980-01-01','2000-12-31',1,dataset_id,2), + (768,1256.669159000,'1980-01-01','2000-12-31',1,dataset_id,2), + (788,246.750267300,'1980-01-01','2000-12-31',1,dataset_id,2), + (800,1377.453766000,'1980-01-01','2000-12-31',1,dataset_id,2), + (732,68.662818880,'1980-01-01','2000-12-31',1,dataset_id,2), + (894,1021.009919000,'1980-01-01','2000-12-31',1,dataset_id,2), + (716,703.396503000,'1980-01-01','2000-12-31',1,dataset_id,2), + (620,750.837477200,'1980-01-01','2000-12-31',1,dataset_id,2), + (4,184.529296200,'1980-01-01','2000-12-31',1,dataset_id,2), + (50,1295.901362000,'1980-01-01','2000-12-31',1,dataset_id,2), + (64,1046.016961000,'1980-01-01','2000-12-31',1,dataset_id,2), + (104,840.489171800,'1980-01-01','2000-12-31',1,dataset_id,2), + (116,1659.113763000,'1980-01-01','2000-12-31',1,dataset_id,2), + (156,554.351135700,'1980-01-01','2000-12-31',1,dataset_id,2), + (356,958.557047200,'1980-01-01','2000-12-31',1,dataset_id,2), + (392,1439.869890000,'1980-01-01','2000-12-31',1,dataset_id,2), + (398,232.934978200,'1980-01-01','2000-12-31',1,dataset_id,2), + (417,269.528885100,'1980-01-01','2000-12-31',1,dataset_id,2), + (418,1345.371379000,'1980-01-01','2000-12-31',1,dataset_id,2), + (496,222.864720000,'1980-01-01','2000-12-31',1,dataset_id,2), + (524,678.499987500,'1980-01-01','2000-12-31',1,dataset_id,2), + (408,865.095569600,'1980-01-01','2000-12-31',1,dataset_id,2), + (586,223.346341700,'1980-01-01','2000-12-31',1,dataset_id,2), + (643,621.113130400,'1980-01-01','2000-12-31',1,dataset_id,2), + (410,1280.461181000,'1980-01-01','2000-12-31',1,dataset_id,2), + (144,1155.371103000,'1980-01-01','2000-12-31',1,dataset_id,2), + (158,1722.605940000,'1980-01-01','2000-12-31',1,dataset_id,2), + (762,240.764954700,'1980-01-01','2000-12-31',1,dataset_id,2), + (764,1446.107670000,'1980-01-01','2000-12-31',1,dataset_id,2), + (795,127.298543300,'1980-01-01','2000-12-31',1,dataset_id,2), + (860,143.002995400,'1980-01-01','2000-12-31',1,dataset_id,2), + (704,1282.279152000,'1980-01-01','2000-12-31',1,dataset_id,2), + (8,817.046684100,'1980-01-01','2000-12-31',1,dataset_id,2), + (51,280.366201900,'1980-01-01','2000-12-31',1,dataset_id,2), + (40,988.004413900,'1980-01-01','2000-12-31',1,dataset_id,2), + (31,327.815534900,'1980-01-01','2000-12-31',1,dataset_id,2), + (112,715.825000900,'1980-01-01','2000-12-31',1,dataset_id,2), + (56,834.955279700,'1980-01-01','2000-12-31',1,dataset_id,2), + (70,902.276298900,'1980-01-01','2000-12-31',1,dataset_id,2), + (100,513.009672800,'1980-01-01','2000-12-31',1,dataset_id,2), + (191,888.620427500,'1980-01-01','2000-12-31',1,dataset_id,2), + (196,354.451376900,'1980-01-01','2000-12-31',1,dataset_id,2), + (203,688.203269700,'1980-01-01','2000-12-31',1,dataset_id,2), + (208,806.976366400,'1980-01-01','2000-12-31',1,dataset_id,2), + (233,779.854606000,'1980-01-01','2000-12-31',1,dataset_id,2), + (246,813.752607500,'1980-01-01','2000-12-31',1,dataset_id,2), + (250,801.357585500,'1980-01-01','2000-12-31',1,dataset_id,2), + (275,213.376077000,'1980-01-01','2000-12-31',1,dataset_id,2), + (268,731.090779000,'1980-01-01','2000-12-31',1,dataset_id,2), + (276,793.582534700,'1980-01-01','2000-12-31',1,dataset_id,2), + (300,553.804977900,'1980-01-01','2000-12-31',1,dataset_id,2), + (348,605.510069300,'1980-01-01','2000-12-31',1,dataset_id,2), + (352,1441.875705000,'1980-01-01','2000-12-31',1,dataset_id,2), + (364,156.273691300,'1980-01-01','2000-12-31',1,dataset_id,2), + (368,125.912114900,'1980-01-01','2000-12-31',1,dataset_id,2), + (372,1165.424731000,'1980-01-01','2000-12-31',1,dataset_id,2), + (376,238.685289800,'1980-01-01','2000-12-31',1,dataset_id,2), + (380,720.683087700,'1980-01-01','2000-12-31',1,dataset_id,2), + (400,106.887888700,'1980-01-01','2000-12-31',1,dataset_id,2), + (414,86.338670110,'1980-01-01','2000-12-31',1,dataset_id,2), + (428,796.922746900,'1980-01-01','2000-12-31',1,dataset_id,2), + (422,382.838814800,'1980-01-01','2000-12-31',1,dataset_id,2), + (440,776.014314600,'1980-01-01','2000-12-31',1,dataset_id,2), + (442,906.630947500,'1980-01-01','2000-12-31',1,dataset_id,2), + (807,586.826696100,'1980-01-01','2000-12-31',1,dataset_id,2), + (498,505.032134100,'1980-01-01','2000-12-31',1,dataset_id,2), + (499,1042.583170000,'1980-01-01','2000-12-31',1,dataset_id,2), + (528,816.053997300,'1980-01-01','2000-12-31',1,dataset_id,2), + (578,1379.438748000,'1980-01-01','2000-12-31',1,dataset_id,2), + (512,56.933216350,'1980-01-01','2000-12-31',1,dataset_id,2), + (616,649.905422300,'1980-01-01','2000-12-31',1,dataset_id,2), + (634,71.467298710,'1980-01-01','2000-12-31',1,dataset_id,2), + (642,551.522982700,'1980-01-01','2000-12-31',1,dataset_id,2), + (682,44.642884130,'1980-01-01','2000-12-31',1,dataset_id,2), + (688,643.352348600,'1980-01-01','2000-12-31',1,dataset_id,2), + (703,713.984353100,'1980-01-01','2000-12-31',1,dataset_id,2), + (705,1011.729728000,'1980-01-01','2000-12-31',1,dataset_id,2), + (724,501.605419500,'1980-01-01','2000-12-31',1,dataset_id,2), + (752,894.072151100,'1980-01-01','2000-12-31',1,dataset_id,2), + (756,1199.585975000,'1980-01-01','2000-12-31',1,dataset_id,2), + (760,204.196859100,'1980-01-01','2000-12-31',1,dataset_id,2), + (792,496.604006300,'1980-01-01','2000-12-31',1,dataset_id,2), + (804,569.177915300,'1980-01-01','2000-12-31',1,dataset_id,2), + (784,67.195172160,'1980-01-01','2000-12-31',1,dataset_id,2), + (826,985.971188800,'1980-01-01','2000-12-31',1,dataset_id,2), + (887,62.935528060,'1980-01-01','2000-12-31',1,dataset_id,2), + (84,1167.155914000,'1980-01-01','2000-12-31',1,dataset_id,2), + (124,666.206563900,'1980-01-01','2000-12-31',1,dataset_id,2), + (170,2238.464448000,'1980-01-01','2000-12-31',1,dataset_id,2), + (188,1271.988719000,'1980-01-01','2000-12-31',1,dataset_id,2), + (192,792.196342200,'1980-01-01','2000-12-31',1,dataset_id,2), + (214,772.899965700,'1980-01-01','2000-12-31',1,dataset_id,2), + (222,756.631460000,'1980-01-01','2000-12-31',1,dataset_id,2), + (304,488.376569000,'1980-01-01','2000-12-31',1,dataset_id,2), + (320,1168.818938000,'1980-01-01','2000-12-31',1,dataset_id,2), + (332,569.292616700,'1980-01-01','2000-12-31',1,dataset_id,2), + (340,834.475713600,'1980-01-01','2000-12-31',1,dataset_id,2), + (388,815.255776200,'1980-01-01','2000-12-31',1,dataset_id,2), + (484,750.245330500,'1980-01-01','2000-12-31',1,dataset_id,2), + (558,847.169458300,'1980-01-01','2000-12-31',1,dataset_id,2), + (591,1830.497874000,'1980-01-01','2000-12-31',1,dataset_id,2), + (630,1257.715798000,'1980-01-01','2000-12-31',1,dataset_id,2), + (44,844.267997900,'1980-01-01','2000-12-31',1,dataset_id,2), + (840,812.870977700,'1980-01-01','2000-12-31',1,dataset_id,2), + (10,213.431274500,'1980-01-01','2000-12-31',1,dataset_id,2), + (36,490.807053000,'1980-01-01','2000-12-31',1,dataset_id,2), + (96,2705.694637000,'1980-01-01','2000-12-31',1,dataset_id,2), + (242,1720.790692000,'1980-01-01','2000-12-31',1,dataset_id,2), + (360,2278.539558000,'1980-01-01','2000-12-31',1,dataset_id,2), + (458,2627.781445000,'1980-01-01','2000-12-31',1,dataset_id,2), + (540,1261.672227000,'1980-01-01','2000-12-31',1,dataset_id,2), + (554,1296.082940000,'1980-01-01','2000-12-31',1,dataset_id,2), + (598,2057.483130000,'1980-01-01','2000-12-31',1,dataset_id,2), + (608,1770.284095000,'1980-01-01','2000-12-31',1,dataset_id,2), + (90,2370.241732000,'1980-01-01','2000-12-31',1,dataset_id,2), + (626,957.184696800,'1980-01-01','2000-12-31',1,dataset_id,2), + (548,1849.310016000,'1980-01-01','2000-12-31',1,dataset_id,2), + (32,727.195763800,'1980-01-01','2000-12-31',1,dataset_id,2), + (68,1181.909129000,'1980-01-01','2000-12-31',1,dataset_id,2), + (76,1791.414026000,'1980-01-01','2000-12-31',1,dataset_id,2), + (152,758.955989000,'1980-01-01','2000-12-31',1,dataset_id,2), + (218,1568.819980000,'1980-01-01','2000-12-31',1,dataset_id,2), + (238,630.275436600,'1980-01-01','2000-12-31',1,dataset_id,2), + (328,1761.618811000,'1980-01-01','2000-12-31',1,dataset_id,2), + (740,2033.869203000,'1980-01-01','2000-12-31',1,dataset_id,2), + (600,1153.417946000,'1980-01-01','2000-12-31',1,dataset_id,2), + (604,1140.332345000,'1980-01-01','2000-12-31',1,dataset_id,2), + (780,1181.436871000,'1980-01-01','2000-12-31',1,dataset_id,2), + (858,1247.155775000,'1980-01-01','2000-12-31',1,dataset_id,2), + (862,2015.962441000,'1980-01-01','2000-12-31',1,dataset_id,2), + (12,91.164993670,'1980-01-01','2022-12-31',1,dataset_id,2), + (24,972.049395800,'1980-01-01','2022-12-31',1,dataset_id,2), + (204,1143.962602000,'1980-01-01','2022-12-31',1,dataset_id,2), + (72,434.258706000,'1980-01-01','2022-12-31',1,dataset_id,2), + (854,817.571390200,'1980-01-01','2022-12-31',1,dataset_id,2), + (108,1314.854041000,'1980-01-01','2022-12-31',1,dataset_id,2), + (120,1684.461802000,'1980-01-01','2022-12-31',1,dataset_id,2), + (140,1429.972692000,'1980-01-01','2022-12-31',1,dataset_id,2), + (148,355.270076700,'1980-01-01','2022-12-31',1,dataset_id,2), + (818,22.517132550,'1980-01-01','2022-12-31',1,dataset_id,2), + (566,1238.862826000,'1980-01-01','2022-12-31',1,dataset_id,2), + (178,1704.611534000,'1980-01-01','2022-12-31',1,dataset_id,2), + (180,1624.751033000,'1980-01-01','2022-12-31',1,dataset_id,2), + (384,1388.794270000,'1980-01-01','2022-12-31',1,dataset_id,2), + (262,357.664402600,'1980-01-01','2022-12-31',1,dataset_id,2), + (226,2206.050291000,'1980-01-01','2022-12-31',1,dataset_id,2), + (232,403.190293500,'1980-01-01','2022-12-31',1,dataset_id,2), + (231,928.828284900,'1980-01-01','2022-12-31',1,dataset_id,2), + (260,1077.460801000,'1980-01-01','2022-12-31',1,dataset_id,2), + (266,1899.916598000,'1980-01-01','2022-12-31',1,dataset_id,2), + (288,1282.603553000,'1980-01-01','2022-12-31',1,dataset_id,2), + (324,1819.516153000,'1980-01-01','2022-12-31',1,dataset_id,2), + (624,1508.199841000,'1980-01-01','2022-12-31',1,dataset_id,2), + (404,692.857257200,'1980-01-01','2022-12-31',1,dataset_id,2), + (426,848.836443700,'1980-01-01','2022-12-31',1,dataset_id,2), + (430,2157.752735000,'1980-01-01','2022-12-31',1,dataset_id,2), + (434,45.997809600,'1980-01-01','2022-12-31',1,dataset_id,2), + (450,1652.508253000,'1980-01-01','2022-12-31',1,dataset_id,2), + (454,1171.692292000,'1980-01-01','2022-12-31',1,dataset_id,2), + (466,350.549443200,'1980-01-01','2022-12-31',1,dataset_id,2), + (478,136.546273500,'1980-01-01','2022-12-31',1,dataset_id,2), + (504,313.597685400,'1980-01-01','2022-12-31',1,dataset_id,2), + (508,1052.764874000,'1980-01-01','2022-12-31',1,dataset_id,2), + (516,295.486200000,'1980-01-01','2022-12-31',1,dataset_id,2), + (562,171.070745000,'1980-01-01','2022-12-31',1,dataset_id,2), + (646,1270.401678000,'1980-01-01','2022-12-31',1,dataset_id,2), + (686,718.773329900,'1980-01-01','2022-12-31',1,dataset_id,2), + (694,2437.632674000,'1980-01-01','2022-12-31',1,dataset_id,2), + (706,359.643174600,'1980-01-01','2022-12-31',1,dataset_id,2), + (729,249.208479600,'1980-01-01','2022-12-31',1,dataset_id,2), + (834,1056.226016000,'1980-01-01','2022-12-31',1,dataset_id,2), + (710,527.566828700,'1980-01-01','2022-12-31',1,dataset_id,2), + (728,1032.394156000,'1980-01-01','2022-12-31',1,dataset_id,2), + (748,833.900994000,'1980-01-01','2022-12-31',1,dataset_id,2), + (270,891.707881100,'1980-01-01','2022-12-31',1,dataset_id,2), + (768,1277.699244000,'1980-01-01','2022-12-31',1,dataset_id,2), + (788,251.344831000,'1980-01-01','2022-12-31',1,dataset_id,2), + (800,1279.116498000,'1980-01-01','2022-12-31',1,dataset_id,2), + (732,84.401103220,'1980-01-01','2022-12-31',1,dataset_id,2), + (894,1005.376955000,'1980-01-01','2022-12-31',1,dataset_id,2), + (716,702.261672500,'1980-01-01','2022-12-31',1,dataset_id,2), + (620,744.976368200,'1980-01-01','2022-12-31',1,dataset_id,2), + (4,213.923878800,'1980-01-01','2022-12-31',1,dataset_id,2), + (50,1835.056964000,'1980-01-01','2022-12-31',1,dataset_id,2), + (64,1163.884524000,'1980-01-01','2022-12-31',1,dataset_id,2), + (104,944.674088400,'1980-01-01','2022-12-31',1,dataset_id,2), + (116,1613.143512000,'1980-01-01','2022-12-31',1,dataset_id,2), + (156,590.721083600,'1980-01-01','2022-12-31',1,dataset_id,2), + (356,1026.835532000,'1980-01-01','2022-12-31',1,dataset_id,2), + (392,1531.673595000,'1980-01-01','2022-12-31',1,dataset_id,2), + (398,250.468618400,'1980-01-01','2022-12-31',1,dataset_id,2), + (417,291.224789100,'1980-01-01','2022-12-31',1,dataset_id,2), + (418,1314.812430000,'1980-01-01','2022-12-31',1,dataset_id,2), + (496,216.578349500,'1980-01-01','2022-12-31',1,dataset_id,2), + (524,896.409774600,'1980-01-01','2022-12-31',1,dataset_id,2), + (408,919.286969500,'1980-01-01','2022-12-31',1,dataset_id,2), + (586,264.702016800,'1980-01-01','2022-12-31',1,dataset_id,2), + (643,630.809486400,'1980-01-01','2022-12-31',1,dataset_id,2), + (410,1287.149113000,'1980-01-01','2022-12-31',1,dataset_id,2), + (144,1413.834794000,'1980-01-01','2022-12-31',1,dataset_id,2), + (158,1787.019342000,'1980-01-01','2022-12-31',1,dataset_id,2), + (762,234.711697600,'1980-01-01','2022-12-31',1,dataset_id,2), + (764,1495.449233000,'1980-01-01','2022-12-31',1,dataset_id,2), + (795,136.664960600,'1980-01-01','2022-12-31',1,dataset_id,2), + (860,152.537305100,'1980-01-01','2022-12-31',1,dataset_id,2), + (704,1399.310386000,'1980-01-01','2022-12-31',1,dataset_id,2), + (8,881.972416100,'1980-01-01','2022-12-31',1,dataset_id,2), + (51,326.471507900,'1980-01-01','2022-12-31',1,dataset_id,2), + (40,1018.612367000,'1980-01-01','2022-12-31',1,dataset_id,2), + (31,332.591167900,'1980-01-01','2022-12-31',1,dataset_id,2), + (112,724.900659200,'1980-01-01','2022-12-31',1,dataset_id,2), + (56,818.415710800,'1980-01-01','2022-12-31',1,dataset_id,2), + (70,929.449351300,'1980-01-01','2022-12-31',1,dataset_id,2), + (100,576.394297900,'1980-01-01','2022-12-31',1,dataset_id,2), + (191,921.941047300,'1980-01-01','2022-12-31',1,dataset_id,2), + (196,362.332623300,'1980-01-01','2022-12-31',1,dataset_id,2), + (203,697.404617300,'1980-01-01','2022-12-31',1,dataset_id,2), + (208,816.660409800,'1980-01-01','2022-12-31',1,dataset_id,2), + (233,749.603973900,'1980-01-01','2022-12-31',1,dataset_id,2), + (246,810.003055100,'1980-01-01','2022-12-31',1,dataset_id,2), + (250,783.934345200,'1980-01-01','2022-12-31',1,dataset_id,2), + (275,210.300655800,'1980-01-01','2022-12-31',1,dataset_id,2), + (268,751.736369300,'1980-01-01','2022-12-31',1,dataset_id,2), + (276,783.291604300,'1980-01-01','2022-12-31',1,dataset_id,2), + (300,592.066011700,'1980-01-01','2022-12-31',1,dataset_id,2), + (348,617.774990200,'1980-01-01','2022-12-31',1,dataset_id,2), + (352,1476.975258000,'1980-01-01','2022-12-31',1,dataset_id,2), + (364,173.276609400,'1980-01-01','2022-12-31',1,dataset_id,2), + (368,133.780523900,'1980-01-01','2022-12-31',1,dataset_id,2), + (372,1171.947917000,'1980-01-01','2022-12-31',1,dataset_id,2), + (376,236.656123700,'1980-01-01','2022-12-31',1,dataset_id,2), + (380,749.024231900,'1980-01-01','2022-12-31',1,dataset_id,2), + (400,100.565778700,'1980-01-01','2022-12-31',1,dataset_id,2), + (414,63.261780760,'1980-01-01','2022-12-31',1,dataset_id,2), + (428,768.379253000,'1980-01-01','2022-12-31',1,dataset_id,2), + (422,394.203967400,'1980-01-01','2022-12-31',1,dataset_id,2), + (440,769.175724000,'1980-01-01','2022-12-31',1,dataset_id,2), + (442,865.023355100,'1980-01-01','2022-12-31',1,dataset_id,2), + (807,642.403286600,'1980-01-01','2022-12-31',1,dataset_id,2), + (498,523.098072600,'1980-01-01','2022-12-31',1,dataset_id,2), + (499,1142.688894000,'1980-01-01','2022-12-31',1,dataset_id,2), + (528,809.383200400,'1980-01-01','2022-12-31',1,dataset_id,2), + (578,1384.468760000,'1980-01-01','2022-12-31',1,dataset_id,2), + (512,77.945650790,'1980-01-01','2022-12-31',1,dataset_id,2), + (616,660.240700700,'1980-01-01','2022-12-31',1,dataset_id,2), + (634,57.878154180,'1980-01-01','2022-12-31',1,dataset_id,2), + (642,610.029517500,'1980-01-01','2022-12-31',1,dataset_id,2), + (682,36.897647220,'1980-01-01','2022-12-31',1,dataset_id,2), + (688,693.267356500,'1980-01-01','2022-12-31',1,dataset_id,2), + (703,730.115390200,'1980-01-01','2022-12-31',1,dataset_id,2), + (705,1032.394215000,'1980-01-01','2022-12-31',1,dataset_id,2), + (724,512.182975300,'1980-01-01','2022-12-31',1,dataset_id,2), + (752,883.494016600,'1980-01-01','2022-12-31',1,dataset_id,2), + (756,1224.137914000,'1980-01-01','2022-12-31',1,dataset_id,2), + (760,214.463244500,'1980-01-01','2022-12-31',1,dataset_id,2), + (792,522.365643700,'1980-01-01','2022-12-31',1,dataset_id,2), + (804,581.286187800,'1980-01-01','2022-12-31',1,dataset_id,2), + (784,58.608652920,'1980-01-01','2022-12-31',1,dataset_id,2), + (826,1005.369987000,'1980-01-01','2022-12-31',1,dataset_id,2), + (887,61.184675220,'1980-01-01','2022-12-31',1,dataset_id,2), + (84,1475.501445000,'1980-01-01','2022-12-31',1,dataset_id,2), + (124,671.575334800,'1980-01-01','2022-12-31',1,dataset_id,2), + (170,2159.340366000,'1980-01-01','2022-12-31',1,dataset_id,2), + (188,1710.684080000,'1980-01-01','2022-12-31',1,dataset_id,2), + (192,836.848870800,'1980-01-01','2022-12-31',1,dataset_id,2), + (214,720.931847100,'1980-01-01','2022-12-31',1,dataset_id,2), + (222,1087.977180000,'1980-01-01','2022-12-31',1,dataset_id,2), + (304,490.815926300,'1980-01-01','2022-12-31',1,dataset_id,2), + (320,1447.892158000,'1980-01-01','2022-12-31',1,dataset_id,2), + (332,595.825013600,'1980-01-01','2022-12-31',1,dataset_id,2), + (340,1180.109643000,'1980-01-01','2022-12-31',1,dataset_id,2), + (388,940.217159500,'1980-01-01','2022-12-31',1,dataset_id,2), + (484,753.694910300,'1980-01-01','2022-12-31',1,dataset_id,2), + (558,1227.983487000,'1980-01-01','2022-12-31',1,dataset_id,2), + (591,2092.163797000,'1980-01-01','2022-12-31',1,dataset_id,2), + (630,1164.381540000,'1980-01-01','2022-12-31',1,dataset_id,2), + (44,915.198534700,'1980-01-01','2022-12-31',1,dataset_id,2), + (840,807.778650300,'1980-01-01','2022-12-31',1,dataset_id,2), + (10,215.307307800,'1980-01-01','2022-12-31',1,dataset_id,2), + (36,487.731847600,'1980-01-01','2022-12-31',1,dataset_id,2), + (96,2859.971616000,'1980-01-01','2022-12-31',1,dataset_id,2), + (242,1935.269330000,'1980-01-01','2022-12-31',1,dataset_id,2), + (360,2483.014954000,'1980-01-01','2022-12-31',1,dataset_id,2), + (458,2795.565213000,'1980-01-01','2022-12-31',1,dataset_id,2), + (540,1241.765849000,'1980-01-01','2022-12-31',1,dataset_id,2), + (554,1255.652817000,'1980-01-01','2022-12-31',1,dataset_id,2), + (598,2117.262805000,'1980-01-01','2022-12-31',1,dataset_id,2), + (608,2183.789898000,'1980-01-01','2022-12-31',1,dataset_id,2), + (90,2622.498521000,'1980-01-01','2022-12-31',1,dataset_id,2), + (626,972.992454700,'1980-01-01','2022-12-31',1,dataset_id,2), + (548,1962.868322000,'1980-01-01','2022-12-31',1,dataset_id,2), + (32,701.042206900,'1980-01-01','2022-12-31',1,dataset_id,2), + (68,1118.158160000,'1980-01-01','2022-12-31',1,dataset_id,2), + (76,1670.495298000,'1980-01-01','2022-12-31',1,dataset_id,2), + (152,721.187332200,'1980-01-01','2022-12-31',1,dataset_id,2), + (218,1522.591938000,'1980-01-01','2022-12-31',1,dataset_id,2), + (238,626.871640700,'1980-01-01','2022-12-31',1,dataset_id,2), + (328,1748.452765000,'1980-01-01','2022-12-31',1,dataset_id,2), + (740,1988.371510000,'1980-01-01','2022-12-31',1,dataset_id,2), + (600,1150.894273000,'1980-01-01','2022-12-31',1,dataset_id,2), + (604,1146.928396000,'1980-01-01','2022-12-31',1,dataset_id,2), + (780,1444.258872000,'1980-01-01','2022-12-31',1,dataset_id,2), + (858,1287.814754000,'1980-01-01','2022-12-31',1,dataset_id,2), + (862,1711.418555000,'1980-01-01','2022-12-31',1,dataset_id,2), + (12,68.743372770,'2001-01-01','2022-12-31',2,dataset_id,2), + (24,1124.426046000,'2001-01-01','2022-12-31',2,dataset_id,2), + (204,1032.495812000,'2001-01-01','2022-12-31',2,dataset_id,2), + (72,451.985356100,'2001-01-01','2022-12-31',2,dataset_id,2), + (854,588.553828200,'2001-01-01','2022-12-31',2,dataset_id,2), + (108,1755.428788000,'2001-01-01','2022-12-31',2,dataset_id,2), + (120,1683.617990000,'2001-01-01','2022-12-31',2,dataset_id,2), + (140,1182.281849000,'2001-01-01','2022-12-31',2,dataset_id,2), + (148,282.130629400,'2001-01-01','2022-12-31',2,dataset_id,2), + (818,11.471271170,'2001-01-01','2022-12-31',2,dataset_id,2), + (566,1056.752819000,'2001-01-01','2022-12-31',2,dataset_id,2), + (178,1474.767211000,'2001-01-01','2022-12-31',2,dataset_id,2), + (180,1541.033920000,'2001-01-01','2022-12-31',2,dataset_id,2), + (384,1258.787909000,'2001-01-01','2022-12-31',2,dataset_id,2), + (262,194.365881700,'2001-01-01','2022-12-31',2,dataset_id,2), + (226,2848.129880000,'2001-01-01','2022-12-31',2,dataset_id,2), + (232,310.861205500,'2001-01-01','2022-12-31',2,dataset_id,2), + (231,966.632834000,'2001-01-01','2022-12-31',2,dataset_id,2), + (260,1714.282979000,'2001-01-01','2022-12-31',2,dataset_id,2), + (266,2001.649933000,'2001-01-01','2022-12-31',2,dataset_id,2), + (288,1091.351408000,'2001-01-01','2022-12-31',2,dataset_id,2), + (324,1661.258621000,'2001-01-01','2022-12-31',2,dataset_id,2), + (624,1296.857165000,'2001-01-01','2022-12-31',2,dataset_id,2), + (404,689.339416700,'2001-01-01','2022-12-31',2,dataset_id,2), + (426,1060.127195000,'2001-01-01','2022-12-31',2,dataset_id,2), + (430,2348.966785000,'2001-01-01','2022-12-31',2,dataset_id,2), + (434,21.881213320,'2001-01-01','2022-12-31',2,dataset_id,2), + (450,1423.194426000,'2001-01-01','2022-12-31',2,dataset_id,2), + (454,1365.257930000,'2001-01-01','2022-12-31',2,dataset_id,2), + (466,238.598067800,'2001-01-01','2022-12-31',2,dataset_id,2), + (478,63.366796660,'2001-01-01','2022-12-31',2,dataset_id,2), + (504,277.638545800,'2001-01-01','2022-12-31',2,dataset_id,2), + (508,880.719138100,'2001-01-01','2022-12-31',2,dataset_id,2), + (516,356.431369100,'2001-01-01','2022-12-31',2,dataset_id,2), + (562,84.430762860,'2001-01-01','2022-12-31',2,dataset_id,2), + (646,1450.845852000,'2001-01-01','2022-12-31',2,dataset_id,2), + (686,491.347055400,'2001-01-01','2022-12-31',2,dataset_id,2), + (694,2544.629373000,'2001-01-01','2022-12-31',2,dataset_id,2), + (706,277.724975100,'2001-01-01','2022-12-31',2,dataset_id,2), + (729,181.033962800,'2001-01-01','2022-12-31',2,dataset_id,2), + (834,1035.706904000,'2001-01-01','2022-12-31',2,dataset_id,2), + (710,520.659454700,'2001-01-01','2022-12-31',2,dataset_id,2), + (728,921.512675400,'2001-01-01','2022-12-31',2,dataset_id,2), + (748,837.084016000,'2001-01-01','2022-12-31',2,dataset_id,2), + (270,711.909369500,'2001-01-01','2022-12-31',2,dataset_id,2), + (768,1245.161639000,'2001-01-01','2022-12-31',2,dataset_id,2), + (788,203.270886400,'2001-01-01','2022-12-31',2,dataset_id,2), + (800,1531.516885000,'2001-01-01','2022-12-31',2,dataset_id,2), + (732,39.847918410,'2001-01-01','2022-12-31',2,dataset_id,2), + (894,1113.439991000,'2001-01-01','2022-12-31',2,dataset_id,2), + (716,742.896618000,'2001-01-01','2022-12-31',2,dataset_id,2), + (620,769.719281800,'2001-01-01','2022-12-31',2,dataset_id,2), + (4,338.060354100,'2001-01-01','2022-12-31',2,dataset_id,2), + (50,2194.048945000,'2001-01-01','2022-12-31',2,dataset_id,2), + (64,3230.316097000,'2001-01-01','2022-12-31',2,dataset_id,2), + (104,2283.731844000,'2001-01-01','2022-12-31',2,dataset_id,2), + (116,1810.479619000,'2001-01-01','2022-12-31',2,dataset_id,2), + (156,789.301795500,'2001-01-01','2022-12-31',2,dataset_id,2), + (356,1274.091541000,'2001-01-01','2022-12-31',2,dataset_id,2), + (392,1776.291093000,'2001-01-01','2022-12-31',2,dataset_id,2), + (398,324.599401300,'2001-01-01','2022-12-31',2,dataset_id,2), + (417,906.581378500,'2001-01-01','2022-12-31',2,dataset_id,2), + (418,1946.094031000,'2001-01-01','2022-12-31',2,dataset_id,2), + (496,252.484919800,'2001-01-01','2022-12-31',2,dataset_id,2), + (524,2051.134255000,'2001-01-01','2022-12-31',2,dataset_id,2), + (408,1118.774689000,'2001-01-01','2022-12-31',2,dataset_id,2), + (586,419.836456300,'2001-01-01','2022-12-31',2,dataset_id,2), + (643,584.230640200,'2001-01-01','2022-12-31',2,dataset_id,2), + (410,1214.802672000,'2001-01-01','2022-12-31',2,dataset_id,2), + (144,1788.523222000,'2001-01-01','2022-12-31',2,dataset_id,2), + (158,2736.381932000,'2001-01-01','2022-12-31',2,dataset_id,2), + (762,718.751712600,'2001-01-01','2022-12-31',2,dataset_id,2), + (764,1670.771088000,'2001-01-01','2022-12-31',2,dataset_id,2), + (795,166.386538500,'2001-01-01','2022-12-31',2,dataset_id,2), + (860,247.491524200,'2001-01-01','2022-12-31',2,dataset_id,2), + (704,2015.489648000,'2001-01-01','2022-12-31',2,dataset_id,2), + (8,1309.593741000,'2001-01-01','2022-12-31',2,dataset_id,2), + (51,858.249246000,'2001-01-01','2022-12-31',2,dataset_id,2), + (40,1238.843695000,'2001-01-01','2022-12-31',2,dataset_id,2), + (31,609.954959000,'2001-01-01','2022-12-31',2,dataset_id,2), + (112,725.924693100,'2001-01-01','2022-12-31',2,dataset_id,2), + (56,895.769449400,'2001-01-01','2022-12-31',2,dataset_id,2), + (70,1239.415663000,'2001-01-01','2022-12-31',2,dataset_id,2), + (100,770.809253500,'2001-01-01','2022-12-31',2,dataset_id,2), + (191,1103.604602000,'2001-01-01','2022-12-31',2,dataset_id,2), + (196,385.336937700,'2001-01-01','2022-12-31',2,dataset_id,2), + (203,809.259957800,'2001-01-01','2022-12-31',2,dataset_id,2), + (208,832.135901100,'2001-01-01','2022-12-31',2,dataset_id,2), + (233,750.023072300,'2001-01-01','2022-12-31',2,dataset_id,2), + (246,717.044828900,'2001-01-01','2022-12-31',2,dataset_id,2), + (250,934.099744500,'2001-01-01','2022-12-31',2,dataset_id,2), + (275,222.856973600,'2001-01-01','2022-12-31',2,dataset_id,2), + (268,1286.640485000,'2001-01-01','2022-12-31',2,dataset_id,2), + (276,875.229710800,'2001-01-01','2022-12-31',2,dataset_id,2), + (300,801.708026100,'2001-01-01','2022-12-31',2,dataset_id,2), + (348,702.593318300,'2001-01-01','2022-12-31',2,dataset_id,2), + (352,1457.564005000,'2001-01-01','2022-12-31',2,dataset_id,2), + (364,271.200169400,'2001-01-01','2022-12-31',2,dataset_id,2), + (368,205.642005400,'2001-01-01','2022-12-31',2,dataset_id,2), + (372,1119.372509000,'2001-01-01','2022-12-31',2,dataset_id,2), + (376,220.231465200,'2001-01-01','2022-12-31',2,dataset_id,2), + (380,1017.322882000,'2001-01-01','2022-12-31',2,dataset_id,2), + (400,80.868464440,'2001-01-01','2022-12-31',2,dataset_id,2), + (414,116.660044700,'2001-01-01','2022-12-31',2,dataset_id,2), + (428,756.346464100,'2001-01-01','2022-12-31',2,dataset_id,2), + (422,575.649611000,'2001-01-01','2022-12-31',2,dataset_id,2), + (440,746.991638600,'2001-01-01','2022-12-31',2,dataset_id,2), + (442,926.731767600,'2001-01-01','2022-12-31',2,dataset_id,2), + (807,779.527192600,'2001-01-01','2022-12-31',2,dataset_id,2), + (498,557.344802100,'2001-01-01','2022-12-31',2,dataset_id,2), + (499,1625.058783000,'2001-01-01','2022-12-31',2,dataset_id,2), + (528,874.037693100,'2001-01-01','2022-12-31',2,dataset_id,2), + (578,1334.659950000,'2001-01-01','2022-12-31',2,dataset_id,2), + (512,43.649338340,'2001-01-01','2022-12-31',2,dataset_id,2), + (616,747.958273600,'2001-01-01','2022-12-31',2,dataset_id,2), + (634,51.431425520,'2001-01-01','2022-12-31',2,dataset_id,2), + (642,796.258819000,'2001-01-01','2022-12-31',2,dataset_id,2), + (682,56.592275750,'2001-01-01','2022-12-31',2,dataset_id,2), + (688,801.177756900,'2001-01-01','2022-12-31',2,dataset_id,2), + (703,846.276780900,'2001-01-01','2022-12-31',2,dataset_id,2), + (705,1274.474397000,'2001-01-01','2022-12-31',2,dataset_id,2), + (724,651.575643600,'2001-01-01','2022-12-31',2,dataset_id,2), + (752,791.946275300,'2001-01-01','2022-12-31',2,dataset_id,2), + (756,1592.681744000,'2001-01-01','2022-12-31',2,dataset_id,2), + (760,225.852936400,'2001-01-01','2022-12-31',2,dataset_id,2), + (792,693.528887900,'2001-01-01','2022-12-31',2,dataset_id,2), + (804,626.009397700,'2001-01-01','2022-12-31',2,dataset_id,2), + (784,36.815617600,'2001-01-01','2022-12-31',2,dataset_id,2), + (826,1061.607336000,'2001-01-01','2022-12-31',2,dataset_id,2), + (887,137.718425100,'2001-01-01','2022-12-31',2,dataset_id,2), + (84,1597.568282000,'2001-01-01','2022-12-31',2,dataset_id,2), + (124,680.433565200,'2001-01-01','2022-12-31',2,dataset_id,2), + (170,3303.295631000,'2001-01-01','2022-12-31',2,dataset_id,2), + (188,3418.671161000,'2001-01-01','2022-12-31',2,dataset_id,2), + (192,936.987692500,'2001-01-01','2022-12-31',2,dataset_id,2), + (214,1057.241294000,'2001-01-01','2022-12-31',2,dataset_id,2), + (222,1607.877630000,'2001-01-01','2022-12-31',2,dataset_id,2), + (304,445.178450000,'2001-01-01','2022-12-31',2,dataset_id,2), + (320,1847.538258000,'2001-01-01','2022-12-31',2,dataset_id,2), + (332,854.156519700,'2001-01-01','2022-12-31',2,dataset_id,2), + (340,1660.477322000,'2001-01-01','2022-12-31',2,dataset_id,2), + (388,1106.777962000,'2001-01-01','2022-12-31',2,dataset_id,2), + (484,818.247789500,'2001-01-01','2022-12-31',2,dataset_id,2), + (558,1823.465482000,'2001-01-01','2022-12-31',2,dataset_id,2), + (591,3169.208347000,'2001-01-01','2022-12-31',2,dataset_id,2), + (630,1120.709683000,'2001-01-01','2022-12-31',2,dataset_id,2), + (44,937.829221100,'2001-01-01','2022-12-31',2,dataset_id,2), + (840,818.584857700,'2001-01-01','2022-12-31',2,dataset_id,2), + (10,203.282569000,'2001-01-01','2022-12-31',2,dataset_id,2), + (36,445.773539600,'2001-01-01','2022-12-31',2,dataset_id,2), + (96,2983.365098000,'2001-01-01','2022-12-31',2,dataset_id,2), + (242,2305.827589000,'2001-01-01','2022-12-31',2,dataset_id,2), + (360,3201.627001000,'2001-01-01','2022-12-31',2,dataset_id,2), + (458,2932.483011000,'2001-01-01','2022-12-31',2,dataset_id,2), + (540,1409.680854000,'2001-01-01','2022-12-31',2,dataset_id,2), + (554,1562.667819000,'2001-01-01','2022-12-31',2,dataset_id,2), + (598,4050.406989000,'2001-01-01','2022-12-31',2,dataset_id,2), + (608,2726.871685000,'2001-01-01','2022-12-31',2,dataset_id,2), + (90,3947.802563000,'2001-01-01','2022-12-31',2,dataset_id,2), + (626,1512.411371000,'2001-01-01','2022-12-31',2,dataset_id,2), + (548,2248.764578000,'2001-01-01','2022-12-31',2,dataset_id,2), + (32,741.451471600,'2001-01-01','2022-12-31',2,dataset_id,2), + (68,1464.624792000,'2001-01-01','2022-12-31',2,dataset_id,2), + (76,1758.914823000,'2001-01-01','2022-12-31',2,dataset_id,2), + (152,1514.618611000,'2001-01-01','2022-12-31',2,dataset_id,2), + (218,3085.452840000,'2001-01-01','2022-12-31',2,dataset_id,2), + (238,617.122819900,'2001-01-01','2022-12-31',2,dataset_id,2), + (328,2102.808223000,'2001-01-01','2022-12-31',2,dataset_id,2), + (740,1994.637388000,'2001-01-01','2022-12-31',2,dataset_id,2), + (600,1276.377296000,'2001-01-01','2022-12-31',2,dataset_id,2), + (604,2131.277808000,'2001-01-01','2022-12-31',2,dataset_id,2), + (780,1542.236116000,'2001-01-01','2022-12-31',2,dataset_id,2), + (858,1257.265707000,'2001-01-01','2022-12-31',2,dataset_id,2), + (862,2210.699848000,'2001-01-01','2022-12-31',2,dataset_id,2), + (12,68.228104590,'1980-01-01','2000-12-31',2,dataset_id,2), + (24,1102.846588000,'1980-01-01','2000-12-31',2,dataset_id,2), + (204,1125.043604000,'1980-01-01','2000-12-31',2,dataset_id,2), + (72,437.442381600,'1980-01-01','2000-12-31',2,dataset_id,2), + (854,635.838595300,'1980-01-01','2000-12-31',2,dataset_id,2), + (108,1889.052115000,'1980-01-01','2000-12-31',2,dataset_id,2), + (120,1906.817242000,'1980-01-01','2000-12-31',2,dataset_id,2), + (140,1559.760823000,'1980-01-01','2000-12-31',2,dataset_id,2), + (148,332.941149700,'1980-01-01','2000-12-31',2,dataset_id,2), + (818,13.944764680,'1980-01-01','2000-12-31',2,dataset_id,2), + (566,1119.843438000,'1980-01-01','2000-12-31',2,dataset_id,2), + (178,1732.799476000,'1980-01-01','2000-12-31',2,dataset_id,2), + (180,1875.981688000,'1980-01-01','2000-12-31',2,dataset_id,2), + (384,1354.149173000,'1980-01-01','2000-12-31',2,dataset_id,2), + (262,251.294720900,'1980-01-01','2000-12-31',2,dataset_id,2), + (226,2964.022752000,'1980-01-01','2000-12-31',2,dataset_id,2), + (232,374.539027200,'1980-01-01','2000-12-31',2,dataset_id,2), + (231,1040.742963000,'1980-01-01','2000-12-31',2,dataset_id,2), + (260,1691.159539000,'1980-01-01','2000-12-31',2,dataset_id,2), + (266,2112.932848000,'1980-01-01','2000-12-31',2,dataset_id,2), + (288,1207.796687000,'1980-01-01','2000-12-31',2,dataset_id,2), + (324,1781.521069000,'1980-01-01','2000-12-31',2,dataset_id,2), + (624,1320.929845000,'1980-01-01','2000-12-31',2,dataset_id,2), + (404,740.756930300,'1980-01-01','2000-12-31',2,dataset_id,2), + (426,1144.123604000,'1980-01-01','2000-12-31',2,dataset_id,2), + (430,2306.241069000,'1980-01-01','2000-12-31',2,dataset_id,2), + (434,26.288529150,'1980-01-01','2000-12-31',2,dataset_id,2), + (450,1405.027225000,'1980-01-01','2000-12-31',2,dataset_id,2), + (454,1353.102898000,'1980-01-01','2000-12-31',2,dataset_id,2), + (466,265.844440700,'1980-01-01','2000-12-31',2,dataset_id,2), + (478,69.525407270,'1980-01-01','2000-12-31',2,dataset_id,2), + (504,289.143841200,'1980-01-01','2000-12-31',2,dataset_id,2), + (508,907.807028000,'1980-01-01','2000-12-31',2,dataset_id,2), + (516,304.929223500,'1980-01-01','2000-12-31',2,dataset_id,2), + (562,84.319821680,'1980-01-01','2000-12-31',2,dataset_id,2), + (646,1606.723425000,'1980-01-01','2000-12-31',2,dataset_id,2), + (686,528.899844900,'1980-01-01','2000-12-31',2,dataset_id,2), + (694,2542.825593000,'1980-01-01','2000-12-31',2,dataset_id,2), + (706,307.930408400,'1980-01-01','2000-12-31',2,dataset_id,2), + (729,228.792092300,'1980-01-01','2000-12-31',2,dataset_id,2), + (834,1129.458649000,'1980-01-01','2000-12-31',2,dataset_id,2), + (710,552.067680200,'1980-01-01','2000-12-31',2,dataset_id,2), + (728,1192.837603000,'1980-01-01','2000-12-31',2,dataset_id,2), + (748,885.967308900,'1980-01-01','2000-12-31',2,dataset_id,2), + (270,758.803877500,'1980-01-01','2000-12-31',2,dataset_id,2), + (768,1405.012150000,'1980-01-01','2000-12-31',2,dataset_id,2), + (788,202.450311500,'1980-01-01','2000-12-31',2,dataset_id,2), + (800,1731.868294000,'1980-01-01','2000-12-31',2,dataset_id,2), + (732,36.111021660,'1980-01-01','2000-12-31',2,dataset_id,2), + (894,1065.439014000,'1980-01-01','2000-12-31',2,dataset_id,2), + (716,713.326679900,'1980-01-01','2000-12-31',2,dataset_id,2), + (620,780.196149400,'1980-01-01','2000-12-31',2,dataset_id,2), + (4,387.153984600,'1980-01-01','2000-12-31',2,dataset_id,2), + (50,2263.824794000,'1980-01-01','2000-12-31',2,dataset_id,2), + (64,3176.466231000,'1980-01-01','2000-12-31',2,dataset_id,2), + (104,2400.648516000,'1980-01-01','2000-12-31',2,dataset_id,2), + (116,1836.124652000,'1980-01-01','2000-12-31',2,dataset_id,2), + (156,863.864924300,'1980-01-01','2000-12-31',2,dataset_id,2), + (356,1213.890430000,'1980-01-01','2000-12-31',2,dataset_id,2), + (392,1733.246521000,'1980-01-01','2000-12-31',2,dataset_id,2), + (398,345.200076200,'1980-01-01','2000-12-31',2,dataset_id,2), + (417,921.574518300,'1980-01-01','2000-12-31',2,dataset_id,2), + (418,2026.261448000,'1980-01-01','2000-12-31',2,dataset_id,2), + (496,297.576369800,'1980-01-01','2000-12-31',2,dataset_id,2), + (524,1932.295861000,'1980-01-01','2000-12-31',2,dataset_id,2), + (408,1151.082317000,'1980-01-01','2000-12-31',2,dataset_id,2), + (586,450.874402600,'1980-01-01','2000-12-31',2,dataset_id,2), + (643,590.303094600,'1980-01-01','2000-12-31',2,dataset_id,2), + (410,1327.198865000,'1980-01-01','2000-12-31',2,dataset_id,2), + (144,1557.145452000,'1980-01-01','2000-12-31',2,dataset_id,2), + (158,2699.155131000,'1980-01-01','2000-12-31',2,dataset_id,2), + (762,774.315222100,'1980-01-01','2000-12-31',2,dataset_id,2), + (764,1665.063030000,'1980-01-01','2000-12-31',2,dataset_id,2), + (795,181.487132400,'1980-01-01','2000-12-31',2,dataset_id,2), + (860,261.385225500,'1980-01-01','2000-12-31',2,dataset_id,2), + (704,2068.024800000,'1980-01-01','2000-12-31',2,dataset_id,2), + (8,1163.766497000,'1980-01-01','2000-12-31',2,dataset_id,2), + (51,861.770459800,'1980-01-01','2000-12-31',2,dataset_id,2), + (40,1208.182575000,'1980-01-01','2000-12-31',2,dataset_id,2), + (31,645.701925800,'1980-01-01','2000-12-31',2,dataset_id,2), + (112,756.839324500,'1980-01-01','2000-12-31',2,dataset_id,2), + (56,907.852315100,'1980-01-01','2000-12-31',2,dataset_id,2), + (70,1155.137496000,'1980-01-01','2000-12-31',2,dataset_id,2), + (100,734.345512800,'1980-01-01','2000-12-31',2,dataset_id,2), + (191,1053.260073000,'1980-01-01','2000-12-31',2,dataset_id,2), + (196,367.913168700,'1980-01-01','2000-12-31',2,dataset_id,2), + (203,791.399608900,'1980-01-01','2000-12-31',2,dataset_id,2), + (208,796.592486200,'1980-01-01','2000-12-31',2,dataset_id,2), + (233,767.590971700,'1980-01-01','2000-12-31',2,dataset_id,2), + (246,698.332750600,'1980-01-01','2000-12-31',2,dataset_id,2), + (250,974.467457100,'1980-01-01','2000-12-31',2,dataset_id,2), + (275,248.114876400,'1980-01-01','2000-12-31',2,dataset_id,2), + (268,1316.380875000,'1980-01-01','2000-12-31',2,dataset_id,2), + (276,894.785726600,'1980-01-01','2000-12-31',2,dataset_id,2), + (300,719.092363000,'1980-01-01','2000-12-31',2,dataset_id,2), + (348,670.468581900,'1980-01-01','2000-12-31',2,dataset_id,2), + (352,1384.927345000,'1980-01-01','2000-12-31',2,dataset_id,2), + (364,292.923702800,'1980-01-01','2000-12-31',2,dataset_id,2), + (368,222.561576300,'1980-01-01','2000-12-31',2,dataset_id,2), + (372,1126.894322000,'1980-01-01','2000-12-31',2,dataset_id,2), + (376,235.998989600,'1980-01-01','2000-12-31',2,dataset_id,2), + (380,945.012917200,'1980-01-01','2000-12-31',2,dataset_id,2), + (400,89.890079830,'1980-01-01','2000-12-31',2,dataset_id,2), + (414,133.493156400,'1980-01-01','2000-12-31',2,dataset_id,2), + (428,787.777573300,'1980-01-01','2000-12-31',2,dataset_id,2), + (422,575.046057600,'1980-01-01','2000-12-31',2,dataset_id,2), + (440,782.686882000,'1980-01-01','2000-12-31',2,dataset_id,2), + (442,959.078555000,'1980-01-01','2000-12-31',2,dataset_id,2), + (807,696.555319100,'1980-01-01','2000-12-31',2,dataset_id,2), + (498,624.745287100,'1980-01-01','2000-12-31',2,dataset_id,2), + (499,1486.131360000,'1980-01-01','2000-12-31',2,dataset_id,2), + (528,870.731673300,'1980-01-01','2000-12-31',2,dataset_id,2), + (578,1288.329969000,'1980-01-01','2000-12-31',2,dataset_id,2), + (512,55.031377440,'1980-01-01','2000-12-31',2,dataset_id,2), + (616,751.806024000,'1980-01-01','2000-12-31',2,dataset_id,2), + (634,72.198084530,'1980-01-01','2000-12-31',2,dataset_id,2), + (642,819.969169800,'1980-01-01','2000-12-31',2,dataset_id,2), + (682,71.309292530,'1980-01-01','2000-12-31',2,dataset_id,2), + (688,746.629115100,'1980-01-01','2000-12-31',2,dataset_id,2), + (703,825.755213300,'1980-01-01','2000-12-31',2,dataset_id,2), + (705,1254.664012000,'1980-01-01','2000-12-31',2,dataset_id,2), + (724,647.331141900,'1980-01-01','2000-12-31',2,dataset_id,2), + (752,782.827786700,'1980-01-01','2000-12-31',2,dataset_id,2), + (756,1666.974438000,'1980-01-01','2000-12-31',2,dataset_id,2), + (760,251.214782900,'1980-01-01','2000-12-31',2,dataset_id,2), + (792,708.097444300,'1980-01-01','2000-12-31',2,dataset_id,2), + (804,680.136835300,'1980-01-01','2000-12-31',2,dataset_id,2), + (784,66.679288710,'1980-01-01','2000-12-31',2,dataset_id,2), + (826,1050.292785000,'1980-01-01','2000-12-31',2,dataset_id,2), + (887,157.357329300,'1980-01-01','2000-12-31',2,dataset_id,2), + (84,1667.091333000,'1980-01-01','2000-12-31',2,dataset_id,2), + (124,657.280398600,'1980-01-01','2000-12-31',2,dataset_id,2), + (170,3434.953191000,'1980-01-01','2000-12-31',2,dataset_id,2), + (188,3144.008162000,'1980-01-01','2000-12-31',2,dataset_id,2), + (192,952.203041900,'1980-01-01','2000-12-31',2,dataset_id,2), + (214,1113.304372000,'1980-01-01','2000-12-31',2,dataset_id,2), + (222,1526.372221000,'1980-01-01','2000-12-31',2,dataset_id,2), + (304,427.921067300,'1980-01-01','2000-12-31',2,dataset_id,2), + (320,1866.150535000,'1980-01-01','2000-12-31',2,dataset_id,2), + (332,854.420615600,'1980-01-01','2000-12-31',2,dataset_id,2), + (340,1612.265450000,'1980-01-01','2000-12-31',2,dataset_id,2), + (388,1033.420634000,'1980-01-01','2000-12-31',2,dataset_id,2), + (484,859.466964200,'1980-01-01','2000-12-31',2,dataset_id,2), + (558,1700.470528000,'1980-01-01','2000-12-31',2,dataset_id,2), + (591,3033.870858000,'1980-01-01','2000-12-31',2,dataset_id,2), + (630,1074.323587000,'1980-01-01','2000-12-31',2,dataset_id,2), + (44,950.622863000,'1980-01-01','2000-12-31',2,dataset_id,2), + (840,852.144700600,'1980-01-01','2000-12-31',2,dataset_id,2), + (10,200.264005400,'1980-01-01','2000-12-31',2,dataset_id,2), + (36,471.890723900,'1980-01-01','2000-12-31',2,dataset_id,2), + (96,2871.590655000,'1980-01-01','2000-12-31',2,dataset_id,2), + (242,2013.384222000,'1980-01-01','2000-12-31',2,dataset_id,2), + (360,3069.898978000,'1980-01-01','2000-12-31',2,dataset_id,2), + (458,2805.077341000,'1980-01-01','2000-12-31',2,dataset_id,2), + (540,1286.290262000,'1980-01-01','2000-12-31',2,dataset_id,2), + (554,1596.918006000,'1980-01-01','2000-12-31',2,dataset_id,2), + (598,3602.378757000,'1980-01-01','2000-12-31',2,dataset_id,2), + (608,2459.019701000,'1980-01-01','2000-12-31',2,dataset_id,2), + (90,3217.414021000,'1980-01-01','2000-12-31',2,dataset_id,2), + (626,1500.247590000,'1980-01-01','2000-12-31',2,dataset_id,2), + (548,1972.353603000,'1980-01-01','2000-12-31',2,dataset_id,2), + (32,866.935346700,'1980-01-01','2000-12-31',2,dataset_id,2), + (68,1562.214348000,'1980-01-01','2000-12-31',2,dataset_id,2), + (76,1842.658769000,'1980-01-01','2000-12-31',2,dataset_id,2), + (152,1524.390713000,'1980-01-01','2000-12-31',2,dataset_id,2), + (218,3202.559798000,'1980-01-01','2000-12-31',2,dataset_id,2), + (238,638.915354600,'1980-01-01','2000-12-31',2,dataset_id,2), + (328,1816.667890000,'1980-01-01','2000-12-31',2,dataset_id,2), + (740,1592.775830000,'1980-01-01','2000-12-31',2,dataset_id,2), + (600,1568.176639000,'1980-01-01','2000-12-31',2,dataset_id,2), + (604,2219.913833000,'1980-01-01','2000-12-31',2,dataset_id,2), + (780,1369.813686000,'1980-01-01','2000-12-31',2,dataset_id,2), + (858,1331.362255000,'1980-01-01','2000-12-31',2,dataset_id,2), + (862,2154.201601000,'1980-01-01','2000-12-31',2,dataset_id,2), + (12,68.491730270,'1980-01-01','2022-12-31',2,dataset_id,2), + (24,1113.887242000,'1980-01-01','2022-12-31',2,dataset_id,2), + (204,1077.693575000,'1980-01-01','2022-12-31',2,dataset_id,2), + (72,444.882974600,'1980-01-01','2022-12-31',2,dataset_id,2), + (854,611.646390400,'1980-01-01','2022-12-31',2,dataset_id,2), + (108,1820.686670000,'1980-01-01','2022-12-31',2,dataset_id,2), + (120,1792.622289000,'1980-01-01','2022-12-31',2,dataset_id,2), + (140,1366.632037000,'1980-01-01','2022-12-31',2,dataset_id,2), + (148,306.945069300,'1980-01-01','2022-12-31',2,dataset_id,2), + (818,12.679256340,'1980-01-01','2022-12-31',2,dataset_id,2), + (566,1087.564514000,'1980-01-01','2022-12-31',2,dataset_id,2), + (178,1600.782964000,'1980-01-01','2022-12-31',2,dataset_id,2), + (180,1704.613063000,'1980-01-01','2022-12-31',2,dataset_id,2), + (384,1305.359683000,'1980-01-01','2022-12-31',2,dataset_id,2), + (262,222.168338100,'1980-01-01','2022-12-31',2,dataset_id,2), + (226,2904.728752000,'1980-01-01','2022-12-31',2,dataset_id,2), + (232,341.959680100,'1980-01-01','2022-12-31',2,dataset_id,2), + (231,1002.826154000,'1980-01-01','2022-12-31',2,dataset_id,2), + (260,1702.990099000,'1980-01-01','2022-12-31',2,dataset_id,2), + (266,2055.997405000,'1980-01-01','2022-12-31',2,dataset_id,2), + (288,1148.220030000,'1980-01-01','2022-12-31',2,dataset_id,2), + (324,1719.991447000,'1980-01-01','2022-12-31',2,dataset_id,2), + (624,1308.613588000,'1980-01-01','2022-12-31',2,dataset_id,2), + (404,714.450294200,'1980-01-01','2022-12-31',2,dataset_id,2), + (426,1101.148690000,'1980-01-01','2022-12-31',2,dataset_id,2), + (430,2328.100732000,'1980-01-01','2022-12-31',2,dataset_id,2), + (434,24.033623370,'1980-01-01','2022-12-31',2,dataset_id,2), + (450,1414.322070000,'1980-01-01','2022-12-31',2,dataset_id,2), + (454,1359.321749000,'1980-01-01','2022-12-31',2,dataset_id,2), + (466,251.904435800,'1980-01-01','2022-12-31',2,dataset_id,2), + (478,66.374490020,'1980-01-01','2022-12-31',2,dataset_id,2), + (504,283.257410700,'1980-01-01','2022-12-31',2,dataset_id,2), + (508,893.948107000,'1980-01-01','2022-12-31',2,dataset_id,2), + (516,331.279156600,'1980-01-01','2022-12-31',2,dataset_id,2), + (562,84.376582340,'1980-01-01','2022-12-31',2,dataset_id,2), + (646,1526.972102000,'1980-01-01','2022-12-31',2,dataset_id,2), + (686,509.686791100,'1980-01-01','2022-12-31',2,dataset_id,2), + (694,2543.748455000,'1980-01-01','2022-12-31',2,dataset_id,2), + (706,292.476465400,'1980-01-01','2022-12-31',2,dataset_id,2), + (729,204.357700900,'1980-01-01','2022-12-31',2,dataset_id,2), + (834,1081.492641000,'1980-01-01','2022-12-31',2,dataset_id,2), + (710,535.998357200,'1980-01-01','2022-12-31',2,dataset_id,2), + (728,1054.020197000,'1980-01-01','2022-12-31',2,dataset_id,2), + (748,860.957237300,'1980-01-01','2022-12-31',2,dataset_id,2), + (270,734.811341300,'1980-01-01','2022-12-31',2,dataset_id,2), + (768,1323.228182000,'1980-01-01','2022-12-31',2,dataset_id,2), + (788,202.870139900,'1980-01-01','2022-12-31',2,dataset_id,2), + (800,1629.362927000,'1980-01-01','2022-12-31',2,dataset_id,2), + (732,38.022922160,'1980-01-01','2022-12-31',2,dataset_id,2), + (894,1089.997652000,'1980-01-01','2022-12-31',2,dataset_id,2), + (716,728.455485100,'1980-01-01','2022-12-31',2,dataset_id,2), + (620,774.835889600,'1980-01-01','2022-12-31',2,dataset_id,2), + (4,362.036312700,'1980-01-01','2022-12-31',2,dataset_id,2), + (50,2228.125517000,'1980-01-01','2022-12-31',2,dataset_id,2), + (64,3204.017334000,'1980-01-01','2022-12-31',2,dataset_id,2), + (104,2340.830687000,'1980-01-01','2022-12-31',2,dataset_id,2), + (116,1823.003942000,'1980-01-01','2022-12-31',2,dataset_id,2), + (156,825.716347000,'1980-01-01','2022-12-31',2,dataset_id,2), + (356,1244.690999000,'1980-01-01','2022-12-31',2,dataset_id,2), + (392,1755.269326000,'1980-01-01','2022-12-31',2,dataset_id,2), + (398,334.660196200,'1980-01-01','2022-12-31',2,dataset_id,2), + (417,913.903607200,'1980-01-01','2022-12-31',2,dataset_id,2), + (418,1985.245566000,'1980-01-01','2022-12-31',2,dataset_id,2), + (496,274.506325800,'1980-01-01','2022-12-31',2,dataset_id,2), + (524,1993.096908000,'1980-01-01','2022-12-31',2,dataset_id,2), + (408,1134.552837000,'1980-01-01','2022-12-31',2,dataset_id,2), + (586,434.994525300,'1980-01-01','2022-12-31',2,dataset_id,2), + (643,587.196257200,'1980-01-01','2022-12-31',2,dataset_id,2), + (410,1269.693838000,'1980-01-01','2022-12-31',2,dataset_id,2), + (144,1675.524789000,'1980-01-01','2022-12-31',2,dataset_id,2), + (158,2718.201403000,'1980-01-01','2022-12-31',2,dataset_id,2), + (762,745.887378500,'1980-01-01','2022-12-31',2,dataset_id,2), + (764,1667.983433000,'1980-01-01','2022-12-31',2,dataset_id,2), + (795,173.761247100,'1980-01-01','2022-12-31',2,dataset_id,2), + (860,254.276820300,'1980-01-01','2022-12-31',2,dataset_id,2), + (704,2041.146348000,'1980-01-01','2022-12-31',2,dataset_id,2), + (8,1238.375766000,'1980-01-01','2022-12-31',2,dataset_id,2), + (51,859.968911600,'1980-01-01','2022-12-31',2,dataset_id,2), + (40,1223.869666000,'1980-01-01','2022-12-31',2,dataset_id,2), + (31,627.412777200,'1980-01-01','2022-12-31',2,dataset_id,2), + (112,741.022533400,'1980-01-01','2022-12-31',2,dataset_id,2), + (56,901.670395700,'1980-01-01','2022-12-31',2,dataset_id,2), + (70,1198.256545000,'1980-01-01','2022-12-31',2,dataset_id,2), + (100,753.001381500,'1980-01-01','2022-12-31',2,dataset_id,2), + (191,1079.017743000,'1980-01-01','2022-12-31',2,dataset_id,2), + (196,376.827655300,'1980-01-01','2022-12-31',2,dataset_id,2), + (203,800.537460600,'1980-01-01','2022-12-31',2,dataset_id,2), + (208,814.777495800,'1980-01-01','2022-12-31',2,dataset_id,2), + (233,758.602744900,'1980-01-01','2022-12-31',2,dataset_id,2), + (246,707.906371100,'1980-01-01','2022-12-31',2,dataset_id,2), + (250,953.814210100,'1980-01-01','2022-12-31',2,dataset_id,2), + (275,235.192225000,'1980-01-01','2022-12-31',2,dataset_id,2), + (268,1301.164860000,'1980-01-01','2022-12-31',2,dataset_id,2), + (276,884.780323700,'1980-01-01','2022-12-31',2,dataset_id,2), + (300,761.360840200,'1980-01-01','2022-12-31',2,dataset_id,2), + (348,686.904494000,'1980-01-01','2022-12-31',2,dataset_id,2), + (352,1422.090286000,'1980-01-01','2022-12-31',2,dataset_id,2), + (364,281.809336100,'1980-01-01','2022-12-31',2,dataset_id,2), + (368,213.905051200,'1980-01-01','2022-12-31',2,dataset_id,2), + (372,1123.045950000,'1980-01-01','2022-12-31',2,dataset_id,2), + (376,227.931883800,'1980-01-01','2022-12-31',2,dataset_id,2), + (380,982.008714100,'1980-01-01','2022-12-31',2,dataset_id,2), + (400,85.274368730,'1980-01-01','2022-12-31',2,dataset_id,2), + (414,124.880866300,'1980-01-01','2022-12-31',2,dataset_id,2), + (428,771.696545300,'1980-01-01','2022-12-31',2,dataset_id,2), + (422,575.354863700,'1980-01-01','2022-12-31',2,dataset_id,2), + (440,764.424201300,'1980-01-01','2022-12-31',2,dataset_id,2), + (442,942.529030800,'1980-01-01','2022-12-31',2,dataset_id,2), + (807,739.006042300,'1980-01-01','2022-12-31',2,dataset_id,2), + (498,590.261316900,'1980-01-01','2022-12-31',2,dataset_id,2), + (499,1557.210516000,'1980-01-01','2022-12-31',2,dataset_id,2), + (528,872.423121500,'1980-01-01','2022-12-31',2,dataset_id,2), + (578,1312.033680000,'1980-01-01','2022-12-31',2,dataset_id,2), + (512,49.208008630,'1980-01-01','2022-12-31',2,dataset_id,2), + (616,749.837411000,'1980-01-01','2022-12-31',2,dataset_id,2), + (634,61.573281640,'1980-01-01','2022-12-31',2,dataset_id,2), + (642,807.838297000,'1980-01-01','2022-12-31',2,dataset_id,2), + (682,63.779656050,'1980-01-01','2022-12-31',2,dataset_id,2), + (688,774.537722100,'1980-01-01','2022-12-31',2,dataset_id,2), + (703,836.254616900,'1980-01-01','2022-12-31',2,dataset_id,2), + (705,1264.799550000,'1980-01-01','2022-12-31',2,dataset_id,2), + (724,649.502746200,'1980-01-01','2022-12-31',2,dataset_id,2), + (752,787.493059500,'1980-01-01','2022-12-31',2,dataset_id,2), + (756,1628.964225000,'1980-01-01','2022-12-31',2,dataset_id,2), + (760,238.238955600,'1980-01-01','2022-12-31',2,dataset_id,2), + (792,700.643762600,'1980-01-01','2022-12-31',2,dataset_id,2), + (804,652.443727800,'1980-01-01','2022-12-31',2,dataset_id,2), + (784,51.400201020,'1980-01-01','2022-12-31',2,dataset_id,2), + (826,1056.081625000,'1980-01-01','2022-12-31',2,dataset_id,2), + (887,147.309518100,'1980-01-01','2022-12-31',2,dataset_id,2), + (84,1631.521429000,'1980-01-01','2022-12-31',2,dataset_id,2), + (124,669.126205200,'1980-01-01','2022-12-31',2,dataset_id,2), + (170,3367.593510000,'1980-01-01','2022-12-31',2,dataset_id,2), + (188,3284.533444000,'1980-01-01','2022-12-31',2,dataset_id,2), + (192,944.418439900,'1980-01-01','2022-12-31',2,dataset_id,2), + (214,1084.620938000,'1980-01-01','2022-12-31',2,dataset_id,2), + (222,1568.072658000,'1980-01-01','2022-12-31',2,dataset_id,2), + (304,436.750426000,'1980-01-01','2022-12-31',2,dataset_id,2), + (320,1856.627987000,'1980-01-01','2022-12-31',2,dataset_id,2), + (332,854.285499000,'1980-01-01','2022-12-31',2,dataset_id,2), + (340,1636.931981000,'1980-01-01','2022-12-31',2,dataset_id,2), + (388,1070.952277000,'1980-01-01','2022-12-31',2,dataset_id,2), + (484,838.378082600,'1980-01-01','2022-12-31',2,dataset_id,2), + (558,1763.398171000,'1980-01-01','2022-12-31',2,dataset_id,2), + (591,3103.113290000,'1980-01-01','2022-12-31',2,dataset_id,2), + (630,1098.056009000,'1980-01-01','2022-12-31',2,dataset_id,2), + (44,944.077278100,'1980-01-01','2022-12-31',2,dataset_id,2), + (840,834.974549100,'1980-01-01','2022-12-31',2,dataset_id,2), + (10,201.808386800,'1980-01-01','2022-12-31',2,dataset_id,2), + (36,458.528443500,'1980-01-01','2022-12-31',2,dataset_id,2), + (96,2928.777566000,'1980-01-01','2022-12-31',2,dataset_id,2), + (242,2163.006434000,'1980-01-01','2022-12-31',2,dataset_id,2), + (360,3137.294711000,'1980-01-01','2022-12-31',2,dataset_id,2), + (458,2870.261641000,'1980-01-01','2022-12-31',2,dataset_id,2), + (540,1349.420323000,'1980-01-01','2022-12-31',2,dataset_id,2), + (554,1579.394652000,'1980-01-01','2022-12-31',2,dataset_id,2), + (598,3831.602495000,'1980-01-01','2022-12-31',2,dataset_id,2), + (608,2596.060248000,'1980-01-01','2022-12-31',2,dataset_id,2), + (90,3591.101166000,'1980-01-01','2022-12-31',2,dataset_id,2), + (626,1506.470936000,'1980-01-01','2022-12-31',2,dataset_id,2), + (548,2113.773156000,'1980-01-01','2022-12-31',2,dataset_id,2), + (32,802.734293400,'1980-01-01','2022-12-31',2,dataset_id,2), + (68,1512.284804000,'1980-01-01','2022-12-31',2,dataset_id,2), + (76,1799.813030000,'1980-01-01','2022-12-31',2,dataset_id,2), + (152,1519.391036000,'1980-01-01','2022-12-31',2,dataset_id,2), + (218,3142.644605000,'1980-01-01','2022-12-31',2,dataset_id,2), + (238,627.765693700,'1980-01-01','2022-12-31',2,dataset_id,2), + (328,1963.065269000,'1980-01-01','2022-12-31',2,dataset_id,2), + (740,1798.379420000,'1980-01-01','2022-12-31',2,dataset_id,2), + (600,1418.883950000,'1980-01-01','2022-12-31',2,dataset_id,2), + (604,2174.565162000,'1980-01-01','2022-12-31',2,dataset_id,2), + (780,1458.029798000,'1980-01-01','2022-12-31',2,dataset_id,2), + (858,1293.452394000,'1980-01-01','2022-12-31',2,dataset_id,2), + (862,2183.107689000,'1980-01-01','2022-12-31',2,dataset_id,2); +end $$; \ No newline at end of file diff --git a/backend/migrations/20240815121655_add-merra-era-ro-projection-data.sql b/backend/migrations/20240815121655_add-merra-era-ro-projection-data.sql new file mode 100644 index 00000000..157847cb --- /dev/null +++ b/backend/migrations/20240815121655_add-merra-era-ro-projection-data.sql @@ -0,0 +1,1053 @@ +do $$ +DECLARE + dataset_id int; +BEGIN + SELECT id INTO dataset_id FROM dataset WHERE short_name = 'ro_MERRA2_ERA5'; + + INSERT INTO data (id,value,start_date,end_date,source,dataset,geography_type) + VALUES + (12,17.676974260,'2001-01-01','2022-12-31',1,dataset_id,2), + (24,386.661615600,'2001-01-01','2022-12-31',1,dataset_id,2), + (204,625.060938200,'2001-01-01','2022-12-31',1,dataset_id,2), + (72,84.011941650,'2001-01-01','2022-12-31',1,dataset_id,2), + (854,371.925928300,'2001-01-01','2022-12-31',1,dataset_id,2), + (108,719.053352700,'2001-01-01','2022-12-31',1,dataset_id,2), + (120,1008.082434000,'2001-01-01','2022-12-31',1,dataset_id,2), + (140,732.606034200,'2001-01-01','2022-12-31',1,dataset_id,2), + (148,153.559784000,'2001-01-01','2022-12-31',1,dataset_id,2), + (818,4.008641253,'2001-01-01','2022-12-31',1,dataset_id,2), + (566,696.825615300,'2001-01-01','2022-12-31',1,dataset_id,2), + (178,947.265770400,'2001-01-01','2022-12-31',1,dataset_id,2), + (180,805.458801600,'2001-01-01','2022-12-31',1,dataset_id,2), + (384,685.436208000,'2001-01-01','2022-12-31',1,dataset_id,2), + (262,41.271790320,'2001-01-01','2022-12-31',1,dataset_id,2), + (226,1570.305056000,'2001-01-01','2022-12-31',1,dataset_id,2), + (232,112.959590800,'2001-01-01','2022-12-31',1,dataset_id,2), + (231,398.365706000,'2001-01-01','2022-12-31',1,dataset_id,2), + (260,921.930764300,'2001-01-01','2022-12-31',1,dataset_id,2), + (266,1225.263703000,'2001-01-01','2022-12-31',1,dataset_id,2), + (288,647.904914900,'2001-01-01','2022-12-31',1,dataset_id,2), + (324,1303.462170000,'2001-01-01','2022-12-31',1,dataset_id,2), + (624,1280.333430000,'2001-01-01','2022-12-31',1,dataset_id,2), + (404,215.187865900,'2001-01-01','2022-12-31',1,dataset_id,2), + (426,232.694703800,'2001-01-01','2022-12-31',1,dataset_id,2), + (430,1378.719196000,'2001-01-01','2022-12-31',1,dataset_id,2), + (434,7.238874355,'2001-01-01','2022-12-31',1,dataset_id,2), + (450,1054.257058000,'2001-01-01','2022-12-31',1,dataset_id,2), + (454,739.619924100,'2001-01-01','2022-12-31',1,dataset_id,2), + (466,148.860563500,'2001-01-01','2022-12-31',1,dataset_id,2), + (478,37.207830480,'2001-01-01','2022-12-31',1,dataset_id,2), + (504,108.913330800,'2001-01-01','2022-12-31',1,dataset_id,2), + (508,566.426600400,'2001-01-01','2022-12-31',1,dataset_id,2), + (516,65.997777040,'2001-01-01','2022-12-31',1,dataset_id,2), + (562,44.580653330,'2001-01-01','2022-12-31',1,dataset_id,2), + (646,644.173902000,'2001-01-01','2022-12-31',1,dataset_id,2), + (686,429.542162000,'2001-01-01','2022-12-31',1,dataset_id,2), + (694,1827.270040000,'2001-01-01','2022-12-31',1,dataset_id,2), + (706,115.559856500,'2001-01-01','2022-12-31',1,dataset_id,2), + (729,82.640203920,'2001-01-01','2022-12-31',1,dataset_id,2), + (834,585.997193000,'2001-01-01','2022-12-31',1,dataset_id,2), + (710,103.370212200,'2001-01-01','2022-12-31',1,dataset_id,2), + (728,373.160400700,'2001-01-01','2022-12-31',1,dataset_id,2), + (748,155.506884200,'2001-01-01','2022-12-31',1,dataset_id,2), + (270,614.694277800,'2001-01-01','2022-12-31',1,dataset_id,2), + (768,703.607357000,'2001-01-01','2022-12-31',1,dataset_id,2), + (788,70.091313700,'2001-01-01','2022-12-31',1,dataset_id,2), + (800,501.685780300,'2001-01-01','2022-12-31',1,dataset_id,2), + (732,27.645081670,'2001-01-01','2022-12-31',1,dataset_id,2), + (894,518.317216300,'2001-01-01','2022-12-31',1,dataset_id,2), + (716,237.395439400,'2001-01-01','2022-12-31',1,dataset_id,2), + (620,407.877162900,'2001-01-01','2022-12-31',1,dataset_id,2), + (4,75.403144560,'2001-01-01','2022-12-31',1,dataset_id,2), + (50,1868.092150000,'2001-01-01','2022-12-31',1,dataset_id,2), + (64,798.703652700,'2001-01-01','2022-12-31',1,dataset_id,2), + (104,592.027597300,'2001-01-01','2022-12-31',1,dataset_id,2), + (116,1043.427005000,'2001-01-01','2022-12-31',1,dataset_id,2), + (156,257.569184800,'2001-01-01','2022-12-31',1,dataset_id,2), + (356,665.981887400,'2001-01-01','2022-12-31',1,dataset_id,2), + (392,1123.487542000,'2001-01-01','2022-12-31',1,dataset_id,2), + (398,82.534590540,'2001-01-01','2022-12-31',1,dataset_id,2), + (417,93.524606030,'2001-01-01','2022-12-31',1,dataset_id,2), + (418,729.271914200,'2001-01-01','2022-12-31',1,dataset_id,2), + (496,30.159730130,'2001-01-01','2022-12-31',1,dataset_id,2), + (524,686.463546700,'2001-01-01','2022-12-31',1,dataset_id,2), + (408,533.389696400,'2001-01-01','2022-12-31',1,dataset_id,2), + (586,87.776249640,'2001-01-01','2022-12-31',1,dataset_id,2), + (643,374.171866000,'2001-01-01','2022-12-31',1,dataset_id,2), + (410,797.296575600,'2001-01-01','2022-12-31',1,dataset_id,2), + (144,1129.988877000,'2001-01-01','2022-12-31',1,dataset_id,2), + (158,1388.404477000,'2001-01-01','2022-12-31',1,dataset_id,2), + (762,92.837949950,'2001-01-01','2022-12-31',1,dataset_id,2), + (764,979.134577900,'2001-01-01','2022-12-31',1,dataset_id,2), + (795,22.653447470,'2001-01-01','2022-12-31',1,dataset_id,2), + (860,38.860291540,'2001-01-01','2022-12-31',1,dataset_id,2), + (704,961.628094200,'2001-01-01','2022-12-31',1,dataset_id,2), + (8,563.408970800,'2001-01-01','2022-12-31',1,dataset_id,2), + (51,68.902469440,'2001-01-01','2022-12-31',1,dataset_id,2), + (40,554.067341200,'2001-01-01','2022-12-31',1,dataset_id,2), + (31,80.317946520,'2001-01-01','2022-12-31',1,dataset_id,2), + (112,358.412362600,'2001-01-01','2022-12-31',1,dataset_id,2), + (56,420.054909100,'2001-01-01','2022-12-31',1,dataset_id,2), + (70,504.089972800,'2001-01-01','2022-12-31',1,dataset_id,2), + (100,223.805205600,'2001-01-01','2022-12-31',1,dataset_id,2), + (191,514.662880700,'2001-01-01','2022-12-31',1,dataset_id,2), + (196,224.352604400,'2001-01-01','2022-12-31',1,dataset_id,2), + (203,292.267605700,'2001-01-01','2022-12-31',1,dataset_id,2), + (208,552.123079900,'2001-01-01','2022-12-31',1,dataset_id,2), + (233,433.388898100,'2001-01-01','2022-12-31',1,dataset_id,2), + (246,527.029436200,'2001-01-01','2022-12-31',1,dataset_id,2), + (250,364.832657900,'2001-01-01','2022-12-31',1,dataset_id,2), + (275,78.504649430,'2001-01-01','2022-12-31',1,dataset_id,2), + (268,361.695568400,'2001-01-01','2022-12-31',1,dataset_id,2), + (276,379.326202500,'2001-01-01','2022-12-31',1,dataset_id,2), + (300,325.544211300,'2001-01-01','2022-12-31',1,dataset_id,2), + (348,219.317508400,'2001-01-01','2022-12-31',1,dataset_id,2), + (352,1354.140624000,'2001-01-01','2022-12-31',1,dataset_id,2), + (364,46.324411490,'2001-01-01','2022-12-31',1,dataset_id,2), + (368,26.534112680,'2001-01-01','2022-12-31',1,dataset_id,2), + (372,854.711609800,'2001-01-01','2022-12-31',1,dataset_id,2), + (376,88.236527970,'2001-01-01','2022-12-31',1,dataset_id,2), + (380,406.122160300,'2001-01-01','2022-12-31',1,dataset_id,2), + (400,14.500022960,'2001-01-01','2022-12-31',1,dataset_id,2), + (414,5.000167153,'2001-01-01','2022-12-31',1,dataset_id,2), + (428,411.492637300,'2001-01-01','2022-12-31',1,dataset_id,2), + (422,217.744196600,'2001-01-01','2022-12-31',1,dataset_id,2), + (440,396.213004800,'2001-01-01','2022-12-31',1,dataset_id,2), + (442,428.028276600,'2001-01-01','2022-12-31',1,dataset_id,2), + (807,286.005449600,'2001-01-01','2022-12-31',1,dataset_id,2), + (498,169.645772900,'2001-01-01','2022-12-31',1,dataset_id,2), + (499,815.975729200,'2001-01-01','2022-12-31',1,dataset_id,2), + (528,456.767342700,'2001-01-01','2022-12-31',1,dataset_id,2), + (578,1137.763932000,'2001-01-01','2022-12-31',1,dataset_id,2), + (512,19.794688240,'2001-01-01','2022-12-31',1,dataset_id,2), + (616,292.896646000,'2001-01-01','2022-12-31',1,dataset_id,2), + (634,4.863421015,'2001-01-01','2022-12-31',1,dataset_id,2), + (642,236.321401600,'2001-01-01','2022-12-31',1,dataset_id,2), + (682,0.992952434,'2001-01-01','2022-12-31',1,dataset_id,2), + (688,285.807446900,'2001-01-01','2022-12-31',1,dataset_id,2), + (703,324.308359400,'2001-01-01','2022-12-31',1,dataset_id,2), + (705,551.891802300,'2001-01-01','2022-12-31',1,dataset_id,2), + (724,214.560892300,'2001-01-01','2022-12-31',1,dataset_id,2), + (752,582.471609200,'2001-01-01','2022-12-31',1,dataset_id,2), + (756,774.685512000,'2001-01-01','2022-12-31',1,dataset_id,2), + (760,66.167609480,'2001-01-01','2022-12-31',1,dataset_id,2), + (792,244.453590900,'2001-01-01','2022-12-31',1,dataset_id,2), + (804,236.015456200,'2001-01-01','2022-12-31',1,dataset_id,2), + (784,4.743899068,'2001-01-01','2022-12-31',1,dataset_id,2), + (826,716.621018700,'2001-01-01','2022-12-31',1,dataset_id,2), + (887,10.939702210,'2001-01-01','2022-12-31',1,dataset_id,2), + (84,1232.637783000,'2001-01-01','2022-12-31',1,dataset_id,2), + (124,409.479730200,'2001-01-01','2022-12-31',1,dataset_id,2), + (170,1464.002074000,'2001-01-01','2022-12-31',1,dataset_id,2), + (188,1664.822395000,'2001-01-01','2022-12-31',1,dataset_id,2), + (192,498.171168300,'2001-01-01','2022-12-31',1,dataset_id,2), + (214,254.577561300,'2001-01-01','2022-12-31',1,dataset_id,2), + (222,916.693432800,'2001-01-01','2022-12-31',1,dataset_id,2), + (304,439.635881000,'2001-01-01','2022-12-31',1,dataset_id,2), + (320,1118.739206000,'2001-01-01','2022-12-31',1,dataset_id,2), + (332,248.583491900,'2001-01-01','2022-12-31',1,dataset_id,2), + (340,885.146785200,'2001-01-01','2022-12-31',1,dataset_id,2), + (388,691.100888900,'2001-01-01','2022-12-31',1,dataset_id,2), + (484,344.283549200,'2001-01-01','2022-12-31',1,dataset_id,2), + (558,1087.873819000,'2001-01-01','2022-12-31',1,dataset_id,2), + (591,1951.282659000,'2001-01-01','2022-12-31',1,dataset_id,2), + (630,646.813545900,'2001-01-01','2022-12-31',1,dataset_id,2), + (44,723.575453800,'2001-01-01','2022-12-31',1,dataset_id,2), + (840,389.116384100,'2001-01-01','2022-12-31',1,dataset_id,2), + (10,205.662114900,'2001-01-01','2022-12-31',1,dataset_id,2), + (36,168.349113100,'2001-01-01','2022-12-31',1,dataset_id,2), + (96,2518.960079000,'2001-01-01','2022-12-31',1,dataset_id,2), + (242,1783.097091000,'2001-01-01','2022-12-31',1,dataset_id,2), + (360,2173.853070000,'2001-01-01','2022-12-31',1,dataset_id,2), + (458,2390.113722000,'2001-01-01','2022-12-31',1,dataset_id,2), + (540,880.959635000,'2001-01-01','2022-12-31',1,dataset_id,2), + (554,797.170822200,'2001-01-01','2022-12-31',1,dataset_id,2), + (598,1648.246521000,'2001-01-01','2022-12-31',1,dataset_id,2), + (608,2081.966504000,'2001-01-01','2022-12-31',1,dataset_id,2), + (90,2550.351998000,'2001-01-01','2022-12-31',1,dataset_id,2), + (626,682.420644900,'2001-01-01','2022-12-31',1,dataset_id,2), + (548,1776.855110000,'2001-01-01','2022-12-31',1,dataset_id,2), + (32,212.973570900,'2001-01-01','2022-12-31',1,dataset_id,2), + (68,488.911207000,'2001-01-01','2022-12-31',1,dataset_id,2), + (76,939.449017100,'2001-01-01','2022-12-31',1,dataset_id,2), + (152,500.551210000,'2001-01-01','2022-12-31',1,dataset_id,2), + (218,914.886358900,'2001-01-01','2022-12-31',1,dataset_id,2), + (238,410.358086700,'2001-01-01','2022-12-31',1,dataset_id,2), + (328,1108.543029000,'2001-01-01','2022-12-31',1,dataset_id,2), + (740,1269.119270000,'2001-01-01','2022-12-31',1,dataset_id,2), + (600,406.349255000,'2001-01-01','2022-12-31',1,dataset_id,2), + (604,678.734708500,'2001-01-01','2022-12-31',1,dataset_id,2), + (780,1290.447085000,'2001-01-01','2022-12-31',1,dataset_id,2), + (858,607.610791600,'2001-01-01','2022-12-31',1,dataset_id,2), + (862,835.439614300,'2001-01-01','2022-12-31',1,dataset_id,2), + (12,14.854936820,'1980-01-01','2000-12-31',1,dataset_id,2), + (24,524.521675200,'1980-01-01','2000-12-31',1,dataset_id,2), + (204,550.700380900,'1980-01-01','2000-12-31',1,dataset_id,2), + (72,62.682306100,'1980-01-01','2000-12-31',1,dataset_id,2), + (854,297.776231200,'1980-01-01','2000-12-31',1,dataset_id,2), + (108,527.620332100,'1980-01-01','2000-12-31',1,dataset_id,2), + (120,1206.805149000,'1980-01-01','2000-12-31',1,dataset_id,2), + (140,835.137226900,'1980-01-01','2000-12-31',1,dataset_id,2), + (148,147.480952600,'1980-01-01','2000-12-31',1,dataset_id,2), + (818,2.392082486,'1980-01-01','2000-12-31',1,dataset_id,2), + (566,809.807716300,'1980-01-01','2000-12-31',1,dataset_id,2), + (178,1071.401927000,'1980-01-01','2000-12-31',1,dataset_id,2), + (180,1067.738391000,'1980-01-01','2000-12-31',1,dataset_id,2), + (384,768.457169400,'1980-01-01','2000-12-31',1,dataset_id,2), + (262,70.475364060,'1980-01-01','2000-12-31',1,dataset_id,2), + (226,1777.388240000,'1980-01-01','2000-12-31',1,dataset_id,2), + (232,153.036588900,'1980-01-01','2000-12-31',1,dataset_id,2), + (231,487.324288300,'1980-01-01','2000-12-31',1,dataset_id,2), + (260,924.204089000,'1980-01-01','2000-12-31',1,dataset_id,2), + (266,1423.563247000,'1980-01-01','2000-12-31',1,dataset_id,2), + (288,661.962279500,'1980-01-01','2000-12-31',1,dataset_id,2), + (324,1420.892756000,'1980-01-01','2000-12-31',1,dataset_id,2), + (624,1148.383912000,'1980-01-01','2000-12-31',1,dataset_id,2), + (404,202.270301800,'1980-01-01','2000-12-31',1,dataset_id,2), + (426,262.016907900,'1980-01-01','2000-12-31',1,dataset_id,2), + (430,1814.153690000,'1980-01-01','2000-12-31',1,dataset_id,2), + (434,7.663003765,'1980-01-01','2000-12-31',1,dataset_id,2), + (450,1124.145444000,'1980-01-01','2000-12-31',1,dataset_id,2), + (454,730.635908000,'1980-01-01','2000-12-31',1,dataset_id,2), + (466,125.632583200,'1980-01-01','2000-12-31',1,dataset_id,2), + (478,13.728794750,'1980-01-01','2000-12-31',1,dataset_id,2), + (504,86.989311320,'1980-01-01','2000-12-31',1,dataset_id,2), + (508,528.571991800,'1980-01-01','2000-12-31',1,dataset_id,2), + (516,40.951791050,'1980-01-01','2000-12-31',1,dataset_id,2), + (562,29.472859610,'1980-01-01','2000-12-31',1,dataset_id,2), + (646,445.225253800,'1980-01-01','2000-12-31',1,dataset_id,2), + (686,346.301608900,'1980-01-01','2000-12-31',1,dataset_id,2), + (694,2252.355495000,'1980-01-01','2000-12-31',1,dataset_id,2), + (706,88.267258680,'1980-01-01','2000-12-31',1,dataset_id,2), + (729,87.431138480,'1980-01-01','2000-12-31',1,dataset_id,2), + (834,446.495067300,'1980-01-01','2000-12-31',1,dataset_id,2), + (710,124.155859100,'1980-01-01','2000-12-31',1,dataset_id,2), + (728,479.588356200,'1980-01-01','2000-12-31',1,dataset_id,2), + (748,253.964209200,'1980-01-01','2000-12-31',1,dataset_id,2), + (270,504.219386900,'1980-01-01','2000-12-31',1,dataset_id,2), + (768,657.341793000,'1980-01-01','2000-12-31',1,dataset_id,2), + (788,58.291470890,'1980-01-01','2000-12-31',1,dataset_id,2), + (800,694.522927200,'1980-01-01','2000-12-31',1,dataset_id,2), + (732,4.239830005,'1980-01-01','2000-12-31',1,dataset_id,2), + (894,530.647226100,'1980-01-01','2000-12-31',1,dataset_id,2), + (716,239.398569900,'1980-01-01','2000-12-31',1,dataset_id,2), + (620,424.139675300,'1980-01-01','2000-12-31',1,dataset_id,2), + (4,44.161113660,'1980-01-01','2000-12-31',1,dataset_id,2), + (50,779.153552500,'1980-01-01','2000-12-31',1,dataset_id,2), + (64,579.662393200,'1980-01-01','2000-12-31',1,dataset_id,2), + (104,434.291943700,'1980-01-01','2000-12-31',1,dataset_id,2), + (116,1136.798705000,'1980-01-01','2000-12-31',1,dataset_id,2), + (156,206.888729600,'1980-01-01','2000-12-31',1,dataset_id,2), + (356,536.187917700,'1980-01-01','2000-12-31',1,dataset_id,2), + (392,943.046424200,'1980-01-01','2000-12-31',1,dataset_id,2), + (398,68.550395260,'1980-01-01','2000-12-31',1,dataset_id,2), + (417,67.435846760,'1980-01-01','2000-12-31',1,dataset_id,2), + (418,752.704293700,'1980-01-01','2000-12-31',1,dataset_id,2), + (496,36.284687340,'1980-01-01','2000-12-31',1,dataset_id,2), + (524,310.037829900,'1980-01-01','2000-12-31',1,dataset_id,2), + (408,425.294652800,'1980-01-01','2000-12-31',1,dataset_id,2), + (586,42.071306560,'1980-01-01','2000-12-31',1,dataset_id,2), + (643,361.283882600,'1980-01-01','2000-12-31',1,dataset_id,2), + (410,773.731250700,'1980-01-01','2000-12-31',1,dataset_id,2), + (144,648.301228300,'1980-01-01','2000-12-31',1,dataset_id,2), + (158,1246.266841000,'1980-01-01','2000-12-31',1,dataset_id,2), + (762,99.109159520,'1980-01-01','2000-12-31',1,dataset_id,2), + (764,884.172843000,'1980-01-01','2000-12-31',1,dataset_id,2), + (795,16.737851000,'1980-01-01','2000-12-31',1,dataset_id,2), + (860,29.099010340,'1980-01-01','2000-12-31',1,dataset_id,2), + (704,768.081107400,'1980-01-01','2000-12-31',1,dataset_id,2), + (8,463.814133600,'1980-01-01','2000-12-31',1,dataset_id,2), + (51,48.729096980,'1980-01-01','2000-12-31',1,dataset_id,2), + (40,512.199782200,'1980-01-01','2000-12-31',1,dataset_id,2), + (31,94.869945010,'1980-01-01','2000-12-31',1,dataset_id,2), + (112,347.580823500,'1980-01-01','2000-12-31',1,dataset_id,2), + (56,460.134992500,'1980-01-01','2000-12-31',1,dataset_id,2), + (70,450.187134400,'1980-01-01','2000-12-31',1,dataset_id,2), + (100,160.489820200,'1980-01-01','2000-12-31',1,dataset_id,2), + (191,446.083359400,'1980-01-01','2000-12-31',1,dataset_id,2), + (196,207.603308200,'1980-01-01','2000-12-31',1,dataset_id,2), + (203,286.506640000,'1980-01-01','2000-12-31',1,dataset_id,2), + (208,545.683616300,'1980-01-01','2000-12-31',1,dataset_id,2), + (233,492.136242000,'1980-01-01','2000-12-31',1,dataset_id,2), + (246,544.560973600,'1980-01-01','2000-12-31',1,dataset_id,2), + (250,406.303732300,'1980-01-01','2000-12-31',1,dataset_id,2), + (275,85.390308560,'1980-01-01','2000-12-31',1,dataset_id,2), + (268,334.120811100,'1980-01-01','2000-12-31',1,dataset_id,2), + (276,403.125654400,'1980-01-01','2000-12-31',1,dataset_id,2), + (300,290.145422300,'1980-01-01','2000-12-31',1,dataset_id,2), + (348,205.728213500,'1980-01-01','2000-12-31',1,dataset_id,2), + (352,1283.523700000,'1980-01-01','2000-12-31',1,dataset_id,2), + (364,34.095759490,'1980-01-01','2000-12-31',1,dataset_id,2), + (368,19.407690420,'1980-01-01','2000-12-31',1,dataset_id,2), + (372,855.587656100,'1980-01-01','2000-12-31',1,dataset_id,2), + (376,91.787754560,'1980-01-01','2000-12-31',1,dataset_id,2), + (380,361.797024500,'1980-01-01','2000-12-31',1,dataset_id,2), + (400,19.760492090,'1980-01-01','2000-12-31',1,dataset_id,2), + (414,7.576242411,'1980-01-01','2000-12-31',1,dataset_id,2), + (428,465.456719300,'1980-01-01','2000-12-31',1,dataset_id,2), + (422,193.236856000,'1980-01-01','2000-12-31',1,dataset_id,2), + (440,417.584389800,'1980-01-01','2000-12-31',1,dataset_id,2), + (442,511.411936200,'1980-01-01','2000-12-31',1,dataset_id,2), + (807,227.154848700,'1980-01-01','2000-12-31',1,dataset_id,2), + (498,153.956617600,'1980-01-01','2000-12-31',1,dataset_id,2), + (499,640.651305200,'1980-01-01','2000-12-31',1,dataset_id,2), + (528,482.268504700,'1980-01-01','2000-12-31',1,dataset_id,2), + (578,1140.066988000,'1980-01-01','2000-12-31',1,dataset_id,2), + (512,4.085392657,'1980-01-01','2000-12-31',1,dataset_id,2), + (616,282.325646300,'1980-01-01','2000-12-31',1,dataset_id,2), + (634,11.914269850,'1980-01-01','2000-12-31',1,dataset_id,2), + (642,175.321431100,'1980-01-01','2000-12-31',1,dataset_id,2), + (682,1.753362676,'1980-01-01','2000-12-31',1,dataset_id,2), + (688,224.423189700,'1980-01-01','2000-12-31',1,dataset_id,2), + (703,304.617458900,'1980-01-01','2000-12-31',1,dataset_id,2), + (705,514.019837500,'1980-01-01','2000-12-31',1,dataset_id,2), + (724,205.678419900,'1980-01-01','2000-12-31',1,dataset_id,2), + (752,615.433234100,'1980-01-01','2000-12-31',1,dataset_id,2), + (756,748.715273200,'1980-01-01','2000-12-31',1,dataset_id,2), + (760,51.007466240,'1980-01-01','2000-12-31',1,dataset_id,2), + (792,213.553961400,'1980-01-01','2000-12-31',1,dataset_id,2), + (804,219.062566200,'1980-01-01','2000-12-31',1,dataset_id,2), + (784,10.922341790,'1980-01-01','2000-12-31',1,dataset_id,2), + (826,692.707355800,'1980-01-01','2000-12-31',1,dataset_id,2), + (887,7.346174430,'1980-01-01','2000-12-31',1,dataset_id,2), + (84,661.592921400,'1980-01-01','2000-12-31',1,dataset_id,2), + (124,401.801622100,'1980-01-01','2000-12-31',1,dataset_id,2), + (170,1586.470290000,'1980-01-01','2000-12-31',1,dataset_id,2), + (188,829.965763500,'1980-01-01','2000-12-31',1,dataset_id,2), + (192,358.031518300,'1980-01-01','2000-12-31',1,dataset_id,2), + (214,318.648859300,'1980-01-01','2000-12-31',1,dataset_id,2), + (222,361.512562700,'1980-01-01','2000-12-31',1,dataset_id,2), + (304,435.131644000,'1980-01-01','2000-12-31',1,dataset_id,2), + (320,636.123329700,'1980-01-01','2000-12-31',1,dataset_id,2), + (332,207.186900600,'1980-01-01','2000-12-31',1,dataset_id,2), + (340,349.732516900,'1980-01-01','2000-12-31',1,dataset_id,2), + (388,470.154274500,'1980-01-01','2000-12-31',1,dataset_id,2), + (484,332.905769800,'1980-01-01','2000-12-31',1,dataset_id,2), + (558,406.361570800,'1980-01-01','2000-12-31',1,dataset_id,2), + (591,1427.126211000,'1980-01-01','2000-12-31',1,dataset_id,2), + (630,823.245471400,'1980-01-01','2000-12-31',1,dataset_id,2), + (44,585.481319000,'1980-01-01','2000-12-31',1,dataset_id,2), + (840,394.413896800,'1980-01-01','2000-12-31',1,dataset_id,2), + (10,201.444317500,'1980-01-01','2000-12-31',1,dataset_id,2), + (36,167.918158800,'1980-01-01','2000-12-31',1,dataset_id,2), + (96,2198.091618000,'1980-01-01','2000-12-31',1,dataset_id,2), + (242,1349.514775000,'1980-01-01','2000-12-31',1,dataset_id,2), + (360,1737.094583000,'1980-01-01','2000-12-31',1,dataset_id,2), + (458,2035.709478000,'1980-01-01','2000-12-31',1,dataset_id,2), + (540,928.264093700,'1980-01-01','2000-12-31',1,dataset_id,2), + (554,868.305092500,'1980-01-01','2000-12-31',1,dataset_id,2), + (598,1544.156907000,'1980-01-01','2000-12-31',1,dataset_id,2), + (608,1285.195286000,'1980-01-01','2000-12-31',1,dataset_id,2), + (90,2060.978899000,'1980-01-01','2000-12-31',1,dataset_id,2), + (626,632.218329100,'1980-01-01','2000-12-31',1,dataset_id,2), + (548,1552.962501000,'1980-01-01','2000-12-31',1,dataset_id,2), + (32,239.401913400,'1980-01-01','2000-12-31',1,dataset_id,2), + (68,551.594602500,'1980-01-01','2000-12-31',1,dataset_id,2), + (76,1159.739073000,'1980-01-01','2000-12-31',1,dataset_id,2), + (152,563.211986900,'1980-01-01','2000-12-31',1,dataset_id,2), + (218,966.097019600,'1980-01-01','2000-12-31',1,dataset_id,2), + (238,408.658791100,'1980-01-01','2000-12-31',1,dataset_id,2), + (328,1100.972725000,'1980-01-01','2000-12-31',1,dataset_id,2), + (740,1335.308832000,'1980-01-01','2000-12-31',1,dataset_id,2), + (600,392.399298900,'1980-01-01','2000-12-31',1,dataset_id,2), + (604,644.104612600,'1980-01-01','2000-12-31',1,dataset_id,2), + (780,785.913489800,'1980-01-01','2000-12-31',1,dataset_id,2), + (858,530.357836600,'1980-01-01','2000-12-31',1,dataset_id,2), + (862,1426.568846000,'1980-01-01','2000-12-31',1,dataset_id,2), + (12,16.298769900,'1980-01-01','2022-12-31',1,dataset_id,2), + (24,453.988622400,'1980-01-01','2022-12-31',1,dataset_id,2), + (204,588.745314100,'1980-01-01','2022-12-31',1,dataset_id,2), + (72,73.595142950,'1980-01-01','2022-12-31',1,dataset_id,2), + (854,335.713284200,'1980-01-01','2022-12-31',1,dataset_id,2), + (108,625.562803300,'1980-01-01','2022-12-31',1,dataset_id,2), + (120,1105.133060000,'1980-01-01','2022-12-31',1,dataset_id,2), + (140,782.679406800,'1980-01-01','2022-12-31',1,dataset_id,2), + (148,150.591052500,'1980-01-01','2022-12-31',1,dataset_id,2), + (818,3.219159073,'1980-01-01','2022-12-31',1,dataset_id,2), + (566,752.002919300,'1980-01-01','2022-12-31',1,dataset_id,2), + (178,1007.890403000,'1980-01-01','2022-12-31',1,dataset_id,2), + (180,933.548835200,'1980-01-01','2022-12-31',1,dataset_id,2), + (384,725.981328700,'1980-01-01','2022-12-31',1,dataset_id,2), + (262,55.534000960,'1980-01-01','2022-12-31',1,dataset_id,2), + (226,1671.438651000,'1980-01-01','2022-12-31',1,dataset_id,2), + (232,132.532078600,'1980-01-01','2022-12-31',1,dataset_id,2), + (231,441.810595500,'1980-01-01','2022-12-31',1,dataset_id,2), + (260,923.040992600,'1980-01-01','2022-12-31',1,dataset_id,2), + (266,1322.107666000,'1980-01-01','2022-12-31',1,dataset_id,2), + (288,654.770135700,'1980-01-01','2022-12-31',1,dataset_id,2), + (324,1360.811998000,'1980-01-01','2022-12-31',1,dataset_id,2), + (624,1215.892953000,'1980-01-01','2022-12-31',1,dataset_id,2), + (404,208.879287400,'1980-01-01','2022-12-31',1,dataset_id,2), + (426,247.014850300,'1980-01-01','2022-12-31',1,dataset_id,2), + (430,1591.373233000,'1980-01-01','2022-12-31',1,dataset_id,2), + (434,7.446007347,'1980-01-01','2022-12-31',1,dataset_id,2), + (450,1088.388591000,'1980-01-01','2022-12-31',1,dataset_id,2), + (454,735.232381600,'1980-01-01','2022-12-31',1,dataset_id,2), + (466,137.516665600,'1980-01-01','2022-12-31',1,dataset_id,2), + (478,25.741324740,'1980-01-01','2022-12-31',1,dataset_id,2), + (504,98.206251150,'1980-01-01','2022-12-31',1,dataset_id,2), + (508,547.939466500,'1980-01-01','2022-12-31',1,dataset_id,2), + (516,53.766016570,'1980-01-01','2022-12-31',1,dataset_id,2), + (562,37.202428460,'1980-01-01','2022-12-31',1,dataset_id,2), + (646,547.012931200,'1980-01-01','2022-12-31',1,dataset_id,2), + (686,388.889794700,'1980-01-01','2022-12-31',1,dataset_id,2), + (694,2034.869912000,'1980-01-01','2022-12-31',1,dataset_id,2), + (706,102.230913100,'1980-01-01','2022-12-31',1,dataset_id,2), + (729,84.979962700,'1980-01-01','2022-12-31',1,dataset_id,2), + (834,517.868248100,'1980-01-01','2022-12-31',1,dataset_id,2), + (710,113.521341800,'1980-01-01','2022-12-31',1,dataset_id,2), + (728,425.136843300,'1980-01-01','2022-12-31',1,dataset_id,2), + (748,203.590694300,'1980-01-01','2022-12-31',1,dataset_id,2), + (270,560.741422700,'1980-01-01','2022-12-31',1,dataset_id,2), + (768,681.012548000,'1980-01-01','2022-12-31',1,dataset_id,2), + (788,64.328599670,'1980-01-01','2022-12-31',1,dataset_id,2), + (800,595.862061200,'1980-01-01','2022-12-31',1,dataset_id,2), + (732,16.214609980,'1980-01-01','2022-12-31',1,dataset_id,2), + (894,524.338848800,'1980-01-01','2022-12-31',1,dataset_id,2), + (716,238.373713200,'1980-01-01','2022-12-31',1,dataset_id,2), + (620,415.819320600,'1980-01-01','2022-12-31',1,dataset_id,2), + (4,60.145408560,'1980-01-01','2022-12-31',1,dataset_id,2), + (50,1336.284929000,'1980-01-01','2022-12-31',1,dataset_id,2), + (64,691.730022700,'1980-01-01','2022-12-31',1,dataset_id,2), + (104,514.993906800,'1980-01-01','2022-12-31',1,dataset_id,2), + (116,1089.027133000,'1980-01-01','2022-12-31',1,dataset_id,2), + (156,232.886873400,'1980-01-01','2022-12-31',1,dataset_id,2), + (356,602.594134400,'1980-01-01','2022-12-31',1,dataset_id,2), + (392,1035.365138000,'1980-01-01','2022-12-31',1,dataset_id,2), + (398,75.705099880,'1980-01-01','2022-12-31',1,dataset_id,2), + (417,80.783584590,'1980-01-01','2022-12-31',1,dataset_id,2), + (418,740.715632100,'1980-01-01','2022-12-31',1,dataset_id,2), + (496,33.150988280,'1980-01-01','2022-12-31',1,dataset_id,2), + (524,502.627733500,'1980-01-01','2022-12-31',1,dataset_id,2), + (408,480.599094900,'1980-01-01','2022-12-31',1,dataset_id,2), + (586,65.455230910,'1980-01-01','2022-12-31',1,dataset_id,2), + (643,367.877734500,'1980-01-01','2022-12-31',1,dataset_id,2), + (410,785.787931500,'1980-01-01','2022-12-31',1,dataset_id,2), + (144,894.746074300,'1980-01-01','2022-12-31',1,dataset_id,2), + (158,1318.988448000,'1980-01-01','2022-12-31',1,dataset_id,2), + (762,95.900633640,'1980-01-01','2022-12-31',1,dataset_id,2), + (764,932.757913900,'1980-01-01','2022-12-31',1,dataset_id,2), + (795,19.764435280,'1980-01-01','2022-12-31',1,dataset_id,2), + (860,34.093154020,'1980-01-01','2022-12-31',1,dataset_id,2), + (704,867.105144100,'1980-01-01','2022-12-31',1,dataset_id,2), + (8,514.769626000,'1980-01-01','2022-12-31',1,dataset_id,2), + (51,59.050357240,'1980-01-01','2022-12-31',1,dataset_id,2), + (40,533.620396900,'1980-01-01','2022-12-31',1,dataset_id,2), + (31,87.424736210,'1980-01-01','2022-12-31',1,dataset_id,2), + (112,353.122540400,'1980-01-01','2022-12-31',1,dataset_id,2), + (56,439.628902300,'1980-01-01','2022-12-31',1,dataset_id,2), + (70,477.765327300,'1980-01-01','2022-12-31',1,dataset_id,2), + (100,192.883738300,'1980-01-01','2022-12-31',1,dataset_id,2), + (191,481.170556600,'1980-01-01','2022-12-31',1,dataset_id,2), + (196,216.172711700,'1980-01-01','2022-12-31',1,dataset_id,2), + (203,289.454108900,'1980-01-01','2022-12-31',1,dataset_id,2), + (208,548.978226600,'1980-01-01','2022-12-31',1,dataset_id,2), + (233,462.079461800,'1980-01-01','2022-12-31',1,dataset_id,2), + (246,535.591346800,'1980-01-01','2022-12-31',1,dataset_id,2), + (250,385.085973700,'1980-01-01','2022-12-31',1,dataset_id,2), + (275,81.867415390,'1980-01-01','2022-12-31',1,dataset_id,2), + (268,348.228828700,'1980-01-01','2022-12-31',1,dataset_id,2), + (276,390.949192100,'1980-01-01','2022-12-31',1,dataset_id,2), + (300,308.256430300,'1980-01-01','2022-12-31',1,dataset_id,2), + (348,212.680874900,'1980-01-01','2022-12-31',1,dataset_id,2), + (352,1319.653295000,'1980-01-01','2022-12-31',1,dataset_id,2), + (364,40.352279120,'1980-01-01','2022-12-31',1,dataset_id,2), + (368,23.053766870,'1980-01-01','2022-12-31',1,dataset_id,2), + (372,855.139444000,'1980-01-01','2022-12-31',1,dataset_id,2), + (376,89.970848230,'1980-01-01','2022-12-31',1,dataset_id,2), + (380,384.475001000,'1980-01-01','2022-12-31',1,dataset_id,2), + (400,17.069089560,'1980-01-01','2022-12-31',1,dataset_id,2), + (414,6.258250386,'1980-01-01','2022-12-31',1,dataset_id,2), + (428,437.847188500,'1980-01-01','2022-12-31',1,dataset_id,2), + (422,205.775497500,'1980-01-01','2022-12-31',1,dataset_id,2), + (440,406.650192300,'1980-01-01','2022-12-31',1,dataset_id,2), + (442,468.750530100,'1980-01-01','2022-12-31',1,dataset_id,2), + (807,257.264461700,'1980-01-01','2022-12-31',1,dataset_id,2), + (498,161.983625500,'1980-01-01','2022-12-31',1,dataset_id,2), + (499,730.352168200,'1980-01-01','2022-12-31',1,dataset_id,2), + (528,469.221397700,'1980-01-01','2022-12-31',1,dataset_id,2), + (578,1138.888686000,'1980-01-01','2022-12-31',1,dataset_id,2), + (512,12.122706640,'1980-01-01','2022-12-31',1,dataset_id,2), + (616,287.734064700,'1980-01-01','2022-12-31',1,dataset_id,2), + (634,8.306858740,'1980-01-01','2022-12-31',1,dataset_id,2), + (642,206.530718100,'1980-01-01','2022-12-31',1,dataset_id,2), + (682,1.364315575,'1980-01-01','2022-12-31',1,dataset_id,2), + (688,255.829088000,'1980-01-01','2022-12-31',1,dataset_id,2), + (703,314.691873800,'1980-01-01','2022-12-31',1,dataset_id,2), + (705,533.396185900,'1980-01-01','2022-12-31',1,dataset_id,2), + (724,210.222940800,'1980-01-01','2022-12-31',1,dataset_id,2), + (752,598.569148900,'1980-01-01','2022-12-31',1,dataset_id,2), + (756,762.002369600,'1980-01-01','2022-12-31',1,dataset_id,2), + (760,58.763818430,'1980-01-01','2022-12-31',1,dataset_id,2), + (792,229.363074400,'1980-01-01','2022-12-31',1,dataset_id,2), + (804,227.736137900,'1980-01-01','2022-12-31',1,dataset_id,2), + (784,7.761278079,'1980-01-01','2022-12-31',1,dataset_id,2), + (826,704.942251600,'1980-01-01','2022-12-31',1,dataset_id,2), + (887,9.184723478,'1980-01-01','2022-12-31',1,dataset_id,2), + (84,953.755421700,'1980-01-01','2022-12-31',1,dataset_id,2), + (124,405.729956400,'1980-01-01','2022-12-31',1,dataset_id,2), + (170,1523.812132000,'1980-01-01','2022-12-31',1,dataset_id,2), + (188,1257.101713000,'1980-01-01','2022-12-31',1,dataset_id,2), + (192,429.730874400,'1980-01-01','2022-12-31',1,dataset_id,2), + (214,285.868196000,'1980-01-01','2022-12-31',1,dataset_id,2), + (222,645.558585700,'1980-01-01','2022-12-31',1,dataset_id,2), + (304,437.436137000,'1980-01-01','2022-12-31',1,dataset_id,2), + (320,883.043076500,'1980-01-01','2022-12-31',1,dataset_id,2), + (332,228.366549800,'1980-01-01','2022-12-31',1,dataset_id,2), + (340,623.665400900,'1980-01-01','2022-12-31',1,dataset_id,2), + (388,583.196728600,'1980-01-01','2022-12-31',1,dataset_id,2), + (484,338.726959500,'1980-01-01','2022-12-31',1,dataset_id,2), + (558,755.042256200,'1980-01-01','2022-12-31',1,dataset_id,2), + (591,1695.299276000,'1980-01-01','2022-12-31',1,dataset_id,2), + (630,732.977987700,'1980-01-01','2022-12-31',1,dataset_id,2), + (44,656.134139100,'1980-01-01','2022-12-31',1,dataset_id,2), + (840,391.703541200,'1980-01-01','2022-12-31',1,dataset_id,2), + (10,203.602260400,'1980-01-01','2022-12-31',1,dataset_id,2), + (36,168.138647100,'1980-01-01','2022-12-31',1,dataset_id,2), + (96,2362.256862000,'1980-01-01','2022-12-31',1,dataset_id,2), + (242,1571.347584000,'1980-01-01','2022-12-31',1,dataset_id,2), + (360,1960.552416000,'1980-01-01','2022-12-31',1,dataset_id,2), + (458,2217.032588000,'1980-01-01','2022-12-31',1,dataset_id,2), + (540,904.061812900,'1980-01-01','2022-12-31',1,dataset_id,2), + (554,831.910817100,'1980-01-01','2022-12-31',1,dataset_id,2), + (598,1597.412054000,'1980-01-01','2022-12-31',1,dataset_id,2), + (608,1692.845670000,'1980-01-01','2022-12-31',1,dataset_id,2), + (90,2311.355810000,'1980-01-01','2022-12-31',1,dataset_id,2), + (626,657.903235100,'1980-01-01','2022-12-31',1,dataset_id,2), + (548,1667.512212000,'1980-01-01','2022-12-31',1,dataset_id,2), + (32,225.880436000,'1980-01-01','2022-12-31',1,dataset_id,2), + (68,519.524028100,'1980-01-01','2022-12-31',1,dataset_id,2), + (76,1047.032534000,'1980-01-01','2022-12-31',1,dataset_id,2), + (152,531.152987100,'1980-01-01','2022-12-31',1,dataset_id,2), + (218,939.896217400,'1980-01-01','2022-12-31',1,dataset_id,2), + (238,409.528203700,'1980-01-01','2022-12-31',1,dataset_id,2), + (328,1104.845903000,'1980-01-01','2022-12-31',1,dataset_id,2), + (740,1301.444411000,'1980-01-01','2022-12-31',1,dataset_id,2), + (600,399.536485600,'1980-01-01','2022-12-31',1,dataset_id,2), + (604,661.822336100,'1980-01-01','2022-12-31',1,dataset_id,2), + (780,1044.046961000,'1980-01-01','2022-12-31',1,dataset_id,2), + (858,569.882606700,'1980-01-01','2022-12-31',1,dataset_id,2), + (862,1124.130633000,'1980-01-01','2022-12-31',1,dataset_id,2), + (12,14.465492420,'2001-01-01','2022-12-31',2,dataset_id,2), + (24,586.631919000,'2001-01-01','2022-12-31',2,dataset_id,2), + (204,535.884242200,'2001-01-01','2022-12-31',2,dataset_id,2), + (72,118.388362000,'2001-01-01','2022-12-31',2,dataset_id,2), + (854,244.030407300,'2001-01-01','2022-12-31',2,dataset_id,2), + (108,1156.176509000,'2001-01-01','2022-12-31',2,dataset_id,2), + (120,1061.896688000,'2001-01-01','2022-12-31',2,dataset_id,2), + (140,554.415569500,'2001-01-01','2022-12-31',2,dataset_id,2), + (148,118.550471000,'2001-01-01','2022-12-31',2,dataset_id,2), + (818,1.019812960,'2001-01-01','2022-12-31',2,dataset_id,2), + (566,633.108360200,'2001-01-01','2022-12-31',2,dataset_id,2), + (178,684.755892000,'2001-01-01','2022-12-31',2,dataset_id,2), + (180,791.322297300,'2001-01-01','2022-12-31',2,dataset_id,2), + (384,579.938638900,'2001-01-01','2022-12-31',2,dataset_id,2), + (262,19.704995450,'2001-01-01','2022-12-31',2,dataset_id,2), + (226,2157.813732000,'2001-01-01','2022-12-31',2,dataset_id,2), + (232,98.354673120,'2001-01-01','2022-12-31',2,dataset_id,2), + (231,565.865300200,'2001-01-01','2022-12-31',2,dataset_id,2), + (260,1551.262439000,'2001-01-01','2022-12-31',2,dataset_id,2), + (266,1227.786202000,'2001-01-01','2022-12-31',2,dataset_id,2), + (288,522.226444200,'2001-01-01','2022-12-31',2,dataset_id,2), + (324,1153.718247000,'2001-01-01','2022-12-31',2,dataset_id,2), + (624,989.388552800,'2001-01-01','2022-12-31',2,dataset_id,2), + (404,297.857668700,'2001-01-01','2022-12-31',2,dataset_id,2), + (426,414.603697900,'2001-01-01','2022-12-31',2,dataset_id,2), + (430,1697.173747000,'2001-01-01','2022-12-31',2,dataset_id,2), + (434,2.478210948,'2001-01-01','2022-12-31',2,dataset_id,2), + (450,925.763982800,'2001-01-01','2022-12-31',2,dataset_id,2), + (454,983.466846800,'2001-01-01','2022-12-31',2,dataset_id,2), + (466,94.751792810,'2001-01-01','2022-12-31',2,dataset_id,2), + (478,6.391191140,'2001-01-01','2022-12-31',2,dataset_id,2), + (504,83.197193340,'2001-01-01','2022-12-31',2,dataset_id,2), + (508,449.989898500,'2001-01-01','2022-12-31',2,dataset_id,2), + (516,95.265982500,'2001-01-01','2022-12-31',2,dataset_id,2), + (562,15.340052740,'2001-01-01','2022-12-31',2,dataset_id,2), + (646,814.290348100,'2001-01-01','2022-12-31',2,dataset_id,2), + (686,233.188294400,'2001-01-01','2022-12-31',2,dataset_id,2), + (694,2061.324304000,'2001-01-01','2022-12-31',2,dataset_id,2), + (706,59.726824120,'2001-01-01','2022-12-31',2,dataset_id,2), + (729,50.741095180,'2001-01-01','2022-12-31',2,dataset_id,2), + (834,548.631891100,'2001-01-01','2022-12-31',2,dataset_id,2), + (710,128.138930300,'2001-01-01','2022-12-31',2,dataset_id,2), + (728,360.894077100,'2001-01-01','2022-12-31',2,dataset_id,2), + (748,270.428057700,'2001-01-01','2022-12-31',2,dataset_id,2), + (270,422.123795500,'2001-01-01','2022-12-31',2,dataset_id,2), + (768,685.291746600,'2001-01-01','2022-12-31',2,dataset_id,2), + (788,53.975312020,'2001-01-01','2022-12-31',2,dataset_id,2), + (800,854.591814700,'2001-01-01','2022-12-31',2,dataset_id,2), + (732,2.168241293,'2001-01-01','2022-12-31',2,dataset_id,2), + (894,660.197599600,'2001-01-01','2022-12-31',2,dataset_id,2), + (716,326.158609200,'2001-01-01','2022-12-31',2,dataset_id,2), + (620,460.472161700,'2001-01-01','2022-12-31',2,dataset_id,2), + (4,148.362050300,'2001-01-01','2022-12-31',2,dataset_id,2), + (50,1739.618093000,'2001-01-01','2022-12-31',2,dataset_id,2), + (64,2794.763402000,'2001-01-01','2022-12-31',2,dataset_id,2), + (104,1825.848537000,'2001-01-01','2022-12-31',2,dataset_id,2), + (116,1194.092918000,'2001-01-01','2022-12-31',2,dataset_id,2), + (156,427.136524600,'2001-01-01','2022-12-31',2,dataset_id,2), + (356,903.765510800,'2001-01-01','2022-12-31',2,dataset_id,2), + (392,1336.292110000,'2001-01-01','2022-12-31',2,dataset_id,2), + (398,117.840163300,'2001-01-01','2022-12-31',2,dataset_id,2), + (417,524.830450200,'2001-01-01','2022-12-31',2,dataset_id,2), + (418,1389.226590000,'2001-01-01','2022-12-31',2,dataset_id,2), + (496,54.947224150,'2001-01-01','2022-12-31',2,dataset_id,2), + (524,1629.250778000,'2001-01-01','2022-12-31',2,dataset_id,2), + (408,668.378585200,'2001-01-01','2022-12-31',2,dataset_id,2), + (586,173.458932400,'2001-01-01','2022-12-31',2,dataset_id,2), + (643,323.137436500,'2001-01-01','2022-12-31',2,dataset_id,2), + (410,733.868675800,'2001-01-01','2022-12-31',2,dataset_id,2), + (144,1240.063846000,'2001-01-01','2022-12-31',2,dataset_id,2), + (158,2313.517360000,'2001-01-01','2022-12-31',2,dataset_id,2), + (762,444.881297900,'2001-01-01','2022-12-31',2,dataset_id,2), + (764,1088.148725000,'2001-01-01','2022-12-31',2,dataset_id,2), + (795,31.214170710,'2001-01-01','2022-12-31',2,dataset_id,2), + (860,91.290655790,'2001-01-01','2022-12-31',2,dataset_id,2), + (704,1455.846269000,'2001-01-01','2022-12-31',2,dataset_id,2), + (8,862.259946100,'2001-01-01','2022-12-31',2,dataset_id,2), + (51,429.628090100,'2001-01-01','2022-12-31',2,dataset_id,2), + (40,771.984101200,'2001-01-01','2022-12-31',2,dataset_id,2), + (31,264.853052100,'2001-01-01','2022-12-31',2,dataset_id,2), + (112,358.182565900,'2001-01-01','2022-12-31',2,dataset_id,2), + (56,518.852309000,'2001-01-01','2022-12-31',2,dataset_id,2), + (70,739.093134300,'2001-01-01','2022-12-31',2,dataset_id,2), + (100,336.420309300,'2001-01-01','2022-12-31',2,dataset_id,2), + (191,662.749408300,'2001-01-01','2022-12-31',2,dataset_id,2), + (196,226.182653300,'2001-01-01','2022-12-31',2,dataset_id,2), + (203,399.649081400,'2001-01-01','2022-12-31',2,dataset_id,2), + (208,560.298332000,'2001-01-01','2022-12-31',2,dataset_id,2), + (233,452.773178000,'2001-01-01','2022-12-31',2,dataset_id,2), + (246,440.870819200,'2001-01-01','2022-12-31',2,dataset_id,2), + (250,516.372198100,'2001-01-01','2022-12-31',2,dataset_id,2), + (275,89.755732790,'2001-01-01','2022-12-31',2,dataset_id,2), + (268,810.358749500,'2001-01-01','2022-12-31',2,dataset_id,2), + (276,488.667116500,'2001-01-01','2022-12-31',2,dataset_id,2), + (300,467.605070400,'2001-01-01','2022-12-31',2,dataset_id,2), + (348,288.009680200,'2001-01-01','2022-12-31',2,dataset_id,2), + (352,1290.212912000,'2001-01-01','2022-12-31',2,dataset_id,2), + (364,105.987645500,'2001-01-01','2022-12-31',2,dataset_id,2), + (368,73.154981620,'2001-01-01','2022-12-31',2,dataset_id,2), + (372,810.864738100,'2001-01-01','2022-12-31',2,dataset_id,2), + (376,92.614430030,'2001-01-01','2022-12-31',2,dataset_id,2), + (380,630.774594400,'2001-01-01','2022-12-31',2,dataset_id,2), + (400,10.154855440,'2001-01-01','2022-12-31',2,dataset_id,2), + (414,25.874756870,'2001-01-01','2022-12-31',2,dataset_id,2), + (428,421.908651100,'2001-01-01','2022-12-31',2,dataset_id,2), + (422,337.644977700,'2001-01-01','2022-12-31',2,dataset_id,2), + (440,392.979477400,'2001-01-01','2022-12-31',2,dataset_id,2), + (442,543.978869000,'2001-01-01','2022-12-31',2,dataset_id,2), + (807,347.975941300,'2001-01-01','2022-12-31',2,dataset_id,2), + (498,196.833836000,'2001-01-01','2022-12-31',2,dataset_id,2), + (499,1175.470139000,'2001-01-01','2022-12-31',2,dataset_id,2), + (528,526.101470600,'2001-01-01','2022-12-31',2,dataset_id,2), + (578,1080.564220000,'2001-01-01','2022-12-31',2,dataset_id,2), + (512,7.060940965,'2001-01-01','2022-12-31',2,dataset_id,2), + (616,366.750010400,'2001-01-01','2022-12-31',2,dataset_id,2), + (634,7.573571523,'2001-01-01','2022-12-31',2,dataset_id,2), + (642,354.127545500,'2001-01-01','2022-12-31',2,dataset_id,2), + (682,5.190283063,'2001-01-01','2022-12-31',2,dataset_id,2), + (688,345.863449700,'2001-01-01','2022-12-31',2,dataset_id,2), + (703,410.010765000,'2001-01-01','2022-12-31',2,dataset_id,2), + (705,771.922179200,'2001-01-01','2022-12-31',2,dataset_id,2), + (724,312.683991700,'2001-01-01','2022-12-31',2,dataset_id,2), + (752,504.310962600,'2001-01-01','2022-12-31',2,dataset_id,2), + (756,1134.716032000,'2001-01-01','2022-12-31',2,dataset_id,2), + (760,73.045138760,'2001-01-01','2022-12-31',2,dataset_id,2), + (792,360.480614000,'2001-01-01','2022-12-31',2,dataset_id,2), + (804,274.064264500,'2001-01-01','2022-12-31',2,dataset_id,2), + (784,2.711386963,'2001-01-01','2022-12-31',2,dataset_id,2), + (826,764.456407000,'2001-01-01','2022-12-31',2,dataset_id,2), + (887,30.664426910,'2001-01-01','2022-12-31',2,dataset_id,2), + (84,962.693381900,'2001-01-01','2022-12-31',2,dataset_id,2), + (124,418.598065700,'2001-01-01','2022-12-31',2,dataset_id,2), + (170,2613.094759000,'2001-01-01','2022-12-31',2,dataset_id,2), + (188,2953.218919000,'2001-01-01','2022-12-31',2,dataset_id,2), + (192,447.923874500,'2001-01-01','2022-12-31',2,dataset_id,2), + (214,506.627760400,'2001-01-01','2022-12-31',2,dataset_id,2), + (222,1103.718512000,'2001-01-01','2022-12-31',2,dataset_id,2), + (304,395.453299100,'2001-01-01','2022-12-31',2,dataset_id,2), + (320,1166.638355000,'2001-01-01','2022-12-31',2,dataset_id,2), + (332,420.574692300,'2001-01-01','2022-12-31',2,dataset_id,2), + (340,989.570687100,'2001-01-01','2022-12-31',2,dataset_id,2), + (388,652.312716200,'2001-01-01','2022-12-31',2,dataset_id,2), + (484,396.263378600,'2001-01-01','2022-12-31',2,dataset_id,2), + (558,1240.410694000,'2001-01-01','2022-12-31',2,dataset_id,2), + (591,2720.685620000,'2001-01-01','2022-12-31',2,dataset_id,2), + (630,655.481881700,'2001-01-01','2022-12-31',2,dataset_id,2), + (44,671.545198900,'2001-01-01','2022-12-31',2,dataset_id,2), + (840,419.459687700,'2001-01-01','2022-12-31',2,dataset_id,2), + (10,200.944656100,'2001-01-01','2022-12-31',2,dataset_id,2), + (36,159.505691200,'2001-01-01','2022-12-31',2,dataset_id,2), + (96,2252.203052000,'2001-01-01','2022-12-31',2,dataset_id,2), + (242,1909.159710000,'2001-01-01','2022-12-31',2,dataset_id,2), + (360,2557.033824000,'2001-01-01','2022-12-31',2,dataset_id,2), + (458,2155.897245000,'2001-01-01','2022-12-31',2,dataset_id,2), + (540,998.402736700,'2001-01-01','2022-12-31',2,dataset_id,2), + (554,1141.741242000,'2001-01-01','2022-12-31',2,dataset_id,2), + (598,3521.374128000,'2001-01-01','2022-12-31',2,dataset_id,2), + (608,2217.933801000,'2001-01-01','2022-12-31',2,dataset_id,2), + (90,3638.783137000,'2001-01-01','2022-12-31',2,dataset_id,2), + (626,1114.144992000,'2001-01-01','2022-12-31',2,dataset_id,2), + (548,1951.458516000,'2001-01-01','2022-12-31',2,dataset_id,2), + (32,287.851580400,'2001-01-01','2022-12-31',2,dataset_id,2), + (68,815.308501000,'2001-01-01','2022-12-31',2,dataset_id,2), + (76,1108.647959000,'2001-01-01','2022-12-31',2,dataset_id,2), + (152,1301.371889000,'2001-01-01','2022-12-31',2,dataset_id,2), + (218,2476.334438000,'2001-01-01','2022-12-31',2,dataset_id,2), + (238,414.461789600,'2001-01-01','2022-12-31',2,dataset_id,2), + (328,1380.390092000,'2001-01-01','2022-12-31',2,dataset_id,2), + (740,1278.658667000,'2001-01-01','2022-12-31',2,dataset_id,2), + (600,503.642455900,'2001-01-01','2022-12-31',2,dataset_id,2), + (604,1452.907279000,'2001-01-01','2022-12-31',2,dataset_id,2), + (780,1151.563534000,'2001-01-01','2022-12-31',2,dataset_id,2), + (858,608.580445100,'2001-01-01','2022-12-31',2,dataset_id,2), + (862,1532.390475000,'2001-01-01','2022-12-31',2,dataset_id,2), + (12,13.812376760,'1980-01-01','2000-12-31',2,dataset_id,2), + (24,559.797541000,'1980-01-01','2000-12-31',2,dataset_id,2), + (204,576.672835900,'1980-01-01','2000-12-31',2,dataset_id,2), + (72,94.073207030,'1980-01-01','2000-12-31',2,dataset_id,2), + (854,242.840288600,'1980-01-01','2000-12-31',2,dataset_id,2), + (108,1302.948313000,'1980-01-01','2000-12-31',2,dataset_id,2), + (120,1261.176591000,'1980-01-01','2000-12-31',2,dataset_id,2), + (140,856.802366500,'1980-01-01','2000-12-31',2,dataset_id,2), + (148,149.376709100,'1980-01-01','2000-12-31',2,dataset_id,2), + (818,1.379810168,'1980-01-01','2000-12-31',2,dataset_id,2), + (566,666.658710200,'1980-01-01','2000-12-31',2,dataset_id,2), + (178,920.255056300,'1980-01-01','2000-12-31',2,dataset_id,2), + (180,1103.164578000,'1980-01-01','2000-12-31',2,dataset_id,2), + (384,659.141308200,'1980-01-01','2000-12-31',2,dataset_id,2), + (262,37.072927840,'1980-01-01','2000-12-31',2,dataset_id,2), + (226,2303.792510000,'1980-01-01','2000-12-31',2,dataset_id,2), + (232,127.431839500,'1980-01-01','2000-12-31',2,dataset_id,2), + (231,609.846098400,'1980-01-01','2000-12-31',2,dataset_id,2), + (260,1531.955333000,'1980-01-01','2000-12-31',2,dataset_id,2), + (266,1355.917270000,'1980-01-01','2000-12-31',2,dataset_id,2), + (288,582.782170500,'1980-01-01','2000-12-31',2,dataset_id,2), + (324,1273.533612000,'1980-01-01','2000-12-31',2,dataset_id,2), + (624,1007.489842000,'1980-01-01','2000-12-31',2,dataset_id,2), + (404,324.345339100,'1980-01-01','2000-12-31',2,dataset_id,2), + (426,469.475760200,'1980-01-01','2000-12-31',2,dataset_id,2), + (430,1640.472598000,'1980-01-01','2000-12-31',2,dataset_id,2), + (434,3.005000468,'1980-01-01','2000-12-31',2,dataset_id,2), + (450,898.758670800,'1980-01-01','2000-12-31',2,dataset_id,2), + (454,938.224226100,'1980-01-01','2000-12-31',2,dataset_id,2), + (466,107.373068300,'1980-01-01','2000-12-31',2,dataset_id,2), + (478,6.876800404,'1980-01-01','2000-12-31',2,dataset_id,2), + (504,88.548654420,'1980-01-01','2000-12-31',2,dataset_id,2), + (508,450.913699000,'1980-01-01','2000-12-31',2,dataset_id,2), + (516,61.551842880,'1980-01-01','2000-12-31',2,dataset_id,2), + (562,13.470457310,'1980-01-01','2000-12-31',2,dataset_id,2), + (646,977.608426000,'1980-01-01','2000-12-31',2,dataset_id,2), + (686,255.584354800,'1980-01-01','2000-12-31',2,dataset_id,2), + (694,2052.819230000,'1980-01-01','2000-12-31',2,dataset_id,2), + (706,71.030683560,'1980-01-01','2000-12-31',2,dataset_id,2), + (729,67.685836250,'1980-01-01','2000-12-31',2,dataset_id,2), + (834,626.375448100,'1980-01-01','2000-12-31',2,dataset_id,2), + (710,143.019724500,'1980-01-01','2000-12-31',2,dataset_id,2), + (728,552.277954000,'1980-01-01','2000-12-31',2,dataset_id,2), + (748,297.665999400,'1980-01-01','2000-12-31',2,dataset_id,2), + (270,455.207391500,'1980-01-01','2000-12-31',2,dataset_id,2), + (768,786.294844200,'1980-01-01','2000-12-31',2,dataset_id,2), + (788,55.701799600,'1980-01-01','2000-12-31',2,dataset_id,2), + (800,1038.528417000,'1980-01-01','2000-12-31',2,dataset_id,2), + (732,2.166360701,'1980-01-01','2000-12-31',2,dataset_id,2), + (894,590.521526100,'1980-01-01','2000-12-31',2,dataset_id,2), + (716,285.691158000,'1980-01-01','2000-12-31',2,dataset_id,2), + (620,473.643895400,'1980-01-01','2000-12-31',2,dataset_id,2), + (4,187.628179400,'1980-01-01','2000-12-31',2,dataset_id,2), + (50,1804.527355000,'1980-01-01','2000-12-31',2,dataset_id,2), + (64,2747.249753000,'1980-01-01','2000-12-31',2,dataset_id,2), + (104,1961.143302000,'1980-01-01','2000-12-31',2,dataset_id,2), + (116,1251.512936000,'1980-01-01','2000-12-31',2,dataset_id,2), + (156,502.136255200,'1980-01-01','2000-12-31',2,dataset_id,2), + (356,844.740528200,'1980-01-01','2000-12-31',2,dataset_id,2), + (392,1300.512651000,'1980-01-01','2000-12-31',2,dataset_id,2), + (398,131.862624500,'1980-01-01','2000-12-31',2,dataset_id,2), + (417,546.510587100,'1980-01-01','2000-12-31',2,dataset_id,2), + (418,1486.170413000,'1980-01-01','2000-12-31',2,dataset_id,2), + (496,74.824691020,'1980-01-01','2000-12-31',2,dataset_id,2), + (524,1507.167295000,'1980-01-01','2000-12-31',2,dataset_id,2), + (408,710.170906600,'1980-01-01','2000-12-31',2,dataset_id,2), + (586,198.806459100,'1980-01-01','2000-12-31',2,dataset_id,2), + (643,331.519754900,'1980-01-01','2000-12-31',2,dataset_id,2), + (410,856.843089600,'1980-01-01','2000-12-31',2,dataset_id,2), + (144,1017.211233000,'1980-01-01','2000-12-31',2,dataset_id,2), + (158,2273.937569000,'1980-01-01','2000-12-31',2,dataset_id,2), + (762,493.771431200,'1980-01-01','2000-12-31',2,dataset_id,2), + (764,1103.682605000,'1980-01-01','2000-12-31',2,dataset_id,2), + (795,39.806652320,'1980-01-01','2000-12-31',2,dataset_id,2), + (860,99.776649700,'1980-01-01','2000-12-31',2,dataset_id,2), + (704,1524.775404000,'1980-01-01','2000-12-31',2,dataset_id,2), + (8,758.627615500,'1980-01-01','2000-12-31',2,dataset_id,2), + (51,427.779637500,'1980-01-01','2000-12-31',2,dataset_id,2), + (40,758.906305400,'1980-01-01','2000-12-31',2,dataset_id,2), + (31,281.317667100,'1980-01-01','2000-12-31',2,dataset_id,2), + (112,387.318367900,'1980-01-01','2000-12-31',2,dataset_id,2), + (56,551.762303400,'1980-01-01','2000-12-31',2,dataset_id,2), + (70,667.273167600,'1980-01-01','2000-12-31',2,dataset_id,2), + (100,314.680884200,'1980-01-01','2000-12-31',2,dataset_id,2), + (191,618.801177200,'1980-01-01','2000-12-31',2,dataset_id,2), + (196,215.304911600,'1980-01-01','2000-12-31',2,dataset_id,2), + (203,395.554675400,'1980-01-01','2000-12-31',2,dataset_id,2), + (208,550.837377000,'1980-01-01','2000-12-31',2,dataset_id,2), + (233,481.578909800,'1980-01-01','2000-12-31',2,dataset_id,2), + (246,438.113904500,'1980-01-01','2000-12-31',2,dataset_id,2), + (250,568.241830700,'1980-01-01','2000-12-31',2,dataset_id,2), + (275,113.496352400,'1980-01-01','2000-12-31',2,dataset_id,2), + (268,836.171995200,'1980-01-01','2000-12-31',2,dataset_id,2), + (276,517.162858100,'1980-01-01','2000-12-31',2,dataset_id,2), + (300,428.210770600,'1980-01-01','2000-12-31',2,dataset_id,2), + (348,267.589626500,'1980-01-01','2000-12-31',2,dataset_id,2), + (352,1222.445189000,'1980-01-01','2000-12-31',2,dataset_id,2), + (364,124.158214600,'1980-01-01','2000-12-31',2,dataset_id,2), + (368,84.158909170,'1980-01-01','2000-12-31',2,dataset_id,2), + (372,832.671851900,'1980-01-01','2000-12-31',2,dataset_id,2), + (376,104.712247600,'1980-01-01','2000-12-31',2,dataset_id,2), + (380,575.222731200,'1980-01-01','2000-12-31',2,dataset_id,2), + (400,14.984487700,'1980-01-01','2000-12-31',2,dataset_id,2), + (414,26.908201120,'1980-01-01','2000-12-31',2,dataset_id,2), + (428,466.565937900,'1980-01-01','2000-12-31',2,dataset_id,2), + (422,336.176572600,'1980-01-01','2000-12-31',2,dataset_id,2), + (440,438.154058700,'1980-01-01','2000-12-31',2,dataset_id,2), + (442,589.503234800,'1980-01-01','2000-12-31',2,dataset_id,2), + (807,314.370737200,'1980-01-01','2000-12-31',2,dataset_id,2), + (498,239.410361800,'1980-01-01','2000-12-31',2,dataset_id,2), + (499,1056.977791000,'1980-01-01','2000-12-31',2,dataset_id,2), + (528,549.854114500,'1980-01-01','2000-12-31',2,dataset_id,2), + (578,1046.703895000,'1980-01-01','2000-12-31',2,dataset_id,2), + (512,8.298735582,'1980-01-01','2000-12-31',2,dataset_id,2), + (616,376.202831900,'1980-01-01','2000-12-31',2,dataset_id,2), + (634,15.175495640,'1980-01-01','2000-12-31',2,dataset_id,2), + (642,374.911507600,'1980-01-01','2000-12-31',2,dataset_id,2), + (682,7.752439336,'1980-01-01','2000-12-31',2,dataset_id,2), + (688,314.235361000,'1980-01-01','2000-12-31',2,dataset_id,2), + (703,399.891307400,'1980-01-01','2000-12-31',2,dataset_id,2), + (705,771.810493300,'1980-01-01','2000-12-31',2,dataset_id,2), + (724,316.301917700,'1980-01-01','2000-12-31',2,dataset_id,2), + (752,511.050675500,'1980-01-01','2000-12-31',2,dataset_id,2), + (756,1232.045928000,'1980-01-01','2000-12-31',2,dataset_id,2), + (760,85.545666020,'1980-01-01','2000-12-31',2,dataset_id,2), + (792,377.953347300,'1980-01-01','2000-12-31',2,dataset_id,2), + (804,309.473090400,'1980-01-01','2000-12-31',2,dataset_id,2), + (784,12.202428790,'1980-01-01','2000-12-31',2,dataset_id,2), + (826,774.143212800,'1980-01-01','2000-12-31',2,dataset_id,2), + (887,35.544143240,'1980-01-01','2000-12-31',2,dataset_id,2), + (84,1046.843886000,'1980-01-01','2000-12-31',2,dataset_id,2), + (124,403.078001300,'1980-01-01','2000-12-31',2,dataset_id,2), + (170,2776.587524000,'1980-01-01','2000-12-31',2,dataset_id,2), + (188,2649.090651000,'1980-01-01','2000-12-31',2,dataset_id,2), + (192,437.628501000,'1980-01-01','2000-12-31',2,dataset_id,2), + (214,542.134856800,'1980-01-01','2000-12-31',2,dataset_id,2), + (222,1033.639674000,'1980-01-01','2000-12-31',2,dataset_id,2), + (304,377.786504600,'1980-01-01','2000-12-31',2,dataset_id,2), + (320,1208.389942000,'1980-01-01','2000-12-31',2,dataset_id,2), + (332,395.979495300,'1980-01-01','2000-12-31',2,dataset_id,2), + (340,964.188636700,'1980-01-01','2000-12-31',2,dataset_id,2), + (388,549.454789300,'1980-01-01','2000-12-31',2,dataset_id,2), + (484,412.832593700,'1980-01-01','2000-12-31',2,dataset_id,2), + (558,1136.529828000,'1980-01-01','2000-12-31',2,dataset_id,2), + (591,2582.940100000,'1980-01-01','2000-12-31',2,dataset_id,2), + (630,595.775101700,'1980-01-01','2000-12-31',2,dataset_id,2), + (44,680.725433000,'1980-01-01','2000-12-31',2,dataset_id,2), + (840,436.275249500,'1980-01-01','2000-12-31',2,dataset_id,2), + (10,198.280366900,'1980-01-01','2000-12-31',2,dataset_id,2), + (36,164.577896600,'1980-01-01','2000-12-31',2,dataset_id,2), + (96,2143.867663000,'1980-01-01','2000-12-31',2,dataset_id,2), + (242,1613.267234000,'1980-01-01','2000-12-31',2,dataset_id,2), + (360,2425.874395000,'1980-01-01','2000-12-31',2,dataset_id,2), + (458,2033.874079000,'1980-01-01','2000-12-31',2,dataset_id,2), + (540,901.884775100,'1980-01-01','2000-12-31',2,dataset_id,2), + (554,1186.615737000,'1980-01-01','2000-12-31',2,dataset_id,2), + (598,3055.883675000,'1980-01-01','2000-12-31',2,dataset_id,2), + (608,1949.056406000,'1980-01-01','2000-12-31',2,dataset_id,2), + (90,2905.876093000,'1980-01-01','2000-12-31',2,dataset_id,2), + (626,1120.725848000,'1980-01-01','2000-12-31',2,dataset_id,2), + (548,1674.377421000,'1980-01-01','2000-12-31',2,dataset_id,2), + (32,368.983724100,'1980-01-01','2000-12-31',2,dataset_id,2), + (68,879.704989800,'1980-01-01','2000-12-31',2,dataset_id,2), + (76,1167.776126000,'1980-01-01','2000-12-31',2,dataset_id,2), + (152,1309.434388000,'1980-01-01','2000-12-31',2,dataset_id,2), + (218,2620.512367000,'1980-01-01','2000-12-31',2,dataset_id,2), + (238,439.353738400,'1980-01-01','2000-12-31',2,dataset_id,2), + (328,1092.050227000,'1980-01-01','2000-12-31',2,dataset_id,2), + (740,879.450597800,'1980-01-01','2000-12-31',2,dataset_id,2), + (600,724.069719700,'1980-01-01','2000-12-31',2,dataset_id,2), + (604,1560.899820000,'1980-01-01','2000-12-31',2,dataset_id,2), + (780,988.696700700,'1980-01-01','2000-12-31',2,dataset_id,2), + (858,675.516286700,'1980-01-01','2000-12-31',2,dataset_id,2), + (862,1494.831784000,'1980-01-01','2000-12-31',2,dataset_id,2), + (12,14.146528960,'1980-01-01','2022-12-31',2,dataset_id,2), + (24,573.526757200,'1980-01-01','2022-12-31',2,dataset_id,2), + (204,555.804252900,'1980-01-01','2022-12-31',2,dataset_id,2), + (72,106.513518900,'1980-01-01','2022-12-31',2,dataset_id,2), + (854,243.449186700,'1980-01-01','2022-12-31',2,dataset_id,2), + (108,1227.855747000,'1980-01-01','2022-12-31',2,dataset_id,2), + (120,1159.219435000,'1980-01-01','2022-12-31',2,dataset_id,2), + (140,702.092841300,'1980-01-01','2022-12-31',2,dataset_id,2), + (148,133.605145900,'1980-01-01','2022-12-31',2,dataset_id,2), + (818,1.195625542,'1980-01-01','2022-12-31',2,dataset_id,2), + (566,649.493415900,'1980-01-01','2022-12-31',2,dataset_id,2), + (178,799.767112000,'1980-01-01','2022-12-31',2,dataset_id,2), + (180,943.617365300,'1980-01-01','2022-12-31',2,dataset_id,2), + (384,618.619014400,'1980-01-01','2022-12-31',2,dataset_id,2), + (262,28.187009230,'1980-01-01','2022-12-31',2,dataset_id,2), + (226,2229.105668000,'1980-01-01','2022-12-31',2,dataset_id,2), + (232,112.555150200,'1980-01-01','2022-12-31',2,dataset_id,2), + (231,587.344296100,'1980-01-01','2022-12-31',2,dataset_id,2), + (260,1541.833400000,'1980-01-01','2022-12-31',2,dataset_id,2), + (266,1290.361837000,'1980-01-01','2022-12-31',2,dataset_id,2), + (288,551.800170900,'1980-01-01','2022-12-31',2,dataset_id,2), + (324,1212.232733000,'1980-01-01','2022-12-31',2,dataset_id,2), + (624,998.228716500,'1980-01-01','2022-12-31',2,dataset_id,2), + (404,310.793508400,'1980-01-01','2022-12-31',2,dataset_id,2), + (426,441.401678200,'1980-01-01','2022-12-31',2,dataset_id,2), + (430,1669.482487000,'1980-01-01','2022-12-31',2,dataset_id,2), + (434,2.735480257,'1980-01-01','2022-12-31',2,dataset_id,2), + (450,912.575340400,'1980-01-01','2022-12-31',2,dataset_id,2), + (454,961.371615200,'1980-01-01','2022-12-31',2,dataset_id,2), + (466,100.915671700,'1980-01-01','2022-12-31',2,dataset_id,2), + (478,6.628349152,'1980-01-01','2022-12-31',2,dataset_id,2), + (504,85.810697590,'1980-01-01','2022-12-31',2,dataset_id,2), + (508,450.441056700,'1980-01-01','2022-12-31',2,dataset_id,2), + (516,78.800937440,'1980-01-01','2022-12-31',2,dataset_id,2), + (562,14.426994570,'1980-01-01','2022-12-31',2,dataset_id,2), + (646,894.050349100,'1980-01-01','2022-12-31',2,dataset_id,2), + (686,244.125906100,'1980-01-01','2022-12-31',2,dataset_id,2), + (694,2057.170685000,'1980-01-01','2022-12-31',2,dataset_id,2), + (706,65.247313600,'1980-01-01','2022-12-31',2,dataset_id,2), + (729,59.016433930,'1980-01-01','2022-12-31',2,dataset_id,2), + (834,586.599673900,'1980-01-01','2022-12-31',2,dataset_id,2), + (710,135.406295000,'1980-01-01','2022-12-31',2,dataset_id,2), + (728,454.360621200,'1980-01-01','2022-12-31',2,dataset_id,2), + (748,283.730307000,'1980-01-01','2022-12-31',2,dataset_id,2), + (270,438.280903300,'1980-01-01','2022-12-31',2,dataset_id,2), + (768,734.618845500,'1980-01-01','2022-12-31',2,dataset_id,2), + (788,54.818480630,'1980-01-01','2022-12-31',2,dataset_id,2), + (800,944.421323000,'1980-01-01','2022-12-31',2,dataset_id,2), + (732,2.167322863,'1980-01-01','2022-12-31',2,dataset_id,2), + (894,626.169748400,'1980-01-01','2022-12-31',2,dataset_id,2), + (716,306.395434600,'1980-01-01','2022-12-31',2,dataset_id,2), + (620,466.904867300,'1980-01-01','2022-12-31',2,dataset_id,2), + (4,167.538531000,'1980-01-01','2022-12-31',2,dataset_id,2), + (50,1771.317973000,'1980-01-01','2022-12-31',2,dataset_id,2), + (64,2771.559039000,'1980-01-01','2022-12-31',2,dataset_id,2), + (104,1891.922724000,'1980-01-01','2022-12-31',2,dataset_id,2), + (116,1222.135253000,'1980-01-01','2022-12-31',2,dataset_id,2), + (156,463.764300200,'1980-01-01','2022-12-31',2,dataset_id,2), + (356,874.939356200,'1980-01-01','2022-12-31',2,dataset_id,2), + (392,1318.818423000,'1980-01-01','2022-12-31',2,dataset_id,2), + (398,124.688342200,'1980-01-01','2022-12-31',2,dataset_id,2), + (417,535.418424800,'1980-01-01','2022-12-31',2,dataset_id,2), + (418,1436.571255000,'1980-01-01','2022-12-31',2,dataset_id,2), + (496,64.866526420,'1980-01-01','2022-12-31',2,dataset_id,2), + (524,1569.628616000,'1980-01-01','2022-12-31',2,dataset_id,2), + (408,688.788792200,'1980-01-01','2022-12-31',2,dataset_id,2), + (586,185.837956800,'1980-01-01','2022-12-31',2,dataset_id,2), + (643,327.231126800,'1980-01-01','2022-12-31',2,dataset_id,2), + (410,793.925946300,'1980-01-01','2022-12-31',2,dataset_id,2), + (144,1131.228851000,'1980-01-01','2022-12-31',2,dataset_id,2), + (158,2294.187703000,'1980-01-01','2022-12-31',2,dataset_id,2), + (762,468.757875500,'1980-01-01','2022-12-31',2,dataset_id,2), + (764,1095.735041000,'1980-01-01','2022-12-31',2,dataset_id,2), + (795,35.410498910,'1980-01-01','2022-12-31',2,dataset_id,2), + (860,95.434978460,'1980-01-01','2022-12-31',2,dataset_id,2), + (704,1489.509334000,'1980-01-01','2022-12-31',2,dataset_id,2), + (8,811.648801200,'1980-01-01','2022-12-31',2,dataset_id,2), + (51,428.725360900,'1980-01-01','2022-12-31',2,dataset_id,2), + (40,765.597271700,'1980-01-01','2022-12-31',2,dataset_id,2), + (31,272.893911200,'1980-01-01','2022-12-31',2,dataset_id,2), + (112,372.411678400,'1980-01-01','2022-12-31',2,dataset_id,2), + (56,534.924629300,'1980-01-01','2022-12-31',2,dataset_id,2), + (70,704.018263500,'1980-01-01','2022-12-31',2,dataset_id,2), + (100,325.803380100,'1980-01-01','2022-12-31',2,dataset_id,2), + (191,641.286319000,'1980-01-01','2022-12-31',2,dataset_id,2), + (196,220.870266600,'1980-01-01','2022-12-31',2,dataset_id,2), + (203,397.649485900,'1980-01-01','2022-12-31',2,dataset_id,2), + (208,555.677864700,'1980-01-01','2022-12-31',2,dataset_id,2), + (233,466.841092100,'1980-01-01','2022-12-31',2,dataset_id,2), + (246,439.524418700,'1980-01-01','2022-12-31',2,dataset_id,2), + (250,541.703878000,'1980-01-01','2022-12-31',2,dataset_id,2), + (275,101.349988400,'1980-01-01','2022-12-31',2,dataset_id,2), + (268,822.965221300,'1980-01-01','2022-12-31',2,dataset_id,2), + (276,502.583640600,'1980-01-01','2022-12-31',2,dataset_id,2), + (300,448.365994000,'1980-01-01','2022-12-31',2,dataset_id,2), + (348,278.037096100,'1980-01-01','2022-12-31',2,dataset_id,2), + (352,1257.117039000,'1980-01-01','2022-12-31',2,dataset_id,2), + (364,114.861644100,'1980-01-01','2022-12-31',2,dataset_id,2), + (368,78.528992760,'1980-01-01','2022-12-31',2,dataset_id,2), + (372,821.514721800,'1980-01-01','2022-12-31',2,dataset_id,2), + (376,98.522666440,'1980-01-01','2022-12-31',2,dataset_id,2), + (380,603.644616300,'1980-01-01','2022-12-31',2,dataset_id,2), + (400,12.513512940,'1980-01-01','2022-12-31',2,dataset_id,2), + (414,26.379461920,'1980-01-01','2022-12-31',2,dataset_id,2), + (428,443.718022200,'1980-01-01','2022-12-31',2,dataset_id,2), + (422,336.927848100,'1980-01-01','2022-12-31',2,dataset_id,2), + (440,415.041484300,'1980-01-01','2022-12-31',2,dataset_id,2), + (442,566.211675800,'1980-01-01','2022-12-31',2,dataset_id,2), + (807,331.564099100,'1980-01-01','2022-12-31',2,dataset_id,2), + (498,217.627021600,'1980-01-01','2022-12-31',2,dataset_id,2), + (499,1117.601784000,'1980-01-01','2022-12-31',2,dataset_id,2), + (528,537.701596700,'1980-01-01','2022-12-31',2,dataset_id,2), + (578,1064.027779000,'1980-01-01','2022-12-31',2,dataset_id,2), + (512,7.665445277,'1980-01-01','2022-12-31',2,dataset_id,2), + (616,371.366504100,'1980-01-01','2022-12-31',2,dataset_id,2), + (634,11.286139200,'1980-01-01','2022-12-31',2,dataset_id,2), + (642,364.277852800,'1980-01-01','2022-12-31',2,dataset_id,2), + (682,6.441568675,'1980-01-01','2022-12-31',2,dataset_id,2), + (688,330.417176000,'1980-01-01','2022-12-31',2,dataset_id,2), + (703,405.068702100,'1980-01-01','2022-12-31',2,dataset_id,2), + (705,771.867628400,'1980-01-01','2022-12-31',2,dataset_id,2), + (724,314.450885300,'1980-01-01','2022-12-31',2,dataset_id,2), + (752,507.602450200,'1980-01-01','2022-12-31',2,dataset_id,2), + (756,1182.249234000,'1980-01-01','2022-12-31',2,dataset_id,2), + (760,79.150048230,'1980-01-01','2022-12-31',2,dataset_id,2), + (792,369.013809900,'1980-01-01','2022-12-31',2,dataset_id,2), + (804,291.356945900,'1980-01-01','2022-12-31',2,dataset_id,2), + (784,7.346546833,'1980-01-01','2022-12-31',2,dataset_id,2), + (826,769.187172100,'1980-01-01','2022-12-31',2,dataset_id,2), + (887,33.047543940,'1980-01-01','2022-12-31',2,dataset_id,2), + (84,1003.790136000,'1980-01-01','2022-12-31',2,dataset_id,2), + (124,411.018499300,'1980-01-01','2022-12-31',2,dataset_id,2), + (170,2692.940060000,'1980-01-01','2022-12-31',2,dataset_id,2), + (188,2804.691166000,'1980-01-01','2022-12-31',2,dataset_id,2), + (192,442.895899500,'1980-01-01','2022-12-31',2,dataset_id,2), + (214,523.968436500,'1980-01-01','2022-12-31',2,dataset_id,2), + (222,1069.493963000,'1980-01-01','2022-12-31',2,dataset_id,2), + (304,388.118810400,'1980-01-01','2022-12-31',2,dataset_id,2), + (320,1187.028675000,'1980-01-01','2022-12-31',2,dataset_id,2), + (332,408.563086400,'1980-01-01','2022-12-31',2,dataset_id,2), + (340,977.174803200,'1980-01-01','2022-12-31',2,dataset_id,2), + (388,602.079776500,'1980-01-01','2022-12-31',2,dataset_id,2), + (484,404.355321200,'1980-01-01','2022-12-31',2,dataset_id,2), + (558,1189.678180000,'1980-01-01','2022-12-31',2,dataset_id,2), + (591,2653.414572000,'1980-01-01','2022-12-31',2,dataset_id,2), + (630,626.322771500,'1980-01-01','2022-12-31',2,dataset_id,2), + (44,676.028570000,'1980-01-01','2022-12-31',2,dataset_id,2), + (840,427.717481800,'1980-01-01','2022-12-31',2,dataset_id,2), + (10,206.477268500,'1980-01-01','2022-12-31',2,dataset_id,2), + (36,161.982814900,'1980-01-01','2022-12-31',2,dataset_id,2), + (96,2199.295106000,'1980-01-01','2022-12-31',2,dataset_id,2), + (242,1764.654084000,'1980-01-01','2022-12-31',2,dataset_id,2), + (360,2492.979223000,'1980-01-01','2022-12-31',2,dataset_id,2), + (458,2096.304529000,'1980-01-01','2022-12-31',2,dataset_id,2), + (540,951.266066900,'1980-01-01','2022-12-31',2,dataset_id,2), + (554,1163.656689000,'1980-01-01','2022-12-31',2,dataset_id,2), + (598,3294.041575000,'1980-01-01','2022-12-31',2,dataset_id,2), + (608,2086.621586000,'1980-01-01','2022-12-31',2,dataset_id,2), + (90,3280.851796000,'1980-01-01','2022-12-31',2,dataset_id,2), + (626,1117.358885000,'1980-01-01','2022-12-31',2,dataset_id,2), + (548,1816.139844000,'1980-01-01','2022-12-31',2,dataset_id,2), + (32,327.474256000,'1980-01-01','2022-12-31',2,dataset_id,2), + (68,846.757949900,'1980-01-01','2022-12-31',2,dataset_id,2), + (76,1137.524506000,'1980-01-01','2022-12-31',2,dataset_id,2), + (152,1305.309389000,'1980-01-01','2022-12-31',2,dataset_id,2), + (218,2546.746916000,'1980-01-01','2022-12-31',2,dataset_id,2), + (238,426.618323300,'1980-01-01','2022-12-31',2,dataset_id,2), + (328,1239.572943000,'1980-01-01','2022-12-31',2,dataset_id,2), + (740,1083.696584000,'1980-01-01','2022-12-31',2,dataset_id,2), + (600,611.292979300,'1980-01-01','2022-12-31',2,dataset_id,2), + (604,1505.647820000,'1980-01-01','2022-12-31',2,dataset_id,2), + (780,1072.023902000,'1980-01-01','2022-12-31',2,dataset_id,2), + (858,641.270038700,'1980-01-01','2022-12-31',2,dataset_id,2), + (862,1514.047853000,'1980-01-01','2022-12-31',2,dataset_id,2); +end $$; \ No newline at end of file diff --git a/backend/migrations/20240815121702_add-merra-era-wet-projection-data.sql b/backend/migrations/20240815121702_add-merra-era-wet-projection-data.sql new file mode 100644 index 00000000..f5c572da --- /dev/null +++ b/backend/migrations/20240815121702_add-merra-era-wet-projection-data.sql @@ -0,0 +1,1053 @@ +do $$ +DECLARE + dataset_id int; +BEGIN + SELECT id INTO dataset_id FROM dataset WHERE short_name = 'wet_MERRA2_ERA5'; + + INSERT INTO data (id,value,start_date,end_date,source,dataset,geography_type) + VALUES + (12,9.857793240,'2001-01-01','2022-12-31',1,dataset_id,2), + (24,230.472365400,'2001-01-01','2022-12-31',1,dataset_id,2), + (204,263.816170400,'2001-01-01','2022-12-31',1,dataset_id,2), + (72,80.778463340,'2001-01-01','2022-12-31',1,dataset_id,2), + (854,216.087897200,'2001-01-01','2022-12-31',1,dataset_id,2), + (108,273.002782500,'2001-01-01','2022-12-31',1,dataset_id,2), + (120,335.008143800,'2001-01-01','2022-12-31',1,dataset_id,2), + (140,280.132973900,'2001-01-01','2022-12-31',1,dataset_id,2), + (148,103.718093500,'2001-01-01','2022-12-31',1,dataset_id,2), + (818,3.026713670,'2001-01-01','2022-12-31',1,dataset_id,2), + (566,327.848311000,'2001-01-01','2022-12-31',1,dataset_id,2), + (178,304.483588100,'2001-01-01','2022-12-31',1,dataset_id,2), + (180,247.664089400,'2001-01-01','2022-12-31',1,dataset_id,2), + (384,260.007127200,'2001-01-01','2022-12-31',1,dataset_id,2), + (262,39.692897930,'2001-01-01','2022-12-31',1,dataset_id,2), + (226,449.090722300,'2001-01-01','2022-12-31',1,dataset_id,2), + (232,134.852257600,'2001-01-01','2022-12-31',1,dataset_id,2), + (231,220.334982200,'2001-01-01','2022-12-31',1,dataset_id,2), + (260,140.456592500,'2001-01-01','2022-12-31',1,dataset_id,2), + (266,463.578286500,'2001-01-01','2022-12-31',1,dataset_id,2), + (288,245.328039800,'2001-01-01','2022-12-31',1,dataset_id,2), + (324,692.333461000,'2001-01-01','2022-12-31',1,dataset_id,2), + (624,625.697541200,'2001-01-01','2022-12-31',1,dataset_id,2), + (404,128.623015100,'2001-01-01','2022-12-31',1,dataset_id,2), + (426,117.271066500,'2001-01-01','2022-12-31',1,dataset_id,2), + (430,559.238435600,'2001-01-01','2022-12-31',1,dataset_id,2), + (434,7.118067664,'2001-01-01','2022-12-31',1,dataset_id,2), + (450,479.236988900,'2001-01-01','2022-12-31',1,dataset_id,2), + (454,386.585814200,'2001-01-01','2022-12-31',1,dataset_id,2), + (466,98.441177130,'2001-01-01','2022-12-31',1,dataset_id,2), + (478,32.197936280,'2001-01-01','2022-12-31',1,dataset_id,2), + (504,69.210499180,'2001-01-01','2022-12-31',1,dataset_id,2), + (508,343.949198000,'2001-01-01','2022-12-31',1,dataset_id,2), + (516,67.401282160,'2001-01-01','2022-12-31',1,dataset_id,2), + (562,36.057443480,'2001-01-01','2022-12-31',1,dataset_id,2), + (646,235.574107400,'2001-01-01','2022-12-31',1,dataset_id,2), + (686,271.745560800,'2001-01-01','2022-12-31',1,dataset_id,2), + (694,1013.678376000,'2001-01-01','2022-12-31',1,dataset_id,2), + (706,104.319493400,'2001-01-01','2022-12-31',1,dataset_id,2), + (729,67.409230150,'2001-01-01','2022-12-31',1,dataset_id,2), + (834,300.875706400,'2001-01-01','2022-12-31',1,dataset_id,2), + (710,60.072284890,'2001-01-01','2022-12-31',1,dataset_id,2), + (728,180.081458400,'2001-01-01','2022-12-31',1,dataset_id,2), + (748,98.266330530,'2001-01-01','2022-12-31',1,dataset_id,2), + (270,354.631393000,'2001-01-01','2022-12-31',1,dataset_id,2), + (768,266.427972600,'2001-01-01','2022-12-31',1,dataset_id,2), + (788,45.353175880,'2001-01-01','2022-12-31',1,dataset_id,2), + (800,186.399510700,'2001-01-01','2022-12-31',1,dataset_id,2), + (732,6.258654794,'2001-01-01','2022-12-31',1,dataset_id,2), + (894,279.757404500,'2001-01-01','2022-12-31',1,dataset_id,2), + (716,185.982453100,'2001-01-01','2022-12-31',1,dataset_id,2), + (620,187.371250600,'2001-01-01','2022-12-31',1,dataset_id,2), + (4,51.598796660,'2001-01-01','2022-12-31',1,dataset_id,2), + (50,779.654800700,'2001-01-01','2022-12-31',1,dataset_id,2), + (64,323.287704300,'2001-01-01','2022-12-31',1,dataset_id,2), + (104,284.181001200,'2001-01-01','2022-12-31',1,dataset_id,2), + (116,478.754748100,'2001-01-01','2022-12-31',1,dataset_id,2), + (156,119.683434100,'2001-01-01','2022-12-31',1,dataset_id,2), + (356,351.997006300,'2001-01-01','2022-12-31',1,dataset_id,2), + (392,330.378773500,'2001-01-01','2022-12-31',1,dataset_id,2), + (398,34.283509430,'2001-01-01','2022-12-31',1,dataset_id,2), + (417,45.278345060,'2001-01-01','2022-12-31',1,dataset_id,2), + (418,425.196037300,'2001-01-01','2022-12-31',1,dataset_id,2), + (496,17.409237300,'2001-01-01','2022-12-31',1,dataset_id,2), + (524,357.419599500,'2001-01-01','2022-12-31',1,dataset_id,2), + (408,303.557393500,'2001-01-01','2022-12-31',1,dataset_id,2), + (586,65.762822760,'2001-01-01','2022-12-31',1,dataset_id,2), + (643,95.567009730,'2001-01-01','2022-12-31',1,dataset_id,2), + (410,410.738173300,'2001-01-01','2022-12-31',1,dataset_id,2), + (144,435.829337000,'2001-01-01','2022-12-31',1,dataset_id,2), + (158,554.109521700,'2001-01-01','2022-12-31',1,dataset_id,2), + (762,52.241169370,'2001-01-01','2022-12-31',1,dataset_id,2), + (764,362.547220200,'2001-01-01','2022-12-31',1,dataset_id,2), + (795,17.428228040,'2001-01-01','2022-12-31',1,dataset_id,2), + (860,23.716893880,'2001-01-01','2022-12-31',1,dataset_id,2), + (704,447.618337600,'2001-01-01','2022-12-31',1,dataset_id,2), + (8,203.760889600,'2001-01-01','2022-12-31',1,dataset_id,2), + (51,34.297821990,'2001-01-01','2022-12-31',1,dataset_id,2), + (40,134.096724800,'2001-01-01','2022-12-31',1,dataset_id,2), + (31,44.416465320,'2001-01-01','2022-12-31',1,dataset_id,2), + (112,91.646746330,'2001-01-01','2022-12-31',1,dataset_id,2), + (56,114.753824300,'2001-01-01','2022-12-31',1,dataset_id,2), + (70,156.753058100,'2001-01-01','2022-12-31',1,dataset_id,2), + (100,91.819112960,'2001-01-01','2022-12-31',1,dataset_id,2), + (191,161.679797400,'2001-01-01','2022-12-31',1,dataset_id,2), + (196,132.256030200,'2001-01-01','2022-12-31',1,dataset_id,2), + (203,81.877617710,'2001-01-01','2022-12-31',1,dataset_id,2), + (208,136.149706700,'2001-01-01','2022-12-31',1,dataset_id,2), + (233,100.441032200,'2001-01-01','2022-12-31',1,dataset_id,2), + (246,111.001635400,'2001-01-01','2022-12-31',1,dataset_id,2), + (250,124.243353800,'2001-01-01','2022-12-31',1,dataset_id,2), + (275,70.688199890,'2001-01-01','2022-12-31',1,dataset_id,2), + (268,118.952089100,'2001-01-01','2022-12-31',1,dataset_id,2), + (276,105.363886900,'2001-01-01','2022-12-31',1,dataset_id,2), + (300,147.314327400,'2001-01-01','2022-12-31',1,dataset_id,2), + (348,77.023954030,'2001-01-01','2022-12-31',1,dataset_id,2), + (352,255.675859100,'2001-01-01','2022-12-31',1,dataset_id,2), + (364,32.251795050,'2001-01-01','2022-12-31',1,dataset_id,2), + (368,20.616296310,'2001-01-01','2022-12-31',1,dataset_id,2), + (372,182.646861900,'2001-01-01','2022-12-31',1,dataset_id,2), + (376,68.533488420,'2001-01-01','2022-12-31',1,dataset_id,2), + (380,154.591026900,'2001-01-01','2022-12-31',1,dataset_id,2), + (400,13.822013010,'2001-01-01','2022-12-31',1,dataset_id,2), + (414,3.050117998,'2001-01-01','2022-12-31',1,dataset_id,2), + (428,95.267749710,'2001-01-01','2022-12-31',1,dataset_id,2), + (422,131.545052100,'2001-01-01','2022-12-31',1,dataset_id,2), + (440,95.720876950,'2001-01-01','2022-12-31',1,dataset_id,2), + (442,119.182845500,'2001-01-01','2022-12-31',1,dataset_id,2), + (807,108.981614000,'2001-01-01','2022-12-31',1,dataset_id,2), + (498,69.365099600,'2001-01-01','2022-12-31',1,dataset_id,2), + (499,250.222975100,'2001-01-01','2022-12-31',1,dataset_id,2), + (528,118.590755100,'2001-01-01','2022-12-31',1,dataset_id,2), + (578,232.995218300,'2001-01-01','2022-12-31',1,dataset_id,2), + (512,19.131507470,'2001-01-01','2022-12-31',1,dataset_id,2), + (616,89.710020520,'2001-01-01','2022-12-31',1,dataset_id,2), + (634,5.354735487,'2001-01-01','2022-12-31',1,dataset_id,2), + (642,80.969559140,'2001-01-01','2022-12-31',1,dataset_id,2), + (682,0.987286639,'2001-01-01','2022-12-31',1,dataset_id,2), + (688,92.681014770,'2001-01-01','2022-12-31',1,dataset_id,2), + (703,96.245515950,'2001-01-01','2022-12-31',1,dataset_id,2), + (705,170.515154500,'2001-01-01','2022-12-31',1,dataset_id,2), + (724,105.472929000,'2001-01-01','2022-12-31',1,dataset_id,2), + (752,126.166299500,'2001-01-01','2022-12-31',1,dataset_id,2), + (756,187.203338900,'2001-01-01','2022-12-31',1,dataset_id,2), + (760,49.168554670,'2001-01-01','2022-12-31',1,dataset_id,2), + (792,115.250413200,'2001-01-01','2022-12-31',1,dataset_id,2), + (804,79.480729000,'2001-01-01','2022-12-31',1,dataset_id,2), + (784,6.230949936,'2001-01-01','2022-12-31',1,dataset_id,2), + (826,160.255641700,'2001-01-01','2022-12-31',1,dataset_id,2), + (887,10.204704580,'2001-01-01','2022-12-31',1,dataset_id,2), + (84,354.262393300,'2001-01-01','2022-12-31',1,dataset_id,2), + (124,98.469298820,'2001-01-01','2022-12-31',1,dataset_id,2), + (170,358.772258000,'2001-01-01','2022-12-31',1,dataset_id,2), + (188,478.447309400,'2001-01-01','2022-12-31',1,dataset_id,2), + (192,309.872691300,'2001-01-01','2022-12-31',1,dataset_id,2), + (214,165.710018000,'2001-01-01','2022-12-31',1,dataset_id,2), + (222,320.297607100,'2001-01-01','2022-12-31',1,dataset_id,2), + (304,110.384707400,'2001-01-01','2022-12-31',1,dataset_id,2), + (320,380.317349400,'2001-01-01','2022-12-31',1,dataset_id,2), + (332,140.108073100,'2001-01-01','2022-12-31',1,dataset_id,2), + (340,328.046700900,'2001-01-01','2022-12-31',1,dataset_id,2), + (388,312.809950300,'2001-01-01','2022-12-31',1,dataset_id,2), + (484,161.951621700,'2001-01-01','2022-12-31',1,dataset_id,2), + (558,418.883561500,'2001-01-01','2022-12-31',1,dataset_id,2), + (591,460.963762000,'2001-01-01','2022-12-31',1,dataset_id,2), + (630,233.404301900,'2001-01-01','2022-12-31',1,dataset_id,2), + (44,222.030064300,'2001-01-01','2022-12-31',1,dataset_id,2), + (840,122.714452400,'2001-01-01','2022-12-31',1,dataset_id,2), + (10,45.884099390,'2001-01-01','2022-12-31',1,dataset_id,2), + (36,113.372721700,'2001-01-01','2022-12-31',1,dataset_id,2), + (96,488.226093000,'2001-01-01','2022-12-31',1,dataset_id,2), + (242,489.312522500,'2001-01-01','2022-12-31',1,dataset_id,2), + (360,443.826257200,'2001-01-01','2022-12-31',1,dataset_id,2), + (458,527.498567800,'2001-01-01','2022-12-31',1,dataset_id,2), + (540,321.452456400,'2001-01-01','2022-12-31',1,dataset_id,2), + (554,184.756620200,'2001-01-01','2022-12-31',1,dataset_id,2), + (598,391.845812000,'2001-01-01','2022-12-31',1,dataset_id,2), + (608,560.211256000,'2001-01-01','2022-12-31',1,dataset_id,2), + (90,466.903408700,'2001-01-01','2022-12-31',1,dataset_id,2), + (626,314.662770900,'2001-01-01','2022-12-31',1,dataset_id,2), + (548,412.864135400,'2001-01-01','2022-12-31',1,dataset_id,2), + (32,107.716884600,'2001-01-01','2022-12-31',1,dataset_id,2), + (68,197.970031900,'2001-01-01','2022-12-31',1,dataset_id,2), + (76,313.082532700,'2001-01-01','2022-12-31',1,dataset_id,2), + (152,130.213739200,'2001-01-01','2022-12-31',1,dataset_id,2), + (218,264.174997300,'2001-01-01','2022-12-31',1,dataset_id,2), + (238,88.889940630,'2001-01-01','2022-12-31',1,dataset_id,2), + (328,379.613236600,'2001-01-01','2022-12-31',1,dataset_id,2), + (740,363.228177300,'2001-01-01','2022-12-31',1,dataset_id,2), + (600,168.330356600,'2001-01-01','2022-12-31',1,dataset_id,2), + (604,193.684861600,'2001-01-01','2022-12-31',1,dataset_id,2), + (780,305.874671600,'2001-01-01','2022-12-31',1,dataset_id,2), + (858,231.988180300,'2001-01-01','2022-12-31',1,dataset_id,2), + (862,302.463764900,'2001-01-01','2022-12-31',1,dataset_id,2), + (12,9.841454637,'1980-01-01','2000-12-31',1,dataset_id,2), + (24,235.160274900,'1980-01-01','2000-12-31',1,dataset_id,2), + (204,232.640699300,'1980-01-01','2000-12-31',1,dataset_id,2), + (72,61.188864510,'1980-01-01','2000-12-31',1,dataset_id,2), + (854,179.560835200,'1980-01-01','2000-12-31',1,dataset_id,2), + (108,195.375333600,'1980-01-01','2000-12-31',1,dataset_id,2), + (120,386.147498500,'1980-01-01','2000-12-31',1,dataset_id,2), + (140,283.482413800,'1980-01-01','2000-12-31',1,dataset_id,2), + (148,98.724379090,'1980-01-01','2000-12-31',1,dataset_id,2), + (818,2.069723489,'1980-01-01','2000-12-31',1,dataset_id,2), + (566,314.583290900,'1980-01-01','2000-12-31',1,dataset_id,2), + (178,351.250797000,'1980-01-01','2000-12-31',1,dataset_id,2), + (180,277.053140800,'1980-01-01','2000-12-31',1,dataset_id,2), + (384,301.671311800,'1980-01-01','2000-12-31',1,dataset_id,2), + (262,66.312289950,'1980-01-01','2000-12-31',1,dataset_id,2), + (226,496.691165600,'1980-01-01','2000-12-31',1,dataset_id,2), + (232,142.877478300,'1980-01-01','2000-12-31',1,dataset_id,2), + (231,223.988992100,'1980-01-01','2000-12-31',1,dataset_id,2), + (260,152.642562800,'1980-01-01','2000-12-31',1,dataset_id,2), + (266,437.783548700,'1980-01-01','2000-12-31',1,dataset_id,2), + (288,266.854997500,'1980-01-01','2000-12-31',1,dataset_id,2), + (324,578.806333900,'1980-01-01','2000-12-31',1,dataset_id,2), + (624,501.737258400,'1980-01-01','2000-12-31',1,dataset_id,2), + (404,123.661150000,'1980-01-01','2000-12-31',1,dataset_id,2), + (426,123.714567300,'1980-01-01','2000-12-31',1,dataset_id,2), + (430,578.056313800,'1980-01-01','2000-12-31',1,dataset_id,2), + (434,6.806627529,'1980-01-01','2000-12-31',1,dataset_id,2), + (450,461.705153400,'1980-01-01','2000-12-31',1,dataset_id,2), + (454,356.205024700,'1980-01-01','2000-12-31',1,dataset_id,2), + (466,76.655502770,'1980-01-01','2000-12-31',1,dataset_id,2), + (478,13.882190690,'1980-01-01','2000-12-31',1,dataset_id,2), + (504,61.011605630,'1980-01-01','2000-12-31',1,dataset_id,2), + (508,316.337543500,'1980-01-01','2000-12-31',1,dataset_id,2), + (516,40.167487620,'1980-01-01','2000-12-31',1,dataset_id,2), + (562,26.928938680,'1980-01-01','2000-12-31',1,dataset_id,2), + (646,173.297926100,'1980-01-01','2000-12-31',1,dataset_id,2), + (686,214.410626500,'1980-01-01','2000-12-31',1,dataset_id,2), + (694,765.846533400,'1980-01-01','2000-12-31',1,dataset_id,2), + (706,87.931866060,'1980-01-01','2000-12-31',1,dataset_id,2), + (729,61.582523780,'1980-01-01','2000-12-31',1,dataset_id,2), + (834,211.047427800,'1980-01-01','2000-12-31',1,dataset_id,2), + (710,70.092932530,'1980-01-01','2000-12-31',1,dataset_id,2), + (728,183.326769800,'1980-01-01','2000-12-31',1,dataset_id,2), + (748,145.144885100,'1980-01-01','2000-12-31',1,dataset_id,2), + (270,308.859757900,'1980-01-01','2000-12-31',1,dataset_id,2), + (768,242.387264000,'1980-01-01','2000-12-31',1,dataset_id,2), + (788,40.351096900,'1980-01-01','2000-12-31',1,dataset_id,2), + (800,216.684748100,'1980-01-01','2000-12-31',1,dataset_id,2), + (732,3.288152066,'1980-01-01','2000-12-31',1,dataset_id,2), + (894,266.906008300,'1980-01-01','2000-12-31',1,dataset_id,2), + (716,188.821158600,'1980-01-01','2000-12-31',1,dataset_id,2), + (620,244.986545700,'1980-01-01','2000-12-31',1,dataset_id,2), + (4,33.310575100,'1980-01-01','2000-12-31',1,dataset_id,2), + (50,399.938368000,'1980-01-01','2000-12-31',1,dataset_id,2), + (64,274.710418100,'1980-01-01','2000-12-31',1,dataset_id,2), + (104,252.813750700,'1980-01-01','2000-12-31',1,dataset_id,2), + (116,434.462177000,'1980-01-01','2000-12-31',1,dataset_id,2), + (156,97.052732650,'1980-01-01','2000-12-31',1,dataset_id,2), + (356,297.964183900,'1980-01-01','2000-12-31',1,dataset_id,2), + (392,276.629288800,'1980-01-01','2000-12-31',1,dataset_id,2), + (398,30.764236190,'1980-01-01','2000-12-31',1,dataset_id,2), + (417,32.148870420,'1980-01-01','2000-12-31',1,dataset_id,2), + (418,325.657139900,'1980-01-01','2000-12-31',1,dataset_id,2), + (496,22.041637850,'1980-01-01','2000-12-31',1,dataset_id,2), + (524,249.978611100,'1980-01-01','2000-12-31',1,dataset_id,2), + (408,235.551569400,'1980-01-01','2000-12-31',1,dataset_id,2), + (586,32.016373200,'1980-01-01','2000-12-31',1,dataset_id,2), + (643,91.231014510,'1980-01-01','2000-12-31',1,dataset_id,2), + (410,338.227591700,'1980-01-01','2000-12-31',1,dataset_id,2), + (144,274.663058400,'1980-01-01','2000-12-31',1,dataset_id,2), + (158,414.974433800,'1980-01-01','2000-12-31',1,dataset_id,2), + (762,49.793497360,'1980-01-01','2000-12-31',1,dataset_id,2), + (764,316.350036100,'1980-01-01','2000-12-31',1,dataset_id,2), + (795,15.318362800,'1980-01-01','2000-12-31',1,dataset_id,2), + (860,21.514519660,'1980-01-01','2000-12-31',1,dataset_id,2), + (704,370.953435100,'1980-01-01','2000-12-31',1,dataset_id,2), + (8,169.381081700,'1980-01-01','2000-12-31',1,dataset_id,2), + (51,28.080063860,'1980-01-01','2000-12-31',1,dataset_id,2), + (40,123.712600500,'1980-01-01','2000-12-31',1,dataset_id,2), + (31,55.111355510,'1980-01-01','2000-12-31',1,dataset_id,2), + (112,89.532946730,'1980-01-01','2000-12-31',1,dataset_id,2), + (56,124.329265300,'1980-01-01','2000-12-31',1,dataset_id,2), + (70,149.663841000,'1980-01-01','2000-12-31',1,dataset_id,2), + (100,71.643860440,'1980-01-01','2000-12-31',1,dataset_id,2), + (191,152.374507000,'1980-01-01','2000-12-31',1,dataset_id,2), + (196,107.569250100,'1980-01-01','2000-12-31',1,dataset_id,2), + (203,83.819464920,'1980-01-01','2000-12-31',1,dataset_id,2), + (208,131.294630100,'1980-01-01','2000-12-31',1,dataset_id,2), + (233,105.340360900,'1980-01-01','2000-12-31',1,dataset_id,2), + (246,114.868229600,'1980-01-01','2000-12-31',1,dataset_id,2), + (250,135.818154500,'1980-01-01','2000-12-31',1,dataset_id,2), + (275,59.118900130,'1980-01-01','2000-12-31',1,dataset_id,2), + (268,112.601450800,'1980-01-01','2000-12-31',1,dataset_id,2), + (276,109.223858900,'1980-01-01','2000-12-31',1,dataset_id,2), + (300,131.025620200,'1980-01-01','2000-12-31',1,dataset_id,2), + (348,79.295203940,'1980-01-01','2000-12-31',1,dataset_id,2), + (352,253.252626600,'1980-01-01','2000-12-31',1,dataset_id,2), + (364,26.916191400,'1980-01-01','2000-12-31',1,dataset_id,2), + (368,17.272692480,'1980-01-01','2000-12-31',1,dataset_id,2), + (372,183.118425300,'1980-01-01','2000-12-31',1,dataset_id,2), + (376,62.726963160,'1980-01-01','2000-12-31',1,dataset_id,2), + (380,136.743081600,'1980-01-01','2000-12-31',1,dataset_id,2), + (400,17.001860780,'1980-01-01','2000-12-31',1,dataset_id,2), + (414,7.863948280,'1980-01-01','2000-12-31',1,dataset_id,2), + (428,102.672675300,'1980-01-01','2000-12-31',1,dataset_id,2), + (422,106.529259500,'1980-01-01','2000-12-31',1,dataset_id,2), + (440,98.797090510,'1980-01-01','2000-12-31',1,dataset_id,2), + (442,139.319118200,'1980-01-01','2000-12-31',1,dataset_id,2), + (807,96.793697260,'1980-01-01','2000-12-31',1,dataset_id,2), + (498,66.127531380,'1980-01-01','2000-12-31',1,dataset_id,2), + (499,221.908343200,'1980-01-01','2000-12-31',1,dataset_id,2), + (528,126.670282000,'1980-01-01','2000-12-31',1,dataset_id,2), + (578,244.481607900,'1980-01-01','2000-12-31',1,dataset_id,2), + (512,3.217740208,'1980-01-01','2000-12-31',1,dataset_id,2), + (616,77.655412320,'1980-01-01','2000-12-31',1,dataset_id,2), + (634,17.907485100,'1980-01-01','2000-12-31',1,dataset_id,2), + (642,65.146841220,'1980-01-01','2000-12-31',1,dataset_id,2), + (682,1.557712715,'1980-01-01','2000-12-31',1,dataset_id,2), + (688,82.170837600,'1980-01-01','2000-12-31',1,dataset_id,2), + (703,89.755204100,'1980-01-01','2000-12-31',1,dataset_id,2), + (705,161.044937100,'1980-01-01','2000-12-31',1,dataset_id,2), + (724,116.003149000,'1980-01-01','2000-12-31',1,dataset_id,2), + (752,139.549100400,'1980-01-01','2000-12-31',1,dataset_id,2), + (756,188.295069700,'1980-01-01','2000-12-31',1,dataset_id,2), + (760,34.099088950,'1980-01-01','2000-12-31',1,dataset_id,2), + (792,96.147870570,'1980-01-01','2000-12-31',1,dataset_id,2), + (804,74.392972060,'1980-01-01','2000-12-31',1,dataset_id,2), + (784,12.303435870,'1980-01-01','2000-12-31',1,dataset_id,2), + (826,150.267127600,'1980-01-01','2000-12-31',1,dataset_id,2), + (887,5.952892852,'1980-01-01','2000-12-31',1,dataset_id,2), + (84,327.173749000,'1980-01-01','2000-12-31',1,dataset_id,2), + (124,96.232019450,'1980-01-01','2000-12-31',1,dataset_id,2), + (170,356.910267500,'1980-01-01','2000-12-31',1,dataset_id,2), + (188,299.452903600,'1980-01-01','2000-12-31',1,dataset_id,2), + (192,165.284067400,'1980-01-01','2000-12-31',1,dataset_id,2), + (214,149.342121600,'1980-01-01','2000-12-31',1,dataset_id,2), + (222,239.708248500,'1980-01-01','2000-12-31',1,dataset_id,2), + (304,104.849356000,'1980-01-01','2000-12-31',1,dataset_id,2), + (320,327.683927400,'1980-01-01','2000-12-31',1,dataset_id,2), + (332,101.075339700,'1980-01-01','2000-12-31',1,dataset_id,2), + (340,211.921145300,'1980-01-01','2000-12-31',1,dataset_id,2), + (388,189.863786700,'1980-01-01','2000-12-31',1,dataset_id,2), + (484,169.842354300,'1980-01-01','2000-12-31',1,dataset_id,2), + (558,226.333981700,'1980-01-01','2000-12-31',1,dataset_id,2), + (591,375.258216900,'1980-01-01','2000-12-31',1,dataset_id,2), + (630,264.987458100,'1980-01-01','2000-12-31',1,dataset_id,2), + (44,169.445155500,'1980-01-01','2000-12-31',1,dataset_id,2), + (840,126.557889400,'1980-01-01','2000-12-31',1,dataset_id,2), + (10,44.864571670,'1980-01-01','2000-12-31',1,dataset_id,2), + (36,111.827690600,'1980-01-01','2000-12-31',1,dataset_id,2), + (96,469.581287800,'1980-01-01','2000-12-31',1,dataset_id,2), + (242,377.140046000,'1980-01-01','2000-12-31',1,dataset_id,2), + (360,394.386975600,'1980-01-01','2000-12-31',1,dataset_id,2), + (458,471.869835100,'1980-01-01','2000-12-31',1,dataset_id,2), + (540,293.614213600,'1980-01-01','2000-12-31',1,dataset_id,2), + (554,203.097703500,'1980-01-01','2000-12-31',1,dataset_id,2), + (598,428.032522500,'1980-01-01','2000-12-31',1,dataset_id,2), + (608,413.810929800,'1980-01-01','2000-12-31',1,dataset_id,2), + (90,407.017035900,'1980-01-01','2000-12-31',1,dataset_id,2), + (626,268.946277400,'1980-01-01','2000-12-31',1,dataset_id,2), + (548,429.614077200,'1980-01-01','2000-12-31',1,dataset_id,2), + (32,116.435552600,'1980-01-01','2000-12-31',1,dataset_id,2), + (68,207.075919700,'1980-01-01','2000-12-31',1,dataset_id,2), + (76,354.988364700,'1980-01-01','2000-12-31',1,dataset_id,2), + (152,153.804559400,'1980-01-01','2000-12-31',1,dataset_id,2), + (218,298.147338700,'1980-01-01','2000-12-31',1,dataset_id,2), + (238,85.600588450,'1980-01-01','2000-12-31',1,dataset_id,2), + (328,401.308861100,'1980-01-01','2000-12-31',1,dataset_id,2), + (740,398.410077800,'1980-01-01','2000-12-31',1,dataset_id,2), + (600,164.740521200,'1980-01-01','2000-12-31',1,dataset_id,2), + (604,201.889441000,'1980-01-01','2000-12-31',1,dataset_id,2), + (780,228.499775900,'1980-01-01','2000-12-31',1,dataset_id,2), + (858,202.116161700,'1980-01-01','2000-12-31',1,dataset_id,2), + (862,396.502774400,'1980-01-01','2000-12-31',1,dataset_id,2), + (12,9.854958618,'1980-01-01','2022-12-31',1,dataset_id,2), + (24,236.453915700,'1980-01-01','2022-12-31',1,dataset_id,2), + (204,254.997059700,'1980-01-01','2022-12-31',1,dataset_id,2), + (72,70.634040380,'1980-01-01','2022-12-31',1,dataset_id,2), + (854,202.593160200,'1980-01-01','2022-12-31',1,dataset_id,2), + (108,237.623375800,'1980-01-01','2022-12-31',1,dataset_id,2), + (120,364.044632200,'1980-01-01','2022-12-31',1,dataset_id,2), + (140,281.128381900,'1980-01-01','2022-12-31',1,dataset_id,2), + (148,101.354905100,'1980-01-01','2022-12-31',1,dataset_id,2), + (818,2.385566722,'1980-01-01','2022-12-31',1,dataset_id,2), + (566,313.725471800,'1980-01-01','2022-12-31',1,dataset_id,2), + (178,325.974376900,'1980-01-01','2022-12-31',1,dataset_id,2), + (180,265.118354600,'1980-01-01','2022-12-31',1,dataset_id,2), + (384,285.489500600,'1980-01-01','2022-12-31',1,dataset_id,2), + (262,54.165303020,'1980-01-01','2022-12-31',1,dataset_id,2), + (226,478.014500300,'1980-01-01','2022-12-31',1,dataset_id,2), + (232,135.235951000,'1980-01-01','2022-12-31',1,dataset_id,2), + (231,223.951329100,'1980-01-01','2022-12-31',1,dataset_id,2), + (260,148.219135000,'1980-01-01','2022-12-31',1,dataset_id,2), + (266,453.952149900,'1980-01-01','2022-12-31',1,dataset_id,2), + (288,255.216488000,'1980-01-01','2022-12-31',1,dataset_id,2), + (324,644.934510400,'1980-01-01','2022-12-31',1,dataset_id,2), + (624,573.689332800,'1980-01-01','2022-12-31',1,dataset_id,2), + (404,126.792295600,'1980-01-01','2022-12-31',1,dataset_id,2), + (426,121.524316000,'1980-01-01','2022-12-31',1,dataset_id,2), + (430,576.892793400,'1980-01-01','2022-12-31',1,dataset_id,2), + (434,6.841628826,'1980-01-01','2022-12-31',1,dataset_id,2), + (450,469.037946600,'1980-01-01','2022-12-31',1,dataset_id,2), + (454,370.980983400,'1980-01-01','2022-12-31',1,dataset_id,2), + (466,89.287927290,'1980-01-01','2022-12-31',1,dataset_id,2), + (478,23.232579620,'1980-01-01','2022-12-31',1,dataset_id,2), + (504,67.020046700,'1980-01-01','2022-12-31',1,dataset_id,2), + (508,328.119749200,'1980-01-01','2022-12-31',1,dataset_id,2), + (516,53.001189280,'1980-01-01','2022-12-31',1,dataset_id,2), + (562,31.147488870,'1980-01-01','2022-12-31',1,dataset_id,2), + (646,210.326498600,'1980-01-01','2022-12-31',1,dataset_id,2), + (686,250.360814400,'1980-01-01','2022-12-31',1,dataset_id,2), + (694,886.946995800,'1980-01-01','2022-12-31',1,dataset_id,2), + (706,98.179694300,'1980-01-01','2022-12-31',1,dataset_id,2), + (729,63.997641780,'1980-01-01','2022-12-31',1,dataset_id,2), + (834,259.532316900,'1980-01-01','2022-12-31',1,dataset_id,2), + (710,65.111559530,'1980-01-01','2022-12-31',1,dataset_id,2), + (728,181.756853000,'1980-01-01','2022-12-31',1,dataset_id,2), + (748,117.298698400,'1980-01-01','2022-12-31',1,dataset_id,2), + (270,334.691608300,'1980-01-01','2022-12-31',1,dataset_id,2), + (768,259.951024500,'1980-01-01','2022-12-31',1,dataset_id,2), + (788,42.458152030,'1980-01-01','2022-12-31',1,dataset_id,2), + (800,206.331901100,'1980-01-01','2022-12-31',1,dataset_id,2), + (732,3.959850155,'1980-01-01','2022-12-31',1,dataset_id,2), + (894,271.477049800,'1980-01-01','2022-12-31',1,dataset_id,2), + (716,187.672915700,'1980-01-01','2022-12-31',1,dataset_id,2), + (620,211.859477300,'1980-01-01','2022-12-31',1,dataset_id,2), + (4,44.788544770,'1980-01-01','2022-12-31',1,dataset_id,2), + (50,641.993257800,'1980-01-01','2022-12-31',1,dataset_id,2), + (64,303.275371700,'1980-01-01','2022-12-31',1,dataset_id,2), + (104,268.255675600,'1980-01-01','2022-12-31',1,dataset_id,2), + (116,459.843307200,'1980-01-01','2022-12-31',1,dataset_id,2), + (156,109.005762800,'1980-01-01','2022-12-31',1,dataset_id,2), + (356,328.154091900,'1980-01-01','2022-12-31',1,dataset_id,2), + (392,304.842697400,'1980-01-01','2022-12-31',1,dataset_id,2), + (398,32.896076240,'1980-01-01','2022-12-31',1,dataset_id,2), + (417,38.529893900,'1980-01-01','2022-12-31',1,dataset_id,2), + (418,368.794338600,'1980-01-01','2022-12-31',1,dataset_id,2), + (496,19.468703970,'1980-01-01','2022-12-31',1,dataset_id,2), + (524,326.524824700,'1980-01-01','2022-12-31',1,dataset_id,2), + (408,268.958540800,'1980-01-01','2022-12-31',1,dataset_id,2), + (586,45.106141340,'1980-01-01','2022-12-31',1,dataset_id,2), + (643,93.366951930,'1980-01-01','2022-12-31',1,dataset_id,2), + (410,373.307870100,'1980-01-01','2022-12-31',1,dataset_id,2), + (144,376.844988300,'1980-01-01','2022-12-31',1,dataset_id,2), + (158,485.760774100,'1980-01-01','2022-12-31',1,dataset_id,2), + (762,50.181866120,'1980-01-01','2022-12-31',1,dataset_id,2), + (764,341.070933100,'1980-01-01','2022-12-31',1,dataset_id,2), + (795,16.383146580,'1980-01-01','2022-12-31',1,dataset_id,2), + (860,22.402294660,'1980-01-01','2022-12-31',1,dataset_id,2), + (704,409.428346900,'1980-01-01','2022-12-31',1,dataset_id,2), + (8,189.315009600,'1980-01-01','2022-12-31',1,dataset_id,2), + (51,31.412900460,'1980-01-01','2022-12-31',1,dataset_id,2), + (40,128.994919000,'1980-01-01','2022-12-31',1,dataset_id,2), + (31,51.733812220,'1980-01-01','2022-12-31',1,dataset_id,2), + (112,90.520820820,'1980-01-01','2022-12-31',1,dataset_id,2), + (56,118.752144100,'1980-01-01','2022-12-31',1,dataset_id,2), + (70,153.641700300,'1980-01-01','2022-12-31',1,dataset_id,2), + (100,82.848564480,'1980-01-01','2022-12-31',1,dataset_id,2), + (191,157.512077600,'1980-01-01','2022-12-31',1,dataset_id,2), + (196,123.778202400,'1980-01-01','2022-12-31',1,dataset_id,2), + (203,82.841108540,'1980-01-01','2022-12-31',1,dataset_id,2), + (208,132.215006900,'1980-01-01','2022-12-31',1,dataset_id,2), + (233,102.368619200,'1980-01-01','2022-12-31',1,dataset_id,2), + (246,112.763608700,'1980-01-01','2022-12-31',1,dataset_id,2), + (250,130.563782000,'1980-01-01','2022-12-31',1,dataset_id,2), + (275,64.748795570,'1980-01-01','2022-12-31',1,dataset_id,2), + (268,115.590035200,'1980-01-01','2022-12-31',1,dataset_id,2), + (276,107.396024200,'1980-01-01','2022-12-31',1,dataset_id,2), + (300,139.890589600,'1980-01-01','2022-12-31',1,dataset_id,2), + (348,78.237890040,'1980-01-01','2022-12-31',1,dataset_id,2), + (352,253.987001300,'1980-01-01','2022-12-31',1,dataset_id,2), + (364,29.851541980,'1980-01-01','2022-12-31',1,dataset_id,2), + (368,19.101292830,'1980-01-01','2022-12-31',1,dataset_id,2), + (372,183.046737600,'1980-01-01','2022-12-31',1,dataset_id,2), + (376,64.646327580,'1980-01-01','2022-12-31',1,dataset_id,2), + (380,146.676764000,'1980-01-01','2022-12-31',1,dataset_id,2), + (400,15.833798830,'1980-01-01','2022-12-31',1,dataset_id,2), + (414,5.760270722,'1980-01-01','2022-12-31',1,dataset_id,2), + (428,97.432933760,'1980-01-01','2022-12-31',1,dataset_id,2), + (422,116.499031400,'1980-01-01','2022-12-31',1,dataset_id,2), + (440,95.978224050,'1980-01-01','2022-12-31',1,dataset_id,2), + (442,128.019560500,'1980-01-01','2022-12-31',1,dataset_id,2), + (807,103.246953400,'1980-01-01','2022-12-31',1,dataset_id,2), + (498,67.865544130,'1980-01-01','2022-12-31',1,dataset_id,2), + (499,243.029722000,'1980-01-01','2022-12-31',1,dataset_id,2), + (528,122.483567900,'1980-01-01','2022-12-31',1,dataset_id,2), + (578,238.216034500,'1980-01-01','2022-12-31',1,dataset_id,2), + (512,6.722446770,'1980-01-01','2022-12-31',1,dataset_id,2), + (616,83.658143140,'1980-01-01','2022-12-31',1,dataset_id,2), + (634,11.273294770,'1980-01-01','2022-12-31',1,dataset_id,2), + (642,74.025861000,'1980-01-01','2022-12-31',1,dataset_id,2), + (682,1.175242565,'1980-01-01','2022-12-31',1,dataset_id,2), + (688,87.490490030,'1980-01-01','2022-12-31',1,dataset_id,2), + (703,92.832702000,'1980-01-01','2022-12-31',1,dataset_id,2), + (705,166.325446000,'1980-01-01','2022-12-31',1,dataset_id,2), + (724,110.329806500,'1980-01-01','2022-12-31',1,dataset_id,2), + (752,133.570037400,'1980-01-01','2022-12-31',1,dataset_id,2), + (756,188.104982600,'1980-01-01','2022-12-31',1,dataset_id,2), + (760,41.106452720,'1980-01-01','2022-12-31',1,dataset_id,2), + (792,107.609923600,'1980-01-01','2022-12-31',1,dataset_id,2), + (804,77.177288820,'1980-01-01','2022-12-31',1,dataset_id,2), + (784,8.342652697,'1980-01-01','2022-12-31',1,dataset_id,2), + (826,155.590340700,'1980-01-01','2022-12-31',1,dataset_id,2), + (887,7.264866123,'1980-01-01','2022-12-31',1,dataset_id,2), + (84,340.466179900,'1980-01-01','2022-12-31',1,dataset_id,2), + (124,97.576029860,'1980-01-01','2022-12-31',1,dataset_id,2), + (170,370.789880200,'1980-01-01','2022-12-31',1,dataset_id,2), + (188,431.447952500,'1980-01-01','2022-12-31',1,dataset_id,2), + (192,238.849218100,'1980-01-01','2022-12-31',1,dataset_id,2), + (214,155.486906800,'1980-01-01','2022-12-31',1,dataset_id,2), + (222,294.442437100,'1980-01-01','2022-12-31',1,dataset_id,2), + (304,108.010631300,'1980-01-01','2022-12-31',1,dataset_id,2), + (320,362.053956600,'1980-01-01','2022-12-31',1,dataset_id,2), + (332,117.218490200,'1980-01-01','2022-12-31',1,dataset_id,2), + (340,282.930772300,'1980-01-01','2022-12-31',1,dataset_id,2), + (388,246.023171900,'1980-01-01','2022-12-31',1,dataset_id,2), + (484,166.431422800,'1980-01-01','2022-12-31',1,dataset_id,2), + (558,367.450086900,'1980-01-01','2022-12-31',1,dataset_id,2), + (591,426.143766100,'1980-01-01','2022-12-31',1,dataset_id,2), + (630,244.943733600,'1980-01-01','2022-12-31',1,dataset_id,2), + (44,200.590089900,'1980-01-01','2022-12-31',1,dataset_id,2), + (840,124.866494800,'1980-01-01','2022-12-31',1,dataset_id,2), + (10,45.488961520,'1980-01-01','2022-12-31',1,dataset_id,2), + (36,112.311028700,'1980-01-01','2022-12-31',1,dataset_id,2), + (96,478.664487000,'1980-01-01','2022-12-31',1,dataset_id,2), + (242,447.646868600,'1980-01-01','2022-12-31',1,dataset_id,2), + (360,425.758340000,'1980-01-01','2022-12-31',1,dataset_id,2), + (458,504.587917700,'1980-01-01','2022-12-31',1,dataset_id,2), + (540,308.374255900,'1980-01-01','2022-12-31',1,dataset_id,2), + (554,195.222115500,'1980-01-01','2022-12-31',1,dataset_id,2), + (598,420.778030700,'1980-01-01','2022-12-31',1,dataset_id,2), + (608,501.311809700,'1980-01-01','2022-12-31',1,dataset_id,2), + (90,442.108039800,'1980-01-01','2022-12-31',1,dataset_id,2), + (626,298.507104100,'1980-01-01','2022-12-31',1,dataset_id,2), + (548,420.631198900,'1980-01-01','2022-12-31',1,dataset_id,2), + (32,113.158322800,'1980-01-01','2022-12-31',1,dataset_id,2), + (68,204.252546900,'1980-01-01','2022-12-31',1,dataset_id,2), + (76,336.315666700,'1980-01-01','2022-12-31',1,dataset_id,2), + (152,144.505708400,'1980-01-01','2022-12-31',1,dataset_id,2), + (218,289.830638100,'1980-01-01','2022-12-31',1,dataset_id,2), + (238,87.445887990,'1980-01-01','2022-12-31',1,dataset_id,2), + (328,403.768586400,'1980-01-01','2022-12-31',1,dataset_id,2), + (740,384.233343300,'1980-01-01','2022-12-31',1,dataset_id,2), + (600,168.373502400,'1980-01-01','2022-12-31',1,dataset_id,2), + (604,200.738346400,'1980-01-01','2022-12-31',1,dataset_id,2), + (780,270.650668700,'1980-01-01','2022-12-31',1,dataset_id,2), + (858,216.164009700,'1980-01-01','2022-12-31',1,dataset_id,2), + (862,369.140352900,'1980-01-01','2022-12-31',1,dataset_id,2), + (12,7.705984518,'2001-01-01','2022-12-31',2,dataset_id,2), + (24,221.458536500,'2001-01-01','2022-12-31',2,dataset_id,2), + (204,239.325179400,'2001-01-01','2022-12-31',2,dataset_id,2), + (72,110.731681500,'2001-01-01','2022-12-31',2,dataset_id,2), + (854,169.312547700,'2001-01-01','2022-12-31',2,dataset_id,2), + (108,294.926355200,'2001-01-01','2022-12-31',2,dataset_id,2), + (120,275.346822300,'2001-01-01','2022-12-31',2,dataset_id,2), + (140,182.246418700,'2001-01-01','2022-12-31',2,dataset_id,2), + (148,77.003963110,'2001-01-01','2022-12-31',2,dataset_id,2), + (818,0.788877889,'2001-01-01','2022-12-31',2,dataset_id,2), + (566,248.122232700,'2001-01-01','2022-12-31',2,dataset_id,2), + (178,177.512709700,'2001-01-01','2022-12-31',2,dataset_id,2), + (180,198.520197600,'2001-01-01','2022-12-31',2,dataset_id,2), + (384,218.244148600,'2001-01-01','2022-12-31',2,dataset_id,2), + (262,18.891668180,'2001-01-01','2022-12-31',2,dataset_id,2), + (226,412.940165500,'2001-01-01','2022-12-31',2,dataset_id,2), + (232,77.080826350,'2001-01-01','2022-12-31',2,dataset_id,2), + (231,212.859305000,'2001-01-01','2022-12-31',2,dataset_id,2), + (260,206.144585700,'2001-01-01','2022-12-31',2,dataset_id,2), + (266,290.272831600,'2001-01-01','2022-12-31',2,dataset_id,2), + (288,215.998722800,'2001-01-01','2022-12-31',2,dataset_id,2), + (324,419.933057500,'2001-01-01','2022-12-31',2,dataset_id,2), + (624,481.671809700,'2001-01-01','2022-12-31',2,dataset_id,2), + (404,140.293338500,'2001-01-01','2022-12-31',2,dataset_id,2), + (426,173.858197600,'2001-01-01','2022-12-31',2,dataset_id,2), + (430,452.888433500,'2001-01-01','2022-12-31',2,dataset_id,2), + (434,1.993947246,'2001-01-01','2022-12-31',2,dataset_id,2), + (450,461.071023700,'2001-01-01','2022-12-31',2,dataset_id,2), + (454,422.145318700,'2001-01-01','2022-12-31',2,dataset_id,2), + (466,62.433893330,'2001-01-01','2022-12-31',2,dataset_id,2), + (478,7.124834434,'2001-01-01','2022-12-31',2,dataset_id,2), + (504,51.948715800,'2001-01-01','2022-12-31',2,dataset_id,2), + (508,276.210175700,'2001-01-01','2022-12-31',2,dataset_id,2), + (516,85.934569030,'2001-01-01','2022-12-31',2,dataset_id,2), + (562,16.661181490,'2001-01-01','2022-12-31',2,dataset_id,2), + (646,231.620126600,'2001-01-01','2022-12-31',2,dataset_id,2), + (686,170.494981400,'2001-01-01','2022-12-31',2,dataset_id,2), + (694,644.015632500,'2001-01-01','2022-12-31',2,dataset_id,2), + (706,53.947976420,'2001-01-01','2022-12-31',2,dataset_id,2), + (729,34.293703230,'2001-01-01','2022-12-31',2,dataset_id,2), + (834,225.249229300,'2001-01-01','2022-12-31',2,dataset_id,2), + (710,73.829332420,'2001-01-01','2022-12-31',2,dataset_id,2), + (728,141.343327300,'2001-01-01','2022-12-31',2,dataset_id,2), + (748,145.340279000,'2001-01-01','2022-12-31',2,dataset_id,2), + (270,273.210755800,'2001-01-01','2022-12-31',2,dataset_id,2), + (768,257.922761500,'2001-01-01','2022-12-31',2,dataset_id,2), + (788,32.459066740,'2001-01-01','2022-12-31',2,dataset_id,2), + (800,213.666844700,'2001-01-01','2022-12-31',2,dataset_id,2), + (732,1.694947310,'2001-01-01','2022-12-31',2,dataset_id,2), + (894,289.957266600,'2001-01-01','2022-12-31',2,dataset_id,2), + (716,246.926828000,'2001-01-01','2022-12-31',2,dataset_id,2), + (620,205.415203800,'2001-01-01','2022-12-31',2,dataset_id,2), + (4,74.531069420,'2001-01-01','2022-12-31',2,dataset_id,2), + (50,591.761588000,'2001-01-01','2022-12-31',2,dataset_id,2), + (64,916.224616400,'2001-01-01','2022-12-31',2,dataset_id,2), + (104,581.380377900,'2001-01-01','2022-12-31',2,dataset_id,2), + (116,376.913971700,'2001-01-01','2022-12-31',2,dataset_id,2), + (156,164.618528600,'2001-01-01','2022-12-31',2,dataset_id,2), + (356,415.731926300,'2001-01-01','2022-12-31',2,dataset_id,2), + (392,355.598514100,'2001-01-01','2022-12-31',2,dataset_id,2), + (398,45.350309370,'2001-01-01','2022-12-31',2,dataset_id,2), + (417,134.362344300,'2001-01-01','2022-12-31',2,dataset_id,2), + (418,496.017213700,'2001-01-01','2022-12-31',2,dataset_id,2), + (496,27.443099200,'2001-01-01','2022-12-31',2,dataset_id,2), + (524,641.652210100,'2001-01-01','2022-12-31',2,dataset_id,2), + (408,344.474372600,'2001-01-01','2022-12-31',2,dataset_id,2), + (586,98.177763710,'2001-01-01','2022-12-31',2,dataset_id,2), + (643,88.408757510,'2001-01-01','2022-12-31',2,dataset_id,2), + (410,366.330015900,'2001-01-01','2022-12-31',2,dataset_id,2), + (144,457.318514800,'2001-01-01','2022-12-31',2,dataset_id,2), + (158,753.529877600,'2001-01-01','2022-12-31',2,dataset_id,2), + (762,130.386424300,'2001-01-01','2022-12-31',2,dataset_id,2), + (764,383.466017300,'2001-01-01','2022-12-31',2,dataset_id,2), + (795,22.670599410,'2001-01-01','2022-12-31',2,dataset_id,2), + (860,41.235914260,'2001-01-01','2022-12-31',2,dataset_id,2), + (704,468.345010300,'2001-01-01','2022-12-31',2,dataset_id,2), + (8,282.269710100,'2001-01-01','2022-12-31',2,dataset_id,2), + (51,121.350766600,'2001-01-01','2022-12-31',2,dataset_id,2), + (40,170.182781300,'2001-01-01','2022-12-31',2,dataset_id,2), + (31,88.751701400,'2001-01-01','2022-12-31',2,dataset_id,2), + (112,93.969774250,'2001-01-01','2022-12-31',2,dataset_id,2), + (56,129.793883200,'2001-01-01','2022-12-31',2,dataset_id,2), + (70,196.800964000,'2001-01-01','2022-12-31',2,dataset_id,2), + (100,113.408591900,'2001-01-01','2022-12-31',2,dataset_id,2), + (191,190.876192700,'2001-01-01','2022-12-31',2,dataset_id,2), + (196,132.072148200,'2001-01-01','2022-12-31',2,dataset_id,2), + (203,102.130330000,'2001-01-01','2022-12-31',2,dataset_id,2), + (208,127.396560900,'2001-01-01','2022-12-31',2,dataset_id,2), + (233,104.808648400,'2001-01-01','2022-12-31',2,dataset_id,2), + (246,98.740780660,'2001-01-01','2022-12-31',2,dataset_id,2), + (250,155.233905800,'2001-01-01','2022-12-31',2,dataset_id,2), + (275,61.239624260,'2001-01-01','2022-12-31',2,dataset_id,2), + (268,193.130771500,'2001-01-01','2022-12-31',2,dataset_id,2), + (276,124.324815300,'2001-01-01','2022-12-31',2,dataset_id,2), + (300,183.704849000,'2001-01-01','2022-12-31',2,dataset_id,2), + (348,91.862825770,'2001-01-01','2022-12-31',2,dataset_id,2), + (352,259.357304700,'2001-01-01','2022-12-31',2,dataset_id,2), + (364,55.726607070,'2001-01-01','2022-12-31',2,dataset_id,2), + (368,44.105969000,'2001-01-01','2022-12-31',2,dataset_id,2), + (372,179.918242500,'2001-01-01','2022-12-31',2,dataset_id,2), + (376,57.072309420,'2001-01-01','2022-12-31',2,dataset_id,2), + (380,203.109513000,'2001-01-01','2022-12-31',2,dataset_id,2), + (400,8.929461511,'2001-01-01','2022-12-31',2,dataset_id,2), + (414,24.711017110,'2001-01-01','2022-12-31',2,dataset_id,2), + (428,93.263898620,'2001-01-01','2022-12-31',2,dataset_id,2), + (422,159.097225300,'2001-01-01','2022-12-31',2,dataset_id,2), + (440,95.385133630,'2001-01-01','2022-12-31',2,dataset_id,2), + (442,142.346286200,'2001-01-01','2022-12-31',2,dataset_id,2), + (807,123.184651800,'2001-01-01','2022-12-31',2,dataset_id,2), + (498,70.879150280,'2001-01-01','2022-12-31',2,dataset_id,2), + (499,335.918513800,'2001-01-01','2022-12-31',2,dataset_id,2), + (528,121.703850200,'2001-01-01','2022-12-31',2,dataset_id,2), + (578,234.648881600,'2001-01-01','2022-12-31',2,dataset_id,2), + (512,5.570283042,'2001-01-01','2022-12-31',2,dataset_id,2), + (616,106.741151200,'2001-01-01','2022-12-31',2,dataset_id,2), + (634,8.235875978,'2001-01-01','2022-12-31',2,dataset_id,2), + (642,104.346314600,'2001-01-01','2022-12-31',2,dataset_id,2), + (682,5.001322639,'2001-01-01','2022-12-31',2,dataset_id,2), + (688,104.881799100,'2001-01-01','2022-12-31',2,dataset_id,2), + (703,115.611197800,'2001-01-01','2022-12-31',2,dataset_id,2), + (705,208.388858600,'2001-01-01','2022-12-31',2,dataset_id,2), + (724,130.721836100,'2001-01-01','2022-12-31',2,dataset_id,2), + (752,116.490826500,'2001-01-01','2022-12-31',2,dataset_id,2), + (756,253.549552700,'2001-01-01','2022-12-31',2,dataset_id,2), + (760,44.894011920,'2001-01-01','2022-12-31',2,dataset_id,2), + (792,139.272304000,'2001-01-01','2022-12-31',2,dataset_id,2), + (804,84.682091580,'2001-01-01','2022-12-31',2,dataset_id,2), + (784,2.885894535,'2001-01-01','2022-12-31',2,dataset_id,2), + (826,171.327669200,'2001-01-01','2022-12-31',2,dataset_id,2), + (887,20.726524550,'2001-01-01','2022-12-31',2,dataset_id,2), + (84,263.986556300,'2001-01-01','2022-12-31',2,dataset_id,2), + (124,103.060821100,'2001-01-01','2022-12-31',2,dataset_id,2), + (170,500.668405700,'2001-01-01','2022-12-31',2,dataset_id,2), + (188,692.704730600,'2001-01-01','2022-12-31',2,dataset_id,2), + (192,209.008309800,'2001-01-01','2022-12-31',2,dataset_id,2), + (214,206.690977500,'2001-01-01','2022-12-31',2,dataset_id,2), + (222,413.661301900,'2001-01-01','2022-12-31',2,dataset_id,2), + (304,103.214163500,'2001-01-01','2022-12-31',2,dataset_id,2), + (320,368.172216500,'2001-01-01','2022-12-31',2,dataset_id,2), + (332,192.379917000,'2001-01-01','2022-12-31',2,dataset_id,2), + (340,333.151760200,'2001-01-01','2022-12-31',2,dataset_id,2), + (388,260.955319000,'2001-01-01','2022-12-31',2,dataset_id,2), + (484,180.121614500,'2001-01-01','2022-12-31',2,dataset_id,2), + (558,353.022091400,'2001-01-01','2022-12-31',2,dataset_id,2), + (591,566.629514100,'2001-01-01','2022-12-31',2,dataset_id,2), + (630,251.226641300,'2001-01-01','2022-12-31',2,dataset_id,2), + (44,227.809095600,'2001-01-01','2022-12-31',2,dataset_id,2), + (840,129.283682600,'2001-01-01','2022-12-31',2,dataset_id,2), + (10,44.777155810,'2001-01-01','2022-12-31',2,dataset_id,2), + (36,110.999074000,'2001-01-01','2022-12-31',2,dataset_id,2), + (96,434.938740300,'2001-01-01','2022-12-31',2,dataset_id,2), + (242,535.123324900,'2001-01-01','2022-12-31',2,dataset_id,2), + (360,487.127877600,'2001-01-01','2022-12-31',2,dataset_id,2), + (458,442.317251900,'2001-01-01','2022-12-31',2,dataset_id,2), + (540,356.963627200,'2001-01-01','2022-12-31',2,dataset_id,2), + (554,248.858920600,'2001-01-01','2022-12-31',2,dataset_id,2), + (598,636.085644100,'2001-01-01','2022-12-31',2,dataset_id,2), + (608,525.688025400,'2001-01-01','2022-12-31',2,dataset_id,2), + (90,605.727445600,'2001-01-01','2022-12-31',2,dataset_id,2), + (626,358.965797900,'2001-01-01','2022-12-31',2,dataset_id,2), + (548,472.145271400,'2001-01-01','2022-12-31',2,dataset_id,2), + (32,126.214594000,'2001-01-01','2022-12-31',2,dataset_id,2), + (68,269.138755100,'2001-01-01','2022-12-31',2,dataset_id,2), + (76,337.571321900,'2001-01-01','2022-12-31',2,dataset_id,2), + (152,270.390847000,'2001-01-01','2022-12-31',2,dataset_id,2), + (218,512.335943800,'2001-01-01','2022-12-31',2,dataset_id,2), + (238,84.681657680,'2001-01-01','2022-12-31',2,dataset_id,2), + (328,407.441080800,'2001-01-01','2022-12-31',2,dataset_id,2), + (740,423.922783100,'2001-01-01','2022-12-31',2,dataset_id,2), + (600,191.473829000,'2001-01-01','2022-12-31',2,dataset_id,2), + (604,332.530201500,'2001-01-01','2022-12-31',2,dataset_id,2), + (780,256.798010400,'2001-01-01','2022-12-31',2,dataset_id,2), + (858,231.465335400,'2001-01-01','2022-12-31',2,dataset_id,2), + (862,379.882058800,'2001-01-01','2022-12-31',2,dataset_id,2), + (12,7.837505480,'1980-01-01','2000-12-31',2,dataset_id,2), + (24,206.832452600,'1980-01-01','2000-12-31',2,dataset_id,2), + (204,250.866580700,'1980-01-01','2000-12-31',2,dataset_id,2), + (72,90.836749030,'1980-01-01','2000-12-31',2,dataset_id,2), + (854,155.954557900,'1980-01-01','2000-12-31',2,dataset_id,2), + (108,320.802463100,'1980-01-01','2000-12-31',2,dataset_id,2), + (120,299.430343500,'1980-01-01','2000-12-31',2,dataset_id,2), + (140,234.105776200,'1980-01-01','2000-12-31',2,dataset_id,2), + (148,89.193126050,'1980-01-01','2000-12-31',2,dataset_id,2), + (818,1.174236100,'1980-01-01','2000-12-31',2,dataset_id,2), + (566,238.669493300,'1980-01-01','2000-12-31',2,dataset_id,2), + (178,200.676615900,'1980-01-01','2000-12-31',2,dataset_id,2), + (180,237.722664000,'1980-01-01','2000-12-31',2,dataset_id,2), + (384,214.269045200,'1980-01-01','2000-12-31',2,dataset_id,2), + (262,32.286239920,'1980-01-01','2000-12-31',2,dataset_id,2), + (226,388.651145200,'1980-01-01','2000-12-31',2,dataset_id,2), + (232,90.615445290,'1980-01-01','2000-12-31',2,dataset_id,2), + (231,225.065615800,'1980-01-01','2000-12-31',2,dataset_id,2), + (260,212.220872100,'1980-01-01','2000-12-31',2,dataset_id,2), + (266,288.644683200,'1980-01-01','2000-12-31',2,dataset_id,2), + (288,207.066004200,'1980-01-01','2000-12-31',2,dataset_id,2), + (324,411.391765600,'1980-01-01','2000-12-31',2,dataset_id,2), + (624,422.042223200,'1980-01-01','2000-12-31',2,dataset_id,2), + (404,147.595960300,'1980-01-01','2000-12-31',2,dataset_id,2), + (426,175.002210000,'1980-01-01','2000-12-31',2,dataset_id,2), + (430,387.313987400,'1980-01-01','2000-12-31',2,dataset_id,2), + (434,2.503274945,'1980-01-01','2000-12-31',2,dataset_id,2), + (450,417.032928000,'1980-01-01','2000-12-31',2,dataset_id,2), + (454,377.658779100,'1980-01-01','2000-12-31',2,dataset_id,2), + (466,65.790363840,'1980-01-01','2000-12-31',2,dataset_id,2), + (478,6.947509934,'1980-01-01','2000-12-31',2,dataset_id,2), + (504,53.441460360,'1980-01-01','2000-12-31',2,dataset_id,2), + (508,250.704064400,'1980-01-01','2000-12-31',2,dataset_id,2), + (516,54.451153580,'1980-01-01','2000-12-31',2,dataset_id,2), + (562,13.052766330,'1980-01-01','2000-12-31',2,dataset_id,2), + (646,261.746262400,'1980-01-01','2000-12-31',2,dataset_id,2), + (686,161.890651300,'1980-01-01','2000-12-31',2,dataset_id,2), + (694,564.433772500,'1980-01-01','2000-12-31',2,dataset_id,2), + (706,61.254392080,'1980-01-01','2000-12-31',2,dataset_id,2), + (729,39.044501160,'1980-01-01','2000-12-31',2,dataset_id,2), + (834,241.953562900,'1980-01-01','2000-12-31',2,dataset_id,2), + (710,78.938873110,'1980-01-01','2000-12-31',2,dataset_id,2), + (728,172.807580000,'1980-01-01','2000-12-31',2,dataset_id,2), + (748,151.046315700,'1980-01-01','2000-12-31',2,dataset_id,2), + (270,268.438797800,'1980-01-01','2000-12-31',2,dataset_id,2), + (768,261.976201400,'1980-01-01','2000-12-31',2,dataset_id,2), + (788,34.781855250,'1980-01-01','2000-12-31',2,dataset_id,2), + (800,245.402537000,'1980-01-01','2000-12-31',2,dataset_id,2), + (732,1.643092506,'1980-01-01','2000-12-31',2,dataset_id,2), + (894,266.673507100,'1980-01-01','2000-12-31',2,dataset_id,2), + (716,196.865734500,'1980-01-01','2000-12-31',2,dataset_id,2), + (620,242.945939500,'1980-01-01','2000-12-31',2,dataset_id,2), + (4,86.072168230,'1980-01-01','2000-12-31',2,dataset_id,2), + (50,575.363967400,'1980-01-01','2000-12-31',2,dataset_id,2), + (64,903.699499100,'1980-01-01','2000-12-31',2,dataset_id,2), + (104,614.368968500,'1980-01-01','2000-12-31',2,dataset_id,2), + (116,359.661013500,'1980-01-01','2000-12-31',2,dataset_id,2), + (156,179.749860400,'1980-01-01','2000-12-31',2,dataset_id,2), + (356,384.534771400,'1980-01-01','2000-12-31',2,dataset_id,2), + (392,343.533897100,'1980-01-01','2000-12-31',2,dataset_id,2), + (398,48.716981250,'1980-01-01','2000-12-31',2,dataset_id,2), + (417,138.715070300,'1980-01-01','2000-12-31',2,dataset_id,2), + (418,490.753102100,'1980-01-01','2000-12-31',2,dataset_id,2), + (496,38.104140630,'1980-01-01','2000-12-31',2,dataset_id,2), + (524,609.205583100,'1980-01-01','2000-12-31',2,dataset_id,2), + (408,339.049143400,'1980-01-01','2000-12-31',2,dataset_id,2), + (586,100.182714500,'1980-01-01','2000-12-31',2,dataset_id,2), + (643,89.412105210,'1980-01-01','2000-12-31',2,dataset_id,2), + (410,372.097605700,'1980-01-01','2000-12-31',2,dataset_id,2), + (144,358.247792000,'1980-01-01','2000-12-31',2,dataset_id,2), + (158,644.456688200,'1980-01-01','2000-12-31',2,dataset_id,2), + (762,137.527022200,'1980-01-01','2000-12-31',2,dataset_id,2), + (764,369.882063600,'1980-01-01','2000-12-31',2,dataset_id,2), + (795,27.048909850,'1980-01-01','2000-12-31',2,dataset_id,2), + (860,46.988140360,'1980-01-01','2000-12-31',2,dataset_id,2), + (704,469.634716500,'1980-01-01','2000-12-31',2,dataset_id,2), + (8,264.164310900,'1980-01-01','2000-12-31',2,dataset_id,2), + (51,116.505703400,'1980-01-01','2000-12-31',2,dataset_id,2), + (40,164.130109200,'1980-01-01','2000-12-31',2,dataset_id,2), + (31,94.406610990,'1980-01-01','2000-12-31',2,dataset_id,2), + (112,92.998721230,'1980-01-01','2000-12-31',2,dataset_id,2), + (56,134.956357300,'1980-01-01','2000-12-31',2,dataset_id,2), + (70,190.769187100,'1980-01-01','2000-12-31',2,dataset_id,2), + (100,104.829597600,'1980-01-01','2000-12-31',2,dataset_id,2), + (191,192.191399500,'1980-01-01','2000-12-31',2,dataset_id,2), + (196,105.279860000,'1980-01-01','2000-12-31',2,dataset_id,2), + (203,101.200957700,'1980-01-01','2000-12-31',2,dataset_id,2), + (208,126.822848100,'1980-01-01','2000-12-31',2,dataset_id,2), + (233,106.655150500,'1980-01-01','2000-12-31',2,dataset_id,2), + (246,101.140248800,'1980-01-01','2000-12-31',2,dataset_id,2), + (250,166.860156400,'1980-01-01','2000-12-31',2,dataset_id,2), + (275,81.006659540,'1980-01-01','2000-12-31',2,dataset_id,2), + (268,200.130352500,'1980-01-01','2000-12-31',2,dataset_id,2), + (276,125.564636600,'1980-01-01','2000-12-31',2,dataset_id,2), + (300,172.445537700,'1980-01-01','2000-12-31',2,dataset_id,2), + (348,93.216884510,'1980-01-01','2000-12-31',2,dataset_id,2), + (352,244.425838400,'1980-01-01','2000-12-31',2,dataset_id,2), + (364,67.021202710,'1980-01-01','2000-12-31',2,dataset_id,2), + (368,47.122258910,'1980-01-01','2000-12-31',2,dataset_id,2), + (372,174.046258200,'1980-01-01','2000-12-31',2,dataset_id,2), + (376,63.737561250,'1980-01-01','2000-12-31',2,dataset_id,2), + (380,190.274747200,'1980-01-01','2000-12-31',2,dataset_id,2), + (400,13.357575680,'1980-01-01','2000-12-31',2,dataset_id,2), + (414,31.505479200,'1980-01-01','2000-12-31',2,dataset_id,2), + (428,100.430938000,'1980-01-01','2000-12-31',2,dataset_id,2), + (422,163.174782700,'1980-01-01','2000-12-31',2,dataset_id,2), + (440,94.528470730,'1980-01-01','2000-12-31',2,dataset_id,2), + (442,153.176538700,'1980-01-01','2000-12-31',2,dataset_id,2), + (807,116.551294800,'1980-01-01','2000-12-31',2,dataset_id,2), + (498,82.726368300,'1980-01-01','2000-12-31',2,dataset_id,2), + (499,338.744927300,'1980-01-01','2000-12-31',2,dataset_id,2), + (528,133.823143900,'1980-01-01','2000-12-31',2,dataset_id,2), + (578,246.208728300,'1980-01-01','2000-12-31',2,dataset_id,2), + (512,8.720028897,'1980-01-01','2000-12-31',2,dataset_id,2), + (616,91.885230850,'1980-01-01','2000-12-31',2,dataset_id,2), + (634,19.830655770,'1980-01-01','2000-12-31',2,dataset_id,2), + (642,110.126310100,'1980-01-01','2000-12-31',2,dataset_id,2), + (682,7.873538154,'1980-01-01','2000-12-31',2,dataset_id,2), + (688,100.551710600,'1980-01-01','2000-12-31',2,dataset_id,2), + (703,105.723167900,'1980-01-01','2000-12-31',2,dataset_id,2), + (705,209.409161200,'1980-01-01','2000-12-31',2,dataset_id,2), + (724,146.732143100,'1980-01-01','2000-12-31',2,dataset_id,2), + (752,124.605278300,'1980-01-01','2000-12-31',2,dataset_id,2), + (756,273.309355600,'1980-01-01','2000-12-31',2,dataset_id,2), + (760,49.254921180,'1980-01-01','2000-12-31',2,dataset_id,2), + (792,132.530427200,'1980-01-01','2000-12-31',2,dataset_id,2), + (804,85.198648150,'1980-01-01','2000-12-31',2,dataset_id,2), + (784,15.511127430,'1980-01-01','2000-12-31',2,dataset_id,2), + (826,167.605340700,'1980-01-01','2000-12-31',2,dataset_id,2), + (887,24.518007820,'1980-01-01','2000-12-31',2,dataset_id,2), + (84,304.508200500,'1980-01-01','2000-12-31',2,dataset_id,2), + (124,100.582772300,'1980-01-01','2000-12-31',2,dataset_id,2), + (170,509.112887800,'1980-01-01','2000-12-31',2,dataset_id,2), + (188,634.235807400,'1980-01-01','2000-12-31',2,dataset_id,2), + (192,180.787238600,'1980-01-01','2000-12-31',2,dataset_id,2), + (214,221.334945800,'1980-01-01','2000-12-31',2,dataset_id,2), + (222,401.534972500,'1980-01-01','2000-12-31',2,dataset_id,2), + (304,95.864410630,'1980-01-01','2000-12-31',2,dataset_id,2), + (320,373.299705300,'1980-01-01','2000-12-31',2,dataset_id,2), + (332,155.526525500,'1980-01-01','2000-12-31',2,dataset_id,2), + (340,328.345377800,'1980-01-01','2000-12-31',2,dataset_id,2), + (388,210.480876200,'1980-01-01','2000-12-31',2,dataset_id,2), + (484,183.725539200,'1980-01-01','2000-12-31',2,dataset_id,2), + (558,360.603127800,'1980-01-01','2000-12-31',2,dataset_id,2), + (591,523.147606800,'1980-01-01','2000-12-31',2,dataset_id,2), + (630,228.609735600,'1980-01-01','2000-12-31',2,dataset_id,2), + (44,192.743453900,'1980-01-01','2000-12-31',2,dataset_id,2), + (840,135.952134800,'1980-01-01','2000-12-31',2,dataset_id,2), + (10,44.708813820,'1980-01-01','2000-12-31',2,dataset_id,2), + (36,114.005105500,'1980-01-01','2000-12-31',2,dataset_id,2), + (96,406.987032600,'1980-01-01','2000-12-31',2,dataset_id,2), + (242,472.585501100,'1980-01-01','2000-12-31',2,dataset_id,2), + (360,466.057551400,'1980-01-01','2000-12-31',2,dataset_id,2), + (458,423.093593200,'1980-01-01','2000-12-31',2,dataset_id,2), + (540,336.112491500,'1980-01-01','2000-12-31',2,dataset_id,2), + (554,246.954604200,'1980-01-01','2000-12-31',2,dataset_id,2), + (598,577.189934900,'1980-01-01','2000-12-31',2,dataset_id,2), + (608,503.617398400,'1980-01-01','2000-12-31',2,dataset_id,2), + (90,498.337100500,'1980-01-01','2000-12-31',2,dataset_id,2), + (626,351.158571600,'1980-01-01','2000-12-31',2,dataset_id,2), + (548,445.189418400,'1980-01-01','2000-12-31',2,dataset_id,2), + (32,148.050109300,'1980-01-01','2000-12-31',2,dataset_id,2), + (68,271.709600400,'1980-01-01','2000-12-31',2,dataset_id,2), + (76,341.264249300,'1980-01-01','2000-12-31',2,dataset_id,2), + (152,296.179541500,'1980-01-01','2000-12-31',2,dataset_id,2), + (218,589.732323300,'1980-01-01','2000-12-31',2,dataset_id,2), + (238,92.017686110,'1980-01-01','2000-12-31',2,dataset_id,2), + (328,321.019666800,'1980-01-01','2000-12-31',2,dataset_id,2), + (740,300.891231800,'1980-01-01','2000-12-31',2,dataset_id,2), + (600,233.958973400,'1980-01-01','2000-12-31',2,dataset_id,2), + (604,343.373397200,'1980-01-01','2000-12-31',2,dataset_id,2), + (780,221.393037900,'1980-01-01','2000-12-31',2,dataset_id,2), + (858,228.465911700,'1980-01-01','2000-12-31',2,dataset_id,2), + (862,359.612221400,'1980-01-01','2000-12-31',2,dataset_id,2), + (12,7.789695983,'1980-01-01','2022-12-31',2,dataset_id,2), + (24,215.605737200,'1980-01-01','2022-12-31',2,dataset_id,2), + (204,245.190323700,'1980-01-01','2022-12-31',2,dataset_id,2), + (72,101.092587300,'1980-01-01','2022-12-31',2,dataset_id,2), + (854,163.478392800,'1980-01-01','2022-12-31',2,dataset_id,2), + (108,310.817456200,'1980-01-01','2022-12-31',2,dataset_id,2), + (120,291.515274300,'1980-01-01','2022-12-31',2,dataset_id,2), + (140,217.759606600,'1980-01-01','2022-12-31',2,dataset_id,2), + (148,83.021168000,'1980-01-01','2022-12-31',2,dataset_id,2), + (818,0.954805160,'1980-01-01','2022-12-31',2,dataset_id,2), + (566,243.545294700,'1980-01-01','2022-12-31',2,dataset_id,2), + (178,193.362835900,'1980-01-01','2022-12-31',2,dataset_id,2), + (180,226.711421000,'1980-01-01','2022-12-31',2,dataset_id,2), + (384,217.786398100,'1980-01-01','2022-12-31',2,dataset_id,2), + (262,25.445554910,'1980-01-01','2022-12-31',2,dataset_id,2), + (226,401.709457100,'1980-01-01','2022-12-31',2,dataset_id,2), + (232,84.758092120,'1980-01-01','2022-12-31',2,dataset_id,2), + (231,219.542538000,'1980-01-01','2022-12-31',2,dataset_id,2), + (260,208.574226600,'1980-01-01','2022-12-31',2,dataset_id,2), + (266,290.197136900,'1980-01-01','2022-12-31',2,dataset_id,2), + (288,210.828187400,'1980-01-01','2022-12-31',2,dataset_id,2), + (324,417.174255200,'1980-01-01','2022-12-31',2,dataset_id,2), + (624,453.502168000,'1980-01-01','2022-12-31',2,dataset_id,2), + (404,143.674316000,'1980-01-01','2022-12-31',2,dataset_id,2), + (426,173.705619600,'1980-01-01','2022-12-31',2,dataset_id,2), + (430,424.574497900,'1980-01-01','2022-12-31',2,dataset_id,2), + (434,2.185291724,'1980-01-01','2022-12-31',2,dataset_id,2), + (450,440.069689800,'1980-01-01','2022-12-31',2,dataset_id,2), + (454,401.255918800,'1980-01-01','2022-12-31',2,dataset_id,2), + (466,63.936527840,'1980-01-01','2022-12-31',2,dataset_id,2), + (478,6.857869656,'1980-01-01','2022-12-31',2,dataset_id,2), + (504,52.991593450,'1980-01-01','2022-12-31',2,dataset_id,2), + (508,263.588027800,'1980-01-01','2022-12-31',2,dataset_id,2), + (516,69.214366340,'1980-01-01','2022-12-31',2,dataset_id,2), + (562,14.892465540,'1980-01-01','2022-12-31',2,dataset_id,2), + (646,250.413443600,'1980-01-01','2022-12-31',2,dataset_id,2), + (686,166.612293800,'1980-01-01','2022-12-31',2,dataset_id,2), + (694,609.250232500,'1980-01-01','2022-12-31',2,dataset_id,2), + (706,56.673021260,'1980-01-01','2022-12-31',2,dataset_id,2), + (729,36.978166420,'1980-01-01','2022-12-31',2,dataset_id,2), + (834,234.066995100,'1980-01-01','2022-12-31',2,dataset_id,2), + (710,76.144709660,'1980-01-01','2022-12-31',2,dataset_id,2), + (728,161.337005300,'1980-01-01','2022-12-31',2,dataset_id,2), + (748,146.886728500,'1980-01-01','2022-12-31',2,dataset_id,2), + (270,270.652617300,'1980-01-01','2022-12-31',2,dataset_id,2), + (768,259.921937100,'1980-01-01','2022-12-31',2,dataset_id,2), + (788,33.057895110,'1980-01-01','2022-12-31',2,dataset_id,2), + (800,232.420939000,'1980-01-01','2022-12-31',2,dataset_id,2), + (732,1.580441397,'1980-01-01','2022-12-31',2,dataset_id,2), + (894,279.765718100,'1980-01-01','2022-12-31',2,dataset_id,2), + (716,223.161917800,'1980-01-01','2022-12-31',2,dataset_id,2), + (620,221.490198800,'1980-01-01','2022-12-31',2,dataset_id,2), + (4,80.995028310,'1980-01-01','2022-12-31',2,dataset_id,2), + (50,582.417167800,'1980-01-01','2022-12-31',2,dataset_id,2), + (64,908.433843200,'1980-01-01','2022-12-31',2,dataset_id,2), + (104,600.355169000,'1980-01-01','2022-12-31',2,dataset_id,2), + (116,368.448872800,'1980-01-01','2022-12-31',2,dataset_id,2), + (156,172.972373200,'1980-01-01','2022-12-31',2,dataset_id,2), + (356,402.581221800,'1980-01-01','2022-12-31',2,dataset_id,2), + (392,350.478849400,'1980-01-01','2022-12-31',2,dataset_id,2), + (398,47.214487500,'1980-01-01','2022-12-31',2,dataset_id,2), + (417,137.028084800,'1980-01-01','2022-12-31',2,dataset_id,2), + (418,493.083640400,'1980-01-01','2022-12-31',2,dataset_id,2), + (496,32.834445020,'1980-01-01','2022-12-31',2,dataset_id,2), + (524,627.495717400,'1980-01-01','2022-12-31',2,dataset_id,2), + (408,341.102623100,'1980-01-01','2022-12-31',2,dataset_id,2), + (586,98.615726450,'1980-01-01','2022-12-31',2,dataset_id,2), + (643,88.881108070,'1980-01-01','2022-12-31',2,dataset_id,2), + (410,371.941631100,'1980-01-01','2022-12-31',2,dataset_id,2), + (144,409.402235700,'1980-01-01','2022-12-31',2,dataset_id,2), + (158,703.018368600,'1980-01-01','2022-12-31',2,dataset_id,2), + (762,134.956494200,'1980-01-01','2022-12-31',2,dataset_id,2), + (764,376.624922900,'1980-01-01','2022-12-31',2,dataset_id,2), + (795,24.938537340,'1980-01-01','2022-12-31',2,dataset_id,2), + (860,43.856842970,'1980-01-01','2022-12-31',2,dataset_id,2), + (704,468.203100900,'1980-01-01','2022-12-31',2,dataset_id,2), + (8,275.565567300,'1980-01-01','2022-12-31',2,dataset_id,2), + (51,119.087047500,'1980-01-01','2022-12-31',2,dataset_id,2), + (40,167.487686600,'1980-01-01','2022-12-31',2,dataset_id,2), + (31,91.048041380,'1980-01-01','2022-12-31',2,dataset_id,2), + (112,94.052412320,'1980-01-01','2022-12-31',2,dataset_id,2), + (56,132.409013800,'1980-01-01','2022-12-31',2,dataset_id,2), + (70,193.559867000,'1980-01-01','2022-12-31',2,dataset_id,2), + (100,109.960221400,'1980-01-01','2022-12-31',2,dataset_id,2), + (191,191.355375000,'1980-01-01','2022-12-31',2,dataset_id,2), + (196,120.424391900,'1980-01-01','2022-12-31',2,dataset_id,2), + (203,101.826286800,'1980-01-01','2022-12-31',2,dataset_id,2), + (208,126.812811000,'1980-01-01','2022-12-31',2,dataset_id,2), + (233,104.992808000,'1980-01-01','2022-12-31',2,dataset_id,2), + (246,100.050817400,'1980-01-01','2022-12-31',2,dataset_id,2), + (250,161.044995200,'1980-01-01','2022-12-31',2,dataset_id,2), + (275,69.447165440,'1980-01-01','2022-12-31',2,dataset_id,2), + (268,195.954278900,'1980-01-01','2022-12-31',2,dataset_id,2), + (276,125.233226700,'1980-01-01','2022-12-31',2,dataset_id,2), + (300,178.756016400,'1980-01-01','2022-12-31',2,dataset_id,2), + (348,92.516348790,'1980-01-01','2022-12-31',2,dataset_id,2), + (352,252.466749300,'1980-01-01','2022-12-31',2,dataset_id,2), + (364,61.761667570,'1980-01-01','2022-12-31',2,dataset_id,2), + (368,45.768377450,'1980-01-01','2022-12-31',2,dataset_id,2), + (372,175.726331100,'1980-01-01','2022-12-31',2,dataset_id,2), + (376,60.014671030,'1980-01-01','2022-12-31',2,dataset_id,2), + (380,197.489748300,'1980-01-01','2022-12-31',2,dataset_id,2), + (400,11.093530010,'1980-01-01','2022-12-31',2,dataset_id,2), + (414,26.056991610,'1980-01-01','2022-12-31',2,dataset_id,2), + (428,96.640086080,'1980-01-01','2022-12-31',2,dataset_id,2), + (422,161.510360300,'1980-01-01','2022-12-31',2,dataset_id,2), + (440,94.744604970,'1980-01-01','2022-12-31',2,dataset_id,2), + (442,146.624230800,'1980-01-01','2022-12-31',2,dataset_id,2), + (807,120.684978900,'1980-01-01','2022-12-31',2,dataset_id,2), + (498,76.092878030,'1980-01-01','2022-12-31',2,dataset_id,2), + (499,337.118455000,'1980-01-01','2022-12-31',2,dataset_id,2), + (528,128.296311300,'1980-01-01','2022-12-31',2,dataset_id,2), + (578,239.789495600,'1980-01-01','2022-12-31',2,dataset_id,2), + (512,5.425292299,'1980-01-01','2022-12-31',2,dataset_id,2), + (616,100.234013800,'1980-01-01','2022-12-31',2,dataset_id,2), + (634,15.187717650,'1980-01-01','2022-12-31',2,dataset_id,2), + (642,107.255902400,'1980-01-01','2022-12-31',2,dataset_id,2), + (682,6.162829855,'1980-01-01','2022-12-31',2,dataset_id,2), + (688,102.089896000,'1980-01-01','2022-12-31',2,dataset_id,2), + (703,110.856588400,'1980-01-01','2022-12-31',2,dataset_id,2), + (705,207.964270600,'1980-01-01','2022-12-31',2,dataset_id,2), + (724,138.551739000,'1980-01-01','2022-12-31',2,dataset_id,2), + (752,120.842476600,'1980-01-01','2022-12-31',2,dataset_id,2), + (756,265.777613600,'1980-01-01','2022-12-31',2,dataset_id,2), + (760,47.287409680,'1980-01-01','2022-12-31',2,dataset_id,2), + (792,135.946812100,'1980-01-01','2022-12-31',2,dataset_id,2), + (804,84.600048910,'1980-01-01','2022-12-31',2,dataset_id,2), + (784,7.672073153,'1980-01-01','2022-12-31',2,dataset_id,2), + (826,169.219387200,'1980-01-01','2022-12-31',2,dataset_id,2), + (887,22.444498550,'1980-01-01','2022-12-31',2,dataset_id,2), + (84,287.813735100,'1980-01-01','2022-12-31',2,dataset_id,2), + (124,101.670252300,'1980-01-01','2022-12-31',2,dataset_id,2), + (170,506.343070400,'1980-01-01','2022-12-31',2,dataset_id,2), + (188,665.138037600,'1980-01-01','2022-12-31',2,dataset_id,2), + (192,194.611836100,'1980-01-01','2022-12-31',2,dataset_id,2), + (214,212.616401200,'1980-01-01','2022-12-31',2,dataset_id,2), + (222,406.199523900,'1980-01-01','2022-12-31',2,dataset_id,2), + (304,99.939349880,'1980-01-01','2022-12-31',2,dataset_id,2), + (320,370.482010600,'1980-01-01','2022-12-31',2,dataset_id,2), + (332,174.663774900,'1980-01-01','2022-12-31',2,dataset_id,2), + (340,330.649437500,'1980-01-01','2022-12-31',2,dataset_id,2), + (388,242.303100800,'1980-01-01','2022-12-31',2,dataset_id,2), + (484,182.244063900,'1980-01-01','2022-12-31',2,dataset_id,2), + (558,357.677853500,'1980-01-01','2022-12-31',2,dataset_id,2), + (591,546.189979200,'1980-01-01','2022-12-31',2,dataset_id,2), + (630,240.819792900,'1980-01-01','2022-12-31',2,dataset_id,2), + (44,210.263960300,'1980-01-01','2022-12-31',2,dataset_id,2), + (840,132.724502500,'1980-01-01','2022-12-31',2,dataset_id,2), + (10,44.775020920,'1980-01-01','2022-12-31',2,dataset_id,2), + (36,112.174568300,'1980-01-01','2022-12-31',2,dataset_id,2), + (96,423.385389500,'1980-01-01','2022-12-31',2,dataset_id,2), + (242,511.583575300,'1980-01-01','2022-12-31',2,dataset_id,2), + (360,478.816687500,'1980-01-01','2022-12-31',2,dataset_id,2), + (458,432.697989900,'1980-01-01','2022-12-31',2,dataset_id,2), + (540,348.687416700,'1980-01-01','2022-12-31',2,dataset_id,2), + (554,247.851547700,'1980-01-01','2022-12-31',2,dataset_id,2), + (598,613.321761900,'1980-01-01','2022-12-31',2,dataset_id,2), + (608,514.611399300,'1980-01-01','2022-12-31',2,dataset_id,2), + (90,567.447678200,'1980-01-01','2022-12-31',2,dataset_id,2), + (626,354.792704900,'1980-01-01','2022-12-31',2,dataset_id,2), + (548,462.824128300,'1980-01-01','2022-12-31',2,dataset_id,2), + (32,137.779594600,'1980-01-01','2022-12-31',2,dataset_id,2), + (68,269.686834100,'1980-01-01','2022-12-31',2,dataset_id,2), + (76,341.238464800,'1980-01-01','2022-12-31',2,dataset_id,2), + (152,281.121325400,'1980-01-01','2022-12-31',2,dataset_id,2), + (218,561.820573900,'1980-01-01','2022-12-31',2,dataset_id,2), + (238,88.860287990,'1980-01-01','2022-12-31',2,dataset_id,2), + (328,376.858326400,'1980-01-01','2022-12-31',2,dataset_id,2), + (740,380.104089800,'1980-01-01','2022-12-31',2,dataset_id,2), + (600,214.977933500,'1980-01-01','2022-12-31',2,dataset_id,2), + (604,337.507545800,'1980-01-01','2022-12-31',2,dataset_id,2), + (780,239.965708800,'1980-01-01','2022-12-31',2,dataset_id,2), + (858,231.373270200,'1980-01-01','2022-12-31',2,dataset_id,2), + (862,372.398315900,'1980-01-01','2022-12-31',2,dataset_id,2); +end $$; \ No newline at end of file diff --git a/frontend/.eslintrc.json b/frontend/.eslintrc.json index f74dd1be..98996f92 100644 --- a/frontend/.eslintrc.json +++ b/frontend/.eslintrc.json @@ -101,4 +101,4 @@ } } ] -} +} \ No newline at end of file diff --git a/frontend/.vscode/launch.json b/frontend/.vscode/launch.json index f7867bce..fe78ce2d 100644 --- a/frontend/.vscode/launch.json +++ b/frontend/.vscode/launch.json @@ -1,24 +1,3 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "chrome", - "request": "launch", - "name": "Launch Chrome against localhost", - "url": "http://localhost:3000", - "runtimeExecutable": "/Users/cypressf/Applications/Google Chrome.app/Contents/MacOS/Google Chrome", - "webRoot": "${workspaceFolder}" - }, - { - "name": "Launch Firefox against localhost", - "type": "firefox", - "request": "launch", - "reAttach": true, - "url": "http://localhost:3000", - "webRoot": "${workspaceFolder}" - } - ] -} +version https://git-lfs.github.com/spec/v1 +oid sha256:c2a3e83ec6d77802d14f0c4bd3a859c092d9134fffc587f40b1697c6c8c13e09 +size 856 diff --git a/frontend/package.json b/frontend/package.json index 3c47af27..5a88553f 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -93,4 +93,4 @@ ] }, "packageManager": "yarn@3.6.1" -} +} \ No newline at end of file diff --git a/frontend/public/countries-110m.json b/frontend/public/countries-110m.json index 658407ce..cd6cd942 100644 --- a/frontend/public/countries-110m.json +++ b/frontend/public/countries-110m.json @@ -3362,4 +3362,4 @@ } ] } -} \ No newline at end of file +} diff --git a/frontend/public/critical-habitats-topo.json b/frontend/public/critical-habitats-topo.json index 98ab3dd6..93f11966 100644 --- a/frontend/public/critical-habitats-topo.json +++ b/frontend/public/critical-habitats-topo.json @@ -1 +1 @@ -{"type":"Topology","bbox":[63.31254372036631,14.432154719476102,853.1110650739369,606.2418755843366],"transform":{"scale":[0.007898064194177648,0.005918156390212507],"translate":[63.31254372036631,14.432154719476102]},"objects":{"overlay":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","arcs":[[0],[1],[2],[3]]},{"type":"MultiLineString","arcs":[[4],[5],[6,7],[8]]},{"type":"MultiLineString","arcs":[[0],[1],[9]]},{"type":"MultiLineString","arcs":[[10],[11],[12],[13],[14],[15]]},{"type":"MultiLineString","arcs":[[16],[17],[18],[19],[20],[21],[22],[23],[24],[25],[26],[27],[28],[29],[30],[31],[32],[33],[34],[35],[36],[37],[38],[39],[40],[41],[42],[43],[44],[45],[46],[47],[48],[49],[50],[51]]},{"type":"MultiLineString","arcs":[[52],[53],[54],[55]]},{"type":"MultiLineString","arcs":[[56],[57],[58],[59],[60],[61],[62],[63],[64]]},{"type":"MultiLineString","arcs":[[65],[66],[67],[68],[69],[70],[71],[72],[73],[74],[75],[76],[77],[78],[79],[80],[81],[82],[83]]},{"type":"MultiLineString","arcs":[[84,85],[86,87,88,89]]},{"type":"MultiLineString","arcs":[[84],[90]]},{"type":"MultiLineString","arcs":[[91],[92],[93],[94],[95],[96],[97]]},{"type":"MultiLineString","arcs":[[98],[99]]},{"type":"MultiLineString","arcs":[[100],[101],[102],[103],[104],[105]]},{"type":"MultiLineString","arcs":[[106],[107],[108],[109],[110],[111],[112],[113],[114],[115],[116],[117],[118],[119],[120],[121],[122],[123],[124],[125],[126],[127],[128],[129],[130],[131],[132],[133],[134],[135],[136],[137],[138],[139],[140],[141],[142],[143],[144],[145],[146],[147],[148],[149],[150],[151],[152],[153],[154],[155],[156],[157],[158],[159],[160],[161],[162],[163],[164],[165],[166],[167],[168],[169],[170],[171],[172],[173],[174],[175],[176],[177],[178,179],[180],[181,182],[183],[184],[185],[186,187,188],[189],[190],[191],[192],[193],[194],[195],[196],[197],[198],[199],[200],[201],[202],[203],[204],[205],[206],[207],[208],[209],[210],[211],[212],[213],[214],[215],[216],[217],[218],[219]]},{"type":"MultiLineString","arcs":[[220],[221],[222],[223],[224],[225],[226],[227],[228],[229],[230],[231],[232],[233],[234],[235],[236],[237],[238],[239],[240],[241],[242],[243],[244],[245],[246],[247],[248],[249],[250],[251],[252],[253],[254],[255],[256],[257],[258],[259],[260],[261],[262],[263],[264],[265],[266],[267],[268],[269],[270],[271],[272],[273],[274],[275],[276],[277],[278],[279],[280],[281],[282],[283],[284],[285],[286],[287],[288],[289],[290],[291],[292],[293],[294],[295],[296],[297],[298],[299],[300],[301],[302],[303],[304],[305],[306],[307],[308],[309],[310],[311],[312],[313],[314],[315],[316],[317],[318],[319],[320],[321],[322],[323],[324],[325],[326],[327],[328],[329],[330],[331],[332],[333],[334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453],[454,455,456,457,458,459,460,461,462,463,464,465,466],[467],[468],[469],[470],[471],[472],[473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638],[639],[640],[641],[642],[643],[644],[645],[646],[647],[648],[649],[650],[651],[652],[653],[654],[655],[656],[657],[658],[659],[660],[661],[662],[663],[664],[665],[666],[667],[668],[669],[670],[671],[672],[673],[674],[675],[676],[677],[678],[679],[680],[681],[682],[683],[684],[685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739],[740],[741],[742],[743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905],[906],[907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958],[959],[960],[961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147],[1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408],[1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841],[1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866],[1867],[1868],[1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112],[2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254],[2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666],[2667],[2668],[2669],[2670],[2671],[2672],[2673]]},{"type":"MultiLineString","arcs":[[2674],[2675]]},{"type":"MultiLineString","arcs":[[106],[107],[108],[109],[110],[111],[112],[113],[114],[115],[116],[117],[118],[119],[120],[121],[122],[123],[124],[125],[126],[127],[128],[129],[130],[131],[132],[133],[134],[140],[141],[142],[143],[144],[145],[146],[147],[148],[149],[150],[151],[152],[153],[154],[155],[156],[157],[158],[159],[160],[161],[162],[163],[164],[165],[166],[167],[168],[169],[170],[171],[172],[173],[174],[175],[176],[177],[178],[180],[181,2676,187],[183],[189],[190],[191],[192],[193],[194],[195],[201],[202],[203],[2677],[2678],[2679],[2680],[2681],[2682],[2683],[2684],[2685],[2686],[208],[2687],[2688],[2689],[2690,209],[210],[211],[212],[213],[214],[215],[216],[217],[218],[219]]},{"type":"MultiLineString","arcs":[[2691],[2692],[2693],[2694],[2695],[2696],[2697],[2698],[2699],[2700],[2701],[2702],[2703],[2704],[2705],[2706],[2707],[2708],[2709],[2710],[2711],[2712],[2713],[2714],[2715],[2716],[2717],[2718],[2719],[2720],[2721],[2722],[2723],[2724],[2725],[2726],[2727],[2728],[2729],[2730],[2731],[2732],[2733],[2734],[2735],[2736],[2737],[2738],[2739],[2740],[2741],[2742],[2743],[2744],[2745],[2746],[2747],[2748],[2749],[2750],[2751],[2752],[2753],[2754],[2755],[2756],[2757],[2758],[2759],[2760],[2761],[2762],[2763],[2764],[2765],[2766],[2767],[2768],[2769],[2770],[2771],[2772],[2773],[2774],[2775],[2776],[2777],[2778],[2779],[2780],[2781],[2782],[2783],[2784],[2785],[2786],[2787],[2788],[2789],[2790],[2791],[2792],[2793],[2794],[2795],[2796],[2797],[2798],[2799],[2800],[2801],[2802],[2803],[2804],[2805],[2806],[2807],[2808],[2809],[2810],[2811],[2812],[2813],[2814],[2815],[2816],[2817],[2818],[2819],[2820],[2821],[2822],[2823],[2824],[2825],[2826],[2827],[2828],[2829],[2830],[2831],[2832],[2833],[2834],[2835],[2836],[2837],[2838],[2839],[2840],[2841],[2842],[2843],[2844],[2845],[2846],[2847],[2848],[2849],[2850],[2851],[2852],[2853],[2854],[2855],[2856],[2857],[2858],[2859],[2860],[2861],[2862],[2863],[2864],[2865],[2866],[2867],[2868],[2869],[2870],[2871],[2872],[2873],[2874],[2875],[2876],[2877],[2878],[2879],[2880],[2881],[2882],[2883],[2884],[2885],[2886],[2887],[2888],[2889],[2890],[2891],[2892],[2893],[2894],[2895],[2896],[2897],[2898],[2899],[2900],[2901],[2902],[2903],[2904],[2905],[2906],[2907],[2908],[2909],[2910],[2911],[2912],[2913],[2914],[2915],[2916],[2917],[2918],[2919],[2920],[2921],[2922],[2923],[2924],[2925],[2926],[2927],[2928],[2929],[2930],[2931],[2932],[2933],[2934],[2935],[2936],[2937],[2938],[2939],[2940],[2941],[2942],[2943],[2944],[2945],[2946],[2947],[2948],[2949],[2950],[2951],[2952],[2953],[2954],[2955],[2956],[2957],[2958],[2959],[2960],[2961],[2962],[2963],[2964],[2965],[2966],[2967],[2968],[2969],[2970],[2971],[2972],[2973],[2974],[2975],[2976],[2977],[2978],[2979],[2980],[2981],[2982],[2983],[2984],[2985],[2986],[2987],[2988],[2989],[2990],[2991],[2992],[2993],[2994],[2995],[2996],[2997],[2998],[2999],[3000],[3001],[3002],[3003],[3004],[3005],[3006],[3007],[3008],[3009],[3010],[3011],[3012],[3013],[3014],[3015],[3016],[3017],[3018],[3019],[3020],[3021],[3022],[3023],[3024],[3025],[3026],[3027],[3028],[3029],[3030],[3031],[3032],[3033],[3034],[3035],[3036],[3037],[3038],[3039],[3040],[3041],[3042],[3043],[3044],[3045],[3046],[3047],[3048],[3049],[3050],[3051],[3052],[3053],[3054],[3055],[3056],[3057],[3058],[3059],[3060],[3061],[3062],[3063],[3064],[3065],[3066],[3067],[3068],[3069],[3070],[3071],[3072],[3073],[3074],[3075],[3076],[3077],[3078],[3079],[3080],[3081],[3082],[3083],[3084],[3085],[3086],[3087],[3088],[3089],[3090],[3091],[3092],[3093],[3094],[3095],[3096],[3097],[3098],[3099],[3100],[3101],[3102],[3103],[3104],[3105],[3106],[3107],[3108],[3109],[3110],[3111],[3112],[3113],[3114],[3115],[3116],[3117],[3118],[3119],[3120],[3121],[3122],[3123],[3124],[3125],[3126],[3127],[3128],[3129],[3130],[3131],[3132],[3133],[3134],[3135],[3136],[3137],[3138],[3139],[3140],[3141],[3142],[3143],[3144],[3145],[3146],[3147],[3148],[3149],[3150],[3151],[3152],[3153],[3154],[3155],[3156],[3157],[3158],[3159],[3160],[3161],[3162],[3163],[3164],[3165],[3166],[3167],[3168],[3169],[3170],[3171],[3172],[3173],[3174],[3175],[3176],[3177],[3178],[3179],[3180],[3181],[3182],[3183],[3184],[3185],[3186],[3187],[3188],[3189],[3190],[3191],[3192],[3193],[3194],[3195],[3196],[3197],[3198],[3199],[3200],[3201],[3202],[3203],[3204],[3205],[3206],[3207],[3208],[3209],[3210],[3211],[3212],[3213],[3214],[3215],[3216],[3217],[3218],[3219],[3220],[3221],[3222],[3223],[3224],[3225],[3226],[3227],[3228],[3229],[3230],[3231],[3232],[3233],[3234],[3235],[3236],[3237],[3238],[3239],[3240],[3241],[3242],[3243],[3244],[3245],[3246],[3247],[3248],[3249],[3250],[3251],[3252],[3253],[3254],[3255],[3256],[3257],[3258],[3259],[3260],[3261],[3262],[3263],[3264],[3265],[3266],[3267],[3268],[3269],[3270],[3271],[3272],[3273],[3274],[3275],[3276],[3277],[3278],[3279],[3280],[3281],[3282],[3283],[3284],[3285],[3286],[3287],[3288],[3289],[3290],[3291],[3292],[3293],[3294],[3295],[3296],[3297],[3298],[3299],[3300],[3301],[3302],[3303],[3304],[3305],[3306],[3307],[3308],[3309],[3310],[3311],[3312],[3313],[3314],[3315],[3316],[3317],[3318],[3319],[3320],[3321],[3322],[3323],[3324],[3325],[3326],[3327],[3328],[3329],[3330],[3331],[3332],[3333],[3334],[3335],[3336],[3337],[3338],[3339],[3340],[3341],[3342],[3343],[3344],[3345],[3346],[3347],[3348],[3349],[3350],[3351],[3352],[3353],[3354],[3355],[3356],[3357],[3358],[3359],[3360],[3361],[3362],[3363],[3364],[3365],[3366],[3367],[3368],[3369],[3370],[3371],[3372],[3373],[3374],[3375],[3376],[3377],[3378],[3379],[3380],[3381],[3382],[3383],[3384],[3385],[3386],[3387],[3388],[3389],[3390],[3391],[3392],[3393],[3394],[3395],[3396],[3397],[3398],[3399],[3400],[3401],[3402],[3403],[3404],[3405],[3406],[3407],[3408],[3409],[3410],[3411],[3412],[3413],[3414],[3415],[3416],[3417],[3418],[3419],[3420],[3421],[3422],[3423],[3424],[3425],[3426],[3427],[3428],[3429],[3430],[3431],[3432],[3433],[3434],[3435],[3436],[3437],[3438],[3439],[3440],[3441],[3442],[3443],[3444],[3445],[3446],[3447],[3448],[3449],[3450],[3451],[3452],[3453],[3454],[3455],[3456],[3457],[3458],[3459],[3460],[3461],[3462],[3463],[3464],[3465],[3466],[3467],[3468],[3469],[3470],[3471],[3472],[3473],[3474],[3475],[3476],[3477],[3478],[3479],[3480],[3481],[3482],[3483],[3484],[3485],[3486],[3487],[3488],[3489],[3490],[3491],[3492],[3493],[3494],[3495],[3496],[3497],[3498],[3499],[3500],[3501],[3502],[3503],[3504],[3505],[3506],[3507],[3508],[3509],[3510],[3511],[3512],[3513],[3514],[3515],[3516],[3517],[3518],[3519],[3520],[3521],[3522],[3523],[3524],[3525],[3526],[3527],[3528],[3529],[3530],[3531],[3532],[3533],[3534],[3535],[3536],[3537],[3538],[3539],[3540],[3541],[3542],[3543],[3544],[3545],[3546],[3547],[3548],[3549],[3550],[3551],[3552],[3553],[3554],[3555],[3556],[3557],[3558],[3559],[3560],[3561],[3562],[3563],[3564],[3565],[3566],[3567],[3568],[3569],[3570],[3571],[3572],[3573],[3574],[3575],[3576],[3577],[3578],[3579],[3580],[3581],[3582],[3583],[3584],[3585],[3586],[3587],[3588],[3589],[3590],[3591],[3592],[3593],[3594],[3595],[3596],[3597],[3598],[3599],[3600],[3601],[3602],[3603],[3604],[3605],[3606],[3607],[3608],[3609],[3610],[3611],[3612],[3613],[3614],[3615],[3616],[3617],[3618],[3619],[3620],[3621],[3622],[3623],[3624],[3625],[3626],[3627],[3628],[3629],[3630],[3631],[3632],[3633],[3634],[3635],[3636],[3637],[3638],[3639],[3640],[3641],[3642],[3643],[3644],[3645],[3646],[3647],[3648],[3649],[3650],[3651],[3652],[3653],[3654],[3655],[3656],[3657],[3658],[3659],[3660],[3661],[3662],[3663],[3664],[3665],[3666],[3667],[3668],[3669],[3670],[3671],[3672],[3673],[3674],[3675],[3676],[3677],[3678],[3679],[3680],[3681],[3682],[3683],[3684],[3685],[3686],[3687],[3688],[3689],[3690],[3691],[3692],[3693],[3694],[3695],[3696],[3697],[3698],[3699],[3700],[3701],[3702],[3703],[3704],[3705],[3706],[3707],[3708],[3709],[3710],[3711],[3712],[3713],[3714],[3715],[3716],[3717],[3718],[3719],[3720],[3721],[3722],[3723],[3724],[3725],[3726],[3727],[3728],[3729],[3730],[3731],[3732],[3733],[3734],[3735],[3736],[3737],[3738],[3739],[3740],[3741],[3742],[3743],[3744],[3745],[3746],[3747],[3748],[3749],[3750],[3751],[3752],[3753],[3754],[3755],[3756],[3757],[3758],[3759],[3760],[3761],[3762],[3763],[3764],[3765],[3766],[3767],[3768],[3769],[3770],[3771],[3772],[3773],[3774],[3775],[3776],[3777],[3778],[3779],[3780],[3781],[3782],[3783],[3784],[3785],[3786],[3787],[3788],[3789],[3790],[3791],[3792],[3793],[3794],[3795],[3796],[3797],[3798],[3799],[3800],[3801],[3802],[3803],[3804],[3805],[3806],[3807],[3808],[3809],[3810],[3811],[3812],[3813],[3814],[3815],[3816],[3817],[3818],[3819],[3820],[3821],[3822],[3823],[3824],[3825],[3826],[3827],[3828],[3829],[3830],[3831],[3832],[3833],[3834],[3835],[3836],[3837],[3838],[3839],[3840],[3841],[3842],[3843],[3844],[3845],[3846],[3847],[3848],[3849],[3850],[3851],[3852],[3853],[3854],[3855],[3856],[3857],[3858],[3859],[3860],[3861],[3862],[3863],[3864],[3865],[3866],[3867],[3868],[3869],[3870],[3871],[3872],[3873],[3874],[3875],[3876],[3877],[3878],[3879],[3880],[3881],[3882],[3883],[3884],[3885],[3886],[3887],[3888],[3889],[3890],[3891],[3892],[3893],[3894],[3895],[3896],[3897],[3898],[3899],[3900],[3901],[3902],[3903],[3904],[3905],[3906],[3907],[3908],[3909],[3910],[3911],[3912],[3913],[3914],[3915],[3916],[3917],[3918],[3919],[3920],[3921],[3922],[3923],[3924],[3925],[3926],[3927],[3928],[3929],[3930],[3931],[3932],[3933],[3934],[3935],[3936],[3937],[3938],[3939],[3940],[3941],[3942],[3943],[3944],[3945],[3946],[3947],[3948],[3949],[3950],[3951],[3952],[3953],[3954],[3955],[3956],[3957],[3958],[3959],[3960],[3961],[3962],[3963],[3964],[3965],[3966],[3967],[3968],[3969],[3970],[3971],[3972],[3973],[3974],[3975],[3976],[3977],[3978],[3979],[3980],[3981],[3982],[3983],[3984],[3985],[3986],[3987],[3988],[3989],[3990],[3991],[3992],[3993],[3994],[3995],[3996],[3997],[3998],[3999],[4000],[4001],[4002],[4003],[4004],[4005],[4006],[4007],[4008],[4009],[4010],[4011],[4012],[4013],[4014],[4015],[4016],[4017],[4018],[4019],[4020],[4021],[4022],[4023],[4024],[4025],[4026],[4027],[4028],[4029],[4030],[4031],[4032],[4033],[4034],[4035],[4036],[4037],[4038],[4039],[4040],[4041],[4042],[4043],[4044],[4045],[4046],[4047],[4048],[4049],[4050],[4051],[4052],[4053],[4054],[4055],[4056],[4057],[4058],[4059],[4060],[4061],[4062],[4063],[4064],[4065],[4066],[4067],[4068],[4069],[4070],[4071],[4072],[4073],[4074],[4075],[4076],[4077],[4078],[4079],[4080],[4081],[4082],[4083],[4084],[4085],[4086],[4087],[4088],[4089],[4090],[4091],[4092],[4093],[4094],[4095],[4096],[4097],[4098],[4099],[4100],[4101],[4102],[4103],[4104],[4105],[4106],[4107],[4108],[4109],[4110],[4111],[4112],[4113],[4114],[4115],[4116],[4117],[4118],[4119],[4120],[4121],[4122],[4123],[4124],[4125],[4126],[4127],[4128],[4129],[4130],[4131],[4132],[4133],[4134],[4135],[4136],[4137],[4138],[4139],[4140],[4141],[4142],[4143],[4144],[4145],[4146],[4147],[4148],[4149],[4150],[4151],[4152],[4153],[4154],[4155],[4156],[4157],[4158],[4159],[4160],[4161],[4162],[4163],[4164],[4165],[4166],[4167],[4168],[4169],[4170],[4171],[4172],[4173],[4174],[4175],[4176],[4177],[4178],[4179],[4180],[4181],[4182],[4183],[4184],[4185],[4186],[4187],[4188],[4189],[4190],[4191],[4192],[4193],[4194],[4195],[4196],[4197],[4198],[4199],[4200],[4201],[4202],[4203],[4204],[4205],[4206],[4207],[4208],[4209],[4210],[4211],[4212],[4213],[4214],[4215],[4216],[4217],[4218],[4219],[4220],[4221],[4222],[4223],[4224],[4225],[4226],[4227],[4228],[4229],[4230],[4231],[4232],[4233],[4234],[4235],[4236],[4237],[4238],[4239],[4240],[4241],[4242],[4243],[4244],[4245],[4246],[4247],[4248],[4249],[4250],[4251],[4252],[4253],[4254],[4255],[4256],[4257],[4258],[4259],[4260],[4261],[4262],[4263],[4264],[4265],[4266],[4267],[4268],[4269],[4270],[4271],[4272],[4273],[4274],[4275],[4276],[4277],[4278],[4279],[4280],[4281],[4282],[4283],[4284],[4285],[4286],[4287],[4288],[4289],[4290],[4291],[4292],[4293],[4294],[4295],[4296],[4297],[4298],[4299],[4300],[4301],[4302],[4303],[4304],[4305],[4306],[4307],[4308],[4309],[4310],[4311],[4312],[4313],[4314],[4315],[4316],[4317],[4318],[4319],[4320],[4321],[4322],[4323],[4324],[4325],[4326],[4327],[4328],[4329],[4330],[4331],[4332],[4333],[4334],[4335],[4336],[4337],[4338],[4339],[4340],[4341],[4342],[4343],[4344],[4345],[4346],[4347],[4348],[4349],[4350],[4351],[4352],[4353],[4354],[4355],[4356],[4357],[4358],[4359],[4360],[4361],[4362],[4363],[4364],[4365],[4366],[4367],[4368],[4369],[4370],[4371],[4372],[4373],[4374],[4375],[4376],[4377],[4378],[4379],[4380],[4381],[4382],[4383],[4384],[4385],[4386],[4387],[4388],[4389],[4390],[4391],[4392],[4393],[4394],[4395],[4396],[4397],[4398],[4399],[4400],[4401],[4402],[4403],[4404],[4405],[4406],[4407],[4408],[4409],[4410],[4411],[4412],[4413],[4414],[4415],[4416],[4417],[4418],[4419],[4420],[4421],[4422],[4423],[4424],[4425],[4426],[4427],[4428],[4429],[4430],[4431],[4432],[4433],[4434],[4435],[4436],[4437],[4438],[4439],[4440],[4441],[4442],[4443],[4444],[4445],[4446],[4447],[4448],[4449],[4450],[4451],[4452],[4453],[4454],[4455],[4456],[4457],[4458],[4459],[4460],[4461],[4462],[4463],[4464],[4465],[4466],[4467],[4468],[4469],[4470],[4471],[4472],[4473],[4474],[4475],[4476],[4477],[4478],[4479],[4480],[4481],[4482],[4483],[4484],[4485],[4486],[4487],[4488],[4489],[4490],[4491],[4492],[4493],[4494],[4495],[4496],[4497],[4498],[4499],[4500],[4501],[4502],[4503],[4504],[4505],[4506],[4507],[4508],[4509],[4510],[4511],[4512],[4513],[4514],[4515],[4516],[4517],[4518],[4519],[4520],[4521],[4522],[4523],[4524],[4525],[4526],[4527],[4528],[4529],[4530],[4531],[4532],[4533],[4534],[4535],[4536],[4537],[4538],[4539],[4540],[4541],[4542],[4543],[4544],[4545],[4546],[4547],[4548],[4549],[4550],[4551],[4552],[4553],[4554],[4555],[4556],[4557],[4558],[4559],[4560],[4561],[4562],[4563],[4564],[4565],[4566],[4567],[4568],[4569],[4570],[4571],[4572],[4573],[4574],[4575],[4576],[4577],[4578],[4579],[4580],[4581],[4582],[4583],[4584],[4585],[4586],[4587],[4588],[4589],[4590],[4591],[4592],[4593],[4594],[4595],[4596],[4597],[4598],[4599],[4600],[4601],[4602],[4603],[4604],[4605],[4606],[4607],[4608],[4609],[4610],[4611],[4612],[4613],[4614],[4615],[4616],[4617],[4618],[4619],[4620],[4621],[4622],[4623],[4624],[4625],[4626],[4627],[4628],[4629],[4630],[4631],[4632],[4633],[4634],[4635],[4636],[4637],[4638],[4639],[4640],[4641],[4642],[4643],[4644],[4645],[4646],[4647],[4648],[4649],[4650],[4651],[4652],[4653],[4654],[4655],[4656],[4657],[4658],[4659],[4660],[4661],[4662],[4663],[4664],[4665],[4666],[4667],[4668],[4669],[4670],[4671],[4672],[4673],[4674],[4675],[4676],[4677],[4678],[4679],[4680],[4681],[4682],[4683],[4684],[4685],[4686],[4687],[4688],[4689],[4690],[4691],[4692],[4693],[4694],[4695],[4696],[4697],[4698],[4699],[4700],[4701],[4702],[4703],[4704],[4705],[4706],[4707],[4708],[4709],[4710],[4711],[4712],[4713],[4714],[4715],[4716],[4717],[4718],[4719],[4720],[4721],[4722],[4723],[4724],[4725],[4726],[4727],[4728],[4729],[4730],[4731],[4732],[4733],[4734],[4735],[4736],[4737],[4738],[4739],[4740],[4741],[4742],[4743],[4744],[4745],[4746],[4747],[4748],[4749],[4750],[4751],[4752],[4753],[4754],[4755],[4756],[4757],[4758],[4759],[4760],[4761],[4762],[4763],[4764],[4765],[4766],[4767],[4768],[4769],[4770],[4771],[4772],[4773],[4774],[4775],[4776],[4777],[4778],[4779],[4780],[4781],[4782],[4783],[4784],[4785],[4786],[4787],[4788],[4789],[4790],[4791],[4792],[4793],[4794],[4795],[4796],[4797],[4798],[4799],[4800],[4801],[4802],[4803],[4804],[4805],[4806],[4807],[4808],[4809],[4810],[4811],[4812],[4813],[4814],[4815],[4816],[4817],[4818],[4819],[4820],[4821],[4822],[4823],[4824],[4825],[4826],[4827],[4828],[4829],[4830],[4831],[4832],[4833],[4834],[4835],[4836],[4837],[4838],[4839],[4840],[4841],[4842],[4843],[4844],[4845],[4846],[4847],[4848],[4849],[4850],[4851],[4852],[4853],[4854],[4855],[4856],[4857],[4858],[4859],[4860],[4861],[4862],[4863],[4864],[4865],[4866],[4867],[4868],[4869],[4870],[4871],[4872],[4873],[4874],[4875],[4876],[4877],[4878],[4879],[4880],[4881],[4882],[4883],[4884],[4885],[4886],[4887],[4888],[4889],[4890],[4891],[4892],[4893],[4894],[4895],[4896],[4897],[4898],[4899],[4900],[4901],[4902],[4903],[4904],[4905],[4906],[4907],[4908],[4909],[4910],[4911],[4912],[4913],[4914],[4915],[4916],[4917],[4918],[4919],[4920],[4921],[4922],[4923],[4924],[4925],[4926],[4927],[4928],[4929],[4930],[4931],[4932],[4933],[4934],[4935],[4936],[4937],[4938],[4939],[4940],[4941],[4942],[4943],[4944],[4945],[4946],[4947],[4948],[4949],[4950],[4951],[4952],[4953],[4954],[4955],[4956],[4957],[4958],[4959],[4960],[4961],[4962],[4963],[4964],[4965],[4966],[4967],[4968],[4969],[4970],[4971],[4972],[4973],[4974],[4975],[4976],[4977],[4978],[4979],[4980],[4981],[4982],[4983],[4984],[4985],[4986],[4987],[4988],[4989],[4990],[4991],[4992],[4993],[4994],[4995],[4996],[4997],[4998],[4999],[5000],[5001],[5002],[5003],[5004],[5005],[5006],[5007],[5008],[5009],[5010],[5011],[5012],[5013],[5014],[5015],[5016],[5017],[5018],[5019],[5020],[5021],[5022],[5023],[5024],[5025],[5026],[5027],[5028],[5029],[5030],[5031],[5032],[5033],[5034],[5035],[5036],[5037],[5038],[5039],[5040],[5041],[5042],[5043],[5044],[5045],[5046],[5047],[5048],[5049],[5050],[5051],[5052],[5053],[5054],[5055],[5056],[5057],[5058],[5059],[5060],[5061],[5062],[5063],[5064],[5065],[5066],[5067],[5068],[5069],[5070],[5071],[5072],[5073],[5074],[5075],[5076],[5077],[5078],[5079],[5080],[5081],[5082],[5083],[5084],[5085],[5086],[5087],[5088],[5089],[5090],[5091],[5092],[5093],[5094],[5095],[5096],[5097],[5098],[5099],[5100],[5101],[5102],[5103],[5104],[5105],[5106],[5107],[5108],[5109],[5110],[5111],[5112],[5113],[5114],[5115],[5116],[5117],[5118],[5119],[5120],[5121],[5122],[5123],[5124],[5125],[5126],[5127],[5128],[5129],[5130],[5131],[5132],[5133],[5134],[5135],[5136],[5137],[5138],[5139],[5140],[5141],[5142],[5143],[5144],[5145],[5146],[5147],[5148],[5149],[5150],[5151],[5152],[5153],[5154],[5155],[5156],[5157],[5158],[5159],[5160],[5161],[5162],[5163],[5164],[5165],[5166],[5167],[5168],[5169],[5170],[5171],[5172],[5173],[5174],[5175],[5176],[5177],[5178],[5179],[5180],[5181],[5182],[5183],[5184],[5185],[5186],[5187],[5188],[5189],[5190],[5191],[5192],[5193],[5194],[5195],[5196],[5197],[5198],[5199],[5200],[5201],[5202],[5203],[5204],[5205],[5206],[5207],[5208],[5209],[5210],[5211],[5212],[5213],[5214],[5215],[5216],[5217],[5218],[5219],[5220],[5221],[5222],[5223],[5224],[5225],[5226],[5227],[5228],[5229],[5230],[5231],[5232],[5233],[5234],[5235],[5236],[5237],[5238],[5239],[5240],[5241],[5242],[5243],[5244],[5245],[5246],[5247],[5248],[5249],[5250],[5251],[5252],[5253],[5254],[5255],[5256],[5257],[5258],[5259],[5260],[5261],[5262],[5263],[5264],[5265],[5266],[5267],[5268],[5269],[5270],[5271],[5272],[5273],[5274],[5275],[5276],[5277],[5278],[5279],[5280],[5281],[5282],[5283],[5284],[5285],[5286],[5287],[5288],[5289],[5290],[5291],[5292],[5293],[5294],[5295],[5296],[5297],[5298],[5299],[5300],[5301],[5302],[5303],[5304],[5305],[5306],[5307],[5308],[5309],[5310],[5311],[5312],[5313],[5314],[5315],[5316],[5317],[5318],[5319],[5320],[5321],[5322],[5323],[5324],[5325],[5326],[5327],[5328],[5329],[5330],[5331],[5332],[5333],[5334],[5335],[5336],[5337],[5338],[5339],[5340],[5341],[5342],[5343],[5344],[5345],[5346],[5347],[5348],[5349],[5350],[5351],[5352],[5353],[5354],[5355],[5356],[5357],[5358],[5359],[5360],[5361],[5362],[5363],[5364],[5365],[5366],[5367],[5368],[5369],[5370],[5371],[5372],[5373],[5374],[5375],[5376],[5377],[5378],[5379],[5380],[5381],[5382],[5383],[5384],[5385],[5386],[5387],[5388],[5389],[5390],[5391],[5392],[5393],[5394],[5395],[5396],[5397],[5398],[5399],[5400],[5401],[5402],[5403],[5404],[5405],[5406],[5407],[5408],[5409],[5410],[5411],[5412],[5413],[5414],[5415],[5416],[5417],[5418],[5419],[5420],[5421],[5422],[5423],[5424],[5425],[5426],[5427],[5428],[5429],[5430],[5431],[5432],[5433],[5434],[5435],[5436],[5437],[5438],[5439],[5440],[5441],[5442],[5443],[5444],[5445],[5446],[5447],[5448],[5449],[5450],[5451],[5452],[5453],[5454],[5455],[5456],[5457],[5458],[5459],[5460],[5461],[5462],[5463],[5464],[5465],[5466],[5467],[5468],[5469],[5470],[5471],[5472],[5473],[5474],[5475],[5476],[5477],[5478],[5479],[5480],[5481],[5482],[5483],[5484],[5485],[5486],[5487],[5488],[5489],[5490],[5491],[5492],[5493],[5494],[5495],[5496],[5497],[5498],[5499],[5500],[5501],[5502],[5503],[5504],[5505],[5506],[5507],[5508],[5509],[5510],[5511],[5512],[5513],[5514],[5515],[5516],[5517],[5518],[5519],[5520],[5521],[5522],[5523],[5524],[5525],[5526],[5527],[5528],[5529],[5530],[5531],[5532],[5533],[5534],[5535],[5536],[5537],[5538],[5539],[5540],[5541],[5542],[5543],[5544],[5545],[5546],[5547],[5548],[5549],[5550],[5551],[5552],[5553],[5554],[5555],[5556],[5557],[5558],[5559],[5560],[5561],[5562],[5563],[5564],[5565],[5566],[5567],[5568],[5569],[5570],[5571],[5572],[5573],[5574],[5575],[5576],[5577],[5578],[5579],[5580],[5581],[5582],[5583],[5584],[5585],[5586],[5587],[5588],[5589],[5590],[5591],[5592],[5593],[5594],[5595],[5596],[5597],[5598],[5599],[5600],[5601],[5602],[5603],[5604],[5605],[5606],[5607],[5608],[5609],[5610],[5611],[5612],[5613],[5614],[5615],[5616],[5617],[5618],[5619],[5620],[5621],[5622],[5623],[5624],[5625],[5626],[5627],[5628],[5629],[5630],[5631],[5632],[5633],[5634],[5635],[5636],[5637],[5638],[5639],[5640],[5641],[5642],[5643],[5644],[5645],[5646],[5647],[5648],[5649],[5650],[5651],[5652],[5653],[5654],[5655],[5656],[5657],[5658],[5659],[5660],[5661],[5662],[5663],[5664],[5665],[5666],[5667],[5668],[5669],[5670],[5671],[5672],[5673],[5674],[5675],[5676],[5677],[5678],[5679],[5680],[5681],[5682],[5683],[5684],[5685],[5686],[5687],[5688],[5689],[5690],[5691],[5692],[5693],[5694],[5695],[5696],[5697],[5698],[5699],[5700],[5701],[5702],[5703],[5704],[5705],[5706],[5707],[5708],[5709],[5710],[5711],[5712],[5713],[5714],[5715],[5716],[5717],[5718],[5719],[5720],[5721],[5722],[5723],[5724],[5725],[5726],[5727],[5728],[5729],[5730],[5731],[5732],[5733],[5734],[5735],[5736],[5737],[5738],[5739],[5740],[5741],[5742],[5743],[5744],[5745],[5746],[5747],[5748],[5749],[5750],[5751],[5752],[5753],[5754],[5755],[5756],[5757],[5758],[5759],[5760],[5761],[5762],[5763],[5764],[5765],[5766],[5767],[5768],[5769],[5770],[5771],[5772],[5773],[5774],[5775],[5776],[5777],[5778],[5779],[5780],[5781],[5782],[5783],[5784],[5785],[5786],[5787],[5788],[5789],[5790],[5791],[5792],[5793],[5794],[5795],[5796],[5797],[5798],[5799],[5800],[5801],[5802],[5803],[5804],[5805],[5806],[5807],[5808],[5809],[5810],[5811],[5812],[5813],[5814],[5815],[5816],[5817],[5818],[5819],[5820],[5821],[5822],[5823],[5824],[5825],[5826],[5827],[5828],[5829],[5830],[5831],[5832],[5833],[5834],[5835],[5836],[5837],[5838],[5839],[5840],[5841],[5842],[5843],[5844],[5845],[5846],[5847],[5848],[5849],[5850],[5851],[5852],[5853],[5854],[5855],[5856],[5857],[5858],[5859],[5860],[5861],[5862],[5863],[5864],[5865],[5866],[5867],[5868],[5869],[5870],[5871],[5872],[5873],[5874],[5875],[5876],[5877],[5878],[5879],[5880],[5881],[5882],[5883],[5884],[5885],[5886],[5887],[5888],[5889],[5890],[5891],[5892],[5893],[5894],[5895],[5896],[5897],[5898],[5899],[5900],[5901],[5902],[5903],[5904],[5905],[5906],[5907],[5908],[5909],[5910],[5911],[5912],[5913],[5914],[5915],[5916],[5917],[5918],[5919],[5920],[5921],[5922],[5923],[5924],[5925],[5926],[5927],[5928],[5929],[5930],[5931],[5932],[5933],[5934],[5935],[5936],[5937],[5938],[5939],[5940],[5941],[5942],[5943],[5944],[5945],[5946],[5947],[5948],[5949],[5950],[5951],[5952],[5953],[5954],[5955],[5956],[5957],[5958],[5959],[5960],[5961],[5962],[5963],[5964],[5965],[5966],[5967],[5968],[5969],[5970],[5971],[5972],[5973],[5974],[5975],[5976],[5977],[5978],[5979],[5980],[5981],[5982],[5983],[5984],[5985],[5986],[5987],[5988],[5989],[5990],[5991],[5992],[5993],[5994],[5995],[5996],[5997],[5998],[5999],[6000],[6001],[6002],[6003],[6004],[6005],[6006],[6007],[6008],[6009],[6010],[6011],[6012],[6013],[6014],[6015],[6016],[6017],[6018],[6019],[6020],[6021],[6022],[6023],[6024],[6025],[6026],[6027],[6028],[6029],[6030],[6031],[6032],[6033],[6034],[6035],[6036],[6037],[6038],[6039],[6040],[6041],[6042],[6043],[6044],[6045],[6046],[6047],[6048],[6049],[6050],[6051],[6052],[6053],[6054],[6055],[6056],[6057],[6058],[6059],[6060],[6061],[6062],[6063],[6064],[6065],[6066],[6067],[6068],[6069],[6070],[6071],[6072],[6073],[6074],[6075],[6076],[6077],[6078],[6079],[6080],[6081],[6082],[6083],[6084],[6085],[6086],[6087],[6088],[6089],[6090],[6091],[6092],[6093],[6094],[6095],[6096],[6097],[6098],[6099],[6100],[6101],[6102],[6103],[6104],[6105],[6106],[6107],[6108],[6109],[6110],[6111],[6112],[6113],[6114],[6115],[6116],[6117],[6118],[6119],[6120],[6121],[6122],[6123],[6124],[6125],[6126],[6127],[6128],[6129],[6130],[6131],[6132],[6133],[6134],[6135],[6136],[6137],[6138],[6139],[6140],[6141],[6142],[6143],[6144],[6145],[6146],[6147],[6148],[6149],[6150],[6151],[6152],[6153],[6154],[6155],[6156],[6157],[6158],[6159],[6160],[6161],[6162],[6163],[6164],[6165],[6166],[6167],[6168],[6169],[6170],[6171],[6172],[6173],[6174],[6175],[6176],[6177],[6178],[6179],[6180],[6181],[6182],[6183],[6184],[6185],[6186],[6187],[6188],[6189],[6190],[6191],[6192],[6193],[6194],[6195],[6196],[6197],[6198],[6199],[6200],[6201],[6202],[6203],[6204],[6205],[6206],[6207],[6208],[6209],[6210],[6211],[6212],[6213],[6214],[6215],[6216],[6217],[6218],[6219],[6220],[6221],[6222],[6223],[6224],[6225],[6226],[6227],[6228],[6229],[6230],[6231],[6232],[6233],[6234],[6235],[6236],[6237],[6238],[6239],[6240],[6241],[6242],[6243],[6244],[6245],[6246],[6247],[6248],[6249],[6250],[6251],[6252],[6253],[6254],[6255],[6256],[6257],[6258],[6259],[6260],[6261],[6262],[6263],[6264],[6265],[6266],[6267],[6268],[6269],[6270],[6271],[6272],[6273],[6274],[6275],[6276],[6277],[6278],[6279],[6280],[6281],[6282],[6283],[6284],[6285],[6286],[6287],[6288],[6289],[6290],[6291],[6292],[6293],[6294],[6295],[6296],[6297],[6298],[6299],[6300],[6301],[6302],[6303],[6304],[6305],[6306],[6307],[6308],[6309],[6310],[6311],[6312],[6313],[6314],[6315],[6316],[6317],[6318],[6319],[6320],[6321],[6322],[6323],[6324],[6325],[6326],[6327],[6328],[6329],[6330],[6331],[6332],[6333],[6334],[6335],[6336],[6337],[6338],[6339],[6340],[6341],[6342],[6343],[6344],[6345],[6346],[6347],[6348],[6349],[6350],[6351],[6352],[6353],[6354],[6355],[6356],[6357],[6358],[6359],[6360],[6361],[6362],[6363],[6364],[6365],[6366],[6367],[6368],[6369],[6370],[6371],[6372],[6373],[6374],[6375],[6376],[6377],[6378],[6379],[6380],[6381],[6382],[6383],[6384],[6385],[6386],[6387],[6388],[6389],[6390],[6391],[6392],[6393],[6394],[6395],[6396],[6397],[6398],[6399],[6400],[6401],[6402],[6403],[6404],[6405],[6406],[6407],[6408],[6409],[6410],[6411],[6412],[6413],[6414],[6415],[6416],[6417],[6418],[6419],[6420],[6421],[6422],[6423],[6424],[6425],[6426],[6427],[6428],[6429],[6430],[6431],[6432],[6433],[6434],[6435],[6436],[6437],[6438],[6439],[6440],[6441],[6442],[6443],[6444],[6445],[6446],[6447],[6448],[6449],[6450],[6451],[6452],[6453],[6454],[6455],[6456],[6457],[6458],[6459],[6460],[6461],[6462],[6463],[6464],[6465],[6466],[6467],[6468],[6469],[6470],[6471],[6472],[6473],[6474],[6475],[6476],[6477],[6478],[6479],[6480],[6481],[6482],[6483],[6484],[6485],[6486],[6487],[6488],[6489],[6490],[6491],[6492],[6493],[6494],[6495],[6496],[6497],[6498],[6499],[6500],[6501],[6502],[6503],[6504],[6505],[6506],[6507],[6508],[6509],[6510],[6511],[6512],[6513],[6514],[6515],[6516],[6517],[6518],[6519],[6520],[6521],[6522],[6523],[6524],[6525],[6526],[6527],[6528],[6529],[6530],[6531],[6532],[6533],[6534],[6535],[6536],[6537],[6538],[6539],[6540],[6541],[6542],[6543],[6544],[6545],[6546],[6547],[6548],[6549],[6550],[6551],[6552],[6553],[6554],[6555],[6556],[6557],[6558],[6559],[6560],[6561],[6562],[6563],[6564],[6565],[6566],[6567],[6568],[6569],[6570],[6571],[6572],[6573],[6574],[6575],[6576],[6577],[6578],[6579],[6580],[6581],[6582],[6583],[6584],[6585],[6586],[6587],[6588],[6589],[6590],[6591],[6592],[6593],[6594],[6595],[6596],[6597],[6598],[6599],[6600],[6601],[6602],[6603],[6604],[6605],[6606],[6607],[6608],[6609],[6610],[6611],[6612],[6613],[6614],[6615],[6616],[6617],[6618],[6619],[6620],[6621],[6622],[6623],[6624],[6625],[6626],[6627],[6628],[6629],[6630],[6631],[6632],[6633],[6634],[6635],[6636],[6637],[6638],[6639],[6640],[6641],[6642],[6643],[6644],[6645],[6646],[6647],[6648],[6649],[6650],[6651],[6652],[6653],[6654],[6655],[6656],[6657],[6658],[6659],[6660],[6661],[6662],[6663],[6664],[6665],[6666],[6667],[6668],[6669],[6670],[6671],[6672],[6673],[6674],[6675],[6676],[6677],[6678],[6679],[6680],[6681],[6682],[6683],[6684],[6685],[6686],[6687],[6688],[6689],[6690],[6691],[6692],[6693],[6694],[6695],[6696],[6697],[6698],[6699],[6700],[6701],[6702],[6703],[6704],[6705],[6706],[6707],[6708],[6709],[6710],[6711],[6712],[6713],[6714],[6715],[6716],[6717],[6718],[6719],[6720],[6721],[6722],[6723],[6724],[6725],[6726],[6727],[6728],[6729],[6730],[6731],[6732],[6733],[6734],[6735],[6736],[6737],[6738],[6739],[6740],[6741],[6742],[6743],[6744],[6745],[6746],[6747],[6748],[6749],[6750],[6751],[6752],[6753],[6754],[6755],[6756],[6757],[6758],[6759],[6760],[6761],[6762],[6763],[6764],[6765],[6766],[6767],[6768],[6769],[6770],[6771],[6772],[6773],[6774],[6775],[6776],[6777],[6778],[6779],[6780],[6781],[6782],[6783],[6784],[6785],[6786],[6787],[6788],[6789],[6790],[6791],[6792],[6793],[6794],[6795],[6796],[6797],[6798],[6799],[6800],[6801],[6802],[6803],[6804],[6805],[6806],[6807],[6808],[6809],[6810],[6811],[6812],[6813],[6814],[6815],[6816],[6817],[6818],[6819],[6820],[6821],[6822],[6823],[6824],[6825],[6826],[6827],[6828],[6829],[6830],[6831],[6832],[6833],[6834],[6835],[6836],[6837],[6838],[6839],[6840],[6841],[6842],[6843],[6844],[6845],[6846],[6847],[6848],[6849],[6850],[6851],[6852],[6853],[6854],[6855],[6856],[6857],[6858],[6859],[6860],[6861],[6862],[6863],[6864],[6865],[6866],[6867],[6868],[6869],[6870],[6871],[6872],[6873],[6874],[6875],[6876],[6877],[6878],[6879],[6880],[6881],[6882],[6883],[6884],[6885],[6886],[6887],[6888],[6889],[6890],[6891],[6892],[6893],[6894],[6895],[6896],[6897],[6898],[6899],[6900],[6901],[6902],[6903],[6904],[6905],[6906],[6907],[6908],[6909],[6910],[6911],[6912],[6913],[6914],[6915],[6916],[6917],[6918],[6919],[6920],[6921],[6922],[6923],[6924],[6925],[6926],[6927],[6928],[6929],[6930],[6931],[6932],[6933],[6934],[6935],[6936],[6937],[6938],[6939],[6940],[6941],[6942],[6943],[6944],[6945],[6946],[6947],[6948],[6949],[6950],[6951],[6952],[6953],[6954],[6955],[6956],[6957],[6958],[6959],[6960],[6961],[6962],[6963],[6964],[6965],[6966],[6967],[6968],[6969],[6970],[6971],[6972],[6973],[6974],[6975],[6976],[6977],[6978],[6979],[6980],[6981],[6982],[6983],[6984],[6985],[6986],[6987],[6988],[6989],[6990],[6991],[6992],[6993],[6994],[6995],[6996],[6997],[6998],[6999],[7000],[7001],[7002],[7003],[7004],[7005],[7006],[7007],[7008],[7009],[7010],[7011],[7012],[7013],[7014],[7015],[7016],[7017],[7018],[7019],[7020],[7021],[7022],[7023],[7024],[7025],[7026],[7027],[7028],[7029],[7030],[7031],[7032],[7033],[7034],[7035],[7036],[7037],[7038],[7039],[7040],[7041],[7042],[7043],[7044],[7045],[7046],[7047],[7048],[7049],[7050],[7051],[7052],[7053],[7054],[7055],[7056],[7057],[7058],[7059],[7060],[7061],[7062],[7063],[7064],[7065],[7066],[7067],[7068],[7069],[7070],[7071],[7072],[7073],[7074],[7075],[7076],[7077],[7078],[7079],[7080],[7081],[7082],[7083],[7084],[7085],[7086],[7087],[7088],[7089],[7090],[7091],[7092],[7093],[7094],[7095],[7096],[7097],[7098],[7099],[7100],[7101],[7102],[7103],[7104],[7105],[7106],[7107],[7108],[7109],[7110],[7111],[7112],[7113],[7114],[7115],[7116],[7117],[7118],[7119],[7120],[7121],[7122],[7123],[7124],[7125],[7126],[7127],[7128],[7129],[7130],[7131],[7132],[7133],[7134],[7135],[7136],[7137],[7138],[7139],[7140],[7141],[7142],[7143],[7144],[7145],[7146],[7147],[7148],[7149],[7150],[7151],[7152],[7153],[7154],[7155],[7156],[7157],[7158],[7159],[7160],[7161],[7162],[7163],[7164],[7165],[7166],[7167],[7168],[7169],[7170],[7171],[7172],[7173],[7174],[7175],[7176],[7177],[7178],[7179],[7180],[7181],[7182],[7183],[7184],[7185],[7186],[7187],[7188],[7189],[7190],[7191],[7192],[7193],[7194],[7195],[7196],[7197],[7198],[7199],[7200],[7201],[7202],[7203],[7204],[7205],[7206],[7207],[7208],[7209],[7210],[7211],[7212],[7213],[7214],[7215],[7216],[7217],[7218],[7219],[7220],[7221],[7222],[7223],[7224],[7225],[7226],[7227],[7228],[7229],[7230],[7231],[7232],[7233],[7234],[7235],[7236],[7237],[7238],[7239],[7240],[7241],[7242],[7243],[7244],[7245],[7246],[7247],[7248],[7249],[7250],[7251],[7252],[7253],[7254],[7255],[7256],[7257],[7258],[7259],[7260],[7261],[7262],[7263],[7264],[7265],[7266],[7267],[7268],[7269],[7270],[7271],[7272],[7273],[7274],[7275],[7276],[7277],[7278],[7279],[7280],[7281],[7282],[7283],[7284],[7285],[7286],[7287],[7288],[7289],[7290],[7291],[7292],[7293],[7294],[7295],[7296],[7297],[7298],[7299],[7300],[7301],[7302],[7303],[7304],[7305],[7306],[7307],[7308],[7309],[7310],[7311],[7312],[7313],[7314],[7315],[7316],[7317],[7318],[7319],[7320],[7321],[7322],[7323],[7324],[7325],[7326],[7327],[7328],[7329],[7330],[7331],[7332],[7333],[7334],[7335],[7336],[7337],[7338],[7339],[7340],[7341],[7342],[7343],[7344],[7345],[7346],[7347],[7348],[7349],[7350],[7351],[7352],[7353],[7354],[7355],[7356],[7357],[7358],[7359],[7360],[7361],[7362],[7363],[7364],[7365],[7366],[7367],[7368],[7369],[7370],[7371],[7372],[7373],[7374],[7375],[7376],[7377],[7378],[7379],[7380],[7381],[7382],[7383],[7384],[7385],[7386],[7387],[7388],[7389],[7390],[7391],[7392],[7393],[7394],[7395],[7396],[7397],[7398],[7399],[7400],[7401],[7402],[7403],[7404],[7405],[7406],[7407],[7408],[7409],[7410],[7411],[7412],[7413],[7414],[7415],[7416],[7417],[7418],[7419],[7420],[7421],[7422],[7423],[7424],[7425],[7426],[7427],[7428],[7429],[7430],[7431],[7432],[7433],[7434],[7435],[7436],[7437],[7438],[7439],[7440],[7441],[7442],[7443],[7444],[7445],[7446],[7447],[7448],[7449],[7450],[7451],[7452],[7453],[7454],[7455],[7456],[7457],[7458],[7459],[7460],[7461],[7462],[7463],[7464],[7465],[7466],[7467],[7468],[7469],[7470],[7471],[7472],[7473],[7474],[7475],[7476],[7477],[7478],[7479],[7480],[7481],[7482],[7483],[7484],[7485],[7486],[7487],[7488],[7489],[7490],[7491],[7492],[7493],[7494],[7495],[7496],[7497],[7498],[7499],[7500],[7501],[7502],[7503],[7504],[7505],[7506],[7507],[7508],[7509],[7510],[7511],[7512],[7513],[7514],[7515],[7516],[7517],[7518],[7519],[7520],[7521],[7522],[7523],[7524],[7525],[7526],[7527],[7528],[7529],[7530],[7531],[7532],[7533],[7534],[7535],[7536],[7537],[7538],[7539],[7540],[7541],[7542],[7543],[7544],[7545],[7546],[7547],[7548],[7549],[7550],[7551],[7552],[7553],[7554],[7555],[7556],[7557],[7558],[7559],[7560],[7561],[7562],[7563],[7564],[7565],[7566],[7567],[7568],[7569],[7570],[7571],[7572],[7573],[7574],[7575],[7576],[7577],[7578],[7579],[7580],[7581],[7582],[7583],[7584],[7585],[7586],[7587],[7588],[7589],[7590],[7591],[7592],[7593],[7594],[7595],[7596],[7597],[7598],[7599],[7600],[7601],[7602],[7603],[7604],[7605],[7606],[7607],[7608],[7609],[7610],[7611],[7612],[7613],[7614],[7615],[7616],[7617],[7618],[7619],[7620],[7621],[7622],[7623],[7624],[7625],[7626],[7627],[7628],[7629],[7630],[7631],[7632],[7633],[7634],[7635],[7636],[7637],[7638],[7639],[7640],[7641],[7642],[7643],[7644],[7645],[7646],[7647],[7648],[7649],[7650],[7651],[7652],[7653],[7654],[7655],[7656],[7657],[7658],[7659],[7660],[7661],[7662],[7663],[7664],[7665],[7666],[7667],[7668],[7669],[7670],[7671],[7672],[7673],[7674],[7675],[7676],[7677],[7678],[7679],[7680],[7681],[7682],[7683],[7684],[7685],[7686],[7687],[7688],[7689],[7690],[7691],[7692],[7693],[7694],[7695],[7696],[7697],[7698],[7699],[7700],[7701],[7702],[7703],[7704],[7705],[7706],[7707],[7708],[7709],[7710],[7711],[7712],[7713],[7714],[7715],[7716],[7717],[7718],[7719],[7720],[7721],[7722],[7723],[7724],[7725],[7726],[7727],[7728],[7729],[7730],[7731],[7732],[7733],[7734],[7735],[7736],[7737],[7738],[7739],[7740],[7741],[7742],[7743],[7744],[7745],[7746],[7747],[7748],[7749],[7750],[7751],[7752],[7753],[7754],[7755],[7756],[7757],[7758],[7759],[7760],[7761],[7762],[7763],[7764],[7765],[7766],[7767],[7768],[7769],[7770],[7771],[7772],[7773],[7774],[7775],[7776],[7777],[7778],[7779],[7780],[7781],[7782],[7783],[7784],[7785],[7786],[7787],[7788],[7789],[7790],[7791],[7792],[7793],[7794],[7795],[7796],[7797],[7798],[7799],[7800],[7801],[7802],[7803],[7804],[7805],[7806],[7807],[7808],[7809],[7810],[7811],[7812],[7813],[7814],[7815],[7816],[7817],[7818],[7819],[7820],[7821],[7822],[7823],[7824],[7825],[7826],[7827],[7828],[7829],[7830],[7831],[7832],[7833],[7834],[7835],[7836],[7837],[7838],[7839],[7840],[7841],[7842],[7843],[7844],[7845],[7846],[7847],[7848],[7849],[7850],[7851],[7852],[7853],[7854],[7855],[7856],[7857],[7858],[7859],[7860],[7861],[7862],[7863],[7864],[7865],[7866],[7867],[7868],[7869],[7870],[7871],[7872],[7873],[7874],[7875],[7876],[7877],[7878],[7879],[7880],[7881],[7882],[7883],[7884],[7885],[7886],[7887],[7888],[7889],[7890],[7891],[7892],[7893],[7894],[7895],[7896],[7897],[7898],[7899],[7900],[7901],[7902],[7903],[7904],[7905],[7906],[7907],[7908],[7909],[7910],[7911],[7912],[7913],[7914],[7915],[7916],[7917],[7918],[7919],[7920],[7921],[7922],[7923],[7924],[7925],[7926],[7927],[7928],[7929],[7930],[7931],[7932],[7933],[7934],[7935],[7936],[7937],[7938],[7939],[7940],[7941],[7942],[7943],[7944],[7945],[7946],[7947],[7948],[7949],[7950],[7951],[7952],[7953],[7954],[7955],[7956],[7957],[7958],[7959],[7960],[7961],[7962],[7963],[7964],[7965],[7966],[7967],[7968],[7969],[7970],[7971],[7972],[7973],[7974],[7975],[7976],[7977],[7978],[7979],[7980],[7981],[7982],[7983],[7984],[7985],[7986],[7987],[7988],[7989],[7990],[7991],[7992],[7993],[7994],[7995],[7996],[7997],[7998],[7999],[8000],[8001],[8002],[8003],[8004],[8005],[8006],[8007],[8008],[8009],[8010],[8011],[8012],[8013],[8014],[8015],[8016],[8017],[8018],[8019],[8020],[8021],[8022],[8023],[8024],[8025],[8026],[8027],[8028],[8029],[8030],[8031],[8032],[8033],[8034],[8035],[8036],[8037],[8038],[8039],[8040],[8041],[8042],[8043],[8044],[8045],[8046],[8047],[8048],[8049],[8050],[8051],[8052],[8053],[8054],[8055],[8056],[8057],[8058],[8059],[8060],[8061],[8062],[8063],[8064],[8065],[8066],[8067],[8068],[8069],[8070],[8071],[8072],[8073],[8074],[8075],[8076],[8077],[8078],[8079],[8080],[8081],[8082],[8083],[8084],[8085],[8086],[8087],[8088],[8089],[8090],[8091],[8092],[8093],[8094],[8095],[8096],[8097],[8098],[8099],[8100],[8101],[8102],[8103],[8104],[8105],[8106],[8107],[8108],[8109],[8110],[8111],[8112],[8113],[8114],[8115],[8116],[8117],[8118],[8119],[8120],[8121],[8122],[8123],[8124],[8125],[8126],[8127],[8128],[8129],[8130],[8131],[8132],[8133],[8134],[8135],[8136],[8137],[8138],[8139],[8140],[8141],[8142],[8143],[8144],[8145],[8146],[8147],[8148],[8149],[8150],[8151],[8152],[8153],[8154],[8155],[8156],[8157],[8158],[8159],[8160],[8161],[8162],[8163],[8164],[8165],[8166],[8167],[8168],[8169],[8170],[8171],[8172],[8173],[8174],[8175],[8176],[8177],[8178],[8179],[8180],[8181],[8182],[8183],[8184],[8185],[8186],[8187],[8188],[8189],[8190],[8191],[8192],[8193],[8194],[8195],[8196],[8197],[8198],[8199],[8200],[8201],[8202],[8203],[8204],[8205],[8206],[8207],[8208],[8209],[8210],[8211],[8212],[8213],[8214],[8215],[8216],[8217],[8218],[8219],[8220],[8221],[8222],[8223],[8224],[8225],[8226],[8227],[8228],[8229],[8230],[8231],[8232],[8233],[8234],[8235],[8236],[8237],[8238],[8239],[8240],[8241],[8242],[8243],[8244],[8245],[8246],[8247],[8248],[8249],[8250],[8251],[8252],[8253],[8254],[8255],[8256],[8257],[8258],[8259],[8260],[8261],[8262],[8263],[8264],[8265],[8266],[8267],[8268],[8269],[8270],[8271],[8272],[8273],[8274],[8275],[8276],[8277],[8278],[8279],[8280],[8281],[8282],[8283],[8284],[8285],[8286],[8287],[8288],[8289],[8290],[8291],[8292],[8293],[8294],[8295],[8296],[8297],[8298],[8299],[8300],[8301],[8302],[8303],[8304],[8305],[8306],[8307],[8308],[8309],[8310],[8311],[8312],[8313],[8314],[8315],[8316],[8317],[8318],[8319],[8320],[8321],[8322],[8323],[8324],[8325],[8326],[8327],[8328],[8329],[8330],[8331],[8332],[8333],[8334],[8335],[8336],[8337],[8338],[8339],[8340],[8341],[8342],[8343],[8344],[8345],[8346],[8347],[8348],[8349],[8350],[8351],[8352],[8353],[8354],[8355],[8356],[8357],[8358],[8359],[8360],[8361],[8362],[8363],[8364],[8365],[8366],[8367],[8368],[8369],[8370],[8371],[8372],[8373],[8374],[8375],[8376],[8377],[8378],[8379],[8380],[8381],[8382],[8383],[8384],[8385],[8386],[8387],[8388],[8389],[8390],[8391],[8392],[8393],[8394],[8395],[8396],[8397],[8398],[8399],[8400],[8401],[8402],[8403],[8404],[8405],[8406],[8407],[8408],[8409],[8410],[8411],[8412],[8413],[8414],[8415],[8416],[8417],[8418],[8419],[8420],[8421],[8422],[8423],[8424],[8425],[8426],[8427],[8428],[8429],[8430],[8431],[8432],[8433],[8434],[8435],[8436],[8437],[8438],[8439],[8440],[8441],[8442],[8443],[8444],[8445],[8446],[8447],[8448],[8449],[8450],[8451],[8452],[8453],[8454],[8455],[8456],[8457],[8458],[8459],[8460],[8461],[8462],[8463],[8464],[8465],[8466],[8467],[8468],[8469],[8470],[8471],[8472],[8473],[8474],[8475],[8476],[8477],[8478],[8479],[8480],[8481],[8482],[8483],[8484],[8485],[8486],[8487],[8488],[8489],[8490],[8491],[8492],[8493],[8494],[8495],[8496],[8497],[8498],[8499],[8500],[8501],[8502],[8503],[8504],[8505],[8506],[8507],[8508],[8509],[8510],[8511],[8512],[8513],[8514],[8515],[8516],[8517],[8518],[8519],[8520],[8521],[8522],[8523],[8524],[8525],[8526],[8527],[8528],[8529],[8530],[8531],[8532],[8533],[8534],[8535],[8536],[8537],[8538],[8539],[8540],[8541],[8542],[8543],[8544],[8545],[8546],[8547],[8548],[8549],[8550],[8551],[8552],[8553],[8554],[8555],[8556],[8557],[8558],[8559],[8560],[8561],[8562],[8563],[8564],[8565],[8566],[8567],[8568],[8569],[8570],[8571],[8572],[8573],[8574],[8575],[8576],[8577],[8578],[8579],[8580],[8581],[8582],[8583],[8584],[8585],[8586],[8587],[8588],[8589],[8590],[8591],[8592],[8593],[8594],[8595],[8596],[8597],[8598],[8599],[8600],[8601],[8602],[8603],[8604],[8605],[8606],[8607],[8608],[8609],[8610],[8611],[8612],[8613],[8614],[8615],[8616],[8617],[8618],[8619],[8620],[8621],[8622],[8623],[8624],[8625],[8626],[8627],[8628],[8629],[8630],[8631],[8632],[8633],[8634],[8635],[8636],[8637],[8638],[8639],[8640],[8641],[8642],[8643],[8644],[8645],[8646],[8647],[8648],[8649],[8650],[8651],[8652],[8653],[8654],[8655],[8656],[8657],[8658],[8659],[8660],[8661],[8662],[8663],[8664],[8665],[8666],[8667],[8668],[8669],[8670],[8671],[8672],[8673],[8674],[8675],[8676],[8677],[8678],[8679],[8680],[8681],[8682],[8683],[8684],[8685],[8686],[8687],[8688],[8689],[8690],[8691],[8692],[8693],[8694],[8695],[8696],[8697],[8698],[8699],[8700],[8701],[8702],[8703],[8704],[8705],[8706],[8707],[8708],[8709],[8710],[8711],[8712],[8713],[8714],[8715],[8716],[8717],[8718],[8719],[8720],[8721],[8722],[8723],[8724],[8725],[8726],[8727],[8728],[8729],[8730],[8731],[8732],[8733],[8734],[8735],[8736],[8737],[8738],[8739],[8740],[8741],[8742],[8743],[8744],[8745],[8746],[8747],[8748],[8749],[8750],[8751],[8752],[8753],[8754],[8755],[8756],[8757],[8758],[8759],[8760],[8761],[8762],[8763],[8764],[8765],[8766],[8767],[8768],[8769],[8770],[8771],[8772],[8773],[8774],[8775],[8776],[8777],[8778],[8779],[8780],[8781],[8782],[8783],[8784],[8785],[8786],[8787],[8788],[8789],[8790],[8791],[8792],[8793],[8794],[8795],[8796],[8797],[8798],[8799],[8800],[8801],[8802],[8803],[8804],[8805],[8806],[8807],[8808],[8809],[8810],[8811],[8812],[8813],[8814],[8815],[8816],[8817],[8818],[8819],[8820],[8821],[8822],[8823],[8824],[8825],[8826],[8827],[8828],[8829],[8830],[8831],[8832],[8833],[8834],[8835],[8836],[8837],[8838],[8839],[8840],[8841],[8842],[8843],[8844],[8845],[8846],[8847],[8848],[8849],[8850],[8851],[8852],[8853],[8854],[8855],[8856],[8857],[8858],[8859],[8860],[8861],[8862],[8863],[8864],[8865],[8866],[8867],[8868],[8869],[8870],[8871],[8872],[8873],[8874],[8875],[8876],[8877],[8878],[8879],[8880],[8881],[8882],[8883],[8884],[8885],[8886],[8887],[8888],[8889],[8890],[8891],[8892],[8893],[8894],[8895],[8896],[8897],[8898],[8899],[8900],[8901],[8902],[8903],[8904],[8905],[8906],[8907],[8908],[8909],[8910],[8911],[8912],[8913],[8914],[8915],[8916],[8917],[8918],[8919],[8920],[8921],[8922],[8923],[8924],[8925],[8926],[8927],[8928],[8929],[8930],[8931],[8932],[8933],[8934],[8935],[8936],[8937],[8938],[8939],[8940],[8941],[8942],[8943],[8944],[8945],[8946],[8947],[8948],[8949],[8950],[8951],[8952],[8953],[8954],[8955],[8956],[8957],[8958],[8959],[8960],[8961],[8962],[8963],[8964],[8965],[8966],[8967],[8968],[8969],[8970],[8971],[8972],[8973],[8974],[8975],[8976],[8977],[8978],[8979],[8980],[8981],[8982],[8983],[8984],[8985],[8986],[8987],[8988],[8989],[8990],[8991],[8992],[8993],[8994],[8995],[8996],[8997],[8998],[8999],[9000],[9001],[9002],[9003],[9004],[9005],[9006],[9007],[9008],[9009],[9010],[9011],[9012],[9013],[9014],[9015],[9016],[9017],[9018],[9019],[9020],[9021],[9022],[9023],[9024],[9025],[9026],[9027],[9028],[9029],[9030],[9031],[9032],[9033],[9034],[9035],[9036],[9037],[9038],[9039],[9040],[9041],[9042],[9043],[9044],[9045],[9046],[9047],[9048],[9049],[9050],[9051],[9052],[9053],[9054],[9055],[9056],[9057],[9058]]},{"type":"MultiLineString","arcs":[[9059],[9060],[9061],[9062],[9063],[9064],[9065],[9066],[9067]]},{"type":"MultiLineString","arcs":[[9068],[9069],[9070],[9071],[9072],[9073],[9074],[9075],[9076],[9077],[9078],[9079],[9080],[9081],[9082],[9083],[9084],[9085],[9086],[9087],[9088],[9089],[9090],[9091],[9092],[9093],[9094],[9095],[9096]]},{"type":"MultiLineString","arcs":[[9071],[9072],[9073],[9074],[9075],[9076],[9077],[9078],[9079],[9080],[9081],[9082],[9083],[9084],[9085],[9086],[9087],[9088],[9089],[9090],[9091],[9092],[9093],[9094],[9095],[9096]]},{"type":"MultiLineString","arcs":[[9097],[9098],[9099],[9100],[9101],[9102],[9103],[9104],[9105],[9106],[9107],[9108],[9109],[9110],[9111],[9112],[9113],[9114],[9115],[9116],[9117],[9118],[9119],[9120],[9121],[9122],[9123],[9124],[9125],[9126],[9127],[9128],[9129],[9130],[9131],[9132],[9133],[9134],[9135],[9136],[9137],[9138],[9139],[9140],[9141],[9142],[9143],[9144]]},{"type":"MultiLineString","arcs":[[9100],[9101],[9102],[9103],[9104],[9105],[9106],[9107],[9108],[9109],[9111],[9112],[9113],[9114],[9115],[9116],[9123],[9145],[9146],[9147],[9148],[9149],[9127],[9150],[9151],[9152],[9153],[9154],[9155],[9156],[9157],[9158],[9159]]},{"type":"MultiLineString","arcs":[[9160],[9161],[9162],[9163],[9164],[9165],[9166],[9167],[9168],[9169],[9170],[9171],[9172],[9173],[9174],[9175],[9176],[9177],[9178],[9179],[9180],[9181],[9182],[9183],[9184],[9185],[9186],[9187],[9188],[9189],[9190],[9191],[9192],[9193],[9194],[9195],[9196],[9197],[9198],[9199],[9200],[9201],[9202],[9203],[9204],[9205],[9206],[9207],[9208],[9209],[9210],[9211],[9212],[9213],[9214],[9215],[9216],[9217],[9218],[9219],[9220],[9221],[9222],[9223],[9224],[9225],[9226],[9227],[9228],[9229],[9230],[9231],[9232],[9233],[9234],[9235],[9236],[9237],[9238],[9239],[9240],[9241],[9242],[9243],[9244],[9245],[9246],[9247],[9248],[9249],[9250],[9251],[9252],[9253],[9254],[9255],[9256],[9257],[9258],[9259],[9260],[9261],[9262],[9263],[9264],[9265],[9266],[9267],[9268],[9269],[9270],[9271],[9272],[9273],[9274],[9275],[9276],[9277],[9278],[9279],[9280],[9281],[9282],[9283],[9284],[9285],[9286],[9287],[9288],[9289],[9290],[9291],[9292],[9293],[9294],[9295],[9296],[9297],[9298],[9299],[9300],[9301],[9302],[9303],[9304],[9305],[9306],[9307],[9308],[9309],[9310],[9311],[9312],[9313],[9314],[9315],[9316],[9317],[9318],[9319],[9320],[9321],[9322],[9323]]},{"type":"MultiLineString","arcs":[[9097],[9098],[9099],[9100],[9101],[9102],[9103],[9104],[9105],[9106],[9107],[9108],[9109],[9110],[9111],[9112],[9113],[9114],[9115],[9116],[9117],[9118],[9119],[9120],[9121],[9122],[9123],[9124],[9125],[9126],[9127],[9128],[9129],[9130],[9131],[9132],[9133],[9134],[9135],[9136],[9137],[9138],[9139],[9140],[9141],[9142],[9143],[9144]]},{"type":"MultiLineString","arcs":[[9324],[9184],[9325],[9326],[9186],[9211],[9327],[9328],[9329],[9330],[9331],[9332],[9333],[9334],[9335],[9336],[9337],[9338],[9339],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9324],[9184],[9325],[9326],[9186],[9211],[9327],[9328],[9329],[9243],[9330],[9251],[9331],[9262],[9263],[9264],[9332],[9333],[9334],[9268],[9335],[9270],[9271],[9336],[9337],[9338],[9277],[9278],[9279],[9280],[9284],[9339],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9344],[9345],[9346],[9347],[9348],[9349],[9350],[9351],[9352],[9353],[9354],[9355],[9356],[9357],[9358],[9359],[9360],[9361],[9362],[9363],[9364],[9365],[9366],[9367],[9368]]},{"type":"MultiLineString","arcs":[[9369],[9370],[9371],[9372],[9373],[9374],[9375],[9376],[9377],[9378],[9379],[9380],[9381],[9382],[9383],[9384],[9385],[9386],[9178],[9387],[9388],[9389],[9179],[9390],[9391],[9392],[9324],[9180],[9181],[9182],[9183],[9184],[9325],[9326],[9185],[9186],[9187],[9188],[9189],[9190],[9191],[9192],[9193],[9194],[9195],[9196],[9197],[9198],[9199],[9200],[9201],[9202],[9203],[9204],[9205],[9206],[9207],[9208],[9209],[9210],[9211],[9212],[9213],[9214],[9215],[9216],[9217],[9218],[9219],[9220],[9221],[9222],[9223],[9224],[9225],[9226],[9227],[9228],[9229],[9230],[9231],[9232],[9233],[9234],[9235],[9327],[9328],[9329],[9236],[9237],[9238],[9239],[9240],[9241],[9242],[9243],[9330],[9244],[9245],[9246],[9247],[9248],[9249],[9250],[9251],[9331],[9252],[9253],[9254],[9255],[9256],[9257],[9258],[9259],[9260],[9261],[9262],[9263],[9264],[9265],[9266],[9332],[9267],[9333],[9334],[9268],[9335],[9269],[9270],[9271],[9272],[9273],[9336],[9337],[9338],[9274],[9275],[9276],[9277],[9278],[9279],[9280],[9281],[9282],[9283],[9284],[9285],[9286],[9287],[9288],[9289],[9290],[9291],[9292],[9293],[9294],[9295],[9296],[9297],[9298],[9299],[9300],[9301],[9302],[9339],[9303],[9304],[9305],[9306],[9307],[9308],[9309],[9310],[9311],[9312],[9313],[9314],[9315],[9316],[9317],[9318],[9319],[9320],[9321],[9322],[9323],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9160],[9161],[9162],[9163],[9164],[9165],[9166],[9167],[9168],[9169],[9170],[9171],[9172],[9173],[9174],[9175],[9176],[9177],[9369],[9370],[9371],[9372],[9373],[9374],[9375],[9376],[9377],[9378],[9379],[9380],[9381],[9382],[9383],[9384],[9385],[9386],[9178],[9387],[9388],[9389],[9179],[9390],[9391],[9392],[9324],[9180],[9181],[9182],[9183],[9184],[9325],[9326],[9185],[9186],[9187],[9188],[9189],[9190],[9191],[9192],[9193],[9194],[9195],[9196],[9197],[9198],[9199],[9200],[9201],[9202],[9203],[9204],[9205],[9206],[9207],[9208],[9209],[9210],[9211],[9212],[9213],[9214],[9215],[9216],[9217],[9218],[9219],[9220],[9221],[9222],[9223],[9224],[9225],[9226],[9227],[9228],[9229],[9230],[9231],[9232],[9233],[9234],[9235],[9327],[9328],[9329],[9236],[9237],[9238],[9239],[9330],[9244],[9245],[9246],[9247],[9248],[9249],[9250],[9331],[9252],[9253],[9254],[9255],[9256],[9257],[9258],[9259],[9260],[9261],[9265],[9266],[9332],[9267],[9333],[9334],[9335],[9269],[9272],[9273],[9336],[9337],[9338],[9274],[9275],[9276],[9281],[9282],[9283],[9285],[9286],[9287],[9288],[9289],[9290],[9291],[9292],[9293],[9294],[9295],[9296],[9297],[9298],[9299],[9300],[9301],[9302],[9339],[9303],[9304],[9305],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9324],[9184],[9325],[9326],[9186],[9211],[9393],[9394],[9395],[9396],[9397],[9398],[9399],[9400],[9401],[9402],[9403],[9404],[9405],[9406],[9327],[9328],[9329],[9240],[9241],[9242],[9407],[9243],[9330],[9251],[9331],[9262],[9263],[9264],[9332],[9333],[9334],[9268],[9335],[9270],[9271],[9336],[9337],[9338],[9277],[9278],[9279],[9280],[9284],[9339],[9306],[9307],[9308],[9309],[9310],[9311],[9312],[9313],[9314],[9315],[9316],[9317],[9318],[9319],[9320],[9321],[9322],[9323],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9160],[9161],[9162],[9163],[9164],[9165],[9166],[9167],[9168],[9169],[9170],[9171],[9172],[9173],[9174],[9175],[9176],[9178],[9179],[9324],[9180],[9181],[9182],[9183],[9184],[9185],[9186],[9187],[9188],[9189],[9190],[9191],[9192],[9193],[9194],[9195],[9196],[9197],[9198],[9199],[9200],[9201],[9202],[9203],[9204],[9205],[9206],[9207],[9208],[9209],[9210],[9211],[9212],[9213],[9214],[9215],[9216],[9217],[9218],[9219],[9220],[9221],[9222],[9223],[9224],[9225],[9226],[9227],[9228],[9229],[9230],[9231],[9232],[9233],[9234],[9235],[9236],[9237],[9238],[9239],[9240],[9241],[9242],[9243],[9244],[9245],[9246],[9247],[9248],[9249],[9250],[9251],[9252],[9253],[9254],[9255],[9256],[9257],[9258],[9259],[9260],[9261],[9262],[9263],[9264],[9265],[9266],[9267],[9268],[9269],[9270],[9271],[9272],[9273],[9274],[9275],[9276],[9277],[9278],[9279],[9280],[9281],[9282],[9283],[9284],[9285],[9286],[9287],[9288],[9289],[9290],[9291],[9292],[9293],[9294],[9295],[9296],[9297],[9298],[9299],[9300],[9301],[9302],[9303],[9304],[9305],[9306],[9307],[9308],[9309],[9310],[9311],[9312],[9313],[9314],[9315],[9316],[9317],[9318],[9319],[9320],[9321],[9322],[9323],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9324],[9325],[9326],[9393],[9394],[9395],[9396],[9397],[9398],[9399],[9400],[9401],[9402],[9403],[9404],[9405],[9406],[9327],[9328],[9329],[9407],[9330],[9331],[9332],[9333],[9334],[9335],[9336],[9337],[9338],[9339],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9240],[9241],[9242],[9243],[9251],[9262],[9263],[9264],[9268],[9270],[9271],[9277],[9278],[9279],[9280],[9284],[9306],[9307],[9308],[9309],[9310],[9311],[9312],[9313],[9314],[9315],[9316],[9317],[9318],[9319],[9320],[9321],[9322],[9323]]},{"type":"MultiLineString","arcs":[[9324],[9325],[9326],[9393],[9394],[9395],[9396],[9397],[9398],[9399],[9400],[9401],[9402],[9403],[9404],[9405],[9406],[9327],[9328],[9329],[9407],[9330],[9331],[9332],[9333],[9334],[9335],[9336],[9337],[9338],[9339],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9408],[9409],[9410],[9411],[9412],[9413],[9414],[9415],[9416],[9417],[9418],[9419],[9420],[9421],[9422],[9423],[9424],[9425],[9426],[9427],[9428],[9429],[9430],[9431],[9432],[9433],[9434],[9435],[9436],[9437]]},{"type":"MultiLineString","arcs":[[9438],[9439,9440,-452,9441,-450,9442,9443,-447,9444,9445,9446,9447,-442,9448,-440,9449,-438,9450,-436,9451,-434,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,-415,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,-403,9481,9482,-400,9483,-398,9484,9485,-395,9486,9487,9488,-391,9489,9490,9491,9492,9493,9494,9495,-383,9496,9497,9498,9499,-378,9500,-376,9501,-374,9502,9503,9504,9505,9506],[9507],[9508,365,9509,367],[9510,9511,336,9512,338,9513,340,9514,9515,343,9516,345,9517,9518,348,9519,9520,9521,352,9522,354,9523,9524,9525,358,9526,9527,9528,9529,9530,9531],[9532,1130,9533,1132,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,473,9549,475,9550,477,9551,479,9552,9553,9554,9555,9556,9557,9558,9559,488,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,504,9575,506,9576,9577,9578,9579,9580,9581,9582,514,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,535,9603,9604,538,9605,9606,9607,9608,9609,9610,9611,9612,547,9613,549,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,560,9624,562,9625,9626,565,9627,9628,9629,9630,9631,9632,9633,9634,9635,575,9636,577,9637,9638,9639,9640,582,9641,9642,9643,586,9644,9645,9646,9647,9648,9649,9650,9651,595,9652,597,9653,9654,9655,9656,602,9657,9658,605,9659,9660,9661,9662,9663,611,9664,613,9665,615,9666,9667,9668,9669,9670,621,9671,9672,9673,9674,9675,9676,628,9677,9678,631,9679,633,9680,9681,9682,9683,9684],[9685,9686,9687,1123,9688,1125,9689,9690,9691],[9692],[9693,744,9694,9695,747,9696,749,9697,751,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,762,9708,9709,765,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,781,9725,9726,784,9727,9728,787,9729,9730,9731,9732,9733,9734,794,9735,796,9736,798,9737,9738,9739,9740,9741,9742,9743,806,9744,808,9745,9746,9747,812,9748,9749,9750,9751,9752,818,9753,9754,9755,9756,823,9757,9758,9759,9760,9761,9762,830,9763,9764,9765,9766,9767,9768,837,9769,9770,840,9771,9772,9773,844,9774,9775,9776,9777,9778,9779,9780,852,9781,854,9782,856,9783,9784,9785,860,9786,9787,9788,9789,9790,866,9791,9792,9793,9794,9795,872,9796,9797,9798,9799,9800,9801,879,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,900,9822,902,9823,9824,9825],[9826],[9827,-466,9828,-464,9829,9830,9831,9832,-459,9833,9834,9835,9836],[9837],[9838],[9839,908,9840,910,9841,9842,9843,914,9844,9845,9846,9847,9848,920,9849,922,9850,924,9851,9852,9853,9854,9855,930,9856,932,9857,9858,935,9859,9860,9861,9862,940,9863,9864,943,9865,945,9866,9867,9868,949,9869,9870,9871,9872,9873,9874,9875,9876,9877],[9878],[9879],[9880,9881,9882,1066,9883,1068,9884,9885,9886,9887,9888,9889,1075,9890,9891,1078,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,1090,9903,1092,9904,9905,9906,9907,9908,1098,9909,9910,9911,1102,9912,9913,9914,1106,9915,9916,1109,9917,9918,9919,9920,9921,1115,9922,9923,9924,1119,9925],[9926,9927,1796,9928,9929,9930,9931,9932,1802,9933,9934,9935,9936,1807,9937,9938,9939,9940,9941,9942,9943,1815,9944,1817,9945,9946,1820,9947,9948,9949,1824,9950,1826,9951,9952,9953,9954,9955,9956,9957,9958,9959,1836,9960,1838,9961,1840,9962,9963,9964,9965,689,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,703,9979,9980,9981,9982,9983,9984,9985,711,9986,9987,9988,9989,9990,9991,9992,719,9993,721,9994,9995,9996,9997,9998,9999,10000,10001,730,10002,10003,10004,10005,10006,736,10007,10008,10009],[10010],[10011],[10012,10013,1035,10014,10015,1038,10016,1040,10017,1042,10018,10019,1045,10020,10021,1048,10022,10023,10024,10025,10026,10027,10028,10029,10030,1058,10031,10032,1061,10033,10034],[10035],[10036],[10037],[1015,10038,10039,1018,10040,10041,10042,10043,10044,1024,10045,1026,10046,1028,10047,1030,10048,1032,10049],[10050],[10051],[10052],[10053],[10054],[10055,10056,2454,10057,10058,10059,10060,10061,10062,10063,10064,10065,2464,10066,10067,10068,10069,2469,10070,10071,10072,2473,10073,2475,10074,2477,10075,2479,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,2490,10086,2492,10087,10088,2495,10089,10090,10091,10092,10093,2501,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,2524,10116,2526,10117,10118,10119,10120,2531,10121,2533,10122,10123,2536,10124,10125,10126,2540,10127,2542,10128,10129,10130,2546,10131,2548,10132,10133,2551,10134,2553,10135,10136,10137,10138,2558,10139,2560,10140,10141,2563,10142,10143,10144,10145,10146,10147,10148,10149,2572,10150,10151,10152,10153,2577,10154,10155,2580,10156,10157,2583,10158,2585,10159,2587,10160,2589,10161,10162,10163,10164,10165,10166,10167,10168,2598,10169,2600,10170,2602,10171,10172,10173,10174,2607,10175,2609,10176,10177,10178,2613,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,2625,10190,2627,10191,10192,10193,2631,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,2643,10205,10206,2646,10207,10208,10209,2650,10210,10211,2653,10212,10213,10214,10215,10216,2659,10217,10218,10219,10220,10221,10222,10223],[10224],[10225],[10226],[10227,10228,10229,10230,10231,10232,10233,10234,969,10235,10236,972,10237,974,10238,10239,10240,10241,10242,980,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,991,10253,10254,10255,10256,996,10257,998,10258,1000,10259,1002,10260,10261,10262,10263,10264,1008,10265,10266,10267,1012,10268],[10269],[10270,10271,2112],[10272,10273,2399,10274,10275,10276,10277,10278,10279,2406,10280,10281,2409,10282,10283,10284,10285,2414,10286,10287,10288,10289,10290,10291,10292,10293,2423,10294,2425,10295,10296,2428,10297,10298,2431,10299,10300,10301,10302,10303,2437,10304,10305,2440,10306,10307,2443,10308,10309,2446,10310,10311,10312,10313,10314,10315],[10316],[10317],[10318,10319,10320,10321,10322,1206,10323,1208,10324,10325,10326,10327,10328,10329,10330,10331,1217,10332,10333,10334,1221,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,1235,10348,1237,10349,10350,1240,10351,10352,10353,10354,1245,10355,10356,10357,10358,1250,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,1262,10370,10371,1265,10372,1267,10373,1269,10374,10375,10376,10377,10378,10379,10380,10381,1278,10382,1280,10383,10384,10385,10386,1285,10387,10388,1288,10389,10390,10391,10392,10393,10394,10395,10396,1297,10397,10398,10399,10400,1302,10401,10402,10403,10404,1307,10405,10406,10407,1311,10408,10409,1314,10410,10411,10412,1318,10413,1320,10414,1322,10415,1324,10416,10417,10418,10419,1329,10420,10421,10422,10423,10424,10425,10426,1337,10427,10428,10429,10430,1342,10431,10432,10433,10434,10435,1348,10436,10437,10438,1352,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,1364,10450,10451,10452,10453,10454,10455,1371,10456,10457,10458,1375,10459,10460,1378,10461,10462,10463,10464,1383,10465,10466,10467,1387,10468,1389,10469,10470,1392,10471,10472,10473,10474,1397,10475,1399,10476,10477,10478,10479,1404,10480,10481,1407,10482],[10483,10484,10485,10486,10487,10488,10489,10490,10491,1582,10492,10493,10494,10495,10496,10497,10498,10499,1591,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,1604,10512,1606,10513,10514,10515,10516,10517,1612,10518,10519,10520,1616,10521,1618,10522,1620,10523,1622,10524,1624,10525,10526,1627,10527,10528,10529,1631,10530,10531,10532,1635,10533,10534,10535,1639,10536,10537,1642,10538,1644,10539,1646,10540,10541,1649,10542,10543,10544,1653,10545,10546,10547,1657,10548,10549,10550,10551,10552,10553,10554,10555,10556,1667,10557,10558,1670,10559,10560,1673,10561,10562,10563,10564,1678,10565,10566,10567,10568,10569,10570,10571,1686,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,1720,10605,10606,1723,10607,1725,10608,1727,10609,10610,10611,10612,1732,10613,10614,10615,10616,10617,10618,10619,1740,10620,10621,1743,10622,10623,1746,10624,1748,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,1761,10637,10638,1764,10639,10640,10641,1768,10642,10643,10644,10645,10646,1774,10647,10648,10649,10650,1779,10651,10652,10653,10654,10655,1785,10656,10657,10658,1789,10659,1791,10660,10661,10662],[10663],[10664],[10665],[10666],[10667],[10668,2034,10669,10670,10671,2038,10672,2040,10673,10674,2043,10675,10676,2046,10677,10678,10679,10680,10681,2052,10682,10683,2055,10684,10685,2058,10686,2060,10687,10688,2063,10689,10690,10691,2067,10692,10693,10694,2071,10695,10696,10697,10698,2076,10699,10700,10701,10702,10703,2082,10704,2084,10705,10706,2087,10707,10708,2090,10709,10710,2093,10711,10712,10713,10714,2098,10715,10716,2101,10717,10718,2104,10719,2106,10720,10721,2109,10722],[10723,10724,10725,10726,10727],[10728,1410,10729,10730,1413,10731,1415,10732,10733,10734,10735,1420,10736,10737,10738,10739,10740,1426,10741,10742,10743,10744,10745,1432,10746,10747,1435,10748,10749,1438,10750,10751,1441,10752,10753,10754,10755,1446,10756,1448,10757,10758,10759,10760,10761,1454,10762,10763,10764,10765,10766,10767,10768,10769,1463,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,1479,10785,10786,10787,10788,1484,10789,1486,10790,1488,10791,10792,1491,10793,1493,10794,10795,1496,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,1511,10810,1513,10811,10812,1516,10813,1518,10814,1520,10815,1522,10816,1524,10817,10818,10819,10820,10821,10822,1531,10823,10824,10825,1535,10826,10827,10828,1539,10829,10830,1542,10831,1544,10832,10833,10834,10835,1549,10836,1551,10837,10838,1554,10839,10840,1557,10841,1559,10842,10843,10844,1563,10845,10846,10847,10848,10849,10850,1570,10851,10852,10853],[10854],[10855],[10856],[10857],[10858,10859,10860,10861,1925,10862,1927,10863,10864,1930,10865,10866,10867,10868,10869,1936,10870,10871,10872,10873,10874,10875,1943,10876,1945,10877,1947,10878,1949,10879,1951,10880,10881,10882,10883,10884,10885,10886,10887,10888,1961,10889,1963,10890,10891,10892,10893,10894,1969,10895,1971,10896,1973,10897,1975,10898,1977,10899,10900,1980,10901,10902,10903,10904,1985,10905,10906,1988,10907,10908,1991,10909,1993,10910,10911,10912,1997,10913,1999,10914,10915,2002,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,2016,10929,10930,2019,10931,10932,10933,2023,10934,2025,10935,2027,10936,10937],[10938,10939,10940,1845,10941,10942,10943,10944,1850,10945,10946,1853,10947,1855,10948,10949,10950,10951,10952,1861,10953,10954,10955,10956,10957],[10958],[10959],[10960],[10961,1149,10962,1151,10963,10964,10965,10966,10967,10968,10969,10970,1160,10971,10972,1163,10973,1165,10974,10975,1168,10976,10977,10978,10979,10980,10981,10982,10983,1177,10984,1179,10985,1181,10986,10987,1184,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,1195,10998,10999,11000,11001,1200,11002],[11003],[11004],[11005],[11006,2114,11007,11008,11009,11010,11011,11012,11013,11014,2123,11015,11016,11017,11018,11019,11020,2130,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,2141,11031,11032,11033,11034,11035,2147,11036,2149,11037,2151,11038,11039,11040,11041,11042,11043,11044,11045,11046,2161,11047,2163,11048,2165,11049,2167,11050,11051,11052,11053,2172,11054,11055,11056,2176,11057,11058,11059,11060,11061,11062,11063,11064,11065,2186,11066,2188,11067,11068,2191,11069,11070,11071,11072,11073,11074,2198,11075,11076,11077,11078,2203,11079,2205,11080,11081,11082,2209,11083,2211,11084,11085,11086,11087,2216,11088,11089,11090,11091,11092,2222,11093,2224,11094,11095,2227,11096,11097,2230,11098,11099,2233,11100,11101,11102,11103,11104,2239,11105,11106,2242,11107,11108,11109,11110,11111,2248,11112,11113,2251,11114,11115,11116],[11117,11118,11119,11120,11121,11122,11123,11124,11125,1878,11126,11127,11128,11129,1883,11130,1885,11131,11132,1888,11133,11134,11135,11136,1893,11137,11138,11139,11140,1898,11141,11142,11143,11144,1903,11145,11146,1906,11147,11148,11149,1910,11150,11151,11152,11153,11154,1916,11155,11156,11157,11158,11159],[11160],[11161,11162],[11163],[11164],[11165,11166,11167,11168,11169,2259,11170,2261,11171,11172,2264,11173,11174,11175,11176,11177,2270,11178,2272,11179,11180,11181,2276,11182,2278,11183,11184,11185,2282,11186,11187,11188,2286,11189,2288,11190,11191,11192,11193,11194,11195,11196,11197,11198,2298,11199,2300,11200,11201,2303,11202,2305,11203,11204,2308,11205,11206,11207,11208,2313,11209,11210,11211,11212,2318,11213,11214,11215,11216,11217,11218,2325,11219,2327,11220,11221,11222,11223,2332,11224,11225,11226,11227,2337,11228,11229,2340,11230,11231,11232,11233,11234,11235,11236,2348,11237,11238,2351,11239,11240,11241,11242,11243,2357,11244,2359,11245,11246,11247,2363,11248,11249,11250,11251,11252,11253,11254,11255,2372,11256,11257,11258,11259,11260,2378,11261,2380,11262,2382,11263,2384,11264,2386,11265,11266,11267,11268,11269,11270,11271,11272,11273,2396,11274],[11275,11276],[11277],[11278],[11279,11280,11281],[11282],[11283],[11284],[11285],[11286],[11287],[11288],[11289],[11290],[11291],[11292],[11293],[11294],[11295],[11296],[11297],[11298],[11299],[11300],[11301],[11302],[11303],[11304],[11305],[11306],[11307],[11308],[11309],[11310]]},{"type":"MultiLineString","arcs":[[9438],[9439,9440,-452,9441,-450,9442,9443,-447,9444,9445,9446,9447,-442,9448,-440,9449,-438,9450,-436,9451,-434,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,-415,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,-403,9481,9482,-400,9483,-398,9484,9485,-395,9486,9487,9488,-391,9489,9490,9491,9492,9493,9494,9495,-383,9496,9497,9498,9499,-378,9500,-376,9501,-374,9502,9503,9504,9505,9506],[9507],[9508,365,9509,367],[9510,9511,336,9512,338,9513,340,9514,9515,343,9516,345,9517,9518,348,9519,9520,9521,352,9522,354,9523,9524,9525,358,9526,9527,9528,9529,9530,9531],[9532,1130,9533,1132,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,473,9549,475,9550,477,9551,479,9552,9553,9554,9555,9556,9557,9558,9559,488,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,504,9575,506,9576,9577,9578,9579,9580,9581,9582,514,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,535,9603,9604,538,9605,9606,9607,9608,9609,9610,9611,9612,547,9613,549,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,560,9624,562,9625,9626,565,9627,9628,9629,9630,9631,9632,9633,9634,9635,575,9636,577,9637,9638,9639,9640,582,9641,9642,9643,586,9644,9645,9646,9647,9648,9649,9650,9651,595,9652,597,9653,9654,9655,9656,602,9657,9658,605,9659,9660,9661,9662,9663,611,9664,613,9665,615,9666,9667,9668,9669,9670,621,9671,9672,9673,9674,9675,9676,628,9677,9678,631,9679,633,9680,9681,9682,9683,9684],[9685,9686,9687,1123,9688,1125,9689,9690,9691],[9692],[9693,744,9694,9695,747,9696,749,9697,751,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,762,9708,9709,765,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,781,9725,9726,784,9727,9728,787,9729,9730,9731,9732,9733,9734,794,9735,796,9736,798,9737,9738,9739,9740,9741,9742,9743,806,9744,808,9745,9746,9747,812,9748,9749,9750,9751,9752,818,9753,9754,9755,9756,823,9757,9758,9759,9760,9761,9762,830,9763,9764,9765,9766,9767,9768,837,9769,9770,840,9771,9772,9773,844,9774,9775,9776,9777,9778,9779,9780,852,9781,854,9782,856,9783,9784,9785,860,9786,9787,9788,9789,9790,866,9791,9792,9793,9794,9795,872,9796,9797,9798,9799,9800,9801,879,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,900,9822,902,9823,9824,9825],[9826],[9827,-466,9828,-464,9829,9830,9831,9832,-459,9833,9834,9835,9836],[9837],[9838],[9839,908,9840,910,9841,9842,9843,914,9844,9845,9846,9847,9848,920,9849,922,9850,924,9851,9852,9853,9854,9855,930,9856,932,9857,9858,935,9859,9860,9861,9862,940,9863,9864,943,9865,945,9866,9867,9868,949,9869,9870,9871,9872,9873,9874,9875,9876,9877],[9878],[9879],[9880,9881,9882,1066,9883,1068,9884,9885,9886,9887,9888,9889,1075,9890,9891,1078,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,1090,9903,1092,9904,9905,9906,9907,9908,1098,9909,9910,9911,1102,9912,9913,9914,1106,9915,9916,1109,9917,9918,9919,9920,9921,1115,9922,9923,9924,1119,9925],[9926,9927,1796,9928,9929,9930,9931,9932,1802,9933,9934,9935,9936,1807,9937,9938,9939,9940,9941,9942,9943,1815,9944,1817,9945,9946,1820,9947,9948,9949,1824,9950,1826,9951,9952,9953,9954,9955,9956,9957,9958,9959,1836,9960,1838,9961,1840,9962,9963,9964,9965,689,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,703,9979,9980,9981,9982,9983,9984,9985,711,9986,9987,9988,9989,9990,9991,9992,719,9993,721,9994,9995,9996,9997,9998,9999,10000,10001,730,10002,10003,10004,10005,10006,736,10007,10008,10009],[10010],[10011],[10012,10013,1035,10014,10015,1038,10016,1040,10017,1042,10018,10019,1045,10020,10021,1048,10022,10023,10024,10025,10026,10027,10028,10029,10030,1058,10031,10032,1061,10033,10034],[10035],[10036],[10037],[1015,10038,10039,1018,10040,10041,10042,10043,10044,1024,10045,1026,10046,1028,10047,1030,10048,1032,10049],[10050],[10051],[10052],[10053],[10054],[10055,10056,2454,10057,10058,10059,10060,10061,10062,10063,10064,10065,2464,10066,10067,10068,10069,2469,10070,10071,10072,2473,10073,2475,10074,2477,10075,2479,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,2490,10086,2492,10087,10088,2495,10089,10090,10091,10092,10093,2501,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,2524,10116,2526,10117,10118,10119,10120,2531,10121,2533,10122,10123,2536,10124,10125,10126,2540,10127,2542,10128,10129,10130,2546,10131,2548,10132,10133,2551,10134,2553,10135,10136,10137,10138,2558,10139,2560,10140,10141,2563,10142,10143,10144,10145,10146,10147,10148,10149,2572,10150,10151,10152,10153,2577,10154,10155,2580,10156,10157,2583,10158,2585,10159,2587,10160,2589,10161,10162,10163,10164,10165,10166,10167,10168,2598,10169,2600,10170,2602,10171,10172,10173,10174,2607,10175,2609,10176,10177,10178,2613,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,2625,10190,2627,10191,10192,10193,2631,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,2643,10205,10206,2646,10207,10208,10209,2650,10210,10211,2653,10212,10213,10214,10215,10216,2659,10217,10218,10219,10220,10221,10222,10223],[10224],[10225],[10226],[10227,10228,10229,10230,10231,10232,10233,10234,969,10235,10236,972,10237,974,10238,10239,10240,10241,10242,980,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,991,10253,10254,10255,10256,996,10257,998,10258,1000,10259,1002,10260,10261,10262,10263,10264,1008,10265,10266,10267,1012,10268],[10269],[10270,10271,2112],[10272,10273,2399,10274,10275,10276,10277,10278,10279,2406,10280,10281,2409,10282,10283,10284,10285,2414,10286,10287,10288,10289,10290,10291,10292,10293,2423,10294,2425,10295,10296,2428,10297,10298,2431,10299,10300,10301,10302,10303,2437,10304,10305,2440,10306,10307,2443,10308,10309,2446,10310,10311,10312,10313,10314,10315],[10316],[10317],[10318,10319,10320,10321,10322,1206,10323,1208,10324,10325,10326,10327,10328,10329,10330,10331,1217,10332,10333,10334,1221,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,1235,10348,1237,10349,10350,1240,10351,10352,10353,10354,1245,10355,10356,10357,10358,1250,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,1262,10370,10371,1265,10372,1267,10373,1269,10374,10375,10376,10377,10378,10379,10380,10381,1278,10382,1280,10383,10384,10385,10386,1285,10387,10388,1288,10389,10390,10391,10392,10393,10394,10395,10396,1297,10397,10398,10399,10400,1302,10401,10402,10403,10404,1307,10405,10406,10407,1311,10408,10409,1314,10410,10411,10412,1318,10413,1320,10414,1322,10415,1324,10416,10417,10418,10419,1329,10420,10421,10422,10423,10424,10425,10426,1337,10427,10428,10429,10430,1342,10431,10432,10433,10434,10435,1348,10436,10437,10438,1352,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,1364,10450,10451,10452,10453,10454,10455,1371,10456,10457,10458,1375,10459,10460,1378,10461,10462,10463,10464,1383,10465,10466,10467,1387,10468,1389,10469,10470,1392,10471,10472,10473,10474,1397,10475,1399,10476,10477,10478,10479,1404,10480,10481,1407,10482],[10483,10484,10485,10486,10487,10488,10489,10490,10491,1582,10492,10493,10494,10495,10496,10497,10498,10499,1591,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,1604,10512,1606,10513,10514,10515,10516,10517,1612,10518,10519,10520,1616,10521,1618,10522,1620,10523,1622,10524,1624,10525,10526,1627,10527,10528,10529,1631,10530,10531,10532,1635,10533,10534,10535,1639,10536,10537,1642,10538,1644,10539,1646,10540,10541,1649,10542,10543,10544,1653,10545,10546,10547,1657,10548,10549,10550,10551,10552,10553,10554,10555,10556,1667,10557,10558,1670,10559,10560,1673,10561,10562,10563,10564,1678,10565,10566,10567,10568,10569,10570,10571,1686,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,1720,10605,10606,1723,10607,1725,10608,1727,10609,10610,10611,10612,1732,10613,10614,10615,10616,10617,10618,10619,1740,10620,10621,1743,10622,10623,1746,10624,1748,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,1761,10637,10638,1764,10639,10640,10641,1768,10642,10643,10644,10645,10646,1774,10647,10648,10649,10650,1779,10651,10652,10653,10654,10655,1785,10656,10657,10658,1789,10659,1791,10660,10661,10662],[10663],[10664],[10665],[10666],[10667],[10668,2034,10669,10670,10671,2038,10672,2040,10673,10674,2043,10675,10676,2046,10677,10678,10679,10680,10681,2052,10682,10683,2055,10684,10685,2058,10686,2060,10687,10688,2063,10689,10690,10691,2067,10692,10693,10694,2071,10695,10696,10697,10698,2076,10699,10700,10701,10702,10703,2082,10704,2084,10705,10706,2087,10707,10708,2090,10709,10710,2093,10711,10712,10713,10714,2098,10715,10716,2101,10717,10718,2104,10719,2106,10720,10721,2109,10722],[10723,10724,10725,10726,10727],[10728,1410,10729,10730,1413,10731,1415,10732,10733,10734,10735,1420,10736,10737,10738,10739,10740,1426,10741,10742,10743,10744,10745,1432,10746,10747,1435,10748,10749,1438,10750,10751,1441,10752,10753,10754,10755,1446,10756,1448,10757,10758,10759,10760,10761,1454,10762,10763,10764,10765,10766,10767,10768,10769,1463,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,1479,10785,10786,10787,10788,1484,10789,1486,10790,1488,10791,10792,1491,10793,1493,10794,10795,1496,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,1511,10810,1513,10811,10812,1516,10813,1518,10814,1520,10815,1522,10816,1524,10817,10818,10819,10820,10821,10822,1531,10823,10824,10825,1535,10826,10827,10828,1539,10829,10830,1542,10831,1544,10832,10833,10834,10835,1549,10836,1551,10837,10838,1554,10839,10840,1557,10841,1559,10842,10843,10844,1563,10845,10846,10847,10848,10849,10850,1570,10851,10852,10853],[10854],[10855],[10856],[10857],[10858,10859,10860,10861,1925,10862,1927,10863,10864,1930,10865,10866,10867,10868,10869,1936,10870,10871,10872,10873,10874,10875,1943,10876,1945,10877,1947,10878,1949,10879,1951,10880,10881,10882,10883,10884,10885,10886,10887,10888,1961,10889,1963,10890,10891,10892,10893,10894,1969,10895,1971,10896,1973,10897,1975,10898,1977,10899,10900,1980,10901,10902,10903,10904,1985,10905,10906,1988,10907,10908,1991,10909,1993,10910,10911,10912,1997,10913,1999,10914,10915,2002,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,2016,10929,10930,2019,10931,10932,10933,2023,10934,2025,10935,2027,10936,10937],[10938,10939,10940,1845,10941,10942,10943,10944,1850,10945,10946,1853,10947,1855,10948,10949,10950,10951,10952,1861,10953,10954,10955,10956,10957],[10958],[10959],[10960],[10961,1149,10962,1151,10963,10964,10965,10966,10967,10968,10969,10970,1160,10971,10972,1163,10973,1165,10974,10975,1168,10976,10977,10978,10979,10980,10981,10982,10983,1177,10984,1179,10985,1181,10986,10987,1184,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,1195,10998,10999,11000,11001,1200,11002],[11003],[11004],[11005],[11006,2114,11007,11008,11009,11010,11011,11012,11013,11014,2123,11015,11016,11017,11018,11019,11020,2130,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,2141,11031,11032,11033,11034,11035,2147,11036,2149,11037,2151,11038,11039,11040,11041,11042,11043,11044,11045,11046,2161,11047,2163,11048,2165,11049,2167,11050,11051,11052,11053,2172,11054,11055,11056,2176,11057,11058,11059,11060,11061,11062,11063,11064,11065,2186,11066,2188,11067,11068,2191,11069,11070,11071,11072,11073,11074,2198,11075,11076,11077,11078,2203,11079,2205,11080,11081,11082,2209,11083,2211,11084,11085,11086,11087,2216,11088,11089,11090,11091,11092,2222,11093,2224,11094,11095,2227,11096,11097,2230,11098,11099,2233,11100,11101,11102,11103,11104,2239,11105,11106,2242,11107,11108,11109,11110,11111,2248,11112,11113,2251,11114,11115,11116],[11117,11118,11119,11120,11121,11122,11123,11124,11125,1878,11126,11127,11128,11129,1883,11130,1885,11131,11132,1888,11133,11134,11135,11136,1893,11137,11138,11139,11140,1898,11141,11142,11143,11144,1903,11145,11146,1906,11147,11148,11149,1910,11150,11151,11152,11153,11154,1916,11155,11156,11157,11158,11159],[11160],[11161,11162],[11163],[11164],[11165,11166,11167,11168,11169,2259,11170,2261,11171,11172,2264,11173,11174,11175,11176,11177,2270,11178,2272,11179,11180,11181,2276,11182,2278,11183,11184,11185,2282,11186,11187,11188,2286,11189,2288,11190,11191,11192,11193,11194,11195,11196,11197,11198,2298,11199,2300,11200,11201,2303,11202,2305,11203,11204,2308,11205,11206,11207,11208,2313,11209,11210,11211,11212,2318,11213,11214,11215,11216,11217,11218,2325,11219,2327,11220,11221,11222,11223,2332,11224,11225,11226,11227,2337,11228,11229,2340,11230,11231,11232,11233,11234,11235,11236,2348,11237,11238,2351,11239,11240,11241,11242,11243,2357,11244,2359,11245,11246,11247,2363,11248,11249,11250,11251,11252,11253,11254,11255,2372,11256,11257,11258,11259,11260,2378,11261,2380,11262,2382,11263,2384,11264,2386,11265,11266,11267,11268,11269,11270,11271,11272,11273,2396,11274],[11275,11276],[11277],[11278],[11279,11280,11281],[11282],[11283],[11284],[11285],[11286],[11287],[11288],[11289],[11290],[11291],[11292],[11293],[11294],[11295],[11296],[11297],[11298],[11299],[11300],[11301],[11302],[11303],[11304],[11305],[11306],[11307],[11308],[11309],[11310]]},{"type":"MultiLineString","arcs":[[11311],[11312],[11313],[10960],[11314],[11315],[11316],[11317],[11318],[11319,11162,-11165,-11277,11320],[11321],[11322],[11323],[11324,11280],[11325],[11326],[11327]]},{"type":"MultiLineString","arcs":[[9693,744,9694,9695,747,9696,749,9697,751,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,762,9708,9709,765,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,781,9725,9726,784,9727,9728,787,9729,9730,9731,9732,9733,9734,794,9735,796,9736,798,9737,9738,9739,9740,9741,9742,9743,806,9744,808,9745,9746,9747,812,9748,9749,9750,9751,9752,818,9753,9754,9755,9756,823,9757,9758,9759,9760,9761,9762,830,9763,9764,9765,9766,9767,9768,837,9769,9770,840,9771,9772,9773,844,9774,9775,9776,9777,9778,9779,9780,852,9781,854,9782,856,9783,9784,9785,860,9786,9787,9788,9789,9790,866,9791,9792,9793,9794,9795,872,9796,9797,9798,9799,9800,9801,879,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,900,9822,902,9823,9824,9825],[9839,908,9840,910,9841,9842,9843,914,9844,9845,9846,9847,9848,920,9849,922,9850,924,9851,9852,9853,9854,9855,930,9856,932,9857,9858,935,9859,9860,9861,9862,940,9863,9864,943,9865,945,9866,9867,9868,949,9869,9870,9871,9872,9873,9874,9875,9876,9877],[9878],[9926,9927,1796,9928,9929,9930,9931,9932,1802,9933,9934,9935,9936,1807,9937,9938,9939,9940,9941,9942,9943,1815,9944,1817,9945,9946,1820,9947,9948,9949,1824,9950,1826,9951,9952,9953,9954,9955,9956,9957,9958,9959,1836,9960,1838,9961,1840,9962,9963,9964,9965,689,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,703,9979,9980,9981,9982,9983,9984,9985,711,9986,9987,9988,9989,9990,9991,9992,719,9993,721,9994,9995,9996,9997,9998,9999,10000,10001,730,10002,10003,10004,10005,10006,736,10007,10008,10009],[10010],[10037],[10318,10319,10320,10321,10322,1206,10323,1208,10324,10325,10326,10327,10328,10329,10330,10331,1217,10332,10333,10334,1221,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,1235,10348,1237,10349,10350,1240,10351,10352,10353,10354,1245,10355,10356,10357,10358,1250,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,1262,10370,10371,1265,10372,1267,10373,1269,10374,10375,10376,10377,10378,10379,10380,10381,1278,10382,1280,10383,10384,10385,10386,1285,10387,10388,1288,10389,10390,10391,10392,10393,10394,10395,10396,1297,10397,10398,10399,10400,1302,10401,10402,10403,10404,1307,10405,10406,10407,1311,10408,10409,1314,10410,10411,10412,1318,10413,1320,10414,1322,10415,1324,10416,10417,10418,10419,1329,10420,10421,10422,10423,10424,10425,10426,1337,10427,10428,10429,10430,1342,10431,10432,10433,10434,10435,1348,10436,10437,10438,1352,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,1364,10450,10451,10452,10453,10454,10455,1371,10456,10457,10458,1375,10459,10460,1378,10461,10462,10463,10464,1383,10465,10466,10467,1387,10468,1389,10469,10470,1392,10471,10472,10473,10474,1397,10475,1399,10476,10477,10478,10479,1404,10480,10481,1407,10482],[10483,10484,10485,10486,10487,10488,10489,10490,10491,1582,10492,10493,10494,10495,10496,10497,10498,10499,1591,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,1604,10512,1606,10513,10514,10515,10516,10517,1612,10518,10519,10520,1616,10521,1618,10522,1620,10523,1622,10524,1624,10525,10526,1627,10527,10528,10529,1631,10530,10531,10532,1635,10533,10534,10535,1639,10536,10537,1642,10538,1644,10539,1646,10540,10541,1649,10542,10543,10544,1653,10545,10546,10547,1657,10548,10549,10550,10551,10552,10553,10554,10555,10556,1667,10557,10558,1670,10559,10560,1673,10561,10562,10563,10564,1678,10565,10566,10567,10568,10569,10570,10571,1686,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,1720,10605,10606,1723,10607,1725,10608,1727,10609,10610,10611,10612,1732,10613,10614,10615,10616,10617,10618,10619,1740,10620,10621,1743,10622,10623,1746,10624,1748,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,1761,10637,10638,1764,10639,10640,10641,1768,10642,10643,10644,10645,10646,1774,10647,10648,10649,10650,1779,10651,10652,10653,10654,10655,1785,10656,10657,10658,1789,10659,1791,10660,10661,10662],[10664],[10667],[10728,1410,10729,10730,1413,10731,1415,10732,10733,10734,10735,1420,10736,10737,10738,10739,10740,1426,10741,10742,10743,10744,10745,1432,10746,10747,1435,10748,10749,1438,10750,10751,1441,10752,10753,10754,10755,1446,10756,1448,10757,10758,10759,10760,10761,1454,10762,10763,10764,10765,10766,10767,10768,10769,1463,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,1479,10785,10786,10787,10788,1484,10789,1486,10790,1488,10791,10792,1491,10793,1493,10794,10795,1496,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,1511,10810,1513,10811,10812,1516,10813,1518,10814,1520,10815,1522,10816,1524,10817,10818,10819,10820,10821,10822,1531,10823,10824,10825,1535,10826,10827,10828,1539,10829,10830,1542,10831,1544,10832,10833,10834,10835,1549,10836,1551,10837,10838,1554,10839,10840,1557,10841,1559,10842,10843,10844,1563,10845,10846,10847,10848,10849,10850,1570,10851,10852,10853],[10938,10939,10940,1845,10941,10942,10943,10944,1850,10945,10946,1853,10947,1855,10948,10949,10950,10951,10952,1861,10953,10954,10955,10956,10957],[10960],[10961,1149,10962,1151,10963,10964,10965,10966,10967,10968,10969,10970,1160,10971,10972,1163,10973,1165,10974,10975,1168,10976,10977,10978,10979,10980,10981,10982,10983,1177,10984,1179,10985,1181,10986,10987,1184,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,1195,10998,10999,11000,11001,1200,11002],[11004],[11005],[11160],[11161,11162],[11164],[11275,11276],[11279,11280,11281],[11284],[11286],[11287],[11288],[11299,11328,11329,11006,2114,11007,11008,11009,11010,11011,11012,11013,11014,2123,11015,11016,11017,11018,11019,11020,2130,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,2141,11031,11032,11033,11034,11035,2147,11036,2149,11037,2151,11038,11039,11040,11041,11042,11043,11044,11045,11046,2161,11047,2163,11048,2165,11049,2167,11050,11051,11052,11053,2172,11054,11055,11056,2176,11057,11058,11059,11060,11061,11062,11063,11064,11065,2186,11066,2188,11067,11068,2191,11069,11070,11071,11072,11073,11074,2198,11075,11076,11077,11078,2203,11079,2205,11080,11081,11082,2209,11083,2211,11084,11085,11086,11087,2216,11088,11089,11090,11091,11092,2222,11093,2224,11094,11095,2227,11096,11097,2230,11098,11099,2233,11100,11101,11102,11103,11104,2239,11105,11106,2242,11107,11108,11109,11110,11111,2248,11112,11113,2251,11114,11115,11116],[11301],[11302],[11303],[11304],[11305],[11307],[11309]]},{"type":"MultiLineString","arcs":[[9438],[9439,9440,-452,9441,-450,9442,9443,-447,9444,9445,9446,9447,-442,9448,-440,9449,-438,9450,-436,9451,-434,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,-415,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,-403,9481,9482,-400,9483,-398,9484,9485,-395,9486,9487,9488,-391,9489,9490,9491,9492,9493,9494,9495,-383,9496,9497,9498,9499,-378,9500,-376,9501,-374,9502,9503,9504,9505,9506],[9507],[9508,365,9509,367],[9510,9511,336,9512,338,9513,340,9514,9515,343,9516,345,9517,9518,348,9519,9520,9521,352,9522,354,9523,9524,9525,358,9526,9527,9528,9529,9530,9531],[9532,1130,9533,1132,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,473,9549,475,9550,477,9551,479,9552,9553,9554,9555,9556,9557,9558,9559,488,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,504,9575,506,9576,9577,9578,9579,9580,9581,9582,514,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,535,9603,9604,538,9605,9606,9607,9608,9609,9610,9611,9612,547,9613,549,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,560,9624,562,9625,9626,565,9627,9628,9629,9630,9631,9632,9633,9634,9635,575,9636,577,9637,9638,9639,9640,582,9641,9642,9643,586,9644,9645,9646,9647,9648,9649,9650,9651,595,9652,597,9653,9654,9655,9656,602,9657,9658,605,9659,9660,9661,9662,9663,611,9664,613,9665,615,9666,9667,9668,9669,9670,621,9671,9672,9673,9674,9675,9676,628,9677,9678,631,9679,633,9680,9681,9682,9683,9684],[9685,9686,9687,1123,9688,1125,9689,9690,9691],[9692],[9693,744,9694,9695,747,9696,749,9697,751,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,762,9708,9709,765,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,781,9725,9726,784,9727,9728,787,9729,9730,9731,9732,9733,9734,794,9735,796,9736,798,9737,9738,9739,9740,9741,9742,9743,806,9744,808,9745,9746,9747,812,9748,9749,9750,9751,9752,818,9753,9754,9755,9756,823,9757,9758,9759,9760,9761,9762,830,9763,9764,9765,9766,9767,9768,837,9769,9770,840,9771,9772,9773,844,9774,9775,9776,9777,9778,9779,9780,852,9781,854,9782,856,9783,9784,9785,860,9786,9787,9788,9789,9790,866,9791,9792,9793,9794,9795,872,9796,9797,9798,9799,9800,9801,879,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,900,9822,902,9823,9824,9825],[9826],[9827,-466,9828,-464,9829,9830,9831,9832,-459,9833,9834,9835,9836],[9837],[9838],[9839,908,9840,910,9841,9842,9843,914,9844,9845,9846,9847,9848,920,9849,922,9850,924,9851,9852,9853,9854,9855,930,9856,932,9857,9858,935,9859,9860,9861,9862,940,9863,9864,943,9865,945,9866,9867,9868,949,9869,9870,9871,9872,9873,9874,9875,9876,9877],[9878],[9879],[9880,9881,9882,1066,9883,1068,9884,9885,9886,9887,9888,9889,1075,9890,9891,1078,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,1090,9903,1092,9904,9905,9906,9907,9908,1098,9909,9910,9911,1102,9912,9913,9914,1106,9915,9916,1109,9917,9918,9919,9920,9921,1115,9922,9923,9924,1119,9925],[9926,9927,1796,9928,9929,9930,9931,9932,1802,9933,9934,9935,9936,1807,9937,9938,9939,9940,9941,9942,9943,1815,9944,1817,9945,9946,1820,9947,9948,9949,1824,9950,1826,9951,9952,9953,9954,9955,9956,9957,9958,9959,1836,9960,1838,9961,1840,9962,9963,9964,9965,689,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,703,9979,9980,9981,9982,9983,9984,9985,711,9986,9987,9988,9989,9990,9991,9992,719,9993,721,9994,9995,9996,9997,9998,9999,10000,10001,730,10002,10003,10004,10005,10006,736,10007,10008,10009],[10010],[10011],[10012,10013,1035,10014,10015,1038,10016,1040,10017,1042,10018,10019,1045,10020,10021,1048,10022,10023,10024,10025,10026,10027,10028,10029,10030,1058,10031,10032,1061,10033,10034],[10035],[10036],[10037],[1015,10038,10039,1018,10040,10041,10042,10043,10044,1024,10045,1026,10046,1028,10047,1030,10048,1032,10049],[10050],[10051],[10052],[10053],[10054],[10055,10056,2454,10057,10058,10059,10060,10061,10062,10063,10064,10065,2464,10066,10067,10068,10069,2469,10070,10071,10072,2473,10073,2475,10074,2477,10075,2479,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,2490,10086,2492,10087,10088,2495,10089,10090,10091,10092,10093,2501,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,2524,10116,2526,10117,10118,10119,10120,2531,10121,2533,10122,10123,2536,10124,10125,10126,2540,10127,2542,10128,10129,10130,2546,10131,2548,10132,10133,2551,10134,2553,10135,10136,10137,10138,2558,10139,2560,10140,10141,2563,10142,10143,10144,10145,10146,10147,10148,10149,2572,10150,10151,10152,10153,2577,10154,10155,2580,10156,10157,2583,10158,2585,10159,2587,10160,2589,10161,10162,10163,10164,10165,10166,10167,10168,2598,10169,2600,10170,2602,10171,10172,10173,10174,2607,10175,2609,10176,10177,10178,2613,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,2625,10190,2627,10191,10192,10193,2631,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,2643,10205,10206,2646,10207,10208,10209,2650,10210,10211,2653,10212,10213,10214,10215,10216,2659,10217,10218,10219,10220,10221,10222,10223],[10224],[10225],[10226,10317],[10227,10228,10229,10230,10231,10232,10233,10234,969,10235,10236,972,10237,974,10238,10239,10240,10241,10242,980,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,991,10253,10254,10255,10256,996,10257,998,10258,1000,10259,1002,10260,10261,10262,10263,10264,1008,10265,10266,10267,1012,10268],[10269],[10961,1149,10962,1151,10963,10964,10965,10966,10967,10968,10969,10970,1160,10971,10972,1163,10973,1165,10974,10975,1168,10976,10977,10978,10979,10980,10981,10982,10983,1177,10984,1179,10985,1181,10986,10987,1184,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,1195,10998,10999,11000,11001,1200,11002,10318,10319,10320,10321,10322,1206,10323,1208,10324,10325,10326,10327,10328,10329,10330,10331,1217,10332,10333,10334,1221,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,1235,10348,1237,10349,10350,1240,10351,10352,10353,10354,1245,10355,10356,10357,10358,1250,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,1262,10370,10371,1265,10372,1267,10373,1269,10374,10375,10376,10377,10378,10379,10380,10381,1278,10382,1280,10383,10384,10385,10386,1285,10387,10388,1288,10389,10390,10391,10392,10393,10394,10395,10396,1297,10397,10398,10399,10400,1302,10401,10402,10403,10404,1307,10405,10406,10407,1311,10408,10409,1314,10410,10411,10412,1318,10413,1320,10414,1322,10415,1324,10416,10417,10418,10419,1329,10420,10421,10422,10423,10424,10425,10426,1337,10427,10428,10429,10430,1342,10431,10432,10433,10434,10435,1348,10436,10437,10438,1352,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,1364,10450,10451,10452,10453,10454,10455,1371,10456,10457,10458,1375,10459,10460,1378,10461,10462,10463,10464,1383,10465,10466,10467,1387,10468,1389,10469,10470,1392,10471,10472,10473,10474,1397,10475,1399,10476,10477,10478,10479,1404,10480,10481,1407,10482],[11006,2114,11007,11008,11009,11010,11011,11012,11013,11014,2123,11015,11016,11017,11018,11019,11020,2130,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,2141,11031,11032,11033,11034,11035,2147,11036,2149,11037,2151,11038,11039,11040,11041,11042,11043,11044,11045,11046,2161,11047,2163,11048,2165,11049,2167,11050,11051,11052,11053,2172,11054,11055,11056,2176,11057,11058,11059,11060,11061,11062,11063,11064,11065,2186,11066,2188,11067,11068,2191,11069,11070,11071,11072,11073,11074,2198,11075,11076,11077,11078,2203,11079,2205,11080,11081,11082,2209,11083,2211,11084,11085,11086,11087,2216,11088,11089,11090,11091,11092,2222,11093,2224,11094,11095,2227,11096,11097,2230,11098,11099,2233,11100,11101,11102,11103,11104,2239,11105,11106,2242,11107,11108,11109,11110,11111,2248,11112,11113,2251,11114,11115,11116,10728,1410,10729,10730,1413,10731,1415,10732,10733,10734,10735,1420,10736,10737,10738,10739,10740,1426,10741,10742,10743,10744,10745,1432,10746,10747,1435,10748,10749,1438,10750,10751,1441,10752,10753,10754,10755,1446,10756,1448,10757,10758,10759,10760,10761,1454,10762,10763,10764,10765,10766,10767,10768,10769,1463,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,1479,10785,10786,10787,10788,1484,10789,1486,10790,1488,10791,10792,1491,10793,1493,10794,10795,1496,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,1511,10810,1513,10811,10812,1516,10813,1518,10814,1520,10815,1522,10816,1524,10817,10818,10819,10820,10821,10822,1531,10823,10824,10825,1535,10826,10827,10828,1539,10829,10830,1542,10831,1544,10832,10833,10834,10835,1549,10836,1551,10837,10838,1554,10839,10840,1557,10841,1559,10842,10843,10844,1563,10845,10846,10847,10848,10849,10850,1570,10851,10852,10853,10483,10484,10485,10486,10487,10488,10489,10490,10491,1582,10492,10493,10494,10495,10496,10497,10498,10499,1591,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,1604,10512,1606,10513,10514,10515,10516,10517,1612,10518,10519,10520,1616,10521,1618,10522,1620,10523,1622,10524,1624,10525,10526,1627,10527,10528,10529,1631,10530,10531,10532,1635,10533,10534,10535,1639,10536,10537,1642,10538,1644,10539,1646,10540,10541,1649,10542,10543,10544,1653,10545,10546,10547,1657,10548,10549,10550,10551,10552,10553,10554,10555,10556,1667,10557,10558,1670,10559,10560,1673,10561,10562,10563,10564,1678,10565,10566,10567,10568,10569,10570,10571,1686,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,1720,10605,10606,1723,10607,1725,10608,1727,10609,10610,10611,10612,1732,10613,10614,10615,10616,10617,10618,10619,1740,10620,10621,1743,10622,10623,1746,10624,1748,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,1761,10637,10638,1764,10639,10640,10641,1768,10642,10643,10644,10645,10646,1774,10647,10648,10649,10650,1779,10651,10652,10653,10654,10655,1785,10656,10657,10658,1789,10659,1791,10660,10661,10662],[11117,11118,11119,11120,11121,11122,11123,11124,11125,1878,11126,11127,11128,11129,1883,11130,1885,11131,11132,1888,11133,11134,11135,11136,1893,11137,11138,11139,11140,1898,11141,11142,11143,11144,1903,11145,11146,1906,11147,11148,11149,1910,11150,11151,11152,11153,11154,1916,11155,11156,11157,11158,11159,10858,10859,10860,10861,1925,10862,1927,10863,10864,1930,10865,10866,10867,10868,10869,1936,10870,10871,10872,10873,10874,10875,1943,10876,1945,10877,1947,10878,1949,10879,1951,10880,10881,10882,10883,10884,10885,10886,10887,10888,1961,10889,1963,10890,10891,10892,10893,10894,1969,10895,1971,10896,1973,10897,1975,10898,1977,10899,10900,1980,10901,10902,10903,10904,1985,10905,10906,1988,10907,10908,1991,10909,1993,10910,10911,10912,1997,10913,1999,10914,10915,2002,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,2016,10929,10930,2019,10931,10932,10933,2023,10934,2025,10935,2027,10936,10937,10723,10724,10725,10726,10727,10668,2034,10669,10670,10671,2038,10672,2040,10673,10674,2043,10675,10676,2046,10677,10678,10679,10680,10681,2052,10682,10683,2055,10684,10685,2058,10686,2060,10687,10688,2063,10689,10690,10691,2067,10692,10693,10694,2071,10695,10696,10697,10698,2076,10699,10700,10701,10702,10703,2082,10704,2084,10705,10706,2087,10707,10708,2090,10709,10710,2093,10711,10712,10713,10714,2098,10715,10716,2101,10717,10718,2104,10719,2106,10720,10721,2109,10722,10270,10271,2112],[11166,11167,11168,11169,2259,11170,2261,11171,11172,2264,11173,11174,11175,11176,11177,2270,11178,2272,11179,11180,11181,2276,11182,2278,11183,11184,11185,2282,11186,11187,11188,2286,11189,2288,11190,11191,11192,11193,11194,11195,11196,11197,11198,2298,11199,2300,11200,11201,2303,11202,2305,11203,11204,2308,11205,11206,11207,11208,2313,11209,11210,11211,11212,2318,11213,11214,11215,11216,11217,11218,2325,11219,2327,11220,11221,11222,11223,2332,11224,11225,11226,11227,2337,11228,11229,2340,11230,11231,11232,11233,11234,11235,11236,2348,11237,11238,2351,11239,11240,11241,11242,11243,2357,11244,2359,11245,11246,11247,2363,11248,11249,11250,11251,11252,11253,11254,11255,2372,11256,11257,11258,11259,11260,2378,11261,2380,11262,2382,11263,2384,11264,2386,11265,11266,11267,11268,11269,11270,11271,11272,11273,2396,11274,10272,10273,2399,10274,10275,10276,10277,10278,10279,2406,10280,10281,2409,10282,10283,10284,10285,2414,10286,10287,10288,10289,10290,10291,10292,10293,2423,10294,2425,10295,10296,2428,10297,10298,2431,10299,10300,10301,10302,10303,2437,10304,10305,2440,10306,10307,2443,10308,10309,2446,10310,10311,10312,10313,10314,10315]]},{"type":"MultiLineString","arcs":[[9926,9927,1796,9928,9929,9930,9931,9932,1802,9933,9934,9935,9936,1807,9937,9938,9939,9940,9941,9942,9943,1815,9944,1817,9945,9946,1820,9947,9948,9949,1824,9950,1826,9951,9952,9953,9954,9955,9956,9957,9958,9959,1836,9960,1838,9961,1840,9962,9963,9964,9965,689,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,703,9979,9980,9981,9982,9983,9984,9985,711,9986,9987,9988,9989,9990,9991,9992,719,9993,721,9994,9995,9996,9997,9998,9999,10000,10001,730,10002,10003,10004,10005,10006,736,10007,10008,10009],[10010],[10483,10484,10485,10486,10487,10488,10489,10490,10491,1582,10492,10493,10494,10495,10496,10497,10498,10499,1591,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,1604,10512,1606,10513,10514,10515,10516,10517,1612,10518,10519,10520,1616,10521,1618,10522,1620,10523,1622,10524,1624,10525,10526,1627,10527,10528,10529,1631,10530,10531,10532,1635,10533,10534,10535,1639,10536,10537,1642,10538,1644,10539,1646,10540,10541,1649,10542,10543,10544,1653,10545,10546,10547,1657,10548,10549,10550,10551,10552,10553,10554,10555,10556,1667,10557,10558,1670,10559,10560,1673,10561,10562,10563,10564,1678,10565,10566,10567,10568,10569,10570,10571,1686,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,1720,10605,10606,1723,10607,1725,10608,1727,10609,10610,10611,10612,1732,10613,10614,10615,10616,10617,10618,10619,1740,10620,10621,1743,10622,10623,1746,10624,1748,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,1761,10637,10638,1764,10639,10640,10641,1768,10642,10643,10644,10645,10646,1774,10647,10648,10649,10650,1779,10651,10652,10653,10654,10655,1785,10656,10657,10658,1789,10659,1791,10660,10661,10662],[10664],[10728,1410,10729,10730,1413,10731,1415,10732,10733,10734,10735,1420,10736,10737,10738,10739,10740,1426,10741,10742,10743,10744,10745,1432,10746,10747,1435,10748,10749,1438,10750,10751,1441,10752,10753,10754,10755,1446,10756,1448,10757,10758,10759,10760,10761,1454,10762,10763,10764,10765,10766,10767,10768,10769,1463,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,1479,10785,10786,10787,10788,1484,10789,1486,10790,1488,10791,10792,1491,10793,1493,10794,10795,1496,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,1511,10810,1513,10811,10812,1516,10813,1518,10814,1520,10815,1522,10816,1524,10817,10818,10819,10820,10821,10822,1531,10823,10824,10825,1535,10826,10827,10828,1539,10829,10830,1542,10831,1544,10832,10833,10834,10835,1549,10836,1551,10837,10838,1554,10839,10840,1557,10841,1559,10842,10843,10844,1563,10845,10846,10847,10848,10849,10850,1570,10851,10852,10853],[10938,10939,10940,1845,10941,10942,10943,10944,1850,10945,10946,1853,10947,1855,10948,10949,10950,10951,10952,1861,10953,10954,10955,10956,10957],[10960],[11004],[11005],[11006,2114,11007,11008,11009,11010,11011,11012,11013,11014,2123,11015,11016,11017,11018,11019,11020,2130,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,2141,11031,11032,11033,11034,11035,2147,11036,2149,11037,2151,11038,11039,11040,11041,11042,11043,11044,11045,11046,2161,11047,2163,11048,2165,11049,2167,11050,11051,11052,11053,2172,11054,11055,11056,2176,11057,11058,11059,11060,11061,11062,11063,11064,11065,2186,11066,2188,11067,11068,2191,11069,11070,11071,11072,11073,11074,2198,11075,11076,11077,11078,2203,11079,2205,11080,11081,11082,2209,11083,2211,11084,11085,11086,11087,2216,11088,11089,11090,11091,11092,2222,11093,2224,11094,11095,2227,11096,11097,2230,11098,11099,2233,11100,11101,11102,11103,11104,2239,11105,11106,2242,11107,11108,11109,11110,11111,2248,11112,11113,2251,11114,11115,11116],[11160],[11161,11162],[11164],[11275,11276],[11279,11280,11281],[11284],[11286],[11287],[11304]]},{"type":"MultiLineString","arcs":[[9438],[9439,9440,-452,9441,-450,9442,9443,-447,9444,9445,9446,9447,-442,9448,-440,9449,-438,9450,-436,9451,-434,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,-415,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,-403,9481,9482,-400,9483,-398,9484,9485,-395,9486,9487,9488,-391,9489,9490,9491,9492,9493,9494,9495,-383,9496,9497,9498,9499,-378,9500,-376,9501,-374,9502,9503,9504,9505,9506],[9507],[9508,365,9509,367],[9510,9511,336,9512,338,9513,340,9514,9515,343,9516,345,9517,9518,348,9519,9520,9521,352,9522,354,9523,9524,9525,358,9526,9527,9528,9529,9530,9531],[9532,1130,9533,1132,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,473,9549,475,9550,477,9551,479,9552,9553,9554,9555,9556,9557,9558,9559,488,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,504,9575,506,9576,9577,9578,9579,9580,9581,9582,514,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,535,9603,9604,538,9605,9606,9607,9608,9609,9610,9611,9612,547,9613,549,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,560,9624,562,9625,9626,565,9627,9628,9629,9630,9631,9632,9633,9634,9635,575,9636,577,9637,9638,9639,9640,582,9641,9642,9643,586,9644,9645,9646,9647,9648,9649,9650,9651,595,9652,597,9653,9654,9655,9656,602,9657,9658,605,9659,9660,9661,9662,9663,611,9664,613,9665,615,9666,9667,9668,9669,9670,621,9671,9672,9673,9674,9675,9676,628,9677,9678,631,9679,633,9680,9681,9682,9683,9684],[9685,9686,9687,1123,9688,1125,9689,9690,9691],[9692],[9826],[9827,-466,9828,-464,9829,9830,9831,9832,-459,9833,9834,9835,9836],[9837],[9838],[9879],[9880,9881,9882,1066,9883,1068,9884,9885,9886,9887,9888,9889,1075,9890,9891,1078,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,1090,9903,1092,9904,9905,9906,9907,9908,1098,9909,9910,9911,1102,9912,9913,9914,1106,9915,9916,1109,9917,9918,9919,9920,9921,1115,9922,9923,9924,1119,9925],[9926,9927,1796,9928,9929,9930,9931,9932,1802,9933,9934,9935,9936,1807,9937,9938,9939,9940,9941,9942,9943,1815,9944,1817,9945,9946,1820,9947,9948,9949,1824,9950,1826,9951,9952,9953,9954,9955,9956,9957,9958,9959,1836,9960,1838,9961,1840,9962,9963,9964,9965,689,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,703,9979,9980,9981,9982,9983,9984,9985,711,9986,9987,9988,9989,9990,9991,9992,719,9993,721,9994,9995,9996,9997,9998,9999,10000,10001,730,10002,10003,10004,10005,10006,736,10007,10008,10009],[10010],[10011],[10012,10013,1035,10014,10015,1038,10016,1040,10017,1042,10018,10019,1045,10020,10021,1048,10022,10023,10024,10025,10026,10027,10028,10029,10030,1058,10031,10032,1061,10033,10034],[10035],[10036],[1015,10038,10039,1018,10040,10041,10042,10043,10044,1024,10045,1026,10046,1028,10047,1030,10048,1032,10049],[10050],[10051],[10052],[10053],[10054],[10055,10056,2454,10057,10058,10059,10060,10061,10062,10063,10064,10065,2464,10066,10067,10068,10069,2469,10070,10071,10072,2473,10073,2475,10074,2477,10075,2479,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,2490,10086,2492,10087,10088,2495,10089,10090,10091,10092,10093,2501,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,2524,10116,2526,10117,10118,10119,10120,2531,10121,2533,10122,10123,2536,10124,10125,10126,2540,10127,2542,10128,10129,10130,2546,10131,2548,10132,10133,2551,10134,2553,10135,10136,10137,10138,2558,10139,2560,10140,10141,2563,10142,10143,10144,10145,10146,10147,10148,10149,2572,10150,10151,10152,10153,2577,10154,10155,2580,10156,10157,2583,10158,2585,10159,2587,10160,2589,10161,10162,10163,10164,10165,10166,10167,10168,2598,10169,2600,10170,2602,10171,10172,10173,10174,2607,10175,2609,10176,10177,10178,2613,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,2625,10190,2627,10191,10192,10193,2631,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,2643,10205,10206,2646,10207,10208,10209,2650,10210,10211,2653,10212,10213,10214,10215,10216,2659,10217,10218,10219,10220,10221,10222,10223],[10224],[10225],[10226],[10227,10228,10229,10230,10231,10232,10233,10234,969,10235,10236,972,10237,974,10238,10239,10240,10241,10242,980,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,991,10253,10254,10255,10256,996,10257,998,10258,1000,10259,1002,10260,10261,10262,10263,10264,1008,10265,10266,10267,1012,10268],[10269],[10270,10271,2112],[10272,10273,2399,10274,10275,10276,10277,10278,10279,2406,10280,10281,2409,10282,10283,10284,10285,2414,10286,10287,10288,10289,10290,10291,10292,10293,2423,10294,2425,10295,10296,2428,10297,10298,2431,10299,10300,10301,10302,10303,2437,10304,10305,2440,10306,10307,2443,10308,10309,2446,10310,10311,10312,10313,10314,10315],[10316],[10317],[10483,10484,10485,10486,10487,10488,10489,10490,10491,1582,10492,10493,10494,10495,10496,10497,10498,10499,1591,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,1604,10512,1606,10513,10514,10515,10516,10517,1612,10518,10519,10520,1616,10521,1618,10522,1620,10523,1622,10524,1624,10525,10526,1627,10527,10528,10529,1631,10530,10531,10532,1635,10533,10534,10535,1639,10536,10537,1642,10538,1644,10539,1646,10540,10541,1649,10542,10543,10544,1653,10545,10546,10547,1657,10548,10549,10550,10551,10552,10553,10554,10555,10556,1667,10557,10558,1670,10559,10560,1673,10561,10562,10563,10564,1678,10565,10566,10567,10568,10569,10570,10571,1686,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,1720,10605,10606,1723,10607,1725,10608,1727,10609,10610,10611,10612,1732,10613,10614,10615,10616,10617,10618,10619,1740,10620,10621,1743,10622,10623,1746,10624,1748,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,1761,10637,10638,1764,10639,10640,10641,1768,10642,10643,10644,10645,10646,1774,10647,10648,10649,10650,1779,10651,10652,10653,10654,10655,1785,10656,10657,10658,1789,10659,1791,10660,10661,10662],[10663],[10664],[10665],[10666],[10668,2034,10669,10670,10671,2038,10672,2040,10673,10674,2043,10675,10676,2046,10677,10678,10679,10680,10681,2052,10682,10683,2055,10684,10685,2058,10686,2060,10687,10688,2063,10689,10690,10691,2067,10692,10693,10694,2071,10695,10696,10697,10698,2076,10699,10700,10701,10702,10703,2082,10704,2084,10705,10706,2087,10707,10708,2090,10709,10710,2093,10711,10712,10713,10714,2098,10715,10716,2101,10717,10718,2104,10719,2106,10720,10721,2109,10722],[10723,10724,10725,10726,10727],[10728,1410,10729,10730,1413,10731,1415,10732,10733,10734,10735,1420,10736,10737,10738,10739,10740,1426,10741,10742,10743,10744,10745,1432,10746,10747,1435,10748,10749,1438,10750,10751,1441,10752,10753,10754,10755,1446,10756,1448,10757,10758,10759,10760,10761,1454,10762,10763,10764,10765,10766,10767,10768,10769,1463,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,1479,10785,10786,10787,10788,1484,10789,1486,10790,1488,10791,10792,1491,10793,1493,10794,10795,1496,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,1511,10810,1513,10811,10812,1516,10813,1518,10814,1520,10815,1522,10816,1524,10817,10818,10819,10820,10821,10822,1531,10823,10824,10825,1535,10826,10827,10828,1539,10829,10830,1542,10831,1544,10832,10833,10834,10835,1549,10836,1551,10837,10838,1554,10839,10840,1557,10841,1559,10842,10843,10844,1563,10845,10846,10847,10848,10849,10850,1570,10851,10852,10853],[10854],[10855],[10856],[10857],[10858,10859,10860,10861,1925,10862,1927,10863,10864,1930,10865,10866,10867,10868,10869,1936,10870,10871,10872,10873,10874,10875,1943,10876,1945,10877,1947,10878,1949,10879,1951,10880,10881,10882,10883,10884,10885,10886,10887,10888,1961,10889,1963,10890,10891,10892,10893,10894,1969,10895,1971,10896,1973,10897,1975,10898,1977,10899,10900,1980,10901,10902,10903,10904,1985,10905,10906,1988,10907,10908,1991,10909,1993,10910,10911,10912,1997,10913,1999,10914,10915,2002,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,2016,10929,10930,2019,10931,10932,10933,2023,10934,2025,10935,2027,10936,10937],[10938,10939,10940,1845,10941,10942,10943,10944,1850,10945,10946,1853,10947,1855,10948,10949,10950,10951,10952,1861,10953,10954,10955,10956,10957],[10958],[10959],[10960],[11003],[11004],[11005],[11006,2114,11007,11008,11009,11010,11011,11012,11013,11014,2123,11015,11016,11017,11018,11019,11020,2130,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,2141,11031,11032,11033,11034,11035,2147,11036,2149,11037,2151,11038,11039,11040,11041,11042,11043,11044,11045,11046,2161,11047,2163,11048,2165,11049,2167,11050,11051,11052,11053,2172,11054,11055,11056,2176,11057,11058,11059,11060,11061,11062,11063,11064,11065,2186,11066,2188,11067,11068,2191,11069,11070,11071,11072,11073,11074,2198,11075,11076,11077,11078,2203,11079,2205,11080,11081,11082,2209,11083,2211,11084,11085,11086,11087,2216,11088,11089,11090,11091,11092,2222,11093,2224,11094,11095,2227,11096,11097,2230,11098,11099,2233,11100,11101,11102,11103,11104,2239,11105,11106,2242,11107,11108,11109,11110,11111,2248,11112,11113,2251,11114,11115,11116],[11117,11118,11119,11120,11121,11122,11123,11124,11125,1878,11126,11127,11128,11129,1883,11130,1885,11131,11132,1888,11133,11134,11135,11136,1893,11137,11138,11139,11140,1898,11141,11142,11143,11144,1903,11145,11146,1906,11147,11148,11149,1910,11150,11151,11152,11153,11154,1916,11155,11156,11157,11158,11159],[11160],[11161,11162],[11163],[11164],[11165,11166,11167,11168,11169,2259,11170,2261,11171,11172,2264,11173,11174,11175,11176,11177,2270,11178,2272,11179,11180,11181,2276,11182,2278,11183,11184,11185,2282,11186,11187,11188,2286,11189,2288,11190,11191,11192,11193,11194,11195,11196,11197,11198,2298,11199,2300,11200,11201,2303,11202,2305,11203,11204,2308,11205,11206,11207,11208,2313,11209,11210,11211,11212,2318,11213,11214,11215,11216,11217,11218,2325,11219,2327,11220,11221,11222,11223,2332,11224,11225,11226,11227,2337,11228,11229,2340,11230,11231,11232,11233,11234,11235,11236,2348,11237,11238,2351,11239,11240,11241,11242,11243,2357,11244,2359,11245,11246,11247,2363,11248,11249,11250,11251,11252,11253,11254,11255,2372,11256,11257,11258,11259,11260,2378,11261,2380,11262,2382,11263,2384,11264,2386,11265,11266,11267,11268,11269,11270,11271,11272,11273,2396,11274],[11275,11276],[11277],[11278],[11279,11280,11281],[11282],[11283],[11284],[11285],[11286],[11287],[11288],[11289],[11290],[11291],[11292],[11293],[11294],[11295],[11296],[11297],[11298],[11299],[11300],[11301],[11302],[11303],[11304],[11305],[11306],[11307],[11308],[11309],[11310]]},{"type":"MultiLineString","arcs":[[11330],[11331],[11332,11333],[11334],[11335],[11336],[11337],[11338],[11339],[11340],[11341],[11342],[11343],[11344],[11345],[11346],[11347],[11348],[11349],[11350],[11351],[11352],[11353],[11354],[11355],[11356],[11357],[11358],[11359],[11360],[11361],[11362],[11363],[11364],[11365],[11366],[11367],[11368],[11369],[11370],[11371],[11372],[11373],[11374],[11375],[11376],[11377],[11378],[11379],[11380],[11381],[11382],[11383],[11384],[11385],[11386],[11387],[11388],[11389],[11390],[11391],[11392],[11393],[11394],[11395],[11396],[11397],[11398],[11399],[11400],[11401],[11402],[11403],[11404],[11405],[11406],[11407],[11408],[11409],[11410],[11411]]},{"type":"MultiLineString","arcs":[[11412],[11413],[11414],[11415],[11416],[11417],[11418],[11419],[11420],[11421,11422],[11423],[11424],[11425],[11343],[11344],[11345],[11426],[11427],[11428],[11429],[11346],[11347],[11430],[11431],[11432],[11433],[11348],[11434],[11435],[11349],[11350],[11351],[11352],[11353],[11436],[11437],[11438],[11354],[11355],[11439],[11440],[11356],[11357],[11358],[11359],[11441],[11442],[11360],[11361],[11362],[11363],[11364],[11365],[11366],[11367],[11368],[11369],[11370],[11371],[11372],[11373],[11374],[11375],[11376],[11377],[11378],[11379],[11380],[11381],[11382],[11383],[11384],[11385],[11386],[11387],[11388],[11389],[11390],[11391],[11392],[11393],[11394],[11395],[11396],[11397],[11398],[11399],[11400],[11401],[11402],[11403],[11404],[11405],[11406],[11407],[11408],[11409],[11410],[11411]]},{"type":"MultiLineString","arcs":[[11421,11422],[11343],[11344],[11345],[11426],[11427],[11428],[11429],[11346],[11347],[11430],[11431],[11432],[11433],[11348],[11434],[11435],[11349],[11350],[11351],[11352],[11353],[11436],[11437],[11438],[11354],[11355],[11439],[11440],[11356],[11357],[11358],[11359],[11441],[11442],[11360],[11361],[11362],[11363],[11364],[11365],[11366],[11367],[11368],[11369],[11370],[11371],[11372],[11373],[11374],[11375],[11376],[11377],[11378],[11379],[11380],[11381],[11382],[11383],[11384],[11385],[11386],[11387],[11388],[11389],[11390],[11391],[11392],[11393],[11394],[11395],[11396],[11397],[11398],[11399],[11400],[11401],[11402],[11403],[11443],[11404],[11405],[11406],[11407],[11408],[11409],[11410],[11411]]},{"type":"MultiLineString","arcs":[[11330],[11331],[11332],[11334],[11335],[11333],[11421],[11337],[11338],[11339],[11340],[11341],[11422],[11342],[11426],[11427],[11428],[11429],[11430],[11431],[11432],[11433],[11348],[11434],[11435],[11349],[11436],[11437],[11438],[11354],[11355],[11356],[11357],[11358],[11359],[11360],[11361],[11362],[11363],[11364],[11365],[11366],[11367],[11368],[11369],[11370],[11371],[11372],[11373],[11374],[11375]]},{"type":"MultiLineString","arcs":[[11421,11422],[11426],[11427],[11428],[11429],[11430],[11431],[11432],[11433],[11348],[11434],[11435],[11349],[11436],[11437],[11438],[11354],[11355],[11439],[11440],[11356],[11357],[11358],[11359],[11441],[11442],[11360],[11361],[11362],[11363],[11364],[11365],[11366],[11367],[11368],[11369],[11370],[11371],[11372],[11373],[11374],[11375],[11376],[11377],[11378],[11379],[11380],[11381],[11382],[11383],[11384],[11385],[11386],[11387],[11388],[11389],[11390],[11391],[11392],[11393],[11394],[11395],[11396],[11397],[11398],[11399],[11400],[11401],[11402],[11403],[11404],[11405],[11406],[11407],[11408],[11409],[11410],[11411]]},{"type":"MultiLineString","arcs":[[11343],[11344],[11345],[11346],[11347],[11350],[11351],[11352],[11353]]},{"type":"MultiLineString","arcs":[[11421,11422],[11426],[11427],[11428],[11429],[11430],[11431],[11432],[11433],[11434],[11435],[11436],[11437],[11438]]},{"type":"MultiLineString","arcs":[[11444],[11445],[11446]]},{"type":"MultiLineString","arcs":[[11447],[11448]]},{"type":"MultiLineString","arcs":[[11449],[11450],[11451],[11452],[11453],[11454],[11455],[11456],[11457],[11458],[11459],[11460],[11461],[11462],[11463],[11464],[11465],[11466],[11467],[11468],[11469],[11470],[11471],[11472],[11473],[11474],[11475],[11476],[11477],[11478],[11479],[11480],[11481],[11482],[11483],[11484],[11485],[11486],[11487],[11488],[11489],[11490],[11491],[11492],[11493],[11494],[11495],[11496],[11497],[11498],[11499],[11500],[11501],[11502],[11503],[11504],[11505],[11506],[11507],[11508],[11509],[11510],[11511],[11512],[11513],[11514],[11515],[11516],[11517],[11518],[11519],[11520],[11521],[11522],[11523],[11524],[11525],[11526],[11527],[11528],[11529],[11530],[11531],[11532],[11533],[11534],[11535],[11536],[11537],[11538],[11539],[11540],[11541],[11542],[11543],[11544],[11545],[11546],[11547],[11548],[11549],[11550],[11551],[11552],[11553],[11554],[11555],[11556],[11557],[11558],[11559],[11560],[11561],[11562],[11563],[11564],[11565],[11566],[11567],[11568],[11569],[11570],[11571],[11572],[11573],[11574],[11575],[11576],[11577],[11578],[11579],[11580],[11581],[11582],[11583],[11584],[11585],[11586],[11587],[11588],[11589],[11590],[11591],[11592],[11593],[11594],[11595],[11596],[11597],[11598],[11599],[11600],[11601],[11602],[11603],[11604],[11605],[11606],[11607],[11608],[11609],[11610],[11611],[11612],[11613],[11614],[11615],[11616],[11617],[11618],[11619],[11620],[11621],[11622],[11623],[11624],[11625],[11626],[11627],[11628],[11629],[11630],[11631],[11632],[11633],[11634],[11635],[11636]]},{"type":"MultiLineString","arcs":[[11637],[11638],[11639],[11640],[11641],[11642],[11643],[11644],[11645]]},{"type":"MultiLineString","arcs":[[11646],[11647],[11648],[11649],[11650],[11651],[11652],[11653],[11654],[11655],[11656],[11657],[11658],[11659],[11660],[11661],[11662],[11663],[11664],[11665],[11666],[11667],[11668],[11669],[11670],[11671],[11672],[11673],[11674],[11675],[11676],[11677],[11678],[11679],[11680],[11681],[11682],[11683],[11684],[11685],[11686],[11687]]},{"type":"MultiLineString","arcs":[[11688],[11689],[11690],[11691],[11692],[11693],[11694],[11695],[11696],[11697],[11698],[11699],[11700],[11701],[11702],[11703],[11704],[11705],[11706],[11707],[11708],[11709],[11710],[11711],[11712],[11713],[11714],[11715],[11716],[11717],[11718],[11719],[11720],[11721],[11722],[11723],[11724],[11725],[11726],[11727],[11728],[11729],[11730],[11731],[11732],[11733],[11734],[11735],[11736],[11737],[11738],[11739],[11740],[11741],[11742],[11743],[11744],[11745],[11746],[11747],[11748],[11749],[11750],[11751],[11752],[11753],[11754],[11755],[11756],[11757],[11758],[11759],[11760],[11761],[11762],[11763],[11764],[11765],[11766],[11767],[11768],[11769],[11770],[11771],[11772],[11773],[11774],[11775],[11776],[11777],[11778],[11779],[11780],[11781],[11782],[11783],[11784],[11785],[11786],[11787],[11788],[11789],[11790],[11791],[11792],[11793],[11794],[11795],[11796],[11797],[11798],[11799],[11800],[11801],[11802],[11803],[11804],[11805],[11806],[11807],[11808],[11809],[11810],[11811],[11812],[11813],[11814],[11815],[11816],[11817],[11818],[11819],[11820],[11821],[11822],[11823]]},{"type":"MultiLineString","arcs":[[11824],[11825],[11826],[11827],[11828],[11829],[11830],[11831],[11832],[11833],[11834],[11835],[11836]]},{"type":"MultiLineString","arcs":[[11837],[11838],[11839],[11840],[11841],[11842],[11843]]},{"type":"MultiLineString","arcs":[[11844],[11845],[11846],[11847],[11848],[11849],[11850],[11851],[11852],[11853],[11854],[11855]]},{"type":"MultiLineString","arcs":[[11856],[11857],[11858],[11859],[11860],[11861],[11862]]},{"type":"LineString","arcs":[11863]},{"type":"MultiLineString","arcs":[[11856],[11857],[11858],[11859],[11860],[11861],[11862]]},{"type":"MultiLineString","arcs":[[11864],[11865],[11866],[11867],[11868],[11869],[11870],[11871],[11872],[11873],[11874],[11875],[11876],[11877],[11878],[11879],[11880],[11881],[11882],[11883],[11884],[11885],[11886],[11887],[11888],[11889],[11890],[11891],[11892],[11893],[11894],[11895],[11896],[11897],[11898],[11899],[11900],[11901],[11902],[11903],[11904],[11905],[11906],[11907],[11908],[11909],[11910],[11911],[11912],[11913],[11914],[11915],[11916],[11917],[11918],[11919],[11920],[11921],[11922],[11923],[11924],[11925],[11926],[11927],[11928],[11929],[11930],[11931],[11932],[11933],[11934],[11935],[11936],[11937],[11938],[11939],[11940],[11941],[11942],[11943],[11944],[11945],[11946],[11947],[11948],[11949],[11950],[11951],[11952],[11953],[11954],[11955,11956,11957,88],[11958],[11959],[11960,11961,11962,11963,11964,11965,11966],[11967,11968,11969],[11970],[11971],[11972],[11973],[11974],[11975],[11976],[11977,11978],[11979],[11980,11981]]},{"type":"MultiLineString","arcs":[[11873],[11874],[11875],[11876],[11877],[11878],[11879],[11880],[11881],[11882],[11883],[11884],[11885],[11886],[11887],[11888],[11889],[11890],[11891],[11892],[11893],[11894],[11895],[11896],[11897],[11898],[11899],[11900],[11901],[11902],[11903],[11904],[11905],[11906],[11907],[11908],[11909],[11911],[11912],[11913],[11914],[11915],[11916],[11917],[11918],[11919],[11920],[11921],[11922],[11923],[11924],[11925],[11926],[11927],[11928],[11929],[11930],[11931],[11932],[11933],[11934],[11935],[11936],[11937],[11938],[11939],[11940],[11941],[11942],[11943],[11944],[11945],[11946],[11947],[11948],[11949],[11950],[11951],[11952],[11982],[11953],[11954],[11983],[11984],[11985],[11986],[11955,11987,11957,88],[11958],[11959],[11988],[11989],[11990],[11991],[11992],[11993],[11994],[11995],[11996],[11960,11997,11998,11999,12000,12001,11966],[11978],[11967],[11970],[11971],[11972],[11973],[11974],[12002],[11975],[11976],[11977],[-11970,12003],[11981],[11979],[12004],[12005,11980],[12006],[12007],[12008],[12009],[12010],[12011],[12012],[12013],[12014],[12015],[12016]]},{"type":"MultiLineString","arcs":[[9438],[9439,9440,-452,9441,-450,9442,9443,-447,9444,9445,9446,9447,-442,9448,-440,9449,-438,9450,-436,9451,-434,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,-415,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,-403,9481,9482,-400,9483,-398,9484,9485,-395,9486,9487,9488,-391,9489,9490,9491,9492,9493,9494,9495,-383,9496,9497,9498,9499,-378,9500,-376,9501,-374,9502,9503,9504,9505,9506],[9507],[9508,365,9509,367],[9510,9511,336,9512,338,9513,340,9514,9515,343,9516,345,9517,9518,348,9519,9520,9521,352,9522,354,9523,9524,9525,358,9526,9527,9528,9529,9530,9531],[9532,1130,9533,1132,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,473,9549,475,9550,477,9551,479,9552,9553,9554,9555,9556,9557,9558,9559,488,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,504,9575,506,9576,9577,9578,9579,9580,9581,9582,514,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,535,9603,9604,538,9605,9606,9607,9608,9609,9610,9611,9612,547,9613,549,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,560,9624,562,9625,9626,565,9627,9628,9629,9630,9631,9632,9633,9634,9635,575,9636,577,9637,9638,9639,9640,582,9641,9642,9643,586,9644,9645,9646,9647,9648,9649,9650,9651,595,9652,597,9653,9654,9655,9656,602,9657,9658,605,9659,9660,9661,9662,9663,611,9664,613,9665,615,9666,9667,9668,9669,9670,621,9671,9672,9673,9674,9675,9676,628,9677,9678,631,9679,633,9680,9681,9682,9683,9684],[9685,9686,9687,1123,9688,1125,9689,9690,9691],[9692],[9693,744,9694,9695,747,9696,749,9697,751,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,762,9708,9709,765,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,781,9725,9726,784,9727,9728,787,9729,9730,9731,9732,9733,9734,794,9735,796,9736,798,9737,9738,9739,9740,9741,9742,9743,806,9744,808,9745,9746,9747,812,9748,9749,9750,9751,9752,818,9753,9754,9755,9756,823,9757,9758,9759,9760,9761,9762,830,9763,9764,9765,9766,9767,9768,837,9769,9770,840,9771,9772,9773,844,9774,9775,9776,9777,9778,9779,9780,852,9781,854,9782,856,9783,9784,9785,860,9786,9787,9788,9789,9790,866,9791,9792,9793,9794,9795,872,9796,9797,9798,9799,9800,9801,879,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,900,9822,902,9823,9824,9825],[9826],[9827,-466,9828,-464,9829,9830,9831,9832,-459,9833,9834,9835,9836],[9837],[9838],[9839,908,9840,910,9841,9842,9843,914,9844,9845,9846,9847,9848,920,9849,922,9850,924,9851,9852,9853,9854,9855,930,9856,932,9857,9858,935,9859,9860,9861,9862,940,9863,9864,943,9865,945,9866,9867,9868,949,9869,9870,9871,9872,9873,9874,9875,9876,9877],[9878],[9879],[9880,9881,9882,1066,9883,1068,9884,9885,9886,9887,9888,9889,1075,9890,9891,1078,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,1090,9903,1092,9904,9905,9906,9907,9908,1098,9909,9910,9911,1102,9912,9913,9914,1106,9915,9916,1109,9917,9918,9919,9920,9921,1115,9922,9923,9924,1119,9925],[9926,9927,1796,9928,9929,9930,9931,9932,1802,9933,9934,9935,9936,1807,9937,9938,9939,9940,9941,9942,9943,1815,9944,1817,9945,9946,1820,9947,9948,9949,1824,9950,1826,9951,9952,9953,9954,9955,9956,9957,9958,9959,1836,9960,1838,9961,1840,9962,9963,9964,9965,689,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,703,9979,9980,9981,9982,9983,9984,9985,711,9986,9987,9988,9989,9990,9991,9992,719,9993,721,9994,9995,9996,9997,9998,9999,10000,10001,730,10002,10003,10004,10005,10006,736,10007,10008,10009],[10010],[10011],[10012,10013,1035,10014,10015,1038,10016,1040,10017,1042,10018,10019,1045,10020,10021,1048,10022,10023,10024,10025,10026,10027,10028,10029,10030,1058,10031,10032,1061,10033,10034],[10035],[10036],[10037],[1015,10038,10039,1018,10040,10041,10042,10043,10044,1024,10045,1026,10046,1028,10047,1030,10048,1032,10049],[10050],[10051],[10052],[10053],[10054],[10055,10056,2454,10057,10058,10059,10060,10061,10062,10063,10064,10065,2464,10066,10067,10068,10069,2469,10070,10071,10072,2473,10073,2475,10074,2477,10075,2479,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,2490,10086,2492,10087,10088,2495,10089,10090,10091,10092,10093,2501,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,2524,10116,2526,10117,10118,10119,10120,2531,10121,2533,10122,10123,2536,10124,10125,10126,2540,10127,2542,10128,10129,10130,2546,10131,2548,10132,10133,2551,10134,2553,10135,10136,10137,10138,2558,10139,2560,10140,10141,2563,10142,10143,10144,10145,10146,10147,10148,10149,2572,10150,10151,10152,10153,2577,10154,10155,2580,10156,10157,2583,10158,2585,10159,2587,10160,2589,10161,10162,10163,10164,10165,10166,10167,10168,2598,10169,2600,10170,2602,10171,10172,10173,10174,2607,10175,2609,10176,10177,10178,2613,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,2625,10190,2627,10191,10192,10193,2631,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,2643,10205,10206,2646,10207,10208,10209,2650,10210,10211,2653,10212,10213,10214,10215,10216,2659,10217,10218,10219,10220,10221,10222,10223],[10224],[10225],[10226],[10227,10228,10229,10230,10231,10232,10233,10234,969,10235,10236,972,10237,974,10238,10239,10240,10241,10242,980,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,991,10253,10254,10255,10256,996,10257,998,10258,1000,10259,1002,10260,10261,10262,10263,10264,1008,10265,10266,10267,1012,10268],[10269],[10270,10271,2112],[10272,10273,2399,10274,10275,10276,10277,10278,10279,2406,10280,10281,2409,10282,10283,10284,10285,2414,10286,10287,10288,10289,10290,10291,10292,10293,2423,10294,2425,10295,10296,2428,10297,10298,2431,10299,10300,10301,10302,10303,2437,10304,10305,2440,10306,10307,2443,10308,10309,2446,10310,10311,10312,10313,10314,10315],[10316],[10317],[10318,10319,10320,10321,10322,1206,10323,1208,10324,10325,10326,10327,10328,10329,10330,10331,1217,10332,10333,10334,1221,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,1235,10348,1237,10349,10350,1240,10351,10352,10353,10354,1245,10355,10356,10357,10358,1250,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,1262,10370,10371,1265,10372,1267,10373,1269,10374,10375,10376,10377,10378,10379,10380,10381,1278,10382,1280,10383,10384,10385,10386,1285,10387,10388,1288,10389,10390,10391,10392,10393,10394,10395,10396,1297,10397,10398,10399,10400,1302,10401,10402,10403,10404,1307,10405,10406,10407,1311,10408,10409,1314,10410,10411,10412,1318,10413,1320,10414,1322,10415,1324,10416,10417,10418,10419,1329,10420,10421,10422,10423,10424,10425,10426,1337,10427,10428,10429,10430,1342,10431,10432,10433,10434,10435,1348,10436,10437,10438,1352,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,1364,10450,10451,10452,10453,10454,10455,1371,10456,10457,10458,1375,10459,10460,1378,10461,10462,10463,10464,1383,10465,10466,10467,1387,10468,1389,10469,10470,1392,10471,10472,10473,10474,1397,10475,1399,10476,10477,10478,10479,1404,10480,10481,1407,10482],[10483,10484,10485,10486,10487,10488,10489,10490,10491,1582,10492,10493,10494,10495,10496,10497,10498,10499,1591,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,1604,10512,1606,10513,10514,10515,10516,10517,1612,10518,10519,10520,1616,10521,1618,10522,1620,10523,1622,10524,1624,10525,10526,1627,10527,10528,10529,1631,10530,10531,10532,1635,10533,10534,10535,1639,10536,10537,1642,10538,1644,10539,1646,10540,10541,1649,10542,10543,10544,1653,10545,10546,10547,1657,10548,10549,10550,10551,10552,10553,10554,10555,10556,1667,10557,10558,1670,10559,10560,1673,10561,10562,10563,10564,1678,10565,10566,10567,10568,10569,10570,10571,1686,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,1720,10605,10606,1723,10607,1725,10608,1727,10609,10610,10611,10612,1732,10613,10614,10615,10616,10617,10618,10619,1740,10620,10621,1743,10622,10623,1746,10624,1748,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,1761,10637,10638,1764,10639,10640,10641,1768,10642,10643,10644,10645,10646,1774,10647,10648,10649,10650,1779,10651,10652,10653,10654,10655,1785,10656,10657,10658,1789,10659,1791,10660,10661,10662],[10663],[10664],[10665],[10666],[10667],[10668,2034,10669,10670,10671,2038,10672,2040,10673,10674,2043,10675,10676,2046,10677,10678,10679,10680,10681,2052,10682,10683,2055,10684,10685,2058,10686,2060,10687,10688,2063,10689,10690,10691,2067,10692,10693,10694,2071,10695,10696,10697,10698,2076,10699,10700,10701,10702,10703,2082,10704,2084,10705,10706,2087,10707,10708,2090,10709,10710,2093,10711,10712,10713,10714,2098,10715,10716,2101,10717,10718,2104,10719,2106,10720,10721,2109,10722],[10723,10724,10725,10726,10727],[10728,1410,10729,10730,1413,10731,1415,10732,10733,10734,10735,1420,10736,10737,10738,10739,10740,1426,10741,10742,10743,10744,10745,1432,10746,10747,1435,10748,10749,1438,10750,10751,1441,10752,10753,10754,10755,1446,10756,1448,10757,10758,10759,10760,10761,1454,10762,10763,10764,10765,10766,10767,10768,10769,1463,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,1479,10785,10786,10787,10788,1484,10789,1486,10790,1488,10791,10792,1491,10793,1493,10794,10795,1496,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,1511,10810,1513,10811,10812,1516,10813,1518,10814,1520,10815,1522,10816,1524,10817,10818,10819,10820,10821,10822,1531,10823,10824,10825,1535,10826,10827,10828,1539,10829,10830,1542,10831,1544,10832,10833,10834,10835,1549,10836,1551,10837,10838,1554,10839,10840,1557,10841,1559,10842,10843,10844,1563,10845,10846,10847,10848,10849,10850,1570,10851,10852,10853],[10854],[10855],[10856],[10857],[10858,10859,10860,10861,1925,10862,1927,10863,10864,1930,10865,10866,10867,10868,10869,1936,10870,10871,10872,10873,10874,10875,1943,10876,1945,10877,1947,10878,1949,10879,1951,10880,10881,10882,10883,10884,10885,10886,10887,10888,1961,10889,1963,10890,10891,10892,10893,10894,1969,10895,1971,10896,1973,10897,1975,10898,1977,10899,10900,1980,10901,10902,10903,10904,1985,10905,10906,1988,10907,10908,1991,10909,1993,10910,10911,10912,1997,10913,1999,10914,10915,2002,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,2016,10929,10930,2019,10931,10932,10933,2023,10934,2025,10935,2027,10936,10937],[10938,10939,10940,1845,10941,10942,10943,10944,1850,10945,10946,1853,10947,1855,10948,10949,10950,10951,10952,1861,10953,10954,10955,10956,10957],[10958],[10959],[10960],[10961,1149,10962,1151,10963,10964,10965,10966,10967,10968,10969,10970,1160,10971,10972,1163,10973,1165,10974,10975,1168,10976,10977,10978,10979,10980,10981,10982,10983,1177,10984,1179,10985,1181,10986,10987,1184,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,1195,10998,10999,11000,11001,1200,11002],[11003],[11004],[11005],[11006,2114,11007,11008,11009,11010,11011,11012,11013,11014,2123,11015,11016,11017,11018,11019,11020,2130,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,2141,11031,11032,11033,11034,11035,2147,11036,2149,11037,2151,11038,11039,11040,11041,11042,11043,11044,11045,11046,2161,11047,2163,11048,2165,11049,2167,11050,11051,11052,11053,2172,11054,11055,11056,2176,11057,11058,11059,11060,11061,11062,11063,11064,11065,2186,11066,2188,11067,11068,2191,11069,11070,11071,11072,11073,11074,2198,11075,11076,11077,11078,2203,11079,2205,11080,11081,11082,2209,11083,2211,11084,11085,11086,11087,2216,11088,11089,11090,11091,11092,2222,11093,2224,11094,11095,2227,11096,11097,2230,11098,11099,2233,11100,11101,11102,11103,11104,2239,11105,11106,2242,11107,11108,11109,11110,11111,2248,11112,11113,2251,11114,11115,11116],[11117,11118,11119,11120,11121,11122,11123,11124,11125,1878,11126,11127,11128,11129,1883,11130,1885,11131,11132,1888,11133,11134,11135,11136,1893,11137,11138,11139,11140,1898,11141,11142,11143,11144,1903,11145,11146,1906,11147,11148,11149,1910,11150,11151,11152,11153,11154,1916,11155,11156,11157,11158,11159],[11160],[11161,11162],[11163],[11164],[11165,11166,11167,11168,11169,2259,11170,2261,11171,11172,2264,11173,11174,11175,11176,11177,2270,11178,2272,11179,11180,11181,2276,11182,2278,11183,11184,11185,2282,11186,11187,11188,2286,11189,2288,11190,11191,11192,11193,11194,11195,11196,11197,11198,2298,11199,2300,11200,11201,2303,11202,2305,11203,11204,2308,11205,11206,11207,11208,2313,11209,11210,11211,11212,2318,11213,11214,11215,11216,11217,11218,2325,11219,2327,11220,11221,11222,11223,2332,11224,11225,11226,11227,2337,11228,11229,2340,11230,11231,11232,11233,11234,11235,11236,2348,11237,11238,2351,11239,11240,11241,11242,11243,2357,11244,2359,11245,11246,11247,2363,11248,11249,11250,11251,11252,11253,11254,11255,2372,11256,11257,11258,11259,11260,2378,11261,2380,11262,2382,11263,2384,11264,2386,11265,11266,11267,11268,11269,11270,11271,11272,11273,2396,11274],[11275,11276],[11277],[11278],[11279,11280,11281],[11282],[11283],[11284],[11285],[11286],[11287],[11288],[11289],[11290],[11291],[11292],[11293],[11294],[11295],[11296],[11297],[11298],[11299],[11300],[11301],[11302],[11303],[11304],[11305],[11306],[11307],[11308],[11309],[11310]]},{"type":"MultiLineString","arcs":[[12017],[12018],[12019],[12020],[12021],[12022],[12023],[12024],[12025],[12026],[12027],[12028],[12029],[12030],[12031],[12032],[12033],[12034],[12035],[12036],[12037],[12038],[12039],[12040],[12041],[12042],[12043],[12044],[12045],[12046],[12047],[12048],[12049],[12050],[12051],[12052],[12053],[12054],[12055],[12056],[12057],[12058],[12059],[12060],[12061],[12062],[12063],[12064],[12065],[12066],[12067],[12068],[12069],[12070],[12071],[12072],[12073],[12074],[12075],[12076],[12077],[12078],[12079],[12080],[12081],[12082],[12083],[12084],[12085],[12086],[12087],[12088],[12089],[12090],[12091],[12092],[12093],[12094],[12095],[12096],[12097],[12098],[12099],[12100],[12101],[12102],[12103],[12104],[12105],[12106],[12107],[12108],[12109],[12110],[12111],[12112],[12113],[12114],[12115],[12116],[12117],[12118],[12119],[12120],[12121],[12122],[12123],[12124],[12125],[12126],[12127],[12128],[12129],[12130]]},{"type":"MultiLineString","arcs":[[12131],[12132],[12133],[12134],[12135],[12136],[12137],[12138],[12139],[12140],[12141],[12142],[12143],[12144],[12145],[12146]]},{"type":"MultiLineString","arcs":[[12147],[12148],[12149],[12150],[12151],[12152],[12153],[12154],[12155],[12156],[12157],[12158],[12159],[12160],[12161],[12162],[12163],[12164],[12165],[12166],[12167],[12168],[12169],[12170],[12171],[12172],[12173],[12174],[12175],[12176],[12177],[12178],[12179],[12180],[12181],[12182],[12183],[12184],[12185],[12186],[12187],[12188],[12189],[12190],[12191],[12192],[12193],[12194],[12195],[12196],[12197],[12198],[12199],[12200],[12201],[12202],[12203],[12204],[12205],[12206],[12207],[12208],[12209],[12210],[12211],[12212],[12213],[12214],[12215],[12216],[12217],[12218],[12219],[12220],[12221],[12222],[12223],[12224],[12225],[12226],[12227],[12228],[12229],[12230],[12231],[12232],[12233],[12234],[12235],[12236],[12237],[12238],[12239],[12240]]},{"type":"MultiLineString","arcs":[[12241],[12242],[12243],[12244],[12245],[12246],[12247],[12248],[12249],[12250],[12251],[12252],[12253],[12254],[12255],[12256],[12257],[12258],[12259],[12260],[12261],[12262],[12263],[12264],[12265],[12266],[12267],[12268],[12269],[12270],[12271],[12272],[12273],[12274],[12275],[12276],[12277],[12278],[12279],[12280],[12281],[12282],[12283],[12284],[12285],[12286],[12287],[12288],[12289],[12290],[12291],[12292],[12293],[12294],[12295],[12296],[12297],[12298]]},{"type":"MultiLineString","arcs":[[12299,12300],[12301,12302,12303,12304,12305],[12306],[12307],[12308,12309],[12310],[12311],[12312],[12313],[12314],[12315,12316,12317,12318,12319,12320,12321,12322,12323,12324,12325],[12326,12327,12328,12329,12330,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12352,12353,12354,12355,12356,12357,12358,12359,12360,12361,12362,12363,12364,12365,12366,12367,12368,12369,12370,12371,12372,12373,12374,12375,12376,12377,12378,12379,12380,12381,12382,12383,12384,12385,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397,12398],[12399,12400,12401,12402,12403,12404,12405,12406,12407,12408,12409,12410,12411,12412,12413,12414,12415,12416,12417,12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12446,12447,12448,12449,12450,12451,12452,12453,12454,12455,12456,12457,12458,12459,12460,12461,12462],[12463,12464,12465,12466],[12467,12468,12469],[12470,12471,12472,12473,12474,12475,12476],[12477],[12478],[12479,12480,12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494],[12495],[12496],[12497],[12498],[12499],[12500,12501,12502,12503,12504,12505,12506,12507,12508,12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519,12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,12532,12533,12534,12535,12536,12537,12538,12539,12540,12541,12542,12543,12544,12545,12546,12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562],[12563],[12564,12565,12566,12567,12568,12569,12570,12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,12584,12585,12586,12587,12588,12589,12590,12591,12592,12593,12594,12595,12596,12597,12598,12599,12600,12601,12602,12603,12604,12605,12606,12607,12608,12609,12610,12611,12612,12613,12614,12615,12616,12617,12618,12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631,12632,12633,12634,12635,12636,12637,12638,12639,12640],[12641,12642,12643,12644,12645,12646,12647,12648,12649,12650,12651,12652,12653,12654,12655,12656,12657,12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,12670,12671,12672,12673,12674,12675,12676,12677,12678,12679,12680,12681,12682,12683,12684,12685,12686,12687,12688,12689],[12690,12691,12692,12693,12694,12695],[12696],[12697],[12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708,12709,12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726],[12727],[12728,12729],[12730]]},{"type":"MultiLineString","arcs":[[12731],[12300],[12732],[12733],[12734],[12735],[12736],[12737],[12738],[12739],[12740],[12741],[12742],[12743],[12744],[12745],[12746],[12747],[12748],[12749],[12750],[12751],[12303,12752,12305,12753],[12754],[12755],[12306],[12307,12756],[-12311,12757,-12310],[12758,12301],[12759],[12760],[12761],[12762],[12763],[12764],[12765],[12766],[12767],[12768],[12769],[12770],[12771],[12772],[12773],[12774],[12775],[12776],[12777],[12778],[12779],[12780],[12781],[12782],[12476,12783,12312,12784,12311,12785],[12786],[12787],[12788],[12472,12789,12474],[12399,12790,12791,12792,12403,12793,12405,12794,12407,12795,12796,12410,12797,12798,12799,12414,12800,12801,12802,12803,12804,12805,12806,12422,12807,12424,12808,12809,12810,12811,12812,12813,12814,12815,12816,12434,12817,12436,12818,12819,12820,12440,12821,12442,12822,12444,12823,12446,12824,12825,12449,12826,12451,12827,12453,12828,12455,12829,12830,12831,12459,12832,12833,12462,12834,12314,12835,12313],[12836,12464,12837,12466],[12838,12326,12839,12328,12840,12330,12841,12842,12333,12843,12335,12844,12337,12845,12846,12340,12847,12848,12343,12849,12850,12851,12347,12852,12349,12853,12351,12854,12353,12855,12355,12856,12857,12358,12858,12859,12860,12362,12861,12364,12862,12863,12367,12864,12865,12866,12371,12867,12373,12868,12869,12870,12377,12871,12872,12873,12381,12874,12875,12384,12876,12877,12387,12878,12389,12879,12391,12880,12881,12882,12883,12396,12884,12398,12885,12315,12886,12887,12318,12888,12889,12321,12890,12891,12892,12325,12893],[12470],[12477],[12478],[12479,12894,12481,12895,12896,12484,12897,12486,12898,12488,12899,12900,12491,12901,12493,12902,12903,12904,12905,12469],[12497],[12498],[12499],[12906],[12691,12907,12693,12908,12909],[12500,12910,12502,12911,12912,12913,12506,12914,12508,12915,12510,12916,12917,12513,12918,12919,12516,12920,12921,12519,12922,12521,12923,12924,12925,12525,12926,12527,12927,12529,12928,12531,12929,12930,12534,12931,12536,12932,12538,12933,12540,12934,12935,12936,12937,12938,12939,12940,12941,12549,12942,12551,12943,12553],[12562,12944,12563],[12555,12945,12557,12946,12947,12560],[12642,12948,12949,12645,12950,12647,12951,12952,12650,12953,12652,12954,12654,12955,12956,12657,12957,12958,12959,12661,12960,12961,12664,12962,12963,12667,12964,12669,12965,12966,12672,12967,12968,12969,12970,12677,12971,12972,12680,12973,12682,12974,12684,12975,12686,12976,12977,12978,12979,12980,12565,12981,12567,12982,12569,12983,12984,12572,12985,12574,12986,12987,12577,12988,12579,12989,12581,12990,12583,12991,12992,12993,12994,12588,12995,12996,12591,12997,12998,12594,12999,13000,13001,13002,12599,13003,12601,13004,13005,12604,13006,13007,12607,13008,13009,13010,12611,13011,12613,13012,12615,13013,13014,12618,13015,13016,12621,13017,13018,12624,13019,12626,13020,12628,13021,13022,12631,13023,13024,12634,13025,13026,12637,13027,13028,12640],[12716,13029,12718,13030,12720,13031,12722,13032,12724,13033,12726],[12698,13034,12700,13035,12702,13036,13037,12705,13038,13039,12708,13040,12710,13041,12712,13042,12714],[13043],[13044,12729],[13045],[13046],[13047]]}]}},"arcs":[[[78585,71308],[-130,153]],[[78443,71016],[141,293]],[[79146,65098],[181,-76]],[[81017,63158],[-240,164],[59,169],[-244,236],[9,405],[-117,240]],[[78603,69515],[165,-528]],[[78606,69515],[-435,598]],[[79582,65328],[-255,-306]],[[79327,65022],[-169,-137]],[[81480,61412],[-186,-119],[-249,374],[-12,450]],[[77837,68672],[-181,-273]],[[88303,80042],[-235,198],[-323,-322],[-157,208]],[[88837,79919],[-128,-145]],[[87588,80126],[-101,835]],[[88709,79774],[-268,-35],[-107,149]],[[88842,79705],[-133,69]],[[85768,77101],[333,372],[228,8],[136,579],[211,301],[-145,594],[114,458],[401,64],[542,649]],[[89056,52672],[127,-47]],[[89144,51305],[-37,91]],[[88551,51203],[93,21]],[[89891,50130],[-401,485]],[[89639,47731],[-305,-285],[8,-230]],[[89883,47394],[-173,97],[-231,-302]],[[89305,47466],[-180,-369]],[[89911,47237],[-437,-159],[5,111]],[[88669,47387],[-14,79]],[[89479,47189],[-137,27]],[[89342,47216],[-155,-219]],[[90218,47014],[-153,-403]],[[89899,46970],[-253,-152],[-405,133]],[[89125,47097],[-84,-49]],[[89187,46997],[-62,100]],[[91021,46584],[-181,122],[-142,452],[-286,-141]],[[89241,46951],[-54,46]],[[90065,46611],[-153,-101],[-193,187],[-296,-121]],[[90164,46552],[-99,59]],[[90904,46380],[-175,5]],[[90729,46385],[-317,630]],[[89423,46576],[-202,122],[20,253]],[[90725,46268],[4,117]],[[89961,46404],[-58,-54]],[[90018,46350],[-115,0]],[[89903,46350],[-349,-12],[-131,238]],[[90850,46125],[-125,143]],[[91166,45886],[-316,239]],[[91135,45846],[-88,-310]],[[90936,45883],[-86,242]],[[90843,45635],[-118,633]],[[91047,45536],[-204,99]],[[90857,45345],[-14,290]],[[91052,45057],[-195,288]],[[91133,45035],[-86,501]],[[90903,44870],[-46,475]],[[98348,39893],[8,-57]],[[98356,39836],[-12,-2]],[[98356,39836],[0,-16]],[[98248,39524],[-46,-7]],[[84401,60837],[-131,-957],[-314,-172],[-22,-264]],[[80331,58352],[291,-519],[202,-621]],[[80221,57621],[102,-247],[501,-162]],[[79880,57433],[312,-477],[779,187]],[[81089,57187],[163,124],[50,329]],[[80824,57212],[147,-69]],[[80971,57143],[118,44]],[[81498,56790],[-220,11],[-189,386]],[[87265,52930],[-275,287],[-682,490],[-113,168],[-663,508],[13,179]],[[74242,62732],[-326,-346]],[[74235,62642],[-96,-132]],[[74252,62556],[-70,-289]],[[74139,62510],[-110,-217]],[[74139,62510],[-50,-304],[131,-327]],[[74318,62371],[0,0]],[[74318,62371],[-145,428],[-239,-323]],[[74318,62371],[-145,-228]],[[74104,62316],[44,-180]],[[74103,62303],[-88,-187]],[[74150,62151],[15,-14]],[[74185,62008],[133,363]],[[75057,60801],[-169,55]],[[75228,60683],[121,95]],[[75020,60683],[18,269]],[[75020,60683],[236,-34]],[[75020,60683],[0,0]],[[74956,60566],[236,-42]],[[74864,60460],[156,223]],[[84950,53539],[-388,479],[4,177],[-472,282],[-365,421],[-528,110],[-59,225]],[[83142,55233],[-260,328]],[[85874,53216],[-674,993]],[[85200,54209],[-488,444],[-605,362],[-301,318]],[[83806,55333],[-3,5]],[[83803,55338],[-93,149]],[[86303,53271],[-156,292],[-448,315],[-90,175],[-409,156]],[[75587,75209],[0,0]],[[75541,75087],[0,0]],[[75592,74977],[0,0]],[[75860,74524],[-32,230],[-284,334],[157,345],[-248,246],[139,99],[-53,273],[-262,74],[-168,283],[-145,522],[-202,279]],[[77195,72386],[-134,-488],[-149,339],[-356,-82],[135,253],[-173,28]],[[76518,72436],[-151,178],[189,368],[-370,108],[33,369],[-210,-4],[-169,-268],[-2,338],[-155,226],[246,339],[-328,18],[-17,282],[259,123]],[[76234,69991],[-3,272],[-251,414],[120,883],[215,270],[-62,200],[265,406]],[[82521,59359],[-13,-155]],[[82522,59193],[35,-72]],[[42811,84704],[-20,66]],[[42815,84691],[-4,13]],[[42817,84679],[-2,12]],[[42812,84678],[-1,26]],[[42861,84581],[-46,110]],[[43907,84605],[-219,275]],[[20598,70213],[161,8]],[[20760,70223],[71,-94]],[[20554,69836],[103,-44]],[[23799,69478],[415,298],[518,-311],[144,-354]],[[24880,69109],[9,-9]],[[24891,69098],[10,-10]],[[19880,68128],[226,36],[238,-255],[152,84]],[[24902,69087],[20,-28]],[[25087,69083],[5,4]],[[24924,69049],[1,-4]],[[25049,69060],[4,1]],[[25008,69036],[1,2]],[[24958,69027],[9,2]],[[24921,69015],[5,-5]],[[24922,68969],[6,-41]],[[24928,68910],[-1,-16]],[[22834,68507],[-132,-647]],[[24926,68880],[2,-14]],[[20547,68041],[21,120]],[[20547,68041],[159,136]],[[20496,67993],[51,48]],[[20496,67993],[48,-20]],[[24929,68838],[8,-7]],[[24945,68825],[2,-2]],[[24954,68813],[-31,-104]],[[24923,68708],[0,-12]],[[24922,68688],[0,-2]],[[24924,68679],[0,-8]],[[24925,68659],[8,-6]],[[24996,68672],[153,-63],[323,276]],[[24992,68669],[4,2]],[[24955,68661],[11,0]],[[24990,68667],[0,0]],[[24939,68654],[1,0]],[[24947,68645],[5,-4]],[[25005,68577],[6,-10]],[[25018,68558],[6,-3]],[[25026,68542],[16,-26]],[[23193,68184],[-6,-1]],[[23172,68180],[-51,60]],[[23184,68180],[-10,-4]],[[25056,68494],[22,-31]],[[23272,68146],[-8,-10]],[[23286,68141],[-2,2]],[[23264,68133],[-52,26]],[[23288,68136],[0,0]],[[25080,68459],[248,-234],[268,147],[504,-527],[-43,-176],[210,-263]],[[23303,68110],[-17,23]],[[23328,68020],[0,2]],[[23335,67981],[0,3]],[[23335,67979],[0,1]],[[23330,67974],[4,5]],[[23325,67935],[-1,15]],[[23324,67934],[1,1]],[[23320,67863],[9,31]],[[23329,67846],[-8,7]],[[23322,67830],[0,0]],[[23319,67827],[1,2]],[[23326,67812],[-4,3]],[[23333,67785],[2,5]],[[23335,67776],[-1,3]],[[23349,67778],[-10,-3]],[[23355,67779],[-1,0]],[[23363,67775],[-5,3]],[[22887,67632],[2,-18]],[[22889,67614],[-1,-1]],[[22889,67603],[1,-5]],[[22894,67559],[11,-102]],[[22908,67432],[1,-15]],[[25963,67957],[-74,-175]],[[23642,67427],[100,-623]],[[25889,67782],[-98,-89]],[[25889,67782],[-29,-229]],[[25860,67553],[-57,-79]],[[23995,67373],[-346,52],[-267,337]],[[23997,67373],[359,149],[50,-365]],[[24406,67157],[-1,0]],[[22957,66979],[7,-68]],[[24405,67157],[0,0]],[[24405,67157],[39,-31]],[[24405,67157],[-1,-2]],[[24404,67155],[-59,-499],[452,-843]],[[24797,65813],[0,0]],[[22995,66803],[0,-77]],[[22995,66708],[-1,-4]],[[23742,66804],[65,-118]],[[23742,66804],[-32,-449],[140,-361],[177,-92],[159,-347],[-256,-137]],[[23011,66590],[11,-74]],[[23020,66504],[1,-2]],[[23031,66475],[53,-280]],[[24797,65813],[81,0]],[[24797,65813],[56,-537]],[[24797,65813],[0,0]],[[24878,65813],[115,31]],[[24878,65813],[245,-423]],[[24217,65582],[-14,-53]],[[24191,65541],[12,-12]],[[24203,65529],[50,-124]],[[23629,64936],[74,23]],[[23612,64903],[-156,376]],[[23653,64868],[-41,35]],[[23600,64777],[12,126]],[[18586,61665],[-210,91],[-76,297]],[[18011,60939],[-66,-152]],[[18013,60939],[195,-209]],[[17935,60783],[-7,-21]],[[17928,60760],[2,-16]],[[17932,60724],[2,-13]],[[17938,60707],[-76,-209]],[[18210,60725],[247,-101]],[[17862,60498],[141,-365],[307,-177]],[[17862,60498],[-212,-510],[-13,-268],[-434,-313],[-381,127]],[[16822,59534],[13,57]],[[16822,59534],[-70,-14]],[[87233,82442],[19,96]],[[87154,82436],[-54,35]],[[87217,82400],[16,42]],[[82487,81510],[0,28]],[[82487,81510],[24,23]],[[82518,81500],[16,32]],[[82518,81500],[32,-9]],[[82365,81524],[88,83]],[[82365,81524],[11,-13]],[[82376,81511],[112,52]],[[82484,81485],[3,25]],[[82484,81485],[34,15]],[[82534,81431],[35,19]],[[82534,81431],[40,7]],[[82593,81413],[-115,-6]],[[82386,81433],[98,52]],[[82464,81412],[85,48]],[[82464,81412],[-78,21]],[[82478,81407],[56,24]],[[82359,81421],[17,90]],[[82359,81421],[27,12]],[[82430,81343],[34,69]],[[82430,81343],[48,64]],[[82402,81319],[28,24]],[[82365,81317],[-6,104]],[[82365,81317],[37,2]],[[82322,81267],[43,257]],[[82322,81267],[43,50]],[[82288,81190],[34,77]],[[82327,81114],[-39,76]],[[82327,81114],[75,205]],[[82122,80676],[132,66],[34,448]],[[70856,81304],[3,-1]],[[70787,81291],[-7,80]],[[70787,81291],[69,13]],[[70923,81217],[153,28]],[[70845,81152],[78,65]],[[70796,81124],[60,180]],[[70801,81108],[-5,16]],[[70801,81108],[44,44]],[[70757,81079],[39,45]],[[70759,81074],[-2,5]],[[70759,81074],[30,-10]],[[70789,81064],[12,44]],[[70789,81064],[56,88]],[[70692,81001],[95,290]],[[70703,80985],[-11,16]],[[70703,80985],[54,94]],[[70726,80867],[-23,118]],[[70726,80867],[33,207]],[[70636,80788],[56,213]],[[70636,80788],[90,79]],[[87886,78242],[-142,187],[-552,-272],[-323,-34],[-192,239]],[[86677,78362],[-145,591],[114,462],[163,-10],[530,352],[263,394],[-100,237],[-41,773],[89,242],[-200,849],[-227,245]],[[73309,80260],[1,38]],[[79510,79460],[-39,-10]],[[79510,79460],[-10,-20]],[[73344,80204],[-9,-5]],[[79442,79460],[-12,23]],[[79442,79460],[-5,1]],[[79437,79461],[-10,9]],[[79437,79461],[-17,-8]],[[79579,79440],[-69,20]],[[79579,79440],[-18,-17]],[[73365,80198],[-21,6]],[[73365,80198],[49,213]],[[73335,80199],[-26,61]],[[79471,79450],[-29,10]],[[79500,79440],[-18,-4]],[[79482,79436],[-11,14]],[[79482,79436],[-12,-19]],[[79561,79423],[-12,-11]],[[79561,79423],[14,-17]],[[79492,79431],[-22,-14]],[[79549,79412],[-102,-45]],[[79575,79406],[-26,6]],[[79470,79417],[-3,-4]],[[79590,79396],[-15,10]],[[79467,79413],[-47,31]],[[79467,79413],[-52,12]],[[79532,79394],[-32,46]],[[73350,80131],[-6,73]],[[73387,80126],[-22,72]],[[79415,79379],[-21,5]],[[73328,80115],[7,84]],[[73328,80115],[22,16]],[[79447,79367],[0,0]],[[79447,79367],[-32,12]],[[79447,79367],[0,-12]],[[73285,80104],[24,156]],[[73285,80104],[35,-7]],[[79447,79355],[-32,24]],[[73320,80097],[8,18]],[[73287,80097],[-2,7]],[[73358,80066],[-8,65]],[[73358,80066],[-38,31]],[[73374,80054],[13,72]],[[73364,80050],[-6,16]],[[73364,80050],[10,4]],[[73319,80047],[-32,50]],[[73334,80034],[-15,13]],[[73334,80034],[30,16]],[[73393,80015],[-6,111]],[[73366,80008],[8,46]],[[73366,80008],[-32,26]],[[70462,80280],[174,508]],[[73355,79993],[-36,54]],[[73355,79993],[16,-4]],[[73371,79989],[-5,19]],[[73371,79989],[22,26]],[[73353,79945],[-53,1]],[[73353,79945],[2,48]],[[73300,79946],[-13,151]],[[86462,78025],[215,337]],[[80039,79003],[0,0]],[[80039,79003],[1,0]],[[80040,79003],[0,0]],[[80040,79003],[1,0]],[[80041,79003],[0,0]],[[80041,79003],[1,0]],[[80042,79003],[0,0]],[[80042,79003],[0,0]],[[80042,79003],[1,0]],[[80043,79003],[0,0]],[[80043,79003],[1,0]],[[80044,79003],[0,0]],[[80044,79003],[-3,29]],[[80041,79032],[-26,38]],[[80015,79070],[-4,19]],[[80011,79089],[-8,40]],[[80003,79129],[-16,5]],[[79987,79134],[-5,-5]],[[79982,79129],[0,-5]],[[79982,79124],[2,-9]],[[79984,79115],[0,-5]],[[79984,79110],[-5,-2]],[[79979,79108],[-6,39]],[[79973,79147],[-6,13]],[[79967,79160],[0,4]],[[79967,79164],[4,10]],[[79971,79174],[-11,2]],[[79960,79176],[-1,19]],[[79959,79195],[0,8]],[[79959,79203],[-17,27]],[[79942,79230],[-3,-1]],[[79939,79229],[-6,3]],[[79933,79232],[-9,16]],[[79924,79248],[-6,0]],[[79918,79248],[-9,-2]],[[79909,79246],[-66,-11]],[[79843,79235],[-22,13]],[[79821,79248],[-14,7]],[[79807,79255],[-9,28]],[[79798,79283],[-1,4]],[[79797,79287],[-9,5]],[[79788,79292],[0,-5]],[[79788,79287],[-10,1]],[[79778,79288],[1,1]],[[79779,79289],[-4,6]],[[79775,79295],[-22,31]],[[79753,79326],[-1,8]],[[79752,79334],[6,1]],[[79758,79335],[1,2]],[[79759,79337],[1,13]],[[79760,79350],[-8,25]],[[79752,79375],[-4,9]],[[79748,79384],[-1,4]],[[79747,79388],[-1,2]],[[79746,79390],[-1,1]],[[79745,79391],[0,1]],[[79745,79392],[0,0]],[[79745,79392],[-1,1]],[[79744,79393],[0,0]],[[79744,79393],[-1,1]],[[79743,79394],[0,0]],[[79743,79394],[0,1]],[[79743,79395],[-1,0]],[[79742,79395],[0,1]],[[79742,79396],[0,0]],[[79742,79396],[-1,1]],[[79741,79397],[0,1]],[[79741,79398],[-1,0]],[[79740,79398],[0,0]],[[79740,79398],[0,1]],[[79740,79399],[0,2]],[[79740,79401],[0,1]],[[79740,79402],[0,1]],[[79740,79403],[-1,0]],[[79739,79403],[0,1]],[[79739,79404],[0,1]],[[79739,79405],[-1,2]],[[79738,79407],[0,2]],[[79738,79409],[-1,3]],[[79737,79412],[0,1]],[[79737,79413],[0,1]],[[79737,79414],[0,0]],[[79737,79414],[-1,1]],[[79736,79415],[0,0]],[[79736,79415],[0,1]],[[79736,79416],[-1,1]],[[79735,79417],[0,1]],[[79735,79418],[-1,1]],[[79734,79419],[0,0]],[[79734,79419],[0,1]],[[79734,79420],[0,0]],[[79734,79420],[-1,1]],[[79733,79421],[0,0]],[[79733,79421],[0,1]],[[79733,79422],[0,0]],[[79733,79422],[-1,1]],[[79732,79423],[0,1]],[[79732,79424],[-1,1]],[[79731,79425],[-4,-2]],[[79727,79423],[0,0]],[[79727,79423],[0,-1]],[[79727,79422],[0,0]],[[79727,79422],[-1,-2]],[[79726,79420],[0,-1]],[[79726,79419],[0,-1]],[[79726,79418],[-1,0]],[[79725,79418],[-1,2]],[[79724,79420],[0,0]],[[79724,79420],[-2,2]],[[79722,79422],[0,0]],[[79722,79422],[-4,3]],[[79718,79425],[-1,1]],[[79717,79426],[0,1]],[[79717,79427],[-1,0]],[[79716,79427],[0,5]],[[79716,79432],[1,0]],[[79717,79432],[0,1]],[[79717,79433],[0,0]],[[79717,79433],[-10,16]],[[79707,79449],[-128,-9]],[[80039,79003],[-2,-5]],[[80037,78998],[-1,-3]],[[80036,78995],[0,-4]],[[80036,78991],[3,-7]],[[80039,78984],[7,-7]],[[80046,78977],[-2,-15]],[[80044,78962],[-4,-6]],[[80040,78956],[0,-4]],[[80040,78952],[-9,-15]],[[80031,78937],[1,-3]],[[80032,78934],[-8,-25]],[[80024,78909],[-5,-5]],[[80019,78904],[-34,-24]],[[70452,80104],[10,176]],[[70452,80104],[188,163],[283,950]],[[73341,79824],[12,121]],[[73341,79824],[52,191]],[[73290,79764],[51,60]],[[73290,79764],[10,182]],[[79985,78880],[-1,1]],[[79984,78881],[-5,-2]],[[79979,78879],[1,-4]],[[79980,78875],[-5,-3]],[[79975,78872],[0,7]],[[79975,78879],[-10,15]],[[79965,78894],[-1,3]],[[79964,78897],[13,21]],[[79977,78918],[0,4]],[[79977,78922],[-1,1]],[[79976,78923],[-2,1]],[[79974,78924],[-1,1]],[[79973,78925],[-2,0]],[[79971,78925],[0,0]],[[79971,78925],[-3,1]],[[79968,78926],[0,0]],[[79968,78926],[-1,1]],[[79967,78927],[0,0]],[[79967,78927],[-1,1]],[[79966,78928],[0,1]],[[79966,78929],[0,0]],[[79966,78929],[-1,2]],[[79965,78931],[1,2]],[[79966,78933],[5,3]],[[79971,78936],[1,0]],[[79972,78936],[1,0]],[[79973,78936],[1,0]],[[79974,78936],[6,1]],[[79980,78937],[0,0]],[[79980,78937],[1,3]],[[79981,78940],[1,1]],[[79982,78941],[0,0]],[[79982,78941],[0,1]],[[79982,78942],[0,0]],[[79982,78942],[0,1]],[[79982,78943],[0,1]],[[79982,78944],[0,2]],[[79982,78946],[1,0]],[[79983,78946],[1,1]],[[79984,78947],[1,1]],[[79985,78948],[0,1]],[[79985,78949],[1,0]],[[79986,78949],[1,1]],[[79987,78950],[1,4]],[[79988,78954],[-1,1]],[[79987,78955],[-1,2]],[[79986,78957],[-2,2]],[[79984,78959],[-1,0]],[[79983,78959],[1,1]],[[79984,78960],[0,1]],[[79984,78961],[0,1]],[[79984,78962],[0,1]],[[79984,78963],[1,2]],[[79985,78965],[0,1]],[[79985,78966],[1,2]],[[79986,78968],[-1,3]],[[79985,78971],[-1,-1]],[[79984,78970],[-2,-2]],[[79982,78968],[-1,0]],[[79981,78968],[0,-1]],[[79981,78967],[-1,0]],[[79980,78967],[-2,0]],[[79978,78967],[0,0]],[[79978,78967],[0,2]],[[79978,78969],[2,5]],[[79980,78974],[0,0]],[[79980,78974],[0,0]],[[79980,78974],[2,1]],[[79982,78975],[2,2]],[[79984,78977],[0,1]],[[79984,78978],[1,0]],[[79985,78978],[0,1]],[[79985,78979],[1,1]],[[79986,78980],[1,2]],[[79987,78982],[0,0]],[[79987,78982],[1,0]],[[79988,78982],[0,0]],[[79988,78982],[1,1]],[[79989,78983],[1,0]],[[79990,78983],[0,0]],[[79990,78983],[1,0]],[[79991,78983],[1,0]],[[79992,78983],[1,0]],[[79993,78983],[1,-1]],[[79994,78982],[1,-1]],[[79995,78981],[1,-1]],[[79996,78980],[1,0]],[[79997,78980],[0,0]],[[79997,78980],[0,-1]],[[79997,78979],[1,0]],[[79998,78979],[0,-1]],[[79998,78978],[0,-1]],[[79998,78977],[0,0]],[[79998,78977],[0,-1]],[[79998,78976],[0,-1]],[[79998,78975],[0,-1]],[[79998,78974],[1,-1]],[[79999,78973],[4,1]],[[80003,78974],[0,2]],[[80003,78976],[0,1]],[[80003,78977],[0,1]],[[80003,78978],[2,1]],[[80005,78979],[0,0]],[[80005,78979],[2,0]],[[80007,78979],[0,0]],[[80007,78979],[1,-1]],[[80008,78978],[0,-1]],[[80008,78977],[1,-1]],[[80009,78976],[2,-1]],[[80011,78975],[0,0]],[[80011,78975],[1,-1]],[[80012,78974],[1,-1]],[[80013,78973],[2,-3]],[[80015,78970],[1,-1]],[[80016,78969],[2,1]],[[80018,78970],[-1,4]],[[80017,78974],[-1,3]],[[80016,78977],[1,2]],[[80017,78979],[0,1]],[[80017,78980],[0,1]],[[80017,78981],[0,1]],[[80017,78982],[0,1]],[[80017,78983],[0,0]],[[80017,78983],[1,1]],[[80018,78984],[1,1]],[[80019,78985],[1,1]],[[80020,78986],[2,0]],[[80022,78986],[1,0]],[[80023,78986],[1,0]],[[80024,78986],[1,1]],[[80025,78987],[0,1]],[[80025,78988],[-1,2]],[[80024,78990],[0,1]],[[80024,78991],[-1,1]],[[80023,78992],[0,1]],[[80023,78993],[0,1]],[[80023,78994],[0,1]],[[80023,78995],[0,0]],[[80023,78995],[0,1]],[[80023,78996],[0,1]],[[80023,78997],[0,1]],[[80023,78998],[1,1]],[[80024,78999],[0,0]],[[80024,78999],[0,1]],[[80024,79000],[1,1]],[[80025,79001],[0,0]],[[80025,79001],[1,0]],[[80026,79001],[2,0]],[[80028,79001],[0,0]],[[80028,79001],[1,0]],[[80029,79001],[0,0]],[[80029,79001],[1,0]],[[80030,79001],[1,0]],[[80031,79001],[1,0]],[[80032,79001],[0,0]],[[80032,79001],[0,0]],[[80032,79001],[1,1]],[[80033,79002],[1,0]],[[80034,79002],[0,0]],[[80034,79002],[1,1]],[[80035,79003],[0,0]],[[80035,79003],[1,0]],[[80036,79003],[1,0]],[[80037,79003],[1,0]],[[80038,79003],[1,0]],[[80039,79003],[0,0]],[[77273,79191],[-49,35]],[[77273,79191],[-18,-6]],[[77273,79185],[0,6]],[[77255,79185],[-32,7]],[[77265,79169],[-10,16]],[[77262,79163],[3,6]],[[77262,79163],[-20,3]],[[77242,79166],[-9,-17]],[[77242,79166],[9,-20]],[[77312,79156],[-39,29]],[[77312,79156],[-15,-12]],[[77297,79144],[-24,41]],[[77297,79144],[-8,-4]],[[77265,79147],[-3,16]],[[77265,79147],[-14,-1]],[[77251,79146],[-11,-15]],[[77289,79140],[-24,29]],[[77323,79128],[-15,-5]],[[77289,79131],[-24,16]],[[77289,79131],[0,9]],[[77331,79125],[-8,3]],[[77331,79125],[-3,0]],[[77328,79125],[-5,3]],[[77328,79125],[-7,-9]],[[77308,79123],[-2,-6]],[[77306,79117],[-17,14]],[[77321,79116],[-13,7]],[[77321,79116],[-15,1]],[[70264,79868],[198,412]],[[76678,79176],[-7,-61]],[[70310,79844],[142,260]],[[70310,79844],[-46,24]],[[77386,79084],[-74,72]],[[77386,79084],[-55,41]],[[76747,79158],[-25,-41]],[[76694,79142],[-23,-27]],[[76763,79133],[-41,-16]],[[76722,79117],[31,20]],[[76671,79115],[0,0]],[[76671,79115],[-10,-47]],[[76700,79096],[22,21]],[[76698,79074],[70,55]],[[76661,79068],[39,28]],[[76659,79065],[2,3]],[[76650,79061],[9,4]],[[76677,79044],[-18,21]],[[76571,78936],[-2,2]],[[76569,78938],[-2,3]],[[76567,78941],[0,1]],[[76567,78942],[0,1]],[[76567,78943],[0,1]],[[76567,78944],[0,1]],[[76567,78945],[0,3]],[[76567,78948],[0,1]],[[76567,78949],[0,4]],[[76567,78953],[1,2]],[[76568,78955],[1,1]],[[76569,78956],[1,1]],[[76570,78957],[1,0]],[[76571,78957],[1,1]],[[76572,78958],[0,1]],[[76572,78959],[2,5]],[[76574,78964],[1,2]],[[76575,78966],[1,2]],[[76576,78968],[0,0]],[[76576,78968],[0,0]],[[76576,78968],[1,0]],[[76577,78968],[1,0]],[[76578,78968],[0,-1]],[[76578,78967],[1,1]],[[76579,78968],[1,0]],[[76580,78968],[1,0]],[[76581,78968],[0,0]],[[76581,78968],[3,2]],[[76584,78970],[0,1]],[[76584,78971],[1,1]],[[76585,78972],[0,1]],[[76585,78973],[0,1]],[[76585,78974],[0,1]],[[76585,78975],[-1,2]],[[76584,78977],[0,0]],[[76584,78977],[-1,1]],[[76583,78978],[0,0]],[[76583,78978],[-1,0]],[[76582,78978],[-2,0]],[[76580,78978],[-1,0]],[[76579,78978],[-1,0]],[[76578,78978],[-1,0]],[[76577,78978],[0,0]],[[76577,78978],[-1,0]],[[76576,78978],[0,0]],[[76576,78978],[-1,1]],[[76575,78979],[0,1]],[[76575,78980],[-1,0]],[[76574,78980],[-1,4]],[[76573,78984],[-1,2]],[[76572,78986],[0,0]],[[76572,78986],[0,0]],[[76572,78986],[-6,5]],[[76566,78991],[0,1]],[[76566,78992],[189,251]],[[76571,78936],[129,160]],[[73157,79259],[195,244],[-62,261]],[[77283,78703],[-166,205],[98,179]],[[78052,78544],[-2,3]],[[78050,78547],[0,3]],[[78050,78550],[0,4]],[[78050,78554],[-11,12]],[[78039,78566],[-2,0]],[[78037,78566],[-14,11]],[[78023,78577],[-2,5]],[[78021,78582],[-4,-2]],[[78017,78580],[-1,-4]],[[78016,78576],[-1,-3]],[[78015,78573],[-1,-4]],[[78014,78569],[-4,7]],[[78010,78576],[-6,-10]],[[78004,78566],[-6,-15]],[[77998,78551],[2,-1]],[[78000,78550],[0,-2]],[[78000,78548],[-3,0]],[[77997,78548],[-9,9]],[[77988,78557],[0,0]],[[77988,78557],[0,2]],[[77988,78559],[-3,7]],[[77985,78566],[1,15]],[[77986,78581],[1,1]],[[77987,78582],[-1,14]],[[77986,78596],[-14,13]],[[77972,78609],[-11,8]],[[77961,78617],[-6,1]],[[77955,78618],[-22,-7]],[[77933,78611],[-1,-1]],[[77932,78610],[-3,-6]],[[77929,78604],[-10,-3]],[[77919,78601],[-3,1]],[[77916,78602],[0,6]],[[77916,78608],[-7,2]],[[77909,78610],[-4,6]],[[77905,78616],[-3,4]],[[77902,78620],[2,7]],[[77904,78627],[-6,-5]],[[77898,78622],[-2,-1]],[[77896,78621],[-10,-8]],[[77886,78613],[-3,4]],[[77883,78617],[-1,1]],[[77882,78618],[-2,6]],[[77880,78624],[-5,0]],[[77875,78624],[-2,3]],[[77873,78627],[-8,10]],[[77865,78637],[-9,-1]],[[77856,78636],[-2,-5]],[[77854,78631],[-7,-6]],[[77847,78625],[-7,-2]],[[77840,78623],[-12,5]],[[77828,78628],[-1,1]],[[77827,78629],[-5,0]],[[77822,78629],[-2,-2]],[[77820,78627],[-6,-1]],[[77814,78626],[-2,2]],[[77812,78628],[-5,10]],[[77807,78638],[-10,8]],[[77797,78646],[3,4]],[[77800,78650],[-1,2]],[[77799,78652],[-7,6]],[[77792,78658],[1,4]],[[77793,78662],[0,2]],[[77793,78664],[-3,0]],[[77790,78664],[-4,9]],[[77786,78673],[-1,1]],[[77785,78674],[-6,2]],[[77779,78676],[-1,2]],[[77778,78678],[5,3]],[[77783,78681],[-6,1]],[[77777,78682],[0,10]],[[77777,78692],[1,2]],[[77778,78694],[-4,1]],[[77774,78695],[-1,14]],[[77773,78709],[-5,6]],[[77768,78715],[-2,3]],[[77766,78718],[-10,8]],[[77756,78726],[-4,10]],[[77752,78736],[-6,3]],[[77746,78739],[-4,5]],[[77742,78744],[-1,0]],[[77741,78744],[-5,-4]],[[77736,78740],[-1,7]],[[77735,78747],[-3,5]],[[77732,78752],[-3,-2]],[[77729,78750],[-2,1]],[[77727,78751],[-8,11]],[[77719,78762],[-1,2]],[[77718,78764],[-6,-5]],[[77712,78759],[-6,23]],[[77706,78782],[-8,7]],[[77698,78789],[-1,5]],[[77697,78794],[-5,4]],[[77692,78798],[-3,-1]],[[77689,78797],[0,-1]],[[77689,78796],[-2,-1]],[[77687,78795],[-1,3]],[[77686,78798],[0,0]],[[77686,78798],[-3,0]],[[77683,78798],[-3,9]],[[77680,78807],[-2,6]],[[77678,78813],[-1,7]],[[77677,78820],[-3,-1]],[[77674,78819],[-2,-1]],[[77672,78818],[-15,19]],[[77657,78837],[-5,3]],[[77652,78840],[-4,-2]],[[77648,78838],[0,4]],[[77648,78842],[-3,3]],[[77645,78845],[-2,-3]],[[77643,78842],[-5,-2]],[[77638,78840],[-1,1]],[[77637,78841],[-2,10]],[[77635,78851],[2,3]],[[77637,78854],[3,8]],[[77640,78862],[-1,4]],[[77639,78866],[-2,6]],[[77637,78872],[-1,3]],[[77636,78875],[-14,13]],[[77622,78888],[-7,4]],[[77615,78892],[-7,7]],[[77608,78899],[-3,5]],[[77605,78904],[-4,-2]],[[77601,78902],[-2,0]],[[77599,78902],[-3,-4]],[[77596,78898],[-5,-21]],[[77591,78877],[1,-2]],[[77592,78875],[-5,-10]],[[77587,78865],[-11,2]],[[77576,78867],[-5,-3]],[[77571,78864],[-6,5]],[[77565,78869],[-4,-1]],[[77561,78868],[-4,0]],[[77557,78868],[-8,8]],[[77549,78876],[5,9]],[[77554,78885],[-2,14]],[[77552,78899],[-3,7]],[[77549,78906],[-7,8]],[[77542,78914],[-10,1]],[[77532,78915],[-7,8]],[[77525,78923],[-4,8]],[[77521,78931],[-1,6]],[[77520,78937],[-10,11]],[[77510,78948],[-4,6]],[[77506,78954],[-11,13]],[[77495,78967],[-2,3]],[[77493,78970],[-5,9]],[[77488,78979],[-8,5]],[[77480,78984],[-1,12]],[[77479,78996],[-4,12]],[[77475,79008],[-5,10]],[[77470,79018],[-33,19]],[[77437,79037],[-14,1]],[[77423,79038],[-1,-3]],[[77422,79035],[-6,-5]],[[77416,79030],[-1,12]],[[77415,79042],[-3,13]],[[77412,79055],[-1,1]],[[77411,79056],[-5,1]],[[77406,79057],[0,2]],[[77406,79059],[-2,12]],[[77404,79071],[-8,8]],[[77396,79079],[-10,5]],[[73089,79093],[68,166]],[[78235,78483],[-1,0]],[[78234,78483],[-1,2]],[[78233,78485],[-7,0]],[[78226,78485],[-1,0]],[[78225,78485],[-1,3]],[[78224,78488],[-1,3]],[[78223,78491],[-7,3]],[[78216,78494],[-2,1]],[[78214,78495],[-3,-1]],[[78211,78494],[-4,1]],[[78207,78495],[-3,-8]],[[78204,78487],[-2,-1]],[[78202,78486],[-2,-1]],[[78200,78485],[-2,4]],[[78198,78489],[-7,-4]],[[78191,78485],[2,-1]],[[78193,78484],[-1,-1]],[[78192,78483],[-5,-5]],[[78187,78478],[-1,1]],[[78186,78479],[0,3]],[[78186,78482],[-1,5]],[[78185,78487],[-12,-2]],[[78173,78485],[-3,0]],[[78170,78485],[0,0]],[[78170,78485],[-11,1]],[[78159,78486],[-1,-2]],[[78158,78484],[-3,-1]],[[78155,78483],[-2,5]],[[78153,78488],[-1,2]],[[78152,78490],[-12,4]],[[78140,78494],[0,4]],[[78140,78498],[2,0]],[[78142,78498],[-6,5]],[[78136,78503],[-2,0]],[[78134,78503],[-5,2]],[[78129,78505],[0,5]],[[78129,78510],[0,1]],[[78129,78511],[-7,3]],[[78122,78514],[-1,4]],[[78121,78518],[-9,-4]],[[78112,78514],[-2,-1]],[[78110,78513],[-1,-7]],[[78109,78506],[-3,9]],[[78106,78515],[-2,0]],[[78104,78515],[-12,-9]],[[78092,78506],[-5,3]],[[78087,78509],[-5,2]],[[78082,78511],[-5,6]],[[78077,78517],[-8,15]],[[78069,78532],[-8,8]],[[78061,78540],[-4,1]],[[78057,78541],[-5,3]],[[82413,77830],[-251,774],[48,291],[-167,839],[-119,213],[45,524],[286,193],[72,450]],[[72873,78013],[-90,360],[387,694],[-13,192]],[[79885,76998],[32,39]],[[79917,77037],[12,-4]],[[79929,77033],[9,-3]],[[79938,77030],[20,3]],[[79958,77033],[12,5]],[[79970,77038],[1,15]],[[79971,77053],[-19,0]],[[79952,77053],[8,16]],[[79960,77069],[0,0]],[[79960,77069],[1,1]],[[79961,77070],[0,1]],[[79961,77071],[0,2]],[[79961,77073],[0,0]],[[79961,77073],[0,1]],[[79961,77074],[0,1]],[[79961,77075],[0,1]],[[79961,77076],[-1,2]],[[79960,77078],[0,0]],[[79960,77078],[0,1]],[[79960,77079],[0,1]],[[79960,77080],[-1,1]],[[79959,77081],[0,1]],[[79959,77082],[0,2]],[[79959,77084],[0,1]],[[79959,77085],[0,1]],[[79959,77086],[-1,2]],[[79958,77088],[0,2]],[[79958,77090],[0,1]],[[79958,77091],[0,2]],[[79958,77093],[0,1]],[[79958,77094],[0,1]],[[79958,77095],[0,4]],[[79958,77099],[0,1]],[[79958,77100],[0,4]],[[79958,77104],[1,0]],[[79959,77104],[0,1]],[[79959,77105],[0,4]],[[79959,77109],[1,1]],[[79960,77110],[0,0]],[[79960,77110],[0,1]],[[79960,77111],[0,1]],[[79960,77112],[0,0]],[[79960,77112],[0,2]],[[79960,77114],[1,1]],[[79961,77115],[0,0]],[[79961,77115],[0,2]],[[79961,77117],[3,7]],[[79964,77124],[2,2]],[[79966,77126],[15,30]],[[79981,77156],[-2,33]],[[79979,77189],[-8,13]],[[79971,77202],[-3,13]],[[79968,77215],[-21,26]],[[79947,77241],[-5,29]],[[79942,77270],[-1,2]],[[79941,77272],[-6,44]],[[79935,77316],[-12,39]],[[79923,77355],[0,16]],[[79923,77371],[4,8]],[[79927,77379],[1,9]],[[79928,77388],[-9,5]],[[79919,77393],[-8,9]],[[79911,77402],[9,17]],[[79920,77419],[-6,0]],[[79914,77419],[-22,21]],[[79892,77440],[-2,3]],[[79890,77443],[-1,10]],[[79889,77453],[-1,5]],[[79888,77458],[-5,5]],[[79883,77463],[-7,3]],[[79876,77466],[2,13]],[[79878,77479],[1,3]],[[79879,77482],[-2,14]],[[79877,77496],[-11,24]],[[79866,77520],[4,2]],[[79870,77522],[4,10]],[[79874,77532],[-9,43]],[[79865,77575],[1,12]],[[79866,77587],[10,82]],[[79876,77669],[0,6]],[[79876,77675],[-3,9]],[[79873,77684],[1,3]],[[79874,77687],[20,20]],[[79894,77707],[3,18]],[[79897,77725],[10,6]],[[79907,77731],[1,16]],[[79908,77747],[1,12]],[[79909,77759],[3,8]],[[79912,77767],[12,-13]],[[79924,77754],[7,10]],[[79931,77764],[28,1]],[[79959,77765],[14,13]],[[79973,77778],[8,8]],[[79981,77786],[11,9]],[[79992,77795],[-1,7]],[[79991,77802],[2,10]],[[79993,77812],[16,4]],[[80009,77816],[0,4]],[[80009,77820],[4,3]],[[80013,77823],[8,7]],[[80021,77830],[-1,13]],[[80020,77843],[14,9]],[[80034,77852],[3,12]],[[80037,77864],[16,22]],[[80053,77886],[1,19]],[[80054,77905],[0,4]],[[80054,77909],[-7,3]],[[80047,77912],[-3,2]],[[80044,77914],[-15,52]],[[80029,77966],[6,21]],[[80035,77987],[4,32]],[[80039,78019],[-4,15]],[[80035,78034],[8,4]],[[80043,78038],[9,14]],[[80052,78052],[-8,2]],[[80044,78054],[7,15]],[[80051,78069],[7,7]],[[80058,78076],[0,2]],[[80058,78078],[-4,1]],[[80054,78079],[-4,11]],[[80050,78090],[2,21]],[[80052,78111],[-21,15]],[[80031,78126],[-3,28]],[[80028,78154],[-4,-5]],[[80024,78149],[0,15]],[[80024,78164],[9,9]],[[80033,78173],[2,5]],[[80035,78178],[-9,-1]],[[80026,78177],[-9,5]],[[80017,78182],[0,9]],[[80017,78191],[-2,19]],[[80015,78210],[-1,2]],[[80014,78212],[-17,19]],[[79997,78231],[-14,4]],[[79983,78235],[-12,29]],[[79971,78264],[-2,9]],[[79969,78273],[-1,30]],[[79968,78303],[-4,6]],[[79964,78309],[-2,15]],[[79962,78324],[-6,11]],[[79956,78335],[10,35]],[[79966,78370],[4,1]],[[79970,78371],[1,2]],[[79971,78373],[-7,3]],[[79964,78376],[-7,8]],[[79957,78384],[-2,2]],[[79955,78386],[-6,2]],[[79949,78388],[-17,14]],[[79932,78402],[-1,2]],[[79931,78404],[-11,12]],[[79920,78416],[-10,6]],[[79910,78422],[-9,29]],[[79901,78451],[-1,-9]],[[79900,78442],[-4,-2]],[[79896,78440],[-2,1]],[[79894,78441],[-13,28]],[[79881,78469],[-13,18]],[[79868,78487],[-6,4]],[[79862,78491],[6,15]],[[79868,78506],[6,5]],[[79874,78511],[0,3]],[[79874,78514],[-2,13]],[[79872,78527],[0,5]],[[79872,78532],[-1,14]],[[79871,78546],[3,3]],[[79874,78549],[5,5]],[[79879,78554],[-8,15]],[[79871,78569],[1,10]],[[79872,78579],[8,26]],[[79880,78605],[1,3]],[[79881,78608],[-3,17]],[[79878,78625],[-2,7]],[[79876,78632],[-3,3]],[[79873,78635],[-1,8]],[[79872,78643],[8,1]],[[79880,78644],[9,-4]],[[79889,78640],[-3,12]],[[79886,78652],[4,22]],[[79890,78674],[15,10]],[[79905,78684],[5,-1]],[[79910,78683],[31,8]],[[79941,78691],[3,28]],[[79944,78719],[6,47]],[[79950,78766],[27,49]],[[79977,78815],[2,10]],[[79979,78825],[-2,14]],[[79977,78839],[8,41]],[[78452,76913],[-5,3]],[[78447,76916],[-1,0]],[[78446,76916],[-1,-2]],[[78445,76914],[-2,-1]],[[78443,76913],[-5,-1]],[[78438,76912],[-3,-2]],[[78435,76910],[-13,4]],[[78422,76914],[-3,9]],[[78419,76923],[-2,2]],[[78417,76925],[-4,3]],[[78413,76928],[-1,2]],[[78412,76930],[2,3]],[[78414,76933],[-2,0]],[[78412,76933],[-4,1]],[[78408,76934],[-4,6]],[[78404,76940],[-1,0]],[[78403,76940],[-1,0]],[[78402,76940],[-3,1]],[[78399,76941],[-25,7]],[[78374,76948],[-16,-4]],[[78358,76944],[-2,0]],[[78356,76944],[-15,4]],[[78341,76948],[-2,3]],[[78339,76951],[2,9]],[[78341,76960],[1,4]],[[78342,76964],[3,2]],[[78345,76966],[0,4]],[[78345,76970],[-2,2]],[[78343,76972],[-8,5]],[[78335,76977],[-2,1]],[[78333,76978],[-4,0]],[[78329,76978],[0,1]],[[78329,76979],[3,7]],[[78332,76986],[-2,5]],[[78330,76991],[-4,0]],[[78326,76991],[-2,0]],[[78324,76991],[0,2]],[[78324,76993],[2,4]],[[78326,76997],[-3,6]],[[78323,77003],[-1,0]],[[78322,77003],[-1,-2]],[[78321,77001],[-1,10]],[[78320,77011],[-6,12]],[[78314,77023],[-14,16]],[[78300,77039],[-3,-6]],[[78297,77033],[-1,0]],[[78296,77033],[0,3]],[[78296,77036],[0,4]],[[78296,77040],[-3,1]],[[78293,77041],[-1,-4]],[[78292,77037],[-2,8]],[[78290,77045],[-4,6]],[[78286,77051],[0,1]],[[78286,77052],[-3,11]],[[78283,77063],[1,7]],[[78284,77070],[-6,18]],[[78278,77088],[-10,16]],[[78268,77104],[-3,3]],[[78265,77107],[-2,3]],[[78263,77110],[-5,5]],[[78258,77115],[-6,3]],[[78252,77118],[-5,18]],[[78247,77136],[-4,5]],[[78243,77141],[0,6]],[[78243,77147],[-2,8]],[[78241,77155],[-11,5]],[[78230,77160],[-11,11]],[[78219,77171],[-2,15]],[[78217,77186],[0,2]],[[78217,77188],[1,0]],[[78218,77188],[3,10]],[[78221,77198],[4,16]],[[78225,77214],[2,9]],[[78227,77223],[0,4]],[[78227,77227],[3,20]],[[78230,77247],[1,6]],[[78231,77253],[-3,1]],[[78228,77254],[0,8]],[[78228,77262],[0,3]],[[78228,77265],[4,35]],[[78232,77300],[-5,6]],[[78227,77306],[-4,3]],[[78223,77309],[-1,10]],[[78222,77319],[1,5]],[[78223,77324],[-1,1]],[[78222,77325],[-3,4]],[[78219,77329],[2,8]],[[78221,77337],[0,1]],[[78221,77338],[-9,26]],[[78212,77364],[0,1]],[[78212,77365],[2,3]],[[78214,77368],[-4,1]],[[78210,77369],[0,-2]],[[78210,77367],[-2,1]],[[78208,77368],[-4,19]],[[78204,77387],[-7,18]],[[78197,77405],[3,6]],[[78200,77411],[0,2]],[[78200,77413],[-1,4]],[[78199,77417],[-1,6]],[[78198,77423],[3,24]],[[78201,77447],[2,4]],[[78203,77451],[0,2]],[[78203,77453],[-6,6]],[[78197,77459],[5,15]],[[78202,77474],[2,23]],[[78204,77497],[4,2]],[[78208,77499],[4,7]],[[78212,77506],[-1,8]],[[78211,77514],[-1,11]],[[78210,77525],[-5,11]],[[78205,77536],[1,3]],[[78206,77539],[3,0]],[[78209,77539],[-1,4]],[[78208,77543],[2,3]],[[78210,77546],[-3,25]],[[78207,77571],[4,4]],[[78211,77575],[-2,2]],[[78209,77577],[-3,-1]],[[78206,77576],[0,2]],[[78206,77578],[-8,28]],[[78198,77606],[-2,7]],[[78196,77613],[2,9]],[[78198,77622],[4,18]],[[78202,77640],[5,21]],[[78207,77661],[-11,9]],[[78196,77670],[6,4]],[[78202,77674],[-2,6]],[[78200,77680],[-1,7]],[[78199,77687],[-4,4]],[[78195,77691],[0,2]],[[78195,77693],[0,16]],[[78195,77709],[-2,1]],[[78193,77710],[4,7]],[[78197,77717],[-2,7]],[[78195,77724],[0,7]],[[78195,77731],[-8,11]],[[78187,77742],[-1,-3]],[[78186,77739],[-2,-1]],[[78184,77738],[-3,3]],[[78181,77741],[2,2]],[[78183,77743],[1,4]],[[78184,77747],[0,2]],[[78184,77749],[-4,2]],[[78180,77751],[-3,-5]],[[78177,77746],[-5,14]],[[78172,77760],[-4,8]],[[78168,77768],[1,6]],[[78169,77774],[-2,15]],[[78167,77789],[-2,5]],[[78165,77794],[3,8]],[[78168,77802],[-2,7]],[[78166,77809],[-5,6]],[[78161,77815],[-1,2]],[[78160,77817],[1,2]],[[78161,77819],[-3,3]],[[78158,77822],[-22,6]],[[78136,77828],[-1,10]],[[78135,77838],[-2,5]],[[78133,77843],[0,0]],[[78133,77843],[3,1]],[[78136,77844],[0,3]],[[78136,77847],[-4,10]],[[78132,77857],[0,3]],[[78132,77860],[-1,12]],[[78131,77872],[3,5]],[[78134,77877],[0,2]],[[78134,77879],[-2,10]],[[78132,77889],[-1,6]],[[78131,77895],[1,9]],[[78132,77904],[0,3]],[[78132,77907],[-2,3]],[[78130,77910],[-1,1]],[[78129,77911],[3,6]],[[78132,77917],[1,3]],[[78133,77920],[-5,12]],[[78128,77932],[-1,4]],[[78127,77936],[3,7]],[[78130,77943],[-2,18]],[[78128,77961],[-2,15]],[[78126,77976],[-1,10]],[[78125,77986],[-4,1]],[[78121,77987],[5,8]],[[78126,77995],[5,4]],[[78131,77999],[-6,17]],[[78125,78016],[-7,13]],[[78118,78029],[1,12]],[[78119,78041],[0,12]],[[78119,78053],[1,3]],[[78120,78056],[1,1]],[[78121,78057],[-4,7]],[[78117,78064],[-7,10]],[[78110,78074],[-11,30]],[[78099,78104],[-15,18]],[[78084,78122],[0,1]],[[78084,78123],[-1,7]],[[78083,78130],[-3,5]],[[78080,78135],[-4,8]],[[78076,78143],[-2,0]],[[78074,78143],[-7,14]],[[78067,78157],[-1,7]],[[78066,78164],[15,25]],[[78081,78189],[2,5]],[[78083,78194],[5,17]],[[78088,78211],[0,0]],[[78088,78211],[2,5]],[[78090,78216],[2,0]],[[78092,78216],[0,10]],[[78092,78226],[-5,37]],[[78087,78263],[0,5]],[[78087,78268],[-6,3]],[[78081,78271],[1,7]],[[78082,78278],[2,1]],[[78084,78279],[-3,4]],[[78081,78283],[8,14]],[[78089,78297],[0,4]],[[78089,78301],[0,2]],[[78089,78303],[-3,32]],[[78086,78335],[-1,4]],[[78085,78339],[-4,1]],[[78081,78340],[-1,1]],[[78080,78341],[-2,-2]],[[78078,78339],[-1,8]],[[78077,78347],[0,2]],[[78077,78349],[1,3]],[[78078,78352],[-1,7]],[[78077,78359],[-6,1]],[[78071,78360],[-1,0]],[[78070,78360],[-3,0]],[[78067,78360],[-5,0]],[[78062,78360],[-4,0]],[[78058,78360],[-7,18]],[[78051,78378],[-4,1]],[[78047,78379],[0,-3]],[[78047,78376],[-3,1]],[[78044,78377],[0,1]],[[78044,78378],[-1,3]],[[78043,78381],[-3,19]],[[78040,78400],[-4,4]],[[78036,78404],[2,3]],[[78038,78407],[7,3]],[[78045,78410],[1,2]],[[78046,78412],[-2,5]],[[78044,78417],[2,4]],[[78046,78421],[0,1]],[[78046,78422],[-5,12]],[[78041,78434],[-3,18]],[[78038,78452],[3,9]],[[78041,78461],[0,5]],[[78041,78466],[3,-2]],[[78044,78464],[0,4]],[[78044,78468],[0,5]],[[78044,78473],[-4,7]],[[78040,78480],[2,6]],[[78042,78486],[1,7]],[[78043,78493],[2,10]],[[78045,78503],[0,4]],[[78045,78507],[4,10]],[[78049,78517],[5,17]],[[78054,78534],[0,1]],[[78054,78535],[-2,9]],[[77628,76690],[2,5]],[[77630,76695],[0,0]],[[77630,76695],[-1,2]],[[77629,76697],[-11,9]],[[77618,76706],[-8,-6]],[[77610,76700],[-5,6]],[[77605,76706],[2,16]],[[77607,76722],[-2,12]],[[77605,76734],[-17,14]],[[77588,76748],[-15,10]],[[77573,76758],[-22,-5]],[[77551,76753],[-3,4]],[[77548,76757],[-5,19]],[[77543,76776],[20,41]],[[77563,76817],[4,18]],[[77567,76835],[0,32]],[[77567,76867],[-56,16]],[[77511,76883],[-1,4]],[[77510,76887],[-4,10]],[[77506,76897],[-13,-14]],[[77493,76883],[-21,-3]],[[77472,76880],[-38,3]],[[77434,76883],[-14,10]],[[77420,76893],[-1,8]],[[77419,76901],[7,5]],[[77426,76906],[17,20]],[[77443,76926],[-1,4]],[[77442,76930],[-44,26]],[[77398,76956],[-8,-16]],[[77390,76940],[-6,-5]],[[77384,76935],[-11,13]],[[77373,76948],[-5,15]],[[77368,76963],[-5,10]],[[77363,76973],[-22,46]],[[77341,77019],[-1,4]],[[77340,77023],[1,16]],[[77341,77039],[-8,9]],[[77333,77048],[-5,8]],[[77328,77056],[-26,25]],[[77302,77081],[-3,0]],[[77299,77081],[-28,-19]],[[77271,77062],[-17,-8]],[[77254,77054],[5,24]],[[77259,77078],[5,-4]],[[77264,77074],[2,9]],[[77266,77083],[-4,7]],[[77262,77090],[-12,5]],[[77250,77095],[-13,-3]],[[77237,77092],[-11,1]],[[77226,77093],[-2,-7]],[[77224,77086],[-6,-4]],[[77218,77082],[-6,-5]],[[77212,77077],[-19,24]],[[77193,77101],[-4,18]],[[77189,77119],[-2,2]],[[77187,77121],[-33,35]],[[77154,77156],[-7,6]],[[77147,77162],[5,8]],[[77152,77170],[-8,2]],[[77144,77172],[-23,15]],[[77121,77187],[-8,12]],[[77113,77199],[-2,13]],[[77111,77212],[-1,-1]],[[77110,77211],[-1,-1]],[[77109,77210],[-1,-1]],[[77108,77209],[-1,0]],[[77107,77209],[-2,-1]],[[77105,77208],[-1,-1]],[[77104,77207],[-2,0]],[[77102,77207],[-1,-1]],[[77101,77206],[0,0]],[[77101,77206],[-2,-1]],[[77099,77205],[-1,0]],[[77098,77205],[-4,-2]],[[77094,77203],[-1,0]],[[77093,77203],[0,-1]],[[77093,77202],[-1,0]],[[77092,77202],[-1,0]],[[77091,77202],[-1,-1]],[[77090,77201],[0,0]],[[77090,77201],[-2,0]],[[77088,77201],[-1,-1]],[[77087,77200],[0,0]],[[77087,77200],[-1,0]],[[77086,77200],[-1,-1]],[[77085,77199],[-3,-1]],[[77082,77198],[-1,0]],[[77081,77198],[0,-1]],[[77081,77197],[-2,-1]],[[77079,77196],[-1,-1]],[[77078,77195],[-1,-1]],[[77077,77194],[0,-1]],[[77077,77193],[0,-1]],[[77077,77192],[-1,0]],[[77076,77192],[0,-1]],[[77076,77191],[0,-1]],[[77076,77190],[-1,-2]],[[77075,77188],[0,-1]],[[77075,77187],[-1,-3]],[[77074,77184],[0,0]],[[77074,77184],[-1,-1]],[[77073,77183],[0,-1]],[[77073,77182],[0,0]],[[77073,77182],[-1,-1]],[[77072,77181],[0,0]],[[77072,77181],[-1,-2]],[[77071,77179],[-1,-1]],[[77070,77178],[-1,0]],[[77069,77178],[0,0]],[[77069,77178],[-1,0]],[[77068,77178],[-1,1]],[[77067,77179],[-1,1]],[[77066,77180],[0,1]],[[77066,77181],[0,0]],[[77066,77181],[-1,1]],[[77065,77182],[0,0]],[[77065,77182],[-1,1]],[[77064,77183],[-1,2]],[[77063,77185],[-2,2]],[[77061,77187],[0,0]],[[77061,77187],[-1,0]],[[77060,77187],[-2,-1]],[[77058,77186],[0,-1]],[[77058,77185],[-1,0]],[[77057,77185],[-2,-2]],[[77055,77183],[0,-1]],[[77055,77182],[0,0]],[[77055,77182],[-2,-2]],[[77053,77180],[-1,-1]],[[77052,77179],[-1,0]],[[77051,77179],[0,-1]],[[77051,77178],[0,0]],[[77051,77178],[-1,-2]],[[77050,77176],[0,0]],[[77050,77176],[0,-2]],[[77050,77174],[0,0]],[[77050,77174],[0,-2]],[[77050,77172],[0,-2]],[[77050,77170],[0,-1]],[[77050,77169],[1,-1]],[[77051,77168],[0,-1]],[[77051,77167],[0,-1]],[[77051,77166],[0,-1]],[[77051,77165],[-9,7]],[[77042,77172],[0,10]],[[77042,77182],[-5,9]],[[77037,77191],[-21,-3]],[[77016,77188],[-10,-9]],[[77006,77179],[-6,3]],[[77000,77182],[-1,8]],[[76999,77190],[-1,7]],[[76998,77197],[-1,11]],[[76997,77208],[-18,-5]],[[76979,77203],[-5,-1]],[[76974,77202],[-2,1]],[[76972,77203],[-22,12]],[[76950,77215],[-10,2]],[[76940,77217],[-11,3]],[[76929,77220],[-3,17]],[[76926,77237],[-6,4]],[[76920,77241],[-32,-13]],[[76888,77228],[-1,6]],[[76887,77234],[-10,-1]],[[76877,77233],[-27,-8]],[[76850,77225],[-5,17]],[[76845,77242],[-3,16]],[[76842,77258],[-18,22]],[[76824,77280],[-3,23]],[[76821,77303],[0,23]],[[76821,77326],[-12,-4]],[[76809,77322],[0,11]],[[76809,77333],[-2,8]],[[76807,77341],[3,17]],[[76810,77358],[-2,3]],[[76808,77361],[-22,16]],[[76786,77377],[2,17]],[[76788,77394],[-6,6]],[[76782,77400],[-8,-8]],[[76774,77392],[-7,9]],[[76767,77401],[-24,29]],[[76743,77430],[7,14]],[[76750,77444],[-13,11]],[[76737,77455],[-1,0]],[[76736,77455],[-14,16]],[[76722,77471],[-15,3]],[[76707,77474],[-2,3]],[[76705,77477],[0,1]],[[76705,77478],[0,2]],[[76705,77480],[0,2]],[[76705,77482],[-1,2]],[[76704,77484],[0,1]],[[76704,77485],[0,1]],[[76704,77486],[-1,0]],[[76703,77486],[0,2]],[[76703,77488],[0,0]],[[76703,77488],[-1,0]],[[76702,77488],[0,1]],[[76702,77489],[0,1]],[[76702,77490],[-1,0]],[[76701,77490],[0,2]],[[76701,77492],[-1,2]],[[76700,77494],[0,5]],[[76700,77499],[0,4]],[[76700,77503],[0,1]],[[76700,77504],[2,3]],[[76702,77507],[1,0]],[[76703,77507],[0,1]],[[76703,77508],[0,1]],[[76703,77509],[1,2]],[[76704,77511],[0,0]],[[76704,77511],[0,2]],[[76704,77513],[1,1]],[[76705,77514],[0,1]],[[76705,77515],[0,1]],[[76705,77516],[0,1]],[[76705,77517],[-1,1]],[[76704,77518],[0,1]],[[76704,77519],[0,1]],[[76704,77520],[0,0]],[[76704,77520],[-1,1]],[[76703,77521],[0,0]],[[76703,77521],[-1,1]],[[76702,77522],[-1,0]],[[76701,77522],[0,1]],[[76701,77523],[-1,1]],[[76700,77524],[-1,0]],[[76699,77524],[0,0]],[[76699,77524],[-1,0]],[[76698,77524],[-1,1]],[[76697,77525],[-1,0]],[[76696,77525],[0,1]],[[76696,77526],[0,1]],[[76696,77527],[-1,1]],[[76695,77528],[-1,0]],[[76694,77528],[0,1]],[[76694,77529],[0,0]],[[76694,77529],[-1,2]],[[76693,77531],[0,1]],[[76693,77532],[-1,0]],[[76692,77532],[0,1]],[[76692,77533],[0,0]],[[76692,77533],[-1,1]],[[76691,77534],[-2,2]],[[76689,77536],[0,0]],[[76689,77536],[-1,0]],[[76688,77536],[0,0]],[[76688,77536],[-1,0]],[[76687,77536],[-2,-1]],[[76685,77535],[0,0]],[[76685,77535],[-1,-1]],[[76684,77534],[-1,-1]],[[76683,77533],[-2,-3]],[[76681,77530],[-1,-1]],[[76680,77529],[-2,-2]],[[76678,77527],[-5,-3]],[[76673,77524],[-1,0]],[[76672,77524],[0,7]],[[76672,77531],[0,1]],[[76672,77532],[1,0]],[[76673,77532],[5,18]],[[76678,77550],[-9,12]],[[76669,77562],[-7,9]],[[76662,77571],[-38,41]],[[76624,77612],[-10,14]],[[76614,77626],[-2,5]],[[76612,77631],[-14,10]],[[76598,77641],[-7,7]],[[76591,77648],[-1,1]],[[76590,77649],[-1,4]],[[76589,77653],[0,0]],[[76589,77653],[1,5]],[[76590,77658],[0,1]],[[76590,77659],[1,2]],[[76591,77661],[0,2]],[[76591,77663],[-1,5]],[[76590,77668],[0,0]],[[76590,77668],[-1,0]],[[76589,77668],[0,0]],[[76589,77668],[-1,0]],[[76588,77668],[0,0]],[[76588,77668],[-1,0]],[[76587,77668],[0,0]],[[76587,77668],[-1,1]],[[76586,77669],[-1,-1]],[[76585,77668],[-1,0]],[[76584,77668],[-1,-1]],[[76583,77667],[-1,-1]],[[76582,77666],[-1,-1]],[[76581,77665],[-1,0]],[[76580,77665],[-1,-1]],[[76579,77664],[0,0]],[[76579,77664],[-1,0]],[[76578,77664],[-4,0]],[[76574,77664],[-3,2]],[[76571,77666],[0,1]],[[76571,77667],[-1,0]],[[76570,77667],[-1,0]],[[76569,77667],[-1,0]],[[76568,77667],[-1,1]],[[76567,77668],[-1,1]],[[76566,77669],[0,1]],[[76566,77670],[-1,0]],[[76565,77670],[-5,4]],[[76560,77674],[-1,1]],[[76559,77675],[-1,0]],[[76558,77675],[-2,0]],[[76556,77675],[-2,0]],[[76554,77675],[-1,0]],[[76553,77675],[-1,-1]],[[76552,77674],[0,-1]],[[76552,77673],[-1,0]],[[76551,77673],[0,0]],[[76551,77673],[-6,-10]],[[76545,77663],[0,0]],[[76545,77663],[0,-1]],[[76545,77662],[0,-1]],[[76545,77661],[0,0]],[[76545,77661],[0,-1]],[[76545,77660],[0,0]],[[76545,77660],[2,-4]],[[76547,77656],[0,-3]],[[76547,77653],[-4,-3]],[[76543,77650],[-3,4]],[[76540,77654],[0,0]],[[76540,77654],[-1,3]],[[76539,77657],[-1,2]],[[76538,77659],[0,0]],[[76538,77659],[-1,2]],[[76537,77661],[0,2]],[[76537,77663],[-1,1]],[[76536,77664],[0,1]],[[76536,77665],[0,0]],[[76536,77665],[-2,4]],[[76534,77669],[-2,2]],[[76532,77671],[0,0]],[[76532,77671],[-1,1]],[[76531,77672],[-1,1]],[[76530,77673],[0,0]],[[76530,77673],[-4,3]],[[76526,77676],[-4,1]],[[76522,77677],[2,35]],[[76524,77712],[-1,19]],[[76523,77731],[-8,8]],[[76515,77739],[-7,16]],[[76508,77755],[-4,8]],[[76504,77763],[-7,26]],[[76497,77789],[-17,-4]],[[76480,77785],[-8,19]],[[76472,77804],[-4,-16]],[[76468,77788],[-10,11]],[[76458,77799],[-10,4]],[[76448,77803],[-1,16]],[[76447,77819],[-2,6]],[[76445,77825],[-13,7]],[[76432,77832],[-12,1]],[[76420,77833],[0,2]],[[76420,77835],[10,19]],[[76430,77854],[-12,13]],[[76418,77867],[16,16]],[[76434,77883],[-1,8]],[[76433,77891],[-18,2]],[[76415,77893],[8,13]],[[76423,77906],[6,40]],[[76429,77946],[4,30]],[[76433,77976],[-19,12]],[[76414,77988],[-2,5]],[[76412,77993],[-9,12]],[[76403,78005],[4,3]],[[76407,78008],[-4,9]],[[76403,78017],[-2,54]],[[76401,78071],[-4,4]],[[76397,78075],[-17,13]],[[76380,78088],[1,14]],[[76381,78102],[-6,25]],[[76375,78127],[6,9]],[[76381,78136],[12,4]],[[76393,78140],[-3,8]],[[76390,78148],[14,9]],[[76404,78157],[0,12]],[[76404,78169],[6,7]],[[76410,78176],[1,1]],[[76411,78177],[-2,6]],[[76409,78183],[-4,3]],[[76405,78186],[3,8]],[[76408,78194],[0,10]],[[76408,78204],[15,49]],[[76423,78253],[7,9]],[[76430,78262],[3,1]],[[76433,78263],[-17,45]],[[76416,78308],[-3,6]],[[76413,78314],[1,30]],[[76414,78344],[4,6]],[[76418,78350],[-11,0]],[[76407,78350],[-3,2]],[[76404,78352],[6,10]],[[76410,78362],[-4,2]],[[76406,78364],[-10,15]],[[76396,78379],[5,3]],[[76401,78382],[2,2]],[[76403,78384],[7,16]],[[76410,78400],[2,1]],[[76412,78401],[-9,19]],[[76403,78420],[2,9]],[[76405,78429],[87,196]],[[76492,78625],[9,3]],[[76501,78628],[1,0]],[[76502,78628],[0,-3]],[[76502,78625],[6,-3]],[[76508,78622],[2,2]],[[76510,78624],[7,16]],[[76517,78640],[5,24]],[[76522,78664],[-2,6]],[[76520,78670],[4,10]],[[76524,78680],[0,7]],[[76524,78687],[-8,1]],[[76516,78688],[-1,0]],[[76515,78688],[1,13]],[[76516,78701],[1,4]],[[76517,78705],[0,7]],[[76517,78712],[10,13]],[[76527,78725],[4,12]],[[76531,78737],[4,36]],[[76535,78773],[-2,15]],[[76533,78788],[4,14]],[[76537,78802],[10,72]],[[76547,78874],[1,9]],[[76548,78883],[6,8]],[[76554,78891],[2,3]],[[76556,78894],[3,14]],[[76559,78908],[2,6]],[[76561,78914],[7,14]],[[76568,78928],[2,4]],[[76570,78932],[1,4]],[[77602,76389],[-14,38]],[[77588,76427],[4,14]],[[77592,76441],[-2,7]],[[77590,76448],[-1,4]],[[77589,76452],[7,11]],[[77596,76463],[2,6]],[[77598,76469],[3,20]],[[77601,76489],[1,19]],[[77602,76508],[2,6]],[[77604,76514],[12,17]],[[77616,76531],[-9,29]],[[77607,76560],[-9,17]],[[77598,76577],[2,4]],[[77600,76581],[3,1]],[[77603,76582],[7,4]],[[77610,76586],[7,2]],[[77617,76588],[-15,20]],[[77602,76608],[9,22]],[[77611,76630],[14,-3]],[[77625,76627],[0,4]],[[77625,76631],[0,18]],[[77625,76649],[4,0]],[[77629,76649],[-4,27]],[[77625,76676],[-6,8]],[[77619,76684],[9,6]],[[68741,77170],[276,357],[272,674],[-12,516],[256,566],[439,348],[233,13],[59,224]],[[71452,76757],[312,456],[395,-99],[364,220],[350,679]],[[80538,75589],[-5,16]],[[80533,75605],[-14,-6]],[[80519,75599],[-2,2]],[[80517,75601],[-7,6]],[[80510,75607],[-21,-1]],[[80489,75606],[-12,1]],[[80477,75607],[0,2]],[[80477,75609],[-2,5]],[[80475,75614],[-4,-4]],[[80471,75610],[-3,0]],[[80468,75610],[-17,14]],[[80451,75624],[-8,7]],[[80443,75631],[-7,6]],[[80436,75637],[-2,-3]],[[80434,75634],[-1,-5]],[[80433,75629],[-1,-1]],[[80432,75628],[-2,-1]],[[80430,75627],[0,6]],[[80430,75633],[-13,13]],[[80417,75646],[-1,1]],[[80416,75647],[-1,3]],[[80415,75650],[-8,11]],[[80407,75661],[-10,17]],[[80397,75678],[-11,3]],[[80386,75681],[-2,3]],[[80384,75684],[-7,0]],[[80377,75684],[-10,-3]],[[80367,75681],[-7,7]],[[80360,75688],[-5,9]],[[80355,75697],[-2,4]],[[80353,75701],[-6,16]],[[80347,75717],[-20,27]],[[80327,75744],[0,5]],[[80327,75749],[-21,44]],[[80306,75793],[-4,-1]],[[80302,75792],[2,13]],[[80304,75805],[-33,40]],[[80271,75845],[0,-3]],[[80271,75842],[-2,-2]],[[80269,75840],[-7,6]],[[80262,75846],[-13,4]],[[80249,75850],[1,8]],[[80250,75858],[11,15]],[[80261,75873],[-10,26]],[[80251,75899],[-12,28]],[[80239,75927],[5,36]],[[80244,75963],[-2,9]],[[80242,75972],[0,4]],[[80242,75976],[8,35]],[[80250,76011],[2,13]],[[80252,76024],[1,6]],[[80253,76030],[4,9]],[[80257,76039],[0,2]],[[80257,76041],[11,20]],[[80268,76061],[-10,28]],[[80258,76089],[-5,16]],[[80253,76105],[-2,3]],[[80251,76108],[-22,16]],[[80229,76124],[0,2]],[[80229,76126],[1,29]],[[80230,76155],[1,11]],[[80231,76166],[1,2]],[[80232,76168],[-10,15]],[[80222,76183],[0,4]],[[80222,76187],[6,20]],[[80228,76207],[-4,0]],[[80224,76207],[0,3]],[[80224,76210],[0,1]],[[80224,76211],[5,7]],[[80229,76218],[-5,2]],[[80224,76220],[-2,0]],[[80222,76220],[1,6]],[[80223,76226],[-4,8]],[[80219,76234],[1,5]],[[80220,76239],[0,5]],[[80220,76244],[-8,-2]],[[80212,76242],[-1,0]],[[80211,76242],[0,15]],[[80211,76257],[-2,0]],[[80209,76257],[-4,-1]],[[80205,76256],[-2,1]],[[80203,76257],[-2,-2]],[[80201,76255],[-1,-1]],[[80200,76254],[-7,16]],[[80193,76270],[-5,3]],[[80188,76273],[-3,7]],[[80185,76280],[4,4]],[[80189,76284],[-1,4]],[[80188,76288],[-1,0]],[[80187,76288],[0,0]],[[80187,76288],[-1,1]],[[80186,76289],[0,0]],[[80186,76289],[-1,0]],[[80185,76289],[0,1]],[[80185,76290],[-1,0]],[[80184,76290],[-3,1]],[[80181,76291],[-1,0]],[[80180,76291],[-1,0]],[[80179,76291],[0,0]],[[80179,76291],[-1,1]],[[80178,76292],[0,1]],[[80178,76293],[0,2]],[[80178,76295],[0,0]],[[80178,76295],[0,2]],[[80178,76297],[0,0]],[[80178,76297],[0,2]],[[80178,76299],[-1,2]],[[80177,76301],[0,1]],[[80177,76302],[0,0]],[[80177,76302],[-1,1]],[[80176,76303],[0,1]],[[80176,76304],[0,0]],[[80176,76304],[-3,0]],[[80173,76304],[0,0]],[[80173,76304],[-1,1]],[[80172,76305],[-1,1]],[[80171,76306],[0,1]],[[80171,76307],[-1,1]],[[80170,76308],[0,0]],[[80170,76308],[-1,0]],[[80169,76308],[0,1]],[[80169,76309],[-1,1]],[[80168,76310],[0,0]],[[80168,76310],[-1,2]],[[80167,76312],[0,0]],[[80167,76312],[-1,2]],[[80166,76314],[0,2]],[[80166,76316],[0,3]],[[80166,76319],[0,1]],[[80166,76320],[-1,3]],[[80165,76323],[-1,0]],[[80164,76323],[0,1]],[[80164,76324],[0,0]],[[80164,76324],[-1,0]],[[80163,76324],[0,1]],[[80163,76325],[-2,3]],[[80161,76328],[-1,1]],[[80160,76329],[0,1]],[[80160,76330],[-1,2]],[[80159,76332],[0,0]],[[80159,76332],[0,1]],[[80159,76333],[-1,1]],[[80158,76334],[-1,2]],[[80157,76336],[-3,0]],[[80154,76336],[-2,-1]],[[80152,76335],[0,-1]],[[80152,76334],[-1,0]],[[80151,76334],[-1,0]],[[80150,76334],[-1,2]],[[80149,76336],[0,0]],[[80149,76336],[0,0]],[[80149,76336],[0,2]],[[80149,76338],[0,1]],[[80149,76339],[1,1]],[[80150,76340],[1,0]],[[80151,76340],[1,2]],[[80152,76342],[0,0]],[[80152,76342],[0,2]],[[80152,76344],[0,1]],[[80152,76345],[-1,1]],[[80151,76346],[-6,10]],[[80145,76356],[2,4]],[[80147,76360],[-1,1]],[[80146,76361],[-3,2]],[[80143,76363],[-8,0]],[[80135,76363],[-2,8]],[[80133,76371],[0,3]],[[80133,76374],[1,12]],[[80134,76386],[-20,21]],[[80114,76407],[-5,-5]],[[80109,76402],[-7,3]],[[80102,76405],[-5,13]],[[80097,76418],[-17,-1]],[[80080,76417],[-11,2]],[[80069,76419],[-6,2]],[[80063,76421],[-6,3]],[[80057,76424],[-19,5]],[[80038,76429],[-6,0]],[[80032,76429],[-7,10]],[[80025,76439],[-10,9]],[[80015,76448],[-5,-3]],[[80010,76445],[-4,3]],[[80006,76448],[-5,16]],[[80001,76464],[2,2]],[[80003,76466],[4,-4]],[[80007,76462],[5,4]],[[80012,76466],[3,1]],[[80015,76467],[3,22]],[[80018,76489],[-6,23]],[[80012,76512],[-6,6]],[[80006,76518],[5,7]],[[80011,76525],[0,3]],[[80011,76528],[-8,6]],[[80003,76534],[-23,26]],[[79980,76560],[-3,-3]],[[79977,76557],[-6,8]],[[79971,76565],[-5,2]],[[79966,76567],[-4,13]],[[79962,76580],[-3,-2]],[[79959,76578],[-4,8]],[[79955,76586],[-17,12]],[[79938,76598],[-5,10]],[[79933,76608],[2,2]],[[79935,76610],[3,2]],[[79938,76612],[-14,12]],[[79924,76624],[-6,17]],[[79918,76641],[18,33]],[[79936,76674],[1,2]],[[79937,76676],[-5,3]],[[79932,76679],[-2,-1]],[[79930,76678],[-4,-3]],[[79926,76675],[-11,13]],[[79915,76688],[-2,24]],[[79913,76712],[-3,0]],[[79910,76712],[1,14]],[[79911,76726],[4,9]],[[79915,76735],[15,21]],[[79930,76756],[-6,-7]],[[79924,76749],[-1,2]],[[79923,76751],[-1,5]],[[79922,76756],[-6,4]],[[79916,76760],[-6,15]],[[79910,76775],[-6,11]],[[79904,76786],[-1,11]],[[79903,76797],[2,2]],[[79905,76799],[13,-3]],[[79918,76796],[4,4]],[[79922,76800],[-1,13]],[[79921,76813],[-6,5]],[[79915,76818],[-1,1]],[[79914,76819],[-5,10]],[[79909,76829],[-11,3]],[[79898,76832],[-2,2]],[[79896,76834],[0,15]],[[79896,76849],[-7,19]],[[79889,76868],[0,3]],[[79889,76871],[11,24]],[[79900,76895],[-6,3]],[[79894,76898],[-2,8]],[[79892,76906],[1,21]],[[79893,76927],[0,38]],[[79893,76965],[-7,17]],[[79886,76982],[-2,10]],[[79884,76992],[1,6]],[[78177,75917],[-7,9]],[[78170,75926],[-1,1]],[[78169,75927],[-1,5]],[[78168,75932],[-5,7]],[[78163,75939],[2,1]],[[78165,75940],[4,1]],[[78169,75941],[0,1]],[[78169,75942],[3,5]],[[78172,75947],[-3,5]],[[78169,75952],[-11,11]],[[78158,75963],[-2,1]],[[78156,75964],[-6,17]],[[78150,75981],[-3,63]],[[78147,76044],[17,42]],[[78164,76086],[1,12]],[[78165,76098],[-4,10]],[[78161,76108],[-4,-4]],[[78157,76104],[-7,-1]],[[78150,76103],[-10,6]],[[78140,76109],[18,19]],[[78158,76128],[-5,7]],[[78153,76135],[2,4]],[[78155,76139],[-18,19]],[[78137,76158],[-1,9]],[[78136,76167],[-6,-1]],[[78130,76166],[-6,-4]],[[78124,76162],[-18,17]],[[78106,76179],[1,4]],[[78107,76183],[1,4]],[[78108,76187],[-19,16]],[[78089,76203],[-6,6]],[[78083,76209],[-4,12]],[[78079,76221],[10,1]],[[78089,76222],[-1,4]],[[78088,76226],[-1,1]],[[78087,76227],[-3,7]],[[78084,76234],[-1,1]],[[78083,76235],[-4,-1]],[[78079,76234],[-2,1]],[[78077,76235],[-8,12]],[[78069,76247],[5,7]],[[78074,76254],[1,9]],[[78075,76263],[-3,16]],[[78072,76279],[-1,5]],[[78071,76284],[-19,41]],[[78052,76325],[-16,3]],[[78036,76328],[-17,5]],[[78019,76333],[-4,4]],[[78015,76337],[-5,10]],[[78010,76347],[-17,25]],[[77993,76372],[-1,3]],[[77992,76375],[-5,21]],[[77987,76396],[-1,2]],[[77986,76398],[-9,10]],[[77977,76408],[-3,4]],[[77974,76412],[-9,24]],[[77965,76436],[0,9]],[[77965,76445],[1,6]],[[77966,76451],[1,7]],[[77967,76458],[0,1]],[[77967,76459],[0,6]],[[77967,76465],[-3,1]],[[77964,76466],[-5,-9]],[[77959,76457],[-1,0]],[[77958,76457],[-2,4]],[[77956,76461],[-9,7]],[[77947,76468],[-1,-11]],[[77946,76457],[-8,6]],[[77938,76463],[1,8]],[[77939,76471],[5,9]],[[77944,76480],[0,9]],[[77944,76489],[-1,2]],[[77943,76491],[-13,4]],[[77930,76495],[-1,-1]],[[77929,76494],[-2,-6]],[[77927,76488],[-1,-9]],[[77926,76479],[-21,19]],[[77905,76498],[-1,7]],[[77904,76505],[10,6]],[[77914,76511],[6,16]],[[77920,76527],[-11,18]],[[77909,76545],[-12,17]],[[77897,76562],[7,9]],[[77904,76571],[2,4]],[[77906,76575],[-7,1]],[[77899,76576],[-5,4]],[[77894,76580],[-11,-4]],[[77883,76576],[-3,-2]],[[77880,76574],[-10,24]],[[77870,76598],[-14,7]],[[77856,76605],[-1,-1]],[[77855,76604],[-10,-21]],[[77845,76583],[-4,-9]],[[77841,76574],[-3,1]],[[77838,76575],[-13,-2]],[[77825,76573],[-1,3]],[[77824,76576],[1,2]],[[77825,76578],[7,12]],[[77832,76590],[1,3]],[[77833,76593],[-19,31]],[[77814,76624],[-3,12]],[[77811,76636],[-4,6]],[[77807,76642],[-7,3]],[[77800,76645],[-1,3]],[[77799,76648],[-4,1]],[[77795,76649],[-30,-30]],[[77765,76619],[0,12]],[[77765,76631],[-1,4]],[[77764,76635],[-9,1]],[[77755,76636],[-5,-3]],[[77750,76633],[-1,4]],[[77749,76637],[-1,0]],[[77748,76637],[-13,0]],[[77735,76637],[-6,2]],[[77729,76639],[-1,1]],[[77728,76640],[1,4]],[[77729,76644],[6,19]],[[77735,76663],[-1,3]],[[77734,76666],[-2,2]],[[77732,76668],[-12,-1]],[[77720,76667],[-1,-1]],[[77719,76666],[-4,-8]],[[77715,76658],[0,3]],[[77715,76661],[0,3]],[[77715,76664],[-5,-2]],[[77710,76662],[-8,2]],[[77702,76664],[-6,0]],[[77696,76664],[-4,-4]],[[77692,76660],[-1,-3]],[[77691,76657],[1,-5]],[[77692,76652],[6,-13]],[[77698,76639],[-10,2]],[[77688,76641],[-2,-11]],[[77686,76630],[-8,-2]],[[77678,76628],[-11,11]],[[77667,76639],[-2,2]],[[77665,76641],[-7,-1]],[[77658,76640],[-13,0]],[[77645,76640],[-5,5]],[[77640,76645],[-7,22]],[[77633,76667],[-3,15]],[[77630,76682],[-2,8]],[[79206,75770],[0,1]],[[79206,75771],[4,7]],[[79210,75778],[-2,2]],[[79208,75780],[-6,2]],[[79202,75782],[1,7]],[[79203,75789],[-7,8]],[[79196,75797],[0,5]],[[79196,75802],[4,25]],[[79200,75827],[2,7]],[[79202,75834],[1,2]],[[79203,75836],[0,17]],[[79203,75853],[3,11]],[[79206,75864],[1,10]],[[79207,75874],[4,8]],[[79211,75882],[12,20]],[[79223,75902],[-2,11]],[[79221,75913],[-2,8]],[[79219,75921],[0,2]],[[79219,75923],[-18,28]],[[79201,75951],[-7,24]],[[79194,75975],[8,22]],[[79202,75997],[-2,8]],[[79200,76005],[-6,18]],[[79194,76023],[-3,7]],[[79191,76030],[0,4]],[[79191,76034],[-3,9]],[[79188,76043],[-3,3]],[[79185,76046],[-3,6]],[[79182,76052],[-6,24]],[[79176,76076],[-1,12]],[[79175,76088],[6,18]],[[79181,76106],[0,4]],[[79181,76110],[-1,9]],[[79180,76119],[0,7]],[[79180,76126],[1,35]],[[79181,76161],[-1,35]],[[79180,76196],[-2,18]],[[79178,76214],[-4,6]],[[79174,76220],[-11,10]],[[79163,76230],[-4,-1]],[[79159,76229],[4,17]],[[79163,76246],[-9,14]],[[79154,76260],[-7,13]],[[79147,76273],[1,2]],[[79148,76275],[-6,13]],[[79142,76288],[-1,0]],[[79141,76288],[-7,-7]],[[79134,76281],[16,43]],[[79150,76324],[0,1]],[[79150,76325],[2,6]],[[79152,76331],[13,-3]],[[79165,76328],[7,29]],[[79172,76357],[0,6]],[[79172,76363],[3,-1]],[[79175,76362],[5,-1]],[[79180,76361],[4,7]],[[79184,76368],[-7,4]],[[79177,76372],[-7,3]],[[79170,76375],[-1,6]],[[79169,76381],[-3,-1]],[[79166,76380],[-2,13]],[[79164,76393],[10,2]],[[79174,76395],[1,9]],[[79175,76404],[0,1]],[[79175,76405],[5,7]],[[79180,76412],[3,4]],[[79183,76416],[27,-14]],[[79210,76402],[6,0]],[[79216,76402],[0,3]],[[79216,76405],[-4,8]],[[79212,76413],[0,1]],[[79212,76414],[-12,18]],[[79200,76432],[-3,10]],[[79197,76442],[-6,1]],[[79191,76443],[4,9]],[[79195,76452],[1,3]],[[79196,76455],[2,12]],[[79198,76467],[2,1]],[[79200,76468],[15,3]],[[79215,76471],[8,21]],[[79223,76492],[7,3]],[[79230,76495],[26,10]],[[79256,76505],[1,0]],[[79257,76505],[2,13]],[[79259,76518],[-2,6]],[[79257,76524],[0,3]],[[79257,76527],[4,4]],[[79261,76531],[4,6]],[[79265,76537],[-3,21]],[[79262,76558],[4,13]],[[79266,76571],[0,6]],[[79266,76577],[0,8]],[[79266,76585],[6,0]],[[79272,76585],[2,2]],[[79274,76587],[-2,8]],[[79272,76595],[-20,7]],[[79252,76602],[3,4]],[[79255,76606],[10,9]],[[79265,76615],[1,9]],[[79266,76624],[-6,2]],[[79260,76626],[2,19]],[[79262,76645],[-4,11]],[[79258,76656],[1,4]],[[79259,76660],[-4,9]],[[79255,76669],[-1,4]],[[79254,76673],[17,46]],[[79271,76719],[1,4]],[[79272,76723],[0,4]],[[79272,76727],[0,1]],[[79272,76728],[-9,34]],[[79263,76762],[-1,6]],[[79262,76768],[-2,7]],[[79260,76775],[3,11]],[[79263,76786],[2,6]],[[79265,76792],[1,7]],[[79266,76799],[-5,3]],[[79261,76802],[27,19]],[[79288,76821],[1,1]],[[79289,76822],[8,7]],[[79297,76829],[1,4]],[[79298,76833],[-3,6]],[[79295,76839],[4,9]],[[79299,76848],[-11,20]],[[79288,76868],[-1,2]],[[79287,76870],[-1,7]],[[79286,76877],[0,2]],[[79286,76879],[0,4]],[[79286,76883],[11,5]],[[79297,76888],[2,6]],[[79299,76894],[0,2]],[[79299,76896],[-12,7]],[[79287,76903],[-2,2]],[[79285,76905],[-1,13]],[[79284,76918],[19,27]],[[79303,76945],[1,1]],[[79304,76946],[4,9]],[[79308,76955],[1,4]],[[79309,76959],[24,37]],[[79333,76996],[6,2]],[[79339,76998],[0,7]],[[79339,77005],[-6,-1]],[[79333,77004],[-3,-1]],[[79330,77003],[-4,12]],[[79326,77015],[8,3]],[[79334,77018],[5,4]],[[79339,77022],[5,-1]],[[79344,77021],[23,45]],[[79367,77066],[2,7]],[[79369,77073],[9,15]],[[79378,77088],[8,-4]],[[79386,77084],[9,-5]],[[79395,77079],[2,-1]],[[79397,77078],[-1,-2]],[[79396,77076],[2,-1]],[[79398,77075],[1,2]],[[79399,77077],[9,5]],[[79408,77082],[3,0]],[[79411,77082],[7,4]],[[79418,77086],[4,-2]],[[79422,77084],[1,1]],[[79423,77085],[-3,5]],[[79420,77090],[4,5]],[[79424,77095],[-4,1]],[[79420,77096],[0,3]],[[79420,77099],[7,10]],[[79427,77109],[4,2]],[[79431,77111],[2,1]],[[79433,77112],[0,3]],[[79433,77115],[-4,3]],[[79429,77118],[7,3]],[[79436,77121],[1,0]],[[79437,77121],[3,8]],[[79440,77129],[4,1]],[[79444,77130],[0,0]],[[79444,77130],[2,-1]],[[79446,77129],[1,0]],[[79447,77129],[0,0]],[[79447,77129],[2,0]],[[79449,77129],[2,1]],[[79451,77130],[1,0]],[[79452,77130],[1,-1]],[[79453,77129],[1,-1]],[[79454,77128],[0,0]],[[79454,77128],[1,-1]],[[79455,77127],[0,0]],[[79455,77127],[0,0]],[[79455,77127],[4,2]],[[79459,77129],[2,3]],[[79461,77132],[0,1]],[[79461,77133],[1,1]],[[79462,77134],[1,1]],[[79463,77135],[0,0]],[[79463,77135],[2,3]],[[79465,77138],[2,0]],[[79467,77138],[1,0]],[[79468,77138],[0,0]],[[79468,77138],[2,1]],[[79470,77139],[2,2]],[[79472,77141],[2,0]],[[79474,77141],[0,0]],[[79474,77141],[4,0]],[[79478,77141],[1,1]],[[79479,77142],[2,1]],[[79481,77143],[5,5]],[[79486,77148],[1,1]],[[79487,77149],[2,0]],[[79489,77149],[1,0]],[[79490,77149],[1,0]],[[79491,77149],[3,-2]],[[79494,77147],[1,0]],[[79495,77147],[0,0]],[[79495,77147],[2,0]],[[79497,77147],[1,1]],[[79498,77148],[2,-1]],[[79500,77147],[0,-1]],[[79500,77146],[0,-1]],[[79500,77145],[1,-2]],[[79501,77143],[2,-1]],[[79503,77142],[7,13]],[[79510,77155],[13,-11]],[[79523,77144],[1,-1]],[[79524,77143],[5,-2]],[[79529,77141],[2,2]],[[79531,77143],[6,0]],[[79537,77143],[2,-2]],[[79539,77141],[2,-6]],[[79541,77135],[3,0]],[[79544,77135],[14,6]],[[79558,77141],[10,4]],[[79568,77145],[9,6]],[[79577,77151],[13,-5]],[[79590,77146],[8,2]],[[79598,77148],[11,4]],[[79609,77152],[2,5]],[[79611,77157],[14,-5]],[[79625,77152],[3,-6]],[[79628,77146],[-1,-16]],[[79627,77130],[2,-3]],[[79629,77127],[2,-10]],[[79631,77117],[1,-1]],[[79632,77116],[0,-1]],[[79632,77115],[2,-1]],[[79634,77114],[2,0]],[[79636,77114],[2,1]],[[79638,77115],[1,1]],[[79639,77116],[9,-2]],[[79648,77114],[1,0]],[[79649,77114],[12,-4]],[[79661,77110],[2,-4]],[[79663,77106],[1,-3]],[[79664,77103],[1,-2]],[[79665,77101],[0,-7]],[[79665,77094],[-3,-4]],[[79662,77090],[0,-3]],[[79662,77087],[0,-2]],[[79662,77085],[-2,-4]],[[79660,77081],[-11,-14]],[[79649,77067],[8,-7]],[[79657,77060],[6,-8]],[[79663,77052],[2,-2]],[[79665,77050],[3,1]],[[79668,77051],[1,7]],[[79669,77058],[4,0]],[[79673,77058],[-1,-7]],[[79672,77051],[0,-4]],[[79672,77047],[2,-2]],[[79674,77045],[-1,-7]],[[79673,77038],[0,-2]],[[79673,77036],[-1,-1]],[[79672,77035],[0,0]],[[79672,77035],[0,-1]],[[79672,77034],[0,0]],[[79672,77034],[0,-1]],[[79672,77033],[-1,-1]],[[79671,77032],[0,-1]],[[79671,77031],[0,-3]],[[79671,77028],[-1,-1]],[[79670,77027],[0,-3]],[[79670,77024],[0,0]],[[79670,77024],[0,-1]],[[79670,77023],[0,-1]],[[79670,77022],[0,-1]],[[79670,77021],[0,-1]],[[79670,77020],[0,-2]],[[79670,77018],[0,0]],[[79670,77018],[0,-1]],[[79670,77017],[0,-1]],[[79670,77016],[1,-1]],[[79671,77015],[0,-1]],[[79671,77014],[1,-1]],[[79672,77013],[4,0]],[[79676,77013],[0,0]],[[79676,77013],[1,1]],[[79677,77014],[0,1]],[[79677,77015],[1,1]],[[79678,77016],[0,0]],[[79678,77016],[1,1]],[[79679,77017],[0,1]],[[79679,77018],[1,2]],[[79680,77020],[1,2]],[[79681,77022],[3,5]],[[79684,77027],[0,1]],[[79684,77028],[1,1]],[[79685,77029],[0,0]],[[79685,77029],[0,0]],[[79685,77029],[1,0]],[[79686,77029],[1,-1]],[[79687,77028],[1,-1]],[[79688,77027],[0,0]],[[79688,77027],[1,-2]],[[79689,77025],[0,-1]],[[79689,77024],[1,-2]],[[79690,77022],[1,-1]],[[79691,77021],[1,-1]],[[79692,77020],[0,-1]],[[79692,77019],[1,0]],[[79693,77019],[0,0]],[[79693,77019],[0,0]],[[79693,77019],[2,0]],[[79695,77019],[1,1]],[[79696,77020],[0,1]],[[79696,77021],[2,1]],[[79698,77022],[0,0]],[[79698,77022],[1,2]],[[79699,77024],[3,2]],[[79702,77026],[0,0]],[[79702,77026],[2,0]],[[79704,77026],[1,-1]],[[79705,77025],[1,0]],[[79706,77025],[1,0]],[[79707,77025],[0,-1]],[[79707,77024],[1,0]],[[79708,77024],[0,0]],[[79708,77024],[1,0]],[[79709,77024],[0,-1]],[[79709,77023],[1,0]],[[79710,77023],[3,-4]],[[79713,77019],[0,-1]],[[79713,77018],[0,0]],[[79713,77018],[1,-1]],[[79714,77017],[1,-1]],[[79715,77016],[0,-1]],[[79715,77015],[0,0]],[[79715,77015],[1,-1]],[[79716,77014],[0,0]],[[79716,77014],[0,-1]],[[79716,77013],[1,-1]],[[79717,77012],[1,-1]],[[79718,77011],[0,0]],[[79718,77011],[0,-2]],[[79718,77009],[1,-2]],[[79719,77007],[1,-2]],[[79720,77005],[0,0]],[[79720,77005],[1,-2]],[[79721,77003],[0,0]],[[79721,77003],[0,-1]],[[79721,77002],[1,-1]],[[79722,77001],[0,-1]],[[79722,77000],[0,0]],[[79722,77000],[1,-3]],[[79723,76997],[1,-3]],[[79724,76994],[1,0]],[[79725,76994],[1,-1]],[[79726,76993],[1,0]],[[79727,76993],[1,2]],[[79728,76995],[1,1]],[[79729,76996],[1,0]],[[79730,76996],[0,1]],[[79730,76997],[1,1]],[[79731,76998],[1,0]],[[79732,76998],[0,0]],[[79732,76998],[1,1]],[[79733,76999],[0,0]],[[79733,76999],[3,0]],[[79736,76999],[0,0]],[[79736,76999],[1,0]],[[79737,76999],[0,0]],[[79737,76999],[1,0]],[[79738,76999],[1,0]],[[79739,76999],[0,0]],[[79739,76999],[1,-1]],[[79740,76998],[0,-1]],[[79740,76997],[2,-3]],[[79742,76994],[0,-1]],[[79742,76993],[0,-1]],[[79742,76992],[0,-1]],[[79742,76991],[0,-1]],[[79742,76990],[0,-2]],[[79742,76988],[0,0]],[[79742,76988],[0,-1]],[[79742,76987],[0,-1]],[[79742,76986],[0,0]],[[79742,76986],[-1,-2]],[[79741,76984],[0,0]],[[79741,76984],[0,-2]],[[79741,76982],[0,0]],[[79741,76982],[0,-1]],[[79741,76981],[0,-1]],[[79741,76980],[0,-1]],[[79741,76979],[1,-1]],[[79742,76978],[0,0]],[[79742,76978],[3,-7]],[[79745,76971],[1,0]],[[79746,76971],[5,-7]],[[79751,76964],[31,-14]],[[79782,76950],[21,19]],[[79803,76969],[2,13]],[[79805,76982],[19,7]],[[79824,76989],[19,6]],[[79843,76995],[32,7]],[[79875,77002],[7,-3]],[[79882,76999],[3,-1]],[[71310,76677],[142,80]],[[71282,75708],[170,1049]],[[72488,73876],[243,416],[10,639],[144,234],[-43,258],[325,315],[82,436],[-41,443],[96,426],[-13,462],[-418,508]],[[68956,73769],[17,552],[310,641],[199,1015],[-7,393],[321,523],[207,124],[425,1186],[-192,790],[-40,474],[114,377]],[[68955,73769],[1,0]],[[69347,72887],[-312,590],[-79,292]],[[69353,72877],[-6,7]],[[21034,39396],[109,-34]],[[21034,39396],[-49,-11]],[[24406,67157],[-2,-2]],[[19034,64236],[2,-17]],[[19036,64219],[286,-169]],[[19036,64219],[-87,-272],[129,-636]],[[19078,63311],[-45,-68]],[[19078,63311],[113,-355]],[[19643,63427],[-47,-135]],[[19596,63292],[-42,143]],[[19596,63292],[-186,-443]],[[18300,62053],[0,0]],[[18300,62053],[-208,-428],[-52,-406]],[[18040,61219],[225,-13]],[[18040,61219],[-19,-218]],[[18021,61000],[-8,-61]],[[18013,60939],[-2,0]],[[14164,31669],[56,-45]],[[14012,31579],[-51,-41]],[[13938,31558],[23,-20]],[[14088,31592],[-2,-46]],[[14220,31624],[-2,14]],[[13961,31538],[27,-62]],[[14086,31546],[4,2]],[[14082,31539],[4,7]],[[14082,31539],[-10,5]],[[14082,31539],[-24,-135]],[[13951,31472],[37,4]],[[13988,31476],[64,-102]],[[14058,31404],[-11,42]],[[14058,31404],[-6,-30]],[[14058,31404],[0,0]],[[14052,31374],[45,-295]],[[14389,31450],[0,14]],[[14389,31450],[29,-38]],[[14363,31438],[-5,18]],[[14363,31438],[26,12]],[[14273,31410],[-44,75]],[[14273,31410],[-53,214]],[[14245,31391],[-13,7]],[[14245,31391],[-19,24]],[[14334,31398],[-16,33]],[[14334,31398],[29,40]],[[13999,31301],[121,-300]],[[14264,31372],[-19,19]],[[14264,31372],[-7,-5]],[[14294,31351],[-30,21]],[[14294,31351],[-21,59]],[[14294,31351],[11,-37]],[[14305,31314],[29,84]],[[14305,31314],[-8,-508]],[[14225,31232],[72,-426]],[[14122,31127],[0,5]],[[14122,31127],[50,69]],[[14122,31127],[-25,-48]],[[14097,31079],[23,-78]],[[14120,31001],[129,-423]],[[14297,30806],[-48,-228]],[[14249,30578],[-163,-374],[-30,-446],[-183,-389]],[[13873,29369],[0,0]],[[3235,25649],[44,-191]],[[3235,25649],[67,-197]],[[3235,25649],[172,-65]],[[3407,25584],[32,-28]],[[3407,25584],[-67,-129]],[[3085,25457],[167,-91]],[[3439,25556],[14,-98]],[[3439,25556],[-54,-122]],[[3011,25233],[130,-31]],[[3141,25202],[29,7]],[[3141,25202],[169,-135]],[[3170,25209],[90,125]],[[3170,25209],[18,-15]],[[3188,25194],[17,14]],[[3188,25194],[21,-30]],[[3423,25251],[-24,-119]],[[3310,25067],[35,-3]],[[3310,25067],[110,-113]],[[3346,25073],[-46,212]],[[3346,25073],[-2,106]],[[3345,25064],[1,9]],[[3345,25064],[12,155]],[[1180,24245],[9,-85]],[[1125,24202],[-113,-300]],[[3465,25027],[58,131]],[[3465,25027],[63,-44]],[[3430,25014],[-31,118]],[[3430,25014],[35,13]],[[1189,24160],[-12,-299]],[[1189,24160],[30,-341]],[[3420,24954],[10,60]],[[3420,24954],[90,-23]],[[985,24032],[30,335]],[[985,24032],[-30,-90]],[[686,23904],[269,38]],[[955,23942],[-6,-9]],[[1005,23935],[0,0]],[[1005,23935],[-20,97]],[[1005,23935],[-175,-75]],[[1012,23902],[-7,33]],[[1012,23902],[-5,-311],[-162,74]],[[3588,24791],[90,82]],[[3588,24791],[56,-35]],[[3571,24771],[-26,112]],[[3571,24771],[17,20]],[[1177,23861],[19,-191]],[[3418,24595],[63,68]],[[3418,24595],[153,176]],[[3418,24595],[-178,-134],[-132,-352]],[[1219,23784],[-42,77]],[[1196,23670],[-29,-62]],[[1196,23670],[29,-92]],[[1167,23608],[-72,-594]],[[1167,23608],[-146,-385]],[[14013,27631],[-53,479],[165,465],[-252,794]],[[3053,24102],[-68,-84]],[[3108,24109],[-55,-7]],[[3108,24109],[-55,-7]],[[2985,24018],[-109,-167]],[[2985,24018],[0,0]],[[2835,23860],[-89,-83]],[[2876,23851],[0,0]],[[2746,23777],[-45,-339]],[[2746,23777],[15,-340]],[[3083,23802],[-256,-217]],[[2699,23421],[2,17]],[[2724,23408],[-23,30]],[[14897,25603],[-192,38],[-100,-545],[-148,-373]],[[1258,20653],[-15,-64]],[[1243,20589],[-59,-49]],[[1256,20587],[-13,2]],[[1184,20540],[-288,-171],[67,-331]],[[16022,25338],[-12,-175]],[[15870,25211],[140,-48]],[[15295,25039],[1,0]],[[15296,25039],[0,0]],[[15296,25039],[0,0]],[[15296,25039],[5,0]],[[15301,25039],[-5,0]],[[15301,25039],[-43,181]],[[15880,25188],[46,-198]],[[1331,20427],[-147,113]],[[16010,25163],[70,-237]],[[1667,20537],[86,-113]],[[1893,20614],[96,8]],[[16412,25251],[-196,-271]],[[1408,20416],[-77,11]],[[1989,20622],[-45,-32]],[[1989,20622],[13,-22]],[[1989,20622],[0,0]],[[1504,20428],[-173,-1]],[[15159,24866],[137,173]],[[2002,20600],[141,-56]],[[15368,24919],[0,0]],[[15368,24919],[-67,120]],[[15368,24919],[-71,-186]],[[1731,20491],[26,5]],[[1943,20568],[59,32]],[[1757,20496],[37,-8]],[[14802,24713],[-67,-72]],[[16592,25171],[-180,80]],[[15926,24990],[-27,-22]],[[14523,24589],[207,-54]],[[15899,24968],[-165,-103]],[[16573,25146],[-161,105]],[[14735,24641],[-309,33]],[[15402,24790],[-119,-148]],[[16123,24971],[-43,-45]],[[15734,24865],[-74,-23]],[[15660,24842],[-239,-74]],[[15421,24768],[-53,151]],[[16214,24981],[-15,267]],[[16216,24980],[-93,-9]],[[16080,24926],[-154,64]],[[14923,24592],[-4,-188]],[[14896,24562],[-161,79]],[[15271,24664],[-56,26]],[[15271,24664],[-25,154]],[[15019,24588],[66,-232]],[[14837,24535],[3,-11]],[[16514,24981],[64,9]],[[16514,24981],[32,-63]],[[15283,24642],[-12,22]],[[15283,24642],[-47,-15]],[[14831,24468],[-32,-179]],[[16036,24792],[-137,176]],[[15942,24755],[94,37]],[[15005,24497],[57,-172]],[[16033,24761],[3,31]],[[16399,24832],[115,149]],[[15986,24721],[47,40]],[[14919,24404],[-9,43]],[[14919,24404],[-30,-87]],[[14919,24404],[0,0]],[[15901,24670],[-167,195]],[[15937,24653],[49,68]],[[15008,24389],[-119,-72]],[[15458,24499],[0,0]],[[15458,24499],[-37,269]],[[15458,24499],[-37,-45]],[[14889,24317],[-90,-28]],[[14799,24289],[-133,-84]],[[15961,24608],[25,113]],[[16449,24734],[-233,246]],[[15112,24368],[-27,-12]],[[15112,24368],[15,-10]],[[15085,24356],[-23,-31]],[[16031,24593],[2,168]],[[15062,24325],[108,-348]],[[14666,24205],[-207,146]],[[16644,24742],[-140,-47]],[[16504,24695],[-55,39]],[[15506,24422],[10,1]],[[15996,24549],[62,-34]],[[15773,24472],[-25,-229]],[[15603,24423],[91,-92]],[[15497,24389],[-39,110]],[[15820,24475],[-23,-209]],[[1106,19677],[-240,-507]],[[14728,24157],[-62,48]],[[16058,24515],[165,-3]],[[15922,24468],[-124,-226]],[[15489,24340],[4,-38]],[[16448,24590],[-11,-103]],[[15975,24455],[-315,387]],[[16223,24512],[-100,459]],[[16010,24447],[48,68]],[[15865,24400],[-68,-134]],[[15865,24400],[-8,81]],[[15984,24418],[102,-213]],[[16217,24480],[6,32]],[[15694,24331],[0,0]],[[15694,24331],[-44,-51]],[[15694,24331],[54,-88]],[[16373,24509],[76,225]],[[14762,24059],[-34,98]],[[14762,24059],[-21,-9]],[[14762,24059],[0,0]],[[16025,24405],[84,-172]],[[15563,24275],[-66,114]],[[16586,24545],[-82,150]],[[16084,24401],[99,-102]],[[15374,24204],[-68,-34]],[[15722,24298],[-10,92]],[[16594,24520],[3,4]],[[15306,24170],[-31,107]],[[15306,24170],[-42,-216]],[[15306,24170],[0,0]],[[15416,24199],[81,190]],[[15478,24196],[66,-78]],[[16300,24408],[-83,72]],[[15797,24266],[1,-24]],[[16473,24441],[17,-142]],[[15748,24243],[5,-20]],[[14796,23978],[-34,81]],[[14796,23978],[-9,-8]],[[14796,23978],[0,0]],[[15798,24242],[-45,-19]],[[16605,24455],[10,-3]],[[15753,24223],[-9,-136]],[[16284,24355],[16,53]],[[16193,24322],[24,158]],[[16183,24299],[10,23]],[[15544,24118],[-52,45]],[[15544,24118],[-9,-148]],[[15544,24118],[0,0]],[[16420,24326],[166,219]],[[14839,23887],[-43,91]],[[15170,23977],[-442,180]],[[16109,24233],[74,66]],[[16394,24307],[-94,101]],[[16555,24347],[31,198]],[[16086,24205],[23,28]],[[16519,24318],[90,-273],[-89,-230]],[[14824,23855],[15,32]],[[14824,23855],[-143,-133]],[[16248,24227],[-55,95]],[[16256,24228],[-8,-1]],[[15744,24087],[-89,-96]],[[15264,23954],[-94,23]],[[15535,23970],[-48,-13]],[[15487,23957],[-223,-3]],[[14984,23817],[12,2]],[[14984,23817],[-115,-124]],[[14996,23819],[-157,68]],[[15655,23991],[-120,-21]],[[16274,24099],[246,-284]],[[15568,23893],[-81,64]],[[15715,23921],[-60,70]],[[16148,24035],[100,192]],[[15992,23985],[-248,102]],[[16969,24236],[69,-298]],[[16144,23999],[-58,206]],[[15010,23688],[-14,131]],[[16022,23964],[-30,21]],[[15719,23873],[0,-1]],[[15719,23872],[-4,49]],[[15719,23872],[-7,-47]],[[15553,23806],[0,0]],[[15553,23806],[15,87]],[[15553,23806],[-43,-55]],[[15712,23825],[-1,2]],[[15712,23825],[5,-39]],[[15614,23756],[-46,137]],[[15510,23713],[43,93]],[[15748,23771],[-29,101]],[[15519,23691],[-16,-169]],[[15807,23757],[-59,14]],[[15129,23567],[-119,121]],[[16283,23879],[-152,90]],[[16283,23879],[8,-5]],[[17293,24145],[-92,-394]],[[16028,23806],[0,0]],[[16028,23806],[-36,179]],[[16028,23806],[-46,-189]],[[15738,23724],[10,47]],[[16291,23874],[-8,5]],[[15588,23678],[26,78]],[[15807,23736],[-69,-12]],[[15829,23725],[-55,-96]],[[16375,23855],[-84,19]],[[17152,24051],[-42,-189]],[[15306,23538],[-27,151]],[[614,18668],[-8,-1]],[[16829,23924],[209,14]],[[15774,23629],[-36,95]],[[513,18594],[-182,-455],[-309,-321],[60,-200],[510,488],[537,-176],[222,237],[261,-71]],[[16445,23800],[9,-10]],[[16520,23815],[2,-3]],[[16522,23812],[-11,-308]],[[16100,23693],[96,-21]],[[1985,19138],[-172,-254],[-33,-312]],[[16382,23765],[73,21]],[[17038,23938],[72,-76]],[[15503,23522],[-374,45]],[[16199,23711],[108,163]],[[15848,23616],[-74,13]],[[16461,23772],[32,-209]],[[15222,23413],[-93,154]],[[15569,23499],[-66,23]],[[15764,23534],[-150,222]],[[16082,23616],[-54,190]],[[15887,23559],[-318,-60]],[[17110,23862],[91,-111]],[[15915,23519],[-6,256],[-194,146]],[[15086,23290],[85,83]],[[15086,23290],[-57,-64]],[[15086,23290],[0,0]],[[16784,23734],[-262,78]],[[15368,23349],[-64,-34]],[[15443,23356],[-62,-53]],[[15304,23315],[-82,98]],[[16760,23710],[527,-139]],[[15306,23313],[23,-66]],[[15029,23226],[-115,63],[96,399]],[[16364,23576],[19,-15]],[[15381,23303],[-24,-20]],[[17376,23833],[-30,-198]],[[15456,23313],[-75,-10]],[[15357,23283],[-53,32]],[[16313,23542],[102,-61]],[[15064,23192],[-35,34]],[[16447,23567],[46,-4]],[[15882,23414],[-165,-154]],[[17779,23916],[-21,-295]],[[15483,23292],[-126,-9]],[[15329,23247],[15,-67]],[[15329,23247],[55,-76]],[[17201,23751],[85,-152]],[[16493,23563],[7,-15]],[[17674,23872],[23,-84]],[[15512,23292],[84,-9]],[[15657,23329],[-88,170]],[[17739,23883],[-42,-95]],[[15659,23325],[-2,4]],[[16500,23548],[-55,-48]],[[16500,23548],[11,-44]],[[16500,23548],[0,0]],[[15596,23283],[61,46]],[[15083,23136],[-19,56]],[[15083,23136],[66,-134]],[[16098,23412],[-140,-580]],[[15522,23247],[74,36]],[[16511,23504],[0,-77]],[[17697,23788],[61,-167]],[[15717,23260],[-58,65]],[[17418,23715],[-11,-83]],[[15371,23142],[-149,271]],[[15595,23189],[64,136]],[[15864,23256],[-72,-156]],[[16511,23427],[0,0]],[[16511,23427],[-172,-59]],[[16511,23427],[16,-30]],[[15639,23182],[13,-33]],[[16519,23420],[278,223]],[[17346,23635],[-60,-36]],[[15513,23141],[-155,-118],[-272,267]],[[15454,23117],[4,13]],[[17407,23632],[-61,3]],[[17286,23599],[1,-28]],[[16527,23397],[-48,-550]],[[15881,23200],[-65,-129]],[[17287,23571],[72,-216]],[[16969,23470],[-442,-73]],[[15709,23115],[80,-9]],[[15318,23005],[-254,187]],[[17486,23586],[-79,46]],[[17667,23629],[80,-84]],[[15789,23106],[-72,154]],[[15792,23100],[-3,6]],[[17758,23621],[-11,-76]],[[16993,23415],[-189,-324]],[[15577,23023],[-7,32]],[[15577,23023],[-106,-256]],[[15577,23022],[0,1]],[[17139,23431],[220,-76]],[[15816,23071],[-24,29]],[[17747,23545],[-71,-321]],[[14899,22767],[-391,29],[-207,-170],[106,-446]],[[18807,23797],[75,-276]],[[14995,22784],[-96,-17]],[[15751,22974],[-174,49]],[[15006,22749],[0,0]],[[15006,22749],[-11,35]],[[15006,22749],[-4,-11]],[[18754,23743],[128,-222]],[[16177,23062],[-128,-183]],[[15779,22950],[37,121]],[[15651,22905],[-26,-162]],[[16329,23083],[2,0]],[[9036,20920],[70,344],[-238,483],[441,454]],[[17359,23355],[39,-62]],[[17149,23247],[249,46]],[[16654,23099],[157,-36]],[[1859,18334],[18,12]],[[15840,22877],[48,-161]],[[15840,22877],[18,96]],[[15415,22759],[-185,120],[-235,-95]],[[17398,23293],[278,-69]],[[15471,22767],[-56,-8]],[[16781,23114],[23,-23]],[[8896,20773],[81,-79]],[[2196,18430],[-237,-271]],[[1790,18264],[-79,-155]],[[16804,23091],[7,-28]],[[16049,22879],[-91,-47]],[[16293,22937],[129,-3]],[[15436,22703],[-21,56]],[[8998,20767],[38,153]],[[15180,22620],[-17,-49]],[[15625,22743],[-154,24]],[[16811,23063],[166,-417]],[[15958,22832],[-4,-38]],[[17051,23097],[38,-187]],[[15650,22719],[-25,24]],[[8992,20725],[6,42]],[[16435,22931],[13,-61]],[[16106,22840],[-57,39]],[[17105,23106],[3,-240]],[[15954,22794],[-66,-78]],[[15163,22571],[-76,51]],[[19021,23586],[31,-521]],[[8977,20694],[15,31]],[[15195,22560],[-32,11]],[[17676,23224],[10,-446]],[[17013,23047],[76,-137]],[[18882,23521],[32,-193]],[[18754,23480],[160,-152]],[[1711,18109],[-99,-13]],[[2258,18314],[-16,-33]],[[2261,18311],[-19,-30]],[[15888,22716],[-101,-68]],[[9512,20825],[132,678],[129,263]],[[16460,22863],[19,-16]],[[16086,22760],[-132,34]],[[16086,22760],[15,30]],[[2242,18281],[-56,-113]],[[16479,22847],[-26,-226]],[[8952,20615],[25,79]],[[1959,18159],[-62,-30]],[[1959,18159],[-4,-22]],[[15787,22648],[-137,71]],[[1897,18129],[-186,-20]],[[1656,18037],[-44,59]],[[15478,22554],[-42,149]],[[1955,18137],[-58,-8]],[[16264,22752],[157,-117]],[[15311,22474],[117,-162]],[[14874,22335],[103,-109]],[[16192,22692],[219,-74]],[[2163,18159],[-208,-22]],[[14757,22286],[117,-55]],[[17089,22910],[19,-44]],[[16021,22619],[39,-214],[238,-92]],[[15451,22452],[27,102]],[[14770,22256],[104,-25]],[[15581,22481],[-145,222]],[[14854,22275],[-20,68]],[[17108,22866],[0,0]],[[17108,22866],[95,-165]],[[18914,23328],[138,-263]],[[14874,22231],[31,-30]],[[14644,22165],[-237,15]],[[9053,20470],[-61,255]],[[9446,20579],[66,246]],[[16421,22635],[32,-14]],[[14977,22226],[27,5]],[[16411,22618],[10,17]],[[15004,22231],[-105,536]],[[14905,22201],[-94,-27]],[[14905,22201],[72,25]],[[14905,22201],[0,0]],[[9191,20474],[-193,293]],[[16453,22621],[244,-86]],[[15924,22473],[-40,-52]],[[15924,22473],[33,74]],[[9055,20418],[-2,52]],[[15489,22344],[-61,-32]],[[15489,22344],[39,-66]],[[15428,22312],[-295,174],[-127,263]],[[14773,22125],[-129,40]],[[14755,22117],[-111,48]],[[15310,22266],[65,-215]],[[9181,20424],[-128,46]],[[15884,22421],[-97,227]],[[14791,22109],[144,-44]],[[15984,22431],[-93,-60]],[[9461,20496],[30,-7]],[[9085,20370],[-30,48]],[[16314,22514],[97,104]],[[16314,22514],[0,0]],[[16312,22513],[2,1]],[[9491,20489],[38,-7]],[[15054,22152],[-50,79]],[[15134,22173],[-80,-21]],[[8966,20309],[-14,306]],[[17418,22781],[29,-691]],[[15891,22371],[-7,50]],[[9529,20482],[-17,343]],[[17294,22746],[235,31]],[[9261,20394],[-14,-280]],[[15520,22264],[-42,290]],[[16977,22646],[226,55]],[[17203,22701],[91,45]],[[2290,17937],[42,-33]],[[17529,22777],[0,0]],[[17529,22777],[1,-8]],[[17529,22777],[157,1]],[[2287,17931],[0,0]],[[2287,17931],[-124,228]],[[2287,17931],[58,-55]],[[9157,20327],[-72,43]],[[2250,17915],[-4,71]],[[9111,20311],[-26,59]],[[14935,22065],[65,-54]],[[15211,22141],[-48,-78]],[[15211,22141],[50,114]],[[9317,20371],[-281,549]],[[15519,22219],[-10,-207]],[[16697,22535],[170,22]],[[8966,20242],[-14,373]],[[9432,20385],[59,104]],[[17686,22778],[439,-844],[9,-220]],[[9038,20251],[17,167]],[[14831,22003],[104,62]],[[16867,22557],[110,89]],[[2280,17878],[7,53]],[[2284,17873],[-4,5]],[[2284,17873],[-4,5]],[[2285,17872],[-1,1]],[[9181,20267],[50,-268]],[[16640,22469],[57,66]],[[15163,22063],[-103,-21]],[[15071,22031],[-17,121]],[[2289,17848],[10,-29]],[[14848,21964],[-37,-220]],[[9383,20314],[157,48]],[[15433,22122],[-58,-71]],[[9540,20362],[-11,120]],[[14891,21964],[77,-23]],[[2323,17845],[-23,7]],[[17300,22617],[-6,129]],[[19052,23065],[11,-309],[-232,-573]],[[9323,20273],[-76,-159]],[[9538,20323],[2,39]],[[16604,22403],[36,66]],[[15263,22037],[-100,26]],[[15968,22229],[-4,-255]],[[16298,22313],[16,201]],[[15050,21967],[21,64]],[[15098,21977],[-27,54]],[[8873,20092],[-26,-594]],[[15375,22051],[40,-104]],[[9364,20243],[-132,-249]],[[14878,21905],[94,35]],[[9404,20245],[134,78]],[[2345,17776],[-35,57]],[[15890,22161],[1,210]],[[14617,21803],[-210,377]],[[9543,20271],[-5,52]],[[9570,20275],[-27,-4]],[[15572,22064],[-63,-52]],[[16249,22249],[49,64]],[[19699,23141],[25,403]],[[19773,23143],[-74,-2]],[[15198,21936],[-100,41]],[[16648,22329],[-44,74]],[[15509,22012],[26,-118]],[[16181,22190],[68,59]],[[15282,21938],[-84,-2]],[[14983,21853],[3,5]],[[14973,21847],[10,6]],[[15322,21940],[93,7]],[[15656,22032],[-90,-179]],[[9247,20114],[-16,-115]],[[9466,20183],[65,10]],[[9531,20193],[12,78]],[[15279,21911],[-73,-52]],[[15234,21897],[-36,39]],[[15415,21947],[58,-33]],[[15165,21872],[-67,105]],[[16390,22205],[-104,-149]],[[16183,22141],[-59,-160]],[[15308,21893],[119,-277]],[[15206,21859],[-41,13]],[[15792,22019],[172,-45]],[[14811,21744],[-25,-39]],[[19677,23024],[22,117]],[[14932,21766],[51,87]],[[15473,21914],[62,-20]],[[14786,21705],[-169,98]],[[16435,22159],[133,5]],[[16796,22250],[-156,219]],[[15777,21970],[64,-313]],[[15535,21894],[31,-41]],[[15276,21821],[49,-222]],[[15720,21940],[-70,779]],[[9231,19999],[1,-5]],[[14949,21721],[69,94]],[[9232,19994],[27,-173]],[[16568,22164],[36,239]],[[16708,22201],[134,-67]],[[15246,21795],[-40,64]],[[16928,22252],[-61,305]],[[15696,21905],[83,-255]],[[17153,22299],[-49,-210]],[[19742,22957],[-65,67]],[[15964,21974],[102,-125]],[[14912,21681],[-101,63]],[[19651,22931],[26,93]],[[16414,22094],[18,-143]],[[16286,22056],[-37,193]],[[19750,22947],[-8,10]],[[15566,21853],[73,-85]],[[9537,20050],[-6,143]],[[15478,21824],[-5,90]],[[19774,22946],[-24,1]],[[19542,22886],[62,-54]],[[15649,21867],[-10,-99]],[[16124,21981],[-58,-132]],[[15255,21740],[-197,236]],[[15227,21728],[-62,144]],[[13992,21377],[0,0]],[[16505,22074],[63,90]],[[15753,21858],[45,-201]],[[14855,21607],[-69,98]],[[19501,22833],[87,-10]],[[3859,18055],[66,-511]],[[15500,21780],[156,-97]],[[15391,21747],[-55,44]],[[19800,22896],[-50,51]],[[19800,22896],[34,-21]],[[13993,21346],[-1,31]],[[19801,22894],[-1,2]],[[16842,22134],[86,118]],[[16473,22029],[-41,-78]],[[14988,21620],[64,161]],[[17889,22399],[-273,-199]],[[17206,22220],[94,397]],[[16956,22153],[-28,99]],[[19604,22832],[7,0]],[[14950,21603],[-95,4]],[[19611,22832],[40,99]],[[19753,22866],[49,-9]],[[19754,22865],[-12,92]],[[19588,22823],[16,9]],[[14872,21570],[-17,37]],[[9556,19963],[-297,-142]],[[19520,22790],[27,-5]],[[19462,22774],[-221,-278]],[[17211,22194],[-69,-127]],[[15639,21768],[28,-89]],[[19728,22831],[-77,100]],[[19547,22785],[41,38]],[[19547,22785],[-51,-23]],[[16810,22078],[32,56]],[[16536,22003],[215,23]],[[15292,21662],[-5,-53]],[[15099,21604],[72,-6]],[[15921,21825],[142,-29]],[[15041,21574],[125,16]],[[4071,18050],[-102,-467]],[[19602,22771],[9,61]],[[19602,22771],[-9,-68]],[[16432,21951],[-146,105]],[[16066,21849],[4,-42]],[[9259,19821],[-25,-85]],[[14122,21297],[-130,80]],[[16751,22026],[59,52]],[[15166,21590],[5,8]],[[14066,21270],[-73,76]],[[15287,21609],[-50,-36]],[[14022,21240],[-29,106]],[[9537,19872],[-140,-117]],[[17104,22089],[-148,64]],[[15174,21560],[-8,30]],[[16070,21807],[-7,-11]],[[15325,21599],[-22,-12]],[[15237,21573],[-66,25]],[[19562,22709],[-29,9]],[[14909,21478],[-37,92]],[[19562,22708],[31,-5]],[[15303,21587],[-16,22]],[[16063,21796],[-89,-185]],[[15656,21683],[0,0]],[[15656,21683],[11,-4]],[[15427,21616],[53,-5]],[[15667,21679],[0,0]],[[15667,21679],[75,-51]],[[15051,21506],[-179,64]],[[19593,22703],[-1,-11]],[[17142,22067],[-38,22]],[[17252,22094],[-26,-131]],[[19592,22692],[-27,-76]],[[9234,19736],[-189,-238],[-198,0]],[[14031,21200],[-21,-9]],[[2957,17555],[23,-5]],[[14010,21191],[6,-69]],[[19566,22673],[26,19]],[[16616,21905],[135,121]],[[14120,21204],[-89,-4]],[[14074,21190],[-43,10]],[[15062,21470],[112,90]],[[16349,21825],[0,0]],[[16349,21825],[-225,156]],[[16349,21825],[69,-29]],[[15351,21547],[-26,52]],[[14791,21389],[-174,414]],[[9397,19755],[-163,-19]],[[16591,21877],[-242,-52]],[[15247,21505],[-10,68]],[[15798,21657],[43,0]],[[15779,21650],[19,7]],[[3041,17544],[50,-21]],[[14099,21177],[-89,14]],[[14816,21381],[-25,8]],[[17185,22027],[-43,40]],[[17299,22057],[116,183]],[[17447,22090],[0,0]],[[17447,22090],[-12,-113]],[[15841,21657],[133,-46]],[[15742,21628],[11,2]],[[15753,21630],[26,20]],[[9585,19789],[-188,-34]],[[19651,22643],[-49,128]],[[19651,22643],[38,-133]],[[19565,22616],[-14,-86]],[[14087,21145],[-71,-23]],[[19557,22607],[8,9]],[[19716,22644],[-31,-41]],[[3223,17577],[5,-72]],[[3091,17523],[90,9]],[[3091,17523],[90,9]],[[14120,21144],[-40,-180]],[[16312,21753],[-84,-31]],[[17342,22029],[-52,-134]],[[16228,21722],[-158,85]],[[15151,21424],[-46,-91]],[[3181,17532],[47,-27]],[[19241,22496],[-410,-313]],[[19685,22603],[-34,40]],[[8847,19498],[-665,-87],[-750,-475],[-183,-448],[154,-708]],[[15714,21563],[28,65]],[[16551,21788],[222,-329]],[[17385,22007],[18,-123]],[[15377,21462],[50,154]],[[17226,21963],[-41,64]],[[15699,21550],[54,80]],[[15171,21402],[102,-67]],[[19691,22591],[-6,12]],[[9584,19721],[-104,-644]],[[17547,22041],[-100,49]],[[15974,21611],[-60,-307]],[[19709,22582],[-18,9]],[[15346,21427],[-43,160]],[[19700,22569],[-9,22]],[[3228,17505],[1,-15]],[[14123,21076],[-107,46]],[[14037,21045],[-29,-69]],[[15691,21505],[223,-201]],[[14089,21053],[-21,-82]],[[3229,17490],[-20,16]],[[3229,17490],[20,-138]],[[15105,21333],[-289,48]],[[14108,21045],[-40,-74]],[[3839,17700],[-136,120]],[[15552,21435],[104,248]],[[15552,21435],[0,0]],[[17283,21900],[-57,63]],[[16871,21788],[-61,290]],[[14934,21254],[-118,127]],[[14934,21254],[76,6]],[[17290,21895],[-7,5]],[[19085,22357],[154,-119]],[[16907,21784],[49,369]],[[14008,20976],[-139,92]],[[17466,21929],[487,-229]],[[15273,21335],[-99,225]],[[15366,21360],[171,99]],[[17018,21807],[167,220]],[[14009,20972],[-1,4]],[[3078,17373],[10,-13]],[[16542,21675],[-230,78]],[[17470,21913],[-67,-29]],[[14068,20971],[-5,-13]],[[3084,17359],[4,1]],[[3088,17360],[1,0]],[[3089,17360],[158,-10]],[[3087,17358],[0,0]],[[3087,17358],[2,2]],[[3086,17356],[1,2]],[[17403,21884],[-45,-56]],[[17326,21863],[-36,32]],[[14080,20964],[-17,-6]],[[14063,20958],[-54,14]],[[15410,21336],[126,38]],[[17027,21776],[63,-290],[-198,21]],[[15657,21404],[-105,31]],[[16300,21575],[59,-223]],[[15734,21420],[-172,-229]],[[17164,21795],[119,105]],[[15549,21353],[3,82]],[[16531,21620],[-219,133]],[[17358,21828],[-32,35]],[[16261,21529],[-33,193]],[[14134,20932],[-54,32]],[[15229,21242],[-124,91]],[[3239,17357],[8,-7]],[[15309,21260],[-36,75]],[[15031,21179],[44,63]],[[15031,21179],[26,-64]],[[3249,17352],[16,-26]],[[3247,17350],[2,2]],[[14055,20897],[-46,75]],[[15318,21255],[-9,5]],[[18831,22183],[-231,-522]],[[17235,21763],[91,100]],[[16856,21655],[25,-155]],[[15154,21187],[-67,-115]],[[16253,21488],[100,-135]],[[3265,17326],[97,-240]],[[3071,17248],[112,19]],[[14118,20875],[-70,-171]],[[3236,17304],[2,-1]],[[17233,21735],[50,-277]],[[3238,17303],[27,23]],[[16550,21546],[223,-87]],[[3183,17267],[53,37]],[[19401,22273],[218,7]],[[15117,21139],[-1,42]],[[17295,21729],[63,99]],[[15181,21153],[1,-162]],[[15433,21222],[184,-121]],[[15057,21115],[0,0]],[[15057,21115],[-63,-23]],[[15057,21115],[30,-43]],[[3141,17220],[24,9]],[[3165,17229],[18,38]],[[3164,17228],[1,1]],[[16237,21412],[116,-59]],[[16927,21595],[-51,98]],[[16927,21595],[57,226]],[[19619,22280],[0,0]],[[19619,22280],[-136,-90]],[[19619,22280],[163,-432]],[[3168,17210],[-4,18]],[[16749,21537],[-106,289]],[[3169,17209],[-1,1]],[[3168,17208],[0,2]],[[16121,21362],[241,-123]],[[15914,21304],[-14,-127]],[[15087,21072],[45,-115]],[[14929,21027],[-138,362]],[[13995,20750],[-143,39]],[[3155,17182],[9,46]],[[3214,17203],[24,100]],[[16078,21332],[34,-376]],[[19234,22140],[-110,-38]],[[19124,22102],[-383,-183]],[[17183,21595],[100,-137]],[[16892,21507],[35,88]],[[16892,21507],[0,0]],[[14946,20972],[-17,55]],[[16881,21500],[0,0]],[[16881,21500],[11,7]],[[15011,20985],[-65,-13]],[[16353,21353],[6,-1]],[[16359,21352],[13,-40]],[[14048,20704],[-53,46]],[[16773,21459],[11,-17]],[[3172,17122],[64,182]],[[3243,17145],[119,-59]],[[15370,21060],[-61,200]],[[16784,21442],[12,-12]],[[14966,20930],[-20,42]],[[15182,20991],[-44,-106]],[[19315,22083],[-74,413]],[[16796,21430],[85,70]],[[14826,20887],[103,140]],[[16372,21312],[-10,-73]],[[15669,21119],[5,-13]],[[15617,21101],[283,76]],[[17549,21620],[235,5]],[[15900,21177],[117,-206]],[[15132,20957],[-51,4]],[[15132,20957],[6,-72]],[[15674,21106],[6,-4]],[[15674,21106],[3,-11]],[[18741,21919],[0,0]],[[18741,21919],[-141,-258]],[[19380,22066],[62,-282]],[[15212,20961],[-30,30]],[[17953,21700],[181,14]],[[16177,21225],[192,-44]],[[14981,20892],[33,-118]],[[15003,20897],[139,-31]],[[16941,21427],[73,-209]],[[18744,21890],[-3,29]],[[18744,21890],[-7,-19]],[[18749,21887],[-5,3]],[[16934,21413],[-69,-106]],[[17161,21469],[51,-27]],[[14918,20852],[96,-78]],[[17420,21532],[-13,-42]],[[17784,21625],[169,75]],[[18134,21714],[60,-149]],[[3362,17086],[7,-21]],[[16645,21317],[-273,-5]],[[16693,21329],[91,113]],[[16362,21239],[7,-58]],[[15138,20885],[4,-19]],[[16680,21309],[131,61]],[[15287,20925],[-141,-106]],[[3369,17065],[-1,-2]],[[3368,17063],[217,-291]],[[17212,21442],[87,-30]],[[17211,21441],[1,1]],[[17283,21458],[16,-46]],[[17407,21490],[-92,-96]],[[15142,20866],[4,-47]],[[15773,21034],[180,-99]],[[3259,16997],[110,68]],[[9255,19066],[22,-217]],[[14907,20777],[131,-55]],[[16369,21181],[64,-219]],[[16205,21129],[10,-233]],[[16865,21307],[-69,121]],[[16865,21307],[0,0]],[[3603,17097],[109,2]],[[17299,21412],[16,-18]],[[15146,20819],[10,-117]],[[15014,20774],[24,-52]],[[17315,21394],[17,-34]],[[17596,21468],[188,157]],[[15589,20924],[28,177]],[[17205,21360],[127,0]],[[14918,20729],[129,-68]],[[9480,19077],[-203,-228]],[[4055,17210],[11,-11]],[[16510,21152],[4,-178]],[[14154,20487],[-106,217]],[[19641,21955],[-148,50]],[[19641,21955],[141,-107]],[[15325,20814],[-169,-112]],[[17332,21360],[10,-60]],[[15168,20768],[91,35]],[[17564,21412],[-157,78]],[[15038,20722],[71,-82]],[[19163,21814],[-414,73]],[[18194,21565],[282,-243]],[[16952,21233],[-87,74]],[[18600,21661],[-124,-339]],[[17608,21401],[45,-260]],[[16604,21133],[110,-342]],[[16017,20971],[95,-15]],[[17191,21277],[-32,-155]],[[15741,20884],[116,-236]],[[18607,21644],[0,0]],[[18607,21644],[-107,-209]],[[17227,21284],[69,-113]],[[19349,21827],[93,-43]],[[15953,20935],[30,-11]],[[17342,21300],[106,82]],[[17342,21300],[-18,-67]],[[17013,21211],[147,157]],[[17013,21211],[-61,22]],[[15156,20702],[-9,-117]],[[15983,20924],[34,47]],[[15983,20923],[0,0]],[[15983,20923],[0,1]],[[15983,20923],[-22,-158]],[[15047,20661],[62,-21]],[[16112,20956],[74,-47]],[[14958,20627],[89,34]],[[15801,20860],[152,75]],[[15490,20759],[64,-21]],[[15490,20759],[10,-395]],[[16872,21136],[80,97]],[[18737,21622],[-130,22]],[[18737,21622],[0,0]],[[18737,21622],[0,0]],[[3257,16794],[111,269]],[[15109,20640],[38,-55]],[[19239,21737],[-115,365]],[[19442,21784],[226,-320]],[[14199,20374],[-204,376]],[[17324,21233],[-28,-62]],[[17324,21233],[129,-92]],[[15820,20826],[163,97]],[[15459,20726],[-122,119]],[[19782,21848],[49,-213]],[[9277,18849],[-22,-28]],[[15554,20738],[146,170]],[[15554,20738],[100,-26]],[[16186,20909],[29,-13]],[[16186,20909],[-89,-99]],[[16186,20909],[0,0]],[[15663,20760],[111,-81]],[[14933,20551],[107,-67]],[[16433,20962],[-170,-179]],[[9255,18821],[-248,-258],[-85,-318]],[[16623,21007],[-109,-33]],[[16215,20896],[48,-113]],[[16514,20974],[-81,-12]],[[17296,21171],[-137,-49]],[[15147,20585],[18,-51]],[[15232,20606],[-40,-65]],[[14877,20505],[70,-189]],[[19136,21641],[-399,230]],[[17159,21122],[-80,-10]],[[19243,21658],[334,-348]],[[15472,20656],[-99,93]],[[18879,21546],[-142,76]],[[19193,21616],[-6,-379]],[[15943,20756],[182,-158]],[[16606,20932],[108,-141]],[[15165,20534],[-4,-79]],[[15192,20541],[-27,-7]],[[15230,20548],[-38,-7]],[[16475,20890],[52,-131]],[[17461,21146],[127,-105]],[[3585,16772],[112,244]],[[18906,21519],[-141,-55]],[[15040,20484],[0,0]],[[15040,20484],[121,-29]],[[15040,20484],[-13,-165]],[[16883,20984],[181,-31]],[[15774,20679],[83,-31]],[[17083,21028],[0,0]],[[17083,21028],[-70,183]],[[18938,21508],[107,-95]],[[18765,21464],[-158,180]],[[19161,21563],[-20,-204]],[[15244,20519],[89,-52]],[[16895,20965],[161,-28]],[[14947,20423],[0,-107]],[[16263,20783],[7,-18]],[[18081,21263],[113,302]],[[16460,20831],[67,-72]],[[19861,21710],[-30,-75]],[[16887,20944],[104,-111]],[[17653,21141],[-44,-61]],[[16270,20765],[39,-124]],[[15638,20589],[22,31]],[[15336,20504],[-106,44]],[[15161,20455],[87,-510]],[[15857,20648],[268,-50]],[[15602,20570],[50,113]],[[17067,20958],[0,0]],[[17067,20958],[16,70]],[[18476,21322],[143,-183],[443,-1605]],[[16616,20820],[-19,-116]],[[17609,21080],[-67,64]],[[17609,21080],[-21,-39]],[[17609,21080],[0,0]],[[19831,21635],[-150,-193]],[[15288,20426],[25,-34]],[[15288,20426],[-58,122]],[[3254,16512],[280,48],[51,212]],[[16527,20759],[38,-28]],[[19068,21423],[73,-64]],[[17588,21041],[5,-59]],[[19045,21413],[23,10]],[[19045,21413],[-114,6]],[[9523,18673],[-43,404]],[[17808,21089],[-155,52]],[[14953,20313],[-6,3]],[[15466,20454],[-110,9]],[[16714,20791],[2,-84]],[[18925,21368],[-160,96]],[[15764,20517],[10,162]],[[16565,20731],[32,-27]],[[15177,20347],[-4,-11]],[[15177,20347],[-62,-190]],[[9547,18641],[82,-6]],[[9642,18669],[-13,-34]],[[16125,20598],[60,4]],[[15753,20494],[-152,-115]],[[9388,18581],[-58,-412],[-372,-829]],[[16309,20641],[0,0]],[[16309,20641],[85,45]],[[16309,20641],[-14,-20]],[[17593,20982],[31,-72]],[[16185,20602],[110,19]],[[15784,20491],[104,-119]],[[18951,21328],[117,95]],[[18048,21095],[33,168]],[[15205,20326],[-28,21]],[[16597,20704],[119,3]],[[16295,20621],[145,-140]],[[4213,16784],[66,-126]],[[9629,18635],[22,-93]],[[9416,18564],[-161,257]],[[19141,21359],[46,-122]],[[17762,21005],[-138,-95]],[[14048,19970],[49,-293]],[[9575,18602],[76,-60]],[[17314,20872],[279,110]],[[15745,20446],[-144,-67]],[[15635,20415],[31,50]],[[16716,20707],[346,-281]],[[9474,18554],[194,-63]],[[19668,21464],[13,-22]],[[19668,21464],[-30,-35]],[[15500,20364],[0,0]],[[15500,20364],[-89,11]],[[15500,20364],[101,-229]],[[17809,20985],[272,278]],[[16876,20733],[91,0]],[[15601,20379],[-2,-216]],[[19681,21442],[-94,-140]],[[18961,21261],[174,-93]],[[19638,21429],[-311,240]],[[17624,20910],[19,-95]],[[16570,20620],[-5,111]],[[12529,19466],[-243,-85],[-94,-609],[-154,-397]],[[18932,21227],[183,-99]],[[14988,20168],[-35,145]],[[3378,16382],[613,32],[288,244]],[[9217,18404],[-133,-114]],[[9651,18542],[17,-51]],[[15651,20338],[-52,-175]],[[17269,20764],[-186,264]],[[7403,17780],[-112,-205]],[[15014,20141],[-61,172]],[[18097,20970],[-49,125]],[[15888,20372],[0,0]],[[15888,20372],[-98,54]],[[15888,20372],[105,9]],[[17228,20731],[-161,227]],[[19187,21237],[15,-43]],[[5935,17249],[0,-12]],[[5935,17249],[0,-12]],[[4279,16658],[319,-121]],[[17264,20728],[179,-74]],[[15993,20381],[192,221]],[[9668,18491],[130,-182]],[[5935,17237],[73,-204],[-132,-219],[50,-891],[157,-123],[-125,-324],[134,-589],[153,-333],[284,-52],[-32,-359],[-365,-674]],[[9294,18368],[-210,-78]],[[8922,18245],[-319,-508],[-420,-334]],[[19577,21310],[10,-8]],[[17643,20815],[9,-12]],[[15652,20275],[12,28]],[[15652,20275],[11,-3]],[[15651,20273],[1,2]],[[9084,18290],[-162,-45]],[[10077,18608],[-105,-79]],[[19587,21302],[0,0]],[[19587,21302],[-158,-272],[2,-793]],[[16440,20481],[130,139]],[[17652,20803],[0,0]],[[17652,20803],[-66,-12]],[[17652,20803],[40,-110]],[[15017,20085],[135,-115]],[[14079,19811],[18,-134]],[[15756,20284],[-49,-96]],[[19202,21194],[214,-325]],[[19024,21148],[66,-43]],[[15815,20294],[-103,-107]],[[19135,21168],[67,26]],[[17924,20855],[124,240]],[[19000,21128],[74,-47]],[[17246,20673],[-222,-157]],[[18126,20892],[-29,78]],[[9972,18529],[-48,-44]],[[15861,20283],[128,13]],[[16205,20375],[88,-103]],[[17391,20682],[-78,77]],[[19115,21128],[20,40]],[[17950,20821],[147,149]],[[15989,20296],[4,85]],[[9924,18485],[-86,-110]],[[13257,19509],[74,-32]],[[19090,21105],[25,23]],[[17940,20804],[-297,11]],[[16036,20294],[-47,2]],[[15241,20072],[-105,53]],[[15599,20163],[6,-42]],[[19074,21081],[16,24]],[[15707,20188],[-76,-172]],[[15712,20187],[0,0]],[[15712,20187],[-5,1]],[[15712,20187],[23,-18]],[[17443,20654],[110,-46]],[[15755,20195],[20,59]],[[16080,20281],[89,-138]],[[16369,20357],[71,124]],[[13185,19449],[113,-9]],[[7291,17575],[-4,-15]],[[7291,17575],[-4,-15]],[[15397,20081],[-113,-263]],[[15601,20135],[-8,1]],[[15601,20135],[4,-14]],[[15601,20135],[0,0]],[[15860,20206],[205,-94]],[[17024,20516],[0,0]],[[17024,20516],[43,442]],[[7287,17560],[-148,-201],[-612,75],[-114,114],[-478,-299]],[[17692,20693],[-44,-125]],[[13331,19477],[-18,51]],[[13331,19477],[41,-31]],[[4623,16619],[-25,-82]],[[15605,20121],[12,-70]],[[18901,20992],[173,89]],[[18187,20808],[-61,84]],[[13181,19414],[95,-4]],[[14097,19677],[-180,-207]],[[15859,20173],[-55,-176]],[[9838,18375],[-40,-66]],[[13298,19440],[55,-50]],[[17017,20486],[7,30]],[[17281,20555],[149,-256]],[[15055,19945],[97,25]],[[10269,18510],[-9,-4]],[[10269,18510],[33,-57]],[[10269,18510],[-40,275],[249,285],[22,-492]],[[10260,18506],[-37,-207]],[[10260,18506],[-126,-228]],[[15152,19970],[96,-25]],[[15040,19936],[220,-248]],[[10003,18417],[-79,68]],[[13372,19446],[-23,75]],[[13372,19446],[46,-79]],[[16293,20272],[76,85]],[[17553,20608],[0,0]],[[17553,20608],[-57,-63]],[[17553,20608],[90,-45]],[[13276,19410],[22,30]],[[10078,18425],[-106,104]],[[15912,20152],[153,-40]],[[13223,19379],[53,31]],[[17335,20529],[108,125]],[[9865,18338],[-27,37]],[[4598,16537],[68,-121]],[[9798,18309],[-190,-237]],[[15617,20051],[0,0]],[[15617,20051],[14,-35]],[[15617,20051],[-93,-67]],[[15248,19945],[25,-82]],[[19913,21172],[-232,270]],[[13353,19390],[2,-5]],[[10302,18453],[69,-36]],[[10302,18453],[-3,-82]],[[18023,20681],[-331,12]],[[13355,19385],[51,-30]],[[15689,20052],[45,50]],[[15689,20052],[90,37]],[[17062,20426],[179,-208]],[[18060,20681],[26,-118]],[[17648,20568],[-5,-5]],[[13258,19340],[95,50]],[[17643,20563],[-213,-264]],[[15631,20016],[42,-181]],[[15633,20009],[56,43]],[[13259,19322],[96,63]],[[16169,20143],[124,129]],[[16065,20112],[84,8]],[[15019,19811],[31,-188]],[[18258,20687],[-71,121]],[[10043,18312],[-178,26]],[[17955,20606],[-134,-143]],[[16642,20257],[-72,363]],[[16149,20120],[20,23]],[[15273,19863],[-58,5]],[[15273,19863],[11,-45]],[[15273,19863],[0,0]],[[18136,20633],[-10,259]],[[10104,18294],[15,-231]],[[12893,19151],[-17,54]],[[12893,19151],[220,-22],[190,-281]],[[17976,20566],[-7,-121]],[[15652,19939],[44,70]],[[14903,19727],[147,-104]],[[15785,19972],[-53,-224]],[[17945,20550],[24,-105]],[[16462,20147],[-93,210]],[[10034,18245],[-169,93]],[[15284,19818],[-24,-130]],[[4666,16416],[144,-550],[-105,-200],[66,-361],[333,-517],[354,-235],[167,-408],[-98,-85],[21,-430]],[[15319,19816],[2,183]],[[18086,20563],[-12,-21]],[[17762,20477],[0,0]],[[17762,20477],[-114,91]],[[17762,20477],[1,-41]],[[15931,19974],[51,-89]],[[18074,20542],[0,0]],[[18074,20542],[-78,69]],[[18074,20542],[-4,-87]],[[12640,19016],[-136,-154],[-10,-377]],[[12640,19016],[-259,-413],[19,-272]],[[9608,18072],[-176,-430]],[[10246,18275],[-25,-184]],[[15786,19918],[112,52]],[[17821,20463],[-59,14]],[[10068,18209],[-276,-187]],[[18175,20553],[-89,10]],[[15665,19877],[64,36]],[[16242,20030],[-93,90]],[[16264,20034],[302,64]],[[12662,19000],[-22,16]],[[12662,19000],[-152,-281],[137,-177]],[[16566,20098],[76,159]],[[18236,20540],[-49,268]],[[15294,19743],[134,29]],[[10323,18255],[218,-110],[156,-307]],[[16270,20007],[266,-56]],[[15673,19835],[0,0]],[[15673,19835],[-54,-31]],[[15673,19835],[22,-31]],[[17969,20445],[-34,-181]],[[17430,20299],[-32,-41]],[[16174,19951],[-131,-98]],[[18070,20455],[-28,-393]],[[18136,20469],[-66,-14]],[[15312,19704],[148,31]],[[15312,19704],[146,-99]],[[10062,18128],[-104,-128]],[[15260,19688],[-18,-135]],[[16884,20131],[178,295]],[[15695,19804],[0,0]],[[15695,19804],[-70,-67]],[[15695,19804],[37,-56]],[[15998,19888],[45,-35]],[[15050,19623],[177,-55]],[[17241,20218],[20,-193]],[[17398,20258],[-157,-40]],[[9792,18022],[-184,50]],[[16562,20019],[4,79]],[[18131,20429],[40,97]],[[15267,19654],[45,50]],[[18123,20416],[-66,0]],[[16043,19853],[1,-131]],[[16173,19884],[303,-315]],[[16551,19974],[11,45]],[[15732,19748],[0,-217]],[[12818,18904],[-156,96]],[[12818,18904],[-173,-556]],[[10119,18063],[-161,-63]],[[12828,18900],[-10,4]],[[12828,18900],[3,-175]],[[10221,18091],[-60,-35]],[[10221,18091],[68,-13]],[[16536,19951],[15,23]],[[16170,19851],[-30,-168]],[[9958,18000],[-10,-14]],[[10161,18056],[-42,7]],[[16894,20034],[367,-9]],[[9948,17986],[-156,36]],[[8183,17403],[-142,-61],[-130,338],[-508,100]],[[15227,19568],[0,0]],[[15227,19568],[15,-15]],[[15227,19568],[-57,-61]],[[15242,19553],[45,-166]],[[17747,20219],[-159,-148]],[[17935,20264],[-114,199]],[[15128,19500],[-141,67]],[[15128,19500],[-118,-29]],[[15170,19507],[-42,-7]],[[15170,19507],[-178,-100]],[[16704,19929],[-142,90]],[[10298,18036],[-137,20]],[[16731,19921],[70,-299]],[[16044,19722],[-23,-60]],[[17798,20183],[137,81]],[[4018,15848],[240,496],[408,72]],[[16678,19870],[-127,104]],[[17261,20025],[-6,-52]],[[17526,20087],[0,0]],[[17526,20087],[-128,171]],[[17526,20087],[-25,-46]],[[17534,20078],[-8,9]],[[16024,19665],[-84,105]],[[16021,19662],[-69,-57]],[[16853,19879],[-211,378]],[[16140,19683],[-96,39]],[[17556,20064],[-22,14]],[[10235,17931],[-287,55]],[[17588,20071],[-32,-7]],[[16144,19680],[-4,3]],[[12831,18725],[34,-51]],[[12831,18725],[-100,-243]],[[15661,19539],[0,0]],[[15661,19539],[17,-51]],[[15661,19539],[-142,4],[-177,-326]],[[17255,19973],[9,-75]],[[15874,19590],[-90,-76]],[[18133,20194],[91,333]],[[18133,20194],[109,253]],[[13303,18848],[125,80],[-249,442]],[[13303,18848],[440,-521]],[[15952,19605],[-78,-15]],[[9432,17642],[-295,-323],[-179,21]],[[15732,19531],[-71,8]],[[16873,19831],[-72,-209]],[[17009,19868],[246,105]],[[15749,19521],[-17,10]],[[10280,17889],[-44,-393]],[[15287,19387],[0,0]],[[15287,19387],[40,77]],[[15287,19387],[29,-117]],[[8880,17429],[60,-95]],[[3738,15634],[0,0]],[[3738,15634],[210,76]],[[3948,15710],[70,138]],[[15280,19375],[74,68]],[[12865,18674],[103,-121]],[[12865,18674],[-47,-178]],[[15194,19350],[38,-107]],[[15784,19514],[-34,7]],[[18345,20191],[-142,-324]],[[16090,19587],[-69,75]],[[13056,18718],[-228,182]],[[13056,18718],[57,-27]],[[16248,19625],[-104,55]],[[17264,19898],[0,0]],[[17264,19898],[-45,-40]],[[17264,19898],[47,-197]],[[10144,17811],[21,-143]],[[9507,17605],[-41,-14]],[[17669,20002],[77,69]],[[9466,17591],[-34,51]],[[10172,17813],[-7,-145]],[[16218,19604],[-74,76]],[[15294,19345],[51,-20]],[[17446,19922],[88,156]],[[12038,18375],[-141,-187]],[[12038,18375],[206,-364],[6,-311]],[[16583,19685],[-47,266]],[[18142,20095],[-9,99]],[[18142,20095],[144,55]],[[16205,19576],[-91,-66]],[[13113,18691],[-220,460]],[[13113,18691],[500,-430]],[[15921,19496],[-47,94]],[[15921,19496],[-58,-37]],[[15921,19496],[0,0]],[[18573,20200],[140,-56]],[[14987,19231],[253,18]],[[18042,20062],[37,-61]],[[18042,20062],[-131,-55]],[[3636,15526],[102,108]],[[12647,18542],[-13,-8]],[[12647,18542],[22,-110]],[[12634,18534],[-56,-37]],[[12634,18534],[-1,-151]],[[12494,18485],[1,-5]],[[12494,18485],[-41,-121]],[[3591,15496],[45,30]],[[17766,19971],[25,59]],[[12495,18480],[31,-194]],[[12495,18480],[-5,-218]],[[17606,19923],[50,-40]],[[12578,18497],[-33,-60]],[[12578,18497],[6,-106]],[[3636,15501],[0,25]],[[16114,19510],[-162,95]],[[17783,19953],[33,28]],[[8940,17334],[-630,-142],[-127,211]],[[8958,17340],[-18,-6]],[[15240,19249],[76,21]],[[15316,19270],[26,-53]],[[15235,19246],[5,3]],[[10093,17699],[30,-404]],[[17788,19939],[-200,132]],[[18417,20101],[26,-415]],[[9950,17639],[-64,-108]],[[18079,20001],[50,-58]],[[16476,19569],[20,-361]],[[15970,19423],[-49,73]],[[16990,19700],[321,1]],[[15819,19377],[61,-171]],[[12968,18553],[-56,-61]],[[12968,18553],[45,-222]],[[18713,20144],[59,-15]],[[10697,17838],[168,121],[179,-133],[-384,-336],[-192,62]],[[10697,17838],[-119,-163]],[[10165,17668],[71,-172]],[[16801,19622],[285,-279]],[[15342,19217],[19,-34]],[[18613,20096],[100,48]],[[15232,19178],[28,-73]],[[18557,20071],[-23,-189]],[[10512,17757],[-126,132]],[[10512,17757],[-173,204]],[[15977,19377],[39,-43]],[[11897,18188],[100,-370]],[[11897,18188],[300,-352]],[[9863,17549],[23,-18]],[[12912,18492],[-116,-180]],[[12912,18492],[-294,-272]],[[12584,18391],[20,-77]],[[12584,18391],[-10,-102]],[[12400,18331],[-19,-72]],[[12400,18331],[78,-172]],[[18129,19943],[74,-76]],[[18133,19935],[9,160]],[[15361,19183],[198,-204]],[[9886,17531],[204,-208]],[[16069,19365],[-99,58]],[[17311,19701],[7,-17]],[[17455,19727],[0,0]],[[17455,19727],[-137,-43]],[[17455,19727],[100,-151]],[[19431,20237],[-126,-344]],[[17318,19684],[18,-234]],[[15309,19133],[0,0]],[[15309,19133],[52,50]],[[15309,19133],[50,-64]],[[17876,19829],[-88,110]],[[16223,19384],[253,185]],[[15535,19189],[7,203]],[[15535,19189],[79,10]],[[16202,19374],[-88,136]],[[12381,18259],[-71,33]],[[12381,18259],[-32,-84]],[[15614,19199],[143,-2]],[[15614,19199],[65,-63]],[[15290,19098],[40,-51]],[[16006,19297],[61,-93]],[[15528,19159],[7,30]],[[15528,19159],[60,-55]],[[16217,19342],[279,-134]],[[10578,17675],[-66,82]],[[10578,17675],[-200,-53]],[[18203,19867],[178,-265]],[[15792,19210],[-8,304]],[[14963,18977],[273,-14]],[[15514,19129],[14,30]],[[9635,17353],[-169,238]],[[15284,19059],[34,-69]],[[15954,19236],[16,187]],[[12796,18312],[-56,13]],[[12796,18312],[-15,-21]],[[17674,19676],[-118,388]],[[15889,19190],[178,14]],[[12781,18291],[-6,-9]],[[12781,18291],[2,-62]],[[15754,19150],[31,-124]],[[15275,19011],[34,122]],[[10236,17496],[-48,-118]],[[12775,18282],[-81,-18]],[[12775,18282],[-35,-56]],[[12293,18135],[130,-113]],[[18534,19882],[-91,-196]],[[13013,18331],[22,-36]],[[13013,18331],[-180,-143]],[[15831,19142],[-46,-116]],[[17915,19704],[164,297]],[[16067,19204],[67,-66]],[[15887,19146],[297,-101]],[[15236,18963],[0,0]],[[15236,18963],[39,48]],[[15236,18963],[-197,-67]],[[9792,17295],[376,-400]],[[17556,19573],[-2,-8]],[[18602,19839],[-68,43]],[[10410,17463],[-60,-99]],[[18610,19808],[-128,-285]],[[10188,17378],[-65,-83]],[[15559,18979],[-105,-77]],[[15559,18979],[27,-52]],[[15559,18979],[0,0]],[[16145,19131],[39,-86]],[[17336,19450],[69,-293]],[[15785,19026],[35,-195]],[[17857,19580],[272,363]],[[12462,18054],[0,-15]],[[11830,17861],[-52,-50]],[[10419,17419],[-69,-55]],[[19350,19959],[286,-235]],[[16496,19208],[89,-218]],[[12505,18054],[5,-13]],[[12462,18039],[48,2]],[[12423,18022],[39,17]],[[17731,19522],[57,417]],[[12510,18041],[41,-7]],[[10123,17295],[45,-400]],[[17086,19343],[250,107]],[[11778,17811],[-16,-14]],[[10350,17364],[-162,14]],[[15586,18927],[0,0]],[[15586,18927],[-33,-53]],[[15586,18927],[94,-171]],[[12545,18041],[6,-7]],[[11744,17795],[-163,-100]],[[11762,17797],[-18,-2]],[[18443,19686],[-62,-84]],[[12551,18034],[54,-1]],[[13713,18379],[59,16]],[[11800,17801],[-22,10]],[[19769,20017],[-338,220]],[[12397,17978],[26,44]],[[19305,19893],[-243,-359]],[[13720,18368],[72,5]],[[12605,18033],[404,151],[304,-495],[154,-573],[-8,-573]],[[13829,18394],[94,-261]],[[16184,19045],[64,-116]],[[11581,17695],[-466,-538],[1,-245],[244,-208],[-149,-261]],[[11820,17767],[-58,30]],[[15303,18788],[78,14]],[[13761,18333],[27,-43]],[[13743,18327],[0,0]],[[13743,18327],[-22,-51]],[[13743,18327],[65,-26]],[[14366,18506],[-53,-242]],[[18381,19602],[2,-44]],[[16950,19221],[136,122]],[[13901,18356],[129,7]],[[11817,17724],[-73,71]],[[13613,18261],[74,-50]],[[13613,18261],[18,-94]],[[15279,18739],[126,32]],[[16915,19190],[35,31]],[[12755,18002],[104,-227]],[[12567,17942],[38,91]],[[15819,18876],[51,234]],[[14030,18363],[243,-194]],[[18383,19558],[-176,-216],[36,-262]],[[12541,17913],[26,29]],[[12744,17964],[11,38]],[[17648,19344],[7,210],[-200,173]],[[13972,18312],[58,51]],[[17670,19338],[534,-444]],[[18738,19616],[-225,-142]],[[15252,18674],[-76,130]],[[15252,18674],[-10,-9]],[[14978,18595],[231,-87]],[[15820,18831],[-140,-75]],[[12632,17907],[123,95]],[[12142,17758],[-154,-168]],[[15261,18671],[-9,3]],[[15261,18671],[14,340]],[[15261,18671],[0,0]],[[15242,18665],[-119,146]],[[15242,18665],[-69,0]],[[16004,18874],[89,-58]],[[15258,18664],[134,-85]],[[13763,18229],[91,-114]],[[11661,17591],[-80,104]],[[17626,19301],[0,4]],[[16248,18929],[114,-9]],[[18482,19523],[-99,35]],[[11765,17617],[-104,-26]],[[15255,18640],[51,-96]],[[17634,19289],[-4,8]],[[15680,18756],[62,-102]],[[16022,18849],[71,-33]],[[15986,18837],[-166,-6]],[[11944,17649],[16,-19]],[[16585,18990],[330,200]],[[11959,17647],[1,-17]],[[17598,19254],[35,31]],[[16362,18920],[173,-9]],[[16589,18980],[-4,10]],[[11960,17630],[28,-40]],[[15189,18576],[56,5]],[[18513,19474],[-31,49]],[[15245,18581],[16,90]],[[16093,18816],[155,113]],[[12495,17773],[72,169]],[[15035,18514],[3,-205]],[[17405,19157],[0,0]],[[17405,19157],[139,-202]],[[17405,19157],[-142,-426]],[[17406,19152],[173,52]],[[16535,18911],[54,69]],[[11988,17590],[-90,-400]],[[15458,18605],[284,49]],[[14278,18261],[3,-10]],[[12586,17761],[229,40]],[[15226,18526],[19,55]],[[14313,18264],[-32,-13]],[[14281,18251],[-8,-82]],[[15209,18508],[17,18]],[[13854,18115],[69,18]],[[15742,18654],[59,-140]],[[13923,18133],[198,-412]],[[19062,19534],[0,0]],[[16173,18768],[-7,-37]],[[12815,17801],[0,0]],[[12815,17801],[44,-26]],[[13777,18080],[77,35]],[[15048,18446],[111,-235]],[[13735,18058],[-52,-630]],[[15089,18448],[120,60]],[[18573,19386],[152,65]],[[17183,19017],[-233,204]],[[16799,18913],[-210,67]],[[12859,17775],[168,-512],[382,-300],[-23,-296]],[[14382,18213],[-69,51]],[[12748,17725],[67,76]],[[14273,18169],[16,-664]],[[18587,19345],[-74,129]],[[10168,16895],[52,-174],[379,-228]],[[12638,17657],[102,-289]],[[18532,19302],[55,43]],[[16501,18757],[34,154]],[[18394,19255],[-151,-175]],[[15497,18467],[101,-91]],[[18623,19295],[0,0]],[[18623,19295],[-36,50]],[[18623,19295],[-47,-95]],[[11661,17321],[-3,-152]],[[18633,19291],[0,0]],[[18633,19291],[-10,4]],[[18633,19291],[-56,-237]],[[18647,19294],[115,70]],[[15038,18309],[85,-102]],[[14958,18284],[80,25]],[[11733,17327],[-72,264]],[[15801,18516],[101,187]],[[15801,18514],[-84,-56]],[[15801,18514],[43,-44]],[[15801,18514],[0,0]],[[16286,18645],[76,275]],[[12751,17623],[3,-11]],[[19525,19491],[-220,402]],[[13840,17941],[281,-220]],[[12754,17612],[15,-90]],[[12745,17609],[9,3]],[[17544,18955],[0,0]],[[17544,18955],[-33,-38]],[[17544,18955],[182,-192]],[[15279,18322],[0,0]],[[15279,18322],[-53,204]],[[15279,18322],[-76,-7]],[[17191,18841],[-276,349]],[[15844,18470],[0,0]],[[15844,18470],[-19,-47]],[[15844,18470],[107,-329]],[[16781,18727],[77,-185]],[[16266,18583],[0,0]],[[16266,18583],[20,62]],[[16266,18583],[-46,-42]],[[18826,19254],[-193,37]],[[16620,18670],[-119,87]],[[12733,17553],[36,-31]],[[12199,17389],[-14,-345]],[[15612,18388],[28,-27]],[[11757,17250],[-99,-81]],[[15598,18376],[-29,-62]],[[15868,18445],[34,120]],[[14971,18191],[139,-21]],[[18243,19080],[-17,-98]],[[15825,18423],[-20,-6]],[[15825,18423],[-68,-131]],[[15805,18417],[-76,-4]],[[15805,18417],[-63,-63]],[[16644,18634],[52,-207]],[[12769,17522],[272,-623],[345,-232]],[[15123,18207],[36,4]],[[15159,18211],[100,-1]],[[15708,18363],[-110,13]],[[11658,17169],[76,-183]],[[17601,18876],[51,84]],[[15569,18314],[-31,-269]],[[12536,17417],[2,-35]],[[15110,18170],[13,37]],[[15259,18210],[20,112]],[[18487,19084],[45,218]],[[12526,17403],[12,-21]],[[18546,19089],[-14,213]],[[15102,18154],[0,0]],[[15102,18154],[8,16]],[[15102,18154],[-110,22]],[[14687,18030],[134,-489]],[[15250,18184],[9,26]],[[18520,19067],[-294,-85]],[[11898,17190],[-183,-560]],[[12538,17382],[21,-40]],[[12342,17321],[135,-265]],[[18226,18982],[-22,-88]],[[15091,18121],[51,-56]],[[11949,17190],[-51,0]],[[16234,18436],[32,147]],[[16212,18425],[139,-250]],[[16429,18483],[72,274]],[[16154,18399],[137,-177]],[[15022,18082],[-29,27]],[[15022,18082],[-43,-29]],[[18561,19040],[-217,-378]],[[16333,18442],[128,-252]],[[16853,18578],[-51,145]],[[16428,18450],[-142,195]],[[14508,17909],[121,-17],[131,-383]],[[15978,18325],[141,-84]],[[16858,18542],[-121,74]],[[16858,18542],[41,-150]],[[16858,18542],[0,0]],[[14507,17883],[79,-392]],[[18204,18894],[-94,-97]],[[15715,18215],[-146,99]],[[15090,18033],[-68,49]],[[15090,18033],[12,121]],[[15090,18033],[0,0]],[[15084,18028],[6,5]],[[17850,18784],[494,-122]],[[17850,18784],[4,-311]],[[16865,18517],[126,85]],[[15183,18045],[67,139]],[[14121,17721],[168,-216]],[[15090,17999],[90,-7]],[[15304,18058],[-54,126]],[[15624,18144],[-82,38]],[[15958,18234],[116,-41]],[[11749,16998],[-15,-12]],[[11734,16986],[-19,-356]],[[16696,18427],[-126,96]],[[16696,18427],[271,-187]],[[16696,18427],[0,0]],[[18110,18797],[-264,221]],[[18110,18797],[-1,-8]],[[18110,18797],[0,0]],[[15317,18025],[-13,33]],[[15393,18032],[145,13]],[[12040,17038],[-50,-392]],[[15133,17949],[-49,79]],[[15133,17949],[32,33]],[[15233,17963],[71,95]],[[15538,18045],[269,-197]],[[18838,18927],[-220,158]],[[15063,17899],[21,129]],[[14972,17872],[89,-305]],[[12209,17056],[-24,-12]],[[12185,17044],[7,-249]],[[15951,18141],[-192,41]],[[15951,18141],[-25,-57]],[[15951,18141],[0,0]],[[15180,17918],[-47,31]],[[16899,18392],[-119,70]],[[16899,18392],[68,-152]],[[16899,18392],[0,0]],[[12557,17145],[-8,-11]],[[16627,18316],[-205,61]],[[16627,18316],[-60,92]],[[11576,16837],[-34,-134]],[[12549,17134],[-2,-56]],[[18008,18669],[13,-18]],[[15264,17915],[244,-352]],[[15926,18084],[-88,-1]],[[15926,18084],[0,-40]],[[15926,18084],[0,0]],[[10599,16493],[476,159],[136,-209]],[[13683,17428],[-271,727],[-356,563]],[[17050,18371],[-41,162]],[[17050,18371],[-75,88]],[[16645,18261],[-18,55]],[[16645,18261],[-137,52]],[[12547,17078],[-93,-296]],[[16351,18175],[81,-15]],[[16351,18175],[-42,-137]],[[15923,18055],[96,18]],[[11580,16777],[-38,-74]],[[15926,18044],[0,0]],[[15926,18044],[-135,60]],[[15926,18044],[28,-81]],[[16461,18190],[0,0]],[[16461,18190],[-29,-30]],[[15260,17854],[-197,45]],[[16947,18318],[33,85]],[[17087,18352],[-37,19]],[[15054,17780],[7,-213]],[[16513,18184],[-40,140]],[[16513,18184],[-52,6]],[[16432,18160],[-38,-100]],[[18344,18662],[-1,0]],[[18344,18662],[135,-107],[292,176]],[[16959,18295],[42,50]],[[19050,18843],[0,0]],[[19050,18843],[12,691]],[[17584,18445],[259,4]],[[11542,16703],[-5,-73]],[[14905,17699],[55,-200]],[[16555,18154],[-42,30]],[[16555,18154],[-164,-113]],[[16715,18196],[-70,65]],[[16715,18196],[-39,-35]],[[16715,18196],[72,-18]],[[16593,18159],[-38,-5]],[[16593,18159],[-46,82]],[[15190,17767],[-127,132]],[[15251,17783],[-54,-9]],[[16596,18156],[-3,3]],[[16596,18156],[-77,-140]],[[14289,17505],[108,-135]],[[18771,18731],[65,196]],[[18771,18731],[201,-66]],[[15954,17963],[-147,-115]],[[16967,18240],[56,-124]],[[16676,18161],[-6,-8]],[[16676,18161],[36,-126]],[[16670,18153],[-74,3]],[[16670,18153],[16,-261]],[[16787,18178],[95,-45]],[[16787,18178],[-34,-288]],[[16983,18228],[47,91]],[[11537,16630],[-222,-651]],[[11562,16637],[-25,-7]],[[17142,18235],[-110,329]],[[17142,18235],[68,173]],[[12201,16807],[-9,-12]],[[12192,16795],[-22,-621]],[[15807,17848],[-299,-285]],[[16598,18062],[41,72]],[[16882,18133],[262,-142]],[[16882,18133],[-86,-251]],[[14586,17491],[-189,-121]],[[11715,16630],[47,-855]],[[12490,16867],[-36,-85]],[[3878,13967],[53,-112]],[[11525,16566],[-80,-149]],[[16439,17995],[159,67]],[[14821,17541],[-61,-32]],[[18972,18665],[0,0]],[[18972,18665],[78,178]],[[13976,17293],[0,0]],[[13976,17293],[-72,253]],[[13976,17293],[16,-202]],[[3706,13887],[22,-195]],[[14760,17509],[-174,-18]],[[11211,16443],[104,-464]],[[16059,17858],[16,86]],[[3882,13922],[115,-157]],[[12025,16677],[-35,-31]],[[15061,17567],[-4,-69]],[[14397,17370],[138,-622]],[[11990,16646],[9,-262]],[[12454,16782],[-284,-608]],[[10793,16261],[-19,-13]],[[17230,18140],[-88,95]],[[17230,18140],[304,181],[169,438],[147,25]],[[10774,16248],[-175,245]],[[11894,16597],[12,-301]],[[14960,17499],[-139,42]],[[19421,18693],[-371,150]],[[10775,16229],[-1,19]],[[12110,16645],[-111,-261]],[[10808,16226],[-33,3]],[[15057,17498],[-97,1]],[[3893,13846],[70,-74]],[[17211,18082],[-93,41]],[[17211,18082],[19,58]],[[17823,18228],[287,-69]],[[3856,13787],[23,-5]],[[3879,13782],[-3,3]],[[3879,13782],[57,-27]],[[15508,17563],[-89,-102]],[[19379,18596],[-54,-143]],[[3816,13737],[-45,-136]],[[17145,17991],[-52,-87]],[[17145,17991],[66,91]],[[15153,17436],[-96,62]],[[3728,13692],[7,181]],[[3728,13692],[4,-22]],[[13992,17091],[-39,-51]],[[13992,17091],[177,-2]],[[3969,13766],[28,-1]],[[3732,13670],[-42,-39]],[[3732,13670],[39,-69]],[[16650,17823],[-52,239]],[[3997,13765],[12,1]],[[4009,13766],[-4,41]],[[4009,13766],[45,-122]],[[10868,16113],[-38,-46]],[[19009,18428],[0,0]],[[19009,18428],[-37,237]],[[19009,18428],[-188,-140]],[[13953,17040],[-270,388]],[[15419,17461],[-266,-25]],[[16243,17677],[-289,286]],[[17094,17908],[-265,-12]],[[17093,17904],[-53,-111]],[[10830,16067],[-55,162]],[[18241,18205],[-249,365],[34,189]],[[17874,18108],[-369,210]],[[18205,18190],[-99,-143]],[[18724,18325],[-98,270]],[[19021,18399],[-12,29]],[[16218,17653],[25,24]],[[11921,16376],[-15,-80]],[[19325,18453],[-221,-141]],[[19449,18482],[-124,-29]],[[3771,13601],[185,-192]],[[11999,16384],[92,-361]],[[10589,15940],[-4,-162]],[[16890,17790],[-130,41]],[[16890,17790],[-24,84]],[[18613,18244],[111,81]],[[10904,16016],[-74,51]],[[16726,17718],[-49,143]],[[16726,17718],[-125,24]],[[19365,18402],[46,132]],[[17040,17793],[-77,53]],[[17040,17793],[-48,-51]],[[17040,17793],[0,0]],[[18721,18234],[3,91]],[[4054,13644],[-83,20]],[[4054,13644],[76,-395]],[[17821,17993],[53,115]],[[14859,17176],[-57,128]],[[14859,17176],[-35,-31]],[[11906,16296],[-103,-502]],[[19104,18312],[-83,87]],[[18504,18157],[119,441]],[[18712,18209],[9,25]],[[18106,18047],[-232,61]],[[19008,18277],[-24,-360]],[[16992,17742],[-31,-22]],[[14874,17140],[-15,36]],[[14874,17140],[-49,-31]],[[16961,17720],[-71,70]],[[16961,17720],[-64,-42]],[[16961,17720],[0,0]],[[3757,13478],[199,-69]],[[15912,17418],[-229,250]],[[16897,17678],[-89,75]],[[16897,17678],[-57,-65]],[[16897,17678],[0,0]],[[17395,17809],[-302,95]],[[16538,17575],[10,177]],[[16538,17575],[33,171]],[[13386,16667],[73,-124]],[[14692,17048],[-34,-207]],[[17637,17863],[-5,80]],[[17637,17863],[46,-11]],[[17635,17855],[-70,17]],[[17635,17855],[2,8]],[[14897,17098],[-23,42]],[[14897,17098],[-10,-13]],[[10832,15871],[-55,-138]],[[19349,18296],[-175,-112]],[[14887,17085],[-71,-20]],[[14887,17085],[-69,-52]],[[10585,15778],[-19,-698]],[[17683,17852],[36,103]],[[17683,17852],[30,-14]],[[18546,18076],[166,133]],[[16454,17511],[-211,166]],[[16451,17507],[3,4]],[[16840,17613],[-114,105]],[[16840,17613],[-76,-93]],[[16840,17613],[0,0]],[[14922,17067],[-25,31]],[[14922,17067],[0,0]],[[11315,15979],[266,-596]],[[18156,17945],[-50,102]],[[14754,17004],[168,63]],[[16525,17499],[-71,12]],[[16525,17499],[-15,-31]],[[16545,17498],[-7,77]],[[16545,17498],[-20,1]],[[16545,17498],[0,0]],[[19174,18184],[-70,128]],[[16574,17482],[28,116]],[[18817,18075],[-96,159]],[[14939,17020],[-17,47]],[[14939,17020],[101,40]],[[16764,17520],[-121,131]],[[16764,17520],[-15,-11]],[[16764,17520],[0,0]],[[3956,13409],[174,-160]],[[16749,17509],[-86,105]],[[16749,17509],[-10,-27]],[[16749,17509],[0,0]],[[18753,18033],[-41,176]],[[12170,16174],[-79,-151]],[[4079,13436],[-204,248]],[[10777,15733],[-192,45]],[[16739,17482],[-95,136]],[[16739,17482],[-42,-55]],[[16739,17482],[0,0]],[[13459,16543],[26,-300],[292,-474],[-18,-158]],[[17807,17727],[-1,46]],[[17807,17727],[25,23]],[[16697,17427],[-152,71]],[[14658,16841],[-4,61]],[[14658,16841],[-2,-8]],[[14658,16841],[0,0]],[[14656,16833],[-121,-85]],[[14826,16875],[177,-100]],[[14809,16860],[-153,-27]],[[17790,17680],[17,47]],[[17790,17680],[107,-47]],[[17634,17629],[-171,124]],[[17634,17629],[1,226]],[[18818,17934],[203,465]],[[10871,15643],[-94,90]],[[12091,16023],[-288,-229]],[[14535,16748],[54,-197]],[[18900,17921],[240,-8]],[[18428,17781],[-76,409]],[[18428,17781],[-384,-2]],[[17897,17633],[42,-11]],[[17897,17633],[10,-50]],[[15291,16889],[13,391],[-151,156]],[[4130,13249],[333,-336]],[[19140,17913],[34,271]],[[19138,17902],[2,11]],[[16236,17127],[-82,251],[-242,40]],[[17679,17518],[-45,111]],[[17679,17518],[111,162]],[[15003,16775],[-64,245]],[[15730,16976],[-183,130],[-128,355]],[[15751,16975],[78,-57],[83,500]],[[11803,15794],[-41,-19]],[[15005,16748],[-2,27]],[[15005,16748],[-416,-197]],[[15005,16748],[0,0]],[[19149,17866],[-11,36]],[[18478,17692],[-50,89]],[[18478,17692],[326,123],[206,-125]],[[11762,15775],[-58,-427]],[[17681,17476],[-34,9]],[[17681,17476],[-2,42]],[[15032,16736],[-27,12]],[[15032,16736],[18,0]],[[17190,17303],[66,37]],[[16882,17208],[-91,-240]],[[17183,17289],[-191,453]],[[17183,17289],[-95,-67]],[[17183,17289],[0,0]],[[19085,17783],[53,119]],[[5548,13630],[583,-183]],[[14589,16551],[-19,-410],[130,-417],[-252,-510],[-332,-326],[-266,264],[-126,295]],[[15717,16865],[-4,10]],[[15717,16865],[13,20]],[[17194,17266],[0,0]],[[17194,17266],[-11,23]],[[17194,17266],[-71,-74]],[[3579,12886],[291,-135],[564,143]],[[16332,16993],[-169,68]],[[16332,16993],[-18,-28]],[[19154,17737],[-5,129]],[[17204,17216],[0,0]],[[17204,17216],[-10,50]],[[17204,17216],[-50,-81]],[[16314,16965],[-131,71]],[[16314,16965],[-73,-52]],[[15588,16762],[5,86]],[[15588,16762],[70,-77]],[[15503,16715],[15,141]],[[15503,16715],[85,47]],[[17679,17304],[-30,-4]],[[17679,17304],[2,172]],[[19096,17671],[58,66]],[[19236,17696],[-87,170]],[[16457,16945],[209,-64]],[[16457,16945],[-125,48]],[[18500,17489],[-22,203]],[[18500,17489],[410,97],[61,-141]],[[15489,16665],[-118,209]],[[15489,16665],[14,50]],[[15489,16665],[34,-18]],[[17691,17259],[-12,45]],[[17691,17259],[-26,-20]],[[18502,17471],[-2,18]],[[17241,17130],[-37,86]],[[16037,16764],[-81,73]],[[19224,17613],[-70,124]],[[4852,13170],[134,345],[256,-41],[306,156]],[[17701,17210],[-10,49]],[[17701,17210],[24,20]],[[18012,17286],[-3,100]],[[18012,17286],[95,-30]],[[10661,15142],[6,-110]],[[16019,16742],[18,22]],[[18498,17410],[-277,-45],[-178,295]],[[16069,16753],[-32,11]],[[16069,16753],[-52,138]],[[17797,17218],[183,25]],[[17797,17218],[17,-48]],[[18553,17410],[248,10]],[[19142,17548],[12,189]],[[10566,15080],[-1102,-145],[-403,-296],[-175,-460],[-193,-104],[83,-451]],[[17980,17243],[-37,68]],[[17980,17243],[32,43]],[[17980,17243],[36,-38]],[[15402,16535],[14,175]],[[15402,16535],[87,130]],[[11205,15271],[-69,-143]],[[17912,17214],[34,-127]],[[11581,15383],[123,-35]],[[17707,17153],[-6,57]],[[17707,17153],[90,65]],[[16462,16805],[-136,32]],[[16462,16805],[17,1]],[[16479,16806],[-22,139]],[[16479,16806],[113,-109]],[[17422,17063],[-63,228]],[[17422,17063],[-63,-35]],[[17359,17028],[-103,43]],[[17359,17028],[-80,-111]],[[16097,16682],[-28,71]],[[16097,16682],[71,68]],[[18582,17350],[103,-14]],[[16437,16775],[-67,6]],[[16437,16775],[25,30]],[[4463,12913],[389,257]],[[17443,17025],[-21,38]],[[17443,17025],[-21,270]],[[4434,12894],[0,0]],[[4434,12894],[29,19]],[[17097,16929],[-400,498]],[[17097,16929],[-58,-139]],[[10667,15032],[-101,48]],[[11704,15348],[165,-428],[550,-24],[80,-167]],[[17104,16905],[104,59]],[[16399,16709],[38,66]],[[16399,16709],[-62,-68]],[[15879,16559],[-162,306]],[[15879,16559],[-41,242]],[[6132,13469],[-1,-22]],[[11018,15107],[-351,-75]],[[11136,15128],[-118,-21]],[[6131,13447],[299,273],[541,74],[518,-190],[512,54],[337,-202],[438,168]],[[17128,16872],[-2,-124]],[[17647,16991],[-53,92]],[[17647,16991],[60,162]],[[11030,15058],[-12,49]],[[16592,16697],[85,-14]],[[16592,16697],[37,-175]],[[16157,16570],[-60,112]],[[16157,16570],[46,-8]],[[11546,15202],[35,181]],[[11152,15078],[-16,50]],[[17623,16949],[-180,76]],[[17623,16949],[24,42]],[[16677,16683],[6,41]],[[16677,16683],[45,-2]],[[16722,16681],[7,113]],[[16722,16681],[40,-52]],[[15891,16433],[-12,126]],[[15891,16433],[26,12]],[[11345,15075],[201,127]],[[17872,16951],[21,22]],[[17872,16951],[19,-23]],[[17319,16801],[-222,128]],[[11349,15056],[-4,19]],[[16431,16548],[-32,161]],[[16431,16548],[47,-41]],[[16762,16629],[21,-7]],[[16762,16629],[-2,-172]],[[19503,17347],[-126,-341]],[[17891,16928],[148,-18]],[[17891,16928],[61,-140]],[[17800,16901],[72,50]],[[17800,16901],[25,-33]],[[11167,14969],[178,106]],[[16783,16622],[122,-61]],[[16783,16622],[110,-106]],[[4493,12684],[-59,210]],[[4493,12684],[0,0]],[[17665,16812],[-42,137]],[[17665,16812],[135,89]],[[16416,16464],[15,84]],[[16416,16464],[165,-84]],[[2054,11688],[-51,589],[195,240],[555,451],[198,40],[628,-122]],[[18648,17032],[-71,309]],[[18648,17032],[-440,147]],[[15868,16263],[23,170]],[[15868,16263],[148,-45]],[[16280,16370],[136,94]],[[16280,16370],[36,-28]],[[18713,16989],[-65,43]],[[18713,16989],[-51,-111]],[[11536,14936],[10,266]],[[17952,16788],[81,16]],[[13759,15611],[132,26],[264,418],[62,530],[-264,455]],[[16316,16342],[98,10]],[[16316,16342],[62,-72]],[[16414,16352],[46,-12]],[[16414,16352],[-3,-164]],[[15475,16083],[-73,452]],[[15475,16083],[393,180]],[[16181,16281],[-24,289]],[[16181,16281],[99,89]],[[17973,16759],[-21,29]],[[16016,16218],[165,63]],[[16016,16218],[17,-132]],[[15396,16037],[-154,373]],[[15396,16037],[79,46]],[[16378,16270],[-11,-110]],[[17342,16517],[-53,70]],[[17342,16517],[-74,-87]],[[17358,16506],[-16,11]],[[17358,16506],[-45,110]],[[2100,11509],[-46,180]],[[11319,14730],[-281,13],[-238,-361]],[[19377,17006],[287,-128]],[[13724,15447],[35,164]],[[19156,16934],[-150,423]],[[19156,16934],[221,72]],[[17743,16565],[-78,247]],[[17743,16565],[272,-36]],[[17268,16430],[33,-188]],[[17268,16430],[-59,-227]],[[16033,16086],[-1,-6]],[[16033,16086],[53,-44]],[[16411,16188],[11,-104]],[[16411,16188],[-52,-206]],[[16032,16080],[-134,-145]],[[16032,16080],[-7,-124]],[[4434,12328],[59,356]],[[11330,14645],[-11,85]],[[11412,14663],[-93,67]],[[17049,16299],[-107,469],[-222,156]],[[17049,16299],[120,233]],[[17025,16287],[24,12]],[[17025,16287],[28,-82]],[[11431,14640],[-19,23]],[[11389,14614],[23,49]],[[18015,16529],[400,128]],[[18015,16529],[216,-228],[162,204]],[[11486,14638],[-55,2]],[[11223,14552],[-423,-170]],[[11577,14662],[60,-74]],[[16422,16084],[142,-69]],[[16422,16084],[20,-80]],[[4480,12237],[83,73]],[[16025,15956],[9,-42]],[[16025,15956],[149,-143]],[[4602,12262],[-109,422]],[[10800,14382],[-115,-83]],[[16034,15914],[0,-3]],[[16034,15914],[-10,-7]],[[19664,16878],[-71,351]],[[19664,16878],[111,-29]],[[16034,15911],[1,-67]],[[16034,15911],[-147,-248]],[[16024,15907],[-25,11]],[[16024,15907],[-68,-104]],[[17556,16326],[-198,180]],[[17556,16326],[-137,411]],[[10685,14299],[44,257]],[[10685,14299],[13,-416]],[[16359,15982],[-141,-127]],[[16359,15982],[50,-112]],[[11637,14588],[196,-86]],[[17604,16299],[139,266]],[[17604,16299],[-48,27]],[[19775,16849],[254,108]],[[19775,16849],[12,-27]],[[16358,15944],[-8,-184]],[[8776,13624],[491,116],[414,-366]],[[15930,15821],[26,-18]],[[16035,15844],[13,-25]],[[16035,15844],[-40,-321]],[[15956,15803],[-75,-54]],[[19787,16822],[17,-28]],[[19787,16822],[-131,-340]],[[19804,16794],[4,-32]],[[11485,14442],[-54,198]],[[15881,15749],[-18,41]],[[15881,15749],[-24,-30]],[[19880,16812],[-76,-18]],[[18999,16568],[-286,421]],[[12499,14729],[186,-148]],[[19808,16762],[75,-19]],[[19808,16762],[52,-231]],[[11601,14441],[36,147]],[[11833,14502],[19,-10]],[[11852,14492],[227,-36]],[[2623,11280],[-389,28],[-134,201]],[[11819,14428],[33,64]],[[11428,14289],[-37,-91]],[[18583,16345],[378,-69]],[[12322,14551],[177,178]],[[12079,14456],[243,95]],[[11282,14181],[-13,223]],[[11282,14181],[-77,-310]],[[11391,14198],[-109,-17]],[[12685,14581],[21,-31]],[[16295,15630],[-119,160]],[[16295,15630],[-68,213]],[[11484,14197],[8,33]],[[11484,14197],[-50,-31]],[[20214,16654],[-30,157]],[[17912,16054],[221,114]],[[17912,16054],[176,-66]],[[11434,14166],[-43,32]],[[12706,14550],[396,64],[402,-110]],[[18961,16276],[195,658]],[[10698,13883],[-137,-130]],[[17636,15917],[-32,382]],[[17636,15917],[181,-13]],[[11587,14147],[-1,-25]],[[11487,14116],[-53,50]],[[17865,15965],[47,89]],[[17865,15965],[266,-86],[140,126]],[[3571,11377],[11,64]],[[20420,16612],[-7,87]],[[20420,16611],[-188,-76]],[[11602,14129],[-16,-7]],[[11586,14122],[-3,-6]],[[11583,14116],[-6,-13]],[[11577,14103],[-5,-3]],[[11572,14100],[-85,16]],[[11572,14100],[21,-61]],[[20232,16535],[-18,118]],[[11604,14108],[-21,8]],[[17817,15904],[48,61]],[[17817,15904],[163,-184],[365,35]],[[11500,14066],[-13,50]],[[12323,14323],[-1,228]],[[12323,14323],[-83,-343]],[[10561,13753],[0,1]],[[10561,13753],[-207,-120],[-317,29],[-50,-240],[-306,-48]],[[11597,14076],[-20,27]],[[19662,16350],[-283,-152]],[[12375,14306],[-52,17]],[[16768,15577],[17,643],[240,67]],[[16768,15577],[506,-70]],[[3930,11385],[-26,-87]],[[3281,11139],[94,19]],[[16740,15527],[28,50]],[[16740,15527],[61,-130]],[[11205,13871],[91,22]],[[11205,13871],[-219,-130]],[[9681,13374],[0,0]],[[9681,13374],[-88,-526]],[[12045,14126],[34,330]],[[12045,14126],[33,-33]],[[11950,14096],[95,30]],[[19379,16198],[284,192]],[[11747,14021],[86,481]],[[11747,14021],[0,0]],[[20224,16395],[-168,116],[44,318]],[[20224,16395],[8,140]],[[3767,11267],[25,-381]],[[20848,16542],[185,-340]],[[11745,14007],[2,14]],[[3265,11073],[-59,41]],[[3749,11253],[-10,19]],[[3904,11298],[-155,-45]],[[11701,13974],[149,-372],[-3,-367]],[[10986,13741],[-288,142]],[[10986,13741],[-425,12]],[[13504,14504],[220,943]],[[20288,16356],[-64,39]],[[20289,16356],[80,-438]],[[3407,11073],[-6,-11]],[[16358,15305],[-63,325]],[[16358,15305],[382,222]],[[11637,13904],[-42,-145]],[[3684,11145],[65,108]],[[11788,13929],[36,9]],[[11824,13938],[4,16]],[[11824,13938],[113,-181]],[[16801,15397],[7,-60]],[[16801,15397],[111,-131]],[[17274,15507],[-64,513]],[[17274,15507],[244,-26]],[[11913,13944],[24,-187]],[[3670,11113],[14,32]],[[21070,16479],[32,-237]],[[20575,16346],[19,249]],[[3684,11101],[0,44]],[[3684,11101],[-7,-147]],[[12629,14124],[77,426]],[[19324,15998],[55,200]],[[19324,15998],[211,120]],[[11610,13780],[-15,-21]],[[19009,15893],[-48,383]],[[19009,15893],[-261,-77]],[[3670,11032],[14,69]],[[18748,15816],[-396,-152]],[[11595,13759],[167,-448],[-20,-216]],[[17518,15481],[118,436]],[[17518,15481],[97,-140]],[[3652,11010],[18,22]],[[20470,16223],[-6,-114]],[[20470,16223],[-39,108]],[[16230,15059],[128,246]],[[16230,15059],[205,-287],[229,41],[174,-341]],[[3652,10935],[18,97]],[[11800,13738],[7,5]],[[15490,14827],[-71,712],[-197,197],[174,301]],[[15490,14827],[740,232]],[[11937,13757],[-6,-167]],[[4075,11044],[-171,254]],[[12078,13775],[-130,168]],[[12078,13775],[-50,139]],[[12011,13751],[-80,-161]],[[20464,16109],[102,128]],[[19591,15885],[87,359]],[[19591,15885],[142,1]],[[12148,13773],[-101,157]],[[12148,13773],[9,185]],[[19057,15734],[267,264]],[[21102,16242],[-7,-8]],[[21095,16234],[-62,-32]],[[21095,16234],[82,-445]],[[17615,15341],[-83,-292]],[[17615,15341],[363,-46],[54,-172]],[[20452,16065],[12,44]],[[20452,16065],[-83,-147]],[[12430,13834],[-2,179]],[[12430,13834],[57,129]],[[19547,15833],[44,52]],[[19547,15833],[249,-256]],[[21033,16202],[-2,-1]],[[21031,16201],[-272,300]],[[21031,16201],[81,-338]],[[19841,15899],[13,129]],[[12127,13706],[-49,69]],[[12127,13706],[21,67]],[[20310,15966],[-533,367]],[[12318,13720],[112,114]],[[12318,13720],[5,-27]],[[9593,12848],[-337,-369]],[[9593,12848],[145,-146],[436,-86],[91,-226],[252,-135],[75,-275],[390,-289],[283,55],[230,265]],[[11931,13590],[-84,-355]],[[12307,13705],[-39,37]],[[12307,13705],[11,15]],[[19879,15826],[-37,73]],[[19879,15826],[-119,-90]],[[19969,15827],[7,175]],[[19969,15827],[-90,-1]],[[20369,15918],[-31,-100]],[[12552,13727],[-34,87]],[[12552,13727],[-121,-2]],[[12170,13609],[-43,97]],[[12170,13609],[137,96]],[[19990,15773],[-21,54]],[[19990,15773],[-104,-102]],[[19082,15512],[-73,381]],[[19082,15512],[339,334],[126,-13]],[[20338,15818],[-6,-4]],[[20332,15814],[-22,151]],[[20332,15814],[-89,-67]],[[12154,13511],[16,98]],[[12154,13511],[-78,15]],[[17532,15049],[-196,-310]],[[17532,15049],[94,-132]],[[20243,15746],[-79,-74]],[[5358,11171],[-168,396],[39,346],[205,378],[-24,496],[-313,71],[-245,312]],[[12240,13468],[-86,43]],[[12240,13468],[-16,24]],[[0,9093],[235,315],[542,-51],[355,102],[47,489],[546,75],[339,560],[36,926]],[[18032,15123],[68,-65]],[[18032,15123],[51,-302]],[[20163,15672],[-173,101]],[[9256,12479],[-145,-89],[-106,-446],[-293,268],[-711,86],[-430,-370],[44,-145],[-400,-689],[-159,-454]],[[9256,12479],[-53,-143],[159,-885],[-326,-911],[-315,233],[-483,-129],[-83,-389],[155,-309],[-33,-1018],[175,-487],[-138,-118],[68,-399],[-343,-348],[-12,-253]],[[5381,11127],[-23,44]],[[13017,13603],[-310,202],[-155,-78]],[[13017,13603],[-7,184],[-344,210]],[[11847,13235],[-105,-140]],[[19957,15524],[-77,-52]],[[5257,11002],[101,169]],[[5228,10988],[29,14]],[[5214,10981],[0,0]],[[5214,10981],[14,7]],[[5182,10964],[32,17]],[[5224,10976],[4,12]],[[13054,13551],[-269,-45]],[[13054,13551],[-37,52]],[[5171,10913],[43,68]],[[20061,15478],[-104,46]],[[20061,15478],[-96,-43]],[[19965,15435],[-89,25]],[[11742,13095],[-351,15],[-436,-256],[-329,-64],[-280,285],[-186,569]],[[19146,15202],[-157,94],[-460,-36]],[[19166,15176],[-20,26]],[[19166,15176],[-84,336]],[[5053,10735],[155,26]],[[13412,13512],[-358,39]],[[13412,13512],[-280,511],[-347,119]],[[17399,14634],[-58,8]],[[5208,10761],[49,241]],[[12313,13151],[-73,317]],[[12313,13151],[94,417]],[[16838,14472],[-90,-112]],[[16838,14472],[591,-303]],[[5167,10712],[41,49]],[[21271,15583],[-219,-436]],[[13525,13474],[-113,38]],[[13525,13474],[138,713],[-159,317]],[[19173,15036],[-75,-81]],[[20244,15308],[161,195],[-67,315]],[[20244,15308],[-183,170]],[[16748,14360],[-213,61],[-163,-234]],[[16748,14360],[-306,-259]],[[19098,14955],[-240,-34]],[[19685,14975],[-72,118]],[[19685,14975],[79,385]],[[18536,14659],[54,363]],[[18536,14659],[169,-57]],[[17551,14381],[-129,244]],[[20083,15029],[161,279]],[[20083,15029],[167,-77]],[[21066,15252],[-81,310]],[[13605,13170],[-80,304]],[[13605,13170],[499,48],[353,-180],[566,259]],[[18463,14521],[73,138]],[[18463,14521],[-195,4]],[[21052,15147],[14,105]],[[21052,15147],[-25,-151]],[[19861,14848],[110,-85]],[[17832,14278],[-1,85]],[[17832,14278],[97,72]],[[17429,14169],[-107,-176]],[[17429,14169],[85,3]],[[17514,14172],[78,-2]],[[17514,14172],[76,-277]],[[18463,14404],[0,117]],[[18463,14404],[84,-109]],[[17592,14170],[-40,210]],[[17592,14170],[23,-3]],[[17615,14167],[194,23]],[[17615,14167],[104,-220]],[[20358,14870],[-136,-481]],[[19971,14763],[112,266]],[[17809,14190],[23,88]],[[17809,14190],[70,-56]],[[21027,14996],[-182,270],[-129,557],[77,122]],[[17163,13993],[18,51]],[[17163,13993],[110,-82]],[[17032,13946],[-58,163]],[[17032,13946],[96,23]],[[20158,14766],[-143,-184]],[[17128,13969],[35,24]],[[17128,13969],[95,-173]],[[17879,14134],[-7,-26]],[[17879,14134],[198,-21]],[[16966,13879],[66,67]],[[16966,13879],[222,-234]],[[18547,14295],[190,137]],[[18547,14295],[243,-110]],[[17872,14108],[12,-147]],[[17872,14108],[-81,-237]],[[15023,13297],[114,76],[161,802],[178,336],[14,316]],[[15023,13297],[77,-23]],[[16848,13800],[-9,103]],[[16848,13800],[52,-1]],[[18335,14202],[128,202]],[[18335,14202],[266,-111]],[[5197,10055],[365,-327]],[[18230,14166],[-18,135]],[[18230,14166],[105,36]],[[18230,14166],[174,-227]],[[16900,13799],[66,80]],[[16900,13799],[45,-118]],[[18077,14113],[153,53]],[[18077,14113],[8,-65]],[[6010,10311],[-266,-146]],[[6010,10311],[-324,-71]],[[20015,14582],[-44,181]],[[6321,10403],[-559,74]],[[6321,10403],[-95,-197],[-216,105]],[[21074,14815],[-47,181]],[[18085,14048],[11,-3]],[[18085,14048],[-4,-26]],[[7056,10640],[-6,-403]],[[7056,10640],[-162,-155],[-573,-82]],[[5744,10165],[-67,36]],[[5744,10165],[-96,-64]],[[18081,14022],[53,-161]],[[17884,13961],[-30,-41]],[[17884,13961],[36,-65]],[[5556,10066],[-137,120]],[[5556,10066],[-40,-21]],[[19380,14337],[299,450],[6,188]],[[5316,9954],[-25,-29]],[[17854,13920],[-30,-33]],[[17854,13920],[14,-80]],[[17920,13896],[37,-9]],[[17920,13896],[-1,-59]],[[11495,12011],[784,750],[34,390]],[[11495,12011],[556,57],[400,-304],[208,157],[287,-15],[320,721],[22,479],[317,64]],[[18155,13937],[-74,85]],[[20169,14443],[-154,139]],[[20169,14443],[-109,-172]],[[5614,9960],[0,0]],[[5614,9960],[-58,106]],[[5614,9960],[-38,-49]],[[18404,13939],[166,29]],[[18404,13939],[26,-64]],[[20426,14450],[242,0],[214,-376]],[[18570,13968],[96,74]],[[18570,13968],[233,-32]],[[20222,14389],[-53,54]],[[6042,10057],[-204,1]],[[6042,10057],[-24,-12]],[[6018,10045],[-78,-37]],[[6018,10045],[-35,-48]],[[5674,9903],[9,22]],[[5674,9903],[-7,-6]],[[5667,9897],[-53,63]],[[5667,9897],[-3,-13]],[[18430,13875],[-10,-7]],[[18430,13875],[62,-122]],[[18420,13868],[-106,-40]],[[18420,13868],[-11,-58]],[[21482,14632],[261,148],[285,427],[-97,755],[-139,339],[-371,139],[-319,-198]],[[18314,13828],[-141,-34]],[[18314,13828],[-4,-58]],[[17868,13707],[128,10]],[[17868,13707],[17,-101]],[[17848,13701],[20,6]],[[17848,13701],[11,-83]],[[18141,13765],[130,-62]],[[18845,13947],[57,173]],[[18845,13947],[87,-17]],[[18803,13936],[-37,92]],[[18803,13936],[42,11]],[[17996,13717],[75,2]],[[17996,13717],[58,-163]],[[16827,13376],[21,424]],[[16827,13376],[123,32]],[[18310,13770],[-39,-67]],[[18310,13770],[12,-215]],[[5825,9854],[2,5]],[[5825,9854],[-151,49]],[[6339,10029],[-367,-60]],[[6339,10029],[-297,28]],[[5866,9829],[-41,25]],[[6946,10210],[-448,-310],[-159,129]],[[6946,10210],[-330,-585]],[[18271,13703],[-34,-64]],[[7050,10237],[-104,-27]],[[7050,10237],[189,-303],[65,-490],[-59,-430],[-227,-613]],[[17156,13396],[165,22]],[[16698,13269],[-263,188]],[[16698,13269],[145,22]],[[5626,9708],[-24,20]],[[16843,13291],[-16,85]],[[16843,13291],[128,-78]],[[17141,13363],[-4,292]],[[17141,13363],[159,-64]],[[18237,13639],[-96,-37]],[[18237,13639],[-41,-146]],[[21296,14381],[-222,434]],[[16971,13213],[170,150]],[[16971,13213],[259,-126]],[[18322,13555],[39,-98]],[[18322,13555],[-36,-138]],[[5597,9456],[56,241]],[[18361,13457],[44,-86]],[[20882,14074],[315,121],[285,437]],[[18451,13446],[-90,11]],[[17798,13260],[194,50]],[[17798,13260],[102,-123]],[[17992,13310],[85,43]],[[17992,13310],[15,-69]],[[18633,13479],[295,-195],[250,141]],[[17686,13225],[-235,280],[228,231],[169,-35]],[[17686,13225],[112,35]],[[17230,13087],[334,72]],[[17230,13087],[209,-394],[224,-85]],[[17564,13159],[122,66]],[[17564,13159],[23,-41]],[[6549,9691],[-345,87],[-311,-56]],[[6549,9691],[-204,-118]],[[20289,13854],[-67,535]],[[20289,13854],[364,210],[229,10]],[[18007,13241],[130,-114]],[[18007,13241],[14,-273]],[[5748,9372],[-93,142]],[[5748,9372],[-132,-159]],[[17587,13118],[2,-1]],[[17587,13118],[-44,-61]],[[17589,13117],[13,-37]],[[17589,13117],[361,-95]],[[19564,13602],[-64,571],[-334,1003]],[[17602,13080],[13,0]],[[17602,13080],[-210,-91]],[[17615,13080],[58,-343]],[[17615,13080],[77,-81]],[[6616,9625],[-219,-371]],[[6616,9625],[-67,66]],[[19467,13527],[-206,173]],[[19467,13527],[97,75]],[[19178,13425],[-170,570]],[[19178,13425],[289,102]],[[17692,12999],[30,-31]],[[17692,12999],[85,-170]],[[17722,12968],[64,21]],[[17722,12968],[51,-58]],[[5925,9224],[-177,148]],[[5925,9224],[-8,-10]],[[5917,9214],[-30,13]],[[5917,9214],[-13,-31]],[[16898,12642],[-256,250],[56,377]],[[16898,12642],[404,-44]],[[4557,8631],[-33,-129]],[[6127,9198],[-202,26]],[[6127,9198],[-171,-185]],[[6357,9263],[-230,-65]],[[6357,9263],[-9,50]],[[1983,7602],[14,-152]],[[6397,9254],[-40,9]],[[6397,9254],[-188,-733]],[[16853,12549],[45,93]],[[16853,12549],[121,-102]],[[5552,8908],[29,-24]],[[3756,8224],[-224,-162]],[[4528,8514],[-4,-12]],[[4439,8477],[12,-145]],[[4524,8502],[-45,-124]],[[19155,13128],[386,52]],[[16601,12422],[-160,282]],[[16601,12422],[252,127]],[[5678,8901],[-40,144]],[[4612,8505],[-124,-122]],[[16586,12390],[15,32]],[[16586,12390],[215,-192]],[[19541,13180],[23,422]],[[17781,12707],[190,179]],[[17781,12707],[147,-170]],[[3529,8063],[3,-1]],[[3529,8063],[-6,-39]],[[3532,8062],[-3,1]],[[16494,12329],[92,61]],[[1997,7450],[-6,-21]],[[1997,7450],[-6,-21]],[[19518,13131],[23,49]],[[16974,12447],[164,-48]],[[16974,12447],[33,-459]],[[3523,8024],[-9,-13]],[[3523,8024],[-9,-13]],[[1991,7429],[-26,-313],[-284,-270]],[[4479,8378],[-6,-7]],[[4479,8378],[-6,-7]],[[3508,8009],[-25,-18]],[[3508,8009],[-25,-18]],[[3514,8011],[-6,-2]],[[4473,8371],[-4,-21]],[[19778,13173],[186,34]],[[19778,13173],[122,-276],[219,-61],[-43,-279]],[[3483,7991],[-5,-43]],[[19549,13111],[229,62]],[[19549,13111],[379,-556]],[[17663,12608],[118,99]],[[17663,12608],[9,-11]],[[4469,8350],[-18,-18]],[[19964,13207],[325,647]],[[19964,13207],[439,-77]],[[17672,12597],[42,-41]],[[17672,12597],[-60,-144]],[[4489,8349],[-20,1]],[[5117,8582],[20,-14]],[[4451,8332],[-86,-141]],[[4681,8405],[-26,-42]],[[3478,7948],[-3,-26]],[[3478,7948],[-3,-26]],[[5137,8568],[-1,5]],[[5137,8568],[35,-38]],[[16010,12093],[-24,-25]],[[3475,7922],[-71,-356]],[[4351,8252],[-6,-115]],[[15952,12072],[-52,20]],[[15952,12072],[-64,-140]],[[4655,8363],[-4,-9]],[[4655,8363],[-4,-9]],[[17714,12556],[91,-21]],[[17714,12556],[27,-40]],[[17138,12399],[68,10]],[[17138,12399],[-24,-163]],[[4651,8354],[-6,-46]],[[16132,12114],[438,-202]],[[15986,12068],[-34,4]],[[15986,12068],[91,-244]],[[5172,8530],[7,-2]],[[5179,8528],[15,-6]],[[5175,8523],[4,5]],[[5175,8523],[19,-1]],[[5166,8516],[6,14]],[[5166,8516],[9,7]],[[5194,8522],[5,-3]],[[5199,8519],[11,-5]],[[5199,8519],[11,-5]],[[22378,13695],[251,91]],[[4645,8308],[-2,-7]],[[4645,8308],[-2,-7]],[[17741,12516],[72,-93]],[[17741,12516],[6,-155]],[[5210,8514],[1,0]],[[5211,8514],[26,5]],[[5211,8514],[29,4]],[[4643,8301],[0,-1]],[[4643,8300],[-1,-14]],[[4643,8300],[-1,-14]],[[5237,8519],[-20,5]],[[5237,8519],[3,-1]],[[5240,8518],[4,0]],[[5244,8518],[-28,18]],[[5244,8518],[17,-7]],[[4365,8191],[-20,-54]],[[5112,8465],[54,51]],[[4642,8286],[-1,-2]],[[4641,8284],[-4,-21]],[[4641,8284],[-4,-21]],[[5248,8507],[13,2]],[[5261,8511],[0,-2]],[[5261,8511],[6,-3]],[[5261,8509],[6,-3]],[[17612,12453],[-1,-41]],[[5267,8508],[0,-2]],[[5267,8508],[17,-5]],[[5267,8506],[11,-5]],[[5280,8511],[4,-8]],[[18213,12610],[-218,311]],[[18213,12610],[-214,-156]],[[5278,8501],[8,0]],[[5278,8501],[9,-8]],[[4637,8263],[-4,-13]],[[4637,8263],[-4,-13]],[[5284,8503],[2,-2]],[[5286,8501],[6,-15]],[[17389,12372],[223,81]],[[5287,8493],[-23,0]],[[5287,8493],[5,-7]],[[4439,8178],[-74,13]],[[4633,8250],[-39,-31]],[[4345,8137],[-208,-551]],[[4445,8174],[-6,4]],[[4445,8174],[-6,4]],[[5292,8486],[7,-12]],[[4449,8173],[-4,1]],[[5598,8597],[5,26]],[[5598,8597],[-66,24]],[[4457,8169],[-8,4]],[[4457,8169],[-8,4]],[[4594,8219],[-12,-4]],[[4594,8219],[-12,-4]],[[4582,8215],[-29,-43]],[[15888,11932],[-39,-9]],[[15888,11932],[-120,-285]],[[17611,12412],[-37,-60]],[[17611,12412],[39,-169]],[[4667,8244],[-34,-11]],[[4464,8167],[-7,2]],[[5299,8474],[7,-10]],[[5299,8474],[9,-22]],[[20403,13130],[24,-294]],[[20403,13130],[226,-79]],[[4476,8159],[-12,8]],[[4476,8159],[-12,8]],[[5306,8464],[0,6]],[[5306,8464],[4,-16]],[[4527,8163],[-51,-4]],[[5308,8452],[-8,6]],[[5308,8452],[1,-4]],[[5308,8452],[0,0]],[[4553,8172],[-12,-11]],[[4553,8172],[-12,-11]],[[5310,8448],[-1,0]],[[5310,8448],[7,-12]],[[5309,8448],[-1,-4]],[[4536,8160],[-9,3]],[[4536,8160],[-9,3]],[[4541,8161],[-5,-1]],[[5308,8444],[-6,6]],[[5308,8444],[9,-8]],[[5308,8444],[0,0]],[[5315,8446],[7,-10]],[[18434,12591],[46,457],[-279,266]],[[18434,12591],[-221,19]],[[17813,12423],[-3,-47]],[[17832,12425],[-19,-2]],[[5317,8436],[1,0]],[[5318,8436],[4,0]],[[5318,8436],[10,-6]],[[5322,8436],[6,-6]],[[17574,12352],[-56,1]],[[17574,12352],[-43,-51]],[[5328,8430],[8,-31]],[[5667,8550],[-69,47]],[[5667,8550],[-5,-23]],[[22327,13531],[18,4]],[[22327,13531],[259,-50]],[[22345,13535],[33,160]],[[17531,12301],[-43,-19]],[[17531,12301],[-10,-82]],[[17810,12376],[5,-43]],[[5336,8399],[-1,-11]],[[5336,8399],[-1,-11]],[[5008,8273],[19,-70]],[[5731,8535],[-45,82]],[[5731,8535],[-64,15]],[[5335,8388],[12,-25]],[[17791,12339],[19,37]],[[1336,6833],[-11,-24]],[[1336,6833],[-11,-24]],[[5030,8251],[-3,-48]],[[5347,8363],[1,-10]],[[5347,8363],[1,-10]],[[5348,8353],[4,-6]],[[1325,6809],[-264,-188]],[[5352,8347],[5,-7]],[[5352,8347],[12,-10]],[[20629,13051],[-86,-409]],[[20629,13051],[337,150],[258,-279]],[[5357,8340],[7,-3]],[[5357,8340],[-1,-36]],[[16077,11824],[-60,-81]],[[16077,11824],[38,-56]],[[5364,8337],[1,-14]],[[5027,8203],[-11,-24]],[[4862,8139],[0,6]],[[4862,8139],[-12,-25]],[[5365,8323],[-1,-11]],[[5365,8323],[-3,-12]],[[5018,8195],[0,-3]],[[1429,6813],[-93,20]],[[17650,12243],[-43,-33]],[[17650,12243],[16,-36]],[[1021,6649],[-475,78],[-165,-113]],[[5018,8192],[-4,2]],[[5018,8192],[-2,-13]],[[5364,8312],[-2,-1]],[[5364,8312],[-8,-15]],[[5362,8311],[-6,-7]],[[5016,8179],[1,-49]],[[5356,8304],[-2,-7]],[[22586,13481],[190,-133]],[[22586,13481],[56,-508]],[[4850,8114],[-3,-5]],[[4850,8114],[-34,-26]],[[1548,6842],[-119,-29]],[[5354,8297],[2,0]],[[5354,8297],[-3,-23]],[[5356,8297],[-4,-23]],[[4847,8109],[-11,-6]],[[4847,8109],[-5,-6]],[[4836,8103],[-3,-5]],[[17607,12210],[-39,-35]],[[17607,12210],[18,-106]],[[5348,8291],[3,-14]],[[4842,8103],[-6,0]],[[4842,8103],[-34,-48]],[[1565,6840],[-17,2]],[[1565,6840],[-17,2]],[[4833,8098],[-17,-10]],[[4833,8098],[-22,-31]],[[4816,8088],[-5,-11]],[[16570,11912],[-118,-112]],[[16570,11912],[65,-100]],[[17148,12069],[-110,7]],[[17148,12069],[-12,94]],[[4811,8077],[0,-10]],[[4811,8077],[-2,-17]],[[17666,12207],[65,-18]],[[17666,12207],[22,-47]],[[19206,12617],[-152,186]],[[4798,8070],[2,-29]],[[5351,8274],[1,0]],[[5351,8274],[2,-11]],[[5352,8274],[1,-11]],[[1061,6621],[-40,28]],[[19367,12656],[182,455]],[[19367,12656],[-161,-39]],[[4811,8067],[-2,-7]],[[5353,8263],[-2,-5]],[[4809,8060],[-1,-5]],[[6079,8525],[-350,298]],[[6079,8525],[-348,10]],[[5351,8258],[0,0]],[[5351,8258],[1,-4]],[[5340,8254],[11,4]],[[4808,8055],[-8,-14]],[[5352,8254],[11,-25]],[[5352,8254],[13,-25]],[[5017,8130],[-4,5]],[[5017,8130],[8,-5]],[[5017,8130],[0,0]],[[1681,6846],[-116,-6]],[[5025,8125],[6,-5]],[[5025,8125],[6,-5]],[[4800,8041],[0,0]],[[4800,8041],[-8,-37]],[[4800,8041],[-8,-37]],[[5031,8120],[3,-3]],[[5031,8120],[3,-3]],[[5034,8117],[16,-23]],[[17171,12029],[-23,40]],[[17171,12029],[199,-31]],[[4593,7948],[6,-25]],[[5363,8229],[2,0]],[[5363,8229],[4,-14]],[[5365,8229],[4,-14]],[[21498,13145],[151,378],[138,-201],[196,187],[344,22]],[[21498,13145],[382,-211],[194,-471]],[[17688,12160],[-16,-56]],[[17688,12160],[53,-64]],[[4576,7926],[4,-13]],[[4792,8004],[0,-8]],[[4777,7997],[-4,-29]],[[5367,8215],[2,0]],[[5367,8215],[9,-16]],[[6209,8521],[-130,4]],[[6209,8521],[-55,-124]],[[5369,8215],[8,-15]],[[5205,8153],[140,-305]],[[5050,8094],[0,12]],[[5050,8094],[2,-10]],[[4612,7931],[-13,-8]],[[4612,7931],[-13,-8]],[[4619,7932],[-7,-1]],[[4619,7932],[-2,-2]],[[4792,7996],[-1,-9]],[[4792,7996],[-3,-11]],[[4617,7930],[-4,-2]],[[4599,7923],[0,0]],[[4599,7923],[0,0]],[[4599,7923],[-13,-11]],[[4599,7923],[0,0]],[[4599,7923],[0,0]],[[4613,7928],[-11,-18]],[[4613,7928],[-11,-18]],[[4580,7913],[0,0]],[[4580,7913],[-7,-12]],[[4124,7741],[13,-155]],[[4627,7929],[-8,3]],[[4627,7929],[-2,-1]],[[4625,7928],[-8,2]],[[4585,7912],[-5,1]],[[4585,7912],[-9,-12]],[[4586,7912],[-1,0]],[[4732,7966],[-9,-11]],[[5052,8084],[-5,-2]],[[5052,8084],[15,-12]],[[4791,7987],[0,0]],[[4791,7987],[6,13]],[[4791,7987],[0,0]],[[18954,12473],[-63,538]],[[18954,12473],[221,-100],[192,283]],[[4791,7987],[-2,-2]],[[4789,7985],[-2,-6]],[[4789,7985],[-2,-6]],[[5377,8200],[-1,-1]],[[5377,8200],[4,-9]],[[5376,8199],[3,-8]],[[4573,7901],[0,-2]],[[4573,7901],[-12,-9]],[[4795,7983],[-4,4]],[[4602,7910],[-16,2]],[[4573,7899],[-7,-8]],[[4787,7979],[-14,-11]],[[4723,7955],[0,0]],[[4723,7955],[-14,-23]],[[4576,7900],[-3,-1]],[[4576,7900],[-10,-9]],[[5382,8198],[2,-12]],[[4557,7891],[-6,-2]],[[4557,7891],[-8,-8]],[[4551,7889],[-5,-5]],[[4551,7889],[-5,-5]],[[4676,7935],[-22,-11]],[[4637,7921],[-12,7]],[[4561,7892],[-4,-1]],[[4642,7922],[-15,7]],[[4642,7922],[-2,-2]],[[4640,7920],[-3,1]],[[4773,7968],[-19,-18]],[[4566,7891],[-2,-2]],[[4546,7884],[-7,-21]],[[4654,7924],[0,0]],[[4654,7924],[-7,-6]],[[4564,7889],[-3,3]],[[4564,7889],[-15,-6]],[[4549,7883],[-10,-20]],[[5379,8191],[2,0]],[[5379,8191],[3,-6]],[[5381,8191],[2,-5]],[[20427,12836],[-256,-203]],[[20427,12836],[-80,-261]],[[4642,7917],[-5,4]],[[4642,7917],[-2,3]],[[4647,7918],[-5,-1]],[[4647,7918],[-5,4]],[[5067,8072],[-13,20]],[[5067,8072],[21,-90]],[[17451,12052],[-76,117]],[[17451,12052],[9,105]],[[5383,8186],[1,0]],[[5383,8186],[-1,-1]],[[5384,8186],[4,-4]],[[5382,8185],[6,-4]],[[4754,7950],[-17,-8]],[[4754,7950],[-17,-8]],[[4737,7942],[-20,-8]],[[4671,7918],[-17,6]],[[4717,7934],[-20,-11]],[[4717,7934],[-20,-11]],[[5388,8182],[0,-1]],[[5388,8182],[3,-2]],[[5388,8181],[3,-2]],[[4534,7863],[-14,-6]],[[4534,7863],[-2,-2]],[[5391,8180],[9,13]],[[5391,8180],[0,-1]],[[4520,7857],[-37,-69]],[[4532,7861],[-12,-4]],[[4697,7923],[-18,-8]],[[4539,7863],[-5,0]],[[4539,7863],[-7,-2]],[[5391,8179],[-22,-120]],[[4679,7915],[-8,3]],[[4679,7915],[-8,3]],[[16635,11812],[197,-26]],[[16635,11812],[-69,-193]],[[17447,12029],[4,23]],[[18473,12302],[-39,289]],[[17441,12018],[74,-14]],[[17370,11998],[144,88]],[[17370,11998],[130,-181]],[[17638,12056],[26,21]],[[17638,12056],[99,-44]],[[22618,13317],[-103,-346],[-249,68]],[[22776,13348],[147,-90]],[[5367,8124],[2,-65]],[[4483,7788],[-6,-2]],[[4483,7788],[-6,-2]],[[4477,7786],[-16,-14]],[[4477,7786],[-7,-7]],[[4470,7779],[-10,-13]],[[4470,7779],[-9,-7]],[[6154,8397],[-347,-134]],[[6154,8397],[-71,-143]],[[1658,6691],[23,155]],[[4461,7772],[-1,-6]],[[6153,8390],[99,-222]],[[4460,7766],[-2,-21]],[[17189,11898],[-195,49]],[[17189,11898],[-18,131]],[[21311,12963],[187,182]],[[21311,12963],[196,-227],[36,-678]],[[5088,7982],[1,-3]],[[5088,7982],[1,-3]],[[16832,11786],[106,45]],[[16832,11786],[40,-98]],[[4458,7745],[-1,-3]],[[4458,7745],[0,-4]],[[5089,7979],[2,-8]],[[4457,7742],[1,-1]],[[4457,7742],[2,-9]],[[1665,6663],[-7,28]],[[1665,6663],[-7,28]],[[5357,8075],[8,-19]],[[4458,7741],[1,-8]],[[5068,7965],[49,-83]],[[5091,7971],[0,-7]],[[5091,7971],[0,-7]],[[21224,12922],[87,41]],[[21224,12922],[70,-185]],[[4459,7733],[-93,-329]],[[5091,7964],[-1,-7]],[[5090,7957],[2,-6]],[[5090,7957],[2,-6]],[[5369,8059],[0,0]],[[5369,8059],[-16,-29]],[[17618,11975],[20,81]],[[17618,11975],[52,-110]],[[5092,7951],[2,-8]],[[17974,12067],[-67,83]],[[4137,7586],[0,0]],[[4137,7586],[2,-4]],[[3235,7243],[5,-45]],[[5094,7943],[5,-12]],[[5094,7943],[5,-12]],[[4139,7582],[3,-8]],[[4139,7582],[3,-8]],[[5353,8030],[-4,-8]],[[5353,8030],[-4,-8]],[[4142,7574],[2,-5]],[[5099,7931],[19,-44]],[[5349,8022],[-4,-174]],[[4144,7569],[-1,-9]],[[4144,7569],[-1,-9]],[[4143,7560],[-8,-17]],[[17605,11923],[-56,130]],[[17605,11923],[6,0]],[[17611,11923],[7,52]],[[17611,11923],[20,-27]],[[3251,7208],[-11,-10]],[[4135,7543],[13,-14]],[[4135,7543],[13,-14]],[[3240,7198],[-1,-4]],[[5078,7891],[41,-18]],[[17586,11904],[19,19]],[[17586,11904],[26,-43]],[[6083,8254],[-66,-108]],[[6083,8254],[146,-125]],[[17031,11749],[-1,67]],[[16566,11619],[-36,-11]],[[16566,11619],[75,-150]],[[20076,12557],[-28,-212]],[[16530,11608],[-69,36]],[[16530,11608],[-52,-122]],[[666,6172],[54,282],[301,195]],[[4148,7529],[33,-59]],[[673,6165],[-7,7]],[[17833,11956],[200,-317]],[[5118,7887],[-20,24]],[[5118,7887],[-1,-5]],[[17548,11875],[-22,103]],[[17548,11875],[38,29]],[[5117,7882],[0,0]],[[5117,7882],[39,-73]],[[693,6145],[-20,20]],[[693,6145],[-20,20]],[[17244,11766],[-55,132]],[[17244,11766],[134,86]],[[17500,11817],[48,58]],[[17500,11817],[5,-10]],[[3231,7120],[-6,-21]],[[16004,11393],[-77,137]],[[16004,11393],[21,18]],[[17505,11807],[156,39]],[[17505,11807],[96,-80]],[[17084,11691],[-53,58]],[[17084,11691],[-83,-25]],[[4181,7470],[0,-14]],[[4181,7470],[1,-16]],[[6017,8146],[-348,54]],[[6017,8146],[-87,-123]],[[21035,12714],[-97,-312]],[[16226,11435],[-66,51]],[[16226,11435],[-4,-83]],[[4181,7456],[-2,-18]],[[4181,7456],[1,-2]],[[16354,11466],[-77,109]],[[16354,11466],[-128,-31]],[[4182,7454],[-3,-16]],[[15989,11354],[-79,149]],[[15989,11354],[15,39]],[[5156,7809],[2,-3]],[[3224,7079],[29,-73]],[[5158,7806],[3,-8]],[[5158,7806],[3,-8]],[[16478,11486],[-93,-41]],[[16478,11486],[83,-113]],[[5137,7797],[19,12]],[[4179,7438],[0,-6]],[[4179,7432],[1,-9]],[[4179,7432],[1,-9]],[[5161,7798],[29,-36]],[[16385,11445],[-31,21]],[[16385,11445],[2,-25]],[[4180,7423],[-5,-33]],[[21294,12736],[-123,-355]],[[4973,7712],[-46,-284]],[[5345,7848],[-2,-64]],[[5149,7768],[15,20]],[[17252,11662],[-168,29]],[[17252,11662],[-8,104]],[[16387,11420],[35,-95]],[[4175,7390],[-5,-12]],[[4175,7390],[-5,-12]],[[5190,7762],[3,-2]],[[5190,7762],[3,-2]],[[4170,7378],[-8,-19]],[[5193,7760],[7,-7]],[[4232,7401],[-13,-7]],[[4219,7394],[-9,-22]],[[4219,7394],[-9,-22]],[[4235,7399],[-3,2]],[[4245,7401],[-13,0]],[[4245,7401],[-1,-7]],[[16222,11352],[-92,35]],[[16222,11352],[-10,-30]],[[4251,7403],[-6,-2]],[[5930,8023],[-206,-96]],[[4255,7401],[-4,2]],[[5200,7753],[4,-2]],[[5200,7753],[4,-2]],[[4244,7394],[-9,5]],[[4244,7394],[-9,5]],[[4254,7398],[-3,5]],[[4254,7398],[1,3]],[[5204,7751],[94,-74]],[[4257,7396],[-2,5]],[[4257,7396],[-3,2]],[[4162,7359],[-1,-4]],[[4162,7359],[-1,-4]],[[4249,7390],[-5,4]],[[4161,7355],[-1,-5]],[[7018,8401],[-32,-133]],[[7018,8401],[-411,-224]],[[5597,7888],[-331,-383]],[[4210,7372],[-13,-48]],[[3253,7006],[22,-5]],[[3253,7006],[5,-9]],[[4663,7541],[-211,-249]],[[4261,7389],[-12,1]],[[4261,7389],[-12,1]],[[4267,7391],[-6,-2]],[[4267,7391],[-6,-2]],[[4160,7350],[-2,-6]],[[4160,7350],[-2,-6]],[[4273,7392],[-6,-1]],[[4273,7392],[-16,4]],[[4158,7344],[0,-2]],[[5343,7784],[-1,-6]],[[5343,7784],[-1,-6]],[[4158,7342],[0,-5]],[[4158,7342],[0,-5]],[[16212,11322],[-76,13]],[[16212,11322],[-117,-55]],[[3258,6997],[-5,-13]],[[3258,6997],[11,-16]],[[3275,7001],[-6,-20]],[[4158,7337],[-1,-31]],[[16303,11344],[84,76]],[[5342,7778],[-2,-9]],[[4308,7390],[-1,-2]],[[4313,7391],[-5,-1]],[[4313,7391],[-5,-1]],[[4307,7388],[-15,-7]],[[4307,7388],[-14,-9]],[[4281,7377],[-8,15]],[[4281,7377],[0,0]],[[4292,7381],[-5,-3]],[[4292,7381],[1,-2]],[[4287,7378],[-6,-1]],[[3253,6984],[-51,-32]],[[4293,7379],[-6,-1]],[[4322,7390],[-9,1]],[[4322,7390],[-9,1]],[[5340,7769],[-1,-7]],[[5340,7769],[-1,-7]],[[4354,7401],[-13,-6]],[[4354,7401],[-13,-6]],[[4358,7402],[-4,-1]],[[4365,7404],[-7,-2]],[[4365,7404],[-7,-2]],[[4341,7395],[-19,-5]],[[4366,7404],[-1,0]],[[4366,7404],[-12,-3]],[[5339,7762],[-3,-45]],[[3269,6981],[-16,3]],[[21508,12690],[-51,-322]],[[20326,12394],[-116,-385]],[[4197,7324],[-6,-13]],[[4197,7324],[-7,-11]],[[4157,7306],[-10,-10]],[[4157,7306],[-10,-10]],[[4190,7313],[-2,-4]],[[4190,7313],[1,-2]],[[4147,7296],[-8,-14]],[[4147,7296],[-8,-12]],[[18150,11817],[-176,250]],[[4191,7311],[-2,-4]],[[4188,7309],[-4,-7]],[[4188,7309],[1,-2]],[[4189,7307],[-5,-5]],[[4184,7302],[-2,-2]],[[4139,7284],[-11,-13]],[[4139,7284],[0,-2]],[[4182,7300],[-3,-3]],[[4182,7300],[-2,-6]],[[4179,7297],[-4,-11]],[[4179,7297],[1,-3]],[[4139,7282],[-11,-11]],[[15917,11186],[72,168]],[[15917,11186],[47,-40]],[[4180,7294],[-2,-7]],[[4128,7271],[2,-9]],[[4178,7287],[-3,-1]],[[4178,7287],[-1,-10]],[[4175,7286],[2,-9]],[[5336,7717],[-5,-6]],[[5336,7717],[-5,-6]],[[6607,8177],[-197,10]],[[6607,8177],[-405,-132]],[[5331,7711],[-2,-14]],[[4130,7262],[2,-16]],[[4130,7262],[2,-16]],[[17212,11533],[-219,64]],[[17212,11533],[40,129]],[[4177,7277],[-1,-7]],[[4176,7270],[-3,-18]],[[4176,7270],[-1,-16]],[[5329,7697],[-2,-6]],[[5329,7697],[-2,-6]],[[20769,12456],[-9,-13]],[[4132,7246],[28,-42]],[[5327,7691],[-10,-35]],[[17748,11662],[-36,22]],[[5298,7677],[7,-2]],[[5298,7677],[7,-2]],[[20760,12443],[-364,-16]],[[20760,12443],[-215,-283]],[[4175,7254],[-2,-2]],[[4175,7254],[-7,-16]],[[5305,7675],[12,-19]],[[4173,7252],[-5,-14]],[[4168,7238],[0,-1]],[[4168,7237],[-3,-1]],[[4168,7237],[-8,-17]],[[4165,7236],[-5,-11]],[[4165,7236],[-5,-11]],[[6986,8268],[-151,-227]],[[6986,8268],[25,-129]],[[4160,7225],[0,-5]],[[5317,7656],[-48,-136]],[[17472,11555],[23,146]],[[17472,11555],[68,-38]],[[4160,7220],[0,-16]],[[17937,11675],[-17,17]],[[17937,11675],[-189,-13]],[[4160,7204],[23,-42]],[[491,5751],[-36,427],[211,-6]],[[3388,6890],[-113,111]],[[4452,7292],[-2,-4]],[[4452,7292],[-2,-4]],[[4450,7288],[-169,89]],[[535,5755],[-44,-4]],[[541,5756],[-6,-1]],[[541,5756],[1,-2]],[[17197,11435],[15,98]],[[17197,11435],[275,120]],[[542,5754],[-7,1]],[[546,5755],[-5,1]],[[546,5755],[-4,-1]],[[20938,12402],[-114,-475]],[[20938,12402],[83,-760]],[[18298,11714],[133,604],[158,-60],[365,215]],[[18298,11714],[-148,103]],[[4183,7162],[5,-11]],[[4183,7162],[5,-11]],[[18033,11639],[-96,36]],[[18033,11639],[222,-75]],[[4913,7430],[-63,-60]],[[4918,7429],[-5,1]],[[4918,7429],[-5,1]],[[4927,7428],[-9,1]],[[4188,7151],[13,-24]],[[5199,7513],[-12,-6]],[[5199,7513],[-12,-6]],[[5154,7495],[-108,-128]],[[5161,7498],[-7,-3]],[[5161,7498],[-7,-3]],[[5187,7507],[-26,-9]],[[17191,11379],[6,56]],[[17191,11379],[146,-243]],[[4837,7367],[13,3]],[[4837,7367],[-170,-104]],[[4201,7127],[3,-7]],[[4201,7127],[3,-7]],[[4850,7370],[-13,-3]],[[5269,7520],[-2,-9]],[[5269,7520],[-2,-9]],[[4204,7120],[10,1]],[[4214,7121],[6,1]],[[4214,7121],[6,1]],[[4220,7122],[-14,-119]],[[5267,7511],[-1,-6]],[[5266,7505],[-67,8]],[[1511,6056],[-173,264],[91,493]],[[4667,7263],[-4,-6]],[[4667,7263],[-4,-6]],[[4663,7257],[-5,-2]],[[4658,7255],[-15,-6]],[[4658,7255],[-15,-6]],[[4643,7249],[-1,-17]],[[6835,8041],[131,-160],[-151,-179]],[[6835,8041],[-289,-143]],[[4642,7232],[1,-14]],[[4642,7232],[1,-14]],[[17558,11401],[-80,-144]],[[4643,7218],[-170,-152]],[[5046,7367],[-11,-5]],[[5046,7367],[-11,-5]],[[5035,7362],[-108,66]],[[6546,7898],[-327,-376]],[[6546,7898],[-107,-321]],[[18255,11564],[43,150]],[[21457,12368],[-107,-207]],[[21457,12368],[-191,-262]],[[4206,7003],[-6,-6]],[[4206,7003],[-6,-6]],[[4200,6997],[-34,-66]],[[4473,7066],[-2,-8]],[[4473,7066],[1,-15]],[[20210,12009],[-135,-57]],[[4471,7058],[3,-7]],[[4471,7058],[3,-8]],[[4474,7051],[0,-1]],[[4474,7050],[-10,-10]],[[4166,6931],[-263,-373]],[[4464,7040],[-6,-34]],[[4464,7040],[-6,-34]],[[20075,11952],[0,0]],[[20075,11952],[223,-43]],[[17011,11134],[180,245]],[[17011,11134],[115,-240]],[[510,5467],[-19,284]],[[4458,7006],[1,-7]],[[4459,6999],[-6,-15]],[[4459,6999],[-6,-15]],[[4453,6984],[-3,-4]],[[4450,6980],[8,-29]],[[4450,6980],[3,-24]],[[612,5466],[-102,1]],[[4453,6956],[0,-17]],[[4453,6956],[5,-5]],[[4458,6951],[-5,-12]],[[4453,6939],[6,-24]],[[16061,10768],[64,319]],[[938,5548],[-279,505],[34,92]],[[956,5550],[-18,-2]],[[956,5550],[-18,-2]],[[4459,6915],[-10,-20]],[[4459,6915],[-2,-13]],[[875,5507],[-329,248]],[[4457,6902],[-8,-7]],[[4457,6902],[-8,-26]],[[4449,6895],[0,-19]],[[4449,6876],[-13,-25]],[[4436,6851],[0,-8]],[[4436,6851],[0,-8]],[[1134,5557],[-178,-7]],[[4436,6843],[-1,-34]],[[514,5303],[-4,164]],[[16072,10677],[-241,351],[86,158]],[[16072,10677],[720,237],[219,220]],[[6203,7481],[-208,-356]],[[6203,7481],[2,-53]],[[6208,7483],[-5,-2]],[[6815,7702],[-125,-204],[31,-494]],[[6815,7702],[92,-234]],[[4435,6809],[-5,-6]],[[4435,6809],[-5,-6]],[[20824,11927],[-77,-109]],[[20824,11927],[-8,-376]],[[4430,6803],[-2,-1]],[[4428,6802],[-2,-10]],[[4428,6802],[-2,-10]],[[1469,5652],[-262,468],[-146,501]],[[20145,11744],[47,-177]],[[4426,6792],[-9,-6]],[[4417,6786],[-3,-12]],[[4417,6786],[-3,-12]],[[705,5332],[-191,-29]],[[1474,5638],[-5,14]],[[1473,5637],[-4,15]],[[4414,6774],[-10,-56]],[[3903,6558],[-163,-256],[-284,527]],[[4286,6701],[-120,230]],[[17773,11078],[53,-92]],[[4293,6695],[-7,6]],[[4293,6695],[-7,6]],[[4297,6691],[-4,4]],[[4298,6690],[-5,5]],[[4298,6690],[-1,1]],[[4302,6688],[-5,3]],[[4302,6688],[-4,2]],[[17365,10948],[254,-77]],[[4509,6761],[-12,-5]],[[4509,6761],[-12,-5]],[[4497,6756],[-34,-20]],[[4404,6718],[-3,-7]],[[4404,6718],[-3,-7]],[[4463,6736],[-2,-10]],[[4463,6736],[-2,-10]],[[4528,6760],[-19,1]],[[4401,6711],[-7,-9]],[[4535,6759],[-7,1]],[[4535,6759],[-7,1]],[[20747,11818],[-79,-62]],[[20747,11818],[-280,-100]],[[4394,6702],[-1,-5]],[[4394,6702],[-1,-5]],[[4461,6726],[-52,-76]],[[4393,6697],[-12,-13]],[[4381,6684],[-6,-9]],[[4381,6684],[-6,-9]],[[4611,6770],[-5,-9]],[[4611,6770],[-5,-9]],[[4375,6675],[-73,13]],[[4606,6761],[-71,-2]],[[20635,11766],[-139,0]],[[4409,6650],[-3,-10]],[[4409,6650],[-3,-10]],[[4406,6640],[-118,-448],[98,-160],[-100,-511]],[[17886,11003],[369,561]],[[17886,11003],[-60,-17]],[[17826,10986],[-207,-115]],[[5033,6855],[-187,-151],[-235,66]],[[2506,5887],[44,-5]],[[5654,7070],[-9,-37]],[[2550,5882],[72,-54]],[[17619,10871],[38,-591],[-125,-29]],[[5645,7033],[-17,-53]],[[2395,5791],[17,5]],[[2377,5782],[35,14]],[[2412,5796],[40,-7]],[[2414,5795],[16,7]],[[5675,7031],[-30,2]],[[2385,5777],[10,14]],[[6907,7468],[224,18]],[[6907,7468],[10,-52]],[[20014,11472],[31,-6]],[[2452,5789],[-11,-2]],[[2452,5789],[98,93]],[[19409,11311],[199,219],[116,420],[197,139],[154,-137]],[[5628,6980],[5,3]],[[5628,6980],[-129,-179]],[[2307,5709],[78,68]],[[2541,5798],[81,30]],[[2622,5828],[2,-1]],[[2624,5827],[31,-13]],[[3826,6282],[93,-35]],[[6917,7416],[-129,-47]],[[6917,7416],[24,-49]],[[2628,5805],[-4,22]],[[2628,5805],[-22,-149],[531,-771],[179,-135],[337,-612],[-127,627]],[[2655,5814],[-27,-9]],[[2418,5701],[2,19]],[[20976,11629],[-160,-78]],[[20505,11496],[-106,174]],[[5437,6823],[-27,-25]],[[5409,6813],[1,-15]],[[6941,7367],[126,-156]],[[6941,7367],[-121,-326]],[[6443,7186],[57,-147]],[[448,4872],[66,431]],[[5410,6798],[-31,-76]],[[20816,11551],[119,-135]],[[5325,6755],[50,-50]],[[14787,9899],[293,234],[89,-76],[467,237],[-5,129],[441,254]],[[2451,5652],[-35,142]],[[5499,6801],[-3,-7]],[[5499,6801],[-3,-7]],[[1025,5070],[-49,-56]],[[5496,6794],[-1,-1]],[[5495,6793],[-6,-14]],[[5495,6793],[-6,-14]],[[1700,5335],[-189,720]],[[1832,5388],[-95,555],[-129,279],[57,441]],[[6204,7051],[-14,-72]],[[2466,5630],[-15,22]],[[2466,5630],[-15,22]],[[5355,6730],[24,-8]],[[5489,6779],[-4,-34]],[[952,5018],[-5,2]],[[952,5018],[-39,-43]],[[952,5017],[0,1]],[[945,5014],[2,6]],[[956,5015],[-4,2]],[[956,5015],[-4,2]],[[2179,5504],[128,205]],[[18526,10908],[-118,209],[-305,-238],[-217,124]],[[18526,10908],[222,178],[173,-83],[207,236],[281,72]],[[958,5014],[-2,1]],[[21423,11648],[-127,293]],[[21423,11648],[-163,-13]],[[5379,6722],[-4,-17]],[[976,5014],[-2,-7]],[[976,5014],[-2,-7]],[[5926,6921],[-126,16]],[[966,5008],[-8,6]],[[966,5008],[-8,6]],[[974,5007],[-8,1]],[[913,4975],[-465,-103]],[[5375,6705],[-1,-1]],[[21840,11728],[29,380]],[[21840,11728],[60,-24]],[[5344,6657],[7,-12]],[[1780,5267],[-80,68]],[[5306,6613],[20,-8]],[[6500,7039],[-93,-154]],[[6500,7039],[44,-98]],[[961,4914],[-48,61]],[[961,4914],[-6,-15]],[[2548,5519],[-82,111]],[[990,4883],[-29,31]],[[21029,11412],[-4,54]],[[6246,6897],[9,-62]],[[20581,11292],[0,0]],[[993,4870],[-3,13]],[[993,4870],[-3,13]],[[5339,6544],[-1,-2]],[[2484,5453],[-28,171]],[[2338,5384],[50,396]],[[20121,11127],[121,97]],[[2323,5354],[15,30]],[[6820,7041],[-56,-109]],[[6820,7041],[-21,-144]],[[6544,6941],[120,-186]],[[6544,6941],[-74,-321]],[[6255,6835],[-9,-13]],[[6255,6835],[40,-23]],[[21129,11353],[184,90],[256,-196]],[[21129,11353],[-36,-29]],[[2285,5309],[38,45]],[[2284,5308],[1,1]],[[2349,5326],[-26,28]],[[6369,6840],[-38,-118]],[[21093,11324],[-53,73]],[[21093,11324],[-27,-28]],[[3252,5651],[-597,163]],[[2200,5215],[7,-8]],[[2155,5189],[28,-4]],[[21630,11392],[-207,256]],[[21630,11392],[210,336]],[[2183,5185],[101,123]],[[682,4570],[-161,-110]],[[20867,11181],[19,5]],[[2485,5268],[-147,116]],[[8027,7323],[-412,-546]],[[8027,7323],[334,-689]],[[492,4455],[-14,-20]],[[515,4462],[-23,-7]],[[515,4462],[6,-2]],[[14712,9465],[279,89],[280,-200],[349,67],[360,-288]],[[521,4460],[-6,2]],[[2120,5104],[11,1]],[[2131,5105],[52,80]],[[478,4435],[14,20]],[[478,4435],[-14,-7]],[[464,4428],[-16,444]],[[7382,7068],[-290,75]],[[7382,7068],[-385,-79]],[[1320,4772],[-327,98]],[[6151,6580],[-188,265]],[[6664,6755],[148,87]],[[6664,6755],[-71,-352]],[[21569,11247],[61,145]],[[2145,5004],[-14,101]],[[1456,4700],[-31,27]],[[1458,4697],[-2,3]],[[1458,4697],[-40,7]],[[1478,4693],[-22,7]],[[1478,4693],[-20,4]],[[1501,4695],[-23,-2]],[[1501,4695],[-23,6]],[[1513,4699],[-3,-6]],[[1510,4693],[-9,2]],[[1513,4692],[-3,1]],[[1527,4695],[-14,4]],[[1527,4695],[-14,-3]],[[1537,4698],[-24,1]],[[1537,4698],[-10,-3]],[[6414,6540],[-69,-149]],[[2369,5003],[31,-5]],[[1544,4666],[-7,32]],[[1544,4666],[-31,26]],[[1548,4662],[-4,4]],[[2400,4998],[17,40]],[[1571,4661],[-23,1]],[[1571,4661],[-23,1]],[[1572,4657],[-1,4]],[[2395,4971],[5,27]],[[1078,4431],[-307,-253]],[[17121,9906],[1,22]],[[17121,9906],[3,-7]],[[17124,9899],[-3,7]],[[17124,9899],[0,-3]],[[17124,9896],[0,3]],[[17124,9896],[4,-14]],[[1591,4626],[-19,31]],[[1591,4626],[-4,-3]],[[1576,4619],[-4,38]],[[1587,4623],[-11,-4]],[[2431,4954],[-36,17]],[[1611,4622],[-20,4]],[[1611,4622],[-24,1]],[[17128,9882],[-4,14]],[[17128,9882],[2,-4]],[[1615,4619],[-4,3]],[[17130,9878],[-2,4]],[[17130,9878],[0,-1]],[[17130,9877],[0,1]],[[17130,9877],[0,0]],[[17130,9877],[0,0]],[[17130,9877],[2,-4]],[[1621,4615],[-6,4]],[[1621,4615],[-6,4]],[[1642,4622],[-14,-6]],[[1642,4622],[-14,-6]],[[1628,4616],[-7,-1]],[[17132,9873],[-2,4]],[[17132,9873],[3,-3]],[[17135,9870],[-3,3]],[[17135,9870],[1,-1]],[[17136,9869],[-1,1]],[[17136,9869],[2,-2]],[[17138,9867],[-2,2]],[[17138,9867],[0,0]],[[17138,9867],[0,0]],[[17138,9867],[3,-1]],[[17141,9866],[-3,1]],[[17141,9866],[1,0]],[[17142,9866],[-1,0]],[[17142,9866],[8,-9]],[[2325,4872],[70,99]],[[17150,9857],[-8,9]],[[1791,4655],[-149,-33]],[[544,4148],[-34,-28]],[[5224,5976],[-48,-67]],[[1477,4517],[-492,-330]],[[20608,10758],[-253,181]],[[20608,10758],[62,464],[-89,70]],[[17068,9817],[-126,86]],[[17068,9817],[-149,-138]],[[510,4120],[-46,308]],[[560,4137],[-16,11]],[[560,4137],[-16,11]],[[628,4162],[-68,-25]],[[20269,10659],[215,-4]],[[650,4165],[-22,-3]],[[650,4165],[-6,-12]],[[644,4153],[-16,9]],[[7410,6736],[-371,-363]],[[667,4150],[-17,15]],[[5176,5909],[-5,-4]],[[5176,5909],[-5,-4]],[[5171,5905],[-46,-124]],[[771,4178],[-104,-28]],[[7615,6777],[-233,291]],[[7615,6777],[-138,-185]],[[7431,6709],[-21,27]],[[7431,6709],[-21,27]],[[20484,10655],[-184,-19]],[[20484,10655],[118,-54]],[[1788,4556],[-212,63]],[[1793,4556],[-5,0]],[[1786,4549],[2,7]],[[4286,5521],[-10,-77]],[[2010,4627],[-14,-26]],[[6588,6351],[-59,-85]],[[1996,4601],[0,0]],[[1996,4601],[-205,54]],[[7447,6650],[-34,-421]],[[17757,9882],[551,424],[218,602]],[[17757,9882],[171,-241]],[[985,4187],[-214,-9]],[[7456,6641],[-9,9]],[[7456,6641],[-9,9]],[[7456,6632],[0,9]],[[7456,6632],[-25,77]],[[5125,5781],[-8,-16]],[[5125,5781],[-8,-16]],[[1866,4520],[-75,135]],[[20602,10601],[6,157]],[[5117,5765],[-15,-140]],[[1871,4508],[-5,12]],[[4276,5444],[-121,-10],[5,898],[-257,226]],[[21248,10752],[-153,38]],[[20884,10657],[71,-183],[443,51]],[[1883,4503],[-12,5]],[[1883,4503],[-17,17]],[[21483,10803],[86,444]],[[21483,10803],[192,-43]],[[1885,4499],[-2,4]],[[4309,5438],[-23,83]],[[4309,5438],[-33,6]],[[7471,6597],[-15,35]],[[1885,4492],[-14,16]],[[1885,4492],[0,7]],[[17541,9762],[-473,55]],[[17541,9762],[216,120]],[[7477,6592],[-6,5]],[[7477,6592],[-6,5]],[[1903,4481],[-18,18]],[[1903,4481],[-18,11]],[[2103,4550],[0,0]],[[2103,4550],[-107,51]],[[1932,4477],[-29,4]],[[2111,4541],[-8,9]],[[1938,4469],[-6,8]],[[1938,4469],[-6,8]],[[1497,4284],[-85,-53]],[[1708,4361],[39,-106],[-333,-252]],[[1075,4104],[-90,83]],[[1081,4104],[-6,0]],[[1081,4104],[-6,0]],[[524,3875],[-14,245]],[[1101,4106],[-20,-2]],[[7039,6373],[-158,254]],[[7039,6373],[-104,-115]],[[1412,4231],[-5,-11]],[[1412,4231],[-5,-11]],[[1110,4105],[-9,1]],[[1110,4105],[-9,1]],[[2228,4552],[-10,-27]],[[1407,4220],[-193,-132]],[[2218,4525],[-115,25]],[[1949,4413],[-11,56]],[[5102,5625],[20,3]],[[5102,5625],[6,-40]],[[5122,5628],[-14,-43]],[[5122,5628],[-3,-6]],[[5119,5622],[0,0]],[[1226,4096],[-12,-8]],[[1214,4088],[-104,17]],[[1250,4094],[-11,-9]],[[6278,6024],[52,-82]],[[1239,4085],[-13,11]],[[1239,4085],[-13,11]],[[6935,6258],[-176,76]],[[6935,6258],[-123,-178]],[[728,3875],[-2,-8]],[[728,3875],[-2,-8]],[[1270,4094],[-20,0]],[[1270,4094],[-20,0]],[[5108,5585],[23,-36]],[[2258,4487],[6,17]],[[2047,4403],[-98,10]],[[726,3867],[-82,286]],[[1911,4324],[38,89]],[[1332,4091],[-15,-15]],[[1332,4091],[-15,-15]],[[576,3778],[-52,97]],[[2313,4477],[-5,-8]],[[1910,4315],[1,9]],[[1910,4315],[1,9]],[[1317,4076],[-47,18]],[[2308,4469],[-90,56]],[[2310,4468],[-2,1]],[[15980,9133],[421,52]],[[15980,9133],[-161,-404]],[[5131,5549],[38,-106]],[[2307,4449],[3,19]],[[20566,10341],[-234,178]],[[20566,10341],[36,260]],[[6359,5968],[-29,-26]],[[17928,9641],[173,-53],[44,-448]],[[17928,9641],[-27,-256]],[[6330,5942],[0,0]],[[6330,5942],[15,-202]],[[1920,4256],[-10,59]],[[21398,10525],[85,278]],[[16401,9185],[96,79],[288,-330]],[[16401,9185],[109,-106],[-153,-376]],[[8361,6634],[-220,-373]],[[8361,6634],[113,-342],[438,-29]],[[6812,6080],[-128,153]],[[6812,6080],[-2,-129]],[[16064,9071],[-191,-342]],[[1414,4003],[-82,88]],[[5169,5443],[1,-9]],[[5169,5443],[1,-9]],[[5155,5433],[-5,-4]],[[5155,5433],[-5,-4]],[[5150,5429],[0,0]],[[5150,5429],[-4,-8]],[[5150,5429],[-4,-8]],[[5170,5434],[-15,-1]],[[1452,3989],[-38,14]],[[5146,5421],[-1,-3]],[[5145,5418],[-9,-10]],[[5145,5418],[-9,-10]],[[6167,5795],[8,-102]],[[20537,10230],[-297,131]],[[20537,10230],[29,111]],[[1459,3980],[-7,9]],[[5136,5408],[-90,-236],[54,-333]],[[1463,3979],[-4,1]],[[1463,3979],[-11,10]],[[530,3594],[-6,281]],[[7413,6229],[-183,-207]],[[7413,6229],[209,-357]],[[20539,10209],[-2,21]],[[20539,10209],[197,92]],[[17496,9398],[45,364]],[[17496,9398],[75,-119]],[[1485,3961],[-26,19]],[[1485,3961],[-22,18]],[[1490,3959],[-5,2]],[[1502,3964],[-12,-5]],[[1502,3964],[-6,-4]],[[1496,3960],[0,0]],[[1496,3960],[-6,-1]],[[1780,4074],[-25,-63]],[[2461,4337],[-151,131]],[[640,3602],[-110,-8]],[[1562,3970],[0,0]],[[1562,3970],[-13,-7]],[[1571,3972],[-22,-9]],[[1571,3972],[-9,-2]],[[1549,3963],[-47,1]],[[1623,3988],[-52,-16]],[[5609,5520],[-237,-101]],[[1634,3985],[-11,3]],[[1634,3985],[-11,3]],[[1650,3990],[-9,-6]],[[1650,3990],[-4,-5]],[[1641,3984],[-7,1]],[[1646,3985],[0,0]],[[1646,3985],[-5,-1]],[[1679,3996],[-7,-4]],[[1679,3996],[-7,-4]],[[1672,3992],[-22,-2]],[[1704,4002],[-25,-6]],[[5372,5419],[-241,130]],[[1573,3946],[-11,24]],[[1755,4011],[0,0]],[[1755,4011],[-22,-10]],[[1733,4001],[-29,1]],[[1733,4001],[-29,1]],[[1672,3976],[-26,9]],[[1531,3917],[-35,43]],[[1930,4072],[-22,-153]],[[6175,5693],[-3,-6]],[[6175,5693],[-3,-6]],[[6172,5687],[19,-58]],[[16437,9018],[82,-303]],[[6345,5740],[0,0]],[[6345,5740],[-55,-59]],[[6090,5641],[49,-69]],[[1805,3991],[-7,-16]],[[536,3463],[-6,131]],[[6290,5681],[-133,-105]],[[16011,8846],[31,-266]],[[6499,5750],[-154,-10]],[[690,3505],[-154,-42]],[[5469,5367],[-97,52]],[[2202,4080],[9,-30]],[[6138,5572],[-5,-10]],[[6139,5572],[-1,0]],[[6139,5572],[1,-4]],[[6157,5576],[-17,-8]],[[6157,5576],[-24,-14]],[[6140,5568],[-2,4]],[[1446,3762],[-210,-80],[-180,164],[-328,29]],[[6133,5562],[-68,-148]],[[1880,3931],[-125,80]],[[1890,3930],[-10,1]],[[1890,3930],[-10,1]],[[1892,3929],[-2,1]],[[2211,4050],[74,-6]],[[1896,3921],[-4,8]],[[1896,3921],[-4,8]],[[8141,6261],[-48,-356]],[[8141,6261],[-49,-63]],[[650,3409],[-16,-8]],[[650,3409],[-27,-27]],[[634,3401],[-10,-16]],[[634,3401],[-10,-16]],[[2293,4067],[11,-27]],[[624,3385],[-1,-3]],[[623,3382],[-23,-33]],[[961,3512],[-257,-138]],[[2285,4044],[0,0]],[[2285,4044],[19,-4]],[[16266,8805],[-72,52]],[[16266,8805],[-22,81]],[[589,3347],[-62,-42]],[[589,3347],[-4,-6]],[[2304,4040],[44,-36]],[[591,3347],[-2,0]],[[600,3349],[-9,-2]],[[600,3349],[-9,-2]],[[8092,6198],[-103,59]],[[8092,6198],[-317,-570]],[[585,3341],[-11,-8]],[[2277,4020],[8,24]],[[20551,9947],[-12,262]],[[20551,9947],[25,2]],[[20576,9949],[149,166]],[[20576,9949],[309,38]],[[686,3371],[-36,38]],[[527,3305],[9,158]],[[698,3373],[-12,-2]],[[698,3373],[-2,-4]],[[704,3374],[-6,-1]],[[2365,4042],[-17,-38]],[[696,3369],[-10,2]],[[706,3372],[-2,2]],[[706,3372],[-10,-3]],[[16310,8789],[-44,16]],[[16310,8789],[-35,129]],[[20499,9914],[-19,137]],[[1985,3869],[-89,52]],[[6029,5410],[34,-13]],[[2348,4004],[60,-167]],[[2242,3960],[162,-250]],[[2374,4008],[-10,-33]],[[6065,5414],[0,-6]],[[6065,5414],[0,-6]],[[6065,5408],[-2,-11]],[[1753,3752],[-70,-40]],[[768,3348],[-7,-2]],[[768,3348],[-62,24]],[[1668,3711],[-24,-21]],[[6063,5397],[-26,-68]],[[1683,3712],[-15,-1]],[[1683,3712],[-15,-1]],[[20464,9854],[70,-19]],[[1644,3690],[-9,-6]],[[1644,3690],[-9,-6]],[[6985,5724],[-19,47]],[[6985,5724],[-32,-45]],[[1635,3684],[-5,-29]],[[776,3335],[-8,13]],[[776,3335],[-13,-4]],[[2140,3876],[71,174]],[[1630,3655],[-14,-25]],[[1630,3655],[-14,-25]],[[16332,8704],[-146,115]],[[6953,5679],[-21,11]],[[6953,5679],[-26,-40]],[[20534,9835],[17,112]],[[1537,3611],[-180,-241]],[[16357,8703],[-47,86]],[[16357,8703],[-120,-432]],[[16357,8703],[0,0]],[[1295,3504],[-53,-124]],[[1555,3608],[-18,3]],[[1555,3608],[-18,3]],[[1616,3630],[-61,-22]],[[6037,5329],[-1,-18]],[[6037,5329],[-1,-18]],[[1103,3411],[-143,-165]],[[6036,5311],[-121,-154]],[[871,3305],[-9,5]],[[871,3305],[-95,30]],[[660,3217],[-173,-119]],[[16519,8715],[161,-47]],[[16519,8715],[-45,-299]],[[7622,5872],[30,-212]],[[7622,5872],[-90,-116]],[[17914,9080],[164,-45]],[[18145,9140],[-106,45]],[[18145,9140],[-67,-105]],[[487,3098],[40,207]],[[2449,3872],[-41,-35]],[[8912,6263],[-4,-35]],[[8912,6263],[319,-426],[17,-428]],[[15918,8479],[-203,52]],[[15918,8479],[-85,225]],[[1242,3380],[-228,-138]],[[2408,3837],[16,-207]],[[1297,3390],[-10,-15]],[[1276,3379],[-25,-16]],[[5406,4984],[16,-110]],[[1307,3390],[-10,0]],[[7532,5756],[-23,-3]],[[7532,5756],[-72,166],[-200,-174],[-275,-24]],[[1277,3375],[-1,4]],[[1277,3375],[-15,-14]],[[960,3246],[-89,59]],[[1251,3363],[-7,3]],[[1251,3363],[-9,17]],[[1287,3375],[-11,4]],[[1287,3375],[-10,0]],[[1259,3361],[3,0]],[[1331,3388],[-24,2]],[[1331,3388],[-6,-6]],[[1325,3382],[-18,8]],[[5915,5157],[-108,-127]],[[17325,8839],[171,559]],[[1335,3379],[-38,11]],[[1335,3379],[-10,3]],[[18078,9035],[-13,-6]],[[1014,3242],[-17,8]],[[1014,3242],[-54,4]],[[5100,4839],[-8,-7]],[[5100,4839],[-8,-7]],[[5092,4832],[-38,-62]],[[1732,3525],[-84,-216]],[[1355,3369],[-20,10]],[[1355,3369],[-24,19]],[[1357,3370],[-2,-1]],[[6052,5181],[-28,-25]],[[5792,5082],[15,-52]],[[6571,5366],[-128,23]],[[8093,5905],[150,-125]],[[8093,5905],[-88,-416]],[[1399,3374],[-42,-4]],[[6016,5154],[-5,-2]],[[6016,5154],[-1,-2]],[[6001,5148],[-6,-3]],[[6001,5148],[-6,-3]],[[6011,5152],[-10,-4]],[[6024,5156],[-8,-2]],[[6024,5156],[0,0]],[[6024,5156],[-1,-3]],[[5995,5145],[-80,12]],[[6015,5152],[-4,0]],[[5099,4811],[-7,-3]],[[5092,4808],[-38,-38]],[[6023,5153],[-8,-1]],[[6028,5155],[-4,1]],[[6028,5155],[-5,-2]],[[451,2979],[36,119]],[[5110,4812],[-11,-1]],[[5110,4812],[-7,-4]],[[5103,4808],[-4,3]],[[5103,4808],[-11,0]],[[1415,3370],[-16,4]],[[6034,5150],[-6,5]],[[6039,5150],[-5,0]],[[1420,3365],[-21,9]],[[1420,3365],[-5,5]],[[7351,5622],[-99,-60]],[[6040,5145],[-6,5]],[[6040,5145],[-1,5]],[[6044,5144],[-5,6]],[[1425,3362],[-5,3]],[[1425,3362],[-10,8]],[[1448,3369],[1,-3]],[[6046,5142],[-2,2]],[[6046,5142],[-1,-3]],[[1449,3366],[-5,-5]],[[6045,5139],[-1,5]],[[21383,9842],[15,683]],[[21383,9842],[-318,-76]],[[5054,4770],[-11,-23]],[[1457,3367],[2,-8]],[[1444,3361],[-19,1]],[[6047,5137],[-2,2]],[[6047,5137],[-7,8]],[[6047,5136],[0,1]],[[6047,5136],[-1,6]],[[5465,4919],[17,-61]],[[1420,3344],[9,0]],[[1459,3359],[-10,7]],[[17343,8771],[370,-79]],[[6202,5185],[-77,-153]],[[1429,3344],[2,10]],[[7252,5562],[-18,-12]],[[7252,5562],[-4,-14]],[[7363,5599],[-95,-320]],[[783,3076],[-332,-97]],[[1467,3354],[-1,-5]],[[7234,5550],[-26,-24]],[[5043,4747],[-21,-44]],[[5043,4747],[-11,-28]],[[5807,5030],[-176,-157]],[[1465,3350],[-6,9]],[[1466,3349],[-1,1]],[[7248,5548],[-14,2]],[[7248,5548],[-40,-22]],[[20570,9612],[-36,223]],[[20570,9612],[164,136]],[[1469,3342],[-4,8]],[[1469,3342],[-3,7]],[[6065,5112],[-18,24]],[[7208,5526],[-94,-88]],[[5422,4874],[-16,-31]],[[5165,4774],[-55,38]],[[6068,5107],[-3,5]],[[6068,5107],[-3,5]],[[6068,5107],[0,0]],[[5032,4719],[-5,-12]],[[5032,4719],[-5,-12]],[[6078,5107],[-10,0]],[[1441,3318],[-12,26]],[[6068,5102],[0,5]],[[1479,3331],[-10,11]],[[1479,3331],[0,0]],[[5189,4774],[-24,0]],[[5189,4774],[-24,0]],[[6068,5097],[0,5]],[[6067,5096],[1,6]],[[6067,5096],[1,1]],[[5027,4707],[-1,-3]],[[5022,4703],[-5,-7]],[[5441,4859],[-19,15]],[[5441,4859],[-35,-16]],[[1495,3327],[-16,4]],[[1534,3343],[-90,18]],[[5026,4704],[-4,-1]],[[5026,4704],[0,-1]],[[5026,4703],[-3,-7]],[[5026,4703],[-3,-7]],[[7652,5660],[89,-261]],[[7652,5660],[-79,-260]],[[5406,4843],[-32,-25]],[[6068,5087],[-1,9]],[[6068,5087],[0,10]],[[5444,4856],[-3,3]],[[6068,5087],[0,0]],[[5017,4696],[-4,-19]],[[1477,3313],[2,18]],[[5023,4696],[-6,0]],[[5023,4696],[-10,-19]],[[5208,4762],[-19,12]],[[1508,3319],[-13,8]],[[1508,3319],[-13,8]],[[5374,4818],[-11,-15]],[[5374,4818],[-11,-15]],[[6070,5076],[-2,11]],[[5219,4760],[-11,2]],[[5219,4760],[-11,2]],[[5482,4858],[-9,-6]],[[6069,5074],[-1,13]],[[6069,5074],[1,2]],[[5473,4852],[-29,4]],[[5473,4852],[-9,-6]],[[5464,4846],[-20,10]],[[5013,4677],[-3,-69]],[[6071,5066],[-2,8]],[[6071,5066],[-1,10]],[[5363,4803],[-100,-48]],[[5491,4846],[-9,12]],[[7114,5438],[-251,53]],[[7114,5438],[-15,-8]],[[7099,5430],[-199,-309]],[[5493,4842],[-2,4]],[[5263,4755],[2,-6]],[[5263,4755],[-3,-9]],[[1555,3312],[-47,7]],[[5245,4743],[-26,17]],[[5265,4749],[-20,-6]],[[5265,4749],[-5,-3]],[[1563,3310],[-8,2]],[[1563,3310],[-8,2]],[[5260,4746],[-15,-3]],[[5489,4828],[-25,18]],[[5489,4828],[2,18]],[[6091,5050],[-20,16]],[[5494,4829],[-1,13]],[[5494,4829],[-5,-1]],[[5614,4872],[-34,-15]],[[5614,4872],[-2,-7]],[[6081,5043],[10,3]],[[5554,4848],[-2,-4]],[[1575,3306],[-12,4]],[[6091,5046],[0,4]],[[5580,4857],[-26,-9]],[[5580,4857],[-26,-9]],[[5552,4844],[-6,-4]],[[2440,3649],[-16,-19]],[[5631,4873],[-17,-1]],[[5631,4873],[-19,-8]],[[5612,4865],[-60,-21]],[[5546,4840],[-53,2]],[[5546,4840],[-35,-19]],[[6100,5043],[-9,3]],[[6100,5043],[-9,7]],[[5499,4819],[-5,10]],[[1580,3299],[-5,7]],[[1580,3299],[-5,7]],[[5511,4821],[-8,-3]],[[5511,4821],[-8,-3]],[[5503,4818],[-4,1]],[[16474,8416],[-69,55]],[[16474,8416],[1,-7]],[[16474,8416],[68,-79]],[[1684,3336],[0,-2]],[[1684,3336],[-11,-21]],[[1705,3344],[-21,-8]],[[1705,3344],[-9,-7]],[[2424,3630],[0,0]],[[2424,3630],[7,-33]],[[1684,3334],[-11,-19]],[[1696,3337],[-12,-3]],[[1696,3337],[15,-15]],[[16475,8409],[-85,-24]],[[16475,8409],[48,-218]],[[1622,3301],[-2,-3]],[[6118,5031],[-18,12]],[[6118,5031],[0,0]],[[1625,3301],[-3,0]],[[1625,3301],[-5,-5]],[[1620,3298],[-9,-4]],[[1620,3298],[0,-2]],[[6125,5032],[-7,-1]],[[1611,3294],[-31,5]],[[1648,3309],[8,-12]],[[1648,3309],[0,-16]],[[1620,3296],[-9,-2]],[[6457,5151],[-167,530]],[[1733,3339],[-28,5]],[[1673,3315],[-17,-18]],[[1501,3243],[38,48]],[[1640,3297],[-15,4]],[[1640,3297],[-18,4]],[[1742,3338],[-9,1]],[[1742,3338],[1,-3]],[[5010,4608],[-1,-18]],[[5010,4608],[1,-21]],[[1755,3342],[-13,-4]],[[1755,3342],[-12,-7]],[[1743,3335],[-10,4]],[[1656,3297],[-8,-4]],[[1648,3293],[-8,4]],[[20789,9545],[15,-105]],[[20577,9485],[-7,127]],[[20577,9485],[47,0]],[[5491,4775],[8,44]],[[1806,3349],[-51,-7]],[[6130,5010],[-12,21]],[[2431,3597],[0,0]],[[2431,3597],[-15,-134]],[[1812,3349],[-6,0]],[[1812,3349],[-6,0]],[[5009,4590],[2,-16]],[[5009,4590],[2,-3]],[[2441,3598],[-10,-1]],[[5497,4771],[-6,4]],[[5497,4771],[-6,4]],[[5011,4587],[6,-26]],[[1830,3345],[-18,4]],[[5830,4886],[-284,-46]],[[1779,3322],[3,26]],[[1844,3348],[-14,-3]],[[1844,3348],[-1,-6]],[[1887,3362],[-5,-6]],[[1887,3362],[-5,-6]],[[1925,3377],[-2,-5]],[[1925,3377],[-20,-14]],[[1893,3364],[-6,-2]],[[1893,3364],[-13,-11]],[[1843,3342],[-13,3]],[[5011,4574],[8,-24]],[[5011,4574],[6,-13]],[[1857,3347],[-13,1]],[[1918,3371],[-11,-7]],[[1882,3356],[-2,-3]],[[1880,3353],[-6,-5]],[[1880,3353],[-2,-5]],[[1905,3363],[-12,1]],[[1907,3364],[-2,-1]],[[1940,3376],[-15,1]],[[2019,3407],[-43,-40]],[[2019,3407],[0,0]],[[1861,3343],[-18,-1]],[[1861,3343],[-4,4]],[[16090,8241],[-172,238]],[[16090,8241],[-68,-194],[-357,130]],[[1874,3348],[-8,-4]],[[1874,3348],[-2,-2]],[[1864,3344],[-7,3]],[[1864,3344],[-3,-1]],[[1866,3344],[-2,0]],[[1872,3346],[-3,-2]],[[1869,3344],[-3,0]],[[1878,3348],[-5,-3]],[[1873,3345],[-1,1]],[[1873,3345],[-4,-1]],[[1880,3346],[-2,2]],[[2442,3568],[-9,0]],[[5017,4561],[2,-11]],[[1951,3370],[-11,6]],[[1951,3370],[-11,6]],[[6191,4996],[-66,36]],[[1954,3371],[-3,-1]],[[16237,8271],[-147,-30]],[[16237,8271],[109,-278],[-225,-152]],[[1966,3371],[-12,0]],[[1966,3371],[-12,0]],[[5019,4550],[3,-79]],[[1944,3355],[-29,18]],[[1915,3343],[-8,21]],[[1976,3367],[-10,4]],[[1976,3367],[0,0]],[[1979,3354],[-3,13]],[[6216,4975],[-25,21]],[[6216,4975],[-7,-7]],[[1831,3288],[-13,62]],[[6209,4968],[-18,28]],[[6306,4970],[-60,-22]],[[6246,4948],[-30,27]],[[6246,4948],[0,0]],[[6489,5034],[-22,-15]],[[6467,5019],[-161,-49]],[[5026,4472],[-4,-1]],[[5026,4472],[1,-5]],[[5022,4471],[5,-4]],[[2416,3463],[-114,-257]],[[6157,4890],[21,-1]],[[7573,5400],[85,-292]],[[7573,5400],[-78,-261]],[[2423,3463],[-7,0]],[[5027,4467],[-120,-190]],[[4473,4254],[124,-465],[-312,-386],[-48,-584],[76,-143]],[[6178,4889],[31,79]],[[7268,5279],[-143,12]],[[7268,5279],[7,-55]],[[6170,4864],[8,25]],[[2862,3602],[305,-89]],[[2423,3421],[-8,6]],[[6502,4956],[-35,63]],[[17102,8364],[97,98],[182,-309]],[[7275,5224],[-46,-92]],[[7275,5224],[40,-25]],[[6520,4951],[-18,5]],[[6499,4936],[3,20]],[[21221,9437],[161,394]],[[21221,9437],[448,92],[128,232]],[[6404,4894],[-98,76]],[[2311,3330],[14,-92]],[[20547,9254],[30,231]],[[6273,4796],[-27,152]],[[3206,3625],[-25,-153]],[[7229,5132],[-28,2]],[[7229,5132],[-11,-53]],[[4907,4277],[97,-226]],[[4907,4277],[36,-156]],[[2433,3307],[-63,27]],[[2167,3193],[116,-61]],[[2364,3266],[-12,5]],[[2300,3221],[2,-15]],[[2911,3456],[262,-179]],[[2302,3206],[-19,-74]],[[5621,4468],[-124,303]],[[7495,5139],[116,-250]],[[7495,5139],[-27,-433]],[[2284,3168],[1,-12]],[[3167,3513],[4,-4]],[[3167,3513],[4,-4]],[[22255,9528],[-166,80]],[[3171,3509],[-2,-11]],[[3169,3498],[5,-6]],[[3169,3498],[5,-6]],[[4816,4128],[-156,23],[-280,476],[-47,352],[-142,131],[118,328]],[[3174,3492],[7,-20]],[[15681,7758],[-118,124]],[[2283,3132],[0,0]],[[2283,3132],[1,-5]],[[15686,7750],[49,10]],[[6402,4701],[-8,-52]],[[2296,3132],[-12,-5]],[[2284,3127],[0,0]],[[2284,3127],[0,-4]],[[17030,8129],[12,57]],[[17030,8129],[212,-207]],[[2284,3123],[0,0]],[[2284,3123],[-10,-48]],[[2297,3125],[-13,-2]],[[3181,3472],[59,-560]],[[2251,3094],[26,-5]],[[16121,7841],[2,-17]],[[16121,7841],[-197,-97]],[[22176,9446],[-90,77]],[[22176,9446],[79,82]],[[22176,9446],[57,-106]],[[4943,4121],[5,0]],[[4943,4121],[-9,-59]],[[4948,4121],[44,-80]],[[4948,4121],[-7,-200]],[[6299,4616],[21,-59]],[[6394,4649],[-74,-92]],[[2274,3075],[0,0]],[[2274,3075],[20,-54]],[[6441,4664],[-47,-15]],[[16123,7824],[79,-160]],[[16123,7824],[-17,-126]],[[2288,3076],[-14,-1]],[[5741,4377],[-294,-194],[-112,-285],[-309,574]],[[4934,4062],[9,-27]],[[4934,4062],[9,-27]],[[4845,4020],[0,0]],[[2294,3021],[27,-73]],[[6320,4557],[-1,-25]],[[293,2203],[-4,428],[162,348]],[[4705,3948],[0,0]],[[4943,4035],[-47,-75]],[[21147,9103],[74,334]],[[5004,4051],[-12,-10]],[[5004,4051],[-1,-35]],[[4992,4041],[10,-26]],[[6319,4532],[2,-6]],[[6319,4532],[2,-6]],[[6321,4526],[1,-4]],[[22100,9314],[-44,83]],[[22100,9314],[52,73]],[[6322,4522],[1,-5]],[[6322,4522],[1,-5]],[[20808,8989],[121,-19]],[[6323,4517],[53,-139]],[[22233,9340],[141,40]],[[22233,9340],[4,-62]],[[2319,2975],[2,-27]],[[5003,4016],[-1,-1]],[[5003,4016],[8,-18]],[[5002,4015],[-61,-94]],[[16106,7698],[0,0]],[[16106,7698],[-153,5]],[[16106,7698],[54,-129]],[[4896,3960],[-32,89]],[[5011,3998],[6,1]],[[5011,3998],[2,-5]],[[5017,3999],[-4,-6]],[[5017,3999],[-15,-41]],[[5013,3993],[-11,-35]],[[2321,2948],[1,-6]],[[16867,7894],[163,235]],[[16867,7894],[168,-283]],[[2322,2942],[0,0]],[[2322,2942],[3,-8]],[[2322,2942],[3,-8]],[[20929,8970],[20,573]],[[2316,2934],[6,8]],[[6473,4519],[-68,-142]],[[2325,2934],[3,-27]],[[22237,9278],[129,-31]],[[22237,9278],[1,-131]],[[6259,4428],[6,-34]],[[5002,3958],[-87,-86]],[[4916,3915],[-20,45]],[[2328,2907],[12,-33]],[[2328,2907],[12,-33]],[[4941,3921],[-25,-6]],[[21770,9134],[53,-117]],[[6265,4394],[4,-10]],[[6265,4394],[4,-10]],[[5908,4259],[11,-113]],[[6269,4384],[2,-11]],[[6295,4390],[-22,-15]],[[2340,2874],[3,-8]],[[2365,2884],[-22,-1]],[[4915,3872],[-13,4]],[[6273,4375],[-2,-2]],[[6271,4373],[-47,-88]],[[2343,2866],[2,-1]],[[2343,2866],[10,-4]],[[2345,2865],[6,0]],[[2345,2865],[6,0]],[[6518,4456],[-57,-150]],[[6292,4373],[-19,2]],[[2351,2865],[2,-3]],[[2353,2862],[18,-27]],[[2902,3077],[64,-260]],[[20978,8890],[-49,80]],[[9248,5409],[-205,-214],[-73,-423]],[[9248,5409],[427,-17],[25,378]],[[6008,4252],[-1,-42]],[[2685,2974],[63,-227]],[[6376,4378],[26,0]],[[6463,4406],[-15,-82]],[[5955,4217],[13,-54]],[[6402,4378],[-26,0]],[[6402,4378],[3,-1]],[[6405,4377],[43,-53]],[[2371,2835],[3,-10]],[[2371,2835],[12,-16]],[[20146,8642],[32,-381],[-211,-8],[160,-723],[350,-80],[0,-301]],[[2374,2825],[8,-5]],[[2374,2825],[8,-5]],[[2492,2868],[-107,-52]],[[2382,2820],[1,-1]],[[2383,2819],[2,-3]],[[6224,4285],[-10,-37]],[[2385,2816],[64,-101]],[[6082,4232],[8,-27]],[[2813,2984],[37,-200]],[[22238,9147],[89,-87]],[[22238,9147],[29,-176]],[[5902,4159],[-13,-41]],[[21831,9038],[78,294]],[[17785,7973],[0,0]],[[17785,7973],[-352,-30]],[[17785,7973],[281,-494],[-13,-583]],[[5919,4146],[0,0]],[[5919,4146],[-30,-28]],[[7468,4706],[32,-28]],[[7468,4706],[-5,-28]],[[6909,4505],[-53,-254]],[[5936,4149],[-17,-3]],[[21823,9017],[277,297]],[[6214,4248],[20,14]],[[6214,4248],[-82,-58]],[[3184,3094],[4,-9]],[[6448,4324],[13,-18]],[[5889,4118],[0,0]],[[5889,4118],[-488,-274]],[[6142,4209],[-10,-19]],[[6284,4258],[-60,27]],[[7463,4678],[-8,7]],[[7463,4678],[-7,-29]],[[6132,4190],[-196,-41]],[[6132,4190],[0,0]],[[6461,4306],[12,-31]],[[5919,4104],[-15,21]],[[7456,4649],[-4,1]],[[7456,4649],[-25,-94]],[[6239,4201],[-26,24]],[[3200,3046],[3,-18]],[[15802,7344],[30,2]],[[6480,4283],[-7,-8]],[[15832,7346],[44,31]],[[15832,7346],[140,150]],[[5978,4095],[-42,54]],[[6473,4275],[8,-21]],[[6455,4257],[19,-29]],[[2449,2718],[3,-7]],[[6481,4254],[1,-19]],[[6481,4254],[4,-7]],[[2449,2715],[3,-4]],[[6169,4135],[-5,47]],[[2452,2711],[11,-25]],[[5384,3843],[-3,-10]],[[5384,3843],[-3,-10]],[[6212,4149],[-19,38]],[[6519,4262],[-34,-15]],[[6485,4247],[1,-12]],[[20924,8695],[-103,92]],[[5401,3844],[-17,-1]],[[5381,3833],[-60,-148]],[[3204,2998],[-3,-6]],[[6482,4235],[-1,-5]],[[6482,4235],[4,0]],[[6486,4235],[-5,-5]],[[6481,4230],[-7,-2]],[[6474,4228],[-5,-37]],[[3703,3176],[-272,-26],[-153,-329]],[[2463,2686],[4,-5]],[[2463,2686],[4,-5]],[[2467,2681],[10,-124]],[[17035,7611],[251,139]],[[17035,7611],[24,-231]],[[6469,4191],[-3,-20]],[[6469,4191],[-3,-20]],[[21728,8842],[95,175]],[[21728,8842],[92,4]],[[6466,4171],[-6,-3]],[[6460,4168],[-3,-15]],[[6460,4168],[-3,-15]],[[2473,2644],[2,-20]],[[21820,8846],[263,-35]],[[21820,8846],[68,-453]],[[2748,2747],[-257,-237]],[[2850,2784],[-102,-37]],[[6457,4153],[-10,-45]],[[2966,2817],[-116,-33]],[[17496,7693],[-113,98]],[[2477,2619],[-2,-16]],[[2693,2700],[-39,49]],[[3240,2912],[-5,22]],[[3240,2912],[38,-91]],[[6807,4249],[22,-48]],[[5340,3708],[5,-1]],[[5340,3708],[2,-3]],[[5345,3707],[0,-4]],[[5342,3705],[3,2]],[[5342,3705],[3,-2]],[[5336,3703],[4,5]],[[5336,3703],[2,0]],[[5338,3703],[4,2]],[[5345,3703],[-77,-253]],[[6447,4108],[8,-11]],[[6447,4108],[7,-12]],[[2475,2586],[6,-32]],[[6856,4251],[-27,-50]],[[5324,3687],[12,16]],[[5324,3687],[14,16]],[[5321,3685],[3,2]],[[5321,3685],[3,2]],[[6923,4272],[-67,-21]],[[5541,3764],[6,34]],[[16210,7288],[-2,-30]],[[6455,4097],[-1,-1]],[[6455,4097],[2,-6]],[[6454,4096],[3,-5]],[[5590,3775],[-17,28]],[[3215,2866],[39,5]],[[6457,4091],[0,-1]],[[6457,4090],[-6,-7]],[[6457,4090],[-6,-7]],[[6451,4083],[1,2]],[[6451,4083],[-17,-57]],[[6435,4071],[-1,-45]],[[2477,2557],[-6,-13]],[[3260,2865],[7,0]],[[2481,2554],[10,-44]],[[7167,4328],[68,-125]],[[2481,2550],[-10,-6]],[[16280,7276],[90,203],[271,128],[226,287]],[[16280,7276],[190,-273]],[[2471,2544],[0,0]],[[2471,2544],[4,-26]],[[6829,4201],[-20,-37]],[[6965,4247],[-156,-83]],[[16261,7261],[19,15]],[[21621,8684],[107,158]],[[21621,8684],[125,-287]],[[3288,2844],[12,-17]],[[2475,2518],[-872,-472],[-62,-181]],[[2475,2518],[0,0]],[[6809,4164],[-12,-25]],[[6434,4026],[-1,-7]],[[6433,4019],[-3,-31]],[[6433,4019],[-3,-31]],[[6728,4126],[-16,-40]],[[2491,2510],[-16,8]],[[3278,2821],[-312,-4]],[[3300,2827],[-8,-8]],[[6797,4139],[-85,-53]],[[6821,4146],[-24,-7]],[[5789,3766],[-56,-37]],[[21337,8566],[29,250]],[[21337,8566],[284,118]],[[6430,3988],[-17,-16]],[[7297,4302],[-62,-99]],[[5733,3729],[-332,115]],[[6712,4086],[-12,-22]],[[6413,3972],[-1,-12]],[[6413,3972],[-1,-12]],[[6721,4080],[-21,-16]],[[17311,7482],[288,-5]],[[6412,3960],[-16,-15]],[[6412,3960],[-16,-15]],[[6700,4064],[-65,-59]],[[5737,3703],[-4,26]],[[6396,3945],[-10,-33]],[[6641,4034],[-6,-29]],[[6635,4005],[-41,-50]],[[6386,3912],[-166,-322]],[[14976,6765],[263,129],[203,-313],[251,92]],[[6431,3913],[-45,-1]],[[7235,4203],[-5,-14]],[[7235,4203],[-5,-14]],[[6988,4110],[12,-166]],[[6534,3942],[2,0]],[[6534,3942],[-5,-3]],[[6534,3942],[-1,-2]],[[6536,3942],[-3,-2]],[[6451,3910],[-1,-1]],[[6529,3939],[-32,-20]],[[6533,3940],[-4,-1]],[[6450,3909],[-19,4]],[[7167,4168],[29,-42]],[[6452,3908],[-2,1]],[[6452,3908],[-1,2]],[[6465,3912],[-5,-3]],[[6465,3912],[-6,-4]],[[7230,4189],[-10,-28]],[[7230,4189],[-15,-38]],[[6460,3909],[-9,1]],[[6460,3909],[-1,-1]],[[6459,3908],[-7,0]],[[6483,3916],[-12,-6]],[[6594,3955],[-58,-13]],[[6471,3910],[-6,2]],[[6497,3919],[-14,-3]],[[6497,3919],[-14,-3]],[[6603,3950],[-9,5]],[[17599,7477],[-103,216]],[[5268,3450],[2,-3]],[[6430,3881],[1,32]],[[6470,3894],[1,16]],[[5270,3447],[4,-7]],[[5270,3447],[4,-7]],[[7220,4161],[-5,-10]],[[5274,3440],[-40,-61]],[[8970,4772],[-166,-122]],[[8970,4772],[152,-491]],[[7215,4151],[-16,-23]],[[7215,4151],[-16,-23]],[[7237,4154],[-17,7]],[[5109,3358],[-42,-41]],[[7199,4128],[-3,-2]],[[7199,4128],[-3,-6]],[[7196,4126],[0,-4]],[[4943,3293],[-6,-48]],[[4945,3293],[-2,0]],[[6093,3722],[-22,-346]],[[4949,3293],[-4,0]],[[4949,3293],[-3,-2]],[[7196,4122],[-4,-7]],[[7196,4122],[-6,-7]],[[4946,3291],[-3,2]],[[4946,3291],[-1,2]],[[4962,3295],[-13,-2]],[[4962,3295],[0,0]],[[4962,3295],[0,0]],[[7192,4115],[-2,0]],[[7192,4115],[-6,-7]],[[7190,4115],[-6,-8]],[[7184,4107],[-3,-6]],[[7186,4108],[-2,-1]],[[7186,4108],[-6,-11]],[[5116,3345],[-7,13]],[[5116,3345],[-7,13]],[[4749,3204],[-60,256],[227,455]],[[4749,3204],[82,-13]],[[4986,3293],[-24,2]],[[4988,3293],[-2,0]],[[4988,3293],[-2,0]],[[5018,3304],[-9,-6]],[[5018,3304],[-9,-6]],[[7181,4101],[-1,-4]],[[7181,4101],[-6,-6]],[[5020,3303],[-2,1]],[[5020,3303],[-9,-43]],[[5009,3298],[-21,-5]],[[7180,4097],[-3,-1]],[[7175,4095],[2,1]],[[7175,4095],[-9,-9]],[[5052,3312],[-32,-9]],[[7177,4096],[-8,-8]],[[5067,3317],[-15,-5]],[[5067,3317],[-15,-5]],[[5234,3379],[-2,-22]],[[5234,3379],[-2,-22]],[[7169,4088],[-3,-2]],[[7169,4088],[-5,-6]],[[7166,4086],[-13,-9]],[[7164,4082],[-11,-5]],[[7164,4082],[-13,-13]],[[7153,4077],[-2,-8]],[[7151,4069],[-1,-4]],[[5191,3346],[-75,-1]],[[7150,4065],[-3,-11]],[[7150,4065],[-6,-16]],[[8804,4650],[-231,91]],[[8804,4650],[-29,-49]],[[5232,3357],[-41,-11]],[[4943,3248],[-3,-2]],[[4943,3248],[-3,-4]],[[4937,3245],[-1,-4]],[[4940,3246],[-3,-1]],[[4940,3246],[0,-2]],[[4940,3244],[-4,-3]],[[4936,3241],[0,0]],[[4936,3241],[-79,-31]],[[4857,3210],[-10,-5]],[[4857,3210],[-10,-5]],[[4847,3205],[-16,-14]],[[7147,4054],[-3,-5]],[[7147,4054],[-16,-22]],[[16530,7083],[-60,-80]],[[7144,4049],[-31,-24]],[[5011,3260],[-68,-12]],[[5011,3260],[0,0]],[[4831,3191],[-66,-150]],[[7081,4016],[-6,-5]],[[7081,4016],[-6,-5]],[[7131,4032],[-17,-9]],[[7075,4011],[-34,-20]],[[7113,4025],[-8,-4]],[[7105,4021],[-24,-5]],[[7114,4023],[-1,2]],[[7114,4023],[-9,-2]],[[7041,3991],[-23,-16]],[[7041,3991],[-23,-16]],[[8775,4601],[-112,-40]],[[8775,4601],[-121,-137]],[[7018,3975],[-10,-17]],[[6783,3880],[-3,-137]],[[7008,3958],[-8,-14]],[[7008,3958],[-26,-50]],[[7152,4003],[-21,29]],[[7000,3944],[-18,-36]],[[5536,3399],[-268,51]],[[16470,7003],[20,-60]],[[4727,3084],[22,120]],[[4727,3084],[27,-36]],[[16640,7042],[-116,-117]],[[4718,3071],[9,13]],[[4718,3071],[0,0]],[[6982,3908],[-19,-78]],[[21306,8262],[31,304]],[[21306,8262],[380,-148]],[[4754,3048],[-3,-5]],[[4754,3048],[11,-7]],[[4751,3043],[-15,-24]],[[6220,3590],[6,-18]],[[6220,3590],[6,-18]],[[4765,3041],[-14,2]],[[16490,6943],[34,-18]],[[16490,6943],[-4,-104]],[[14531,6360],[211,312],[234,93]],[[14531,6360],[36,-208]],[[4736,3019],[-6,-12]],[[4736,3019],[-24,-40]],[[16133,6832],[57,-65]],[[6226,3572],[2,-80]],[[5779,3402],[105,-107]],[[4730,3007],[-2,-5]],[[4730,3007],[-1,-5]],[[4728,3002],[1,0]],[[4729,3002],[-3,-15]],[[6963,3830],[-26,-43]],[[6552,3679],[30,-36]],[[16524,6925],[63,-37]],[[4726,2987],[-7,-3]],[[4719,2984],[9,18]],[[4719,2984],[-7,-5]],[[4712,2979],[-235,-86],[-55,442],[228,387],[-135,-487],[203,-164]],[[6780,3743],[-36,-25]],[[6802,3751],[-5,-5]],[[6802,3751],[-5,-5]],[[6797,3746],[-17,-3]],[[6586,3664],[-4,-21]],[[6931,3787],[-19,-21]],[[6744,3718],[-10,-5]],[[6744,3718],[-10,-5]],[[6734,3713],[-29,-42]],[[6007,3446],[35,-71]],[[5871,3396],[70,-80]],[[6937,3787],[-6,0]],[[6937,3787],[-6,0]],[[6912,3766],[-110,-15]],[[6582,3643],[17,-45]],[[16587,6888],[54,16]],[[6705,3671],[-2,-5]],[[6703,3666],[-57,-35]],[[6228,3492],[8,-17]],[[6228,3492],[8,-17]],[[6710,3667],[-5,4]],[[6710,3667],[-7,-1]],[[6330,3527],[-16,-63]],[[16486,6839],[-73,33]],[[16486,6839],[-61,-107]],[[5602,3248],[-179,-101],[-232,199]],[[6646,3631],[-26,-30]],[[6646,3631],[-26,-30]],[[6236,3475],[35,7]],[[14189,6145],[-213,-291]],[[6271,3482],[6,-4]],[[6271,3482],[2,-6]],[[6609,3603],[-10,-5]],[[4294,2735],[0,0]],[[6599,3598],[-3,-11]],[[6277,3478],[6,-9]],[[6277,3478],[0,-4]],[[6273,3476],[2,-5]],[[6273,3476],[2,-5]],[[6620,3601],[-3,-1]],[[6588,3590],[-4,-4]],[[6617,3600],[-8,3]],[[6617,3600],[-8,3]],[[6584,3586],[-2,-6]],[[6584,3586],[-2,-6]],[[6277,3474],[6,-5]],[[6277,3474],[1,-6]],[[6275,3471],[3,-3]],[[6596,3587],[-8,3]],[[6596,3587],[-8,3]],[[6278,3468],[9,-5]],[[6582,3580],[-5,-121]],[[6283,3469],[4,-6]],[[5649,3229],[-47,19]],[[6287,3463],[22,2]],[[6287,3463],[27,-25]],[[5826,3288],[-7,-12]],[[5826,3288],[-7,-12]],[[7187,3784],[-224,46]],[[6309,3465],[5,-1]],[[6309,3465],[5,-27]],[[6071,3376],[-130,-60]],[[20631,7913],[-77,156]],[[6314,3464],[21,-62]],[[5872,3297],[2,-10]],[[5872,3297],[2,-10]],[[5791,3267],[-10,-6]],[[4455,2762],[114,-69],[-249,-333]],[[5819,3276],[-28,-9]],[[5781,3261],[-3,-9]],[[5781,3261],[-3,-9]],[[5884,3295],[-12,2]],[[5941,3316],[-24,-13]],[[16993,6925],[-35,-242]],[[21272,8063],[34,199]],[[21272,8063],[272,-59]],[[5778,3252],[-129,-23]],[[5917,3303],[6,-7]],[[5917,3303],[-2,-12]],[[5874,3287],[-5,-5]],[[5869,3282],[-5,-4]],[[5869,3282],[-5,-4]],[[5864,3278],[-38,10]],[[5915,3291],[0,0]],[[5915,3291],[-31,4]],[[6314,3438],[20,-38]],[[5664,3188],[-15,41]],[[16425,6732],[3,-139]],[[16594,6779],[-7,109]],[[4812,2855],[-86,132]],[[4797,2848],[0,0]],[[4802,2847],[0,0]],[[5771,3211],[20,56]],[[5896,3256],[1,38]],[[4812,2848],[0,7]],[[5921,3263],[-6,28]],[[16407,6709],[18,23]],[[5946,3268],[-31,25]],[[4822,2842],[-10,13]],[[4822,2842],[9,-8]],[[6335,3402],[-1,-2]],[[6335,3402],[4,-5]],[[4823,2836],[-1,6]],[[4823,2836],[-11,12]],[[6334,3400],[5,-3]],[[4827,2834],[-4,2]],[[6045,3289],[-28,62]],[[6339,3397],[24,-113]],[[4831,2834],[-4,0]],[[4831,2834],[26,-26]],[[4818,2827],[-6,21]],[[4792,2812],[0,0]],[[4824,2822],[-6,5]],[[4824,2822],[-1,14]],[[5212,2960],[-201,300]],[[4807,2800],[14,1]],[[4830,2809],[-6,13]],[[4830,2809],[-3,25]],[[6577,3459],[-3,-8]],[[6577,3459],[-3,-8]],[[6570,3454],[7,5]],[[6570,3454],[-9,-72]],[[4821,2801],[-6,-6]],[[4821,2801],[10,-5]],[[4796,2791],[11,9]],[[4831,2803],[-1,6]],[[6574,3451],[-4,3]],[[4815,2795],[-8,5]],[[4786,2784],[10,7]],[[4830,2798],[-12,29]],[[4830,2798],[1,5]],[[4857,2808],[-5,-21]],[[4857,2808],[7,-17]],[[4831,2796],[-1,2]],[[21256,7955],[16,108]],[[21256,7955],[347,-326]],[[4849,2793],[-19,16]],[[4848,2791],[-17,12]],[[4848,2791],[1,2]],[[4852,2787],[-3,6]],[[4864,2791],[8,-15]],[[6839,3524],[-129,143]],[[4823,2773],[-8,22]],[[4823,2773],[-27,18]],[[4855,2773],[-7,18]],[[4855,2773],[-3,14]],[[4830,2763],[-44,21]],[[4830,2763],[-7,10]],[[4872,2776],[-8,15]],[[4872,2776],[3,-24]],[[5971,3187],[-64,-198]],[[4834,2757],[-4,6]],[[4834,2757],[-3,39]],[[16028,6502],[-129,-359]],[[16889,6750],[22,-44]],[[4819,2742],[-33,42]],[[14288,5979],[-85,-50]],[[14288,5979],[-45,108]],[[6899,3511],[-60,13]],[[6561,3382],[-5,-87]],[[4875,2752],[-20,21]],[[16428,6593],[128,86]],[[16428,6593],[9,-101]],[[9122,4281],[-68,-188]],[[9122,4281],[214,-414]],[[4864,2736],[-30,21]],[[4864,2736],[-45,6]],[[14203,5929],[-98,-66]],[[14203,5929],[-55,-184]],[[7090,3557],[-178,209]],[[6191,3228],[-120,148]],[[6363,3284],[5,-26]],[[7107,3555],[-17,2]],[[16911,6706],[-77,-32]],[[6386,3280],[-2,-1]],[[6386,3280],[-4,-5]],[[6384,3279],[-21,5]],[[6384,3279],[-2,-4]],[[7088,3533],[2,24]],[[6382,3275],[-14,-17]],[[6602,3353],[-41,29]],[[6368,3258],[1,-11]],[[4883,2697],[-19,39]],[[4883,2697],[-8,55]],[[8689,4080],[-308,207]],[[8689,4080],[-39,157]],[[6369,3247],[7,-15]],[[6369,3247],[7,-15]],[[16958,6683],[-47,23]],[[16958,6683],[-58,-95]],[[6576,3309],[-20,-14]],[[14335,5907],[-47,72]],[[14335,5907],[65,434],[131,19]],[[6376,3232],[-1,-56]],[[6556,3295],[-170,-15]],[[5162,2767],[-1,-39]],[[16326,6466],[-264,191]],[[6901,3392],[-62,132]],[[15164,6120],[-188,645]],[[15164,6120],[-13,-539]],[[5161,2728],[-11,-37]],[[5161,2728],[-11,-37]],[[6375,3176],[12,-6]],[[6375,3176],[7,-13]],[[6379,3171],[-4,5]],[[6379,3171],[8,-1]],[[6379,3171],[4,-6]],[[4564,2490],[0,0]],[[6387,3170],[4,0]],[[8533,3940],[-29,-11]],[[8533,3940],[-123,-218]],[[6391,3170],[2,-4]],[[6391,3170],[3,-18]],[[6383,3165],[-1,-2]],[[6383,3165],[6,-7]],[[5907,2989],[-304,-81],[-1,340]],[[6382,3163],[5,-10]],[[8639,3972],[-106,-32]],[[8639,3972],[50,108]],[[6393,3166],[-4,-8]],[[6393,3166],[1,-14]],[[4625,2503],[-12,-13]],[[4656,2514],[7,-7]],[[4656,2514],[7,-7]],[[4674,2517],[145,225]],[[4633,2502],[0,0]],[[4888,2598],[-5,99]],[[6389,3158],[-2,-5]],[[4636,2500],[0,0]],[[5933,2988],[-26,1]],[[4632,2498],[0,0]],[[4613,2490],[12,13]],[[4613,2490],[12,13]],[[4650,2504],[8,-1]],[[4650,2504],[8,-1]],[[4650,2504],[-2,-9]],[[4663,2507],[-7,7]],[[6387,3153],[1,-2]],[[4637,2496],[0,0]],[[5150,2691],[-59,-341]],[[4634,2495],[0,0]],[[6388,3151],[1,-3]],[[6388,3151],[-6,-21]],[[18053,6896],[41,-161]],[[4658,2503],[-3,-13]],[[4669,2506],[0,0]],[[6394,3152],[-5,-4]],[[6389,3148],[-7,-18]],[[4648,2495],[7,-5]],[[4648,2495],[7,-5]],[[4889,2587],[-1,11]],[[4889,2587],[-1,11]],[[9054,4093],[-304,-147]],[[9054,4093],[-43,-436]],[[4593,2461],[0,0]],[[6382,3130],[25,-96]],[[4646,2479],[0,0]],[[15237,6070],[-73,50]],[[15237,6070],[221,2]],[[15237,6070],[207,-240]],[[4613,2463],[61,54]],[[4633,2458],[0,0]],[[4646,2456],[0,0]],[[8750,3946],[-111,26]],[[8750,3946],[-222,-353]],[[4888,2506],[1,81]],[[4888,2506],[-214,11]],[[15458,6072],[6,101]],[[15458,6072],[20,-1]],[[6835,3223],[-80,-152]],[[15478,6071],[35,24]],[[15478,6071],[35,-59]],[[7226,3358],[-110,-318]],[[14368,5730],[-64,-28]],[[14368,5730],[-33,177]],[[17664,6685],[32,651],[-97,141]],[[17664,6685],[389,211]],[[14304,5702],[-69,-42]],[[14304,5702],[-124,-379],[-190,83]],[[4504,2324],[0,0]],[[6407,3034],[2,-58]],[[14235,5660],[-250,-204]],[[14235,5660],[-203,-204]],[[15899,6143],[517,-163]],[[15899,6143],[-177,-829]],[[6439,3023],[-32,11]],[[8410,3722],[-21,-1]],[[8410,3722],[-70,-150]],[[6717,3109],[8,-47]],[[4512,2267],[0,0]],[[6409,2976],[-3,-12]],[[6409,2976],[-3,-12]],[[16713,6336],[-213,-141]],[[16713,6336],[82,-61]],[[6406,2964],[-32,-108]],[[6725,3062],[-8,-15]],[[6755,3071],[-5,-2]],[[6750,3069],[-25,-7]],[[6750,3069],[-33,-22]],[[21538,7591],[-25,1]],[[6717,3047],[-157,-318]],[[17552,6533],[112,152]],[[17552,6533],[209,-199],[-130,-431],[101,-358]],[[6760,3059],[-5,12]],[[4348,2149],[248,1]],[[7136,3185],[-20,-145]],[[7073,3142],[7,-43]],[[16795,6275],[-294,-360]],[[8340,3572],[-80,8]],[[8340,3572],[-52,-83]],[[17500,6463],[52,70]],[[17500,6463],[-4,-160]],[[5701,2609],[109,247]],[[6374,2856],[-5,-14]],[[6374,2856],[-5,-14]],[[4685,2221],[-9,-6]],[[4676,2215],[-63,248]],[[6369,2842],[2,-12]],[[7080,3099],[0,-6]],[[7080,3099],[0,-6]],[[5599,2550],[-40,-279]],[[7080,3093],[16,-66]],[[6371,2830],[-5,-18]],[[6371,2830],[-5,-16]],[[5091,2350],[5,-3]],[[5091,2350],[5,-3]],[[5096,2347],[-13,-97]],[[17077,6305],[59,-399]],[[17077,6305],[423,158]],[[6376,2820],[-5,10]],[[6376,2820],[-10,-6]],[[6376,2820],[-10,-9]],[[4596,2150],[17,313]],[[4596,2150],[0,0]],[[6366,2814],[0,-2]],[[6366,2812],[0,-1]],[[6366,2811],[-1,-27]],[[9336,3867],[8,-6]],[[9336,3867],[14,-132]],[[20984,7339],[272,616]],[[20984,7339],[203,-96]],[[8288,3489],[15,-26]],[[8288,3489],[-72,-65]],[[4668,2156],[8,59]],[[4668,2156],[123,-373]],[[6365,2784],[-18,-32]],[[6365,2784],[-18,-32]],[[17054,6262],[-259,13]],[[17054,6262],[23,43]],[[7116,3040],[-20,-13]],[[7096,3027],[-44,-121]],[[6347,2752],[12,-25]],[[6208,2694],[-251,-324]],[[20478,7146],[141,-112]],[[20473,7141],[-100,-547]],[[6359,2727],[14,-36]],[[6359,2727],[-20,-26]],[[5083,2250],[-195,256]],[[5401,2363],[-14,-65]],[[5115,2249],[-32,1]],[[9011,3657],[-79,-85]],[[9011,3657],[128,-456]],[[6339,2701],[-8,-8]],[[6339,2701],[-8,-8]],[[6331,2693],[-36,-16]],[[5131,2244],[-16,5]],[[5137,2244],[-6,0]],[[5137,2244],[-22,5]],[[6295,2677],[-6,-93]],[[5139,2245],[-2,-1]],[[5152,2247],[-13,-2]],[[5152,2247],[-3,-10]],[[17496,6303],[-155,-214]],[[17496,6303],[-14,-368]],[[5172,2250],[-20,-3]],[[5172,2250],[-23,-13]],[[5138,2234],[-7,10]],[[5138,2234],[1,11]],[[5149,2237],[-8,-4]],[[5141,2233],[-3,1]],[[19815,6925],[-82,-491],[-214,-534]],[[6343,2682],[-8,-5]],[[6343,2682],[-4,-8]],[[6335,2677],[-40,0]],[[6373,2691],[-20,-10]],[[6353,2681],[-10,1]],[[6353,2681],[-14,-7]],[[6339,2674],[-4,3]],[[6493,2726],[-29,-26]],[[5141,2220],[0,13]],[[6436,2702],[-63,-11]],[[8714,3517],[-182,-26]],[[8714,3517],[-112,-215]],[[9350,3735],[126,-218]],[[9350,3735],[27,-15]],[[6464,2700],[-14,-17]],[[5402,2304],[-15,-6]],[[5387,2298],[-61,-24]],[[5326,2274],[-37,-15]],[[5326,2274],[-24,-32]],[[5289,2259],[-58,-22]],[[5231,2237],[-59,13]],[[5231,2237],[-62,-55]],[[6560,2729],[-39,-41]],[[14473,5381],[-105,349]],[[14473,5381],[211,227]],[[7052,2906],[-2,-23]],[[7052,2906],[-2,-23]],[[8932,3572],[-218,-55]],[[8932,3572],[-215,-403]],[[6450,2683],[-14,19]],[[6450,2683],[-14,19]],[[6484,2692],[-20,8]],[[6489,2692],[-5,0]],[[6489,2692],[-5,0]],[[6496,2691],[-7,1]],[[5302,2242],[-13,17]],[[5302,2242],[-10,-29]],[[6510,2687],[-14,4]],[[6510,2687],[-14,4]],[[5893,2458],[-20,-73]],[[7050,2883],[-40,-153]],[[6521,2688],[-11,-1]],[[5169,2182],[-28,38]],[[5169,2182],[-28,38]],[[6525,2687],[-4,1]],[[5811,2418],[8,-59]],[[6585,2699],[0,0]],[[6585,2699],[-48,-22]],[[6585,2699],[-17,-8]],[[6585,2699],[0,0]],[[6585,2699],[-25,30]],[[6537,2677],[-12,10]],[[6537,2677],[-12,10]],[[6592,2697],[-7,2]],[[6289,2584],[-6,-16]],[[6289,2584],[-6,-16]],[[5473,2275],[-71,29]],[[5948,2445],[-5,-57]],[[6283,2568],[-95,-108]],[[6612,2688],[-20,9]],[[5687,2344],[-6,-53]],[[20619,7034],[365,305]],[[20619,7034],[33,-81]],[[5411,2234],[-9,70]],[[5473,2251],[0,24]],[[5473,2251],[0,24]],[[6585,2659],[7,38]],[[7045,2822],[-13,-6]],[[4542,1887],[126,269]],[[5559,2271],[-12,-35]],[[6844,2744],[3,-22]],[[5873,2385],[-54,-26]],[[5480,2237],[-7,14]],[[5480,2237],[-69,-3]],[[5482,2237],[-2,0]],[[5819,2359],[-66,-47]],[[5580,2265],[-21,6]],[[5580,2265],[-5,-37]],[[6743,2695],[0,-27]],[[5427,2205],[-16,29]],[[5530,2239],[-48,-2]],[[5530,2239],[-12,-14]],[[6847,2722],[-104,-54]],[[5681,2291],[0,0]],[[5681,2291],[-101,-26]],[[6627,2641],[-15,47]],[[5943,2388],[-52,-20]],[[14457,5264],[16,117]],[[14457,5264],[12,-57]],[[5891,2368],[-18,17]],[[5547,2236],[-17,3]],[[5518,2225],[-36,12]],[[5753,2312],[-72,-21]],[[6743,2668],[-14,-14]],[[5550,2223],[-3,13]],[[5550,2223],[-32,2]],[[6188,2460],[-19,-50]],[[5575,2228],[-25,-5]],[[5957,2370],[-14,18]],[[6729,2654],[-117,34]],[[4617,1845],[-87,-272]],[[21114,7072],[115,-143]],[[6239,2454],[-51,6]],[[7010,2730],[-163,-8]],[[6169,2410],[-212,-40]],[[14469,5207],[32,-75]],[[14469,5207],[57,-388],[181,-192]],[[7073,2710],[-63,20]],[[5593,2163],[-18,65]],[[6171,2355],[-2,55]],[[4848,1857],[1,-3]],[[4848,1857],[1,-3]],[[4849,1854],[4,-22]],[[5777,2203],[-24,109]],[[4853,1832],[-62,-49]],[[17136,5906],[186,145]],[[14501,5132],[17,1]],[[14501,5132],[40,-104]],[[14371,5090],[-306,-139]],[[14371,5090],[86,174]],[[6789,2539],[-60,115]],[[4791,1783],[14,1]],[[6053,2254],[-162,114]],[[7719,2861],[-227,-239]],[[7507,2782],[-15,-160]],[[8539,3126],[-6,12]],[[8539,3126],[1,227]],[[8717,3169],[-89,-137]],[[8717,3169],[159,-294],[-11,-265]],[[20069,6629],[-52,217]],[[20069,6629],[-176,-240]],[[6763,2463],[26,76]],[[14541,5028],[191,-282]],[[14541,5028],[126,-230]],[[6841,2454],[-52,85]],[[7284,2610],[212,-65]],[[8557,3055],[-18,71]],[[8557,3055],[-285,-73],[-62,286]],[[6917,2465],[-5,-44]],[[21115,6831],[18,-11]],[[6912,2421],[-71,33]],[[8628,3032],[-71,23]],[[8628,3032],[-102,-228]],[[5562,1913],[2,-29]],[[7492,2622],[0,0]],[[7492,2622],[4,-77]],[[19444,6351],[-168,-297],[97,-230]],[[20373,6594],[-304,35]],[[20373,6594],[-9,-336]],[[5866,2016],[-43,-26]],[[5866,2016],[0,0]],[[5551,1893],[11,-16]],[[5825,1996],[-2,-6]],[[5901,2021],[-35,-5]],[[5823,1990],[-9,-13]],[[5823,1990],[0,0]],[[5868,2006],[-2,10]],[[5802,1977],[-248,-121]],[[5902,2010],[-1,11]],[[5814,1977],[-12,0]],[[15353,5175],[102,-60]],[[5815,1964],[-1,13]],[[5554,1856],[-3,-4]],[[5554,1856],[-3,-4]],[[5551,1852],[-5,-78]],[[16836,5580],[218,682]],[[5809,1941],[-7,36]],[[6005,2010],[-35,-35]],[[5529,1824],[14,3]],[[6957,2353],[-45,68]],[[7496,2545],[0,0]],[[7496,2545],[1,-216]],[[15585,5192],[-130,-77]],[[6964,2348],[-7,5]],[[6964,2348],[-7,5]],[[16833,5550],[-40,36]],[[16833,5550],[3,30]],[[5970,1975],[0,0]],[[5970,1975],[-69,46]],[[5960,1967],[6,9]],[[5532,1794],[12,-15]],[[7647,2567],[61,-280]],[[5993,1959],[-16,3]],[[20944,6632],[47,-43]],[[5533,1783],[11,-4]],[[5544,1779],[2,-5]],[[5546,1774],[0,0]],[[5546,1774],[-5,-16]],[[15319,5053],[-272,-318]],[[8356,2785],[-17,-11]],[[8356,2785],[-188,-163]],[[5541,1758],[4,-10]],[[5541,1758],[4,-10]],[[5988,1922],[-9,-2]],[[5545,1748],[0,-16]],[[5993,1910],[-23,65]],[[5993,1910],[36,-28]],[[5564,1746],[-19,-14]],[[5545,1732],[0,-56]],[[6087,1933],[-9,-23]],[[21631,6742],[-69,53]],[[7885,2583],[-70,-254]],[[8425,2775],[-69,10]],[[8425,2775],[-8,-12]],[[5385,1663],[-140,269],[-274,95],[-123,-170]],[[5556,1724],[-10,-3]],[[8526,2804],[73,-171]],[[8526,2804],[-42,-51]],[[6078,1910],[44,-18]],[[6029,1882],[0,0]],[[6029,1882],[49,28]],[[6030,1876],[-1,6]],[[15603,5063],[-148,52]],[[6311,1970],[14,47]],[[8484,2753],[-59,22]],[[8484,2753],[8,-49]],[[7098,2253],[-134,95]],[[5545,1676],[-20,-45]],[[6122,1892],[31,2]],[[6825,2150],[16,304]],[[7105,2248],[-7,5]],[[7105,2248],[-7,5]],[[7162,2267],[2,-33]],[[20189,6317],[-35,10]],[[20189,6317],[-116,-95]],[[5565,1674],[-20,2]],[[16198,5217],[-1,16]],[[16198,5217],[-11,-7]],[[20837,6480],[138,-247]],[[20266,6331],[-77,-14]],[[20266,6331],[-86,-174]],[[19921,6224],[-104,60]],[[19921,6224],[-90,-42]],[[6105,1849],[17,43]],[[5525,1631],[-41,-159]],[[7164,2234],[-17,-10]],[[7147,2224],[-42,24]],[[15691,5027],[-290,-137]],[[5898,1752],[63,-13]],[[20073,6222],[-152,2]],[[20073,6222],[-273,-141]],[[5979,1759],[14,151]],[[6786,2057],[39,93]],[[5942,1735],[-7,-28]],[[5983,1748],[-4,11]],[[5961,1739],[18,20]],[[5602,1598],[-77,33]],[[19629,6079],[36,-260]],[[5513,1554],[-14,-5]],[[20364,6258],[-98,73]],[[20364,6258],[-185,-490]],[[21821,6614],[-1,-221]],[[4672,1212],[0,0]],[[7271,2169],[-107,65]],[[19800,6081],[-84,-22]],[[15047,4735],[-200,-24]],[[15047,4735],[-61,-115]],[[8599,2633],[-19,-42]],[[8599,2633],[103,-90]],[[5970,1656],[-9,83]],[[5484,1472],[-10,-11]],[[20161,6138],[-74,-59]],[[7708,2287],[107,42]],[[16260,5063],[-62,154]],[[16260,5063],[376,81]],[[5474,1461],[-7,-13]],[[5474,1461],[-7,-13]],[[7128,2066],[19,158]],[[5467,1448],[-10,-25]],[[7124,2059],[4,7]],[[7124,2059],[4,7]],[[6895,1971],[-70,179]],[[7425,2162],[-13,0]],[[16636,5144],[197,406]],[[16636,5144],[30,-57]],[[4497,1057],[142,356]],[[5457,1423],[-6,-16]],[[5457,1423],[-6,-16]],[[7668,2234],[40,53]],[[7455,2156],[24,-3]],[[20086,6078],[-83,4]],[[6074,1643],[-60,-44]],[[5451,1407],[-2,-134]],[[7115,2008],[9,51]],[[14986,4620],[-20,-23]],[[14986,4620],[36,-170]],[[6014,1599],[-33,-42]],[[7112,2000],[3,8]],[[7112,2000],[3,8]],[[7391,2097],[2,42]],[[5952,1550],[1,-24]],[[5643,1431],[-159,41]],[[8702,2543],[134,-145]],[[8702,2543],[-34,-286]],[[5981,1557],[-28,-31]],[[6003,1563],[-22,-6]],[[19373,5824],[0,0]],[[19373,5824],[226,-2]],[[19373,5824],[121,-177]],[[15439,4714],[291,129]],[[5953,1526],[-14,-21]],[[16228,4931],[-54,110]],[[16228,4931],[32,132]],[[21421,6335],[-25,32]],[[15422,4691],[-37,-39]],[[6427,1692],[33,63]],[[14359,4365],[12,725]],[[14359,4365],[-139,-447]],[[5939,1505],[0,0]],[[5939,1505],[18,17]],[[5939,1505],[-5,-13]],[[5934,1492],[-43,-58]],[[5670,1388],[-29,-1]],[[5892,1470],[-19,-42]],[[6475,1684],[-10,47]],[[15385,4652],[12,-69]],[[15385,4652],[125,-161]],[[5952,1485],[-18,7]],[[9293,2681],[-65,-318]],[[9293,2681],[277,-272]],[[9293,2681],[-156,513],[-178,-841]],[[21820,6393],[-21,5]],[[8093,2251],[-17,-23]],[[5449,1273],[5,-7]],[[5449,1273],[5,-7]],[[5820,1411],[4,-9]],[[5812,1407],[8,-15]],[[5873,1428],[-38,-25]],[[5891,1434],[-18,-6]],[[5834,1412],[1,-9]],[[21846,6379],[-26,14]],[[5454,1266],[3,-5]],[[5454,1266],[3,-5]],[[8076,2228],[0,0]],[[8076,2228],[-261,101]],[[5835,1403],[-15,-11]],[[5835,1403],[0,0]],[[5457,1261],[9,-34]],[[5820,1392],[-44,-61]],[[5881,1410],[-18,9]],[[5908,1419],[-17,15]],[[6695,1705],[-48,65]],[[5784,1364],[8,-5]],[[7571,2008],[18,-17]],[[5466,1227],[1,-11]],[[5466,1227],[1,-11]],[[8091,2188],[-15,40]],[[6692,1678],[3,27]],[[7712,2045],[-48,-14]],[[5467,1216],[41,-50]],[[5776,1331],[-110,-83]],[[4759,943],[35,-12]],[[4760,933],[-1,10]],[[8086,2161],[5,27]],[[8124,2172],[-33,16]],[[20738,6025],[37,-24]],[[21622,6247],[202,-192]],[[6730,1659],[-35,46]],[[4794,931],[4,-3]],[[4794,931],[-7,-22]],[[7064,1778],[48,222]],[[4798,928],[2,-2]],[[4798,928],[-1,-10]],[[5491,1191],[7,-11]],[[4800,926],[4,-2]],[[4800,926],[-3,-8]],[[5653,1249],[1,-41]],[[4806,926],[3,0]],[[4806,926],[3,0]],[[4804,924],[2,2]],[[4809,926],[0,-5]],[[4797,918],[-1,-6]],[[5666,1248],[-1,-7]],[[5666,1248],[-1,-7]],[[8836,2398],[15,-14]],[[8836,2398],[0,-266]],[[4809,921],[128,203],[-84,708]],[[4809,921],[-4,-15]],[[9369,2582],[-4,-23]],[[4787,909],[-27,24]],[[4800,914],[4,10]],[[4800,914],[-4,-2]],[[4796,912],[-7,-5]],[[5665,1241],[-11,-33]],[[4789,907],[-2,2]],[[4790,903],[-1,4]],[[4790,903],[-26,-27]],[[4805,906],[-5,8]],[[4805,906],[-14,-16]],[[5508,1166],[1,-7]],[[5508,1166],[1,-7]],[[6793,1644],[-63,15]],[[16259,4755],[-31,176]],[[16259,4755],[-13,-32]],[[5650,1217],[-36,5]],[[4791,890],[-1,13]],[[4764,876],[-4,57]],[[5509,1159],[6,-28]],[[6702,1604],[28,55]],[[5654,1208],[-4,-22]],[[6782,1623],[11,21]],[[5670,1195],[-20,-24]],[[5650,1186],[0,-7]],[[5650,1186],[0,-7]],[[15355,4454],[68,-194]],[[6900,1646],[-28,-25]],[[5515,1131],[4,-43]],[[4791,855],[-27,21]],[[4791,855],[0,35]],[[5524,1134],[-1,-6]],[[5650,1179],[0,-8]],[[5284,1040],[69,-257]],[[15329,4436],[-19,-31]],[[5650,1171],[-1,-6]],[[6872,1621],[-79,23]],[[5649,1165],[-3,-10]],[[5649,1165],[-3,-10]],[[5646,1155],[2,-6]],[[5646,1155],[2,-6]],[[5648,1149],[2,-9]],[[20179,5768],[-427,12]],[[20179,5768],[-27,-179]],[[5909,1245],[-11,-21]],[[15310,4405],[-84,-87]],[[15310,4405],[-20,-295]],[[5650,1140],[0,-13]],[[5650,1140],[4,-56]],[[5519,1088],[2,-5]],[[5519,1088],[-1,-5]],[[5518,1083],[0,-19]],[[5521,1083],[-3,0]],[[5898,1224],[0,0]],[[5898,1224],[-122,107]],[[5538,1087],[-12,-6]],[[5538,1087],[0,0]],[[5526,1081],[-5,2]],[[5526,1081],[0,0]],[[7347,1755],[39,-3]],[[5650,1127],[3,-4]],[[5650,1127],[3,-4]],[[15112,4325],[114,-7]],[[6893,1587],[-21,34]],[[5539,1083],[0,0]],[[5539,1083],[-13,-2]],[[5542,1083],[0,0]],[[5542,1083],[-4,4]],[[5549,1086],[-11,1]],[[5549,1086],[-7,-3]],[[5550,1086],[-1,0]],[[5653,1123],[6,-10]],[[5653,1123],[5,-16]],[[6098,1289],[-6,-90]],[[5665,1125],[-6,-12]],[[5542,1075],[-3,8]],[[5518,1064],[-2,-9]],[[5518,1064],[0,-8]],[[5544,1071],[-5,12]],[[7386,1752],[204,229]],[[7386,1752],[0,0]],[[6887,1569],[6,18]],[[5659,1113],[-1,-6]],[[20483,5807],[42,-22]],[[5516,1055],[0,-4]],[[5518,1056],[-2,-1]],[[5518,1056],[-2,-5]],[[5658,1107],[-4,-23]],[[5516,1051],[-33,-26]],[[5571,1067],[-22,19]],[[7741,1864],[-50,-39]],[[5575,1065],[-6,0]],[[5575,1065],[-33,18]],[[5576,1065],[-1,0]],[[5909,1189],[-11,35]],[[14451,4090],[-92,275]],[[5483,1025],[-4,-5]],[[5483,1025],[-1,-4]],[[6955,1571],[-62,16]],[[5678,1096],[-28,-41]],[[5579,1058],[0,0]],[[5579,1058],[-4,7]],[[5579,1058],[-10,6]],[[5479,1020],[-4,-4]],[[5479,1020],[-4,-6]],[[5482,1021],[-3,-1]],[[5482,1021],[0,-13]],[[15226,4318],[-29,-143]],[[5654,1084],[-3,-27]],[[5475,1016],[-3,-5]],[[5475,1014],[0,2]],[[5475,1014],[-3,-3]],[[5472,1011],[-3,-3]],[[5469,1008],[0,-2]],[[5469,1006],[-9,-4]],[[5460,1002],[-9,-6]],[[5460,1002],[-9,-10]],[[6077,1234],[15,-35]],[[5472,1005],[-3,1]],[[5472,1005],[-3,3]],[[5482,1008],[-10,-3]],[[5482,1008],[-31,-16]],[[14437,4066],[14,24]],[[5451,996],[-3,-4]],[[5451,996],[-1,-2]],[[5450,994],[0,-2]],[[5448,992],[-13,-16]],[[5450,992],[-2,0]],[[5451,992],[-1,0]],[[5451,992],[-1,2]],[[5596,1044],[-49,25]],[[5596,1044],[-17,14]],[[5596,1044],[0,0]],[[5597,1043],[-1,1]],[[5597,1043],[0,0]],[[5435,976],[-23,-16]],[[5435,976],[-23,-16]],[[5651,1057],[-3,-2]],[[5651,1057],[-1,-2]],[[5648,1055],[-2,-6]],[[5650,1055],[-2,0]],[[5646,1049],[-1,-9]],[[5646,1049],[2,-7]],[[5412,960],[-38,-73]],[[5620,1036],[-44,29]],[[5620,1036],[-44,29]],[[5648,1042],[-3,-2]],[[5645,1040],[-19,-16]],[[9206,2327],[-31,-72]],[[5614,1025],[-17,18]],[[6092,1199],[2,-16]],[[5626,1024],[-3,-1]],[[5623,1023],[-3,13]],[[5623,1023],[-26,20]],[[5623,1023],[0,0]],[[5628,1021],[-2,3]],[[21881,6079],[-57,-24]],[[5630,1012],[-2,9]],[[5630,1012],[-2,9]],[[6094,1183],[-6,-1]],[[6094,1183],[6,-20]],[[5631,1008],[-1,4]],[[21824,6055],[0,0]],[[16289,4561],[-19,13]],[[16289,4561],[-30,194]],[[5712,1034],[-64,8]],[[5435,926],[-73,-101]],[[7372,1641],[14,111]],[[5632,989],[-1,19]],[[6100,1163],[8,-94]],[[6112,1165],[-12,-2]],[[5374,887],[-16,-82]],[[5374,887],[-12,-28]],[[20691,5732],[110,63]],[[20152,5589],[-452,-127]],[[20152,5589],[-23,-293]],[[8836,2132],[16,-16]],[[8836,2132],[-51,-141]],[[5651,972],[-19,17]],[[5651,972],[-20,36]],[[19699,5463],[-54,113]],[[21560,5941],[393,-111]],[[5655,966],[-4,6]],[[5657,957],[-2,9]],[[5655,955],[0,11]],[[5655,955],[2,2]],[[20715,5714],[9,-53]],[[15197,4175],[-42,-6]],[[15197,4175],[24,-139]],[[5655,945],[0,10]],[[5657,944],[-2,1]],[[5657,944],[0,13]],[[5653,943],[-21,46]],[[5653,943],[2,2]],[[5655,930],[-2,13]],[[5655,930],[2,14]],[[5366,817],[-5,-5]],[[5361,812],[-3,-5]],[[5361,812],[-3,-5]],[[5661,925],[-4,19]],[[5358,807],[0,-2]],[[5663,921],[-2,4]],[[5663,921],[-2,4]],[[5358,805],[-11,-31]],[[14514,3932],[-63,158]],[[14514,3932],[210,192],[392,-192],[17,-161]],[[5664,914],[-9,16]],[[5664,914],[-1,7]],[[7989,1765],[-34,-110]],[[6101,1070],[7,-1]],[[6108,1069],[-5,-41]],[[15202,4126],[-15,-32]],[[5347,774],[-13,-10]],[[5347,774],[-11,-65]],[[5334,764],[-4,-62]],[[5661,883],[3,31]],[[5660,877],[1,6]],[[5660,877],[1,6]],[[6060,1022],[12,-27]],[[7192,1433],[486,33]],[[5668,867],[-8,10]],[[6890,1321],[61,-19]],[[6004,993],[22,-30]],[[6074,1017],[2,-11]],[[6103,1028],[-27,-22]],[[15290,4110],[-2,-57]],[[5340,735],[-4,-26]],[[8773,1985],[-18,-46]],[[20457,5544],[81,-127]],[[6950,1330],[1,-28]],[[6045,995],[13,-24]],[[6076,1006],[-4,-11]],[[5710,861],[-24,-28]],[[6072,995],[-4,-34]],[[5673,841],[-5,26]],[[5673,841],[-5,26]],[[5339,712],[5,-51]],[[5336,709],[0,0]],[[5336,709],[2,-37]],[[6026,969],[-8,-51]],[[5678,837],[-5,4]],[[5686,833],[-8,4]],[[6951,1302],[82,-65]],[[6058,971],[2,19]],[[6058,971],[4,-20]],[[19336,5220],[47,-10]],[[19336,5220],[-25,-163]],[[5683,828],[-5,9]],[[5683,828],[3,5]],[[5989,941],[26,-25]],[[6339,1071],[-22,-68]],[[7846,1620],[-78,27]],[[6177,1006],[-74,22]],[[7955,1655],[0,0]],[[7955,1655],[-109,-35]],[[8755,1939],[-7,24]],[[8755,1939],[-2,-19]],[[5655,808],[12,48]],[[5687,820],[-4,8]],[[5689,820],[-2,0]],[[5689,820],[-3,13]],[[4938,534],[-147,321]],[[6068,961],[-6,-10]],[[15380,4087],[-90,23]],[[4942,530],[-4,4]],[[4942,530],[-4,4]],[[21518,5768],[-78,-18]],[[5700,817],[0,0]],[[5700,817],[-9,-1]],[[15288,4053],[-3,-48]],[[5705,818],[-5,-1]],[[5705,818],[0,0]],[[6062,951],[-44,-33]],[[5340,679],[-3,-10]],[[19383,5210],[39,43]],[[19383,5210],[64,-108]],[[5948,904],[20,-46]],[[5338,672],[0,0]],[[5338,672],[9,-20]],[[5338,672],[0,-15]],[[5700,807],[-11,13]],[[5337,669],[-4,-21]],[[8083,1680],[-128,-25]],[[5703,806],[-3,1]],[[5703,806],[-3,1]],[[5705,807],[-2,-1]],[[5705,807],[-5,10]],[[18727,5023],[284,488],[325,-291]],[[5767,828],[-62,-10]],[[5708,804],[-3,3]],[[5710,803],[-2,1]],[[5710,803],[-5,15]],[[6018,918],[-3,-2]],[[6015,916],[-3,-6]],[[6015,916],[-3,-6]],[[21532,5750],[-14,17]],[[6264,1005],[-1,-17]],[[5338,657],[9,-5]],[[5338,657],[8,-14]],[[6012,910],[-8,-9]],[[5997,899],[-10,-21]],[[5333,648],[11,-12]],[[5333,648],[1,-65]],[[6004,901],[-7,-2]],[[6004,901],[-7,-2]],[[5712,791],[-4,13]],[[5714,791],[-2,0]],[[5714,791],[-4,12]],[[5738,800],[-4,-5]],[[5347,652],[0,-10]],[[5746,801],[-1,-1]],[[5715,789],[-1,2]],[[5715,789],[-1,0]],[[5745,800],[-7,0]],[[5745,800],[-7,0]],[[5714,789],[-2,2]],[[5718,790],[-3,-1]],[[5720,791],[-2,-1]],[[5775,811],[-7,-14]],[[6216,976],[-9,18]],[[6216,976],[-148,-15]],[[5734,795],[-14,-4]],[[5734,795],[-1,-4]],[[6226,979],[-10,-3]],[[5781,812],[-6,-1]],[[5720,788],[-2,2]],[[5720,788],[0,3]],[[5777,809],[-2,2]],[[5777,809],[-11,-16]],[[6262,990],[0,-1]],[[6239,981],[2,8]],[[5725,788],[-5,0]],[[5725,788],[-1,-1]],[[6262,989],[-6,-8]],[[5733,791],[-8,-3]],[[5724,787],[-4,1]],[[5724,787],[-10,2]],[[5780,808],[-3,1]],[[5780,808],[-15,-16]],[[6263,988],[-1,1]],[[5753,797],[-7,4]],[[5753,797],[-20,-6]],[[5346,643],[-2,-7]],[[5346,643],[1,-1]],[[5756,798],[-3,-1]],[[5756,798],[-10,3]],[[6242,979],[2,-13]],[[5784,807],[-4,1]],[[5784,807],[-3,5]],[[5347,642],[-2,-7]],[[5974,878],[-2,-3]],[[5974,878],[-2,-3]],[[6256,981],[0,0]],[[6256,981],[-30,-2]],[[6256,981],[7,-10]],[[5972,875],[-2,-8]],[[6317,1003],[-9,-13]],[[5759,794],[-3,4]],[[21953,5830],[-47,226]],[[5768,797],[-9,-3]],[[5768,797],[-2,-4]],[[6229,969],[-3,10]],[[5344,636],[1,-1]],[[5987,878],[-13,0]],[[20623,5493],[137,-229]],[[5345,635],[-11,-52]],[[5766,793],[-1,-1]],[[5765,792],[-6,2]],[[15285,4005],[104,-261]],[[7842,1554],[4,66]],[[6328,1001],[-11,2]],[[15311,4011],[-23,42]],[[5970,867],[-1,-5]],[[5970,867],[-1,-5]],[[5792,800],[-8,7]],[[6308,990],[-45,-2]],[[6308,990],[-3,-13]],[[5969,862],[-1,-4]],[[5816,804],[-11,-4]],[[5816,804],[-5,-4]],[[5805,800],[-24,12]],[[5805,800],[-3,-2]],[[5802,798],[-5,-3]],[[5793,794],[-1,6]],[[5793,794],[-9,13]],[[5797,795],[-4,-1]],[[5797,795],[-5,5]],[[5804,798],[-2,0]],[[7841,1546],[1,8]],[[7841,1546],[1,8]],[[7032,1252],[1,-15]],[[5811,800],[-7,-2]],[[5811,800],[-7,-2]],[[5968,858],[-2,-9]],[[6919,1205],[-169,-409]],[[7839,1537],[2,9]],[[5966,849],[-3,-8]],[[5966,849],[-3,-8]],[[5937,837],[12,-32]],[[5010,485],[-21,-10]],[[5856,804],[-3,-19]],[[5826,793],[-10,11]],[[4989,475],[-47,55]],[[7033,1237],[73,-108]],[[5963,841],[-12,-36]],[[7838,1529],[1,8]],[[7838,1529],[1,8]],[[7838,1527],[0,2]],[[5833,790],[-7,3]],[[5833,790],[-7,3]],[[21854,5771],[-300,-34]],[[7839,1518],[-1,9]],[[7839,1518],[-1,9]],[[5898,805],[-13,-27]],[[5853,785],[-20,5]],[[5853,785],[0,0]],[[5854,783],[-1,2]],[[5334,583],[0,-1]],[[5334,582],[-3,-5]],[[5334,582],[-3,-5]],[[5871,784],[-12,-7]],[[5314,572],[-28,-24]],[[5859,777],[-5,6]],[[5859,777],[-5,6]],[[5331,577],[-8,-4]],[[5323,573],[-9,-1]],[[5323,573],[-9,-1]],[[5877,780],[-6,4]],[[5877,780],[-6,4]],[[5949,805],[-4,-5]],[[5951,805],[-2,0]],[[5951,805],[-6,-5]],[[5885,778],[-8,2]],[[5945,800],[-4,-5]],[[5272,544],[-2,-11]],[[5272,544],[-2,-12]],[[5713,711],[-26,109]],[[5286,548],[-14,-4]],[[5286,548],[-16,-15]],[[5941,795],[-8,-10]],[[5941,795],[-8,-10]],[[15305,3948],[-20,57]],[[14621,3739],[-107,193]],[[14621,3739],[31,-6]],[[20129,5296],[-274,-110]],[[20129,5296],[-34,-110]],[[5933,785],[-16,-6]],[[5917,779],[-5,-3]],[[5917,779],[-3,-4]],[[5912,776],[-2,-2]],[[5270,533],[0,-1]],[[5910,774],[-3,-2]],[[5910,774],[-3,-2]],[[5270,532],[-1,-4]],[[5914,775],[-2,1]],[[5907,772],[-22,6]],[[5269,528],[-4,-5]],[[5269,528],[-4,-5]],[[5841,742],[-15,51]],[[5265,523],[-1,-1]],[[5264,522],[-11,-13]],[[5264,522],[-9,-10]],[[5926,770],[-12,5]],[[5926,770],[0,0]],[[7847,1475],[-8,43]],[[5255,512],[-7,-5]],[[5255,512],[-2,-3]],[[5911,759],[-13,7]],[[5244,505],[-6,-4]],[[5244,505],[-6,-4]],[[5248,507],[-4,-2]],[[5253,509],[-5,-2]],[[5238,501],[-8,-38]],[[6076,810],[-89,68]],[[7856,1457],[-9,18]],[[7856,1457],[-9,18]],[[5922,743],[4,27]],[[20712,5407],[-37,-90]],[[7103,1177],[3,-48]],[[5952,742],[-26,28]],[[5230,463],[-9,-7]],[[5230,463],[-3,-6]],[[5221,456],[-211,29]],[[5227,457],[-3,-2]],[[5227,457],[-3,-2]],[[5224,455],[-3,1]],[[7106,1129],[32,-59]],[[20095,5186],[-91,-217]],[[20095,5186],[116,-163]],[[7967,1428],[-65,-47]],[[7031,1073],[45,-82]],[[7902,1381],[-46,76]],[[7902,1381],[0,0]],[[16147,4047],[-253,273],[-87,313]],[[16147,4047],[198,285],[-56,229]],[[6969,1021],[152,-64]],[[7138,1070],[-17,-113]],[[7149,1071],[-11,-1]],[[20412,5173],[56,7]],[[20468,5180],[31,10]],[[20604,5214],[163,6]],[[7516,1147],[150,95]],[[15389,3744],[17,10]],[[15389,3744],[6,-49]],[[7329,1059],[-67,-81]],[[14632,3488],[-11,251]],[[7121,957],[0,-29]],[[21642,5395],[-112,280]],[[22156,5523],[-203,307]],[[21737,5419],[-77,58]],[[5283,247],[-273,238]],[[5083,169],[-94,306]],[[4651,0],[-146,393],[254,550]],[[7917,1216],[-15,165]],[[16214,3917],[-67,130]],[[19624,4869],[-117,7]],[[19393,4807],[-121,102]],[[77064,67137],[25,-33]],[[77107,67044],[5,11]],[[77103,67038],[4,7]],[[77103,67038],[-14,66]],[[77106,67007],[-3,31]],[[77106,67007],[114,61]],[[77106,67006],[0,1]],[[77154,66975],[-6,20]],[[77044,66921],[62,86]],[[80411,57328],[440,-110]],[[80851,57218],[127,-84]],[[84902,55277],[341,-96]],[[83800,55388],[308,-373]],[[84108,55014],[280,-193]],[[83547,55068],[265,-243]],[[84388,54821],[268,-197]],[[83239,55010],[308,58]],[[83812,54825],[260,-270]],[[84656,54624],[272,-153]],[[84928,54470],[139,-119]],[[84072,54555],[267,-214]],[[85067,54350],[125,-116]],[[85192,54234],[8,-26]],[[85200,54208],[268,-84]],[[85200,54208],[493,-676]],[[84339,54341],[256,-309]],[[85468,54125],[155,-96]],[[84595,54032],[31,-88]],[[84626,53944],[0,-28]],[[85693,53532],[179,-313]],[[85872,53218],[67,-72]],[[85939,53146],[278,-80]],[[86218,53066],[256,-283]],[[86474,52783],[275,-107]],[[86750,52676],[110,-137]],[[86860,52539],[138,-207]],[[86998,52333],[266,-187]],[[87223,52119],[93,-110]],[[73564,63595],[-232,331],[118,461]],[[75770,59687],[231,234],[153,-296],[207,159]],[[84384,56412],[7,-185]],[[80292,56610],[49,-117]],[[80341,56493],[0,0]],[[80341,56493],[0,0]],[[80341,56493],[236,-51],[317,-394]],[[80691,56277],[-131,-43]],[[80560,56234],[-100,9]],[[80460,56243],[-15,-46]],[[80894,56048],[138,-130]],[[80895,56046],[-20,382]],[[81033,55918],[-5,-82]],[[83800,55388],[308,-373]],[[81028,55836],[0,-1]],[[81028,55836],[176,132]],[[81028,55836],[0,0]],[[81027,55834],[-106,-117]],[[80921,55717],[49,-489]],[[80921,55717],[-176,172]],[[84108,55014],[280,-193]],[[83547,55068],[265,-243]],[[84388,54821],[268,-197]],[[83239,55010],[308,58]],[[83811,54825],[261,-270]],[[84656,54624],[272,-153]],[[80970,55228],[167,-194]],[[84928,54470],[139,-119]],[[84072,54555],[267,-214]],[[85067,54350],[125,-116]],[[81137,55034],[14,-66]],[[85192,54234],[8,-26]],[[85200,54208],[268,-84]],[[85200,54208],[493,-677]],[[84339,54341],[256,-309]],[[85468,54125],[155,-96]],[[84595,54032],[31,-88]],[[84626,53944],[0,-28]],[[85693,53532],[179,-313]],[[85872,53218],[67,-72]],[[85939,53146],[278,-80]],[[86218,53066],[256,-283]],[[86474,52783],[275,-107]],[[86750,52676],[110,-137]],[[86860,52539],[138,-207]],[[86998,52333],[266,-187]],[[81253,53319],[-108,-527],[-278,-150],[5,-290]],[[87223,52119],[93,-110]],[[82397,54983],[0,0]],[[82397,54983],[0,0]],[[82397,54983],[-12,11]],[[82408,54933],[-11,50]],[[82408,54933],[-21,-11]],[[81004,54868],[-208,119]],[[81009,54734],[-5,133]],[[81526,54376],[42,462]],[[81763,53131],[59,-21]],[[81741,53119],[22,12]],[[81706,53119],[35,-1]],[[81637,53102],[28,-38]],[[81639,53100],[-51,-66]],[[81665,53064],[41,55]],[[81588,53034],[-21,71]],[[76193,72959],[-13,-1]],[[76193,72959],[-13,-1]],[[76196,72957],[-3,2]],[[76196,72957],[-3,2]],[[76196,72957],[0,-7]],[[76180,72958],[-21,-14]],[[76204,72954],[21,110]],[[76204,72954],[1,3]],[[76204,72954],[0,-2]],[[76204,72952],[-3,-6]],[[76204,72952],[-3,-6]],[[76196,72950],[-2,-9]],[[76196,72950],[-2,-9]],[[76196,72941],[-2,0]],[[76196,72941],[5,5]],[[76196,72941],[-2,0]],[[76158,72942],[-252,-911]],[[76519,72436],[180,-55],[-161,-206],[137,-105],[220,174],[198,-207],[107,350]],[[74211,72325],[-212,-188]],[[73999,72144],[-85,-305],[-275,-250],[-308,59]],[[74056,70827],[-27,21]],[[74058,70826],[-2,1]],[[74058,70826],[-2,1]],[[74212,70401],[-154,425]],[[76230,69981],[193,-666]],[[73760,70105],[81,-137]],[[76362,69650],[319,-112]],[[74077,69903],[1,2]],[[74077,69903],[-231,65]],[[74155,69801],[-1,4]],[[74155,69801],[-78,102]],[[74155,69801],[22,-15]],[[74177,69786],[5,-13]],[[74177,69786],[5,-13]],[[74203,69761],[0,0]],[[74203,69761],[-21,12]],[[74226,69757],[-23,4]],[[74227,69755],[-1,2]],[[74227,69755],[-1,2]],[[74270,69650],[-43,105]],[[74271,69645],[-1,5]],[[74271,69645],[-1,5]],[[74281,69640],[-4,-1]],[[74279,69639],[2,1]],[[74279,69639],[-2,0]],[[74277,69639],[-6,6]],[[74282,69637],[-1,3]],[[74282,69637],[-3,2]],[[74307,69607],[-25,30]],[[74308,69606],[-1,1]],[[74308,69606],[-1,1]],[[76425,69315],[52,-246],[282,-380],[499,-1010]],[[74383,69547],[-75,59]],[[74388,69545],[-5,2]],[[74388,69545],[-5,2]],[[74395,69543],[0,-1]],[[74395,69543],[-3,-1]],[[74392,69542],[-4,3]],[[74394,69541],[-2,1]],[[74394,69541],[1,1]],[[74394,69541],[1,1]],[[74416,69525],[-21,18]],[[74419,69520],[-3,5]],[[74419,69520],[-3,5]],[[74556,69347],[-137,173]],[[74562,69339],[-6,8]],[[74562,69339],[-6,8]],[[74562,69339],[132,-387],[-18,-339]],[[73917,69364],[-229,480]],[[73398,69083],[381,-355],[68,-183]],[[74677,68613],[-56,-76]],[[74620,68535],[10,-13]],[[74630,68520],[-6,-11]],[[74625,68508],[-20,-150]],[[73847,68544],[2,-8]],[[74605,68356],[-1,-39]],[[73291,67999],[9,-4]],[[73288,67998],[111,-295]],[[73260,67986],[-150,213]],[[73400,67702],[18,-51]],[[74849,67440],[226,562],[-7,290]],[[74849,67440],[27,-85]],[[74849,67440],[-26,-129]],[[76575,66876],[-193,199]],[[73239,67105],[-16,261],[-399,283]],[[73239,67105],[4,-2]],[[73239,67105],[4,-2]],[[73246,67026],[-3,77]],[[73246,67026],[-5,-7]],[[73246,67026],[-5,-7]],[[73241,67019],[2,-151]],[[76913,66468],[-323,407]],[[73243,66868],[11,-11]],[[73243,66868],[11,-11]],[[73254,66857],[21,-36]],[[73275,66821],[-1,-2]],[[73275,66821],[-1,-2]],[[73277,66802],[-3,17]],[[73277,66801],[0,1]],[[73277,66801],[0,1]],[[73278,66784],[-1,17]],[[73278,66784],[144,-86]],[[77012,66327],[-98,143]],[[77020,66317],[-8,10]],[[77020,66317],[-8,10]],[[73422,66698],[15,-4]],[[73422,66698],[15,-4]],[[73437,66694],[199,-173]],[[77035,66208],[-15,109]],[[73301,66636],[-23,148]],[[77026,66189],[9,19]],[[77026,66189],[9,19]],[[73304,66634],[-3,2]],[[73304,66634],[-3,2]],[[73311,66559],[-7,75]],[[73317,66551],[-6,8]],[[73317,66551],[-6,8]],[[77129,66085],[-103,104]],[[77137,66083],[-8,2]],[[77137,66083],[-8,2]],[[77137,66083],[17,-15]],[[73323,66538],[-6,13]],[[73325,66532],[-2,6]],[[73325,66532],[-2,6]],[[77157,66068],[91,60]],[[73330,66515],[-5,17]],[[73333,66508],[-3,7]],[[73333,66508],[-3,7]],[[72632,66422],[105,-157]],[[73431,66240],[-98,268]],[[72737,66262],[16,-36]],[[72782,66145],[-41,74]],[[72791,66130],[-9,15]],[[72791,66130],[-9,15]],[[73038,65945],[-52,46]],[[72900,65948],[-2,-1]],[[72900,65948],[-2,-1]],[[72900,65948],[29,-33]],[[72898,65947],[-107,183]],[[73066,65892],[-28,53]],[[73066,65892],[-28,53]],[[73112,65873],[1,-1]],[[73112,65873],[-46,19]],[[73142,65651],[-30,222]],[[73142,65651],[0,0]],[[73142,65651],[70,-196]],[[75323,65152],[129,163]],[[75323,65152],[-162,-97]],[[75323,65152],[-61,-215]],[[75639,65048],[31,261]],[[75639,65048],[169,-234]],[[75614,65027],[25,21]],[[75614,65027],[36,-132]],[[75527,64966],[87,61]],[[75527,64966],[-48,-78]],[[75527,64966],[9,-173]],[[75650,64895],[35,-62]],[[75650,64895],[20,-147]],[[75262,64937],[27,-114]],[[75262,64937],[-176,-96]],[[75289,64823],[76,-209]],[[75289,64823],[2,-209]],[[75535,64789],[-2,-138]],[[75087,64839],[15,-156]],[[78443,71016],[141,293]],[[78603,69515],[165,-528]],[[78606,69515],[-435,598]],[[77736,67626],[224,395]],[[77736,67626],[-1,-3]],[[77736,67626],[-105,29]],[[77402,66635],[382,-181],[85,105],[209,-269]],[[78081,66291],[246,-208]],[[79774,65881],[23,126]],[[79766,65840],[10,41]],[[79766,65840],[148,7]],[[79747,65820],[19,20]],[[79732,65810],[15,10]],[[79732,65810],[15,10]],[[79732,65810],[-108,-408],[-297,-379]],[[79146,65098],[12,-214]],[[81027,63161],[-250,161],[60,169],[-244,236],[8,404],[-117,240]],[[80999,62536],[-55,405],[109,161],[245,-206]],[[80999,62536],[253,57],[34,-404]],[[81480,61411],[-186,-118],[-249,374],[68,225],[-114,644]],[[87765,64887],[7,-23]],[[87772,64864],[198,-85]],[[87772,64864],[177,-322]],[[87949,64542],[0,0]],[[87949,64542],[62,-68]],[[88011,64474],[43,-6]],[[88011,64474],[-19,-226]],[[87634,64409],[178,-364]],[[91535,61078],[-132,-216]],[[91403,60862],[-3,-4]],[[91403,60862],[-3,-4]],[[91400,60858],[-29,-18]],[[91371,60840],[-315,-81]],[[91371,60840],[-30,-93]],[[91341,60747],[-4,-2]],[[91341,60747],[-4,-2]],[[91337,60745],[-124,-125]],[[90643,60623],[176,-14]],[[90436,60278],[253,-232]],[[90689,60046],[3,-2]],[[90689,60046],[3,-2]],[[90692,60044],[59,4]],[[90934,58841],[-79,126]],[[90934,58841],[-158,34]],[[90952,58805],[-18,36]],[[80249,71794],[-1,-1]],[[80249,71794],[78,-12]],[[80162,71753],[-1,1]],[[80162,71753],[87,41]],[[80146,71747],[-1,2]],[[80146,71747],[16,6]],[[80117,71720],[29,27]],[[80117,71720],[1,-1]],[[80106,71705],[11,15]],[[80095,71691],[11,14]],[[80095,71691],[0,-17]],[[80095,71691],[-23,-38]],[[80095,71674],[11,31]],[[80095,71674],[-28,-42]],[[80072,71653],[-5,-21]],[[80072,71653],[-22,-37]],[[80067,71632],[-17,-16]],[[80050,71616],[-32,-76]],[[80018,71540],[-133,-144]],[[80018,71540],[213,18],[87,-535]],[[79885,71396],[-173,-62]],[[80070,71249],[-185,147]],[[80070,71249],[-3,-4]],[[80070,71249],[27,-34]],[[77787,68613],[1,2]],[[77787,68613],[3,2]],[[77784,68610],[3,3]],[[77780,68609],[4,1]],[[77780,68609],[4,1]],[[77776,68597],[4,12]],[[77776,68597],[4,12]],[[77760,68597],[15,-3]],[[77775,68594],[-14,4]],[[77775,68594],[1,3]],[[77656,68399],[103,198]],[[77656,68399],[-207,126]],[[77583,68285],[73,114]],[[79085,67650],[-422,-245]],[[79546,66527],[195,-202]],[[75342,68266],[73,678]],[[76087,67584],[-125,121]],[[76088,67582],[-1,2]],[[77312,66862],[-435,-287]],[[76877,66575],[-1,0]],[[76877,66575],[-547,541],[-135,483],[-108,-15]],[[77012,66328],[-135,247]],[[77020,66317],[-8,11]],[[77020,66317],[-8,11]],[[77025,66190],[-5,127]],[[76997,66182],[28,8]],[[76997,66182],[28,8]],[[77129,66086],[-132,96]],[[77137,66084],[-8,2]],[[77137,66084],[-8,2]],[[77755,65996],[212,-337],[-40,-257],[-285,-223]],[[77153,66071],[-16,13]],[[77723,65883],[33,203],[-327,367],[-276,-382]],[[75194,66038],[209,325],[543,72],[67,266]],[[74840,65787],[322,367],[32,-116]],[[75052,65617],[142,421]],[[77642,65179],[-181,442],[-137,-24],[-171,474]],[[78215,64848],[-330,20],[-243,311]],[[75638,65049],[29,361]],[[75614,65027],[0,0]],[[75614,65027],[24,22]],[[75086,64841],[261,141],[100,358]],[[75927,64729],[-289,320]],[[75742,64714],[-128,313]],[[75434,64551],[180,476]],[[79913,79263],[23,12]],[[80055,79239],[-348,210]],[[79707,79449],[10,-16]],[[79717,79433],[0,-1]],[[79716,79432],[0,-5]],[[79716,79427],[1,0]],[[79717,79426],[1,-1]],[[79718,79425],[4,-3]],[[79722,79422],[0,0]],[[79722,79422],[2,-2]],[[79724,79420],[1,-2]],[[79726,79418],[0,1]],[[79726,79420],[1,2]],[[79727,79422],[0,1]],[[79727,79423],[4,2]],[[79731,79425],[1,-1]],[[79732,79424],[0,-1]],[[79732,79423],[1,-1]],[[79733,79422],[0,0]],[[79733,79422],[0,-1]],[[79733,79421],[0,0]],[[79733,79421],[1,-1]],[[79734,79420],[0,0]],[[79734,79420],[0,-1]],[[79734,79419],[0,0]],[[79734,79419],[1,-1]],[[79735,79418],[0,-1]],[[79735,79417],[1,-1]],[[79736,79416],[0,-1]],[[79736,79415],[0,0]],[[79736,79415],[1,-1]],[[79737,79414],[0,0]],[[79737,79413],[0,-1]],[[79737,79412],[1,-3]],[[79738,79409],[0,-2]],[[79738,79407],[1,-2]],[[79739,79405],[0,-1]],[[79739,79404],[0,-1]],[[79739,79403],[1,0]],[[79740,79403],[0,-1]],[[79740,79402],[0,-1]],[[79740,79401],[0,-2]],[[79740,79399],[0,-1]],[[79740,79398],[1,0]],[[79741,79398],[0,-1]],[[79742,79396],[0,0]],[[79742,79395],[1,0]],[[79743,79395],[0,-1]],[[79743,79394],[1,-1]],[[79744,79393],[0,0]],[[79744,79393],[1,-1]],[[79745,79392],[0,-1]],[[79745,79391],[1,-1]],[[79746,79390],[1,-2]],[[79747,79388],[1,-4]],[[79748,79384],[4,-9]],[[79752,79375],[8,-25]],[[79760,79350],[-1,-13]],[[79758,79335],[-6,-1]],[[79752,79334],[1,-8]],[[79753,79326],[22,-31]],[[79775,79295],[4,-6]],[[79778,79288],[10,-1]],[[79788,79292],[9,-5]],[[79798,79283],[9,-28]],[[79807,79255],[14,-7]],[[79821,79248],[22,-13]],[[79843,79235],[66,11]],[[79909,79246],[9,2]],[[79940,79230],[-22,18]],[[79940,79230],[-1,-1]],[[79933,79232],[-9,16]],[[80039,79003],[0,0]],[[80039,79003],[1,0]],[[80040,79003],[1,0]],[[80041,79003],[1,0]],[[80042,79003],[0,0]],[[80042,79003],[1,0]],[[80043,79003],[1,0]],[[80044,79003],[-3,29]],[[80041,79032],[-26,38]],[[80011,79089],[-8,40]],[[80003,79129],[-16,5]],[[79987,79134],[-5,-5]],[[79982,79124],[2,-9]],[[79984,79110],[-5,-2]],[[79979,79108],[-6,39]],[[79973,79147],[-6,13]],[[79967,79164],[4,10]],[[79971,79174],[-11,2]],[[79960,79176],[-1,19]],[[79959,79195],[0,8]],[[79959,79203],[-17,27]],[[79942,79230],[-2,0]],[[79872,78579],[8,26]],[[79881,78608],[-3,17]],[[79876,78632],[-3,3]],[[79873,78635],[-1,8]],[[79872,78643],[8,1]],[[79880,78644],[9,-4]],[[79889,78640],[-3,12]],[[79886,78652],[4,22]],[[79890,78674],[15,10]],[[79905,78684],[5,-1]],[[79910,78683],[31,8]],[[79941,78691],[3,28]],[[79944,78719],[6,47]],[[79950,78766],[27,49]],[[79977,78815],[2,10]],[[79979,78825],[-2,14]],[[79977,78839],[8,41]],[[79984,78881],[-5,-2]],[[79980,78875],[-5,-3]],[[79975,78879],[-10,15]],[[79964,78897],[13,21]],[[79977,78918],[0,4]],[[79977,78922],[-1,1]],[[79976,78923],[-2,1]],[[79974,78924],[-1,1]],[[79973,78925],[-2,0]],[[79971,78925],[0,0]],[[79971,78925],[-3,1]],[[79968,78926],[-1,1]],[[79967,78927],[0,0]],[[79967,78927],[-1,1]],[[79966,78928],[0,1]],[[79966,78929],[0,0]],[[79966,78929],[-1,2]],[[79965,78931],[1,2]],[[79966,78933],[5,3]],[[79971,78936],[1,0]],[[79972,78936],[1,0]],[[79973,78936],[1,0]],[[79974,78936],[6,1]],[[79980,78937],[0,0]],[[79980,78937],[1,3]],[[79981,78940],[1,1]],[[79982,78941],[0,1]],[[79982,78942],[0,1]],[[79982,78943],[0,1]],[[79982,78944],[0,2]],[[79982,78946],[1,0]],[[79983,78946],[1,1]],[[79984,78947],[1,1]],[[79985,78948],[0,1]],[[79986,78949],[1,1]],[[79987,78950],[1,4]],[[79988,78954],[-1,1]],[[79987,78955],[-1,2]],[[79986,78957],[-2,2]],[[79984,78959],[-1,0]],[[79983,78959],[1,1]],[[79984,78960],[0,1]],[[79984,78961],[0,1]],[[79984,78962],[0,1]],[[79984,78963],[1,2]],[[79985,78965],[0,1]],[[79985,78966],[1,2]],[[79986,78968],[-1,3]],[[79985,78971],[-1,-1]],[[79984,78970],[-2,-2]],[[79982,78968],[-1,0]],[[79981,78968],[0,-1]],[[79981,78967],[-1,0]],[[79980,78967],[-2,0]],[[79978,78967],[0,2]],[[79978,78969],[2,5]],[[79980,78974],[0,0]],[[79980,78974],[2,1]],[[79982,78975],[2,2]],[[79984,78977],[0,1]],[[79984,78978],[1,0]],[[79985,78978],[0,1]],[[79985,78979],[1,1]],[[79986,78980],[1,2]],[[79987,78982],[1,0]],[[79988,78982],[1,1]],[[79989,78983],[1,0]],[[79990,78983],[0,0]],[[79990,78983],[1,0]],[[79991,78983],[1,0]],[[79992,78983],[1,0]],[[79993,78983],[1,-1]],[[79994,78982],[1,-1]],[[79995,78981],[1,-1]],[[79996,78980],[1,0]],[[79997,78980],[0,-1]],[[79998,78979],[0,-1]],[[79998,78978],[0,-1]],[[79998,78977],[0,-1]],[[79998,78976],[0,-1]],[[79998,78975],[0,-1]],[[79998,78974],[1,-1]],[[79999,78973],[4,1]],[[80003,78974],[0,2]],[[80003,78976],[0,1]],[[80003,78977],[0,1]],[[80003,78978],[2,1]],[[80005,78979],[2,0]],[[80007,78979],[1,-1]],[[80008,78978],[0,-1]],[[80008,78977],[1,-1]],[[80009,78976],[2,-1]],[[80011,78975],[1,-1]],[[80012,78974],[1,-1]],[[80013,78973],[2,-3]],[[80016,78969],[2,1]],[[80018,78970],[-1,4]],[[80017,78974],[-1,3]],[[80016,78977],[1,2]],[[80017,78979],[0,1]],[[80017,78980],[0,1]],[[80017,78981],[0,1]],[[80017,78982],[0,1]],[[80017,78983],[1,1]],[[80019,78985],[1,1]],[[80020,78986],[2,0]],[[80022,78986],[1,0]],[[80023,78986],[1,0]],[[80025,78987],[0,1]],[[80025,78988],[-1,2]],[[80024,78991],[-1,1]],[[80023,78992],[0,1]],[[80023,78993],[0,1]],[[80023,78994],[0,1]],[[80023,78995],[0,0]],[[80023,78996],[0,1]],[[80023,78998],[1,1]],[[80024,78999],[0,1]],[[80024,79000],[1,1]],[[80025,79001],[0,0]],[[80025,79001],[1,0]],[[80026,79001],[2,0]],[[80028,79001],[1,0]],[[80029,79001],[0,0]],[[80029,79001],[1,0]],[[80030,79001],[1,0]],[[80031,79001],[1,0]],[[80032,79001],[0,0]],[[80032,79001],[1,1]],[[80033,79002],[1,0]],[[80034,79002],[1,1]],[[80035,79003],[1,0]],[[80036,79003],[1,0]],[[80037,79003],[1,0]],[[80038,79003],[1,0]],[[80039,79003],[0,0]],[[79871,78510],[3,1]],[[79874,78511],[0,3]],[[79874,78514],[-2,13]],[[79872,78532],[-1,14]],[[79874,78549],[5,5]],[[79879,78554],[-8,15]],[[79871,78569],[1,10]],[[79438,78502],[67,126],[367,-49]],[[78052,78544],[-2,3]],[[78050,78550],[0,4]],[[78050,78554],[-11,12]],[[78037,78566],[-14,11]],[[78021,78582],[-4,-2]],[[78016,78576],[-1,-3]],[[78015,78573],[-1,-4]],[[78014,78569],[-4,7]],[[78010,78576],[-6,-10]],[[78004,78566],[-6,-15]],[[77998,78551],[2,-1]],[[78000,78550],[0,-2]],[[78000,78548],[-3,0]],[[77997,78548],[-9,9]],[[77988,78557],[0,0]],[[77988,78559],[-3,7]],[[77985,78566],[1,15]],[[77987,78582],[-1,14]],[[77986,78596],[-14,13]],[[77972,78609],[-11,8]],[[77961,78617],[-6,1]],[[77955,78618],[-22,-7]],[[77933,78611],[-1,-1]],[[77932,78610],[-3,-6]],[[77929,78604],[-10,-3]],[[77919,78601],[-3,1]],[[77916,78602],[0,6]],[[77916,78608],[-7,2]],[[77909,78610],[-4,6]],[[77905,78616],[-3,4]],[[77902,78620],[2,7]],[[77904,78627],[-6,-5]],[[77896,78621],[-10,-8]],[[77886,78613],[-3,4]],[[77882,78618],[-2,6]],[[77880,78624],[-5,0]],[[77873,78627],[-8,10]],[[77865,78637],[-9,-1]],[[77856,78636],[-2,-5]],[[77854,78631],[-7,-6]],[[77847,78625],[-7,-2]],[[77840,78623],[-12,5]],[[77827,78629],[-5,0]],[[77820,78627],[-6,-1]],[[77812,78628],[-5,10]],[[77807,78638],[-10,8]],[[77797,78646],[3,4]],[[77800,78650],[-1,2]],[[77799,78652],[-7,6]],[[77792,78658],[1,4]],[[77793,78662],[0,2]],[[77790,78664],[-4,9]],[[77785,78674],[-6,2]],[[77779,78676],[-1,2]],[[77778,78678],[5,3]],[[77777,78682],[0,10]],[[77777,78692],[1,2]],[[77778,78694],[-4,1]],[[77774,78695],[-1,14]],[[77773,78709],[-5,6]],[[77766,78718],[-10,8]],[[77756,78726],[-4,10]],[[77752,78736],[-6,3]],[[77746,78739],[-4,5]],[[77741,78744],[-5,-4]],[[77736,78740],[-1,7]],[[77735,78747],[-3,5]],[[77732,78752],[-3,-2]],[[77729,78750],[-2,1]],[[77727,78751],[-8,11]],[[77718,78764],[-6,-5]],[[77712,78759],[-6,23]],[[77706,78782],[-8,7]],[[77698,78789],[-1,5]],[[77697,78794],[-5,4]],[[77692,78798],[-3,-1]],[[77689,78796],[-2,-1]],[[77687,78795],[-1,3]],[[77686,78798],[-3,0]],[[77683,78798],[-3,9]],[[77680,78807],[-2,6]],[[77677,78820],[-3,-1]],[[77674,78819],[-2,-1]],[[77672,78818],[-15,19]],[[77657,78837],[-5,3]],[[77652,78840],[-4,-2]],[[77648,78838],[0,4]],[[77648,78842],[-3,3]],[[77643,78842],[-5,-2]],[[77637,78841],[-2,10]],[[77637,78854],[3,8]],[[77640,78862],[-1,4]],[[77639,78866],[-2,6]],[[77636,78875],[-14,13]],[[77622,78888],[-7,4]],[[77615,78892],[-7,7]],[[77608,78899],[-3,5]],[[77605,78904],[-4,-2]],[[77599,78902],[-3,-4]],[[77596,78898],[-5,-21]],[[77591,78877],[1,-2]],[[77592,78875],[-5,-10]],[[77587,78865],[-11,2]],[[77571,78864],[-6,5]],[[77565,78869],[-4,-1]],[[77561,78868],[-4,0]],[[77557,78868],[-8,8]],[[77549,78876],[5,9]],[[77554,78885],[-2,14]],[[77549,78906],[-7,8]],[[77542,78914],[-10,1]],[[77532,78915],[-7,8]],[[77525,78923],[-4,8]],[[77521,78931],[-1,6]],[[77520,78937],[-10,11]],[[77510,78948],[-4,6]],[[77506,78954],[-11,13]],[[77495,78967],[-2,3]],[[77493,78970],[-5,9]],[[77488,78979],[-8,5]],[[77480,78984],[-1,12]],[[77479,78996],[-4,12]],[[77475,79008],[-5,10]],[[77470,79018],[-33,19]],[[77437,79037],[-14,1]],[[77423,79038],[-1,-3]],[[77422,79035],[-6,-5]],[[77416,79030],[-1,12]],[[77415,79042],[-3,13]],[[77411,79056],[-5,1]],[[77406,79059],[-2,12]],[[77404,79071],[-8,8]],[[77396,79079],[-10,5]],[[79785,78160],[86,350]],[[80547,77906],[8,195],[-245,422],[-257,55],[-34,326]],[[80024,78909],[8,25]],[[80031,78937],[9,15]],[[80040,78952],[0,4]],[[80040,78956],[4,6]],[[80044,78962],[2,15]],[[80039,78984],[-3,7]],[[80036,78991],[0,4]],[[80036,78995],[1,3]],[[80037,78998],[2,5]],[[79397,78055],[388,105]],[[79735,77967],[50,193]],[[78609,78087],[-213,35],[-162,361]],[[78233,78485],[-7,0]],[[78225,78485],[-1,3]],[[78224,78488],[-1,3]],[[78223,78491],[-7,3]],[[78214,78495],[-3,-1]],[[78211,78494],[-4,1]],[[78207,78495],[-3,-8]],[[78204,78487],[-2,-1]],[[78202,78486],[-2,-1]],[[78198,78489],[-7,-4]],[[78193,78484],[-1,-1]],[[78187,78478],[-1,1]],[[78186,78479],[0,3]],[[78186,78482],[-1,5]],[[78185,78487],[-12,-2]],[[78173,78485],[-3,0]],[[78170,78485],[-11,1]],[[78158,78484],[-3,-1]],[[78155,78483],[-2,5]],[[78152,78490],[-12,4]],[[78140,78494],[0,4]],[[78140,78498],[2,0]],[[78142,78498],[-6,5]],[[78134,78503],[-5,2]],[[78129,78505],[0,5]],[[78129,78511],[-7,3]],[[78121,78518],[-9,-4]],[[78112,78514],[-2,-1]],[[78110,78513],[-1,-7]],[[78106,78515],[-2,0]],[[78104,78515],[-12,-9]],[[78092,78506],[-5,3]],[[78087,78509],[-5,2]],[[78082,78511],[-5,6]],[[78077,78517],[-8,15]],[[78069,78532],[-8,8]],[[78061,78540],[-4,1]],[[78057,78541],[-5,3]],[[78774,78063],[-165,24]],[[80677,77774],[-130,132]],[[80036,77855],[1,9]],[[80037,77864],[16,22]],[[80053,77886],[1,19]],[[80054,77909],[-7,3]],[[80044,77914],[-15,52]],[[80029,77966],[6,21]],[[80035,77987],[4,32]],[[80039,78019],[-4,15]],[[80035,78034],[8,4]],[[80043,78038],[9,14]],[[80044,78054],[7,15]],[[80051,78069],[7,7]],[[80058,78078],[-4,1]],[[80054,78079],[-4,11]],[[80050,78090],[2,21]],[[80052,78111],[-21,15]],[[80031,78126],[-3,28]],[[80028,78154],[-4,-5]],[[80024,78149],[0,15]],[[80024,78164],[9,9]],[[80033,78173],[2,5]],[[80035,78178],[-9,-1]],[[80026,78177],[-9,5]],[[80017,78191],[-2,19]],[[80014,78212],[-17,19]],[[79997,78231],[-14,4]],[[79983,78235],[-12,29]],[[79971,78264],[-2,9]],[[79969,78273],[-1,30]],[[79964,78309],[-2,15]],[[79962,78324],[-6,11]],[[79956,78335],[10,35]],[[79970,78371],[1,2]],[[79971,78373],[-7,3]],[[79964,78376],[-7,8]],[[79955,78386],[-6,2]],[[79949,78388],[-17,14]],[[79931,78404],[-11,12]],[[79920,78416],[-10,6]],[[79910,78422],[-9,29]],[[79901,78451],[-1,-9]],[[79900,78442],[-4,-2]],[[79894,78441],[-13,28]],[[79881,78469],[-13,18]],[[79868,78487],[-6,4]],[[79868,78506],[3,4]],[[76416,78206],[7,47]],[[76423,78253],[7,9]],[[76433,78263],[-17,45]],[[76416,78308],[-3,6]],[[76413,78314],[1,30]],[[76414,78344],[4,6]],[[76418,78350],[-11,0]],[[76404,78352],[6,10]],[[76410,78362],[-4,2]],[[76406,78364],[-10,15]],[[76396,78379],[5,3]],[[76403,78384],[7,16]],[[76410,78400],[2,1]],[[76412,78401],[-9,19]],[[76403,78420],[2,9]],[[76405,78429],[87,196]],[[76492,78625],[9,3]],[[76501,78628],[1,0]],[[76502,78625],[6,-3]],[[76510,78624],[7,16]],[[76517,78640],[5,24]],[[76520,78670],[4,10]],[[76524,78680],[0,7]],[[76524,78687],[-8,1]],[[76515,78688],[1,13]],[[76517,78705],[0,7]],[[76517,78712],[10,13]],[[76527,78725],[4,12]],[[76531,78737],[4,36]],[[76535,78773],[-2,15]],[[76533,78788],[4,14]],[[76537,78802],[10,72]],[[76547,78874],[1,9]],[[76548,78883],[6,8]],[[76556,78894],[3,14]],[[76561,78914],[7,14]],[[76570,78932],[-1,6]],[[76569,78938],[-2,3]],[[76567,78941],[0,1]],[[76567,78942],[0,1]],[[76567,78944],[0,1]],[[76567,78945],[0,3]],[[76567,78948],[0,1]],[[76567,78949],[0,4]],[[76567,78953],[1,2]],[[76568,78955],[1,1]],[[76569,78956],[1,1]],[[76570,78957],[1,0]],[[76571,78957],[1,1]],[[76572,78958],[0,1]],[[76572,78959],[2,5]],[[76574,78964],[1,2]],[[76575,78966],[1,2]],[[76576,78968],[0,0]],[[76576,78968],[1,0]],[[76577,78968],[1,0]],[[76578,78968],[0,-1]],[[76578,78967],[1,1]],[[76579,78968],[1,0]],[[76580,78968],[1,0]],[[76581,78968],[3,2]],[[76584,78970],[0,1]],[[76584,78971],[1,1]],[[76585,78972],[0,1]],[[76585,78973],[0,1]],[[76585,78974],[0,1]],[[76585,78975],[-1,2]],[[76584,78977],[-1,1]],[[76583,78978],[-1,0]],[[76582,78978],[-2,0]],[[76580,78978],[-1,0]],[[76579,78978],[-1,0]],[[76578,78978],[-1,0]],[[76577,78978],[0,0]],[[76577,78978],[-1,0]],[[76576,78978],[0,0]],[[76575,78979],[0,1]],[[76575,78980],[-1,0]],[[76574,78980],[-1,4]],[[76573,78984],[-1,2]],[[76572,78986],[0,0]],[[76572,78986],[-6,5]],[[76566,78991],[0,1]],[[76566,78992],[1,1]],[[76425,78173],[-9,33]],[[80245,77525],[-209,330]],[[79876,77491],[1,5]],[[79877,77496],[-11,24]],[[79870,77522],[4,10]],[[79874,77532],[-9,43]],[[79866,77587],[10,82]],[[79876,77675],[-3,9]],[[79874,77687],[20,20]],[[79894,77707],[3,18]],[[79907,77731],[1,16]],[[79908,77747],[1,12]],[[79912,77767],[12,-13]],[[79924,77754],[7,10]],[[79931,77764],[28,1]],[[79959,77765],[14,13]],[[79973,77778],[8,8]],[[79981,77786],[11,9]],[[79992,77795],[-1,7]],[[79991,77802],[2,10]],[[79993,77812],[16,4]],[[80009,77820],[4,3]],[[80013,77823],[8,7]],[[80020,77843],[14,9]],[[80034,77852],[2,3]],[[80325,77394],[-80,131]],[[79748,77429],[128,62]],[[78643,77463],[-97,431],[63,193]],[[79941,77272],[-6,44]],[[79935,77316],[-12,39]],[[79923,77371],[4,8]],[[79927,77379],[1,9]],[[79928,77388],[-9,5]],[[79919,77393],[-8,9]],[[79911,77402],[9,17]],[[79914,77419],[-22,21]],[[79890,77443],[-1,10]],[[79888,77458],[-5,5]],[[79876,77466],[2,13]],[[79879,77482],[-3,9]],[[80016,77253],[-74,17]],[[79947,77241],[-5,29]],[[79103,77302],[46,-177]],[[79833,77167],[114,74]],[[79304,77218],[167,-78]],[[79471,77140],[1,1]],[[79472,77141],[2,0]],[[79474,77141],[4,0]],[[79478,77141],[1,1]],[[79479,77142],[2,1]],[[79481,77143],[5,5]],[[79486,77148],[1,1]],[[79487,77149],[2,0]],[[79489,77149],[1,0]],[[79490,77149],[1,0]],[[79491,77149],[3,-2]],[[79495,77147],[0,0]],[[79495,77147],[2,0]],[[79497,77147],[1,1]],[[79498,77148],[2,-1]],[[79500,77146],[0,-1]],[[79500,77145],[1,-2]],[[79501,77143],[2,-1]],[[79510,77155],[13,-11]],[[79524,77143],[5,-2]],[[79531,77143],[6,0]],[[79539,77141],[2,-6]],[[79541,77135],[3,0]],[[79544,77135],[14,6]],[[79558,77141],[10,4]],[[79568,77145],[9,6]],[[79577,77151],[13,-5]],[[79590,77146],[8,2]],[[79598,77148],[11,4]],[[79609,77152],[2,5]],[[79611,77157],[14,-5]],[[79628,77146],[-1,-16]],[[79629,77127],[2,-10]],[[79631,77117],[1,-1]],[[79632,77115],[2,-1]],[[79634,77114],[2,0]],[[79636,77114],[2,1]],[[79638,77115],[1,1]],[[79639,77116],[9,-2]],[[79649,77114],[12,-4]],[[79661,77110],[2,-4]],[[79663,77106],[1,-3]],[[79664,77103],[1,-2]],[[79665,77101],[0,-7]],[[79665,77094],[-3,-4]],[[79662,77090],[0,-3]],[[79662,77087],[0,-2]],[[79662,77085],[-2,-4]],[[79660,77081],[-11,-14]],[[79649,77067],[8,-7]],[[79657,77060],[6,-8]],[[79663,77052],[2,-2]],[[79665,77050],[3,1]],[[79668,77051],[1,7]],[[79669,77058],[4,0]],[[79673,77058],[-1,-7]],[[79672,77051],[0,-4]],[[79672,77047],[2,-2]],[[79674,77045],[-1,-7]],[[79673,77038],[0,-2]],[[79673,77036],[-1,-1]],[[79672,77035],[0,-1]],[[79672,77034],[0,-1]],[[79672,77033],[-1,-1]],[[79671,77032],[0,-1]],[[79671,77031],[0,-3]],[[79670,77027],[0,-3]],[[79670,77024],[0,-1]],[[79670,77023],[0,-1]],[[79670,77021],[0,-1]],[[79670,77020],[0,-2]],[[79670,77018],[0,0]],[[79670,77017],[0,-1]],[[79671,77015],[0,-1]],[[79671,77014],[1,-1]],[[79672,77013],[4,0]],[[79676,77013],[1,1]],[[79677,77015],[1,1]],[[79678,77016],[0,0]],[[79679,77017],[0,1]],[[79680,77020],[1,2]],[[79681,77022],[3,5]],[[79684,77027],[0,1]],[[79684,77028],[1,1]],[[79685,77029],[0,0]],[[79686,77029],[1,-1]],[[79687,77028],[1,-1]],[[79688,77027],[1,-2]],[[79689,77025],[0,-1]],[[79689,77024],[1,-2]],[[79690,77022],[1,-1]],[[79691,77021],[1,-1]],[[79692,77020],[0,-1]],[[79692,77019],[1,0]],[[79693,77019],[0,0]],[[79693,77019],[2,0]],[[79695,77019],[1,1]],[[79696,77020],[0,1]],[[79696,77021],[2,1]],[[79698,77022],[1,2]],[[79699,77024],[3,2]],[[79702,77026],[2,0]],[[79704,77026],[1,-1]],[[79706,77025],[1,0]],[[79707,77024],[1,0]],[[79708,77024],[1,0]],[[79709,77023],[1,0]],[[79710,77023],[3,-4]],[[79713,77019],[0,-1]],[[79713,77018],[0,0]],[[79713,77018],[1,-1]],[[79714,77017],[1,-1]],[[79715,77016],[0,-1]],[[79715,77015],[0,0]],[[79716,77014],[0,0]],[[79716,77013],[1,-1]],[[79718,77011],[0,0]],[[79718,77011],[0,-2]],[[79718,77009],[1,-2]],[[79719,77007],[1,-2]],[[79720,77005],[1,-2]],[[79721,77003],[0,-1]],[[79721,77002],[1,-1]],[[79722,77001],[0,-1]],[[79722,77000],[1,-3]],[[79723,76997],[1,-3]],[[79724,76994],[1,0]],[[79725,76994],[1,-1]],[[79726,76993],[1,0]],[[79727,76993],[1,2]],[[79728,76995],[1,1]],[[79729,76996],[1,0]],[[79730,76996],[0,1]],[[79730,76997],[1,1]],[[79731,76998],[1,0]],[[79732,76998],[1,1]],[[79733,76999],[3,0]],[[79736,76999],[0,0]],[[79736,76999],[1,0]],[[79737,76999],[1,0]],[[79738,76999],[1,0]],[[79739,76999],[0,0]],[[79739,76999],[1,-1]],[[79740,76998],[0,-1]],[[79740,76997],[2,-3]],[[79742,76994],[0,-1]],[[79742,76993],[0,-1]],[[79742,76992],[0,-1]],[[79742,76991],[0,-1]],[[79742,76990],[0,-2]],[[79742,76988],[0,-1]],[[79742,76987],[0,-1]],[[79742,76986],[-1,-2]],[[79741,76984],[0,0]],[[79741,76984],[0,-2]],[[79741,76982],[0,-1]],[[79741,76981],[0,-1]],[[79741,76979],[1,-1]],[[79742,76978],[0,0]],[[79742,76978],[3,-7]],[[79745,76971],[1,0]],[[79746,76971],[5,-7]],[[79782,76950],[21,19]],[[79803,76969],[2,13]],[[79805,76982],[19,7]],[[79824,76989],[19,6]],[[79843,76995],[32,7]],[[79875,77002],[7,-3]],[[79882,76999],[3,-1]],[[80558,76974],[-80,431],[-233,120]],[[79079,77174],[70,-49]],[[79149,77125],[63,-181]],[[79885,76998],[32,39]],[[79917,77037],[12,-4]],[[79929,77033],[9,-3]],[[79938,77030],[20,3]],[[79958,77033],[12,5]],[[79970,77038],[1,15]],[[79971,77053],[-19,0]],[[79952,77053],[8,16]],[[79960,77069],[1,1]],[[79961,77070],[0,1]],[[79961,77073],[0,0]],[[79961,77074],[0,1]],[[79961,77075],[0,1]],[[79961,77076],[-1,2]],[[79960,77078],[0,0]],[[79960,77078],[0,1]],[[79960,77080],[-1,1]],[[79959,77081],[0,1]],[[79959,77082],[0,2]],[[79959,77084],[0,1]],[[79959,77085],[0,1]],[[79959,77086],[-1,2]],[[79958,77088],[0,2]],[[79958,77090],[0,1]],[[79958,77091],[0,2]],[[79958,77093],[0,1]],[[79958,77095],[0,4]],[[79958,77099],[0,1]],[[79958,77100],[0,4]],[[79958,77104],[1,0]],[[79959,77105],[0,4]],[[79960,77110],[0,0]],[[79960,77111],[0,1]],[[79960,77112],[0,2]],[[79960,77114],[1,1]],[[79961,77115],[0,0]],[[79961,77115],[0,2]],[[79961,77117],[3,7]],[[79966,77126],[15,30]],[[79981,77156],[-2,33]],[[79979,77189],[-8,13]],[[79968,77215],[-21,26]],[[80775,76848],[-163,521],[-65,537]],[[79888,76972],[-2,10]],[[79886,76982],[-2,10]],[[79324,77013],[2,2]],[[79326,77015],[8,3]],[[79339,77022],[5,-1]],[[79344,77021],[23,45]],[[79367,77066],[2,7]],[[79369,77073],[9,15]],[[79378,77088],[8,-4]],[[79386,77084],[9,-5]],[[79397,77078],[-1,-2]],[[79396,77076],[2,-1]],[[79399,77077],[9,5]],[[79408,77082],[3,0]],[[79411,77082],[7,4]],[[79418,77086],[4,-2]],[[79423,77085],[-3,5]],[[79420,77090],[4,5]],[[79424,77095],[-4,1]],[[79420,77096],[0,3]],[[79420,77099],[7,10]],[[79427,77109],[4,2]],[[79431,77111],[2,1]],[[79433,77112],[0,3]],[[79429,77118],[7,3]],[[79437,77121],[3,8]],[[79440,77129],[4,1]],[[79444,77130],[2,-1]],[[79446,77129],[1,0]],[[79447,77129],[2,0]],[[79449,77129],[2,1]],[[79451,77130],[1,0]],[[79452,77130],[1,-1]],[[79453,77129],[1,-1]],[[79454,77128],[1,-1]],[[79455,77127],[0,0]],[[79455,77127],[4,2]],[[79459,77129],[2,3]],[[79461,77133],[1,1]],[[79462,77134],[1,1]],[[79463,77135],[2,3]],[[79465,77138],[2,0]],[[79467,77138],[1,0]],[[79468,77138],[0,0]],[[79468,77138],[2,1]],[[79470,77139],[1,1]],[[79227,76944],[97,69]],[[79212,76944],[15,0]],[[78283,77061],[0,2]],[[78283,77063],[1,7]],[[78284,77070],[-6,18]],[[78278,77088],[-10,16]],[[78268,77104],[-3,3]],[[78263,77110],[-5,5]],[[78252,77118],[-5,18]],[[78247,77136],[-4,5]],[[78243,77141],[0,6]],[[78243,77147],[-2,8]],[[78241,77155],[-11,5]],[[78230,77160],[-11,11]],[[78219,77171],[-2,15]],[[78217,77186],[0,2]],[[78218,77188],[3,10]],[[78221,77198],[4,16]],[[78225,77214],[2,9]],[[78227,77227],[3,20]],[[78230,77247],[1,6]],[[78231,77253],[-3,1]],[[78228,77254],[0,8]],[[78228,77262],[0,3]],[[78228,77265],[4,35]],[[78232,77300],[-5,6]],[[78227,77306],[-4,3]],[[78223,77309],[-1,10]],[[78222,77319],[1,5]],[[78223,77324],[-1,1]],[[78222,77325],[-3,4]],[[78219,77329],[2,8]],[[78221,77338],[-9,26]],[[78212,77365],[2,3]],[[78214,77368],[-4,1]],[[78210,77367],[-2,1]],[[78208,77368],[-4,19]],[[78204,77387],[-7,18]],[[78197,77405],[3,6]],[[78200,77413],[-1,4]],[[78199,77417],[-1,6]],[[78198,77423],[3,24]],[[78201,77447],[2,4]],[[78203,77453],[-6,6]],[[78197,77459],[5,15]],[[78202,77474],[2,23]],[[78204,77497],[4,2]],[[78208,77499],[4,7]],[[78212,77506],[-1,8]],[[78211,77514],[-1,11]],[[78210,77525],[-5,11]],[[78205,77536],[1,3]],[[78206,77539],[3,0]],[[78209,77539],[-1,4]],[[78210,77546],[-3,25]],[[78207,77571],[4,4]],[[78209,77577],[-3,-1]],[[78206,77578],[-8,28]],[[78196,77613],[2,9]],[[78198,77622],[4,18]],[[78202,77640],[5,21]],[[78207,77661],[-11,9]],[[78196,77670],[6,4]],[[78202,77674],[-2,6]],[[78200,77680],[-1,7]],[[78199,77687],[-4,4]],[[78195,77693],[0,16]],[[78193,77710],[4,7]],[[78197,77717],[-2,7]],[[78195,77724],[0,7]],[[78195,77731],[-8,11]],[[78186,77739],[-2,-1]],[[78184,77738],[-3,3]],[[78183,77743],[1,4]],[[78184,77747],[0,2]],[[78184,77749],[-4,2]],[[78180,77751],[-3,-5]],[[78177,77746],[-5,14]],[[78172,77760],[-4,8]],[[78168,77768],[1,6]],[[78169,77774],[-2,15]],[[78165,77794],[3,8]],[[78168,77802],[-2,7]],[[78166,77809],[-5,6]],[[78161,77815],[-1,2]],[[78161,77819],[-3,3]],[[78158,77822],[-22,6]],[[78136,77828],[-1,10]],[[78135,77838],[-2,5]],[[78133,77843],[3,1]],[[78136,77844],[0,3]],[[78136,77847],[-4,10]],[[78132,77860],[-1,12]],[[78131,77872],[3,5]],[[78134,77879],[-2,10]],[[78132,77889],[-1,6]],[[78131,77895],[1,9]],[[78132,77907],[-2,3]],[[78129,77911],[3,6]],[[78133,77920],[-5,12]],[[78127,77936],[3,7]],[[78130,77943],[-2,18]],[[78128,77961],[-2,15]],[[78126,77976],[-1,10]],[[78121,77987],[5,8]],[[78126,77995],[5,4]],[[78131,77999],[-6,17]],[[78125,78016],[-7,13]],[[78118,78029],[1,12]],[[78119,78041],[0,12]],[[78119,78053],[1,3]],[[78121,78057],[-4,7]],[[78117,78064],[-7,10]],[[78110,78074],[-11,30]],[[78099,78104],[-15,18]],[[78084,78123],[-1,7]],[[78083,78130],[-3,5]],[[78080,78135],[-4,8]],[[78076,78143],[-2,0]],[[78074,78143],[-7,14]],[[78066,78164],[15,25]],[[78081,78189],[2,5]],[[78083,78194],[5,17]],[[78088,78211],[2,5]],[[78090,78216],[2,0]],[[78092,78216],[0,10]],[[78092,78226],[-5,37]],[[78087,78263],[0,5]],[[78087,78268],[-6,3]],[[78081,78271],[1,7]],[[78082,78278],[2,1]],[[78084,78279],[-3,4]],[[78081,78283],[8,14]],[[78089,78297],[0,4]],[[78089,78303],[-3,32]],[[78086,78335],[-1,4]],[[78085,78339],[-4,1]],[[78081,78340],[-1,1]],[[78080,78341],[-2,-2]],[[78078,78339],[-1,8]],[[78077,78349],[1,3]],[[78078,78352],[-1,7]],[[78077,78359],[-6,1]],[[78070,78360],[-3,0]],[[78067,78360],[-5,0]],[[78058,78360],[-7,18]],[[78051,78378],[-4,1]],[[78047,78379],[0,-3]],[[78047,78376],[-3,1]],[[78044,78378],[-1,3]],[[78043,78381],[-3,19]],[[78040,78400],[-4,4]],[[78038,78407],[7,3]],[[78046,78412],[-2,5]],[[78044,78417],[2,4]],[[78046,78422],[-5,12]],[[78041,78434],[-3,18]],[[78038,78452],[3,9]],[[78041,78461],[0,5]],[[78044,78464],[0,4]],[[78044,78473],[-4,7]],[[78040,78480],[2,6]],[[78042,78486],[1,7]],[[78043,78493],[2,10]],[[78045,78507],[4,10]],[[78049,78517],[5,17]],[[78054,78535],[-2,9]],[[76845,77230],[0,12]],[[76845,77242],[-3,16]],[[76842,77258],[-18,22]],[[76824,77280],[-3,23]],[[76821,77303],[0,23]],[[76821,77326],[-12,-4]],[[76809,77322],[0,11]],[[76809,77333],[-2,8]],[[76807,77341],[3,17]],[[76808,77361],[-22,16]],[[76786,77377],[2,17]],[[76788,77394],[-6,6]],[[76782,77400],[-8,-8]],[[76774,77392],[-7,9]],[[76767,77401],[-24,29]],[[76743,77430],[7,14]],[[76750,77444],[-13,11]],[[76736,77455],[-14,16]],[[76722,77471],[-15,3]],[[76707,77474],[-2,3]],[[76705,77477],[0,1]],[[76705,77478],[0,2]],[[76705,77480],[0,2]],[[76705,77482],[-1,2]],[[76704,77484],[0,1]],[[76704,77485],[0,1]],[[76704,77486],[-1,0]],[[76703,77486],[0,2]],[[76703,77488],[0,0]],[[76702,77488],[0,1]],[[76702,77490],[-1,0]],[[76701,77490],[0,2]],[[76701,77492],[-1,2]],[[76700,77494],[0,5]],[[76700,77499],[0,4]],[[76700,77504],[2,3]],[[76702,77507],[1,0]],[[76703,77507],[0,1]],[[76703,77509],[1,2]],[[76704,77511],[0,2]],[[76705,77514],[0,1]],[[76705,77516],[0,1]],[[76704,77518],[0,1]],[[76704,77519],[0,1]],[[76704,77520],[-1,1]],[[76703,77521],[0,0]],[[76703,77521],[-1,1]],[[76701,77522],[0,1]],[[76701,77523],[-1,1]],[[76700,77524],[-1,0]],[[76699,77524],[-1,0]],[[76698,77524],[-1,1]],[[76697,77525],[-1,0]],[[76696,77526],[0,1]],[[76696,77527],[-1,1]],[[76694,77528],[0,1]],[[76694,77529],[-1,2]],[[76693,77532],[-1,0]],[[76692,77532],[0,1]],[[76692,77533],[-1,1]],[[76691,77534],[-2,2]],[[76689,77536],[0,0]],[[76688,77536],[0,0]],[[76688,77536],[-1,0]],[[76687,77536],[-2,-1]],[[76685,77535],[-1,-1]],[[76684,77534],[-1,-1]],[[76683,77533],[-2,-3]],[[76681,77530],[-1,-1]],[[76680,77529],[-2,-2]],[[76678,77527],[-5,-3]],[[76673,77524],[-1,0]],[[76672,77524],[0,7]],[[76672,77531],[0,1]],[[76673,77532],[5,18]],[[76678,77550],[-9,12]],[[76662,77571],[-38,41]],[[76624,77612],[-10,14]],[[76612,77631],[-14,10]],[[76598,77641],[-7,7]],[[76591,77648],[-1,1]],[[76590,77649],[-1,4]],[[76589,77653],[1,5]],[[76590,77658],[0,1]],[[76590,77659],[1,2]],[[76591,77661],[0,2]],[[76591,77663],[-1,5]],[[76590,77668],[0,0]],[[76590,77668],[-1,0]],[[76589,77668],[-1,0]],[[76588,77668],[0,0]],[[76588,77668],[-1,0]],[[76587,77668],[0,0]],[[76587,77668],[-1,1]],[[76586,77669],[-1,-1]],[[76585,77668],[-1,0]],[[76584,77668],[-1,-1]],[[76583,77667],[-1,-1]],[[76582,77666],[-1,-1]],[[76581,77665],[-1,0]],[[76580,77665],[-1,-1]],[[76579,77664],[0,0]],[[76579,77664],[-1,0]],[[76578,77664],[-4,0]],[[76574,77664],[-3,2]],[[76571,77666],[0,1]],[[76571,77667],[-1,0]],[[76570,77667],[-1,0]],[[76569,77667],[-1,0]],[[76568,77667],[-1,1]],[[76567,77668],[-1,1]],[[76566,77669],[0,1]],[[76566,77670],[-1,0]],[[76565,77670],[-5,4]],[[76560,77674],[-1,1]],[[76559,77675],[-1,0]],[[76558,77675],[-2,0]],[[76556,77675],[-2,0]],[[76554,77675],[-1,0]],[[76553,77675],[-1,-1]],[[76552,77674],[0,-1]],[[76552,77673],[-1,0]],[[76551,77673],[-6,-10]],[[76545,77663],[0,0]],[[76545,77662],[0,-1]],[[76545,77661],[0,-1]],[[76545,77660],[2,-4]],[[76547,77656],[0,-3]],[[76547,77653],[-4,-3]],[[76543,77650],[-3,4]],[[76540,77654],[-1,3]],[[76539,77657],[-1,2]],[[76538,77659],[0,0]],[[76538,77659],[-1,2]],[[76537,77661],[0,2]],[[76537,77663],[-1,1]],[[76536,77664],[0,1]],[[76536,77665],[-2,4]],[[76534,77669],[-2,2]],[[76532,77671],[-1,1]],[[76531,77672],[-1,1]],[[76530,77673],[-4,3]],[[76522,77677],[2,35]],[[76524,77712],[-1,19]],[[76523,77731],[-8,8]],[[76515,77739],[-7,16]],[[76508,77755],[-4,8]],[[76504,77763],[-7,26]],[[76497,77789],[-17,-4]],[[76480,77785],[-8,19]],[[76472,77804],[-4,-16]],[[76468,77788],[-10,11]],[[76458,77799],[-10,4]],[[76448,77803],[-1,16]],[[76445,77825],[-13,7]],[[76432,77832],[-12,1]],[[76420,77835],[10,19]],[[76430,77854],[-12,13]],[[76418,77867],[16,16]],[[76433,77891],[-18,2]],[[76415,77893],[8,13]],[[76423,77906],[6,40]],[[76429,77946],[4,30]],[[76433,77976],[-19,12]],[[76412,77993],[-9,12]],[[76403,78005],[4,3]],[[76407,78008],[-4,9]],[[76403,78017],[-2,54]],[[76397,78075],[-17,13]],[[76380,78088],[1,14]],[[76381,78102],[-6,25]],[[76375,78127],[6,9]],[[76381,78136],[12,4]],[[76390,78148],[14,9]],[[76404,78157],[0,12]],[[76404,78169],[6,7]],[[76411,78177],[-2,6]],[[76405,78186],[3,8]],[[76408,78194],[0,10]],[[76408,78204],[8,2]],[[79118,76920],[94,24]],[[76893,77111],[-48,119]],[[80364,76602],[-214,-255]],[[79136,76732],[91,212]],[[78311,76703],[-28,358]],[[80137,76360],[-2,3]],[[80133,76371],[0,3]],[[80133,76374],[1,12]],[[80134,76386],[-20,21]],[[80109,76402],[-7,3]],[[80097,76418],[-17,-1]],[[80080,76417],[-11,2]],[[80063,76421],[-6,3]],[[80057,76424],[-19,5]],[[80032,76429],[-7,10]],[[80025,76439],[-10,9]],[[80015,76448],[-5,-3]],[[80010,76445],[-4,3]],[[80006,76448],[-5,16]],[[80003,76466],[4,-4]],[[80007,76462],[5,4]],[[80015,76467],[3,22]],[[80018,76489],[-6,23]],[[80006,76518],[5,7]],[[80011,76528],[-8,6]],[[80003,76534],[-23,26]],[[79977,76557],[-6,8]],[[79971,76565],[-5,2]],[[79966,76567],[-4,13]],[[79959,76578],[-4,8]],[[79955,76586],[-17,12]],[[79938,76598],[-5,10]],[[79935,76610],[3,2]],[[79938,76612],[-14,12]],[[79924,76624],[-6,17]],[[79918,76641],[18,33]],[[79937,76676],[-5,3]],[[79932,76679],[-2,-1]],[[79930,76678],[-4,-3]],[[79926,76675],[-11,13]],[[79915,76688],[-2,24]],[[79910,76712],[1,14]],[[79915,76735],[15,21]],[[79930,76756],[-6,-7]],[[79923,76751],[-1,5]],[[79922,76756],[-6,4]],[[79910,76775],[-6,11]],[[79904,76786],[-1,11]],[[79905,76799],[13,-3]],[[79918,76796],[4,4]],[[79922,76800],[-1,13]],[[79921,76813],[-6,5]],[[79914,76819],[-5,10]],[[79909,76829],[-11,3]],[[79896,76834],[0,15]],[[79896,76849],[-7,19]],[[79889,76871],[11,24]],[[79894,76898],[-2,8]],[[79892,76906],[1,21]],[[79893,76965],[-5,7]],[[80150,76347],[-5,9]],[[80145,76356],[2,4]],[[80147,76360],[-1,1]],[[80146,76361],[-3,2]],[[80143,76363],[-6,-3]],[[77628,76690],[2,5]],[[77630,76695],[-1,2]],[[77629,76697],[-11,9]],[[77610,76700],[-5,6]],[[77607,76722],[-2,12]],[[77605,76734],[-17,14]],[[77588,76748],[-15,10]],[[77573,76758],[-22,-5]],[[77548,76757],[-5,19]],[[77543,76776],[20,41]],[[77563,76817],[4,18]],[[77567,76835],[0,32]],[[77567,76867],[-56,16]],[[77510,76887],[-4,10]],[[77506,76897],[-13,-14]],[[77493,76883],[-21,-3]],[[77472,76880],[-38,3]],[[77434,76883],[-14,10]],[[77419,76901],[7,5]],[[77426,76906],[17,20]],[[77442,76930],[-44,26]],[[77398,76956],[-8,-16]],[[77384,76935],[-11,13]],[[77373,76948],[-5,15]],[[77363,76973],[-22,46]],[[77341,77019],[-1,4]],[[77340,77023],[1,16]],[[77341,77039],[-8,9]],[[77328,77056],[-26,25]],[[77299,77081],[-28,-19]],[[77271,77062],[-17,-8]],[[77254,77054],[5,24]],[[77259,77078],[5,-4]],[[77264,77074],[2,9]],[[77262,77090],[-12,5]],[[77250,77095],[-13,-3]],[[77237,77092],[-11,1]],[[77226,77093],[-2,-7]],[[77224,77086],[-6,-4]],[[77218,77082],[-6,-5]],[[77212,77077],[-19,24]],[[77193,77101],[-4,18]],[[77187,77121],[-33,35]],[[77154,77156],[-7,6]],[[77147,77162],[5,8]],[[77152,77170],[-8,2]],[[77144,77172],[-23,15]],[[77121,77187],[-8,12]],[[77113,77199],[-2,13]],[[77111,77212],[-1,-1]],[[77110,77211],[-1,-1]],[[77109,77210],[-1,-1]],[[77108,77209],[-1,0]],[[77107,77209],[-2,-1]],[[77105,77208],[-1,-1]],[[77104,77207],[-2,0]],[[77102,77207],[-1,-1]],[[77101,77206],[-2,-1]],[[77099,77205],[-1,0]],[[77098,77205],[-4,-2]],[[77094,77203],[-1,0]],[[77093,77202],[-1,0]],[[77091,77202],[-1,-1]],[[77090,77201],[-2,0]],[[77088,77201],[-1,-1]],[[77087,77200],[-1,0]],[[77085,77199],[-3,-1]],[[77082,77198],[-1,0]],[[77081,77197],[-2,-1]],[[77079,77196],[-1,-1]],[[77078,77195],[-1,-1]],[[77077,77194],[0,-1]],[[77077,77193],[0,-1]],[[77077,77192],[-1,0]],[[77076,77192],[0,-1]],[[77076,77191],[0,-1]],[[77076,77190],[-1,-2]],[[77075,77188],[0,-1]],[[77075,77187],[-1,-3]],[[77074,77184],[0,0]],[[77074,77184],[-1,-1]],[[77073,77183],[0,-1]],[[77073,77182],[-1,-1]],[[77072,77181],[-1,-2]],[[77071,77179],[-1,-1]],[[77069,77178],[0,0]],[[77068,77178],[-1,1]],[[77066,77180],[0,1]],[[77066,77181],[-1,1]],[[77065,77182],[-1,1]],[[77064,77183],[-1,2]],[[77063,77185],[-2,2]],[[77061,77187],[0,0]],[[77061,77187],[-1,0]],[[77060,77187],[-2,-1]],[[77058,77185],[-1,0]],[[77057,77185],[-2,-2]],[[77055,77183],[0,-1]],[[77055,77182],[-2,-2]],[[77053,77180],[-1,-1]],[[77052,77179],[-1,0]],[[77051,77178],[0,0]],[[77051,77178],[-1,-2]],[[77050,77176],[0,-2]],[[77050,77174],[0,-2]],[[77050,77172],[0,-2]],[[77050,77170],[0,-1]],[[77050,77169],[1,-1]],[[77051,77167],[0,-1]],[[77051,77165],[-9,7]],[[77042,77172],[0,10]],[[77037,77191],[-21,-3]],[[77016,77188],[-10,-9]],[[77000,77182],[-1,8]],[[76998,77197],[-1,11]],[[76997,77208],[-18,-5]],[[76979,77203],[-5,-1]],[[76972,77203],[-22,12]],[[76950,77215],[-10,2]],[[76940,77217],[-11,3]],[[76929,77220],[-3,17]],[[76926,77237],[-6,4]],[[76920,77241],[-32,-13]],[[76887,77234],[-10,-1]],[[76877,77233],[-27,-8]],[[76850,77225],[-5,5]],[[80586,76177],[1,-176]],[[80473,76122],[-1,-147]],[[80677,76014],[-90,-13]],[[80587,76001],[-115,-26]],[[80257,76040],[0,1]],[[80257,76041],[11,20]],[[80268,76061],[-10,28]],[[80258,76089],[-5,16]],[[80251,76108],[-22,16]],[[80229,76126],[1,29]],[[80230,76155],[1,11]],[[80232,76168],[-10,15]],[[80222,76183],[0,4]],[[80222,76187],[6,20]],[[80228,76207],[-4,0]],[[80224,76207],[0,3]],[[80224,76211],[5,7]],[[80229,76218],[-5,2]],[[80224,76220],[-2,0]],[[80222,76220],[1,6]],[[80223,76226],[-4,8]],[[80219,76234],[1,5]],[[80220,76244],[-8,-2]],[[80211,76242],[0,15]],[[80209,76257],[-4,-1]],[[80203,76257],[-2,-2]],[[80200,76254],[-7,16]],[[80193,76270],[-5,3]],[[80188,76273],[-3,7]],[[80185,76280],[4,4]],[[80189,76284],[-1,4]],[[80188,76288],[-1,0]],[[80187,76288],[0,0]],[[80187,76288],[-1,1]],[[80186,76289],[0,0]],[[80185,76289],[0,1]],[[80184,76290],[-3,1]],[[80181,76291],[-1,0]],[[80180,76291],[-1,0]],[[80179,76291],[0,0]],[[80179,76291],[-1,1]],[[80178,76293],[0,2]],[[80178,76295],[0,2]],[[80178,76297],[0,2]],[[80177,76301],[0,1]],[[80177,76302],[-1,1]],[[80176,76303],[0,1]],[[80176,76304],[-3,0]],[[80173,76304],[0,0]],[[80173,76304],[-1,1]],[[80172,76305],[-1,1]],[[80171,76307],[-1,1]],[[80170,76308],[0,0]],[[80169,76308],[0,1]],[[80169,76309],[-1,1]],[[80168,76310],[-1,2]],[[80167,76312],[-1,2]],[[80166,76314],[0,2]],[[80166,76316],[0,3]],[[80166,76320],[-1,3]],[[80164,76323],[0,1]],[[80164,76324],[0,0]],[[80163,76324],[0,1]],[[80163,76325],[-2,3]],[[80161,76328],[-1,1]],[[80160,76329],[0,1]],[[80160,76330],[-1,2]],[[80159,76332],[0,0]],[[80159,76332],[0,1]],[[80159,76333],[-1,1]],[[80158,76334],[-1,2]],[[80157,76336],[-3,0]],[[80154,76336],[-2,-1]],[[80152,76335],[0,-1]],[[80152,76334],[-1,0]],[[80150,76334],[-1,2]],[[80149,76336],[0,0]],[[80149,76336],[0,2]],[[80149,76338],[0,1]],[[80149,76339],[1,1]],[[80151,76340],[1,2]],[[80152,76342],[0,2]],[[80152,76345],[-1,1]],[[80151,76346],[-1,1]],[[77610,76379],[-22,48]],[[77588,76427],[4,14]],[[77592,76441],[-2,7]],[[77589,76452],[7,11]],[[77596,76463],[2,6]],[[77598,76469],[3,20]],[[77601,76489],[1,19]],[[77604,76514],[12,17]],[[77616,76531],[-9,29]],[[77598,76577],[2,4]],[[77603,76582],[7,4]],[[77610,76586],[7,2]],[[77617,76588],[-15,20]],[[77602,76608],[9,22]],[[77611,76630],[14,-3]],[[77625,76631],[0,18]],[[77625,76649],[4,0]],[[77629,76649],[-4,27]],[[77625,76676],[-6,8]],[[77619,76684],[9,6]],[[80472,75975],[-215,65]],[[79663,76011],[-135,561],[360,400]],[[77562,76270],[48,109]],[[78582,76036],[80,256],[-215,624]],[[78446,76916],[-1,-2]],[[78443,76913],[-5,-1]],[[78438,76912],[-3,-2]],[[78435,76910],[-13,4]],[[78422,76914],[-3,9]],[[78419,76923],[-2,2]],[[78417,76925],[-4,3]],[[78413,76928],[-1,2]],[[78412,76930],[2,3]],[[78412,76933],[-4,1]],[[78408,76934],[-4,6]],[[78403,76940],[-1,0]],[[78399,76941],[-25,7]],[[78374,76948],[-16,-4]],[[78356,76944],[-15,4]],[[78341,76948],[-2,3]],[[78339,76951],[2,9]],[[78341,76960],[1,4]],[[78342,76964],[3,2]],[[78345,76966],[0,4]],[[78345,76970],[-2,2]],[[78343,76972],[-8,5]],[[78333,76978],[-4,0]],[[78329,76979],[3,7]],[[78330,76991],[-4,0]],[[78326,76991],[-2,0]],[[78324,76993],[2,4]],[[78326,76997],[-3,6]],[[78323,77003],[-1,0]],[[78322,77003],[-1,-2]],[[78321,77001],[-1,10]],[[78320,77011],[-6,12]],[[78314,77023],[-14,16]],[[78300,77039],[-3,-6]],[[78297,77033],[-1,0]],[[78296,77033],[0,3]],[[78296,77040],[-3,1]],[[78293,77041],[-1,-4]],[[78292,77037],[-2,8]],[[78290,77045],[-4,6]],[[78286,77052],[-3,9]],[[80062,75802],[75,558]],[[77730,76042],[-120,337]],[[76977,76135],[34,821],[-118,155]],[[78174,75921],[-4,5]],[[78169,75927],[-1,5]],[[78168,75932],[-5,7]],[[78163,75939],[2,1]],[[78165,75940],[4,1]],[[78169,75941],[0,1]],[[78169,75942],[3,5]],[[78172,75947],[-3,5]],[[78169,75952],[-11,11]],[[78156,75964],[-6,17]],[[78150,75981],[-3,63]],[[78147,76044],[17,42]],[[78164,76086],[1,12]],[[78165,76098],[-4,10]],[[78161,76108],[-4,-4]],[[78150,76103],[-10,6]],[[78140,76109],[18,19]],[[78158,76128],[-5,7]],[[78153,76135],[2,4]],[[78155,76139],[-18,19]],[[78137,76158],[-1,9]],[[78136,76167],[-6,-1]],[[78130,76166],[-6,-4]],[[78124,76162],[-18,17]],[[78106,76179],[1,4]],[[78108,76187],[-19,16]],[[78089,76203],[-6,6]],[[78083,76209],[-4,12]],[[78079,76221],[10,1]],[[78089,76222],[-1,4]],[[78087,76227],[-3,7]],[[78083,76235],[-4,-1]],[[78077,76235],[-8,12]],[[78069,76247],[5,7]],[[78074,76254],[1,9]],[[78075,76263],[-3,16]],[[78072,76279],[-1,5]],[[78071,76284],[-19,41]],[[78052,76325],[-16,3]],[[78036,76328],[-17,5]],[[78019,76333],[-4,4]],[[78010,76347],[-17,25]],[[77992,76375],[-5,21]],[[77986,76398],[-9,10]],[[77974,76412],[-9,24]],[[77965,76436],[0,9]],[[77965,76445],[1,6]],[[77966,76451],[1,7]],[[77967,76459],[0,6]],[[77967,76465],[-3,1]],[[77964,76466],[-5,-9]],[[77958,76457],[-2,4]],[[77956,76461],[-9,7]],[[77947,76468],[-1,-11]],[[77946,76457],[-8,6]],[[77938,76463],[1,8]],[[77939,76471],[5,9]],[[77944,76480],[0,9]],[[77944,76489],[-1,2]],[[77943,76491],[-13,4]],[[77929,76494],[-2,-6]],[[77926,76479],[-21,19]],[[77905,76498],[-1,7]],[[77914,76511],[6,16]],[[77920,76527],[-11,18]],[[77909,76545],[-12,17]],[[77897,76562],[7,9]],[[77904,76571],[2,4]],[[77906,76575],[-7,1]],[[77894,76580],[-11,-4]],[[77883,76576],[-3,-2]],[[77880,76574],[-10,24]],[[77870,76598],[-14,7]],[[77855,76604],[-10,-21]],[[77841,76574],[-3,1]],[[77838,76575],[-13,-2]],[[77825,76573],[-1,3]],[[77825,76578],[7,12]],[[77833,76593],[-19,31]],[[77814,76624],[-3,12]],[[77811,76636],[-4,6]],[[77807,76642],[-7,3]],[[77799,76648],[-4,1]],[[77795,76649],[-30,-30]],[[77765,76619],[0,12]],[[77765,76631],[-1,4]],[[77764,76635],[-9,1]],[[77750,76633],[-1,4]],[[77748,76637],[-13,0]],[[77735,76637],[-6,2]],[[77728,76640],[1,4]],[[77729,76644],[6,19]],[[77734,76666],[-2,2]],[[77732,76668],[-12,-1]],[[77719,76666],[-4,-8]],[[77715,76658],[0,3]],[[77715,76661],[0,3]],[[77715,76664],[-5,-2]],[[77710,76662],[-8,2]],[[77696,76664],[-4,-4]],[[77692,76660],[-1,-3]],[[77692,76652],[6,-13]],[[77698,76639],[-10,2]],[[77688,76641],[-2,-11]],[[77686,76630],[-8,-2]],[[77678,76628],[-11,11]],[[77665,76641],[-7,-1]],[[77658,76640],[-13,0]],[[77640,76645],[-7,22]],[[77633,76667],[-3,15]],[[77630,76682],[-2,8]],[[80538,75589],[-5,16]],[[80533,75605],[-14,-6]],[[80519,75599],[-2,2]],[[80517,75601],[-7,6]],[[80510,75607],[-21,-1]],[[80489,75606],[-12,1]],[[80477,75607],[0,2]],[[80477,75609],[-2,5]],[[80475,75614],[-4,-4]],[[80468,75610],[-17,14]],[[80451,75624],[-8,7]],[[80443,75631],[-7,6]],[[80436,75637],[-2,-3]],[[80433,75629],[-1,-1]],[[80430,75627],[0,6]],[[80430,75633],[-13,13]],[[80416,75647],[-1,3]],[[80415,75650],[-8,11]],[[80407,75661],[-10,17]],[[80397,75678],[-11,3]],[[80384,75684],[-7,0]],[[80377,75684],[-10,-3]],[[80367,75681],[-7,7]],[[80360,75688],[-5,9]],[[80353,75701],[-6,16]],[[80347,75717],[-20,27]],[[80327,75744],[0,5]],[[80327,75749],[-21,44]],[[80302,75792],[2,13]],[[80304,75805],[-33,40]],[[80271,75842],[-2,-2]],[[80269,75840],[-7,6]],[[80262,75846],[-13,4]],[[80250,75858],[11,15]],[[80261,75873],[-10,26]],[[80251,75899],[-12,28]],[[80239,75927],[5,36]],[[80244,75963],[-2,9]],[[80242,75976],[8,35]],[[80250,76011],[2,13]],[[80252,76024],[1,6]],[[80253,76030],[4,9]],[[80257,76039],[0,1]],[[77166,76028],[-125,-103]],[[76869,76059],[1,2]],[[76870,76061],[107,74]],[[79859,75595],[80,-3]],[[77041,75925],[-64,210]],[[79268,75564],[-62,205]],[[79206,75769],[0,2]],[[79206,75771],[4,7]],[[79210,75778],[-2,2]],[[79208,75780],[-6,2]],[[79203,75789],[-7,8]],[[79196,75802],[4,25]],[[79200,75827],[2,7]],[[79203,75836],[0,17]],[[79203,75853],[3,11]],[[79206,75864],[1,10]],[[79207,75874],[4,8]],[[79211,75882],[12,20]],[[79221,75913],[-2,8]],[[79219,75923],[-18,28]],[[79201,75951],[-7,24]],[[79194,75975],[8,22]],[[79200,76005],[-6,18]],[[79191,76030],[0,4]],[[79191,76034],[-3,9]],[[79188,76043],[-3,3]],[[79182,76052],[-6,24]],[[79176,76076],[-1,12]],[[79175,76088],[6,18]],[[79181,76110],[-1,9]],[[79180,76126],[1,35]],[[79181,76161],[-1,35]],[[79180,76196],[-2,18]],[[79178,76214],[-4,6]],[[79174,76220],[-11,10]],[[79163,76230],[-4,-1]],[[79159,76229],[4,17]],[[79163,76246],[-9,14]],[[79154,76260],[-7,13]],[[79148,76275],[-6,13]],[[79141,76288],[-7,-7]],[[79134,76281],[16,43]],[[79150,76325],[2,6]],[[79165,76328],[7,29]],[[79172,76357],[0,6]],[[79175,76362],[5,-1]],[[79180,76361],[4,7]],[[79184,76368],[-7,4]],[[79177,76372],[-7,3]],[[79169,76381],[-3,-1]],[[79166,76380],[-2,13]],[[79164,76393],[10,2]],[[79174,76395],[1,9]],[[79175,76405],[5,7]],[[79180,76412],[3,4]],[[79183,76416],[27,-14]],[[79210,76402],[6,0]],[[79216,76402],[0,3]],[[79216,76405],[-4,8]],[[79212,76414],[-12,18]],[[79197,76442],[-6,1]],[[79191,76443],[4,9]],[[79195,76452],[1,3]],[[79196,76455],[2,12]],[[79200,76468],[15,3]],[[79215,76471],[8,21]],[[79223,76492],[7,3]],[[79230,76495],[26,10]],[[79257,76505],[2,13]],[[79259,76518],[-2,6]],[[79257,76527],[4,4]],[[79261,76531],[4,6]],[[79265,76537],[-3,21]],[[79262,76558],[4,13]],[[79266,76571],[0,6]],[[79266,76577],[0,8]],[[79266,76585],[6,0]],[[79274,76587],[-2,8]],[[79272,76595],[-20,7]],[[79255,76606],[10,9]],[[79265,76615],[1,9]],[[79266,76624],[-6,2]],[[79260,76626],[2,19]],[[79262,76645],[-4,11]],[[79259,76660],[-4,9]],[[79254,76673],[17,46]],[[79271,76719],[1,4]],[[79272,76723],[0,4]],[[79272,76728],[-9,34]],[[79263,76762],[-1,6]],[[79262,76768],[-2,7]],[[79260,76775],[3,11]],[[79263,76786],[2,6]],[[79265,76792],[1,7]],[[79266,76799],[-5,3]],[[79261,76802],[27,19]],[[79289,76822],[8,7]],[[79297,76829],[1,4]],[[79298,76833],[-3,6]],[[79295,76839],[4,9]],[[79299,76848],[-11,20]],[[79287,76870],[-1,7]],[[79286,76879],[0,4]],[[79297,76888],[2,6]],[[79299,76896],[-12,7]],[[79285,76905],[-1,13]],[[79284,76918],[19,27]],[[79303,76945],[1,1]],[[79304,76946],[4,9]],[[79308,76955],[1,4]],[[79309,76959],[24,37]],[[79333,76996],[6,2]],[[79339,76998],[0,7]],[[79339,77005],[-6,-1]],[[79330,77003],[-6,10]],[[76949,75805],[1,0]],[[76950,75805],[91,120]],[[80515,75301],[23,288]],[[79282,75313],[-14,251]],[[76617,75665],[0,1]],[[76617,75666],[20,876],[250,553]],[[76887,77095],[6,16]],[[80052,75151],[60,178]],[[80320,74934],[195,367]],[[77481,75165],[-98,250],[347,627]],[[80515,74660],[113,140],[-113,501]],[[77806,74929],[-325,236]],[[77493,74897],[-12,268]],[[78510,74726],[-350,607],[-2,556]],[[80473,74391],[42,269]],[[79355,74448],[-96,478],[23,387]],[[80041,74317],[-88,417],[-363,629],[-322,201]],[[80558,74208],[-43,452]],[[80221,74130],[-180,187]],[[80550,73986],[8,222]],[[80889,73904],[65,750],[-30,468],[-207,388],[-179,79]],[[80121,74007],[-80,310]],[[79517,74043],[46,458],[-97,499],[-184,313]],[[80178,73860],[-57,147]],[[79225,73954],[-310,915],[-477,656]],[[80616,73745],[-58,463]],[[78396,73951],[135,526],[-21,249]],[[78846,73846],[-14,242],[-322,638]],[[78846,73715],[0,131]],[[78160,73805],[-41,648],[-304,912],[-5,573],[-80,104]],[[79142,73624],[83,330]],[[80147,73452],[-26,555]],[[78971,73557],[-125,289]],[[80173,73380],[-26,72]],[[79770,73334],[-275,404],[-270,216]],[[80074,73268],[73,184]],[[77507,76387],[81,40]],[[77349,76402],[158,-15]],[[77480,76303],[27,84]],[[77284,76173],[-51,196]],[[77254,76073],[-88,-45]],[[77253,75983],[-70,-68]],[[77240,75920],[-57,-5]],[[77183,75915],[-77,-22]],[[76782,75922],[88,139]],[[76950,75805],[-13,-15]],[[76794,75892],[63,-15]],[[76863,75866],[74,-76]],[[76752,75656],[185,134]],[[76571,75413],[46,253]],[[76659,74603],[-287,-91]],[[76372,74512],[-457,733]],[[76332,74120],[40,392]],[[78438,75525],[-261,392]],[[78177,75917],[-3,4]],[[82319,81047],[-158,-454]],[[82161,80593],[-8,-8]],[[82161,80593],[-73,-20]],[[82088,80573],[-134,-256]],[[82153,80585],[5,-23]],[[82153,80585],[-7,-27]],[[83387,80328],[-301,-357],[-180,-762],[149,-243]],[[81954,80317],[39,-74]],[[81954,80317],[-2,-140]],[[81993,80243],[-41,-66]],[[81952,80177],[-36,-29]],[[81840,80180],[76,-32]],[[81916,80148],[294,-1253],[-48,-291],[251,-774]],[[83541,78602],[88,-275]],[[83629,78327],[-3,-1]],[[83629,78327],[164,-570],[344,-614],[147,-97]],[[84284,77046],[-76,-385]],[[84284,77046],[175,-428]],[[82623,77076],[10,-682]],[[83084,76860],[58,-752],[79,-192]],[[84208,76661],[-63,-145]],[[84208,76661],[-185,-147]],[[84459,76618],[-92,-296]],[[84459,76618],[107,-400]],[[82633,76394],[-191,-182]],[[82633,76394],[-213,-689]],[[82442,76212],[-1,0]],[[82442,76212],[-1,-84]],[[83221,75916],[223,-312],[70,-293]],[[83221,75916],[-93,-570]],[[82420,75705],[-159,-180]],[[82420,75705],[-6,-339]],[[83514,75311],[11,-410]],[[83514,75311],[295,-221],[117,-352],[-55,-608]],[[83128,75346],[-225,-273]],[[83128,75346],[82,-699]],[[82903,75073],[-161,22]],[[82903,75073],[-50,-307]],[[82853,74766],[-47,-42]],[[82853,74766],[-37,-221]],[[82806,74724],[-5,-5]],[[82806,74724],[-5,-5]],[[82801,74719],[-343,-266]],[[83210,74647],[-62,-141]],[[83210,74647],[-62,-141]],[[83148,74506],[-29,-414],[117,-371]],[[84048,74078],[97,-209]],[[83776,74068],[-78,-410],[-134,6],[-71,-337],[-458,-413],[-205,-298]],[[83861,74012],[-14,43]],[[83861,74012],[0,0]],[[83861,74012],[77,-197],[-591,-1560]],[[84145,73869],[49,-76]],[[84145,73869],[-23,-130]],[[84122,73739],[226,-7]],[[84122,73739],[44,-270]],[[84166,73469],[84,-1]],[[84166,73469],[34,-298]],[[84200,73171],[53,-58]],[[84200,73171],[-151,-197]],[[84263,73123],[246,41]],[[84188,72533],[148,-173]],[[82830,72616],[-18,-97]],[[82830,72616],[-140,-86],[-96,-386]],[[84090,72322],[1,-15]],[[82812,72519],[0,0]],[[82812,72519],[4,-186]],[[84091,72307],[80,-128]],[[84091,72307],[-163,-394]],[[84171,72179],[202,-181]],[[84171,72179],[78,-443]],[[83347,72255],[-46,-223]],[[83347,72255],[-429,-416]],[[83928,71913],[273,-480]],[[83928,71913],[-84,-511]],[[83844,71402],[1,-6]],[[83844,71402],[21,-837],[-309,-586],[-215,41],[-115,-193],[-387,-127],[-368,-435],[-57,-425]],[[82414,68840],[-209,-173]],[[82414,68840],[35,-615]],[[82205,68667],[-2,3]],[[82205,68667],[-164,-96]],[[82449,68225],[-73,-922]],[[82449,68225],[150,-454]],[[88909,79915],[2,2]],[[88909,79915],[7,-4]],[[88943,79908],[385,66]],[[88943,79908],[7,3]],[[88916,79911],[-1,-3]],[[88916,79911],[27,-3]],[[88335,79886],[105,-147],[269,35]],[[88709,79774],[200,141]],[[88709,79774],[335,-402]],[[82088,80573],[-136,0],[-112,-393]],[[81840,80180],[-72,-414],[105,-199],[-204,-1383]],[[80830,79422],[-8,-170]],[[80822,79252],[52,-17]],[[80822,79252],[98,-445]],[[81669,78184],[-46,-36]],[[81669,78184],[97,-127]],[[81623,78148],[-118,-100]],[[81623,78148],[-80,-467],[-142,-244]],[[81401,77437],[-44,-41]],[[81401,77437],[-50,-224]],[[81357,77396],[-88,132]],[[81357,77396],[-29,-9]],[[81351,77213],[26,-168]],[[81351,77213],[-307,-481]],[[81377,77046],[-3,-24]],[[81374,77022],[101,-401],[-246,-242]],[[81044,76732],[-100,-100]],[[81894,76461],[40,-180]],[[81807,76313],[0,-410]],[[81807,75903],[73,5]],[[81807,75903],[89,-356]],[[81657,71760],[-574,-209]],[[89392,72867],[-214,-298],[-653,-454],[-419,-39]],[[88627,72102],[-82,-280]],[[88035,72070],[-307,-65],[-416,266],[-436,628],[-394,92],[-387,-201]],[[77413,53411],[749,-554],[210,-35],[384,223],[191,-47]],[[87770,46452],[-517,376],[-217,268]],[[57501,60016],[-19,-35]],[[57482,59981],[-4,-7]],[[57486,59977],[-4,4]],[[57478,59974],[67,139]],[[57478,59974],[8,3]],[[57493,59929],[-7,48]],[[57493,59929],[10,-38]],[[57503,59891],[-10,38]],[[57521,59834],[-18,57]],[[57521,59834],[0,-12]],[[57524,59823],[-3,11]],[[57524,59823],[28,-34]],[[57521,59822],[3,1]],[[57584,59801],[-12,-2]],[[57584,59801],[11,-11]],[[57572,59799],[-15,0]],[[57557,59799],[15,0]],[[57557,59799],[-5,-10]],[[57552,59789],[-31,33]],[[57670,59252],[8,-2]],[[57670,59252],[-151,259],[65,290]],[[57678,59250],[-8,2]],[[58843,59223],[-58,-391],[-434,263]],[[57841,59119],[10,-10]],[[57841,59119],[-163,131]],[[57851,59109],[-10,10]],[[58351,59095],[1,-29]],[[58352,59066],[-1,29]],[[58352,59066],[-240,-75]],[[57887,59042],[7,-25]],[[57894,59017],[-43,92]],[[58112,58991],[-1,-1]],[[58112,58991],[-7,-9]],[[58111,58990],[-6,-8]],[[58105,58982],[-2,-1]],[[58103,58981],[8,9]],[[58103,58981],[-12,-17]],[[58007,58974],[12,-1]],[[58007,58974],[-4,-37]],[[58019,58973],[-12,1]],[[58091,58964],[-3,-9]],[[58088,58955],[3,9]],[[58088,58955],[-69,18]],[[57925,58942],[-31,75]],[[57925,58942],[5,-1]],[[57930,58941],[-5,1]],[[58003,58937],[-2,-13]],[[57946,58927],[-16,14]],[[57946,58927],[-1,-15]],[[58001,58924],[2,13]],[[58001,58924],[-56,-12]],[[57945,58912],[1,15]],[[58483,57394],[-9,-29]],[[58474,57365],[-1,-11]],[[58473,57354],[1,11]],[[58473,57354],[-14,-37]],[[58459,57317],[-18,-35]],[[58441,57282],[18,35]],[[58441,57282],[-49,-20]],[[58371,57271],[21,-9]],[[58392,57262],[-91,-75]],[[58425,57252],[8,12]],[[58301,57187],[-9,-13]],[[58292,57174],[9,13]],[[58292,57174],[-125,-103]],[[58724,56015],[-6,-76]],[[58785,55998],[-61,17]],[[58785,55998],[9,-16]],[[58794,55982],[-9,16]],[[58718,55939],[6,76]],[[58718,55939],[-16,-58]],[[58876,55912],[17,-2]],[[58876,55912],[-82,70]],[[58702,55881],[-90,-130]],[[58941,55873],[9,-5]],[[59153,55867],[-57,1]],[[59096,55868],[-7,-3]],[[59089,55865],[7,3]],[[59089,55865],[-40,-8]],[[58950,55868],[-74,44]],[[59049,55857],[-11,-3]],[[59038,55854],[11,3]],[[59038,55854],[-88,14]],[[58699,55857],[3,24]],[[58612,55751],[-6,-15]],[[58606,55736],[6,15]],[[58606,55736],[-1,-1]],[[58605,55735],[-10,-6]],[[58594,55729],[-12,-13]],[[58595,55729],[-1,0]],[[58595,55729],[10,6]],[[58582,55716],[12,13]],[[58582,55716],[-52,-69]],[[58530,55647],[16,14]],[[58530,55647],[-57,-42]],[[58473,55605],[-17,-4]],[[58456,55601],[2,-2]],[[58456,55601],[-6,-10]],[[58469,55601],[4,4]],[[58436,55601],[11,-11]],[[58436,55601],[-85,-74]],[[58458,55599],[11,2]],[[58459,55594],[-1,5]],[[58459,55594],[10,7]],[[58450,55591],[9,3]],[[58450,55591],[-3,-1]],[[58447,55590],[-11,11]],[[58353,55533],[-2,-6]],[[58353,55533],[-148,-31]],[[58351,55527],[2,6]],[[57128,55529],[105,143]],[[57128,55529],[-2,-32]],[[58205,55502],[-7,-5]],[[58198,55497],[7,5]],[[58198,55497],[-143,-7]],[[58048,55492],[7,-2]],[[58048,55492],[-59,-48]],[[58055,55490],[-7,2]],[[57126,55497],[2,32]],[[59693,55067],[-25,-9]],[[59659,55058],[9,0]],[[59659,55058],[-248,-18]],[[59668,55058],[-9,0]],[[59358,55057],[53,-17]],[[59358,55057],[-156,-49]],[[59411,55040],[-53,17]],[[59202,55008],[-5,-6]],[[59197,55002],[5,6]],[[59197,55002],[-200,-48]],[[58133,55012],[21,139]],[[58133,55012],[-8,-27]],[[58125,54985],[8,27]],[[58986,54959],[-4,-2]],[[58982,54957],[-11,-9]],[[58982,54957],[-1,-9]],[[58987,54955],[-1,4]],[[58987,54955],[-6,-7]],[[58997,54954],[-11,5]],[[58997,54954],[-10,1]],[[58971,54948],[-1,-4]],[[58981,54948],[-4,-6]],[[58970,54944],[-3,-2]],[[58970,54944],[-3,-2]],[[58977,54942],[-6,6]],[[58977,54942],[-17,-16]],[[58967,54942],[-6,-6]],[[58961,54936],[-1,-10]],[[58961,54936],[-11,-20]],[[58960,54926],[-4,-10]],[[58885,54918],[-3,-2]],[[58956,54916],[-6,0]],[[58956,54916],[21,18]],[[58950,54916],[-65,2]],[[58882,54916],[3,2]],[[58882,54916],[-9,-3]],[[58873,54913],[9,3]],[[58873,54913],[-413,-298]],[[55740,54674],[71,-511],[-381,-443],[-217,-84],[-295,-416]],[[58460,54615],[-55,-23]],[[58356,54612],[-231,373]],[[58356,54612],[241,24]],[[58422,54594],[38,21]],[[58394,54595],[-38,17]],[[58394,54595],[11,-3]],[[58405,54592],[-11,3]],[[55798,54131],[-5,-460]],[[56928,53943],[146,444],[-3,603],[96,24],[-41,483]],[[56928,53943],[-2,-6]],[[56926,53937],[2,6]],[[55793,53671],[1,-8]],[[55794,53663],[-1,8]],[[55794,53663],[-42,-109]],[[55752,53554],[7,-7]],[[55759,53547],[-7,7]],[[55759,53547],[-49,-7]],[[55710,53540],[-4,-9]],[[55706,53531],[4,9]],[[55706,53531],[-107,-286]],[[54906,53222],[12,-2]],[[54906,53222],[-25,-42]],[[54918,53220],[-12,2]],[[56283,52272],[-24,610],[139,375],[563,527],[-35,153]],[[56283,52272],[0,0]],[[56307,52135],[-24,137]],[[56311,52095],[-4,40]],[[56311,52095],[-4,40]],[[56300,52087],[3,46]],[[55811,51487],[500,608]],[[62868,61032],[35,121],[355,-219]],[[63258,60934],[53,66]],[[63258,60934],[0,0]],[[63258,60934],[0,1]],[[63258,60934],[0,-1]],[[63258,60934],[0,0]],[[63693,60637],[-230,-365],[-555,-146]],[[62885,60516],[373,418]],[[64031,60344],[200,132],[-64,248]],[[68075,72784],[-73,422],[-160,-43],[-61,457]],[[68004,68134],[-17,469],[-188,136],[169,111]],[[62393,67875],[56,513],[149,288]],[[64133,67622],[216,192],[213,586],[-114,286],[173,1040],[-145,166]],[[57537,67188],[162,279],[391,54],[266,-87],[473,107],[273,354],[326,172]],[[62275,66091],[-263,356]],[[73451,64377],[-119,-452],[222,-228],[-12,-275]],[[66008,64266],[-49,267],[111,334],[218,174],[220,402]],[[77916,62384],[-214,616],[45,452],[-178,385]],[[73088,62182],[-100,-23],[-75,-518],[117,-64]],[[76344,59775],[-195,-139],[-22,300],[-502,-284],[-113,-210],[-274,6],[-628,-353],[-518,-39],[79,-156]],[[63573,60502],[210,202]],[[63573,60498],[0,4]],[[65116,60188],[263,173],[167,279],[404,12],[-132,840],[-175,154],[4,301],[153,51],[-141,382]],[[61621,59185],[243,294],[666,-30]],[[62913,59105],[44,-190],[290,10]],[[66335,58581],[27,139]],[[64826,58573],[479,384],[293,-196],[170,204],[296,679]],[[66579,58164],[-311,693],[-19,235]],[[65574,58220],[570,161],[191,199]],[[55774,57918],[-123,670]],[[75705,55634],[-445,515]],[[72581,54684],[-220,-176],[-346,173],[-236,-288],[-717,-356],[-307,180]],[[58895,54923],[-482,-328],[-242,307]],[[58171,54902],[-17,250]],[[79129,52930],[-329,-54],[-44,169],[-384,-223],[-210,35],[-464,329],[-283,84],[-3,165]],[[67563,53755],[-102,542],[233,659]],[[56326,52110],[-48,509]],[[56290,51999],[36,111]],[[82411,41212],[92,510],[257,79]],[[73198,41703],[-3,468]],[[84962,39767],[339,36]],[[74988,40237],[-30,555]],[[75217,38649],[-345,917]],[[89795,35493],[42,45]],[[89795,35493],[0,0]],[[88235,34930],[197,494]],[[78898,36518],[132,5]],[[89154,33466],[-249,-169]],[[88905,33297],[-232,94],[-94,490],[233,476],[789,628],[-166,94],[360,414]],[[89051,32862],[-9,-65]],[[89051,32862],[-196,116],[50,319]],[[92058,99915],[32,-4]],[[91977,99881],[9,37]],[[91569,99916],[11,1]],[[91558,99885],[6,29]],[[91703,99856],[11,-10]],[[91557,99875],[1,-12]],[[91597,99765],[67,-38]],[[89698,99979],[-1,7]],[[89670,99980],[2,4]],[[89678,99977],[0,0]],[[89676,99977],[0,-3]],[[89674,99970],[1,-1]],[[89553,99969],[0,0]],[[89718,99894],[0,0]],[[89844,99857],[0,0]],[[93828,99059],[77,-69]],[[94891,98265],[6,-3]],[[94909,98250],[49,-37]],[[94962,98212],[7,-1]],[[95041,98165],[-21,38]],[[94165,97196],[-201,-183]],[[94180,97182],[-11,11]],[[93958,97003],[-98,-227]],[[93861,96774],[0,-41]],[[93869,96259],[-20,-18]],[[93641,95771],[100,154]],[[93651,95723],[-8,9]],[[92670,94753],[0,0]],[[92258,94774],[-12,-11]],[[92292,94757],[-33,20]],[[92245,94762],[-22,-37]],[[92619,94683],[15,17]],[[92586,94677],[16,9]],[[92545,94668],[25,36]],[[92525,94650],[4,30]],[[92485,94619],[11,10]],[[92474,94596],[6,10]],[[92369,94605],[3,12]],[[92400,94589],[6,16]],[[92162,94619],[64,100]],[[92039,94298],[9,34]],[[91859,93947],[176,353]],[[91765,93475],[26,169]],[[91705,93220],[60,254]],[[91703,93217],[-117,-263]],[[96189,92085],[16,293]],[[90718,92671],[287,177]],[[90715,92671],[-74,-250]],[[96164,91282],[29,800]],[[90476,91899],[88,296]],[[96076,90429],[90,851]],[[90331,91483],[94,339]],[[90149,91182],[179,282]],[[90141,91182],[-403,-740]],[[95901,89803],[183,616]],[[89729,90436],[-324,-576]],[[95578,89027],[324,772]],[[89041,89302],[295,379]],[[95098,87946],[484,1061]],[[94635,86793],[4,7]],[[94634,86791],[1,1]],[[94614,86752],[2,5]],[[94613,86751],[0,1]],[[94605,86735],[1,1]],[[94604,86731],[0,1]],[[94602,86727],[0,1]],[[94601,86726],[0,1]],[[94594,86712],[5,10]],[[94567,86660],[1,1]],[[94520,86568],[47,91]],[[93980,85320],[144,462],[396,778]],[[93374,83210],[511,752]],[[93064,82703],[310,507]],[[92229,81134],[-437,-988]],[[82548,82043],[447,-401],[152,-306]],[[82210,82042],[124,131],[211,-130]],[[81885,81883],[316,103]],[[81872,81871],[-276,75]],[[91723,79964],[12,45]],[[83193,81271],[230,-210]],[[81406,81197],[-65,196],[175,553]],[[81225,80926],[371,418]],[[73594,80892],[242,-12]],[[75487,80584],[-690,113]],[[72924,80846],[482,23]],[[75646,80532],[274,-121]],[[75935,80405],[84,-37]],[[76019,80368],[488,-244]],[[91029,77614],[89,399]],[[90700,76287],[-25,-29]],[[90747,75355],[-37,937]],[[90744,75353],[-47,-4]],[[90914,73507],[-57,164]],[[90939,73405],[-21,105]],[[90971,73065],[-27,345]],[[91095,72643],[-84,290]],[[91087,72551],[4,78]],[[91040,72404],[46,136]],[[91223,71874],[-192,397]],[[91434,71483],[-116,214]],[[91503,71321],[-49,45]],[[91566,71257],[-60,78]],[[91576,71243],[19,-78]],[[92069,69953],[-86,42]],[[92193,69879],[-66,30]],[[92112,69892],[-42,55]],[[92212,69843],[-13,26]],[[92398,69329],[30,46]],[[92492,69021],[-70,41]],[[92590,68954],[149,-115]],[[92551,68947],[-15,34]],[[92787,68772],[-47,66]],[[92805,68750],[-15,16]],[[92806,68747],[88,-148]],[[93014,68549],[-105,21]],[[93334,68351],[-317,195]],[[93343,68265],[6,99]],[[93407,68192],[153,-234]],[[94524,66499],[130,-39]],[[94433,66513],[-32,7]],[[94520,66479],[-84,33]],[[94669,66411],[-11,60]],[[94676,66378],[-5,22]],[[94701,66164],[-22,202]],[[94825,66000],[49,-91]],[[94812,65975],[-138,205]],[[94980,65758],[-89,141]],[[94948,65606],[35,140]],[[94959,65171],[27,431]],[[97408,62374],[94,-90],[72,-724]],[[97352,62331],[-522,55]],[[96823,62373],[-326,126]],[[97911,60440],[-76,168]],[[98554,59520],[-634,899]],[[99012,58939],[-115,130]],[[99984,58467],[-945,456]],[[77062,67144],[2,-9]],[[77064,67135],[-2,-1]],[[77064,67135],[42,-129]],[[77093,67094],[3,9]],[[77138,67000],[12,-4]],[[75280,65813],[2,0]],[[75200,65742],[80,71]],[[75160,65746],[120,67]],[[75340,65679],[-24,158]],[[78149,65284],[-220,123]],[[77992,65305],[-83,63]],[[77992,65305],[-4,-5]],[[78129,65167],[-137,138]],[[26358,59988],[-320,329]],[[25991,59716],[-13,16]],[[26032,59646],[-41,70]],[[26048,59570],[-16,76]],[[26066,59564],[-3,2]],[[26325,59580],[-334,136]],[[26219,59553],[-187,93]],[[79868,60086],[41,-33]],[[79909,60053],[41,118]],[[79854,60042],[55,11]],[[79913,59858],[51,95]],[[80043,59608],[90,23]],[[80439,58892],[23,49]],[[80403,58872],[36,20]],[[80413,58803],[26,89]],[[80423,58794],[124,63]],[[80374,58755],[-17,106]],[[80349,58718],[25,37]],[[80361,58711],[13,44]],[[49030,71140],[-196,-328],[-83,220],[-293,-274],[127,-171],[-180,-333],[-323,-161],[-149,-533],[-137,65],[-95,-401],[-316,7],[-114,-528],[-662,-83],[-207,213],[-549,187],[-364,347],[-15,476]],[[42990,70471],[100,-129]],[[43090,70342],[-106,-223],[-255,97],[-133,-314],[-221,-70],[-375,-851]],[[43263,69810],[-374,-113],[-583,-401]],[[43263,69810],[-184,-243],[-134,-621]],[[45474,69843],[112,376],[-80,310],[-532,339],[-226,-121],[-426,362],[-509,-223],[-345,-514],[-378,-30]],[[45474,69843],[-222,247],[-256,-261],[-34,-256],[-233,-188],[-22,281],[-201,4],[-53,501],[-432,104],[-49,-349],[-418,29],[-181,-341],[-110,196]],[[85071,56175],[-466,229]],[[73449,64373],[-69,-114]],[[73380,64258],[-25,-113]],[[73355,64142],[117,-386]],[[73472,63755],[92,-161]],[[77887,62384],[-185,616],[45,452],[-179,386]],[[77965,62233],[-78,151]],[[77825,62082],[62,302]],[[78115,61880],[-150,353]],[[77978,61870],[-13,363]],[[77540,61263],[-541,243],[-204,-117],[-230,275],[-285,91],[-279,287],[-116,464]],[[82171,60545],[-436,-10]],[[77028,60147],[-8,-23]],[[77035,60143],[-7,4]],[[77035,60143],[-7,4]],[[77062,60131],[-27,12]],[[77020,60124],[-1,-8]],[[77020,60124],[-1,-8]],[[77019,60116],[-27,-26]],[[76988,60103],[-28,-44]],[[76989,60102],[-1,1]],[[76991,60100],[-2,2]],[[76990,60098],[-1,4]],[[76990,60098],[-2,5]],[[76990,60098],[2,-8]],[[76990,60098],[2,-8]],[[76960,60059],[1,-14]],[[76960,60059],[1,-14]],[[76961,60045],[-401,-326],[-351,52],[-82,165],[-249,-131]],[[75878,59805],[-88,-90]],[[75879,59804],[-1,1]],[[75783,59724],[4,-3]],[[75783,59724],[-353,-242]],[[75787,59721],[-4,3]],[[75787,59721],[0,0]],[[75787,59721],[3,-6]],[[75790,59715],[-3,6]],[[75235,59630],[-3,-7]],[[75235,59630],[-3,-7]],[[75232,59623],[-40,-127]],[[75261,59603],[-26,27]],[[75247,59573],[14,30]],[[75247,59573],[14,30]],[[75341,59504],[-7,-4]],[[75341,59504],[-7,-4]],[[75421,59494],[-80,10]],[[75334,59500],[-87,73]],[[80226,58816],[-310,520],[-200,793],[-281,613],[-38,439],[-175,222]],[[75430,59482],[-9,12]],[[75430,59482],[-9,12]],[[75207,59496],[-15,0]],[[75207,59496],[-10,-98]],[[75192,59496],[15,0]],[[75197,59398],[-3,-19]],[[75197,59398],[-3,-19]],[[73998,59533],[57,-181],[-161,-261],[-90,-591]],[[75194,59379],[-286,-165]],[[74652,59305],[-61,-82]],[[74661,59303],[-9,2]],[[74661,59303],[-9,2]],[[74775,59245],[-8,-3]],[[74775,59245],[-8,-3]],[[74767,59242],[-60,0]],[[74710,59247],[-49,56]],[[74905,59220],[-130,25]],[[74707,59242],[3,5]],[[74707,59242],[3,5]],[[74908,59214],[-3,6]],[[74908,59214],[-3,6]],[[74591,59223],[1,-13]],[[74591,59223],[1,-13]],[[74592,59210],[-29,-80]],[[74564,59142],[-44,-48]],[[74563,59130],[1,12]],[[74563,59130],[1,12]],[[74193,59136],[-3,-1]],[[74200,59134],[-7,2]],[[74200,59134],[-7,2]],[[74190,59135],[-74,-347]],[[74201,59133],[-1,1]],[[74201,59133],[-11,2]],[[74520,59094],[-10,-1]],[[74520,59094],[-10,-1]],[[74510,59093],[-309,40]],[[74116,58788],[-7,-11]],[[74116,58788],[-7,-11]],[[74109,58777],[-207,-32]],[[73902,58745],[-5,-2]],[[73902,58745],[-5,-2]],[[73897,58743],[-93,-243]],[[73804,58500],[-89,-11]],[[85014,56507],[-630,-96]],[[84039,55134],[-227,215]],[[83812,55349],[1,-6]],[[83813,55343],[-7,-10]],[[84036,55117],[3,17]],[[84036,55117],[3,17]],[[87102,53841],[-4,-6]],[[87098,53835],[-6,0]],[[87092,53835],[-1,-1]],[[87091,53834],[0,-3]],[[87091,53831],[7,-8]],[[87098,53823],[0,-4]],[[87098,53819],[67,-142]],[[87196,53686],[41,-103]],[[87237,53583],[4,-2]],[[87241,53581],[327,-445],[804,-451]],[[87192,53686],[4,0]],[[87192,53686],[4,0]],[[87170,53680],[22,6]],[[87165,53677],[5,3]],[[87165,53677],[5,3]],[[86119,53712],[-343,246]],[[84625,53916],[-59,279],[-472,282],[-365,421],[-491,111]],[[85673,53534],[-473,675]],[[85200,54209],[-488,444],[-484,257],[-192,207]],[[88220,52222],[-160,285],[-616,273]],[[87224,52119],[-199,54],[-124,350]],[[86901,52523],[-416,240],[-278,313],[-259,59],[-275,399]],[[83669,57197],[-236,157],[-186,-106],[-253,153],[-63,-156],[188,-344],[274,-193],[-20,-173],[308,-139]],[[79754,56674],[31,-539]],[[80690,56277],[338,-442]],[[81203,55968],[-175,-133]],[[81028,55835],[-154,-492],[277,-375]],[[83812,55349],[1,-6]],[[80363,55544],[-23,-4]],[[80340,55540],[-489,-140]],[[79851,55493],[0,-93]],[[79851,55400],[0,-26]],[[79851,55374],[3,-6]],[[79851,55374],[3,-6]],[[79854,55368],[-71,-50]],[[80437,55144],[270,-264],[274,-607]],[[80797,54980],[198,-226]],[[87098,53835],[-6,0]],[[87092,53835],[-1,-1]],[[87091,53834],[0,-3]],[[87091,53831],[7,-8]],[[87098,53823],[0,-4]],[[85868,53769],[-259,284],[-409,156]],[[87241,53581],[-4,2]],[[87457,52273],[-293,35],[-263,215]],[[87317,52008],[-93,111]],[[80830,52527],[6,4]],[[80830,52527],[314,262],[108,530]],[[80823,52521],[7,6]],[[80819,52516],[4,5]],[[80819,52516],[4,5]],[[80817,52503],[2,13]],[[80823,52500],[-6,3]],[[80823,52500],[-6,3]],[[80871,52350],[-48,150]],[[81990,51998],[-145,148]],[[81811,51867],[0,388],[-173,88],[-138,503],[32,529]],[[83216,53327],[24,-44]],[[83202,53292],[38,-9]],[[83240,53283],[41,-46]],[[83173,53247],[21,-39]],[[84172,53069],[-170,94]],[[83194,53208],[82,-80]],[[83178,53194],[16,14]],[[83155,53160],[103,-84]],[[83129,53124],[69,-117]],[[83437,53058],[-85,-44]],[[83352,53014],[-43,-6]],[[83309,53008],[-60,-57]],[[83172,53016],[26,-9]],[[83398,52973],[-46,41]],[[83198,53007],[47,-33]],[[83337,52966],[-28,42]],[[83382,52909],[-113,-30]],[[82484,53060],[62,-110]],[[83090,52932],[6,-43]],[[83269,52879],[-46,-2]],[[83057,52897],[39,-8]],[[83096,52889],[15,-198]],[[83300,52830],[-31,49]],[[83432,52760],[21,-92]],[[83339,52777],[-144,27]],[[83063,52787],[38,-93]],[[83327,52716],[-144,50]],[[82991,52567],[-42,41]],[[83402,52375],[3,-43]],[[83338,52383],[67,-51]],[[83454,52362],[28,-89]],[[83308,52376],[-375,-172]],[[83187,52388],[-105,110]],[[83405,52332],[77,-59]],[[83482,52273],[51,-69]],[[83177,52175],[-254,-277]],[[83156,52093],[144,-238]],[[83092,51966],[-8,-79]],[[83084,51887],[-68,-25]],[[83126,51868],[-42,19]],[[82923,51898],[-36,12]],[[83016,51862],[-93,36]],[[83090,51772],[-74,90]],[[84167,51438],[-19,-24]],[[84474,51315],[-81,-97]],[[82335,51694],[85,-37]],[[84191,51357],[-10,-31]],[[84365,51302],[-43,-28]],[[84407,51283],[-43,-61]],[[84322,51274],[-65,-1]],[[84150,51292],[-114,-29]],[[84393,51218],[-29,4]],[[84364,51222],[-42,52]],[[84036,51263],[-31,31]],[[84406,51181],[-13,37]],[[82302,51542],[151,-91]],[[84305,51183],[-48,-20]],[[84049,51207],[-13,56]],[[84257,51163],[-43,-46]],[[84437,51104],[-80,-2]],[[84357,51102],[-100,61]],[[84214,51117],[-132,3]],[[84372,51085],[-15,17]],[[83991,51139],[-55,176]],[[82312,51431],[153,-15]],[[82880,51328],[-140,-99]],[[84246,51076],[-32,41]],[[84362,51033],[-44,-25]],[[83653,50749],[45,-33]],[[83708,50720],[36,94]],[[82625,50909],[43,173]],[[83698,50716],[10,4]],[[83696,50710],[2,6]],[[83126,50805],[24,-38]],[[82761,50860],[25,75]],[[83663,50682],[33,28]],[[83150,50767],[24,-15]],[[82717,50841],[44,19]],[[83456,50703],[-57,35]],[[83174,50752],[7,-117]],[[83750,50644],[-42,76]],[[83616,50654],[-96,10]],[[83689,50637],[7,73]],[[83214,50721],[-40,31]],[[82719,50806],[42,54]],[[83520,50664],[-25,-4]],[[82702,50807],[17,-1]],[[82717,50799],[2,7]],[[83495,50660],[-39,43]],[[83699,50613],[-10,24]],[[83680,50614],[9,23]],[[82692,50777],[25,22]],[[82778,50755],[25,169]],[[82754,50738],[24,17]],[[82779,50733],[-1,22]],[[83112,50661],[38,106]],[[82708,50730],[9,69]],[[83625,50566],[-105,98]],[[82765,50708],[14,25]],[[83181,50635],[-6,-53]],[[83452,50577],[4,126]],[[82749,50698],[16,10]],[[82806,50675],[-27,58]],[[83231,50598],[-50,37]],[[83508,50547],[-13,113]],[[82760,50672],[5,36]],[[82748,50659],[12,13]],[[82726,50637],[22,22]],[[82823,50617],[64,79]],[[82765,50623],[-5,49]],[[82731,50588],[17,71]],[[82748,50550],[17,73]],[[82765,50513],[0,110]],[[82858,50307],[74,-40]],[[81854,55092],[-84,-46]],[[81770,55046],[-108,152]],[[81657,55028],[113,18]],[[82037,54746],[-107,25]],[[81345,54747],[70,-115]],[[81415,54632],[4,58]],[[81415,54632],[-44,-72]],[[81267,54462],[23,-115]],[[81850,54327],[-51,-193]],[[81409,54309],[-156,-40]],[[81448,54283],[-11,-38]],[[81437,54245],[-74,-27]],[[81437,54245],[-12,-60]],[[81614,54160],[26,45]],[[81614,54160],[74,-5]],[[81576,54150],[38,10]],[[77776,66880],[7,-6]],[[77783,66874],[11,-50]],[[77794,66824],[14,-48]],[[77746,66790],[48,34]],[[77808,66776],[36,-64]],[[77767,66743],[41,33]],[[77763,66739],[43,-43]],[[77844,66712],[-29,-40]],[[77806,66696],[9,-24]],[[77762,66689],[44,7]],[[77815,66672],[8,-74]],[[77903,66647],[-59,65]],[[77745,66667],[0,0]],[[77745,66667],[-1,-1]],[[77745,66667],[0,0]],[[77744,66666],[0,-7]],[[77745,66664],[-1,2]],[[77745,66659],[-1,0]],[[77744,66659],[4,-8]],[[77748,66651],[14,-5]],[[77762,66646],[39,-30]],[[77705,66643],[10,-1]],[[77715,66642],[33,9]],[[77801,66616],[22,-18]],[[77688,66629],[27,13]],[[77711,66618],[51,28]],[[77823,66598],[24,-8]],[[77847,66590],[17,-32]],[[77765,66598],[36,18]],[[77738,66599],[27,-1]],[[77764,66589],[1,9]],[[77755,66581],[9,8]],[[77864,66558],[147,-146]],[[77798,66562],[49,28]],[[77756,66542],[8,47]],[[77775,66535],[45,-11]],[[77820,66524],[44,34]],[[77766,66511],[38,-14]],[[77804,66497],[16,27]],[[77791,66470],[13,27]],[[79332,65688],[-105,-219]],[[79226,65572],[1,-103]],[[79186,65518],[28,-53]],[[79171,65504],[43,-39]],[[79233,65472],[-9,-41]],[[79227,65469],[-8,-17]],[[79214,65465],[5,-13]],[[79219,65452],[4,-10]],[[79223,65442],[1,-11]],[[79223,65442],[1,-11]],[[81493,62854],[-201,-4],[-27,247],[-238,64]],[[80729,62288],[-6,-63]],[[80777,62247],[183,37]],[[80723,62225],[54,22]],[[80723,62225],[0,0]],[[80715,62226],[8,-1]],[[81092,62149],[-58,271]],[[81101,62146],[-9,3]],[[80675,62208],[40,18]],[[80707,62197],[8,29]],[[80718,62189],[5,36]],[[80718,62181],[0,8]],[[80693,62168],[25,21]],[[81029,62107],[63,42]],[[80694,62150],[24,31]],[[80717,62131],[1,50]],[[81041,62028],[-12,79]],[[81041,62028],[-12,79]],[[81041,61701],[0,327]],[[81033,61687],[8,14]],[[81045,61669],[-4,32]],[[81045,61669],[0,0]],[[80872,61656],[-9,168]],[[80872,61656],[0,0]],[[80864,61645],[8,11]],[[80902,61638],[-30,18]],[[80845,61637],[19,8]],[[80842,61627],[10,-9]],[[80852,61618],[12,27]],[[80836,61606],[16,12]],[[80885,61567],[-13,89]],[[81212,61491],[-17,-68]],[[80838,61539],[47,28]],[[81159,61444],[-114,225]],[[81223,61433],[-28,-10]],[[81195,61423],[-21,-4]],[[81174,61419],[-15,25]],[[81167,61395],[-8,49]],[[81223,61373],[-49,46]],[[81364,61315],[-197,80]],[[81181,61316],[-14,79]],[[81136,61204],[45,112]],[[81216,61173],[-35,143]],[[80963,61149],[-78,418]],[[92412,57716],[43,-467],[-196,-362]],[[92381,57614],[19,49]],[[92381,57614],[20,49]],[[92381,57614],[-109,-344]],[[92264,57251],[8,19]],[[94921,56257],[554,184]],[[92880,56708],[-251,12]],[[95049,55977],[610,461]],[[95833,55744],[218,270]],[[96139,55576],[68,-20]],[[97374,54856],[93,104]],[[95383,54829],[75,171]],[[95791,54719],[25,-40]],[[95816,54679],[300,149]],[[97364,54272],[9,583]],[[97187,54193],[177,79]],[[93915,54965],[-68,-39]],[[97275,54115],[89,157]],[[93694,54694],[238,43],[204,-149]],[[95557,54066],[-24,97]],[[95451,54004],[4,35]],[[93513,54447],[88,151]],[[95474,53957],[-23,47]],[[96443,53708],[232,-49]],[[95445,53870],[6,134]],[[93717,54287],[93,-87]],[[96097,53553],[346,155]],[[95915,53588],[182,-35]],[[96076,53501],[21,52]],[[96076,53501],[1,1]],[[96013,53495],[63,6]],[[94113,53956],[35,121]],[[95544,53577],[256,235],[391,130],[89,-127],[250,187],[232,-112]],[[95946,53461],[67,34]],[[94008,53902],[105,54]],[[93896,53891],[112,11]],[[94110,53788],[3,168]],[[94488,53628],[246,291],[487,24],[247,114],[348,622]],[[93932,53754],[76,148]],[[94339,53539],[149,89]],[[94339,53539],[0,0]],[[94339,53539],[-65,0]],[[94424,53509],[64,119]],[[95260,53257],[283,318]],[[94330,53485],[9,54]],[[96062,52885],[165,86],[216,737]],[[95504,52943],[510,303],[62,255]],[[94278,52838],[31,-409]],[[92346,53140],[192,-21]],[[96105,51545],[121,-34]],[[96393,50807],[88,-89]],[[96481,50718],[101,28]],[[96051,50456],[430,262]],[[95655,50457],[1,-1]],[[95273,50339],[382,118]],[[90796,49702],[242,-581]],[[94590,47997],[122,34]],[[91660,47540],[25,52]],[[97990,57654],[94,-159]],[[98084,57495],[11,-131]],[[95833,55744],[34,35]],[[95867,55779],[1,2]],[[95868,55781],[183,233]],[[96051,56014],[1,2]],[[96052,56016],[167,387]],[[96392,55507],[0,0]],[[96392,55507],[95,-99]],[[96132,55569],[35,-17]],[[96167,55552],[209,-49]],[[96377,55502],[15,5]],[[97198,54244],[15,40]],[[97198,54218],[-3,15]],[[97329,54012],[34,246]],[[97311,53914],[17,96]],[[94197,54540],[4,-4]],[[94201,54536],[6,-2]],[[94207,54534],[2,-2]],[[94209,54532],[19,4]],[[94228,54536],[0,1]],[[94228,54537],[1,0]],[[94229,54537],[2,-2]],[[94231,54535],[2,-1]],[[94233,54534],[4,2]],[[94237,54536],[2,1]],[[94239,54537],[42,15]],[[93809,54595],[51,-6]],[[93860,54589],[1,-2]],[[93861,54587],[59,91]],[[93920,54678],[-1,1]],[[93919,54679],[0,6]],[[93919,54685],[0,2]],[[93919,54687],[3,5]],[[93922,54692],[3,8]],[[93925,54700],[0,4]],[[93925,54704],[3,13]],[[93928,54717],[0,2]],[[93928,54719],[2,3]],[[93930,54722],[0,0]],[[93930,54722],[1,5]],[[93931,54727],[6,13]],[[93937,54740],[1,-3]],[[93938,54737],[1,-4]],[[93939,54733],[31,-12]],[[93970,54721],[6,-2]],[[93976,54719],[2,0]],[[93978,54719],[0,-1]],[[93978,54718],[1,-1]],[[93979,54717],[3,-1]],[[93982,54716],[60,-102]],[[94042,54614],[5,-1]],[[94047,54613],[0,-9]],[[94047,54604],[1,-1]],[[94048,54603],[3,-1]],[[94051,54602],[3,0]],[[94054,54602],[35,-17]],[[94089,54585],[0,1]],[[94089,54586],[2,0]],[[94091,54586],[3,2]],[[94094,54588],[2,0]],[[94096,54588],[2,1]],[[94098,54589],[1,0]],[[94099,54589],[2,-2]],[[94101,54587],[1,-1]],[[94102,54586],[26,2]],[[94128,54588],[2,0]],[[94130,54588],[1,-2]],[[94131,54586],[15,-14]],[[94146,54572],[1,0]],[[94147,54572],[0,-1]],[[94147,54571],[1,0]],[[94148,54571],[1,0]],[[94149,54571],[0,-1]],[[94149,54570],[12,-5]],[[94161,54565],[1,-1]],[[94162,54564],[0,-4]],[[94162,54560],[0,-3]],[[94162,54557],[0,-1]],[[94162,54556],[1,-5]],[[94163,54551],[0,0]],[[94163,54551],[1,-3]],[[94164,54548],[10,-3]],[[94174,54545],[1,1]],[[94175,54546],[0,1]],[[94175,54547],[0,1]],[[94175,54548],[0,3]],[[94175,54551],[1,6]],[[94176,54557],[1,2]],[[94177,54559],[1,0]],[[94178,54559],[8,1]],[[94186,54560],[0,-1]],[[94186,54559],[2,-4]],[[94188,54555],[1,-2]],[[94189,54553],[2,-5]],[[94191,54548],[2,-2]],[[94193,54546],[1,-2]],[[94194,54544],[0,0]],[[94194,54544],[0,-1]],[[94194,54543],[2,-2]],[[97245,53713],[2,1]],[[97247,53714],[0,1]],[[97247,53715],[-1,1]],[[97246,53716],[-1,3]],[[97245,53719],[11,50]],[[97256,53769],[0,2]],[[97256,53771],[1,1]],[[97257,53772],[1,0]],[[97258,53772],[0,0]],[[97258,53772],[0,-2]],[[97258,53770],[1,-2]],[[97259,53768],[-1,9]],[[97258,53777],[1,0]],[[97259,53777],[1,-1]],[[97260,53776],[1,0]],[[97261,53776],[1,1]],[[97262,53777],[-1,2]],[[97261,53779],[0,1]],[[97261,53780],[0,0]],[[97261,53780],[2,1]],[[97263,53781],[1,0]],[[97264,53781],[1,-1]],[[97265,53780],[3,-3]],[[97268,53777],[0,0]],[[97268,53777],[1,1]],[[97269,53778],[0,1]],[[97269,53779],[1,3]],[[97270,53782],[0,1]],[[97270,53783],[1,1]],[[97271,53784],[2,0]],[[97273,53784],[0,1]],[[97273,53785],[0,1]],[[97273,53786],[0,3]],[[97273,53789],[0,1]],[[97273,53790],[1,0]],[[97274,53790],[2,1]],[[97276,53791],[0,0]],[[97276,53791],[0,2]],[[97276,53793],[-1,2]],[[97275,53795],[-1,0]],[[97274,53795],[0,0]],[[97274,53795],[-1,0]],[[97273,53795],[-2,-2]],[[97271,53793],[-4,4]],[[97267,53797],[0,1]],[[97267,53798],[-1,2]],[[97266,53800],[-1,1]],[[97265,53801],[-6,9]],[[97259,53810],[-1,7]],[[97258,53817],[-2,2]],[[97256,53819],[-3,0]],[[97253,53819],[-1,-1]],[[97252,53818],[-1,-1]],[[97251,53817],[0,-1]],[[97251,53816],[0,-1]],[[97251,53815],[-1,0]],[[97250,53815],[-1,1]],[[97249,53816],[0,0]],[[97249,53816],[-1,1]],[[97248,53817],[1,3]],[[97249,53820],[0,1]],[[97249,53821],[-1,2]],[[97248,53823],[0,0]],[[97248,53823],[63,91]],[[97233,53704],[1,0]],[[97234,53704],[1,-2]],[[97235,53702],[1,0]],[[97236,53702],[9,11]],[[97218,53699],[2,1]],[[97220,53700],[1,0]],[[97221,53700],[12,5]],[[96209,53916],[77,-104],[340,149]],[[96626,53961],[3,0]],[[96629,53961],[274,-59]],[[96903,53902],[1,0]],[[96904,53902],[159,218]],[[97063,54120],[1,-1]],[[97064,54119],[135,97]],[[97066,53691],[4,-3]],[[97066,53691],[4,-3]],[[97070,53688],[73,22]],[[97143,53710],[2,0]],[[97145,53710],[23,-2]],[[97168,53708],[0,2]],[[97168,53710],[1,0]],[[97169,53710],[19,-6]],[[97188,53704],[1,0]],[[97189,53704],[13,-8]],[[97202,53696],[4,0]],[[97206,53696],[4,0]],[[97210,53696],[1,2]],[[97211,53698],[1,0]],[[97212,53698],[2,0]],[[97214,53698],[1,0]],[[97215,53698],[1,0]],[[97216,53698],[2,1]],[[95477,54089],[0,-1]],[[95477,54088],[91,88]],[[97016,53658],[50,33]],[[97012,53656],[4,2]],[[97012,53656],[4,2]],[[96444,53707],[10,-1]],[[96454,53706],[0,-1]],[[96454,53705],[1,-1]],[[96455,53704],[1,-2]],[[96456,53702],[0,-1]],[[96456,53701],[1,-1]],[[96457,53700],[1,0]],[[96458,53700],[1,0]],[[96459,53700],[1,0]],[[96460,53700],[1,-1]],[[96461,53699],[2,-7]],[[96463,53692],[2,-2]],[[96465,53690],[1,-1]],[[96466,53689],[5,-3]],[[96471,53686],[3,0]],[[96474,53686],[2,0]],[[96476,53686],[7,5]],[[96483,53691],[4,3]],[[96487,53694],[1,0]],[[96488,53694],[1,0]],[[96489,53694],[1,-1]],[[96490,53693],[5,-3]],[[96495,53690],[1,0]],[[96496,53690],[3,1]],[[96499,53691],[4,2]],[[96503,53693],[1,0]],[[96504,53693],[2,0]],[[96506,53693],[25,-5]],[[96531,53688],[3,0]],[[96534,53688],[2,0]],[[96536,53688],[1,0]],[[96537,53688],[4,-1]],[[96541,53687],[2,-1]],[[96543,53686],[1,-4]],[[96544,53682],[4,-2]],[[96548,53680],[2,1]],[[96550,53681],[13,1]],[[96563,53682],[1,-2]],[[96564,53680],[1,-1]],[[96565,53679],[1,0]],[[96566,53679],[105,-19]],[[96671,53660],[2,0]],[[96673,53660],[1,0]],[[96674,53660],[1,-1]],[[96675,53659],[0,0]],[[96675,53659],[0,-1]],[[96675,53658],[-1,-7]],[[96674,53651],[-1,-3]],[[96673,53648],[1,-2]],[[96674,53646],[6,-2]],[[96680,53644],[1,0]],[[96681,53644],[14,-11]],[[96695,53633],[2,-2]],[[96697,53631],[18,-40]],[[96715,53591],[2,-1]],[[96717,53590],[5,-1]],[[96722,53589],[1,1]],[[96723,53590],[4,7]],[[96727,53597],[2,4]],[[96729,53601],[1,1]],[[96730,53602],[26,5]],[[96756,53607],[1,1]],[[96757,53608],[83,-33]],[[96840,53575],[172,81]],[[95941,53778],[1,1]],[[95942,53779],[88,69]],[[96030,53848],[2,0]],[[96032,53848],[1,1]],[[96033,53849],[1,0]],[[96034,53849],[3,-6]],[[96037,53843],[1,-3]],[[96038,53840],[1,0]],[[96039,53840],[0,1]],[[96039,53841],[1,1]],[[96040,53842],[3,2]],[[96043,53844],[0,0]],[[96043,53844],[1,1]],[[96044,53845],[0,1]],[[96044,53846],[1,0]],[[96045,53846],[0,-1]],[[96045,53845],[3,3]],[[96048,53848],[7,7]],[[96055,53855],[2,1]],[[96057,53856],[12,4]],[[96069,53860],[2,0]],[[96071,53860],[0,-1]],[[96071,53859],[1,-1]],[[96072,53858],[1,0]],[[96073,53858],[0,-1]],[[96073,53857],[0,0]],[[96073,53857],[0,-1]],[[96073,53856],[0,-1]],[[96073,53855],[0,-1]],[[96073,53854],[-1,-3]],[[96072,53851],[-3,-5]],[[96069,53846],[-1,-2]],[[96068,53844],[1,0]],[[96069,53844],[-1,-1]],[[96068,53843],[1,-2]],[[96069,53841],[0,-2]],[[96069,53839],[1,-4]],[[96070,53835],[1,-3]],[[96071,53832],[0,-1]],[[96071,53831],[0,-1]],[[96071,53830],[22,25]],[[96093,53855],[4,2]],[[96097,53857],[1,0]],[[96098,53857],[1,20]],[[96099,53877],[-1,1]],[[96098,53878],[0,1]],[[96098,53879],[1,3]],[[96099,53882],[2,2]],[[96101,53884],[0,2]],[[96101,53886],[34,5]],[[96135,53891],[0,1]],[[96135,53892],[3,3]],[[96138,53895],[3,0]],[[96141,53895],[1,-1]],[[96142,53894],[9,3]],[[96151,53897],[0,-1]],[[96151,53896],[2,-1]],[[96153,53895],[0,2]],[[96153,53897],[0,1]],[[96153,53898],[1,1]],[[96154,53899],[2,1]],[[96156,53900],[1,1]],[[96157,53901],[0,2]],[[96157,53903],[1,1]],[[96158,53904],[0,2]],[[96158,53906],[0,1]],[[96158,53907],[1,1]],[[96159,53908],[2,6]],[[96161,53914],[1,1]],[[96162,53915],[1,0]],[[96163,53915],[6,-3]],[[96169,53912],[1,-1]],[[96170,53911],[1,-3]],[[96171,53908],[2,-2]],[[96173,53906],[1,-2]],[[96174,53904],[3,-2]],[[96177,53902],[32,15]],[[95844,53783],[38,0]],[[95882,53783],[0,0]],[[95882,53783],[1,2]],[[95883,53785],[3,4]],[[95886,53789],[3,0]],[[95889,53789],[1,-1]],[[95890,53788],[0,-2]],[[95890,53786],[0,-3]],[[95890,53783],[0,-4]],[[95890,53779],[-1,-1]],[[95889,53778],[-1,-2]],[[95888,53776],[1,-1]],[[95889,53775],[1,-3]],[[95890,53772],[0,-2]],[[95890,53770],[1,-1]],[[95891,53769],[0,0]],[[95891,53769],[1,1]],[[95892,53770],[0,1]],[[95892,53771],[1,0]],[[95893,53771],[3,1]],[[95896,53772],[1,0]],[[95897,53772],[2,1]],[[95899,53773],[1,0]],[[95900,53773],[0,1]],[[95900,53774],[1,0]],[[95901,53774],[0,-1]],[[95901,53773],[7,2]],[[95908,53775],[0,0]],[[95908,53775],[3,-8]],[[95911,53767],[2,0]],[[95913,53767],[0,0]],[[95913,53767],[2,3]],[[95915,53770],[1,2]],[[95916,53772],[3,1]],[[95919,53773],[0,0]],[[95919,53773],[0,0]],[[95919,53773],[5,1]],[[95924,53774],[1,0]],[[95925,53774],[3,0]],[[95928,53774],[1,0]],[[95929,53774],[0,-1]],[[95929,53773],[1,2]],[[95930,53775],[0,0]],[[95930,53775],[1,1]],[[95931,53776],[2,-1]],[[95933,53775],[1,1]],[[95934,53776],[0,1]],[[95934,53777],[2,0]],[[95936,53777],[2,2]],[[96211,53632],[227,85]],[[96438,53717],[2,-5]],[[96440,53712],[1,0]],[[96441,53712],[1,-1]],[[96442,53711],[2,-3]],[[96444,53708],[0,-1]],[[94924,53946],[553,142]],[[95105,53882],[25,65]],[[96424,53486],[1,14]],[[96425,53500],[1,4]],[[96426,53504],[4,10]],[[96430,53514],[0,1]],[[96430,53515],[-3,1]],[[96427,53516],[-2,2]],[[96425,53518],[0,2]],[[96425,53520],[0,2]],[[96425,53522],[0,1]],[[96425,53523],[0,5]],[[96425,53528],[-4,14]],[[96421,53542],[0,3]],[[96421,53545],[0,7]],[[96421,53552],[0,2]],[[96421,53554],[-2,34]],[[96419,53588],[-6,0]],[[96413,53588],[-14,40]],[[96399,53628],[15,8]],[[96414,53636],[5,47]],[[96419,53683],[1,3]],[[96420,53686],[0,1]],[[96420,53687],[2,4]],[[96422,53691],[3,7]],[[96425,53698],[1,2]],[[96426,53700],[3,-7]],[[96429,53693],[1,0]],[[96430,53693],[9,9]],[[96439,53702],[0,0]],[[96439,53702],[5,5]],[[96097,53554],[113,82]],[[96353,53398],[53,9]],[[96406,53407],[18,78]],[[96051,53404],[46,149]],[[98352,57516],[94,106]],[[98095,57364],[257,157]],[[98007,57308],[88,55]],[[98411,56693],[-420,-219]],[[95762,57241],[62,-228]],[[95754,57239],[7,3]],[[98498,56473],[3,-3]],[[98498,56473],[3,-3]],[[98501,56470],[42,60]],[[96681,56894],[97,183],[270,68]],[[98449,56398],[49,75]],[[96124,56962],[123,-73]],[[95825,57014],[299,-52]],[[96248,56889],[260,-161]],[[98329,56305],[117,89]],[[96508,56728],[109,117]],[[96865,56247],[237,-241]],[[94921,56257],[227,46]],[[95891,55983],[123,1]],[[96832,55737],[406,453],[364,107],[147,-97],[242,273]],[[95213,56137],[446,301]],[[96051,56014],[1,2]],[[96219,56403],[248,43],[58,270]],[[97531,55284],[70,-43]],[[97601,55241],[427,208]],[[96487,55408],[344,332]],[[96377,55502],[-1,1]],[[95806,55650],[27,94]],[[97397,55175],[44,-36]],[[97538,55123],[63,118]],[[97441,55139],[1,-1]],[[97441,55139],[1,-1]],[[97442,55138],[12,-16]],[[97480,55119],[58,4]],[[97476,55118],[4,1]],[[97476,55118],[4,1]],[[97454,55122],[4,-4]],[[97454,55122],[4,-4]],[[97458,55118],[18,0]],[[97374,54855],[164,268]],[[97196,54827],[176,28]],[[95542,55210],[264,439]],[[96150,54802],[349,68],[118,-282]],[[96618,54587],[34,-230],[-215,7]],[[95389,54800],[152,409]],[[97365,54272],[9,583]],[[97363,54259],[2,13]],[[97216,54291],[149,-19]],[[96694,54385],[16,-18]],[[96718,54363],[498,-72]],[[96391,54376],[26,-13]],[[96417,54364],[20,1]],[[97199,54216],[-1,2]],[[97195,54233],[3,11]],[[97213,54284],[3,7]],[[96164,54348],[227,28]],[[95190,54527],[200,273]],[[95656,54405],[169,289],[324,107]],[[96903,53902],[1,0]],[[97247,53714],[0,1]],[[97247,53715],[-1,1]],[[97246,53716],[-1,3]],[[97256,53769],[0,2]],[[97257,53772],[1,0]],[[97258,53772],[0,-2]],[[97258,53770],[1,-2]],[[97258,53777],[1,0]],[[97259,53777],[1,-1]],[[97260,53776],[1,0]],[[97262,53777],[-1,2]],[[97261,53779],[0,1]],[[97261,53780],[0,0]],[[97261,53780],[2,1]],[[97263,53781],[1,0]],[[97264,53781],[1,-1]],[[97265,53780],[3,-3]],[[97268,53777],[1,1]],[[97269,53779],[1,3]],[[97270,53782],[0,1]],[[97270,53783],[1,1]],[[97271,53784],[2,0]],[[97273,53784],[0,1]],[[97273,53785],[0,1]],[[97273,53786],[0,3]],[[97273,53789],[0,1]],[[97273,53790],[1,0]],[[97276,53791],[0,0]],[[97276,53793],[-1,2]],[[97275,53795],[-1,0]],[[97274,53795],[0,0]],[[97273,53795],[-2,-2]],[[97267,53797],[0,1]],[[97266,53800],[-1,1]],[[97259,53810],[-1,7]],[[97258,53817],[-2,2]],[[97253,53819],[-1,-1]],[[97251,53817],[0,-1]],[[97251,53815],[-1,0]],[[97249,53816],[0,0]],[[97249,53816],[-1,1]],[[97248,53817],[1,3]],[[97249,53821],[-1,2]],[[97248,53823],[0,0]],[[97311,53914],[0,0]],[[97328,54010],[1,2]],[[97233,53704],[1,0]],[[97235,53702],[1,0]],[[93594,54573],[215,22]],[[93860,54589],[1,-2]],[[93920,54678],[-1,1]],[[93919,54685],[0,2]],[[93919,54687],[3,5]],[[93925,54700],[0,4]],[[93928,54717],[0,2]],[[93930,54722],[0,0]],[[93930,54722],[1,5]],[[93937,54740],[1,-3]],[[93938,54737],[1,-4]],[[93970,54721],[6,-2]],[[93976,54719],[2,0]],[[93978,54719],[0,-1]],[[93979,54717],[3,-1]],[[94042,54614],[5,-1]],[[94047,54604],[1,-1]],[[94051,54602],[3,0]],[[94089,54585],[0,1]],[[94089,54586],[2,0]],[[94094,54588],[2,0]],[[94096,54588],[2,1]],[[94098,54589],[1,0]],[[94101,54587],[1,-1]],[[94128,54588],[2,0]],[[94130,54588],[1,-2]],[[94146,54572],[1,0]],[[94147,54572],[0,-1]],[[94147,54571],[1,0]],[[94149,54571],[0,-1]],[[94161,54565],[1,-1]],[[94162,54564],[0,-4]],[[94162,54560],[0,-3]],[[94162,54556],[1,-5]],[[94163,54551],[0,0]],[[94163,54551],[1,-3]],[[94174,54545],[1,1]],[[94175,54546],[0,1]],[[94175,54548],[0,3]],[[94175,54551],[1,6]],[[94177,54559],[1,0]],[[94186,54560],[0,-1]],[[94188,54555],[1,-2]],[[94189,54553],[2,-5]],[[94191,54548],[2,-2]],[[94193,54546],[1,-2]],[[94194,54544],[0,-1]],[[94196,54541],[1,-1]],[[94201,54536],[6,-2]],[[94207,54534],[2,-2]],[[94228,54536],[0,1]],[[94228,54537],[1,0]],[[94231,54535],[2,-1]],[[94233,54534],[4,2]],[[94237,54536],[2,1]],[[94281,54552],[13,-11]],[[97143,53710],[2,0]],[[97168,53708],[0,2]],[[97168,53710],[1,0]],[[97188,53704],[1,0]],[[97202,53696],[4,0]],[[97210,53696],[1,2]],[[97211,53698],[1,0]],[[97214,53698],[1,0]],[[97216,53698],[2,1]],[[97218,53699],[0,0]],[[97218,53699],[2,1]],[[97220,53700],[1,0]],[[96041,53901],[96,-5]],[[96440,53712],[1,0]],[[96442,53711],[2,-3]],[[96444,53708],[0,-1]],[[96454,53706],[0,-1]],[[96455,53704],[1,-2]],[[96456,53702],[0,-1]],[[96456,53701],[1,-1]],[[96458,53700],[1,0]],[[96460,53700],[1,-1]],[[96463,53692],[2,-2]],[[96465,53690],[1,-1]],[[96471,53686],[3,0]],[[96474,53686],[2,0]],[[96483,53691],[4,3]],[[96487,53694],[1,0]],[[96489,53694],[1,-1]],[[96495,53690],[1,0]],[[96496,53690],[3,1]],[[96499,53691],[4,2]],[[96504,53693],[2,0]],[[96531,53688],[3,0]],[[96536,53688],[1,0]],[[96541,53687],[2,-1]],[[96543,53686],[1,-4]],[[96548,53680],[2,1]],[[96563,53682],[1,-2]],[[96565,53679],[1,0]],[[96671,53660],[2,0]],[[96673,53660],[1,0]],[[96674,53660],[1,-1]],[[96675,53659],[0,0]],[[96675,53659],[0,-1]],[[96675,53658],[-1,-7]],[[96674,53651],[-1,-3]],[[96673,53648],[1,-2]],[[96680,53644],[1,0]],[[96695,53633],[2,-2]],[[96840,53575],[0,0]],[[96722,53589],[1,1]],[[96727,53597],[2,4]],[[96729,53601],[1,1]],[[95882,53783],[1,2]],[[95883,53785],[3,4]],[[95889,53789],[1,-1]],[[95890,53786],[0,-3]],[[95890,53783],[0,-4]],[[95889,53778],[-1,-2]],[[95889,53775],[1,-3]],[[95890,53770],[1,-1]],[[95891,53769],[0,0]],[[95892,53770],[0,1]],[[95892,53771],[1,0]],[[95893,53771],[3,1]],[[95897,53772],[2,1]],[[95899,53773],[1,0]],[[95900,53774],[1,0]],[[95901,53774],[0,-1]],[[95908,53775],[0,0]],[[95911,53767],[2,0]],[[95913,53767],[0,0]],[[95915,53770],[1,2]],[[95916,53772],[3,1]],[[95919,53773],[0,0]],[[95919,53773],[0,0]],[[95924,53774],[1,0]],[[95925,53774],[3,0]],[[95929,53774],[0,-1]],[[95930,53775],[0,0]],[[95931,53776],[2,-1]],[[95934,53776],[0,1]],[[95934,53777],[2,0]],[[95936,53777],[2,2]],[[95938,53779],[3,-1]],[[95941,53778],[1,1]],[[96030,53848],[2,0]],[[96033,53849],[1,0]],[[96037,53843],[1,-3]],[[96038,53840],[1,0]],[[96039,53841],[1,1]],[[96043,53844],[0,0]],[[96043,53844],[1,1]],[[96044,53846],[1,0]],[[96045,53845],[3,3]],[[96055,53855],[2,1]],[[96069,53860],[2,0]],[[96071,53860],[0,-1]],[[96071,53859],[1,-1]],[[96072,53858],[1,0]],[[96073,53857],[0,0]],[[96073,53857],[0,-1]],[[96073,53855],[0,-1]],[[96073,53854],[-1,-3]],[[96069,53846],[-1,-2]],[[96068,53844],[1,0]],[[96069,53844],[-1,-1]],[[96068,53843],[1,-2]],[[96069,53839],[1,-4]],[[96071,53832],[0,-1]],[[96071,53831],[0,-1]],[[96093,53855],[4,2]],[[96097,53857],[1,0]],[[96099,53877],[-1,1]],[[96098,53878],[0,1]],[[96098,53879],[1,3]],[[96101,53884],[0,2]],[[96135,53891],[0,1]],[[96138,53895],[3,0]],[[96141,53895],[1,-1]],[[96151,53897],[0,-1]],[[96151,53896],[2,-1]],[[96153,53897],[0,1]],[[96153,53898],[1,1]],[[96156,53900],[1,1]],[[96157,53903],[1,1]],[[96158,53906],[0,1]],[[96158,53907],[1,1]],[[96161,53914],[1,1]],[[96162,53915],[1,0]],[[96169,53912],[1,-1]],[[96170,53911],[1,-3]],[[96173,53906],[1,-2]],[[96174,53904],[3,-2]],[[96419,53683],[1,3]],[[96420,53687],[2,4]],[[96425,53698],[1,2]],[[96429,53693],[1,0]],[[96439,53702],[0,0]],[[96425,53500],[1,4]],[[96430,53514],[0,1]],[[96427,53516],[-2,2]],[[96425,53518],[0,2]],[[96425,53522],[0,1]],[[96425,53523],[0,5]],[[96421,53542],[0,3]],[[96421,53552],[0,2]],[[96419,53588],[-6,0]],[[93458,54179],[134,392]],[[96403,53407],[3,0]],[[94021,53917],[288,398]],[[94592,53759],[213,192]],[[95588,52952],[248,226]]]} +{"type":"Topology","bbox":[63.31254372036631,14.432154719476102,853.1110650739369,606.2418755843366],"transform":{"scale":[0.007898064194177648,0.005918156390212507],"translate":[63.31254372036631,14.432154719476102]},"objects":{"overlay":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","arcs":[[0],[1],[2],[3]]},{"type":"MultiLineString","arcs":[[4],[5],[6,7],[8]]},{"type":"MultiLineString","arcs":[[0],[1],[9]]},{"type":"MultiLineString","arcs":[[10],[11],[12],[13],[14],[15]]},{"type":"MultiLineString","arcs":[[16],[17],[18],[19],[20],[21],[22],[23],[24],[25],[26],[27],[28],[29],[30],[31],[32],[33],[34],[35],[36],[37],[38],[39],[40],[41],[42],[43],[44],[45],[46],[47],[48],[49],[50],[51]]},{"type":"MultiLineString","arcs":[[52],[53],[54],[55]]},{"type":"MultiLineString","arcs":[[56],[57],[58],[59],[60],[61],[62],[63],[64]]},{"type":"MultiLineString","arcs":[[65],[66],[67],[68],[69],[70],[71],[72],[73],[74],[75],[76],[77],[78],[79],[80],[81],[82],[83]]},{"type":"MultiLineString","arcs":[[84,85],[86,87,88,89]]},{"type":"MultiLineString","arcs":[[84],[90]]},{"type":"MultiLineString","arcs":[[91],[92],[93],[94],[95],[96],[97]]},{"type":"MultiLineString","arcs":[[98],[99]]},{"type":"MultiLineString","arcs":[[100],[101],[102],[103],[104],[105]]},{"type":"MultiLineString","arcs":[[106],[107],[108],[109],[110],[111],[112],[113],[114],[115],[116],[117],[118],[119],[120],[121],[122],[123],[124],[125],[126],[127],[128],[129],[130],[131],[132],[133],[134],[135],[136],[137],[138],[139],[140],[141],[142],[143],[144],[145],[146],[147],[148],[149],[150],[151],[152],[153],[154],[155],[156],[157],[158],[159],[160],[161],[162],[163],[164],[165],[166],[167],[168],[169],[170],[171],[172],[173],[174],[175],[176],[177],[178,179],[180],[181,182],[183],[184],[185],[186,187,188],[189],[190],[191],[192],[193],[194],[195],[196],[197],[198],[199],[200],[201],[202],[203],[204],[205],[206],[207],[208],[209],[210],[211],[212],[213],[214],[215],[216],[217],[218],[219]]},{"type":"MultiLineString","arcs":[[220],[221],[222],[223],[224],[225],[226],[227],[228],[229],[230],[231],[232],[233],[234],[235],[236],[237],[238],[239],[240],[241],[242],[243],[244],[245],[246],[247],[248],[249],[250],[251],[252],[253],[254],[255],[256],[257],[258],[259],[260],[261],[262],[263],[264],[265],[266],[267],[268],[269],[270],[271],[272],[273],[274],[275],[276],[277],[278],[279],[280],[281],[282],[283],[284],[285],[286],[287],[288],[289],[290],[291],[292],[293],[294],[295],[296],[297],[298],[299],[300],[301],[302],[303],[304],[305],[306],[307],[308],[309],[310],[311],[312],[313],[314],[315],[316],[317],[318],[319],[320],[321],[322],[323],[324],[325],[326],[327],[328],[329],[330],[331],[332],[333],[334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453],[454,455,456,457,458,459,460,461,462,463,464,465,466],[467],[468],[469],[470],[471],[472],[473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638],[639],[640],[641],[642],[643],[644],[645],[646],[647],[648],[649],[650],[651],[652],[653],[654],[655],[656],[657],[658],[659],[660],[661],[662],[663],[664],[665],[666],[667],[668],[669],[670],[671],[672],[673],[674],[675],[676],[677],[678],[679],[680],[681],[682],[683],[684],[685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739],[740],[741],[742],[743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905],[906],[907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958],[959],[960],[961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147],[1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408],[1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841],[1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866],[1867],[1868],[1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112],[2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254],[2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666],[2667],[2668],[2669],[2670],[2671],[2672],[2673]]},{"type":"MultiLineString","arcs":[[2674],[2675]]},{"type":"MultiLineString","arcs":[[106],[107],[108],[109],[110],[111],[112],[113],[114],[115],[116],[117],[118],[119],[120],[121],[122],[123],[124],[125],[126],[127],[128],[129],[130],[131],[132],[133],[134],[140],[141],[142],[143],[144],[145],[146],[147],[148],[149],[150],[151],[152],[153],[154],[155],[156],[157],[158],[159],[160],[161],[162],[163],[164],[165],[166],[167],[168],[169],[170],[171],[172],[173],[174],[175],[176],[177],[178],[180],[181,2676,187],[183],[189],[190],[191],[192],[193],[194],[195],[201],[202],[203],[2677],[2678],[2679],[2680],[2681],[2682],[2683],[2684],[2685],[2686],[208],[2687],[2688],[2689],[2690,209],[210],[211],[212],[213],[214],[215],[216],[217],[218],[219]]},{"type":"MultiLineString","arcs":[[2691],[2692],[2693],[2694],[2695],[2696],[2697],[2698],[2699],[2700],[2701],[2702],[2703],[2704],[2705],[2706],[2707],[2708],[2709],[2710],[2711],[2712],[2713],[2714],[2715],[2716],[2717],[2718],[2719],[2720],[2721],[2722],[2723],[2724],[2725],[2726],[2727],[2728],[2729],[2730],[2731],[2732],[2733],[2734],[2735],[2736],[2737],[2738],[2739],[2740],[2741],[2742],[2743],[2744],[2745],[2746],[2747],[2748],[2749],[2750],[2751],[2752],[2753],[2754],[2755],[2756],[2757],[2758],[2759],[2760],[2761],[2762],[2763],[2764],[2765],[2766],[2767],[2768],[2769],[2770],[2771],[2772],[2773],[2774],[2775],[2776],[2777],[2778],[2779],[2780],[2781],[2782],[2783],[2784],[2785],[2786],[2787],[2788],[2789],[2790],[2791],[2792],[2793],[2794],[2795],[2796],[2797],[2798],[2799],[2800],[2801],[2802],[2803],[2804],[2805],[2806],[2807],[2808],[2809],[2810],[2811],[2812],[2813],[2814],[2815],[2816],[2817],[2818],[2819],[2820],[2821],[2822],[2823],[2824],[2825],[2826],[2827],[2828],[2829],[2830],[2831],[2832],[2833],[2834],[2835],[2836],[2837],[2838],[2839],[2840],[2841],[2842],[2843],[2844],[2845],[2846],[2847],[2848],[2849],[2850],[2851],[2852],[2853],[2854],[2855],[2856],[2857],[2858],[2859],[2860],[2861],[2862],[2863],[2864],[2865],[2866],[2867],[2868],[2869],[2870],[2871],[2872],[2873],[2874],[2875],[2876],[2877],[2878],[2879],[2880],[2881],[2882],[2883],[2884],[2885],[2886],[2887],[2888],[2889],[2890],[2891],[2892],[2893],[2894],[2895],[2896],[2897],[2898],[2899],[2900],[2901],[2902],[2903],[2904],[2905],[2906],[2907],[2908],[2909],[2910],[2911],[2912],[2913],[2914],[2915],[2916],[2917],[2918],[2919],[2920],[2921],[2922],[2923],[2924],[2925],[2926],[2927],[2928],[2929],[2930],[2931],[2932],[2933],[2934],[2935],[2936],[2937],[2938],[2939],[2940],[2941],[2942],[2943],[2944],[2945],[2946],[2947],[2948],[2949],[2950],[2951],[2952],[2953],[2954],[2955],[2956],[2957],[2958],[2959],[2960],[2961],[2962],[2963],[2964],[2965],[2966],[2967],[2968],[2969],[2970],[2971],[2972],[2973],[2974],[2975],[2976],[2977],[2978],[2979],[2980],[2981],[2982],[2983],[2984],[2985],[2986],[2987],[2988],[2989],[2990],[2991],[2992],[2993],[2994],[2995],[2996],[2997],[2998],[2999],[3000],[3001],[3002],[3003],[3004],[3005],[3006],[3007],[3008],[3009],[3010],[3011],[3012],[3013],[3014],[3015],[3016],[3017],[3018],[3019],[3020],[3021],[3022],[3023],[3024],[3025],[3026],[3027],[3028],[3029],[3030],[3031],[3032],[3033],[3034],[3035],[3036],[3037],[3038],[3039],[3040],[3041],[3042],[3043],[3044],[3045],[3046],[3047],[3048],[3049],[3050],[3051],[3052],[3053],[3054],[3055],[3056],[3057],[3058],[3059],[3060],[3061],[3062],[3063],[3064],[3065],[3066],[3067],[3068],[3069],[3070],[3071],[3072],[3073],[3074],[3075],[3076],[3077],[3078],[3079],[3080],[3081],[3082],[3083],[3084],[3085],[3086],[3087],[3088],[3089],[3090],[3091],[3092],[3093],[3094],[3095],[3096],[3097],[3098],[3099],[3100],[3101],[3102],[3103],[3104],[3105],[3106],[3107],[3108],[3109],[3110],[3111],[3112],[3113],[3114],[3115],[3116],[3117],[3118],[3119],[3120],[3121],[3122],[3123],[3124],[3125],[3126],[3127],[3128],[3129],[3130],[3131],[3132],[3133],[3134],[3135],[3136],[3137],[3138],[3139],[3140],[3141],[3142],[3143],[3144],[3145],[3146],[3147],[3148],[3149],[3150],[3151],[3152],[3153],[3154],[3155],[3156],[3157],[3158],[3159],[3160],[3161],[3162],[3163],[3164],[3165],[3166],[3167],[3168],[3169],[3170],[3171],[3172],[3173],[3174],[3175],[3176],[3177],[3178],[3179],[3180],[3181],[3182],[3183],[3184],[3185],[3186],[3187],[3188],[3189],[3190],[3191],[3192],[3193],[3194],[3195],[3196],[3197],[3198],[3199],[3200],[3201],[3202],[3203],[3204],[3205],[3206],[3207],[3208],[3209],[3210],[3211],[3212],[3213],[3214],[3215],[3216],[3217],[3218],[3219],[3220],[3221],[3222],[3223],[3224],[3225],[3226],[3227],[3228],[3229],[3230],[3231],[3232],[3233],[3234],[3235],[3236],[3237],[3238],[3239],[3240],[3241],[3242],[3243],[3244],[3245],[3246],[3247],[3248],[3249],[3250],[3251],[3252],[3253],[3254],[3255],[3256],[3257],[3258],[3259],[3260],[3261],[3262],[3263],[3264],[3265],[3266],[3267],[3268],[3269],[3270],[3271],[3272],[3273],[3274],[3275],[3276],[3277],[3278],[3279],[3280],[3281],[3282],[3283],[3284],[3285],[3286],[3287],[3288],[3289],[3290],[3291],[3292],[3293],[3294],[3295],[3296],[3297],[3298],[3299],[3300],[3301],[3302],[3303],[3304],[3305],[3306],[3307],[3308],[3309],[3310],[3311],[3312],[3313],[3314],[3315],[3316],[3317],[3318],[3319],[3320],[3321],[3322],[3323],[3324],[3325],[3326],[3327],[3328],[3329],[3330],[3331],[3332],[3333],[3334],[3335],[3336],[3337],[3338],[3339],[3340],[3341],[3342],[3343],[3344],[3345],[3346],[3347],[3348],[3349],[3350],[3351],[3352],[3353],[3354],[3355],[3356],[3357],[3358],[3359],[3360],[3361],[3362],[3363],[3364],[3365],[3366],[3367],[3368],[3369],[3370],[3371],[3372],[3373],[3374],[3375],[3376],[3377],[3378],[3379],[3380],[3381],[3382],[3383],[3384],[3385],[3386],[3387],[3388],[3389],[3390],[3391],[3392],[3393],[3394],[3395],[3396],[3397],[3398],[3399],[3400],[3401],[3402],[3403],[3404],[3405],[3406],[3407],[3408],[3409],[3410],[3411],[3412],[3413],[3414],[3415],[3416],[3417],[3418],[3419],[3420],[3421],[3422],[3423],[3424],[3425],[3426],[3427],[3428],[3429],[3430],[3431],[3432],[3433],[3434],[3435],[3436],[3437],[3438],[3439],[3440],[3441],[3442],[3443],[3444],[3445],[3446],[3447],[3448],[3449],[3450],[3451],[3452],[3453],[3454],[3455],[3456],[3457],[3458],[3459],[3460],[3461],[3462],[3463],[3464],[3465],[3466],[3467],[3468],[3469],[3470],[3471],[3472],[3473],[3474],[3475],[3476],[3477],[3478],[3479],[3480],[3481],[3482],[3483],[3484],[3485],[3486],[3487],[3488],[3489],[3490],[3491],[3492],[3493],[3494],[3495],[3496],[3497],[3498],[3499],[3500],[3501],[3502],[3503],[3504],[3505],[3506],[3507],[3508],[3509],[3510],[3511],[3512],[3513],[3514],[3515],[3516],[3517],[3518],[3519],[3520],[3521],[3522],[3523],[3524],[3525],[3526],[3527],[3528],[3529],[3530],[3531],[3532],[3533],[3534],[3535],[3536],[3537],[3538],[3539],[3540],[3541],[3542],[3543],[3544],[3545],[3546],[3547],[3548],[3549],[3550],[3551],[3552],[3553],[3554],[3555],[3556],[3557],[3558],[3559],[3560],[3561],[3562],[3563],[3564],[3565],[3566],[3567],[3568],[3569],[3570],[3571],[3572],[3573],[3574],[3575],[3576],[3577],[3578],[3579],[3580],[3581],[3582],[3583],[3584],[3585],[3586],[3587],[3588],[3589],[3590],[3591],[3592],[3593],[3594],[3595],[3596],[3597],[3598],[3599],[3600],[3601],[3602],[3603],[3604],[3605],[3606],[3607],[3608],[3609],[3610],[3611],[3612],[3613],[3614],[3615],[3616],[3617],[3618],[3619],[3620],[3621],[3622],[3623],[3624],[3625],[3626],[3627],[3628],[3629],[3630],[3631],[3632],[3633],[3634],[3635],[3636],[3637],[3638],[3639],[3640],[3641],[3642],[3643],[3644],[3645],[3646],[3647],[3648],[3649],[3650],[3651],[3652],[3653],[3654],[3655],[3656],[3657],[3658],[3659],[3660],[3661],[3662],[3663],[3664],[3665],[3666],[3667],[3668],[3669],[3670],[3671],[3672],[3673],[3674],[3675],[3676],[3677],[3678],[3679],[3680],[3681],[3682],[3683],[3684],[3685],[3686],[3687],[3688],[3689],[3690],[3691],[3692],[3693],[3694],[3695],[3696],[3697],[3698],[3699],[3700],[3701],[3702],[3703],[3704],[3705],[3706],[3707],[3708],[3709],[3710],[3711],[3712],[3713],[3714],[3715],[3716],[3717],[3718],[3719],[3720],[3721],[3722],[3723],[3724],[3725],[3726],[3727],[3728],[3729],[3730],[3731],[3732],[3733],[3734],[3735],[3736],[3737],[3738],[3739],[3740],[3741],[3742],[3743],[3744],[3745],[3746],[3747],[3748],[3749],[3750],[3751],[3752],[3753],[3754],[3755],[3756],[3757],[3758],[3759],[3760],[3761],[3762],[3763],[3764],[3765],[3766],[3767],[3768],[3769],[3770],[3771],[3772],[3773],[3774],[3775],[3776],[3777],[3778],[3779],[3780],[3781],[3782],[3783],[3784],[3785],[3786],[3787],[3788],[3789],[3790],[3791],[3792],[3793],[3794],[3795],[3796],[3797],[3798],[3799],[3800],[3801],[3802],[3803],[3804],[3805],[3806],[3807],[3808],[3809],[3810],[3811],[3812],[3813],[3814],[3815],[3816],[3817],[3818],[3819],[3820],[3821],[3822],[3823],[3824],[3825],[3826],[3827],[3828],[3829],[3830],[3831],[3832],[3833],[3834],[3835],[3836],[3837],[3838],[3839],[3840],[3841],[3842],[3843],[3844],[3845],[3846],[3847],[3848],[3849],[3850],[3851],[3852],[3853],[3854],[3855],[3856],[3857],[3858],[3859],[3860],[3861],[3862],[3863],[3864],[3865],[3866],[3867],[3868],[3869],[3870],[3871],[3872],[3873],[3874],[3875],[3876],[3877],[3878],[3879],[3880],[3881],[3882],[3883],[3884],[3885],[3886],[3887],[3888],[3889],[3890],[3891],[3892],[3893],[3894],[3895],[3896],[3897],[3898],[3899],[3900],[3901],[3902],[3903],[3904],[3905],[3906],[3907],[3908],[3909],[3910],[3911],[3912],[3913],[3914],[3915],[3916],[3917],[3918],[3919],[3920],[3921],[3922],[3923],[3924],[3925],[3926],[3927],[3928],[3929],[3930],[3931],[3932],[3933],[3934],[3935],[3936],[3937],[3938],[3939],[3940],[3941],[3942],[3943],[3944],[3945],[3946],[3947],[3948],[3949],[3950],[3951],[3952],[3953],[3954],[3955],[3956],[3957],[3958],[3959],[3960],[3961],[3962],[3963],[3964],[3965],[3966],[3967],[3968],[3969],[3970],[3971],[3972],[3973],[3974],[3975],[3976],[3977],[3978],[3979],[3980],[3981],[3982],[3983],[3984],[3985],[3986],[3987],[3988],[3989],[3990],[3991],[3992],[3993],[3994],[3995],[3996],[3997],[3998],[3999],[4000],[4001],[4002],[4003],[4004],[4005],[4006],[4007],[4008],[4009],[4010],[4011],[4012],[4013],[4014],[4015],[4016],[4017],[4018],[4019],[4020],[4021],[4022],[4023],[4024],[4025],[4026],[4027],[4028],[4029],[4030],[4031],[4032],[4033],[4034],[4035],[4036],[4037],[4038],[4039],[4040],[4041],[4042],[4043],[4044],[4045],[4046],[4047],[4048],[4049],[4050],[4051],[4052],[4053],[4054],[4055],[4056],[4057],[4058],[4059],[4060],[4061],[4062],[4063],[4064],[4065],[4066],[4067],[4068],[4069],[4070],[4071],[4072],[4073],[4074],[4075],[4076],[4077],[4078],[4079],[4080],[4081],[4082],[4083],[4084],[4085],[4086],[4087],[4088],[4089],[4090],[4091],[4092],[4093],[4094],[4095],[4096],[4097],[4098],[4099],[4100],[4101],[4102],[4103],[4104],[4105],[4106],[4107],[4108],[4109],[4110],[4111],[4112],[4113],[4114],[4115],[4116],[4117],[4118],[4119],[4120],[4121],[4122],[4123],[4124],[4125],[4126],[4127],[4128],[4129],[4130],[4131],[4132],[4133],[4134],[4135],[4136],[4137],[4138],[4139],[4140],[4141],[4142],[4143],[4144],[4145],[4146],[4147],[4148],[4149],[4150],[4151],[4152],[4153],[4154],[4155],[4156],[4157],[4158],[4159],[4160],[4161],[4162],[4163],[4164],[4165],[4166],[4167],[4168],[4169],[4170],[4171],[4172],[4173],[4174],[4175],[4176],[4177],[4178],[4179],[4180],[4181],[4182],[4183],[4184],[4185],[4186],[4187],[4188],[4189],[4190],[4191],[4192],[4193],[4194],[4195],[4196],[4197],[4198],[4199],[4200],[4201],[4202],[4203],[4204],[4205],[4206],[4207],[4208],[4209],[4210],[4211],[4212],[4213],[4214],[4215],[4216],[4217],[4218],[4219],[4220],[4221],[4222],[4223],[4224],[4225],[4226],[4227],[4228],[4229],[4230],[4231],[4232],[4233],[4234],[4235],[4236],[4237],[4238],[4239],[4240],[4241],[4242],[4243],[4244],[4245],[4246],[4247],[4248],[4249],[4250],[4251],[4252],[4253],[4254],[4255],[4256],[4257],[4258],[4259],[4260],[4261],[4262],[4263],[4264],[4265],[4266],[4267],[4268],[4269],[4270],[4271],[4272],[4273],[4274],[4275],[4276],[4277],[4278],[4279],[4280],[4281],[4282],[4283],[4284],[4285],[4286],[4287],[4288],[4289],[4290],[4291],[4292],[4293],[4294],[4295],[4296],[4297],[4298],[4299],[4300],[4301],[4302],[4303],[4304],[4305],[4306],[4307],[4308],[4309],[4310],[4311],[4312],[4313],[4314],[4315],[4316],[4317],[4318],[4319],[4320],[4321],[4322],[4323],[4324],[4325],[4326],[4327],[4328],[4329],[4330],[4331],[4332],[4333],[4334],[4335],[4336],[4337],[4338],[4339],[4340],[4341],[4342],[4343],[4344],[4345],[4346],[4347],[4348],[4349],[4350],[4351],[4352],[4353],[4354],[4355],[4356],[4357],[4358],[4359],[4360],[4361],[4362],[4363],[4364],[4365],[4366],[4367],[4368],[4369],[4370],[4371],[4372],[4373],[4374],[4375],[4376],[4377],[4378],[4379],[4380],[4381],[4382],[4383],[4384],[4385],[4386],[4387],[4388],[4389],[4390],[4391],[4392],[4393],[4394],[4395],[4396],[4397],[4398],[4399],[4400],[4401],[4402],[4403],[4404],[4405],[4406],[4407],[4408],[4409],[4410],[4411],[4412],[4413],[4414],[4415],[4416],[4417],[4418],[4419],[4420],[4421],[4422],[4423],[4424],[4425],[4426],[4427],[4428],[4429],[4430],[4431],[4432],[4433],[4434],[4435],[4436],[4437],[4438],[4439],[4440],[4441],[4442],[4443],[4444],[4445],[4446],[4447],[4448],[4449],[4450],[4451],[4452],[4453],[4454],[4455],[4456],[4457],[4458],[4459],[4460],[4461],[4462],[4463],[4464],[4465],[4466],[4467],[4468],[4469],[4470],[4471],[4472],[4473],[4474],[4475],[4476],[4477],[4478],[4479],[4480],[4481],[4482],[4483],[4484],[4485],[4486],[4487],[4488],[4489],[4490],[4491],[4492],[4493],[4494],[4495],[4496],[4497],[4498],[4499],[4500],[4501],[4502],[4503],[4504],[4505],[4506],[4507],[4508],[4509],[4510],[4511],[4512],[4513],[4514],[4515],[4516],[4517],[4518],[4519],[4520],[4521],[4522],[4523],[4524],[4525],[4526],[4527],[4528],[4529],[4530],[4531],[4532],[4533],[4534],[4535],[4536],[4537],[4538],[4539],[4540],[4541],[4542],[4543],[4544],[4545],[4546],[4547],[4548],[4549],[4550],[4551],[4552],[4553],[4554],[4555],[4556],[4557],[4558],[4559],[4560],[4561],[4562],[4563],[4564],[4565],[4566],[4567],[4568],[4569],[4570],[4571],[4572],[4573],[4574],[4575],[4576],[4577],[4578],[4579],[4580],[4581],[4582],[4583],[4584],[4585],[4586],[4587],[4588],[4589],[4590],[4591],[4592],[4593],[4594],[4595],[4596],[4597],[4598],[4599],[4600],[4601],[4602],[4603],[4604],[4605],[4606],[4607],[4608],[4609],[4610],[4611],[4612],[4613],[4614],[4615],[4616],[4617],[4618],[4619],[4620],[4621],[4622],[4623],[4624],[4625],[4626],[4627],[4628],[4629],[4630],[4631],[4632],[4633],[4634],[4635],[4636],[4637],[4638],[4639],[4640],[4641],[4642],[4643],[4644],[4645],[4646],[4647],[4648],[4649],[4650],[4651],[4652],[4653],[4654],[4655],[4656],[4657],[4658],[4659],[4660],[4661],[4662],[4663],[4664],[4665],[4666],[4667],[4668],[4669],[4670],[4671],[4672],[4673],[4674],[4675],[4676],[4677],[4678],[4679],[4680],[4681],[4682],[4683],[4684],[4685],[4686],[4687],[4688],[4689],[4690],[4691],[4692],[4693],[4694],[4695],[4696],[4697],[4698],[4699],[4700],[4701],[4702],[4703],[4704],[4705],[4706],[4707],[4708],[4709],[4710],[4711],[4712],[4713],[4714],[4715],[4716],[4717],[4718],[4719],[4720],[4721],[4722],[4723],[4724],[4725],[4726],[4727],[4728],[4729],[4730],[4731],[4732],[4733],[4734],[4735],[4736],[4737],[4738],[4739],[4740],[4741],[4742],[4743],[4744],[4745],[4746],[4747],[4748],[4749],[4750],[4751],[4752],[4753],[4754],[4755],[4756],[4757],[4758],[4759],[4760],[4761],[4762],[4763],[4764],[4765],[4766],[4767],[4768],[4769],[4770],[4771],[4772],[4773],[4774],[4775],[4776],[4777],[4778],[4779],[4780],[4781],[4782],[4783],[4784],[4785],[4786],[4787],[4788],[4789],[4790],[4791],[4792],[4793],[4794],[4795],[4796],[4797],[4798],[4799],[4800],[4801],[4802],[4803],[4804],[4805],[4806],[4807],[4808],[4809],[4810],[4811],[4812],[4813],[4814],[4815],[4816],[4817],[4818],[4819],[4820],[4821],[4822],[4823],[4824],[4825],[4826],[4827],[4828],[4829],[4830],[4831],[4832],[4833],[4834],[4835],[4836],[4837],[4838],[4839],[4840],[4841],[4842],[4843],[4844],[4845],[4846],[4847],[4848],[4849],[4850],[4851],[4852],[4853],[4854],[4855],[4856],[4857],[4858],[4859],[4860],[4861],[4862],[4863],[4864],[4865],[4866],[4867],[4868],[4869],[4870],[4871],[4872],[4873],[4874],[4875],[4876],[4877],[4878],[4879],[4880],[4881],[4882],[4883],[4884],[4885],[4886],[4887],[4888],[4889],[4890],[4891],[4892],[4893],[4894],[4895],[4896],[4897],[4898],[4899],[4900],[4901],[4902],[4903],[4904],[4905],[4906],[4907],[4908],[4909],[4910],[4911],[4912],[4913],[4914],[4915],[4916],[4917],[4918],[4919],[4920],[4921],[4922],[4923],[4924],[4925],[4926],[4927],[4928],[4929],[4930],[4931],[4932],[4933],[4934],[4935],[4936],[4937],[4938],[4939],[4940],[4941],[4942],[4943],[4944],[4945],[4946],[4947],[4948],[4949],[4950],[4951],[4952],[4953],[4954],[4955],[4956],[4957],[4958],[4959],[4960],[4961],[4962],[4963],[4964],[4965],[4966],[4967],[4968],[4969],[4970],[4971],[4972],[4973],[4974],[4975],[4976],[4977],[4978],[4979],[4980],[4981],[4982],[4983],[4984],[4985],[4986],[4987],[4988],[4989],[4990],[4991],[4992],[4993],[4994],[4995],[4996],[4997],[4998],[4999],[5000],[5001],[5002],[5003],[5004],[5005],[5006],[5007],[5008],[5009],[5010],[5011],[5012],[5013],[5014],[5015],[5016],[5017],[5018],[5019],[5020],[5021],[5022],[5023],[5024],[5025],[5026],[5027],[5028],[5029],[5030],[5031],[5032],[5033],[5034],[5035],[5036],[5037],[5038],[5039],[5040],[5041],[5042],[5043],[5044],[5045],[5046],[5047],[5048],[5049],[5050],[5051],[5052],[5053],[5054],[5055],[5056],[5057],[5058],[5059],[5060],[5061],[5062],[5063],[5064],[5065],[5066],[5067],[5068],[5069],[5070],[5071],[5072],[5073],[5074],[5075],[5076],[5077],[5078],[5079],[5080],[5081],[5082],[5083],[5084],[5085],[5086],[5087],[5088],[5089],[5090],[5091],[5092],[5093],[5094],[5095],[5096],[5097],[5098],[5099],[5100],[5101],[5102],[5103],[5104],[5105],[5106],[5107],[5108],[5109],[5110],[5111],[5112],[5113],[5114],[5115],[5116],[5117],[5118],[5119],[5120],[5121],[5122],[5123],[5124],[5125],[5126],[5127],[5128],[5129],[5130],[5131],[5132],[5133],[5134],[5135],[5136],[5137],[5138],[5139],[5140],[5141],[5142],[5143],[5144],[5145],[5146],[5147],[5148],[5149],[5150],[5151],[5152],[5153],[5154],[5155],[5156],[5157],[5158],[5159],[5160],[5161],[5162],[5163],[5164],[5165],[5166],[5167],[5168],[5169],[5170],[5171],[5172],[5173],[5174],[5175],[5176],[5177],[5178],[5179],[5180],[5181],[5182],[5183],[5184],[5185],[5186],[5187],[5188],[5189],[5190],[5191],[5192],[5193],[5194],[5195],[5196],[5197],[5198],[5199],[5200],[5201],[5202],[5203],[5204],[5205],[5206],[5207],[5208],[5209],[5210],[5211],[5212],[5213],[5214],[5215],[5216],[5217],[5218],[5219],[5220],[5221],[5222],[5223],[5224],[5225],[5226],[5227],[5228],[5229],[5230],[5231],[5232],[5233],[5234],[5235],[5236],[5237],[5238],[5239],[5240],[5241],[5242],[5243],[5244],[5245],[5246],[5247],[5248],[5249],[5250],[5251],[5252],[5253],[5254],[5255],[5256],[5257],[5258],[5259],[5260],[5261],[5262],[5263],[5264],[5265],[5266],[5267],[5268],[5269],[5270],[5271],[5272],[5273],[5274],[5275],[5276],[5277],[5278],[5279],[5280],[5281],[5282],[5283],[5284],[5285],[5286],[5287],[5288],[5289],[5290],[5291],[5292],[5293],[5294],[5295],[5296],[5297],[5298],[5299],[5300],[5301],[5302],[5303],[5304],[5305],[5306],[5307],[5308],[5309],[5310],[5311],[5312],[5313],[5314],[5315],[5316],[5317],[5318],[5319],[5320],[5321],[5322],[5323],[5324],[5325],[5326],[5327],[5328],[5329],[5330],[5331],[5332],[5333],[5334],[5335],[5336],[5337],[5338],[5339],[5340],[5341],[5342],[5343],[5344],[5345],[5346],[5347],[5348],[5349],[5350],[5351],[5352],[5353],[5354],[5355],[5356],[5357],[5358],[5359],[5360],[5361],[5362],[5363],[5364],[5365],[5366],[5367],[5368],[5369],[5370],[5371],[5372],[5373],[5374],[5375],[5376],[5377],[5378],[5379],[5380],[5381],[5382],[5383],[5384],[5385],[5386],[5387],[5388],[5389],[5390],[5391],[5392],[5393],[5394],[5395],[5396],[5397],[5398],[5399],[5400],[5401],[5402],[5403],[5404],[5405],[5406],[5407],[5408],[5409],[5410],[5411],[5412],[5413],[5414],[5415],[5416],[5417],[5418],[5419],[5420],[5421],[5422],[5423],[5424],[5425],[5426],[5427],[5428],[5429],[5430],[5431],[5432],[5433],[5434],[5435],[5436],[5437],[5438],[5439],[5440],[5441],[5442],[5443],[5444],[5445],[5446],[5447],[5448],[5449],[5450],[5451],[5452],[5453],[5454],[5455],[5456],[5457],[5458],[5459],[5460],[5461],[5462],[5463],[5464],[5465],[5466],[5467],[5468],[5469],[5470],[5471],[5472],[5473],[5474],[5475],[5476],[5477],[5478],[5479],[5480],[5481],[5482],[5483],[5484],[5485],[5486],[5487],[5488],[5489],[5490],[5491],[5492],[5493],[5494],[5495],[5496],[5497],[5498],[5499],[5500],[5501],[5502],[5503],[5504],[5505],[5506],[5507],[5508],[5509],[5510],[5511],[5512],[5513],[5514],[5515],[5516],[5517],[5518],[5519],[5520],[5521],[5522],[5523],[5524],[5525],[5526],[5527],[5528],[5529],[5530],[5531],[5532],[5533],[5534],[5535],[5536],[5537],[5538],[5539],[5540],[5541],[5542],[5543],[5544],[5545],[5546],[5547],[5548],[5549],[5550],[5551],[5552],[5553],[5554],[5555],[5556],[5557],[5558],[5559],[5560],[5561],[5562],[5563],[5564],[5565],[5566],[5567],[5568],[5569],[5570],[5571],[5572],[5573],[5574],[5575],[5576],[5577],[5578],[5579],[5580],[5581],[5582],[5583],[5584],[5585],[5586],[5587],[5588],[5589],[5590],[5591],[5592],[5593],[5594],[5595],[5596],[5597],[5598],[5599],[5600],[5601],[5602],[5603],[5604],[5605],[5606],[5607],[5608],[5609],[5610],[5611],[5612],[5613],[5614],[5615],[5616],[5617],[5618],[5619],[5620],[5621],[5622],[5623],[5624],[5625],[5626],[5627],[5628],[5629],[5630],[5631],[5632],[5633],[5634],[5635],[5636],[5637],[5638],[5639],[5640],[5641],[5642],[5643],[5644],[5645],[5646],[5647],[5648],[5649],[5650],[5651],[5652],[5653],[5654],[5655],[5656],[5657],[5658],[5659],[5660],[5661],[5662],[5663],[5664],[5665],[5666],[5667],[5668],[5669],[5670],[5671],[5672],[5673],[5674],[5675],[5676],[5677],[5678],[5679],[5680],[5681],[5682],[5683],[5684],[5685],[5686],[5687],[5688],[5689],[5690],[5691],[5692],[5693],[5694],[5695],[5696],[5697],[5698],[5699],[5700],[5701],[5702],[5703],[5704],[5705],[5706],[5707],[5708],[5709],[5710],[5711],[5712],[5713],[5714],[5715],[5716],[5717],[5718],[5719],[5720],[5721],[5722],[5723],[5724],[5725],[5726],[5727],[5728],[5729],[5730],[5731],[5732],[5733],[5734],[5735],[5736],[5737],[5738],[5739],[5740],[5741],[5742],[5743],[5744],[5745],[5746],[5747],[5748],[5749],[5750],[5751],[5752],[5753],[5754],[5755],[5756],[5757],[5758],[5759],[5760],[5761],[5762],[5763],[5764],[5765],[5766],[5767],[5768],[5769],[5770],[5771],[5772],[5773],[5774],[5775],[5776],[5777],[5778],[5779],[5780],[5781],[5782],[5783],[5784],[5785],[5786],[5787],[5788],[5789],[5790],[5791],[5792],[5793],[5794],[5795],[5796],[5797],[5798],[5799],[5800],[5801],[5802],[5803],[5804],[5805],[5806],[5807],[5808],[5809],[5810],[5811],[5812],[5813],[5814],[5815],[5816],[5817],[5818],[5819],[5820],[5821],[5822],[5823],[5824],[5825],[5826],[5827],[5828],[5829],[5830],[5831],[5832],[5833],[5834],[5835],[5836],[5837],[5838],[5839],[5840],[5841],[5842],[5843],[5844],[5845],[5846],[5847],[5848],[5849],[5850],[5851],[5852],[5853],[5854],[5855],[5856],[5857],[5858],[5859],[5860],[5861],[5862],[5863],[5864],[5865],[5866],[5867],[5868],[5869],[5870],[5871],[5872],[5873],[5874],[5875],[5876],[5877],[5878],[5879],[5880],[5881],[5882],[5883],[5884],[5885],[5886],[5887],[5888],[5889],[5890],[5891],[5892],[5893],[5894],[5895],[5896],[5897],[5898],[5899],[5900],[5901],[5902],[5903],[5904],[5905],[5906],[5907],[5908],[5909],[5910],[5911],[5912],[5913],[5914],[5915],[5916],[5917],[5918],[5919],[5920],[5921],[5922],[5923],[5924],[5925],[5926],[5927],[5928],[5929],[5930],[5931],[5932],[5933],[5934],[5935],[5936],[5937],[5938],[5939],[5940],[5941],[5942],[5943],[5944],[5945],[5946],[5947],[5948],[5949],[5950],[5951],[5952],[5953],[5954],[5955],[5956],[5957],[5958],[5959],[5960],[5961],[5962],[5963],[5964],[5965],[5966],[5967],[5968],[5969],[5970],[5971],[5972],[5973],[5974],[5975],[5976],[5977],[5978],[5979],[5980],[5981],[5982],[5983],[5984],[5985],[5986],[5987],[5988],[5989],[5990],[5991],[5992],[5993],[5994],[5995],[5996],[5997],[5998],[5999],[6000],[6001],[6002],[6003],[6004],[6005],[6006],[6007],[6008],[6009],[6010],[6011],[6012],[6013],[6014],[6015],[6016],[6017],[6018],[6019],[6020],[6021],[6022],[6023],[6024],[6025],[6026],[6027],[6028],[6029],[6030],[6031],[6032],[6033],[6034],[6035],[6036],[6037],[6038],[6039],[6040],[6041],[6042],[6043],[6044],[6045],[6046],[6047],[6048],[6049],[6050],[6051],[6052],[6053],[6054],[6055],[6056],[6057],[6058],[6059],[6060],[6061],[6062],[6063],[6064],[6065],[6066],[6067],[6068],[6069],[6070],[6071],[6072],[6073],[6074],[6075],[6076],[6077],[6078],[6079],[6080],[6081],[6082],[6083],[6084],[6085],[6086],[6087],[6088],[6089],[6090],[6091],[6092],[6093],[6094],[6095],[6096],[6097],[6098],[6099],[6100],[6101],[6102],[6103],[6104],[6105],[6106],[6107],[6108],[6109],[6110],[6111],[6112],[6113],[6114],[6115],[6116],[6117],[6118],[6119],[6120],[6121],[6122],[6123],[6124],[6125],[6126],[6127],[6128],[6129],[6130],[6131],[6132],[6133],[6134],[6135],[6136],[6137],[6138],[6139],[6140],[6141],[6142],[6143],[6144],[6145],[6146],[6147],[6148],[6149],[6150],[6151],[6152],[6153],[6154],[6155],[6156],[6157],[6158],[6159],[6160],[6161],[6162],[6163],[6164],[6165],[6166],[6167],[6168],[6169],[6170],[6171],[6172],[6173],[6174],[6175],[6176],[6177],[6178],[6179],[6180],[6181],[6182],[6183],[6184],[6185],[6186],[6187],[6188],[6189],[6190],[6191],[6192],[6193],[6194],[6195],[6196],[6197],[6198],[6199],[6200],[6201],[6202],[6203],[6204],[6205],[6206],[6207],[6208],[6209],[6210],[6211],[6212],[6213],[6214],[6215],[6216],[6217],[6218],[6219],[6220],[6221],[6222],[6223],[6224],[6225],[6226],[6227],[6228],[6229],[6230],[6231],[6232],[6233],[6234],[6235],[6236],[6237],[6238],[6239],[6240],[6241],[6242],[6243],[6244],[6245],[6246],[6247],[6248],[6249],[6250],[6251],[6252],[6253],[6254],[6255],[6256],[6257],[6258],[6259],[6260],[6261],[6262],[6263],[6264],[6265],[6266],[6267],[6268],[6269],[6270],[6271],[6272],[6273],[6274],[6275],[6276],[6277],[6278],[6279],[6280],[6281],[6282],[6283],[6284],[6285],[6286],[6287],[6288],[6289],[6290],[6291],[6292],[6293],[6294],[6295],[6296],[6297],[6298],[6299],[6300],[6301],[6302],[6303],[6304],[6305],[6306],[6307],[6308],[6309],[6310],[6311],[6312],[6313],[6314],[6315],[6316],[6317],[6318],[6319],[6320],[6321],[6322],[6323],[6324],[6325],[6326],[6327],[6328],[6329],[6330],[6331],[6332],[6333],[6334],[6335],[6336],[6337],[6338],[6339],[6340],[6341],[6342],[6343],[6344],[6345],[6346],[6347],[6348],[6349],[6350],[6351],[6352],[6353],[6354],[6355],[6356],[6357],[6358],[6359],[6360],[6361],[6362],[6363],[6364],[6365],[6366],[6367],[6368],[6369],[6370],[6371],[6372],[6373],[6374],[6375],[6376],[6377],[6378],[6379],[6380],[6381],[6382],[6383],[6384],[6385],[6386],[6387],[6388],[6389],[6390],[6391],[6392],[6393],[6394],[6395],[6396],[6397],[6398],[6399],[6400],[6401],[6402],[6403],[6404],[6405],[6406],[6407],[6408],[6409],[6410],[6411],[6412],[6413],[6414],[6415],[6416],[6417],[6418],[6419],[6420],[6421],[6422],[6423],[6424],[6425],[6426],[6427],[6428],[6429],[6430],[6431],[6432],[6433],[6434],[6435],[6436],[6437],[6438],[6439],[6440],[6441],[6442],[6443],[6444],[6445],[6446],[6447],[6448],[6449],[6450],[6451],[6452],[6453],[6454],[6455],[6456],[6457],[6458],[6459],[6460],[6461],[6462],[6463],[6464],[6465],[6466],[6467],[6468],[6469],[6470],[6471],[6472],[6473],[6474],[6475],[6476],[6477],[6478],[6479],[6480],[6481],[6482],[6483],[6484],[6485],[6486],[6487],[6488],[6489],[6490],[6491],[6492],[6493],[6494],[6495],[6496],[6497],[6498],[6499],[6500],[6501],[6502],[6503],[6504],[6505],[6506],[6507],[6508],[6509],[6510],[6511],[6512],[6513],[6514],[6515],[6516],[6517],[6518],[6519],[6520],[6521],[6522],[6523],[6524],[6525],[6526],[6527],[6528],[6529],[6530],[6531],[6532],[6533],[6534],[6535],[6536],[6537],[6538],[6539],[6540],[6541],[6542],[6543],[6544],[6545],[6546],[6547],[6548],[6549],[6550],[6551],[6552],[6553],[6554],[6555],[6556],[6557],[6558],[6559],[6560],[6561],[6562],[6563],[6564],[6565],[6566],[6567],[6568],[6569],[6570],[6571],[6572],[6573],[6574],[6575],[6576],[6577],[6578],[6579],[6580],[6581],[6582],[6583],[6584],[6585],[6586],[6587],[6588],[6589],[6590],[6591],[6592],[6593],[6594],[6595],[6596],[6597],[6598],[6599],[6600],[6601],[6602],[6603],[6604],[6605],[6606],[6607],[6608],[6609],[6610],[6611],[6612],[6613],[6614],[6615],[6616],[6617],[6618],[6619],[6620],[6621],[6622],[6623],[6624],[6625],[6626],[6627],[6628],[6629],[6630],[6631],[6632],[6633],[6634],[6635],[6636],[6637],[6638],[6639],[6640],[6641],[6642],[6643],[6644],[6645],[6646],[6647],[6648],[6649],[6650],[6651],[6652],[6653],[6654],[6655],[6656],[6657],[6658],[6659],[6660],[6661],[6662],[6663],[6664],[6665],[6666],[6667],[6668],[6669],[6670],[6671],[6672],[6673],[6674],[6675],[6676],[6677],[6678],[6679],[6680],[6681],[6682],[6683],[6684],[6685],[6686],[6687],[6688],[6689],[6690],[6691],[6692],[6693],[6694],[6695],[6696],[6697],[6698],[6699],[6700],[6701],[6702],[6703],[6704],[6705],[6706],[6707],[6708],[6709],[6710],[6711],[6712],[6713],[6714],[6715],[6716],[6717],[6718],[6719],[6720],[6721],[6722],[6723],[6724],[6725],[6726],[6727],[6728],[6729],[6730],[6731],[6732],[6733],[6734],[6735],[6736],[6737],[6738],[6739],[6740],[6741],[6742],[6743],[6744],[6745],[6746],[6747],[6748],[6749],[6750],[6751],[6752],[6753],[6754],[6755],[6756],[6757],[6758],[6759],[6760],[6761],[6762],[6763],[6764],[6765],[6766],[6767],[6768],[6769],[6770],[6771],[6772],[6773],[6774],[6775],[6776],[6777],[6778],[6779],[6780],[6781],[6782],[6783],[6784],[6785],[6786],[6787],[6788],[6789],[6790],[6791],[6792],[6793],[6794],[6795],[6796],[6797],[6798],[6799],[6800],[6801],[6802],[6803],[6804],[6805],[6806],[6807],[6808],[6809],[6810],[6811],[6812],[6813],[6814],[6815],[6816],[6817],[6818],[6819],[6820],[6821],[6822],[6823],[6824],[6825],[6826],[6827],[6828],[6829],[6830],[6831],[6832],[6833],[6834],[6835],[6836],[6837],[6838],[6839],[6840],[6841],[6842],[6843],[6844],[6845],[6846],[6847],[6848],[6849],[6850],[6851],[6852],[6853],[6854],[6855],[6856],[6857],[6858],[6859],[6860],[6861],[6862],[6863],[6864],[6865],[6866],[6867],[6868],[6869],[6870],[6871],[6872],[6873],[6874],[6875],[6876],[6877],[6878],[6879],[6880],[6881],[6882],[6883],[6884],[6885],[6886],[6887],[6888],[6889],[6890],[6891],[6892],[6893],[6894],[6895],[6896],[6897],[6898],[6899],[6900],[6901],[6902],[6903],[6904],[6905],[6906],[6907],[6908],[6909],[6910],[6911],[6912],[6913],[6914],[6915],[6916],[6917],[6918],[6919],[6920],[6921],[6922],[6923],[6924],[6925],[6926],[6927],[6928],[6929],[6930],[6931],[6932],[6933],[6934],[6935],[6936],[6937],[6938],[6939],[6940],[6941],[6942],[6943],[6944],[6945],[6946],[6947],[6948],[6949],[6950],[6951],[6952],[6953],[6954],[6955],[6956],[6957],[6958],[6959],[6960],[6961],[6962],[6963],[6964],[6965],[6966],[6967],[6968],[6969],[6970],[6971],[6972],[6973],[6974],[6975],[6976],[6977],[6978],[6979],[6980],[6981],[6982],[6983],[6984],[6985],[6986],[6987],[6988],[6989],[6990],[6991],[6992],[6993],[6994],[6995],[6996],[6997],[6998],[6999],[7000],[7001],[7002],[7003],[7004],[7005],[7006],[7007],[7008],[7009],[7010],[7011],[7012],[7013],[7014],[7015],[7016],[7017],[7018],[7019],[7020],[7021],[7022],[7023],[7024],[7025],[7026],[7027],[7028],[7029],[7030],[7031],[7032],[7033],[7034],[7035],[7036],[7037],[7038],[7039],[7040],[7041],[7042],[7043],[7044],[7045],[7046],[7047],[7048],[7049],[7050],[7051],[7052],[7053],[7054],[7055],[7056],[7057],[7058],[7059],[7060],[7061],[7062],[7063],[7064],[7065],[7066],[7067],[7068],[7069],[7070],[7071],[7072],[7073],[7074],[7075],[7076],[7077],[7078],[7079],[7080],[7081],[7082],[7083],[7084],[7085],[7086],[7087],[7088],[7089],[7090],[7091],[7092],[7093],[7094],[7095],[7096],[7097],[7098],[7099],[7100],[7101],[7102],[7103],[7104],[7105],[7106],[7107],[7108],[7109],[7110],[7111],[7112],[7113],[7114],[7115],[7116],[7117],[7118],[7119],[7120],[7121],[7122],[7123],[7124],[7125],[7126],[7127],[7128],[7129],[7130],[7131],[7132],[7133],[7134],[7135],[7136],[7137],[7138],[7139],[7140],[7141],[7142],[7143],[7144],[7145],[7146],[7147],[7148],[7149],[7150],[7151],[7152],[7153],[7154],[7155],[7156],[7157],[7158],[7159],[7160],[7161],[7162],[7163],[7164],[7165],[7166],[7167],[7168],[7169],[7170],[7171],[7172],[7173],[7174],[7175],[7176],[7177],[7178],[7179],[7180],[7181],[7182],[7183],[7184],[7185],[7186],[7187],[7188],[7189],[7190],[7191],[7192],[7193],[7194],[7195],[7196],[7197],[7198],[7199],[7200],[7201],[7202],[7203],[7204],[7205],[7206],[7207],[7208],[7209],[7210],[7211],[7212],[7213],[7214],[7215],[7216],[7217],[7218],[7219],[7220],[7221],[7222],[7223],[7224],[7225],[7226],[7227],[7228],[7229],[7230],[7231],[7232],[7233],[7234],[7235],[7236],[7237],[7238],[7239],[7240],[7241],[7242],[7243],[7244],[7245],[7246],[7247],[7248],[7249],[7250],[7251],[7252],[7253],[7254],[7255],[7256],[7257],[7258],[7259],[7260],[7261],[7262],[7263],[7264],[7265],[7266],[7267],[7268],[7269],[7270],[7271],[7272],[7273],[7274],[7275],[7276],[7277],[7278],[7279],[7280],[7281],[7282],[7283],[7284],[7285],[7286],[7287],[7288],[7289],[7290],[7291],[7292],[7293],[7294],[7295],[7296],[7297],[7298],[7299],[7300],[7301],[7302],[7303],[7304],[7305],[7306],[7307],[7308],[7309],[7310],[7311],[7312],[7313],[7314],[7315],[7316],[7317],[7318],[7319],[7320],[7321],[7322],[7323],[7324],[7325],[7326],[7327],[7328],[7329],[7330],[7331],[7332],[7333],[7334],[7335],[7336],[7337],[7338],[7339],[7340],[7341],[7342],[7343],[7344],[7345],[7346],[7347],[7348],[7349],[7350],[7351],[7352],[7353],[7354],[7355],[7356],[7357],[7358],[7359],[7360],[7361],[7362],[7363],[7364],[7365],[7366],[7367],[7368],[7369],[7370],[7371],[7372],[7373],[7374],[7375],[7376],[7377],[7378],[7379],[7380],[7381],[7382],[7383],[7384],[7385],[7386],[7387],[7388],[7389],[7390],[7391],[7392],[7393],[7394],[7395],[7396],[7397],[7398],[7399],[7400],[7401],[7402],[7403],[7404],[7405],[7406],[7407],[7408],[7409],[7410],[7411],[7412],[7413],[7414],[7415],[7416],[7417],[7418],[7419],[7420],[7421],[7422],[7423],[7424],[7425],[7426],[7427],[7428],[7429],[7430],[7431],[7432],[7433],[7434],[7435],[7436],[7437],[7438],[7439],[7440],[7441],[7442],[7443],[7444],[7445],[7446],[7447],[7448],[7449],[7450],[7451],[7452],[7453],[7454],[7455],[7456],[7457],[7458],[7459],[7460],[7461],[7462],[7463],[7464],[7465],[7466],[7467],[7468],[7469],[7470],[7471],[7472],[7473],[7474],[7475],[7476],[7477],[7478],[7479],[7480],[7481],[7482],[7483],[7484],[7485],[7486],[7487],[7488],[7489],[7490],[7491],[7492],[7493],[7494],[7495],[7496],[7497],[7498],[7499],[7500],[7501],[7502],[7503],[7504],[7505],[7506],[7507],[7508],[7509],[7510],[7511],[7512],[7513],[7514],[7515],[7516],[7517],[7518],[7519],[7520],[7521],[7522],[7523],[7524],[7525],[7526],[7527],[7528],[7529],[7530],[7531],[7532],[7533],[7534],[7535],[7536],[7537],[7538],[7539],[7540],[7541],[7542],[7543],[7544],[7545],[7546],[7547],[7548],[7549],[7550],[7551],[7552],[7553],[7554],[7555],[7556],[7557],[7558],[7559],[7560],[7561],[7562],[7563],[7564],[7565],[7566],[7567],[7568],[7569],[7570],[7571],[7572],[7573],[7574],[7575],[7576],[7577],[7578],[7579],[7580],[7581],[7582],[7583],[7584],[7585],[7586],[7587],[7588],[7589],[7590],[7591],[7592],[7593],[7594],[7595],[7596],[7597],[7598],[7599],[7600],[7601],[7602],[7603],[7604],[7605],[7606],[7607],[7608],[7609],[7610],[7611],[7612],[7613],[7614],[7615],[7616],[7617],[7618],[7619],[7620],[7621],[7622],[7623],[7624],[7625],[7626],[7627],[7628],[7629],[7630],[7631],[7632],[7633],[7634],[7635],[7636],[7637],[7638],[7639],[7640],[7641],[7642],[7643],[7644],[7645],[7646],[7647],[7648],[7649],[7650],[7651],[7652],[7653],[7654],[7655],[7656],[7657],[7658],[7659],[7660],[7661],[7662],[7663],[7664],[7665],[7666],[7667],[7668],[7669],[7670],[7671],[7672],[7673],[7674],[7675],[7676],[7677],[7678],[7679],[7680],[7681],[7682],[7683],[7684],[7685],[7686],[7687],[7688],[7689],[7690],[7691],[7692],[7693],[7694],[7695],[7696],[7697],[7698],[7699],[7700],[7701],[7702],[7703],[7704],[7705],[7706],[7707],[7708],[7709],[7710],[7711],[7712],[7713],[7714],[7715],[7716],[7717],[7718],[7719],[7720],[7721],[7722],[7723],[7724],[7725],[7726],[7727],[7728],[7729],[7730],[7731],[7732],[7733],[7734],[7735],[7736],[7737],[7738],[7739],[7740],[7741],[7742],[7743],[7744],[7745],[7746],[7747],[7748],[7749],[7750],[7751],[7752],[7753],[7754],[7755],[7756],[7757],[7758],[7759],[7760],[7761],[7762],[7763],[7764],[7765],[7766],[7767],[7768],[7769],[7770],[7771],[7772],[7773],[7774],[7775],[7776],[7777],[7778],[7779],[7780],[7781],[7782],[7783],[7784],[7785],[7786],[7787],[7788],[7789],[7790],[7791],[7792],[7793],[7794],[7795],[7796],[7797],[7798],[7799],[7800],[7801],[7802],[7803],[7804],[7805],[7806],[7807],[7808],[7809],[7810],[7811],[7812],[7813],[7814],[7815],[7816],[7817],[7818],[7819],[7820],[7821],[7822],[7823],[7824],[7825],[7826],[7827],[7828],[7829],[7830],[7831],[7832],[7833],[7834],[7835],[7836],[7837],[7838],[7839],[7840],[7841],[7842],[7843],[7844],[7845],[7846],[7847],[7848],[7849],[7850],[7851],[7852],[7853],[7854],[7855],[7856],[7857],[7858],[7859],[7860],[7861],[7862],[7863],[7864],[7865],[7866],[7867],[7868],[7869],[7870],[7871],[7872],[7873],[7874],[7875],[7876],[7877],[7878],[7879],[7880],[7881],[7882],[7883],[7884],[7885],[7886],[7887],[7888],[7889],[7890],[7891],[7892],[7893],[7894],[7895],[7896],[7897],[7898],[7899],[7900],[7901],[7902],[7903],[7904],[7905],[7906],[7907],[7908],[7909],[7910],[7911],[7912],[7913],[7914],[7915],[7916],[7917],[7918],[7919],[7920],[7921],[7922],[7923],[7924],[7925],[7926],[7927],[7928],[7929],[7930],[7931],[7932],[7933],[7934],[7935],[7936],[7937],[7938],[7939],[7940],[7941],[7942],[7943],[7944],[7945],[7946],[7947],[7948],[7949],[7950],[7951],[7952],[7953],[7954],[7955],[7956],[7957],[7958],[7959],[7960],[7961],[7962],[7963],[7964],[7965],[7966],[7967],[7968],[7969],[7970],[7971],[7972],[7973],[7974],[7975],[7976],[7977],[7978],[7979],[7980],[7981],[7982],[7983],[7984],[7985],[7986],[7987],[7988],[7989],[7990],[7991],[7992],[7993],[7994],[7995],[7996],[7997],[7998],[7999],[8000],[8001],[8002],[8003],[8004],[8005],[8006],[8007],[8008],[8009],[8010],[8011],[8012],[8013],[8014],[8015],[8016],[8017],[8018],[8019],[8020],[8021],[8022],[8023],[8024],[8025],[8026],[8027],[8028],[8029],[8030],[8031],[8032],[8033],[8034],[8035],[8036],[8037],[8038],[8039],[8040],[8041],[8042],[8043],[8044],[8045],[8046],[8047],[8048],[8049],[8050],[8051],[8052],[8053],[8054],[8055],[8056],[8057],[8058],[8059],[8060],[8061],[8062],[8063],[8064],[8065],[8066],[8067],[8068],[8069],[8070],[8071],[8072],[8073],[8074],[8075],[8076],[8077],[8078],[8079],[8080],[8081],[8082],[8083],[8084],[8085],[8086],[8087],[8088],[8089],[8090],[8091],[8092],[8093],[8094],[8095],[8096],[8097],[8098],[8099],[8100],[8101],[8102],[8103],[8104],[8105],[8106],[8107],[8108],[8109],[8110],[8111],[8112],[8113],[8114],[8115],[8116],[8117],[8118],[8119],[8120],[8121],[8122],[8123],[8124],[8125],[8126],[8127],[8128],[8129],[8130],[8131],[8132],[8133],[8134],[8135],[8136],[8137],[8138],[8139],[8140],[8141],[8142],[8143],[8144],[8145],[8146],[8147],[8148],[8149],[8150],[8151],[8152],[8153],[8154],[8155],[8156],[8157],[8158],[8159],[8160],[8161],[8162],[8163],[8164],[8165],[8166],[8167],[8168],[8169],[8170],[8171],[8172],[8173],[8174],[8175],[8176],[8177],[8178],[8179],[8180],[8181],[8182],[8183],[8184],[8185],[8186],[8187],[8188],[8189],[8190],[8191],[8192],[8193],[8194],[8195],[8196],[8197],[8198],[8199],[8200],[8201],[8202],[8203],[8204],[8205],[8206],[8207],[8208],[8209],[8210],[8211],[8212],[8213],[8214],[8215],[8216],[8217],[8218],[8219],[8220],[8221],[8222],[8223],[8224],[8225],[8226],[8227],[8228],[8229],[8230],[8231],[8232],[8233],[8234],[8235],[8236],[8237],[8238],[8239],[8240],[8241],[8242],[8243],[8244],[8245],[8246],[8247],[8248],[8249],[8250],[8251],[8252],[8253],[8254],[8255],[8256],[8257],[8258],[8259],[8260],[8261],[8262],[8263],[8264],[8265],[8266],[8267],[8268],[8269],[8270],[8271],[8272],[8273],[8274],[8275],[8276],[8277],[8278],[8279],[8280],[8281],[8282],[8283],[8284],[8285],[8286],[8287],[8288],[8289],[8290],[8291],[8292],[8293],[8294],[8295],[8296],[8297],[8298],[8299],[8300],[8301],[8302],[8303],[8304],[8305],[8306],[8307],[8308],[8309],[8310],[8311],[8312],[8313],[8314],[8315],[8316],[8317],[8318],[8319],[8320],[8321],[8322],[8323],[8324],[8325],[8326],[8327],[8328],[8329],[8330],[8331],[8332],[8333],[8334],[8335],[8336],[8337],[8338],[8339],[8340],[8341],[8342],[8343],[8344],[8345],[8346],[8347],[8348],[8349],[8350],[8351],[8352],[8353],[8354],[8355],[8356],[8357],[8358],[8359],[8360],[8361],[8362],[8363],[8364],[8365],[8366],[8367],[8368],[8369],[8370],[8371],[8372],[8373],[8374],[8375],[8376],[8377],[8378],[8379],[8380],[8381],[8382],[8383],[8384],[8385],[8386],[8387],[8388],[8389],[8390],[8391],[8392],[8393],[8394],[8395],[8396],[8397],[8398],[8399],[8400],[8401],[8402],[8403],[8404],[8405],[8406],[8407],[8408],[8409],[8410],[8411],[8412],[8413],[8414],[8415],[8416],[8417],[8418],[8419],[8420],[8421],[8422],[8423],[8424],[8425],[8426],[8427],[8428],[8429],[8430],[8431],[8432],[8433],[8434],[8435],[8436],[8437],[8438],[8439],[8440],[8441],[8442],[8443],[8444],[8445],[8446],[8447],[8448],[8449],[8450],[8451],[8452],[8453],[8454],[8455],[8456],[8457],[8458],[8459],[8460],[8461],[8462],[8463],[8464],[8465],[8466],[8467],[8468],[8469],[8470],[8471],[8472],[8473],[8474],[8475],[8476],[8477],[8478],[8479],[8480],[8481],[8482],[8483],[8484],[8485],[8486],[8487],[8488],[8489],[8490],[8491],[8492],[8493],[8494],[8495],[8496],[8497],[8498],[8499],[8500],[8501],[8502],[8503],[8504],[8505],[8506],[8507],[8508],[8509],[8510],[8511],[8512],[8513],[8514],[8515],[8516],[8517],[8518],[8519],[8520],[8521],[8522],[8523],[8524],[8525],[8526],[8527],[8528],[8529],[8530],[8531],[8532],[8533],[8534],[8535],[8536],[8537],[8538],[8539],[8540],[8541],[8542],[8543],[8544],[8545],[8546],[8547],[8548],[8549],[8550],[8551],[8552],[8553],[8554],[8555],[8556],[8557],[8558],[8559],[8560],[8561],[8562],[8563],[8564],[8565],[8566],[8567],[8568],[8569],[8570],[8571],[8572],[8573],[8574],[8575],[8576],[8577],[8578],[8579],[8580],[8581],[8582],[8583],[8584],[8585],[8586],[8587],[8588],[8589],[8590],[8591],[8592],[8593],[8594],[8595],[8596],[8597],[8598],[8599],[8600],[8601],[8602],[8603],[8604],[8605],[8606],[8607],[8608],[8609],[8610],[8611],[8612],[8613],[8614],[8615],[8616],[8617],[8618],[8619],[8620],[8621],[8622],[8623],[8624],[8625],[8626],[8627],[8628],[8629],[8630],[8631],[8632],[8633],[8634],[8635],[8636],[8637],[8638],[8639],[8640],[8641],[8642],[8643],[8644],[8645],[8646],[8647],[8648],[8649],[8650],[8651],[8652],[8653],[8654],[8655],[8656],[8657],[8658],[8659],[8660],[8661],[8662],[8663],[8664],[8665],[8666],[8667],[8668],[8669],[8670],[8671],[8672],[8673],[8674],[8675],[8676],[8677],[8678],[8679],[8680],[8681],[8682],[8683],[8684],[8685],[8686],[8687],[8688],[8689],[8690],[8691],[8692],[8693],[8694],[8695],[8696],[8697],[8698],[8699],[8700],[8701],[8702],[8703],[8704],[8705],[8706],[8707],[8708],[8709],[8710],[8711],[8712],[8713],[8714],[8715],[8716],[8717],[8718],[8719],[8720],[8721],[8722],[8723],[8724],[8725],[8726],[8727],[8728],[8729],[8730],[8731],[8732],[8733],[8734],[8735],[8736],[8737],[8738],[8739],[8740],[8741],[8742],[8743],[8744],[8745],[8746],[8747],[8748],[8749],[8750],[8751],[8752],[8753],[8754],[8755],[8756],[8757],[8758],[8759],[8760],[8761],[8762],[8763],[8764],[8765],[8766],[8767],[8768],[8769],[8770],[8771],[8772],[8773],[8774],[8775],[8776],[8777],[8778],[8779],[8780],[8781],[8782],[8783],[8784],[8785],[8786],[8787],[8788],[8789],[8790],[8791],[8792],[8793],[8794],[8795],[8796],[8797],[8798],[8799],[8800],[8801],[8802],[8803],[8804],[8805],[8806],[8807],[8808],[8809],[8810],[8811],[8812],[8813],[8814],[8815],[8816],[8817],[8818],[8819],[8820],[8821],[8822],[8823],[8824],[8825],[8826],[8827],[8828],[8829],[8830],[8831],[8832],[8833],[8834],[8835],[8836],[8837],[8838],[8839],[8840],[8841],[8842],[8843],[8844],[8845],[8846],[8847],[8848],[8849],[8850],[8851],[8852],[8853],[8854],[8855],[8856],[8857],[8858],[8859],[8860],[8861],[8862],[8863],[8864],[8865],[8866],[8867],[8868],[8869],[8870],[8871],[8872],[8873],[8874],[8875],[8876],[8877],[8878],[8879],[8880],[8881],[8882],[8883],[8884],[8885],[8886],[8887],[8888],[8889],[8890],[8891],[8892],[8893],[8894],[8895],[8896],[8897],[8898],[8899],[8900],[8901],[8902],[8903],[8904],[8905],[8906],[8907],[8908],[8909],[8910],[8911],[8912],[8913],[8914],[8915],[8916],[8917],[8918],[8919],[8920],[8921],[8922],[8923],[8924],[8925],[8926],[8927],[8928],[8929],[8930],[8931],[8932],[8933],[8934],[8935],[8936],[8937],[8938],[8939],[8940],[8941],[8942],[8943],[8944],[8945],[8946],[8947],[8948],[8949],[8950],[8951],[8952],[8953],[8954],[8955],[8956],[8957],[8958],[8959],[8960],[8961],[8962],[8963],[8964],[8965],[8966],[8967],[8968],[8969],[8970],[8971],[8972],[8973],[8974],[8975],[8976],[8977],[8978],[8979],[8980],[8981],[8982],[8983],[8984],[8985],[8986],[8987],[8988],[8989],[8990],[8991],[8992],[8993],[8994],[8995],[8996],[8997],[8998],[8999],[9000],[9001],[9002],[9003],[9004],[9005],[9006],[9007],[9008],[9009],[9010],[9011],[9012],[9013],[9014],[9015],[9016],[9017],[9018],[9019],[9020],[9021],[9022],[9023],[9024],[9025],[9026],[9027],[9028],[9029],[9030],[9031],[9032],[9033],[9034],[9035],[9036],[9037],[9038],[9039],[9040],[9041],[9042],[9043],[9044],[9045],[9046],[9047],[9048],[9049],[9050],[9051],[9052],[9053],[9054],[9055],[9056],[9057],[9058]]},{"type":"MultiLineString","arcs":[[9059],[9060],[9061],[9062],[9063],[9064],[9065],[9066],[9067]]},{"type":"MultiLineString","arcs":[[9068],[9069],[9070],[9071],[9072],[9073],[9074],[9075],[9076],[9077],[9078],[9079],[9080],[9081],[9082],[9083],[9084],[9085],[9086],[9087],[9088],[9089],[9090],[9091],[9092],[9093],[9094],[9095],[9096]]},{"type":"MultiLineString","arcs":[[9071],[9072],[9073],[9074],[9075],[9076],[9077],[9078],[9079],[9080],[9081],[9082],[9083],[9084],[9085],[9086],[9087],[9088],[9089],[9090],[9091],[9092],[9093],[9094],[9095],[9096]]},{"type":"MultiLineString","arcs":[[9097],[9098],[9099],[9100],[9101],[9102],[9103],[9104],[9105],[9106],[9107],[9108],[9109],[9110],[9111],[9112],[9113],[9114],[9115],[9116],[9117],[9118],[9119],[9120],[9121],[9122],[9123],[9124],[9125],[9126],[9127],[9128],[9129],[9130],[9131],[9132],[9133],[9134],[9135],[9136],[9137],[9138],[9139],[9140],[9141],[9142],[9143],[9144]]},{"type":"MultiLineString","arcs":[[9100],[9101],[9102],[9103],[9104],[9105],[9106],[9107],[9108],[9109],[9111],[9112],[9113],[9114],[9115],[9116],[9123],[9145],[9146],[9147],[9148],[9149],[9127],[9150],[9151],[9152],[9153],[9154],[9155],[9156],[9157],[9158],[9159]]},{"type":"MultiLineString","arcs":[[9160],[9161],[9162],[9163],[9164],[9165],[9166],[9167],[9168],[9169],[9170],[9171],[9172],[9173],[9174],[9175],[9176],[9177],[9178],[9179],[9180],[9181],[9182],[9183],[9184],[9185],[9186],[9187],[9188],[9189],[9190],[9191],[9192],[9193],[9194],[9195],[9196],[9197],[9198],[9199],[9200],[9201],[9202],[9203],[9204],[9205],[9206],[9207],[9208],[9209],[9210],[9211],[9212],[9213],[9214],[9215],[9216],[9217],[9218],[9219],[9220],[9221],[9222],[9223],[9224],[9225],[9226],[9227],[9228],[9229],[9230],[9231],[9232],[9233],[9234],[9235],[9236],[9237],[9238],[9239],[9240],[9241],[9242],[9243],[9244],[9245],[9246],[9247],[9248],[9249],[9250],[9251],[9252],[9253],[9254],[9255],[9256],[9257],[9258],[9259],[9260],[9261],[9262],[9263],[9264],[9265],[9266],[9267],[9268],[9269],[9270],[9271],[9272],[9273],[9274],[9275],[9276],[9277],[9278],[9279],[9280],[9281],[9282],[9283],[9284],[9285],[9286],[9287],[9288],[9289],[9290],[9291],[9292],[9293],[9294],[9295],[9296],[9297],[9298],[9299],[9300],[9301],[9302],[9303],[9304],[9305],[9306],[9307],[9308],[9309],[9310],[9311],[9312],[9313],[9314],[9315],[9316],[9317],[9318],[9319],[9320],[9321],[9322],[9323]]},{"type":"MultiLineString","arcs":[[9097],[9098],[9099],[9100],[9101],[9102],[9103],[9104],[9105],[9106],[9107],[9108],[9109],[9110],[9111],[9112],[9113],[9114],[9115],[9116],[9117],[9118],[9119],[9120],[9121],[9122],[9123],[9124],[9125],[9126],[9127],[9128],[9129],[9130],[9131],[9132],[9133],[9134],[9135],[9136],[9137],[9138],[9139],[9140],[9141],[9142],[9143],[9144]]},{"type":"MultiLineString","arcs":[[9324],[9184],[9325],[9326],[9186],[9211],[9327],[9328],[9329],[9330],[9331],[9332],[9333],[9334],[9335],[9336],[9337],[9338],[9339],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9324],[9184],[9325],[9326],[9186],[9211],[9327],[9328],[9329],[9243],[9330],[9251],[9331],[9262],[9263],[9264],[9332],[9333],[9334],[9268],[9335],[9270],[9271],[9336],[9337],[9338],[9277],[9278],[9279],[9280],[9284],[9339],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9344],[9345],[9346],[9347],[9348],[9349],[9350],[9351],[9352],[9353],[9354],[9355],[9356],[9357],[9358],[9359],[9360],[9361],[9362],[9363],[9364],[9365],[9366],[9367],[9368]]},{"type":"MultiLineString","arcs":[[9369],[9370],[9371],[9372],[9373],[9374],[9375],[9376],[9377],[9378],[9379],[9380],[9381],[9382],[9383],[9384],[9385],[9386],[9178],[9387],[9388],[9389],[9179],[9390],[9391],[9392],[9324],[9180],[9181],[9182],[9183],[9184],[9325],[9326],[9185],[9186],[9187],[9188],[9189],[9190],[9191],[9192],[9193],[9194],[9195],[9196],[9197],[9198],[9199],[9200],[9201],[9202],[9203],[9204],[9205],[9206],[9207],[9208],[9209],[9210],[9211],[9212],[9213],[9214],[9215],[9216],[9217],[9218],[9219],[9220],[9221],[9222],[9223],[9224],[9225],[9226],[9227],[9228],[9229],[9230],[9231],[9232],[9233],[9234],[9235],[9327],[9328],[9329],[9236],[9237],[9238],[9239],[9240],[9241],[9242],[9243],[9330],[9244],[9245],[9246],[9247],[9248],[9249],[9250],[9251],[9331],[9252],[9253],[9254],[9255],[9256],[9257],[9258],[9259],[9260],[9261],[9262],[9263],[9264],[9265],[9266],[9332],[9267],[9333],[9334],[9268],[9335],[9269],[9270],[9271],[9272],[9273],[9336],[9337],[9338],[9274],[9275],[9276],[9277],[9278],[9279],[9280],[9281],[9282],[9283],[9284],[9285],[9286],[9287],[9288],[9289],[9290],[9291],[9292],[9293],[9294],[9295],[9296],[9297],[9298],[9299],[9300],[9301],[9302],[9339],[9303],[9304],[9305],[9306],[9307],[9308],[9309],[9310],[9311],[9312],[9313],[9314],[9315],[9316],[9317],[9318],[9319],[9320],[9321],[9322],[9323],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9160],[9161],[9162],[9163],[9164],[9165],[9166],[9167],[9168],[9169],[9170],[9171],[9172],[9173],[9174],[9175],[9176],[9177],[9369],[9370],[9371],[9372],[9373],[9374],[9375],[9376],[9377],[9378],[9379],[9380],[9381],[9382],[9383],[9384],[9385],[9386],[9178],[9387],[9388],[9389],[9179],[9390],[9391],[9392],[9324],[9180],[9181],[9182],[9183],[9184],[9325],[9326],[9185],[9186],[9187],[9188],[9189],[9190],[9191],[9192],[9193],[9194],[9195],[9196],[9197],[9198],[9199],[9200],[9201],[9202],[9203],[9204],[9205],[9206],[9207],[9208],[9209],[9210],[9211],[9212],[9213],[9214],[9215],[9216],[9217],[9218],[9219],[9220],[9221],[9222],[9223],[9224],[9225],[9226],[9227],[9228],[9229],[9230],[9231],[9232],[9233],[9234],[9235],[9327],[9328],[9329],[9236],[9237],[9238],[9239],[9330],[9244],[9245],[9246],[9247],[9248],[9249],[9250],[9331],[9252],[9253],[9254],[9255],[9256],[9257],[9258],[9259],[9260],[9261],[9265],[9266],[9332],[9267],[9333],[9334],[9335],[9269],[9272],[9273],[9336],[9337],[9338],[9274],[9275],[9276],[9281],[9282],[9283],[9285],[9286],[9287],[9288],[9289],[9290],[9291],[9292],[9293],[9294],[9295],[9296],[9297],[9298],[9299],[9300],[9301],[9302],[9339],[9303],[9304],[9305],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9324],[9184],[9325],[9326],[9186],[9211],[9393],[9394],[9395],[9396],[9397],[9398],[9399],[9400],[9401],[9402],[9403],[9404],[9405],[9406],[9327],[9328],[9329],[9240],[9241],[9242],[9407],[9243],[9330],[9251],[9331],[9262],[9263],[9264],[9332],[9333],[9334],[9268],[9335],[9270],[9271],[9336],[9337],[9338],[9277],[9278],[9279],[9280],[9284],[9339],[9306],[9307],[9308],[9309],[9310],[9311],[9312],[9313],[9314],[9315],[9316],[9317],[9318],[9319],[9320],[9321],[9322],[9323],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9160],[9161],[9162],[9163],[9164],[9165],[9166],[9167],[9168],[9169],[9170],[9171],[9172],[9173],[9174],[9175],[9176],[9178],[9179],[9324],[9180],[9181],[9182],[9183],[9184],[9185],[9186],[9187],[9188],[9189],[9190],[9191],[9192],[9193],[9194],[9195],[9196],[9197],[9198],[9199],[9200],[9201],[9202],[9203],[9204],[9205],[9206],[9207],[9208],[9209],[9210],[9211],[9212],[9213],[9214],[9215],[9216],[9217],[9218],[9219],[9220],[9221],[9222],[9223],[9224],[9225],[9226],[9227],[9228],[9229],[9230],[9231],[9232],[9233],[9234],[9235],[9236],[9237],[9238],[9239],[9240],[9241],[9242],[9243],[9244],[9245],[9246],[9247],[9248],[9249],[9250],[9251],[9252],[9253],[9254],[9255],[9256],[9257],[9258],[9259],[9260],[9261],[9262],[9263],[9264],[9265],[9266],[9267],[9268],[9269],[9270],[9271],[9272],[9273],[9274],[9275],[9276],[9277],[9278],[9279],[9280],[9281],[9282],[9283],[9284],[9285],[9286],[9287],[9288],[9289],[9290],[9291],[9292],[9293],[9294],[9295],[9296],[9297],[9298],[9299],[9300],[9301],[9302],[9303],[9304],[9305],[9306],[9307],[9308],[9309],[9310],[9311],[9312],[9313],[9314],[9315],[9316],[9317],[9318],[9319],[9320],[9321],[9322],[9323],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9324],[9325],[9326],[9393],[9394],[9395],[9396],[9397],[9398],[9399],[9400],[9401],[9402],[9403],[9404],[9405],[9406],[9327],[9328],[9329],[9407],[9330],[9331],[9332],[9333],[9334],[9335],[9336],[9337],[9338],[9339],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9240],[9241],[9242],[9243],[9251],[9262],[9263],[9264],[9268],[9270],[9271],[9277],[9278],[9279],[9280],[9284],[9306],[9307],[9308],[9309],[9310],[9311],[9312],[9313],[9314],[9315],[9316],[9317],[9318],[9319],[9320],[9321],[9322],[9323]]},{"type":"MultiLineString","arcs":[[9324],[9325],[9326],[9393],[9394],[9395],[9396],[9397],[9398],[9399],[9400],[9401],[9402],[9403],[9404],[9405],[9406],[9327],[9328],[9329],[9407],[9330],[9331],[9332],[9333],[9334],[9335],[9336],[9337],[9338],[9339],[9340],[9341],[9342],[9343]]},{"type":"MultiLineString","arcs":[[9408],[9409],[9410],[9411],[9412],[9413],[9414],[9415],[9416],[9417],[9418],[9419],[9420],[9421],[9422],[9423],[9424],[9425],[9426],[9427],[9428],[9429],[9430],[9431],[9432],[9433],[9434],[9435],[9436],[9437]]},{"type":"MultiLineString","arcs":[[9438],[9439,9440,-452,9441,-450,9442,9443,-447,9444,9445,9446,9447,-442,9448,-440,9449,-438,9450,-436,9451,-434,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,-415,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,-403,9481,9482,-400,9483,-398,9484,9485,-395,9486,9487,9488,-391,9489,9490,9491,9492,9493,9494,9495,-383,9496,9497,9498,9499,-378,9500,-376,9501,-374,9502,9503,9504,9505,9506],[9507],[9508,365,9509,367],[9510,9511,336,9512,338,9513,340,9514,9515,343,9516,345,9517,9518,348,9519,9520,9521,352,9522,354,9523,9524,9525,358,9526,9527,9528,9529,9530,9531],[9532,1130,9533,1132,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,473,9549,475,9550,477,9551,479,9552,9553,9554,9555,9556,9557,9558,9559,488,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,504,9575,506,9576,9577,9578,9579,9580,9581,9582,514,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,535,9603,9604,538,9605,9606,9607,9608,9609,9610,9611,9612,547,9613,549,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,560,9624,562,9625,9626,565,9627,9628,9629,9630,9631,9632,9633,9634,9635,575,9636,577,9637,9638,9639,9640,582,9641,9642,9643,586,9644,9645,9646,9647,9648,9649,9650,9651,595,9652,597,9653,9654,9655,9656,602,9657,9658,605,9659,9660,9661,9662,9663,611,9664,613,9665,615,9666,9667,9668,9669,9670,621,9671,9672,9673,9674,9675,9676,628,9677,9678,631,9679,633,9680,9681,9682,9683,9684],[9685,9686,9687,1123,9688,1125,9689,9690,9691],[9692],[9693,744,9694,9695,747,9696,749,9697,751,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,762,9708,9709,765,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,781,9725,9726,784,9727,9728,787,9729,9730,9731,9732,9733,9734,794,9735,796,9736,798,9737,9738,9739,9740,9741,9742,9743,806,9744,808,9745,9746,9747,812,9748,9749,9750,9751,9752,818,9753,9754,9755,9756,823,9757,9758,9759,9760,9761,9762,830,9763,9764,9765,9766,9767,9768,837,9769,9770,840,9771,9772,9773,844,9774,9775,9776,9777,9778,9779,9780,852,9781,854,9782,856,9783,9784,9785,860,9786,9787,9788,9789,9790,866,9791,9792,9793,9794,9795,872,9796,9797,9798,9799,9800,9801,879,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,900,9822,902,9823,9824,9825],[9826],[9827,-466,9828,-464,9829,9830,9831,9832,-459,9833,9834,9835,9836],[9837],[9838],[9839,908,9840,910,9841,9842,9843,914,9844,9845,9846,9847,9848,920,9849,922,9850,924,9851,9852,9853,9854,9855,930,9856,932,9857,9858,935,9859,9860,9861,9862,940,9863,9864,943,9865,945,9866,9867,9868,949,9869,9870,9871,9872,9873,9874,9875,9876,9877],[9878],[9879],[9880,9881,9882,1066,9883,1068,9884,9885,9886,9887,9888,9889,1075,9890,9891,1078,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,1090,9903,1092,9904,9905,9906,9907,9908,1098,9909,9910,9911,1102,9912,9913,9914,1106,9915,9916,1109,9917,9918,9919,9920,9921,1115,9922,9923,9924,1119,9925],[9926,9927,1796,9928,9929,9930,9931,9932,1802,9933,9934,9935,9936,1807,9937,9938,9939,9940,9941,9942,9943,1815,9944,1817,9945,9946,1820,9947,9948,9949,1824,9950,1826,9951,9952,9953,9954,9955,9956,9957,9958,9959,1836,9960,1838,9961,1840,9962,9963,9964,9965,689,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,703,9979,9980,9981,9982,9983,9984,9985,711,9986,9987,9988,9989,9990,9991,9992,719,9993,721,9994,9995,9996,9997,9998,9999,10000,10001,730,10002,10003,10004,10005,10006,736,10007,10008,10009],[10010],[10011],[10012,10013,1035,10014,10015,1038,10016,1040,10017,1042,10018,10019,1045,10020,10021,1048,10022,10023,10024,10025,10026,10027,10028,10029,10030,1058,10031,10032,1061,10033,10034],[10035],[10036],[10037],[1015,10038,10039,1018,10040,10041,10042,10043,10044,1024,10045,1026,10046,1028,10047,1030,10048,1032,10049],[10050],[10051],[10052],[10053],[10054],[10055,10056,2454,10057,10058,10059,10060,10061,10062,10063,10064,10065,2464,10066,10067,10068,10069,2469,10070,10071,10072,2473,10073,2475,10074,2477,10075,2479,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,2490,10086,2492,10087,10088,2495,10089,10090,10091,10092,10093,2501,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,2524,10116,2526,10117,10118,10119,10120,2531,10121,2533,10122,10123,2536,10124,10125,10126,2540,10127,2542,10128,10129,10130,2546,10131,2548,10132,10133,2551,10134,2553,10135,10136,10137,10138,2558,10139,2560,10140,10141,2563,10142,10143,10144,10145,10146,10147,10148,10149,2572,10150,10151,10152,10153,2577,10154,10155,2580,10156,10157,2583,10158,2585,10159,2587,10160,2589,10161,10162,10163,10164,10165,10166,10167,10168,2598,10169,2600,10170,2602,10171,10172,10173,10174,2607,10175,2609,10176,10177,10178,2613,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,2625,10190,2627,10191,10192,10193,2631,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,2643,10205,10206,2646,10207,10208,10209,2650,10210,10211,2653,10212,10213,10214,10215,10216,2659,10217,10218,10219,10220,10221,10222,10223],[10224],[10225],[10226],[10227,10228,10229,10230,10231,10232,10233,10234,969,10235,10236,972,10237,974,10238,10239,10240,10241,10242,980,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,991,10253,10254,10255,10256,996,10257,998,10258,1000,10259,1002,10260,10261,10262,10263,10264,1008,10265,10266,10267,1012,10268],[10269],[10270,10271,2112],[10272,10273,2399,10274,10275,10276,10277,10278,10279,2406,10280,10281,2409,10282,10283,10284,10285,2414,10286,10287,10288,10289,10290,10291,10292,10293,2423,10294,2425,10295,10296,2428,10297,10298,2431,10299,10300,10301,10302,10303,2437,10304,10305,2440,10306,10307,2443,10308,10309,2446,10310,10311,10312,10313,10314,10315],[10316],[10317],[10318,10319,10320,10321,10322,1206,10323,1208,10324,10325,10326,10327,10328,10329,10330,10331,1217,10332,10333,10334,1221,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,1235,10348,1237,10349,10350,1240,10351,10352,10353,10354,1245,10355,10356,10357,10358,1250,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,1262,10370,10371,1265,10372,1267,10373,1269,10374,10375,10376,10377,10378,10379,10380,10381,1278,10382,1280,10383,10384,10385,10386,1285,10387,10388,1288,10389,10390,10391,10392,10393,10394,10395,10396,1297,10397,10398,10399,10400,1302,10401,10402,10403,10404,1307,10405,10406,10407,1311,10408,10409,1314,10410,10411,10412,1318,10413,1320,10414,1322,10415,1324,10416,10417,10418,10419,1329,10420,10421,10422,10423,10424,10425,10426,1337,10427,10428,10429,10430,1342,10431,10432,10433,10434,10435,1348,10436,10437,10438,1352,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,1364,10450,10451,10452,10453,10454,10455,1371,10456,10457,10458,1375,10459,10460,1378,10461,10462,10463,10464,1383,10465,10466,10467,1387,10468,1389,10469,10470,1392,10471,10472,10473,10474,1397,10475,1399,10476,10477,10478,10479,1404,10480,10481,1407,10482],[10483,10484,10485,10486,10487,10488,10489,10490,10491,1582,10492,10493,10494,10495,10496,10497,10498,10499,1591,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,1604,10512,1606,10513,10514,10515,10516,10517,1612,10518,10519,10520,1616,10521,1618,10522,1620,10523,1622,10524,1624,10525,10526,1627,10527,10528,10529,1631,10530,10531,10532,1635,10533,10534,10535,1639,10536,10537,1642,10538,1644,10539,1646,10540,10541,1649,10542,10543,10544,1653,10545,10546,10547,1657,10548,10549,10550,10551,10552,10553,10554,10555,10556,1667,10557,10558,1670,10559,10560,1673,10561,10562,10563,10564,1678,10565,10566,10567,10568,10569,10570,10571,1686,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,1720,10605,10606,1723,10607,1725,10608,1727,10609,10610,10611,10612,1732,10613,10614,10615,10616,10617,10618,10619,1740,10620,10621,1743,10622,10623,1746,10624,1748,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,1761,10637,10638,1764,10639,10640,10641,1768,10642,10643,10644,10645,10646,1774,10647,10648,10649,10650,1779,10651,10652,10653,10654,10655,1785,10656,10657,10658,1789,10659,1791,10660,10661,10662],[10663],[10664],[10665],[10666],[10667],[10668,2034,10669,10670,10671,2038,10672,2040,10673,10674,2043,10675,10676,2046,10677,10678,10679,10680,10681,2052,10682,10683,2055,10684,10685,2058,10686,2060,10687,10688,2063,10689,10690,10691,2067,10692,10693,10694,2071,10695,10696,10697,10698,2076,10699,10700,10701,10702,10703,2082,10704,2084,10705,10706,2087,10707,10708,2090,10709,10710,2093,10711,10712,10713,10714,2098,10715,10716,2101,10717,10718,2104,10719,2106,10720,10721,2109,10722],[10723,10724,10725,10726,10727],[10728,1410,10729,10730,1413,10731,1415,10732,10733,10734,10735,1420,10736,10737,10738,10739,10740,1426,10741,10742,10743,10744,10745,1432,10746,10747,1435,10748,10749,1438,10750,10751,1441,10752,10753,10754,10755,1446,10756,1448,10757,10758,10759,10760,10761,1454,10762,10763,10764,10765,10766,10767,10768,10769,1463,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,1479,10785,10786,10787,10788,1484,10789,1486,10790,1488,10791,10792,1491,10793,1493,10794,10795,1496,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,1511,10810,1513,10811,10812,1516,10813,1518,10814,1520,10815,1522,10816,1524,10817,10818,10819,10820,10821,10822,1531,10823,10824,10825,1535,10826,10827,10828,1539,10829,10830,1542,10831,1544,10832,10833,10834,10835,1549,10836,1551,10837,10838,1554,10839,10840,1557,10841,1559,10842,10843,10844,1563,10845,10846,10847,10848,10849,10850,1570,10851,10852,10853],[10854],[10855],[10856],[10857],[10858,10859,10860,10861,1925,10862,1927,10863,10864,1930,10865,10866,10867,10868,10869,1936,10870,10871,10872,10873,10874,10875,1943,10876,1945,10877,1947,10878,1949,10879,1951,10880,10881,10882,10883,10884,10885,10886,10887,10888,1961,10889,1963,10890,10891,10892,10893,10894,1969,10895,1971,10896,1973,10897,1975,10898,1977,10899,10900,1980,10901,10902,10903,10904,1985,10905,10906,1988,10907,10908,1991,10909,1993,10910,10911,10912,1997,10913,1999,10914,10915,2002,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,2016,10929,10930,2019,10931,10932,10933,2023,10934,2025,10935,2027,10936,10937],[10938,10939,10940,1845,10941,10942,10943,10944,1850,10945,10946,1853,10947,1855,10948,10949,10950,10951,10952,1861,10953,10954,10955,10956,10957],[10958],[10959],[10960],[10961,1149,10962,1151,10963,10964,10965,10966,10967,10968,10969,10970,1160,10971,10972,1163,10973,1165,10974,10975,1168,10976,10977,10978,10979,10980,10981,10982,10983,1177,10984,1179,10985,1181,10986,10987,1184,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,1195,10998,10999,11000,11001,1200,11002],[11003],[11004],[11005],[11006,2114,11007,11008,11009,11010,11011,11012,11013,11014,2123,11015,11016,11017,11018,11019,11020,2130,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,2141,11031,11032,11033,11034,11035,2147,11036,2149,11037,2151,11038,11039,11040,11041,11042,11043,11044,11045,11046,2161,11047,2163,11048,2165,11049,2167,11050,11051,11052,11053,2172,11054,11055,11056,2176,11057,11058,11059,11060,11061,11062,11063,11064,11065,2186,11066,2188,11067,11068,2191,11069,11070,11071,11072,11073,11074,2198,11075,11076,11077,11078,2203,11079,2205,11080,11081,11082,2209,11083,2211,11084,11085,11086,11087,2216,11088,11089,11090,11091,11092,2222,11093,2224,11094,11095,2227,11096,11097,2230,11098,11099,2233,11100,11101,11102,11103,11104,2239,11105,11106,2242,11107,11108,11109,11110,11111,2248,11112,11113,2251,11114,11115,11116],[11117,11118,11119,11120,11121,11122,11123,11124,11125,1878,11126,11127,11128,11129,1883,11130,1885,11131,11132,1888,11133,11134,11135,11136,1893,11137,11138,11139,11140,1898,11141,11142,11143,11144,1903,11145,11146,1906,11147,11148,11149,1910,11150,11151,11152,11153,11154,1916,11155,11156,11157,11158,11159],[11160],[11161,11162],[11163],[11164],[11165,11166,11167,11168,11169,2259,11170,2261,11171,11172,2264,11173,11174,11175,11176,11177,2270,11178,2272,11179,11180,11181,2276,11182,2278,11183,11184,11185,2282,11186,11187,11188,2286,11189,2288,11190,11191,11192,11193,11194,11195,11196,11197,11198,2298,11199,2300,11200,11201,2303,11202,2305,11203,11204,2308,11205,11206,11207,11208,2313,11209,11210,11211,11212,2318,11213,11214,11215,11216,11217,11218,2325,11219,2327,11220,11221,11222,11223,2332,11224,11225,11226,11227,2337,11228,11229,2340,11230,11231,11232,11233,11234,11235,11236,2348,11237,11238,2351,11239,11240,11241,11242,11243,2357,11244,2359,11245,11246,11247,2363,11248,11249,11250,11251,11252,11253,11254,11255,2372,11256,11257,11258,11259,11260,2378,11261,2380,11262,2382,11263,2384,11264,2386,11265,11266,11267,11268,11269,11270,11271,11272,11273,2396,11274],[11275,11276],[11277],[11278],[11279,11280,11281],[11282],[11283],[11284],[11285],[11286],[11287],[11288],[11289],[11290],[11291],[11292],[11293],[11294],[11295],[11296],[11297],[11298],[11299],[11300],[11301],[11302],[11303],[11304],[11305],[11306],[11307],[11308],[11309],[11310]]},{"type":"MultiLineString","arcs":[[9438],[9439,9440,-452,9441,-450,9442,9443,-447,9444,9445,9446,9447,-442,9448,-440,9449,-438,9450,-436,9451,-434,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,-415,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,-403,9481,9482,-400,9483,-398,9484,9485,-395,9486,9487,9488,-391,9489,9490,9491,9492,9493,9494,9495,-383,9496,9497,9498,9499,-378,9500,-376,9501,-374,9502,9503,9504,9505,9506],[9507],[9508,365,9509,367],[9510,9511,336,9512,338,9513,340,9514,9515,343,9516,345,9517,9518,348,9519,9520,9521,352,9522,354,9523,9524,9525,358,9526,9527,9528,9529,9530,9531],[9532,1130,9533,1132,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,473,9549,475,9550,477,9551,479,9552,9553,9554,9555,9556,9557,9558,9559,488,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,504,9575,506,9576,9577,9578,9579,9580,9581,9582,514,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,535,9603,9604,538,9605,9606,9607,9608,9609,9610,9611,9612,547,9613,549,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,560,9624,562,9625,9626,565,9627,9628,9629,9630,9631,9632,9633,9634,9635,575,9636,577,9637,9638,9639,9640,582,9641,9642,9643,586,9644,9645,9646,9647,9648,9649,9650,9651,595,9652,597,9653,9654,9655,9656,602,9657,9658,605,9659,9660,9661,9662,9663,611,9664,613,9665,615,9666,9667,9668,9669,9670,621,9671,9672,9673,9674,9675,9676,628,9677,9678,631,9679,633,9680,9681,9682,9683,9684],[9685,9686,9687,1123,9688,1125,9689,9690,9691],[9692],[9693,744,9694,9695,747,9696,749,9697,751,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,762,9708,9709,765,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,781,9725,9726,784,9727,9728,787,9729,9730,9731,9732,9733,9734,794,9735,796,9736,798,9737,9738,9739,9740,9741,9742,9743,806,9744,808,9745,9746,9747,812,9748,9749,9750,9751,9752,818,9753,9754,9755,9756,823,9757,9758,9759,9760,9761,9762,830,9763,9764,9765,9766,9767,9768,837,9769,9770,840,9771,9772,9773,844,9774,9775,9776,9777,9778,9779,9780,852,9781,854,9782,856,9783,9784,9785,860,9786,9787,9788,9789,9790,866,9791,9792,9793,9794,9795,872,9796,9797,9798,9799,9800,9801,879,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,900,9822,902,9823,9824,9825],[9826],[9827,-466,9828,-464,9829,9830,9831,9832,-459,9833,9834,9835,9836],[9837],[9838],[9839,908,9840,910,9841,9842,9843,914,9844,9845,9846,9847,9848,920,9849,922,9850,924,9851,9852,9853,9854,9855,930,9856,932,9857,9858,935,9859,9860,9861,9862,940,9863,9864,943,9865,945,9866,9867,9868,949,9869,9870,9871,9872,9873,9874,9875,9876,9877],[9878],[9879],[9880,9881,9882,1066,9883,1068,9884,9885,9886,9887,9888,9889,1075,9890,9891,1078,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,1090,9903,1092,9904,9905,9906,9907,9908,1098,9909,9910,9911,1102,9912,9913,9914,1106,9915,9916,1109,9917,9918,9919,9920,9921,1115,9922,9923,9924,1119,9925],[9926,9927,1796,9928,9929,9930,9931,9932,1802,9933,9934,9935,9936,1807,9937,9938,9939,9940,9941,9942,9943,1815,9944,1817,9945,9946,1820,9947,9948,9949,1824,9950,1826,9951,9952,9953,9954,9955,9956,9957,9958,9959,1836,9960,1838,9961,1840,9962,9963,9964,9965,689,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,703,9979,9980,9981,9982,9983,9984,9985,711,9986,9987,9988,9989,9990,9991,9992,719,9993,721,9994,9995,9996,9997,9998,9999,10000,10001,730,10002,10003,10004,10005,10006,736,10007,10008,10009],[10010],[10011],[10012,10013,1035,10014,10015,1038,10016,1040,10017,1042,10018,10019,1045,10020,10021,1048,10022,10023,10024,10025,10026,10027,10028,10029,10030,1058,10031,10032,1061,10033,10034],[10035],[10036],[10037],[1015,10038,10039,1018,10040,10041,10042,10043,10044,1024,10045,1026,10046,1028,10047,1030,10048,1032,10049],[10050],[10051],[10052],[10053],[10054],[10055,10056,2454,10057,10058,10059,10060,10061,10062,10063,10064,10065,2464,10066,10067,10068,10069,2469,10070,10071,10072,2473,10073,2475,10074,2477,10075,2479,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,2490,10086,2492,10087,10088,2495,10089,10090,10091,10092,10093,2501,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,2524,10116,2526,10117,10118,10119,10120,2531,10121,2533,10122,10123,2536,10124,10125,10126,2540,10127,2542,10128,10129,10130,2546,10131,2548,10132,10133,2551,10134,2553,10135,10136,10137,10138,2558,10139,2560,10140,10141,2563,10142,10143,10144,10145,10146,10147,10148,10149,2572,10150,10151,10152,10153,2577,10154,10155,2580,10156,10157,2583,10158,2585,10159,2587,10160,2589,10161,10162,10163,10164,10165,10166,10167,10168,2598,10169,2600,10170,2602,10171,10172,10173,10174,2607,10175,2609,10176,10177,10178,2613,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,2625,10190,2627,10191,10192,10193,2631,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,2643,10205,10206,2646,10207,10208,10209,2650,10210,10211,2653,10212,10213,10214,10215,10216,2659,10217,10218,10219,10220,10221,10222,10223],[10224],[10225],[10226],[10227,10228,10229,10230,10231,10232,10233,10234,969,10235,10236,972,10237,974,10238,10239,10240,10241,10242,980,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,991,10253,10254,10255,10256,996,10257,998,10258,1000,10259,1002,10260,10261,10262,10263,10264,1008,10265,10266,10267,1012,10268],[10269],[10270,10271,2112],[10272,10273,2399,10274,10275,10276,10277,10278,10279,2406,10280,10281,2409,10282,10283,10284,10285,2414,10286,10287,10288,10289,10290,10291,10292,10293,2423,10294,2425,10295,10296,2428,10297,10298,2431,10299,10300,10301,10302,10303,2437,10304,10305,2440,10306,10307,2443,10308,10309,2446,10310,10311,10312,10313,10314,10315],[10316],[10317],[10318,10319,10320,10321,10322,1206,10323,1208,10324,10325,10326,10327,10328,10329,10330,10331,1217,10332,10333,10334,1221,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,1235,10348,1237,10349,10350,1240,10351,10352,10353,10354,1245,10355,10356,10357,10358,1250,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,1262,10370,10371,1265,10372,1267,10373,1269,10374,10375,10376,10377,10378,10379,10380,10381,1278,10382,1280,10383,10384,10385,10386,1285,10387,10388,1288,10389,10390,10391,10392,10393,10394,10395,10396,1297,10397,10398,10399,10400,1302,10401,10402,10403,10404,1307,10405,10406,10407,1311,10408,10409,1314,10410,10411,10412,1318,10413,1320,10414,1322,10415,1324,10416,10417,10418,10419,1329,10420,10421,10422,10423,10424,10425,10426,1337,10427,10428,10429,10430,1342,10431,10432,10433,10434,10435,1348,10436,10437,10438,1352,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,1364,10450,10451,10452,10453,10454,10455,1371,10456,10457,10458,1375,10459,10460,1378,10461,10462,10463,10464,1383,10465,10466,10467,1387,10468,1389,10469,10470,1392,10471,10472,10473,10474,1397,10475,1399,10476,10477,10478,10479,1404,10480,10481,1407,10482],[10483,10484,10485,10486,10487,10488,10489,10490,10491,1582,10492,10493,10494,10495,10496,10497,10498,10499,1591,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,1604,10512,1606,10513,10514,10515,10516,10517,1612,10518,10519,10520,1616,10521,1618,10522,1620,10523,1622,10524,1624,10525,10526,1627,10527,10528,10529,1631,10530,10531,10532,1635,10533,10534,10535,1639,10536,10537,1642,10538,1644,10539,1646,10540,10541,1649,10542,10543,10544,1653,10545,10546,10547,1657,10548,10549,10550,10551,10552,10553,10554,10555,10556,1667,10557,10558,1670,10559,10560,1673,10561,10562,10563,10564,1678,10565,10566,10567,10568,10569,10570,10571,1686,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,1720,10605,10606,1723,10607,1725,10608,1727,10609,10610,10611,10612,1732,10613,10614,10615,10616,10617,10618,10619,1740,10620,10621,1743,10622,10623,1746,10624,1748,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,1761,10637,10638,1764,10639,10640,10641,1768,10642,10643,10644,10645,10646,1774,10647,10648,10649,10650,1779,10651,10652,10653,10654,10655,1785,10656,10657,10658,1789,10659,1791,10660,10661,10662],[10663],[10664],[10665],[10666],[10667],[10668,2034,10669,10670,10671,2038,10672,2040,10673,10674,2043,10675,10676,2046,10677,10678,10679,10680,10681,2052,10682,10683,2055,10684,10685,2058,10686,2060,10687,10688,2063,10689,10690,10691,2067,10692,10693,10694,2071,10695,10696,10697,10698,2076,10699,10700,10701,10702,10703,2082,10704,2084,10705,10706,2087,10707,10708,2090,10709,10710,2093,10711,10712,10713,10714,2098,10715,10716,2101,10717,10718,2104,10719,2106,10720,10721,2109,10722],[10723,10724,10725,10726,10727],[10728,1410,10729,10730,1413,10731,1415,10732,10733,10734,10735,1420,10736,10737,10738,10739,10740,1426,10741,10742,10743,10744,10745,1432,10746,10747,1435,10748,10749,1438,10750,10751,1441,10752,10753,10754,10755,1446,10756,1448,10757,10758,10759,10760,10761,1454,10762,10763,10764,10765,10766,10767,10768,10769,1463,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,1479,10785,10786,10787,10788,1484,10789,1486,10790,1488,10791,10792,1491,10793,1493,10794,10795,1496,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,1511,10810,1513,10811,10812,1516,10813,1518,10814,1520,10815,1522,10816,1524,10817,10818,10819,10820,10821,10822,1531,10823,10824,10825,1535,10826,10827,10828,1539,10829,10830,1542,10831,1544,10832,10833,10834,10835,1549,10836,1551,10837,10838,1554,10839,10840,1557,10841,1559,10842,10843,10844,1563,10845,10846,10847,10848,10849,10850,1570,10851,10852,10853],[10854],[10855],[10856],[10857],[10858,10859,10860,10861,1925,10862,1927,10863,10864,1930,10865,10866,10867,10868,10869,1936,10870,10871,10872,10873,10874,10875,1943,10876,1945,10877,1947,10878,1949,10879,1951,10880,10881,10882,10883,10884,10885,10886,10887,10888,1961,10889,1963,10890,10891,10892,10893,10894,1969,10895,1971,10896,1973,10897,1975,10898,1977,10899,10900,1980,10901,10902,10903,10904,1985,10905,10906,1988,10907,10908,1991,10909,1993,10910,10911,10912,1997,10913,1999,10914,10915,2002,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,2016,10929,10930,2019,10931,10932,10933,2023,10934,2025,10935,2027,10936,10937],[10938,10939,10940,1845,10941,10942,10943,10944,1850,10945,10946,1853,10947,1855,10948,10949,10950,10951,10952,1861,10953,10954,10955,10956,10957],[10958],[10959],[10960],[10961,1149,10962,1151,10963,10964,10965,10966,10967,10968,10969,10970,1160,10971,10972,1163,10973,1165,10974,10975,1168,10976,10977,10978,10979,10980,10981,10982,10983,1177,10984,1179,10985,1181,10986,10987,1184,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,1195,10998,10999,11000,11001,1200,11002],[11003],[11004],[11005],[11006,2114,11007,11008,11009,11010,11011,11012,11013,11014,2123,11015,11016,11017,11018,11019,11020,2130,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,2141,11031,11032,11033,11034,11035,2147,11036,2149,11037,2151,11038,11039,11040,11041,11042,11043,11044,11045,11046,2161,11047,2163,11048,2165,11049,2167,11050,11051,11052,11053,2172,11054,11055,11056,2176,11057,11058,11059,11060,11061,11062,11063,11064,11065,2186,11066,2188,11067,11068,2191,11069,11070,11071,11072,11073,11074,2198,11075,11076,11077,11078,2203,11079,2205,11080,11081,11082,2209,11083,2211,11084,11085,11086,11087,2216,11088,11089,11090,11091,11092,2222,11093,2224,11094,11095,2227,11096,11097,2230,11098,11099,2233,11100,11101,11102,11103,11104,2239,11105,11106,2242,11107,11108,11109,11110,11111,2248,11112,11113,2251,11114,11115,11116],[11117,11118,11119,11120,11121,11122,11123,11124,11125,1878,11126,11127,11128,11129,1883,11130,1885,11131,11132,1888,11133,11134,11135,11136,1893,11137,11138,11139,11140,1898,11141,11142,11143,11144,1903,11145,11146,1906,11147,11148,11149,1910,11150,11151,11152,11153,11154,1916,11155,11156,11157,11158,11159],[11160],[11161,11162],[11163],[11164],[11165,11166,11167,11168,11169,2259,11170,2261,11171,11172,2264,11173,11174,11175,11176,11177,2270,11178,2272,11179,11180,11181,2276,11182,2278,11183,11184,11185,2282,11186,11187,11188,2286,11189,2288,11190,11191,11192,11193,11194,11195,11196,11197,11198,2298,11199,2300,11200,11201,2303,11202,2305,11203,11204,2308,11205,11206,11207,11208,2313,11209,11210,11211,11212,2318,11213,11214,11215,11216,11217,11218,2325,11219,2327,11220,11221,11222,11223,2332,11224,11225,11226,11227,2337,11228,11229,2340,11230,11231,11232,11233,11234,11235,11236,2348,11237,11238,2351,11239,11240,11241,11242,11243,2357,11244,2359,11245,11246,11247,2363,11248,11249,11250,11251,11252,11253,11254,11255,2372,11256,11257,11258,11259,11260,2378,11261,2380,11262,2382,11263,2384,11264,2386,11265,11266,11267,11268,11269,11270,11271,11272,11273,2396,11274],[11275,11276],[11277],[11278],[11279,11280,11281],[11282],[11283],[11284],[11285],[11286],[11287],[11288],[11289],[11290],[11291],[11292],[11293],[11294],[11295],[11296],[11297],[11298],[11299],[11300],[11301],[11302],[11303],[11304],[11305],[11306],[11307],[11308],[11309],[11310]]},{"type":"MultiLineString","arcs":[[11311],[11312],[11313],[10960],[11314],[11315],[11316],[11317],[11318],[11319,11162,-11165,-11277,11320],[11321],[11322],[11323],[11324,11280],[11325],[11326],[11327]]},{"type":"MultiLineString","arcs":[[9693,744,9694,9695,747,9696,749,9697,751,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,762,9708,9709,765,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,781,9725,9726,784,9727,9728,787,9729,9730,9731,9732,9733,9734,794,9735,796,9736,798,9737,9738,9739,9740,9741,9742,9743,806,9744,808,9745,9746,9747,812,9748,9749,9750,9751,9752,818,9753,9754,9755,9756,823,9757,9758,9759,9760,9761,9762,830,9763,9764,9765,9766,9767,9768,837,9769,9770,840,9771,9772,9773,844,9774,9775,9776,9777,9778,9779,9780,852,9781,854,9782,856,9783,9784,9785,860,9786,9787,9788,9789,9790,866,9791,9792,9793,9794,9795,872,9796,9797,9798,9799,9800,9801,879,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,900,9822,902,9823,9824,9825],[9839,908,9840,910,9841,9842,9843,914,9844,9845,9846,9847,9848,920,9849,922,9850,924,9851,9852,9853,9854,9855,930,9856,932,9857,9858,935,9859,9860,9861,9862,940,9863,9864,943,9865,945,9866,9867,9868,949,9869,9870,9871,9872,9873,9874,9875,9876,9877],[9878],[9926,9927,1796,9928,9929,9930,9931,9932,1802,9933,9934,9935,9936,1807,9937,9938,9939,9940,9941,9942,9943,1815,9944,1817,9945,9946,1820,9947,9948,9949,1824,9950,1826,9951,9952,9953,9954,9955,9956,9957,9958,9959,1836,9960,1838,9961,1840,9962,9963,9964,9965,689,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,703,9979,9980,9981,9982,9983,9984,9985,711,9986,9987,9988,9989,9990,9991,9992,719,9993,721,9994,9995,9996,9997,9998,9999,10000,10001,730,10002,10003,10004,10005,10006,736,10007,10008,10009],[10010],[10037],[10318,10319,10320,10321,10322,1206,10323,1208,10324,10325,10326,10327,10328,10329,10330,10331,1217,10332,10333,10334,1221,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,1235,10348,1237,10349,10350,1240,10351,10352,10353,10354,1245,10355,10356,10357,10358,1250,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,1262,10370,10371,1265,10372,1267,10373,1269,10374,10375,10376,10377,10378,10379,10380,10381,1278,10382,1280,10383,10384,10385,10386,1285,10387,10388,1288,10389,10390,10391,10392,10393,10394,10395,10396,1297,10397,10398,10399,10400,1302,10401,10402,10403,10404,1307,10405,10406,10407,1311,10408,10409,1314,10410,10411,10412,1318,10413,1320,10414,1322,10415,1324,10416,10417,10418,10419,1329,10420,10421,10422,10423,10424,10425,10426,1337,10427,10428,10429,10430,1342,10431,10432,10433,10434,10435,1348,10436,10437,10438,1352,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,1364,10450,10451,10452,10453,10454,10455,1371,10456,10457,10458,1375,10459,10460,1378,10461,10462,10463,10464,1383,10465,10466,10467,1387,10468,1389,10469,10470,1392,10471,10472,10473,10474,1397,10475,1399,10476,10477,10478,10479,1404,10480,10481,1407,10482],[10483,10484,10485,10486,10487,10488,10489,10490,10491,1582,10492,10493,10494,10495,10496,10497,10498,10499,1591,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,1604,10512,1606,10513,10514,10515,10516,10517,1612,10518,10519,10520,1616,10521,1618,10522,1620,10523,1622,10524,1624,10525,10526,1627,10527,10528,10529,1631,10530,10531,10532,1635,10533,10534,10535,1639,10536,10537,1642,10538,1644,10539,1646,10540,10541,1649,10542,10543,10544,1653,10545,10546,10547,1657,10548,10549,10550,10551,10552,10553,10554,10555,10556,1667,10557,10558,1670,10559,10560,1673,10561,10562,10563,10564,1678,10565,10566,10567,10568,10569,10570,10571,1686,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,1720,10605,10606,1723,10607,1725,10608,1727,10609,10610,10611,10612,1732,10613,10614,10615,10616,10617,10618,10619,1740,10620,10621,1743,10622,10623,1746,10624,1748,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,1761,10637,10638,1764,10639,10640,10641,1768,10642,10643,10644,10645,10646,1774,10647,10648,10649,10650,1779,10651,10652,10653,10654,10655,1785,10656,10657,10658,1789,10659,1791,10660,10661,10662],[10664],[10667],[10728,1410,10729,10730,1413,10731,1415,10732,10733,10734,10735,1420,10736,10737,10738,10739,10740,1426,10741,10742,10743,10744,10745,1432,10746,10747,1435,10748,10749,1438,10750,10751,1441,10752,10753,10754,10755,1446,10756,1448,10757,10758,10759,10760,10761,1454,10762,10763,10764,10765,10766,10767,10768,10769,1463,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,1479,10785,10786,10787,10788,1484,10789,1486,10790,1488,10791,10792,1491,10793,1493,10794,10795,1496,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,1511,10810,1513,10811,10812,1516,10813,1518,10814,1520,10815,1522,10816,1524,10817,10818,10819,10820,10821,10822,1531,10823,10824,10825,1535,10826,10827,10828,1539,10829,10830,1542,10831,1544,10832,10833,10834,10835,1549,10836,1551,10837,10838,1554,10839,10840,1557,10841,1559,10842,10843,10844,1563,10845,10846,10847,10848,10849,10850,1570,10851,10852,10853],[10938,10939,10940,1845,10941,10942,10943,10944,1850,10945,10946,1853,10947,1855,10948,10949,10950,10951,10952,1861,10953,10954,10955,10956,10957],[10960],[10961,1149,10962,1151,10963,10964,10965,10966,10967,10968,10969,10970,1160,10971,10972,1163,10973,1165,10974,10975,1168,10976,10977,10978,10979,10980,10981,10982,10983,1177,10984,1179,10985,1181,10986,10987,1184,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,1195,10998,10999,11000,11001,1200,11002],[11004],[11005],[11160],[11161,11162],[11164],[11275,11276],[11279,11280,11281],[11284],[11286],[11287],[11288],[11299,11328,11329,11006,2114,11007,11008,11009,11010,11011,11012,11013,11014,2123,11015,11016,11017,11018,11019,11020,2130,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,2141,11031,11032,11033,11034,11035,2147,11036,2149,11037,2151,11038,11039,11040,11041,11042,11043,11044,11045,11046,2161,11047,2163,11048,2165,11049,2167,11050,11051,11052,11053,2172,11054,11055,11056,2176,11057,11058,11059,11060,11061,11062,11063,11064,11065,2186,11066,2188,11067,11068,2191,11069,11070,11071,11072,11073,11074,2198,11075,11076,11077,11078,2203,11079,2205,11080,11081,11082,2209,11083,2211,11084,11085,11086,11087,2216,11088,11089,11090,11091,11092,2222,11093,2224,11094,11095,2227,11096,11097,2230,11098,11099,2233,11100,11101,11102,11103,11104,2239,11105,11106,2242,11107,11108,11109,11110,11111,2248,11112,11113,2251,11114,11115,11116],[11301],[11302],[11303],[11304],[11305],[11307],[11309]]},{"type":"MultiLineString","arcs":[[9438],[9439,9440,-452,9441,-450,9442,9443,-447,9444,9445,9446,9447,-442,9448,-440,9449,-438,9450,-436,9451,-434,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,-415,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,-403,9481,9482,-400,9483,-398,9484,9485,-395,9486,9487,9488,-391,9489,9490,9491,9492,9493,9494,9495,-383,9496,9497,9498,9499,-378,9500,-376,9501,-374,9502,9503,9504,9505,9506],[9507],[9508,365,9509,367],[9510,9511,336,9512,338,9513,340,9514,9515,343,9516,345,9517,9518,348,9519,9520,9521,352,9522,354,9523,9524,9525,358,9526,9527,9528,9529,9530,9531],[9532,1130,9533,1132,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,473,9549,475,9550,477,9551,479,9552,9553,9554,9555,9556,9557,9558,9559,488,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,504,9575,506,9576,9577,9578,9579,9580,9581,9582,514,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,535,9603,9604,538,9605,9606,9607,9608,9609,9610,9611,9612,547,9613,549,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,560,9624,562,9625,9626,565,9627,9628,9629,9630,9631,9632,9633,9634,9635,575,9636,577,9637,9638,9639,9640,582,9641,9642,9643,586,9644,9645,9646,9647,9648,9649,9650,9651,595,9652,597,9653,9654,9655,9656,602,9657,9658,605,9659,9660,9661,9662,9663,611,9664,613,9665,615,9666,9667,9668,9669,9670,621,9671,9672,9673,9674,9675,9676,628,9677,9678,631,9679,633,9680,9681,9682,9683,9684],[9685,9686,9687,1123,9688,1125,9689,9690,9691],[9692],[9693,744,9694,9695,747,9696,749,9697,751,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,762,9708,9709,765,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,781,9725,9726,784,9727,9728,787,9729,9730,9731,9732,9733,9734,794,9735,796,9736,798,9737,9738,9739,9740,9741,9742,9743,806,9744,808,9745,9746,9747,812,9748,9749,9750,9751,9752,818,9753,9754,9755,9756,823,9757,9758,9759,9760,9761,9762,830,9763,9764,9765,9766,9767,9768,837,9769,9770,840,9771,9772,9773,844,9774,9775,9776,9777,9778,9779,9780,852,9781,854,9782,856,9783,9784,9785,860,9786,9787,9788,9789,9790,866,9791,9792,9793,9794,9795,872,9796,9797,9798,9799,9800,9801,879,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,900,9822,902,9823,9824,9825],[9826],[9827,-466,9828,-464,9829,9830,9831,9832,-459,9833,9834,9835,9836],[9837],[9838],[9839,908,9840,910,9841,9842,9843,914,9844,9845,9846,9847,9848,920,9849,922,9850,924,9851,9852,9853,9854,9855,930,9856,932,9857,9858,935,9859,9860,9861,9862,940,9863,9864,943,9865,945,9866,9867,9868,949,9869,9870,9871,9872,9873,9874,9875,9876,9877],[9878],[9879],[9880,9881,9882,1066,9883,1068,9884,9885,9886,9887,9888,9889,1075,9890,9891,1078,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,1090,9903,1092,9904,9905,9906,9907,9908,1098,9909,9910,9911,1102,9912,9913,9914,1106,9915,9916,1109,9917,9918,9919,9920,9921,1115,9922,9923,9924,1119,9925],[9926,9927,1796,9928,9929,9930,9931,9932,1802,9933,9934,9935,9936,1807,9937,9938,9939,9940,9941,9942,9943,1815,9944,1817,9945,9946,1820,9947,9948,9949,1824,9950,1826,9951,9952,9953,9954,9955,9956,9957,9958,9959,1836,9960,1838,9961,1840,9962,9963,9964,9965,689,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,703,9979,9980,9981,9982,9983,9984,9985,711,9986,9987,9988,9989,9990,9991,9992,719,9993,721,9994,9995,9996,9997,9998,9999,10000,10001,730,10002,10003,10004,10005,10006,736,10007,10008,10009],[10010],[10011],[10012,10013,1035,10014,10015,1038,10016,1040,10017,1042,10018,10019,1045,10020,10021,1048,10022,10023,10024,10025,10026,10027,10028,10029,10030,1058,10031,10032,1061,10033,10034],[10035],[10036],[10037],[1015,10038,10039,1018,10040,10041,10042,10043,10044,1024,10045,1026,10046,1028,10047,1030,10048,1032,10049],[10050],[10051],[10052],[10053],[10054],[10055,10056,2454,10057,10058,10059,10060,10061,10062,10063,10064,10065,2464,10066,10067,10068,10069,2469,10070,10071,10072,2473,10073,2475,10074,2477,10075,2479,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,2490,10086,2492,10087,10088,2495,10089,10090,10091,10092,10093,2501,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,2524,10116,2526,10117,10118,10119,10120,2531,10121,2533,10122,10123,2536,10124,10125,10126,2540,10127,2542,10128,10129,10130,2546,10131,2548,10132,10133,2551,10134,2553,10135,10136,10137,10138,2558,10139,2560,10140,10141,2563,10142,10143,10144,10145,10146,10147,10148,10149,2572,10150,10151,10152,10153,2577,10154,10155,2580,10156,10157,2583,10158,2585,10159,2587,10160,2589,10161,10162,10163,10164,10165,10166,10167,10168,2598,10169,2600,10170,2602,10171,10172,10173,10174,2607,10175,2609,10176,10177,10178,2613,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,2625,10190,2627,10191,10192,10193,2631,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,2643,10205,10206,2646,10207,10208,10209,2650,10210,10211,2653,10212,10213,10214,10215,10216,2659,10217,10218,10219,10220,10221,10222,10223],[10224],[10225],[10226,10317],[10227,10228,10229,10230,10231,10232,10233,10234,969,10235,10236,972,10237,974,10238,10239,10240,10241,10242,980,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,991,10253,10254,10255,10256,996,10257,998,10258,1000,10259,1002,10260,10261,10262,10263,10264,1008,10265,10266,10267,1012,10268],[10269],[10961,1149,10962,1151,10963,10964,10965,10966,10967,10968,10969,10970,1160,10971,10972,1163,10973,1165,10974,10975,1168,10976,10977,10978,10979,10980,10981,10982,10983,1177,10984,1179,10985,1181,10986,10987,1184,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,1195,10998,10999,11000,11001,1200,11002,10318,10319,10320,10321,10322,1206,10323,1208,10324,10325,10326,10327,10328,10329,10330,10331,1217,10332,10333,10334,1221,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,1235,10348,1237,10349,10350,1240,10351,10352,10353,10354,1245,10355,10356,10357,10358,1250,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,1262,10370,10371,1265,10372,1267,10373,1269,10374,10375,10376,10377,10378,10379,10380,10381,1278,10382,1280,10383,10384,10385,10386,1285,10387,10388,1288,10389,10390,10391,10392,10393,10394,10395,10396,1297,10397,10398,10399,10400,1302,10401,10402,10403,10404,1307,10405,10406,10407,1311,10408,10409,1314,10410,10411,10412,1318,10413,1320,10414,1322,10415,1324,10416,10417,10418,10419,1329,10420,10421,10422,10423,10424,10425,10426,1337,10427,10428,10429,10430,1342,10431,10432,10433,10434,10435,1348,10436,10437,10438,1352,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,1364,10450,10451,10452,10453,10454,10455,1371,10456,10457,10458,1375,10459,10460,1378,10461,10462,10463,10464,1383,10465,10466,10467,1387,10468,1389,10469,10470,1392,10471,10472,10473,10474,1397,10475,1399,10476,10477,10478,10479,1404,10480,10481,1407,10482],[11006,2114,11007,11008,11009,11010,11011,11012,11013,11014,2123,11015,11016,11017,11018,11019,11020,2130,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,2141,11031,11032,11033,11034,11035,2147,11036,2149,11037,2151,11038,11039,11040,11041,11042,11043,11044,11045,11046,2161,11047,2163,11048,2165,11049,2167,11050,11051,11052,11053,2172,11054,11055,11056,2176,11057,11058,11059,11060,11061,11062,11063,11064,11065,2186,11066,2188,11067,11068,2191,11069,11070,11071,11072,11073,11074,2198,11075,11076,11077,11078,2203,11079,2205,11080,11081,11082,2209,11083,2211,11084,11085,11086,11087,2216,11088,11089,11090,11091,11092,2222,11093,2224,11094,11095,2227,11096,11097,2230,11098,11099,2233,11100,11101,11102,11103,11104,2239,11105,11106,2242,11107,11108,11109,11110,11111,2248,11112,11113,2251,11114,11115,11116,10728,1410,10729,10730,1413,10731,1415,10732,10733,10734,10735,1420,10736,10737,10738,10739,10740,1426,10741,10742,10743,10744,10745,1432,10746,10747,1435,10748,10749,1438,10750,10751,1441,10752,10753,10754,10755,1446,10756,1448,10757,10758,10759,10760,10761,1454,10762,10763,10764,10765,10766,10767,10768,10769,1463,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,1479,10785,10786,10787,10788,1484,10789,1486,10790,1488,10791,10792,1491,10793,1493,10794,10795,1496,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,1511,10810,1513,10811,10812,1516,10813,1518,10814,1520,10815,1522,10816,1524,10817,10818,10819,10820,10821,10822,1531,10823,10824,10825,1535,10826,10827,10828,1539,10829,10830,1542,10831,1544,10832,10833,10834,10835,1549,10836,1551,10837,10838,1554,10839,10840,1557,10841,1559,10842,10843,10844,1563,10845,10846,10847,10848,10849,10850,1570,10851,10852,10853,10483,10484,10485,10486,10487,10488,10489,10490,10491,1582,10492,10493,10494,10495,10496,10497,10498,10499,1591,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,1604,10512,1606,10513,10514,10515,10516,10517,1612,10518,10519,10520,1616,10521,1618,10522,1620,10523,1622,10524,1624,10525,10526,1627,10527,10528,10529,1631,10530,10531,10532,1635,10533,10534,10535,1639,10536,10537,1642,10538,1644,10539,1646,10540,10541,1649,10542,10543,10544,1653,10545,10546,10547,1657,10548,10549,10550,10551,10552,10553,10554,10555,10556,1667,10557,10558,1670,10559,10560,1673,10561,10562,10563,10564,1678,10565,10566,10567,10568,10569,10570,10571,1686,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,1720,10605,10606,1723,10607,1725,10608,1727,10609,10610,10611,10612,1732,10613,10614,10615,10616,10617,10618,10619,1740,10620,10621,1743,10622,10623,1746,10624,1748,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,1761,10637,10638,1764,10639,10640,10641,1768,10642,10643,10644,10645,10646,1774,10647,10648,10649,10650,1779,10651,10652,10653,10654,10655,1785,10656,10657,10658,1789,10659,1791,10660,10661,10662],[11117,11118,11119,11120,11121,11122,11123,11124,11125,1878,11126,11127,11128,11129,1883,11130,1885,11131,11132,1888,11133,11134,11135,11136,1893,11137,11138,11139,11140,1898,11141,11142,11143,11144,1903,11145,11146,1906,11147,11148,11149,1910,11150,11151,11152,11153,11154,1916,11155,11156,11157,11158,11159,10858,10859,10860,10861,1925,10862,1927,10863,10864,1930,10865,10866,10867,10868,10869,1936,10870,10871,10872,10873,10874,10875,1943,10876,1945,10877,1947,10878,1949,10879,1951,10880,10881,10882,10883,10884,10885,10886,10887,10888,1961,10889,1963,10890,10891,10892,10893,10894,1969,10895,1971,10896,1973,10897,1975,10898,1977,10899,10900,1980,10901,10902,10903,10904,1985,10905,10906,1988,10907,10908,1991,10909,1993,10910,10911,10912,1997,10913,1999,10914,10915,2002,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,2016,10929,10930,2019,10931,10932,10933,2023,10934,2025,10935,2027,10936,10937,10723,10724,10725,10726,10727,10668,2034,10669,10670,10671,2038,10672,2040,10673,10674,2043,10675,10676,2046,10677,10678,10679,10680,10681,2052,10682,10683,2055,10684,10685,2058,10686,2060,10687,10688,2063,10689,10690,10691,2067,10692,10693,10694,2071,10695,10696,10697,10698,2076,10699,10700,10701,10702,10703,2082,10704,2084,10705,10706,2087,10707,10708,2090,10709,10710,2093,10711,10712,10713,10714,2098,10715,10716,2101,10717,10718,2104,10719,2106,10720,10721,2109,10722,10270,10271,2112],[11166,11167,11168,11169,2259,11170,2261,11171,11172,2264,11173,11174,11175,11176,11177,2270,11178,2272,11179,11180,11181,2276,11182,2278,11183,11184,11185,2282,11186,11187,11188,2286,11189,2288,11190,11191,11192,11193,11194,11195,11196,11197,11198,2298,11199,2300,11200,11201,2303,11202,2305,11203,11204,2308,11205,11206,11207,11208,2313,11209,11210,11211,11212,2318,11213,11214,11215,11216,11217,11218,2325,11219,2327,11220,11221,11222,11223,2332,11224,11225,11226,11227,2337,11228,11229,2340,11230,11231,11232,11233,11234,11235,11236,2348,11237,11238,2351,11239,11240,11241,11242,11243,2357,11244,2359,11245,11246,11247,2363,11248,11249,11250,11251,11252,11253,11254,11255,2372,11256,11257,11258,11259,11260,2378,11261,2380,11262,2382,11263,2384,11264,2386,11265,11266,11267,11268,11269,11270,11271,11272,11273,2396,11274,10272,10273,2399,10274,10275,10276,10277,10278,10279,2406,10280,10281,2409,10282,10283,10284,10285,2414,10286,10287,10288,10289,10290,10291,10292,10293,2423,10294,2425,10295,10296,2428,10297,10298,2431,10299,10300,10301,10302,10303,2437,10304,10305,2440,10306,10307,2443,10308,10309,2446,10310,10311,10312,10313,10314,10315]]},{"type":"MultiLineString","arcs":[[9926,9927,1796,9928,9929,9930,9931,9932,1802,9933,9934,9935,9936,1807,9937,9938,9939,9940,9941,9942,9943,1815,9944,1817,9945,9946,1820,9947,9948,9949,1824,9950,1826,9951,9952,9953,9954,9955,9956,9957,9958,9959,1836,9960,1838,9961,1840,9962,9963,9964,9965,689,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,703,9979,9980,9981,9982,9983,9984,9985,711,9986,9987,9988,9989,9990,9991,9992,719,9993,721,9994,9995,9996,9997,9998,9999,10000,10001,730,10002,10003,10004,10005,10006,736,10007,10008,10009],[10010],[10483,10484,10485,10486,10487,10488,10489,10490,10491,1582,10492,10493,10494,10495,10496,10497,10498,10499,1591,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,1604,10512,1606,10513,10514,10515,10516,10517,1612,10518,10519,10520,1616,10521,1618,10522,1620,10523,1622,10524,1624,10525,10526,1627,10527,10528,10529,1631,10530,10531,10532,1635,10533,10534,10535,1639,10536,10537,1642,10538,1644,10539,1646,10540,10541,1649,10542,10543,10544,1653,10545,10546,10547,1657,10548,10549,10550,10551,10552,10553,10554,10555,10556,1667,10557,10558,1670,10559,10560,1673,10561,10562,10563,10564,1678,10565,10566,10567,10568,10569,10570,10571,1686,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,1720,10605,10606,1723,10607,1725,10608,1727,10609,10610,10611,10612,1732,10613,10614,10615,10616,10617,10618,10619,1740,10620,10621,1743,10622,10623,1746,10624,1748,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,1761,10637,10638,1764,10639,10640,10641,1768,10642,10643,10644,10645,10646,1774,10647,10648,10649,10650,1779,10651,10652,10653,10654,10655,1785,10656,10657,10658,1789,10659,1791,10660,10661,10662],[10664],[10728,1410,10729,10730,1413,10731,1415,10732,10733,10734,10735,1420,10736,10737,10738,10739,10740,1426,10741,10742,10743,10744,10745,1432,10746,10747,1435,10748,10749,1438,10750,10751,1441,10752,10753,10754,10755,1446,10756,1448,10757,10758,10759,10760,10761,1454,10762,10763,10764,10765,10766,10767,10768,10769,1463,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,1479,10785,10786,10787,10788,1484,10789,1486,10790,1488,10791,10792,1491,10793,1493,10794,10795,1496,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,1511,10810,1513,10811,10812,1516,10813,1518,10814,1520,10815,1522,10816,1524,10817,10818,10819,10820,10821,10822,1531,10823,10824,10825,1535,10826,10827,10828,1539,10829,10830,1542,10831,1544,10832,10833,10834,10835,1549,10836,1551,10837,10838,1554,10839,10840,1557,10841,1559,10842,10843,10844,1563,10845,10846,10847,10848,10849,10850,1570,10851,10852,10853],[10938,10939,10940,1845,10941,10942,10943,10944,1850,10945,10946,1853,10947,1855,10948,10949,10950,10951,10952,1861,10953,10954,10955,10956,10957],[10960],[11004],[11005],[11006,2114,11007,11008,11009,11010,11011,11012,11013,11014,2123,11015,11016,11017,11018,11019,11020,2130,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,2141,11031,11032,11033,11034,11035,2147,11036,2149,11037,2151,11038,11039,11040,11041,11042,11043,11044,11045,11046,2161,11047,2163,11048,2165,11049,2167,11050,11051,11052,11053,2172,11054,11055,11056,2176,11057,11058,11059,11060,11061,11062,11063,11064,11065,2186,11066,2188,11067,11068,2191,11069,11070,11071,11072,11073,11074,2198,11075,11076,11077,11078,2203,11079,2205,11080,11081,11082,2209,11083,2211,11084,11085,11086,11087,2216,11088,11089,11090,11091,11092,2222,11093,2224,11094,11095,2227,11096,11097,2230,11098,11099,2233,11100,11101,11102,11103,11104,2239,11105,11106,2242,11107,11108,11109,11110,11111,2248,11112,11113,2251,11114,11115,11116],[11160],[11161,11162],[11164],[11275,11276],[11279,11280,11281],[11284],[11286],[11287],[11304]]},{"type":"MultiLineString","arcs":[[9438],[9439,9440,-452,9441,-450,9442,9443,-447,9444,9445,9446,9447,-442,9448,-440,9449,-438,9450,-436,9451,-434,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,-415,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,-403,9481,9482,-400,9483,-398,9484,9485,-395,9486,9487,9488,-391,9489,9490,9491,9492,9493,9494,9495,-383,9496,9497,9498,9499,-378,9500,-376,9501,-374,9502,9503,9504,9505,9506],[9507],[9508,365,9509,367],[9510,9511,336,9512,338,9513,340,9514,9515,343,9516,345,9517,9518,348,9519,9520,9521,352,9522,354,9523,9524,9525,358,9526,9527,9528,9529,9530,9531],[9532,1130,9533,1132,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,473,9549,475,9550,477,9551,479,9552,9553,9554,9555,9556,9557,9558,9559,488,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,504,9575,506,9576,9577,9578,9579,9580,9581,9582,514,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,535,9603,9604,538,9605,9606,9607,9608,9609,9610,9611,9612,547,9613,549,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,560,9624,562,9625,9626,565,9627,9628,9629,9630,9631,9632,9633,9634,9635,575,9636,577,9637,9638,9639,9640,582,9641,9642,9643,586,9644,9645,9646,9647,9648,9649,9650,9651,595,9652,597,9653,9654,9655,9656,602,9657,9658,605,9659,9660,9661,9662,9663,611,9664,613,9665,615,9666,9667,9668,9669,9670,621,9671,9672,9673,9674,9675,9676,628,9677,9678,631,9679,633,9680,9681,9682,9683,9684],[9685,9686,9687,1123,9688,1125,9689,9690,9691],[9692],[9826],[9827,-466,9828,-464,9829,9830,9831,9832,-459,9833,9834,9835,9836],[9837],[9838],[9879],[9880,9881,9882,1066,9883,1068,9884,9885,9886,9887,9888,9889,1075,9890,9891,1078,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,1090,9903,1092,9904,9905,9906,9907,9908,1098,9909,9910,9911,1102,9912,9913,9914,1106,9915,9916,1109,9917,9918,9919,9920,9921,1115,9922,9923,9924,1119,9925],[9926,9927,1796,9928,9929,9930,9931,9932,1802,9933,9934,9935,9936,1807,9937,9938,9939,9940,9941,9942,9943,1815,9944,1817,9945,9946,1820,9947,9948,9949,1824,9950,1826,9951,9952,9953,9954,9955,9956,9957,9958,9959,1836,9960,1838,9961,1840,9962,9963,9964,9965,689,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,703,9979,9980,9981,9982,9983,9984,9985,711,9986,9987,9988,9989,9990,9991,9992,719,9993,721,9994,9995,9996,9997,9998,9999,10000,10001,730,10002,10003,10004,10005,10006,736,10007,10008,10009],[10010],[10011],[10012,10013,1035,10014,10015,1038,10016,1040,10017,1042,10018,10019,1045,10020,10021,1048,10022,10023,10024,10025,10026,10027,10028,10029,10030,1058,10031,10032,1061,10033,10034],[10035],[10036],[1015,10038,10039,1018,10040,10041,10042,10043,10044,1024,10045,1026,10046,1028,10047,1030,10048,1032,10049],[10050],[10051],[10052],[10053],[10054],[10055,10056,2454,10057,10058,10059,10060,10061,10062,10063,10064,10065,2464,10066,10067,10068,10069,2469,10070,10071,10072,2473,10073,2475,10074,2477,10075,2479,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,2490,10086,2492,10087,10088,2495,10089,10090,10091,10092,10093,2501,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,2524,10116,2526,10117,10118,10119,10120,2531,10121,2533,10122,10123,2536,10124,10125,10126,2540,10127,2542,10128,10129,10130,2546,10131,2548,10132,10133,2551,10134,2553,10135,10136,10137,10138,2558,10139,2560,10140,10141,2563,10142,10143,10144,10145,10146,10147,10148,10149,2572,10150,10151,10152,10153,2577,10154,10155,2580,10156,10157,2583,10158,2585,10159,2587,10160,2589,10161,10162,10163,10164,10165,10166,10167,10168,2598,10169,2600,10170,2602,10171,10172,10173,10174,2607,10175,2609,10176,10177,10178,2613,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,2625,10190,2627,10191,10192,10193,2631,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,2643,10205,10206,2646,10207,10208,10209,2650,10210,10211,2653,10212,10213,10214,10215,10216,2659,10217,10218,10219,10220,10221,10222,10223],[10224],[10225],[10226],[10227,10228,10229,10230,10231,10232,10233,10234,969,10235,10236,972,10237,974,10238,10239,10240,10241,10242,980,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,991,10253,10254,10255,10256,996,10257,998,10258,1000,10259,1002,10260,10261,10262,10263,10264,1008,10265,10266,10267,1012,10268],[10269],[10270,10271,2112],[10272,10273,2399,10274,10275,10276,10277,10278,10279,2406,10280,10281,2409,10282,10283,10284,10285,2414,10286,10287,10288,10289,10290,10291,10292,10293,2423,10294,2425,10295,10296,2428,10297,10298,2431,10299,10300,10301,10302,10303,2437,10304,10305,2440,10306,10307,2443,10308,10309,2446,10310,10311,10312,10313,10314,10315],[10316],[10317],[10483,10484,10485,10486,10487,10488,10489,10490,10491,1582,10492,10493,10494,10495,10496,10497,10498,10499,1591,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,1604,10512,1606,10513,10514,10515,10516,10517,1612,10518,10519,10520,1616,10521,1618,10522,1620,10523,1622,10524,1624,10525,10526,1627,10527,10528,10529,1631,10530,10531,10532,1635,10533,10534,10535,1639,10536,10537,1642,10538,1644,10539,1646,10540,10541,1649,10542,10543,10544,1653,10545,10546,10547,1657,10548,10549,10550,10551,10552,10553,10554,10555,10556,1667,10557,10558,1670,10559,10560,1673,10561,10562,10563,10564,1678,10565,10566,10567,10568,10569,10570,10571,1686,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,1720,10605,10606,1723,10607,1725,10608,1727,10609,10610,10611,10612,1732,10613,10614,10615,10616,10617,10618,10619,1740,10620,10621,1743,10622,10623,1746,10624,1748,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,1761,10637,10638,1764,10639,10640,10641,1768,10642,10643,10644,10645,10646,1774,10647,10648,10649,10650,1779,10651,10652,10653,10654,10655,1785,10656,10657,10658,1789,10659,1791,10660,10661,10662],[10663],[10664],[10665],[10666],[10668,2034,10669,10670,10671,2038,10672,2040,10673,10674,2043,10675,10676,2046,10677,10678,10679,10680,10681,2052,10682,10683,2055,10684,10685,2058,10686,2060,10687,10688,2063,10689,10690,10691,2067,10692,10693,10694,2071,10695,10696,10697,10698,2076,10699,10700,10701,10702,10703,2082,10704,2084,10705,10706,2087,10707,10708,2090,10709,10710,2093,10711,10712,10713,10714,2098,10715,10716,2101,10717,10718,2104,10719,2106,10720,10721,2109,10722],[10723,10724,10725,10726,10727],[10728,1410,10729,10730,1413,10731,1415,10732,10733,10734,10735,1420,10736,10737,10738,10739,10740,1426,10741,10742,10743,10744,10745,1432,10746,10747,1435,10748,10749,1438,10750,10751,1441,10752,10753,10754,10755,1446,10756,1448,10757,10758,10759,10760,10761,1454,10762,10763,10764,10765,10766,10767,10768,10769,1463,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,1479,10785,10786,10787,10788,1484,10789,1486,10790,1488,10791,10792,1491,10793,1493,10794,10795,1496,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,1511,10810,1513,10811,10812,1516,10813,1518,10814,1520,10815,1522,10816,1524,10817,10818,10819,10820,10821,10822,1531,10823,10824,10825,1535,10826,10827,10828,1539,10829,10830,1542,10831,1544,10832,10833,10834,10835,1549,10836,1551,10837,10838,1554,10839,10840,1557,10841,1559,10842,10843,10844,1563,10845,10846,10847,10848,10849,10850,1570,10851,10852,10853],[10854],[10855],[10856],[10857],[10858,10859,10860,10861,1925,10862,1927,10863,10864,1930,10865,10866,10867,10868,10869,1936,10870,10871,10872,10873,10874,10875,1943,10876,1945,10877,1947,10878,1949,10879,1951,10880,10881,10882,10883,10884,10885,10886,10887,10888,1961,10889,1963,10890,10891,10892,10893,10894,1969,10895,1971,10896,1973,10897,1975,10898,1977,10899,10900,1980,10901,10902,10903,10904,1985,10905,10906,1988,10907,10908,1991,10909,1993,10910,10911,10912,1997,10913,1999,10914,10915,2002,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,2016,10929,10930,2019,10931,10932,10933,2023,10934,2025,10935,2027,10936,10937],[10938,10939,10940,1845,10941,10942,10943,10944,1850,10945,10946,1853,10947,1855,10948,10949,10950,10951,10952,1861,10953,10954,10955,10956,10957],[10958],[10959],[10960],[11003],[11004],[11005],[11006,2114,11007,11008,11009,11010,11011,11012,11013,11014,2123,11015,11016,11017,11018,11019,11020,2130,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,2141,11031,11032,11033,11034,11035,2147,11036,2149,11037,2151,11038,11039,11040,11041,11042,11043,11044,11045,11046,2161,11047,2163,11048,2165,11049,2167,11050,11051,11052,11053,2172,11054,11055,11056,2176,11057,11058,11059,11060,11061,11062,11063,11064,11065,2186,11066,2188,11067,11068,2191,11069,11070,11071,11072,11073,11074,2198,11075,11076,11077,11078,2203,11079,2205,11080,11081,11082,2209,11083,2211,11084,11085,11086,11087,2216,11088,11089,11090,11091,11092,2222,11093,2224,11094,11095,2227,11096,11097,2230,11098,11099,2233,11100,11101,11102,11103,11104,2239,11105,11106,2242,11107,11108,11109,11110,11111,2248,11112,11113,2251,11114,11115,11116],[11117,11118,11119,11120,11121,11122,11123,11124,11125,1878,11126,11127,11128,11129,1883,11130,1885,11131,11132,1888,11133,11134,11135,11136,1893,11137,11138,11139,11140,1898,11141,11142,11143,11144,1903,11145,11146,1906,11147,11148,11149,1910,11150,11151,11152,11153,11154,1916,11155,11156,11157,11158,11159],[11160],[11161,11162],[11163],[11164],[11165,11166,11167,11168,11169,2259,11170,2261,11171,11172,2264,11173,11174,11175,11176,11177,2270,11178,2272,11179,11180,11181,2276,11182,2278,11183,11184,11185,2282,11186,11187,11188,2286,11189,2288,11190,11191,11192,11193,11194,11195,11196,11197,11198,2298,11199,2300,11200,11201,2303,11202,2305,11203,11204,2308,11205,11206,11207,11208,2313,11209,11210,11211,11212,2318,11213,11214,11215,11216,11217,11218,2325,11219,2327,11220,11221,11222,11223,2332,11224,11225,11226,11227,2337,11228,11229,2340,11230,11231,11232,11233,11234,11235,11236,2348,11237,11238,2351,11239,11240,11241,11242,11243,2357,11244,2359,11245,11246,11247,2363,11248,11249,11250,11251,11252,11253,11254,11255,2372,11256,11257,11258,11259,11260,2378,11261,2380,11262,2382,11263,2384,11264,2386,11265,11266,11267,11268,11269,11270,11271,11272,11273,2396,11274],[11275,11276],[11277],[11278],[11279,11280,11281],[11282],[11283],[11284],[11285],[11286],[11287],[11288],[11289],[11290],[11291],[11292],[11293],[11294],[11295],[11296],[11297],[11298],[11299],[11300],[11301],[11302],[11303],[11304],[11305],[11306],[11307],[11308],[11309],[11310]]},{"type":"MultiLineString","arcs":[[11330],[11331],[11332,11333],[11334],[11335],[11336],[11337],[11338],[11339],[11340],[11341],[11342],[11343],[11344],[11345],[11346],[11347],[11348],[11349],[11350],[11351],[11352],[11353],[11354],[11355],[11356],[11357],[11358],[11359],[11360],[11361],[11362],[11363],[11364],[11365],[11366],[11367],[11368],[11369],[11370],[11371],[11372],[11373],[11374],[11375],[11376],[11377],[11378],[11379],[11380],[11381],[11382],[11383],[11384],[11385],[11386],[11387],[11388],[11389],[11390],[11391],[11392],[11393],[11394],[11395],[11396],[11397],[11398],[11399],[11400],[11401],[11402],[11403],[11404],[11405],[11406],[11407],[11408],[11409],[11410],[11411]]},{"type":"MultiLineString","arcs":[[11412],[11413],[11414],[11415],[11416],[11417],[11418],[11419],[11420],[11421,11422],[11423],[11424],[11425],[11343],[11344],[11345],[11426],[11427],[11428],[11429],[11346],[11347],[11430],[11431],[11432],[11433],[11348],[11434],[11435],[11349],[11350],[11351],[11352],[11353],[11436],[11437],[11438],[11354],[11355],[11439],[11440],[11356],[11357],[11358],[11359],[11441],[11442],[11360],[11361],[11362],[11363],[11364],[11365],[11366],[11367],[11368],[11369],[11370],[11371],[11372],[11373],[11374],[11375],[11376],[11377],[11378],[11379],[11380],[11381],[11382],[11383],[11384],[11385],[11386],[11387],[11388],[11389],[11390],[11391],[11392],[11393],[11394],[11395],[11396],[11397],[11398],[11399],[11400],[11401],[11402],[11403],[11404],[11405],[11406],[11407],[11408],[11409],[11410],[11411]]},{"type":"MultiLineString","arcs":[[11421,11422],[11343],[11344],[11345],[11426],[11427],[11428],[11429],[11346],[11347],[11430],[11431],[11432],[11433],[11348],[11434],[11435],[11349],[11350],[11351],[11352],[11353],[11436],[11437],[11438],[11354],[11355],[11439],[11440],[11356],[11357],[11358],[11359],[11441],[11442],[11360],[11361],[11362],[11363],[11364],[11365],[11366],[11367],[11368],[11369],[11370],[11371],[11372],[11373],[11374],[11375],[11376],[11377],[11378],[11379],[11380],[11381],[11382],[11383],[11384],[11385],[11386],[11387],[11388],[11389],[11390],[11391],[11392],[11393],[11394],[11395],[11396],[11397],[11398],[11399],[11400],[11401],[11402],[11403],[11443],[11404],[11405],[11406],[11407],[11408],[11409],[11410],[11411]]},{"type":"MultiLineString","arcs":[[11330],[11331],[11332],[11334],[11335],[11333],[11421],[11337],[11338],[11339],[11340],[11341],[11422],[11342],[11426],[11427],[11428],[11429],[11430],[11431],[11432],[11433],[11348],[11434],[11435],[11349],[11436],[11437],[11438],[11354],[11355],[11356],[11357],[11358],[11359],[11360],[11361],[11362],[11363],[11364],[11365],[11366],[11367],[11368],[11369],[11370],[11371],[11372],[11373],[11374],[11375]]},{"type":"MultiLineString","arcs":[[11421,11422],[11426],[11427],[11428],[11429],[11430],[11431],[11432],[11433],[11348],[11434],[11435],[11349],[11436],[11437],[11438],[11354],[11355],[11439],[11440],[11356],[11357],[11358],[11359],[11441],[11442],[11360],[11361],[11362],[11363],[11364],[11365],[11366],[11367],[11368],[11369],[11370],[11371],[11372],[11373],[11374],[11375],[11376],[11377],[11378],[11379],[11380],[11381],[11382],[11383],[11384],[11385],[11386],[11387],[11388],[11389],[11390],[11391],[11392],[11393],[11394],[11395],[11396],[11397],[11398],[11399],[11400],[11401],[11402],[11403],[11404],[11405],[11406],[11407],[11408],[11409],[11410],[11411]]},{"type":"MultiLineString","arcs":[[11343],[11344],[11345],[11346],[11347],[11350],[11351],[11352],[11353]]},{"type":"MultiLineString","arcs":[[11421,11422],[11426],[11427],[11428],[11429],[11430],[11431],[11432],[11433],[11434],[11435],[11436],[11437],[11438]]},{"type":"MultiLineString","arcs":[[11444],[11445],[11446]]},{"type":"MultiLineString","arcs":[[11447],[11448]]},{"type":"MultiLineString","arcs":[[11449],[11450],[11451],[11452],[11453],[11454],[11455],[11456],[11457],[11458],[11459],[11460],[11461],[11462],[11463],[11464],[11465],[11466],[11467],[11468],[11469],[11470],[11471],[11472],[11473],[11474],[11475],[11476],[11477],[11478],[11479],[11480],[11481],[11482],[11483],[11484],[11485],[11486],[11487],[11488],[11489],[11490],[11491],[11492],[11493],[11494],[11495],[11496],[11497],[11498],[11499],[11500],[11501],[11502],[11503],[11504],[11505],[11506],[11507],[11508],[11509],[11510],[11511],[11512],[11513],[11514],[11515],[11516],[11517],[11518],[11519],[11520],[11521],[11522],[11523],[11524],[11525],[11526],[11527],[11528],[11529],[11530],[11531],[11532],[11533],[11534],[11535],[11536],[11537],[11538],[11539],[11540],[11541],[11542],[11543],[11544],[11545],[11546],[11547],[11548],[11549],[11550],[11551],[11552],[11553],[11554],[11555],[11556],[11557],[11558],[11559],[11560],[11561],[11562],[11563],[11564],[11565],[11566],[11567],[11568],[11569],[11570],[11571],[11572],[11573],[11574],[11575],[11576],[11577],[11578],[11579],[11580],[11581],[11582],[11583],[11584],[11585],[11586],[11587],[11588],[11589],[11590],[11591],[11592],[11593],[11594],[11595],[11596],[11597],[11598],[11599],[11600],[11601],[11602],[11603],[11604],[11605],[11606],[11607],[11608],[11609],[11610],[11611],[11612],[11613],[11614],[11615],[11616],[11617],[11618],[11619],[11620],[11621],[11622],[11623],[11624],[11625],[11626],[11627],[11628],[11629],[11630],[11631],[11632],[11633],[11634],[11635],[11636]]},{"type":"MultiLineString","arcs":[[11637],[11638],[11639],[11640],[11641],[11642],[11643],[11644],[11645]]},{"type":"MultiLineString","arcs":[[11646],[11647],[11648],[11649],[11650],[11651],[11652],[11653],[11654],[11655],[11656],[11657],[11658],[11659],[11660],[11661],[11662],[11663],[11664],[11665],[11666],[11667],[11668],[11669],[11670],[11671],[11672],[11673],[11674],[11675],[11676],[11677],[11678],[11679],[11680],[11681],[11682],[11683],[11684],[11685],[11686],[11687]]},{"type":"MultiLineString","arcs":[[11688],[11689],[11690],[11691],[11692],[11693],[11694],[11695],[11696],[11697],[11698],[11699],[11700],[11701],[11702],[11703],[11704],[11705],[11706],[11707],[11708],[11709],[11710],[11711],[11712],[11713],[11714],[11715],[11716],[11717],[11718],[11719],[11720],[11721],[11722],[11723],[11724],[11725],[11726],[11727],[11728],[11729],[11730],[11731],[11732],[11733],[11734],[11735],[11736],[11737],[11738],[11739],[11740],[11741],[11742],[11743],[11744],[11745],[11746],[11747],[11748],[11749],[11750],[11751],[11752],[11753],[11754],[11755],[11756],[11757],[11758],[11759],[11760],[11761],[11762],[11763],[11764],[11765],[11766],[11767],[11768],[11769],[11770],[11771],[11772],[11773],[11774],[11775],[11776],[11777],[11778],[11779],[11780],[11781],[11782],[11783],[11784],[11785],[11786],[11787],[11788],[11789],[11790],[11791],[11792],[11793],[11794],[11795],[11796],[11797],[11798],[11799],[11800],[11801],[11802],[11803],[11804],[11805],[11806],[11807],[11808],[11809],[11810],[11811],[11812],[11813],[11814],[11815],[11816],[11817],[11818],[11819],[11820],[11821],[11822],[11823]]},{"type":"MultiLineString","arcs":[[11824],[11825],[11826],[11827],[11828],[11829],[11830],[11831],[11832],[11833],[11834],[11835],[11836]]},{"type":"MultiLineString","arcs":[[11837],[11838],[11839],[11840],[11841],[11842],[11843]]},{"type":"MultiLineString","arcs":[[11844],[11845],[11846],[11847],[11848],[11849],[11850],[11851],[11852],[11853],[11854],[11855]]},{"type":"MultiLineString","arcs":[[11856],[11857],[11858],[11859],[11860],[11861],[11862]]},{"type":"LineString","arcs":[11863]},{"type":"MultiLineString","arcs":[[11856],[11857],[11858],[11859],[11860],[11861],[11862]]},{"type":"MultiLineString","arcs":[[11864],[11865],[11866],[11867],[11868],[11869],[11870],[11871],[11872],[11873],[11874],[11875],[11876],[11877],[11878],[11879],[11880],[11881],[11882],[11883],[11884],[11885],[11886],[11887],[11888],[11889],[11890],[11891],[11892],[11893],[11894],[11895],[11896],[11897],[11898],[11899],[11900],[11901],[11902],[11903],[11904],[11905],[11906],[11907],[11908],[11909],[11910],[11911],[11912],[11913],[11914],[11915],[11916],[11917],[11918],[11919],[11920],[11921],[11922],[11923],[11924],[11925],[11926],[11927],[11928],[11929],[11930],[11931],[11932],[11933],[11934],[11935],[11936],[11937],[11938],[11939],[11940],[11941],[11942],[11943],[11944],[11945],[11946],[11947],[11948],[11949],[11950],[11951],[11952],[11953],[11954],[11955,11956,11957,88],[11958],[11959],[11960,11961,11962,11963,11964,11965,11966],[11967,11968,11969],[11970],[11971],[11972],[11973],[11974],[11975],[11976],[11977,11978],[11979],[11980,11981]]},{"type":"MultiLineString","arcs":[[11873],[11874],[11875],[11876],[11877],[11878],[11879],[11880],[11881],[11882],[11883],[11884],[11885],[11886],[11887],[11888],[11889],[11890],[11891],[11892],[11893],[11894],[11895],[11896],[11897],[11898],[11899],[11900],[11901],[11902],[11903],[11904],[11905],[11906],[11907],[11908],[11909],[11911],[11912],[11913],[11914],[11915],[11916],[11917],[11918],[11919],[11920],[11921],[11922],[11923],[11924],[11925],[11926],[11927],[11928],[11929],[11930],[11931],[11932],[11933],[11934],[11935],[11936],[11937],[11938],[11939],[11940],[11941],[11942],[11943],[11944],[11945],[11946],[11947],[11948],[11949],[11950],[11951],[11952],[11982],[11953],[11954],[11983],[11984],[11985],[11986],[11955,11987,11957,88],[11958],[11959],[11988],[11989],[11990],[11991],[11992],[11993],[11994],[11995],[11996],[11960,11997,11998,11999,12000,12001,11966],[11978],[11967],[11970],[11971],[11972],[11973],[11974],[12002],[11975],[11976],[11977],[-11970,12003],[11981],[11979],[12004],[12005,11980],[12006],[12007],[12008],[12009],[12010],[12011],[12012],[12013],[12014],[12015],[12016]]},{"type":"MultiLineString","arcs":[[9438],[9439,9440,-452,9441,-450,9442,9443,-447,9444,9445,9446,9447,-442,9448,-440,9449,-438,9450,-436,9451,-434,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,-415,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,-403,9481,9482,-400,9483,-398,9484,9485,-395,9486,9487,9488,-391,9489,9490,9491,9492,9493,9494,9495,-383,9496,9497,9498,9499,-378,9500,-376,9501,-374,9502,9503,9504,9505,9506],[9507],[9508,365,9509,367],[9510,9511,336,9512,338,9513,340,9514,9515,343,9516,345,9517,9518,348,9519,9520,9521,352,9522,354,9523,9524,9525,358,9526,9527,9528,9529,9530,9531],[9532,1130,9533,1132,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,473,9549,475,9550,477,9551,479,9552,9553,9554,9555,9556,9557,9558,9559,488,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,504,9575,506,9576,9577,9578,9579,9580,9581,9582,514,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,535,9603,9604,538,9605,9606,9607,9608,9609,9610,9611,9612,547,9613,549,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,560,9624,562,9625,9626,565,9627,9628,9629,9630,9631,9632,9633,9634,9635,575,9636,577,9637,9638,9639,9640,582,9641,9642,9643,586,9644,9645,9646,9647,9648,9649,9650,9651,595,9652,597,9653,9654,9655,9656,602,9657,9658,605,9659,9660,9661,9662,9663,611,9664,613,9665,615,9666,9667,9668,9669,9670,621,9671,9672,9673,9674,9675,9676,628,9677,9678,631,9679,633,9680,9681,9682,9683,9684],[9685,9686,9687,1123,9688,1125,9689,9690,9691],[9692],[9693,744,9694,9695,747,9696,749,9697,751,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,762,9708,9709,765,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,781,9725,9726,784,9727,9728,787,9729,9730,9731,9732,9733,9734,794,9735,796,9736,798,9737,9738,9739,9740,9741,9742,9743,806,9744,808,9745,9746,9747,812,9748,9749,9750,9751,9752,818,9753,9754,9755,9756,823,9757,9758,9759,9760,9761,9762,830,9763,9764,9765,9766,9767,9768,837,9769,9770,840,9771,9772,9773,844,9774,9775,9776,9777,9778,9779,9780,852,9781,854,9782,856,9783,9784,9785,860,9786,9787,9788,9789,9790,866,9791,9792,9793,9794,9795,872,9796,9797,9798,9799,9800,9801,879,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,900,9822,902,9823,9824,9825],[9826],[9827,-466,9828,-464,9829,9830,9831,9832,-459,9833,9834,9835,9836],[9837],[9838],[9839,908,9840,910,9841,9842,9843,914,9844,9845,9846,9847,9848,920,9849,922,9850,924,9851,9852,9853,9854,9855,930,9856,932,9857,9858,935,9859,9860,9861,9862,940,9863,9864,943,9865,945,9866,9867,9868,949,9869,9870,9871,9872,9873,9874,9875,9876,9877],[9878],[9879],[9880,9881,9882,1066,9883,1068,9884,9885,9886,9887,9888,9889,1075,9890,9891,1078,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,1090,9903,1092,9904,9905,9906,9907,9908,1098,9909,9910,9911,1102,9912,9913,9914,1106,9915,9916,1109,9917,9918,9919,9920,9921,1115,9922,9923,9924,1119,9925],[9926,9927,1796,9928,9929,9930,9931,9932,1802,9933,9934,9935,9936,1807,9937,9938,9939,9940,9941,9942,9943,1815,9944,1817,9945,9946,1820,9947,9948,9949,1824,9950,1826,9951,9952,9953,9954,9955,9956,9957,9958,9959,1836,9960,1838,9961,1840,9962,9963,9964,9965,689,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,703,9979,9980,9981,9982,9983,9984,9985,711,9986,9987,9988,9989,9990,9991,9992,719,9993,721,9994,9995,9996,9997,9998,9999,10000,10001,730,10002,10003,10004,10005,10006,736,10007,10008,10009],[10010],[10011],[10012,10013,1035,10014,10015,1038,10016,1040,10017,1042,10018,10019,1045,10020,10021,1048,10022,10023,10024,10025,10026,10027,10028,10029,10030,1058,10031,10032,1061,10033,10034],[10035],[10036],[10037],[1015,10038,10039,1018,10040,10041,10042,10043,10044,1024,10045,1026,10046,1028,10047,1030,10048,1032,10049],[10050],[10051],[10052],[10053],[10054],[10055,10056,2454,10057,10058,10059,10060,10061,10062,10063,10064,10065,2464,10066,10067,10068,10069,2469,10070,10071,10072,2473,10073,2475,10074,2477,10075,2479,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,2490,10086,2492,10087,10088,2495,10089,10090,10091,10092,10093,2501,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,2524,10116,2526,10117,10118,10119,10120,2531,10121,2533,10122,10123,2536,10124,10125,10126,2540,10127,2542,10128,10129,10130,2546,10131,2548,10132,10133,2551,10134,2553,10135,10136,10137,10138,2558,10139,2560,10140,10141,2563,10142,10143,10144,10145,10146,10147,10148,10149,2572,10150,10151,10152,10153,2577,10154,10155,2580,10156,10157,2583,10158,2585,10159,2587,10160,2589,10161,10162,10163,10164,10165,10166,10167,10168,2598,10169,2600,10170,2602,10171,10172,10173,10174,2607,10175,2609,10176,10177,10178,2613,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,2625,10190,2627,10191,10192,10193,2631,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,2643,10205,10206,2646,10207,10208,10209,2650,10210,10211,2653,10212,10213,10214,10215,10216,2659,10217,10218,10219,10220,10221,10222,10223],[10224],[10225],[10226],[10227,10228,10229,10230,10231,10232,10233,10234,969,10235,10236,972,10237,974,10238,10239,10240,10241,10242,980,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,991,10253,10254,10255,10256,996,10257,998,10258,1000,10259,1002,10260,10261,10262,10263,10264,1008,10265,10266,10267,1012,10268],[10269],[10270,10271,2112],[10272,10273,2399,10274,10275,10276,10277,10278,10279,2406,10280,10281,2409,10282,10283,10284,10285,2414,10286,10287,10288,10289,10290,10291,10292,10293,2423,10294,2425,10295,10296,2428,10297,10298,2431,10299,10300,10301,10302,10303,2437,10304,10305,2440,10306,10307,2443,10308,10309,2446,10310,10311,10312,10313,10314,10315],[10316],[10317],[10318,10319,10320,10321,10322,1206,10323,1208,10324,10325,10326,10327,10328,10329,10330,10331,1217,10332,10333,10334,1221,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,1235,10348,1237,10349,10350,1240,10351,10352,10353,10354,1245,10355,10356,10357,10358,1250,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,1262,10370,10371,1265,10372,1267,10373,1269,10374,10375,10376,10377,10378,10379,10380,10381,1278,10382,1280,10383,10384,10385,10386,1285,10387,10388,1288,10389,10390,10391,10392,10393,10394,10395,10396,1297,10397,10398,10399,10400,1302,10401,10402,10403,10404,1307,10405,10406,10407,1311,10408,10409,1314,10410,10411,10412,1318,10413,1320,10414,1322,10415,1324,10416,10417,10418,10419,1329,10420,10421,10422,10423,10424,10425,10426,1337,10427,10428,10429,10430,1342,10431,10432,10433,10434,10435,1348,10436,10437,10438,1352,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,1364,10450,10451,10452,10453,10454,10455,1371,10456,10457,10458,1375,10459,10460,1378,10461,10462,10463,10464,1383,10465,10466,10467,1387,10468,1389,10469,10470,1392,10471,10472,10473,10474,1397,10475,1399,10476,10477,10478,10479,1404,10480,10481,1407,10482],[10483,10484,10485,10486,10487,10488,10489,10490,10491,1582,10492,10493,10494,10495,10496,10497,10498,10499,1591,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,1604,10512,1606,10513,10514,10515,10516,10517,1612,10518,10519,10520,1616,10521,1618,10522,1620,10523,1622,10524,1624,10525,10526,1627,10527,10528,10529,1631,10530,10531,10532,1635,10533,10534,10535,1639,10536,10537,1642,10538,1644,10539,1646,10540,10541,1649,10542,10543,10544,1653,10545,10546,10547,1657,10548,10549,10550,10551,10552,10553,10554,10555,10556,1667,10557,10558,1670,10559,10560,1673,10561,10562,10563,10564,1678,10565,10566,10567,10568,10569,10570,10571,1686,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,1720,10605,10606,1723,10607,1725,10608,1727,10609,10610,10611,10612,1732,10613,10614,10615,10616,10617,10618,10619,1740,10620,10621,1743,10622,10623,1746,10624,1748,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,1761,10637,10638,1764,10639,10640,10641,1768,10642,10643,10644,10645,10646,1774,10647,10648,10649,10650,1779,10651,10652,10653,10654,10655,1785,10656,10657,10658,1789,10659,1791,10660,10661,10662],[10663],[10664],[10665],[10666],[10667],[10668,2034,10669,10670,10671,2038,10672,2040,10673,10674,2043,10675,10676,2046,10677,10678,10679,10680,10681,2052,10682,10683,2055,10684,10685,2058,10686,2060,10687,10688,2063,10689,10690,10691,2067,10692,10693,10694,2071,10695,10696,10697,10698,2076,10699,10700,10701,10702,10703,2082,10704,2084,10705,10706,2087,10707,10708,2090,10709,10710,2093,10711,10712,10713,10714,2098,10715,10716,2101,10717,10718,2104,10719,2106,10720,10721,2109,10722],[10723,10724,10725,10726,10727],[10728,1410,10729,10730,1413,10731,1415,10732,10733,10734,10735,1420,10736,10737,10738,10739,10740,1426,10741,10742,10743,10744,10745,1432,10746,10747,1435,10748,10749,1438,10750,10751,1441,10752,10753,10754,10755,1446,10756,1448,10757,10758,10759,10760,10761,1454,10762,10763,10764,10765,10766,10767,10768,10769,1463,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,1479,10785,10786,10787,10788,1484,10789,1486,10790,1488,10791,10792,1491,10793,1493,10794,10795,1496,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,1511,10810,1513,10811,10812,1516,10813,1518,10814,1520,10815,1522,10816,1524,10817,10818,10819,10820,10821,10822,1531,10823,10824,10825,1535,10826,10827,10828,1539,10829,10830,1542,10831,1544,10832,10833,10834,10835,1549,10836,1551,10837,10838,1554,10839,10840,1557,10841,1559,10842,10843,10844,1563,10845,10846,10847,10848,10849,10850,1570,10851,10852,10853],[10854],[10855],[10856],[10857],[10858,10859,10860,10861,1925,10862,1927,10863,10864,1930,10865,10866,10867,10868,10869,1936,10870,10871,10872,10873,10874,10875,1943,10876,1945,10877,1947,10878,1949,10879,1951,10880,10881,10882,10883,10884,10885,10886,10887,10888,1961,10889,1963,10890,10891,10892,10893,10894,1969,10895,1971,10896,1973,10897,1975,10898,1977,10899,10900,1980,10901,10902,10903,10904,1985,10905,10906,1988,10907,10908,1991,10909,1993,10910,10911,10912,1997,10913,1999,10914,10915,2002,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,2016,10929,10930,2019,10931,10932,10933,2023,10934,2025,10935,2027,10936,10937],[10938,10939,10940,1845,10941,10942,10943,10944,1850,10945,10946,1853,10947,1855,10948,10949,10950,10951,10952,1861,10953,10954,10955,10956,10957],[10958],[10959],[10960],[10961,1149,10962,1151,10963,10964,10965,10966,10967,10968,10969,10970,1160,10971,10972,1163,10973,1165,10974,10975,1168,10976,10977,10978,10979,10980,10981,10982,10983,1177,10984,1179,10985,1181,10986,10987,1184,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,1195,10998,10999,11000,11001,1200,11002],[11003],[11004],[11005],[11006,2114,11007,11008,11009,11010,11011,11012,11013,11014,2123,11015,11016,11017,11018,11019,11020,2130,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,2141,11031,11032,11033,11034,11035,2147,11036,2149,11037,2151,11038,11039,11040,11041,11042,11043,11044,11045,11046,2161,11047,2163,11048,2165,11049,2167,11050,11051,11052,11053,2172,11054,11055,11056,2176,11057,11058,11059,11060,11061,11062,11063,11064,11065,2186,11066,2188,11067,11068,2191,11069,11070,11071,11072,11073,11074,2198,11075,11076,11077,11078,2203,11079,2205,11080,11081,11082,2209,11083,2211,11084,11085,11086,11087,2216,11088,11089,11090,11091,11092,2222,11093,2224,11094,11095,2227,11096,11097,2230,11098,11099,2233,11100,11101,11102,11103,11104,2239,11105,11106,2242,11107,11108,11109,11110,11111,2248,11112,11113,2251,11114,11115,11116],[11117,11118,11119,11120,11121,11122,11123,11124,11125,1878,11126,11127,11128,11129,1883,11130,1885,11131,11132,1888,11133,11134,11135,11136,1893,11137,11138,11139,11140,1898,11141,11142,11143,11144,1903,11145,11146,1906,11147,11148,11149,1910,11150,11151,11152,11153,11154,1916,11155,11156,11157,11158,11159],[11160],[11161,11162],[11163],[11164],[11165,11166,11167,11168,11169,2259,11170,2261,11171,11172,2264,11173,11174,11175,11176,11177,2270,11178,2272,11179,11180,11181,2276,11182,2278,11183,11184,11185,2282,11186,11187,11188,2286,11189,2288,11190,11191,11192,11193,11194,11195,11196,11197,11198,2298,11199,2300,11200,11201,2303,11202,2305,11203,11204,2308,11205,11206,11207,11208,2313,11209,11210,11211,11212,2318,11213,11214,11215,11216,11217,11218,2325,11219,2327,11220,11221,11222,11223,2332,11224,11225,11226,11227,2337,11228,11229,2340,11230,11231,11232,11233,11234,11235,11236,2348,11237,11238,2351,11239,11240,11241,11242,11243,2357,11244,2359,11245,11246,11247,2363,11248,11249,11250,11251,11252,11253,11254,11255,2372,11256,11257,11258,11259,11260,2378,11261,2380,11262,2382,11263,2384,11264,2386,11265,11266,11267,11268,11269,11270,11271,11272,11273,2396,11274],[11275,11276],[11277],[11278],[11279,11280,11281],[11282],[11283],[11284],[11285],[11286],[11287],[11288],[11289],[11290],[11291],[11292],[11293],[11294],[11295],[11296],[11297],[11298],[11299],[11300],[11301],[11302],[11303],[11304],[11305],[11306],[11307],[11308],[11309],[11310]]},{"type":"MultiLineString","arcs":[[12017],[12018],[12019],[12020],[12021],[12022],[12023],[12024],[12025],[12026],[12027],[12028],[12029],[12030],[12031],[12032],[12033],[12034],[12035],[12036],[12037],[12038],[12039],[12040],[12041],[12042],[12043],[12044],[12045],[12046],[12047],[12048],[12049],[12050],[12051],[12052],[12053],[12054],[12055],[12056],[12057],[12058],[12059],[12060],[12061],[12062],[12063],[12064],[12065],[12066],[12067],[12068],[12069],[12070],[12071],[12072],[12073],[12074],[12075],[12076],[12077],[12078],[12079],[12080],[12081],[12082],[12083],[12084],[12085],[12086],[12087],[12088],[12089],[12090],[12091],[12092],[12093],[12094],[12095],[12096],[12097],[12098],[12099],[12100],[12101],[12102],[12103],[12104],[12105],[12106],[12107],[12108],[12109],[12110],[12111],[12112],[12113],[12114],[12115],[12116],[12117],[12118],[12119],[12120],[12121],[12122],[12123],[12124],[12125],[12126],[12127],[12128],[12129],[12130]]},{"type":"MultiLineString","arcs":[[12131],[12132],[12133],[12134],[12135],[12136],[12137],[12138],[12139],[12140],[12141],[12142],[12143],[12144],[12145],[12146]]},{"type":"MultiLineString","arcs":[[12147],[12148],[12149],[12150],[12151],[12152],[12153],[12154],[12155],[12156],[12157],[12158],[12159],[12160],[12161],[12162],[12163],[12164],[12165],[12166],[12167],[12168],[12169],[12170],[12171],[12172],[12173],[12174],[12175],[12176],[12177],[12178],[12179],[12180],[12181],[12182],[12183],[12184],[12185],[12186],[12187],[12188],[12189],[12190],[12191],[12192],[12193],[12194],[12195],[12196],[12197],[12198],[12199],[12200],[12201],[12202],[12203],[12204],[12205],[12206],[12207],[12208],[12209],[12210],[12211],[12212],[12213],[12214],[12215],[12216],[12217],[12218],[12219],[12220],[12221],[12222],[12223],[12224],[12225],[12226],[12227],[12228],[12229],[12230],[12231],[12232],[12233],[12234],[12235],[12236],[12237],[12238],[12239],[12240]]},{"type":"MultiLineString","arcs":[[12241],[12242],[12243],[12244],[12245],[12246],[12247],[12248],[12249],[12250],[12251],[12252],[12253],[12254],[12255],[12256],[12257],[12258],[12259],[12260],[12261],[12262],[12263],[12264],[12265],[12266],[12267],[12268],[12269],[12270],[12271],[12272],[12273],[12274],[12275],[12276],[12277],[12278],[12279],[12280],[12281],[12282],[12283],[12284],[12285],[12286],[12287],[12288],[12289],[12290],[12291],[12292],[12293],[12294],[12295],[12296],[12297],[12298]]},{"type":"MultiLineString","arcs":[[12299,12300],[12301,12302,12303,12304,12305],[12306],[12307],[12308,12309],[12310],[12311],[12312],[12313],[12314],[12315,12316,12317,12318,12319,12320,12321,12322,12323,12324,12325],[12326,12327,12328,12329,12330,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12352,12353,12354,12355,12356,12357,12358,12359,12360,12361,12362,12363,12364,12365,12366,12367,12368,12369,12370,12371,12372,12373,12374,12375,12376,12377,12378,12379,12380,12381,12382,12383,12384,12385,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397,12398],[12399,12400,12401,12402,12403,12404,12405,12406,12407,12408,12409,12410,12411,12412,12413,12414,12415,12416,12417,12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12446,12447,12448,12449,12450,12451,12452,12453,12454,12455,12456,12457,12458,12459,12460,12461,12462],[12463,12464,12465,12466],[12467,12468,12469],[12470,12471,12472,12473,12474,12475,12476],[12477],[12478],[12479,12480,12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494],[12495],[12496],[12497],[12498],[12499],[12500,12501,12502,12503,12504,12505,12506,12507,12508,12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519,12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,12532,12533,12534,12535,12536,12537,12538,12539,12540,12541,12542,12543,12544,12545,12546,12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562],[12563],[12564,12565,12566,12567,12568,12569,12570,12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,12584,12585,12586,12587,12588,12589,12590,12591,12592,12593,12594,12595,12596,12597,12598,12599,12600,12601,12602,12603,12604,12605,12606,12607,12608,12609,12610,12611,12612,12613,12614,12615,12616,12617,12618,12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631,12632,12633,12634,12635,12636,12637,12638,12639,12640],[12641,12642,12643,12644,12645,12646,12647,12648,12649,12650,12651,12652,12653,12654,12655,12656,12657,12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,12670,12671,12672,12673,12674,12675,12676,12677,12678,12679,12680,12681,12682,12683,12684,12685,12686,12687,12688,12689],[12690,12691,12692,12693,12694,12695],[12696],[12697],[12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708,12709,12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726],[12727],[12728,12729],[12730]]},{"type":"MultiLineString","arcs":[[12731],[12300],[12732],[12733],[12734],[12735],[12736],[12737],[12738],[12739],[12740],[12741],[12742],[12743],[12744],[12745],[12746],[12747],[12748],[12749],[12750],[12751],[12303,12752,12305,12753],[12754],[12755],[12306],[12307,12756],[-12311,12757,-12310],[12758,12301],[12759],[12760],[12761],[12762],[12763],[12764],[12765],[12766],[12767],[12768],[12769],[12770],[12771],[12772],[12773],[12774],[12775],[12776],[12777],[12778],[12779],[12780],[12781],[12782],[12476,12783,12312,12784,12311,12785],[12786],[12787],[12788],[12472,12789,12474],[12399,12790,12791,12792,12403,12793,12405,12794,12407,12795,12796,12410,12797,12798,12799,12414,12800,12801,12802,12803,12804,12805,12806,12422,12807,12424,12808,12809,12810,12811,12812,12813,12814,12815,12816,12434,12817,12436,12818,12819,12820,12440,12821,12442,12822,12444,12823,12446,12824,12825,12449,12826,12451,12827,12453,12828,12455,12829,12830,12831,12459,12832,12833,12462,12834,12314,12835,12313],[12836,12464,12837,12466],[12838,12326,12839,12328,12840,12330,12841,12842,12333,12843,12335,12844,12337,12845,12846,12340,12847,12848,12343,12849,12850,12851,12347,12852,12349,12853,12351,12854,12353,12855,12355,12856,12857,12358,12858,12859,12860,12362,12861,12364,12862,12863,12367,12864,12865,12866,12371,12867,12373,12868,12869,12870,12377,12871,12872,12873,12381,12874,12875,12384,12876,12877,12387,12878,12389,12879,12391,12880,12881,12882,12883,12396,12884,12398,12885,12315,12886,12887,12318,12888,12889,12321,12890,12891,12892,12325,12893],[12470],[12477],[12478],[12479,12894,12481,12895,12896,12484,12897,12486,12898,12488,12899,12900,12491,12901,12493,12902,12903,12904,12905,12469],[12497],[12498],[12499],[12906],[12691,12907,12693,12908,12909],[12500,12910,12502,12911,12912,12913,12506,12914,12508,12915,12510,12916,12917,12513,12918,12919,12516,12920,12921,12519,12922,12521,12923,12924,12925,12525,12926,12527,12927,12529,12928,12531,12929,12930,12534,12931,12536,12932,12538,12933,12540,12934,12935,12936,12937,12938,12939,12940,12941,12549,12942,12551,12943,12553],[12562,12944,12563],[12555,12945,12557,12946,12947,12560],[12642,12948,12949,12645,12950,12647,12951,12952,12650,12953,12652,12954,12654,12955,12956,12657,12957,12958,12959,12661,12960,12961,12664,12962,12963,12667,12964,12669,12965,12966,12672,12967,12968,12969,12970,12677,12971,12972,12680,12973,12682,12974,12684,12975,12686,12976,12977,12978,12979,12980,12565,12981,12567,12982,12569,12983,12984,12572,12985,12574,12986,12987,12577,12988,12579,12989,12581,12990,12583,12991,12992,12993,12994,12588,12995,12996,12591,12997,12998,12594,12999,13000,13001,13002,12599,13003,12601,13004,13005,12604,13006,13007,12607,13008,13009,13010,12611,13011,12613,13012,12615,13013,13014,12618,13015,13016,12621,13017,13018,12624,13019,12626,13020,12628,13021,13022,12631,13023,13024,12634,13025,13026,12637,13027,13028,12640],[12716,13029,12718,13030,12720,13031,12722,13032,12724,13033,12726],[12698,13034,12700,13035,12702,13036,13037,12705,13038,13039,12708,13040,12710,13041,12712,13042,12714],[13043],[13044,12729],[13045],[13046],[13047]]}]}},"arcs":[[[78585,71308],[-130,153]],[[78443,71016],[141,293]],[[79146,65098],[181,-76]],[[81017,63158],[-240,164],[59,169],[-244,236],[9,405],[-117,240]],[[78603,69515],[165,-528]],[[78606,69515],[-435,598]],[[79582,65328],[-255,-306]],[[79327,65022],[-169,-137]],[[81480,61412],[-186,-119],[-249,374],[-12,450]],[[77837,68672],[-181,-273]],[[88303,80042],[-235,198],[-323,-322],[-157,208]],[[88837,79919],[-128,-145]],[[87588,80126],[-101,835]],[[88709,79774],[-268,-35],[-107,149]],[[88842,79705],[-133,69]],[[85768,77101],[333,372],[228,8],[136,579],[211,301],[-145,594],[114,458],[401,64],[542,649]],[[89056,52672],[127,-47]],[[89144,51305],[-37,91]],[[88551,51203],[93,21]],[[89891,50130],[-401,485]],[[89639,47731],[-305,-285],[8,-230]],[[89883,47394],[-173,97],[-231,-302]],[[89305,47466],[-180,-369]],[[89911,47237],[-437,-159],[5,111]],[[88669,47387],[-14,79]],[[89479,47189],[-137,27]],[[89342,47216],[-155,-219]],[[90218,47014],[-153,-403]],[[89899,46970],[-253,-152],[-405,133]],[[89125,47097],[-84,-49]],[[89187,46997],[-62,100]],[[91021,46584],[-181,122],[-142,452],[-286,-141]],[[89241,46951],[-54,46]],[[90065,46611],[-153,-101],[-193,187],[-296,-121]],[[90164,46552],[-99,59]],[[90904,46380],[-175,5]],[[90729,46385],[-317,630]],[[89423,46576],[-202,122],[20,253]],[[90725,46268],[4,117]],[[89961,46404],[-58,-54]],[[90018,46350],[-115,0]],[[89903,46350],[-349,-12],[-131,238]],[[90850,46125],[-125,143]],[[91166,45886],[-316,239]],[[91135,45846],[-88,-310]],[[90936,45883],[-86,242]],[[90843,45635],[-118,633]],[[91047,45536],[-204,99]],[[90857,45345],[-14,290]],[[91052,45057],[-195,288]],[[91133,45035],[-86,501]],[[90903,44870],[-46,475]],[[98348,39893],[8,-57]],[[98356,39836],[-12,-2]],[[98356,39836],[0,-16]],[[98248,39524],[-46,-7]],[[84401,60837],[-131,-957],[-314,-172],[-22,-264]],[[80331,58352],[291,-519],[202,-621]],[[80221,57621],[102,-247],[501,-162]],[[79880,57433],[312,-477],[779,187]],[[81089,57187],[163,124],[50,329]],[[80824,57212],[147,-69]],[[80971,57143],[118,44]],[[81498,56790],[-220,11],[-189,386]],[[87265,52930],[-275,287],[-682,490],[-113,168],[-663,508],[13,179]],[[74242,62732],[-326,-346]],[[74235,62642],[-96,-132]],[[74252,62556],[-70,-289]],[[74139,62510],[-110,-217]],[[74139,62510],[-50,-304],[131,-327]],[[74318,62371],[0,0]],[[74318,62371],[-145,428],[-239,-323]],[[74318,62371],[-145,-228]],[[74104,62316],[44,-180]],[[74103,62303],[-88,-187]],[[74150,62151],[15,-14]],[[74185,62008],[133,363]],[[75057,60801],[-169,55]],[[75228,60683],[121,95]],[[75020,60683],[18,269]],[[75020,60683],[236,-34]],[[75020,60683],[0,0]],[[74956,60566],[236,-42]],[[74864,60460],[156,223]],[[84950,53539],[-388,479],[4,177],[-472,282],[-365,421],[-528,110],[-59,225]],[[83142,55233],[-260,328]],[[85874,53216],[-674,993]],[[85200,54209],[-488,444],[-605,362],[-301,318]],[[83806,55333],[-3,5]],[[83803,55338],[-93,149]],[[86303,53271],[-156,292],[-448,315],[-90,175],[-409,156]],[[75587,75209],[0,0]],[[75541,75087],[0,0]],[[75592,74977],[0,0]],[[75860,74524],[-32,230],[-284,334],[157,345],[-248,246],[139,99],[-53,273],[-262,74],[-168,283],[-145,522],[-202,279]],[[77195,72386],[-134,-488],[-149,339],[-356,-82],[135,253],[-173,28]],[[76518,72436],[-151,178],[189,368],[-370,108],[33,369],[-210,-4],[-169,-268],[-2,338],[-155,226],[246,339],[-328,18],[-17,282],[259,123]],[[76234,69991],[-3,272],[-251,414],[120,883],[215,270],[-62,200],[265,406]],[[82521,59359],[-13,-155]],[[82522,59193],[35,-72]],[[42811,84704],[-20,66]],[[42815,84691],[-4,13]],[[42817,84679],[-2,12]],[[42812,84678],[-1,26]],[[42861,84581],[-46,110]],[[43907,84605],[-219,275]],[[20598,70213],[161,8]],[[20760,70223],[71,-94]],[[20554,69836],[103,-44]],[[23799,69478],[415,298],[518,-311],[144,-354]],[[24880,69109],[9,-9]],[[24891,69098],[10,-10]],[[19880,68128],[226,36],[238,-255],[152,84]],[[24902,69087],[20,-28]],[[25087,69083],[5,4]],[[24924,69049],[1,-4]],[[25049,69060],[4,1]],[[25008,69036],[1,2]],[[24958,69027],[9,2]],[[24921,69015],[5,-5]],[[24922,68969],[6,-41]],[[24928,68910],[-1,-16]],[[22834,68507],[-132,-647]],[[24926,68880],[2,-14]],[[20547,68041],[21,120]],[[20547,68041],[159,136]],[[20496,67993],[51,48]],[[20496,67993],[48,-20]],[[24929,68838],[8,-7]],[[24945,68825],[2,-2]],[[24954,68813],[-31,-104]],[[24923,68708],[0,-12]],[[24922,68688],[0,-2]],[[24924,68679],[0,-8]],[[24925,68659],[8,-6]],[[24996,68672],[153,-63],[323,276]],[[24992,68669],[4,2]],[[24955,68661],[11,0]],[[24990,68667],[0,0]],[[24939,68654],[1,0]],[[24947,68645],[5,-4]],[[25005,68577],[6,-10]],[[25018,68558],[6,-3]],[[25026,68542],[16,-26]],[[23193,68184],[-6,-1]],[[23172,68180],[-51,60]],[[23184,68180],[-10,-4]],[[25056,68494],[22,-31]],[[23272,68146],[-8,-10]],[[23286,68141],[-2,2]],[[23264,68133],[-52,26]],[[23288,68136],[0,0]],[[25080,68459],[248,-234],[268,147],[504,-527],[-43,-176],[210,-263]],[[23303,68110],[-17,23]],[[23328,68020],[0,2]],[[23335,67981],[0,3]],[[23335,67979],[0,1]],[[23330,67974],[4,5]],[[23325,67935],[-1,15]],[[23324,67934],[1,1]],[[23320,67863],[9,31]],[[23329,67846],[-8,7]],[[23322,67830],[0,0]],[[23319,67827],[1,2]],[[23326,67812],[-4,3]],[[23333,67785],[2,5]],[[23335,67776],[-1,3]],[[23349,67778],[-10,-3]],[[23355,67779],[-1,0]],[[23363,67775],[-5,3]],[[22887,67632],[2,-18]],[[22889,67614],[-1,-1]],[[22889,67603],[1,-5]],[[22894,67559],[11,-102]],[[22908,67432],[1,-15]],[[25963,67957],[-74,-175]],[[23642,67427],[100,-623]],[[25889,67782],[-98,-89]],[[25889,67782],[-29,-229]],[[25860,67553],[-57,-79]],[[23995,67373],[-346,52],[-267,337]],[[23997,67373],[359,149],[50,-365]],[[24406,67157],[-1,0]],[[22957,66979],[7,-68]],[[24405,67157],[0,0]],[[24405,67157],[39,-31]],[[24405,67157],[-1,-2]],[[24404,67155],[-59,-499],[452,-843]],[[24797,65813],[0,0]],[[22995,66803],[0,-77]],[[22995,66708],[-1,-4]],[[23742,66804],[65,-118]],[[23742,66804],[-32,-449],[140,-361],[177,-92],[159,-347],[-256,-137]],[[23011,66590],[11,-74]],[[23020,66504],[1,-2]],[[23031,66475],[53,-280]],[[24797,65813],[81,0]],[[24797,65813],[56,-537]],[[24797,65813],[0,0]],[[24878,65813],[115,31]],[[24878,65813],[245,-423]],[[24217,65582],[-14,-53]],[[24191,65541],[12,-12]],[[24203,65529],[50,-124]],[[23629,64936],[74,23]],[[23612,64903],[-156,376]],[[23653,64868],[-41,35]],[[23600,64777],[12,126]],[[18586,61665],[-210,91],[-76,297]],[[18011,60939],[-66,-152]],[[18013,60939],[195,-209]],[[17935,60783],[-7,-21]],[[17928,60760],[2,-16]],[[17932,60724],[2,-13]],[[17938,60707],[-76,-209]],[[18210,60725],[247,-101]],[[17862,60498],[141,-365],[307,-177]],[[17862,60498],[-212,-510],[-13,-268],[-434,-313],[-381,127]],[[16822,59534],[13,57]],[[16822,59534],[-70,-14]],[[87233,82442],[19,96]],[[87154,82436],[-54,35]],[[87217,82400],[16,42]],[[82487,81510],[0,28]],[[82487,81510],[24,23]],[[82518,81500],[16,32]],[[82518,81500],[32,-9]],[[82365,81524],[88,83]],[[82365,81524],[11,-13]],[[82376,81511],[112,52]],[[82484,81485],[3,25]],[[82484,81485],[34,15]],[[82534,81431],[35,19]],[[82534,81431],[40,7]],[[82593,81413],[-115,-6]],[[82386,81433],[98,52]],[[82464,81412],[85,48]],[[82464,81412],[-78,21]],[[82478,81407],[56,24]],[[82359,81421],[17,90]],[[82359,81421],[27,12]],[[82430,81343],[34,69]],[[82430,81343],[48,64]],[[82402,81319],[28,24]],[[82365,81317],[-6,104]],[[82365,81317],[37,2]],[[82322,81267],[43,257]],[[82322,81267],[43,50]],[[82288,81190],[34,77]],[[82327,81114],[-39,76]],[[82327,81114],[75,205]],[[82122,80676],[132,66],[34,448]],[[70856,81304],[3,-1]],[[70787,81291],[-7,80]],[[70787,81291],[69,13]],[[70923,81217],[153,28]],[[70845,81152],[78,65]],[[70796,81124],[60,180]],[[70801,81108],[-5,16]],[[70801,81108],[44,44]],[[70757,81079],[39,45]],[[70759,81074],[-2,5]],[[70759,81074],[30,-10]],[[70789,81064],[12,44]],[[70789,81064],[56,88]],[[70692,81001],[95,290]],[[70703,80985],[-11,16]],[[70703,80985],[54,94]],[[70726,80867],[-23,118]],[[70726,80867],[33,207]],[[70636,80788],[56,213]],[[70636,80788],[90,79]],[[87886,78242],[-142,187],[-552,-272],[-323,-34],[-192,239]],[[86677,78362],[-145,591],[114,462],[163,-10],[530,352],[263,394],[-100,237],[-41,773],[89,242],[-200,849],[-227,245]],[[73309,80260],[1,38]],[[79510,79460],[-39,-10]],[[79510,79460],[-10,-20]],[[73344,80204],[-9,-5]],[[79442,79460],[-12,23]],[[79442,79460],[-5,1]],[[79437,79461],[-10,9]],[[79437,79461],[-17,-8]],[[79579,79440],[-69,20]],[[79579,79440],[-18,-17]],[[73365,80198],[-21,6]],[[73365,80198],[49,213]],[[73335,80199],[-26,61]],[[79471,79450],[-29,10]],[[79500,79440],[-18,-4]],[[79482,79436],[-11,14]],[[79482,79436],[-12,-19]],[[79561,79423],[-12,-11]],[[79561,79423],[14,-17]],[[79492,79431],[-22,-14]],[[79549,79412],[-102,-45]],[[79575,79406],[-26,6]],[[79470,79417],[-3,-4]],[[79590,79396],[-15,10]],[[79467,79413],[-47,31]],[[79467,79413],[-52,12]],[[79532,79394],[-32,46]],[[73350,80131],[-6,73]],[[73387,80126],[-22,72]],[[79415,79379],[-21,5]],[[73328,80115],[7,84]],[[73328,80115],[22,16]],[[79447,79367],[0,0]],[[79447,79367],[-32,12]],[[79447,79367],[0,-12]],[[73285,80104],[24,156]],[[73285,80104],[35,-7]],[[79447,79355],[-32,24]],[[73320,80097],[8,18]],[[73287,80097],[-2,7]],[[73358,80066],[-8,65]],[[73358,80066],[-38,31]],[[73374,80054],[13,72]],[[73364,80050],[-6,16]],[[73364,80050],[10,4]],[[73319,80047],[-32,50]],[[73334,80034],[-15,13]],[[73334,80034],[30,16]],[[73393,80015],[-6,111]],[[73366,80008],[8,46]],[[73366,80008],[-32,26]],[[70462,80280],[174,508]],[[73355,79993],[-36,54]],[[73355,79993],[16,-4]],[[73371,79989],[-5,19]],[[73371,79989],[22,26]],[[73353,79945],[-53,1]],[[73353,79945],[2,48]],[[73300,79946],[-13,151]],[[86462,78025],[215,337]],[[80039,79003],[0,0]],[[80039,79003],[1,0]],[[80040,79003],[0,0]],[[80040,79003],[1,0]],[[80041,79003],[0,0]],[[80041,79003],[1,0]],[[80042,79003],[0,0]],[[80042,79003],[0,0]],[[80042,79003],[1,0]],[[80043,79003],[0,0]],[[80043,79003],[1,0]],[[80044,79003],[0,0]],[[80044,79003],[-3,29]],[[80041,79032],[-26,38]],[[80015,79070],[-4,19]],[[80011,79089],[-8,40]],[[80003,79129],[-16,5]],[[79987,79134],[-5,-5]],[[79982,79129],[0,-5]],[[79982,79124],[2,-9]],[[79984,79115],[0,-5]],[[79984,79110],[-5,-2]],[[79979,79108],[-6,39]],[[79973,79147],[-6,13]],[[79967,79160],[0,4]],[[79967,79164],[4,10]],[[79971,79174],[-11,2]],[[79960,79176],[-1,19]],[[79959,79195],[0,8]],[[79959,79203],[-17,27]],[[79942,79230],[-3,-1]],[[79939,79229],[-6,3]],[[79933,79232],[-9,16]],[[79924,79248],[-6,0]],[[79918,79248],[-9,-2]],[[79909,79246],[-66,-11]],[[79843,79235],[-22,13]],[[79821,79248],[-14,7]],[[79807,79255],[-9,28]],[[79798,79283],[-1,4]],[[79797,79287],[-9,5]],[[79788,79292],[0,-5]],[[79788,79287],[-10,1]],[[79778,79288],[1,1]],[[79779,79289],[-4,6]],[[79775,79295],[-22,31]],[[79753,79326],[-1,8]],[[79752,79334],[6,1]],[[79758,79335],[1,2]],[[79759,79337],[1,13]],[[79760,79350],[-8,25]],[[79752,79375],[-4,9]],[[79748,79384],[-1,4]],[[79747,79388],[-1,2]],[[79746,79390],[-1,1]],[[79745,79391],[0,1]],[[79745,79392],[0,0]],[[79745,79392],[-1,1]],[[79744,79393],[0,0]],[[79744,79393],[-1,1]],[[79743,79394],[0,0]],[[79743,79394],[0,1]],[[79743,79395],[-1,0]],[[79742,79395],[0,1]],[[79742,79396],[0,0]],[[79742,79396],[-1,1]],[[79741,79397],[0,1]],[[79741,79398],[-1,0]],[[79740,79398],[0,0]],[[79740,79398],[0,1]],[[79740,79399],[0,2]],[[79740,79401],[0,1]],[[79740,79402],[0,1]],[[79740,79403],[-1,0]],[[79739,79403],[0,1]],[[79739,79404],[0,1]],[[79739,79405],[-1,2]],[[79738,79407],[0,2]],[[79738,79409],[-1,3]],[[79737,79412],[0,1]],[[79737,79413],[0,1]],[[79737,79414],[0,0]],[[79737,79414],[-1,1]],[[79736,79415],[0,0]],[[79736,79415],[0,1]],[[79736,79416],[-1,1]],[[79735,79417],[0,1]],[[79735,79418],[-1,1]],[[79734,79419],[0,0]],[[79734,79419],[0,1]],[[79734,79420],[0,0]],[[79734,79420],[-1,1]],[[79733,79421],[0,0]],[[79733,79421],[0,1]],[[79733,79422],[0,0]],[[79733,79422],[-1,1]],[[79732,79423],[0,1]],[[79732,79424],[-1,1]],[[79731,79425],[-4,-2]],[[79727,79423],[0,0]],[[79727,79423],[0,-1]],[[79727,79422],[0,0]],[[79727,79422],[-1,-2]],[[79726,79420],[0,-1]],[[79726,79419],[0,-1]],[[79726,79418],[-1,0]],[[79725,79418],[-1,2]],[[79724,79420],[0,0]],[[79724,79420],[-2,2]],[[79722,79422],[0,0]],[[79722,79422],[-4,3]],[[79718,79425],[-1,1]],[[79717,79426],[0,1]],[[79717,79427],[-1,0]],[[79716,79427],[0,5]],[[79716,79432],[1,0]],[[79717,79432],[0,1]],[[79717,79433],[0,0]],[[79717,79433],[-10,16]],[[79707,79449],[-128,-9]],[[80039,79003],[-2,-5]],[[80037,78998],[-1,-3]],[[80036,78995],[0,-4]],[[80036,78991],[3,-7]],[[80039,78984],[7,-7]],[[80046,78977],[-2,-15]],[[80044,78962],[-4,-6]],[[80040,78956],[0,-4]],[[80040,78952],[-9,-15]],[[80031,78937],[1,-3]],[[80032,78934],[-8,-25]],[[80024,78909],[-5,-5]],[[80019,78904],[-34,-24]],[[70452,80104],[10,176]],[[70452,80104],[188,163],[283,950]],[[73341,79824],[12,121]],[[73341,79824],[52,191]],[[73290,79764],[51,60]],[[73290,79764],[10,182]],[[79985,78880],[-1,1]],[[79984,78881],[-5,-2]],[[79979,78879],[1,-4]],[[79980,78875],[-5,-3]],[[79975,78872],[0,7]],[[79975,78879],[-10,15]],[[79965,78894],[-1,3]],[[79964,78897],[13,21]],[[79977,78918],[0,4]],[[79977,78922],[-1,1]],[[79976,78923],[-2,1]],[[79974,78924],[-1,1]],[[79973,78925],[-2,0]],[[79971,78925],[0,0]],[[79971,78925],[-3,1]],[[79968,78926],[0,0]],[[79968,78926],[-1,1]],[[79967,78927],[0,0]],[[79967,78927],[-1,1]],[[79966,78928],[0,1]],[[79966,78929],[0,0]],[[79966,78929],[-1,2]],[[79965,78931],[1,2]],[[79966,78933],[5,3]],[[79971,78936],[1,0]],[[79972,78936],[1,0]],[[79973,78936],[1,0]],[[79974,78936],[6,1]],[[79980,78937],[0,0]],[[79980,78937],[1,3]],[[79981,78940],[1,1]],[[79982,78941],[0,0]],[[79982,78941],[0,1]],[[79982,78942],[0,0]],[[79982,78942],[0,1]],[[79982,78943],[0,1]],[[79982,78944],[0,2]],[[79982,78946],[1,0]],[[79983,78946],[1,1]],[[79984,78947],[1,1]],[[79985,78948],[0,1]],[[79985,78949],[1,0]],[[79986,78949],[1,1]],[[79987,78950],[1,4]],[[79988,78954],[-1,1]],[[79987,78955],[-1,2]],[[79986,78957],[-2,2]],[[79984,78959],[-1,0]],[[79983,78959],[1,1]],[[79984,78960],[0,1]],[[79984,78961],[0,1]],[[79984,78962],[0,1]],[[79984,78963],[1,2]],[[79985,78965],[0,1]],[[79985,78966],[1,2]],[[79986,78968],[-1,3]],[[79985,78971],[-1,-1]],[[79984,78970],[-2,-2]],[[79982,78968],[-1,0]],[[79981,78968],[0,-1]],[[79981,78967],[-1,0]],[[79980,78967],[-2,0]],[[79978,78967],[0,0]],[[79978,78967],[0,2]],[[79978,78969],[2,5]],[[79980,78974],[0,0]],[[79980,78974],[0,0]],[[79980,78974],[2,1]],[[79982,78975],[2,2]],[[79984,78977],[0,1]],[[79984,78978],[1,0]],[[79985,78978],[0,1]],[[79985,78979],[1,1]],[[79986,78980],[1,2]],[[79987,78982],[0,0]],[[79987,78982],[1,0]],[[79988,78982],[0,0]],[[79988,78982],[1,1]],[[79989,78983],[1,0]],[[79990,78983],[0,0]],[[79990,78983],[1,0]],[[79991,78983],[1,0]],[[79992,78983],[1,0]],[[79993,78983],[1,-1]],[[79994,78982],[1,-1]],[[79995,78981],[1,-1]],[[79996,78980],[1,0]],[[79997,78980],[0,0]],[[79997,78980],[0,-1]],[[79997,78979],[1,0]],[[79998,78979],[0,-1]],[[79998,78978],[0,-1]],[[79998,78977],[0,0]],[[79998,78977],[0,-1]],[[79998,78976],[0,-1]],[[79998,78975],[0,-1]],[[79998,78974],[1,-1]],[[79999,78973],[4,1]],[[80003,78974],[0,2]],[[80003,78976],[0,1]],[[80003,78977],[0,1]],[[80003,78978],[2,1]],[[80005,78979],[0,0]],[[80005,78979],[2,0]],[[80007,78979],[0,0]],[[80007,78979],[1,-1]],[[80008,78978],[0,-1]],[[80008,78977],[1,-1]],[[80009,78976],[2,-1]],[[80011,78975],[0,0]],[[80011,78975],[1,-1]],[[80012,78974],[1,-1]],[[80013,78973],[2,-3]],[[80015,78970],[1,-1]],[[80016,78969],[2,1]],[[80018,78970],[-1,4]],[[80017,78974],[-1,3]],[[80016,78977],[1,2]],[[80017,78979],[0,1]],[[80017,78980],[0,1]],[[80017,78981],[0,1]],[[80017,78982],[0,1]],[[80017,78983],[0,0]],[[80017,78983],[1,1]],[[80018,78984],[1,1]],[[80019,78985],[1,1]],[[80020,78986],[2,0]],[[80022,78986],[1,0]],[[80023,78986],[1,0]],[[80024,78986],[1,1]],[[80025,78987],[0,1]],[[80025,78988],[-1,2]],[[80024,78990],[0,1]],[[80024,78991],[-1,1]],[[80023,78992],[0,1]],[[80023,78993],[0,1]],[[80023,78994],[0,1]],[[80023,78995],[0,0]],[[80023,78995],[0,1]],[[80023,78996],[0,1]],[[80023,78997],[0,1]],[[80023,78998],[1,1]],[[80024,78999],[0,0]],[[80024,78999],[0,1]],[[80024,79000],[1,1]],[[80025,79001],[0,0]],[[80025,79001],[1,0]],[[80026,79001],[2,0]],[[80028,79001],[0,0]],[[80028,79001],[1,0]],[[80029,79001],[0,0]],[[80029,79001],[1,0]],[[80030,79001],[1,0]],[[80031,79001],[1,0]],[[80032,79001],[0,0]],[[80032,79001],[0,0]],[[80032,79001],[1,1]],[[80033,79002],[1,0]],[[80034,79002],[0,0]],[[80034,79002],[1,1]],[[80035,79003],[0,0]],[[80035,79003],[1,0]],[[80036,79003],[1,0]],[[80037,79003],[1,0]],[[80038,79003],[1,0]],[[80039,79003],[0,0]],[[77273,79191],[-49,35]],[[77273,79191],[-18,-6]],[[77273,79185],[0,6]],[[77255,79185],[-32,7]],[[77265,79169],[-10,16]],[[77262,79163],[3,6]],[[77262,79163],[-20,3]],[[77242,79166],[-9,-17]],[[77242,79166],[9,-20]],[[77312,79156],[-39,29]],[[77312,79156],[-15,-12]],[[77297,79144],[-24,41]],[[77297,79144],[-8,-4]],[[77265,79147],[-3,16]],[[77265,79147],[-14,-1]],[[77251,79146],[-11,-15]],[[77289,79140],[-24,29]],[[77323,79128],[-15,-5]],[[77289,79131],[-24,16]],[[77289,79131],[0,9]],[[77331,79125],[-8,3]],[[77331,79125],[-3,0]],[[77328,79125],[-5,3]],[[77328,79125],[-7,-9]],[[77308,79123],[-2,-6]],[[77306,79117],[-17,14]],[[77321,79116],[-13,7]],[[77321,79116],[-15,1]],[[70264,79868],[198,412]],[[76678,79176],[-7,-61]],[[70310,79844],[142,260]],[[70310,79844],[-46,24]],[[77386,79084],[-74,72]],[[77386,79084],[-55,41]],[[76747,79158],[-25,-41]],[[76694,79142],[-23,-27]],[[76763,79133],[-41,-16]],[[76722,79117],[31,20]],[[76671,79115],[0,0]],[[76671,79115],[-10,-47]],[[76700,79096],[22,21]],[[76698,79074],[70,55]],[[76661,79068],[39,28]],[[76659,79065],[2,3]],[[76650,79061],[9,4]],[[76677,79044],[-18,21]],[[76571,78936],[-2,2]],[[76569,78938],[-2,3]],[[76567,78941],[0,1]],[[76567,78942],[0,1]],[[76567,78943],[0,1]],[[76567,78944],[0,1]],[[76567,78945],[0,3]],[[76567,78948],[0,1]],[[76567,78949],[0,4]],[[76567,78953],[1,2]],[[76568,78955],[1,1]],[[76569,78956],[1,1]],[[76570,78957],[1,0]],[[76571,78957],[1,1]],[[76572,78958],[0,1]],[[76572,78959],[2,5]],[[76574,78964],[1,2]],[[76575,78966],[1,2]],[[76576,78968],[0,0]],[[76576,78968],[0,0]],[[76576,78968],[1,0]],[[76577,78968],[1,0]],[[76578,78968],[0,-1]],[[76578,78967],[1,1]],[[76579,78968],[1,0]],[[76580,78968],[1,0]],[[76581,78968],[0,0]],[[76581,78968],[3,2]],[[76584,78970],[0,1]],[[76584,78971],[1,1]],[[76585,78972],[0,1]],[[76585,78973],[0,1]],[[76585,78974],[0,1]],[[76585,78975],[-1,2]],[[76584,78977],[0,0]],[[76584,78977],[-1,1]],[[76583,78978],[0,0]],[[76583,78978],[-1,0]],[[76582,78978],[-2,0]],[[76580,78978],[-1,0]],[[76579,78978],[-1,0]],[[76578,78978],[-1,0]],[[76577,78978],[0,0]],[[76577,78978],[-1,0]],[[76576,78978],[0,0]],[[76576,78978],[-1,1]],[[76575,78979],[0,1]],[[76575,78980],[-1,0]],[[76574,78980],[-1,4]],[[76573,78984],[-1,2]],[[76572,78986],[0,0]],[[76572,78986],[0,0]],[[76572,78986],[-6,5]],[[76566,78991],[0,1]],[[76566,78992],[189,251]],[[76571,78936],[129,160]],[[73157,79259],[195,244],[-62,261]],[[77283,78703],[-166,205],[98,179]],[[78052,78544],[-2,3]],[[78050,78547],[0,3]],[[78050,78550],[0,4]],[[78050,78554],[-11,12]],[[78039,78566],[-2,0]],[[78037,78566],[-14,11]],[[78023,78577],[-2,5]],[[78021,78582],[-4,-2]],[[78017,78580],[-1,-4]],[[78016,78576],[-1,-3]],[[78015,78573],[-1,-4]],[[78014,78569],[-4,7]],[[78010,78576],[-6,-10]],[[78004,78566],[-6,-15]],[[77998,78551],[2,-1]],[[78000,78550],[0,-2]],[[78000,78548],[-3,0]],[[77997,78548],[-9,9]],[[77988,78557],[0,0]],[[77988,78557],[0,2]],[[77988,78559],[-3,7]],[[77985,78566],[1,15]],[[77986,78581],[1,1]],[[77987,78582],[-1,14]],[[77986,78596],[-14,13]],[[77972,78609],[-11,8]],[[77961,78617],[-6,1]],[[77955,78618],[-22,-7]],[[77933,78611],[-1,-1]],[[77932,78610],[-3,-6]],[[77929,78604],[-10,-3]],[[77919,78601],[-3,1]],[[77916,78602],[0,6]],[[77916,78608],[-7,2]],[[77909,78610],[-4,6]],[[77905,78616],[-3,4]],[[77902,78620],[2,7]],[[77904,78627],[-6,-5]],[[77898,78622],[-2,-1]],[[77896,78621],[-10,-8]],[[77886,78613],[-3,4]],[[77883,78617],[-1,1]],[[77882,78618],[-2,6]],[[77880,78624],[-5,0]],[[77875,78624],[-2,3]],[[77873,78627],[-8,10]],[[77865,78637],[-9,-1]],[[77856,78636],[-2,-5]],[[77854,78631],[-7,-6]],[[77847,78625],[-7,-2]],[[77840,78623],[-12,5]],[[77828,78628],[-1,1]],[[77827,78629],[-5,0]],[[77822,78629],[-2,-2]],[[77820,78627],[-6,-1]],[[77814,78626],[-2,2]],[[77812,78628],[-5,10]],[[77807,78638],[-10,8]],[[77797,78646],[3,4]],[[77800,78650],[-1,2]],[[77799,78652],[-7,6]],[[77792,78658],[1,4]],[[77793,78662],[0,2]],[[77793,78664],[-3,0]],[[77790,78664],[-4,9]],[[77786,78673],[-1,1]],[[77785,78674],[-6,2]],[[77779,78676],[-1,2]],[[77778,78678],[5,3]],[[77783,78681],[-6,1]],[[77777,78682],[0,10]],[[77777,78692],[1,2]],[[77778,78694],[-4,1]],[[77774,78695],[-1,14]],[[77773,78709],[-5,6]],[[77768,78715],[-2,3]],[[77766,78718],[-10,8]],[[77756,78726],[-4,10]],[[77752,78736],[-6,3]],[[77746,78739],[-4,5]],[[77742,78744],[-1,0]],[[77741,78744],[-5,-4]],[[77736,78740],[-1,7]],[[77735,78747],[-3,5]],[[77732,78752],[-3,-2]],[[77729,78750],[-2,1]],[[77727,78751],[-8,11]],[[77719,78762],[-1,2]],[[77718,78764],[-6,-5]],[[77712,78759],[-6,23]],[[77706,78782],[-8,7]],[[77698,78789],[-1,5]],[[77697,78794],[-5,4]],[[77692,78798],[-3,-1]],[[77689,78797],[0,-1]],[[77689,78796],[-2,-1]],[[77687,78795],[-1,3]],[[77686,78798],[0,0]],[[77686,78798],[-3,0]],[[77683,78798],[-3,9]],[[77680,78807],[-2,6]],[[77678,78813],[-1,7]],[[77677,78820],[-3,-1]],[[77674,78819],[-2,-1]],[[77672,78818],[-15,19]],[[77657,78837],[-5,3]],[[77652,78840],[-4,-2]],[[77648,78838],[0,4]],[[77648,78842],[-3,3]],[[77645,78845],[-2,-3]],[[77643,78842],[-5,-2]],[[77638,78840],[-1,1]],[[77637,78841],[-2,10]],[[77635,78851],[2,3]],[[77637,78854],[3,8]],[[77640,78862],[-1,4]],[[77639,78866],[-2,6]],[[77637,78872],[-1,3]],[[77636,78875],[-14,13]],[[77622,78888],[-7,4]],[[77615,78892],[-7,7]],[[77608,78899],[-3,5]],[[77605,78904],[-4,-2]],[[77601,78902],[-2,0]],[[77599,78902],[-3,-4]],[[77596,78898],[-5,-21]],[[77591,78877],[1,-2]],[[77592,78875],[-5,-10]],[[77587,78865],[-11,2]],[[77576,78867],[-5,-3]],[[77571,78864],[-6,5]],[[77565,78869],[-4,-1]],[[77561,78868],[-4,0]],[[77557,78868],[-8,8]],[[77549,78876],[5,9]],[[77554,78885],[-2,14]],[[77552,78899],[-3,7]],[[77549,78906],[-7,8]],[[77542,78914],[-10,1]],[[77532,78915],[-7,8]],[[77525,78923],[-4,8]],[[77521,78931],[-1,6]],[[77520,78937],[-10,11]],[[77510,78948],[-4,6]],[[77506,78954],[-11,13]],[[77495,78967],[-2,3]],[[77493,78970],[-5,9]],[[77488,78979],[-8,5]],[[77480,78984],[-1,12]],[[77479,78996],[-4,12]],[[77475,79008],[-5,10]],[[77470,79018],[-33,19]],[[77437,79037],[-14,1]],[[77423,79038],[-1,-3]],[[77422,79035],[-6,-5]],[[77416,79030],[-1,12]],[[77415,79042],[-3,13]],[[77412,79055],[-1,1]],[[77411,79056],[-5,1]],[[77406,79057],[0,2]],[[77406,79059],[-2,12]],[[77404,79071],[-8,8]],[[77396,79079],[-10,5]],[[73089,79093],[68,166]],[[78235,78483],[-1,0]],[[78234,78483],[-1,2]],[[78233,78485],[-7,0]],[[78226,78485],[-1,0]],[[78225,78485],[-1,3]],[[78224,78488],[-1,3]],[[78223,78491],[-7,3]],[[78216,78494],[-2,1]],[[78214,78495],[-3,-1]],[[78211,78494],[-4,1]],[[78207,78495],[-3,-8]],[[78204,78487],[-2,-1]],[[78202,78486],[-2,-1]],[[78200,78485],[-2,4]],[[78198,78489],[-7,-4]],[[78191,78485],[2,-1]],[[78193,78484],[-1,-1]],[[78192,78483],[-5,-5]],[[78187,78478],[-1,1]],[[78186,78479],[0,3]],[[78186,78482],[-1,5]],[[78185,78487],[-12,-2]],[[78173,78485],[-3,0]],[[78170,78485],[0,0]],[[78170,78485],[-11,1]],[[78159,78486],[-1,-2]],[[78158,78484],[-3,-1]],[[78155,78483],[-2,5]],[[78153,78488],[-1,2]],[[78152,78490],[-12,4]],[[78140,78494],[0,4]],[[78140,78498],[2,0]],[[78142,78498],[-6,5]],[[78136,78503],[-2,0]],[[78134,78503],[-5,2]],[[78129,78505],[0,5]],[[78129,78510],[0,1]],[[78129,78511],[-7,3]],[[78122,78514],[-1,4]],[[78121,78518],[-9,-4]],[[78112,78514],[-2,-1]],[[78110,78513],[-1,-7]],[[78109,78506],[-3,9]],[[78106,78515],[-2,0]],[[78104,78515],[-12,-9]],[[78092,78506],[-5,3]],[[78087,78509],[-5,2]],[[78082,78511],[-5,6]],[[78077,78517],[-8,15]],[[78069,78532],[-8,8]],[[78061,78540],[-4,1]],[[78057,78541],[-5,3]],[[82413,77830],[-251,774],[48,291],[-167,839],[-119,213],[45,524],[286,193],[72,450]],[[72873,78013],[-90,360],[387,694],[-13,192]],[[79885,76998],[32,39]],[[79917,77037],[12,-4]],[[79929,77033],[9,-3]],[[79938,77030],[20,3]],[[79958,77033],[12,5]],[[79970,77038],[1,15]],[[79971,77053],[-19,0]],[[79952,77053],[8,16]],[[79960,77069],[0,0]],[[79960,77069],[1,1]],[[79961,77070],[0,1]],[[79961,77071],[0,2]],[[79961,77073],[0,0]],[[79961,77073],[0,1]],[[79961,77074],[0,1]],[[79961,77075],[0,1]],[[79961,77076],[-1,2]],[[79960,77078],[0,0]],[[79960,77078],[0,1]],[[79960,77079],[0,1]],[[79960,77080],[-1,1]],[[79959,77081],[0,1]],[[79959,77082],[0,2]],[[79959,77084],[0,1]],[[79959,77085],[0,1]],[[79959,77086],[-1,2]],[[79958,77088],[0,2]],[[79958,77090],[0,1]],[[79958,77091],[0,2]],[[79958,77093],[0,1]],[[79958,77094],[0,1]],[[79958,77095],[0,4]],[[79958,77099],[0,1]],[[79958,77100],[0,4]],[[79958,77104],[1,0]],[[79959,77104],[0,1]],[[79959,77105],[0,4]],[[79959,77109],[1,1]],[[79960,77110],[0,0]],[[79960,77110],[0,1]],[[79960,77111],[0,1]],[[79960,77112],[0,0]],[[79960,77112],[0,2]],[[79960,77114],[1,1]],[[79961,77115],[0,0]],[[79961,77115],[0,2]],[[79961,77117],[3,7]],[[79964,77124],[2,2]],[[79966,77126],[15,30]],[[79981,77156],[-2,33]],[[79979,77189],[-8,13]],[[79971,77202],[-3,13]],[[79968,77215],[-21,26]],[[79947,77241],[-5,29]],[[79942,77270],[-1,2]],[[79941,77272],[-6,44]],[[79935,77316],[-12,39]],[[79923,77355],[0,16]],[[79923,77371],[4,8]],[[79927,77379],[1,9]],[[79928,77388],[-9,5]],[[79919,77393],[-8,9]],[[79911,77402],[9,17]],[[79920,77419],[-6,0]],[[79914,77419],[-22,21]],[[79892,77440],[-2,3]],[[79890,77443],[-1,10]],[[79889,77453],[-1,5]],[[79888,77458],[-5,5]],[[79883,77463],[-7,3]],[[79876,77466],[2,13]],[[79878,77479],[1,3]],[[79879,77482],[-2,14]],[[79877,77496],[-11,24]],[[79866,77520],[4,2]],[[79870,77522],[4,10]],[[79874,77532],[-9,43]],[[79865,77575],[1,12]],[[79866,77587],[10,82]],[[79876,77669],[0,6]],[[79876,77675],[-3,9]],[[79873,77684],[1,3]],[[79874,77687],[20,20]],[[79894,77707],[3,18]],[[79897,77725],[10,6]],[[79907,77731],[1,16]],[[79908,77747],[1,12]],[[79909,77759],[3,8]],[[79912,77767],[12,-13]],[[79924,77754],[7,10]],[[79931,77764],[28,1]],[[79959,77765],[14,13]],[[79973,77778],[8,8]],[[79981,77786],[11,9]],[[79992,77795],[-1,7]],[[79991,77802],[2,10]],[[79993,77812],[16,4]],[[80009,77816],[0,4]],[[80009,77820],[4,3]],[[80013,77823],[8,7]],[[80021,77830],[-1,13]],[[80020,77843],[14,9]],[[80034,77852],[3,12]],[[80037,77864],[16,22]],[[80053,77886],[1,19]],[[80054,77905],[0,4]],[[80054,77909],[-7,3]],[[80047,77912],[-3,2]],[[80044,77914],[-15,52]],[[80029,77966],[6,21]],[[80035,77987],[4,32]],[[80039,78019],[-4,15]],[[80035,78034],[8,4]],[[80043,78038],[9,14]],[[80052,78052],[-8,2]],[[80044,78054],[7,15]],[[80051,78069],[7,7]],[[80058,78076],[0,2]],[[80058,78078],[-4,1]],[[80054,78079],[-4,11]],[[80050,78090],[2,21]],[[80052,78111],[-21,15]],[[80031,78126],[-3,28]],[[80028,78154],[-4,-5]],[[80024,78149],[0,15]],[[80024,78164],[9,9]],[[80033,78173],[2,5]],[[80035,78178],[-9,-1]],[[80026,78177],[-9,5]],[[80017,78182],[0,9]],[[80017,78191],[-2,19]],[[80015,78210],[-1,2]],[[80014,78212],[-17,19]],[[79997,78231],[-14,4]],[[79983,78235],[-12,29]],[[79971,78264],[-2,9]],[[79969,78273],[-1,30]],[[79968,78303],[-4,6]],[[79964,78309],[-2,15]],[[79962,78324],[-6,11]],[[79956,78335],[10,35]],[[79966,78370],[4,1]],[[79970,78371],[1,2]],[[79971,78373],[-7,3]],[[79964,78376],[-7,8]],[[79957,78384],[-2,2]],[[79955,78386],[-6,2]],[[79949,78388],[-17,14]],[[79932,78402],[-1,2]],[[79931,78404],[-11,12]],[[79920,78416],[-10,6]],[[79910,78422],[-9,29]],[[79901,78451],[-1,-9]],[[79900,78442],[-4,-2]],[[79896,78440],[-2,1]],[[79894,78441],[-13,28]],[[79881,78469],[-13,18]],[[79868,78487],[-6,4]],[[79862,78491],[6,15]],[[79868,78506],[6,5]],[[79874,78511],[0,3]],[[79874,78514],[-2,13]],[[79872,78527],[0,5]],[[79872,78532],[-1,14]],[[79871,78546],[3,3]],[[79874,78549],[5,5]],[[79879,78554],[-8,15]],[[79871,78569],[1,10]],[[79872,78579],[8,26]],[[79880,78605],[1,3]],[[79881,78608],[-3,17]],[[79878,78625],[-2,7]],[[79876,78632],[-3,3]],[[79873,78635],[-1,8]],[[79872,78643],[8,1]],[[79880,78644],[9,-4]],[[79889,78640],[-3,12]],[[79886,78652],[4,22]],[[79890,78674],[15,10]],[[79905,78684],[5,-1]],[[79910,78683],[31,8]],[[79941,78691],[3,28]],[[79944,78719],[6,47]],[[79950,78766],[27,49]],[[79977,78815],[2,10]],[[79979,78825],[-2,14]],[[79977,78839],[8,41]],[[78452,76913],[-5,3]],[[78447,76916],[-1,0]],[[78446,76916],[-1,-2]],[[78445,76914],[-2,-1]],[[78443,76913],[-5,-1]],[[78438,76912],[-3,-2]],[[78435,76910],[-13,4]],[[78422,76914],[-3,9]],[[78419,76923],[-2,2]],[[78417,76925],[-4,3]],[[78413,76928],[-1,2]],[[78412,76930],[2,3]],[[78414,76933],[-2,0]],[[78412,76933],[-4,1]],[[78408,76934],[-4,6]],[[78404,76940],[-1,0]],[[78403,76940],[-1,0]],[[78402,76940],[-3,1]],[[78399,76941],[-25,7]],[[78374,76948],[-16,-4]],[[78358,76944],[-2,0]],[[78356,76944],[-15,4]],[[78341,76948],[-2,3]],[[78339,76951],[2,9]],[[78341,76960],[1,4]],[[78342,76964],[3,2]],[[78345,76966],[0,4]],[[78345,76970],[-2,2]],[[78343,76972],[-8,5]],[[78335,76977],[-2,1]],[[78333,76978],[-4,0]],[[78329,76978],[0,1]],[[78329,76979],[3,7]],[[78332,76986],[-2,5]],[[78330,76991],[-4,0]],[[78326,76991],[-2,0]],[[78324,76991],[0,2]],[[78324,76993],[2,4]],[[78326,76997],[-3,6]],[[78323,77003],[-1,0]],[[78322,77003],[-1,-2]],[[78321,77001],[-1,10]],[[78320,77011],[-6,12]],[[78314,77023],[-14,16]],[[78300,77039],[-3,-6]],[[78297,77033],[-1,0]],[[78296,77033],[0,3]],[[78296,77036],[0,4]],[[78296,77040],[-3,1]],[[78293,77041],[-1,-4]],[[78292,77037],[-2,8]],[[78290,77045],[-4,6]],[[78286,77051],[0,1]],[[78286,77052],[-3,11]],[[78283,77063],[1,7]],[[78284,77070],[-6,18]],[[78278,77088],[-10,16]],[[78268,77104],[-3,3]],[[78265,77107],[-2,3]],[[78263,77110],[-5,5]],[[78258,77115],[-6,3]],[[78252,77118],[-5,18]],[[78247,77136],[-4,5]],[[78243,77141],[0,6]],[[78243,77147],[-2,8]],[[78241,77155],[-11,5]],[[78230,77160],[-11,11]],[[78219,77171],[-2,15]],[[78217,77186],[0,2]],[[78217,77188],[1,0]],[[78218,77188],[3,10]],[[78221,77198],[4,16]],[[78225,77214],[2,9]],[[78227,77223],[0,4]],[[78227,77227],[3,20]],[[78230,77247],[1,6]],[[78231,77253],[-3,1]],[[78228,77254],[0,8]],[[78228,77262],[0,3]],[[78228,77265],[4,35]],[[78232,77300],[-5,6]],[[78227,77306],[-4,3]],[[78223,77309],[-1,10]],[[78222,77319],[1,5]],[[78223,77324],[-1,1]],[[78222,77325],[-3,4]],[[78219,77329],[2,8]],[[78221,77337],[0,1]],[[78221,77338],[-9,26]],[[78212,77364],[0,1]],[[78212,77365],[2,3]],[[78214,77368],[-4,1]],[[78210,77369],[0,-2]],[[78210,77367],[-2,1]],[[78208,77368],[-4,19]],[[78204,77387],[-7,18]],[[78197,77405],[3,6]],[[78200,77411],[0,2]],[[78200,77413],[-1,4]],[[78199,77417],[-1,6]],[[78198,77423],[3,24]],[[78201,77447],[2,4]],[[78203,77451],[0,2]],[[78203,77453],[-6,6]],[[78197,77459],[5,15]],[[78202,77474],[2,23]],[[78204,77497],[4,2]],[[78208,77499],[4,7]],[[78212,77506],[-1,8]],[[78211,77514],[-1,11]],[[78210,77525],[-5,11]],[[78205,77536],[1,3]],[[78206,77539],[3,0]],[[78209,77539],[-1,4]],[[78208,77543],[2,3]],[[78210,77546],[-3,25]],[[78207,77571],[4,4]],[[78211,77575],[-2,2]],[[78209,77577],[-3,-1]],[[78206,77576],[0,2]],[[78206,77578],[-8,28]],[[78198,77606],[-2,7]],[[78196,77613],[2,9]],[[78198,77622],[4,18]],[[78202,77640],[5,21]],[[78207,77661],[-11,9]],[[78196,77670],[6,4]],[[78202,77674],[-2,6]],[[78200,77680],[-1,7]],[[78199,77687],[-4,4]],[[78195,77691],[0,2]],[[78195,77693],[0,16]],[[78195,77709],[-2,1]],[[78193,77710],[4,7]],[[78197,77717],[-2,7]],[[78195,77724],[0,7]],[[78195,77731],[-8,11]],[[78187,77742],[-1,-3]],[[78186,77739],[-2,-1]],[[78184,77738],[-3,3]],[[78181,77741],[2,2]],[[78183,77743],[1,4]],[[78184,77747],[0,2]],[[78184,77749],[-4,2]],[[78180,77751],[-3,-5]],[[78177,77746],[-5,14]],[[78172,77760],[-4,8]],[[78168,77768],[1,6]],[[78169,77774],[-2,15]],[[78167,77789],[-2,5]],[[78165,77794],[3,8]],[[78168,77802],[-2,7]],[[78166,77809],[-5,6]],[[78161,77815],[-1,2]],[[78160,77817],[1,2]],[[78161,77819],[-3,3]],[[78158,77822],[-22,6]],[[78136,77828],[-1,10]],[[78135,77838],[-2,5]],[[78133,77843],[0,0]],[[78133,77843],[3,1]],[[78136,77844],[0,3]],[[78136,77847],[-4,10]],[[78132,77857],[0,3]],[[78132,77860],[-1,12]],[[78131,77872],[3,5]],[[78134,77877],[0,2]],[[78134,77879],[-2,10]],[[78132,77889],[-1,6]],[[78131,77895],[1,9]],[[78132,77904],[0,3]],[[78132,77907],[-2,3]],[[78130,77910],[-1,1]],[[78129,77911],[3,6]],[[78132,77917],[1,3]],[[78133,77920],[-5,12]],[[78128,77932],[-1,4]],[[78127,77936],[3,7]],[[78130,77943],[-2,18]],[[78128,77961],[-2,15]],[[78126,77976],[-1,10]],[[78125,77986],[-4,1]],[[78121,77987],[5,8]],[[78126,77995],[5,4]],[[78131,77999],[-6,17]],[[78125,78016],[-7,13]],[[78118,78029],[1,12]],[[78119,78041],[0,12]],[[78119,78053],[1,3]],[[78120,78056],[1,1]],[[78121,78057],[-4,7]],[[78117,78064],[-7,10]],[[78110,78074],[-11,30]],[[78099,78104],[-15,18]],[[78084,78122],[0,1]],[[78084,78123],[-1,7]],[[78083,78130],[-3,5]],[[78080,78135],[-4,8]],[[78076,78143],[-2,0]],[[78074,78143],[-7,14]],[[78067,78157],[-1,7]],[[78066,78164],[15,25]],[[78081,78189],[2,5]],[[78083,78194],[5,17]],[[78088,78211],[0,0]],[[78088,78211],[2,5]],[[78090,78216],[2,0]],[[78092,78216],[0,10]],[[78092,78226],[-5,37]],[[78087,78263],[0,5]],[[78087,78268],[-6,3]],[[78081,78271],[1,7]],[[78082,78278],[2,1]],[[78084,78279],[-3,4]],[[78081,78283],[8,14]],[[78089,78297],[0,4]],[[78089,78301],[0,2]],[[78089,78303],[-3,32]],[[78086,78335],[-1,4]],[[78085,78339],[-4,1]],[[78081,78340],[-1,1]],[[78080,78341],[-2,-2]],[[78078,78339],[-1,8]],[[78077,78347],[0,2]],[[78077,78349],[1,3]],[[78078,78352],[-1,7]],[[78077,78359],[-6,1]],[[78071,78360],[-1,0]],[[78070,78360],[-3,0]],[[78067,78360],[-5,0]],[[78062,78360],[-4,0]],[[78058,78360],[-7,18]],[[78051,78378],[-4,1]],[[78047,78379],[0,-3]],[[78047,78376],[-3,1]],[[78044,78377],[0,1]],[[78044,78378],[-1,3]],[[78043,78381],[-3,19]],[[78040,78400],[-4,4]],[[78036,78404],[2,3]],[[78038,78407],[7,3]],[[78045,78410],[1,2]],[[78046,78412],[-2,5]],[[78044,78417],[2,4]],[[78046,78421],[0,1]],[[78046,78422],[-5,12]],[[78041,78434],[-3,18]],[[78038,78452],[3,9]],[[78041,78461],[0,5]],[[78041,78466],[3,-2]],[[78044,78464],[0,4]],[[78044,78468],[0,5]],[[78044,78473],[-4,7]],[[78040,78480],[2,6]],[[78042,78486],[1,7]],[[78043,78493],[2,10]],[[78045,78503],[0,4]],[[78045,78507],[4,10]],[[78049,78517],[5,17]],[[78054,78534],[0,1]],[[78054,78535],[-2,9]],[[77628,76690],[2,5]],[[77630,76695],[0,0]],[[77630,76695],[-1,2]],[[77629,76697],[-11,9]],[[77618,76706],[-8,-6]],[[77610,76700],[-5,6]],[[77605,76706],[2,16]],[[77607,76722],[-2,12]],[[77605,76734],[-17,14]],[[77588,76748],[-15,10]],[[77573,76758],[-22,-5]],[[77551,76753],[-3,4]],[[77548,76757],[-5,19]],[[77543,76776],[20,41]],[[77563,76817],[4,18]],[[77567,76835],[0,32]],[[77567,76867],[-56,16]],[[77511,76883],[-1,4]],[[77510,76887],[-4,10]],[[77506,76897],[-13,-14]],[[77493,76883],[-21,-3]],[[77472,76880],[-38,3]],[[77434,76883],[-14,10]],[[77420,76893],[-1,8]],[[77419,76901],[7,5]],[[77426,76906],[17,20]],[[77443,76926],[-1,4]],[[77442,76930],[-44,26]],[[77398,76956],[-8,-16]],[[77390,76940],[-6,-5]],[[77384,76935],[-11,13]],[[77373,76948],[-5,15]],[[77368,76963],[-5,10]],[[77363,76973],[-22,46]],[[77341,77019],[-1,4]],[[77340,77023],[1,16]],[[77341,77039],[-8,9]],[[77333,77048],[-5,8]],[[77328,77056],[-26,25]],[[77302,77081],[-3,0]],[[77299,77081],[-28,-19]],[[77271,77062],[-17,-8]],[[77254,77054],[5,24]],[[77259,77078],[5,-4]],[[77264,77074],[2,9]],[[77266,77083],[-4,7]],[[77262,77090],[-12,5]],[[77250,77095],[-13,-3]],[[77237,77092],[-11,1]],[[77226,77093],[-2,-7]],[[77224,77086],[-6,-4]],[[77218,77082],[-6,-5]],[[77212,77077],[-19,24]],[[77193,77101],[-4,18]],[[77189,77119],[-2,2]],[[77187,77121],[-33,35]],[[77154,77156],[-7,6]],[[77147,77162],[5,8]],[[77152,77170],[-8,2]],[[77144,77172],[-23,15]],[[77121,77187],[-8,12]],[[77113,77199],[-2,13]],[[77111,77212],[-1,-1]],[[77110,77211],[-1,-1]],[[77109,77210],[-1,-1]],[[77108,77209],[-1,0]],[[77107,77209],[-2,-1]],[[77105,77208],[-1,-1]],[[77104,77207],[-2,0]],[[77102,77207],[-1,-1]],[[77101,77206],[0,0]],[[77101,77206],[-2,-1]],[[77099,77205],[-1,0]],[[77098,77205],[-4,-2]],[[77094,77203],[-1,0]],[[77093,77203],[0,-1]],[[77093,77202],[-1,0]],[[77092,77202],[-1,0]],[[77091,77202],[-1,-1]],[[77090,77201],[0,0]],[[77090,77201],[-2,0]],[[77088,77201],[-1,-1]],[[77087,77200],[0,0]],[[77087,77200],[-1,0]],[[77086,77200],[-1,-1]],[[77085,77199],[-3,-1]],[[77082,77198],[-1,0]],[[77081,77198],[0,-1]],[[77081,77197],[-2,-1]],[[77079,77196],[-1,-1]],[[77078,77195],[-1,-1]],[[77077,77194],[0,-1]],[[77077,77193],[0,-1]],[[77077,77192],[-1,0]],[[77076,77192],[0,-1]],[[77076,77191],[0,-1]],[[77076,77190],[-1,-2]],[[77075,77188],[0,-1]],[[77075,77187],[-1,-3]],[[77074,77184],[0,0]],[[77074,77184],[-1,-1]],[[77073,77183],[0,-1]],[[77073,77182],[0,0]],[[77073,77182],[-1,-1]],[[77072,77181],[0,0]],[[77072,77181],[-1,-2]],[[77071,77179],[-1,-1]],[[77070,77178],[-1,0]],[[77069,77178],[0,0]],[[77069,77178],[-1,0]],[[77068,77178],[-1,1]],[[77067,77179],[-1,1]],[[77066,77180],[0,1]],[[77066,77181],[0,0]],[[77066,77181],[-1,1]],[[77065,77182],[0,0]],[[77065,77182],[-1,1]],[[77064,77183],[-1,2]],[[77063,77185],[-2,2]],[[77061,77187],[0,0]],[[77061,77187],[-1,0]],[[77060,77187],[-2,-1]],[[77058,77186],[0,-1]],[[77058,77185],[-1,0]],[[77057,77185],[-2,-2]],[[77055,77183],[0,-1]],[[77055,77182],[0,0]],[[77055,77182],[-2,-2]],[[77053,77180],[-1,-1]],[[77052,77179],[-1,0]],[[77051,77179],[0,-1]],[[77051,77178],[0,0]],[[77051,77178],[-1,-2]],[[77050,77176],[0,0]],[[77050,77176],[0,-2]],[[77050,77174],[0,0]],[[77050,77174],[0,-2]],[[77050,77172],[0,-2]],[[77050,77170],[0,-1]],[[77050,77169],[1,-1]],[[77051,77168],[0,-1]],[[77051,77167],[0,-1]],[[77051,77166],[0,-1]],[[77051,77165],[-9,7]],[[77042,77172],[0,10]],[[77042,77182],[-5,9]],[[77037,77191],[-21,-3]],[[77016,77188],[-10,-9]],[[77006,77179],[-6,3]],[[77000,77182],[-1,8]],[[76999,77190],[-1,7]],[[76998,77197],[-1,11]],[[76997,77208],[-18,-5]],[[76979,77203],[-5,-1]],[[76974,77202],[-2,1]],[[76972,77203],[-22,12]],[[76950,77215],[-10,2]],[[76940,77217],[-11,3]],[[76929,77220],[-3,17]],[[76926,77237],[-6,4]],[[76920,77241],[-32,-13]],[[76888,77228],[-1,6]],[[76887,77234],[-10,-1]],[[76877,77233],[-27,-8]],[[76850,77225],[-5,17]],[[76845,77242],[-3,16]],[[76842,77258],[-18,22]],[[76824,77280],[-3,23]],[[76821,77303],[0,23]],[[76821,77326],[-12,-4]],[[76809,77322],[0,11]],[[76809,77333],[-2,8]],[[76807,77341],[3,17]],[[76810,77358],[-2,3]],[[76808,77361],[-22,16]],[[76786,77377],[2,17]],[[76788,77394],[-6,6]],[[76782,77400],[-8,-8]],[[76774,77392],[-7,9]],[[76767,77401],[-24,29]],[[76743,77430],[7,14]],[[76750,77444],[-13,11]],[[76737,77455],[-1,0]],[[76736,77455],[-14,16]],[[76722,77471],[-15,3]],[[76707,77474],[-2,3]],[[76705,77477],[0,1]],[[76705,77478],[0,2]],[[76705,77480],[0,2]],[[76705,77482],[-1,2]],[[76704,77484],[0,1]],[[76704,77485],[0,1]],[[76704,77486],[-1,0]],[[76703,77486],[0,2]],[[76703,77488],[0,0]],[[76703,77488],[-1,0]],[[76702,77488],[0,1]],[[76702,77489],[0,1]],[[76702,77490],[-1,0]],[[76701,77490],[0,2]],[[76701,77492],[-1,2]],[[76700,77494],[0,5]],[[76700,77499],[0,4]],[[76700,77503],[0,1]],[[76700,77504],[2,3]],[[76702,77507],[1,0]],[[76703,77507],[0,1]],[[76703,77508],[0,1]],[[76703,77509],[1,2]],[[76704,77511],[0,0]],[[76704,77511],[0,2]],[[76704,77513],[1,1]],[[76705,77514],[0,1]],[[76705,77515],[0,1]],[[76705,77516],[0,1]],[[76705,77517],[-1,1]],[[76704,77518],[0,1]],[[76704,77519],[0,1]],[[76704,77520],[0,0]],[[76704,77520],[-1,1]],[[76703,77521],[0,0]],[[76703,77521],[-1,1]],[[76702,77522],[-1,0]],[[76701,77522],[0,1]],[[76701,77523],[-1,1]],[[76700,77524],[-1,0]],[[76699,77524],[0,0]],[[76699,77524],[-1,0]],[[76698,77524],[-1,1]],[[76697,77525],[-1,0]],[[76696,77525],[0,1]],[[76696,77526],[0,1]],[[76696,77527],[-1,1]],[[76695,77528],[-1,0]],[[76694,77528],[0,1]],[[76694,77529],[0,0]],[[76694,77529],[-1,2]],[[76693,77531],[0,1]],[[76693,77532],[-1,0]],[[76692,77532],[0,1]],[[76692,77533],[0,0]],[[76692,77533],[-1,1]],[[76691,77534],[-2,2]],[[76689,77536],[0,0]],[[76689,77536],[-1,0]],[[76688,77536],[0,0]],[[76688,77536],[-1,0]],[[76687,77536],[-2,-1]],[[76685,77535],[0,0]],[[76685,77535],[-1,-1]],[[76684,77534],[-1,-1]],[[76683,77533],[-2,-3]],[[76681,77530],[-1,-1]],[[76680,77529],[-2,-2]],[[76678,77527],[-5,-3]],[[76673,77524],[-1,0]],[[76672,77524],[0,7]],[[76672,77531],[0,1]],[[76672,77532],[1,0]],[[76673,77532],[5,18]],[[76678,77550],[-9,12]],[[76669,77562],[-7,9]],[[76662,77571],[-38,41]],[[76624,77612],[-10,14]],[[76614,77626],[-2,5]],[[76612,77631],[-14,10]],[[76598,77641],[-7,7]],[[76591,77648],[-1,1]],[[76590,77649],[-1,4]],[[76589,77653],[0,0]],[[76589,77653],[1,5]],[[76590,77658],[0,1]],[[76590,77659],[1,2]],[[76591,77661],[0,2]],[[76591,77663],[-1,5]],[[76590,77668],[0,0]],[[76590,77668],[-1,0]],[[76589,77668],[0,0]],[[76589,77668],[-1,0]],[[76588,77668],[0,0]],[[76588,77668],[-1,0]],[[76587,77668],[0,0]],[[76587,77668],[-1,1]],[[76586,77669],[-1,-1]],[[76585,77668],[-1,0]],[[76584,77668],[-1,-1]],[[76583,77667],[-1,-1]],[[76582,77666],[-1,-1]],[[76581,77665],[-1,0]],[[76580,77665],[-1,-1]],[[76579,77664],[0,0]],[[76579,77664],[-1,0]],[[76578,77664],[-4,0]],[[76574,77664],[-3,2]],[[76571,77666],[0,1]],[[76571,77667],[-1,0]],[[76570,77667],[-1,0]],[[76569,77667],[-1,0]],[[76568,77667],[-1,1]],[[76567,77668],[-1,1]],[[76566,77669],[0,1]],[[76566,77670],[-1,0]],[[76565,77670],[-5,4]],[[76560,77674],[-1,1]],[[76559,77675],[-1,0]],[[76558,77675],[-2,0]],[[76556,77675],[-2,0]],[[76554,77675],[-1,0]],[[76553,77675],[-1,-1]],[[76552,77674],[0,-1]],[[76552,77673],[-1,0]],[[76551,77673],[0,0]],[[76551,77673],[-6,-10]],[[76545,77663],[0,0]],[[76545,77663],[0,-1]],[[76545,77662],[0,-1]],[[76545,77661],[0,0]],[[76545,77661],[0,-1]],[[76545,77660],[0,0]],[[76545,77660],[2,-4]],[[76547,77656],[0,-3]],[[76547,77653],[-4,-3]],[[76543,77650],[-3,4]],[[76540,77654],[0,0]],[[76540,77654],[-1,3]],[[76539,77657],[-1,2]],[[76538,77659],[0,0]],[[76538,77659],[-1,2]],[[76537,77661],[0,2]],[[76537,77663],[-1,1]],[[76536,77664],[0,1]],[[76536,77665],[0,0]],[[76536,77665],[-2,4]],[[76534,77669],[-2,2]],[[76532,77671],[0,0]],[[76532,77671],[-1,1]],[[76531,77672],[-1,1]],[[76530,77673],[0,0]],[[76530,77673],[-4,3]],[[76526,77676],[-4,1]],[[76522,77677],[2,35]],[[76524,77712],[-1,19]],[[76523,77731],[-8,8]],[[76515,77739],[-7,16]],[[76508,77755],[-4,8]],[[76504,77763],[-7,26]],[[76497,77789],[-17,-4]],[[76480,77785],[-8,19]],[[76472,77804],[-4,-16]],[[76468,77788],[-10,11]],[[76458,77799],[-10,4]],[[76448,77803],[-1,16]],[[76447,77819],[-2,6]],[[76445,77825],[-13,7]],[[76432,77832],[-12,1]],[[76420,77833],[0,2]],[[76420,77835],[10,19]],[[76430,77854],[-12,13]],[[76418,77867],[16,16]],[[76434,77883],[-1,8]],[[76433,77891],[-18,2]],[[76415,77893],[8,13]],[[76423,77906],[6,40]],[[76429,77946],[4,30]],[[76433,77976],[-19,12]],[[76414,77988],[-2,5]],[[76412,77993],[-9,12]],[[76403,78005],[4,3]],[[76407,78008],[-4,9]],[[76403,78017],[-2,54]],[[76401,78071],[-4,4]],[[76397,78075],[-17,13]],[[76380,78088],[1,14]],[[76381,78102],[-6,25]],[[76375,78127],[6,9]],[[76381,78136],[12,4]],[[76393,78140],[-3,8]],[[76390,78148],[14,9]],[[76404,78157],[0,12]],[[76404,78169],[6,7]],[[76410,78176],[1,1]],[[76411,78177],[-2,6]],[[76409,78183],[-4,3]],[[76405,78186],[3,8]],[[76408,78194],[0,10]],[[76408,78204],[15,49]],[[76423,78253],[7,9]],[[76430,78262],[3,1]],[[76433,78263],[-17,45]],[[76416,78308],[-3,6]],[[76413,78314],[1,30]],[[76414,78344],[4,6]],[[76418,78350],[-11,0]],[[76407,78350],[-3,2]],[[76404,78352],[6,10]],[[76410,78362],[-4,2]],[[76406,78364],[-10,15]],[[76396,78379],[5,3]],[[76401,78382],[2,2]],[[76403,78384],[7,16]],[[76410,78400],[2,1]],[[76412,78401],[-9,19]],[[76403,78420],[2,9]],[[76405,78429],[87,196]],[[76492,78625],[9,3]],[[76501,78628],[1,0]],[[76502,78628],[0,-3]],[[76502,78625],[6,-3]],[[76508,78622],[2,2]],[[76510,78624],[7,16]],[[76517,78640],[5,24]],[[76522,78664],[-2,6]],[[76520,78670],[4,10]],[[76524,78680],[0,7]],[[76524,78687],[-8,1]],[[76516,78688],[-1,0]],[[76515,78688],[1,13]],[[76516,78701],[1,4]],[[76517,78705],[0,7]],[[76517,78712],[10,13]],[[76527,78725],[4,12]],[[76531,78737],[4,36]],[[76535,78773],[-2,15]],[[76533,78788],[4,14]],[[76537,78802],[10,72]],[[76547,78874],[1,9]],[[76548,78883],[6,8]],[[76554,78891],[2,3]],[[76556,78894],[3,14]],[[76559,78908],[2,6]],[[76561,78914],[7,14]],[[76568,78928],[2,4]],[[76570,78932],[1,4]],[[77602,76389],[-14,38]],[[77588,76427],[4,14]],[[77592,76441],[-2,7]],[[77590,76448],[-1,4]],[[77589,76452],[7,11]],[[77596,76463],[2,6]],[[77598,76469],[3,20]],[[77601,76489],[1,19]],[[77602,76508],[2,6]],[[77604,76514],[12,17]],[[77616,76531],[-9,29]],[[77607,76560],[-9,17]],[[77598,76577],[2,4]],[[77600,76581],[3,1]],[[77603,76582],[7,4]],[[77610,76586],[7,2]],[[77617,76588],[-15,20]],[[77602,76608],[9,22]],[[77611,76630],[14,-3]],[[77625,76627],[0,4]],[[77625,76631],[0,18]],[[77625,76649],[4,0]],[[77629,76649],[-4,27]],[[77625,76676],[-6,8]],[[77619,76684],[9,6]],[[68741,77170],[276,357],[272,674],[-12,516],[256,566],[439,348],[233,13],[59,224]],[[71452,76757],[312,456],[395,-99],[364,220],[350,679]],[[80538,75589],[-5,16]],[[80533,75605],[-14,-6]],[[80519,75599],[-2,2]],[[80517,75601],[-7,6]],[[80510,75607],[-21,-1]],[[80489,75606],[-12,1]],[[80477,75607],[0,2]],[[80477,75609],[-2,5]],[[80475,75614],[-4,-4]],[[80471,75610],[-3,0]],[[80468,75610],[-17,14]],[[80451,75624],[-8,7]],[[80443,75631],[-7,6]],[[80436,75637],[-2,-3]],[[80434,75634],[-1,-5]],[[80433,75629],[-1,-1]],[[80432,75628],[-2,-1]],[[80430,75627],[0,6]],[[80430,75633],[-13,13]],[[80417,75646],[-1,1]],[[80416,75647],[-1,3]],[[80415,75650],[-8,11]],[[80407,75661],[-10,17]],[[80397,75678],[-11,3]],[[80386,75681],[-2,3]],[[80384,75684],[-7,0]],[[80377,75684],[-10,-3]],[[80367,75681],[-7,7]],[[80360,75688],[-5,9]],[[80355,75697],[-2,4]],[[80353,75701],[-6,16]],[[80347,75717],[-20,27]],[[80327,75744],[0,5]],[[80327,75749],[-21,44]],[[80306,75793],[-4,-1]],[[80302,75792],[2,13]],[[80304,75805],[-33,40]],[[80271,75845],[0,-3]],[[80271,75842],[-2,-2]],[[80269,75840],[-7,6]],[[80262,75846],[-13,4]],[[80249,75850],[1,8]],[[80250,75858],[11,15]],[[80261,75873],[-10,26]],[[80251,75899],[-12,28]],[[80239,75927],[5,36]],[[80244,75963],[-2,9]],[[80242,75972],[0,4]],[[80242,75976],[8,35]],[[80250,76011],[2,13]],[[80252,76024],[1,6]],[[80253,76030],[4,9]],[[80257,76039],[0,2]],[[80257,76041],[11,20]],[[80268,76061],[-10,28]],[[80258,76089],[-5,16]],[[80253,76105],[-2,3]],[[80251,76108],[-22,16]],[[80229,76124],[0,2]],[[80229,76126],[1,29]],[[80230,76155],[1,11]],[[80231,76166],[1,2]],[[80232,76168],[-10,15]],[[80222,76183],[0,4]],[[80222,76187],[6,20]],[[80228,76207],[-4,0]],[[80224,76207],[0,3]],[[80224,76210],[0,1]],[[80224,76211],[5,7]],[[80229,76218],[-5,2]],[[80224,76220],[-2,0]],[[80222,76220],[1,6]],[[80223,76226],[-4,8]],[[80219,76234],[1,5]],[[80220,76239],[0,5]],[[80220,76244],[-8,-2]],[[80212,76242],[-1,0]],[[80211,76242],[0,15]],[[80211,76257],[-2,0]],[[80209,76257],[-4,-1]],[[80205,76256],[-2,1]],[[80203,76257],[-2,-2]],[[80201,76255],[-1,-1]],[[80200,76254],[-7,16]],[[80193,76270],[-5,3]],[[80188,76273],[-3,7]],[[80185,76280],[4,4]],[[80189,76284],[-1,4]],[[80188,76288],[-1,0]],[[80187,76288],[0,0]],[[80187,76288],[-1,1]],[[80186,76289],[0,0]],[[80186,76289],[-1,0]],[[80185,76289],[0,1]],[[80185,76290],[-1,0]],[[80184,76290],[-3,1]],[[80181,76291],[-1,0]],[[80180,76291],[-1,0]],[[80179,76291],[0,0]],[[80179,76291],[-1,1]],[[80178,76292],[0,1]],[[80178,76293],[0,2]],[[80178,76295],[0,0]],[[80178,76295],[0,2]],[[80178,76297],[0,0]],[[80178,76297],[0,2]],[[80178,76299],[-1,2]],[[80177,76301],[0,1]],[[80177,76302],[0,0]],[[80177,76302],[-1,1]],[[80176,76303],[0,1]],[[80176,76304],[0,0]],[[80176,76304],[-3,0]],[[80173,76304],[0,0]],[[80173,76304],[-1,1]],[[80172,76305],[-1,1]],[[80171,76306],[0,1]],[[80171,76307],[-1,1]],[[80170,76308],[0,0]],[[80170,76308],[-1,0]],[[80169,76308],[0,1]],[[80169,76309],[-1,1]],[[80168,76310],[0,0]],[[80168,76310],[-1,2]],[[80167,76312],[0,0]],[[80167,76312],[-1,2]],[[80166,76314],[0,2]],[[80166,76316],[0,3]],[[80166,76319],[0,1]],[[80166,76320],[-1,3]],[[80165,76323],[-1,0]],[[80164,76323],[0,1]],[[80164,76324],[0,0]],[[80164,76324],[-1,0]],[[80163,76324],[0,1]],[[80163,76325],[-2,3]],[[80161,76328],[-1,1]],[[80160,76329],[0,1]],[[80160,76330],[-1,2]],[[80159,76332],[0,0]],[[80159,76332],[0,1]],[[80159,76333],[-1,1]],[[80158,76334],[-1,2]],[[80157,76336],[-3,0]],[[80154,76336],[-2,-1]],[[80152,76335],[0,-1]],[[80152,76334],[-1,0]],[[80151,76334],[-1,0]],[[80150,76334],[-1,2]],[[80149,76336],[0,0]],[[80149,76336],[0,0]],[[80149,76336],[0,2]],[[80149,76338],[0,1]],[[80149,76339],[1,1]],[[80150,76340],[1,0]],[[80151,76340],[1,2]],[[80152,76342],[0,0]],[[80152,76342],[0,2]],[[80152,76344],[0,1]],[[80152,76345],[-1,1]],[[80151,76346],[-6,10]],[[80145,76356],[2,4]],[[80147,76360],[-1,1]],[[80146,76361],[-3,2]],[[80143,76363],[-8,0]],[[80135,76363],[-2,8]],[[80133,76371],[0,3]],[[80133,76374],[1,12]],[[80134,76386],[-20,21]],[[80114,76407],[-5,-5]],[[80109,76402],[-7,3]],[[80102,76405],[-5,13]],[[80097,76418],[-17,-1]],[[80080,76417],[-11,2]],[[80069,76419],[-6,2]],[[80063,76421],[-6,3]],[[80057,76424],[-19,5]],[[80038,76429],[-6,0]],[[80032,76429],[-7,10]],[[80025,76439],[-10,9]],[[80015,76448],[-5,-3]],[[80010,76445],[-4,3]],[[80006,76448],[-5,16]],[[80001,76464],[2,2]],[[80003,76466],[4,-4]],[[80007,76462],[5,4]],[[80012,76466],[3,1]],[[80015,76467],[3,22]],[[80018,76489],[-6,23]],[[80012,76512],[-6,6]],[[80006,76518],[5,7]],[[80011,76525],[0,3]],[[80011,76528],[-8,6]],[[80003,76534],[-23,26]],[[79980,76560],[-3,-3]],[[79977,76557],[-6,8]],[[79971,76565],[-5,2]],[[79966,76567],[-4,13]],[[79962,76580],[-3,-2]],[[79959,76578],[-4,8]],[[79955,76586],[-17,12]],[[79938,76598],[-5,10]],[[79933,76608],[2,2]],[[79935,76610],[3,2]],[[79938,76612],[-14,12]],[[79924,76624],[-6,17]],[[79918,76641],[18,33]],[[79936,76674],[1,2]],[[79937,76676],[-5,3]],[[79932,76679],[-2,-1]],[[79930,76678],[-4,-3]],[[79926,76675],[-11,13]],[[79915,76688],[-2,24]],[[79913,76712],[-3,0]],[[79910,76712],[1,14]],[[79911,76726],[4,9]],[[79915,76735],[15,21]],[[79930,76756],[-6,-7]],[[79924,76749],[-1,2]],[[79923,76751],[-1,5]],[[79922,76756],[-6,4]],[[79916,76760],[-6,15]],[[79910,76775],[-6,11]],[[79904,76786],[-1,11]],[[79903,76797],[2,2]],[[79905,76799],[13,-3]],[[79918,76796],[4,4]],[[79922,76800],[-1,13]],[[79921,76813],[-6,5]],[[79915,76818],[-1,1]],[[79914,76819],[-5,10]],[[79909,76829],[-11,3]],[[79898,76832],[-2,2]],[[79896,76834],[0,15]],[[79896,76849],[-7,19]],[[79889,76868],[0,3]],[[79889,76871],[11,24]],[[79900,76895],[-6,3]],[[79894,76898],[-2,8]],[[79892,76906],[1,21]],[[79893,76927],[0,38]],[[79893,76965],[-7,17]],[[79886,76982],[-2,10]],[[79884,76992],[1,6]],[[78177,75917],[-7,9]],[[78170,75926],[-1,1]],[[78169,75927],[-1,5]],[[78168,75932],[-5,7]],[[78163,75939],[2,1]],[[78165,75940],[4,1]],[[78169,75941],[0,1]],[[78169,75942],[3,5]],[[78172,75947],[-3,5]],[[78169,75952],[-11,11]],[[78158,75963],[-2,1]],[[78156,75964],[-6,17]],[[78150,75981],[-3,63]],[[78147,76044],[17,42]],[[78164,76086],[1,12]],[[78165,76098],[-4,10]],[[78161,76108],[-4,-4]],[[78157,76104],[-7,-1]],[[78150,76103],[-10,6]],[[78140,76109],[18,19]],[[78158,76128],[-5,7]],[[78153,76135],[2,4]],[[78155,76139],[-18,19]],[[78137,76158],[-1,9]],[[78136,76167],[-6,-1]],[[78130,76166],[-6,-4]],[[78124,76162],[-18,17]],[[78106,76179],[1,4]],[[78107,76183],[1,4]],[[78108,76187],[-19,16]],[[78089,76203],[-6,6]],[[78083,76209],[-4,12]],[[78079,76221],[10,1]],[[78089,76222],[-1,4]],[[78088,76226],[-1,1]],[[78087,76227],[-3,7]],[[78084,76234],[-1,1]],[[78083,76235],[-4,-1]],[[78079,76234],[-2,1]],[[78077,76235],[-8,12]],[[78069,76247],[5,7]],[[78074,76254],[1,9]],[[78075,76263],[-3,16]],[[78072,76279],[-1,5]],[[78071,76284],[-19,41]],[[78052,76325],[-16,3]],[[78036,76328],[-17,5]],[[78019,76333],[-4,4]],[[78015,76337],[-5,10]],[[78010,76347],[-17,25]],[[77993,76372],[-1,3]],[[77992,76375],[-5,21]],[[77987,76396],[-1,2]],[[77986,76398],[-9,10]],[[77977,76408],[-3,4]],[[77974,76412],[-9,24]],[[77965,76436],[0,9]],[[77965,76445],[1,6]],[[77966,76451],[1,7]],[[77967,76458],[0,1]],[[77967,76459],[0,6]],[[77967,76465],[-3,1]],[[77964,76466],[-5,-9]],[[77959,76457],[-1,0]],[[77958,76457],[-2,4]],[[77956,76461],[-9,7]],[[77947,76468],[-1,-11]],[[77946,76457],[-8,6]],[[77938,76463],[1,8]],[[77939,76471],[5,9]],[[77944,76480],[0,9]],[[77944,76489],[-1,2]],[[77943,76491],[-13,4]],[[77930,76495],[-1,-1]],[[77929,76494],[-2,-6]],[[77927,76488],[-1,-9]],[[77926,76479],[-21,19]],[[77905,76498],[-1,7]],[[77904,76505],[10,6]],[[77914,76511],[6,16]],[[77920,76527],[-11,18]],[[77909,76545],[-12,17]],[[77897,76562],[7,9]],[[77904,76571],[2,4]],[[77906,76575],[-7,1]],[[77899,76576],[-5,4]],[[77894,76580],[-11,-4]],[[77883,76576],[-3,-2]],[[77880,76574],[-10,24]],[[77870,76598],[-14,7]],[[77856,76605],[-1,-1]],[[77855,76604],[-10,-21]],[[77845,76583],[-4,-9]],[[77841,76574],[-3,1]],[[77838,76575],[-13,-2]],[[77825,76573],[-1,3]],[[77824,76576],[1,2]],[[77825,76578],[7,12]],[[77832,76590],[1,3]],[[77833,76593],[-19,31]],[[77814,76624],[-3,12]],[[77811,76636],[-4,6]],[[77807,76642],[-7,3]],[[77800,76645],[-1,3]],[[77799,76648],[-4,1]],[[77795,76649],[-30,-30]],[[77765,76619],[0,12]],[[77765,76631],[-1,4]],[[77764,76635],[-9,1]],[[77755,76636],[-5,-3]],[[77750,76633],[-1,4]],[[77749,76637],[-1,0]],[[77748,76637],[-13,0]],[[77735,76637],[-6,2]],[[77729,76639],[-1,1]],[[77728,76640],[1,4]],[[77729,76644],[6,19]],[[77735,76663],[-1,3]],[[77734,76666],[-2,2]],[[77732,76668],[-12,-1]],[[77720,76667],[-1,-1]],[[77719,76666],[-4,-8]],[[77715,76658],[0,3]],[[77715,76661],[0,3]],[[77715,76664],[-5,-2]],[[77710,76662],[-8,2]],[[77702,76664],[-6,0]],[[77696,76664],[-4,-4]],[[77692,76660],[-1,-3]],[[77691,76657],[1,-5]],[[77692,76652],[6,-13]],[[77698,76639],[-10,2]],[[77688,76641],[-2,-11]],[[77686,76630],[-8,-2]],[[77678,76628],[-11,11]],[[77667,76639],[-2,2]],[[77665,76641],[-7,-1]],[[77658,76640],[-13,0]],[[77645,76640],[-5,5]],[[77640,76645],[-7,22]],[[77633,76667],[-3,15]],[[77630,76682],[-2,8]],[[79206,75770],[0,1]],[[79206,75771],[4,7]],[[79210,75778],[-2,2]],[[79208,75780],[-6,2]],[[79202,75782],[1,7]],[[79203,75789],[-7,8]],[[79196,75797],[0,5]],[[79196,75802],[4,25]],[[79200,75827],[2,7]],[[79202,75834],[1,2]],[[79203,75836],[0,17]],[[79203,75853],[3,11]],[[79206,75864],[1,10]],[[79207,75874],[4,8]],[[79211,75882],[12,20]],[[79223,75902],[-2,11]],[[79221,75913],[-2,8]],[[79219,75921],[0,2]],[[79219,75923],[-18,28]],[[79201,75951],[-7,24]],[[79194,75975],[8,22]],[[79202,75997],[-2,8]],[[79200,76005],[-6,18]],[[79194,76023],[-3,7]],[[79191,76030],[0,4]],[[79191,76034],[-3,9]],[[79188,76043],[-3,3]],[[79185,76046],[-3,6]],[[79182,76052],[-6,24]],[[79176,76076],[-1,12]],[[79175,76088],[6,18]],[[79181,76106],[0,4]],[[79181,76110],[-1,9]],[[79180,76119],[0,7]],[[79180,76126],[1,35]],[[79181,76161],[-1,35]],[[79180,76196],[-2,18]],[[79178,76214],[-4,6]],[[79174,76220],[-11,10]],[[79163,76230],[-4,-1]],[[79159,76229],[4,17]],[[79163,76246],[-9,14]],[[79154,76260],[-7,13]],[[79147,76273],[1,2]],[[79148,76275],[-6,13]],[[79142,76288],[-1,0]],[[79141,76288],[-7,-7]],[[79134,76281],[16,43]],[[79150,76324],[0,1]],[[79150,76325],[2,6]],[[79152,76331],[13,-3]],[[79165,76328],[7,29]],[[79172,76357],[0,6]],[[79172,76363],[3,-1]],[[79175,76362],[5,-1]],[[79180,76361],[4,7]],[[79184,76368],[-7,4]],[[79177,76372],[-7,3]],[[79170,76375],[-1,6]],[[79169,76381],[-3,-1]],[[79166,76380],[-2,13]],[[79164,76393],[10,2]],[[79174,76395],[1,9]],[[79175,76404],[0,1]],[[79175,76405],[5,7]],[[79180,76412],[3,4]],[[79183,76416],[27,-14]],[[79210,76402],[6,0]],[[79216,76402],[0,3]],[[79216,76405],[-4,8]],[[79212,76413],[0,1]],[[79212,76414],[-12,18]],[[79200,76432],[-3,10]],[[79197,76442],[-6,1]],[[79191,76443],[4,9]],[[79195,76452],[1,3]],[[79196,76455],[2,12]],[[79198,76467],[2,1]],[[79200,76468],[15,3]],[[79215,76471],[8,21]],[[79223,76492],[7,3]],[[79230,76495],[26,10]],[[79256,76505],[1,0]],[[79257,76505],[2,13]],[[79259,76518],[-2,6]],[[79257,76524],[0,3]],[[79257,76527],[4,4]],[[79261,76531],[4,6]],[[79265,76537],[-3,21]],[[79262,76558],[4,13]],[[79266,76571],[0,6]],[[79266,76577],[0,8]],[[79266,76585],[6,0]],[[79272,76585],[2,2]],[[79274,76587],[-2,8]],[[79272,76595],[-20,7]],[[79252,76602],[3,4]],[[79255,76606],[10,9]],[[79265,76615],[1,9]],[[79266,76624],[-6,2]],[[79260,76626],[2,19]],[[79262,76645],[-4,11]],[[79258,76656],[1,4]],[[79259,76660],[-4,9]],[[79255,76669],[-1,4]],[[79254,76673],[17,46]],[[79271,76719],[1,4]],[[79272,76723],[0,4]],[[79272,76727],[0,1]],[[79272,76728],[-9,34]],[[79263,76762],[-1,6]],[[79262,76768],[-2,7]],[[79260,76775],[3,11]],[[79263,76786],[2,6]],[[79265,76792],[1,7]],[[79266,76799],[-5,3]],[[79261,76802],[27,19]],[[79288,76821],[1,1]],[[79289,76822],[8,7]],[[79297,76829],[1,4]],[[79298,76833],[-3,6]],[[79295,76839],[4,9]],[[79299,76848],[-11,20]],[[79288,76868],[-1,2]],[[79287,76870],[-1,7]],[[79286,76877],[0,2]],[[79286,76879],[0,4]],[[79286,76883],[11,5]],[[79297,76888],[2,6]],[[79299,76894],[0,2]],[[79299,76896],[-12,7]],[[79287,76903],[-2,2]],[[79285,76905],[-1,13]],[[79284,76918],[19,27]],[[79303,76945],[1,1]],[[79304,76946],[4,9]],[[79308,76955],[1,4]],[[79309,76959],[24,37]],[[79333,76996],[6,2]],[[79339,76998],[0,7]],[[79339,77005],[-6,-1]],[[79333,77004],[-3,-1]],[[79330,77003],[-4,12]],[[79326,77015],[8,3]],[[79334,77018],[5,4]],[[79339,77022],[5,-1]],[[79344,77021],[23,45]],[[79367,77066],[2,7]],[[79369,77073],[9,15]],[[79378,77088],[8,-4]],[[79386,77084],[9,-5]],[[79395,77079],[2,-1]],[[79397,77078],[-1,-2]],[[79396,77076],[2,-1]],[[79398,77075],[1,2]],[[79399,77077],[9,5]],[[79408,77082],[3,0]],[[79411,77082],[7,4]],[[79418,77086],[4,-2]],[[79422,77084],[1,1]],[[79423,77085],[-3,5]],[[79420,77090],[4,5]],[[79424,77095],[-4,1]],[[79420,77096],[0,3]],[[79420,77099],[7,10]],[[79427,77109],[4,2]],[[79431,77111],[2,1]],[[79433,77112],[0,3]],[[79433,77115],[-4,3]],[[79429,77118],[7,3]],[[79436,77121],[1,0]],[[79437,77121],[3,8]],[[79440,77129],[4,1]],[[79444,77130],[0,0]],[[79444,77130],[2,-1]],[[79446,77129],[1,0]],[[79447,77129],[0,0]],[[79447,77129],[2,0]],[[79449,77129],[2,1]],[[79451,77130],[1,0]],[[79452,77130],[1,-1]],[[79453,77129],[1,-1]],[[79454,77128],[0,0]],[[79454,77128],[1,-1]],[[79455,77127],[0,0]],[[79455,77127],[0,0]],[[79455,77127],[4,2]],[[79459,77129],[2,3]],[[79461,77132],[0,1]],[[79461,77133],[1,1]],[[79462,77134],[1,1]],[[79463,77135],[0,0]],[[79463,77135],[2,3]],[[79465,77138],[2,0]],[[79467,77138],[1,0]],[[79468,77138],[0,0]],[[79468,77138],[2,1]],[[79470,77139],[2,2]],[[79472,77141],[2,0]],[[79474,77141],[0,0]],[[79474,77141],[4,0]],[[79478,77141],[1,1]],[[79479,77142],[2,1]],[[79481,77143],[5,5]],[[79486,77148],[1,1]],[[79487,77149],[2,0]],[[79489,77149],[1,0]],[[79490,77149],[1,0]],[[79491,77149],[3,-2]],[[79494,77147],[1,0]],[[79495,77147],[0,0]],[[79495,77147],[2,0]],[[79497,77147],[1,1]],[[79498,77148],[2,-1]],[[79500,77147],[0,-1]],[[79500,77146],[0,-1]],[[79500,77145],[1,-2]],[[79501,77143],[2,-1]],[[79503,77142],[7,13]],[[79510,77155],[13,-11]],[[79523,77144],[1,-1]],[[79524,77143],[5,-2]],[[79529,77141],[2,2]],[[79531,77143],[6,0]],[[79537,77143],[2,-2]],[[79539,77141],[2,-6]],[[79541,77135],[3,0]],[[79544,77135],[14,6]],[[79558,77141],[10,4]],[[79568,77145],[9,6]],[[79577,77151],[13,-5]],[[79590,77146],[8,2]],[[79598,77148],[11,4]],[[79609,77152],[2,5]],[[79611,77157],[14,-5]],[[79625,77152],[3,-6]],[[79628,77146],[-1,-16]],[[79627,77130],[2,-3]],[[79629,77127],[2,-10]],[[79631,77117],[1,-1]],[[79632,77116],[0,-1]],[[79632,77115],[2,-1]],[[79634,77114],[2,0]],[[79636,77114],[2,1]],[[79638,77115],[1,1]],[[79639,77116],[9,-2]],[[79648,77114],[1,0]],[[79649,77114],[12,-4]],[[79661,77110],[2,-4]],[[79663,77106],[1,-3]],[[79664,77103],[1,-2]],[[79665,77101],[0,-7]],[[79665,77094],[-3,-4]],[[79662,77090],[0,-3]],[[79662,77087],[0,-2]],[[79662,77085],[-2,-4]],[[79660,77081],[-11,-14]],[[79649,77067],[8,-7]],[[79657,77060],[6,-8]],[[79663,77052],[2,-2]],[[79665,77050],[3,1]],[[79668,77051],[1,7]],[[79669,77058],[4,0]],[[79673,77058],[-1,-7]],[[79672,77051],[0,-4]],[[79672,77047],[2,-2]],[[79674,77045],[-1,-7]],[[79673,77038],[0,-2]],[[79673,77036],[-1,-1]],[[79672,77035],[0,0]],[[79672,77035],[0,-1]],[[79672,77034],[0,0]],[[79672,77034],[0,-1]],[[79672,77033],[-1,-1]],[[79671,77032],[0,-1]],[[79671,77031],[0,-3]],[[79671,77028],[-1,-1]],[[79670,77027],[0,-3]],[[79670,77024],[0,0]],[[79670,77024],[0,-1]],[[79670,77023],[0,-1]],[[79670,77022],[0,-1]],[[79670,77021],[0,-1]],[[79670,77020],[0,-2]],[[79670,77018],[0,0]],[[79670,77018],[0,-1]],[[79670,77017],[0,-1]],[[79670,77016],[1,-1]],[[79671,77015],[0,-1]],[[79671,77014],[1,-1]],[[79672,77013],[4,0]],[[79676,77013],[0,0]],[[79676,77013],[1,1]],[[79677,77014],[0,1]],[[79677,77015],[1,1]],[[79678,77016],[0,0]],[[79678,77016],[1,1]],[[79679,77017],[0,1]],[[79679,77018],[1,2]],[[79680,77020],[1,2]],[[79681,77022],[3,5]],[[79684,77027],[0,1]],[[79684,77028],[1,1]],[[79685,77029],[0,0]],[[79685,77029],[0,0]],[[79685,77029],[1,0]],[[79686,77029],[1,-1]],[[79687,77028],[1,-1]],[[79688,77027],[0,0]],[[79688,77027],[1,-2]],[[79689,77025],[0,-1]],[[79689,77024],[1,-2]],[[79690,77022],[1,-1]],[[79691,77021],[1,-1]],[[79692,77020],[0,-1]],[[79692,77019],[1,0]],[[79693,77019],[0,0]],[[79693,77019],[0,0]],[[79693,77019],[2,0]],[[79695,77019],[1,1]],[[79696,77020],[0,1]],[[79696,77021],[2,1]],[[79698,77022],[0,0]],[[79698,77022],[1,2]],[[79699,77024],[3,2]],[[79702,77026],[0,0]],[[79702,77026],[2,0]],[[79704,77026],[1,-1]],[[79705,77025],[1,0]],[[79706,77025],[1,0]],[[79707,77025],[0,-1]],[[79707,77024],[1,0]],[[79708,77024],[0,0]],[[79708,77024],[1,0]],[[79709,77024],[0,-1]],[[79709,77023],[1,0]],[[79710,77023],[3,-4]],[[79713,77019],[0,-1]],[[79713,77018],[0,0]],[[79713,77018],[1,-1]],[[79714,77017],[1,-1]],[[79715,77016],[0,-1]],[[79715,77015],[0,0]],[[79715,77015],[1,-1]],[[79716,77014],[0,0]],[[79716,77014],[0,-1]],[[79716,77013],[1,-1]],[[79717,77012],[1,-1]],[[79718,77011],[0,0]],[[79718,77011],[0,-2]],[[79718,77009],[1,-2]],[[79719,77007],[1,-2]],[[79720,77005],[0,0]],[[79720,77005],[1,-2]],[[79721,77003],[0,0]],[[79721,77003],[0,-1]],[[79721,77002],[1,-1]],[[79722,77001],[0,-1]],[[79722,77000],[0,0]],[[79722,77000],[1,-3]],[[79723,76997],[1,-3]],[[79724,76994],[1,0]],[[79725,76994],[1,-1]],[[79726,76993],[1,0]],[[79727,76993],[1,2]],[[79728,76995],[1,1]],[[79729,76996],[1,0]],[[79730,76996],[0,1]],[[79730,76997],[1,1]],[[79731,76998],[1,0]],[[79732,76998],[0,0]],[[79732,76998],[1,1]],[[79733,76999],[0,0]],[[79733,76999],[3,0]],[[79736,76999],[0,0]],[[79736,76999],[1,0]],[[79737,76999],[0,0]],[[79737,76999],[1,0]],[[79738,76999],[1,0]],[[79739,76999],[0,0]],[[79739,76999],[1,-1]],[[79740,76998],[0,-1]],[[79740,76997],[2,-3]],[[79742,76994],[0,-1]],[[79742,76993],[0,-1]],[[79742,76992],[0,-1]],[[79742,76991],[0,-1]],[[79742,76990],[0,-2]],[[79742,76988],[0,0]],[[79742,76988],[0,-1]],[[79742,76987],[0,-1]],[[79742,76986],[0,0]],[[79742,76986],[-1,-2]],[[79741,76984],[0,0]],[[79741,76984],[0,-2]],[[79741,76982],[0,0]],[[79741,76982],[0,-1]],[[79741,76981],[0,-1]],[[79741,76980],[0,-1]],[[79741,76979],[1,-1]],[[79742,76978],[0,0]],[[79742,76978],[3,-7]],[[79745,76971],[1,0]],[[79746,76971],[5,-7]],[[79751,76964],[31,-14]],[[79782,76950],[21,19]],[[79803,76969],[2,13]],[[79805,76982],[19,7]],[[79824,76989],[19,6]],[[79843,76995],[32,7]],[[79875,77002],[7,-3]],[[79882,76999],[3,-1]],[[71310,76677],[142,80]],[[71282,75708],[170,1049]],[[72488,73876],[243,416],[10,639],[144,234],[-43,258],[325,315],[82,436],[-41,443],[96,426],[-13,462],[-418,508]],[[68956,73769],[17,552],[310,641],[199,1015],[-7,393],[321,523],[207,124],[425,1186],[-192,790],[-40,474],[114,377]],[[68955,73769],[1,0]],[[69347,72887],[-312,590],[-79,292]],[[69353,72877],[-6,7]],[[21034,39396],[109,-34]],[[21034,39396],[-49,-11]],[[24406,67157],[-2,-2]],[[19034,64236],[2,-17]],[[19036,64219],[286,-169]],[[19036,64219],[-87,-272],[129,-636]],[[19078,63311],[-45,-68]],[[19078,63311],[113,-355]],[[19643,63427],[-47,-135]],[[19596,63292],[-42,143]],[[19596,63292],[-186,-443]],[[18300,62053],[0,0]],[[18300,62053],[-208,-428],[-52,-406]],[[18040,61219],[225,-13]],[[18040,61219],[-19,-218]],[[18021,61000],[-8,-61]],[[18013,60939],[-2,0]],[[14164,31669],[56,-45]],[[14012,31579],[-51,-41]],[[13938,31558],[23,-20]],[[14088,31592],[-2,-46]],[[14220,31624],[-2,14]],[[13961,31538],[27,-62]],[[14086,31546],[4,2]],[[14082,31539],[4,7]],[[14082,31539],[-10,5]],[[14082,31539],[-24,-135]],[[13951,31472],[37,4]],[[13988,31476],[64,-102]],[[14058,31404],[-11,42]],[[14058,31404],[-6,-30]],[[14058,31404],[0,0]],[[14052,31374],[45,-295]],[[14389,31450],[0,14]],[[14389,31450],[29,-38]],[[14363,31438],[-5,18]],[[14363,31438],[26,12]],[[14273,31410],[-44,75]],[[14273,31410],[-53,214]],[[14245,31391],[-13,7]],[[14245,31391],[-19,24]],[[14334,31398],[-16,33]],[[14334,31398],[29,40]],[[13999,31301],[121,-300]],[[14264,31372],[-19,19]],[[14264,31372],[-7,-5]],[[14294,31351],[-30,21]],[[14294,31351],[-21,59]],[[14294,31351],[11,-37]],[[14305,31314],[29,84]],[[14305,31314],[-8,-508]],[[14225,31232],[72,-426]],[[14122,31127],[0,5]],[[14122,31127],[50,69]],[[14122,31127],[-25,-48]],[[14097,31079],[23,-78]],[[14120,31001],[129,-423]],[[14297,30806],[-48,-228]],[[14249,30578],[-163,-374],[-30,-446],[-183,-389]],[[13873,29369],[0,0]],[[3235,25649],[44,-191]],[[3235,25649],[67,-197]],[[3235,25649],[172,-65]],[[3407,25584],[32,-28]],[[3407,25584],[-67,-129]],[[3085,25457],[167,-91]],[[3439,25556],[14,-98]],[[3439,25556],[-54,-122]],[[3011,25233],[130,-31]],[[3141,25202],[29,7]],[[3141,25202],[169,-135]],[[3170,25209],[90,125]],[[3170,25209],[18,-15]],[[3188,25194],[17,14]],[[3188,25194],[21,-30]],[[3423,25251],[-24,-119]],[[3310,25067],[35,-3]],[[3310,25067],[110,-113]],[[3346,25073],[-46,212]],[[3346,25073],[-2,106]],[[3345,25064],[1,9]],[[3345,25064],[12,155]],[[1180,24245],[9,-85]],[[1125,24202],[-113,-300]],[[3465,25027],[58,131]],[[3465,25027],[63,-44]],[[3430,25014],[-31,118]],[[3430,25014],[35,13]],[[1189,24160],[-12,-299]],[[1189,24160],[30,-341]],[[3420,24954],[10,60]],[[3420,24954],[90,-23]],[[985,24032],[30,335]],[[985,24032],[-30,-90]],[[686,23904],[269,38]],[[955,23942],[-6,-9]],[[1005,23935],[0,0]],[[1005,23935],[-20,97]],[[1005,23935],[-175,-75]],[[1012,23902],[-7,33]],[[1012,23902],[-5,-311],[-162,74]],[[3588,24791],[90,82]],[[3588,24791],[56,-35]],[[3571,24771],[-26,112]],[[3571,24771],[17,20]],[[1177,23861],[19,-191]],[[3418,24595],[63,68]],[[3418,24595],[153,176]],[[3418,24595],[-178,-134],[-132,-352]],[[1219,23784],[-42,77]],[[1196,23670],[-29,-62]],[[1196,23670],[29,-92]],[[1167,23608],[-72,-594]],[[1167,23608],[-146,-385]],[[14013,27631],[-53,479],[165,465],[-252,794]],[[3053,24102],[-68,-84]],[[3108,24109],[-55,-7]],[[3108,24109],[-55,-7]],[[2985,24018],[-109,-167]],[[2985,24018],[0,0]],[[2835,23860],[-89,-83]],[[2876,23851],[0,0]],[[2746,23777],[-45,-339]],[[2746,23777],[15,-340]],[[3083,23802],[-256,-217]],[[2699,23421],[2,17]],[[2724,23408],[-23,30]],[[14897,25603],[-192,38],[-100,-545],[-148,-373]],[[1258,20653],[-15,-64]],[[1243,20589],[-59,-49]],[[1256,20587],[-13,2]],[[1184,20540],[-288,-171],[67,-331]],[[16022,25338],[-12,-175]],[[15870,25211],[140,-48]],[[15295,25039],[1,0]],[[15296,25039],[0,0]],[[15296,25039],[0,0]],[[15296,25039],[5,0]],[[15301,25039],[-5,0]],[[15301,25039],[-43,181]],[[15880,25188],[46,-198]],[[1331,20427],[-147,113]],[[16010,25163],[70,-237]],[[1667,20537],[86,-113]],[[1893,20614],[96,8]],[[16412,25251],[-196,-271]],[[1408,20416],[-77,11]],[[1989,20622],[-45,-32]],[[1989,20622],[13,-22]],[[1989,20622],[0,0]],[[1504,20428],[-173,-1]],[[15159,24866],[137,173]],[[2002,20600],[141,-56]],[[15368,24919],[0,0]],[[15368,24919],[-67,120]],[[15368,24919],[-71,-186]],[[1731,20491],[26,5]],[[1943,20568],[59,32]],[[1757,20496],[37,-8]],[[14802,24713],[-67,-72]],[[16592,25171],[-180,80]],[[15926,24990],[-27,-22]],[[14523,24589],[207,-54]],[[15899,24968],[-165,-103]],[[16573,25146],[-161,105]],[[14735,24641],[-309,33]],[[15402,24790],[-119,-148]],[[16123,24971],[-43,-45]],[[15734,24865],[-74,-23]],[[15660,24842],[-239,-74]],[[15421,24768],[-53,151]],[[16214,24981],[-15,267]],[[16216,24980],[-93,-9]],[[16080,24926],[-154,64]],[[14923,24592],[-4,-188]],[[14896,24562],[-161,79]],[[15271,24664],[-56,26]],[[15271,24664],[-25,154]],[[15019,24588],[66,-232]],[[14837,24535],[3,-11]],[[16514,24981],[64,9]],[[16514,24981],[32,-63]],[[15283,24642],[-12,22]],[[15283,24642],[-47,-15]],[[14831,24468],[-32,-179]],[[16036,24792],[-137,176]],[[15942,24755],[94,37]],[[15005,24497],[57,-172]],[[16033,24761],[3,31]],[[16399,24832],[115,149]],[[15986,24721],[47,40]],[[14919,24404],[-9,43]],[[14919,24404],[-30,-87]],[[14919,24404],[0,0]],[[15901,24670],[-167,195]],[[15937,24653],[49,68]],[[15008,24389],[-119,-72]],[[15458,24499],[0,0]],[[15458,24499],[-37,269]],[[15458,24499],[-37,-45]],[[14889,24317],[-90,-28]],[[14799,24289],[-133,-84]],[[15961,24608],[25,113]],[[16449,24734],[-233,246]],[[15112,24368],[-27,-12]],[[15112,24368],[15,-10]],[[15085,24356],[-23,-31]],[[16031,24593],[2,168]],[[15062,24325],[108,-348]],[[14666,24205],[-207,146]],[[16644,24742],[-140,-47]],[[16504,24695],[-55,39]],[[15506,24422],[10,1]],[[15996,24549],[62,-34]],[[15773,24472],[-25,-229]],[[15603,24423],[91,-92]],[[15497,24389],[-39,110]],[[15820,24475],[-23,-209]],[[1106,19677],[-240,-507]],[[14728,24157],[-62,48]],[[16058,24515],[165,-3]],[[15922,24468],[-124,-226]],[[15489,24340],[4,-38]],[[16448,24590],[-11,-103]],[[15975,24455],[-315,387]],[[16223,24512],[-100,459]],[[16010,24447],[48,68]],[[15865,24400],[-68,-134]],[[15865,24400],[-8,81]],[[15984,24418],[102,-213]],[[16217,24480],[6,32]],[[15694,24331],[0,0]],[[15694,24331],[-44,-51]],[[15694,24331],[54,-88]],[[16373,24509],[76,225]],[[14762,24059],[-34,98]],[[14762,24059],[-21,-9]],[[14762,24059],[0,0]],[[16025,24405],[84,-172]],[[15563,24275],[-66,114]],[[16586,24545],[-82,150]],[[16084,24401],[99,-102]],[[15374,24204],[-68,-34]],[[15722,24298],[-10,92]],[[16594,24520],[3,4]],[[15306,24170],[-31,107]],[[15306,24170],[-42,-216]],[[15306,24170],[0,0]],[[15416,24199],[81,190]],[[15478,24196],[66,-78]],[[16300,24408],[-83,72]],[[15797,24266],[1,-24]],[[16473,24441],[17,-142]],[[15748,24243],[5,-20]],[[14796,23978],[-34,81]],[[14796,23978],[-9,-8]],[[14796,23978],[0,0]],[[15798,24242],[-45,-19]],[[16605,24455],[10,-3]],[[15753,24223],[-9,-136]],[[16284,24355],[16,53]],[[16193,24322],[24,158]],[[16183,24299],[10,23]],[[15544,24118],[-52,45]],[[15544,24118],[-9,-148]],[[15544,24118],[0,0]],[[16420,24326],[166,219]],[[14839,23887],[-43,91]],[[15170,23977],[-442,180]],[[16109,24233],[74,66]],[[16394,24307],[-94,101]],[[16555,24347],[31,198]],[[16086,24205],[23,28]],[[16519,24318],[90,-273],[-89,-230]],[[14824,23855],[15,32]],[[14824,23855],[-143,-133]],[[16248,24227],[-55,95]],[[16256,24228],[-8,-1]],[[15744,24087],[-89,-96]],[[15264,23954],[-94,23]],[[15535,23970],[-48,-13]],[[15487,23957],[-223,-3]],[[14984,23817],[12,2]],[[14984,23817],[-115,-124]],[[14996,23819],[-157,68]],[[15655,23991],[-120,-21]],[[16274,24099],[246,-284]],[[15568,23893],[-81,64]],[[15715,23921],[-60,70]],[[16148,24035],[100,192]],[[15992,23985],[-248,102]],[[16969,24236],[69,-298]],[[16144,23999],[-58,206]],[[15010,23688],[-14,131]],[[16022,23964],[-30,21]],[[15719,23873],[0,-1]],[[15719,23872],[-4,49]],[[15719,23872],[-7,-47]],[[15553,23806],[0,0]],[[15553,23806],[15,87]],[[15553,23806],[-43,-55]],[[15712,23825],[-1,2]],[[15712,23825],[5,-39]],[[15614,23756],[-46,137]],[[15510,23713],[43,93]],[[15748,23771],[-29,101]],[[15519,23691],[-16,-169]],[[15807,23757],[-59,14]],[[15129,23567],[-119,121]],[[16283,23879],[-152,90]],[[16283,23879],[8,-5]],[[17293,24145],[-92,-394]],[[16028,23806],[0,0]],[[16028,23806],[-36,179]],[[16028,23806],[-46,-189]],[[15738,23724],[10,47]],[[16291,23874],[-8,5]],[[15588,23678],[26,78]],[[15807,23736],[-69,-12]],[[15829,23725],[-55,-96]],[[16375,23855],[-84,19]],[[17152,24051],[-42,-189]],[[15306,23538],[-27,151]],[[614,18668],[-8,-1]],[[16829,23924],[209,14]],[[15774,23629],[-36,95]],[[513,18594],[-182,-455],[-309,-321],[60,-200],[510,488],[537,-176],[222,237],[261,-71]],[[16445,23800],[9,-10]],[[16520,23815],[2,-3]],[[16522,23812],[-11,-308]],[[16100,23693],[96,-21]],[[1985,19138],[-172,-254],[-33,-312]],[[16382,23765],[73,21]],[[17038,23938],[72,-76]],[[15503,23522],[-374,45]],[[16199,23711],[108,163]],[[15848,23616],[-74,13]],[[16461,23772],[32,-209]],[[15222,23413],[-93,154]],[[15569,23499],[-66,23]],[[15764,23534],[-150,222]],[[16082,23616],[-54,190]],[[15887,23559],[-318,-60]],[[17110,23862],[91,-111]],[[15915,23519],[-6,256],[-194,146]],[[15086,23290],[85,83]],[[15086,23290],[-57,-64]],[[15086,23290],[0,0]],[[16784,23734],[-262,78]],[[15368,23349],[-64,-34]],[[15443,23356],[-62,-53]],[[15304,23315],[-82,98]],[[16760,23710],[527,-139]],[[15306,23313],[23,-66]],[[15029,23226],[-115,63],[96,399]],[[16364,23576],[19,-15]],[[15381,23303],[-24,-20]],[[17376,23833],[-30,-198]],[[15456,23313],[-75,-10]],[[15357,23283],[-53,32]],[[16313,23542],[102,-61]],[[15064,23192],[-35,34]],[[16447,23567],[46,-4]],[[15882,23414],[-165,-154]],[[17779,23916],[-21,-295]],[[15483,23292],[-126,-9]],[[15329,23247],[15,-67]],[[15329,23247],[55,-76]],[[17201,23751],[85,-152]],[[16493,23563],[7,-15]],[[17674,23872],[23,-84]],[[15512,23292],[84,-9]],[[15657,23329],[-88,170]],[[17739,23883],[-42,-95]],[[15659,23325],[-2,4]],[[16500,23548],[-55,-48]],[[16500,23548],[11,-44]],[[16500,23548],[0,0]],[[15596,23283],[61,46]],[[15083,23136],[-19,56]],[[15083,23136],[66,-134]],[[16098,23412],[-140,-580]],[[15522,23247],[74,36]],[[16511,23504],[0,-77]],[[17697,23788],[61,-167]],[[15717,23260],[-58,65]],[[17418,23715],[-11,-83]],[[15371,23142],[-149,271]],[[15595,23189],[64,136]],[[15864,23256],[-72,-156]],[[16511,23427],[0,0]],[[16511,23427],[-172,-59]],[[16511,23427],[16,-30]],[[15639,23182],[13,-33]],[[16519,23420],[278,223]],[[17346,23635],[-60,-36]],[[15513,23141],[-155,-118],[-272,267]],[[15454,23117],[4,13]],[[17407,23632],[-61,3]],[[17286,23599],[1,-28]],[[16527,23397],[-48,-550]],[[15881,23200],[-65,-129]],[[17287,23571],[72,-216]],[[16969,23470],[-442,-73]],[[15709,23115],[80,-9]],[[15318,23005],[-254,187]],[[17486,23586],[-79,46]],[[17667,23629],[80,-84]],[[15789,23106],[-72,154]],[[15792,23100],[-3,6]],[[17758,23621],[-11,-76]],[[16993,23415],[-189,-324]],[[15577,23023],[-7,32]],[[15577,23023],[-106,-256]],[[15577,23022],[0,1]],[[17139,23431],[220,-76]],[[15816,23071],[-24,29]],[[17747,23545],[-71,-321]],[[14899,22767],[-391,29],[-207,-170],[106,-446]],[[18807,23797],[75,-276]],[[14995,22784],[-96,-17]],[[15751,22974],[-174,49]],[[15006,22749],[0,0]],[[15006,22749],[-11,35]],[[15006,22749],[-4,-11]],[[18754,23743],[128,-222]],[[16177,23062],[-128,-183]],[[15779,22950],[37,121]],[[15651,22905],[-26,-162]],[[16329,23083],[2,0]],[[9036,20920],[70,344],[-238,483],[441,454]],[[17359,23355],[39,-62]],[[17149,23247],[249,46]],[[16654,23099],[157,-36]],[[1859,18334],[18,12]],[[15840,22877],[48,-161]],[[15840,22877],[18,96]],[[15415,22759],[-185,120],[-235,-95]],[[17398,23293],[278,-69]],[[15471,22767],[-56,-8]],[[16781,23114],[23,-23]],[[8896,20773],[81,-79]],[[2196,18430],[-237,-271]],[[1790,18264],[-79,-155]],[[16804,23091],[7,-28]],[[16049,22879],[-91,-47]],[[16293,22937],[129,-3]],[[15436,22703],[-21,56]],[[8998,20767],[38,153]],[[15180,22620],[-17,-49]],[[15625,22743],[-154,24]],[[16811,23063],[166,-417]],[[15958,22832],[-4,-38]],[[17051,23097],[38,-187]],[[15650,22719],[-25,24]],[[8992,20725],[6,42]],[[16435,22931],[13,-61]],[[16106,22840],[-57,39]],[[17105,23106],[3,-240]],[[15954,22794],[-66,-78]],[[15163,22571],[-76,51]],[[19021,23586],[31,-521]],[[8977,20694],[15,31]],[[15195,22560],[-32,11]],[[17676,23224],[10,-446]],[[17013,23047],[76,-137]],[[18882,23521],[32,-193]],[[18754,23480],[160,-152]],[[1711,18109],[-99,-13]],[[2258,18314],[-16,-33]],[[2261,18311],[-19,-30]],[[15888,22716],[-101,-68]],[[9512,20825],[132,678],[129,263]],[[16460,22863],[19,-16]],[[16086,22760],[-132,34]],[[16086,22760],[15,30]],[[2242,18281],[-56,-113]],[[16479,22847],[-26,-226]],[[8952,20615],[25,79]],[[1959,18159],[-62,-30]],[[1959,18159],[-4,-22]],[[15787,22648],[-137,71]],[[1897,18129],[-186,-20]],[[1656,18037],[-44,59]],[[15478,22554],[-42,149]],[[1955,18137],[-58,-8]],[[16264,22752],[157,-117]],[[15311,22474],[117,-162]],[[14874,22335],[103,-109]],[[16192,22692],[219,-74]],[[2163,18159],[-208,-22]],[[14757,22286],[117,-55]],[[17089,22910],[19,-44]],[[16021,22619],[39,-214],[238,-92]],[[15451,22452],[27,102]],[[14770,22256],[104,-25]],[[15581,22481],[-145,222]],[[14854,22275],[-20,68]],[[17108,22866],[0,0]],[[17108,22866],[95,-165]],[[18914,23328],[138,-263]],[[14874,22231],[31,-30]],[[14644,22165],[-237,15]],[[9053,20470],[-61,255]],[[9446,20579],[66,246]],[[16421,22635],[32,-14]],[[14977,22226],[27,5]],[[16411,22618],[10,17]],[[15004,22231],[-105,536]],[[14905,22201],[-94,-27]],[[14905,22201],[72,25]],[[14905,22201],[0,0]],[[9191,20474],[-193,293]],[[16453,22621],[244,-86]],[[15924,22473],[-40,-52]],[[15924,22473],[33,74]],[[9055,20418],[-2,52]],[[15489,22344],[-61,-32]],[[15489,22344],[39,-66]],[[15428,22312],[-295,174],[-127,263]],[[14773,22125],[-129,40]],[[14755,22117],[-111,48]],[[15310,22266],[65,-215]],[[9181,20424],[-128,46]],[[15884,22421],[-97,227]],[[14791,22109],[144,-44]],[[15984,22431],[-93,-60]],[[9461,20496],[30,-7]],[[9085,20370],[-30,48]],[[16314,22514],[97,104]],[[16314,22514],[0,0]],[[16312,22513],[2,1]],[[9491,20489],[38,-7]],[[15054,22152],[-50,79]],[[15134,22173],[-80,-21]],[[8966,20309],[-14,306]],[[17418,22781],[29,-691]],[[15891,22371],[-7,50]],[[9529,20482],[-17,343]],[[17294,22746],[235,31]],[[9261,20394],[-14,-280]],[[15520,22264],[-42,290]],[[16977,22646],[226,55]],[[17203,22701],[91,45]],[[2290,17937],[42,-33]],[[17529,22777],[0,0]],[[17529,22777],[1,-8]],[[17529,22777],[157,1]],[[2287,17931],[0,0]],[[2287,17931],[-124,228]],[[2287,17931],[58,-55]],[[9157,20327],[-72,43]],[[2250,17915],[-4,71]],[[9111,20311],[-26,59]],[[14935,22065],[65,-54]],[[15211,22141],[-48,-78]],[[15211,22141],[50,114]],[[9317,20371],[-281,549]],[[15519,22219],[-10,-207]],[[16697,22535],[170,22]],[[8966,20242],[-14,373]],[[9432,20385],[59,104]],[[17686,22778],[439,-844],[9,-220]],[[9038,20251],[17,167]],[[14831,22003],[104,62]],[[16867,22557],[110,89]],[[2280,17878],[7,53]],[[2284,17873],[-4,5]],[[2284,17873],[-4,5]],[[2285,17872],[-1,1]],[[9181,20267],[50,-268]],[[16640,22469],[57,66]],[[15163,22063],[-103,-21]],[[15071,22031],[-17,121]],[[2289,17848],[10,-29]],[[14848,21964],[-37,-220]],[[9383,20314],[157,48]],[[15433,22122],[-58,-71]],[[9540,20362],[-11,120]],[[14891,21964],[77,-23]],[[2323,17845],[-23,7]],[[17300,22617],[-6,129]],[[19052,23065],[11,-309],[-232,-573]],[[9323,20273],[-76,-159]],[[9538,20323],[2,39]],[[16604,22403],[36,66]],[[15263,22037],[-100,26]],[[15968,22229],[-4,-255]],[[16298,22313],[16,201]],[[15050,21967],[21,64]],[[15098,21977],[-27,54]],[[8873,20092],[-26,-594]],[[15375,22051],[40,-104]],[[9364,20243],[-132,-249]],[[14878,21905],[94,35]],[[9404,20245],[134,78]],[[2345,17776],[-35,57]],[[15890,22161],[1,210]],[[14617,21803],[-210,377]],[[9543,20271],[-5,52]],[[9570,20275],[-27,-4]],[[15572,22064],[-63,-52]],[[16249,22249],[49,64]],[[19699,23141],[25,403]],[[19773,23143],[-74,-2]],[[15198,21936],[-100,41]],[[16648,22329],[-44,74]],[[15509,22012],[26,-118]],[[16181,22190],[68,59]],[[15282,21938],[-84,-2]],[[14983,21853],[3,5]],[[14973,21847],[10,6]],[[15322,21940],[93,7]],[[15656,22032],[-90,-179]],[[9247,20114],[-16,-115]],[[9466,20183],[65,10]],[[9531,20193],[12,78]],[[15279,21911],[-73,-52]],[[15234,21897],[-36,39]],[[15415,21947],[58,-33]],[[15165,21872],[-67,105]],[[16390,22205],[-104,-149]],[[16183,22141],[-59,-160]],[[15308,21893],[119,-277]],[[15206,21859],[-41,13]],[[15792,22019],[172,-45]],[[14811,21744],[-25,-39]],[[19677,23024],[22,117]],[[14932,21766],[51,87]],[[15473,21914],[62,-20]],[[14786,21705],[-169,98]],[[16435,22159],[133,5]],[[16796,22250],[-156,219]],[[15777,21970],[64,-313]],[[15535,21894],[31,-41]],[[15276,21821],[49,-222]],[[15720,21940],[-70,779]],[[9231,19999],[1,-5]],[[14949,21721],[69,94]],[[9232,19994],[27,-173]],[[16568,22164],[36,239]],[[16708,22201],[134,-67]],[[15246,21795],[-40,64]],[[16928,22252],[-61,305]],[[15696,21905],[83,-255]],[[17153,22299],[-49,-210]],[[19742,22957],[-65,67]],[[15964,21974],[102,-125]],[[14912,21681],[-101,63]],[[19651,22931],[26,93]],[[16414,22094],[18,-143]],[[16286,22056],[-37,193]],[[19750,22947],[-8,10]],[[15566,21853],[73,-85]],[[9537,20050],[-6,143]],[[15478,21824],[-5,90]],[[19774,22946],[-24,1]],[[19542,22886],[62,-54]],[[15649,21867],[-10,-99]],[[16124,21981],[-58,-132]],[[15255,21740],[-197,236]],[[15227,21728],[-62,144]],[[13992,21377],[0,0]],[[16505,22074],[63,90]],[[15753,21858],[45,-201]],[[14855,21607],[-69,98]],[[19501,22833],[87,-10]],[[3859,18055],[66,-511]],[[15500,21780],[156,-97]],[[15391,21747],[-55,44]],[[19800,22896],[-50,51]],[[19800,22896],[34,-21]],[[13993,21346],[-1,31]],[[19801,22894],[-1,2]],[[16842,22134],[86,118]],[[16473,22029],[-41,-78]],[[14988,21620],[64,161]],[[17889,22399],[-273,-199]],[[17206,22220],[94,397]],[[16956,22153],[-28,99]],[[19604,22832],[7,0]],[[14950,21603],[-95,4]],[[19611,22832],[40,99]],[[19753,22866],[49,-9]],[[19754,22865],[-12,92]],[[19588,22823],[16,9]],[[14872,21570],[-17,37]],[[9556,19963],[-297,-142]],[[19520,22790],[27,-5]],[[19462,22774],[-221,-278]],[[17211,22194],[-69,-127]],[[15639,21768],[28,-89]],[[19728,22831],[-77,100]],[[19547,22785],[41,38]],[[19547,22785],[-51,-23]],[[16810,22078],[32,56]],[[16536,22003],[215,23]],[[15292,21662],[-5,-53]],[[15099,21604],[72,-6]],[[15921,21825],[142,-29]],[[15041,21574],[125,16]],[[4071,18050],[-102,-467]],[[19602,22771],[9,61]],[[19602,22771],[-9,-68]],[[16432,21951],[-146,105]],[[16066,21849],[4,-42]],[[9259,19821],[-25,-85]],[[14122,21297],[-130,80]],[[16751,22026],[59,52]],[[15166,21590],[5,8]],[[14066,21270],[-73,76]],[[15287,21609],[-50,-36]],[[14022,21240],[-29,106]],[[9537,19872],[-140,-117]],[[17104,22089],[-148,64]],[[15174,21560],[-8,30]],[[16070,21807],[-7,-11]],[[15325,21599],[-22,-12]],[[15237,21573],[-66,25]],[[19562,22709],[-29,9]],[[14909,21478],[-37,92]],[[19562,22708],[31,-5]],[[15303,21587],[-16,22]],[[16063,21796],[-89,-185]],[[15656,21683],[0,0]],[[15656,21683],[11,-4]],[[15427,21616],[53,-5]],[[15667,21679],[0,0]],[[15667,21679],[75,-51]],[[15051,21506],[-179,64]],[[19593,22703],[-1,-11]],[[17142,22067],[-38,22]],[[17252,22094],[-26,-131]],[[19592,22692],[-27,-76]],[[9234,19736],[-189,-238],[-198,0]],[[14031,21200],[-21,-9]],[[2957,17555],[23,-5]],[[14010,21191],[6,-69]],[[19566,22673],[26,19]],[[16616,21905],[135,121]],[[14120,21204],[-89,-4]],[[14074,21190],[-43,10]],[[15062,21470],[112,90]],[[16349,21825],[0,0]],[[16349,21825],[-225,156]],[[16349,21825],[69,-29]],[[15351,21547],[-26,52]],[[14791,21389],[-174,414]],[[9397,19755],[-163,-19]],[[16591,21877],[-242,-52]],[[15247,21505],[-10,68]],[[15798,21657],[43,0]],[[15779,21650],[19,7]],[[3041,17544],[50,-21]],[[14099,21177],[-89,14]],[[14816,21381],[-25,8]],[[17185,22027],[-43,40]],[[17299,22057],[116,183]],[[17447,22090],[0,0]],[[17447,22090],[-12,-113]],[[15841,21657],[133,-46]],[[15742,21628],[11,2]],[[15753,21630],[26,20]],[[9585,19789],[-188,-34]],[[19651,22643],[-49,128]],[[19651,22643],[38,-133]],[[19565,22616],[-14,-86]],[[14087,21145],[-71,-23]],[[19557,22607],[8,9]],[[19716,22644],[-31,-41]],[[3223,17577],[5,-72]],[[3091,17523],[90,9]],[[3091,17523],[90,9]],[[14120,21144],[-40,-180]],[[16312,21753],[-84,-31]],[[17342,22029],[-52,-134]],[[16228,21722],[-158,85]],[[15151,21424],[-46,-91]],[[3181,17532],[47,-27]],[[19241,22496],[-410,-313]],[[19685,22603],[-34,40]],[[8847,19498],[-665,-87],[-750,-475],[-183,-448],[154,-708]],[[15714,21563],[28,65]],[[16551,21788],[222,-329]],[[17385,22007],[18,-123]],[[15377,21462],[50,154]],[[17226,21963],[-41,64]],[[15699,21550],[54,80]],[[15171,21402],[102,-67]],[[19691,22591],[-6,12]],[[9584,19721],[-104,-644]],[[17547,22041],[-100,49]],[[15974,21611],[-60,-307]],[[19709,22582],[-18,9]],[[15346,21427],[-43,160]],[[19700,22569],[-9,22]],[[3228,17505],[1,-15]],[[14123,21076],[-107,46]],[[14037,21045],[-29,-69]],[[15691,21505],[223,-201]],[[14089,21053],[-21,-82]],[[3229,17490],[-20,16]],[[3229,17490],[20,-138]],[[15105,21333],[-289,48]],[[14108,21045],[-40,-74]],[[3839,17700],[-136,120]],[[15552,21435],[104,248]],[[15552,21435],[0,0]],[[17283,21900],[-57,63]],[[16871,21788],[-61,290]],[[14934,21254],[-118,127]],[[14934,21254],[76,6]],[[17290,21895],[-7,5]],[[19085,22357],[154,-119]],[[16907,21784],[49,369]],[[14008,20976],[-139,92]],[[17466,21929],[487,-229]],[[15273,21335],[-99,225]],[[15366,21360],[171,99]],[[17018,21807],[167,220]],[[14009,20972],[-1,4]],[[3078,17373],[10,-13]],[[16542,21675],[-230,78]],[[17470,21913],[-67,-29]],[[14068,20971],[-5,-13]],[[3084,17359],[4,1]],[[3088,17360],[1,0]],[[3089,17360],[158,-10]],[[3087,17358],[0,0]],[[3087,17358],[2,2]],[[3086,17356],[1,2]],[[17403,21884],[-45,-56]],[[17326,21863],[-36,32]],[[14080,20964],[-17,-6]],[[14063,20958],[-54,14]],[[15410,21336],[126,38]],[[17027,21776],[63,-290],[-198,21]],[[15657,21404],[-105,31]],[[16300,21575],[59,-223]],[[15734,21420],[-172,-229]],[[17164,21795],[119,105]],[[15549,21353],[3,82]],[[16531,21620],[-219,133]],[[17358,21828],[-32,35]],[[16261,21529],[-33,193]],[[14134,20932],[-54,32]],[[15229,21242],[-124,91]],[[3239,17357],[8,-7]],[[15309,21260],[-36,75]],[[15031,21179],[44,63]],[[15031,21179],[26,-64]],[[3249,17352],[16,-26]],[[3247,17350],[2,2]],[[14055,20897],[-46,75]],[[15318,21255],[-9,5]],[[18831,22183],[-231,-522]],[[17235,21763],[91,100]],[[16856,21655],[25,-155]],[[15154,21187],[-67,-115]],[[16253,21488],[100,-135]],[[3265,17326],[97,-240]],[[3071,17248],[112,19]],[[14118,20875],[-70,-171]],[[3236,17304],[2,-1]],[[17233,21735],[50,-277]],[[3238,17303],[27,23]],[[16550,21546],[223,-87]],[[3183,17267],[53,37]],[[19401,22273],[218,7]],[[15117,21139],[-1,42]],[[17295,21729],[63,99]],[[15181,21153],[1,-162]],[[15433,21222],[184,-121]],[[15057,21115],[0,0]],[[15057,21115],[-63,-23]],[[15057,21115],[30,-43]],[[3141,17220],[24,9]],[[3165,17229],[18,38]],[[3164,17228],[1,1]],[[16237,21412],[116,-59]],[[16927,21595],[-51,98]],[[16927,21595],[57,226]],[[19619,22280],[0,0]],[[19619,22280],[-136,-90]],[[19619,22280],[163,-432]],[[3168,17210],[-4,18]],[[16749,21537],[-106,289]],[[3169,17209],[-1,1]],[[3168,17208],[0,2]],[[16121,21362],[241,-123]],[[15914,21304],[-14,-127]],[[15087,21072],[45,-115]],[[14929,21027],[-138,362]],[[13995,20750],[-143,39]],[[3155,17182],[9,46]],[[3214,17203],[24,100]],[[16078,21332],[34,-376]],[[19234,22140],[-110,-38]],[[19124,22102],[-383,-183]],[[17183,21595],[100,-137]],[[16892,21507],[35,88]],[[16892,21507],[0,0]],[[14946,20972],[-17,55]],[[16881,21500],[0,0]],[[16881,21500],[11,7]],[[15011,20985],[-65,-13]],[[16353,21353],[6,-1]],[[16359,21352],[13,-40]],[[14048,20704],[-53,46]],[[16773,21459],[11,-17]],[[3172,17122],[64,182]],[[3243,17145],[119,-59]],[[15370,21060],[-61,200]],[[16784,21442],[12,-12]],[[14966,20930],[-20,42]],[[15182,20991],[-44,-106]],[[19315,22083],[-74,413]],[[16796,21430],[85,70]],[[14826,20887],[103,140]],[[16372,21312],[-10,-73]],[[15669,21119],[5,-13]],[[15617,21101],[283,76]],[[17549,21620],[235,5]],[[15900,21177],[117,-206]],[[15132,20957],[-51,4]],[[15132,20957],[6,-72]],[[15674,21106],[6,-4]],[[15674,21106],[3,-11]],[[18741,21919],[0,0]],[[18741,21919],[-141,-258]],[[19380,22066],[62,-282]],[[15212,20961],[-30,30]],[[17953,21700],[181,14]],[[16177,21225],[192,-44]],[[14981,20892],[33,-118]],[[15003,20897],[139,-31]],[[16941,21427],[73,-209]],[[18744,21890],[-3,29]],[[18744,21890],[-7,-19]],[[18749,21887],[-5,3]],[[16934,21413],[-69,-106]],[[17161,21469],[51,-27]],[[14918,20852],[96,-78]],[[17420,21532],[-13,-42]],[[17784,21625],[169,75]],[[18134,21714],[60,-149]],[[3362,17086],[7,-21]],[[16645,21317],[-273,-5]],[[16693,21329],[91,113]],[[16362,21239],[7,-58]],[[15138,20885],[4,-19]],[[16680,21309],[131,61]],[[15287,20925],[-141,-106]],[[3369,17065],[-1,-2]],[[3368,17063],[217,-291]],[[17212,21442],[87,-30]],[[17211,21441],[1,1]],[[17283,21458],[16,-46]],[[17407,21490],[-92,-96]],[[15142,20866],[4,-47]],[[15773,21034],[180,-99]],[[3259,16997],[110,68]],[[9255,19066],[22,-217]],[[14907,20777],[131,-55]],[[16369,21181],[64,-219]],[[16205,21129],[10,-233]],[[16865,21307],[-69,121]],[[16865,21307],[0,0]],[[3603,17097],[109,2]],[[17299,21412],[16,-18]],[[15146,20819],[10,-117]],[[15014,20774],[24,-52]],[[17315,21394],[17,-34]],[[17596,21468],[188,157]],[[15589,20924],[28,177]],[[17205,21360],[127,0]],[[14918,20729],[129,-68]],[[9480,19077],[-203,-228]],[[4055,17210],[11,-11]],[[16510,21152],[4,-178]],[[14154,20487],[-106,217]],[[19641,21955],[-148,50]],[[19641,21955],[141,-107]],[[15325,20814],[-169,-112]],[[17332,21360],[10,-60]],[[15168,20768],[91,35]],[[17564,21412],[-157,78]],[[15038,20722],[71,-82]],[[19163,21814],[-414,73]],[[18194,21565],[282,-243]],[[16952,21233],[-87,74]],[[18600,21661],[-124,-339]],[[17608,21401],[45,-260]],[[16604,21133],[110,-342]],[[16017,20971],[95,-15]],[[17191,21277],[-32,-155]],[[15741,20884],[116,-236]],[[18607,21644],[0,0]],[[18607,21644],[-107,-209]],[[17227,21284],[69,-113]],[[19349,21827],[93,-43]],[[15953,20935],[30,-11]],[[17342,21300],[106,82]],[[17342,21300],[-18,-67]],[[17013,21211],[147,157]],[[17013,21211],[-61,22]],[[15156,20702],[-9,-117]],[[15983,20924],[34,47]],[[15983,20923],[0,0]],[[15983,20923],[0,1]],[[15983,20923],[-22,-158]],[[15047,20661],[62,-21]],[[16112,20956],[74,-47]],[[14958,20627],[89,34]],[[15801,20860],[152,75]],[[15490,20759],[64,-21]],[[15490,20759],[10,-395]],[[16872,21136],[80,97]],[[18737,21622],[-130,22]],[[18737,21622],[0,0]],[[18737,21622],[0,0]],[[3257,16794],[111,269]],[[15109,20640],[38,-55]],[[19239,21737],[-115,365]],[[19442,21784],[226,-320]],[[14199,20374],[-204,376]],[[17324,21233],[-28,-62]],[[17324,21233],[129,-92]],[[15820,20826],[163,97]],[[15459,20726],[-122,119]],[[19782,21848],[49,-213]],[[9277,18849],[-22,-28]],[[15554,20738],[146,170]],[[15554,20738],[100,-26]],[[16186,20909],[29,-13]],[[16186,20909],[-89,-99]],[[16186,20909],[0,0]],[[15663,20760],[111,-81]],[[14933,20551],[107,-67]],[[16433,20962],[-170,-179]],[[9255,18821],[-248,-258],[-85,-318]],[[16623,21007],[-109,-33]],[[16215,20896],[48,-113]],[[16514,20974],[-81,-12]],[[17296,21171],[-137,-49]],[[15147,20585],[18,-51]],[[15232,20606],[-40,-65]],[[14877,20505],[70,-189]],[[19136,21641],[-399,230]],[[17159,21122],[-80,-10]],[[19243,21658],[334,-348]],[[15472,20656],[-99,93]],[[18879,21546],[-142,76]],[[19193,21616],[-6,-379]],[[15943,20756],[182,-158]],[[16606,20932],[108,-141]],[[15165,20534],[-4,-79]],[[15192,20541],[-27,-7]],[[15230,20548],[-38,-7]],[[16475,20890],[52,-131]],[[17461,21146],[127,-105]],[[3585,16772],[112,244]],[[18906,21519],[-141,-55]],[[15040,20484],[0,0]],[[15040,20484],[121,-29]],[[15040,20484],[-13,-165]],[[16883,20984],[181,-31]],[[15774,20679],[83,-31]],[[17083,21028],[0,0]],[[17083,21028],[-70,183]],[[18938,21508],[107,-95]],[[18765,21464],[-158,180]],[[19161,21563],[-20,-204]],[[15244,20519],[89,-52]],[[16895,20965],[161,-28]],[[14947,20423],[0,-107]],[[16263,20783],[7,-18]],[[18081,21263],[113,302]],[[16460,20831],[67,-72]],[[19861,21710],[-30,-75]],[[16887,20944],[104,-111]],[[17653,21141],[-44,-61]],[[16270,20765],[39,-124]],[[15638,20589],[22,31]],[[15336,20504],[-106,44]],[[15161,20455],[87,-510]],[[15857,20648],[268,-50]],[[15602,20570],[50,113]],[[17067,20958],[0,0]],[[17067,20958],[16,70]],[[18476,21322],[143,-183],[443,-1605]],[[16616,20820],[-19,-116]],[[17609,21080],[-67,64]],[[17609,21080],[-21,-39]],[[17609,21080],[0,0]],[[19831,21635],[-150,-193]],[[15288,20426],[25,-34]],[[15288,20426],[-58,122]],[[3254,16512],[280,48],[51,212]],[[16527,20759],[38,-28]],[[19068,21423],[73,-64]],[[17588,21041],[5,-59]],[[19045,21413],[23,10]],[[19045,21413],[-114,6]],[[9523,18673],[-43,404]],[[17808,21089],[-155,52]],[[14953,20313],[-6,3]],[[15466,20454],[-110,9]],[[16714,20791],[2,-84]],[[18925,21368],[-160,96]],[[15764,20517],[10,162]],[[16565,20731],[32,-27]],[[15177,20347],[-4,-11]],[[15177,20347],[-62,-190]],[[9547,18641],[82,-6]],[[9642,18669],[-13,-34]],[[16125,20598],[60,4]],[[15753,20494],[-152,-115]],[[9388,18581],[-58,-412],[-372,-829]],[[16309,20641],[0,0]],[[16309,20641],[85,45]],[[16309,20641],[-14,-20]],[[17593,20982],[31,-72]],[[16185,20602],[110,19]],[[15784,20491],[104,-119]],[[18951,21328],[117,95]],[[18048,21095],[33,168]],[[15205,20326],[-28,21]],[[16597,20704],[119,3]],[[16295,20621],[145,-140]],[[4213,16784],[66,-126]],[[9629,18635],[22,-93]],[[9416,18564],[-161,257]],[[19141,21359],[46,-122]],[[17762,21005],[-138,-95]],[[14048,19970],[49,-293]],[[9575,18602],[76,-60]],[[17314,20872],[279,110]],[[15745,20446],[-144,-67]],[[15635,20415],[31,50]],[[16716,20707],[346,-281]],[[9474,18554],[194,-63]],[[19668,21464],[13,-22]],[[19668,21464],[-30,-35]],[[15500,20364],[0,0]],[[15500,20364],[-89,11]],[[15500,20364],[101,-229]],[[17809,20985],[272,278]],[[16876,20733],[91,0]],[[15601,20379],[-2,-216]],[[19681,21442],[-94,-140]],[[18961,21261],[174,-93]],[[19638,21429],[-311,240]],[[17624,20910],[19,-95]],[[16570,20620],[-5,111]],[[12529,19466],[-243,-85],[-94,-609],[-154,-397]],[[18932,21227],[183,-99]],[[14988,20168],[-35,145]],[[3378,16382],[613,32],[288,244]],[[9217,18404],[-133,-114]],[[9651,18542],[17,-51]],[[15651,20338],[-52,-175]],[[17269,20764],[-186,264]],[[7403,17780],[-112,-205]],[[15014,20141],[-61,172]],[[18097,20970],[-49,125]],[[15888,20372],[0,0]],[[15888,20372],[-98,54]],[[15888,20372],[105,9]],[[17228,20731],[-161,227]],[[19187,21237],[15,-43]],[[5935,17249],[0,-12]],[[5935,17249],[0,-12]],[[4279,16658],[319,-121]],[[17264,20728],[179,-74]],[[15993,20381],[192,221]],[[9668,18491],[130,-182]],[[5935,17237],[73,-204],[-132,-219],[50,-891],[157,-123],[-125,-324],[134,-589],[153,-333],[284,-52],[-32,-359],[-365,-674]],[[9294,18368],[-210,-78]],[[8922,18245],[-319,-508],[-420,-334]],[[19577,21310],[10,-8]],[[17643,20815],[9,-12]],[[15652,20275],[12,28]],[[15652,20275],[11,-3]],[[15651,20273],[1,2]],[[9084,18290],[-162,-45]],[[10077,18608],[-105,-79]],[[19587,21302],[0,0]],[[19587,21302],[-158,-272],[2,-793]],[[16440,20481],[130,139]],[[17652,20803],[0,0]],[[17652,20803],[-66,-12]],[[17652,20803],[40,-110]],[[15017,20085],[135,-115]],[[14079,19811],[18,-134]],[[15756,20284],[-49,-96]],[[19202,21194],[214,-325]],[[19024,21148],[66,-43]],[[15815,20294],[-103,-107]],[[19135,21168],[67,26]],[[17924,20855],[124,240]],[[19000,21128],[74,-47]],[[17246,20673],[-222,-157]],[[18126,20892],[-29,78]],[[9972,18529],[-48,-44]],[[15861,20283],[128,13]],[[16205,20375],[88,-103]],[[17391,20682],[-78,77]],[[19115,21128],[20,40]],[[17950,20821],[147,149]],[[15989,20296],[4,85]],[[9924,18485],[-86,-110]],[[13257,19509],[74,-32]],[[19090,21105],[25,23]],[[17940,20804],[-297,11]],[[16036,20294],[-47,2]],[[15241,20072],[-105,53]],[[15599,20163],[6,-42]],[[19074,21081],[16,24]],[[15707,20188],[-76,-172]],[[15712,20187],[0,0]],[[15712,20187],[-5,1]],[[15712,20187],[23,-18]],[[17443,20654],[110,-46]],[[15755,20195],[20,59]],[[16080,20281],[89,-138]],[[16369,20357],[71,124]],[[13185,19449],[113,-9]],[[7291,17575],[-4,-15]],[[7291,17575],[-4,-15]],[[15397,20081],[-113,-263]],[[15601,20135],[-8,1]],[[15601,20135],[4,-14]],[[15601,20135],[0,0]],[[15860,20206],[205,-94]],[[17024,20516],[0,0]],[[17024,20516],[43,442]],[[7287,17560],[-148,-201],[-612,75],[-114,114],[-478,-299]],[[17692,20693],[-44,-125]],[[13331,19477],[-18,51]],[[13331,19477],[41,-31]],[[4623,16619],[-25,-82]],[[15605,20121],[12,-70]],[[18901,20992],[173,89]],[[18187,20808],[-61,84]],[[13181,19414],[95,-4]],[[14097,19677],[-180,-207]],[[15859,20173],[-55,-176]],[[9838,18375],[-40,-66]],[[13298,19440],[55,-50]],[[17017,20486],[7,30]],[[17281,20555],[149,-256]],[[15055,19945],[97,25]],[[10269,18510],[-9,-4]],[[10269,18510],[33,-57]],[[10269,18510],[-40,275],[249,285],[22,-492]],[[10260,18506],[-37,-207]],[[10260,18506],[-126,-228]],[[15152,19970],[96,-25]],[[15040,19936],[220,-248]],[[10003,18417],[-79,68]],[[13372,19446],[-23,75]],[[13372,19446],[46,-79]],[[16293,20272],[76,85]],[[17553,20608],[0,0]],[[17553,20608],[-57,-63]],[[17553,20608],[90,-45]],[[13276,19410],[22,30]],[[10078,18425],[-106,104]],[[15912,20152],[153,-40]],[[13223,19379],[53,31]],[[17335,20529],[108,125]],[[9865,18338],[-27,37]],[[4598,16537],[68,-121]],[[9798,18309],[-190,-237]],[[15617,20051],[0,0]],[[15617,20051],[14,-35]],[[15617,20051],[-93,-67]],[[15248,19945],[25,-82]],[[19913,21172],[-232,270]],[[13353,19390],[2,-5]],[[10302,18453],[69,-36]],[[10302,18453],[-3,-82]],[[18023,20681],[-331,12]],[[13355,19385],[51,-30]],[[15689,20052],[45,50]],[[15689,20052],[90,37]],[[17062,20426],[179,-208]],[[18060,20681],[26,-118]],[[17648,20568],[-5,-5]],[[13258,19340],[95,50]],[[17643,20563],[-213,-264]],[[15631,20016],[42,-181]],[[15633,20009],[56,43]],[[13259,19322],[96,63]],[[16169,20143],[124,129]],[[16065,20112],[84,8]],[[15019,19811],[31,-188]],[[18258,20687],[-71,121]],[[10043,18312],[-178,26]],[[17955,20606],[-134,-143]],[[16642,20257],[-72,363]],[[16149,20120],[20,23]],[[15273,19863],[-58,5]],[[15273,19863],[11,-45]],[[15273,19863],[0,0]],[[18136,20633],[-10,259]],[[10104,18294],[15,-231]],[[12893,19151],[-17,54]],[[12893,19151],[220,-22],[190,-281]],[[17976,20566],[-7,-121]],[[15652,19939],[44,70]],[[14903,19727],[147,-104]],[[15785,19972],[-53,-224]],[[17945,20550],[24,-105]],[[16462,20147],[-93,210]],[[10034,18245],[-169,93]],[[15284,19818],[-24,-130]],[[4666,16416],[144,-550],[-105,-200],[66,-361],[333,-517],[354,-235],[167,-408],[-98,-85],[21,-430]],[[15319,19816],[2,183]],[[18086,20563],[-12,-21]],[[17762,20477],[0,0]],[[17762,20477],[-114,91]],[[17762,20477],[1,-41]],[[15931,19974],[51,-89]],[[18074,20542],[0,0]],[[18074,20542],[-78,69]],[[18074,20542],[-4,-87]],[[12640,19016],[-136,-154],[-10,-377]],[[12640,19016],[-259,-413],[19,-272]],[[9608,18072],[-176,-430]],[[10246,18275],[-25,-184]],[[15786,19918],[112,52]],[[17821,20463],[-59,14]],[[10068,18209],[-276,-187]],[[18175,20553],[-89,10]],[[15665,19877],[64,36]],[[16242,20030],[-93,90]],[[16264,20034],[302,64]],[[12662,19000],[-22,16]],[[12662,19000],[-152,-281],[137,-177]],[[16566,20098],[76,159]],[[18236,20540],[-49,268]],[[15294,19743],[134,29]],[[10323,18255],[218,-110],[156,-307]],[[16270,20007],[266,-56]],[[15673,19835],[0,0]],[[15673,19835],[-54,-31]],[[15673,19835],[22,-31]],[[17969,20445],[-34,-181]],[[17430,20299],[-32,-41]],[[16174,19951],[-131,-98]],[[18070,20455],[-28,-393]],[[18136,20469],[-66,-14]],[[15312,19704],[148,31]],[[15312,19704],[146,-99]],[[10062,18128],[-104,-128]],[[15260,19688],[-18,-135]],[[16884,20131],[178,295]],[[15695,19804],[0,0]],[[15695,19804],[-70,-67]],[[15695,19804],[37,-56]],[[15998,19888],[45,-35]],[[15050,19623],[177,-55]],[[17241,20218],[20,-193]],[[17398,20258],[-157,-40]],[[9792,18022],[-184,50]],[[16562,20019],[4,79]],[[18131,20429],[40,97]],[[15267,19654],[45,50]],[[18123,20416],[-66,0]],[[16043,19853],[1,-131]],[[16173,19884],[303,-315]],[[16551,19974],[11,45]],[[15732,19748],[0,-217]],[[12818,18904],[-156,96]],[[12818,18904],[-173,-556]],[[10119,18063],[-161,-63]],[[12828,18900],[-10,4]],[[12828,18900],[3,-175]],[[10221,18091],[-60,-35]],[[10221,18091],[68,-13]],[[16536,19951],[15,23]],[[16170,19851],[-30,-168]],[[9958,18000],[-10,-14]],[[10161,18056],[-42,7]],[[16894,20034],[367,-9]],[[9948,17986],[-156,36]],[[8183,17403],[-142,-61],[-130,338],[-508,100]],[[15227,19568],[0,0]],[[15227,19568],[15,-15]],[[15227,19568],[-57,-61]],[[15242,19553],[45,-166]],[[17747,20219],[-159,-148]],[[17935,20264],[-114,199]],[[15128,19500],[-141,67]],[[15128,19500],[-118,-29]],[[15170,19507],[-42,-7]],[[15170,19507],[-178,-100]],[[16704,19929],[-142,90]],[[10298,18036],[-137,20]],[[16731,19921],[70,-299]],[[16044,19722],[-23,-60]],[[17798,20183],[137,81]],[[4018,15848],[240,496],[408,72]],[[16678,19870],[-127,104]],[[17261,20025],[-6,-52]],[[17526,20087],[0,0]],[[17526,20087],[-128,171]],[[17526,20087],[-25,-46]],[[17534,20078],[-8,9]],[[16024,19665],[-84,105]],[[16021,19662],[-69,-57]],[[16853,19879],[-211,378]],[[16140,19683],[-96,39]],[[17556,20064],[-22,14]],[[10235,17931],[-287,55]],[[17588,20071],[-32,-7]],[[16144,19680],[-4,3]],[[12831,18725],[34,-51]],[[12831,18725],[-100,-243]],[[15661,19539],[0,0]],[[15661,19539],[17,-51]],[[15661,19539],[-142,4],[-177,-326]],[[17255,19973],[9,-75]],[[15874,19590],[-90,-76]],[[18133,20194],[91,333]],[[18133,20194],[109,253]],[[13303,18848],[125,80],[-249,442]],[[13303,18848],[440,-521]],[[15952,19605],[-78,-15]],[[9432,17642],[-295,-323],[-179,21]],[[15732,19531],[-71,8]],[[16873,19831],[-72,-209]],[[17009,19868],[246,105]],[[15749,19521],[-17,10]],[[10280,17889],[-44,-393]],[[15287,19387],[0,0]],[[15287,19387],[40,77]],[[15287,19387],[29,-117]],[[8880,17429],[60,-95]],[[3738,15634],[0,0]],[[3738,15634],[210,76]],[[3948,15710],[70,138]],[[15280,19375],[74,68]],[[12865,18674],[103,-121]],[[12865,18674],[-47,-178]],[[15194,19350],[38,-107]],[[15784,19514],[-34,7]],[[18345,20191],[-142,-324]],[[16090,19587],[-69,75]],[[13056,18718],[-228,182]],[[13056,18718],[57,-27]],[[16248,19625],[-104,55]],[[17264,19898],[0,0]],[[17264,19898],[-45,-40]],[[17264,19898],[47,-197]],[[10144,17811],[21,-143]],[[9507,17605],[-41,-14]],[[17669,20002],[77,69]],[[9466,17591],[-34,51]],[[10172,17813],[-7,-145]],[[16218,19604],[-74,76]],[[15294,19345],[51,-20]],[[17446,19922],[88,156]],[[12038,18375],[-141,-187]],[[12038,18375],[206,-364],[6,-311]],[[16583,19685],[-47,266]],[[18142,20095],[-9,99]],[[18142,20095],[144,55]],[[16205,19576],[-91,-66]],[[13113,18691],[-220,460]],[[13113,18691],[500,-430]],[[15921,19496],[-47,94]],[[15921,19496],[-58,-37]],[[15921,19496],[0,0]],[[18573,20200],[140,-56]],[[14987,19231],[253,18]],[[18042,20062],[37,-61]],[[18042,20062],[-131,-55]],[[3636,15526],[102,108]],[[12647,18542],[-13,-8]],[[12647,18542],[22,-110]],[[12634,18534],[-56,-37]],[[12634,18534],[-1,-151]],[[12494,18485],[1,-5]],[[12494,18485],[-41,-121]],[[3591,15496],[45,30]],[[17766,19971],[25,59]],[[12495,18480],[31,-194]],[[12495,18480],[-5,-218]],[[17606,19923],[50,-40]],[[12578,18497],[-33,-60]],[[12578,18497],[6,-106]],[[3636,15501],[0,25]],[[16114,19510],[-162,95]],[[17783,19953],[33,28]],[[8940,17334],[-630,-142],[-127,211]],[[8958,17340],[-18,-6]],[[15240,19249],[76,21]],[[15316,19270],[26,-53]],[[15235,19246],[5,3]],[[10093,17699],[30,-404]],[[17788,19939],[-200,132]],[[18417,20101],[26,-415]],[[9950,17639],[-64,-108]],[[18079,20001],[50,-58]],[[16476,19569],[20,-361]],[[15970,19423],[-49,73]],[[16990,19700],[321,1]],[[15819,19377],[61,-171]],[[12968,18553],[-56,-61]],[[12968,18553],[45,-222]],[[18713,20144],[59,-15]],[[10697,17838],[168,121],[179,-133],[-384,-336],[-192,62]],[[10697,17838],[-119,-163]],[[10165,17668],[71,-172]],[[16801,19622],[285,-279]],[[15342,19217],[19,-34]],[[18613,20096],[100,48]],[[15232,19178],[28,-73]],[[18557,20071],[-23,-189]],[[10512,17757],[-126,132]],[[10512,17757],[-173,204]],[[15977,19377],[39,-43]],[[11897,18188],[100,-370]],[[11897,18188],[300,-352]],[[9863,17549],[23,-18]],[[12912,18492],[-116,-180]],[[12912,18492],[-294,-272]],[[12584,18391],[20,-77]],[[12584,18391],[-10,-102]],[[12400,18331],[-19,-72]],[[12400,18331],[78,-172]],[[18129,19943],[74,-76]],[[18133,19935],[9,160]],[[15361,19183],[198,-204]],[[9886,17531],[204,-208]],[[16069,19365],[-99,58]],[[17311,19701],[7,-17]],[[17455,19727],[0,0]],[[17455,19727],[-137,-43]],[[17455,19727],[100,-151]],[[19431,20237],[-126,-344]],[[17318,19684],[18,-234]],[[15309,19133],[0,0]],[[15309,19133],[52,50]],[[15309,19133],[50,-64]],[[17876,19829],[-88,110]],[[16223,19384],[253,185]],[[15535,19189],[7,203]],[[15535,19189],[79,10]],[[16202,19374],[-88,136]],[[12381,18259],[-71,33]],[[12381,18259],[-32,-84]],[[15614,19199],[143,-2]],[[15614,19199],[65,-63]],[[15290,19098],[40,-51]],[[16006,19297],[61,-93]],[[15528,19159],[7,30]],[[15528,19159],[60,-55]],[[16217,19342],[279,-134]],[[10578,17675],[-66,82]],[[10578,17675],[-200,-53]],[[18203,19867],[178,-265]],[[15792,19210],[-8,304]],[[14963,18977],[273,-14]],[[15514,19129],[14,30]],[[9635,17353],[-169,238]],[[15284,19059],[34,-69]],[[15954,19236],[16,187]],[[12796,18312],[-56,13]],[[12796,18312],[-15,-21]],[[17674,19676],[-118,388]],[[15889,19190],[178,14]],[[12781,18291],[-6,-9]],[[12781,18291],[2,-62]],[[15754,19150],[31,-124]],[[15275,19011],[34,122]],[[10236,17496],[-48,-118]],[[12775,18282],[-81,-18]],[[12775,18282],[-35,-56]],[[12293,18135],[130,-113]],[[18534,19882],[-91,-196]],[[13013,18331],[22,-36]],[[13013,18331],[-180,-143]],[[15831,19142],[-46,-116]],[[17915,19704],[164,297]],[[16067,19204],[67,-66]],[[15887,19146],[297,-101]],[[15236,18963],[0,0]],[[15236,18963],[39,48]],[[15236,18963],[-197,-67]],[[9792,17295],[376,-400]],[[17556,19573],[-2,-8]],[[18602,19839],[-68,43]],[[10410,17463],[-60,-99]],[[18610,19808],[-128,-285]],[[10188,17378],[-65,-83]],[[15559,18979],[-105,-77]],[[15559,18979],[27,-52]],[[15559,18979],[0,0]],[[16145,19131],[39,-86]],[[17336,19450],[69,-293]],[[15785,19026],[35,-195]],[[17857,19580],[272,363]],[[12462,18054],[0,-15]],[[11830,17861],[-52,-50]],[[10419,17419],[-69,-55]],[[19350,19959],[286,-235]],[[16496,19208],[89,-218]],[[12505,18054],[5,-13]],[[12462,18039],[48,2]],[[12423,18022],[39,17]],[[17731,19522],[57,417]],[[12510,18041],[41,-7]],[[10123,17295],[45,-400]],[[17086,19343],[250,107]],[[11778,17811],[-16,-14]],[[10350,17364],[-162,14]],[[15586,18927],[0,0]],[[15586,18927],[-33,-53]],[[15586,18927],[94,-171]],[[12545,18041],[6,-7]],[[11744,17795],[-163,-100]],[[11762,17797],[-18,-2]],[[18443,19686],[-62,-84]],[[12551,18034],[54,-1]],[[13713,18379],[59,16]],[[11800,17801],[-22,10]],[[19769,20017],[-338,220]],[[12397,17978],[26,44]],[[19305,19893],[-243,-359]],[[13720,18368],[72,5]],[[12605,18033],[404,151],[304,-495],[154,-573],[-8,-573]],[[13829,18394],[94,-261]],[[16184,19045],[64,-116]],[[11581,17695],[-466,-538],[1,-245],[244,-208],[-149,-261]],[[11820,17767],[-58,30]],[[15303,18788],[78,14]],[[13761,18333],[27,-43]],[[13743,18327],[0,0]],[[13743,18327],[-22,-51]],[[13743,18327],[65,-26]],[[14366,18506],[-53,-242]],[[18381,19602],[2,-44]],[[16950,19221],[136,122]],[[13901,18356],[129,7]],[[11817,17724],[-73,71]],[[13613,18261],[74,-50]],[[13613,18261],[18,-94]],[[15279,18739],[126,32]],[[16915,19190],[35,31]],[[12755,18002],[104,-227]],[[12567,17942],[38,91]],[[15819,18876],[51,234]],[[14030,18363],[243,-194]],[[18383,19558],[-176,-216],[36,-262]],[[12541,17913],[26,29]],[[12744,17964],[11,38]],[[17648,19344],[7,210],[-200,173]],[[13972,18312],[58,51]],[[17670,19338],[534,-444]],[[18738,19616],[-225,-142]],[[15252,18674],[-76,130]],[[15252,18674],[-10,-9]],[[14978,18595],[231,-87]],[[15820,18831],[-140,-75]],[[12632,17907],[123,95]],[[12142,17758],[-154,-168]],[[15261,18671],[-9,3]],[[15261,18671],[14,340]],[[15261,18671],[0,0]],[[15242,18665],[-119,146]],[[15242,18665],[-69,0]],[[16004,18874],[89,-58]],[[15258,18664],[134,-85]],[[13763,18229],[91,-114]],[[11661,17591],[-80,104]],[[17626,19301],[0,4]],[[16248,18929],[114,-9]],[[18482,19523],[-99,35]],[[11765,17617],[-104,-26]],[[15255,18640],[51,-96]],[[17634,19289],[-4,8]],[[15680,18756],[62,-102]],[[16022,18849],[71,-33]],[[15986,18837],[-166,-6]],[[11944,17649],[16,-19]],[[16585,18990],[330,200]],[[11959,17647],[1,-17]],[[17598,19254],[35,31]],[[16362,18920],[173,-9]],[[16589,18980],[-4,10]],[[11960,17630],[28,-40]],[[15189,18576],[56,5]],[[18513,19474],[-31,49]],[[15245,18581],[16,90]],[[16093,18816],[155,113]],[[12495,17773],[72,169]],[[15035,18514],[3,-205]],[[17405,19157],[0,0]],[[17405,19157],[139,-202]],[[17405,19157],[-142,-426]],[[17406,19152],[173,52]],[[16535,18911],[54,69]],[[11988,17590],[-90,-400]],[[15458,18605],[284,49]],[[14278,18261],[3,-10]],[[12586,17761],[229,40]],[[15226,18526],[19,55]],[[14313,18264],[-32,-13]],[[14281,18251],[-8,-82]],[[15209,18508],[17,18]],[[13854,18115],[69,18]],[[15742,18654],[59,-140]],[[13923,18133],[198,-412]],[[19062,19534],[0,0]],[[16173,18768],[-7,-37]],[[12815,17801],[0,0]],[[12815,17801],[44,-26]],[[13777,18080],[77,35]],[[15048,18446],[111,-235]],[[13735,18058],[-52,-630]],[[15089,18448],[120,60]],[[18573,19386],[152,65]],[[17183,19017],[-233,204]],[[16799,18913],[-210,67]],[[12859,17775],[168,-512],[382,-300],[-23,-296]],[[14382,18213],[-69,51]],[[12748,17725],[67,76]],[[14273,18169],[16,-664]],[[18587,19345],[-74,129]],[[10168,16895],[52,-174],[379,-228]],[[12638,17657],[102,-289]],[[18532,19302],[55,43]],[[16501,18757],[34,154]],[[18394,19255],[-151,-175]],[[15497,18467],[101,-91]],[[18623,19295],[0,0]],[[18623,19295],[-36,50]],[[18623,19295],[-47,-95]],[[11661,17321],[-3,-152]],[[18633,19291],[0,0]],[[18633,19291],[-10,4]],[[18633,19291],[-56,-237]],[[18647,19294],[115,70]],[[15038,18309],[85,-102]],[[14958,18284],[80,25]],[[11733,17327],[-72,264]],[[15801,18516],[101,187]],[[15801,18514],[-84,-56]],[[15801,18514],[43,-44]],[[15801,18514],[0,0]],[[16286,18645],[76,275]],[[12751,17623],[3,-11]],[[19525,19491],[-220,402]],[[13840,17941],[281,-220]],[[12754,17612],[15,-90]],[[12745,17609],[9,3]],[[17544,18955],[0,0]],[[17544,18955],[-33,-38]],[[17544,18955],[182,-192]],[[15279,18322],[0,0]],[[15279,18322],[-53,204]],[[15279,18322],[-76,-7]],[[17191,18841],[-276,349]],[[15844,18470],[0,0]],[[15844,18470],[-19,-47]],[[15844,18470],[107,-329]],[[16781,18727],[77,-185]],[[16266,18583],[0,0]],[[16266,18583],[20,62]],[[16266,18583],[-46,-42]],[[18826,19254],[-193,37]],[[16620,18670],[-119,87]],[[12733,17553],[36,-31]],[[12199,17389],[-14,-345]],[[15612,18388],[28,-27]],[[11757,17250],[-99,-81]],[[15598,18376],[-29,-62]],[[15868,18445],[34,120]],[[14971,18191],[139,-21]],[[18243,19080],[-17,-98]],[[15825,18423],[-20,-6]],[[15825,18423],[-68,-131]],[[15805,18417],[-76,-4]],[[15805,18417],[-63,-63]],[[16644,18634],[52,-207]],[[12769,17522],[272,-623],[345,-232]],[[15123,18207],[36,4]],[[15159,18211],[100,-1]],[[15708,18363],[-110,13]],[[11658,17169],[76,-183]],[[17601,18876],[51,84]],[[15569,18314],[-31,-269]],[[12536,17417],[2,-35]],[[15110,18170],[13,37]],[[15259,18210],[20,112]],[[18487,19084],[45,218]],[[12526,17403],[12,-21]],[[18546,19089],[-14,213]],[[15102,18154],[0,0]],[[15102,18154],[8,16]],[[15102,18154],[-110,22]],[[14687,18030],[134,-489]],[[15250,18184],[9,26]],[[18520,19067],[-294,-85]],[[11898,17190],[-183,-560]],[[12538,17382],[21,-40]],[[12342,17321],[135,-265]],[[18226,18982],[-22,-88]],[[15091,18121],[51,-56]],[[11949,17190],[-51,0]],[[16234,18436],[32,147]],[[16212,18425],[139,-250]],[[16429,18483],[72,274]],[[16154,18399],[137,-177]],[[15022,18082],[-29,27]],[[15022,18082],[-43,-29]],[[18561,19040],[-217,-378]],[[16333,18442],[128,-252]],[[16853,18578],[-51,145]],[[16428,18450],[-142,195]],[[14508,17909],[121,-17],[131,-383]],[[15978,18325],[141,-84]],[[16858,18542],[-121,74]],[[16858,18542],[41,-150]],[[16858,18542],[0,0]],[[14507,17883],[79,-392]],[[18204,18894],[-94,-97]],[[15715,18215],[-146,99]],[[15090,18033],[-68,49]],[[15090,18033],[12,121]],[[15090,18033],[0,0]],[[15084,18028],[6,5]],[[17850,18784],[494,-122]],[[17850,18784],[4,-311]],[[16865,18517],[126,85]],[[15183,18045],[67,139]],[[14121,17721],[168,-216]],[[15090,17999],[90,-7]],[[15304,18058],[-54,126]],[[15624,18144],[-82,38]],[[15958,18234],[116,-41]],[[11749,16998],[-15,-12]],[[11734,16986],[-19,-356]],[[16696,18427],[-126,96]],[[16696,18427],[271,-187]],[[16696,18427],[0,0]],[[18110,18797],[-264,221]],[[18110,18797],[-1,-8]],[[18110,18797],[0,0]],[[15317,18025],[-13,33]],[[15393,18032],[145,13]],[[12040,17038],[-50,-392]],[[15133,17949],[-49,79]],[[15133,17949],[32,33]],[[15233,17963],[71,95]],[[15538,18045],[269,-197]],[[18838,18927],[-220,158]],[[15063,17899],[21,129]],[[14972,17872],[89,-305]],[[12209,17056],[-24,-12]],[[12185,17044],[7,-249]],[[15951,18141],[-192,41]],[[15951,18141],[-25,-57]],[[15951,18141],[0,0]],[[15180,17918],[-47,31]],[[16899,18392],[-119,70]],[[16899,18392],[68,-152]],[[16899,18392],[0,0]],[[12557,17145],[-8,-11]],[[16627,18316],[-205,61]],[[16627,18316],[-60,92]],[[11576,16837],[-34,-134]],[[12549,17134],[-2,-56]],[[18008,18669],[13,-18]],[[15264,17915],[244,-352]],[[15926,18084],[-88,-1]],[[15926,18084],[0,-40]],[[15926,18084],[0,0]],[[10599,16493],[476,159],[136,-209]],[[13683,17428],[-271,727],[-356,563]],[[17050,18371],[-41,162]],[[17050,18371],[-75,88]],[[16645,18261],[-18,55]],[[16645,18261],[-137,52]],[[12547,17078],[-93,-296]],[[16351,18175],[81,-15]],[[16351,18175],[-42,-137]],[[15923,18055],[96,18]],[[11580,16777],[-38,-74]],[[15926,18044],[0,0]],[[15926,18044],[-135,60]],[[15926,18044],[28,-81]],[[16461,18190],[0,0]],[[16461,18190],[-29,-30]],[[15260,17854],[-197,45]],[[16947,18318],[33,85]],[[17087,18352],[-37,19]],[[15054,17780],[7,-213]],[[16513,18184],[-40,140]],[[16513,18184],[-52,6]],[[16432,18160],[-38,-100]],[[18344,18662],[-1,0]],[[18344,18662],[135,-107],[292,176]],[[16959,18295],[42,50]],[[19050,18843],[0,0]],[[19050,18843],[12,691]],[[17584,18445],[259,4]],[[11542,16703],[-5,-73]],[[14905,17699],[55,-200]],[[16555,18154],[-42,30]],[[16555,18154],[-164,-113]],[[16715,18196],[-70,65]],[[16715,18196],[-39,-35]],[[16715,18196],[72,-18]],[[16593,18159],[-38,-5]],[[16593,18159],[-46,82]],[[15190,17767],[-127,132]],[[15251,17783],[-54,-9]],[[16596,18156],[-3,3]],[[16596,18156],[-77,-140]],[[14289,17505],[108,-135]],[[18771,18731],[65,196]],[[18771,18731],[201,-66]],[[15954,17963],[-147,-115]],[[16967,18240],[56,-124]],[[16676,18161],[-6,-8]],[[16676,18161],[36,-126]],[[16670,18153],[-74,3]],[[16670,18153],[16,-261]],[[16787,18178],[95,-45]],[[16787,18178],[-34,-288]],[[16983,18228],[47,91]],[[11537,16630],[-222,-651]],[[11562,16637],[-25,-7]],[[17142,18235],[-110,329]],[[17142,18235],[68,173]],[[12201,16807],[-9,-12]],[[12192,16795],[-22,-621]],[[15807,17848],[-299,-285]],[[16598,18062],[41,72]],[[16882,18133],[262,-142]],[[16882,18133],[-86,-251]],[[14586,17491],[-189,-121]],[[11715,16630],[47,-855]],[[12490,16867],[-36,-85]],[[3878,13967],[53,-112]],[[11525,16566],[-80,-149]],[[16439,17995],[159,67]],[[14821,17541],[-61,-32]],[[18972,18665],[0,0]],[[18972,18665],[78,178]],[[13976,17293],[0,0]],[[13976,17293],[-72,253]],[[13976,17293],[16,-202]],[[3706,13887],[22,-195]],[[14760,17509],[-174,-18]],[[11211,16443],[104,-464]],[[16059,17858],[16,86]],[[3882,13922],[115,-157]],[[12025,16677],[-35,-31]],[[15061,17567],[-4,-69]],[[14397,17370],[138,-622]],[[11990,16646],[9,-262]],[[12454,16782],[-284,-608]],[[10793,16261],[-19,-13]],[[17230,18140],[-88,95]],[[17230,18140],[304,181],[169,438],[147,25]],[[10774,16248],[-175,245]],[[11894,16597],[12,-301]],[[14960,17499],[-139,42]],[[19421,18693],[-371,150]],[[10775,16229],[-1,19]],[[12110,16645],[-111,-261]],[[10808,16226],[-33,3]],[[15057,17498],[-97,1]],[[3893,13846],[70,-74]],[[17211,18082],[-93,41]],[[17211,18082],[19,58]],[[17823,18228],[287,-69]],[[3856,13787],[23,-5]],[[3879,13782],[-3,3]],[[3879,13782],[57,-27]],[[15508,17563],[-89,-102]],[[19379,18596],[-54,-143]],[[3816,13737],[-45,-136]],[[17145,17991],[-52,-87]],[[17145,17991],[66,91]],[[15153,17436],[-96,62]],[[3728,13692],[7,181]],[[3728,13692],[4,-22]],[[13992,17091],[-39,-51]],[[13992,17091],[177,-2]],[[3969,13766],[28,-1]],[[3732,13670],[-42,-39]],[[3732,13670],[39,-69]],[[16650,17823],[-52,239]],[[3997,13765],[12,1]],[[4009,13766],[-4,41]],[[4009,13766],[45,-122]],[[10868,16113],[-38,-46]],[[19009,18428],[0,0]],[[19009,18428],[-37,237]],[[19009,18428],[-188,-140]],[[13953,17040],[-270,388]],[[15419,17461],[-266,-25]],[[16243,17677],[-289,286]],[[17094,17908],[-265,-12]],[[17093,17904],[-53,-111]],[[10830,16067],[-55,162]],[[18241,18205],[-249,365],[34,189]],[[17874,18108],[-369,210]],[[18205,18190],[-99,-143]],[[18724,18325],[-98,270]],[[19021,18399],[-12,29]],[[16218,17653],[25,24]],[[11921,16376],[-15,-80]],[[19325,18453],[-221,-141]],[[19449,18482],[-124,-29]],[[3771,13601],[185,-192]],[[11999,16384],[92,-361]],[[10589,15940],[-4,-162]],[[16890,17790],[-130,41]],[[16890,17790],[-24,84]],[[18613,18244],[111,81]],[[10904,16016],[-74,51]],[[16726,17718],[-49,143]],[[16726,17718],[-125,24]],[[19365,18402],[46,132]],[[17040,17793],[-77,53]],[[17040,17793],[-48,-51]],[[17040,17793],[0,0]],[[18721,18234],[3,91]],[[4054,13644],[-83,20]],[[4054,13644],[76,-395]],[[17821,17993],[53,115]],[[14859,17176],[-57,128]],[[14859,17176],[-35,-31]],[[11906,16296],[-103,-502]],[[19104,18312],[-83,87]],[[18504,18157],[119,441]],[[18712,18209],[9,25]],[[18106,18047],[-232,61]],[[19008,18277],[-24,-360]],[[16992,17742],[-31,-22]],[[14874,17140],[-15,36]],[[14874,17140],[-49,-31]],[[16961,17720],[-71,70]],[[16961,17720],[-64,-42]],[[16961,17720],[0,0]],[[3757,13478],[199,-69]],[[15912,17418],[-229,250]],[[16897,17678],[-89,75]],[[16897,17678],[-57,-65]],[[16897,17678],[0,0]],[[17395,17809],[-302,95]],[[16538,17575],[10,177]],[[16538,17575],[33,171]],[[13386,16667],[73,-124]],[[14692,17048],[-34,-207]],[[17637,17863],[-5,80]],[[17637,17863],[46,-11]],[[17635,17855],[-70,17]],[[17635,17855],[2,8]],[[14897,17098],[-23,42]],[[14897,17098],[-10,-13]],[[10832,15871],[-55,-138]],[[19349,18296],[-175,-112]],[[14887,17085],[-71,-20]],[[14887,17085],[-69,-52]],[[10585,15778],[-19,-698]],[[17683,17852],[36,103]],[[17683,17852],[30,-14]],[[18546,18076],[166,133]],[[16454,17511],[-211,166]],[[16451,17507],[3,4]],[[16840,17613],[-114,105]],[[16840,17613],[-76,-93]],[[16840,17613],[0,0]],[[14922,17067],[-25,31]],[[14922,17067],[0,0]],[[11315,15979],[266,-596]],[[18156,17945],[-50,102]],[[14754,17004],[168,63]],[[16525,17499],[-71,12]],[[16525,17499],[-15,-31]],[[16545,17498],[-7,77]],[[16545,17498],[-20,1]],[[16545,17498],[0,0]],[[19174,18184],[-70,128]],[[16574,17482],[28,116]],[[18817,18075],[-96,159]],[[14939,17020],[-17,47]],[[14939,17020],[101,40]],[[16764,17520],[-121,131]],[[16764,17520],[-15,-11]],[[16764,17520],[0,0]],[[3956,13409],[174,-160]],[[16749,17509],[-86,105]],[[16749,17509],[-10,-27]],[[16749,17509],[0,0]],[[18753,18033],[-41,176]],[[12170,16174],[-79,-151]],[[4079,13436],[-204,248]],[[10777,15733],[-192,45]],[[16739,17482],[-95,136]],[[16739,17482],[-42,-55]],[[16739,17482],[0,0]],[[13459,16543],[26,-300],[292,-474],[-18,-158]],[[17807,17727],[-1,46]],[[17807,17727],[25,23]],[[16697,17427],[-152,71]],[[14658,16841],[-4,61]],[[14658,16841],[-2,-8]],[[14658,16841],[0,0]],[[14656,16833],[-121,-85]],[[14826,16875],[177,-100]],[[14809,16860],[-153,-27]],[[17790,17680],[17,47]],[[17790,17680],[107,-47]],[[17634,17629],[-171,124]],[[17634,17629],[1,226]],[[18818,17934],[203,465]],[[10871,15643],[-94,90]],[[12091,16023],[-288,-229]],[[14535,16748],[54,-197]],[[18900,17921],[240,-8]],[[18428,17781],[-76,409]],[[18428,17781],[-384,-2]],[[17897,17633],[42,-11]],[[17897,17633],[10,-50]],[[15291,16889],[13,391],[-151,156]],[[4130,13249],[333,-336]],[[19140,17913],[34,271]],[[19138,17902],[2,11]],[[16236,17127],[-82,251],[-242,40]],[[17679,17518],[-45,111]],[[17679,17518],[111,162]],[[15003,16775],[-64,245]],[[15730,16976],[-183,130],[-128,355]],[[15751,16975],[78,-57],[83,500]],[[11803,15794],[-41,-19]],[[15005,16748],[-2,27]],[[15005,16748],[-416,-197]],[[15005,16748],[0,0]],[[19149,17866],[-11,36]],[[18478,17692],[-50,89]],[[18478,17692],[326,123],[206,-125]],[[11762,15775],[-58,-427]],[[17681,17476],[-34,9]],[[17681,17476],[-2,42]],[[15032,16736],[-27,12]],[[15032,16736],[18,0]],[[17190,17303],[66,37]],[[16882,17208],[-91,-240]],[[17183,17289],[-191,453]],[[17183,17289],[-95,-67]],[[17183,17289],[0,0]],[[19085,17783],[53,119]],[[5548,13630],[583,-183]],[[14589,16551],[-19,-410],[130,-417],[-252,-510],[-332,-326],[-266,264],[-126,295]],[[15717,16865],[-4,10]],[[15717,16865],[13,20]],[[17194,17266],[0,0]],[[17194,17266],[-11,23]],[[17194,17266],[-71,-74]],[[3579,12886],[291,-135],[564,143]],[[16332,16993],[-169,68]],[[16332,16993],[-18,-28]],[[19154,17737],[-5,129]],[[17204,17216],[0,0]],[[17204,17216],[-10,50]],[[17204,17216],[-50,-81]],[[16314,16965],[-131,71]],[[16314,16965],[-73,-52]],[[15588,16762],[5,86]],[[15588,16762],[70,-77]],[[15503,16715],[15,141]],[[15503,16715],[85,47]],[[17679,17304],[-30,-4]],[[17679,17304],[2,172]],[[19096,17671],[58,66]],[[19236,17696],[-87,170]],[[16457,16945],[209,-64]],[[16457,16945],[-125,48]],[[18500,17489],[-22,203]],[[18500,17489],[410,97],[61,-141]],[[15489,16665],[-118,209]],[[15489,16665],[14,50]],[[15489,16665],[34,-18]],[[17691,17259],[-12,45]],[[17691,17259],[-26,-20]],[[18502,17471],[-2,18]],[[17241,17130],[-37,86]],[[16037,16764],[-81,73]],[[19224,17613],[-70,124]],[[4852,13170],[134,345],[256,-41],[306,156]],[[17701,17210],[-10,49]],[[17701,17210],[24,20]],[[18012,17286],[-3,100]],[[18012,17286],[95,-30]],[[10661,15142],[6,-110]],[[16019,16742],[18,22]],[[18498,17410],[-277,-45],[-178,295]],[[16069,16753],[-32,11]],[[16069,16753],[-52,138]],[[17797,17218],[183,25]],[[17797,17218],[17,-48]],[[18553,17410],[248,10]],[[19142,17548],[12,189]],[[10566,15080],[-1102,-145],[-403,-296],[-175,-460],[-193,-104],[83,-451]],[[17980,17243],[-37,68]],[[17980,17243],[32,43]],[[17980,17243],[36,-38]],[[15402,16535],[14,175]],[[15402,16535],[87,130]],[[11205,15271],[-69,-143]],[[17912,17214],[34,-127]],[[11581,15383],[123,-35]],[[17707,17153],[-6,57]],[[17707,17153],[90,65]],[[16462,16805],[-136,32]],[[16462,16805],[17,1]],[[16479,16806],[-22,139]],[[16479,16806],[113,-109]],[[17422,17063],[-63,228]],[[17422,17063],[-63,-35]],[[17359,17028],[-103,43]],[[17359,17028],[-80,-111]],[[16097,16682],[-28,71]],[[16097,16682],[71,68]],[[18582,17350],[103,-14]],[[16437,16775],[-67,6]],[[16437,16775],[25,30]],[[4463,12913],[389,257]],[[17443,17025],[-21,38]],[[17443,17025],[-21,270]],[[4434,12894],[0,0]],[[4434,12894],[29,19]],[[17097,16929],[-400,498]],[[17097,16929],[-58,-139]],[[10667,15032],[-101,48]],[[11704,15348],[165,-428],[550,-24],[80,-167]],[[17104,16905],[104,59]],[[16399,16709],[38,66]],[[16399,16709],[-62,-68]],[[15879,16559],[-162,306]],[[15879,16559],[-41,242]],[[6132,13469],[-1,-22]],[[11018,15107],[-351,-75]],[[11136,15128],[-118,-21]],[[6131,13447],[299,273],[541,74],[518,-190],[512,54],[337,-202],[438,168]],[[17128,16872],[-2,-124]],[[17647,16991],[-53,92]],[[17647,16991],[60,162]],[[11030,15058],[-12,49]],[[16592,16697],[85,-14]],[[16592,16697],[37,-175]],[[16157,16570],[-60,112]],[[16157,16570],[46,-8]],[[11546,15202],[35,181]],[[11152,15078],[-16,50]],[[17623,16949],[-180,76]],[[17623,16949],[24,42]],[[16677,16683],[6,41]],[[16677,16683],[45,-2]],[[16722,16681],[7,113]],[[16722,16681],[40,-52]],[[15891,16433],[-12,126]],[[15891,16433],[26,12]],[[11345,15075],[201,127]],[[17872,16951],[21,22]],[[17872,16951],[19,-23]],[[17319,16801],[-222,128]],[[11349,15056],[-4,19]],[[16431,16548],[-32,161]],[[16431,16548],[47,-41]],[[16762,16629],[21,-7]],[[16762,16629],[-2,-172]],[[19503,17347],[-126,-341]],[[17891,16928],[148,-18]],[[17891,16928],[61,-140]],[[17800,16901],[72,50]],[[17800,16901],[25,-33]],[[11167,14969],[178,106]],[[16783,16622],[122,-61]],[[16783,16622],[110,-106]],[[4493,12684],[-59,210]],[[4493,12684],[0,0]],[[17665,16812],[-42,137]],[[17665,16812],[135,89]],[[16416,16464],[15,84]],[[16416,16464],[165,-84]],[[2054,11688],[-51,589],[195,240],[555,451],[198,40],[628,-122]],[[18648,17032],[-71,309]],[[18648,17032],[-440,147]],[[15868,16263],[23,170]],[[15868,16263],[148,-45]],[[16280,16370],[136,94]],[[16280,16370],[36,-28]],[[18713,16989],[-65,43]],[[18713,16989],[-51,-111]],[[11536,14936],[10,266]],[[17952,16788],[81,16]],[[13759,15611],[132,26],[264,418],[62,530],[-264,455]],[[16316,16342],[98,10]],[[16316,16342],[62,-72]],[[16414,16352],[46,-12]],[[16414,16352],[-3,-164]],[[15475,16083],[-73,452]],[[15475,16083],[393,180]],[[16181,16281],[-24,289]],[[16181,16281],[99,89]],[[17973,16759],[-21,29]],[[16016,16218],[165,63]],[[16016,16218],[17,-132]],[[15396,16037],[-154,373]],[[15396,16037],[79,46]],[[16378,16270],[-11,-110]],[[17342,16517],[-53,70]],[[17342,16517],[-74,-87]],[[17358,16506],[-16,11]],[[17358,16506],[-45,110]],[[2100,11509],[-46,180]],[[11319,14730],[-281,13],[-238,-361]],[[19377,17006],[287,-128]],[[13724,15447],[35,164]],[[19156,16934],[-150,423]],[[19156,16934],[221,72]],[[17743,16565],[-78,247]],[[17743,16565],[272,-36]],[[17268,16430],[33,-188]],[[17268,16430],[-59,-227]],[[16033,16086],[-1,-6]],[[16033,16086],[53,-44]],[[16411,16188],[11,-104]],[[16411,16188],[-52,-206]],[[16032,16080],[-134,-145]],[[16032,16080],[-7,-124]],[[4434,12328],[59,356]],[[11330,14645],[-11,85]],[[11412,14663],[-93,67]],[[17049,16299],[-107,469],[-222,156]],[[17049,16299],[120,233]],[[17025,16287],[24,12]],[[17025,16287],[28,-82]],[[11431,14640],[-19,23]],[[11389,14614],[23,49]],[[18015,16529],[400,128]],[[18015,16529],[216,-228],[162,204]],[[11486,14638],[-55,2]],[[11223,14552],[-423,-170]],[[11577,14662],[60,-74]],[[16422,16084],[142,-69]],[[16422,16084],[20,-80]],[[4480,12237],[83,73]],[[16025,15956],[9,-42]],[[16025,15956],[149,-143]],[[4602,12262],[-109,422]],[[10800,14382],[-115,-83]],[[16034,15914],[0,-3]],[[16034,15914],[-10,-7]],[[19664,16878],[-71,351]],[[19664,16878],[111,-29]],[[16034,15911],[1,-67]],[[16034,15911],[-147,-248]],[[16024,15907],[-25,11]],[[16024,15907],[-68,-104]],[[17556,16326],[-198,180]],[[17556,16326],[-137,411]],[[10685,14299],[44,257]],[[10685,14299],[13,-416]],[[16359,15982],[-141,-127]],[[16359,15982],[50,-112]],[[11637,14588],[196,-86]],[[17604,16299],[139,266]],[[17604,16299],[-48,27]],[[19775,16849],[254,108]],[[19775,16849],[12,-27]],[[16358,15944],[-8,-184]],[[8776,13624],[491,116],[414,-366]],[[15930,15821],[26,-18]],[[16035,15844],[13,-25]],[[16035,15844],[-40,-321]],[[15956,15803],[-75,-54]],[[19787,16822],[17,-28]],[[19787,16822],[-131,-340]],[[19804,16794],[4,-32]],[[11485,14442],[-54,198]],[[15881,15749],[-18,41]],[[15881,15749],[-24,-30]],[[19880,16812],[-76,-18]],[[18999,16568],[-286,421]],[[12499,14729],[186,-148]],[[19808,16762],[75,-19]],[[19808,16762],[52,-231]],[[11601,14441],[36,147]],[[11833,14502],[19,-10]],[[11852,14492],[227,-36]],[[2623,11280],[-389,28],[-134,201]],[[11819,14428],[33,64]],[[11428,14289],[-37,-91]],[[18583,16345],[378,-69]],[[12322,14551],[177,178]],[[12079,14456],[243,95]],[[11282,14181],[-13,223]],[[11282,14181],[-77,-310]],[[11391,14198],[-109,-17]],[[12685,14581],[21,-31]],[[16295,15630],[-119,160]],[[16295,15630],[-68,213]],[[11484,14197],[8,33]],[[11484,14197],[-50,-31]],[[20214,16654],[-30,157]],[[17912,16054],[221,114]],[[17912,16054],[176,-66]],[[11434,14166],[-43,32]],[[12706,14550],[396,64],[402,-110]],[[18961,16276],[195,658]],[[10698,13883],[-137,-130]],[[17636,15917],[-32,382]],[[17636,15917],[181,-13]],[[11587,14147],[-1,-25]],[[11487,14116],[-53,50]],[[17865,15965],[47,89]],[[17865,15965],[266,-86],[140,126]],[[3571,11377],[11,64]],[[20420,16612],[-7,87]],[[20420,16611],[-188,-76]],[[11602,14129],[-16,-7]],[[11586,14122],[-3,-6]],[[11583,14116],[-6,-13]],[[11577,14103],[-5,-3]],[[11572,14100],[-85,16]],[[11572,14100],[21,-61]],[[20232,16535],[-18,118]],[[11604,14108],[-21,8]],[[17817,15904],[48,61]],[[17817,15904],[163,-184],[365,35]],[[11500,14066],[-13,50]],[[12323,14323],[-1,228]],[[12323,14323],[-83,-343]],[[10561,13753],[0,1]],[[10561,13753],[-207,-120],[-317,29],[-50,-240],[-306,-48]],[[11597,14076],[-20,27]],[[19662,16350],[-283,-152]],[[12375,14306],[-52,17]],[[16768,15577],[17,643],[240,67]],[[16768,15577],[506,-70]],[[3930,11385],[-26,-87]],[[3281,11139],[94,19]],[[16740,15527],[28,50]],[[16740,15527],[61,-130]],[[11205,13871],[91,22]],[[11205,13871],[-219,-130]],[[9681,13374],[0,0]],[[9681,13374],[-88,-526]],[[12045,14126],[34,330]],[[12045,14126],[33,-33]],[[11950,14096],[95,30]],[[19379,16198],[284,192]],[[11747,14021],[86,481]],[[11747,14021],[0,0]],[[20224,16395],[-168,116],[44,318]],[[20224,16395],[8,140]],[[3767,11267],[25,-381]],[[20848,16542],[185,-340]],[[11745,14007],[2,14]],[[3265,11073],[-59,41]],[[3749,11253],[-10,19]],[[3904,11298],[-155,-45]],[[11701,13974],[149,-372],[-3,-367]],[[10986,13741],[-288,142]],[[10986,13741],[-425,12]],[[13504,14504],[220,943]],[[20288,16356],[-64,39]],[[20289,16356],[80,-438]],[[3407,11073],[-6,-11]],[[16358,15305],[-63,325]],[[16358,15305],[382,222]],[[11637,13904],[-42,-145]],[[3684,11145],[65,108]],[[11788,13929],[36,9]],[[11824,13938],[4,16]],[[11824,13938],[113,-181]],[[16801,15397],[7,-60]],[[16801,15397],[111,-131]],[[17274,15507],[-64,513]],[[17274,15507],[244,-26]],[[11913,13944],[24,-187]],[[3670,11113],[14,32]],[[21070,16479],[32,-237]],[[20575,16346],[19,249]],[[3684,11101],[0,44]],[[3684,11101],[-7,-147]],[[12629,14124],[77,426]],[[19324,15998],[55,200]],[[19324,15998],[211,120]],[[11610,13780],[-15,-21]],[[19009,15893],[-48,383]],[[19009,15893],[-261,-77]],[[3670,11032],[14,69]],[[18748,15816],[-396,-152]],[[11595,13759],[167,-448],[-20,-216]],[[17518,15481],[118,436]],[[17518,15481],[97,-140]],[[3652,11010],[18,22]],[[20470,16223],[-6,-114]],[[20470,16223],[-39,108]],[[16230,15059],[128,246]],[[16230,15059],[205,-287],[229,41],[174,-341]],[[3652,10935],[18,97]],[[11800,13738],[7,5]],[[15490,14827],[-71,712],[-197,197],[174,301]],[[15490,14827],[740,232]],[[11937,13757],[-6,-167]],[[4075,11044],[-171,254]],[[12078,13775],[-130,168]],[[12078,13775],[-50,139]],[[12011,13751],[-80,-161]],[[20464,16109],[102,128]],[[19591,15885],[87,359]],[[19591,15885],[142,1]],[[12148,13773],[-101,157]],[[12148,13773],[9,185]],[[19057,15734],[267,264]],[[21102,16242],[-7,-8]],[[21095,16234],[-62,-32]],[[21095,16234],[82,-445]],[[17615,15341],[-83,-292]],[[17615,15341],[363,-46],[54,-172]],[[20452,16065],[12,44]],[[20452,16065],[-83,-147]],[[12430,13834],[-2,179]],[[12430,13834],[57,129]],[[19547,15833],[44,52]],[[19547,15833],[249,-256]],[[21033,16202],[-2,-1]],[[21031,16201],[-272,300]],[[21031,16201],[81,-338]],[[19841,15899],[13,129]],[[12127,13706],[-49,69]],[[12127,13706],[21,67]],[[20310,15966],[-533,367]],[[12318,13720],[112,114]],[[12318,13720],[5,-27]],[[9593,12848],[-337,-369]],[[9593,12848],[145,-146],[436,-86],[91,-226],[252,-135],[75,-275],[390,-289],[283,55],[230,265]],[[11931,13590],[-84,-355]],[[12307,13705],[-39,37]],[[12307,13705],[11,15]],[[19879,15826],[-37,73]],[[19879,15826],[-119,-90]],[[19969,15827],[7,175]],[[19969,15827],[-90,-1]],[[20369,15918],[-31,-100]],[[12552,13727],[-34,87]],[[12552,13727],[-121,-2]],[[12170,13609],[-43,97]],[[12170,13609],[137,96]],[[19990,15773],[-21,54]],[[19990,15773],[-104,-102]],[[19082,15512],[-73,381]],[[19082,15512],[339,334],[126,-13]],[[20338,15818],[-6,-4]],[[20332,15814],[-22,151]],[[20332,15814],[-89,-67]],[[12154,13511],[16,98]],[[12154,13511],[-78,15]],[[17532,15049],[-196,-310]],[[17532,15049],[94,-132]],[[20243,15746],[-79,-74]],[[5358,11171],[-168,396],[39,346],[205,378],[-24,496],[-313,71],[-245,312]],[[12240,13468],[-86,43]],[[12240,13468],[-16,24]],[[0,9093],[235,315],[542,-51],[355,102],[47,489],[546,75],[339,560],[36,926]],[[18032,15123],[68,-65]],[[18032,15123],[51,-302]],[[20163,15672],[-173,101]],[[9256,12479],[-145,-89],[-106,-446],[-293,268],[-711,86],[-430,-370],[44,-145],[-400,-689],[-159,-454]],[[9256,12479],[-53,-143],[159,-885],[-326,-911],[-315,233],[-483,-129],[-83,-389],[155,-309],[-33,-1018],[175,-487],[-138,-118],[68,-399],[-343,-348],[-12,-253]],[[5381,11127],[-23,44]],[[13017,13603],[-310,202],[-155,-78]],[[13017,13603],[-7,184],[-344,210]],[[11847,13235],[-105,-140]],[[19957,15524],[-77,-52]],[[5257,11002],[101,169]],[[5228,10988],[29,14]],[[5214,10981],[0,0]],[[5214,10981],[14,7]],[[5182,10964],[32,17]],[[5224,10976],[4,12]],[[13054,13551],[-269,-45]],[[13054,13551],[-37,52]],[[5171,10913],[43,68]],[[20061,15478],[-104,46]],[[20061,15478],[-96,-43]],[[19965,15435],[-89,25]],[[11742,13095],[-351,15],[-436,-256],[-329,-64],[-280,285],[-186,569]],[[19146,15202],[-157,94],[-460,-36]],[[19166,15176],[-20,26]],[[19166,15176],[-84,336]],[[5053,10735],[155,26]],[[13412,13512],[-358,39]],[[13412,13512],[-280,511],[-347,119]],[[17399,14634],[-58,8]],[[5208,10761],[49,241]],[[12313,13151],[-73,317]],[[12313,13151],[94,417]],[[16838,14472],[-90,-112]],[[16838,14472],[591,-303]],[[5167,10712],[41,49]],[[21271,15583],[-219,-436]],[[13525,13474],[-113,38]],[[13525,13474],[138,713],[-159,317]],[[19173,15036],[-75,-81]],[[20244,15308],[161,195],[-67,315]],[[20244,15308],[-183,170]],[[16748,14360],[-213,61],[-163,-234]],[[16748,14360],[-306,-259]],[[19098,14955],[-240,-34]],[[19685,14975],[-72,118]],[[19685,14975],[79,385]],[[18536,14659],[54,363]],[[18536,14659],[169,-57]],[[17551,14381],[-129,244]],[[20083,15029],[161,279]],[[20083,15029],[167,-77]],[[21066,15252],[-81,310]],[[13605,13170],[-80,304]],[[13605,13170],[499,48],[353,-180],[566,259]],[[18463,14521],[73,138]],[[18463,14521],[-195,4]],[[21052,15147],[14,105]],[[21052,15147],[-25,-151]],[[19861,14848],[110,-85]],[[17832,14278],[-1,85]],[[17832,14278],[97,72]],[[17429,14169],[-107,-176]],[[17429,14169],[85,3]],[[17514,14172],[78,-2]],[[17514,14172],[76,-277]],[[18463,14404],[0,117]],[[18463,14404],[84,-109]],[[17592,14170],[-40,210]],[[17592,14170],[23,-3]],[[17615,14167],[194,23]],[[17615,14167],[104,-220]],[[20358,14870],[-136,-481]],[[19971,14763],[112,266]],[[17809,14190],[23,88]],[[17809,14190],[70,-56]],[[21027,14996],[-182,270],[-129,557],[77,122]],[[17163,13993],[18,51]],[[17163,13993],[110,-82]],[[17032,13946],[-58,163]],[[17032,13946],[96,23]],[[20158,14766],[-143,-184]],[[17128,13969],[35,24]],[[17128,13969],[95,-173]],[[17879,14134],[-7,-26]],[[17879,14134],[198,-21]],[[16966,13879],[66,67]],[[16966,13879],[222,-234]],[[18547,14295],[190,137]],[[18547,14295],[243,-110]],[[17872,14108],[12,-147]],[[17872,14108],[-81,-237]],[[15023,13297],[114,76],[161,802],[178,336],[14,316]],[[15023,13297],[77,-23]],[[16848,13800],[-9,103]],[[16848,13800],[52,-1]],[[18335,14202],[128,202]],[[18335,14202],[266,-111]],[[5197,10055],[365,-327]],[[18230,14166],[-18,135]],[[18230,14166],[105,36]],[[18230,14166],[174,-227]],[[16900,13799],[66,80]],[[16900,13799],[45,-118]],[[18077,14113],[153,53]],[[18077,14113],[8,-65]],[[6010,10311],[-266,-146]],[[6010,10311],[-324,-71]],[[20015,14582],[-44,181]],[[6321,10403],[-559,74]],[[6321,10403],[-95,-197],[-216,105]],[[21074,14815],[-47,181]],[[18085,14048],[11,-3]],[[18085,14048],[-4,-26]],[[7056,10640],[-6,-403]],[[7056,10640],[-162,-155],[-573,-82]],[[5744,10165],[-67,36]],[[5744,10165],[-96,-64]],[[18081,14022],[53,-161]],[[17884,13961],[-30,-41]],[[17884,13961],[36,-65]],[[5556,10066],[-137,120]],[[5556,10066],[-40,-21]],[[19380,14337],[299,450],[6,188]],[[5316,9954],[-25,-29]],[[17854,13920],[-30,-33]],[[17854,13920],[14,-80]],[[17920,13896],[37,-9]],[[17920,13896],[-1,-59]],[[11495,12011],[784,750],[34,390]],[[11495,12011],[556,57],[400,-304],[208,157],[287,-15],[320,721],[22,479],[317,64]],[[18155,13937],[-74,85]],[[20169,14443],[-154,139]],[[20169,14443],[-109,-172]],[[5614,9960],[0,0]],[[5614,9960],[-58,106]],[[5614,9960],[-38,-49]],[[18404,13939],[166,29]],[[18404,13939],[26,-64]],[[20426,14450],[242,0],[214,-376]],[[18570,13968],[96,74]],[[18570,13968],[233,-32]],[[20222,14389],[-53,54]],[[6042,10057],[-204,1]],[[6042,10057],[-24,-12]],[[6018,10045],[-78,-37]],[[6018,10045],[-35,-48]],[[5674,9903],[9,22]],[[5674,9903],[-7,-6]],[[5667,9897],[-53,63]],[[5667,9897],[-3,-13]],[[18430,13875],[-10,-7]],[[18430,13875],[62,-122]],[[18420,13868],[-106,-40]],[[18420,13868],[-11,-58]],[[21482,14632],[261,148],[285,427],[-97,755],[-139,339],[-371,139],[-319,-198]],[[18314,13828],[-141,-34]],[[18314,13828],[-4,-58]],[[17868,13707],[128,10]],[[17868,13707],[17,-101]],[[17848,13701],[20,6]],[[17848,13701],[11,-83]],[[18141,13765],[130,-62]],[[18845,13947],[57,173]],[[18845,13947],[87,-17]],[[18803,13936],[-37,92]],[[18803,13936],[42,11]],[[17996,13717],[75,2]],[[17996,13717],[58,-163]],[[16827,13376],[21,424]],[[16827,13376],[123,32]],[[18310,13770],[-39,-67]],[[18310,13770],[12,-215]],[[5825,9854],[2,5]],[[5825,9854],[-151,49]],[[6339,10029],[-367,-60]],[[6339,10029],[-297,28]],[[5866,9829],[-41,25]],[[6946,10210],[-448,-310],[-159,129]],[[6946,10210],[-330,-585]],[[18271,13703],[-34,-64]],[[7050,10237],[-104,-27]],[[7050,10237],[189,-303],[65,-490],[-59,-430],[-227,-613]],[[17156,13396],[165,22]],[[16698,13269],[-263,188]],[[16698,13269],[145,22]],[[5626,9708],[-24,20]],[[16843,13291],[-16,85]],[[16843,13291],[128,-78]],[[17141,13363],[-4,292]],[[17141,13363],[159,-64]],[[18237,13639],[-96,-37]],[[18237,13639],[-41,-146]],[[21296,14381],[-222,434]],[[16971,13213],[170,150]],[[16971,13213],[259,-126]],[[18322,13555],[39,-98]],[[18322,13555],[-36,-138]],[[5597,9456],[56,241]],[[18361,13457],[44,-86]],[[20882,14074],[315,121],[285,437]],[[18451,13446],[-90,11]],[[17798,13260],[194,50]],[[17798,13260],[102,-123]],[[17992,13310],[85,43]],[[17992,13310],[15,-69]],[[18633,13479],[295,-195],[250,141]],[[17686,13225],[-235,280],[228,231],[169,-35]],[[17686,13225],[112,35]],[[17230,13087],[334,72]],[[17230,13087],[209,-394],[224,-85]],[[17564,13159],[122,66]],[[17564,13159],[23,-41]],[[6549,9691],[-345,87],[-311,-56]],[[6549,9691],[-204,-118]],[[20289,13854],[-67,535]],[[20289,13854],[364,210],[229,10]],[[18007,13241],[130,-114]],[[18007,13241],[14,-273]],[[5748,9372],[-93,142]],[[5748,9372],[-132,-159]],[[17587,13118],[2,-1]],[[17587,13118],[-44,-61]],[[17589,13117],[13,-37]],[[17589,13117],[361,-95]],[[19564,13602],[-64,571],[-334,1003]],[[17602,13080],[13,0]],[[17602,13080],[-210,-91]],[[17615,13080],[58,-343]],[[17615,13080],[77,-81]],[[6616,9625],[-219,-371]],[[6616,9625],[-67,66]],[[19467,13527],[-206,173]],[[19467,13527],[97,75]],[[19178,13425],[-170,570]],[[19178,13425],[289,102]],[[17692,12999],[30,-31]],[[17692,12999],[85,-170]],[[17722,12968],[64,21]],[[17722,12968],[51,-58]],[[5925,9224],[-177,148]],[[5925,9224],[-8,-10]],[[5917,9214],[-30,13]],[[5917,9214],[-13,-31]],[[16898,12642],[-256,250],[56,377]],[[16898,12642],[404,-44]],[[4557,8631],[-33,-129]],[[6127,9198],[-202,26]],[[6127,9198],[-171,-185]],[[6357,9263],[-230,-65]],[[6357,9263],[-9,50]],[[1983,7602],[14,-152]],[[6397,9254],[-40,9]],[[6397,9254],[-188,-733]],[[16853,12549],[45,93]],[[16853,12549],[121,-102]],[[5552,8908],[29,-24]],[[3756,8224],[-224,-162]],[[4528,8514],[-4,-12]],[[4439,8477],[12,-145]],[[4524,8502],[-45,-124]],[[19155,13128],[386,52]],[[16601,12422],[-160,282]],[[16601,12422],[252,127]],[[5678,8901],[-40,144]],[[4612,8505],[-124,-122]],[[16586,12390],[15,32]],[[16586,12390],[215,-192]],[[19541,13180],[23,422]],[[17781,12707],[190,179]],[[17781,12707],[147,-170]],[[3529,8063],[3,-1]],[[3529,8063],[-6,-39]],[[3532,8062],[-3,1]],[[16494,12329],[92,61]],[[1997,7450],[-6,-21]],[[1997,7450],[-6,-21]],[[19518,13131],[23,49]],[[16974,12447],[164,-48]],[[16974,12447],[33,-459]],[[3523,8024],[-9,-13]],[[3523,8024],[-9,-13]],[[1991,7429],[-26,-313],[-284,-270]],[[4479,8378],[-6,-7]],[[4479,8378],[-6,-7]],[[3508,8009],[-25,-18]],[[3508,8009],[-25,-18]],[[3514,8011],[-6,-2]],[[4473,8371],[-4,-21]],[[19778,13173],[186,34]],[[19778,13173],[122,-276],[219,-61],[-43,-279]],[[3483,7991],[-5,-43]],[[19549,13111],[229,62]],[[19549,13111],[379,-556]],[[17663,12608],[118,99]],[[17663,12608],[9,-11]],[[4469,8350],[-18,-18]],[[19964,13207],[325,647]],[[19964,13207],[439,-77]],[[17672,12597],[42,-41]],[[17672,12597],[-60,-144]],[[4489,8349],[-20,1]],[[5117,8582],[20,-14]],[[4451,8332],[-86,-141]],[[4681,8405],[-26,-42]],[[3478,7948],[-3,-26]],[[3478,7948],[-3,-26]],[[5137,8568],[-1,5]],[[5137,8568],[35,-38]],[[16010,12093],[-24,-25]],[[3475,7922],[-71,-356]],[[4351,8252],[-6,-115]],[[15952,12072],[-52,20]],[[15952,12072],[-64,-140]],[[4655,8363],[-4,-9]],[[4655,8363],[-4,-9]],[[17714,12556],[91,-21]],[[17714,12556],[27,-40]],[[17138,12399],[68,10]],[[17138,12399],[-24,-163]],[[4651,8354],[-6,-46]],[[16132,12114],[438,-202]],[[15986,12068],[-34,4]],[[15986,12068],[91,-244]],[[5172,8530],[7,-2]],[[5179,8528],[15,-6]],[[5175,8523],[4,5]],[[5175,8523],[19,-1]],[[5166,8516],[6,14]],[[5166,8516],[9,7]],[[5194,8522],[5,-3]],[[5199,8519],[11,-5]],[[5199,8519],[11,-5]],[[22378,13695],[251,91]],[[4645,8308],[-2,-7]],[[4645,8308],[-2,-7]],[[17741,12516],[72,-93]],[[17741,12516],[6,-155]],[[5210,8514],[1,0]],[[5211,8514],[26,5]],[[5211,8514],[29,4]],[[4643,8301],[0,-1]],[[4643,8300],[-1,-14]],[[4643,8300],[-1,-14]],[[5237,8519],[-20,5]],[[5237,8519],[3,-1]],[[5240,8518],[4,0]],[[5244,8518],[-28,18]],[[5244,8518],[17,-7]],[[4365,8191],[-20,-54]],[[5112,8465],[54,51]],[[4642,8286],[-1,-2]],[[4641,8284],[-4,-21]],[[4641,8284],[-4,-21]],[[5248,8507],[13,2]],[[5261,8511],[0,-2]],[[5261,8511],[6,-3]],[[5261,8509],[6,-3]],[[17612,12453],[-1,-41]],[[5267,8508],[0,-2]],[[5267,8508],[17,-5]],[[5267,8506],[11,-5]],[[5280,8511],[4,-8]],[[18213,12610],[-218,311]],[[18213,12610],[-214,-156]],[[5278,8501],[8,0]],[[5278,8501],[9,-8]],[[4637,8263],[-4,-13]],[[4637,8263],[-4,-13]],[[5284,8503],[2,-2]],[[5286,8501],[6,-15]],[[17389,12372],[223,81]],[[5287,8493],[-23,0]],[[5287,8493],[5,-7]],[[4439,8178],[-74,13]],[[4633,8250],[-39,-31]],[[4345,8137],[-208,-551]],[[4445,8174],[-6,4]],[[4445,8174],[-6,4]],[[5292,8486],[7,-12]],[[4449,8173],[-4,1]],[[5598,8597],[5,26]],[[5598,8597],[-66,24]],[[4457,8169],[-8,4]],[[4457,8169],[-8,4]],[[4594,8219],[-12,-4]],[[4594,8219],[-12,-4]],[[4582,8215],[-29,-43]],[[15888,11932],[-39,-9]],[[15888,11932],[-120,-285]],[[17611,12412],[-37,-60]],[[17611,12412],[39,-169]],[[4667,8244],[-34,-11]],[[4464,8167],[-7,2]],[[5299,8474],[7,-10]],[[5299,8474],[9,-22]],[[20403,13130],[24,-294]],[[20403,13130],[226,-79]],[[4476,8159],[-12,8]],[[4476,8159],[-12,8]],[[5306,8464],[0,6]],[[5306,8464],[4,-16]],[[4527,8163],[-51,-4]],[[5308,8452],[-8,6]],[[5308,8452],[1,-4]],[[5308,8452],[0,0]],[[4553,8172],[-12,-11]],[[4553,8172],[-12,-11]],[[5310,8448],[-1,0]],[[5310,8448],[7,-12]],[[5309,8448],[-1,-4]],[[4536,8160],[-9,3]],[[4536,8160],[-9,3]],[[4541,8161],[-5,-1]],[[5308,8444],[-6,6]],[[5308,8444],[9,-8]],[[5308,8444],[0,0]],[[5315,8446],[7,-10]],[[18434,12591],[46,457],[-279,266]],[[18434,12591],[-221,19]],[[17813,12423],[-3,-47]],[[17832,12425],[-19,-2]],[[5317,8436],[1,0]],[[5318,8436],[4,0]],[[5318,8436],[10,-6]],[[5322,8436],[6,-6]],[[17574,12352],[-56,1]],[[17574,12352],[-43,-51]],[[5328,8430],[8,-31]],[[5667,8550],[-69,47]],[[5667,8550],[-5,-23]],[[22327,13531],[18,4]],[[22327,13531],[259,-50]],[[22345,13535],[33,160]],[[17531,12301],[-43,-19]],[[17531,12301],[-10,-82]],[[17810,12376],[5,-43]],[[5336,8399],[-1,-11]],[[5336,8399],[-1,-11]],[[5008,8273],[19,-70]],[[5731,8535],[-45,82]],[[5731,8535],[-64,15]],[[5335,8388],[12,-25]],[[17791,12339],[19,37]],[[1336,6833],[-11,-24]],[[1336,6833],[-11,-24]],[[5030,8251],[-3,-48]],[[5347,8363],[1,-10]],[[5347,8363],[1,-10]],[[5348,8353],[4,-6]],[[1325,6809],[-264,-188]],[[5352,8347],[5,-7]],[[5352,8347],[12,-10]],[[20629,13051],[-86,-409]],[[20629,13051],[337,150],[258,-279]],[[5357,8340],[7,-3]],[[5357,8340],[-1,-36]],[[16077,11824],[-60,-81]],[[16077,11824],[38,-56]],[[5364,8337],[1,-14]],[[5027,8203],[-11,-24]],[[4862,8139],[0,6]],[[4862,8139],[-12,-25]],[[5365,8323],[-1,-11]],[[5365,8323],[-3,-12]],[[5018,8195],[0,-3]],[[1429,6813],[-93,20]],[[17650,12243],[-43,-33]],[[17650,12243],[16,-36]],[[1021,6649],[-475,78],[-165,-113]],[[5018,8192],[-4,2]],[[5018,8192],[-2,-13]],[[5364,8312],[-2,-1]],[[5364,8312],[-8,-15]],[[5362,8311],[-6,-7]],[[5016,8179],[1,-49]],[[5356,8304],[-2,-7]],[[22586,13481],[190,-133]],[[22586,13481],[56,-508]],[[4850,8114],[-3,-5]],[[4850,8114],[-34,-26]],[[1548,6842],[-119,-29]],[[5354,8297],[2,0]],[[5354,8297],[-3,-23]],[[5356,8297],[-4,-23]],[[4847,8109],[-11,-6]],[[4847,8109],[-5,-6]],[[4836,8103],[-3,-5]],[[17607,12210],[-39,-35]],[[17607,12210],[18,-106]],[[5348,8291],[3,-14]],[[4842,8103],[-6,0]],[[4842,8103],[-34,-48]],[[1565,6840],[-17,2]],[[1565,6840],[-17,2]],[[4833,8098],[-17,-10]],[[4833,8098],[-22,-31]],[[4816,8088],[-5,-11]],[[16570,11912],[-118,-112]],[[16570,11912],[65,-100]],[[17148,12069],[-110,7]],[[17148,12069],[-12,94]],[[4811,8077],[0,-10]],[[4811,8077],[-2,-17]],[[17666,12207],[65,-18]],[[17666,12207],[22,-47]],[[19206,12617],[-152,186]],[[4798,8070],[2,-29]],[[5351,8274],[1,0]],[[5351,8274],[2,-11]],[[5352,8274],[1,-11]],[[1061,6621],[-40,28]],[[19367,12656],[182,455]],[[19367,12656],[-161,-39]],[[4811,8067],[-2,-7]],[[5353,8263],[-2,-5]],[[4809,8060],[-1,-5]],[[6079,8525],[-350,298]],[[6079,8525],[-348,10]],[[5351,8258],[0,0]],[[5351,8258],[1,-4]],[[5340,8254],[11,4]],[[4808,8055],[-8,-14]],[[5352,8254],[11,-25]],[[5352,8254],[13,-25]],[[5017,8130],[-4,5]],[[5017,8130],[8,-5]],[[5017,8130],[0,0]],[[1681,6846],[-116,-6]],[[5025,8125],[6,-5]],[[5025,8125],[6,-5]],[[4800,8041],[0,0]],[[4800,8041],[-8,-37]],[[4800,8041],[-8,-37]],[[5031,8120],[3,-3]],[[5031,8120],[3,-3]],[[5034,8117],[16,-23]],[[17171,12029],[-23,40]],[[17171,12029],[199,-31]],[[4593,7948],[6,-25]],[[5363,8229],[2,0]],[[5363,8229],[4,-14]],[[5365,8229],[4,-14]],[[21498,13145],[151,378],[138,-201],[196,187],[344,22]],[[21498,13145],[382,-211],[194,-471]],[[17688,12160],[-16,-56]],[[17688,12160],[53,-64]],[[4576,7926],[4,-13]],[[4792,8004],[0,-8]],[[4777,7997],[-4,-29]],[[5367,8215],[2,0]],[[5367,8215],[9,-16]],[[6209,8521],[-130,4]],[[6209,8521],[-55,-124]],[[5369,8215],[8,-15]],[[5205,8153],[140,-305]],[[5050,8094],[0,12]],[[5050,8094],[2,-10]],[[4612,7931],[-13,-8]],[[4612,7931],[-13,-8]],[[4619,7932],[-7,-1]],[[4619,7932],[-2,-2]],[[4792,7996],[-1,-9]],[[4792,7996],[-3,-11]],[[4617,7930],[-4,-2]],[[4599,7923],[0,0]],[[4599,7923],[0,0]],[[4599,7923],[-13,-11]],[[4599,7923],[0,0]],[[4599,7923],[0,0]],[[4613,7928],[-11,-18]],[[4613,7928],[-11,-18]],[[4580,7913],[0,0]],[[4580,7913],[-7,-12]],[[4124,7741],[13,-155]],[[4627,7929],[-8,3]],[[4627,7929],[-2,-1]],[[4625,7928],[-8,2]],[[4585,7912],[-5,1]],[[4585,7912],[-9,-12]],[[4586,7912],[-1,0]],[[4732,7966],[-9,-11]],[[5052,8084],[-5,-2]],[[5052,8084],[15,-12]],[[4791,7987],[0,0]],[[4791,7987],[6,13]],[[4791,7987],[0,0]],[[18954,12473],[-63,538]],[[18954,12473],[221,-100],[192,283]],[[4791,7987],[-2,-2]],[[4789,7985],[-2,-6]],[[4789,7985],[-2,-6]],[[5377,8200],[-1,-1]],[[5377,8200],[4,-9]],[[5376,8199],[3,-8]],[[4573,7901],[0,-2]],[[4573,7901],[-12,-9]],[[4795,7983],[-4,4]],[[4602,7910],[-16,2]],[[4573,7899],[-7,-8]],[[4787,7979],[-14,-11]],[[4723,7955],[0,0]],[[4723,7955],[-14,-23]],[[4576,7900],[-3,-1]],[[4576,7900],[-10,-9]],[[5382,8198],[2,-12]],[[4557,7891],[-6,-2]],[[4557,7891],[-8,-8]],[[4551,7889],[-5,-5]],[[4551,7889],[-5,-5]],[[4676,7935],[-22,-11]],[[4637,7921],[-12,7]],[[4561,7892],[-4,-1]],[[4642,7922],[-15,7]],[[4642,7922],[-2,-2]],[[4640,7920],[-3,1]],[[4773,7968],[-19,-18]],[[4566,7891],[-2,-2]],[[4546,7884],[-7,-21]],[[4654,7924],[0,0]],[[4654,7924],[-7,-6]],[[4564,7889],[-3,3]],[[4564,7889],[-15,-6]],[[4549,7883],[-10,-20]],[[5379,8191],[2,0]],[[5379,8191],[3,-6]],[[5381,8191],[2,-5]],[[20427,12836],[-256,-203]],[[20427,12836],[-80,-261]],[[4642,7917],[-5,4]],[[4642,7917],[-2,3]],[[4647,7918],[-5,-1]],[[4647,7918],[-5,4]],[[5067,8072],[-13,20]],[[5067,8072],[21,-90]],[[17451,12052],[-76,117]],[[17451,12052],[9,105]],[[5383,8186],[1,0]],[[5383,8186],[-1,-1]],[[5384,8186],[4,-4]],[[5382,8185],[6,-4]],[[4754,7950],[-17,-8]],[[4754,7950],[-17,-8]],[[4737,7942],[-20,-8]],[[4671,7918],[-17,6]],[[4717,7934],[-20,-11]],[[4717,7934],[-20,-11]],[[5388,8182],[0,-1]],[[5388,8182],[3,-2]],[[5388,8181],[3,-2]],[[4534,7863],[-14,-6]],[[4534,7863],[-2,-2]],[[5391,8180],[9,13]],[[5391,8180],[0,-1]],[[4520,7857],[-37,-69]],[[4532,7861],[-12,-4]],[[4697,7923],[-18,-8]],[[4539,7863],[-5,0]],[[4539,7863],[-7,-2]],[[5391,8179],[-22,-120]],[[4679,7915],[-8,3]],[[4679,7915],[-8,3]],[[16635,11812],[197,-26]],[[16635,11812],[-69,-193]],[[17447,12029],[4,23]],[[18473,12302],[-39,289]],[[17441,12018],[74,-14]],[[17370,11998],[144,88]],[[17370,11998],[130,-181]],[[17638,12056],[26,21]],[[17638,12056],[99,-44]],[[22618,13317],[-103,-346],[-249,68]],[[22776,13348],[147,-90]],[[5367,8124],[2,-65]],[[4483,7788],[-6,-2]],[[4483,7788],[-6,-2]],[[4477,7786],[-16,-14]],[[4477,7786],[-7,-7]],[[4470,7779],[-10,-13]],[[4470,7779],[-9,-7]],[[6154,8397],[-347,-134]],[[6154,8397],[-71,-143]],[[1658,6691],[23,155]],[[4461,7772],[-1,-6]],[[6153,8390],[99,-222]],[[4460,7766],[-2,-21]],[[17189,11898],[-195,49]],[[17189,11898],[-18,131]],[[21311,12963],[187,182]],[[21311,12963],[196,-227],[36,-678]],[[5088,7982],[1,-3]],[[5088,7982],[1,-3]],[[16832,11786],[106,45]],[[16832,11786],[40,-98]],[[4458,7745],[-1,-3]],[[4458,7745],[0,-4]],[[5089,7979],[2,-8]],[[4457,7742],[1,-1]],[[4457,7742],[2,-9]],[[1665,6663],[-7,28]],[[1665,6663],[-7,28]],[[5357,8075],[8,-19]],[[4458,7741],[1,-8]],[[5068,7965],[49,-83]],[[5091,7971],[0,-7]],[[5091,7971],[0,-7]],[[21224,12922],[87,41]],[[21224,12922],[70,-185]],[[4459,7733],[-93,-329]],[[5091,7964],[-1,-7]],[[5090,7957],[2,-6]],[[5090,7957],[2,-6]],[[5369,8059],[0,0]],[[5369,8059],[-16,-29]],[[17618,11975],[20,81]],[[17618,11975],[52,-110]],[[5092,7951],[2,-8]],[[17974,12067],[-67,83]],[[4137,7586],[0,0]],[[4137,7586],[2,-4]],[[3235,7243],[5,-45]],[[5094,7943],[5,-12]],[[5094,7943],[5,-12]],[[4139,7582],[3,-8]],[[4139,7582],[3,-8]],[[5353,8030],[-4,-8]],[[5353,8030],[-4,-8]],[[4142,7574],[2,-5]],[[5099,7931],[19,-44]],[[5349,8022],[-4,-174]],[[4144,7569],[-1,-9]],[[4144,7569],[-1,-9]],[[4143,7560],[-8,-17]],[[17605,11923],[-56,130]],[[17605,11923],[6,0]],[[17611,11923],[7,52]],[[17611,11923],[20,-27]],[[3251,7208],[-11,-10]],[[4135,7543],[13,-14]],[[4135,7543],[13,-14]],[[3240,7198],[-1,-4]],[[5078,7891],[41,-18]],[[17586,11904],[19,19]],[[17586,11904],[26,-43]],[[6083,8254],[-66,-108]],[[6083,8254],[146,-125]],[[17031,11749],[-1,67]],[[16566,11619],[-36,-11]],[[16566,11619],[75,-150]],[[20076,12557],[-28,-212]],[[16530,11608],[-69,36]],[[16530,11608],[-52,-122]],[[666,6172],[54,282],[301,195]],[[4148,7529],[33,-59]],[[673,6165],[-7,7]],[[17833,11956],[200,-317]],[[5118,7887],[-20,24]],[[5118,7887],[-1,-5]],[[17548,11875],[-22,103]],[[17548,11875],[38,29]],[[5117,7882],[0,0]],[[5117,7882],[39,-73]],[[693,6145],[-20,20]],[[693,6145],[-20,20]],[[17244,11766],[-55,132]],[[17244,11766],[134,86]],[[17500,11817],[48,58]],[[17500,11817],[5,-10]],[[3231,7120],[-6,-21]],[[16004,11393],[-77,137]],[[16004,11393],[21,18]],[[17505,11807],[156,39]],[[17505,11807],[96,-80]],[[17084,11691],[-53,58]],[[17084,11691],[-83,-25]],[[4181,7470],[0,-14]],[[4181,7470],[1,-16]],[[6017,8146],[-348,54]],[[6017,8146],[-87,-123]],[[21035,12714],[-97,-312]],[[16226,11435],[-66,51]],[[16226,11435],[-4,-83]],[[4181,7456],[-2,-18]],[[4181,7456],[1,-2]],[[16354,11466],[-77,109]],[[16354,11466],[-128,-31]],[[4182,7454],[-3,-16]],[[15989,11354],[-79,149]],[[15989,11354],[15,39]],[[5156,7809],[2,-3]],[[3224,7079],[29,-73]],[[5158,7806],[3,-8]],[[5158,7806],[3,-8]],[[16478,11486],[-93,-41]],[[16478,11486],[83,-113]],[[5137,7797],[19,12]],[[4179,7438],[0,-6]],[[4179,7432],[1,-9]],[[4179,7432],[1,-9]],[[5161,7798],[29,-36]],[[16385,11445],[-31,21]],[[16385,11445],[2,-25]],[[4180,7423],[-5,-33]],[[21294,12736],[-123,-355]],[[4973,7712],[-46,-284]],[[5345,7848],[-2,-64]],[[5149,7768],[15,20]],[[17252,11662],[-168,29]],[[17252,11662],[-8,104]],[[16387,11420],[35,-95]],[[4175,7390],[-5,-12]],[[4175,7390],[-5,-12]],[[5190,7762],[3,-2]],[[5190,7762],[3,-2]],[[4170,7378],[-8,-19]],[[5193,7760],[7,-7]],[[4232,7401],[-13,-7]],[[4219,7394],[-9,-22]],[[4219,7394],[-9,-22]],[[4235,7399],[-3,2]],[[4245,7401],[-13,0]],[[4245,7401],[-1,-7]],[[16222,11352],[-92,35]],[[16222,11352],[-10,-30]],[[4251,7403],[-6,-2]],[[5930,8023],[-206,-96]],[[4255,7401],[-4,2]],[[5200,7753],[4,-2]],[[5200,7753],[4,-2]],[[4244,7394],[-9,5]],[[4244,7394],[-9,5]],[[4254,7398],[-3,5]],[[4254,7398],[1,3]],[[5204,7751],[94,-74]],[[4257,7396],[-2,5]],[[4257,7396],[-3,2]],[[4162,7359],[-1,-4]],[[4162,7359],[-1,-4]],[[4249,7390],[-5,4]],[[4161,7355],[-1,-5]],[[7018,8401],[-32,-133]],[[7018,8401],[-411,-224]],[[5597,7888],[-331,-383]],[[4210,7372],[-13,-48]],[[3253,7006],[22,-5]],[[3253,7006],[5,-9]],[[4663,7541],[-211,-249]],[[4261,7389],[-12,1]],[[4261,7389],[-12,1]],[[4267,7391],[-6,-2]],[[4267,7391],[-6,-2]],[[4160,7350],[-2,-6]],[[4160,7350],[-2,-6]],[[4273,7392],[-6,-1]],[[4273,7392],[-16,4]],[[4158,7344],[0,-2]],[[5343,7784],[-1,-6]],[[5343,7784],[-1,-6]],[[4158,7342],[0,-5]],[[4158,7342],[0,-5]],[[16212,11322],[-76,13]],[[16212,11322],[-117,-55]],[[3258,6997],[-5,-13]],[[3258,6997],[11,-16]],[[3275,7001],[-6,-20]],[[4158,7337],[-1,-31]],[[16303,11344],[84,76]],[[5342,7778],[-2,-9]],[[4308,7390],[-1,-2]],[[4313,7391],[-5,-1]],[[4313,7391],[-5,-1]],[[4307,7388],[-15,-7]],[[4307,7388],[-14,-9]],[[4281,7377],[-8,15]],[[4281,7377],[0,0]],[[4292,7381],[-5,-3]],[[4292,7381],[1,-2]],[[4287,7378],[-6,-1]],[[3253,6984],[-51,-32]],[[4293,7379],[-6,-1]],[[4322,7390],[-9,1]],[[4322,7390],[-9,1]],[[5340,7769],[-1,-7]],[[5340,7769],[-1,-7]],[[4354,7401],[-13,-6]],[[4354,7401],[-13,-6]],[[4358,7402],[-4,-1]],[[4365,7404],[-7,-2]],[[4365,7404],[-7,-2]],[[4341,7395],[-19,-5]],[[4366,7404],[-1,0]],[[4366,7404],[-12,-3]],[[5339,7762],[-3,-45]],[[3269,6981],[-16,3]],[[21508,12690],[-51,-322]],[[20326,12394],[-116,-385]],[[4197,7324],[-6,-13]],[[4197,7324],[-7,-11]],[[4157,7306],[-10,-10]],[[4157,7306],[-10,-10]],[[4190,7313],[-2,-4]],[[4190,7313],[1,-2]],[[4147,7296],[-8,-14]],[[4147,7296],[-8,-12]],[[18150,11817],[-176,250]],[[4191,7311],[-2,-4]],[[4188,7309],[-4,-7]],[[4188,7309],[1,-2]],[[4189,7307],[-5,-5]],[[4184,7302],[-2,-2]],[[4139,7284],[-11,-13]],[[4139,7284],[0,-2]],[[4182,7300],[-3,-3]],[[4182,7300],[-2,-6]],[[4179,7297],[-4,-11]],[[4179,7297],[1,-3]],[[4139,7282],[-11,-11]],[[15917,11186],[72,168]],[[15917,11186],[47,-40]],[[4180,7294],[-2,-7]],[[4128,7271],[2,-9]],[[4178,7287],[-3,-1]],[[4178,7287],[-1,-10]],[[4175,7286],[2,-9]],[[5336,7717],[-5,-6]],[[5336,7717],[-5,-6]],[[6607,8177],[-197,10]],[[6607,8177],[-405,-132]],[[5331,7711],[-2,-14]],[[4130,7262],[2,-16]],[[4130,7262],[2,-16]],[[17212,11533],[-219,64]],[[17212,11533],[40,129]],[[4177,7277],[-1,-7]],[[4176,7270],[-3,-18]],[[4176,7270],[-1,-16]],[[5329,7697],[-2,-6]],[[5329,7697],[-2,-6]],[[20769,12456],[-9,-13]],[[4132,7246],[28,-42]],[[5327,7691],[-10,-35]],[[17748,11662],[-36,22]],[[5298,7677],[7,-2]],[[5298,7677],[7,-2]],[[20760,12443],[-364,-16]],[[20760,12443],[-215,-283]],[[4175,7254],[-2,-2]],[[4175,7254],[-7,-16]],[[5305,7675],[12,-19]],[[4173,7252],[-5,-14]],[[4168,7238],[0,-1]],[[4168,7237],[-3,-1]],[[4168,7237],[-8,-17]],[[4165,7236],[-5,-11]],[[4165,7236],[-5,-11]],[[6986,8268],[-151,-227]],[[6986,8268],[25,-129]],[[4160,7225],[0,-5]],[[5317,7656],[-48,-136]],[[17472,11555],[23,146]],[[17472,11555],[68,-38]],[[4160,7220],[0,-16]],[[17937,11675],[-17,17]],[[17937,11675],[-189,-13]],[[4160,7204],[23,-42]],[[491,5751],[-36,427],[211,-6]],[[3388,6890],[-113,111]],[[4452,7292],[-2,-4]],[[4452,7292],[-2,-4]],[[4450,7288],[-169,89]],[[535,5755],[-44,-4]],[[541,5756],[-6,-1]],[[541,5756],[1,-2]],[[17197,11435],[15,98]],[[17197,11435],[275,120]],[[542,5754],[-7,1]],[[546,5755],[-5,1]],[[546,5755],[-4,-1]],[[20938,12402],[-114,-475]],[[20938,12402],[83,-760]],[[18298,11714],[133,604],[158,-60],[365,215]],[[18298,11714],[-148,103]],[[4183,7162],[5,-11]],[[4183,7162],[5,-11]],[[18033,11639],[-96,36]],[[18033,11639],[222,-75]],[[4913,7430],[-63,-60]],[[4918,7429],[-5,1]],[[4918,7429],[-5,1]],[[4927,7428],[-9,1]],[[4188,7151],[13,-24]],[[5199,7513],[-12,-6]],[[5199,7513],[-12,-6]],[[5154,7495],[-108,-128]],[[5161,7498],[-7,-3]],[[5161,7498],[-7,-3]],[[5187,7507],[-26,-9]],[[17191,11379],[6,56]],[[17191,11379],[146,-243]],[[4837,7367],[13,3]],[[4837,7367],[-170,-104]],[[4201,7127],[3,-7]],[[4201,7127],[3,-7]],[[4850,7370],[-13,-3]],[[5269,7520],[-2,-9]],[[5269,7520],[-2,-9]],[[4204,7120],[10,1]],[[4214,7121],[6,1]],[[4214,7121],[6,1]],[[4220,7122],[-14,-119]],[[5267,7511],[-1,-6]],[[5266,7505],[-67,8]],[[1511,6056],[-173,264],[91,493]],[[4667,7263],[-4,-6]],[[4667,7263],[-4,-6]],[[4663,7257],[-5,-2]],[[4658,7255],[-15,-6]],[[4658,7255],[-15,-6]],[[4643,7249],[-1,-17]],[[6835,8041],[131,-160],[-151,-179]],[[6835,8041],[-289,-143]],[[4642,7232],[1,-14]],[[4642,7232],[1,-14]],[[17558,11401],[-80,-144]],[[4643,7218],[-170,-152]],[[5046,7367],[-11,-5]],[[5046,7367],[-11,-5]],[[5035,7362],[-108,66]],[[6546,7898],[-327,-376]],[[6546,7898],[-107,-321]],[[18255,11564],[43,150]],[[21457,12368],[-107,-207]],[[21457,12368],[-191,-262]],[[4206,7003],[-6,-6]],[[4206,7003],[-6,-6]],[[4200,6997],[-34,-66]],[[4473,7066],[-2,-8]],[[4473,7066],[1,-15]],[[20210,12009],[-135,-57]],[[4471,7058],[3,-7]],[[4471,7058],[3,-8]],[[4474,7051],[0,-1]],[[4474,7050],[-10,-10]],[[4166,6931],[-263,-373]],[[4464,7040],[-6,-34]],[[4464,7040],[-6,-34]],[[20075,11952],[0,0]],[[20075,11952],[223,-43]],[[17011,11134],[180,245]],[[17011,11134],[115,-240]],[[510,5467],[-19,284]],[[4458,7006],[1,-7]],[[4459,6999],[-6,-15]],[[4459,6999],[-6,-15]],[[4453,6984],[-3,-4]],[[4450,6980],[8,-29]],[[4450,6980],[3,-24]],[[612,5466],[-102,1]],[[4453,6956],[0,-17]],[[4453,6956],[5,-5]],[[4458,6951],[-5,-12]],[[4453,6939],[6,-24]],[[16061,10768],[64,319]],[[938,5548],[-279,505],[34,92]],[[956,5550],[-18,-2]],[[956,5550],[-18,-2]],[[4459,6915],[-10,-20]],[[4459,6915],[-2,-13]],[[875,5507],[-329,248]],[[4457,6902],[-8,-7]],[[4457,6902],[-8,-26]],[[4449,6895],[0,-19]],[[4449,6876],[-13,-25]],[[4436,6851],[0,-8]],[[4436,6851],[0,-8]],[[1134,5557],[-178,-7]],[[4436,6843],[-1,-34]],[[514,5303],[-4,164]],[[16072,10677],[-241,351],[86,158]],[[16072,10677],[720,237],[219,220]],[[6203,7481],[-208,-356]],[[6203,7481],[2,-53]],[[6208,7483],[-5,-2]],[[6815,7702],[-125,-204],[31,-494]],[[6815,7702],[92,-234]],[[4435,6809],[-5,-6]],[[4435,6809],[-5,-6]],[[20824,11927],[-77,-109]],[[20824,11927],[-8,-376]],[[4430,6803],[-2,-1]],[[4428,6802],[-2,-10]],[[4428,6802],[-2,-10]],[[1469,5652],[-262,468],[-146,501]],[[20145,11744],[47,-177]],[[4426,6792],[-9,-6]],[[4417,6786],[-3,-12]],[[4417,6786],[-3,-12]],[[705,5332],[-191,-29]],[[1474,5638],[-5,14]],[[1473,5637],[-4,15]],[[4414,6774],[-10,-56]],[[3903,6558],[-163,-256],[-284,527]],[[4286,6701],[-120,230]],[[17773,11078],[53,-92]],[[4293,6695],[-7,6]],[[4293,6695],[-7,6]],[[4297,6691],[-4,4]],[[4298,6690],[-5,5]],[[4298,6690],[-1,1]],[[4302,6688],[-5,3]],[[4302,6688],[-4,2]],[[17365,10948],[254,-77]],[[4509,6761],[-12,-5]],[[4509,6761],[-12,-5]],[[4497,6756],[-34,-20]],[[4404,6718],[-3,-7]],[[4404,6718],[-3,-7]],[[4463,6736],[-2,-10]],[[4463,6736],[-2,-10]],[[4528,6760],[-19,1]],[[4401,6711],[-7,-9]],[[4535,6759],[-7,1]],[[4535,6759],[-7,1]],[[20747,11818],[-79,-62]],[[20747,11818],[-280,-100]],[[4394,6702],[-1,-5]],[[4394,6702],[-1,-5]],[[4461,6726],[-52,-76]],[[4393,6697],[-12,-13]],[[4381,6684],[-6,-9]],[[4381,6684],[-6,-9]],[[4611,6770],[-5,-9]],[[4611,6770],[-5,-9]],[[4375,6675],[-73,13]],[[4606,6761],[-71,-2]],[[20635,11766],[-139,0]],[[4409,6650],[-3,-10]],[[4409,6650],[-3,-10]],[[4406,6640],[-118,-448],[98,-160],[-100,-511]],[[17886,11003],[369,561]],[[17886,11003],[-60,-17]],[[17826,10986],[-207,-115]],[[5033,6855],[-187,-151],[-235,66]],[[2506,5887],[44,-5]],[[5654,7070],[-9,-37]],[[2550,5882],[72,-54]],[[17619,10871],[38,-591],[-125,-29]],[[5645,7033],[-17,-53]],[[2395,5791],[17,5]],[[2377,5782],[35,14]],[[2412,5796],[40,-7]],[[2414,5795],[16,7]],[[5675,7031],[-30,2]],[[2385,5777],[10,14]],[[6907,7468],[224,18]],[[6907,7468],[10,-52]],[[20014,11472],[31,-6]],[[2452,5789],[-11,-2]],[[2452,5789],[98,93]],[[19409,11311],[199,219],[116,420],[197,139],[154,-137]],[[5628,6980],[5,3]],[[5628,6980],[-129,-179]],[[2307,5709],[78,68]],[[2541,5798],[81,30]],[[2622,5828],[2,-1]],[[2624,5827],[31,-13]],[[3826,6282],[93,-35]],[[6917,7416],[-129,-47]],[[6917,7416],[24,-49]],[[2628,5805],[-4,22]],[[2628,5805],[-22,-149],[531,-771],[179,-135],[337,-612],[-127,627]],[[2655,5814],[-27,-9]],[[2418,5701],[2,19]],[[20976,11629],[-160,-78]],[[20505,11496],[-106,174]],[[5437,6823],[-27,-25]],[[5409,6813],[1,-15]],[[6941,7367],[126,-156]],[[6941,7367],[-121,-326]],[[6443,7186],[57,-147]],[[448,4872],[66,431]],[[5410,6798],[-31,-76]],[[20816,11551],[119,-135]],[[5325,6755],[50,-50]],[[14787,9899],[293,234],[89,-76],[467,237],[-5,129],[441,254]],[[2451,5652],[-35,142]],[[5499,6801],[-3,-7]],[[5499,6801],[-3,-7]],[[1025,5070],[-49,-56]],[[5496,6794],[-1,-1]],[[5495,6793],[-6,-14]],[[5495,6793],[-6,-14]],[[1700,5335],[-189,720]],[[1832,5388],[-95,555],[-129,279],[57,441]],[[6204,7051],[-14,-72]],[[2466,5630],[-15,22]],[[2466,5630],[-15,22]],[[5355,6730],[24,-8]],[[5489,6779],[-4,-34]],[[952,5018],[-5,2]],[[952,5018],[-39,-43]],[[952,5017],[0,1]],[[945,5014],[2,6]],[[956,5015],[-4,2]],[[956,5015],[-4,2]],[[2179,5504],[128,205]],[[18526,10908],[-118,209],[-305,-238],[-217,124]],[[18526,10908],[222,178],[173,-83],[207,236],[281,72]],[[958,5014],[-2,1]],[[21423,11648],[-127,293]],[[21423,11648],[-163,-13]],[[5379,6722],[-4,-17]],[[976,5014],[-2,-7]],[[976,5014],[-2,-7]],[[5926,6921],[-126,16]],[[966,5008],[-8,6]],[[966,5008],[-8,6]],[[974,5007],[-8,1]],[[913,4975],[-465,-103]],[[5375,6705],[-1,-1]],[[21840,11728],[29,380]],[[21840,11728],[60,-24]],[[5344,6657],[7,-12]],[[1780,5267],[-80,68]],[[5306,6613],[20,-8]],[[6500,7039],[-93,-154]],[[6500,7039],[44,-98]],[[961,4914],[-48,61]],[[961,4914],[-6,-15]],[[2548,5519],[-82,111]],[[990,4883],[-29,31]],[[21029,11412],[-4,54]],[[6246,6897],[9,-62]],[[20581,11292],[0,0]],[[993,4870],[-3,13]],[[993,4870],[-3,13]],[[5339,6544],[-1,-2]],[[2484,5453],[-28,171]],[[2338,5384],[50,396]],[[20121,11127],[121,97]],[[2323,5354],[15,30]],[[6820,7041],[-56,-109]],[[6820,7041],[-21,-144]],[[6544,6941],[120,-186]],[[6544,6941],[-74,-321]],[[6255,6835],[-9,-13]],[[6255,6835],[40,-23]],[[21129,11353],[184,90],[256,-196]],[[21129,11353],[-36,-29]],[[2285,5309],[38,45]],[[2284,5308],[1,1]],[[2349,5326],[-26,28]],[[6369,6840],[-38,-118]],[[21093,11324],[-53,73]],[[21093,11324],[-27,-28]],[[3252,5651],[-597,163]],[[2200,5215],[7,-8]],[[2155,5189],[28,-4]],[[21630,11392],[-207,256]],[[21630,11392],[210,336]],[[2183,5185],[101,123]],[[682,4570],[-161,-110]],[[20867,11181],[19,5]],[[2485,5268],[-147,116]],[[8027,7323],[-412,-546]],[[8027,7323],[334,-689]],[[492,4455],[-14,-20]],[[515,4462],[-23,-7]],[[515,4462],[6,-2]],[[14712,9465],[279,89],[280,-200],[349,67],[360,-288]],[[521,4460],[-6,2]],[[2120,5104],[11,1]],[[2131,5105],[52,80]],[[478,4435],[14,20]],[[478,4435],[-14,-7]],[[464,4428],[-16,444]],[[7382,7068],[-290,75]],[[7382,7068],[-385,-79]],[[1320,4772],[-327,98]],[[6151,6580],[-188,265]],[[6664,6755],[148,87]],[[6664,6755],[-71,-352]],[[21569,11247],[61,145]],[[2145,5004],[-14,101]],[[1456,4700],[-31,27]],[[1458,4697],[-2,3]],[[1458,4697],[-40,7]],[[1478,4693],[-22,7]],[[1478,4693],[-20,4]],[[1501,4695],[-23,-2]],[[1501,4695],[-23,6]],[[1513,4699],[-3,-6]],[[1510,4693],[-9,2]],[[1513,4692],[-3,1]],[[1527,4695],[-14,4]],[[1527,4695],[-14,-3]],[[1537,4698],[-24,1]],[[1537,4698],[-10,-3]],[[6414,6540],[-69,-149]],[[2369,5003],[31,-5]],[[1544,4666],[-7,32]],[[1544,4666],[-31,26]],[[1548,4662],[-4,4]],[[2400,4998],[17,40]],[[1571,4661],[-23,1]],[[1571,4661],[-23,1]],[[1572,4657],[-1,4]],[[2395,4971],[5,27]],[[1078,4431],[-307,-253]],[[17121,9906],[1,22]],[[17121,9906],[3,-7]],[[17124,9899],[-3,7]],[[17124,9899],[0,-3]],[[17124,9896],[0,3]],[[17124,9896],[4,-14]],[[1591,4626],[-19,31]],[[1591,4626],[-4,-3]],[[1576,4619],[-4,38]],[[1587,4623],[-11,-4]],[[2431,4954],[-36,17]],[[1611,4622],[-20,4]],[[1611,4622],[-24,1]],[[17128,9882],[-4,14]],[[17128,9882],[2,-4]],[[1615,4619],[-4,3]],[[17130,9878],[-2,4]],[[17130,9878],[0,-1]],[[17130,9877],[0,1]],[[17130,9877],[0,0]],[[17130,9877],[0,0]],[[17130,9877],[2,-4]],[[1621,4615],[-6,4]],[[1621,4615],[-6,4]],[[1642,4622],[-14,-6]],[[1642,4622],[-14,-6]],[[1628,4616],[-7,-1]],[[17132,9873],[-2,4]],[[17132,9873],[3,-3]],[[17135,9870],[-3,3]],[[17135,9870],[1,-1]],[[17136,9869],[-1,1]],[[17136,9869],[2,-2]],[[17138,9867],[-2,2]],[[17138,9867],[0,0]],[[17138,9867],[0,0]],[[17138,9867],[3,-1]],[[17141,9866],[-3,1]],[[17141,9866],[1,0]],[[17142,9866],[-1,0]],[[17142,9866],[8,-9]],[[2325,4872],[70,99]],[[17150,9857],[-8,9]],[[1791,4655],[-149,-33]],[[544,4148],[-34,-28]],[[5224,5976],[-48,-67]],[[1477,4517],[-492,-330]],[[20608,10758],[-253,181]],[[20608,10758],[62,464],[-89,70]],[[17068,9817],[-126,86]],[[17068,9817],[-149,-138]],[[510,4120],[-46,308]],[[560,4137],[-16,11]],[[560,4137],[-16,11]],[[628,4162],[-68,-25]],[[20269,10659],[215,-4]],[[650,4165],[-22,-3]],[[650,4165],[-6,-12]],[[644,4153],[-16,9]],[[7410,6736],[-371,-363]],[[667,4150],[-17,15]],[[5176,5909],[-5,-4]],[[5176,5909],[-5,-4]],[[5171,5905],[-46,-124]],[[771,4178],[-104,-28]],[[7615,6777],[-233,291]],[[7615,6777],[-138,-185]],[[7431,6709],[-21,27]],[[7431,6709],[-21,27]],[[20484,10655],[-184,-19]],[[20484,10655],[118,-54]],[[1788,4556],[-212,63]],[[1793,4556],[-5,0]],[[1786,4549],[2,7]],[[4286,5521],[-10,-77]],[[2010,4627],[-14,-26]],[[6588,6351],[-59,-85]],[[1996,4601],[0,0]],[[1996,4601],[-205,54]],[[7447,6650],[-34,-421]],[[17757,9882],[551,424],[218,602]],[[17757,9882],[171,-241]],[[985,4187],[-214,-9]],[[7456,6641],[-9,9]],[[7456,6641],[-9,9]],[[7456,6632],[0,9]],[[7456,6632],[-25,77]],[[5125,5781],[-8,-16]],[[5125,5781],[-8,-16]],[[1866,4520],[-75,135]],[[20602,10601],[6,157]],[[5117,5765],[-15,-140]],[[1871,4508],[-5,12]],[[4276,5444],[-121,-10],[5,898],[-257,226]],[[21248,10752],[-153,38]],[[20884,10657],[71,-183],[443,51]],[[1883,4503],[-12,5]],[[1883,4503],[-17,17]],[[21483,10803],[86,444]],[[21483,10803],[192,-43]],[[1885,4499],[-2,4]],[[4309,5438],[-23,83]],[[4309,5438],[-33,6]],[[7471,6597],[-15,35]],[[1885,4492],[-14,16]],[[1885,4492],[0,7]],[[17541,9762],[-473,55]],[[17541,9762],[216,120]],[[7477,6592],[-6,5]],[[7477,6592],[-6,5]],[[1903,4481],[-18,18]],[[1903,4481],[-18,11]],[[2103,4550],[0,0]],[[2103,4550],[-107,51]],[[1932,4477],[-29,4]],[[2111,4541],[-8,9]],[[1938,4469],[-6,8]],[[1938,4469],[-6,8]],[[1497,4284],[-85,-53]],[[1708,4361],[39,-106],[-333,-252]],[[1075,4104],[-90,83]],[[1081,4104],[-6,0]],[[1081,4104],[-6,0]],[[524,3875],[-14,245]],[[1101,4106],[-20,-2]],[[7039,6373],[-158,254]],[[7039,6373],[-104,-115]],[[1412,4231],[-5,-11]],[[1412,4231],[-5,-11]],[[1110,4105],[-9,1]],[[1110,4105],[-9,1]],[[2228,4552],[-10,-27]],[[1407,4220],[-193,-132]],[[2218,4525],[-115,25]],[[1949,4413],[-11,56]],[[5102,5625],[20,3]],[[5102,5625],[6,-40]],[[5122,5628],[-14,-43]],[[5122,5628],[-3,-6]],[[5119,5622],[0,0]],[[1226,4096],[-12,-8]],[[1214,4088],[-104,17]],[[1250,4094],[-11,-9]],[[6278,6024],[52,-82]],[[1239,4085],[-13,11]],[[1239,4085],[-13,11]],[[6935,6258],[-176,76]],[[6935,6258],[-123,-178]],[[728,3875],[-2,-8]],[[728,3875],[-2,-8]],[[1270,4094],[-20,0]],[[1270,4094],[-20,0]],[[5108,5585],[23,-36]],[[2258,4487],[6,17]],[[2047,4403],[-98,10]],[[726,3867],[-82,286]],[[1911,4324],[38,89]],[[1332,4091],[-15,-15]],[[1332,4091],[-15,-15]],[[576,3778],[-52,97]],[[2313,4477],[-5,-8]],[[1910,4315],[1,9]],[[1910,4315],[1,9]],[[1317,4076],[-47,18]],[[2308,4469],[-90,56]],[[2310,4468],[-2,1]],[[15980,9133],[421,52]],[[15980,9133],[-161,-404]],[[5131,5549],[38,-106]],[[2307,4449],[3,19]],[[20566,10341],[-234,178]],[[20566,10341],[36,260]],[[6359,5968],[-29,-26]],[[17928,9641],[173,-53],[44,-448]],[[17928,9641],[-27,-256]],[[6330,5942],[0,0]],[[6330,5942],[15,-202]],[[1920,4256],[-10,59]],[[21398,10525],[85,278]],[[16401,9185],[96,79],[288,-330]],[[16401,9185],[109,-106],[-153,-376]],[[8361,6634],[-220,-373]],[[8361,6634],[113,-342],[438,-29]],[[6812,6080],[-128,153]],[[6812,6080],[-2,-129]],[[16064,9071],[-191,-342]],[[1414,4003],[-82,88]],[[5169,5443],[1,-9]],[[5169,5443],[1,-9]],[[5155,5433],[-5,-4]],[[5155,5433],[-5,-4]],[[5150,5429],[0,0]],[[5150,5429],[-4,-8]],[[5150,5429],[-4,-8]],[[5170,5434],[-15,-1]],[[1452,3989],[-38,14]],[[5146,5421],[-1,-3]],[[5145,5418],[-9,-10]],[[5145,5418],[-9,-10]],[[6167,5795],[8,-102]],[[20537,10230],[-297,131]],[[20537,10230],[29,111]],[[1459,3980],[-7,9]],[[5136,5408],[-90,-236],[54,-333]],[[1463,3979],[-4,1]],[[1463,3979],[-11,10]],[[530,3594],[-6,281]],[[7413,6229],[-183,-207]],[[7413,6229],[209,-357]],[[20539,10209],[-2,21]],[[20539,10209],[197,92]],[[17496,9398],[45,364]],[[17496,9398],[75,-119]],[[1485,3961],[-26,19]],[[1485,3961],[-22,18]],[[1490,3959],[-5,2]],[[1502,3964],[-12,-5]],[[1502,3964],[-6,-4]],[[1496,3960],[0,0]],[[1496,3960],[-6,-1]],[[1780,4074],[-25,-63]],[[2461,4337],[-151,131]],[[640,3602],[-110,-8]],[[1562,3970],[0,0]],[[1562,3970],[-13,-7]],[[1571,3972],[-22,-9]],[[1571,3972],[-9,-2]],[[1549,3963],[-47,1]],[[1623,3988],[-52,-16]],[[5609,5520],[-237,-101]],[[1634,3985],[-11,3]],[[1634,3985],[-11,3]],[[1650,3990],[-9,-6]],[[1650,3990],[-4,-5]],[[1641,3984],[-7,1]],[[1646,3985],[0,0]],[[1646,3985],[-5,-1]],[[1679,3996],[-7,-4]],[[1679,3996],[-7,-4]],[[1672,3992],[-22,-2]],[[1704,4002],[-25,-6]],[[5372,5419],[-241,130]],[[1573,3946],[-11,24]],[[1755,4011],[0,0]],[[1755,4011],[-22,-10]],[[1733,4001],[-29,1]],[[1733,4001],[-29,1]],[[1672,3976],[-26,9]],[[1531,3917],[-35,43]],[[1930,4072],[-22,-153]],[[6175,5693],[-3,-6]],[[6175,5693],[-3,-6]],[[6172,5687],[19,-58]],[[16437,9018],[82,-303]],[[6345,5740],[0,0]],[[6345,5740],[-55,-59]],[[6090,5641],[49,-69]],[[1805,3991],[-7,-16]],[[536,3463],[-6,131]],[[6290,5681],[-133,-105]],[[16011,8846],[31,-266]],[[6499,5750],[-154,-10]],[[690,3505],[-154,-42]],[[5469,5367],[-97,52]],[[2202,4080],[9,-30]],[[6138,5572],[-5,-10]],[[6139,5572],[-1,0]],[[6139,5572],[1,-4]],[[6157,5576],[-17,-8]],[[6157,5576],[-24,-14]],[[6140,5568],[-2,4]],[[1446,3762],[-210,-80],[-180,164],[-328,29]],[[6133,5562],[-68,-148]],[[1880,3931],[-125,80]],[[1890,3930],[-10,1]],[[1890,3930],[-10,1]],[[1892,3929],[-2,1]],[[2211,4050],[74,-6]],[[1896,3921],[-4,8]],[[1896,3921],[-4,8]],[[8141,6261],[-48,-356]],[[8141,6261],[-49,-63]],[[650,3409],[-16,-8]],[[650,3409],[-27,-27]],[[634,3401],[-10,-16]],[[634,3401],[-10,-16]],[[2293,4067],[11,-27]],[[624,3385],[-1,-3]],[[623,3382],[-23,-33]],[[961,3512],[-257,-138]],[[2285,4044],[0,0]],[[2285,4044],[19,-4]],[[16266,8805],[-72,52]],[[16266,8805],[-22,81]],[[589,3347],[-62,-42]],[[589,3347],[-4,-6]],[[2304,4040],[44,-36]],[[591,3347],[-2,0]],[[600,3349],[-9,-2]],[[600,3349],[-9,-2]],[[8092,6198],[-103,59]],[[8092,6198],[-317,-570]],[[585,3341],[-11,-8]],[[2277,4020],[8,24]],[[20551,9947],[-12,262]],[[20551,9947],[25,2]],[[20576,9949],[149,166]],[[20576,9949],[309,38]],[[686,3371],[-36,38]],[[527,3305],[9,158]],[[698,3373],[-12,-2]],[[698,3373],[-2,-4]],[[704,3374],[-6,-1]],[[2365,4042],[-17,-38]],[[696,3369],[-10,2]],[[706,3372],[-2,2]],[[706,3372],[-10,-3]],[[16310,8789],[-44,16]],[[16310,8789],[-35,129]],[[20499,9914],[-19,137]],[[1985,3869],[-89,52]],[[6029,5410],[34,-13]],[[2348,4004],[60,-167]],[[2242,3960],[162,-250]],[[2374,4008],[-10,-33]],[[6065,5414],[0,-6]],[[6065,5414],[0,-6]],[[6065,5408],[-2,-11]],[[1753,3752],[-70,-40]],[[768,3348],[-7,-2]],[[768,3348],[-62,24]],[[1668,3711],[-24,-21]],[[6063,5397],[-26,-68]],[[1683,3712],[-15,-1]],[[1683,3712],[-15,-1]],[[20464,9854],[70,-19]],[[1644,3690],[-9,-6]],[[1644,3690],[-9,-6]],[[6985,5724],[-19,47]],[[6985,5724],[-32,-45]],[[1635,3684],[-5,-29]],[[776,3335],[-8,13]],[[776,3335],[-13,-4]],[[2140,3876],[71,174]],[[1630,3655],[-14,-25]],[[1630,3655],[-14,-25]],[[16332,8704],[-146,115]],[[6953,5679],[-21,11]],[[6953,5679],[-26,-40]],[[20534,9835],[17,112]],[[1537,3611],[-180,-241]],[[16357,8703],[-47,86]],[[16357,8703],[-120,-432]],[[16357,8703],[0,0]],[[1295,3504],[-53,-124]],[[1555,3608],[-18,3]],[[1555,3608],[-18,3]],[[1616,3630],[-61,-22]],[[6037,5329],[-1,-18]],[[6037,5329],[-1,-18]],[[1103,3411],[-143,-165]],[[6036,5311],[-121,-154]],[[871,3305],[-9,5]],[[871,3305],[-95,30]],[[660,3217],[-173,-119]],[[16519,8715],[161,-47]],[[16519,8715],[-45,-299]],[[7622,5872],[30,-212]],[[7622,5872],[-90,-116]],[[17914,9080],[164,-45]],[[18145,9140],[-106,45]],[[18145,9140],[-67,-105]],[[487,3098],[40,207]],[[2449,3872],[-41,-35]],[[8912,6263],[-4,-35]],[[8912,6263],[319,-426],[17,-428]],[[15918,8479],[-203,52]],[[15918,8479],[-85,225]],[[1242,3380],[-228,-138]],[[2408,3837],[16,-207]],[[1297,3390],[-10,-15]],[[1276,3379],[-25,-16]],[[5406,4984],[16,-110]],[[1307,3390],[-10,0]],[[7532,5756],[-23,-3]],[[7532,5756],[-72,166],[-200,-174],[-275,-24]],[[1277,3375],[-1,4]],[[1277,3375],[-15,-14]],[[960,3246],[-89,59]],[[1251,3363],[-7,3]],[[1251,3363],[-9,17]],[[1287,3375],[-11,4]],[[1287,3375],[-10,0]],[[1259,3361],[3,0]],[[1331,3388],[-24,2]],[[1331,3388],[-6,-6]],[[1325,3382],[-18,8]],[[5915,5157],[-108,-127]],[[17325,8839],[171,559]],[[1335,3379],[-38,11]],[[1335,3379],[-10,3]],[[18078,9035],[-13,-6]],[[1014,3242],[-17,8]],[[1014,3242],[-54,4]],[[5100,4839],[-8,-7]],[[5100,4839],[-8,-7]],[[5092,4832],[-38,-62]],[[1732,3525],[-84,-216]],[[1355,3369],[-20,10]],[[1355,3369],[-24,19]],[[1357,3370],[-2,-1]],[[6052,5181],[-28,-25]],[[5792,5082],[15,-52]],[[6571,5366],[-128,23]],[[8093,5905],[150,-125]],[[8093,5905],[-88,-416]],[[1399,3374],[-42,-4]],[[6016,5154],[-5,-2]],[[6016,5154],[-1,-2]],[[6001,5148],[-6,-3]],[[6001,5148],[-6,-3]],[[6011,5152],[-10,-4]],[[6024,5156],[-8,-2]],[[6024,5156],[0,0]],[[6024,5156],[-1,-3]],[[5995,5145],[-80,12]],[[6015,5152],[-4,0]],[[5099,4811],[-7,-3]],[[5092,4808],[-38,-38]],[[6023,5153],[-8,-1]],[[6028,5155],[-4,1]],[[6028,5155],[-5,-2]],[[451,2979],[36,119]],[[5110,4812],[-11,-1]],[[5110,4812],[-7,-4]],[[5103,4808],[-4,3]],[[5103,4808],[-11,0]],[[1415,3370],[-16,4]],[[6034,5150],[-6,5]],[[6039,5150],[-5,0]],[[1420,3365],[-21,9]],[[1420,3365],[-5,5]],[[7351,5622],[-99,-60]],[[6040,5145],[-6,5]],[[6040,5145],[-1,5]],[[6044,5144],[-5,6]],[[1425,3362],[-5,3]],[[1425,3362],[-10,8]],[[1448,3369],[1,-3]],[[6046,5142],[-2,2]],[[6046,5142],[-1,-3]],[[1449,3366],[-5,-5]],[[6045,5139],[-1,5]],[[21383,9842],[15,683]],[[21383,9842],[-318,-76]],[[5054,4770],[-11,-23]],[[1457,3367],[2,-8]],[[1444,3361],[-19,1]],[[6047,5137],[-2,2]],[[6047,5137],[-7,8]],[[6047,5136],[0,1]],[[6047,5136],[-1,6]],[[5465,4919],[17,-61]],[[1420,3344],[9,0]],[[1459,3359],[-10,7]],[[17343,8771],[370,-79]],[[6202,5185],[-77,-153]],[[1429,3344],[2,10]],[[7252,5562],[-18,-12]],[[7252,5562],[-4,-14]],[[7363,5599],[-95,-320]],[[783,3076],[-332,-97]],[[1467,3354],[-1,-5]],[[7234,5550],[-26,-24]],[[5043,4747],[-21,-44]],[[5043,4747],[-11,-28]],[[5807,5030],[-176,-157]],[[1465,3350],[-6,9]],[[1466,3349],[-1,1]],[[7248,5548],[-14,2]],[[7248,5548],[-40,-22]],[[20570,9612],[-36,223]],[[20570,9612],[164,136]],[[1469,3342],[-4,8]],[[1469,3342],[-3,7]],[[6065,5112],[-18,24]],[[7208,5526],[-94,-88]],[[5422,4874],[-16,-31]],[[5165,4774],[-55,38]],[[6068,5107],[-3,5]],[[6068,5107],[-3,5]],[[6068,5107],[0,0]],[[5032,4719],[-5,-12]],[[5032,4719],[-5,-12]],[[6078,5107],[-10,0]],[[1441,3318],[-12,26]],[[6068,5102],[0,5]],[[1479,3331],[-10,11]],[[1479,3331],[0,0]],[[5189,4774],[-24,0]],[[5189,4774],[-24,0]],[[6068,5097],[0,5]],[[6067,5096],[1,6]],[[6067,5096],[1,1]],[[5027,4707],[-1,-3]],[[5022,4703],[-5,-7]],[[5441,4859],[-19,15]],[[5441,4859],[-35,-16]],[[1495,3327],[-16,4]],[[1534,3343],[-90,18]],[[5026,4704],[-4,-1]],[[5026,4704],[0,-1]],[[5026,4703],[-3,-7]],[[5026,4703],[-3,-7]],[[7652,5660],[89,-261]],[[7652,5660],[-79,-260]],[[5406,4843],[-32,-25]],[[6068,5087],[-1,9]],[[6068,5087],[0,10]],[[5444,4856],[-3,3]],[[6068,5087],[0,0]],[[5017,4696],[-4,-19]],[[1477,3313],[2,18]],[[5023,4696],[-6,0]],[[5023,4696],[-10,-19]],[[5208,4762],[-19,12]],[[1508,3319],[-13,8]],[[1508,3319],[-13,8]],[[5374,4818],[-11,-15]],[[5374,4818],[-11,-15]],[[6070,5076],[-2,11]],[[5219,4760],[-11,2]],[[5219,4760],[-11,2]],[[5482,4858],[-9,-6]],[[6069,5074],[-1,13]],[[6069,5074],[1,2]],[[5473,4852],[-29,4]],[[5473,4852],[-9,-6]],[[5464,4846],[-20,10]],[[5013,4677],[-3,-69]],[[6071,5066],[-2,8]],[[6071,5066],[-1,10]],[[5363,4803],[-100,-48]],[[5491,4846],[-9,12]],[[7114,5438],[-251,53]],[[7114,5438],[-15,-8]],[[7099,5430],[-199,-309]],[[5493,4842],[-2,4]],[[5263,4755],[2,-6]],[[5263,4755],[-3,-9]],[[1555,3312],[-47,7]],[[5245,4743],[-26,17]],[[5265,4749],[-20,-6]],[[5265,4749],[-5,-3]],[[1563,3310],[-8,2]],[[1563,3310],[-8,2]],[[5260,4746],[-15,-3]],[[5489,4828],[-25,18]],[[5489,4828],[2,18]],[[6091,5050],[-20,16]],[[5494,4829],[-1,13]],[[5494,4829],[-5,-1]],[[5614,4872],[-34,-15]],[[5614,4872],[-2,-7]],[[6081,5043],[10,3]],[[5554,4848],[-2,-4]],[[1575,3306],[-12,4]],[[6091,5046],[0,4]],[[5580,4857],[-26,-9]],[[5580,4857],[-26,-9]],[[5552,4844],[-6,-4]],[[2440,3649],[-16,-19]],[[5631,4873],[-17,-1]],[[5631,4873],[-19,-8]],[[5612,4865],[-60,-21]],[[5546,4840],[-53,2]],[[5546,4840],[-35,-19]],[[6100,5043],[-9,3]],[[6100,5043],[-9,7]],[[5499,4819],[-5,10]],[[1580,3299],[-5,7]],[[1580,3299],[-5,7]],[[5511,4821],[-8,-3]],[[5511,4821],[-8,-3]],[[5503,4818],[-4,1]],[[16474,8416],[-69,55]],[[16474,8416],[1,-7]],[[16474,8416],[68,-79]],[[1684,3336],[0,-2]],[[1684,3336],[-11,-21]],[[1705,3344],[-21,-8]],[[1705,3344],[-9,-7]],[[2424,3630],[0,0]],[[2424,3630],[7,-33]],[[1684,3334],[-11,-19]],[[1696,3337],[-12,-3]],[[1696,3337],[15,-15]],[[16475,8409],[-85,-24]],[[16475,8409],[48,-218]],[[1622,3301],[-2,-3]],[[6118,5031],[-18,12]],[[6118,5031],[0,0]],[[1625,3301],[-3,0]],[[1625,3301],[-5,-5]],[[1620,3298],[-9,-4]],[[1620,3298],[0,-2]],[[6125,5032],[-7,-1]],[[1611,3294],[-31,5]],[[1648,3309],[8,-12]],[[1648,3309],[0,-16]],[[1620,3296],[-9,-2]],[[6457,5151],[-167,530]],[[1733,3339],[-28,5]],[[1673,3315],[-17,-18]],[[1501,3243],[38,48]],[[1640,3297],[-15,4]],[[1640,3297],[-18,4]],[[1742,3338],[-9,1]],[[1742,3338],[1,-3]],[[5010,4608],[-1,-18]],[[5010,4608],[1,-21]],[[1755,3342],[-13,-4]],[[1755,3342],[-12,-7]],[[1743,3335],[-10,4]],[[1656,3297],[-8,-4]],[[1648,3293],[-8,4]],[[20789,9545],[15,-105]],[[20577,9485],[-7,127]],[[20577,9485],[47,0]],[[5491,4775],[8,44]],[[1806,3349],[-51,-7]],[[6130,5010],[-12,21]],[[2431,3597],[0,0]],[[2431,3597],[-15,-134]],[[1812,3349],[-6,0]],[[1812,3349],[-6,0]],[[5009,4590],[2,-16]],[[5009,4590],[2,-3]],[[2441,3598],[-10,-1]],[[5497,4771],[-6,4]],[[5497,4771],[-6,4]],[[5011,4587],[6,-26]],[[1830,3345],[-18,4]],[[5830,4886],[-284,-46]],[[1779,3322],[3,26]],[[1844,3348],[-14,-3]],[[1844,3348],[-1,-6]],[[1887,3362],[-5,-6]],[[1887,3362],[-5,-6]],[[1925,3377],[-2,-5]],[[1925,3377],[-20,-14]],[[1893,3364],[-6,-2]],[[1893,3364],[-13,-11]],[[1843,3342],[-13,3]],[[5011,4574],[8,-24]],[[5011,4574],[6,-13]],[[1857,3347],[-13,1]],[[1918,3371],[-11,-7]],[[1882,3356],[-2,-3]],[[1880,3353],[-6,-5]],[[1880,3353],[-2,-5]],[[1905,3363],[-12,1]],[[1907,3364],[-2,-1]],[[1940,3376],[-15,1]],[[2019,3407],[-43,-40]],[[2019,3407],[0,0]],[[1861,3343],[-18,-1]],[[1861,3343],[-4,4]],[[16090,8241],[-172,238]],[[16090,8241],[-68,-194],[-357,130]],[[1874,3348],[-8,-4]],[[1874,3348],[-2,-2]],[[1864,3344],[-7,3]],[[1864,3344],[-3,-1]],[[1866,3344],[-2,0]],[[1872,3346],[-3,-2]],[[1869,3344],[-3,0]],[[1878,3348],[-5,-3]],[[1873,3345],[-1,1]],[[1873,3345],[-4,-1]],[[1880,3346],[-2,2]],[[2442,3568],[-9,0]],[[5017,4561],[2,-11]],[[1951,3370],[-11,6]],[[1951,3370],[-11,6]],[[6191,4996],[-66,36]],[[1954,3371],[-3,-1]],[[16237,8271],[-147,-30]],[[16237,8271],[109,-278],[-225,-152]],[[1966,3371],[-12,0]],[[1966,3371],[-12,0]],[[5019,4550],[3,-79]],[[1944,3355],[-29,18]],[[1915,3343],[-8,21]],[[1976,3367],[-10,4]],[[1976,3367],[0,0]],[[1979,3354],[-3,13]],[[6216,4975],[-25,21]],[[6216,4975],[-7,-7]],[[1831,3288],[-13,62]],[[6209,4968],[-18,28]],[[6306,4970],[-60,-22]],[[6246,4948],[-30,27]],[[6246,4948],[0,0]],[[6489,5034],[-22,-15]],[[6467,5019],[-161,-49]],[[5026,4472],[-4,-1]],[[5026,4472],[1,-5]],[[5022,4471],[5,-4]],[[2416,3463],[-114,-257]],[[6157,4890],[21,-1]],[[7573,5400],[85,-292]],[[7573,5400],[-78,-261]],[[2423,3463],[-7,0]],[[5027,4467],[-120,-190]],[[4473,4254],[124,-465],[-312,-386],[-48,-584],[76,-143]],[[6178,4889],[31,79]],[[7268,5279],[-143,12]],[[7268,5279],[7,-55]],[[6170,4864],[8,25]],[[2862,3602],[305,-89]],[[2423,3421],[-8,6]],[[6502,4956],[-35,63]],[[17102,8364],[97,98],[182,-309]],[[7275,5224],[-46,-92]],[[7275,5224],[40,-25]],[[6520,4951],[-18,5]],[[6499,4936],[3,20]],[[21221,9437],[161,394]],[[21221,9437],[448,92],[128,232]],[[6404,4894],[-98,76]],[[2311,3330],[14,-92]],[[20547,9254],[30,231]],[[6273,4796],[-27,152]],[[3206,3625],[-25,-153]],[[7229,5132],[-28,2]],[[7229,5132],[-11,-53]],[[4907,4277],[97,-226]],[[4907,4277],[36,-156]],[[2433,3307],[-63,27]],[[2167,3193],[116,-61]],[[2364,3266],[-12,5]],[[2300,3221],[2,-15]],[[2911,3456],[262,-179]],[[2302,3206],[-19,-74]],[[5621,4468],[-124,303]],[[7495,5139],[116,-250]],[[7495,5139],[-27,-433]],[[2284,3168],[1,-12]],[[3167,3513],[4,-4]],[[3167,3513],[4,-4]],[[22255,9528],[-166,80]],[[3171,3509],[-2,-11]],[[3169,3498],[5,-6]],[[3169,3498],[5,-6]],[[4816,4128],[-156,23],[-280,476],[-47,352],[-142,131],[118,328]],[[3174,3492],[7,-20]],[[15681,7758],[-118,124]],[[2283,3132],[0,0]],[[2283,3132],[1,-5]],[[15686,7750],[49,10]],[[6402,4701],[-8,-52]],[[2296,3132],[-12,-5]],[[2284,3127],[0,0]],[[2284,3127],[0,-4]],[[17030,8129],[12,57]],[[17030,8129],[212,-207]],[[2284,3123],[0,0]],[[2284,3123],[-10,-48]],[[2297,3125],[-13,-2]],[[3181,3472],[59,-560]],[[2251,3094],[26,-5]],[[16121,7841],[2,-17]],[[16121,7841],[-197,-97]],[[22176,9446],[-90,77]],[[22176,9446],[79,82]],[[22176,9446],[57,-106]],[[4943,4121],[5,0]],[[4943,4121],[-9,-59]],[[4948,4121],[44,-80]],[[4948,4121],[-7,-200]],[[6299,4616],[21,-59]],[[6394,4649],[-74,-92]],[[2274,3075],[0,0]],[[2274,3075],[20,-54]],[[6441,4664],[-47,-15]],[[16123,7824],[79,-160]],[[16123,7824],[-17,-126]],[[2288,3076],[-14,-1]],[[5741,4377],[-294,-194],[-112,-285],[-309,574]],[[4934,4062],[9,-27]],[[4934,4062],[9,-27]],[[4845,4020],[0,0]],[[2294,3021],[27,-73]],[[6320,4557],[-1,-25]],[[293,2203],[-4,428],[162,348]],[[4705,3948],[0,0]],[[4943,4035],[-47,-75]],[[21147,9103],[74,334]],[[5004,4051],[-12,-10]],[[5004,4051],[-1,-35]],[[4992,4041],[10,-26]],[[6319,4532],[2,-6]],[[6319,4532],[2,-6]],[[6321,4526],[1,-4]],[[22100,9314],[-44,83]],[[22100,9314],[52,73]],[[6322,4522],[1,-5]],[[6322,4522],[1,-5]],[[20808,8989],[121,-19]],[[6323,4517],[53,-139]],[[22233,9340],[141,40]],[[22233,9340],[4,-62]],[[2319,2975],[2,-27]],[[5003,4016],[-1,-1]],[[5003,4016],[8,-18]],[[5002,4015],[-61,-94]],[[16106,7698],[0,0]],[[16106,7698],[-153,5]],[[16106,7698],[54,-129]],[[4896,3960],[-32,89]],[[5011,3998],[6,1]],[[5011,3998],[2,-5]],[[5017,3999],[-4,-6]],[[5017,3999],[-15,-41]],[[5013,3993],[-11,-35]],[[2321,2948],[1,-6]],[[16867,7894],[163,235]],[[16867,7894],[168,-283]],[[2322,2942],[0,0]],[[2322,2942],[3,-8]],[[2322,2942],[3,-8]],[[20929,8970],[20,573]],[[2316,2934],[6,8]],[[6473,4519],[-68,-142]],[[2325,2934],[3,-27]],[[22237,9278],[129,-31]],[[22237,9278],[1,-131]],[[6259,4428],[6,-34]],[[5002,3958],[-87,-86]],[[4916,3915],[-20,45]],[[2328,2907],[12,-33]],[[2328,2907],[12,-33]],[[4941,3921],[-25,-6]],[[21770,9134],[53,-117]],[[6265,4394],[4,-10]],[[6265,4394],[4,-10]],[[5908,4259],[11,-113]],[[6269,4384],[2,-11]],[[6295,4390],[-22,-15]],[[2340,2874],[3,-8]],[[2365,2884],[-22,-1]],[[4915,3872],[-13,4]],[[6273,4375],[-2,-2]],[[6271,4373],[-47,-88]],[[2343,2866],[2,-1]],[[2343,2866],[10,-4]],[[2345,2865],[6,0]],[[2345,2865],[6,0]],[[6518,4456],[-57,-150]],[[6292,4373],[-19,2]],[[2351,2865],[2,-3]],[[2353,2862],[18,-27]],[[2902,3077],[64,-260]],[[20978,8890],[-49,80]],[[9248,5409],[-205,-214],[-73,-423]],[[9248,5409],[427,-17],[25,378]],[[6008,4252],[-1,-42]],[[2685,2974],[63,-227]],[[6376,4378],[26,0]],[[6463,4406],[-15,-82]],[[5955,4217],[13,-54]],[[6402,4378],[-26,0]],[[6402,4378],[3,-1]],[[6405,4377],[43,-53]],[[2371,2835],[3,-10]],[[2371,2835],[12,-16]],[[20146,8642],[32,-381],[-211,-8],[160,-723],[350,-80],[0,-301]],[[2374,2825],[8,-5]],[[2374,2825],[8,-5]],[[2492,2868],[-107,-52]],[[2382,2820],[1,-1]],[[2383,2819],[2,-3]],[[6224,4285],[-10,-37]],[[2385,2816],[64,-101]],[[6082,4232],[8,-27]],[[2813,2984],[37,-200]],[[22238,9147],[89,-87]],[[22238,9147],[29,-176]],[[5902,4159],[-13,-41]],[[21831,9038],[78,294]],[[17785,7973],[0,0]],[[17785,7973],[-352,-30]],[[17785,7973],[281,-494],[-13,-583]],[[5919,4146],[0,0]],[[5919,4146],[-30,-28]],[[7468,4706],[32,-28]],[[7468,4706],[-5,-28]],[[6909,4505],[-53,-254]],[[5936,4149],[-17,-3]],[[21823,9017],[277,297]],[[6214,4248],[20,14]],[[6214,4248],[-82,-58]],[[3184,3094],[4,-9]],[[6448,4324],[13,-18]],[[5889,4118],[0,0]],[[5889,4118],[-488,-274]],[[6142,4209],[-10,-19]],[[6284,4258],[-60,27]],[[7463,4678],[-8,7]],[[7463,4678],[-7,-29]],[[6132,4190],[-196,-41]],[[6132,4190],[0,0]],[[6461,4306],[12,-31]],[[5919,4104],[-15,21]],[[7456,4649],[-4,1]],[[7456,4649],[-25,-94]],[[6239,4201],[-26,24]],[[3200,3046],[3,-18]],[[15802,7344],[30,2]],[[6480,4283],[-7,-8]],[[15832,7346],[44,31]],[[15832,7346],[140,150]],[[5978,4095],[-42,54]],[[6473,4275],[8,-21]],[[6455,4257],[19,-29]],[[2449,2718],[3,-7]],[[6481,4254],[1,-19]],[[6481,4254],[4,-7]],[[2449,2715],[3,-4]],[[6169,4135],[-5,47]],[[2452,2711],[11,-25]],[[5384,3843],[-3,-10]],[[5384,3843],[-3,-10]],[[6212,4149],[-19,38]],[[6519,4262],[-34,-15]],[[6485,4247],[1,-12]],[[20924,8695],[-103,92]],[[5401,3844],[-17,-1]],[[5381,3833],[-60,-148]],[[3204,2998],[-3,-6]],[[6482,4235],[-1,-5]],[[6482,4235],[4,0]],[[6486,4235],[-5,-5]],[[6481,4230],[-7,-2]],[[6474,4228],[-5,-37]],[[3703,3176],[-272,-26],[-153,-329]],[[2463,2686],[4,-5]],[[2463,2686],[4,-5]],[[2467,2681],[10,-124]],[[17035,7611],[251,139]],[[17035,7611],[24,-231]],[[6469,4191],[-3,-20]],[[6469,4191],[-3,-20]],[[21728,8842],[95,175]],[[21728,8842],[92,4]],[[6466,4171],[-6,-3]],[[6460,4168],[-3,-15]],[[6460,4168],[-3,-15]],[[2473,2644],[2,-20]],[[21820,8846],[263,-35]],[[21820,8846],[68,-453]],[[2748,2747],[-257,-237]],[[2850,2784],[-102,-37]],[[6457,4153],[-10,-45]],[[2966,2817],[-116,-33]],[[17496,7693],[-113,98]],[[2477,2619],[-2,-16]],[[2693,2700],[-39,49]],[[3240,2912],[-5,22]],[[3240,2912],[38,-91]],[[6807,4249],[22,-48]],[[5340,3708],[5,-1]],[[5340,3708],[2,-3]],[[5345,3707],[0,-4]],[[5342,3705],[3,2]],[[5342,3705],[3,-2]],[[5336,3703],[4,5]],[[5336,3703],[2,0]],[[5338,3703],[4,2]],[[5345,3703],[-77,-253]],[[6447,4108],[8,-11]],[[6447,4108],[7,-12]],[[2475,2586],[6,-32]],[[6856,4251],[-27,-50]],[[5324,3687],[12,16]],[[5324,3687],[14,16]],[[5321,3685],[3,2]],[[5321,3685],[3,2]],[[6923,4272],[-67,-21]],[[5541,3764],[6,34]],[[16210,7288],[-2,-30]],[[6455,4097],[-1,-1]],[[6455,4097],[2,-6]],[[6454,4096],[3,-5]],[[5590,3775],[-17,28]],[[3215,2866],[39,5]],[[6457,4091],[0,-1]],[[6457,4090],[-6,-7]],[[6457,4090],[-6,-7]],[[6451,4083],[1,2]],[[6451,4083],[-17,-57]],[[6435,4071],[-1,-45]],[[2477,2557],[-6,-13]],[[3260,2865],[7,0]],[[2481,2554],[10,-44]],[[7167,4328],[68,-125]],[[2481,2550],[-10,-6]],[[16280,7276],[90,203],[271,128],[226,287]],[[16280,7276],[190,-273]],[[2471,2544],[0,0]],[[2471,2544],[4,-26]],[[6829,4201],[-20,-37]],[[6965,4247],[-156,-83]],[[16261,7261],[19,15]],[[21621,8684],[107,158]],[[21621,8684],[125,-287]],[[3288,2844],[12,-17]],[[2475,2518],[-872,-472],[-62,-181]],[[2475,2518],[0,0]],[[6809,4164],[-12,-25]],[[6434,4026],[-1,-7]],[[6433,4019],[-3,-31]],[[6433,4019],[-3,-31]],[[6728,4126],[-16,-40]],[[2491,2510],[-16,8]],[[3278,2821],[-312,-4]],[[3300,2827],[-8,-8]],[[6797,4139],[-85,-53]],[[6821,4146],[-24,-7]],[[5789,3766],[-56,-37]],[[21337,8566],[29,250]],[[21337,8566],[284,118]],[[6430,3988],[-17,-16]],[[7297,4302],[-62,-99]],[[5733,3729],[-332,115]],[[6712,4086],[-12,-22]],[[6413,3972],[-1,-12]],[[6413,3972],[-1,-12]],[[6721,4080],[-21,-16]],[[17311,7482],[288,-5]],[[6412,3960],[-16,-15]],[[6412,3960],[-16,-15]],[[6700,4064],[-65,-59]],[[5737,3703],[-4,26]],[[6396,3945],[-10,-33]],[[6641,4034],[-6,-29]],[[6635,4005],[-41,-50]],[[6386,3912],[-166,-322]],[[14976,6765],[263,129],[203,-313],[251,92]],[[6431,3913],[-45,-1]],[[7235,4203],[-5,-14]],[[7235,4203],[-5,-14]],[[6988,4110],[12,-166]],[[6534,3942],[2,0]],[[6534,3942],[-5,-3]],[[6534,3942],[-1,-2]],[[6536,3942],[-3,-2]],[[6451,3910],[-1,-1]],[[6529,3939],[-32,-20]],[[6533,3940],[-4,-1]],[[6450,3909],[-19,4]],[[7167,4168],[29,-42]],[[6452,3908],[-2,1]],[[6452,3908],[-1,2]],[[6465,3912],[-5,-3]],[[6465,3912],[-6,-4]],[[7230,4189],[-10,-28]],[[7230,4189],[-15,-38]],[[6460,3909],[-9,1]],[[6460,3909],[-1,-1]],[[6459,3908],[-7,0]],[[6483,3916],[-12,-6]],[[6594,3955],[-58,-13]],[[6471,3910],[-6,2]],[[6497,3919],[-14,-3]],[[6497,3919],[-14,-3]],[[6603,3950],[-9,5]],[[17599,7477],[-103,216]],[[5268,3450],[2,-3]],[[6430,3881],[1,32]],[[6470,3894],[1,16]],[[5270,3447],[4,-7]],[[5270,3447],[4,-7]],[[7220,4161],[-5,-10]],[[5274,3440],[-40,-61]],[[8970,4772],[-166,-122]],[[8970,4772],[152,-491]],[[7215,4151],[-16,-23]],[[7215,4151],[-16,-23]],[[7237,4154],[-17,7]],[[5109,3358],[-42,-41]],[[7199,4128],[-3,-2]],[[7199,4128],[-3,-6]],[[7196,4126],[0,-4]],[[4943,3293],[-6,-48]],[[4945,3293],[-2,0]],[[6093,3722],[-22,-346]],[[4949,3293],[-4,0]],[[4949,3293],[-3,-2]],[[7196,4122],[-4,-7]],[[7196,4122],[-6,-7]],[[4946,3291],[-3,2]],[[4946,3291],[-1,2]],[[4962,3295],[-13,-2]],[[4962,3295],[0,0]],[[4962,3295],[0,0]],[[7192,4115],[-2,0]],[[7192,4115],[-6,-7]],[[7190,4115],[-6,-8]],[[7184,4107],[-3,-6]],[[7186,4108],[-2,-1]],[[7186,4108],[-6,-11]],[[5116,3345],[-7,13]],[[5116,3345],[-7,13]],[[4749,3204],[-60,256],[227,455]],[[4749,3204],[82,-13]],[[4986,3293],[-24,2]],[[4988,3293],[-2,0]],[[4988,3293],[-2,0]],[[5018,3304],[-9,-6]],[[5018,3304],[-9,-6]],[[7181,4101],[-1,-4]],[[7181,4101],[-6,-6]],[[5020,3303],[-2,1]],[[5020,3303],[-9,-43]],[[5009,3298],[-21,-5]],[[7180,4097],[-3,-1]],[[7175,4095],[2,1]],[[7175,4095],[-9,-9]],[[5052,3312],[-32,-9]],[[7177,4096],[-8,-8]],[[5067,3317],[-15,-5]],[[5067,3317],[-15,-5]],[[5234,3379],[-2,-22]],[[5234,3379],[-2,-22]],[[7169,4088],[-3,-2]],[[7169,4088],[-5,-6]],[[7166,4086],[-13,-9]],[[7164,4082],[-11,-5]],[[7164,4082],[-13,-13]],[[7153,4077],[-2,-8]],[[7151,4069],[-1,-4]],[[5191,3346],[-75,-1]],[[7150,4065],[-3,-11]],[[7150,4065],[-6,-16]],[[8804,4650],[-231,91]],[[8804,4650],[-29,-49]],[[5232,3357],[-41,-11]],[[4943,3248],[-3,-2]],[[4943,3248],[-3,-4]],[[4937,3245],[-1,-4]],[[4940,3246],[-3,-1]],[[4940,3246],[0,-2]],[[4940,3244],[-4,-3]],[[4936,3241],[0,0]],[[4936,3241],[-79,-31]],[[4857,3210],[-10,-5]],[[4857,3210],[-10,-5]],[[4847,3205],[-16,-14]],[[7147,4054],[-3,-5]],[[7147,4054],[-16,-22]],[[16530,7083],[-60,-80]],[[7144,4049],[-31,-24]],[[5011,3260],[-68,-12]],[[5011,3260],[0,0]],[[4831,3191],[-66,-150]],[[7081,4016],[-6,-5]],[[7081,4016],[-6,-5]],[[7131,4032],[-17,-9]],[[7075,4011],[-34,-20]],[[7113,4025],[-8,-4]],[[7105,4021],[-24,-5]],[[7114,4023],[-1,2]],[[7114,4023],[-9,-2]],[[7041,3991],[-23,-16]],[[7041,3991],[-23,-16]],[[8775,4601],[-112,-40]],[[8775,4601],[-121,-137]],[[7018,3975],[-10,-17]],[[6783,3880],[-3,-137]],[[7008,3958],[-8,-14]],[[7008,3958],[-26,-50]],[[7152,4003],[-21,29]],[[7000,3944],[-18,-36]],[[5536,3399],[-268,51]],[[16470,7003],[20,-60]],[[4727,3084],[22,120]],[[4727,3084],[27,-36]],[[16640,7042],[-116,-117]],[[4718,3071],[9,13]],[[4718,3071],[0,0]],[[6982,3908],[-19,-78]],[[21306,8262],[31,304]],[[21306,8262],[380,-148]],[[4754,3048],[-3,-5]],[[4754,3048],[11,-7]],[[4751,3043],[-15,-24]],[[6220,3590],[6,-18]],[[6220,3590],[6,-18]],[[4765,3041],[-14,2]],[[16490,6943],[34,-18]],[[16490,6943],[-4,-104]],[[14531,6360],[211,312],[234,93]],[[14531,6360],[36,-208]],[[4736,3019],[-6,-12]],[[4736,3019],[-24,-40]],[[16133,6832],[57,-65]],[[6226,3572],[2,-80]],[[5779,3402],[105,-107]],[[4730,3007],[-2,-5]],[[4730,3007],[-1,-5]],[[4728,3002],[1,0]],[[4729,3002],[-3,-15]],[[6963,3830],[-26,-43]],[[6552,3679],[30,-36]],[[16524,6925],[63,-37]],[[4726,2987],[-7,-3]],[[4719,2984],[9,18]],[[4719,2984],[-7,-5]],[[4712,2979],[-235,-86],[-55,442],[228,387],[-135,-487],[203,-164]],[[6780,3743],[-36,-25]],[[6802,3751],[-5,-5]],[[6802,3751],[-5,-5]],[[6797,3746],[-17,-3]],[[6586,3664],[-4,-21]],[[6931,3787],[-19,-21]],[[6744,3718],[-10,-5]],[[6744,3718],[-10,-5]],[[6734,3713],[-29,-42]],[[6007,3446],[35,-71]],[[5871,3396],[70,-80]],[[6937,3787],[-6,0]],[[6937,3787],[-6,0]],[[6912,3766],[-110,-15]],[[6582,3643],[17,-45]],[[16587,6888],[54,16]],[[6705,3671],[-2,-5]],[[6703,3666],[-57,-35]],[[6228,3492],[8,-17]],[[6228,3492],[8,-17]],[[6710,3667],[-5,4]],[[6710,3667],[-7,-1]],[[6330,3527],[-16,-63]],[[16486,6839],[-73,33]],[[16486,6839],[-61,-107]],[[5602,3248],[-179,-101],[-232,199]],[[6646,3631],[-26,-30]],[[6646,3631],[-26,-30]],[[6236,3475],[35,7]],[[14189,6145],[-213,-291]],[[6271,3482],[6,-4]],[[6271,3482],[2,-6]],[[6609,3603],[-10,-5]],[[4294,2735],[0,0]],[[6599,3598],[-3,-11]],[[6277,3478],[6,-9]],[[6277,3478],[0,-4]],[[6273,3476],[2,-5]],[[6273,3476],[2,-5]],[[6620,3601],[-3,-1]],[[6588,3590],[-4,-4]],[[6617,3600],[-8,3]],[[6617,3600],[-8,3]],[[6584,3586],[-2,-6]],[[6584,3586],[-2,-6]],[[6277,3474],[6,-5]],[[6277,3474],[1,-6]],[[6275,3471],[3,-3]],[[6596,3587],[-8,3]],[[6596,3587],[-8,3]],[[6278,3468],[9,-5]],[[6582,3580],[-5,-121]],[[6283,3469],[4,-6]],[[5649,3229],[-47,19]],[[6287,3463],[22,2]],[[6287,3463],[27,-25]],[[5826,3288],[-7,-12]],[[5826,3288],[-7,-12]],[[7187,3784],[-224,46]],[[6309,3465],[5,-1]],[[6309,3465],[5,-27]],[[6071,3376],[-130,-60]],[[20631,7913],[-77,156]],[[6314,3464],[21,-62]],[[5872,3297],[2,-10]],[[5872,3297],[2,-10]],[[5791,3267],[-10,-6]],[[4455,2762],[114,-69],[-249,-333]],[[5819,3276],[-28,-9]],[[5781,3261],[-3,-9]],[[5781,3261],[-3,-9]],[[5884,3295],[-12,2]],[[5941,3316],[-24,-13]],[[16993,6925],[-35,-242]],[[21272,8063],[34,199]],[[21272,8063],[272,-59]],[[5778,3252],[-129,-23]],[[5917,3303],[6,-7]],[[5917,3303],[-2,-12]],[[5874,3287],[-5,-5]],[[5869,3282],[-5,-4]],[[5869,3282],[-5,-4]],[[5864,3278],[-38,10]],[[5915,3291],[0,0]],[[5915,3291],[-31,4]],[[6314,3438],[20,-38]],[[5664,3188],[-15,41]],[[16425,6732],[3,-139]],[[16594,6779],[-7,109]],[[4812,2855],[-86,132]],[[4797,2848],[0,0]],[[4802,2847],[0,0]],[[5771,3211],[20,56]],[[5896,3256],[1,38]],[[4812,2848],[0,7]],[[5921,3263],[-6,28]],[[16407,6709],[18,23]],[[5946,3268],[-31,25]],[[4822,2842],[-10,13]],[[4822,2842],[9,-8]],[[6335,3402],[-1,-2]],[[6335,3402],[4,-5]],[[4823,2836],[-1,6]],[[4823,2836],[-11,12]],[[6334,3400],[5,-3]],[[4827,2834],[-4,2]],[[6045,3289],[-28,62]],[[6339,3397],[24,-113]],[[4831,2834],[-4,0]],[[4831,2834],[26,-26]],[[4818,2827],[-6,21]],[[4792,2812],[0,0]],[[4824,2822],[-6,5]],[[4824,2822],[-1,14]],[[5212,2960],[-201,300]],[[4807,2800],[14,1]],[[4830,2809],[-6,13]],[[4830,2809],[-3,25]],[[6577,3459],[-3,-8]],[[6577,3459],[-3,-8]],[[6570,3454],[7,5]],[[6570,3454],[-9,-72]],[[4821,2801],[-6,-6]],[[4821,2801],[10,-5]],[[4796,2791],[11,9]],[[4831,2803],[-1,6]],[[6574,3451],[-4,3]],[[4815,2795],[-8,5]],[[4786,2784],[10,7]],[[4830,2798],[-12,29]],[[4830,2798],[1,5]],[[4857,2808],[-5,-21]],[[4857,2808],[7,-17]],[[4831,2796],[-1,2]],[[21256,7955],[16,108]],[[21256,7955],[347,-326]],[[4849,2793],[-19,16]],[[4848,2791],[-17,12]],[[4848,2791],[1,2]],[[4852,2787],[-3,6]],[[4864,2791],[8,-15]],[[6839,3524],[-129,143]],[[4823,2773],[-8,22]],[[4823,2773],[-27,18]],[[4855,2773],[-7,18]],[[4855,2773],[-3,14]],[[4830,2763],[-44,21]],[[4830,2763],[-7,10]],[[4872,2776],[-8,15]],[[4872,2776],[3,-24]],[[5971,3187],[-64,-198]],[[4834,2757],[-4,6]],[[4834,2757],[-3,39]],[[16028,6502],[-129,-359]],[[16889,6750],[22,-44]],[[4819,2742],[-33,42]],[[14288,5979],[-85,-50]],[[14288,5979],[-45,108]],[[6899,3511],[-60,13]],[[6561,3382],[-5,-87]],[[4875,2752],[-20,21]],[[16428,6593],[128,86]],[[16428,6593],[9,-101]],[[9122,4281],[-68,-188]],[[9122,4281],[214,-414]],[[4864,2736],[-30,21]],[[4864,2736],[-45,6]],[[14203,5929],[-98,-66]],[[14203,5929],[-55,-184]],[[7090,3557],[-178,209]],[[6191,3228],[-120,148]],[[6363,3284],[5,-26]],[[7107,3555],[-17,2]],[[16911,6706],[-77,-32]],[[6386,3280],[-2,-1]],[[6386,3280],[-4,-5]],[[6384,3279],[-21,5]],[[6384,3279],[-2,-4]],[[7088,3533],[2,24]],[[6382,3275],[-14,-17]],[[6602,3353],[-41,29]],[[6368,3258],[1,-11]],[[4883,2697],[-19,39]],[[4883,2697],[-8,55]],[[8689,4080],[-308,207]],[[8689,4080],[-39,157]],[[6369,3247],[7,-15]],[[6369,3247],[7,-15]],[[16958,6683],[-47,23]],[[16958,6683],[-58,-95]],[[6576,3309],[-20,-14]],[[14335,5907],[-47,72]],[[14335,5907],[65,434],[131,19]],[[6376,3232],[-1,-56]],[[6556,3295],[-170,-15]],[[5162,2767],[-1,-39]],[[16326,6466],[-264,191]],[[6901,3392],[-62,132]],[[15164,6120],[-188,645]],[[15164,6120],[-13,-539]],[[5161,2728],[-11,-37]],[[5161,2728],[-11,-37]],[[6375,3176],[12,-6]],[[6375,3176],[7,-13]],[[6379,3171],[-4,5]],[[6379,3171],[8,-1]],[[6379,3171],[4,-6]],[[4564,2490],[0,0]],[[6387,3170],[4,0]],[[8533,3940],[-29,-11]],[[8533,3940],[-123,-218]],[[6391,3170],[2,-4]],[[6391,3170],[3,-18]],[[6383,3165],[-1,-2]],[[6383,3165],[6,-7]],[[5907,2989],[-304,-81],[-1,340]],[[6382,3163],[5,-10]],[[8639,3972],[-106,-32]],[[8639,3972],[50,108]],[[6393,3166],[-4,-8]],[[6393,3166],[1,-14]],[[4625,2503],[-12,-13]],[[4656,2514],[7,-7]],[[4656,2514],[7,-7]],[[4674,2517],[145,225]],[[4633,2502],[0,0]],[[4888,2598],[-5,99]],[[6389,3158],[-2,-5]],[[4636,2500],[0,0]],[[5933,2988],[-26,1]],[[4632,2498],[0,0]],[[4613,2490],[12,13]],[[4613,2490],[12,13]],[[4650,2504],[8,-1]],[[4650,2504],[8,-1]],[[4650,2504],[-2,-9]],[[4663,2507],[-7,7]],[[6387,3153],[1,-2]],[[4637,2496],[0,0]],[[5150,2691],[-59,-341]],[[4634,2495],[0,0]],[[6388,3151],[1,-3]],[[6388,3151],[-6,-21]],[[18053,6896],[41,-161]],[[4658,2503],[-3,-13]],[[4669,2506],[0,0]],[[6394,3152],[-5,-4]],[[6389,3148],[-7,-18]],[[4648,2495],[7,-5]],[[4648,2495],[7,-5]],[[4889,2587],[-1,11]],[[4889,2587],[-1,11]],[[9054,4093],[-304,-147]],[[9054,4093],[-43,-436]],[[4593,2461],[0,0]],[[6382,3130],[25,-96]],[[4646,2479],[0,0]],[[15237,6070],[-73,50]],[[15237,6070],[221,2]],[[15237,6070],[207,-240]],[[4613,2463],[61,54]],[[4633,2458],[0,0]],[[4646,2456],[0,0]],[[8750,3946],[-111,26]],[[8750,3946],[-222,-353]],[[4888,2506],[1,81]],[[4888,2506],[-214,11]],[[15458,6072],[6,101]],[[15458,6072],[20,-1]],[[6835,3223],[-80,-152]],[[15478,6071],[35,24]],[[15478,6071],[35,-59]],[[7226,3358],[-110,-318]],[[14368,5730],[-64,-28]],[[14368,5730],[-33,177]],[[17664,6685],[32,651],[-97,141]],[[17664,6685],[389,211]],[[14304,5702],[-69,-42]],[[14304,5702],[-124,-379],[-190,83]],[[4504,2324],[0,0]],[[6407,3034],[2,-58]],[[14235,5660],[-250,-204]],[[14235,5660],[-203,-204]],[[15899,6143],[517,-163]],[[15899,6143],[-177,-829]],[[6439,3023],[-32,11]],[[8410,3722],[-21,-1]],[[8410,3722],[-70,-150]],[[6717,3109],[8,-47]],[[4512,2267],[0,0]],[[6409,2976],[-3,-12]],[[6409,2976],[-3,-12]],[[16713,6336],[-213,-141]],[[16713,6336],[82,-61]],[[6406,2964],[-32,-108]],[[6725,3062],[-8,-15]],[[6755,3071],[-5,-2]],[[6750,3069],[-25,-7]],[[6750,3069],[-33,-22]],[[21538,7591],[-25,1]],[[6717,3047],[-157,-318]],[[17552,6533],[112,152]],[[17552,6533],[209,-199],[-130,-431],[101,-358]],[[6760,3059],[-5,12]],[[4348,2149],[248,1]],[[7136,3185],[-20,-145]],[[7073,3142],[7,-43]],[[16795,6275],[-294,-360]],[[8340,3572],[-80,8]],[[8340,3572],[-52,-83]],[[17500,6463],[52,70]],[[17500,6463],[-4,-160]],[[5701,2609],[109,247]],[[6374,2856],[-5,-14]],[[6374,2856],[-5,-14]],[[4685,2221],[-9,-6]],[[4676,2215],[-63,248]],[[6369,2842],[2,-12]],[[7080,3099],[0,-6]],[[7080,3099],[0,-6]],[[5599,2550],[-40,-279]],[[7080,3093],[16,-66]],[[6371,2830],[-5,-18]],[[6371,2830],[-5,-16]],[[5091,2350],[5,-3]],[[5091,2350],[5,-3]],[[5096,2347],[-13,-97]],[[17077,6305],[59,-399]],[[17077,6305],[423,158]],[[6376,2820],[-5,10]],[[6376,2820],[-10,-6]],[[6376,2820],[-10,-9]],[[4596,2150],[17,313]],[[4596,2150],[0,0]],[[6366,2814],[0,-2]],[[6366,2812],[0,-1]],[[6366,2811],[-1,-27]],[[9336,3867],[8,-6]],[[9336,3867],[14,-132]],[[20984,7339],[272,616]],[[20984,7339],[203,-96]],[[8288,3489],[15,-26]],[[8288,3489],[-72,-65]],[[4668,2156],[8,59]],[[4668,2156],[123,-373]],[[6365,2784],[-18,-32]],[[6365,2784],[-18,-32]],[[17054,6262],[-259,13]],[[17054,6262],[23,43]],[[7116,3040],[-20,-13]],[[7096,3027],[-44,-121]],[[6347,2752],[12,-25]],[[6208,2694],[-251,-324]],[[20478,7146],[141,-112]],[[20473,7141],[-100,-547]],[[6359,2727],[14,-36]],[[6359,2727],[-20,-26]],[[5083,2250],[-195,256]],[[5401,2363],[-14,-65]],[[5115,2249],[-32,1]],[[9011,3657],[-79,-85]],[[9011,3657],[128,-456]],[[6339,2701],[-8,-8]],[[6339,2701],[-8,-8]],[[6331,2693],[-36,-16]],[[5131,2244],[-16,5]],[[5137,2244],[-6,0]],[[5137,2244],[-22,5]],[[6295,2677],[-6,-93]],[[5139,2245],[-2,-1]],[[5152,2247],[-13,-2]],[[5152,2247],[-3,-10]],[[17496,6303],[-155,-214]],[[17496,6303],[-14,-368]],[[5172,2250],[-20,-3]],[[5172,2250],[-23,-13]],[[5138,2234],[-7,10]],[[5138,2234],[1,11]],[[5149,2237],[-8,-4]],[[5141,2233],[-3,1]],[[19815,6925],[-82,-491],[-214,-534]],[[6343,2682],[-8,-5]],[[6343,2682],[-4,-8]],[[6335,2677],[-40,0]],[[6373,2691],[-20,-10]],[[6353,2681],[-10,1]],[[6353,2681],[-14,-7]],[[6339,2674],[-4,3]],[[6493,2726],[-29,-26]],[[5141,2220],[0,13]],[[6436,2702],[-63,-11]],[[8714,3517],[-182,-26]],[[8714,3517],[-112,-215]],[[9350,3735],[126,-218]],[[9350,3735],[27,-15]],[[6464,2700],[-14,-17]],[[5402,2304],[-15,-6]],[[5387,2298],[-61,-24]],[[5326,2274],[-37,-15]],[[5326,2274],[-24,-32]],[[5289,2259],[-58,-22]],[[5231,2237],[-59,13]],[[5231,2237],[-62,-55]],[[6560,2729],[-39,-41]],[[14473,5381],[-105,349]],[[14473,5381],[211,227]],[[7052,2906],[-2,-23]],[[7052,2906],[-2,-23]],[[8932,3572],[-218,-55]],[[8932,3572],[-215,-403]],[[6450,2683],[-14,19]],[[6450,2683],[-14,19]],[[6484,2692],[-20,8]],[[6489,2692],[-5,0]],[[6489,2692],[-5,0]],[[6496,2691],[-7,1]],[[5302,2242],[-13,17]],[[5302,2242],[-10,-29]],[[6510,2687],[-14,4]],[[6510,2687],[-14,4]],[[5893,2458],[-20,-73]],[[7050,2883],[-40,-153]],[[6521,2688],[-11,-1]],[[5169,2182],[-28,38]],[[5169,2182],[-28,38]],[[6525,2687],[-4,1]],[[5811,2418],[8,-59]],[[6585,2699],[0,0]],[[6585,2699],[-48,-22]],[[6585,2699],[-17,-8]],[[6585,2699],[0,0]],[[6585,2699],[-25,30]],[[6537,2677],[-12,10]],[[6537,2677],[-12,10]],[[6592,2697],[-7,2]],[[6289,2584],[-6,-16]],[[6289,2584],[-6,-16]],[[5473,2275],[-71,29]],[[5948,2445],[-5,-57]],[[6283,2568],[-95,-108]],[[6612,2688],[-20,9]],[[5687,2344],[-6,-53]],[[20619,7034],[365,305]],[[20619,7034],[33,-81]],[[5411,2234],[-9,70]],[[5473,2251],[0,24]],[[5473,2251],[0,24]],[[6585,2659],[7,38]],[[7045,2822],[-13,-6]],[[4542,1887],[126,269]],[[5559,2271],[-12,-35]],[[6844,2744],[3,-22]],[[5873,2385],[-54,-26]],[[5480,2237],[-7,14]],[[5480,2237],[-69,-3]],[[5482,2237],[-2,0]],[[5819,2359],[-66,-47]],[[5580,2265],[-21,6]],[[5580,2265],[-5,-37]],[[6743,2695],[0,-27]],[[5427,2205],[-16,29]],[[5530,2239],[-48,-2]],[[5530,2239],[-12,-14]],[[6847,2722],[-104,-54]],[[5681,2291],[0,0]],[[5681,2291],[-101,-26]],[[6627,2641],[-15,47]],[[5943,2388],[-52,-20]],[[14457,5264],[16,117]],[[14457,5264],[12,-57]],[[5891,2368],[-18,17]],[[5547,2236],[-17,3]],[[5518,2225],[-36,12]],[[5753,2312],[-72,-21]],[[6743,2668],[-14,-14]],[[5550,2223],[-3,13]],[[5550,2223],[-32,2]],[[6188,2460],[-19,-50]],[[5575,2228],[-25,-5]],[[5957,2370],[-14,18]],[[6729,2654],[-117,34]],[[4617,1845],[-87,-272]],[[21114,7072],[115,-143]],[[6239,2454],[-51,6]],[[7010,2730],[-163,-8]],[[6169,2410],[-212,-40]],[[14469,5207],[32,-75]],[[14469,5207],[57,-388],[181,-192]],[[7073,2710],[-63,20]],[[5593,2163],[-18,65]],[[6171,2355],[-2,55]],[[4848,1857],[1,-3]],[[4848,1857],[1,-3]],[[4849,1854],[4,-22]],[[5777,2203],[-24,109]],[[4853,1832],[-62,-49]],[[17136,5906],[186,145]],[[14501,5132],[17,1]],[[14501,5132],[40,-104]],[[14371,5090],[-306,-139]],[[14371,5090],[86,174]],[[6789,2539],[-60,115]],[[4791,1783],[14,1]],[[6053,2254],[-162,114]],[[7719,2861],[-227,-239]],[[7507,2782],[-15,-160]],[[8539,3126],[-6,12]],[[8539,3126],[1,227]],[[8717,3169],[-89,-137]],[[8717,3169],[159,-294],[-11,-265]],[[20069,6629],[-52,217]],[[20069,6629],[-176,-240]],[[6763,2463],[26,76]],[[14541,5028],[191,-282]],[[14541,5028],[126,-230]],[[6841,2454],[-52,85]],[[7284,2610],[212,-65]],[[8557,3055],[-18,71]],[[8557,3055],[-285,-73],[-62,286]],[[6917,2465],[-5,-44]],[[21115,6831],[18,-11]],[[6912,2421],[-71,33]],[[8628,3032],[-71,23]],[[8628,3032],[-102,-228]],[[5562,1913],[2,-29]],[[7492,2622],[0,0]],[[7492,2622],[4,-77]],[[19444,6351],[-168,-297],[97,-230]],[[20373,6594],[-304,35]],[[20373,6594],[-9,-336]],[[5866,2016],[-43,-26]],[[5866,2016],[0,0]],[[5551,1893],[11,-16]],[[5825,1996],[-2,-6]],[[5901,2021],[-35,-5]],[[5823,1990],[-9,-13]],[[5823,1990],[0,0]],[[5868,2006],[-2,10]],[[5802,1977],[-248,-121]],[[5902,2010],[-1,11]],[[5814,1977],[-12,0]],[[15353,5175],[102,-60]],[[5815,1964],[-1,13]],[[5554,1856],[-3,-4]],[[5554,1856],[-3,-4]],[[5551,1852],[-5,-78]],[[16836,5580],[218,682]],[[5809,1941],[-7,36]],[[6005,2010],[-35,-35]],[[5529,1824],[14,3]],[[6957,2353],[-45,68]],[[7496,2545],[0,0]],[[7496,2545],[1,-216]],[[15585,5192],[-130,-77]],[[6964,2348],[-7,5]],[[6964,2348],[-7,5]],[[16833,5550],[-40,36]],[[16833,5550],[3,30]],[[5970,1975],[0,0]],[[5970,1975],[-69,46]],[[5960,1967],[6,9]],[[5532,1794],[12,-15]],[[7647,2567],[61,-280]],[[5993,1959],[-16,3]],[[20944,6632],[47,-43]],[[5533,1783],[11,-4]],[[5544,1779],[2,-5]],[[5546,1774],[0,0]],[[5546,1774],[-5,-16]],[[15319,5053],[-272,-318]],[[8356,2785],[-17,-11]],[[8356,2785],[-188,-163]],[[5541,1758],[4,-10]],[[5541,1758],[4,-10]],[[5988,1922],[-9,-2]],[[5545,1748],[0,-16]],[[5993,1910],[-23,65]],[[5993,1910],[36,-28]],[[5564,1746],[-19,-14]],[[5545,1732],[0,-56]],[[6087,1933],[-9,-23]],[[21631,6742],[-69,53]],[[7885,2583],[-70,-254]],[[8425,2775],[-69,10]],[[8425,2775],[-8,-12]],[[5385,1663],[-140,269],[-274,95],[-123,-170]],[[5556,1724],[-10,-3]],[[8526,2804],[73,-171]],[[8526,2804],[-42,-51]],[[6078,1910],[44,-18]],[[6029,1882],[0,0]],[[6029,1882],[49,28]],[[6030,1876],[-1,6]],[[15603,5063],[-148,52]],[[6311,1970],[14,47]],[[8484,2753],[-59,22]],[[8484,2753],[8,-49]],[[7098,2253],[-134,95]],[[5545,1676],[-20,-45]],[[6122,1892],[31,2]],[[6825,2150],[16,304]],[[7105,2248],[-7,5]],[[7105,2248],[-7,5]],[[7162,2267],[2,-33]],[[20189,6317],[-35,10]],[[20189,6317],[-116,-95]],[[5565,1674],[-20,2]],[[16198,5217],[-1,16]],[[16198,5217],[-11,-7]],[[20837,6480],[138,-247]],[[20266,6331],[-77,-14]],[[20266,6331],[-86,-174]],[[19921,6224],[-104,60]],[[19921,6224],[-90,-42]],[[6105,1849],[17,43]],[[5525,1631],[-41,-159]],[[7164,2234],[-17,-10]],[[7147,2224],[-42,24]],[[15691,5027],[-290,-137]],[[5898,1752],[63,-13]],[[20073,6222],[-152,2]],[[20073,6222],[-273,-141]],[[5979,1759],[14,151]],[[6786,2057],[39,93]],[[5942,1735],[-7,-28]],[[5983,1748],[-4,11]],[[5961,1739],[18,20]],[[5602,1598],[-77,33]],[[19629,6079],[36,-260]],[[5513,1554],[-14,-5]],[[20364,6258],[-98,73]],[[20364,6258],[-185,-490]],[[21821,6614],[-1,-221]],[[4672,1212],[0,0]],[[7271,2169],[-107,65]],[[19800,6081],[-84,-22]],[[15047,4735],[-200,-24]],[[15047,4735],[-61,-115]],[[8599,2633],[-19,-42]],[[8599,2633],[103,-90]],[[5970,1656],[-9,83]],[[5484,1472],[-10,-11]],[[20161,6138],[-74,-59]],[[7708,2287],[107,42]],[[16260,5063],[-62,154]],[[16260,5063],[376,81]],[[5474,1461],[-7,-13]],[[5474,1461],[-7,-13]],[[7128,2066],[19,158]],[[5467,1448],[-10,-25]],[[7124,2059],[4,7]],[[7124,2059],[4,7]],[[6895,1971],[-70,179]],[[7425,2162],[-13,0]],[[16636,5144],[197,406]],[[16636,5144],[30,-57]],[[4497,1057],[142,356]],[[5457,1423],[-6,-16]],[[5457,1423],[-6,-16]],[[7668,2234],[40,53]],[[7455,2156],[24,-3]],[[20086,6078],[-83,4]],[[6074,1643],[-60,-44]],[[5451,1407],[-2,-134]],[[7115,2008],[9,51]],[[14986,4620],[-20,-23]],[[14986,4620],[36,-170]],[[6014,1599],[-33,-42]],[[7112,2000],[3,8]],[[7112,2000],[3,8]],[[7391,2097],[2,42]],[[5952,1550],[1,-24]],[[5643,1431],[-159,41]],[[8702,2543],[134,-145]],[[8702,2543],[-34,-286]],[[5981,1557],[-28,-31]],[[6003,1563],[-22,-6]],[[19373,5824],[0,0]],[[19373,5824],[226,-2]],[[19373,5824],[121,-177]],[[15439,4714],[291,129]],[[5953,1526],[-14,-21]],[[16228,4931],[-54,110]],[[16228,4931],[32,132]],[[21421,6335],[-25,32]],[[15422,4691],[-37,-39]],[[6427,1692],[33,63]],[[14359,4365],[12,725]],[[14359,4365],[-139,-447]],[[5939,1505],[0,0]],[[5939,1505],[18,17]],[[5939,1505],[-5,-13]],[[5934,1492],[-43,-58]],[[5670,1388],[-29,-1]],[[5892,1470],[-19,-42]],[[6475,1684],[-10,47]],[[15385,4652],[12,-69]],[[15385,4652],[125,-161]],[[5952,1485],[-18,7]],[[9293,2681],[-65,-318]],[[9293,2681],[277,-272]],[[9293,2681],[-156,513],[-178,-841]],[[21820,6393],[-21,5]],[[8093,2251],[-17,-23]],[[5449,1273],[5,-7]],[[5449,1273],[5,-7]],[[5820,1411],[4,-9]],[[5812,1407],[8,-15]],[[5873,1428],[-38,-25]],[[5891,1434],[-18,-6]],[[5834,1412],[1,-9]],[[21846,6379],[-26,14]],[[5454,1266],[3,-5]],[[5454,1266],[3,-5]],[[8076,2228],[0,0]],[[8076,2228],[-261,101]],[[5835,1403],[-15,-11]],[[5835,1403],[0,0]],[[5457,1261],[9,-34]],[[5820,1392],[-44,-61]],[[5881,1410],[-18,9]],[[5908,1419],[-17,15]],[[6695,1705],[-48,65]],[[5784,1364],[8,-5]],[[7571,2008],[18,-17]],[[5466,1227],[1,-11]],[[5466,1227],[1,-11]],[[8091,2188],[-15,40]],[[6692,1678],[3,27]],[[7712,2045],[-48,-14]],[[5467,1216],[41,-50]],[[5776,1331],[-110,-83]],[[4759,943],[35,-12]],[[4760,933],[-1,10]],[[8086,2161],[5,27]],[[8124,2172],[-33,16]],[[20738,6025],[37,-24]],[[21622,6247],[202,-192]],[[6730,1659],[-35,46]],[[4794,931],[4,-3]],[[4794,931],[-7,-22]],[[7064,1778],[48,222]],[[4798,928],[2,-2]],[[4798,928],[-1,-10]],[[5491,1191],[7,-11]],[[4800,926],[4,-2]],[[4800,926],[-3,-8]],[[5653,1249],[1,-41]],[[4806,926],[3,0]],[[4806,926],[3,0]],[[4804,924],[2,2]],[[4809,926],[0,-5]],[[4797,918],[-1,-6]],[[5666,1248],[-1,-7]],[[5666,1248],[-1,-7]],[[8836,2398],[15,-14]],[[8836,2398],[0,-266]],[[4809,921],[128,203],[-84,708]],[[4809,921],[-4,-15]],[[9369,2582],[-4,-23]],[[4787,909],[-27,24]],[[4800,914],[4,10]],[[4800,914],[-4,-2]],[[4796,912],[-7,-5]],[[5665,1241],[-11,-33]],[[4789,907],[-2,2]],[[4790,903],[-1,4]],[[4790,903],[-26,-27]],[[4805,906],[-5,8]],[[4805,906],[-14,-16]],[[5508,1166],[1,-7]],[[5508,1166],[1,-7]],[[6793,1644],[-63,15]],[[16259,4755],[-31,176]],[[16259,4755],[-13,-32]],[[5650,1217],[-36,5]],[[4791,890],[-1,13]],[[4764,876],[-4,57]],[[5509,1159],[6,-28]],[[6702,1604],[28,55]],[[5654,1208],[-4,-22]],[[6782,1623],[11,21]],[[5670,1195],[-20,-24]],[[5650,1186],[0,-7]],[[5650,1186],[0,-7]],[[15355,4454],[68,-194]],[[6900,1646],[-28,-25]],[[5515,1131],[4,-43]],[[4791,855],[-27,21]],[[4791,855],[0,35]],[[5524,1134],[-1,-6]],[[5650,1179],[0,-8]],[[5284,1040],[69,-257]],[[15329,4436],[-19,-31]],[[5650,1171],[-1,-6]],[[6872,1621],[-79,23]],[[5649,1165],[-3,-10]],[[5649,1165],[-3,-10]],[[5646,1155],[2,-6]],[[5646,1155],[2,-6]],[[5648,1149],[2,-9]],[[20179,5768],[-427,12]],[[20179,5768],[-27,-179]],[[5909,1245],[-11,-21]],[[15310,4405],[-84,-87]],[[15310,4405],[-20,-295]],[[5650,1140],[0,-13]],[[5650,1140],[4,-56]],[[5519,1088],[2,-5]],[[5519,1088],[-1,-5]],[[5518,1083],[0,-19]],[[5521,1083],[-3,0]],[[5898,1224],[0,0]],[[5898,1224],[-122,107]],[[5538,1087],[-12,-6]],[[5538,1087],[0,0]],[[5526,1081],[-5,2]],[[5526,1081],[0,0]],[[7347,1755],[39,-3]],[[5650,1127],[3,-4]],[[5650,1127],[3,-4]],[[15112,4325],[114,-7]],[[6893,1587],[-21,34]],[[5539,1083],[0,0]],[[5539,1083],[-13,-2]],[[5542,1083],[0,0]],[[5542,1083],[-4,4]],[[5549,1086],[-11,1]],[[5549,1086],[-7,-3]],[[5550,1086],[-1,0]],[[5653,1123],[6,-10]],[[5653,1123],[5,-16]],[[6098,1289],[-6,-90]],[[5665,1125],[-6,-12]],[[5542,1075],[-3,8]],[[5518,1064],[-2,-9]],[[5518,1064],[0,-8]],[[5544,1071],[-5,12]],[[7386,1752],[204,229]],[[7386,1752],[0,0]],[[6887,1569],[6,18]],[[5659,1113],[-1,-6]],[[20483,5807],[42,-22]],[[5516,1055],[0,-4]],[[5518,1056],[-2,-1]],[[5518,1056],[-2,-5]],[[5658,1107],[-4,-23]],[[5516,1051],[-33,-26]],[[5571,1067],[-22,19]],[[7741,1864],[-50,-39]],[[5575,1065],[-6,0]],[[5575,1065],[-33,18]],[[5576,1065],[-1,0]],[[5909,1189],[-11,35]],[[14451,4090],[-92,275]],[[5483,1025],[-4,-5]],[[5483,1025],[-1,-4]],[[6955,1571],[-62,16]],[[5678,1096],[-28,-41]],[[5579,1058],[0,0]],[[5579,1058],[-4,7]],[[5579,1058],[-10,6]],[[5479,1020],[-4,-4]],[[5479,1020],[-4,-6]],[[5482,1021],[-3,-1]],[[5482,1021],[0,-13]],[[15226,4318],[-29,-143]],[[5654,1084],[-3,-27]],[[5475,1016],[-3,-5]],[[5475,1014],[0,2]],[[5475,1014],[-3,-3]],[[5472,1011],[-3,-3]],[[5469,1008],[0,-2]],[[5469,1006],[-9,-4]],[[5460,1002],[-9,-6]],[[5460,1002],[-9,-10]],[[6077,1234],[15,-35]],[[5472,1005],[-3,1]],[[5472,1005],[-3,3]],[[5482,1008],[-10,-3]],[[5482,1008],[-31,-16]],[[14437,4066],[14,24]],[[5451,996],[-3,-4]],[[5451,996],[-1,-2]],[[5450,994],[0,-2]],[[5448,992],[-13,-16]],[[5450,992],[-2,0]],[[5451,992],[-1,0]],[[5451,992],[-1,2]],[[5596,1044],[-49,25]],[[5596,1044],[-17,14]],[[5596,1044],[0,0]],[[5597,1043],[-1,1]],[[5597,1043],[0,0]],[[5435,976],[-23,-16]],[[5435,976],[-23,-16]],[[5651,1057],[-3,-2]],[[5651,1057],[-1,-2]],[[5648,1055],[-2,-6]],[[5650,1055],[-2,0]],[[5646,1049],[-1,-9]],[[5646,1049],[2,-7]],[[5412,960],[-38,-73]],[[5620,1036],[-44,29]],[[5620,1036],[-44,29]],[[5648,1042],[-3,-2]],[[5645,1040],[-19,-16]],[[9206,2327],[-31,-72]],[[5614,1025],[-17,18]],[[6092,1199],[2,-16]],[[5626,1024],[-3,-1]],[[5623,1023],[-3,13]],[[5623,1023],[-26,20]],[[5623,1023],[0,0]],[[5628,1021],[-2,3]],[[21881,6079],[-57,-24]],[[5630,1012],[-2,9]],[[5630,1012],[-2,9]],[[6094,1183],[-6,-1]],[[6094,1183],[6,-20]],[[5631,1008],[-1,4]],[[21824,6055],[0,0]],[[16289,4561],[-19,13]],[[16289,4561],[-30,194]],[[5712,1034],[-64,8]],[[5435,926],[-73,-101]],[[7372,1641],[14,111]],[[5632,989],[-1,19]],[[6100,1163],[8,-94]],[[6112,1165],[-12,-2]],[[5374,887],[-16,-82]],[[5374,887],[-12,-28]],[[20691,5732],[110,63]],[[20152,5589],[-452,-127]],[[20152,5589],[-23,-293]],[[8836,2132],[16,-16]],[[8836,2132],[-51,-141]],[[5651,972],[-19,17]],[[5651,972],[-20,36]],[[19699,5463],[-54,113]],[[21560,5941],[393,-111]],[[5655,966],[-4,6]],[[5657,957],[-2,9]],[[5655,955],[0,11]],[[5655,955],[2,2]],[[20715,5714],[9,-53]],[[15197,4175],[-42,-6]],[[15197,4175],[24,-139]],[[5655,945],[0,10]],[[5657,944],[-2,1]],[[5657,944],[0,13]],[[5653,943],[-21,46]],[[5653,943],[2,2]],[[5655,930],[-2,13]],[[5655,930],[2,14]],[[5366,817],[-5,-5]],[[5361,812],[-3,-5]],[[5361,812],[-3,-5]],[[5661,925],[-4,19]],[[5358,807],[0,-2]],[[5663,921],[-2,4]],[[5663,921],[-2,4]],[[5358,805],[-11,-31]],[[14514,3932],[-63,158]],[[14514,3932],[210,192],[392,-192],[17,-161]],[[5664,914],[-9,16]],[[5664,914],[-1,7]],[[7989,1765],[-34,-110]],[[6101,1070],[7,-1]],[[6108,1069],[-5,-41]],[[15202,4126],[-15,-32]],[[5347,774],[-13,-10]],[[5347,774],[-11,-65]],[[5334,764],[-4,-62]],[[5661,883],[3,31]],[[5660,877],[1,6]],[[5660,877],[1,6]],[[6060,1022],[12,-27]],[[7192,1433],[486,33]],[[5668,867],[-8,10]],[[6890,1321],[61,-19]],[[6004,993],[22,-30]],[[6074,1017],[2,-11]],[[6103,1028],[-27,-22]],[[15290,4110],[-2,-57]],[[5340,735],[-4,-26]],[[8773,1985],[-18,-46]],[[20457,5544],[81,-127]],[[6950,1330],[1,-28]],[[6045,995],[13,-24]],[[6076,1006],[-4,-11]],[[5710,861],[-24,-28]],[[6072,995],[-4,-34]],[[5673,841],[-5,26]],[[5673,841],[-5,26]],[[5339,712],[5,-51]],[[5336,709],[0,0]],[[5336,709],[2,-37]],[[6026,969],[-8,-51]],[[5678,837],[-5,4]],[[5686,833],[-8,4]],[[6951,1302],[82,-65]],[[6058,971],[2,19]],[[6058,971],[4,-20]],[[19336,5220],[47,-10]],[[19336,5220],[-25,-163]],[[5683,828],[-5,9]],[[5683,828],[3,5]],[[5989,941],[26,-25]],[[6339,1071],[-22,-68]],[[7846,1620],[-78,27]],[[6177,1006],[-74,22]],[[7955,1655],[0,0]],[[7955,1655],[-109,-35]],[[8755,1939],[-7,24]],[[8755,1939],[-2,-19]],[[5655,808],[12,48]],[[5687,820],[-4,8]],[[5689,820],[-2,0]],[[5689,820],[-3,13]],[[4938,534],[-147,321]],[[6068,961],[-6,-10]],[[15380,4087],[-90,23]],[[4942,530],[-4,4]],[[4942,530],[-4,4]],[[21518,5768],[-78,-18]],[[5700,817],[0,0]],[[5700,817],[-9,-1]],[[15288,4053],[-3,-48]],[[5705,818],[-5,-1]],[[5705,818],[0,0]],[[6062,951],[-44,-33]],[[5340,679],[-3,-10]],[[19383,5210],[39,43]],[[19383,5210],[64,-108]],[[5948,904],[20,-46]],[[5338,672],[0,0]],[[5338,672],[9,-20]],[[5338,672],[0,-15]],[[5700,807],[-11,13]],[[5337,669],[-4,-21]],[[8083,1680],[-128,-25]],[[5703,806],[-3,1]],[[5703,806],[-3,1]],[[5705,807],[-2,-1]],[[5705,807],[-5,10]],[[18727,5023],[284,488],[325,-291]],[[5767,828],[-62,-10]],[[5708,804],[-3,3]],[[5710,803],[-2,1]],[[5710,803],[-5,15]],[[6018,918],[-3,-2]],[[6015,916],[-3,-6]],[[6015,916],[-3,-6]],[[21532,5750],[-14,17]],[[6264,1005],[-1,-17]],[[5338,657],[9,-5]],[[5338,657],[8,-14]],[[6012,910],[-8,-9]],[[5997,899],[-10,-21]],[[5333,648],[11,-12]],[[5333,648],[1,-65]],[[6004,901],[-7,-2]],[[6004,901],[-7,-2]],[[5712,791],[-4,13]],[[5714,791],[-2,0]],[[5714,791],[-4,12]],[[5738,800],[-4,-5]],[[5347,652],[0,-10]],[[5746,801],[-1,-1]],[[5715,789],[-1,2]],[[5715,789],[-1,0]],[[5745,800],[-7,0]],[[5745,800],[-7,0]],[[5714,789],[-2,2]],[[5718,790],[-3,-1]],[[5720,791],[-2,-1]],[[5775,811],[-7,-14]],[[6216,976],[-9,18]],[[6216,976],[-148,-15]],[[5734,795],[-14,-4]],[[5734,795],[-1,-4]],[[6226,979],[-10,-3]],[[5781,812],[-6,-1]],[[5720,788],[-2,2]],[[5720,788],[0,3]],[[5777,809],[-2,2]],[[5777,809],[-11,-16]],[[6262,990],[0,-1]],[[6239,981],[2,8]],[[5725,788],[-5,0]],[[5725,788],[-1,-1]],[[6262,989],[-6,-8]],[[5733,791],[-8,-3]],[[5724,787],[-4,1]],[[5724,787],[-10,2]],[[5780,808],[-3,1]],[[5780,808],[-15,-16]],[[6263,988],[-1,1]],[[5753,797],[-7,4]],[[5753,797],[-20,-6]],[[5346,643],[-2,-7]],[[5346,643],[1,-1]],[[5756,798],[-3,-1]],[[5756,798],[-10,3]],[[6242,979],[2,-13]],[[5784,807],[-4,1]],[[5784,807],[-3,5]],[[5347,642],[-2,-7]],[[5974,878],[-2,-3]],[[5974,878],[-2,-3]],[[6256,981],[0,0]],[[6256,981],[-30,-2]],[[6256,981],[7,-10]],[[5972,875],[-2,-8]],[[6317,1003],[-9,-13]],[[5759,794],[-3,4]],[[21953,5830],[-47,226]],[[5768,797],[-9,-3]],[[5768,797],[-2,-4]],[[6229,969],[-3,10]],[[5344,636],[1,-1]],[[5987,878],[-13,0]],[[20623,5493],[137,-229]],[[5345,635],[-11,-52]],[[5766,793],[-1,-1]],[[5765,792],[-6,2]],[[15285,4005],[104,-261]],[[7842,1554],[4,66]],[[6328,1001],[-11,2]],[[15311,4011],[-23,42]],[[5970,867],[-1,-5]],[[5970,867],[-1,-5]],[[5792,800],[-8,7]],[[6308,990],[-45,-2]],[[6308,990],[-3,-13]],[[5969,862],[-1,-4]],[[5816,804],[-11,-4]],[[5816,804],[-5,-4]],[[5805,800],[-24,12]],[[5805,800],[-3,-2]],[[5802,798],[-5,-3]],[[5793,794],[-1,6]],[[5793,794],[-9,13]],[[5797,795],[-4,-1]],[[5797,795],[-5,5]],[[5804,798],[-2,0]],[[7841,1546],[1,8]],[[7841,1546],[1,8]],[[7032,1252],[1,-15]],[[5811,800],[-7,-2]],[[5811,800],[-7,-2]],[[5968,858],[-2,-9]],[[6919,1205],[-169,-409]],[[7839,1537],[2,9]],[[5966,849],[-3,-8]],[[5966,849],[-3,-8]],[[5937,837],[12,-32]],[[5010,485],[-21,-10]],[[5856,804],[-3,-19]],[[5826,793],[-10,11]],[[4989,475],[-47,55]],[[7033,1237],[73,-108]],[[5963,841],[-12,-36]],[[7838,1529],[1,8]],[[7838,1529],[1,8]],[[7838,1527],[0,2]],[[5833,790],[-7,3]],[[5833,790],[-7,3]],[[21854,5771],[-300,-34]],[[7839,1518],[-1,9]],[[7839,1518],[-1,9]],[[5898,805],[-13,-27]],[[5853,785],[-20,5]],[[5853,785],[0,0]],[[5854,783],[-1,2]],[[5334,583],[0,-1]],[[5334,582],[-3,-5]],[[5334,582],[-3,-5]],[[5871,784],[-12,-7]],[[5314,572],[-28,-24]],[[5859,777],[-5,6]],[[5859,777],[-5,6]],[[5331,577],[-8,-4]],[[5323,573],[-9,-1]],[[5323,573],[-9,-1]],[[5877,780],[-6,4]],[[5877,780],[-6,4]],[[5949,805],[-4,-5]],[[5951,805],[-2,0]],[[5951,805],[-6,-5]],[[5885,778],[-8,2]],[[5945,800],[-4,-5]],[[5272,544],[-2,-11]],[[5272,544],[-2,-12]],[[5713,711],[-26,109]],[[5286,548],[-14,-4]],[[5286,548],[-16,-15]],[[5941,795],[-8,-10]],[[5941,795],[-8,-10]],[[15305,3948],[-20,57]],[[14621,3739],[-107,193]],[[14621,3739],[31,-6]],[[20129,5296],[-274,-110]],[[20129,5296],[-34,-110]],[[5933,785],[-16,-6]],[[5917,779],[-5,-3]],[[5917,779],[-3,-4]],[[5912,776],[-2,-2]],[[5270,533],[0,-1]],[[5910,774],[-3,-2]],[[5910,774],[-3,-2]],[[5270,532],[-1,-4]],[[5914,775],[-2,1]],[[5907,772],[-22,6]],[[5269,528],[-4,-5]],[[5269,528],[-4,-5]],[[5841,742],[-15,51]],[[5265,523],[-1,-1]],[[5264,522],[-11,-13]],[[5264,522],[-9,-10]],[[5926,770],[-12,5]],[[5926,770],[0,0]],[[7847,1475],[-8,43]],[[5255,512],[-7,-5]],[[5255,512],[-2,-3]],[[5911,759],[-13,7]],[[5244,505],[-6,-4]],[[5244,505],[-6,-4]],[[5248,507],[-4,-2]],[[5253,509],[-5,-2]],[[5238,501],[-8,-38]],[[6076,810],[-89,68]],[[7856,1457],[-9,18]],[[7856,1457],[-9,18]],[[5922,743],[4,27]],[[20712,5407],[-37,-90]],[[7103,1177],[3,-48]],[[5952,742],[-26,28]],[[5230,463],[-9,-7]],[[5230,463],[-3,-6]],[[5221,456],[-211,29]],[[5227,457],[-3,-2]],[[5227,457],[-3,-2]],[[5224,455],[-3,1]],[[7106,1129],[32,-59]],[[20095,5186],[-91,-217]],[[20095,5186],[116,-163]],[[7967,1428],[-65,-47]],[[7031,1073],[45,-82]],[[7902,1381],[-46,76]],[[7902,1381],[0,0]],[[16147,4047],[-253,273],[-87,313]],[[16147,4047],[198,285],[-56,229]],[[6969,1021],[152,-64]],[[7138,1070],[-17,-113]],[[7149,1071],[-11,-1]],[[20412,5173],[56,7]],[[20468,5180],[31,10]],[[20604,5214],[163,6]],[[7516,1147],[150,95]],[[15389,3744],[17,10]],[[15389,3744],[6,-49]],[[7329,1059],[-67,-81]],[[14632,3488],[-11,251]],[[7121,957],[0,-29]],[[21642,5395],[-112,280]],[[22156,5523],[-203,307]],[[21737,5419],[-77,58]],[[5283,247],[-273,238]],[[5083,169],[-94,306]],[[4651,0],[-146,393],[254,550]],[[7917,1216],[-15,165]],[[16214,3917],[-67,130]],[[19624,4869],[-117,7]],[[19393,4807],[-121,102]],[[77064,67137],[25,-33]],[[77107,67044],[5,11]],[[77103,67038],[4,7]],[[77103,67038],[-14,66]],[[77106,67007],[-3,31]],[[77106,67007],[114,61]],[[77106,67006],[0,1]],[[77154,66975],[-6,20]],[[77044,66921],[62,86]],[[80411,57328],[440,-110]],[[80851,57218],[127,-84]],[[84902,55277],[341,-96]],[[83800,55388],[308,-373]],[[84108,55014],[280,-193]],[[83547,55068],[265,-243]],[[84388,54821],[268,-197]],[[83239,55010],[308,58]],[[83812,54825],[260,-270]],[[84656,54624],[272,-153]],[[84928,54470],[139,-119]],[[84072,54555],[267,-214]],[[85067,54350],[125,-116]],[[85192,54234],[8,-26]],[[85200,54208],[268,-84]],[[85200,54208],[493,-676]],[[84339,54341],[256,-309]],[[85468,54125],[155,-96]],[[84595,54032],[31,-88]],[[84626,53944],[0,-28]],[[85693,53532],[179,-313]],[[85872,53218],[67,-72]],[[85939,53146],[278,-80]],[[86218,53066],[256,-283]],[[86474,52783],[275,-107]],[[86750,52676],[110,-137]],[[86860,52539],[138,-207]],[[86998,52333],[266,-187]],[[87223,52119],[93,-110]],[[73564,63595],[-232,331],[118,461]],[[75770,59687],[231,234],[153,-296],[207,159]],[[84384,56412],[7,-185]],[[80292,56610],[49,-117]],[[80341,56493],[0,0]],[[80341,56493],[0,0]],[[80341,56493],[236,-51],[317,-394]],[[80691,56277],[-131,-43]],[[80560,56234],[-100,9]],[[80460,56243],[-15,-46]],[[80894,56048],[138,-130]],[[80895,56046],[-20,382]],[[81033,55918],[-5,-82]],[[83800,55388],[308,-373]],[[81028,55836],[0,-1]],[[81028,55836],[176,132]],[[81028,55836],[0,0]],[[81027,55834],[-106,-117]],[[80921,55717],[49,-489]],[[80921,55717],[-176,172]],[[84108,55014],[280,-193]],[[83547,55068],[265,-243]],[[84388,54821],[268,-197]],[[83239,55010],[308,58]],[[83811,54825],[261,-270]],[[84656,54624],[272,-153]],[[80970,55228],[167,-194]],[[84928,54470],[139,-119]],[[84072,54555],[267,-214]],[[85067,54350],[125,-116]],[[81137,55034],[14,-66]],[[85192,54234],[8,-26]],[[85200,54208],[268,-84]],[[85200,54208],[493,-677]],[[84339,54341],[256,-309]],[[85468,54125],[155,-96]],[[84595,54032],[31,-88]],[[84626,53944],[0,-28]],[[85693,53532],[179,-313]],[[85872,53218],[67,-72]],[[85939,53146],[278,-80]],[[86218,53066],[256,-283]],[[86474,52783],[275,-107]],[[86750,52676],[110,-137]],[[86860,52539],[138,-207]],[[86998,52333],[266,-187]],[[81253,53319],[-108,-527],[-278,-150],[5,-290]],[[87223,52119],[93,-110]],[[82397,54983],[0,0]],[[82397,54983],[0,0]],[[82397,54983],[-12,11]],[[82408,54933],[-11,50]],[[82408,54933],[-21,-11]],[[81004,54868],[-208,119]],[[81009,54734],[-5,133]],[[81526,54376],[42,462]],[[81763,53131],[59,-21]],[[81741,53119],[22,12]],[[81706,53119],[35,-1]],[[81637,53102],[28,-38]],[[81639,53100],[-51,-66]],[[81665,53064],[41,55]],[[81588,53034],[-21,71]],[[76193,72959],[-13,-1]],[[76193,72959],[-13,-1]],[[76196,72957],[-3,2]],[[76196,72957],[-3,2]],[[76196,72957],[0,-7]],[[76180,72958],[-21,-14]],[[76204,72954],[21,110]],[[76204,72954],[1,3]],[[76204,72954],[0,-2]],[[76204,72952],[-3,-6]],[[76204,72952],[-3,-6]],[[76196,72950],[-2,-9]],[[76196,72950],[-2,-9]],[[76196,72941],[-2,0]],[[76196,72941],[5,5]],[[76196,72941],[-2,0]],[[76158,72942],[-252,-911]],[[76519,72436],[180,-55],[-161,-206],[137,-105],[220,174],[198,-207],[107,350]],[[74211,72325],[-212,-188]],[[73999,72144],[-85,-305],[-275,-250],[-308,59]],[[74056,70827],[-27,21]],[[74058,70826],[-2,1]],[[74058,70826],[-2,1]],[[74212,70401],[-154,425]],[[76230,69981],[193,-666]],[[73760,70105],[81,-137]],[[76362,69650],[319,-112]],[[74077,69903],[1,2]],[[74077,69903],[-231,65]],[[74155,69801],[-1,4]],[[74155,69801],[-78,102]],[[74155,69801],[22,-15]],[[74177,69786],[5,-13]],[[74177,69786],[5,-13]],[[74203,69761],[0,0]],[[74203,69761],[-21,12]],[[74226,69757],[-23,4]],[[74227,69755],[-1,2]],[[74227,69755],[-1,2]],[[74270,69650],[-43,105]],[[74271,69645],[-1,5]],[[74271,69645],[-1,5]],[[74281,69640],[-4,-1]],[[74279,69639],[2,1]],[[74279,69639],[-2,0]],[[74277,69639],[-6,6]],[[74282,69637],[-1,3]],[[74282,69637],[-3,2]],[[74307,69607],[-25,30]],[[74308,69606],[-1,1]],[[74308,69606],[-1,1]],[[76425,69315],[52,-246],[282,-380],[499,-1010]],[[74383,69547],[-75,59]],[[74388,69545],[-5,2]],[[74388,69545],[-5,2]],[[74395,69543],[0,-1]],[[74395,69543],[-3,-1]],[[74392,69542],[-4,3]],[[74394,69541],[-2,1]],[[74394,69541],[1,1]],[[74394,69541],[1,1]],[[74416,69525],[-21,18]],[[74419,69520],[-3,5]],[[74419,69520],[-3,5]],[[74556,69347],[-137,173]],[[74562,69339],[-6,8]],[[74562,69339],[-6,8]],[[74562,69339],[132,-387],[-18,-339]],[[73917,69364],[-229,480]],[[73398,69083],[381,-355],[68,-183]],[[74677,68613],[-56,-76]],[[74620,68535],[10,-13]],[[74630,68520],[-6,-11]],[[74625,68508],[-20,-150]],[[73847,68544],[2,-8]],[[74605,68356],[-1,-39]],[[73291,67999],[9,-4]],[[73288,67998],[111,-295]],[[73260,67986],[-150,213]],[[73400,67702],[18,-51]],[[74849,67440],[226,562],[-7,290]],[[74849,67440],[27,-85]],[[74849,67440],[-26,-129]],[[76575,66876],[-193,199]],[[73239,67105],[-16,261],[-399,283]],[[73239,67105],[4,-2]],[[73239,67105],[4,-2]],[[73246,67026],[-3,77]],[[73246,67026],[-5,-7]],[[73246,67026],[-5,-7]],[[73241,67019],[2,-151]],[[76913,66468],[-323,407]],[[73243,66868],[11,-11]],[[73243,66868],[11,-11]],[[73254,66857],[21,-36]],[[73275,66821],[-1,-2]],[[73275,66821],[-1,-2]],[[73277,66802],[-3,17]],[[73277,66801],[0,1]],[[73277,66801],[0,1]],[[73278,66784],[-1,17]],[[73278,66784],[144,-86]],[[77012,66327],[-98,143]],[[77020,66317],[-8,10]],[[77020,66317],[-8,10]],[[73422,66698],[15,-4]],[[73422,66698],[15,-4]],[[73437,66694],[199,-173]],[[77035,66208],[-15,109]],[[73301,66636],[-23,148]],[[77026,66189],[9,19]],[[77026,66189],[9,19]],[[73304,66634],[-3,2]],[[73304,66634],[-3,2]],[[73311,66559],[-7,75]],[[73317,66551],[-6,8]],[[73317,66551],[-6,8]],[[77129,66085],[-103,104]],[[77137,66083],[-8,2]],[[77137,66083],[-8,2]],[[77137,66083],[17,-15]],[[73323,66538],[-6,13]],[[73325,66532],[-2,6]],[[73325,66532],[-2,6]],[[77157,66068],[91,60]],[[73330,66515],[-5,17]],[[73333,66508],[-3,7]],[[73333,66508],[-3,7]],[[72632,66422],[105,-157]],[[73431,66240],[-98,268]],[[72737,66262],[16,-36]],[[72782,66145],[-41,74]],[[72791,66130],[-9,15]],[[72791,66130],[-9,15]],[[73038,65945],[-52,46]],[[72900,65948],[-2,-1]],[[72900,65948],[-2,-1]],[[72900,65948],[29,-33]],[[72898,65947],[-107,183]],[[73066,65892],[-28,53]],[[73066,65892],[-28,53]],[[73112,65873],[1,-1]],[[73112,65873],[-46,19]],[[73142,65651],[-30,222]],[[73142,65651],[0,0]],[[73142,65651],[70,-196]],[[75323,65152],[129,163]],[[75323,65152],[-162,-97]],[[75323,65152],[-61,-215]],[[75639,65048],[31,261]],[[75639,65048],[169,-234]],[[75614,65027],[25,21]],[[75614,65027],[36,-132]],[[75527,64966],[87,61]],[[75527,64966],[-48,-78]],[[75527,64966],[9,-173]],[[75650,64895],[35,-62]],[[75650,64895],[20,-147]],[[75262,64937],[27,-114]],[[75262,64937],[-176,-96]],[[75289,64823],[76,-209]],[[75289,64823],[2,-209]],[[75535,64789],[-2,-138]],[[75087,64839],[15,-156]],[[78443,71016],[141,293]],[[78603,69515],[165,-528]],[[78606,69515],[-435,598]],[[77736,67626],[224,395]],[[77736,67626],[-1,-3]],[[77736,67626],[-105,29]],[[77402,66635],[382,-181],[85,105],[209,-269]],[[78081,66291],[246,-208]],[[79774,65881],[23,126]],[[79766,65840],[10,41]],[[79766,65840],[148,7]],[[79747,65820],[19,20]],[[79732,65810],[15,10]],[[79732,65810],[15,10]],[[79732,65810],[-108,-408],[-297,-379]],[[79146,65098],[12,-214]],[[81027,63161],[-250,161],[60,169],[-244,236],[8,404],[-117,240]],[[80999,62536],[-55,405],[109,161],[245,-206]],[[80999,62536],[253,57],[34,-404]],[[81480,61411],[-186,-118],[-249,374],[68,225],[-114,644]],[[87765,64887],[7,-23]],[[87772,64864],[198,-85]],[[87772,64864],[177,-322]],[[87949,64542],[0,0]],[[87949,64542],[62,-68]],[[88011,64474],[43,-6]],[[88011,64474],[-19,-226]],[[87634,64409],[178,-364]],[[91535,61078],[-132,-216]],[[91403,60862],[-3,-4]],[[91403,60862],[-3,-4]],[[91400,60858],[-29,-18]],[[91371,60840],[-315,-81]],[[91371,60840],[-30,-93]],[[91341,60747],[-4,-2]],[[91341,60747],[-4,-2]],[[91337,60745],[-124,-125]],[[90643,60623],[176,-14]],[[90436,60278],[253,-232]],[[90689,60046],[3,-2]],[[90689,60046],[3,-2]],[[90692,60044],[59,4]],[[90934,58841],[-79,126]],[[90934,58841],[-158,34]],[[90952,58805],[-18,36]],[[80249,71794],[-1,-1]],[[80249,71794],[78,-12]],[[80162,71753],[-1,1]],[[80162,71753],[87,41]],[[80146,71747],[-1,2]],[[80146,71747],[16,6]],[[80117,71720],[29,27]],[[80117,71720],[1,-1]],[[80106,71705],[11,15]],[[80095,71691],[11,14]],[[80095,71691],[0,-17]],[[80095,71691],[-23,-38]],[[80095,71674],[11,31]],[[80095,71674],[-28,-42]],[[80072,71653],[-5,-21]],[[80072,71653],[-22,-37]],[[80067,71632],[-17,-16]],[[80050,71616],[-32,-76]],[[80018,71540],[-133,-144]],[[80018,71540],[213,18],[87,-535]],[[79885,71396],[-173,-62]],[[80070,71249],[-185,147]],[[80070,71249],[-3,-4]],[[80070,71249],[27,-34]],[[77787,68613],[1,2]],[[77787,68613],[3,2]],[[77784,68610],[3,3]],[[77780,68609],[4,1]],[[77780,68609],[4,1]],[[77776,68597],[4,12]],[[77776,68597],[4,12]],[[77760,68597],[15,-3]],[[77775,68594],[-14,4]],[[77775,68594],[1,3]],[[77656,68399],[103,198]],[[77656,68399],[-207,126]],[[77583,68285],[73,114]],[[79085,67650],[-422,-245]],[[79546,66527],[195,-202]],[[75342,68266],[73,678]],[[76087,67584],[-125,121]],[[76088,67582],[-1,2]],[[77312,66862],[-435,-287]],[[76877,66575],[-1,0]],[[76877,66575],[-547,541],[-135,483],[-108,-15]],[[77012,66328],[-135,247]],[[77020,66317],[-8,11]],[[77020,66317],[-8,11]],[[77025,66190],[-5,127]],[[76997,66182],[28,8]],[[76997,66182],[28,8]],[[77129,66086],[-132,96]],[[77137,66084],[-8,2]],[[77137,66084],[-8,2]],[[77755,65996],[212,-337],[-40,-257],[-285,-223]],[[77153,66071],[-16,13]],[[77723,65883],[33,203],[-327,367],[-276,-382]],[[75194,66038],[209,325],[543,72],[67,266]],[[74840,65787],[322,367],[32,-116]],[[75052,65617],[142,421]],[[77642,65179],[-181,442],[-137,-24],[-171,474]],[[78215,64848],[-330,20],[-243,311]],[[75638,65049],[29,361]],[[75614,65027],[0,0]],[[75614,65027],[24,22]],[[75086,64841],[261,141],[100,358]],[[75927,64729],[-289,320]],[[75742,64714],[-128,313]],[[75434,64551],[180,476]],[[79913,79263],[23,12]],[[80055,79239],[-348,210]],[[79707,79449],[10,-16]],[[79717,79433],[0,-1]],[[79716,79432],[0,-5]],[[79716,79427],[1,0]],[[79717,79426],[1,-1]],[[79718,79425],[4,-3]],[[79722,79422],[0,0]],[[79722,79422],[2,-2]],[[79724,79420],[1,-2]],[[79726,79418],[0,1]],[[79726,79420],[1,2]],[[79727,79422],[0,1]],[[79727,79423],[4,2]],[[79731,79425],[1,-1]],[[79732,79424],[0,-1]],[[79732,79423],[1,-1]],[[79733,79422],[0,0]],[[79733,79422],[0,-1]],[[79733,79421],[0,0]],[[79733,79421],[1,-1]],[[79734,79420],[0,0]],[[79734,79420],[0,-1]],[[79734,79419],[0,0]],[[79734,79419],[1,-1]],[[79735,79418],[0,-1]],[[79735,79417],[1,-1]],[[79736,79416],[0,-1]],[[79736,79415],[0,0]],[[79736,79415],[1,-1]],[[79737,79414],[0,0]],[[79737,79413],[0,-1]],[[79737,79412],[1,-3]],[[79738,79409],[0,-2]],[[79738,79407],[1,-2]],[[79739,79405],[0,-1]],[[79739,79404],[0,-1]],[[79739,79403],[1,0]],[[79740,79403],[0,-1]],[[79740,79402],[0,-1]],[[79740,79401],[0,-2]],[[79740,79399],[0,-1]],[[79740,79398],[1,0]],[[79741,79398],[0,-1]],[[79742,79396],[0,0]],[[79742,79395],[1,0]],[[79743,79395],[0,-1]],[[79743,79394],[1,-1]],[[79744,79393],[0,0]],[[79744,79393],[1,-1]],[[79745,79392],[0,-1]],[[79745,79391],[1,-1]],[[79746,79390],[1,-2]],[[79747,79388],[1,-4]],[[79748,79384],[4,-9]],[[79752,79375],[8,-25]],[[79760,79350],[-1,-13]],[[79758,79335],[-6,-1]],[[79752,79334],[1,-8]],[[79753,79326],[22,-31]],[[79775,79295],[4,-6]],[[79778,79288],[10,-1]],[[79788,79292],[9,-5]],[[79798,79283],[9,-28]],[[79807,79255],[14,-7]],[[79821,79248],[22,-13]],[[79843,79235],[66,11]],[[79909,79246],[9,2]],[[79940,79230],[-22,18]],[[79940,79230],[-1,-1]],[[79933,79232],[-9,16]],[[80039,79003],[0,0]],[[80039,79003],[1,0]],[[80040,79003],[1,0]],[[80041,79003],[1,0]],[[80042,79003],[0,0]],[[80042,79003],[1,0]],[[80043,79003],[1,0]],[[80044,79003],[-3,29]],[[80041,79032],[-26,38]],[[80011,79089],[-8,40]],[[80003,79129],[-16,5]],[[79987,79134],[-5,-5]],[[79982,79124],[2,-9]],[[79984,79110],[-5,-2]],[[79979,79108],[-6,39]],[[79973,79147],[-6,13]],[[79967,79164],[4,10]],[[79971,79174],[-11,2]],[[79960,79176],[-1,19]],[[79959,79195],[0,8]],[[79959,79203],[-17,27]],[[79942,79230],[-2,0]],[[79872,78579],[8,26]],[[79881,78608],[-3,17]],[[79876,78632],[-3,3]],[[79873,78635],[-1,8]],[[79872,78643],[8,1]],[[79880,78644],[9,-4]],[[79889,78640],[-3,12]],[[79886,78652],[4,22]],[[79890,78674],[15,10]],[[79905,78684],[5,-1]],[[79910,78683],[31,8]],[[79941,78691],[3,28]],[[79944,78719],[6,47]],[[79950,78766],[27,49]],[[79977,78815],[2,10]],[[79979,78825],[-2,14]],[[79977,78839],[8,41]],[[79984,78881],[-5,-2]],[[79980,78875],[-5,-3]],[[79975,78879],[-10,15]],[[79964,78897],[13,21]],[[79977,78918],[0,4]],[[79977,78922],[-1,1]],[[79976,78923],[-2,1]],[[79974,78924],[-1,1]],[[79973,78925],[-2,0]],[[79971,78925],[0,0]],[[79971,78925],[-3,1]],[[79968,78926],[-1,1]],[[79967,78927],[0,0]],[[79967,78927],[-1,1]],[[79966,78928],[0,1]],[[79966,78929],[0,0]],[[79966,78929],[-1,2]],[[79965,78931],[1,2]],[[79966,78933],[5,3]],[[79971,78936],[1,0]],[[79972,78936],[1,0]],[[79973,78936],[1,0]],[[79974,78936],[6,1]],[[79980,78937],[0,0]],[[79980,78937],[1,3]],[[79981,78940],[1,1]],[[79982,78941],[0,1]],[[79982,78942],[0,1]],[[79982,78943],[0,1]],[[79982,78944],[0,2]],[[79982,78946],[1,0]],[[79983,78946],[1,1]],[[79984,78947],[1,1]],[[79985,78948],[0,1]],[[79986,78949],[1,1]],[[79987,78950],[1,4]],[[79988,78954],[-1,1]],[[79987,78955],[-1,2]],[[79986,78957],[-2,2]],[[79984,78959],[-1,0]],[[79983,78959],[1,1]],[[79984,78960],[0,1]],[[79984,78961],[0,1]],[[79984,78962],[0,1]],[[79984,78963],[1,2]],[[79985,78965],[0,1]],[[79985,78966],[1,2]],[[79986,78968],[-1,3]],[[79985,78971],[-1,-1]],[[79984,78970],[-2,-2]],[[79982,78968],[-1,0]],[[79981,78968],[0,-1]],[[79981,78967],[-1,0]],[[79980,78967],[-2,0]],[[79978,78967],[0,2]],[[79978,78969],[2,5]],[[79980,78974],[0,0]],[[79980,78974],[2,1]],[[79982,78975],[2,2]],[[79984,78977],[0,1]],[[79984,78978],[1,0]],[[79985,78978],[0,1]],[[79985,78979],[1,1]],[[79986,78980],[1,2]],[[79987,78982],[1,0]],[[79988,78982],[1,1]],[[79989,78983],[1,0]],[[79990,78983],[0,0]],[[79990,78983],[1,0]],[[79991,78983],[1,0]],[[79992,78983],[1,0]],[[79993,78983],[1,-1]],[[79994,78982],[1,-1]],[[79995,78981],[1,-1]],[[79996,78980],[1,0]],[[79997,78980],[0,-1]],[[79998,78979],[0,-1]],[[79998,78978],[0,-1]],[[79998,78977],[0,-1]],[[79998,78976],[0,-1]],[[79998,78975],[0,-1]],[[79998,78974],[1,-1]],[[79999,78973],[4,1]],[[80003,78974],[0,2]],[[80003,78976],[0,1]],[[80003,78977],[0,1]],[[80003,78978],[2,1]],[[80005,78979],[2,0]],[[80007,78979],[1,-1]],[[80008,78978],[0,-1]],[[80008,78977],[1,-1]],[[80009,78976],[2,-1]],[[80011,78975],[1,-1]],[[80012,78974],[1,-1]],[[80013,78973],[2,-3]],[[80016,78969],[2,1]],[[80018,78970],[-1,4]],[[80017,78974],[-1,3]],[[80016,78977],[1,2]],[[80017,78979],[0,1]],[[80017,78980],[0,1]],[[80017,78981],[0,1]],[[80017,78982],[0,1]],[[80017,78983],[1,1]],[[80019,78985],[1,1]],[[80020,78986],[2,0]],[[80022,78986],[1,0]],[[80023,78986],[1,0]],[[80025,78987],[0,1]],[[80025,78988],[-1,2]],[[80024,78991],[-1,1]],[[80023,78992],[0,1]],[[80023,78993],[0,1]],[[80023,78994],[0,1]],[[80023,78995],[0,0]],[[80023,78996],[0,1]],[[80023,78998],[1,1]],[[80024,78999],[0,1]],[[80024,79000],[1,1]],[[80025,79001],[0,0]],[[80025,79001],[1,0]],[[80026,79001],[2,0]],[[80028,79001],[1,0]],[[80029,79001],[0,0]],[[80029,79001],[1,0]],[[80030,79001],[1,0]],[[80031,79001],[1,0]],[[80032,79001],[0,0]],[[80032,79001],[1,1]],[[80033,79002],[1,0]],[[80034,79002],[1,1]],[[80035,79003],[1,0]],[[80036,79003],[1,0]],[[80037,79003],[1,0]],[[80038,79003],[1,0]],[[80039,79003],[0,0]],[[79871,78510],[3,1]],[[79874,78511],[0,3]],[[79874,78514],[-2,13]],[[79872,78532],[-1,14]],[[79874,78549],[5,5]],[[79879,78554],[-8,15]],[[79871,78569],[1,10]],[[79438,78502],[67,126],[367,-49]],[[78052,78544],[-2,3]],[[78050,78550],[0,4]],[[78050,78554],[-11,12]],[[78037,78566],[-14,11]],[[78021,78582],[-4,-2]],[[78016,78576],[-1,-3]],[[78015,78573],[-1,-4]],[[78014,78569],[-4,7]],[[78010,78576],[-6,-10]],[[78004,78566],[-6,-15]],[[77998,78551],[2,-1]],[[78000,78550],[0,-2]],[[78000,78548],[-3,0]],[[77997,78548],[-9,9]],[[77988,78557],[0,0]],[[77988,78559],[-3,7]],[[77985,78566],[1,15]],[[77987,78582],[-1,14]],[[77986,78596],[-14,13]],[[77972,78609],[-11,8]],[[77961,78617],[-6,1]],[[77955,78618],[-22,-7]],[[77933,78611],[-1,-1]],[[77932,78610],[-3,-6]],[[77929,78604],[-10,-3]],[[77919,78601],[-3,1]],[[77916,78602],[0,6]],[[77916,78608],[-7,2]],[[77909,78610],[-4,6]],[[77905,78616],[-3,4]],[[77902,78620],[2,7]],[[77904,78627],[-6,-5]],[[77896,78621],[-10,-8]],[[77886,78613],[-3,4]],[[77882,78618],[-2,6]],[[77880,78624],[-5,0]],[[77873,78627],[-8,10]],[[77865,78637],[-9,-1]],[[77856,78636],[-2,-5]],[[77854,78631],[-7,-6]],[[77847,78625],[-7,-2]],[[77840,78623],[-12,5]],[[77827,78629],[-5,0]],[[77820,78627],[-6,-1]],[[77812,78628],[-5,10]],[[77807,78638],[-10,8]],[[77797,78646],[3,4]],[[77800,78650],[-1,2]],[[77799,78652],[-7,6]],[[77792,78658],[1,4]],[[77793,78662],[0,2]],[[77790,78664],[-4,9]],[[77785,78674],[-6,2]],[[77779,78676],[-1,2]],[[77778,78678],[5,3]],[[77777,78682],[0,10]],[[77777,78692],[1,2]],[[77778,78694],[-4,1]],[[77774,78695],[-1,14]],[[77773,78709],[-5,6]],[[77766,78718],[-10,8]],[[77756,78726],[-4,10]],[[77752,78736],[-6,3]],[[77746,78739],[-4,5]],[[77741,78744],[-5,-4]],[[77736,78740],[-1,7]],[[77735,78747],[-3,5]],[[77732,78752],[-3,-2]],[[77729,78750],[-2,1]],[[77727,78751],[-8,11]],[[77718,78764],[-6,-5]],[[77712,78759],[-6,23]],[[77706,78782],[-8,7]],[[77698,78789],[-1,5]],[[77697,78794],[-5,4]],[[77692,78798],[-3,-1]],[[77689,78796],[-2,-1]],[[77687,78795],[-1,3]],[[77686,78798],[-3,0]],[[77683,78798],[-3,9]],[[77680,78807],[-2,6]],[[77677,78820],[-3,-1]],[[77674,78819],[-2,-1]],[[77672,78818],[-15,19]],[[77657,78837],[-5,3]],[[77652,78840],[-4,-2]],[[77648,78838],[0,4]],[[77648,78842],[-3,3]],[[77643,78842],[-5,-2]],[[77637,78841],[-2,10]],[[77637,78854],[3,8]],[[77640,78862],[-1,4]],[[77639,78866],[-2,6]],[[77636,78875],[-14,13]],[[77622,78888],[-7,4]],[[77615,78892],[-7,7]],[[77608,78899],[-3,5]],[[77605,78904],[-4,-2]],[[77599,78902],[-3,-4]],[[77596,78898],[-5,-21]],[[77591,78877],[1,-2]],[[77592,78875],[-5,-10]],[[77587,78865],[-11,2]],[[77571,78864],[-6,5]],[[77565,78869],[-4,-1]],[[77561,78868],[-4,0]],[[77557,78868],[-8,8]],[[77549,78876],[5,9]],[[77554,78885],[-2,14]],[[77549,78906],[-7,8]],[[77542,78914],[-10,1]],[[77532,78915],[-7,8]],[[77525,78923],[-4,8]],[[77521,78931],[-1,6]],[[77520,78937],[-10,11]],[[77510,78948],[-4,6]],[[77506,78954],[-11,13]],[[77495,78967],[-2,3]],[[77493,78970],[-5,9]],[[77488,78979],[-8,5]],[[77480,78984],[-1,12]],[[77479,78996],[-4,12]],[[77475,79008],[-5,10]],[[77470,79018],[-33,19]],[[77437,79037],[-14,1]],[[77423,79038],[-1,-3]],[[77422,79035],[-6,-5]],[[77416,79030],[-1,12]],[[77415,79042],[-3,13]],[[77411,79056],[-5,1]],[[77406,79059],[-2,12]],[[77404,79071],[-8,8]],[[77396,79079],[-10,5]],[[79785,78160],[86,350]],[[80547,77906],[8,195],[-245,422],[-257,55],[-34,326]],[[80024,78909],[8,25]],[[80031,78937],[9,15]],[[80040,78952],[0,4]],[[80040,78956],[4,6]],[[80044,78962],[2,15]],[[80039,78984],[-3,7]],[[80036,78991],[0,4]],[[80036,78995],[1,3]],[[80037,78998],[2,5]],[[79397,78055],[388,105]],[[79735,77967],[50,193]],[[78609,78087],[-213,35],[-162,361]],[[78233,78485],[-7,0]],[[78225,78485],[-1,3]],[[78224,78488],[-1,3]],[[78223,78491],[-7,3]],[[78214,78495],[-3,-1]],[[78211,78494],[-4,1]],[[78207,78495],[-3,-8]],[[78204,78487],[-2,-1]],[[78202,78486],[-2,-1]],[[78198,78489],[-7,-4]],[[78193,78484],[-1,-1]],[[78187,78478],[-1,1]],[[78186,78479],[0,3]],[[78186,78482],[-1,5]],[[78185,78487],[-12,-2]],[[78173,78485],[-3,0]],[[78170,78485],[-11,1]],[[78158,78484],[-3,-1]],[[78155,78483],[-2,5]],[[78152,78490],[-12,4]],[[78140,78494],[0,4]],[[78140,78498],[2,0]],[[78142,78498],[-6,5]],[[78134,78503],[-5,2]],[[78129,78505],[0,5]],[[78129,78511],[-7,3]],[[78121,78518],[-9,-4]],[[78112,78514],[-2,-1]],[[78110,78513],[-1,-7]],[[78106,78515],[-2,0]],[[78104,78515],[-12,-9]],[[78092,78506],[-5,3]],[[78087,78509],[-5,2]],[[78082,78511],[-5,6]],[[78077,78517],[-8,15]],[[78069,78532],[-8,8]],[[78061,78540],[-4,1]],[[78057,78541],[-5,3]],[[78774,78063],[-165,24]],[[80677,77774],[-130,132]],[[80036,77855],[1,9]],[[80037,77864],[16,22]],[[80053,77886],[1,19]],[[80054,77909],[-7,3]],[[80044,77914],[-15,52]],[[80029,77966],[6,21]],[[80035,77987],[4,32]],[[80039,78019],[-4,15]],[[80035,78034],[8,4]],[[80043,78038],[9,14]],[[80044,78054],[7,15]],[[80051,78069],[7,7]],[[80058,78078],[-4,1]],[[80054,78079],[-4,11]],[[80050,78090],[2,21]],[[80052,78111],[-21,15]],[[80031,78126],[-3,28]],[[80028,78154],[-4,-5]],[[80024,78149],[0,15]],[[80024,78164],[9,9]],[[80033,78173],[2,5]],[[80035,78178],[-9,-1]],[[80026,78177],[-9,5]],[[80017,78191],[-2,19]],[[80014,78212],[-17,19]],[[79997,78231],[-14,4]],[[79983,78235],[-12,29]],[[79971,78264],[-2,9]],[[79969,78273],[-1,30]],[[79964,78309],[-2,15]],[[79962,78324],[-6,11]],[[79956,78335],[10,35]],[[79970,78371],[1,2]],[[79971,78373],[-7,3]],[[79964,78376],[-7,8]],[[79955,78386],[-6,2]],[[79949,78388],[-17,14]],[[79931,78404],[-11,12]],[[79920,78416],[-10,6]],[[79910,78422],[-9,29]],[[79901,78451],[-1,-9]],[[79900,78442],[-4,-2]],[[79894,78441],[-13,28]],[[79881,78469],[-13,18]],[[79868,78487],[-6,4]],[[79868,78506],[3,4]],[[76416,78206],[7,47]],[[76423,78253],[7,9]],[[76433,78263],[-17,45]],[[76416,78308],[-3,6]],[[76413,78314],[1,30]],[[76414,78344],[4,6]],[[76418,78350],[-11,0]],[[76404,78352],[6,10]],[[76410,78362],[-4,2]],[[76406,78364],[-10,15]],[[76396,78379],[5,3]],[[76403,78384],[7,16]],[[76410,78400],[2,1]],[[76412,78401],[-9,19]],[[76403,78420],[2,9]],[[76405,78429],[87,196]],[[76492,78625],[9,3]],[[76501,78628],[1,0]],[[76502,78625],[6,-3]],[[76510,78624],[7,16]],[[76517,78640],[5,24]],[[76520,78670],[4,10]],[[76524,78680],[0,7]],[[76524,78687],[-8,1]],[[76515,78688],[1,13]],[[76517,78705],[0,7]],[[76517,78712],[10,13]],[[76527,78725],[4,12]],[[76531,78737],[4,36]],[[76535,78773],[-2,15]],[[76533,78788],[4,14]],[[76537,78802],[10,72]],[[76547,78874],[1,9]],[[76548,78883],[6,8]],[[76556,78894],[3,14]],[[76561,78914],[7,14]],[[76570,78932],[-1,6]],[[76569,78938],[-2,3]],[[76567,78941],[0,1]],[[76567,78942],[0,1]],[[76567,78944],[0,1]],[[76567,78945],[0,3]],[[76567,78948],[0,1]],[[76567,78949],[0,4]],[[76567,78953],[1,2]],[[76568,78955],[1,1]],[[76569,78956],[1,1]],[[76570,78957],[1,0]],[[76571,78957],[1,1]],[[76572,78958],[0,1]],[[76572,78959],[2,5]],[[76574,78964],[1,2]],[[76575,78966],[1,2]],[[76576,78968],[0,0]],[[76576,78968],[1,0]],[[76577,78968],[1,0]],[[76578,78968],[0,-1]],[[76578,78967],[1,1]],[[76579,78968],[1,0]],[[76580,78968],[1,0]],[[76581,78968],[3,2]],[[76584,78970],[0,1]],[[76584,78971],[1,1]],[[76585,78972],[0,1]],[[76585,78973],[0,1]],[[76585,78974],[0,1]],[[76585,78975],[-1,2]],[[76584,78977],[-1,1]],[[76583,78978],[-1,0]],[[76582,78978],[-2,0]],[[76580,78978],[-1,0]],[[76579,78978],[-1,0]],[[76578,78978],[-1,0]],[[76577,78978],[0,0]],[[76577,78978],[-1,0]],[[76576,78978],[0,0]],[[76575,78979],[0,1]],[[76575,78980],[-1,0]],[[76574,78980],[-1,4]],[[76573,78984],[-1,2]],[[76572,78986],[0,0]],[[76572,78986],[-6,5]],[[76566,78991],[0,1]],[[76566,78992],[1,1]],[[76425,78173],[-9,33]],[[80245,77525],[-209,330]],[[79876,77491],[1,5]],[[79877,77496],[-11,24]],[[79870,77522],[4,10]],[[79874,77532],[-9,43]],[[79866,77587],[10,82]],[[79876,77675],[-3,9]],[[79874,77687],[20,20]],[[79894,77707],[3,18]],[[79907,77731],[1,16]],[[79908,77747],[1,12]],[[79912,77767],[12,-13]],[[79924,77754],[7,10]],[[79931,77764],[28,1]],[[79959,77765],[14,13]],[[79973,77778],[8,8]],[[79981,77786],[11,9]],[[79992,77795],[-1,7]],[[79991,77802],[2,10]],[[79993,77812],[16,4]],[[80009,77820],[4,3]],[[80013,77823],[8,7]],[[80020,77843],[14,9]],[[80034,77852],[2,3]],[[80325,77394],[-80,131]],[[79748,77429],[128,62]],[[78643,77463],[-97,431],[63,193]],[[79941,77272],[-6,44]],[[79935,77316],[-12,39]],[[79923,77371],[4,8]],[[79927,77379],[1,9]],[[79928,77388],[-9,5]],[[79919,77393],[-8,9]],[[79911,77402],[9,17]],[[79914,77419],[-22,21]],[[79890,77443],[-1,10]],[[79888,77458],[-5,5]],[[79876,77466],[2,13]],[[79879,77482],[-3,9]],[[80016,77253],[-74,17]],[[79947,77241],[-5,29]],[[79103,77302],[46,-177]],[[79833,77167],[114,74]],[[79304,77218],[167,-78]],[[79471,77140],[1,1]],[[79472,77141],[2,0]],[[79474,77141],[4,0]],[[79478,77141],[1,1]],[[79479,77142],[2,1]],[[79481,77143],[5,5]],[[79486,77148],[1,1]],[[79487,77149],[2,0]],[[79489,77149],[1,0]],[[79490,77149],[1,0]],[[79491,77149],[3,-2]],[[79495,77147],[0,0]],[[79495,77147],[2,0]],[[79497,77147],[1,1]],[[79498,77148],[2,-1]],[[79500,77146],[0,-1]],[[79500,77145],[1,-2]],[[79501,77143],[2,-1]],[[79510,77155],[13,-11]],[[79524,77143],[5,-2]],[[79531,77143],[6,0]],[[79539,77141],[2,-6]],[[79541,77135],[3,0]],[[79544,77135],[14,6]],[[79558,77141],[10,4]],[[79568,77145],[9,6]],[[79577,77151],[13,-5]],[[79590,77146],[8,2]],[[79598,77148],[11,4]],[[79609,77152],[2,5]],[[79611,77157],[14,-5]],[[79628,77146],[-1,-16]],[[79629,77127],[2,-10]],[[79631,77117],[1,-1]],[[79632,77115],[2,-1]],[[79634,77114],[2,0]],[[79636,77114],[2,1]],[[79638,77115],[1,1]],[[79639,77116],[9,-2]],[[79649,77114],[12,-4]],[[79661,77110],[2,-4]],[[79663,77106],[1,-3]],[[79664,77103],[1,-2]],[[79665,77101],[0,-7]],[[79665,77094],[-3,-4]],[[79662,77090],[0,-3]],[[79662,77087],[0,-2]],[[79662,77085],[-2,-4]],[[79660,77081],[-11,-14]],[[79649,77067],[8,-7]],[[79657,77060],[6,-8]],[[79663,77052],[2,-2]],[[79665,77050],[3,1]],[[79668,77051],[1,7]],[[79669,77058],[4,0]],[[79673,77058],[-1,-7]],[[79672,77051],[0,-4]],[[79672,77047],[2,-2]],[[79674,77045],[-1,-7]],[[79673,77038],[0,-2]],[[79673,77036],[-1,-1]],[[79672,77035],[0,-1]],[[79672,77034],[0,-1]],[[79672,77033],[-1,-1]],[[79671,77032],[0,-1]],[[79671,77031],[0,-3]],[[79670,77027],[0,-3]],[[79670,77024],[0,-1]],[[79670,77023],[0,-1]],[[79670,77021],[0,-1]],[[79670,77020],[0,-2]],[[79670,77018],[0,0]],[[79670,77017],[0,-1]],[[79671,77015],[0,-1]],[[79671,77014],[1,-1]],[[79672,77013],[4,0]],[[79676,77013],[1,1]],[[79677,77015],[1,1]],[[79678,77016],[0,0]],[[79679,77017],[0,1]],[[79680,77020],[1,2]],[[79681,77022],[3,5]],[[79684,77027],[0,1]],[[79684,77028],[1,1]],[[79685,77029],[0,0]],[[79686,77029],[1,-1]],[[79687,77028],[1,-1]],[[79688,77027],[1,-2]],[[79689,77025],[0,-1]],[[79689,77024],[1,-2]],[[79690,77022],[1,-1]],[[79691,77021],[1,-1]],[[79692,77020],[0,-1]],[[79692,77019],[1,0]],[[79693,77019],[0,0]],[[79693,77019],[2,0]],[[79695,77019],[1,1]],[[79696,77020],[0,1]],[[79696,77021],[2,1]],[[79698,77022],[1,2]],[[79699,77024],[3,2]],[[79702,77026],[2,0]],[[79704,77026],[1,-1]],[[79706,77025],[1,0]],[[79707,77024],[1,0]],[[79708,77024],[1,0]],[[79709,77023],[1,0]],[[79710,77023],[3,-4]],[[79713,77019],[0,-1]],[[79713,77018],[0,0]],[[79713,77018],[1,-1]],[[79714,77017],[1,-1]],[[79715,77016],[0,-1]],[[79715,77015],[0,0]],[[79716,77014],[0,0]],[[79716,77013],[1,-1]],[[79718,77011],[0,0]],[[79718,77011],[0,-2]],[[79718,77009],[1,-2]],[[79719,77007],[1,-2]],[[79720,77005],[1,-2]],[[79721,77003],[0,-1]],[[79721,77002],[1,-1]],[[79722,77001],[0,-1]],[[79722,77000],[1,-3]],[[79723,76997],[1,-3]],[[79724,76994],[1,0]],[[79725,76994],[1,-1]],[[79726,76993],[1,0]],[[79727,76993],[1,2]],[[79728,76995],[1,1]],[[79729,76996],[1,0]],[[79730,76996],[0,1]],[[79730,76997],[1,1]],[[79731,76998],[1,0]],[[79732,76998],[1,1]],[[79733,76999],[3,0]],[[79736,76999],[0,0]],[[79736,76999],[1,0]],[[79737,76999],[1,0]],[[79738,76999],[1,0]],[[79739,76999],[0,0]],[[79739,76999],[1,-1]],[[79740,76998],[0,-1]],[[79740,76997],[2,-3]],[[79742,76994],[0,-1]],[[79742,76993],[0,-1]],[[79742,76992],[0,-1]],[[79742,76991],[0,-1]],[[79742,76990],[0,-2]],[[79742,76988],[0,-1]],[[79742,76987],[0,-1]],[[79742,76986],[-1,-2]],[[79741,76984],[0,0]],[[79741,76984],[0,-2]],[[79741,76982],[0,-1]],[[79741,76981],[0,-1]],[[79741,76979],[1,-1]],[[79742,76978],[0,0]],[[79742,76978],[3,-7]],[[79745,76971],[1,0]],[[79746,76971],[5,-7]],[[79782,76950],[21,19]],[[79803,76969],[2,13]],[[79805,76982],[19,7]],[[79824,76989],[19,6]],[[79843,76995],[32,7]],[[79875,77002],[7,-3]],[[79882,76999],[3,-1]],[[80558,76974],[-80,431],[-233,120]],[[79079,77174],[70,-49]],[[79149,77125],[63,-181]],[[79885,76998],[32,39]],[[79917,77037],[12,-4]],[[79929,77033],[9,-3]],[[79938,77030],[20,3]],[[79958,77033],[12,5]],[[79970,77038],[1,15]],[[79971,77053],[-19,0]],[[79952,77053],[8,16]],[[79960,77069],[1,1]],[[79961,77070],[0,1]],[[79961,77073],[0,0]],[[79961,77074],[0,1]],[[79961,77075],[0,1]],[[79961,77076],[-1,2]],[[79960,77078],[0,0]],[[79960,77078],[0,1]],[[79960,77080],[-1,1]],[[79959,77081],[0,1]],[[79959,77082],[0,2]],[[79959,77084],[0,1]],[[79959,77085],[0,1]],[[79959,77086],[-1,2]],[[79958,77088],[0,2]],[[79958,77090],[0,1]],[[79958,77091],[0,2]],[[79958,77093],[0,1]],[[79958,77095],[0,4]],[[79958,77099],[0,1]],[[79958,77100],[0,4]],[[79958,77104],[1,0]],[[79959,77105],[0,4]],[[79960,77110],[0,0]],[[79960,77111],[0,1]],[[79960,77112],[0,2]],[[79960,77114],[1,1]],[[79961,77115],[0,0]],[[79961,77115],[0,2]],[[79961,77117],[3,7]],[[79966,77126],[15,30]],[[79981,77156],[-2,33]],[[79979,77189],[-8,13]],[[79968,77215],[-21,26]],[[80775,76848],[-163,521],[-65,537]],[[79888,76972],[-2,10]],[[79886,76982],[-2,10]],[[79324,77013],[2,2]],[[79326,77015],[8,3]],[[79339,77022],[5,-1]],[[79344,77021],[23,45]],[[79367,77066],[2,7]],[[79369,77073],[9,15]],[[79378,77088],[8,-4]],[[79386,77084],[9,-5]],[[79397,77078],[-1,-2]],[[79396,77076],[2,-1]],[[79399,77077],[9,5]],[[79408,77082],[3,0]],[[79411,77082],[7,4]],[[79418,77086],[4,-2]],[[79423,77085],[-3,5]],[[79420,77090],[4,5]],[[79424,77095],[-4,1]],[[79420,77096],[0,3]],[[79420,77099],[7,10]],[[79427,77109],[4,2]],[[79431,77111],[2,1]],[[79433,77112],[0,3]],[[79429,77118],[7,3]],[[79437,77121],[3,8]],[[79440,77129],[4,1]],[[79444,77130],[2,-1]],[[79446,77129],[1,0]],[[79447,77129],[2,0]],[[79449,77129],[2,1]],[[79451,77130],[1,0]],[[79452,77130],[1,-1]],[[79453,77129],[1,-1]],[[79454,77128],[1,-1]],[[79455,77127],[0,0]],[[79455,77127],[4,2]],[[79459,77129],[2,3]],[[79461,77133],[1,1]],[[79462,77134],[1,1]],[[79463,77135],[2,3]],[[79465,77138],[2,0]],[[79467,77138],[1,0]],[[79468,77138],[0,0]],[[79468,77138],[2,1]],[[79470,77139],[1,1]],[[79227,76944],[97,69]],[[79212,76944],[15,0]],[[78283,77061],[0,2]],[[78283,77063],[1,7]],[[78284,77070],[-6,18]],[[78278,77088],[-10,16]],[[78268,77104],[-3,3]],[[78263,77110],[-5,5]],[[78252,77118],[-5,18]],[[78247,77136],[-4,5]],[[78243,77141],[0,6]],[[78243,77147],[-2,8]],[[78241,77155],[-11,5]],[[78230,77160],[-11,11]],[[78219,77171],[-2,15]],[[78217,77186],[0,2]],[[78218,77188],[3,10]],[[78221,77198],[4,16]],[[78225,77214],[2,9]],[[78227,77227],[3,20]],[[78230,77247],[1,6]],[[78231,77253],[-3,1]],[[78228,77254],[0,8]],[[78228,77262],[0,3]],[[78228,77265],[4,35]],[[78232,77300],[-5,6]],[[78227,77306],[-4,3]],[[78223,77309],[-1,10]],[[78222,77319],[1,5]],[[78223,77324],[-1,1]],[[78222,77325],[-3,4]],[[78219,77329],[2,8]],[[78221,77338],[-9,26]],[[78212,77365],[2,3]],[[78214,77368],[-4,1]],[[78210,77367],[-2,1]],[[78208,77368],[-4,19]],[[78204,77387],[-7,18]],[[78197,77405],[3,6]],[[78200,77413],[-1,4]],[[78199,77417],[-1,6]],[[78198,77423],[3,24]],[[78201,77447],[2,4]],[[78203,77453],[-6,6]],[[78197,77459],[5,15]],[[78202,77474],[2,23]],[[78204,77497],[4,2]],[[78208,77499],[4,7]],[[78212,77506],[-1,8]],[[78211,77514],[-1,11]],[[78210,77525],[-5,11]],[[78205,77536],[1,3]],[[78206,77539],[3,0]],[[78209,77539],[-1,4]],[[78210,77546],[-3,25]],[[78207,77571],[4,4]],[[78209,77577],[-3,-1]],[[78206,77578],[-8,28]],[[78196,77613],[2,9]],[[78198,77622],[4,18]],[[78202,77640],[5,21]],[[78207,77661],[-11,9]],[[78196,77670],[6,4]],[[78202,77674],[-2,6]],[[78200,77680],[-1,7]],[[78199,77687],[-4,4]],[[78195,77693],[0,16]],[[78193,77710],[4,7]],[[78197,77717],[-2,7]],[[78195,77724],[0,7]],[[78195,77731],[-8,11]],[[78186,77739],[-2,-1]],[[78184,77738],[-3,3]],[[78183,77743],[1,4]],[[78184,77747],[0,2]],[[78184,77749],[-4,2]],[[78180,77751],[-3,-5]],[[78177,77746],[-5,14]],[[78172,77760],[-4,8]],[[78168,77768],[1,6]],[[78169,77774],[-2,15]],[[78165,77794],[3,8]],[[78168,77802],[-2,7]],[[78166,77809],[-5,6]],[[78161,77815],[-1,2]],[[78161,77819],[-3,3]],[[78158,77822],[-22,6]],[[78136,77828],[-1,10]],[[78135,77838],[-2,5]],[[78133,77843],[3,1]],[[78136,77844],[0,3]],[[78136,77847],[-4,10]],[[78132,77860],[-1,12]],[[78131,77872],[3,5]],[[78134,77879],[-2,10]],[[78132,77889],[-1,6]],[[78131,77895],[1,9]],[[78132,77907],[-2,3]],[[78129,77911],[3,6]],[[78133,77920],[-5,12]],[[78127,77936],[3,7]],[[78130,77943],[-2,18]],[[78128,77961],[-2,15]],[[78126,77976],[-1,10]],[[78121,77987],[5,8]],[[78126,77995],[5,4]],[[78131,77999],[-6,17]],[[78125,78016],[-7,13]],[[78118,78029],[1,12]],[[78119,78041],[0,12]],[[78119,78053],[1,3]],[[78121,78057],[-4,7]],[[78117,78064],[-7,10]],[[78110,78074],[-11,30]],[[78099,78104],[-15,18]],[[78084,78123],[-1,7]],[[78083,78130],[-3,5]],[[78080,78135],[-4,8]],[[78076,78143],[-2,0]],[[78074,78143],[-7,14]],[[78066,78164],[15,25]],[[78081,78189],[2,5]],[[78083,78194],[5,17]],[[78088,78211],[2,5]],[[78090,78216],[2,0]],[[78092,78216],[0,10]],[[78092,78226],[-5,37]],[[78087,78263],[0,5]],[[78087,78268],[-6,3]],[[78081,78271],[1,7]],[[78082,78278],[2,1]],[[78084,78279],[-3,4]],[[78081,78283],[8,14]],[[78089,78297],[0,4]],[[78089,78303],[-3,32]],[[78086,78335],[-1,4]],[[78085,78339],[-4,1]],[[78081,78340],[-1,1]],[[78080,78341],[-2,-2]],[[78078,78339],[-1,8]],[[78077,78349],[1,3]],[[78078,78352],[-1,7]],[[78077,78359],[-6,1]],[[78070,78360],[-3,0]],[[78067,78360],[-5,0]],[[78058,78360],[-7,18]],[[78051,78378],[-4,1]],[[78047,78379],[0,-3]],[[78047,78376],[-3,1]],[[78044,78378],[-1,3]],[[78043,78381],[-3,19]],[[78040,78400],[-4,4]],[[78038,78407],[7,3]],[[78046,78412],[-2,5]],[[78044,78417],[2,4]],[[78046,78422],[-5,12]],[[78041,78434],[-3,18]],[[78038,78452],[3,9]],[[78041,78461],[0,5]],[[78044,78464],[0,4]],[[78044,78473],[-4,7]],[[78040,78480],[2,6]],[[78042,78486],[1,7]],[[78043,78493],[2,10]],[[78045,78507],[4,10]],[[78049,78517],[5,17]],[[78054,78535],[-2,9]],[[76845,77230],[0,12]],[[76845,77242],[-3,16]],[[76842,77258],[-18,22]],[[76824,77280],[-3,23]],[[76821,77303],[0,23]],[[76821,77326],[-12,-4]],[[76809,77322],[0,11]],[[76809,77333],[-2,8]],[[76807,77341],[3,17]],[[76808,77361],[-22,16]],[[76786,77377],[2,17]],[[76788,77394],[-6,6]],[[76782,77400],[-8,-8]],[[76774,77392],[-7,9]],[[76767,77401],[-24,29]],[[76743,77430],[7,14]],[[76750,77444],[-13,11]],[[76736,77455],[-14,16]],[[76722,77471],[-15,3]],[[76707,77474],[-2,3]],[[76705,77477],[0,1]],[[76705,77478],[0,2]],[[76705,77480],[0,2]],[[76705,77482],[-1,2]],[[76704,77484],[0,1]],[[76704,77485],[0,1]],[[76704,77486],[-1,0]],[[76703,77486],[0,2]],[[76703,77488],[0,0]],[[76702,77488],[0,1]],[[76702,77490],[-1,0]],[[76701,77490],[0,2]],[[76701,77492],[-1,2]],[[76700,77494],[0,5]],[[76700,77499],[0,4]],[[76700,77504],[2,3]],[[76702,77507],[1,0]],[[76703,77507],[0,1]],[[76703,77509],[1,2]],[[76704,77511],[0,2]],[[76705,77514],[0,1]],[[76705,77516],[0,1]],[[76704,77518],[0,1]],[[76704,77519],[0,1]],[[76704,77520],[-1,1]],[[76703,77521],[0,0]],[[76703,77521],[-1,1]],[[76701,77522],[0,1]],[[76701,77523],[-1,1]],[[76700,77524],[-1,0]],[[76699,77524],[-1,0]],[[76698,77524],[-1,1]],[[76697,77525],[-1,0]],[[76696,77526],[0,1]],[[76696,77527],[-1,1]],[[76694,77528],[0,1]],[[76694,77529],[-1,2]],[[76693,77532],[-1,0]],[[76692,77532],[0,1]],[[76692,77533],[-1,1]],[[76691,77534],[-2,2]],[[76689,77536],[0,0]],[[76688,77536],[0,0]],[[76688,77536],[-1,0]],[[76687,77536],[-2,-1]],[[76685,77535],[-1,-1]],[[76684,77534],[-1,-1]],[[76683,77533],[-2,-3]],[[76681,77530],[-1,-1]],[[76680,77529],[-2,-2]],[[76678,77527],[-5,-3]],[[76673,77524],[-1,0]],[[76672,77524],[0,7]],[[76672,77531],[0,1]],[[76673,77532],[5,18]],[[76678,77550],[-9,12]],[[76662,77571],[-38,41]],[[76624,77612],[-10,14]],[[76612,77631],[-14,10]],[[76598,77641],[-7,7]],[[76591,77648],[-1,1]],[[76590,77649],[-1,4]],[[76589,77653],[1,5]],[[76590,77658],[0,1]],[[76590,77659],[1,2]],[[76591,77661],[0,2]],[[76591,77663],[-1,5]],[[76590,77668],[0,0]],[[76590,77668],[-1,0]],[[76589,77668],[-1,0]],[[76588,77668],[0,0]],[[76588,77668],[-1,0]],[[76587,77668],[0,0]],[[76587,77668],[-1,1]],[[76586,77669],[-1,-1]],[[76585,77668],[-1,0]],[[76584,77668],[-1,-1]],[[76583,77667],[-1,-1]],[[76582,77666],[-1,-1]],[[76581,77665],[-1,0]],[[76580,77665],[-1,-1]],[[76579,77664],[0,0]],[[76579,77664],[-1,0]],[[76578,77664],[-4,0]],[[76574,77664],[-3,2]],[[76571,77666],[0,1]],[[76571,77667],[-1,0]],[[76570,77667],[-1,0]],[[76569,77667],[-1,0]],[[76568,77667],[-1,1]],[[76567,77668],[-1,1]],[[76566,77669],[0,1]],[[76566,77670],[-1,0]],[[76565,77670],[-5,4]],[[76560,77674],[-1,1]],[[76559,77675],[-1,0]],[[76558,77675],[-2,0]],[[76556,77675],[-2,0]],[[76554,77675],[-1,0]],[[76553,77675],[-1,-1]],[[76552,77674],[0,-1]],[[76552,77673],[-1,0]],[[76551,77673],[-6,-10]],[[76545,77663],[0,0]],[[76545,77662],[0,-1]],[[76545,77661],[0,-1]],[[76545,77660],[2,-4]],[[76547,77656],[0,-3]],[[76547,77653],[-4,-3]],[[76543,77650],[-3,4]],[[76540,77654],[-1,3]],[[76539,77657],[-1,2]],[[76538,77659],[0,0]],[[76538,77659],[-1,2]],[[76537,77661],[0,2]],[[76537,77663],[-1,1]],[[76536,77664],[0,1]],[[76536,77665],[-2,4]],[[76534,77669],[-2,2]],[[76532,77671],[-1,1]],[[76531,77672],[-1,1]],[[76530,77673],[-4,3]],[[76522,77677],[2,35]],[[76524,77712],[-1,19]],[[76523,77731],[-8,8]],[[76515,77739],[-7,16]],[[76508,77755],[-4,8]],[[76504,77763],[-7,26]],[[76497,77789],[-17,-4]],[[76480,77785],[-8,19]],[[76472,77804],[-4,-16]],[[76468,77788],[-10,11]],[[76458,77799],[-10,4]],[[76448,77803],[-1,16]],[[76445,77825],[-13,7]],[[76432,77832],[-12,1]],[[76420,77835],[10,19]],[[76430,77854],[-12,13]],[[76418,77867],[16,16]],[[76433,77891],[-18,2]],[[76415,77893],[8,13]],[[76423,77906],[6,40]],[[76429,77946],[4,30]],[[76433,77976],[-19,12]],[[76412,77993],[-9,12]],[[76403,78005],[4,3]],[[76407,78008],[-4,9]],[[76403,78017],[-2,54]],[[76397,78075],[-17,13]],[[76380,78088],[1,14]],[[76381,78102],[-6,25]],[[76375,78127],[6,9]],[[76381,78136],[12,4]],[[76390,78148],[14,9]],[[76404,78157],[0,12]],[[76404,78169],[6,7]],[[76411,78177],[-2,6]],[[76405,78186],[3,8]],[[76408,78194],[0,10]],[[76408,78204],[8,2]],[[79118,76920],[94,24]],[[76893,77111],[-48,119]],[[80364,76602],[-214,-255]],[[79136,76732],[91,212]],[[78311,76703],[-28,358]],[[80137,76360],[-2,3]],[[80133,76371],[0,3]],[[80133,76374],[1,12]],[[80134,76386],[-20,21]],[[80109,76402],[-7,3]],[[80097,76418],[-17,-1]],[[80080,76417],[-11,2]],[[80063,76421],[-6,3]],[[80057,76424],[-19,5]],[[80032,76429],[-7,10]],[[80025,76439],[-10,9]],[[80015,76448],[-5,-3]],[[80010,76445],[-4,3]],[[80006,76448],[-5,16]],[[80003,76466],[4,-4]],[[80007,76462],[5,4]],[[80015,76467],[3,22]],[[80018,76489],[-6,23]],[[80006,76518],[5,7]],[[80011,76528],[-8,6]],[[80003,76534],[-23,26]],[[79977,76557],[-6,8]],[[79971,76565],[-5,2]],[[79966,76567],[-4,13]],[[79959,76578],[-4,8]],[[79955,76586],[-17,12]],[[79938,76598],[-5,10]],[[79935,76610],[3,2]],[[79938,76612],[-14,12]],[[79924,76624],[-6,17]],[[79918,76641],[18,33]],[[79937,76676],[-5,3]],[[79932,76679],[-2,-1]],[[79930,76678],[-4,-3]],[[79926,76675],[-11,13]],[[79915,76688],[-2,24]],[[79910,76712],[1,14]],[[79915,76735],[15,21]],[[79930,76756],[-6,-7]],[[79923,76751],[-1,5]],[[79922,76756],[-6,4]],[[79910,76775],[-6,11]],[[79904,76786],[-1,11]],[[79905,76799],[13,-3]],[[79918,76796],[4,4]],[[79922,76800],[-1,13]],[[79921,76813],[-6,5]],[[79914,76819],[-5,10]],[[79909,76829],[-11,3]],[[79896,76834],[0,15]],[[79896,76849],[-7,19]],[[79889,76871],[11,24]],[[79894,76898],[-2,8]],[[79892,76906],[1,21]],[[79893,76965],[-5,7]],[[80150,76347],[-5,9]],[[80145,76356],[2,4]],[[80147,76360],[-1,1]],[[80146,76361],[-3,2]],[[80143,76363],[-6,-3]],[[77628,76690],[2,5]],[[77630,76695],[-1,2]],[[77629,76697],[-11,9]],[[77610,76700],[-5,6]],[[77607,76722],[-2,12]],[[77605,76734],[-17,14]],[[77588,76748],[-15,10]],[[77573,76758],[-22,-5]],[[77548,76757],[-5,19]],[[77543,76776],[20,41]],[[77563,76817],[4,18]],[[77567,76835],[0,32]],[[77567,76867],[-56,16]],[[77510,76887],[-4,10]],[[77506,76897],[-13,-14]],[[77493,76883],[-21,-3]],[[77472,76880],[-38,3]],[[77434,76883],[-14,10]],[[77419,76901],[7,5]],[[77426,76906],[17,20]],[[77442,76930],[-44,26]],[[77398,76956],[-8,-16]],[[77384,76935],[-11,13]],[[77373,76948],[-5,15]],[[77363,76973],[-22,46]],[[77341,77019],[-1,4]],[[77340,77023],[1,16]],[[77341,77039],[-8,9]],[[77328,77056],[-26,25]],[[77299,77081],[-28,-19]],[[77271,77062],[-17,-8]],[[77254,77054],[5,24]],[[77259,77078],[5,-4]],[[77264,77074],[2,9]],[[77262,77090],[-12,5]],[[77250,77095],[-13,-3]],[[77237,77092],[-11,1]],[[77226,77093],[-2,-7]],[[77224,77086],[-6,-4]],[[77218,77082],[-6,-5]],[[77212,77077],[-19,24]],[[77193,77101],[-4,18]],[[77187,77121],[-33,35]],[[77154,77156],[-7,6]],[[77147,77162],[5,8]],[[77152,77170],[-8,2]],[[77144,77172],[-23,15]],[[77121,77187],[-8,12]],[[77113,77199],[-2,13]],[[77111,77212],[-1,-1]],[[77110,77211],[-1,-1]],[[77109,77210],[-1,-1]],[[77108,77209],[-1,0]],[[77107,77209],[-2,-1]],[[77105,77208],[-1,-1]],[[77104,77207],[-2,0]],[[77102,77207],[-1,-1]],[[77101,77206],[-2,-1]],[[77099,77205],[-1,0]],[[77098,77205],[-4,-2]],[[77094,77203],[-1,0]],[[77093,77202],[-1,0]],[[77091,77202],[-1,-1]],[[77090,77201],[-2,0]],[[77088,77201],[-1,-1]],[[77087,77200],[-1,0]],[[77085,77199],[-3,-1]],[[77082,77198],[-1,0]],[[77081,77197],[-2,-1]],[[77079,77196],[-1,-1]],[[77078,77195],[-1,-1]],[[77077,77194],[0,-1]],[[77077,77193],[0,-1]],[[77077,77192],[-1,0]],[[77076,77192],[0,-1]],[[77076,77191],[0,-1]],[[77076,77190],[-1,-2]],[[77075,77188],[0,-1]],[[77075,77187],[-1,-3]],[[77074,77184],[0,0]],[[77074,77184],[-1,-1]],[[77073,77183],[0,-1]],[[77073,77182],[-1,-1]],[[77072,77181],[-1,-2]],[[77071,77179],[-1,-1]],[[77069,77178],[0,0]],[[77068,77178],[-1,1]],[[77066,77180],[0,1]],[[77066,77181],[-1,1]],[[77065,77182],[-1,1]],[[77064,77183],[-1,2]],[[77063,77185],[-2,2]],[[77061,77187],[0,0]],[[77061,77187],[-1,0]],[[77060,77187],[-2,-1]],[[77058,77185],[-1,0]],[[77057,77185],[-2,-2]],[[77055,77183],[0,-1]],[[77055,77182],[-2,-2]],[[77053,77180],[-1,-1]],[[77052,77179],[-1,0]],[[77051,77178],[0,0]],[[77051,77178],[-1,-2]],[[77050,77176],[0,-2]],[[77050,77174],[0,-2]],[[77050,77172],[0,-2]],[[77050,77170],[0,-1]],[[77050,77169],[1,-1]],[[77051,77167],[0,-1]],[[77051,77165],[-9,7]],[[77042,77172],[0,10]],[[77037,77191],[-21,-3]],[[77016,77188],[-10,-9]],[[77000,77182],[-1,8]],[[76998,77197],[-1,11]],[[76997,77208],[-18,-5]],[[76979,77203],[-5,-1]],[[76972,77203],[-22,12]],[[76950,77215],[-10,2]],[[76940,77217],[-11,3]],[[76929,77220],[-3,17]],[[76926,77237],[-6,4]],[[76920,77241],[-32,-13]],[[76887,77234],[-10,-1]],[[76877,77233],[-27,-8]],[[76850,77225],[-5,5]],[[80586,76177],[1,-176]],[[80473,76122],[-1,-147]],[[80677,76014],[-90,-13]],[[80587,76001],[-115,-26]],[[80257,76040],[0,1]],[[80257,76041],[11,20]],[[80268,76061],[-10,28]],[[80258,76089],[-5,16]],[[80251,76108],[-22,16]],[[80229,76126],[1,29]],[[80230,76155],[1,11]],[[80232,76168],[-10,15]],[[80222,76183],[0,4]],[[80222,76187],[6,20]],[[80228,76207],[-4,0]],[[80224,76207],[0,3]],[[80224,76211],[5,7]],[[80229,76218],[-5,2]],[[80224,76220],[-2,0]],[[80222,76220],[1,6]],[[80223,76226],[-4,8]],[[80219,76234],[1,5]],[[80220,76244],[-8,-2]],[[80211,76242],[0,15]],[[80209,76257],[-4,-1]],[[80203,76257],[-2,-2]],[[80200,76254],[-7,16]],[[80193,76270],[-5,3]],[[80188,76273],[-3,7]],[[80185,76280],[4,4]],[[80189,76284],[-1,4]],[[80188,76288],[-1,0]],[[80187,76288],[0,0]],[[80187,76288],[-1,1]],[[80186,76289],[0,0]],[[80185,76289],[0,1]],[[80184,76290],[-3,1]],[[80181,76291],[-1,0]],[[80180,76291],[-1,0]],[[80179,76291],[0,0]],[[80179,76291],[-1,1]],[[80178,76293],[0,2]],[[80178,76295],[0,2]],[[80178,76297],[0,2]],[[80177,76301],[0,1]],[[80177,76302],[-1,1]],[[80176,76303],[0,1]],[[80176,76304],[-3,0]],[[80173,76304],[0,0]],[[80173,76304],[-1,1]],[[80172,76305],[-1,1]],[[80171,76307],[-1,1]],[[80170,76308],[0,0]],[[80169,76308],[0,1]],[[80169,76309],[-1,1]],[[80168,76310],[-1,2]],[[80167,76312],[-1,2]],[[80166,76314],[0,2]],[[80166,76316],[0,3]],[[80166,76320],[-1,3]],[[80164,76323],[0,1]],[[80164,76324],[0,0]],[[80163,76324],[0,1]],[[80163,76325],[-2,3]],[[80161,76328],[-1,1]],[[80160,76329],[0,1]],[[80160,76330],[-1,2]],[[80159,76332],[0,0]],[[80159,76332],[0,1]],[[80159,76333],[-1,1]],[[80158,76334],[-1,2]],[[80157,76336],[-3,0]],[[80154,76336],[-2,-1]],[[80152,76335],[0,-1]],[[80152,76334],[-1,0]],[[80150,76334],[-1,2]],[[80149,76336],[0,0]],[[80149,76336],[0,2]],[[80149,76338],[0,1]],[[80149,76339],[1,1]],[[80151,76340],[1,2]],[[80152,76342],[0,2]],[[80152,76345],[-1,1]],[[80151,76346],[-1,1]],[[77610,76379],[-22,48]],[[77588,76427],[4,14]],[[77592,76441],[-2,7]],[[77589,76452],[7,11]],[[77596,76463],[2,6]],[[77598,76469],[3,20]],[[77601,76489],[1,19]],[[77604,76514],[12,17]],[[77616,76531],[-9,29]],[[77598,76577],[2,4]],[[77603,76582],[7,4]],[[77610,76586],[7,2]],[[77617,76588],[-15,20]],[[77602,76608],[9,22]],[[77611,76630],[14,-3]],[[77625,76631],[0,18]],[[77625,76649],[4,0]],[[77629,76649],[-4,27]],[[77625,76676],[-6,8]],[[77619,76684],[9,6]],[[80472,75975],[-215,65]],[[79663,76011],[-135,561],[360,400]],[[77562,76270],[48,109]],[[78582,76036],[80,256],[-215,624]],[[78446,76916],[-1,-2]],[[78443,76913],[-5,-1]],[[78438,76912],[-3,-2]],[[78435,76910],[-13,4]],[[78422,76914],[-3,9]],[[78419,76923],[-2,2]],[[78417,76925],[-4,3]],[[78413,76928],[-1,2]],[[78412,76930],[2,3]],[[78412,76933],[-4,1]],[[78408,76934],[-4,6]],[[78403,76940],[-1,0]],[[78399,76941],[-25,7]],[[78374,76948],[-16,-4]],[[78356,76944],[-15,4]],[[78341,76948],[-2,3]],[[78339,76951],[2,9]],[[78341,76960],[1,4]],[[78342,76964],[3,2]],[[78345,76966],[0,4]],[[78345,76970],[-2,2]],[[78343,76972],[-8,5]],[[78333,76978],[-4,0]],[[78329,76979],[3,7]],[[78330,76991],[-4,0]],[[78326,76991],[-2,0]],[[78324,76993],[2,4]],[[78326,76997],[-3,6]],[[78323,77003],[-1,0]],[[78322,77003],[-1,-2]],[[78321,77001],[-1,10]],[[78320,77011],[-6,12]],[[78314,77023],[-14,16]],[[78300,77039],[-3,-6]],[[78297,77033],[-1,0]],[[78296,77033],[0,3]],[[78296,77040],[-3,1]],[[78293,77041],[-1,-4]],[[78292,77037],[-2,8]],[[78290,77045],[-4,6]],[[78286,77052],[-3,9]],[[80062,75802],[75,558]],[[77730,76042],[-120,337]],[[76977,76135],[34,821],[-118,155]],[[78174,75921],[-4,5]],[[78169,75927],[-1,5]],[[78168,75932],[-5,7]],[[78163,75939],[2,1]],[[78165,75940],[4,1]],[[78169,75941],[0,1]],[[78169,75942],[3,5]],[[78172,75947],[-3,5]],[[78169,75952],[-11,11]],[[78156,75964],[-6,17]],[[78150,75981],[-3,63]],[[78147,76044],[17,42]],[[78164,76086],[1,12]],[[78165,76098],[-4,10]],[[78161,76108],[-4,-4]],[[78150,76103],[-10,6]],[[78140,76109],[18,19]],[[78158,76128],[-5,7]],[[78153,76135],[2,4]],[[78155,76139],[-18,19]],[[78137,76158],[-1,9]],[[78136,76167],[-6,-1]],[[78130,76166],[-6,-4]],[[78124,76162],[-18,17]],[[78106,76179],[1,4]],[[78108,76187],[-19,16]],[[78089,76203],[-6,6]],[[78083,76209],[-4,12]],[[78079,76221],[10,1]],[[78089,76222],[-1,4]],[[78087,76227],[-3,7]],[[78083,76235],[-4,-1]],[[78077,76235],[-8,12]],[[78069,76247],[5,7]],[[78074,76254],[1,9]],[[78075,76263],[-3,16]],[[78072,76279],[-1,5]],[[78071,76284],[-19,41]],[[78052,76325],[-16,3]],[[78036,76328],[-17,5]],[[78019,76333],[-4,4]],[[78010,76347],[-17,25]],[[77992,76375],[-5,21]],[[77986,76398],[-9,10]],[[77974,76412],[-9,24]],[[77965,76436],[0,9]],[[77965,76445],[1,6]],[[77966,76451],[1,7]],[[77967,76459],[0,6]],[[77967,76465],[-3,1]],[[77964,76466],[-5,-9]],[[77958,76457],[-2,4]],[[77956,76461],[-9,7]],[[77947,76468],[-1,-11]],[[77946,76457],[-8,6]],[[77938,76463],[1,8]],[[77939,76471],[5,9]],[[77944,76480],[0,9]],[[77944,76489],[-1,2]],[[77943,76491],[-13,4]],[[77929,76494],[-2,-6]],[[77926,76479],[-21,19]],[[77905,76498],[-1,7]],[[77914,76511],[6,16]],[[77920,76527],[-11,18]],[[77909,76545],[-12,17]],[[77897,76562],[7,9]],[[77904,76571],[2,4]],[[77906,76575],[-7,1]],[[77894,76580],[-11,-4]],[[77883,76576],[-3,-2]],[[77880,76574],[-10,24]],[[77870,76598],[-14,7]],[[77855,76604],[-10,-21]],[[77841,76574],[-3,1]],[[77838,76575],[-13,-2]],[[77825,76573],[-1,3]],[[77825,76578],[7,12]],[[77833,76593],[-19,31]],[[77814,76624],[-3,12]],[[77811,76636],[-4,6]],[[77807,76642],[-7,3]],[[77799,76648],[-4,1]],[[77795,76649],[-30,-30]],[[77765,76619],[0,12]],[[77765,76631],[-1,4]],[[77764,76635],[-9,1]],[[77750,76633],[-1,4]],[[77748,76637],[-13,0]],[[77735,76637],[-6,2]],[[77728,76640],[1,4]],[[77729,76644],[6,19]],[[77734,76666],[-2,2]],[[77732,76668],[-12,-1]],[[77719,76666],[-4,-8]],[[77715,76658],[0,3]],[[77715,76661],[0,3]],[[77715,76664],[-5,-2]],[[77710,76662],[-8,2]],[[77696,76664],[-4,-4]],[[77692,76660],[-1,-3]],[[77692,76652],[6,-13]],[[77698,76639],[-10,2]],[[77688,76641],[-2,-11]],[[77686,76630],[-8,-2]],[[77678,76628],[-11,11]],[[77665,76641],[-7,-1]],[[77658,76640],[-13,0]],[[77640,76645],[-7,22]],[[77633,76667],[-3,15]],[[77630,76682],[-2,8]],[[80538,75589],[-5,16]],[[80533,75605],[-14,-6]],[[80519,75599],[-2,2]],[[80517,75601],[-7,6]],[[80510,75607],[-21,-1]],[[80489,75606],[-12,1]],[[80477,75607],[0,2]],[[80477,75609],[-2,5]],[[80475,75614],[-4,-4]],[[80468,75610],[-17,14]],[[80451,75624],[-8,7]],[[80443,75631],[-7,6]],[[80436,75637],[-2,-3]],[[80433,75629],[-1,-1]],[[80430,75627],[0,6]],[[80430,75633],[-13,13]],[[80416,75647],[-1,3]],[[80415,75650],[-8,11]],[[80407,75661],[-10,17]],[[80397,75678],[-11,3]],[[80384,75684],[-7,0]],[[80377,75684],[-10,-3]],[[80367,75681],[-7,7]],[[80360,75688],[-5,9]],[[80353,75701],[-6,16]],[[80347,75717],[-20,27]],[[80327,75744],[0,5]],[[80327,75749],[-21,44]],[[80302,75792],[2,13]],[[80304,75805],[-33,40]],[[80271,75842],[-2,-2]],[[80269,75840],[-7,6]],[[80262,75846],[-13,4]],[[80250,75858],[11,15]],[[80261,75873],[-10,26]],[[80251,75899],[-12,28]],[[80239,75927],[5,36]],[[80244,75963],[-2,9]],[[80242,75976],[8,35]],[[80250,76011],[2,13]],[[80252,76024],[1,6]],[[80253,76030],[4,9]],[[80257,76039],[0,1]],[[77166,76028],[-125,-103]],[[76869,76059],[1,2]],[[76870,76061],[107,74]],[[79859,75595],[80,-3]],[[77041,75925],[-64,210]],[[79268,75564],[-62,205]],[[79206,75769],[0,2]],[[79206,75771],[4,7]],[[79210,75778],[-2,2]],[[79208,75780],[-6,2]],[[79203,75789],[-7,8]],[[79196,75802],[4,25]],[[79200,75827],[2,7]],[[79203,75836],[0,17]],[[79203,75853],[3,11]],[[79206,75864],[1,10]],[[79207,75874],[4,8]],[[79211,75882],[12,20]],[[79221,75913],[-2,8]],[[79219,75923],[-18,28]],[[79201,75951],[-7,24]],[[79194,75975],[8,22]],[[79200,76005],[-6,18]],[[79191,76030],[0,4]],[[79191,76034],[-3,9]],[[79188,76043],[-3,3]],[[79182,76052],[-6,24]],[[79176,76076],[-1,12]],[[79175,76088],[6,18]],[[79181,76110],[-1,9]],[[79180,76126],[1,35]],[[79181,76161],[-1,35]],[[79180,76196],[-2,18]],[[79178,76214],[-4,6]],[[79174,76220],[-11,10]],[[79163,76230],[-4,-1]],[[79159,76229],[4,17]],[[79163,76246],[-9,14]],[[79154,76260],[-7,13]],[[79148,76275],[-6,13]],[[79141,76288],[-7,-7]],[[79134,76281],[16,43]],[[79150,76325],[2,6]],[[79165,76328],[7,29]],[[79172,76357],[0,6]],[[79175,76362],[5,-1]],[[79180,76361],[4,7]],[[79184,76368],[-7,4]],[[79177,76372],[-7,3]],[[79169,76381],[-3,-1]],[[79166,76380],[-2,13]],[[79164,76393],[10,2]],[[79174,76395],[1,9]],[[79175,76405],[5,7]],[[79180,76412],[3,4]],[[79183,76416],[27,-14]],[[79210,76402],[6,0]],[[79216,76402],[0,3]],[[79216,76405],[-4,8]],[[79212,76414],[-12,18]],[[79197,76442],[-6,1]],[[79191,76443],[4,9]],[[79195,76452],[1,3]],[[79196,76455],[2,12]],[[79200,76468],[15,3]],[[79215,76471],[8,21]],[[79223,76492],[7,3]],[[79230,76495],[26,10]],[[79257,76505],[2,13]],[[79259,76518],[-2,6]],[[79257,76527],[4,4]],[[79261,76531],[4,6]],[[79265,76537],[-3,21]],[[79262,76558],[4,13]],[[79266,76571],[0,6]],[[79266,76577],[0,8]],[[79266,76585],[6,0]],[[79274,76587],[-2,8]],[[79272,76595],[-20,7]],[[79255,76606],[10,9]],[[79265,76615],[1,9]],[[79266,76624],[-6,2]],[[79260,76626],[2,19]],[[79262,76645],[-4,11]],[[79259,76660],[-4,9]],[[79254,76673],[17,46]],[[79271,76719],[1,4]],[[79272,76723],[0,4]],[[79272,76728],[-9,34]],[[79263,76762],[-1,6]],[[79262,76768],[-2,7]],[[79260,76775],[3,11]],[[79263,76786],[2,6]],[[79265,76792],[1,7]],[[79266,76799],[-5,3]],[[79261,76802],[27,19]],[[79289,76822],[8,7]],[[79297,76829],[1,4]],[[79298,76833],[-3,6]],[[79295,76839],[4,9]],[[79299,76848],[-11,20]],[[79287,76870],[-1,7]],[[79286,76879],[0,4]],[[79297,76888],[2,6]],[[79299,76896],[-12,7]],[[79285,76905],[-1,13]],[[79284,76918],[19,27]],[[79303,76945],[1,1]],[[79304,76946],[4,9]],[[79308,76955],[1,4]],[[79309,76959],[24,37]],[[79333,76996],[6,2]],[[79339,76998],[0,7]],[[79339,77005],[-6,-1]],[[79330,77003],[-6,10]],[[76949,75805],[1,0]],[[76950,75805],[91,120]],[[80515,75301],[23,288]],[[79282,75313],[-14,251]],[[76617,75665],[0,1]],[[76617,75666],[20,876],[250,553]],[[76887,77095],[6,16]],[[80052,75151],[60,178]],[[80320,74934],[195,367]],[[77481,75165],[-98,250],[347,627]],[[80515,74660],[113,140],[-113,501]],[[77806,74929],[-325,236]],[[77493,74897],[-12,268]],[[78510,74726],[-350,607],[-2,556]],[[80473,74391],[42,269]],[[79355,74448],[-96,478],[23,387]],[[80041,74317],[-88,417],[-363,629],[-322,201]],[[80558,74208],[-43,452]],[[80221,74130],[-180,187]],[[80550,73986],[8,222]],[[80889,73904],[65,750],[-30,468],[-207,388],[-179,79]],[[80121,74007],[-80,310]],[[79517,74043],[46,458],[-97,499],[-184,313]],[[80178,73860],[-57,147]],[[79225,73954],[-310,915],[-477,656]],[[80616,73745],[-58,463]],[[78396,73951],[135,526],[-21,249]],[[78846,73846],[-14,242],[-322,638]],[[78846,73715],[0,131]],[[78160,73805],[-41,648],[-304,912],[-5,573],[-80,104]],[[79142,73624],[83,330]],[[80147,73452],[-26,555]],[[78971,73557],[-125,289]],[[80173,73380],[-26,72]],[[79770,73334],[-275,404],[-270,216]],[[80074,73268],[73,184]],[[77507,76387],[81,40]],[[77349,76402],[158,-15]],[[77480,76303],[27,84]],[[77284,76173],[-51,196]],[[77254,76073],[-88,-45]],[[77253,75983],[-70,-68]],[[77240,75920],[-57,-5]],[[77183,75915],[-77,-22]],[[76782,75922],[88,139]],[[76950,75805],[-13,-15]],[[76794,75892],[63,-15]],[[76863,75866],[74,-76]],[[76752,75656],[185,134]],[[76571,75413],[46,253]],[[76659,74603],[-287,-91]],[[76372,74512],[-457,733]],[[76332,74120],[40,392]],[[78438,75525],[-261,392]],[[78177,75917],[-3,4]],[[82319,81047],[-158,-454]],[[82161,80593],[-8,-8]],[[82161,80593],[-73,-20]],[[82088,80573],[-134,-256]],[[82153,80585],[5,-23]],[[82153,80585],[-7,-27]],[[83387,80328],[-301,-357],[-180,-762],[149,-243]],[[81954,80317],[39,-74]],[[81954,80317],[-2,-140]],[[81993,80243],[-41,-66]],[[81952,80177],[-36,-29]],[[81840,80180],[76,-32]],[[81916,80148],[294,-1253],[-48,-291],[251,-774]],[[83541,78602],[88,-275]],[[83629,78327],[-3,-1]],[[83629,78327],[164,-570],[344,-614],[147,-97]],[[84284,77046],[-76,-385]],[[84284,77046],[175,-428]],[[82623,77076],[10,-682]],[[83084,76860],[58,-752],[79,-192]],[[84208,76661],[-63,-145]],[[84208,76661],[-185,-147]],[[84459,76618],[-92,-296]],[[84459,76618],[107,-400]],[[82633,76394],[-191,-182]],[[82633,76394],[-213,-689]],[[82442,76212],[-1,0]],[[82442,76212],[-1,-84]],[[83221,75916],[223,-312],[70,-293]],[[83221,75916],[-93,-570]],[[82420,75705],[-159,-180]],[[82420,75705],[-6,-339]],[[83514,75311],[11,-410]],[[83514,75311],[295,-221],[117,-352],[-55,-608]],[[83128,75346],[-225,-273]],[[83128,75346],[82,-699]],[[82903,75073],[-161,22]],[[82903,75073],[-50,-307]],[[82853,74766],[-47,-42]],[[82853,74766],[-37,-221]],[[82806,74724],[-5,-5]],[[82806,74724],[-5,-5]],[[82801,74719],[-343,-266]],[[83210,74647],[-62,-141]],[[83210,74647],[-62,-141]],[[83148,74506],[-29,-414],[117,-371]],[[84048,74078],[97,-209]],[[83776,74068],[-78,-410],[-134,6],[-71,-337],[-458,-413],[-205,-298]],[[83861,74012],[-14,43]],[[83861,74012],[0,0]],[[83861,74012],[77,-197],[-591,-1560]],[[84145,73869],[49,-76]],[[84145,73869],[-23,-130]],[[84122,73739],[226,-7]],[[84122,73739],[44,-270]],[[84166,73469],[84,-1]],[[84166,73469],[34,-298]],[[84200,73171],[53,-58]],[[84200,73171],[-151,-197]],[[84263,73123],[246,41]],[[84188,72533],[148,-173]],[[82830,72616],[-18,-97]],[[82830,72616],[-140,-86],[-96,-386]],[[84090,72322],[1,-15]],[[82812,72519],[0,0]],[[82812,72519],[4,-186]],[[84091,72307],[80,-128]],[[84091,72307],[-163,-394]],[[84171,72179],[202,-181]],[[84171,72179],[78,-443]],[[83347,72255],[-46,-223]],[[83347,72255],[-429,-416]],[[83928,71913],[273,-480]],[[83928,71913],[-84,-511]],[[83844,71402],[1,-6]],[[83844,71402],[21,-837],[-309,-586],[-215,41],[-115,-193],[-387,-127],[-368,-435],[-57,-425]],[[82414,68840],[-209,-173]],[[82414,68840],[35,-615]],[[82205,68667],[-2,3]],[[82205,68667],[-164,-96]],[[82449,68225],[-73,-922]],[[82449,68225],[150,-454]],[[88909,79915],[2,2]],[[88909,79915],[7,-4]],[[88943,79908],[385,66]],[[88943,79908],[7,3]],[[88916,79911],[-1,-3]],[[88916,79911],[27,-3]],[[88335,79886],[105,-147],[269,35]],[[88709,79774],[200,141]],[[88709,79774],[335,-402]],[[82088,80573],[-136,0],[-112,-393]],[[81840,80180],[-72,-414],[105,-199],[-204,-1383]],[[80830,79422],[-8,-170]],[[80822,79252],[52,-17]],[[80822,79252],[98,-445]],[[81669,78184],[-46,-36]],[[81669,78184],[97,-127]],[[81623,78148],[-118,-100]],[[81623,78148],[-80,-467],[-142,-244]],[[81401,77437],[-44,-41]],[[81401,77437],[-50,-224]],[[81357,77396],[-88,132]],[[81357,77396],[-29,-9]],[[81351,77213],[26,-168]],[[81351,77213],[-307,-481]],[[81377,77046],[-3,-24]],[[81374,77022],[101,-401],[-246,-242]],[[81044,76732],[-100,-100]],[[81894,76461],[40,-180]],[[81807,76313],[0,-410]],[[81807,75903],[73,5]],[[81807,75903],[89,-356]],[[81657,71760],[-574,-209]],[[89392,72867],[-214,-298],[-653,-454],[-419,-39]],[[88627,72102],[-82,-280]],[[88035,72070],[-307,-65],[-416,266],[-436,628],[-394,92],[-387,-201]],[[77413,53411],[749,-554],[210,-35],[384,223],[191,-47]],[[87770,46452],[-517,376],[-217,268]],[[57501,60016],[-19,-35]],[[57482,59981],[-4,-7]],[[57486,59977],[-4,4]],[[57478,59974],[67,139]],[[57478,59974],[8,3]],[[57493,59929],[-7,48]],[[57493,59929],[10,-38]],[[57503,59891],[-10,38]],[[57521,59834],[-18,57]],[[57521,59834],[0,-12]],[[57524,59823],[-3,11]],[[57524,59823],[28,-34]],[[57521,59822],[3,1]],[[57584,59801],[-12,-2]],[[57584,59801],[11,-11]],[[57572,59799],[-15,0]],[[57557,59799],[15,0]],[[57557,59799],[-5,-10]],[[57552,59789],[-31,33]],[[57670,59252],[8,-2]],[[57670,59252],[-151,259],[65,290]],[[57678,59250],[-8,2]],[[58843,59223],[-58,-391],[-434,263]],[[57841,59119],[10,-10]],[[57841,59119],[-163,131]],[[57851,59109],[-10,10]],[[58351,59095],[1,-29]],[[58352,59066],[-1,29]],[[58352,59066],[-240,-75]],[[57887,59042],[7,-25]],[[57894,59017],[-43,92]],[[58112,58991],[-1,-1]],[[58112,58991],[-7,-9]],[[58111,58990],[-6,-8]],[[58105,58982],[-2,-1]],[[58103,58981],[8,9]],[[58103,58981],[-12,-17]],[[58007,58974],[12,-1]],[[58007,58974],[-4,-37]],[[58019,58973],[-12,1]],[[58091,58964],[-3,-9]],[[58088,58955],[3,9]],[[58088,58955],[-69,18]],[[57925,58942],[-31,75]],[[57925,58942],[5,-1]],[[57930,58941],[-5,1]],[[58003,58937],[-2,-13]],[[57946,58927],[-16,14]],[[57946,58927],[-1,-15]],[[58001,58924],[2,13]],[[58001,58924],[-56,-12]],[[57945,58912],[1,15]],[[58483,57394],[-9,-29]],[[58474,57365],[-1,-11]],[[58473,57354],[1,11]],[[58473,57354],[-14,-37]],[[58459,57317],[-18,-35]],[[58441,57282],[18,35]],[[58441,57282],[-49,-20]],[[58371,57271],[21,-9]],[[58392,57262],[-91,-75]],[[58425,57252],[8,12]],[[58301,57187],[-9,-13]],[[58292,57174],[9,13]],[[58292,57174],[-125,-103]],[[58724,56015],[-6,-76]],[[58785,55998],[-61,17]],[[58785,55998],[9,-16]],[[58794,55982],[-9,16]],[[58718,55939],[6,76]],[[58718,55939],[-16,-58]],[[58876,55912],[17,-2]],[[58876,55912],[-82,70]],[[58702,55881],[-90,-130]],[[58941,55873],[9,-5]],[[59153,55867],[-57,1]],[[59096,55868],[-7,-3]],[[59089,55865],[7,3]],[[59089,55865],[-40,-8]],[[58950,55868],[-74,44]],[[59049,55857],[-11,-3]],[[59038,55854],[11,3]],[[59038,55854],[-88,14]],[[58699,55857],[3,24]],[[58612,55751],[-6,-15]],[[58606,55736],[6,15]],[[58606,55736],[-1,-1]],[[58605,55735],[-10,-6]],[[58594,55729],[-12,-13]],[[58595,55729],[-1,0]],[[58595,55729],[10,6]],[[58582,55716],[12,13]],[[58582,55716],[-52,-69]],[[58530,55647],[16,14]],[[58530,55647],[-57,-42]],[[58473,55605],[-17,-4]],[[58456,55601],[2,-2]],[[58456,55601],[-6,-10]],[[58469,55601],[4,4]],[[58436,55601],[11,-11]],[[58436,55601],[-85,-74]],[[58458,55599],[11,2]],[[58459,55594],[-1,5]],[[58459,55594],[10,7]],[[58450,55591],[9,3]],[[58450,55591],[-3,-1]],[[58447,55590],[-11,11]],[[58353,55533],[-2,-6]],[[58353,55533],[-148,-31]],[[58351,55527],[2,6]],[[57128,55529],[105,143]],[[57128,55529],[-2,-32]],[[58205,55502],[-7,-5]],[[58198,55497],[7,5]],[[58198,55497],[-143,-7]],[[58048,55492],[7,-2]],[[58048,55492],[-59,-48]],[[58055,55490],[-7,2]],[[57126,55497],[2,32]],[[59693,55067],[-25,-9]],[[59659,55058],[9,0]],[[59659,55058],[-248,-18]],[[59668,55058],[-9,0]],[[59358,55057],[53,-17]],[[59358,55057],[-156,-49]],[[59411,55040],[-53,17]],[[59202,55008],[-5,-6]],[[59197,55002],[5,6]],[[59197,55002],[-200,-48]],[[58133,55012],[21,139]],[[58133,55012],[-8,-27]],[[58125,54985],[8,27]],[[58986,54959],[-4,-2]],[[58982,54957],[-11,-9]],[[58982,54957],[-1,-9]],[[58987,54955],[-1,4]],[[58987,54955],[-6,-7]],[[58997,54954],[-11,5]],[[58997,54954],[-10,1]],[[58971,54948],[-1,-4]],[[58981,54948],[-4,-6]],[[58970,54944],[-3,-2]],[[58970,54944],[-3,-2]],[[58977,54942],[-6,6]],[[58977,54942],[-17,-16]],[[58967,54942],[-6,-6]],[[58961,54936],[-1,-10]],[[58961,54936],[-11,-20]],[[58960,54926],[-4,-10]],[[58885,54918],[-3,-2]],[[58956,54916],[-6,0]],[[58956,54916],[21,18]],[[58950,54916],[-65,2]],[[58882,54916],[3,2]],[[58882,54916],[-9,-3]],[[58873,54913],[9,3]],[[58873,54913],[-413,-298]],[[55740,54674],[71,-511],[-381,-443],[-217,-84],[-295,-416]],[[58460,54615],[-55,-23]],[[58356,54612],[-231,373]],[[58356,54612],[241,24]],[[58422,54594],[38,21]],[[58394,54595],[-38,17]],[[58394,54595],[11,-3]],[[58405,54592],[-11,3]],[[55798,54131],[-5,-460]],[[56928,53943],[146,444],[-3,603],[96,24],[-41,483]],[[56928,53943],[-2,-6]],[[56926,53937],[2,6]],[[55793,53671],[1,-8]],[[55794,53663],[-1,8]],[[55794,53663],[-42,-109]],[[55752,53554],[7,-7]],[[55759,53547],[-7,7]],[[55759,53547],[-49,-7]],[[55710,53540],[-4,-9]],[[55706,53531],[4,9]],[[55706,53531],[-107,-286]],[[54906,53222],[12,-2]],[[54906,53222],[-25,-42]],[[54918,53220],[-12,2]],[[56283,52272],[-24,610],[139,375],[563,527],[-35,153]],[[56283,52272],[0,0]],[[56307,52135],[-24,137]],[[56311,52095],[-4,40]],[[56311,52095],[-4,40]],[[56300,52087],[3,46]],[[55811,51487],[500,608]],[[62868,61032],[35,121],[355,-219]],[[63258,60934],[53,66]],[[63258,60934],[0,0]],[[63258,60934],[0,1]],[[63258,60934],[0,-1]],[[63258,60934],[0,0]],[[63693,60637],[-230,-365],[-555,-146]],[[62885,60516],[373,418]],[[64031,60344],[200,132],[-64,248]],[[68075,72784],[-73,422],[-160,-43],[-61,457]],[[68004,68134],[-17,469],[-188,136],[169,111]],[[62393,67875],[56,513],[149,288]],[[64133,67622],[216,192],[213,586],[-114,286],[173,1040],[-145,166]],[[57537,67188],[162,279],[391,54],[266,-87],[473,107],[273,354],[326,172]],[[62275,66091],[-263,356]],[[73451,64377],[-119,-452],[222,-228],[-12,-275]],[[66008,64266],[-49,267],[111,334],[218,174],[220,402]],[[77916,62384],[-214,616],[45,452],[-178,385]],[[73088,62182],[-100,-23],[-75,-518],[117,-64]],[[76344,59775],[-195,-139],[-22,300],[-502,-284],[-113,-210],[-274,6],[-628,-353],[-518,-39],[79,-156]],[[63573,60502],[210,202]],[[63573,60498],[0,4]],[[65116,60188],[263,173],[167,279],[404,12],[-132,840],[-175,154],[4,301],[153,51],[-141,382]],[[61621,59185],[243,294],[666,-30]],[[62913,59105],[44,-190],[290,10]],[[66335,58581],[27,139]],[[64826,58573],[479,384],[293,-196],[170,204],[296,679]],[[66579,58164],[-311,693],[-19,235]],[[65574,58220],[570,161],[191,199]],[[55774,57918],[-123,670]],[[75705,55634],[-445,515]],[[72581,54684],[-220,-176],[-346,173],[-236,-288],[-717,-356],[-307,180]],[[58895,54923],[-482,-328],[-242,307]],[[58171,54902],[-17,250]],[[79129,52930],[-329,-54],[-44,169],[-384,-223],[-210,35],[-464,329],[-283,84],[-3,165]],[[67563,53755],[-102,542],[233,659]],[[56326,52110],[-48,509]],[[56290,51999],[36,111]],[[82411,41212],[92,510],[257,79]],[[73198,41703],[-3,468]],[[84962,39767],[339,36]],[[74988,40237],[-30,555]],[[75217,38649],[-345,917]],[[89795,35493],[42,45]],[[89795,35493],[0,0]],[[88235,34930],[197,494]],[[78898,36518],[132,5]],[[89154,33466],[-249,-169]],[[88905,33297],[-232,94],[-94,490],[233,476],[789,628],[-166,94],[360,414]],[[89051,32862],[-9,-65]],[[89051,32862],[-196,116],[50,319]],[[92058,99915],[32,-4]],[[91977,99881],[9,37]],[[91569,99916],[11,1]],[[91558,99885],[6,29]],[[91703,99856],[11,-10]],[[91557,99875],[1,-12]],[[91597,99765],[67,-38]],[[89698,99979],[-1,7]],[[89670,99980],[2,4]],[[89678,99977],[0,0]],[[89676,99977],[0,-3]],[[89674,99970],[1,-1]],[[89553,99969],[0,0]],[[89718,99894],[0,0]],[[89844,99857],[0,0]],[[93828,99059],[77,-69]],[[94891,98265],[6,-3]],[[94909,98250],[49,-37]],[[94962,98212],[7,-1]],[[95041,98165],[-21,38]],[[94165,97196],[-201,-183]],[[94180,97182],[-11,11]],[[93958,97003],[-98,-227]],[[93861,96774],[0,-41]],[[93869,96259],[-20,-18]],[[93641,95771],[100,154]],[[93651,95723],[-8,9]],[[92670,94753],[0,0]],[[92258,94774],[-12,-11]],[[92292,94757],[-33,20]],[[92245,94762],[-22,-37]],[[92619,94683],[15,17]],[[92586,94677],[16,9]],[[92545,94668],[25,36]],[[92525,94650],[4,30]],[[92485,94619],[11,10]],[[92474,94596],[6,10]],[[92369,94605],[3,12]],[[92400,94589],[6,16]],[[92162,94619],[64,100]],[[92039,94298],[9,34]],[[91859,93947],[176,353]],[[91765,93475],[26,169]],[[91705,93220],[60,254]],[[91703,93217],[-117,-263]],[[96189,92085],[16,293]],[[90718,92671],[287,177]],[[90715,92671],[-74,-250]],[[96164,91282],[29,800]],[[90476,91899],[88,296]],[[96076,90429],[90,851]],[[90331,91483],[94,339]],[[90149,91182],[179,282]],[[90141,91182],[-403,-740]],[[95901,89803],[183,616]],[[89729,90436],[-324,-576]],[[95578,89027],[324,772]],[[89041,89302],[295,379]],[[95098,87946],[484,1061]],[[94635,86793],[4,7]],[[94634,86791],[1,1]],[[94614,86752],[2,5]],[[94613,86751],[0,1]],[[94605,86735],[1,1]],[[94604,86731],[0,1]],[[94602,86727],[0,1]],[[94601,86726],[0,1]],[[94594,86712],[5,10]],[[94567,86660],[1,1]],[[94520,86568],[47,91]],[[93980,85320],[144,462],[396,778]],[[93374,83210],[511,752]],[[93064,82703],[310,507]],[[92229,81134],[-437,-988]],[[82548,82043],[447,-401],[152,-306]],[[82210,82042],[124,131],[211,-130]],[[81885,81883],[316,103]],[[81872,81871],[-276,75]],[[91723,79964],[12,45]],[[83193,81271],[230,-210]],[[81406,81197],[-65,196],[175,553]],[[81225,80926],[371,418]],[[73594,80892],[242,-12]],[[75487,80584],[-690,113]],[[72924,80846],[482,23]],[[75646,80532],[274,-121]],[[75935,80405],[84,-37]],[[76019,80368],[488,-244]],[[91029,77614],[89,399]],[[90700,76287],[-25,-29]],[[90747,75355],[-37,937]],[[90744,75353],[-47,-4]],[[90914,73507],[-57,164]],[[90939,73405],[-21,105]],[[90971,73065],[-27,345]],[[91095,72643],[-84,290]],[[91087,72551],[4,78]],[[91040,72404],[46,136]],[[91223,71874],[-192,397]],[[91434,71483],[-116,214]],[[91503,71321],[-49,45]],[[91566,71257],[-60,78]],[[91576,71243],[19,-78]],[[92069,69953],[-86,42]],[[92193,69879],[-66,30]],[[92112,69892],[-42,55]],[[92212,69843],[-13,26]],[[92398,69329],[30,46]],[[92492,69021],[-70,41]],[[92590,68954],[149,-115]],[[92551,68947],[-15,34]],[[92787,68772],[-47,66]],[[92805,68750],[-15,16]],[[92806,68747],[88,-148]],[[93014,68549],[-105,21]],[[93334,68351],[-317,195]],[[93343,68265],[6,99]],[[93407,68192],[153,-234]],[[94524,66499],[130,-39]],[[94433,66513],[-32,7]],[[94520,66479],[-84,33]],[[94669,66411],[-11,60]],[[94676,66378],[-5,22]],[[94701,66164],[-22,202]],[[94825,66000],[49,-91]],[[94812,65975],[-138,205]],[[94980,65758],[-89,141]],[[94948,65606],[35,140]],[[94959,65171],[27,431]],[[97408,62374],[94,-90],[72,-724]],[[97352,62331],[-522,55]],[[96823,62373],[-326,126]],[[97911,60440],[-76,168]],[[98554,59520],[-634,899]],[[99012,58939],[-115,130]],[[99984,58467],[-945,456]],[[77062,67144],[2,-9]],[[77064,67135],[-2,-1]],[[77064,67135],[42,-129]],[[77093,67094],[3,9]],[[77138,67000],[12,-4]],[[75280,65813],[2,0]],[[75200,65742],[80,71]],[[75160,65746],[120,67]],[[75340,65679],[-24,158]],[[78149,65284],[-220,123]],[[77992,65305],[-83,63]],[[77992,65305],[-4,-5]],[[78129,65167],[-137,138]],[[26358,59988],[-320,329]],[[25991,59716],[-13,16]],[[26032,59646],[-41,70]],[[26048,59570],[-16,76]],[[26066,59564],[-3,2]],[[26325,59580],[-334,136]],[[26219,59553],[-187,93]],[[79868,60086],[41,-33]],[[79909,60053],[41,118]],[[79854,60042],[55,11]],[[79913,59858],[51,95]],[[80043,59608],[90,23]],[[80439,58892],[23,49]],[[80403,58872],[36,20]],[[80413,58803],[26,89]],[[80423,58794],[124,63]],[[80374,58755],[-17,106]],[[80349,58718],[25,37]],[[80361,58711],[13,44]],[[49030,71140],[-196,-328],[-83,220],[-293,-274],[127,-171],[-180,-333],[-323,-161],[-149,-533],[-137,65],[-95,-401],[-316,7],[-114,-528],[-662,-83],[-207,213],[-549,187],[-364,347],[-15,476]],[[42990,70471],[100,-129]],[[43090,70342],[-106,-223],[-255,97],[-133,-314],[-221,-70],[-375,-851]],[[43263,69810],[-374,-113],[-583,-401]],[[43263,69810],[-184,-243],[-134,-621]],[[45474,69843],[112,376],[-80,310],[-532,339],[-226,-121],[-426,362],[-509,-223],[-345,-514],[-378,-30]],[[45474,69843],[-222,247],[-256,-261],[-34,-256],[-233,-188],[-22,281],[-201,4],[-53,501],[-432,104],[-49,-349],[-418,29],[-181,-341],[-110,196]],[[85071,56175],[-466,229]],[[73449,64373],[-69,-114]],[[73380,64258],[-25,-113]],[[73355,64142],[117,-386]],[[73472,63755],[92,-161]],[[77887,62384],[-185,616],[45,452],[-179,386]],[[77965,62233],[-78,151]],[[77825,62082],[62,302]],[[78115,61880],[-150,353]],[[77978,61870],[-13,363]],[[77540,61263],[-541,243],[-204,-117],[-230,275],[-285,91],[-279,287],[-116,464]],[[82171,60545],[-436,-10]],[[77028,60147],[-8,-23]],[[77035,60143],[-7,4]],[[77035,60143],[-7,4]],[[77062,60131],[-27,12]],[[77020,60124],[-1,-8]],[[77020,60124],[-1,-8]],[[77019,60116],[-27,-26]],[[76988,60103],[-28,-44]],[[76989,60102],[-1,1]],[[76991,60100],[-2,2]],[[76990,60098],[-1,4]],[[76990,60098],[-2,5]],[[76990,60098],[2,-8]],[[76990,60098],[2,-8]],[[76960,60059],[1,-14]],[[76960,60059],[1,-14]],[[76961,60045],[-401,-326],[-351,52],[-82,165],[-249,-131]],[[75878,59805],[-88,-90]],[[75879,59804],[-1,1]],[[75783,59724],[4,-3]],[[75783,59724],[-353,-242]],[[75787,59721],[-4,3]],[[75787,59721],[0,0]],[[75787,59721],[3,-6]],[[75790,59715],[-3,6]],[[75235,59630],[-3,-7]],[[75235,59630],[-3,-7]],[[75232,59623],[-40,-127]],[[75261,59603],[-26,27]],[[75247,59573],[14,30]],[[75247,59573],[14,30]],[[75341,59504],[-7,-4]],[[75341,59504],[-7,-4]],[[75421,59494],[-80,10]],[[75334,59500],[-87,73]],[[80226,58816],[-310,520],[-200,793],[-281,613],[-38,439],[-175,222]],[[75430,59482],[-9,12]],[[75430,59482],[-9,12]],[[75207,59496],[-15,0]],[[75207,59496],[-10,-98]],[[75192,59496],[15,0]],[[75197,59398],[-3,-19]],[[75197,59398],[-3,-19]],[[73998,59533],[57,-181],[-161,-261],[-90,-591]],[[75194,59379],[-286,-165]],[[74652,59305],[-61,-82]],[[74661,59303],[-9,2]],[[74661,59303],[-9,2]],[[74775,59245],[-8,-3]],[[74775,59245],[-8,-3]],[[74767,59242],[-60,0]],[[74710,59247],[-49,56]],[[74905,59220],[-130,25]],[[74707,59242],[3,5]],[[74707,59242],[3,5]],[[74908,59214],[-3,6]],[[74908,59214],[-3,6]],[[74591,59223],[1,-13]],[[74591,59223],[1,-13]],[[74592,59210],[-29,-80]],[[74564,59142],[-44,-48]],[[74563,59130],[1,12]],[[74563,59130],[1,12]],[[74193,59136],[-3,-1]],[[74200,59134],[-7,2]],[[74200,59134],[-7,2]],[[74190,59135],[-74,-347]],[[74201,59133],[-1,1]],[[74201,59133],[-11,2]],[[74520,59094],[-10,-1]],[[74520,59094],[-10,-1]],[[74510,59093],[-309,40]],[[74116,58788],[-7,-11]],[[74116,58788],[-7,-11]],[[74109,58777],[-207,-32]],[[73902,58745],[-5,-2]],[[73902,58745],[-5,-2]],[[73897,58743],[-93,-243]],[[73804,58500],[-89,-11]],[[85014,56507],[-630,-96]],[[84039,55134],[-227,215]],[[83812,55349],[1,-6]],[[83813,55343],[-7,-10]],[[84036,55117],[3,17]],[[84036,55117],[3,17]],[[87102,53841],[-4,-6]],[[87098,53835],[-6,0]],[[87092,53835],[-1,-1]],[[87091,53834],[0,-3]],[[87091,53831],[7,-8]],[[87098,53823],[0,-4]],[[87098,53819],[67,-142]],[[87196,53686],[41,-103]],[[87237,53583],[4,-2]],[[87241,53581],[327,-445],[804,-451]],[[87192,53686],[4,0]],[[87192,53686],[4,0]],[[87170,53680],[22,6]],[[87165,53677],[5,3]],[[87165,53677],[5,3]],[[86119,53712],[-343,246]],[[84625,53916],[-59,279],[-472,282],[-365,421],[-491,111]],[[85673,53534],[-473,675]],[[85200,54209],[-488,444],[-484,257],[-192,207]],[[88220,52222],[-160,285],[-616,273]],[[87224,52119],[-199,54],[-124,350]],[[86901,52523],[-416,240],[-278,313],[-259,59],[-275,399]],[[83669,57197],[-236,157],[-186,-106],[-253,153],[-63,-156],[188,-344],[274,-193],[-20,-173],[308,-139]],[[79754,56674],[31,-539]],[[80690,56277],[338,-442]],[[81203,55968],[-175,-133]],[[81028,55835],[-154,-492],[277,-375]],[[83812,55349],[1,-6]],[[80363,55544],[-23,-4]],[[80340,55540],[-489,-140]],[[79851,55493],[0,-93]],[[79851,55400],[0,-26]],[[79851,55374],[3,-6]],[[79851,55374],[3,-6]],[[79854,55368],[-71,-50]],[[80437,55144],[270,-264],[274,-607]],[[80797,54980],[198,-226]],[[87098,53835],[-6,0]],[[87092,53835],[-1,-1]],[[87091,53834],[0,-3]],[[87091,53831],[7,-8]],[[87098,53823],[0,-4]],[[85868,53769],[-259,284],[-409,156]],[[87241,53581],[-4,2]],[[87457,52273],[-293,35],[-263,215]],[[87317,52008],[-93,111]],[[80830,52527],[6,4]],[[80830,52527],[314,262],[108,530]],[[80823,52521],[7,6]],[[80819,52516],[4,5]],[[80819,52516],[4,5]],[[80817,52503],[2,13]],[[80823,52500],[-6,3]],[[80823,52500],[-6,3]],[[80871,52350],[-48,150]],[[81990,51998],[-145,148]],[[81811,51867],[0,388],[-173,88],[-138,503],[32,529]],[[83216,53327],[24,-44]],[[83202,53292],[38,-9]],[[83240,53283],[41,-46]],[[83173,53247],[21,-39]],[[84172,53069],[-170,94]],[[83194,53208],[82,-80]],[[83178,53194],[16,14]],[[83155,53160],[103,-84]],[[83129,53124],[69,-117]],[[83437,53058],[-85,-44]],[[83352,53014],[-43,-6]],[[83309,53008],[-60,-57]],[[83172,53016],[26,-9]],[[83398,52973],[-46,41]],[[83198,53007],[47,-33]],[[83337,52966],[-28,42]],[[83382,52909],[-113,-30]],[[82484,53060],[62,-110]],[[83090,52932],[6,-43]],[[83269,52879],[-46,-2]],[[83057,52897],[39,-8]],[[83096,52889],[15,-198]],[[83300,52830],[-31,49]],[[83432,52760],[21,-92]],[[83339,52777],[-144,27]],[[83063,52787],[38,-93]],[[83327,52716],[-144,50]],[[82991,52567],[-42,41]],[[83402,52375],[3,-43]],[[83338,52383],[67,-51]],[[83454,52362],[28,-89]],[[83308,52376],[-375,-172]],[[83187,52388],[-105,110]],[[83405,52332],[77,-59]],[[83482,52273],[51,-69]],[[83177,52175],[-254,-277]],[[83156,52093],[144,-238]],[[83092,51966],[-8,-79]],[[83084,51887],[-68,-25]],[[83126,51868],[-42,19]],[[82923,51898],[-36,12]],[[83016,51862],[-93,36]],[[83090,51772],[-74,90]],[[84167,51438],[-19,-24]],[[84474,51315],[-81,-97]],[[82335,51694],[85,-37]],[[84191,51357],[-10,-31]],[[84365,51302],[-43,-28]],[[84407,51283],[-43,-61]],[[84322,51274],[-65,-1]],[[84150,51292],[-114,-29]],[[84393,51218],[-29,4]],[[84364,51222],[-42,52]],[[84036,51263],[-31,31]],[[84406,51181],[-13,37]],[[82302,51542],[151,-91]],[[84305,51183],[-48,-20]],[[84049,51207],[-13,56]],[[84257,51163],[-43,-46]],[[84437,51104],[-80,-2]],[[84357,51102],[-100,61]],[[84214,51117],[-132,3]],[[84372,51085],[-15,17]],[[83991,51139],[-55,176]],[[82312,51431],[153,-15]],[[82880,51328],[-140,-99]],[[84246,51076],[-32,41]],[[84362,51033],[-44,-25]],[[83653,50749],[45,-33]],[[83708,50720],[36,94]],[[82625,50909],[43,173]],[[83698,50716],[10,4]],[[83696,50710],[2,6]],[[83126,50805],[24,-38]],[[82761,50860],[25,75]],[[83663,50682],[33,28]],[[83150,50767],[24,-15]],[[82717,50841],[44,19]],[[83456,50703],[-57,35]],[[83174,50752],[7,-117]],[[83750,50644],[-42,76]],[[83616,50654],[-96,10]],[[83689,50637],[7,73]],[[83214,50721],[-40,31]],[[82719,50806],[42,54]],[[83520,50664],[-25,-4]],[[82702,50807],[17,-1]],[[82717,50799],[2,7]],[[83495,50660],[-39,43]],[[83699,50613],[-10,24]],[[83680,50614],[9,23]],[[82692,50777],[25,22]],[[82778,50755],[25,169]],[[82754,50738],[24,17]],[[82779,50733],[-1,22]],[[83112,50661],[38,106]],[[82708,50730],[9,69]],[[83625,50566],[-105,98]],[[82765,50708],[14,25]],[[83181,50635],[-6,-53]],[[83452,50577],[4,126]],[[82749,50698],[16,10]],[[82806,50675],[-27,58]],[[83231,50598],[-50,37]],[[83508,50547],[-13,113]],[[82760,50672],[5,36]],[[82748,50659],[12,13]],[[82726,50637],[22,22]],[[82823,50617],[64,79]],[[82765,50623],[-5,49]],[[82731,50588],[17,71]],[[82748,50550],[17,73]],[[82765,50513],[0,110]],[[82858,50307],[74,-40]],[[81854,55092],[-84,-46]],[[81770,55046],[-108,152]],[[81657,55028],[113,18]],[[82037,54746],[-107,25]],[[81345,54747],[70,-115]],[[81415,54632],[4,58]],[[81415,54632],[-44,-72]],[[81267,54462],[23,-115]],[[81850,54327],[-51,-193]],[[81409,54309],[-156,-40]],[[81448,54283],[-11,-38]],[[81437,54245],[-74,-27]],[[81437,54245],[-12,-60]],[[81614,54160],[26,45]],[[81614,54160],[74,-5]],[[81576,54150],[38,10]],[[77776,66880],[7,-6]],[[77783,66874],[11,-50]],[[77794,66824],[14,-48]],[[77746,66790],[48,34]],[[77808,66776],[36,-64]],[[77767,66743],[41,33]],[[77763,66739],[43,-43]],[[77844,66712],[-29,-40]],[[77806,66696],[9,-24]],[[77762,66689],[44,7]],[[77815,66672],[8,-74]],[[77903,66647],[-59,65]],[[77745,66667],[0,0]],[[77745,66667],[-1,-1]],[[77745,66667],[0,0]],[[77744,66666],[0,-7]],[[77745,66664],[-1,2]],[[77745,66659],[-1,0]],[[77744,66659],[4,-8]],[[77748,66651],[14,-5]],[[77762,66646],[39,-30]],[[77705,66643],[10,-1]],[[77715,66642],[33,9]],[[77801,66616],[22,-18]],[[77688,66629],[27,13]],[[77711,66618],[51,28]],[[77823,66598],[24,-8]],[[77847,66590],[17,-32]],[[77765,66598],[36,18]],[[77738,66599],[27,-1]],[[77764,66589],[1,9]],[[77755,66581],[9,8]],[[77864,66558],[147,-146]],[[77798,66562],[49,28]],[[77756,66542],[8,47]],[[77775,66535],[45,-11]],[[77820,66524],[44,34]],[[77766,66511],[38,-14]],[[77804,66497],[16,27]],[[77791,66470],[13,27]],[[79332,65688],[-105,-219]],[[79226,65572],[1,-103]],[[79186,65518],[28,-53]],[[79171,65504],[43,-39]],[[79233,65472],[-9,-41]],[[79227,65469],[-8,-17]],[[79214,65465],[5,-13]],[[79219,65452],[4,-10]],[[79223,65442],[1,-11]],[[79223,65442],[1,-11]],[[81493,62854],[-201,-4],[-27,247],[-238,64]],[[80729,62288],[-6,-63]],[[80777,62247],[183,37]],[[80723,62225],[54,22]],[[80723,62225],[0,0]],[[80715,62226],[8,-1]],[[81092,62149],[-58,271]],[[81101,62146],[-9,3]],[[80675,62208],[40,18]],[[80707,62197],[8,29]],[[80718,62189],[5,36]],[[80718,62181],[0,8]],[[80693,62168],[25,21]],[[81029,62107],[63,42]],[[80694,62150],[24,31]],[[80717,62131],[1,50]],[[81041,62028],[-12,79]],[[81041,62028],[-12,79]],[[81041,61701],[0,327]],[[81033,61687],[8,14]],[[81045,61669],[-4,32]],[[81045,61669],[0,0]],[[80872,61656],[-9,168]],[[80872,61656],[0,0]],[[80864,61645],[8,11]],[[80902,61638],[-30,18]],[[80845,61637],[19,8]],[[80842,61627],[10,-9]],[[80852,61618],[12,27]],[[80836,61606],[16,12]],[[80885,61567],[-13,89]],[[81212,61491],[-17,-68]],[[80838,61539],[47,28]],[[81159,61444],[-114,225]],[[81223,61433],[-28,-10]],[[81195,61423],[-21,-4]],[[81174,61419],[-15,25]],[[81167,61395],[-8,49]],[[81223,61373],[-49,46]],[[81364,61315],[-197,80]],[[81181,61316],[-14,79]],[[81136,61204],[45,112]],[[81216,61173],[-35,143]],[[80963,61149],[-78,418]],[[92412,57716],[43,-467],[-196,-362]],[[92381,57614],[19,49]],[[92381,57614],[20,49]],[[92381,57614],[-109,-344]],[[92264,57251],[8,19]],[[94921,56257],[554,184]],[[92880,56708],[-251,12]],[[95049,55977],[610,461]],[[95833,55744],[218,270]],[[96139,55576],[68,-20]],[[97374,54856],[93,104]],[[95383,54829],[75,171]],[[95791,54719],[25,-40]],[[95816,54679],[300,149]],[[97364,54272],[9,583]],[[97187,54193],[177,79]],[[93915,54965],[-68,-39]],[[97275,54115],[89,157]],[[93694,54694],[238,43],[204,-149]],[[95557,54066],[-24,97]],[[95451,54004],[4,35]],[[93513,54447],[88,151]],[[95474,53957],[-23,47]],[[96443,53708],[232,-49]],[[95445,53870],[6,134]],[[93717,54287],[93,-87]],[[96097,53553],[346,155]],[[95915,53588],[182,-35]],[[96076,53501],[21,52]],[[96076,53501],[1,1]],[[96013,53495],[63,6]],[[94113,53956],[35,121]],[[95544,53577],[256,235],[391,130],[89,-127],[250,187],[232,-112]],[[95946,53461],[67,34]],[[94008,53902],[105,54]],[[93896,53891],[112,11]],[[94110,53788],[3,168]],[[94488,53628],[246,291],[487,24],[247,114],[348,622]],[[93932,53754],[76,148]],[[94339,53539],[149,89]],[[94339,53539],[0,0]],[[94339,53539],[-65,0]],[[94424,53509],[64,119]],[[95260,53257],[283,318]],[[94330,53485],[9,54]],[[96062,52885],[165,86],[216,737]],[[95504,52943],[510,303],[62,255]],[[94278,52838],[31,-409]],[[92346,53140],[192,-21]],[[96105,51545],[121,-34]],[[96393,50807],[88,-89]],[[96481,50718],[101,28]],[[96051,50456],[430,262]],[[95655,50457],[1,-1]],[[95273,50339],[382,118]],[[90796,49702],[242,-581]],[[94590,47997],[122,34]],[[91660,47540],[25,52]],[[97990,57654],[94,-159]],[[98084,57495],[11,-131]],[[95833,55744],[34,35]],[[95867,55779],[1,2]],[[95868,55781],[183,233]],[[96051,56014],[1,2]],[[96052,56016],[167,387]],[[96392,55507],[0,0]],[[96392,55507],[95,-99]],[[96132,55569],[35,-17]],[[96167,55552],[209,-49]],[[96377,55502],[15,5]],[[97198,54244],[15,40]],[[97198,54218],[-3,15]],[[97329,54012],[34,246]],[[97311,53914],[17,96]],[[94197,54540],[4,-4]],[[94201,54536],[6,-2]],[[94207,54534],[2,-2]],[[94209,54532],[19,4]],[[94228,54536],[0,1]],[[94228,54537],[1,0]],[[94229,54537],[2,-2]],[[94231,54535],[2,-1]],[[94233,54534],[4,2]],[[94237,54536],[2,1]],[[94239,54537],[42,15]],[[93809,54595],[51,-6]],[[93860,54589],[1,-2]],[[93861,54587],[59,91]],[[93920,54678],[-1,1]],[[93919,54679],[0,6]],[[93919,54685],[0,2]],[[93919,54687],[3,5]],[[93922,54692],[3,8]],[[93925,54700],[0,4]],[[93925,54704],[3,13]],[[93928,54717],[0,2]],[[93928,54719],[2,3]],[[93930,54722],[0,0]],[[93930,54722],[1,5]],[[93931,54727],[6,13]],[[93937,54740],[1,-3]],[[93938,54737],[1,-4]],[[93939,54733],[31,-12]],[[93970,54721],[6,-2]],[[93976,54719],[2,0]],[[93978,54719],[0,-1]],[[93978,54718],[1,-1]],[[93979,54717],[3,-1]],[[93982,54716],[60,-102]],[[94042,54614],[5,-1]],[[94047,54613],[0,-9]],[[94047,54604],[1,-1]],[[94048,54603],[3,-1]],[[94051,54602],[3,0]],[[94054,54602],[35,-17]],[[94089,54585],[0,1]],[[94089,54586],[2,0]],[[94091,54586],[3,2]],[[94094,54588],[2,0]],[[94096,54588],[2,1]],[[94098,54589],[1,0]],[[94099,54589],[2,-2]],[[94101,54587],[1,-1]],[[94102,54586],[26,2]],[[94128,54588],[2,0]],[[94130,54588],[1,-2]],[[94131,54586],[15,-14]],[[94146,54572],[1,0]],[[94147,54572],[0,-1]],[[94147,54571],[1,0]],[[94148,54571],[1,0]],[[94149,54571],[0,-1]],[[94149,54570],[12,-5]],[[94161,54565],[1,-1]],[[94162,54564],[0,-4]],[[94162,54560],[0,-3]],[[94162,54557],[0,-1]],[[94162,54556],[1,-5]],[[94163,54551],[0,0]],[[94163,54551],[1,-3]],[[94164,54548],[10,-3]],[[94174,54545],[1,1]],[[94175,54546],[0,1]],[[94175,54547],[0,1]],[[94175,54548],[0,3]],[[94175,54551],[1,6]],[[94176,54557],[1,2]],[[94177,54559],[1,0]],[[94178,54559],[8,1]],[[94186,54560],[0,-1]],[[94186,54559],[2,-4]],[[94188,54555],[1,-2]],[[94189,54553],[2,-5]],[[94191,54548],[2,-2]],[[94193,54546],[1,-2]],[[94194,54544],[0,0]],[[94194,54544],[0,-1]],[[94194,54543],[2,-2]],[[97245,53713],[2,1]],[[97247,53714],[0,1]],[[97247,53715],[-1,1]],[[97246,53716],[-1,3]],[[97245,53719],[11,50]],[[97256,53769],[0,2]],[[97256,53771],[1,1]],[[97257,53772],[1,0]],[[97258,53772],[0,0]],[[97258,53772],[0,-2]],[[97258,53770],[1,-2]],[[97259,53768],[-1,9]],[[97258,53777],[1,0]],[[97259,53777],[1,-1]],[[97260,53776],[1,0]],[[97261,53776],[1,1]],[[97262,53777],[-1,2]],[[97261,53779],[0,1]],[[97261,53780],[0,0]],[[97261,53780],[2,1]],[[97263,53781],[1,0]],[[97264,53781],[1,-1]],[[97265,53780],[3,-3]],[[97268,53777],[0,0]],[[97268,53777],[1,1]],[[97269,53778],[0,1]],[[97269,53779],[1,3]],[[97270,53782],[0,1]],[[97270,53783],[1,1]],[[97271,53784],[2,0]],[[97273,53784],[0,1]],[[97273,53785],[0,1]],[[97273,53786],[0,3]],[[97273,53789],[0,1]],[[97273,53790],[1,0]],[[97274,53790],[2,1]],[[97276,53791],[0,0]],[[97276,53791],[0,2]],[[97276,53793],[-1,2]],[[97275,53795],[-1,0]],[[97274,53795],[0,0]],[[97274,53795],[-1,0]],[[97273,53795],[-2,-2]],[[97271,53793],[-4,4]],[[97267,53797],[0,1]],[[97267,53798],[-1,2]],[[97266,53800],[-1,1]],[[97265,53801],[-6,9]],[[97259,53810],[-1,7]],[[97258,53817],[-2,2]],[[97256,53819],[-3,0]],[[97253,53819],[-1,-1]],[[97252,53818],[-1,-1]],[[97251,53817],[0,-1]],[[97251,53816],[0,-1]],[[97251,53815],[-1,0]],[[97250,53815],[-1,1]],[[97249,53816],[0,0]],[[97249,53816],[-1,1]],[[97248,53817],[1,3]],[[97249,53820],[0,1]],[[97249,53821],[-1,2]],[[97248,53823],[0,0]],[[97248,53823],[63,91]],[[97233,53704],[1,0]],[[97234,53704],[1,-2]],[[97235,53702],[1,0]],[[97236,53702],[9,11]],[[97218,53699],[2,1]],[[97220,53700],[1,0]],[[97221,53700],[12,5]],[[96209,53916],[77,-104],[340,149]],[[96626,53961],[3,0]],[[96629,53961],[274,-59]],[[96903,53902],[1,0]],[[96904,53902],[159,218]],[[97063,54120],[1,-1]],[[97064,54119],[135,97]],[[97066,53691],[4,-3]],[[97066,53691],[4,-3]],[[97070,53688],[73,22]],[[97143,53710],[2,0]],[[97145,53710],[23,-2]],[[97168,53708],[0,2]],[[97168,53710],[1,0]],[[97169,53710],[19,-6]],[[97188,53704],[1,0]],[[97189,53704],[13,-8]],[[97202,53696],[4,0]],[[97206,53696],[4,0]],[[97210,53696],[1,2]],[[97211,53698],[1,0]],[[97212,53698],[2,0]],[[97214,53698],[1,0]],[[97215,53698],[1,0]],[[97216,53698],[2,1]],[[95477,54089],[0,-1]],[[95477,54088],[91,88]],[[97016,53658],[50,33]],[[97012,53656],[4,2]],[[97012,53656],[4,2]],[[96444,53707],[10,-1]],[[96454,53706],[0,-1]],[[96454,53705],[1,-1]],[[96455,53704],[1,-2]],[[96456,53702],[0,-1]],[[96456,53701],[1,-1]],[[96457,53700],[1,0]],[[96458,53700],[1,0]],[[96459,53700],[1,0]],[[96460,53700],[1,-1]],[[96461,53699],[2,-7]],[[96463,53692],[2,-2]],[[96465,53690],[1,-1]],[[96466,53689],[5,-3]],[[96471,53686],[3,0]],[[96474,53686],[2,0]],[[96476,53686],[7,5]],[[96483,53691],[4,3]],[[96487,53694],[1,0]],[[96488,53694],[1,0]],[[96489,53694],[1,-1]],[[96490,53693],[5,-3]],[[96495,53690],[1,0]],[[96496,53690],[3,1]],[[96499,53691],[4,2]],[[96503,53693],[1,0]],[[96504,53693],[2,0]],[[96506,53693],[25,-5]],[[96531,53688],[3,0]],[[96534,53688],[2,0]],[[96536,53688],[1,0]],[[96537,53688],[4,-1]],[[96541,53687],[2,-1]],[[96543,53686],[1,-4]],[[96544,53682],[4,-2]],[[96548,53680],[2,1]],[[96550,53681],[13,1]],[[96563,53682],[1,-2]],[[96564,53680],[1,-1]],[[96565,53679],[1,0]],[[96566,53679],[105,-19]],[[96671,53660],[2,0]],[[96673,53660],[1,0]],[[96674,53660],[1,-1]],[[96675,53659],[0,0]],[[96675,53659],[0,-1]],[[96675,53658],[-1,-7]],[[96674,53651],[-1,-3]],[[96673,53648],[1,-2]],[[96674,53646],[6,-2]],[[96680,53644],[1,0]],[[96681,53644],[14,-11]],[[96695,53633],[2,-2]],[[96697,53631],[18,-40]],[[96715,53591],[2,-1]],[[96717,53590],[5,-1]],[[96722,53589],[1,1]],[[96723,53590],[4,7]],[[96727,53597],[2,4]],[[96729,53601],[1,1]],[[96730,53602],[26,5]],[[96756,53607],[1,1]],[[96757,53608],[83,-33]],[[96840,53575],[172,81]],[[95941,53778],[1,1]],[[95942,53779],[88,69]],[[96030,53848],[2,0]],[[96032,53848],[1,1]],[[96033,53849],[1,0]],[[96034,53849],[3,-6]],[[96037,53843],[1,-3]],[[96038,53840],[1,0]],[[96039,53840],[0,1]],[[96039,53841],[1,1]],[[96040,53842],[3,2]],[[96043,53844],[0,0]],[[96043,53844],[1,1]],[[96044,53845],[0,1]],[[96044,53846],[1,0]],[[96045,53846],[0,-1]],[[96045,53845],[3,3]],[[96048,53848],[7,7]],[[96055,53855],[2,1]],[[96057,53856],[12,4]],[[96069,53860],[2,0]],[[96071,53860],[0,-1]],[[96071,53859],[1,-1]],[[96072,53858],[1,0]],[[96073,53858],[0,-1]],[[96073,53857],[0,0]],[[96073,53857],[0,-1]],[[96073,53856],[0,-1]],[[96073,53855],[0,-1]],[[96073,53854],[-1,-3]],[[96072,53851],[-3,-5]],[[96069,53846],[-1,-2]],[[96068,53844],[1,0]],[[96069,53844],[-1,-1]],[[96068,53843],[1,-2]],[[96069,53841],[0,-2]],[[96069,53839],[1,-4]],[[96070,53835],[1,-3]],[[96071,53832],[0,-1]],[[96071,53831],[0,-1]],[[96071,53830],[22,25]],[[96093,53855],[4,2]],[[96097,53857],[1,0]],[[96098,53857],[1,20]],[[96099,53877],[-1,1]],[[96098,53878],[0,1]],[[96098,53879],[1,3]],[[96099,53882],[2,2]],[[96101,53884],[0,2]],[[96101,53886],[34,5]],[[96135,53891],[0,1]],[[96135,53892],[3,3]],[[96138,53895],[3,0]],[[96141,53895],[1,-1]],[[96142,53894],[9,3]],[[96151,53897],[0,-1]],[[96151,53896],[2,-1]],[[96153,53895],[0,2]],[[96153,53897],[0,1]],[[96153,53898],[1,1]],[[96154,53899],[2,1]],[[96156,53900],[1,1]],[[96157,53901],[0,2]],[[96157,53903],[1,1]],[[96158,53904],[0,2]],[[96158,53906],[0,1]],[[96158,53907],[1,1]],[[96159,53908],[2,6]],[[96161,53914],[1,1]],[[96162,53915],[1,0]],[[96163,53915],[6,-3]],[[96169,53912],[1,-1]],[[96170,53911],[1,-3]],[[96171,53908],[2,-2]],[[96173,53906],[1,-2]],[[96174,53904],[3,-2]],[[96177,53902],[32,15]],[[95844,53783],[38,0]],[[95882,53783],[0,0]],[[95882,53783],[1,2]],[[95883,53785],[3,4]],[[95886,53789],[3,0]],[[95889,53789],[1,-1]],[[95890,53788],[0,-2]],[[95890,53786],[0,-3]],[[95890,53783],[0,-4]],[[95890,53779],[-1,-1]],[[95889,53778],[-1,-2]],[[95888,53776],[1,-1]],[[95889,53775],[1,-3]],[[95890,53772],[0,-2]],[[95890,53770],[1,-1]],[[95891,53769],[0,0]],[[95891,53769],[1,1]],[[95892,53770],[0,1]],[[95892,53771],[1,0]],[[95893,53771],[3,1]],[[95896,53772],[1,0]],[[95897,53772],[2,1]],[[95899,53773],[1,0]],[[95900,53773],[0,1]],[[95900,53774],[1,0]],[[95901,53774],[0,-1]],[[95901,53773],[7,2]],[[95908,53775],[0,0]],[[95908,53775],[3,-8]],[[95911,53767],[2,0]],[[95913,53767],[0,0]],[[95913,53767],[2,3]],[[95915,53770],[1,2]],[[95916,53772],[3,1]],[[95919,53773],[0,0]],[[95919,53773],[0,0]],[[95919,53773],[5,1]],[[95924,53774],[1,0]],[[95925,53774],[3,0]],[[95928,53774],[1,0]],[[95929,53774],[0,-1]],[[95929,53773],[1,2]],[[95930,53775],[0,0]],[[95930,53775],[1,1]],[[95931,53776],[2,-1]],[[95933,53775],[1,1]],[[95934,53776],[0,1]],[[95934,53777],[2,0]],[[95936,53777],[2,2]],[[96211,53632],[227,85]],[[96438,53717],[2,-5]],[[96440,53712],[1,0]],[[96441,53712],[1,-1]],[[96442,53711],[2,-3]],[[96444,53708],[0,-1]],[[94924,53946],[553,142]],[[95105,53882],[25,65]],[[96424,53486],[1,14]],[[96425,53500],[1,4]],[[96426,53504],[4,10]],[[96430,53514],[0,1]],[[96430,53515],[-3,1]],[[96427,53516],[-2,2]],[[96425,53518],[0,2]],[[96425,53520],[0,2]],[[96425,53522],[0,1]],[[96425,53523],[0,5]],[[96425,53528],[-4,14]],[[96421,53542],[0,3]],[[96421,53545],[0,7]],[[96421,53552],[0,2]],[[96421,53554],[-2,34]],[[96419,53588],[-6,0]],[[96413,53588],[-14,40]],[[96399,53628],[15,8]],[[96414,53636],[5,47]],[[96419,53683],[1,3]],[[96420,53686],[0,1]],[[96420,53687],[2,4]],[[96422,53691],[3,7]],[[96425,53698],[1,2]],[[96426,53700],[3,-7]],[[96429,53693],[1,0]],[[96430,53693],[9,9]],[[96439,53702],[0,0]],[[96439,53702],[5,5]],[[96097,53554],[113,82]],[[96353,53398],[53,9]],[[96406,53407],[18,78]],[[96051,53404],[46,149]],[[98352,57516],[94,106]],[[98095,57364],[257,157]],[[98007,57308],[88,55]],[[98411,56693],[-420,-219]],[[95762,57241],[62,-228]],[[95754,57239],[7,3]],[[98498,56473],[3,-3]],[[98498,56473],[3,-3]],[[98501,56470],[42,60]],[[96681,56894],[97,183],[270,68]],[[98449,56398],[49,75]],[[96124,56962],[123,-73]],[[95825,57014],[299,-52]],[[96248,56889],[260,-161]],[[98329,56305],[117,89]],[[96508,56728],[109,117]],[[96865,56247],[237,-241]],[[94921,56257],[227,46]],[[95891,55983],[123,1]],[[96832,55737],[406,453],[364,107],[147,-97],[242,273]],[[95213,56137],[446,301]],[[96051,56014],[1,2]],[[96219,56403],[248,43],[58,270]],[[97531,55284],[70,-43]],[[97601,55241],[427,208]],[[96487,55408],[344,332]],[[96377,55502],[-1,1]],[[95806,55650],[27,94]],[[97397,55175],[44,-36]],[[97538,55123],[63,118]],[[97441,55139],[1,-1]],[[97441,55139],[1,-1]],[[97442,55138],[12,-16]],[[97480,55119],[58,4]],[[97476,55118],[4,1]],[[97476,55118],[4,1]],[[97454,55122],[4,-4]],[[97454,55122],[4,-4]],[[97458,55118],[18,0]],[[97374,54855],[164,268]],[[97196,54827],[176,28]],[[95542,55210],[264,439]],[[96150,54802],[349,68],[118,-282]],[[96618,54587],[34,-230],[-215,7]],[[95389,54800],[152,409]],[[97365,54272],[9,583]],[[97363,54259],[2,13]],[[97216,54291],[149,-19]],[[96694,54385],[16,-18]],[[96718,54363],[498,-72]],[[96391,54376],[26,-13]],[[96417,54364],[20,1]],[[97199,54216],[-1,2]],[[97195,54233],[3,11]],[[97213,54284],[3,7]],[[96164,54348],[227,28]],[[95190,54527],[200,273]],[[95656,54405],[169,289],[324,107]],[[96903,53902],[1,0]],[[97247,53714],[0,1]],[[97247,53715],[-1,1]],[[97246,53716],[-1,3]],[[97256,53769],[0,2]],[[97257,53772],[1,0]],[[97258,53772],[0,-2]],[[97258,53770],[1,-2]],[[97258,53777],[1,0]],[[97259,53777],[1,-1]],[[97260,53776],[1,0]],[[97262,53777],[-1,2]],[[97261,53779],[0,1]],[[97261,53780],[0,0]],[[97261,53780],[2,1]],[[97263,53781],[1,0]],[[97264,53781],[1,-1]],[[97265,53780],[3,-3]],[[97268,53777],[1,1]],[[97269,53779],[1,3]],[[97270,53782],[0,1]],[[97270,53783],[1,1]],[[97271,53784],[2,0]],[[97273,53784],[0,1]],[[97273,53785],[0,1]],[[97273,53786],[0,3]],[[97273,53789],[0,1]],[[97273,53790],[1,0]],[[97276,53791],[0,0]],[[97276,53793],[-1,2]],[[97275,53795],[-1,0]],[[97274,53795],[0,0]],[[97273,53795],[-2,-2]],[[97267,53797],[0,1]],[[97266,53800],[-1,1]],[[97259,53810],[-1,7]],[[97258,53817],[-2,2]],[[97253,53819],[-1,-1]],[[97251,53817],[0,-1]],[[97251,53815],[-1,0]],[[97249,53816],[0,0]],[[97249,53816],[-1,1]],[[97248,53817],[1,3]],[[97249,53821],[-1,2]],[[97248,53823],[0,0]],[[97311,53914],[0,0]],[[97328,54010],[1,2]],[[97233,53704],[1,0]],[[97235,53702],[1,0]],[[93594,54573],[215,22]],[[93860,54589],[1,-2]],[[93920,54678],[-1,1]],[[93919,54685],[0,2]],[[93919,54687],[3,5]],[[93925,54700],[0,4]],[[93928,54717],[0,2]],[[93930,54722],[0,0]],[[93930,54722],[1,5]],[[93937,54740],[1,-3]],[[93938,54737],[1,-4]],[[93970,54721],[6,-2]],[[93976,54719],[2,0]],[[93978,54719],[0,-1]],[[93979,54717],[3,-1]],[[94042,54614],[5,-1]],[[94047,54604],[1,-1]],[[94051,54602],[3,0]],[[94089,54585],[0,1]],[[94089,54586],[2,0]],[[94094,54588],[2,0]],[[94096,54588],[2,1]],[[94098,54589],[1,0]],[[94101,54587],[1,-1]],[[94128,54588],[2,0]],[[94130,54588],[1,-2]],[[94146,54572],[1,0]],[[94147,54572],[0,-1]],[[94147,54571],[1,0]],[[94149,54571],[0,-1]],[[94161,54565],[1,-1]],[[94162,54564],[0,-4]],[[94162,54560],[0,-3]],[[94162,54556],[1,-5]],[[94163,54551],[0,0]],[[94163,54551],[1,-3]],[[94174,54545],[1,1]],[[94175,54546],[0,1]],[[94175,54548],[0,3]],[[94175,54551],[1,6]],[[94177,54559],[1,0]],[[94186,54560],[0,-1]],[[94188,54555],[1,-2]],[[94189,54553],[2,-5]],[[94191,54548],[2,-2]],[[94193,54546],[1,-2]],[[94194,54544],[0,-1]],[[94196,54541],[1,-1]],[[94201,54536],[6,-2]],[[94207,54534],[2,-2]],[[94228,54536],[0,1]],[[94228,54537],[1,0]],[[94231,54535],[2,-1]],[[94233,54534],[4,2]],[[94237,54536],[2,1]],[[94281,54552],[13,-11]],[[97143,53710],[2,0]],[[97168,53708],[0,2]],[[97168,53710],[1,0]],[[97188,53704],[1,0]],[[97202,53696],[4,0]],[[97210,53696],[1,2]],[[97211,53698],[1,0]],[[97214,53698],[1,0]],[[97216,53698],[2,1]],[[97218,53699],[0,0]],[[97218,53699],[2,1]],[[97220,53700],[1,0]],[[96041,53901],[96,-5]],[[96440,53712],[1,0]],[[96442,53711],[2,-3]],[[96444,53708],[0,-1]],[[96454,53706],[0,-1]],[[96455,53704],[1,-2]],[[96456,53702],[0,-1]],[[96456,53701],[1,-1]],[[96458,53700],[1,0]],[[96460,53700],[1,-1]],[[96463,53692],[2,-2]],[[96465,53690],[1,-1]],[[96471,53686],[3,0]],[[96474,53686],[2,0]],[[96483,53691],[4,3]],[[96487,53694],[1,0]],[[96489,53694],[1,-1]],[[96495,53690],[1,0]],[[96496,53690],[3,1]],[[96499,53691],[4,2]],[[96504,53693],[2,0]],[[96531,53688],[3,0]],[[96536,53688],[1,0]],[[96541,53687],[2,-1]],[[96543,53686],[1,-4]],[[96548,53680],[2,1]],[[96563,53682],[1,-2]],[[96565,53679],[1,0]],[[96671,53660],[2,0]],[[96673,53660],[1,0]],[[96674,53660],[1,-1]],[[96675,53659],[0,0]],[[96675,53659],[0,-1]],[[96675,53658],[-1,-7]],[[96674,53651],[-1,-3]],[[96673,53648],[1,-2]],[[96680,53644],[1,0]],[[96695,53633],[2,-2]],[[96840,53575],[0,0]],[[96722,53589],[1,1]],[[96727,53597],[2,4]],[[96729,53601],[1,1]],[[95882,53783],[1,2]],[[95883,53785],[3,4]],[[95889,53789],[1,-1]],[[95890,53786],[0,-3]],[[95890,53783],[0,-4]],[[95889,53778],[-1,-2]],[[95889,53775],[1,-3]],[[95890,53770],[1,-1]],[[95891,53769],[0,0]],[[95892,53770],[0,1]],[[95892,53771],[1,0]],[[95893,53771],[3,1]],[[95897,53772],[2,1]],[[95899,53773],[1,0]],[[95900,53774],[1,0]],[[95901,53774],[0,-1]],[[95908,53775],[0,0]],[[95911,53767],[2,0]],[[95913,53767],[0,0]],[[95915,53770],[1,2]],[[95916,53772],[3,1]],[[95919,53773],[0,0]],[[95919,53773],[0,0]],[[95924,53774],[1,0]],[[95925,53774],[3,0]],[[95929,53774],[0,-1]],[[95930,53775],[0,0]],[[95931,53776],[2,-1]],[[95934,53776],[0,1]],[[95934,53777],[2,0]],[[95936,53777],[2,2]],[[95938,53779],[3,-1]],[[95941,53778],[1,1]],[[96030,53848],[2,0]],[[96033,53849],[1,0]],[[96037,53843],[1,-3]],[[96038,53840],[1,0]],[[96039,53841],[1,1]],[[96043,53844],[0,0]],[[96043,53844],[1,1]],[[96044,53846],[1,0]],[[96045,53845],[3,3]],[[96055,53855],[2,1]],[[96069,53860],[2,0]],[[96071,53860],[0,-1]],[[96071,53859],[1,-1]],[[96072,53858],[1,0]],[[96073,53857],[0,0]],[[96073,53857],[0,-1]],[[96073,53855],[0,-1]],[[96073,53854],[-1,-3]],[[96069,53846],[-1,-2]],[[96068,53844],[1,0]],[[96069,53844],[-1,-1]],[[96068,53843],[1,-2]],[[96069,53839],[1,-4]],[[96071,53832],[0,-1]],[[96071,53831],[0,-1]],[[96093,53855],[4,2]],[[96097,53857],[1,0]],[[96099,53877],[-1,1]],[[96098,53878],[0,1]],[[96098,53879],[1,3]],[[96101,53884],[0,2]],[[96135,53891],[0,1]],[[96138,53895],[3,0]],[[96141,53895],[1,-1]],[[96151,53897],[0,-1]],[[96151,53896],[2,-1]],[[96153,53897],[0,1]],[[96153,53898],[1,1]],[[96156,53900],[1,1]],[[96157,53903],[1,1]],[[96158,53906],[0,1]],[[96158,53907],[1,1]],[[96161,53914],[1,1]],[[96162,53915],[1,0]],[[96169,53912],[1,-1]],[[96170,53911],[1,-3]],[[96173,53906],[1,-2]],[[96174,53904],[3,-2]],[[96419,53683],[1,3]],[[96420,53687],[2,4]],[[96425,53698],[1,2]],[[96429,53693],[1,0]],[[96439,53702],[0,0]],[[96425,53500],[1,4]],[[96430,53514],[0,1]],[[96427,53516],[-2,2]],[[96425,53518],[0,2]],[[96425,53522],[0,1]],[[96425,53523],[0,5]],[[96421,53542],[0,3]],[[96421,53552],[0,2]],[[96419,53588],[-6,0]],[[93458,54179],[134,392]],[[96403,53407],[3,0]],[[94021,53917],[288,398]],[[94592,53759],[213,192]],[[95588,52952],[248,226]]]} \ No newline at end of file diff --git a/frontend/public/endangered-species-topo.json b/frontend/public/endangered-species-topo.json index 26abb5d0..43e88f1e 100644 --- a/frontend/public/endangered-species-topo.json +++ b/frontend/public/endangered-species-topo.json @@ -1 +1 @@ -{"type":"Topology","bbox":[18.85013234142872,18.774007841900584,955.4733965562898,605.4005645612752],"transform":{"scale":[0.009366326305411666,0.005866324230436051],"translate":[18.85013234142872,18.774007841900584]},"objects":{"overlay":{"type":"GeometryCollection","geometries":[{"type":"Point","coordinates":[7712,93067]},{"type":"Point","coordinates":[16747,93349]},{"type":"Point","coordinates":[16844,93392]},{"type":"Point","coordinates":[16797,93416]},{"type":"Point","coordinates":[16793,93459]},{"type":"Point","coordinates":[18294,93152]},{"type":"Point","coordinates":[18084,94320]},{"type":"Point","coordinates":[44146,8650]},{"type":"Point","coordinates":[13041,1234]},{"type":"Point","coordinates":[13051,1243]},{"type":"Point","coordinates":[13235,1388]},{"type":"Point","coordinates":[13023,1323]},{"type":"Point","coordinates":[18097,3331]},{"type":"Point","coordinates":[16876,2952]},{"type":"Point","coordinates":[10194,513]},{"type":"Point","coordinates":[10198,522]},{"type":"Point","coordinates":[10197,522]},{"type":"Point","coordinates":[8809,0]},{"type":"Point","coordinates":[11408,1173]},{"type":"Point","coordinates":[11415,1187]},{"type":"Point","coordinates":[11460,1233]},{"type":"Point","coordinates":[22774,5480]},{"type":"Point","coordinates":[11686,1474]},{"type":"Point","coordinates":[11679,1491]},{"type":"Point","coordinates":[22709,5521]},{"type":"Point","coordinates":[11470,1440]},{"type":"Point","coordinates":[11468,1450]},{"type":"Point","coordinates":[11471,1473]},{"type":"Point","coordinates":[8940,355]},{"type":"Point","coordinates":[8986,380]},{"type":"Point","coordinates":[8153,2]},{"type":"Point","coordinates":[11732,1635]},{"type":"Point","coordinates":[8918,411]},{"type":"Point","coordinates":[11406,1537]},{"type":"Point","coordinates":[17636,4010]},{"type":"Point","coordinates":[8863,494]},{"type":"Point","coordinates":[8842,514]},{"type":"Point","coordinates":[15176,3188]},{"type":"Point","coordinates":[12887,2332]},{"type":"Point","coordinates":[12852,2397]},{"type":"Point","coordinates":[12823,2414]},{"type":"Point","coordinates":[41396,9792]},{"type":"Point","coordinates":[12801,2646]},{"type":"Point","coordinates":[11365,2158]},{"type":"Point","coordinates":[11597,2337]},{"type":"Point","coordinates":[11572,2335]},{"type":"Point","coordinates":[11605,2350]},{"type":"Point","coordinates":[7943,812]},{"type":"Point","coordinates":[8542,1142]},{"type":"Point","coordinates":[11602,2511]},{"type":"Point","coordinates":[8544,1212]},{"type":"Point","coordinates":[7924,926]},{"type":"Point","coordinates":[55659,10724]},{"type":"Point","coordinates":[55622,10894]},{"type":"Point","coordinates":[53490,11570]},{"type":"Point","coordinates":[11036,3547]},{"type":"Point","coordinates":[17300,6011]},{"type":"Point","coordinates":[11046,3556]},{"type":"Point","coordinates":[36930,11023]},{"type":"Point","coordinates":[57340,11886]},{"type":"Point","coordinates":[50349,12194]},{"type":"Point","coordinates":[11914,4155]},{"type":"Point","coordinates":[39637,11558]},{"type":"Point","coordinates":[19334,7071]},{"type":"Point","coordinates":[7410,2301]},{"type":"Point","coordinates":[10599,3835]},{"type":"Point","coordinates":[60098,12106]},{"type":"Point","coordinates":[12206,4695]},{"type":"Point","coordinates":[11538,4421]},{"type":"Point","coordinates":[61615,12121]},{"type":"Point","coordinates":[58525,12476]},{"type":"Point","coordinates":[58518,12480]},{"type":"Point","coordinates":[49098,12756]},{"type":"Point","coordinates":[58058,12620]},{"type":"Point","coordinates":[58113,12626]},{"type":"Point","coordinates":[58112,12628]},{"type":"Point","coordinates":[49442,12907]},{"type":"Point","coordinates":[48696,12912]},{"type":"Point","coordinates":[58072,12713]},{"type":"Point","coordinates":[58072,12713]},{"type":"Point","coordinates":[58506,12691]},{"type":"Point","coordinates":[49487,12993]},{"type":"Point","coordinates":[49487,12993]},{"type":"Point","coordinates":[49399,12994]},{"type":"Point","coordinates":[57911,12811]},{"type":"Point","coordinates":[57919,12817]},{"type":"Point","coordinates":[57928,12821]},{"type":"Point","coordinates":[57922,12838]},{"type":"Point","coordinates":[8654,3633]},{"type":"Point","coordinates":[57939,12848]},{"type":"Point","coordinates":[57769,13003]},{"type":"Point","coordinates":[51722,13275]},{"type":"Point","coordinates":[57421,13104]},{"type":"Point","coordinates":[50523,13334]},{"type":"Point","coordinates":[6432,2905]},{"type":"Point","coordinates":[7154,3251]},{"type":"Point","coordinates":[60493,12991]},{"type":"Point","coordinates":[60491,12997]},{"type":"Point","coordinates":[50701,13511]},{"type":"Point","coordinates":[7273,3534]},{"type":"Point","coordinates":[37925,12729]},{"type":"Point","coordinates":[50809,13642]},{"type":"Point","coordinates":[50566,13666]},{"type":"Point","coordinates":[50436,13685]},{"type":"Point","coordinates":[10806,5213]},{"type":"Point","coordinates":[49855,13715]},{"type":"Point","coordinates":[16245,7422]},{"type":"Point","coordinates":[50824,13745]},{"type":"Point","coordinates":[7291,3730]},{"type":"Point","coordinates":[58333,13527]},{"type":"Point","coordinates":[50819,13861]},{"type":"Point","coordinates":[8449,4405]},{"type":"Point","coordinates":[59938,13535]},{"type":"Point","coordinates":[55661,13868]},{"type":"Point","coordinates":[17296,8051]},{"type":"Point","coordinates":[59566,13634]},{"type":"Point","coordinates":[8466,4505]},{"type":"Point","coordinates":[8498,4545]},{"type":"Point","coordinates":[7871,4265]},{"type":"Point","coordinates":[8480,4548]},{"type":"Point","coordinates":[8427,4526]},{"type":"Point","coordinates":[58679,13762]},{"type":"Point","coordinates":[50561,14086]},{"type":"Point","coordinates":[8451,4615]},{"type":"Point","coordinates":[50519,14115]},{"type":"Point","coordinates":[54815,14059]},{"type":"Point","coordinates":[39042,13431]},{"type":"Point","coordinates":[39077,13450]},{"type":"Point","coordinates":[38589,13391]},{"type":"Point","coordinates":[39068,13454]},{"type":"Point","coordinates":[60080,13795]},{"type":"Point","coordinates":[38167,13343]},{"type":"Point","coordinates":[20323,9319]},{"type":"Point","coordinates":[50521,14231]},{"type":"Point","coordinates":[55218,14151]},{"type":"Point","coordinates":[8471,4760]},{"type":"Point","coordinates":[39100,13505]},{"type":"Point","coordinates":[39100,13505]},{"type":"Point","coordinates":[59602,13896]},{"type":"Point","coordinates":[10328,5629]},{"type":"Point","coordinates":[10341,5640]},{"type":"Point","coordinates":[7637,4450]},{"type":"Point","coordinates":[56857,14150]},{"type":"Point","coordinates":[59587,14032]},{"type":"Point","coordinates":[39260,13685]},{"type":"Point","coordinates":[10280,5749]},{"type":"Point","coordinates":[52910,14417]},{"type":"Point","coordinates":[53592,14429]},{"type":"Point","coordinates":[53577,14453]},{"type":"Point","coordinates":[57338,14316]},{"type":"Point","coordinates":[39006,13889]},{"type":"Point","coordinates":[53020,14659]},{"type":"Point","coordinates":[10791,6239]},{"type":"Point","coordinates":[10762,6230]},{"type":"Point","coordinates":[59281,14379]},{"type":"Point","coordinates":[10531,6217]},{"type":"Point","coordinates":[58793,14505]},{"type":"Point","coordinates":[57506,14651]},{"type":"Point","coordinates":[59032,14568]},{"type":"Point","coordinates":[10508,6359]},{"type":"Point","coordinates":[10695,6442]},{"type":"Point","coordinates":[10555,6387]},{"type":"Point","coordinates":[59098,14611]},{"type":"Point","coordinates":[10689,6457]},{"type":"Point","coordinates":[59083,14634]},{"type":"Point","coordinates":[7881,5228]},{"type":"Point","coordinates":[50629,14954]},{"type":"Point","coordinates":[56320,14842]},{"type":"Point","coordinates":[59085,14676]},{"type":"Point","coordinates":[59081,14691]},{"type":"Point","coordinates":[59083,14694]},{"type":"Point","coordinates":[59069,14705]},{"type":"Point","coordinates":[59040,14713]},{"type":"Point","coordinates":[59040,14720]},{"type":"Point","coordinates":[9768,6158]},{"type":"Point","coordinates":[59063,14720]},{"type":"Point","coordinates":[59072,14725]},{"type":"Point","coordinates":[59053,14728]},{"type":"Point","coordinates":[58999,14735]},{"type":"Point","coordinates":[59005,14746]},{"type":"Point","coordinates":[59082,14740]},{"type":"Point","coordinates":[59002,14746]},{"type":"Point","coordinates":[59003,14746]},{"type":"Point","coordinates":[59082,14740]},{"type":"Point","coordinates":[59002,14746]},{"type":"Point","coordinates":[59084,14740]},{"type":"Point","coordinates":[59005,14747]},{"type":"Point","coordinates":[59002,14749]},{"type":"Point","coordinates":[59058,14745]},{"type":"Point","coordinates":[59058,14746]},{"type":"Point","coordinates":[59058,14746]},{"type":"Point","coordinates":[59058,14746]},{"type":"Point","coordinates":[59062,14746]},{"type":"Point","coordinates":[59071,14745]},{"type":"Point","coordinates":[59058,14746]},{"type":"Point","coordinates":[59058,14746]},{"type":"Point","coordinates":[59057,14749]},{"type":"Point","coordinates":[59057,14750]},{"type":"Point","coordinates":[59094,14747]},{"type":"Point","coordinates":[59059,14750]},{"type":"Point","coordinates":[59089,14748]},{"type":"Point","coordinates":[59089,14749]},{"type":"Point","coordinates":[59087,14749]},{"type":"Point","coordinates":[59050,14752]},{"type":"Point","coordinates":[59090,14750]},{"type":"Point","coordinates":[59090,14750]},{"type":"Point","coordinates":[59082,14751]},{"type":"Point","coordinates":[59082,14751]},{"type":"Point","coordinates":[59061,14754]},{"type":"Point","coordinates":[59081,14754]},{"type":"Point","coordinates":[59081,14755]},{"type":"Point","coordinates":[59093,14754]},{"type":"Point","coordinates":[59081,14755]},{"type":"Point","coordinates":[59093,14755]},{"type":"Point","coordinates":[59061,14759]},{"type":"Point","coordinates":[59100,14756]},{"type":"Point","coordinates":[59087,14758]},{"type":"Point","coordinates":[59058,14760]},{"type":"Point","coordinates":[59057,14762]},{"type":"Point","coordinates":[59097,14760]},{"type":"Point","coordinates":[59087,14762]},{"type":"Point","coordinates":[59089,14762]},{"type":"Point","coordinates":[59089,14762]},{"type":"Point","coordinates":[59089,14762]},{"type":"Point","coordinates":[59096,14762]},{"type":"Point","coordinates":[59096,14762]},{"type":"Point","coordinates":[59096,14763]},{"type":"Point","coordinates":[59096,14763]},{"type":"Point","coordinates":[59102,14771]},{"type":"Point","coordinates":[59084,14773]},{"type":"Point","coordinates":[59076,14775]},{"type":"Point","coordinates":[59095,14774]},{"type":"Point","coordinates":[59084,14778]},{"type":"Point","coordinates":[59086,14788]},{"type":"Point","coordinates":[59059,14810]},{"type":"Point","coordinates":[58952,14822]},{"type":"Point","coordinates":[64178,14285]},{"type":"Point","coordinates":[10596,6633]},{"type":"Point","coordinates":[59053,14843]},{"type":"Point","coordinates":[59056,14845]},{"type":"Point","coordinates":[11927,7205]},{"type":"Point","coordinates":[58949,14867]},{"type":"Point","coordinates":[58949,14869]},{"type":"Point","coordinates":[52541,15170]},{"type":"Point","coordinates":[52524,15173]},{"type":"Point","coordinates":[52538,15173]},{"type":"Point","coordinates":[52524,15173]},{"type":"Point","coordinates":[52524,15179]},{"type":"Point","coordinates":[40184,14576]},{"type":"Point","coordinates":[52520,15181]},{"type":"Point","coordinates":[52524,15183]},{"type":"Point","coordinates":[52539,15187]},{"type":"Point","coordinates":[52534,15191]},{"type":"Point","coordinates":[11657,7241]},{"type":"Point","coordinates":[58879,15044]},{"type":"Point","coordinates":[58942,15067]},{"type":"Point","coordinates":[56671,15233]},{"type":"Point","coordinates":[7817,5651]},{"type":"Point","coordinates":[56671,15236]},{"type":"Point","coordinates":[56672,15237]},{"type":"Point","coordinates":[58972,15095]},{"type":"Point","coordinates":[43476,15109]},{"type":"Point","coordinates":[54759,15353]},{"type":"Point","coordinates":[95843,5202]},{"type":"Point","coordinates":[95861,5208]},{"type":"Point","coordinates":[52466,15610]},{"type":"Point","coordinates":[52371,15629]},{"type":"Point","coordinates":[55189,15579]},{"type":"Point","coordinates":[55191,15580]},{"type":"Point","coordinates":[55191,15580]},{"type":"Point","coordinates":[38489,14846]},{"type":"Point","coordinates":[55190,15581]},{"type":"Point","coordinates":[63676,14950]},{"type":"Point","coordinates":[52406,15772]},{"type":"Point","coordinates":[52433,15781]},{"type":"Point","coordinates":[52433,15792]},{"type":"Point","coordinates":[7318,5993]},{"type":"Point","coordinates":[6949,5931]},{"type":"Point","coordinates":[9579,7139]},{"type":"Point","coordinates":[23597,12205]},{"type":"Point","coordinates":[63466,15319]},{"type":"Point","coordinates":[7171,6134]},{"type":"Point","coordinates":[6934,6235]},{"type":"Point","coordinates":[57493,16165]},{"type":"Point","coordinates":[58021,16131]},{"type":"Point","coordinates":[95074,6420]},{"type":"Point","coordinates":[57485,16203]},{"type":"Point","coordinates":[38606,15687]},{"type":"Point","coordinates":[9487,7583]},{"type":"Point","coordinates":[55690,16428]},{"type":"Point","coordinates":[38579,15746]},{"type":"Point","coordinates":[9753,7747]},{"type":"Point","coordinates":[7036,6615]},{"type":"Point","coordinates":[7069,6634]},{"type":"Point","coordinates":[46597,16564]},{"type":"Point","coordinates":[46598,16577]},{"type":"Point","coordinates":[38424,15887]},{"type":"Point","coordinates":[9466,7773]},{"type":"Point","coordinates":[38689,15936]},{"type":"Point","coordinates":[38700,15938]},{"type":"Point","coordinates":[38658,15950]},{"type":"Point","coordinates":[7020,6697]},{"type":"Point","coordinates":[54566,16741]},{"type":"Point","coordinates":[54564,16742]},{"type":"Point","coordinates":[95109,6848]},{"type":"Point","coordinates":[9367,7850]},{"type":"Point","coordinates":[9018,7698]},{"type":"Point","coordinates":[9560,7937]},{"type":"Point","coordinates":[9047,7720]},{"type":"Point","coordinates":[9039,7721]},{"type":"Point","coordinates":[9042,7723]},{"type":"Point","coordinates":[9047,7727]},{"type":"Point","coordinates":[9054,7731]},{"type":"Point","coordinates":[9054,7730]},{"type":"Point","coordinates":[9142,7777]},{"type":"Point","coordinates":[9022,7726]},{"type":"Point","coordinates":[38665,16075]},{"type":"Point","coordinates":[9039,7735]},{"type":"Point","coordinates":[9058,7744]},{"type":"Point","coordinates":[9013,7725]},{"type":"Point","coordinates":[7766,7171]},{"type":"Point","coordinates":[9071,7757]},{"type":"Point","coordinates":[9077,7760]},{"type":"Point","coordinates":[9058,7753]},{"type":"Point","coordinates":[9066,7757]},{"type":"Point","coordinates":[9057,7755]},{"type":"Point","coordinates":[9060,7758]},{"type":"Point","coordinates":[9081,7769]},{"type":"Point","coordinates":[8995,7736]},{"type":"Point","coordinates":[9018,7755]},{"type":"Point","coordinates":[9026,7758]},{"type":"Point","coordinates":[9024,7758]},{"type":"Point","coordinates":[8978,7745]},{"type":"Point","coordinates":[7193,6949]},{"type":"Point","coordinates":[53844,16879]},{"type":"Point","coordinates":[53845,16879]},{"type":"Point","coordinates":[53837,16890]},{"type":"Point","coordinates":[46667,16832]},{"type":"Point","coordinates":[38881,16174]},{"type":"Point","coordinates":[7040,6903]},{"type":"Point","coordinates":[38901,16184]},{"type":"Point","coordinates":[38901,16184]},{"type":"Point","coordinates":[38898,16185]},{"type":"Point","coordinates":[38897,16186]},{"type":"Point","coordinates":[38896,16186]},{"type":"Point","coordinates":[38896,16187]},{"type":"Point","coordinates":[39842,16314]},{"type":"Point","coordinates":[46539,16854]},{"type":"Point","coordinates":[46536,16857]},{"type":"Point","coordinates":[39873,16321]},{"type":"Point","coordinates":[46672,16866]},{"type":"Point","coordinates":[39809,16386]},{"type":"Point","coordinates":[7060,7033]},{"type":"Point","coordinates":[50405,17054]},{"type":"Point","coordinates":[50406,17055]},{"type":"Point","coordinates":[49650,17048]},{"type":"Point","coordinates":[49861,17053]},{"type":"Point","coordinates":[9237,8035]},{"type":"Point","coordinates":[9757,8278]},{"type":"Point","coordinates":[49850,17098]},{"type":"Point","coordinates":[49851,17098]},{"type":"Point","coordinates":[49873,17110]},{"type":"Point","coordinates":[49859,17111]},{"type":"Point","coordinates":[49858,17112]},{"type":"Point","coordinates":[57795,16919]},{"type":"Point","coordinates":[57676,16953]},{"type":"Point","coordinates":[57674,16955]},{"type":"Point","coordinates":[9628,8308]},{"type":"Point","coordinates":[43068,16843]},{"type":"Point","coordinates":[61883,16595]},{"type":"Point","coordinates":[8592,7863]},{"type":"Point","coordinates":[57666,16972]},{"type":"Point","coordinates":[57739,16968]},{"type":"Point","coordinates":[6944,7135]},{"type":"Point","coordinates":[43089,16875]},{"type":"Point","coordinates":[57058,17046]},{"type":"Point","coordinates":[61737,16659]},{"type":"Point","coordinates":[57670,17010]},{"type":"Point","coordinates":[57670,17011]},{"type":"Point","coordinates":[57671,17011]},{"type":"Point","coordinates":[57670,17011]},{"type":"Point","coordinates":[9967,8522]},{"type":"Point","coordinates":[38673,16462]},{"type":"Point","coordinates":[57670,17078]},{"type":"Point","coordinates":[57688,17103]},{"type":"Point","coordinates":[61715,16756]},{"type":"Point","coordinates":[49851,17396]},{"type":"Point","coordinates":[9471,8508]},{"type":"Point","coordinates":[43096,17112]},{"type":"Point","coordinates":[57593,17231]},{"type":"Point","coordinates":[69326,15771]},{"type":"Point","coordinates":[95061,7543]},{"type":"Point","coordinates":[95072,7546]},{"type":"Point","coordinates":[9282,8462]},{"type":"Point","coordinates":[63492,16732]},{"type":"Point","coordinates":[61395,17027]},{"type":"Point","coordinates":[57527,17361]},{"type":"Point","coordinates":[8723,8327]},{"type":"Point","coordinates":[19036,12322]},{"type":"Point","coordinates":[57480,17384]},{"type":"Point","coordinates":[57743,17369]},{"type":"Point","coordinates":[9501,8687]},{"type":"Point","coordinates":[9431,8685]},{"type":"Point","coordinates":[57772,17424]},{"type":"Point","coordinates":[57772,17425]},{"type":"Point","coordinates":[57615,17474]},{"type":"Point","coordinates":[9070,8598]},{"type":"Point","coordinates":[61178,17186]},{"type":"Point","coordinates":[20031,12866]},{"type":"Point","coordinates":[57445,17608]},{"type":"Point","coordinates":[9459,8934]},{"type":"Point","coordinates":[65104,16889]},{"type":"Point","coordinates":[65108,16891]},{"type":"Point","coordinates":[65106,16892]},{"type":"Point","coordinates":[65107,16892]},{"type":"Point","coordinates":[65106,16893]},{"type":"Point","coordinates":[9587,9024]},{"type":"Point","coordinates":[61081,17432]},{"type":"Point","coordinates":[55917,17882]},{"type":"Point","coordinates":[55917,17882]},{"type":"Point","coordinates":[55916,17883]},{"type":"Point","coordinates":[55917,17884]},{"type":"Point","coordinates":[51269,18020]},{"type":"Point","coordinates":[15790,11687]},{"type":"Point","coordinates":[61790,17557]},{"type":"Point","coordinates":[49471,18115]},{"type":"Point","coordinates":[59562,17801]},{"type":"Point","coordinates":[59715,17789]},{"type":"Point","coordinates":[59712,17792]},{"type":"Point","coordinates":[59639,17799]},{"type":"Point","coordinates":[57792,17982]},{"type":"Point","coordinates":[57792,17982]},{"type":"Point","coordinates":[65427,17182]},{"type":"Point","coordinates":[60489,17811]},{"type":"Point","coordinates":[56547,18141]},{"type":"Point","coordinates":[47926,18241]},{"type":"Point","coordinates":[34950,17017]},{"type":"Point","coordinates":[34950,17019]},{"type":"Point","coordinates":[12621,10783]},{"type":"Point","coordinates":[49151,18356]},{"type":"Point","coordinates":[9038,9323]},{"type":"Point","coordinates":[9189,9392]},{"type":"Point","coordinates":[8275,9018]},{"type":"Point","coordinates":[9082,9408]},{"type":"Point","coordinates":[48764,18435]},{"type":"Point","coordinates":[54612,18512]},{"type":"Point","coordinates":[48527,18553]},{"type":"Point","coordinates":[53977,18624]},{"type":"Point","coordinates":[61582,18142]},{"type":"Point","coordinates":[10518,10335]},{"type":"Point","coordinates":[53915,18775]},{"type":"Point","coordinates":[49052,18800]},{"type":"Point","coordinates":[49318,18810]},{"type":"Point","coordinates":[19980,13945]},{"type":"Point","coordinates":[20731,14187]},{"type":"Point","coordinates":[58236,18630]},{"type":"Point","coordinates":[53890,18853]},{"type":"Point","coordinates":[53889,18855]},{"type":"Point","coordinates":[38940,18146]},{"type":"Point","coordinates":[54185,18911]},{"type":"Point","coordinates":[54185,18911]},{"type":"Point","coordinates":[54171,18996]},{"type":"Point","coordinates":[54171,18996]},{"type":"Point","coordinates":[54171,18996]},{"type":"Point","coordinates":[54171,18996]},{"type":"Point","coordinates":[54169,18998]},{"type":"Point","coordinates":[54160,19053]},{"type":"Point","coordinates":[8494,9825]},{"type":"Point","coordinates":[8496,9834]},{"type":"Point","coordinates":[8465,9908]},{"type":"Point","coordinates":[33897,17863]},{"type":"Point","coordinates":[61998,18829]},{"type":"Point","coordinates":[62507,18901]},{"type":"Point","coordinates":[49053,19538]},{"type":"Point","coordinates":[63148,19062]},{"type":"Point","coordinates":[52980,19779]},{"type":"Point","coordinates":[8416,10568]},{"type":"Point","coordinates":[8040,10449]},{"type":"Point","coordinates":[96361,9680]},{"type":"Point","coordinates":[22233,16059]},{"type":"Point","coordinates":[8505,11034]},{"type":"Point","coordinates":[8291,10995]},{"type":"Point","coordinates":[60511,20024]},{"type":"Point","coordinates":[7700,11140]},{"type":"Point","coordinates":[52196,20801]},{"type":"Point","coordinates":[58881,20547]},{"type":"Point","coordinates":[70123,19070]},{"type":"Point","coordinates":[56275,20879]},{"type":"Point","coordinates":[30185,18861]},{"type":"Point","coordinates":[52154,21072]},{"type":"Point","coordinates":[30048,18984]},{"type":"Point","coordinates":[66648,20054]},{"type":"Point","coordinates":[66648,20056]},{"type":"Point","coordinates":[70120,19464]},{"type":"Point","coordinates":[7433,11588]},{"type":"Point","coordinates":[6230,11123]},{"type":"Point","coordinates":[56563,21239]},{"type":"Point","coordinates":[29718,19108]},{"type":"Point","coordinates":[5573,10889]},{"type":"Point","coordinates":[61969,20871]},{"type":"Point","coordinates":[7660,11977]},{"type":"Point","coordinates":[65433,20557]},{"type":"Point","coordinates":[65435,20558]},{"type":"Point","coordinates":[6798,11708]},{"type":"Point","coordinates":[5069,10941]},{"type":"Point","coordinates":[18056,16260]},{"type":"Point","coordinates":[17562,16119]},{"type":"Point","coordinates":[54175,21787]},{"type":"Point","coordinates":[54175,21792]},{"type":"Point","coordinates":[54175,21792]},{"type":"Point","coordinates":[6546,11780]},{"type":"Point","coordinates":[53171,21823]},{"type":"Point","coordinates":[54153,21826]},{"type":"Point","coordinates":[70596,20002]},{"type":"Point","coordinates":[70435,20066]},{"type":"Point","coordinates":[70445,20073]},{"type":"Point","coordinates":[6382,11835]},{"type":"Point","coordinates":[58712,21737]},{"type":"Point","coordinates":[57274,21921]},{"type":"Point","coordinates":[70309,20301]},{"type":"Point","coordinates":[70122,20348]},{"type":"Point","coordinates":[56718,22043]},{"type":"Point","coordinates":[54145,22171]},{"type":"Point","coordinates":[6492,12155]},{"type":"Point","coordinates":[56304,22158]},{"type":"Point","coordinates":[56279,22176]},{"type":"Point","coordinates":[43705,22032]},{"type":"Point","coordinates":[43705,22032]},{"type":"Point","coordinates":[57423,22150]},{"type":"Point","coordinates":[62039,21774]},{"type":"Point","coordinates":[69644,20666]},{"type":"Point","coordinates":[69656,20673]},{"type":"Point","coordinates":[53970,22383]},{"type":"Point","coordinates":[53953,22393]},{"type":"Point","coordinates":[53948,22394]},{"type":"Point","coordinates":[6365,12315]},{"type":"Point","coordinates":[25682,19230]},{"type":"Point","coordinates":[56860,22395]},{"type":"Point","coordinates":[57177,22383]},{"type":"Point","coordinates":[17969,17082]},{"type":"Point","coordinates":[56867,22433]},{"type":"Point","coordinates":[56858,22436]},{"type":"Point","coordinates":[56863,22444]},{"type":"Point","coordinates":[62636,22025]},{"type":"Point","coordinates":[56893,22517]},{"type":"Point","coordinates":[56893,22517]},{"type":"Point","coordinates":[56893,22517]},{"type":"Point","coordinates":[69990,20922]},{"type":"Point","coordinates":[69990,20922]},{"type":"Point","coordinates":[56878,22527]},{"type":"Point","coordinates":[56879,22527]},{"type":"Point","coordinates":[56871,22539]},{"type":"Point","coordinates":[56862,22542]},{"type":"Point","coordinates":[8065,13360]},{"type":"Point","coordinates":[70614,20858]},{"type":"Point","coordinates":[56865,22573]},{"type":"Point","coordinates":[56855,22580]},{"type":"Point","coordinates":[56854,22594]},{"type":"Point","coordinates":[56865,22599]},{"type":"Point","coordinates":[16599,16794]},{"type":"Point","coordinates":[64965,21856]},{"type":"Point","coordinates":[57183,22623]},{"type":"Point","coordinates":[56789,22647]},{"type":"Point","coordinates":[57183,22626]},{"type":"Point","coordinates":[57183,22626]},{"type":"Point","coordinates":[69943,21068]},{"type":"Point","coordinates":[56773,22669]},{"type":"Point","coordinates":[69910,21132]},{"type":"Point","coordinates":[56083,22760]},{"type":"Point","coordinates":[56083,22763]},{"type":"Point","coordinates":[70124,21112]},{"type":"Point","coordinates":[70692,21012]},{"type":"Point","coordinates":[8037,13555]},{"type":"Point","coordinates":[56212,22780]},{"type":"Point","coordinates":[8044,13566]},{"type":"Point","coordinates":[8001,13556]},{"type":"Point","coordinates":[8239,13683]},{"type":"Point","coordinates":[8231,13681]},{"type":"Point","coordinates":[8233,13682]},{"type":"Point","coordinates":[16497,16948]},{"type":"Point","coordinates":[7896,13549]},{"type":"Point","coordinates":[25068,19575]},{"type":"Point","coordinates":[7936,13572]},{"type":"Point","coordinates":[7929,13575]},{"type":"Point","coordinates":[7919,13575]},{"type":"Point","coordinates":[7930,13580]},{"type":"Point","coordinates":[7925,13583]},{"type":"Point","coordinates":[7927,13588]},{"type":"Point","coordinates":[16485,16980]},{"type":"Point","coordinates":[7925,13589]},{"type":"Point","coordinates":[7928,13591]},{"type":"Point","coordinates":[7928,13592]},{"type":"Point","coordinates":[7928,13592]},{"type":"Point","coordinates":[7928,13592]},{"type":"Point","coordinates":[7928,13592]},{"type":"Point","coordinates":[58826,22695]},{"type":"Point","coordinates":[16450,16981]},{"type":"Point","coordinates":[56136,22875]},{"type":"Point","coordinates":[52805,22987]},{"type":"Point","coordinates":[16474,17002]},{"type":"Point","coordinates":[25077,19636]},{"type":"Point","coordinates":[16447,17001]},{"type":"Point","coordinates":[56762,22870]},{"type":"Point","coordinates":[16473,17024]},{"type":"Point","coordinates":[56764,22874]},{"type":"Point","coordinates":[52794,23035]},{"type":"Point","coordinates":[25076,19688]},{"type":"Point","coordinates":[57134,22914]},{"type":"Point","coordinates":[54812,23061]},{"type":"Point","coordinates":[52958,23122]},{"type":"Point","coordinates":[56705,22997]},{"type":"Point","coordinates":[56382,23017]},{"type":"Point","coordinates":[56655,23068]},{"type":"Point","coordinates":[16996,17405]},{"type":"Point","coordinates":[55894,23130]},{"type":"Point","coordinates":[8074,13931]},{"type":"Point","coordinates":[15367,16856]},{"type":"Point","coordinates":[15365,16857]},{"type":"Point","coordinates":[15368,16863]},{"type":"Point","coordinates":[16982,17438]},{"type":"Point","coordinates":[94801,13699]},{"type":"Point","coordinates":[14989,16741]},{"type":"Point","coordinates":[7852,13868]},{"type":"Point","coordinates":[6786,13433]},{"type":"Point","coordinates":[25191,20000]},{"type":"Point","coordinates":[15163,16887]},{"type":"Point","coordinates":[15176,16907]},{"type":"Point","coordinates":[15199,16918]},{"type":"Point","coordinates":[56565,23295]},{"type":"Point","coordinates":[15365,17069]},{"type":"Point","coordinates":[5401,12957]},{"type":"Point","coordinates":[15341,17086]},{"type":"Point","coordinates":[55803,23421]},{"type":"Point","coordinates":[57389,23346]},{"type":"Point","coordinates":[69804,21823]},{"type":"Point","coordinates":[16608,17611]},{"type":"Point","coordinates":[66220,22445]},{"type":"Point","coordinates":[69243,21959]},{"type":"Point","coordinates":[57388,23418]},{"type":"Point","coordinates":[68829,22074]},{"type":"Point","coordinates":[15112,17156]},{"type":"Point","coordinates":[66091,22578]},{"type":"Point","coordinates":[15185,17245]},{"type":"Point","coordinates":[56712,23550]},{"type":"Point","coordinates":[56010,23596]},{"type":"Point","coordinates":[55557,23618]},{"type":"Point","coordinates":[55534,23636]},{"type":"Point","coordinates":[15202,17324]},{"type":"Point","coordinates":[68831,22254]},{"type":"Point","coordinates":[68202,22362]},{"type":"Point","coordinates":[56550,23661]},{"type":"Point","coordinates":[72416,21573]},{"type":"Point","coordinates":[16010,17667]},{"type":"Point","coordinates":[69287,22213]},{"type":"Point","coordinates":[96358,13607]},{"type":"Point","coordinates":[7943,14522]},{"type":"Point","coordinates":[58861,23596]},{"type":"Point","coordinates":[68804,22364]},{"type":"Point","coordinates":[68800,22368]},{"type":"Point","coordinates":[16070,17840]},{"type":"Point","coordinates":[56122,23844]},{"type":"Point","coordinates":[66306,22840]},{"type":"Point","coordinates":[55494,23879]},{"type":"Point","coordinates":[16225,17920]},{"type":"Point","coordinates":[7681,14532]},{"type":"Point","coordinates":[56367,23863]},{"type":"Point","coordinates":[55884,23931]},{"type":"Point","coordinates":[68725,22523]},{"type":"Point","coordinates":[16207,17973]},{"type":"Point","coordinates":[56284,23937]},{"type":"Point","coordinates":[15108,17604]},{"type":"Point","coordinates":[56634,23941]},{"type":"Point","coordinates":[28315,21515]},{"type":"Point","coordinates":[28315,21517]},{"type":"Point","coordinates":[51360,24097]},{"type":"Point","coordinates":[28315,21522]},{"type":"Point","coordinates":[56518,24001]},{"type":"Point","coordinates":[55516,24083]},{"type":"Point","coordinates":[16019,18039]},{"type":"Point","coordinates":[56070,24080]},{"type":"Point","coordinates":[56075,24084]},{"type":"Point","coordinates":[55223,24126]},{"type":"Point","coordinates":[56702,24057]},{"type":"Point","coordinates":[89974,16710]},{"type":"Point","coordinates":[89967,16736]},{"type":"Point","coordinates":[55819,24143]},{"type":"Point","coordinates":[56033,24136]},{"type":"Point","coordinates":[56033,24136]},{"type":"Point","coordinates":[56063,24139]},{"type":"Point","coordinates":[56454,24120]},{"type":"Point","coordinates":[13661,17259]},{"type":"Point","coordinates":[56309,24130]},{"type":"Point","coordinates":[56071,24144]},{"type":"Point","coordinates":[90341,16612]},{"type":"Point","coordinates":[56310,24133]},{"type":"Point","coordinates":[56067,24145]},{"type":"Point","coordinates":[56066,24146]},{"type":"Point","coordinates":[90600,16554]},{"type":"Point","coordinates":[56390,24181]},{"type":"Point","coordinates":[55979,24203]},{"type":"Point","coordinates":[56341,24187]},{"type":"Point","coordinates":[89836,16875]},{"type":"Point","coordinates":[55360,24239]},{"type":"Point","coordinates":[55974,24213]},{"type":"Point","coordinates":[55982,24213]},{"type":"Point","coordinates":[55974,24216]},{"type":"Point","coordinates":[55973,24229]},{"type":"Point","coordinates":[55547,24252]},{"type":"Point","coordinates":[56045,24231]},{"type":"Point","coordinates":[56043,24234]},{"type":"Point","coordinates":[56044,24234]},{"type":"Point","coordinates":[56030,24241]},{"type":"Point","coordinates":[56030,24241]},{"type":"Point","coordinates":[56055,24242]},{"type":"Point","coordinates":[97520,13587]},{"type":"Point","coordinates":[89789,16937]},{"type":"Point","coordinates":[89790,16937]},{"type":"Point","coordinates":[55920,24259]},{"type":"Point","coordinates":[90709,16582]},{"type":"Point","coordinates":[55625,24279]},{"type":"Point","coordinates":[97511,13611]},{"type":"Point","coordinates":[55743,24276]},{"type":"Point","coordinates":[55892,24273]},{"type":"Point","coordinates":[56464,24245]},{"type":"Point","coordinates":[55910,24273]},{"type":"Point","coordinates":[55904,24280]},{"type":"Point","coordinates":[68836,22853]},{"type":"Point","coordinates":[55625,24295]},{"type":"Point","coordinates":[55625,24295]},{"type":"Point","coordinates":[55625,24295]},{"type":"Point","coordinates":[55625,24296]},{"type":"Point","coordinates":[56310,24264]},{"type":"Point","coordinates":[55630,24297]},{"type":"Point","coordinates":[89864,16937]},{"type":"Point","coordinates":[55632,24298]},{"type":"Point","coordinates":[13456,17331]},{"type":"Point","coordinates":[90718,16609]},{"type":"Point","coordinates":[55921,24299]},{"type":"Point","coordinates":[90352,16760]},{"type":"Point","coordinates":[90353,16761]},{"type":"Point","coordinates":[55922,24306]},{"type":"Point","coordinates":[90357,16767]},{"type":"Point","coordinates":[55737,24317]},{"type":"Point","coordinates":[55926,24311]},{"type":"Point","coordinates":[89869,16967]},{"type":"Point","coordinates":[91314,16393]},{"type":"Point","coordinates":[55934,24322]},{"type":"Point","coordinates":[62052,23861]},{"type":"Point","coordinates":[90722,16651]},{"type":"Point","coordinates":[90343,16805]},{"type":"Point","coordinates":[55968,24352]},{"type":"Point","coordinates":[55746,24373]},{"type":"Point","coordinates":[55865,24372]},{"type":"Point","coordinates":[56129,24361]},{"type":"Point","coordinates":[13450,17435]},{"type":"Point","coordinates":[90256,16902]},{"type":"Point","coordinates":[56097,24395]},{"type":"Point","coordinates":[56104,24398]},{"type":"Point","coordinates":[86795,18214]},{"type":"Point","coordinates":[27887,21855]},{"type":"Point","coordinates":[56137,24426]},{"type":"Point","coordinates":[66228,23439]},{"type":"Point","coordinates":[55673,24457]},{"type":"Point","coordinates":[55960,24450]},{"type":"Point","coordinates":[68408,23105]},{"type":"Point","coordinates":[90230,16983]},{"type":"Point","coordinates":[68976,23019]},{"type":"Point","coordinates":[68432,23115]},{"type":"Point","coordinates":[56439,24448]},{"type":"Point","coordinates":[69582,22916]},{"type":"Point","coordinates":[69586,22922]},{"type":"Point","coordinates":[69583,22932]},{"type":"Point","coordinates":[55941,24490]},{"type":"Point","coordinates":[90394,16943]},{"type":"Point","coordinates":[55879,24499]},{"type":"Point","coordinates":[56687,24463]},{"type":"Point","coordinates":[93352,15737]},{"type":"Point","coordinates":[90306,16997]},{"type":"Point","coordinates":[55885,24524]},{"type":"Point","coordinates":[90264,17026]},{"type":"Point","coordinates":[55965,24529]},{"type":"Point","coordinates":[56030,24527]},{"type":"Point","coordinates":[55967,24535]},{"type":"Point","coordinates":[55962,24537]},{"type":"Point","coordinates":[55965,24537]},{"type":"Point","coordinates":[55965,24537]},{"type":"Point","coordinates":[55965,24537]},{"type":"Point","coordinates":[55965,24537]},{"type":"Point","coordinates":[55961,24539]},{"type":"Point","coordinates":[55390,24566]},{"type":"Point","coordinates":[56422,24519]},{"type":"Point","coordinates":[56288,24530]},{"type":"Point","coordinates":[56014,24547]},{"type":"Point","coordinates":[90706,16878]},{"type":"Point","coordinates":[97342,13987]},{"type":"Point","coordinates":[97343,13987]},{"type":"Point","coordinates":[56019,24548]},{"type":"Point","coordinates":[55966,24552]},{"type":"Point","coordinates":[69258,23059]},{"type":"Point","coordinates":[56123,24551]},{"type":"Point","coordinates":[66100,23578]},{"type":"Point","coordinates":[55734,24574]},{"type":"Point","coordinates":[55869,24574]},{"type":"Point","coordinates":[56127,24564]},{"type":"Point","coordinates":[68399,23225]},{"type":"Point","coordinates":[5497,14256]},{"type":"Point","coordinates":[90697,16907]},{"type":"Point","coordinates":[55667,24587]},{"type":"Point","coordinates":[55720,24587]},{"type":"Point","coordinates":[90698,16912]},{"type":"Point","coordinates":[90697,16913]},{"type":"Point","coordinates":[90698,16914]},{"type":"Point","coordinates":[68189,23271]},{"type":"Point","coordinates":[90699,16921]},{"type":"Point","coordinates":[54991,24631]},{"type":"Point","coordinates":[55795,24600]},{"type":"Point","coordinates":[90703,16925]},{"type":"Point","coordinates":[55650,24609]},{"type":"Point","coordinates":[55129,24636]},{"type":"Point","coordinates":[55128,24644]},{"type":"Point","coordinates":[90119,17173]},{"type":"Point","coordinates":[56147,24601]},{"type":"Point","coordinates":[55730,24625]},{"type":"Point","coordinates":[21403,20352]},{"type":"Point","coordinates":[21403,20352]},{"type":"Point","coordinates":[21403,20352]},{"type":"Point","coordinates":[21403,20352]},{"type":"Point","coordinates":[55128,24655]},{"type":"Point","coordinates":[68518,23260]},{"type":"Point","coordinates":[55274,24659]},{"type":"Point","coordinates":[55987,24632]},{"type":"Point","coordinates":[55078,24672]},{"type":"Point","coordinates":[68517,23269]},{"type":"Point","coordinates":[55183,24677]},{"type":"Point","coordinates":[91432,16688]},{"type":"Point","coordinates":[89391,17500]},{"type":"Point","coordinates":[55248,24722]},{"type":"Point","coordinates":[90146,17248]},{"type":"Point","coordinates":[90609,17066]},{"type":"Point","coordinates":[55934,24697]},{"type":"Point","coordinates":[55901,24699]},{"type":"Point","coordinates":[90613,17068]},{"type":"Point","coordinates":[99996,12856]},{"type":"Point","coordinates":[99999,12857]},{"type":"Point","coordinates":[55934,24711]},{"type":"Point","coordinates":[56926,24670]},{"type":"Point","coordinates":[56941,24672]},{"type":"Point","coordinates":[56679,24696]},{"type":"Point","coordinates":[55898,24746]},{"type":"Point","coordinates":[89607,17518]},{"type":"Point","coordinates":[68512,23390]},{"type":"Point","coordinates":[68170,23454]},{"type":"Point","coordinates":[68170,23454]},{"type":"Point","coordinates":[56104,24766]},{"type":"Point","coordinates":[55664,24799]},{"type":"Point","coordinates":[68339,23456]},{"type":"Point","coordinates":[56978,24758]},{"type":"Point","coordinates":[55397,24841]},{"type":"Point","coordinates":[99192,13373]},{"type":"Point","coordinates":[90068,17435]},{"type":"Point","coordinates":[90069,17435]},{"type":"Point","coordinates":[90115,17421]},{"type":"Point","coordinates":[90227,17382]},{"type":"Point","coordinates":[56000,24855]},{"type":"Point","coordinates":[97195,14383]},{"type":"Point","coordinates":[68856,23446]},{"type":"Point","coordinates":[58085,24764]},{"type":"Point","coordinates":[56122,24885]},{"type":"Point","coordinates":[97279,14383]},{"type":"Point","coordinates":[56074,24897]},{"type":"Point","coordinates":[56074,24897]},{"type":"Point","coordinates":[90107,17486]},{"type":"Point","coordinates":[55573,24943]},{"type":"Point","coordinates":[90610,17305]},{"type":"Point","coordinates":[58869,24753]},{"type":"Point","coordinates":[58875,24763]},{"type":"Point","coordinates":[58875,24763]},{"type":"Point","coordinates":[56424,24947]},{"type":"Point","coordinates":[56088,24975]},{"type":"Point","coordinates":[56077,24980]},{"type":"Point","coordinates":[55814,24997]},{"type":"Point","coordinates":[55982,24996]},{"type":"Point","coordinates":[86826,18812]},{"type":"Point","coordinates":[56029,25004]},{"type":"Point","coordinates":[55994,25010]},{"type":"Point","coordinates":[56026,25009]},{"type":"Point","coordinates":[56002,25011]},{"type":"Point","coordinates":[56559,24993]},{"type":"Point","coordinates":[90001,17646]},{"type":"Point","coordinates":[89598,17803]},{"type":"Point","coordinates":[89723,17758]},{"type":"Point","coordinates":[95940,15140]},{"type":"Point","coordinates":[55980,25035]},{"type":"Point","coordinates":[55981,25035]},{"type":"Point","coordinates":[55980,25036]},{"type":"Point","coordinates":[55980,25036]},{"type":"Point","coordinates":[55981,25036]},{"type":"Point","coordinates":[56425,25023]},{"type":"Point","coordinates":[56634,25013]},{"type":"Point","coordinates":[89727,17778]},{"type":"Point","coordinates":[56420,25028]},{"type":"Point","coordinates":[56427,25031]},{"type":"Point","coordinates":[56427,25031]},{"type":"Point","coordinates":[92415,16702]},{"type":"Point","coordinates":[89727,17785]},{"type":"Point","coordinates":[95963,15169]},{"type":"Point","coordinates":[55828,25086]},{"type":"Point","coordinates":[69370,23576]},{"type":"Point","coordinates":[87846,18533]},{"type":"Point","coordinates":[68900,23671]},{"type":"Point","coordinates":[68900,23671]},{"type":"Point","coordinates":[89758,17838]},{"type":"Point","coordinates":[56393,25103]},{"type":"Point","coordinates":[90934,17384]},{"type":"Point","coordinates":[91256,17256]},{"type":"Point","coordinates":[91256,17257]},{"type":"Point","coordinates":[90932,17388]},{"type":"Point","coordinates":[90522,17554]},{"type":"Point","coordinates":[89742,17869]},{"type":"Point","coordinates":[56076,25143]},{"type":"Point","coordinates":[89737,17880]},{"type":"Point","coordinates":[56097,25147]},{"type":"Point","coordinates":[90958,17401]},{"type":"Point","coordinates":[56004,25153]},{"type":"Point","coordinates":[97363,14629]},{"type":"Point","coordinates":[16923,19496]},{"type":"Point","coordinates":[89837,17874]},{"type":"Point","coordinates":[89948,17836]},{"type":"Point","coordinates":[89716,17933]},{"type":"Point","coordinates":[55846,25221]},{"type":"Point","coordinates":[89717,17962]},{"type":"Point","coordinates":[56548,25207]},{"type":"Point","coordinates":[56142,25239]},{"type":"Point","coordinates":[89733,17996]},{"type":"Point","coordinates":[24799,21958]},{"type":"Point","coordinates":[89715,18006]},{"type":"Point","coordinates":[91800,17176]},{"type":"Point","coordinates":[55727,25290]},{"type":"Point","coordinates":[7143,15745]},{"type":"Point","coordinates":[56014,25281]},{"type":"Point","coordinates":[89730,18025]},{"type":"Point","coordinates":[90281,17841]},{"type":"Point","coordinates":[91332,17436]},{"type":"Point","coordinates":[89728,18074]},{"type":"Point","coordinates":[89729,18084]},{"type":"Point","coordinates":[91329,17452]},{"type":"Point","coordinates":[89730,18091]},{"type":"Point","coordinates":[89817,18067]},{"type":"Point","coordinates":[89525,18184]},{"type":"Point","coordinates":[91382,17468]},{"type":"Point","coordinates":[56263,25371]},{"type":"Point","coordinates":[95048,15922]},{"type":"Point","coordinates":[91369,17500]},{"type":"Point","coordinates":[55798,25428]},{"type":"Point","coordinates":[89741,18168]},{"type":"Point","coordinates":[89742,18168]},{"type":"Point","coordinates":[89735,18171]},{"type":"Point","coordinates":[92675,16985]},{"type":"Point","coordinates":[89739,18170]},{"type":"Point","coordinates":[89740,18170]},{"type":"Point","coordinates":[89738,18171]},{"type":"Point","coordinates":[89736,18172]},{"type":"Point","coordinates":[89741,18172]},{"type":"Point","coordinates":[89741,18173]},{"type":"Point","coordinates":[89739,18176]},{"type":"Point","coordinates":[89748,18176]},{"type":"Point","coordinates":[89740,18179]},{"type":"Point","coordinates":[89741,18180]},{"type":"Point","coordinates":[89740,18185]},{"type":"Point","coordinates":[91356,17544]},{"type":"Point","coordinates":[89737,18187]},{"type":"Point","coordinates":[89738,18188]},{"type":"Point","coordinates":[89736,18189]},{"type":"Point","coordinates":[89736,18190]},{"type":"Point","coordinates":[89734,18190]},{"type":"Point","coordinates":[89734,18191]},{"type":"Point","coordinates":[89739,18189]},{"type":"Point","coordinates":[89734,18191]},{"type":"Point","coordinates":[89739,18189]},{"type":"Point","coordinates":[89736,18191]},{"type":"Point","coordinates":[89736,18191]},{"type":"Point","coordinates":[89743,18189]},{"type":"Point","coordinates":[89736,18193]},{"type":"Point","coordinates":[89743,18190]},{"type":"Point","coordinates":[89742,18192]},{"type":"Point","coordinates":[56102,25470]},{"type":"Point","coordinates":[56100,25472]},{"type":"Point","coordinates":[90856,17778]},{"type":"Point","coordinates":[90868,17788]},{"type":"Point","coordinates":[90590,17938]},{"type":"Point","coordinates":[89803,18257]},{"type":"Point","coordinates":[67907,24290]},{"type":"Point","coordinates":[68088,24269]},{"type":"Point","coordinates":[90945,17837]},{"type":"Point","coordinates":[90838,17900]},{"type":"Point","coordinates":[89937,18260]},{"type":"Point","coordinates":[96392,15522]},{"type":"Point","coordinates":[89866,18294]},{"type":"Point","coordinates":[89814,18320]},{"type":"Point","coordinates":[91052,17844]},{"type":"Point","coordinates":[90926,17941]},{"type":"Point","coordinates":[4930,15143]},{"type":"Point","coordinates":[90377,18174]},{"type":"Point","coordinates":[62611,25153]},{"type":"Point","coordinates":[90555,18110]},{"type":"Point","coordinates":[65161,24840]},{"type":"Point","coordinates":[89836,18444]},{"type":"Point","coordinates":[89837,18448]},{"type":"Point","coordinates":[89837,18453]},{"type":"Point","coordinates":[89837,18456]},{"type":"Point","coordinates":[95925,15922]},{"type":"Point","coordinates":[89839,18495]},{"type":"Point","coordinates":[89840,18504]},{"type":"Point","coordinates":[56907,25755]},{"type":"Point","coordinates":[89848,18529]},{"type":"Point","coordinates":[4829,15255]},{"type":"Point","coordinates":[89852,18539]},{"type":"Point","coordinates":[4861,15279]},{"type":"Point","coordinates":[4822,15264]},{"type":"Point","coordinates":[89858,18550]},{"type":"Point","coordinates":[89859,18551]},{"type":"Point","coordinates":[95936,15992]},{"type":"Point","coordinates":[91034,18093]},{"type":"Point","coordinates":[89863,18556]},{"type":"Point","coordinates":[95926,16003]},{"type":"Point","coordinates":[92220,17611]},{"type":"Point","coordinates":[95926,16003]},{"type":"Point","coordinates":[89865,18559]},{"type":"Point","coordinates":[90174,18441]},{"type":"Point","coordinates":[89871,18566]},{"type":"Point","coordinates":[89871,18566]},{"type":"Point","coordinates":[89873,18568]},{"type":"Point","coordinates":[90171,18452]},{"type":"Point","coordinates":[89877,18573]},{"type":"Point","coordinates":[89876,18575]},{"type":"Point","coordinates":[89911,18561]},{"type":"Point","coordinates":[4830,15304]},{"type":"Point","coordinates":[90182,18461]},{"type":"Point","coordinates":[52894,25992]},{"type":"Point","coordinates":[52897,25992]},{"type":"Point","coordinates":[56054,25896]},{"type":"Point","coordinates":[6999,16324]},{"type":"Point","coordinates":[56052,25899]},{"type":"Point","coordinates":[62199,25423]},{"type":"Point","coordinates":[89940,18579]},{"type":"Point","coordinates":[4382,15132]},{"type":"Point","coordinates":[91393,18017]},{"type":"Point","coordinates":[62226,25455]},{"type":"Point","coordinates":[98887,14702]},{"type":"Point","coordinates":[65043,25124]},{"type":"Point","coordinates":[65044,25127]},{"type":"Point","coordinates":[6932,16353]},{"type":"Point","coordinates":[98034,15153]},{"type":"Point","coordinates":[56319,25976]},{"type":"Point","coordinates":[57460,25917]},{"type":"Point","coordinates":[62230,25513]},{"type":"Point","coordinates":[62220,25515]},{"type":"Point","coordinates":[57481,25934]},{"type":"Point","coordinates":[90507,18493]},{"type":"Point","coordinates":[68237,24732]},{"type":"Point","coordinates":[92366,17746]},{"type":"Point","coordinates":[68236,24733]},{"type":"Point","coordinates":[90044,18688]},{"type":"Point","coordinates":[91472,18124]},{"type":"Point","coordinates":[90477,18535]},{"type":"Point","coordinates":[90181,18668]},{"type":"Point","coordinates":[90176,18671]},{"type":"Point","coordinates":[90265,18652]},{"type":"Point","coordinates":[90157,18695]},{"type":"Point","coordinates":[90073,18735]},{"type":"Point","coordinates":[4429,15355]},{"type":"Point","coordinates":[90014,18771]},{"type":"Point","coordinates":[90021,18771]},{"type":"Point","coordinates":[90001,18784]},{"type":"Point","coordinates":[90028,18775]},{"type":"Point","coordinates":[97312,15650]},{"type":"Point","coordinates":[90359,18650]},{"type":"Point","coordinates":[90355,18654]},{"type":"Point","coordinates":[90123,18753]},{"type":"Point","coordinates":[90122,18765]},{"type":"Point","coordinates":[55587,26176]},{"type":"Point","coordinates":[7167,16668]},{"type":"Point","coordinates":[55586,26188]},{"type":"Point","coordinates":[90112,18787]},{"type":"Point","coordinates":[90113,18787]},{"type":"Point","coordinates":[90440,18663]},{"type":"Point","coordinates":[55568,26199]},{"type":"Point","coordinates":[90111,18797]},{"type":"Point","coordinates":[90827,18522]},{"type":"Point","coordinates":[90081,18817]},{"type":"Point","coordinates":[91412,18310]},{"type":"Point","coordinates":[56069,26209]},{"type":"Point","coordinates":[56068,26212]},{"type":"Point","coordinates":[91408,18318]},{"type":"Point","coordinates":[25767,23173]},{"type":"Point","coordinates":[91433,18318]},{"type":"Point","coordinates":[91559,18271]},{"type":"Point","coordinates":[91552,18275]},{"type":"Point","coordinates":[56036,26232]},{"type":"Point","coordinates":[91553,18275]},{"type":"Point","coordinates":[91531,18285]},{"type":"Point","coordinates":[89762,18988]},{"type":"Point","coordinates":[91392,18344]},{"type":"Point","coordinates":[91560,18277]},{"type":"Point","coordinates":[56077,26236]},{"type":"Point","coordinates":[91390,18349]},{"type":"Point","coordinates":[56087,26238]},{"type":"Point","coordinates":[90092,18867]},{"type":"Point","coordinates":[91387,18354]},{"type":"Point","coordinates":[97957,15483]},{"type":"Point","coordinates":[90056,18901]},{"type":"Point","coordinates":[91567,18300]},{"type":"Point","coordinates":[38334,25585]},{"type":"Point","coordinates":[90436,18778]},{"type":"Point","coordinates":[90436,18780]},{"type":"Point","coordinates":[96467,16210]},{"type":"Point","coordinates":[90439,18782]},{"type":"Point","coordinates":[96465,16213]},{"type":"Point","coordinates":[90162,18900]},{"type":"Point","coordinates":[91361,18425]},{"type":"Point","coordinates":[90355,18826]},{"type":"Point","coordinates":[90074,18939]},{"type":"Point","coordinates":[90070,18944]},{"type":"Point","coordinates":[90919,18615]},{"type":"Point","coordinates":[90165,18914]},{"type":"Point","coordinates":[37594,25550]},{"type":"Point","coordinates":[91351,18461]},{"type":"Point","coordinates":[91349,18471]},{"type":"Point","coordinates":[90105,18979]},{"type":"Point","coordinates":[89110,19364]},{"type":"Point","coordinates":[91343,18491]},{"type":"Point","coordinates":[90113,18981]},{"type":"Point","coordinates":[90624,18792]},{"type":"Point","coordinates":[90124,18990]},{"type":"Point","coordinates":[90102,19002]},{"type":"Point","coordinates":[91341,18517]},{"type":"Point","coordinates":[91315,18533]},{"type":"Point","coordinates":[91315,18535]},{"type":"Point","coordinates":[91413,18498]},{"type":"Point","coordinates":[91373,18521]},{"type":"Point","coordinates":[91338,18538]},{"type":"Point","coordinates":[90953,18696]},{"type":"Point","coordinates":[91378,18527]},{"type":"Point","coordinates":[91551,18458]},{"type":"Point","coordinates":[91426,18519]},{"type":"Point","coordinates":[90470,18903]},{"type":"Point","coordinates":[91332,18561]},{"type":"Point","coordinates":[91332,18562]},{"type":"Point","coordinates":[91332,18562]},{"type":"Point","coordinates":[90465,18909]},{"type":"Point","coordinates":[90468,18908]},{"type":"Point","coordinates":[90464,18910]},{"type":"Point","coordinates":[91387,18541]},{"type":"Point","coordinates":[91387,18542]},{"type":"Point","coordinates":[91385,18543]},{"type":"Point","coordinates":[91411,18534]},{"type":"Point","coordinates":[91409,18535]},{"type":"Point","coordinates":[90470,18914]},{"type":"Point","coordinates":[90337,18967]},{"type":"Point","coordinates":[90337,18967]},{"type":"Point","coordinates":[91330,18573]},{"type":"Point","coordinates":[91373,18559]},{"type":"Point","coordinates":[90474,18922]},{"type":"Point","coordinates":[91363,18569]},{"type":"Point","coordinates":[91381,18564]},{"type":"Point","coordinates":[86754,20324]},{"type":"Point","coordinates":[91423,18552]},{"type":"Point","coordinates":[91355,18581]},{"type":"Point","coordinates":[91638,18467]},{"type":"Point","coordinates":[91471,18537]},{"type":"Point","coordinates":[91422,18557]},{"type":"Point","coordinates":[91422,18557]},{"type":"Point","coordinates":[90481,18935]},{"type":"Point","coordinates":[91409,18566]},{"type":"Point","coordinates":[93718,17605]},{"type":"Point","coordinates":[91420,18565]},{"type":"Point","coordinates":[91433,18562]},{"type":"Point","coordinates":[91029,18726]},{"type":"Point","coordinates":[7431,17106]},{"type":"Point","coordinates":[91419,18573]},{"type":"Point","coordinates":[91331,18611]},{"type":"Point","coordinates":[91036,18730]},{"type":"Point","coordinates":[7445,17121]},{"type":"Point","coordinates":[91433,18576]},{"type":"Point","coordinates":[91415,18587]},{"type":"Point","coordinates":[91330,18623]},{"type":"Point","coordinates":[91330,18623]},{"type":"Point","coordinates":[91436,18582]},{"type":"Point","coordinates":[91330,18627]},{"type":"Point","coordinates":[90030,19142]},{"type":"Point","coordinates":[91432,18587]},{"type":"Point","coordinates":[90468,18972]},{"type":"Point","coordinates":[91481,18568]},{"type":"Point","coordinates":[91480,18571]},{"type":"Point","coordinates":[91480,18571]},{"type":"Point","coordinates":[90542,18948]},{"type":"Point","coordinates":[90073,19133]},{"type":"Point","coordinates":[91399,18608]},{"type":"Point","coordinates":[91363,18624]},{"type":"Point","coordinates":[91331,18637]},{"type":"Point","coordinates":[91431,18598]},{"type":"Point","coordinates":[91399,18612]},{"type":"Point","coordinates":[91332,18639]},{"type":"Point","coordinates":[91332,18639]},{"type":"Point","coordinates":[91431,18599]},{"type":"Point","coordinates":[90080,19137]},{"type":"Point","coordinates":[92954,17974]},{"type":"Point","coordinates":[91399,18615]},{"type":"Point","coordinates":[91454,18593]},{"type":"Point","coordinates":[91333,18645]},{"type":"Point","coordinates":[91454,18596]},{"type":"Point","coordinates":[91365,18632]},{"type":"Point","coordinates":[91455,18597]},{"type":"Point","coordinates":[91455,18598]},{"type":"Point","coordinates":[91373,18632]},{"type":"Point","coordinates":[91339,18647]},{"type":"Point","coordinates":[91401,18623]},{"type":"Point","coordinates":[91430,18612]},{"type":"Point","coordinates":[91333,18652]},{"type":"Point","coordinates":[6571,16769]},{"type":"Point","coordinates":[91423,18618]},{"type":"Point","coordinates":[91324,18658]},{"type":"Point","coordinates":[91422,18619]},{"type":"Point","coordinates":[91419,18621]},{"type":"Point","coordinates":[91335,18655]},{"type":"Point","coordinates":[91364,18643]},{"type":"Point","coordinates":[91403,18628]},{"type":"Point","coordinates":[91304,18670]},{"type":"Point","coordinates":[91435,18617]},{"type":"Point","coordinates":[91286,18678]},{"type":"Point","coordinates":[91308,18671]},{"type":"Point","coordinates":[91335,18662]},{"type":"Point","coordinates":[91398,18636]},{"type":"Point","coordinates":[91377,18645]},{"type":"Point","coordinates":[91376,18646]},{"type":"Point","coordinates":[91404,18635]},{"type":"Point","coordinates":[91436,18623]},{"type":"Point","coordinates":[91397,18640]},{"type":"Point","coordinates":[91331,18668]},{"type":"Point","coordinates":[91556,18577]},{"type":"Point","coordinates":[91335,18666]},{"type":"Point","coordinates":[91471,18612]},{"type":"Point","coordinates":[91486,18607]},{"type":"Point","coordinates":[91335,18668]},{"type":"Point","coordinates":[91439,18626]},{"type":"Point","coordinates":[91454,18620]},{"type":"Point","coordinates":[91335,18668]},{"type":"Point","coordinates":[91309,18680]},{"type":"Point","coordinates":[91439,18630]},{"type":"Point","coordinates":[91408,18643]},{"type":"Point","coordinates":[91470,18619]},{"type":"Point","coordinates":[90545,18991]},{"type":"Point","coordinates":[91471,18623]},{"type":"Point","coordinates":[91485,18619]},{"type":"Point","coordinates":[91336,18680]},{"type":"Point","coordinates":[91485,18622]},{"type":"Point","coordinates":[91485,18622]},{"type":"Point","coordinates":[91360,18673]},{"type":"Point","coordinates":[91308,18695]},{"type":"Point","coordinates":[91396,18661]},{"type":"Point","coordinates":[91297,18701]},{"type":"Point","coordinates":[91517,18613]},{"type":"Point","coordinates":[91359,18678]},{"type":"Point","coordinates":[91394,18664]},{"type":"Point","coordinates":[91402,18662]},{"type":"Point","coordinates":[91309,18699]},{"type":"Point","coordinates":[91445,18645]},{"type":"Point","coordinates":[91402,18662]},{"type":"Point","coordinates":[91402,18662]},{"type":"Point","coordinates":[91343,18688]},{"type":"Point","coordinates":[91404,18663]},{"type":"Point","coordinates":[91404,18663]},{"type":"Point","coordinates":[91484,18633]},{"type":"Point","coordinates":[91393,18669]},{"type":"Point","coordinates":[91513,18621]},{"type":"Point","coordinates":[91334,18693]},{"type":"Point","coordinates":[91334,18694]},{"type":"Point","coordinates":[91328,18698]},{"type":"Point","coordinates":[91465,18643]},{"type":"Point","coordinates":[91320,18704]},{"type":"Point","coordinates":[91320,18704]},{"type":"Point","coordinates":[91506,18629]},{"type":"Point","coordinates":[91504,18630]},{"type":"Point","coordinates":[90415,19067]},{"type":"Point","coordinates":[91333,18702]},{"type":"Point","coordinates":[91392,18680]},{"type":"Point","coordinates":[91365,18692]},{"type":"Point","coordinates":[91482,18645]},{"type":"Point","coordinates":[91329,18707]},{"type":"Point","coordinates":[91357,18699]},{"type":"Point","coordinates":[91957,18455]},{"type":"Point","coordinates":[91325,18713]},{"type":"Point","coordinates":[91391,18687]},{"type":"Point","coordinates":[91320,18716]},{"type":"Point","coordinates":[91318,18717]},{"type":"Point","coordinates":[91329,18713]},{"type":"Point","coordinates":[91494,18646]},{"type":"Point","coordinates":[90933,18872]},{"type":"Point","coordinates":[90933,18872]},{"type":"Point","coordinates":[90933,18872]},{"type":"Point","coordinates":[90933,18872]},{"type":"Point","coordinates":[90933,18872]},{"type":"Point","coordinates":[90933,18872]},{"type":"Point","coordinates":[91324,18716]},{"type":"Point","coordinates":[91417,18680]},{"type":"Point","coordinates":[90957,18865]},{"type":"Point","coordinates":[90957,18865]},{"type":"Point","coordinates":[91521,18638]},{"type":"Point","coordinates":[89278,19521]},{"type":"Point","coordinates":[91390,18693]},{"type":"Point","coordinates":[90610,19005]},{"type":"Point","coordinates":[91482,18658]},{"type":"Point","coordinates":[91249,18756]},{"type":"Point","coordinates":[91422,18687]},{"type":"Point","coordinates":[91369,18709]},{"type":"Point","coordinates":[92718,18157]},{"type":"Point","coordinates":[91415,18693]},{"type":"Point","coordinates":[91370,18712]},{"type":"Point","coordinates":[91339,18725]},{"type":"Point","coordinates":[91347,18722]},{"type":"Point","coordinates":[91329,18731]},{"type":"Point","coordinates":[91396,18706]},{"type":"Point","coordinates":[91310,18740]},{"type":"Point","coordinates":[98464,15584]},{"type":"Point","coordinates":[91428,18697]},{"type":"Point","coordinates":[91309,18750]},{"type":"Point","coordinates":[91369,18726]},{"type":"Point","coordinates":[91352,18734]},{"type":"Point","coordinates":[91325,18747]},{"type":"Point","coordinates":[91378,18726]},{"type":"Point","coordinates":[90413,19113]},{"type":"Point","coordinates":[91358,18737]},{"type":"Point","coordinates":[91349,18742]},{"type":"Point","coordinates":[91433,18709]},{"type":"Point","coordinates":[91349,18743]},{"type":"Point","coordinates":[91437,18709]},{"type":"Point","coordinates":[91349,18749]},{"type":"Point","coordinates":[91443,18712]},{"type":"Point","coordinates":[91443,18712]},{"type":"Point","coordinates":[91560,18665]},{"type":"Point","coordinates":[91323,18761]},{"type":"Point","coordinates":[89857,19341]},{"type":"Point","coordinates":[91348,18752]},{"type":"Point","coordinates":[98473,15605]},{"type":"Point","coordinates":[91684,18616]},{"type":"Point","coordinates":[91560,18667]},{"type":"Point","coordinates":[91299,18773]},{"type":"Point","coordinates":[98740,15477]},{"type":"Point","coordinates":[91395,18735]},{"type":"Point","coordinates":[98470,15610]},{"type":"Point","coordinates":[91347,18756]},{"type":"Point","coordinates":[91448,18716]},{"type":"Point","coordinates":[91300,18780]},{"type":"Point","coordinates":[98473,15613]},{"type":"Point","coordinates":[91346,18763]},{"type":"Point","coordinates":[91439,18725]},{"type":"Point","coordinates":[91439,18726]},{"type":"Point","coordinates":[91699,18622]},{"type":"Point","coordinates":[91346,18765]},{"type":"Point","coordinates":[91338,18769]},{"type":"Point","coordinates":[98478,15616]},{"type":"Point","coordinates":[91346,18766]},{"type":"Point","coordinates":[91346,18766]},{"type":"Point","coordinates":[91471,18716]},{"type":"Point","coordinates":[91346,18766]},{"type":"Point","coordinates":[91478,18714]},{"type":"Point","coordinates":[91472,18717]},{"type":"Point","coordinates":[91370,18758]},{"type":"Point","coordinates":[90502,19105]},{"type":"Point","coordinates":[91298,18789]},{"type":"Point","coordinates":[91493,18712]},{"type":"Point","coordinates":[91544,18691]},{"type":"Point","coordinates":[43578,26469]},{"type":"Point","coordinates":[91458,18729]},{"type":"Point","coordinates":[91345,18775]},{"type":"Point","coordinates":[91317,18788]},{"type":"Point","coordinates":[91295,18798]},{"type":"Point","coordinates":[91508,18713]},{"type":"Point","coordinates":[91508,18713]},{"type":"Point","coordinates":[91512,18712]},{"type":"Point","coordinates":[90783,19004]},{"type":"Point","coordinates":[91344,18780]},{"type":"Point","coordinates":[91396,18760]},{"type":"Point","coordinates":[91369,18772]},{"type":"Point","coordinates":[91384,18767]},{"type":"Point","coordinates":[91345,18783]},{"type":"Point","coordinates":[91425,18751]},{"type":"Point","coordinates":[91459,18738]},{"type":"Point","coordinates":[91287,18807]},{"type":"Point","coordinates":[91335,18789]},{"type":"Point","coordinates":[91330,18791]},{"type":"Point","coordinates":[91426,18754]},{"type":"Point","coordinates":[91365,18779]},{"type":"Point","coordinates":[91302,18805]},{"type":"Point","coordinates":[91424,18758]},{"type":"Point","coordinates":[91402,18767]},{"type":"Point","coordinates":[91304,18807]},{"type":"Point","coordinates":[93274,17992]},{"type":"Point","coordinates":[91480,18736]},{"type":"Point","coordinates":[91424,18760]},{"type":"Point","coordinates":[91424,18760]},{"type":"Point","coordinates":[91345,18792]},{"type":"Point","coordinates":[91366,18785]},{"type":"Point","coordinates":[91509,18727]},{"type":"Point","coordinates":[91366,18786]},{"type":"Point","coordinates":[91366,18786]},{"type":"Point","coordinates":[90489,19137]},{"type":"Point","coordinates":[90489,19137]},{"type":"Point","coordinates":[90488,19138]},{"type":"Point","coordinates":[90487,19138]},{"type":"Point","coordinates":[90488,19138]},{"type":"Point","coordinates":[90490,19137]},{"type":"Point","coordinates":[91345,18797]},{"type":"Point","coordinates":[90489,19138]},{"type":"Point","coordinates":[90490,19138]},{"type":"Point","coordinates":[98323,15722]},{"type":"Point","coordinates":[98483,15646]},{"type":"Point","coordinates":[95383,17084]},{"type":"Point","coordinates":[91397,18778]},{"type":"Point","coordinates":[91431,18766]},{"type":"Point","coordinates":[91414,18774]},{"type":"Point","coordinates":[91414,18774]},{"type":"Point","coordinates":[98452,15665]},{"type":"Point","coordinates":[91288,18826]},{"type":"Point","coordinates":[91423,18772]},{"type":"Point","coordinates":[91342,18805]},{"type":"Point","coordinates":[91573,18712]},{"type":"Point","coordinates":[91342,18806]},{"type":"Point","coordinates":[90487,19147]},{"type":"Point","coordinates":[90487,19147]},{"type":"Point","coordinates":[91328,18812]},{"type":"Point","coordinates":[90493,19145]},{"type":"Point","coordinates":[91317,18817]},{"type":"Point","coordinates":[91335,18812]},{"type":"Point","coordinates":[91476,18755]},{"type":"Point","coordinates":[91289,18831]},{"type":"Point","coordinates":[91417,18780]},{"type":"Point","coordinates":[90487,19151]},{"type":"Point","coordinates":[6322,16818]},{"type":"Point","coordinates":[91434,18774]},{"type":"Point","coordinates":[91423,18781]},{"type":"Point","coordinates":[91435,18776]},{"type":"Point","coordinates":[90486,19156]},{"type":"Point","coordinates":[91400,18792]},{"type":"Point","coordinates":[91266,18847]},{"type":"Point","coordinates":[91192,18877]},{"type":"Point","coordinates":[90488,19157]},{"type":"Point","coordinates":[91302,18835]},{"type":"Point","coordinates":[91436,18782]},{"type":"Point","coordinates":[91475,18766]},{"type":"Point","coordinates":[91315,18831]},{"type":"Point","coordinates":[91406,18795]},{"type":"Point","coordinates":[91356,18816]},{"type":"Point","coordinates":[91356,18816]},{"type":"Point","coordinates":[91358,18818]},{"type":"Point","coordinates":[91365,18815]},{"type":"Point","coordinates":[91407,18803]},{"type":"Point","coordinates":[91297,18847]},{"type":"Point","coordinates":[90783,19054]},{"type":"Point","coordinates":[91365,18824]},{"type":"Point","coordinates":[91365,18825]},{"type":"Point","coordinates":[91313,18847]},{"type":"Point","coordinates":[91396,18816]},{"type":"Point","coordinates":[91387,18823]},{"type":"Point","coordinates":[91409,18815]},{"type":"Point","coordinates":[91474,18790]},{"type":"Point","coordinates":[91438,18805]},{"type":"Point","coordinates":[91368,18834]},{"type":"Point","coordinates":[91471,18794]},{"type":"Point","coordinates":[91400,18824]},{"type":"Point","coordinates":[91400,18824]},{"type":"Point","coordinates":[90296,19264]},{"type":"Point","coordinates":[91407,18823]},{"type":"Point","coordinates":[91407,18823]},{"type":"Point","coordinates":[91407,18823]},{"type":"Point","coordinates":[91298,18867]},{"type":"Point","coordinates":[91493,18790]},{"type":"Point","coordinates":[91407,18825]},{"type":"Point","coordinates":[90913,19024]},{"type":"Point","coordinates":[91408,18827]},{"type":"Point","coordinates":[91343,18855]},{"type":"Point","coordinates":[91343,18855]},{"type":"Point","coordinates":[91343,18855]},{"type":"Point","coordinates":[91366,18847]},{"type":"Point","coordinates":[91497,18795]},{"type":"Point","coordinates":[91498,18795]},{"type":"Point","coordinates":[91419,18827]},{"type":"Point","coordinates":[91587,18761]},{"type":"Point","coordinates":[91587,18762]},{"type":"Point","coordinates":[91437,18824]},{"type":"Point","coordinates":[54626,26775]},{"type":"Point","coordinates":[91298,18880]},{"type":"Point","coordinates":[91298,18880]},{"type":"Point","coordinates":[91305,18879]},{"type":"Point","coordinates":[91592,18763]},{"type":"Point","coordinates":[91398,18842]},{"type":"Point","coordinates":[91348,18863]},{"type":"Point","coordinates":[91294,18887]},{"type":"Point","coordinates":[91467,18818]},{"type":"Point","coordinates":[91398,18847]},{"type":"Point","coordinates":[91467,18819]},{"type":"Point","coordinates":[88645,19918]},{"type":"Point","coordinates":[69751,25157]},{"type":"Point","coordinates":[91293,18895]},{"type":"Point","coordinates":[91293,18897]},{"type":"Point","coordinates":[91363,18869]},{"type":"Point","coordinates":[91229,18925]},{"type":"Point","coordinates":[91361,18872]},{"type":"Point","coordinates":[91465,18831]},{"type":"Point","coordinates":[91363,18873]},{"type":"Point","coordinates":[91304,18897]},{"type":"Point","coordinates":[91228,18928]},{"type":"Point","coordinates":[91362,18874]},{"type":"Point","coordinates":[90096,19377]},{"type":"Point","coordinates":[90929,19052]},{"type":"Point","coordinates":[90929,19052]},{"type":"Point","coordinates":[91346,18885]},{"type":"Point","coordinates":[91389,18869]},{"type":"Point","coordinates":[91463,18839]},{"type":"Point","coordinates":[90930,19053]},{"type":"Point","coordinates":[90930,19054]},{"type":"Point","coordinates":[91358,18883]},{"type":"Point","coordinates":[91358,18883]},{"type":"Point","coordinates":[61789,26310]},{"type":"Point","coordinates":[90931,19054]},{"type":"Point","coordinates":[90931,19054]},{"type":"Point","coordinates":[90932,19055]},{"type":"Point","coordinates":[91355,18886]},{"type":"Point","coordinates":[91441,18852]},{"type":"Point","coordinates":[91464,18844]},{"type":"Point","coordinates":[91464,18844]},{"type":"Point","coordinates":[98534,15717]},{"type":"Point","coordinates":[91400,18871]},{"type":"Point","coordinates":[91401,18872]},{"type":"Point","coordinates":[91345,18894]},{"type":"Point","coordinates":[91398,18874]},{"type":"Point","coordinates":[91352,18893]},{"type":"Point","coordinates":[91351,18893]},{"type":"Point","coordinates":[91351,18896]},{"type":"Point","coordinates":[91605,18794]},{"type":"Point","coordinates":[91506,18835]},{"type":"Point","coordinates":[98371,15803]},{"type":"Point","coordinates":[91605,18796]},{"type":"Point","coordinates":[91339,18904]},{"type":"Point","coordinates":[87622,20328]},{"type":"Point","coordinates":[91509,18836]},{"type":"Point","coordinates":[91342,18904]},{"type":"Point","coordinates":[91510,18836]},{"type":"Point","coordinates":[91385,18886]},{"type":"Point","coordinates":[91406,18878]},{"type":"Point","coordinates":[91256,18939]},{"type":"Point","coordinates":[91465,18856]},{"type":"Point","coordinates":[91318,18916]},{"type":"Point","coordinates":[91341,18911]},{"type":"Point","coordinates":[91508,18846]},{"type":"Point","coordinates":[91395,18894]},{"type":"Point","coordinates":[91628,18802]},{"type":"Point","coordinates":[91480,18862]},{"type":"Point","coordinates":[91354,18915]},{"type":"Point","coordinates":[91355,18916]},{"type":"Point","coordinates":[91271,18949]},{"type":"Point","coordinates":[91392,18901]},{"type":"Point","coordinates":[91345,18921]},{"type":"Point","coordinates":[91271,18952]},{"type":"Point","coordinates":[91500,18861]},{"type":"Point","coordinates":[91224,18973]},{"type":"Point","coordinates":[91357,18922]},{"type":"Point","coordinates":[91358,18922]},{"type":"Point","coordinates":[91394,18908]},{"type":"Point","coordinates":[6602,17066]},{"type":"Point","coordinates":[91407,18905]},{"type":"Point","coordinates":[91436,18894]},{"type":"Point","coordinates":[91408,18906]},{"type":"Point","coordinates":[91329,18940]},{"type":"Point","coordinates":[88712,19958]},{"type":"Point","coordinates":[91505,18870]},{"type":"Point","coordinates":[91392,18916]},{"type":"Point","coordinates":[91326,18948]},{"type":"Point","coordinates":[91499,18879]},{"type":"Point","coordinates":[91483,18887]},{"type":"Point","coordinates":[91433,18911]},{"type":"Point","coordinates":[91419,18917]},{"type":"Point","coordinates":[91587,18850]},{"type":"Point","coordinates":[91586,18851]},{"type":"Point","coordinates":[91585,18852]},{"type":"Point","coordinates":[91586,18852]},{"type":"Point","coordinates":[91372,18941]},{"type":"Point","coordinates":[12278,19469]},{"type":"Point","coordinates":[64195,26098]},{"type":"Point","coordinates":[91373,18945]},{"type":"Point","coordinates":[12276,19472]},{"type":"Point","coordinates":[90787,19181]},{"type":"Point","coordinates":[91595,18857]},{"type":"Point","coordinates":[91226,19007]},{"type":"Point","coordinates":[91403,18941]},{"type":"Point","coordinates":[56910,26778]},{"type":"Point","coordinates":[91421,18942]},{"type":"Point","coordinates":[91492,18913]},{"type":"Point","coordinates":[91418,18946]},{"type":"Point","coordinates":[91329,18982]},{"type":"Point","coordinates":[91278,19007]},{"type":"Point","coordinates":[91280,19006]},{"type":"Point","coordinates":[91438,18943]},{"type":"Point","coordinates":[91419,18951]},{"type":"Point","coordinates":[91451,18939]},{"type":"Point","coordinates":[53840,26919]},{"type":"Point","coordinates":[91375,18973]},{"type":"Point","coordinates":[91447,18945]},{"type":"Point","coordinates":[91458,18940]},{"type":"Point","coordinates":[12285,19506]},{"type":"Point","coordinates":[91458,18942]},{"type":"Point","coordinates":[12279,19505]},{"type":"Point","coordinates":[91527,18916]},{"type":"Point","coordinates":[91390,18975]},{"type":"Point","coordinates":[91454,18954]},{"type":"Point","coordinates":[91421,18968]},{"type":"Point","coordinates":[91275,19029]},{"type":"Point","coordinates":[91420,18976]},{"type":"Point","coordinates":[88978,19932]},{"type":"Point","coordinates":[91370,18998]},{"type":"Point","coordinates":[88545,20105]},{"type":"Point","coordinates":[12290,19541]},{"type":"Point","coordinates":[91031,19149]},{"type":"Point","coordinates":[91356,19022]},{"type":"Point","coordinates":[91256,19062]},{"type":"Point","coordinates":[91216,19079]},{"type":"Point","coordinates":[91325,19036]},{"type":"Point","coordinates":[88543,20115]},{"type":"Point","coordinates":[88517,20127]},{"type":"Point","coordinates":[88896,19989]},{"type":"Point","coordinates":[91257,19074]},{"type":"Point","coordinates":[91507,18975]},{"type":"Point","coordinates":[91442,19003]},{"type":"Point","coordinates":[91216,19095]},{"type":"Point","coordinates":[91580,18952]},{"type":"Point","coordinates":[94433,17753]},{"type":"Point","coordinates":[91507,18983]},{"type":"Point","coordinates":[12321,19583]},{"type":"Point","coordinates":[12324,19585]},{"type":"Point","coordinates":[91374,19041]},{"type":"Point","coordinates":[91370,19046]},{"type":"Point","coordinates":[91404,19036]},{"type":"Point","coordinates":[91246,19102]},{"type":"Point","coordinates":[88710,20088]},{"type":"Point","coordinates":[91251,19102]},{"type":"Point","coordinates":[91252,19103]},{"type":"Point","coordinates":[91481,19011]},{"type":"Point","coordinates":[91249,19105]},{"type":"Point","coordinates":[91249,19106]},{"type":"Point","coordinates":[91292,19092]},{"type":"Point","coordinates":[91252,19108]},{"type":"Point","coordinates":[91252,19108]},{"type":"Point","coordinates":[91255,19108]},{"type":"Point","coordinates":[91255,19109]},{"type":"Point","coordinates":[91255,19109]},{"type":"Point","coordinates":[91250,19111]},{"type":"Point","coordinates":[91250,19111]},{"type":"Point","coordinates":[91250,19111]},{"type":"Point","coordinates":[91250,19111]},{"type":"Point","coordinates":[91256,19111]},{"type":"Point","coordinates":[96128,17032]},{"type":"Point","coordinates":[91542,19003]},{"type":"Point","coordinates":[91543,19003]},{"type":"Point","coordinates":[65561,26040]},{"type":"Point","coordinates":[91326,19093]},{"type":"Point","coordinates":[91466,19038]},{"type":"Point","coordinates":[91466,19038]},{"type":"Point","coordinates":[91259,19122]},{"type":"Point","coordinates":[91529,19017]},{"type":"Point","coordinates":[91519,19022]},{"type":"Point","coordinates":[91559,19006]},{"type":"Point","coordinates":[91484,19037]},{"type":"Point","coordinates":[91780,18917]},{"type":"Point","coordinates":[91478,19042]},{"type":"Point","coordinates":[91261,19131]},{"type":"Point","coordinates":[91262,19131]},{"type":"Point","coordinates":[90177,19563]},{"type":"Point","coordinates":[91261,19136]},{"type":"Point","coordinates":[12282,19622]},{"type":"Point","coordinates":[91263,19140]},{"type":"Point","coordinates":[91333,19112]},{"type":"Point","coordinates":[64525,26207]},{"type":"Point","coordinates":[91554,19026]},{"type":"Point","coordinates":[91984,18853]},{"type":"Point","coordinates":[91984,18856]},{"type":"Point","coordinates":[88532,20210]},{"type":"Point","coordinates":[91289,19145]},{"type":"Point","coordinates":[90104,19616]},{"type":"Point","coordinates":[90104,19616]},{"type":"Point","coordinates":[91524,19057]},{"type":"Point","coordinates":[49817,27087]},{"type":"Point","coordinates":[91261,19168]},{"type":"Point","coordinates":[91547,19054]},{"type":"Point","coordinates":[91547,19055]},{"type":"Point","coordinates":[91369,19129]},{"type":"Point","coordinates":[91260,19181]},{"type":"Point","coordinates":[91329,19155]},{"type":"Point","coordinates":[91266,19181]},{"type":"Point","coordinates":[91254,19185]},{"type":"Point","coordinates":[91257,19185]},{"type":"Point","coordinates":[91244,19191]},{"type":"Point","coordinates":[91298,19169]},{"type":"Point","coordinates":[91279,19178]},{"type":"Point","coordinates":[91265,19184]},{"type":"Point","coordinates":[91289,19175]},{"type":"Point","coordinates":[91255,19189]},{"type":"Point","coordinates":[91314,19167]},{"type":"Point","coordinates":[91249,19195]},{"type":"Point","coordinates":[91251,19196]},{"type":"Point","coordinates":[91243,19200]},{"type":"Point","coordinates":[91252,19196]},{"type":"Point","coordinates":[91353,19160]},{"type":"Point","coordinates":[91242,19207]},{"type":"Point","coordinates":[91242,19207]},{"type":"Point","coordinates":[91270,19197]},{"type":"Point","coordinates":[91252,19205]},{"type":"Point","coordinates":[91245,19209]},{"type":"Point","coordinates":[91251,19207]},{"type":"Point","coordinates":[91279,19197]},{"type":"Point","coordinates":[91280,19198]},{"type":"Point","coordinates":[89500,19900]},{"type":"Point","coordinates":[91282,19200]},{"type":"Point","coordinates":[91282,19201]},{"type":"Point","coordinates":[91231,19221]},{"type":"Point","coordinates":[91262,19209]},{"type":"Point","coordinates":[91271,19208]},{"type":"Point","coordinates":[91270,19210]},{"type":"Point","coordinates":[91265,19214]},{"type":"Point","coordinates":[89618,19861]},{"type":"Point","coordinates":[91266,19216]},{"type":"Point","coordinates":[91266,19216]},{"type":"Point","coordinates":[91268,19215]},{"type":"Point","coordinates":[91268,19215]},{"type":"Point","coordinates":[91237,19230]},{"type":"Point","coordinates":[91280,19214]},{"type":"Point","coordinates":[90952,19346]},{"type":"Point","coordinates":[91273,19219]},{"type":"Point","coordinates":[91265,19224]},{"type":"Point","coordinates":[91265,19225]},{"type":"Point","coordinates":[91609,19087]},{"type":"Point","coordinates":[90957,19352]},{"type":"Point","coordinates":[91450,19162]},{"type":"Point","coordinates":[91452,19163]},{"type":"Point","coordinates":[91360,19203]},{"type":"Point","coordinates":[91229,19256]},{"type":"Point","coordinates":[91811,19023]},{"type":"Point","coordinates":[91454,19173]},{"type":"Point","coordinates":[88877,20188]},{"type":"Point","coordinates":[91283,19254]},{"type":"Point","coordinates":[91453,19188]},{"type":"Point","coordinates":[91525,19163]},{"type":"Point","coordinates":[91366,19229]},{"type":"Point","coordinates":[91293,19261]},{"type":"Point","coordinates":[60031,26820]},{"type":"Point","coordinates":[60031,26820]},{"type":"Point","coordinates":[88884,20200]},{"type":"Point","coordinates":[88884,20200]},{"type":"Point","coordinates":[88884,20200]},{"type":"Point","coordinates":[91298,19263]},{"type":"Point","coordinates":[88885,20203]},{"type":"Point","coordinates":[91838,19046]},{"type":"Point","coordinates":[91301,19264]},{"type":"Point","coordinates":[98028,16328]},{"type":"Point","coordinates":[90057,19780]},{"type":"Point","coordinates":[91376,19259]},{"type":"Point","coordinates":[91375,19260]},{"type":"Point","coordinates":[91450,19245]},{"type":"Point","coordinates":[90590,19590]},{"type":"Point","coordinates":[6402,17339]},{"type":"Point","coordinates":[91436,19256]},{"type":"Point","coordinates":[91430,19261]},{"type":"Point","coordinates":[91239,19340]},{"type":"Point","coordinates":[91287,19321]},{"type":"Point","coordinates":[91287,19322]},{"type":"Point","coordinates":[97105,16808]},{"type":"Point","coordinates":[91327,19311]},{"type":"Point","coordinates":[91456,19259]},{"type":"Point","coordinates":[91308,19322]},{"type":"Point","coordinates":[95960,17336]},{"type":"Point","coordinates":[91328,19315]},{"type":"Point","coordinates":[91632,19192]},{"type":"Point","coordinates":[91726,19160]},{"type":"Point","coordinates":[91730,19159]},{"type":"Point","coordinates":[91352,19314]},{"type":"Point","coordinates":[91713,19169]},{"type":"Point","coordinates":[91240,19387]},{"type":"Point","coordinates":[85239,21611]},{"type":"Point","coordinates":[90940,19526]},{"type":"Point","coordinates":[91428,19333]},{"type":"Point","coordinates":[64264,26493]},{"type":"Point","coordinates":[20131,22615]},{"type":"Point","coordinates":[85188,21664]},{"type":"Point","coordinates":[90724,19651]},{"type":"Point","coordinates":[91296,19425]},{"type":"Point","coordinates":[91297,19426]},{"type":"Point","coordinates":[91271,19438]},{"type":"Point","coordinates":[86783,21135]},{"type":"Point","coordinates":[91191,19491]},{"type":"Point","coordinates":[90893,19614]},{"type":"Point","coordinates":[56962,27233]},{"type":"Point","coordinates":[91245,19491]},{"type":"Point","coordinates":[90569,19779]},{"type":"Point","coordinates":[90892,19654]},{"type":"Point","coordinates":[90532,19798]},{"type":"Point","coordinates":[90536,19797]},{"type":"Point","coordinates":[90532,19799]},{"type":"Point","coordinates":[90532,19799]},{"type":"Point","coordinates":[90532,19799]},{"type":"Point","coordinates":[90537,19798]},{"type":"Point","coordinates":[90537,19799]},{"type":"Point","coordinates":[91312,19495]},{"type":"Point","coordinates":[89987,20019]},{"type":"Point","coordinates":[91312,19497]},{"type":"Point","coordinates":[91193,19552]},{"type":"Point","coordinates":[90667,19763]},{"type":"Point","coordinates":[91288,19519]},{"type":"Point","coordinates":[91293,19520]},{"type":"Point","coordinates":[91293,19520]},{"type":"Point","coordinates":[91296,19520]},{"type":"Point","coordinates":[91301,19518]},{"type":"Point","coordinates":[4774,16804]},{"type":"Point","coordinates":[91282,19529]},{"type":"Point","coordinates":[91282,19531]},{"type":"Point","coordinates":[18389,22217]},{"type":"Point","coordinates":[91295,19550]},{"type":"Point","coordinates":[91774,19368]},{"type":"Point","coordinates":[7109,17919]},{"type":"Point","coordinates":[4780,16876]},{"type":"Point","coordinates":[87580,21021]},{"type":"Point","coordinates":[87580,21021]},{"type":"Point","coordinates":[57156,27361]},{"type":"Point","coordinates":[54490,27486]},{"type":"Point","coordinates":[91517,19520]},{"type":"Point","coordinates":[90576,19902]},{"type":"Point","coordinates":[87593,21039]},{"type":"Point","coordinates":[90653,19882]},{"type":"Point","coordinates":[87594,21040]},{"type":"Point","coordinates":[90654,19885]},{"type":"Point","coordinates":[90962,19763]},{"type":"Point","coordinates":[90644,19895]},{"type":"Point","coordinates":[5225,17130]},{"type":"Point","coordinates":[54463,27515]},{"type":"Point","coordinates":[95199,18005]},{"type":"Point","coordinates":[91504,19569]},{"type":"Point","coordinates":[91207,19706]},{"type":"Point","coordinates":[91385,19638]},{"type":"Point","coordinates":[90239,20100]},{"type":"Point","coordinates":[90495,20001]},{"type":"Point","coordinates":[91183,19733]},{"type":"Point","coordinates":[91193,19732]},{"type":"Point","coordinates":[91192,19732]},{"type":"Point","coordinates":[90486,20019]},{"type":"Point","coordinates":[7063,18028]},{"type":"Point","coordinates":[50471,27630]},{"type":"Point","coordinates":[90602,19998]},{"type":"Point","coordinates":[90602,20000]},{"type":"Point","coordinates":[90602,20000]},{"type":"Point","coordinates":[91198,19818]},{"type":"Point","coordinates":[91197,19820]},{"type":"Point","coordinates":[57060,27538]},{"type":"Point","coordinates":[19133,22700]},{"type":"Point","coordinates":[20542,23138]},{"type":"Point","coordinates":[4795,17098]},{"type":"Point","coordinates":[19119,22713]},{"type":"Point","coordinates":[19099,22718]},{"type":"Point","coordinates":[57868,27541]},{"type":"Point","coordinates":[19131,22753]},{"type":"Point","coordinates":[7235,18264]},{"type":"Point","coordinates":[7026,18188]},{"type":"Point","coordinates":[93772,18856]},{"type":"Point","coordinates":[7242,18290]},{"type":"Point","coordinates":[7253,18296]},{"type":"Point","coordinates":[96570,17620]},{"type":"Point","coordinates":[92407,19433]},{"type":"Point","coordinates":[91382,19865]},{"type":"Point","coordinates":[7162,18286]},{"type":"Point","coordinates":[7017,18224]},{"type":"Point","coordinates":[91297,19926]},{"type":"Point","coordinates":[91688,19769]},{"type":"Point","coordinates":[90116,20399]},{"type":"Point","coordinates":[93781,18908]},{"type":"Point","coordinates":[91312,19932]},{"type":"Point","coordinates":[90612,20244]},{"type":"Point","coordinates":[91591,19859]},{"type":"Point","coordinates":[7015,18290]},{"type":"Point","coordinates":[57331,27719]},{"type":"Point","coordinates":[96491,17758]},{"type":"Point","coordinates":[92238,19603]},{"type":"Point","coordinates":[92469,19513]},{"type":"Point","coordinates":[90368,20365]},{"type":"Point","coordinates":[91829,19795]},{"type":"Point","coordinates":[90052,20506]},{"type":"Point","coordinates":[91293,20025]},{"type":"Point","coordinates":[90235,20445]},{"type":"Point","coordinates":[92250,19658]},{"type":"Point","coordinates":[65394,26984]},{"type":"Point","coordinates":[92238,19670]},{"type":"Point","coordinates":[92238,19673]},{"type":"Point","coordinates":[92237,19674]},{"type":"Point","coordinates":[7311,18506]},{"type":"Point","coordinates":[91831,19853]},{"type":"Point","coordinates":[91412,20030]},{"type":"Point","coordinates":[93836,19028]},{"type":"Point","coordinates":[96625,17805]},{"type":"Point","coordinates":[97570,17370]},{"type":"Point","coordinates":[90541,20398]},{"type":"Point","coordinates":[90418,20449]},{"type":"Point","coordinates":[90014,20623]},{"type":"Point","coordinates":[90156,20570]},{"type":"Point","coordinates":[85241,22354]},{"type":"Point","coordinates":[57278,27883]},{"type":"Point","coordinates":[90389,20510]},{"type":"Point","coordinates":[90386,20513]},{"type":"Point","coordinates":[90390,20513]},{"type":"Point","coordinates":[90390,20513]},{"type":"Point","coordinates":[50601,28082]},{"type":"Point","coordinates":[50595,28085]},{"type":"Point","coordinates":[90395,20534]},{"type":"Point","coordinates":[96549,17935]},{"type":"Point","coordinates":[90412,20544]},{"type":"Point","coordinates":[57315,27928]},{"type":"Point","coordinates":[90339,20584]},{"type":"Point","coordinates":[90660,20459]},{"type":"Point","coordinates":[7178,18602]},{"type":"Point","coordinates":[7180,18606]},{"type":"Point","coordinates":[61885,27584]},{"type":"Point","coordinates":[91363,20205]},{"type":"Point","coordinates":[7102,18581]},{"type":"Point","coordinates":[91350,20217]},{"type":"Point","coordinates":[91350,20219]},{"type":"Point","coordinates":[57368,27970]},{"type":"Point","coordinates":[91252,20264]},{"type":"Point","coordinates":[90333,20639]},{"type":"Point","coordinates":[90333,20639]},{"type":"Point","coordinates":[92192,19900]},{"type":"Point","coordinates":[7095,18616]},{"type":"Point","coordinates":[91643,20148]},{"type":"Point","coordinates":[91645,20159]},{"type":"Point","coordinates":[88650,21321]},{"type":"Point","coordinates":[94082,19145]},{"type":"Point","coordinates":[96728,17984]},{"type":"Point","coordinates":[68399,26816]},{"type":"Point","coordinates":[94271,19111]},{"type":"Point","coordinates":[92244,19976]},{"type":"Point","coordinates":[91367,20333]},{"type":"Point","coordinates":[38645,27524]},{"type":"Point","coordinates":[90154,20827]},{"type":"Point","coordinates":[92066,20071]},{"type":"Point","coordinates":[90572,20671]},{"type":"Point","coordinates":[3005,16837]},{"type":"Point","coordinates":[90715,20640]},{"type":"Point","coordinates":[90452,20744]},{"type":"Point","coordinates":[91135,20520]},{"type":"Point","coordinates":[85690,22534]},{"type":"Point","coordinates":[91319,20458]},{"type":"Point","coordinates":[90132,20926]},{"type":"Point","coordinates":[59145,28069]},{"type":"Point","coordinates":[59176,28072]},{"type":"Point","coordinates":[91399,20444]},{"type":"Point","coordinates":[90909,20641]},{"type":"Point","coordinates":[92190,20132]},{"type":"Point","coordinates":[90163,20953]},{"type":"Point","coordinates":[90118,20972]},{"type":"Point","coordinates":[5157,17987]},{"type":"Point","coordinates":[91314,20522]},{"type":"Point","coordinates":[91315,20522]},{"type":"Point","coordinates":[63875,27652]},{"type":"Point","coordinates":[61838,27885]},{"type":"Point","coordinates":[90638,20795]},{"type":"Point","coordinates":[95876,18591]},{"type":"Point","coordinates":[95874,18595]},{"type":"Point","coordinates":[90639,20798]},{"type":"Point","coordinates":[90182,20979]},{"type":"Point","coordinates":[50519,28442]},{"type":"Point","coordinates":[61753,27902]},{"type":"Point","coordinates":[92166,20193]},{"type":"Point","coordinates":[61754,27909]},{"type":"Point","coordinates":[95850,18621]},{"type":"Point","coordinates":[90433,20896]},{"type":"Point","coordinates":[91814,20364]},{"type":"Point","coordinates":[90649,20866]},{"type":"Point","coordinates":[90516,20920]},{"type":"Point","coordinates":[91606,20492]},{"type":"Point","coordinates":[91792,20448]},{"type":"Point","coordinates":[90413,20999]},{"type":"Point","coordinates":[91684,20503]},{"type":"Point","coordinates":[91690,20501]},{"type":"Point","coordinates":[91690,20501]},{"type":"Point","coordinates":[91690,20501]},{"type":"Point","coordinates":[91685,20504]},{"type":"Point","coordinates":[5576,18327]},{"type":"Point","coordinates":[91685,20507]},{"type":"Point","coordinates":[92136,20336]},{"type":"Point","coordinates":[91689,20518]},{"type":"Point","coordinates":[91689,20519]},{"type":"Point","coordinates":[95890,18743]},{"type":"Point","coordinates":[71060,26670]},{"type":"Point","coordinates":[95299,19014]},{"type":"Point","coordinates":[91691,20542]},{"type":"Point","coordinates":[91692,20547]},{"type":"Point","coordinates":[93646,19742]},{"type":"Point","coordinates":[40049,28014]},{"type":"Point","coordinates":[91533,20621]},{"type":"Point","coordinates":[15759,22493]},{"type":"Point","coordinates":[91694,20560]},{"type":"Point","coordinates":[92106,20399]},{"type":"Point","coordinates":[91883,20492]},{"type":"Point","coordinates":[91896,20494]},{"type":"Point","coordinates":[18788,23528]},{"type":"Point","coordinates":[18818,23548]},{"type":"Point","coordinates":[91830,20557]},{"type":"Point","coordinates":[91885,20536]},{"type":"Point","coordinates":[91820,20575]},{"type":"Point","coordinates":[91839,20568]},{"type":"Point","coordinates":[90168,21231]},{"type":"Point","coordinates":[90468,21117]},{"type":"Point","coordinates":[91840,20580]},{"type":"Point","coordinates":[91840,20580]},{"type":"Point","coordinates":[95666,18953]},{"type":"Point","coordinates":[91840,20583]},{"type":"Point","coordinates":[91841,20587]},{"type":"Point","coordinates":[91846,20586]},{"type":"Point","coordinates":[95465,19050]},{"type":"Point","coordinates":[90167,21253]},{"type":"Point","coordinates":[5536,18458]},{"type":"Point","coordinates":[91483,20740]},{"type":"Point","coordinates":[91487,20739]},{"type":"Point","coordinates":[91846,20595]},{"type":"Point","coordinates":[91846,20595]},{"type":"Point","coordinates":[91487,20745]},{"type":"Point","coordinates":[92111,20505]},{"type":"Point","coordinates":[90070,21317]},{"type":"Point","coordinates":[25310,25497]},{"type":"Point","coordinates":[6677,19015]},{"type":"Point","coordinates":[92173,20510]},{"type":"Point","coordinates":[95698,19004]},{"type":"Point","coordinates":[92174,20512]},{"type":"Point","coordinates":[91961,20619]},{"type":"Point","coordinates":[91885,20658]},{"type":"Point","coordinates":[91974,20624]},{"type":"Point","coordinates":[91427,20856]},{"type":"Point","coordinates":[92062,20601]},{"type":"Point","coordinates":[91486,20838]},{"type":"Point","coordinates":[91428,20863]},{"type":"Point","coordinates":[91429,20865]},{"type":"Point","coordinates":[92131,20587]},{"type":"Point","coordinates":[90160,21375]},{"type":"Point","coordinates":[63297,28110]},{"type":"Point","coordinates":[91122,21002]},{"type":"Point","coordinates":[91805,20733]},{"type":"Point","coordinates":[91585,20823]},{"type":"Point","coordinates":[91541,20845]},{"type":"Point","coordinates":[91584,20832]},{"type":"Point","coordinates":[92033,20652]},{"type":"Point","coordinates":[91583,20838]},{"type":"Point","coordinates":[68190,27441]},{"type":"Point","coordinates":[92072,20642]},{"type":"Point","coordinates":[91616,20828]},{"type":"Point","coordinates":[92233,20580]},{"type":"Point","coordinates":[92072,20649]},{"type":"Point","coordinates":[92033,20666]},{"type":"Point","coordinates":[95415,19229]},{"type":"Point","coordinates":[91614,20840]},{"type":"Point","coordinates":[92006,20694]},{"type":"Point","coordinates":[90607,21255]},{"type":"Point","coordinates":[91994,20703]},{"type":"Point","coordinates":[50740,28874]},{"type":"Point","coordinates":[92239,20613]},{"type":"Point","coordinates":[91609,20873]},{"type":"Point","coordinates":[92049,20695]},{"type":"Point","coordinates":[91654,20863]},{"type":"Point","coordinates":[92249,20626]},{"type":"Point","coordinates":[92075,20699]},{"type":"Point","coordinates":[6958,19311]},{"type":"Point","coordinates":[94286,19787]},{"type":"Point","coordinates":[92098,20706]},{"type":"Point","coordinates":[90277,21440]},{"type":"Point","coordinates":[62762,28279]},{"type":"Point","coordinates":[92086,20724]},{"type":"Point","coordinates":[90000,21551]},{"type":"Point","coordinates":[92212,20677]},{"type":"Point","coordinates":[92212,20678]},{"type":"Point","coordinates":[92212,20678]},{"type":"Point","coordinates":[92087,20731]},{"type":"Point","coordinates":[92092,20729]},{"type":"Point","coordinates":[92222,20676]},{"type":"Point","coordinates":[92828,20428]},{"type":"Point","coordinates":[50542,28940]},{"type":"Point","coordinates":[92217,20683]},{"type":"Point","coordinates":[90233,21474]},{"type":"Point","coordinates":[64983,28025]},{"type":"Point","coordinates":[90783,21266]},{"type":"Point","coordinates":[90890,21225]},{"type":"Point","coordinates":[92179,20716]},{"type":"Point","coordinates":[91917,20827]},{"type":"Point","coordinates":[91188,21125]},{"type":"Point","coordinates":[91899,20841]},{"type":"Point","coordinates":[90897,21244]},{"type":"Point","coordinates":[91752,20907]},{"type":"Point","coordinates":[91749,20910]},{"type":"Point","coordinates":[7724,19719]},{"type":"Point","coordinates":[92090,20775]},{"type":"Point","coordinates":[90910,21251]},{"type":"Point","coordinates":[91874,20865]},{"type":"Point","coordinates":[91073,21201]},{"type":"Point","coordinates":[91870,20893]},{"type":"Point","coordinates":[90699,21362]},{"type":"Point","coordinates":[90703,21377]},{"type":"Point","coordinates":[93077,20421]},{"type":"Point","coordinates":[90743,21383]},{"type":"Point","coordinates":[90735,21387]},{"type":"Point","coordinates":[90753,21392]},{"type":"Point","coordinates":[90747,21400]},{"type":"Point","coordinates":[93056,20473]},{"type":"Point","coordinates":[61661,28553]},{"type":"Point","coordinates":[90972,21345]},{"type":"Point","coordinates":[26713,26218]},{"type":"Point","coordinates":[91691,21075]},{"type":"Point","coordinates":[91645,21114]},{"type":"Point","coordinates":[92185,20896]},{"type":"Point","coordinates":[57594,28940]},{"type":"Point","coordinates":[56746,28991]},{"type":"Point","coordinates":[57597,28944]},{"type":"Point","coordinates":[91309,21266]},{"type":"Point","coordinates":[91725,21101]},{"type":"Point","coordinates":[92346,20853]},{"type":"Point","coordinates":[91661,21133]},{"type":"Point","coordinates":[89453,22014]},{"type":"Point","coordinates":[95563,19501]},{"type":"Point","coordinates":[91861,21073]},{"type":"Point","coordinates":[89455,22017]},{"type":"Point","coordinates":[25515,25998]},{"type":"Point","coordinates":[91667,21161]},{"type":"Point","coordinates":[4620,18548]},{"type":"Point","coordinates":[91000,21456]},{"type":"Point","coordinates":[71341,27249]},{"type":"Point","coordinates":[90920,21491]},{"type":"Point","coordinates":[91009,21464]},{"type":"Point","coordinates":[90247,21766]},{"type":"Point","coordinates":[91030,21460]},{"type":"Point","coordinates":[91028,21462]},{"type":"Point","coordinates":[7667,19962]},{"type":"Point","coordinates":[59897,28880]},{"type":"Point","coordinates":[90876,21537]},{"type":"Point","coordinates":[59896,28881]},{"type":"Point","coordinates":[91975,21098]},{"type":"Point","coordinates":[91032,21479]},{"type":"Point","coordinates":[90872,21542]},{"type":"Point","coordinates":[91031,21480]},{"type":"Point","coordinates":[90871,21544]},{"type":"Point","coordinates":[90878,21543]},{"type":"Point","coordinates":[91036,21481]},{"type":"Point","coordinates":[91036,21481]},{"type":"Point","coordinates":[51034,29257]},{"type":"Point","coordinates":[92021,21091]},{"type":"Point","coordinates":[92021,21091]},{"type":"Point","coordinates":[92088,21081]},{"type":"Point","coordinates":[92088,21082]},{"type":"Point","coordinates":[91753,21219]},{"type":"Point","coordinates":[7670,20011]},{"type":"Point","coordinates":[91016,21519]},{"type":"Point","coordinates":[7669,20017]},{"type":"Point","coordinates":[7667,20019]},{"type":"Point","coordinates":[92946,20746]},{"type":"Point","coordinates":[64574,28430]},{"type":"Point","coordinates":[92079,21108]},{"type":"Point","coordinates":[50760,29300]},{"type":"Point","coordinates":[5290,18965]},{"type":"Point","coordinates":[92007,21140]},{"type":"Point","coordinates":[92124,21095]},{"type":"Point","coordinates":[92866,20796]},{"type":"Point","coordinates":[90517,21742]},{"type":"Point","coordinates":[90507,21747]},{"type":"Point","coordinates":[90827,21624]},{"type":"Point","coordinates":[90513,21747]},{"type":"Point","coordinates":[90504,21752]},{"type":"Point","coordinates":[90316,21827]},{"type":"Point","coordinates":[92050,21144]},{"type":"Point","coordinates":[90505,21765]},{"type":"Point","coordinates":[90842,21636]},{"type":"Point","coordinates":[92922,20795]},{"type":"Point","coordinates":[91833,21241]},{"type":"Point","coordinates":[92922,20795]},{"type":"Point","coordinates":[90506,21769]},{"type":"Point","coordinates":[90842,21637]},{"type":"Point","coordinates":[90842,21637]},{"type":"Point","coordinates":[90842,21637]},{"type":"Point","coordinates":[90842,21637]},{"type":"Point","coordinates":[90506,21769]},{"type":"Point","coordinates":[91996,21177]},{"type":"Point","coordinates":[71571,27320]},{"type":"Point","coordinates":[91339,21443]},{"type":"Point","coordinates":[90847,21638]},{"type":"Point","coordinates":[90515,21769]},{"type":"Point","coordinates":[90510,21772]},{"type":"Point","coordinates":[90841,21642]},{"type":"Point","coordinates":[90329,21844]},{"type":"Point","coordinates":[92005,21179]},{"type":"Point","coordinates":[90509,21776]},{"type":"Point","coordinates":[7618,20050]},{"type":"Point","coordinates":[92194,21106]},{"type":"Point","coordinates":[90839,21651]},{"type":"Point","coordinates":[7629,20059]},{"type":"Point","coordinates":[92027,21178]},{"type":"Point","coordinates":[90355,21843]},{"type":"Point","coordinates":[92013,21185]},{"type":"Point","coordinates":[7628,20061]},{"type":"Point","coordinates":[7626,20061]},{"type":"Point","coordinates":[7627,20061]},{"type":"Point","coordinates":[7627,20061]},{"type":"Point","coordinates":[90514,21786]},{"type":"Point","coordinates":[90507,21789]},{"type":"Point","coordinates":[90514,21787]},{"type":"Point","coordinates":[92024,21187]},{"type":"Point","coordinates":[92024,21187]},{"type":"Point","coordinates":[92097,21157]},{"type":"Point","coordinates":[90647,21737]},{"type":"Point","coordinates":[90646,21739]},{"type":"Point","coordinates":[90425,21826]},{"type":"Point","coordinates":[90646,21740]},{"type":"Point","coordinates":[92019,21193]},{"type":"Point","coordinates":[65046,28435]},{"type":"Point","coordinates":[65046,28435]},{"type":"Point","coordinates":[91247,21511]},{"type":"Point","coordinates":[95188,19862]},{"type":"Point","coordinates":[61572,28851]},{"type":"Point","coordinates":[91621,21374]},{"type":"Point","coordinates":[91244,21533]},{"type":"Point","coordinates":[92155,21167]},{"type":"Point","coordinates":[92155,21166]},{"type":"Point","coordinates":[92158,21165]},{"type":"Point","coordinates":[92155,21167]},{"type":"Point","coordinates":[92155,21167]},{"type":"Point","coordinates":[92155,21167]},{"type":"Point","coordinates":[92154,21167]},{"type":"Point","coordinates":[92154,21167]},{"type":"Point","coordinates":[92154,21167]},{"type":"Point","coordinates":[92155,21167]},{"type":"Point","coordinates":[92155,21167]},{"type":"Point","coordinates":[92155,21167]},{"type":"Point","coordinates":[92157,21166]},{"type":"Point","coordinates":[92161,21167]},{"type":"Point","coordinates":[92156,21169]},{"type":"Point","coordinates":[92155,21170]},{"type":"Point","coordinates":[92157,21169]},{"type":"Point","coordinates":[92161,21167]},{"type":"Point","coordinates":[92160,21168]},{"type":"Point","coordinates":[92161,21168]},{"type":"Point","coordinates":[92157,21169]},{"type":"Point","coordinates":[92161,21168]},{"type":"Point","coordinates":[92161,21168]},{"type":"Point","coordinates":[92160,21168]},{"type":"Point","coordinates":[92156,21170]},{"type":"Point","coordinates":[92156,21170]},{"type":"Point","coordinates":[92160,21168]},{"type":"Point","coordinates":[92157,21169]},{"type":"Point","coordinates":[92159,21168]},{"type":"Point","coordinates":[92156,21170]},{"type":"Point","coordinates":[92156,21170]},{"type":"Point","coordinates":[92155,21170]},{"type":"Point","coordinates":[92160,21168]},{"type":"Point","coordinates":[92155,21170]},{"type":"Point","coordinates":[62700,28749]},{"type":"Point","coordinates":[91741,21339]},{"type":"Point","coordinates":[92157,21172]},{"type":"Point","coordinates":[92160,21171]},{"type":"Point","coordinates":[92158,21172]},{"type":"Point","coordinates":[92160,21171]},{"type":"Point","coordinates":[92157,21172]},{"type":"Point","coordinates":[92155,21173]},{"type":"Point","coordinates":[92160,21171]},{"type":"Point","coordinates":[90490,21838]},{"type":"Point","coordinates":[92157,21175]},{"type":"Point","coordinates":[91210,21558]},{"type":"Point","coordinates":[92156,21179]},{"type":"Point","coordinates":[92154,21180]},{"type":"Point","coordinates":[92160,21178]},{"type":"Point","coordinates":[91258,21543]},{"type":"Point","coordinates":[92160,21181]},{"type":"Point","coordinates":[92158,21182]},{"type":"Point","coordinates":[92163,21180]},{"type":"Point","coordinates":[92163,21180]},{"type":"Point","coordinates":[92159,21181]},{"type":"Point","coordinates":[92161,21180]},{"type":"Point","coordinates":[92155,21183]},{"type":"Point","coordinates":[92155,21183]},{"type":"Point","coordinates":[91259,21546]},{"type":"Point","coordinates":[91213,21564]},{"type":"Point","coordinates":[91235,21556]},{"type":"Point","coordinates":[91233,21557]},{"type":"Point","coordinates":[92151,21188]},{"type":"Point","coordinates":[92157,21185]},{"type":"Point","coordinates":[92157,21185]},{"type":"Point","coordinates":[92160,21184]},{"type":"Point","coordinates":[92162,21184]},{"type":"Point","coordinates":[92158,21185]},{"type":"Point","coordinates":[91652,21392]},{"type":"Point","coordinates":[92161,21187]},{"type":"Point","coordinates":[92163,21186]},{"type":"Point","coordinates":[92157,21189]},{"type":"Point","coordinates":[92160,21188]},{"type":"Point","coordinates":[90492,21854]},{"type":"Point","coordinates":[92163,21189]},{"type":"Point","coordinates":[92161,21190]},{"type":"Point","coordinates":[92161,21190]},{"type":"Point","coordinates":[91244,21560]},{"type":"Point","coordinates":[61567,28890]},{"type":"Point","coordinates":[93556,20613]},{"type":"Point","coordinates":[92160,21194]},{"type":"Point","coordinates":[92160,21194]},{"type":"Point","coordinates":[92165,21192]},{"type":"Point","coordinates":[92163,21193]},{"type":"Point","coordinates":[92161,21194]},{"type":"Point","coordinates":[95198,19908]},{"type":"Point","coordinates":[90514,21851]},{"type":"Point","coordinates":[92068,21233]},{"type":"Point","coordinates":[61572,28894]},{"type":"Point","coordinates":[92165,21195]},{"type":"Point","coordinates":[92161,21197]},{"type":"Point","coordinates":[92160,21198]},{"type":"Point","coordinates":[92164,21198]},{"type":"Point","coordinates":[92163,21199]},{"type":"Point","coordinates":[92160,21203]},{"type":"Point","coordinates":[92161,21203]},{"type":"Point","coordinates":[92161,21203]},{"type":"Point","coordinates":[92162,21203]},{"type":"Point","coordinates":[92164,21205]},{"type":"Point","coordinates":[92166,21204]},{"type":"Point","coordinates":[90514,21863]},{"type":"Point","coordinates":[92165,21208]},{"type":"Point","coordinates":[92770,20961]},{"type":"Point","coordinates":[91272,21572]},{"type":"Point","coordinates":[91273,21574]},{"type":"Point","coordinates":[25823,26329]},{"type":"Point","coordinates":[91238,21590]},{"type":"Point","coordinates":[91274,21577]},{"type":"Point","coordinates":[60593,29017]},{"type":"Point","coordinates":[90235,21996]},{"type":"Point","coordinates":[90576,21872]},{"type":"Point","coordinates":[90576,21872]},{"type":"Point","coordinates":[92051,21288]},{"type":"Point","coordinates":[90515,21909]},{"type":"Point","coordinates":[90515,21909]},{"type":"Point","coordinates":[90517,21911]},{"type":"Point","coordinates":[90516,21912]},{"type":"Point","coordinates":[90520,21910]},{"type":"Point","coordinates":[90521,21911]},{"type":"Point","coordinates":[91602,21483]},{"type":"Point","coordinates":[90520,21913]},{"type":"Point","coordinates":[90517,21915]},{"type":"Point","coordinates":[90517,21915]},{"type":"Point","coordinates":[90520,21914]},{"type":"Point","coordinates":[90515,21916]},{"type":"Point","coordinates":[90520,21915]},{"type":"Point","coordinates":[90518,21916]},{"type":"Point","coordinates":[90340,21989]},{"type":"Point","coordinates":[89648,22263]},{"type":"Point","coordinates":[90991,21743]},{"type":"Point","coordinates":[90331,22004]},{"type":"Point","coordinates":[92065,21324]},{"type":"Point","coordinates":[91119,21711]},{"type":"Point","coordinates":[90991,21762]},{"type":"Point","coordinates":[90375,22009]},{"type":"Point","coordinates":[91891,21408]},{"type":"Point","coordinates":[91897,21408]},{"type":"Point","coordinates":[91112,21726]},{"type":"Point","coordinates":[91107,21728]},{"type":"Point","coordinates":[91105,21730]},{"type":"Point","coordinates":[51147,29526]},{"type":"Point","coordinates":[90433,21998]},{"type":"Point","coordinates":[91910,21414]},{"type":"Point","coordinates":[91095,21742]},{"type":"Point","coordinates":[91101,21744]},{"type":"Point","coordinates":[91109,21742]},{"type":"Point","coordinates":[91917,21426]},{"type":"Point","coordinates":[91676,21525]},{"type":"Point","coordinates":[91672,21527]},{"type":"Point","coordinates":[91158,21733]},{"type":"Point","coordinates":[91677,21528]},{"type":"Point","coordinates":[91677,21529]},{"type":"Point","coordinates":[91670,21535]},{"type":"Point","coordinates":[91792,21487]},{"type":"Point","coordinates":[91705,21522]},{"type":"Point","coordinates":[91630,21554]},{"type":"Point","coordinates":[91134,21753]},{"type":"Point","coordinates":[92181,21334]},{"type":"Point","coordinates":[91682,21538]},{"type":"Point","coordinates":[91680,21539]},{"type":"Point","coordinates":[91674,21542]},{"type":"Point","coordinates":[91678,21541]},{"type":"Point","coordinates":[91711,21529]},{"type":"Point","coordinates":[91136,21760]},{"type":"Point","coordinates":[91136,21760]},{"type":"Point","coordinates":[91916,21449]},{"type":"Point","coordinates":[91635,21563]},{"type":"Point","coordinates":[91726,21526]},{"type":"Point","coordinates":[91746,21519]},{"type":"Point","coordinates":[91695,21540]},{"type":"Point","coordinates":[90263,22106]},{"type":"Point","coordinates":[91726,21529]},{"type":"Point","coordinates":[91726,21529]},{"type":"Point","coordinates":[91725,21530]},{"type":"Point","coordinates":[90395,22056]},{"type":"Point","coordinates":[91726,21529]},{"type":"Point","coordinates":[91136,21765]},{"type":"Point","coordinates":[91732,21528]},{"type":"Point","coordinates":[91729,21529]},{"type":"Point","coordinates":[91735,21528]},{"type":"Point","coordinates":[91727,21532]},{"type":"Point","coordinates":[91727,21532]},{"type":"Point","coordinates":[91712,21539]},{"type":"Point","coordinates":[91746,21525]},{"type":"Point","coordinates":[91745,21525]},{"type":"Point","coordinates":[91746,21525]},{"type":"Point","coordinates":[91730,21533]},{"type":"Point","coordinates":[91735,21532]},{"type":"Point","coordinates":[91730,21533]},{"type":"Point","coordinates":[91730,21533]},{"type":"Point","coordinates":[91729,21534]},{"type":"Point","coordinates":[91728,21535]},{"type":"Point","coordinates":[90803,21903]},{"type":"Point","coordinates":[91729,21535]},{"type":"Point","coordinates":[91659,21564]},{"type":"Point","coordinates":[91751,21528]},{"type":"Point","coordinates":[91762,21524]},{"type":"Point","coordinates":[91732,21536]},{"type":"Point","coordinates":[91732,21536]},{"type":"Point","coordinates":[90943,21851]},{"type":"Point","coordinates":[91732,21536]},{"type":"Point","coordinates":[91733,21537]},{"type":"Point","coordinates":[91625,21581]},{"type":"Point","coordinates":[90818,21901]},{"type":"Point","coordinates":[91726,21540]},{"type":"Point","coordinates":[91726,21541]},{"type":"Point","coordinates":[91726,21541]},{"type":"Point","coordinates":[91725,21541]},{"type":"Point","coordinates":[91725,21541]},{"type":"Point","coordinates":[91726,21541]},{"type":"Point","coordinates":[91725,21541]},{"type":"Point","coordinates":[63943,28794]},{"type":"Point","coordinates":[91727,21541]},{"type":"Point","coordinates":[91728,21541]},{"type":"Point","coordinates":[91721,21547]},{"type":"Point","coordinates":[91022,21826]},{"type":"Point","coordinates":[91022,21826]},{"type":"Point","coordinates":[91721,21548]},{"type":"Point","coordinates":[91021,21827]},{"type":"Point","coordinates":[91719,21549]},{"type":"Point","coordinates":[91639,21581]},{"type":"Point","coordinates":[91724,21547]},{"type":"Point","coordinates":[91023,21827]},{"type":"Point","coordinates":[91647,21579]},{"type":"Point","coordinates":[91636,21583]},{"type":"Point","coordinates":[91726,21548]},{"type":"Point","coordinates":[90522,22025]},{"type":"Point","coordinates":[90522,22025]},{"type":"Point","coordinates":[91724,21549]},{"type":"Point","coordinates":[95558,19927]},{"type":"Point","coordinates":[91738,21543]},{"type":"Point","coordinates":[63937,28803]},{"type":"Point","coordinates":[91722,21552]},{"type":"Point","coordinates":[92049,21425]},{"type":"Point","coordinates":[90297,22124]},{"type":"Point","coordinates":[90298,22125]},{"type":"Point","coordinates":[91809,21528]},{"type":"Point","coordinates":[91643,21594]},{"type":"Point","coordinates":[90312,22121]},{"type":"Point","coordinates":[90299,22126]},{"type":"Point","coordinates":[90825,21921]},{"type":"Point","coordinates":[91761,21549]},{"type":"Point","coordinates":[91761,21549]},{"type":"Point","coordinates":[91724,21564]},{"type":"Point","coordinates":[90302,22128]},{"type":"Point","coordinates":[90826,21925]},{"type":"Point","coordinates":[91747,21560]},{"type":"Point","coordinates":[90996,21863]},{"type":"Point","coordinates":[91747,21564]},{"type":"Point","coordinates":[90925,21893]},{"type":"Point","coordinates":[90817,21935]},{"type":"Point","coordinates":[90816,21936]},{"type":"Point","coordinates":[91752,21564]},{"type":"Point","coordinates":[91698,21587]},{"type":"Point","coordinates":[91731,21574]},{"type":"Point","coordinates":[91661,21604]},{"type":"Point","coordinates":[91134,21819]},{"type":"Point","coordinates":[91676,21602]},{"type":"Point","coordinates":[92809,21153]},{"type":"Point","coordinates":[90934,21912]},{"type":"Point","coordinates":[91764,21584]},{"type":"Point","coordinates":[90763,21982]},{"type":"Point","coordinates":[93568,20843]},{"type":"Point","coordinates":[90760,21987]},{"type":"Point","coordinates":[91767,21587]},{"type":"Point","coordinates":[91697,21619]},{"type":"Point","coordinates":[90821,21968]},{"type":"Point","coordinates":[90777,21986]},{"type":"Point","coordinates":[91698,21622]},{"type":"Point","coordinates":[91696,21623]},{"type":"Point","coordinates":[90782,21992]},{"type":"Point","coordinates":[90833,21973]},{"type":"Point","coordinates":[50528,29659]},{"type":"Point","coordinates":[91764,21615]},{"type":"Point","coordinates":[91761,21630]},{"type":"Point","coordinates":[90627,22087]},{"type":"Point","coordinates":[90619,22092]},{"type":"Point","coordinates":[90626,22090]},{"type":"Point","coordinates":[90620,22093]},{"type":"Point","coordinates":[92011,21539]},{"type":"Point","coordinates":[91678,21674]},{"type":"Point","coordinates":[38085,28869]},{"type":"Point","coordinates":[90627,22091]},{"type":"Point","coordinates":[90619,22096]},{"type":"Point","coordinates":[90630,22092]},{"type":"Point","coordinates":[90625,22097]},{"type":"Point","coordinates":[90616,22106]},{"type":"Point","coordinates":[91763,21653]},{"type":"Point","coordinates":[92403,21395]},{"type":"Point","coordinates":[92377,21414]},{"type":"Point","coordinates":[91002,21969]},{"type":"Point","coordinates":[91093,21934]},{"type":"Point","coordinates":[92402,21409]},{"type":"Point","coordinates":[91093,21937]},{"type":"Point","coordinates":[91093,21936]},{"type":"Point","coordinates":[91094,21936]},{"type":"Point","coordinates":[92042,21559]},{"type":"Point","coordinates":[91093,21940]},{"type":"Point","coordinates":[91092,21943]},{"type":"Point","coordinates":[91094,21943]},{"type":"Point","coordinates":[92394,21421]},{"type":"Point","coordinates":[16129,23763]},{"type":"Point","coordinates":[92398,21424]},{"type":"Point","coordinates":[90629,22136]},{"type":"Point","coordinates":[91523,21784]},{"type":"Point","coordinates":[59813,29381]},{"type":"Point","coordinates":[90286,22275]},{"type":"Point","coordinates":[89257,22678]},{"type":"Point","coordinates":[95083,20308]},{"type":"Point","coordinates":[90879,22058]},{"type":"Point","coordinates":[64391,28912]},{"type":"Point","coordinates":[91092,21981]},{"type":"Point","coordinates":[90893,22062]},{"type":"Point","coordinates":[89989,22415]},{"type":"Point","coordinates":[90889,22066]},{"type":"Point","coordinates":[91014,22021]},{"type":"Point","coordinates":[91096,21992]},{"type":"Point","coordinates":[91016,22030]},{"type":"Point","coordinates":[90347,22301]},{"type":"Point","coordinates":[92132,21604]},{"type":"Point","coordinates":[92245,21574]},{"type":"Point","coordinates":[92068,21670]},{"type":"Point","coordinates":[92067,21670]},{"type":"Point","coordinates":[92065,21673]},{"type":"Point","coordinates":[92068,21672]},{"type":"Point","coordinates":[92059,21676]},{"type":"Point","coordinates":[91798,21813]},{"type":"Point","coordinates":[90954,22150]},{"type":"Point","coordinates":[90989,22139]},{"type":"Point","coordinates":[91364,21993]},{"type":"Point","coordinates":[5852,19828]},{"type":"Point","coordinates":[25168,26630]},{"type":"Point","coordinates":[91628,21921]},{"type":"Point","coordinates":[57195,29770]},{"type":"Point","coordinates":[85461,24267]},{"type":"Point","coordinates":[85461,24267]},{"type":"Point","coordinates":[92188,21782]},{"type":"Point","coordinates":[91947,21904]},{"type":"Point","coordinates":[92004,21891]},{"type":"Point","coordinates":[92026,21896]},{"type":"Point","coordinates":[91747,22021]},{"type":"Point","coordinates":[91086,22303]},{"type":"Point","coordinates":[91086,22303]},{"type":"Point","coordinates":[92045,21933]},{"type":"Point","coordinates":[92057,21930]},{"type":"Point","coordinates":[91788,22040]},{"type":"Point","coordinates":[91954,21982]},{"type":"Point","coordinates":[61989,29548]},{"type":"Point","coordinates":[92022,21976]},{"type":"Point","coordinates":[91856,22047]},{"type":"Point","coordinates":[92042,21976]},{"type":"Point","coordinates":[90948,22418]},{"type":"Point","coordinates":[92049,21980]},{"type":"Point","coordinates":[92034,21991]},{"type":"Point","coordinates":[95327,20600]},{"type":"Point","coordinates":[92034,21992]},{"type":"Point","coordinates":[92021,21998]},{"type":"Point","coordinates":[92022,21999]},{"type":"Point","coordinates":[92035,21994]},{"type":"Point","coordinates":[91620,22161]},{"type":"Point","coordinates":[92028,21999]},{"type":"Point","coordinates":[92037,21997]},{"type":"Point","coordinates":[92043,21997]},{"type":"Point","coordinates":[92046,21997]},{"type":"Point","coordinates":[92032,22008]},{"type":"Point","coordinates":[92033,22009]},{"type":"Point","coordinates":[92033,22009]},{"type":"Point","coordinates":[50132,30151]},{"type":"Point","coordinates":[50129,30162]},{"type":"Point","coordinates":[92338,21915]},{"type":"Point","coordinates":[90945,22495]},{"type":"Point","coordinates":[64123,29404]},{"type":"Point","coordinates":[91993,22126]},{"type":"Point","coordinates":[92032,22113]},{"type":"Point","coordinates":[92981,21729]},{"type":"Point","coordinates":[73111,27956]},{"type":"Point","coordinates":[91105,22510]},{"type":"Point","coordinates":[38087,29461]},{"type":"Point","coordinates":[91906,22194]},{"type":"Point","coordinates":[91128,22507]},{"type":"Point","coordinates":[65091,29365]},{"type":"Point","coordinates":[58154,30075]},{"type":"Point","coordinates":[91197,22516]},{"type":"Point","coordinates":[91872,22255]},{"type":"Point","coordinates":[91873,22255]},{"type":"Point","coordinates":[73137,28014]},{"type":"Point","coordinates":[84977,24813]},{"type":"Point","coordinates":[91440,22457]},{"type":"Point","coordinates":[60307,29957]},{"type":"Point","coordinates":[93526,21606]},{"type":"Point","coordinates":[93529,21607]},{"type":"Point","coordinates":[91881,22301]},{"type":"Point","coordinates":[91211,22576]},{"type":"Point","coordinates":[91820,22356]},{"type":"Point","coordinates":[25752,27310]},{"type":"Point","coordinates":[62291,29833]},{"type":"Point","coordinates":[62163,29847]},{"type":"Point","coordinates":[62163,29847]},{"type":"Point","coordinates":[91474,22530]},{"type":"Point","coordinates":[92204,22244]},{"type":"Point","coordinates":[65154,29510]},{"type":"Point","coordinates":[92771,22026]},{"type":"Point","coordinates":[92771,22026]},{"type":"Point","coordinates":[50027,30464]},{"type":"Point","coordinates":[91574,22547]},{"type":"Point","coordinates":[91600,22542]},{"type":"Point","coordinates":[92070,22354]},{"type":"Point","coordinates":[72104,28404]},{"type":"Point","coordinates":[61979,29957]},{"type":"Point","coordinates":[61824,29975]},{"type":"Point","coordinates":[62145,29950]},{"type":"Point","coordinates":[6002,20574]},{"type":"Point","coordinates":[61706,30008]},{"type":"Point","coordinates":[82081,25975]},{"type":"Point","coordinates":[93372,21931]},{"type":"Point","coordinates":[91090,22866]},{"type":"Point","coordinates":[93652,21831]},{"type":"Point","coordinates":[93640,21841]},{"type":"Point","coordinates":[93644,21839]},{"type":"Point","coordinates":[92053,22497]},{"type":"Point","coordinates":[91520,22731]},{"type":"Point","coordinates":[81380,26255]},{"type":"Point","coordinates":[61750,30155]},{"type":"Point","coordinates":[61751,30159]},{"type":"Point","coordinates":[93188,22099]},{"type":"Point","coordinates":[61753,30164]},{"type":"Point","coordinates":[61762,30170]},{"type":"Point","coordinates":[61752,30172]},{"type":"Point","coordinates":[61929,30159]},{"type":"Point","coordinates":[81825,26174]},{"type":"Point","coordinates":[61753,30181]},{"type":"Point","coordinates":[89688,23513]},{"type":"Point","coordinates":[93598,21963]},{"type":"Point","coordinates":[94740,21478]},{"type":"Point","coordinates":[47042,30698]},{"type":"Point","coordinates":[81886,26220]},{"type":"Point","coordinates":[91369,22926]},{"type":"Point","coordinates":[89964,23477]},{"type":"Point","coordinates":[81414,26371]},{"type":"Point","coordinates":[94669,21609]},{"type":"Point","coordinates":[91414,22959]},{"type":"Point","coordinates":[92952,22366]},{"type":"Point","coordinates":[90875,23228]},{"type":"Point","coordinates":[95023,21514]},{"type":"Point","coordinates":[95024,21515]},{"type":"Point","coordinates":[95029,21516]},{"type":"Point","coordinates":[3868,19976]},{"type":"Point","coordinates":[84887,25421]},{"type":"Point","coordinates":[26881,28090]},{"type":"Point","coordinates":[83936,25737]},{"type":"Point","coordinates":[61983,30378]},{"type":"Point","coordinates":[89930,23645]},{"type":"Point","coordinates":[65287,29991]},{"type":"Point","coordinates":[62367,30358]},{"type":"Point","coordinates":[91111,23212]},{"type":"Point","coordinates":[90836,23323]},{"type":"Point","coordinates":[93628,22190]},{"type":"Point","coordinates":[92052,22843]},{"type":"Point","coordinates":[90823,23346]},{"type":"Point","coordinates":[61839,30454]},{"type":"Point","coordinates":[91807,22982]},{"type":"Point","coordinates":[69225,29465]},{"type":"Point","coordinates":[89875,23788]},{"type":"Point","coordinates":[83451,26032]},{"type":"Point","coordinates":[61898,30530]},{"type":"Point","coordinates":[92690,22715]},{"type":"Point","coordinates":[89935,23807]},{"type":"Point","coordinates":[89937,23807]},{"type":"Point","coordinates":[89927,23813]},{"type":"Point","coordinates":[83317,26111]},{"type":"Point","coordinates":[89971,23803]},{"type":"Point","coordinates":[65361,30149]},{"type":"Point","coordinates":[89928,23826]},{"type":"Point","coordinates":[91438,23244]},{"type":"Point","coordinates":[95057,21741]},{"type":"Point","coordinates":[83329,26128]},{"type":"Point","coordinates":[69582,29497]},{"type":"Point","coordinates":[83331,26128]},{"type":"Point","coordinates":[91324,23300]},{"type":"Point","coordinates":[83235,26175]},{"type":"Point","coordinates":[83238,26174]},{"type":"Point","coordinates":[83236,26176]},{"type":"Point","coordinates":[65456,30179]},{"type":"Point","coordinates":[91557,23252]},{"type":"Point","coordinates":[83248,26210]},{"type":"Point","coordinates":[83243,26223]},{"type":"Point","coordinates":[83370,26187]},{"type":"Point","coordinates":[81816,26667]},{"type":"Point","coordinates":[93557,22491]},{"type":"Point","coordinates":[93612,22473]},{"type":"Point","coordinates":[91079,23516]},{"type":"Point","coordinates":[81312,26876]},{"type":"Point","coordinates":[83262,26292]},{"type":"Point","coordinates":[95067,21909]},{"type":"Point","coordinates":[93529,22570]},{"type":"Point","coordinates":[91824,23276]},{"type":"Point","coordinates":[64566,30466]},{"type":"Point","coordinates":[93606,22578]},{"type":"Point","coordinates":[93607,22579]},{"type":"Point","coordinates":[93608,22578]},{"type":"Point","coordinates":[64458,30489]},{"type":"Point","coordinates":[95107,21960]},{"type":"Point","coordinates":[85792,25564]},{"type":"Point","coordinates":[93799,22530]},{"type":"Point","coordinates":[83553,26316]},{"type":"Point","coordinates":[91045,23675]},{"type":"Point","coordinates":[93679,22607]},{"type":"Point","coordinates":[81237,27051]},{"type":"Point","coordinates":[94638,22226]},{"type":"Point","coordinates":[94639,22230]},{"type":"Point","coordinates":[83150,26489]},{"type":"Point","coordinates":[94647,22231]},{"type":"Point","coordinates":[93700,22648]},{"type":"Point","coordinates":[83448,26419]},{"type":"Point","coordinates":[92252,23254]},{"type":"Point","coordinates":[83446,26420]},{"type":"Point","coordinates":[92237,23263]},{"type":"Point","coordinates":[92239,23262]},{"type":"Point","coordinates":[92233,23267]},{"type":"Point","coordinates":[93708,22659]},{"type":"Point","coordinates":[92234,23271]},{"type":"Point","coordinates":[92235,23272]},{"type":"Point","coordinates":[92238,23272]},{"type":"Point","coordinates":[92232,23276]},{"type":"Point","coordinates":[93654,22692]},{"type":"Point","coordinates":[71319,29522]},{"type":"Point","coordinates":[80825,27236]},{"type":"Point","coordinates":[92040,23376]},{"type":"Point","coordinates":[92053,23377]},{"type":"Point","coordinates":[92049,23381]},{"type":"Point","coordinates":[92139,23349]},{"type":"Point","coordinates":[86965,25309]},{"type":"Point","coordinates":[94728,22280]},{"type":"Point","coordinates":[92302,23295]},{"type":"Point","coordinates":[94712,22287]},{"type":"Point","coordinates":[92044,23400]},{"type":"Point","coordinates":[88089,24915]},{"type":"Point","coordinates":[62275,30927]},{"type":"Point","coordinates":[83305,26542]},{"type":"Point","coordinates":[83512,26487]},{"type":"Point","coordinates":[93514,22825]},{"type":"Point","coordinates":[93590,22796]},{"type":"Point","coordinates":[93516,22827]},{"type":"Point","coordinates":[93516,22831]},{"type":"Point","coordinates":[93523,22829]},{"type":"Point","coordinates":[80792,27319]},{"type":"Point","coordinates":[80793,27320]},{"type":"Point","coordinates":[92120,23411]},{"type":"Point","coordinates":[93529,22833]},{"type":"Point","coordinates":[91567,23638]},{"type":"Point","coordinates":[80789,27327]},{"type":"Point","coordinates":[93532,22837]},{"type":"Point","coordinates":[91576,23636]},{"type":"Point","coordinates":[80784,27333]},{"type":"Point","coordinates":[80782,27334]},{"type":"Point","coordinates":[93534,22843]},{"type":"Point","coordinates":[83248,26607]},{"type":"Point","coordinates":[85406,25917]},{"type":"Point","coordinates":[81888,27030]},{"type":"Point","coordinates":[93538,22859]},{"type":"Point","coordinates":[93538,22860]},{"type":"Point","coordinates":[93539,22860]},{"type":"Point","coordinates":[93539,22861]},{"type":"Point","coordinates":[93541,22865]},{"type":"Point","coordinates":[93560,22857]},{"type":"Point","coordinates":[91626,23647]},{"type":"Point","coordinates":[93597,22843]},{"type":"Point","coordinates":[93602,22841]},{"type":"Point","coordinates":[93532,22871]},{"type":"Point","coordinates":[93542,22868]},{"type":"Point","coordinates":[93567,22863]},{"type":"Point","coordinates":[93568,22864]},{"type":"Point","coordinates":[93568,22864]},{"type":"Point","coordinates":[93544,22874]},{"type":"Point","coordinates":[93569,22864]},{"type":"Point","coordinates":[93571,22864]},{"type":"Point","coordinates":[65127,30667]},{"type":"Point","coordinates":[93573,22867]},{"type":"Point","coordinates":[93573,22867]},{"type":"Point","coordinates":[83512,26561]},{"type":"Point","coordinates":[83512,26561]},{"type":"Point","coordinates":[80805,27379]},{"type":"Point","coordinates":[63420,30897]},{"type":"Point","coordinates":[93874,22761]},{"type":"Point","coordinates":[1943,19797]},{"type":"Point","coordinates":[92675,23272]},{"type":"Point","coordinates":[92675,23272]},{"type":"Point","coordinates":[81541,27193]},{"type":"Point","coordinates":[63610,30905]},{"type":"Point","coordinates":[89590,24501]},{"type":"Point","coordinates":[89890,24392]},{"type":"Point","coordinates":[94568,22509]},{"type":"Point","coordinates":[62815,31016]},{"type":"Point","coordinates":[93665,22904]},{"type":"Point","coordinates":[83479,26643]},{"type":"Point","coordinates":[80978,27401]},{"type":"Point","coordinates":[62709,31043]},{"type":"Point","coordinates":[81274,27317]},{"type":"Point","coordinates":[92709,23317]},{"type":"Point","coordinates":[93669,22922]},{"type":"Point","coordinates":[64784,30808]},{"type":"Point","coordinates":[70849,29840]},{"type":"Point","coordinates":[85433,26030]},{"type":"Point","coordinates":[92319,23486]},{"type":"Point","coordinates":[93661,22934]},{"type":"Point","coordinates":[92326,23488]},{"type":"Point","coordinates":[92712,23330]},{"type":"Point","coordinates":[92718,23329]},{"type":"Point","coordinates":[92715,23331]},{"type":"Point","coordinates":[92715,23331]},{"type":"Point","coordinates":[92712,23332]},{"type":"Point","coordinates":[92718,23330]},{"type":"Point","coordinates":[92718,23330]},{"type":"Point","coordinates":[92718,23330]},{"type":"Point","coordinates":[70840,29852]},{"type":"Point","coordinates":[92719,23332]},{"type":"Point","coordinates":[92721,23333]},{"type":"Point","coordinates":[92315,23500]},{"type":"Point","coordinates":[92723,23335]},{"type":"Point","coordinates":[70826,29860]},{"type":"Point","coordinates":[62624,31087]},{"type":"Point","coordinates":[69418,30121]},{"type":"Point","coordinates":[62789,31076]},{"type":"Point","coordinates":[92706,23352]},{"type":"Point","coordinates":[62779,31077]},{"type":"Point","coordinates":[62754,31085]},{"type":"Point","coordinates":[94802,22477]},{"type":"Point","coordinates":[85842,25925]},{"type":"Point","coordinates":[62759,31087]},{"type":"Point","coordinates":[62755,31088]},{"type":"Point","coordinates":[70863,29883]},{"type":"Point","coordinates":[70865,29884]},{"type":"Point","coordinates":[62627,31120]},{"type":"Point","coordinates":[92722,23375]},{"type":"Point","coordinates":[62694,31121]},{"type":"Point","coordinates":[70820,29909]},{"type":"Point","coordinates":[65413,30791]},{"type":"Point","coordinates":[65415,30798]},{"type":"Point","coordinates":[80914,27512]},{"type":"Point","coordinates":[62615,31144]},{"type":"Point","coordinates":[62640,31149]},{"type":"Point","coordinates":[63714,31029]},{"type":"Point","coordinates":[92681,23426]},{"type":"Point","coordinates":[62744,31155]},{"type":"Point","coordinates":[62745,31156]},{"type":"Point","coordinates":[80976,27522]},{"type":"Point","coordinates":[65384,30841]},{"type":"Point","coordinates":[62821,31177]},{"type":"Point","coordinates":[88707,25014]},{"type":"Point","coordinates":[81601,27374]},{"type":"Point","coordinates":[86147,25928]},{"type":"Point","coordinates":[81299,27468]},{"type":"Point","coordinates":[92051,23741]},{"type":"Point","coordinates":[81302,27472]},{"type":"Point","coordinates":[63626,31102]},{"type":"Point","coordinates":[91828,23837]},{"type":"Point","coordinates":[91343,24031]},{"type":"Point","coordinates":[86111,25956]},{"type":"Point","coordinates":[91833,23839]},{"type":"Point","coordinates":[62717,31214]},{"type":"Point","coordinates":[92030,23766]},{"type":"Point","coordinates":[93831,23026]},{"type":"Point","coordinates":[69051,30327]},{"type":"Point","coordinates":[85802,26075]},{"type":"Point","coordinates":[93830,23033]},{"type":"Point","coordinates":[86141,25965]},{"type":"Point","coordinates":[65150,30933]},{"type":"Point","coordinates":[62718,31231]},{"type":"Point","coordinates":[93833,23037]},{"type":"Point","coordinates":[81320,27499]},{"type":"Point","coordinates":[81317,27503]},{"type":"Point","coordinates":[85909,26053]},{"type":"Point","coordinates":[85899,26057]},{"type":"Point","coordinates":[81315,27506]},{"type":"Point","coordinates":[86150,25974]},{"type":"Point","coordinates":[93902,23020]},{"type":"Point","coordinates":[85886,26066]},{"type":"Point","coordinates":[93906,23027]},{"type":"Point","coordinates":[89346,24844]},{"type":"Point","coordinates":[85885,26081]},{"type":"Point","coordinates":[85877,26085]},{"type":"Point","coordinates":[85877,26085]},{"type":"Point","coordinates":[85877,26085]},{"type":"Point","coordinates":[85877,26085]},{"type":"Point","coordinates":[85879,26086]},{"type":"Point","coordinates":[85876,26087]},{"type":"Point","coordinates":[89811,24679]},{"type":"Point","coordinates":[83402,26902]},{"type":"Point","coordinates":[83402,26903]},{"type":"Point","coordinates":[85883,26095]},{"type":"Point","coordinates":[83408,26923]},{"type":"Point","coordinates":[62045,31365]},{"type":"Point","coordinates":[65301,30979]},{"type":"Point","coordinates":[80941,27697]},{"type":"Point","coordinates":[90960,24298]},{"type":"Point","coordinates":[89855,24724]},{"type":"Point","coordinates":[93363,23332]},{"type":"Point","coordinates":[80942,27708]},{"type":"Point","coordinates":[80947,27714]},{"type":"Point","coordinates":[7574,22769]},{"type":"Point","coordinates":[85944,26154]},{"type":"Point","coordinates":[86001,26136]},{"type":"Point","coordinates":[92983,23524]},{"type":"Point","coordinates":[83663,26913]},{"type":"Point","coordinates":[85946,26166]},{"type":"Point","coordinates":[85943,26168]},{"type":"Point","coordinates":[93048,23515]},{"type":"Point","coordinates":[65142,31083]},{"type":"Point","coordinates":[62463,31411]},{"type":"Point","coordinates":[85970,26198]},{"type":"Point","coordinates":[65333,31083]},{"type":"Point","coordinates":[85971,26202]},{"type":"Point","coordinates":[71622,30052]},{"type":"Point","coordinates":[64854,31165]},{"type":"Point","coordinates":[69220,30509]},{"type":"Point","coordinates":[81591,27627]},{"type":"Point","coordinates":[81591,27627]},{"type":"Point","coordinates":[92107,23966]},{"type":"Point","coordinates":[70773,30251]},{"type":"Point","coordinates":[63955,31325]},{"type":"Point","coordinates":[69485,30502]},{"type":"Point","coordinates":[85483,26443]},{"type":"Point","coordinates":[81328,27745]},{"type":"Point","coordinates":[92119,24007]},{"type":"Point","coordinates":[85487,26452]},{"type":"Point","coordinates":[85467,26470]},{"type":"Point","coordinates":[81313,27785]},{"type":"Point","coordinates":[85476,26483]},{"type":"Point","coordinates":[93053,23664]},{"type":"Point","coordinates":[5641,22100]},{"type":"Point","coordinates":[5644,22102]},{"type":"Point","coordinates":[5643,22104]},{"type":"Point","coordinates":[5637,22106]},{"type":"Point","coordinates":[69412,30579]},{"type":"Point","coordinates":[5633,22107]},{"type":"Point","coordinates":[86444,26173]},{"type":"Point","coordinates":[94287,23184]},{"type":"Point","coordinates":[69352,30618]},{"type":"Point","coordinates":[4965,21836]},{"type":"Point","coordinates":[5606,22128]},{"type":"Point","coordinates":[69706,30565]},{"type":"Point","coordinates":[81236,27866]},{"type":"Point","coordinates":[65119,31289]},{"type":"Point","coordinates":[95028,22890]},{"type":"Point","coordinates":[5599,22162]},{"type":"Point","coordinates":[5598,22163]},{"type":"Point","coordinates":[5595,22162]},{"type":"Point","coordinates":[5596,22162]},{"type":"Point","coordinates":[5591,22171]},{"type":"Point","coordinates":[5589,22171]},{"type":"Point","coordinates":[5589,22171]},{"type":"Point","coordinates":[86442,26273]},{"type":"Point","coordinates":[5591,22196]},{"type":"Point","coordinates":[92583,23976]},{"type":"Point","coordinates":[5797,22294]},{"type":"Point","coordinates":[5796,22295]},{"type":"Point","coordinates":[5796,22295]},{"type":"Point","coordinates":[92115,24178]},{"type":"Point","coordinates":[81584,27849]},{"type":"Point","coordinates":[5828,22325]},{"type":"Point","coordinates":[5828,22325]},{"type":"Point","coordinates":[5691,22264]},{"type":"Point","coordinates":[90912,24666]},{"type":"Point","coordinates":[72563,30111]},{"type":"Point","coordinates":[92562,24019]},{"type":"Point","coordinates":[89862,25083]},{"type":"Point","coordinates":[39080,31626]},{"type":"Point","coordinates":[92478,24064]},{"type":"Point","coordinates":[5843,22364]},{"type":"Point","coordinates":[94633,23172]},{"type":"Point","coordinates":[5843,22364]},{"type":"Point","coordinates":[5843,22365]},{"type":"Point","coordinates":[86693,26254]},{"type":"Point","coordinates":[5790,22351]},{"type":"Point","coordinates":[5819,22365]},{"type":"Point","coordinates":[92766,23973]},{"type":"Point","coordinates":[5836,22385]},{"type":"Point","coordinates":[5610,22291]},{"type":"Point","coordinates":[5912,22435]},{"type":"Point","coordinates":[5614,22305]},{"type":"Point","coordinates":[92489,24113]},{"type":"Point","coordinates":[5616,22309]},{"type":"Point","coordinates":[5617,22310]},{"type":"Point","coordinates":[5621,22314]},{"type":"Point","coordinates":[70653,30562]},{"type":"Point","coordinates":[5621,22315]},{"type":"Point","coordinates":[73306,30032]},{"type":"Point","coordinates":[5621,22316]},{"type":"Point","coordinates":[5631,22320]},{"type":"Point","coordinates":[5622,22317]},{"type":"Point","coordinates":[84798,26941]},{"type":"Point","coordinates":[5658,22340]},{"type":"Point","coordinates":[5629,22330]},{"type":"Point","coordinates":[5644,22338]},{"type":"Point","coordinates":[5648,22350]},{"type":"Point","coordinates":[5648,22353]},{"type":"Point","coordinates":[92703,24057]},{"type":"Point","coordinates":[5648,22354]},{"type":"Point","coordinates":[5692,22378]},{"type":"Point","coordinates":[93417,23768]},{"type":"Point","coordinates":[86544,26391]},{"type":"Point","coordinates":[92685,24081]},{"type":"Point","coordinates":[92685,24081]},{"type":"Point","coordinates":[94845,23181]},{"type":"Point","coordinates":[93955,23569]},{"type":"Point","coordinates":[5714,22428]},{"type":"Point","coordinates":[81179,28123]},{"type":"Point","coordinates":[68422,31029]},{"type":"Point","coordinates":[81582,28011]},{"type":"Point","coordinates":[5710,22436]},{"type":"Point","coordinates":[91042,24777]},{"type":"Point","coordinates":[89966,25196]},{"type":"Point","coordinates":[64684,31594]},{"type":"Point","coordinates":[81488,28052]},{"type":"Point","coordinates":[81488,28052]},{"type":"Point","coordinates":[68562,31031]},{"type":"Point","coordinates":[92266,24312]},{"type":"Point","coordinates":[89967,25219]},{"type":"Point","coordinates":[5678,22456]},{"type":"Point","coordinates":[94216,23520]},{"type":"Point","coordinates":[82520,27779]},{"type":"Point","coordinates":[82522,27784]},{"type":"Point","coordinates":[92305,24341]},{"type":"Point","coordinates":[43129,32217]},{"type":"Point","coordinates":[94872,23275]},{"type":"Point","coordinates":[94874,23277]},{"type":"Point","coordinates":[94874,23278]},{"type":"Point","coordinates":[93832,23721]},{"type":"Point","coordinates":[93835,23723]},{"type":"Point","coordinates":[5549,22451]},{"type":"Point","coordinates":[5548,22452]},{"type":"Point","coordinates":[5548,22452]},{"type":"Point","coordinates":[93218,23989]},{"type":"Point","coordinates":[64351,31715]},{"type":"Point","coordinates":[64317,31736]},{"type":"Point","coordinates":[92190,24428]},{"type":"Point","coordinates":[93287,23984]},{"type":"Point","coordinates":[92186,24437]},{"type":"Point","coordinates":[92150,24452]},{"type":"Point","coordinates":[86285,26634]},{"type":"Point","coordinates":[92146,24455]},{"type":"Point","coordinates":[92182,24443]},{"type":"Point","coordinates":[94867,23324]},{"type":"Point","coordinates":[22297,28582]},{"type":"Point","coordinates":[92143,24467]},{"type":"Point","coordinates":[92175,24458]},{"type":"Point","coordinates":[92148,24471]},{"type":"Point","coordinates":[92146,24472]},{"type":"Point","coordinates":[92159,24469]},{"type":"Point","coordinates":[92142,24480]},{"type":"Point","coordinates":[92144,24484]},{"type":"Point","coordinates":[92145,24484]},{"type":"Point","coordinates":[94891,23344]},{"type":"Point","coordinates":[93941,23749]},{"type":"Point","coordinates":[92058,24527]},{"type":"Point","coordinates":[94856,23365]},{"type":"Point","coordinates":[92078,24536]},{"type":"Point","coordinates":[92939,24190]},{"type":"Point","coordinates":[81086,28344]},{"type":"Point","coordinates":[94886,23389]},{"type":"Point","coordinates":[86357,26709]},{"type":"Point","coordinates":[93695,23922]},{"type":"Point","coordinates":[89588,25568]},{"type":"Point","coordinates":[71637,30697]},{"type":"Point","coordinates":[70611,30895]},{"type":"Point","coordinates":[81670,28243]},{"type":"Point","coordinates":[94937,23446]},{"type":"Point","coordinates":[93716,23967]},{"type":"Point","coordinates":[94936,23450]},{"type":"Point","coordinates":[94941,23449]},{"type":"Point","coordinates":[92140,24616]},{"type":"Point","coordinates":[89874,25512]},{"type":"Point","coordinates":[94377,23704]},{"type":"Point","coordinates":[71631,30739]},{"type":"Point","coordinates":[92151,24628]},{"type":"Point","coordinates":[70671,30933]},{"type":"Point","coordinates":[70666,30937]},{"type":"Point","coordinates":[87042,26561]},{"type":"Point","coordinates":[93461,24110]},{"type":"Point","coordinates":[84547,27408]},{"type":"Point","coordinates":[68745,31293]},{"type":"Point","coordinates":[91957,24747]},{"type":"Point","coordinates":[83085,27892]},{"type":"Point","coordinates":[86239,26894]},{"type":"Point","coordinates":[95086,23475]},{"type":"Point","coordinates":[95086,23475]},{"type":"Point","coordinates":[95086,23475]},{"type":"Point","coordinates":[27866,30227]},{"type":"Point","coordinates":[90151,25492]},{"type":"Point","coordinates":[83441,27839]},{"type":"Point","coordinates":[91941,24821]},{"type":"Point","coordinates":[93522,24186]},{"type":"Point","coordinates":[88203,26257]},{"type":"Point","coordinates":[88207,26259]},{"type":"Point","coordinates":[93781,24087]},{"type":"Point","coordinates":[93768,24095]},{"type":"Point","coordinates":[93787,24088]},{"type":"Point","coordinates":[44043,32631]},{"type":"Point","coordinates":[95029,23573]},{"type":"Point","coordinates":[86175,26989]},{"type":"Point","coordinates":[86101,27034]},{"type":"Point","coordinates":[86100,27035]},{"type":"Point","coordinates":[81515,28486]},{"type":"Point","coordinates":[70976,31038]},{"type":"Point","coordinates":[2263,21302]},{"type":"Point","coordinates":[91182,25194]},{"type":"Point","coordinates":[92263,24775]},{"type":"Point","coordinates":[81516,28513]},{"type":"Point","coordinates":[94160,24000]},{"type":"Point","coordinates":[82585,28206]},{"type":"Point","coordinates":[91104,25253]},{"type":"Point","coordinates":[91113,25252]},{"type":"Point","coordinates":[92260,24806]},{"type":"Point","coordinates":[93825,24163]},{"type":"Point","coordinates":[81844,28453]},{"type":"Point","coordinates":[94002,24100]},{"type":"Point","coordinates":[81481,28563]},{"type":"Point","coordinates":[83953,27812]},{"type":"Point","coordinates":[81856,28464]},{"type":"Point","coordinates":[81855,28467]},{"type":"Point","coordinates":[93773,24213]},{"type":"Point","coordinates":[92056,24921]},{"type":"Point","coordinates":[81853,28474]},{"type":"Point","coordinates":[94004,24132]},{"type":"Point","coordinates":[93998,24137]},{"type":"Point","coordinates":[94977,23720]},{"type":"Point","coordinates":[94977,23721]},{"type":"Point","coordinates":[91123,25307]},{"type":"Point","coordinates":[85459,27359]},{"type":"Point","coordinates":[93794,24232]},{"type":"Point","coordinates":[91995,24976]},{"type":"Point","coordinates":[71495,31053]},{"type":"Point","coordinates":[95118,23683]},{"type":"Point","coordinates":[69858,31359]},{"type":"Point","coordinates":[92366,24838]},{"type":"Point","coordinates":[93921,24207]},{"type":"Point","coordinates":[89922,25806]},{"type":"Point","coordinates":[89923,25806]},{"type":"Point","coordinates":[92222,24916]},{"type":"Point","coordinates":[92222,24919]},{"type":"Point","coordinates":[93801,24280]},{"type":"Point","coordinates":[37316,32149]},{"type":"Point","coordinates":[50814,33065]},{"type":"Point","coordinates":[92223,24935]},{"type":"Point","coordinates":[94768,23880]},{"type":"Point","coordinates":[92225,24939]},{"type":"Point","coordinates":[92231,24937]},{"type":"Point","coordinates":[92225,24940]},{"type":"Point","coordinates":[90795,25505]},{"type":"Point","coordinates":[92229,24939]},{"type":"Point","coordinates":[92226,24941]},{"type":"Point","coordinates":[71479,31110]},{"type":"Point","coordinates":[89934,25842]},{"type":"Point","coordinates":[71504,31119]},{"type":"Point","coordinates":[93826,24304]},{"type":"Point","coordinates":[93725,24348]},{"type":"Point","coordinates":[83714,28018]},{"type":"Point","coordinates":[93938,24268]},{"type":"Point","coordinates":[93836,24312]},{"type":"Point","coordinates":[89841,25907]},{"type":"Point","coordinates":[92414,24902]},{"type":"Point","coordinates":[94824,23903]},{"type":"Point","coordinates":[91161,25406]},{"type":"Point","coordinates":[82938,28277]},{"type":"Point","coordinates":[89971,25865]},{"type":"Point","coordinates":[89971,25866]},{"type":"Point","coordinates":[71488,31149]},{"type":"Point","coordinates":[82937,28280]},{"type":"Point","coordinates":[83500,28107]},{"type":"Point","coordinates":[91068,25453]},{"type":"Point","coordinates":[91159,25419]},{"type":"Point","coordinates":[92310,24966]},{"type":"Point","coordinates":[91150,25427]},{"type":"Point","coordinates":[94237,24173]},{"type":"Point","coordinates":[93953,24296]},{"type":"Point","coordinates":[92686,24821]},{"type":"Point","coordinates":[38764,32410]},{"type":"Point","coordinates":[81379,28774]},{"type":"Point","coordinates":[91221,25419]},{"type":"Point","coordinates":[71415,31196]},{"type":"Point","coordinates":[91222,25422]},{"type":"Point","coordinates":[94016,24289]},{"type":"Point","coordinates":[92632,24869]},{"type":"Point","coordinates":[71417,31209]},{"type":"Point","coordinates":[81719,28694]},{"type":"Point","coordinates":[92621,24876]},{"type":"Point","coordinates":[71417,31210]},{"type":"Point","coordinates":[89928,25935]},{"type":"Point","coordinates":[83832,28053]},{"type":"Point","coordinates":[82064,28597]},{"type":"Point","coordinates":[89910,25946]},{"type":"Point","coordinates":[93830,24386]},{"type":"Point","coordinates":[92444,24958]},{"type":"Point","coordinates":[92444,24958]},{"type":"Point","coordinates":[92444,24959]},{"type":"Point","coordinates":[92630,24886]},{"type":"Point","coordinates":[91109,25493]},{"type":"Point","coordinates":[81267,28844]},{"type":"Point","coordinates":[90012,25919]},{"type":"Point","coordinates":[93840,24392]},{"type":"Point","coordinates":[93840,24393]},{"type":"Point","coordinates":[92651,24885]},{"type":"Point","coordinates":[91074,25513]},{"type":"Point","coordinates":[92651,24886]},{"type":"Point","coordinates":[92450,24968]},{"type":"Point","coordinates":[92486,24953]},{"type":"Point","coordinates":[92640,24891]},{"type":"Point","coordinates":[81511,28779]},{"type":"Point","coordinates":[90016,25924]},{"type":"Point","coordinates":[90015,25926]},{"type":"Point","coordinates":[87049,27008]},{"type":"Point","coordinates":[81249,28862]},{"type":"Point","coordinates":[81250,28863]},{"type":"Point","coordinates":[92440,24982]},{"type":"Point","coordinates":[92442,24982]},{"type":"Point","coordinates":[81246,28867]},{"type":"Point","coordinates":[92634,24909]},{"type":"Point","coordinates":[92634,24910]},{"type":"Point","coordinates":[93865,24404]},{"type":"Point","coordinates":[93832,24418]},{"type":"Point","coordinates":[90031,25941]},{"type":"Point","coordinates":[82957,28369]},{"type":"Point","coordinates":[93801,24442]},{"type":"Point","coordinates":[85609,27525]},{"type":"Point","coordinates":[71551,31239]},{"type":"Point","coordinates":[83668,28159]},{"type":"Point","coordinates":[92673,24920]},{"type":"Point","coordinates":[92493,24993]},{"type":"Point","coordinates":[92493,24994]},{"type":"Point","coordinates":[92560,24968]},{"type":"Point","coordinates":[93869,24431]},{"type":"Point","coordinates":[92502,24996]},{"type":"Point","coordinates":[92584,24963]},{"type":"Point","coordinates":[92504,24998]},{"type":"Point","coordinates":[92505,24999]},{"type":"Point","coordinates":[93805,24464]},{"type":"Point","coordinates":[92506,25000]},{"type":"Point","coordinates":[92507,25000]},{"type":"Point","coordinates":[92506,25001]},{"type":"Point","coordinates":[92593,24966]},{"type":"Point","coordinates":[92593,24969]},{"type":"Point","coordinates":[92511,25003]},{"type":"Point","coordinates":[92589,24972]},{"type":"Point","coordinates":[93655,24536]},{"type":"Point","coordinates":[83851,28127]},{"type":"Point","coordinates":[93692,24522]},{"type":"Point","coordinates":[83849,28131]},{"type":"Point","coordinates":[92518,25009]},{"type":"Point","coordinates":[93945,24420]},{"type":"Point","coordinates":[92521,25009]},{"type":"Point","coordinates":[92522,25010]},{"type":"Point","coordinates":[92531,25007]},{"type":"Point","coordinates":[92525,25010]},{"type":"Point","coordinates":[92589,24984]},{"type":"Point","coordinates":[92531,25007]},{"type":"Point","coordinates":[92532,25007]},{"type":"Point","coordinates":[83372,28287]},{"type":"Point","coordinates":[92635,24976]},{"type":"Point","coordinates":[93688,24544]},{"type":"Point","coordinates":[92588,25002]},{"type":"Point","coordinates":[92627,24993]},{"type":"Point","coordinates":[92629,24993]},{"type":"Point","coordinates":[90649,25779]},{"type":"Point","coordinates":[82923,28453]},{"type":"Point","coordinates":[92616,25005]},{"type":"Point","coordinates":[92616,25005]},{"type":"Point","coordinates":[92618,25005]},{"type":"Point","coordinates":[92618,25006]},{"type":"Point","coordinates":[92204,25173]},{"type":"Point","coordinates":[92620,25006]},{"type":"Point","coordinates":[92620,25006]},{"type":"Point","coordinates":[92622,25006]},{"type":"Point","coordinates":[92621,25006]},{"type":"Point","coordinates":[92622,25006]},{"type":"Point","coordinates":[92621,25006]},{"type":"Point","coordinates":[92621,25007]},{"type":"Point","coordinates":[92621,25007]},{"type":"Point","coordinates":[92625,25006]},{"type":"Point","coordinates":[92626,25007]},{"type":"Point","coordinates":[92700,24977]},{"type":"Point","coordinates":[92632,25006]},{"type":"Point","coordinates":[92710,24975]},{"type":"Point","coordinates":[92637,25006]},{"type":"Point","coordinates":[92608,25018]},{"type":"Point","coordinates":[71519,31324]},{"type":"Point","coordinates":[92634,25008]},{"type":"Point","coordinates":[92635,25008]},{"type":"Point","coordinates":[92631,25012]},{"type":"Point","coordinates":[92634,25011]},{"type":"Point","coordinates":[92638,25010]},{"type":"Point","coordinates":[92634,25012]},{"type":"Point","coordinates":[95278,23902]},{"type":"Point","coordinates":[92658,25003]},{"type":"Point","coordinates":[92638,25011]},{"type":"Point","coordinates":[92635,25015]},{"type":"Point","coordinates":[92635,25015]},{"type":"Point","coordinates":[92631,25017]},{"type":"Point","coordinates":[92638,25014]},{"type":"Point","coordinates":[92644,25012]},{"type":"Point","coordinates":[92632,25018]},{"type":"Point","coordinates":[92639,25015]},{"type":"Point","coordinates":[92636,25016]},{"type":"Point","coordinates":[92632,25018]},{"type":"Point","coordinates":[92632,25019]},{"type":"Point","coordinates":[92632,25018]},{"type":"Point","coordinates":[92093,25236]},{"type":"Point","coordinates":[92632,25019]},{"type":"Point","coordinates":[92632,25019]},{"type":"Point","coordinates":[92635,25019]},{"type":"Point","coordinates":[83541,28287]},{"type":"Point","coordinates":[92634,25020]},{"type":"Point","coordinates":[92634,25020]},{"type":"Point","coordinates":[92634,25020]},{"type":"Point","coordinates":[92634,25020]},{"type":"Point","coordinates":[92633,25021]},{"type":"Point","coordinates":[92633,25021]},{"type":"Point","coordinates":[92633,25021]},{"type":"Point","coordinates":[92633,25021]},{"type":"Point","coordinates":[85799,27555]},{"type":"Point","coordinates":[92633,25021]},{"type":"Point","coordinates":[92633,25021]},{"type":"Point","coordinates":[94312,24325]},{"type":"Point","coordinates":[92632,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92635,25022]},{"type":"Point","coordinates":[92635,25022]},{"type":"Point","coordinates":[83538,28290]},{"type":"Point","coordinates":[92633,25023]},{"type":"Point","coordinates":[92634,25022]},{"type":"Point","coordinates":[92633,25023]},{"type":"Point","coordinates":[92635,25022]},{"type":"Point","coordinates":[92633,25023]},{"type":"Point","coordinates":[92633,25023]},{"type":"Point","coordinates":[92633,25023]},{"type":"Point","coordinates":[83538,28291]},{"type":"Point","coordinates":[92633,25023]},{"type":"Point","coordinates":[92634,25023]},{"type":"Point","coordinates":[92634,25023]},{"type":"Point","coordinates":[92635,25023]},{"type":"Point","coordinates":[92634,25023]},{"type":"Point","coordinates":[92635,25023]},{"type":"Point","coordinates":[92634,25024]},{"type":"Point","coordinates":[92633,25024]},{"type":"Point","coordinates":[92633,25024]},{"type":"Point","coordinates":[83538,28293]},{"type":"Point","coordinates":[92635,25024]},{"type":"Point","coordinates":[92668,25011]},{"type":"Point","coordinates":[92635,25024]},{"type":"Point","coordinates":[92633,25025]},{"type":"Point","coordinates":[92633,25025]},{"type":"Point","coordinates":[92640,25023]},{"type":"Point","coordinates":[38815,32591]},{"type":"Point","coordinates":[92634,25026]},{"type":"Point","coordinates":[92641,25023]},{"type":"Point","coordinates":[92638,25025]},{"type":"Point","coordinates":[68452,31894]},{"type":"Point","coordinates":[92666,25015]},{"type":"Point","coordinates":[83547,28293]},{"type":"Point","coordinates":[92633,25028]},{"type":"Point","coordinates":[92636,25027]},{"type":"Point","coordinates":[92636,25027]},{"type":"Point","coordinates":[92636,25028]},{"type":"Point","coordinates":[83545,28295]},{"type":"Point","coordinates":[83546,28296]},{"type":"Point","coordinates":[83547,28296]},{"type":"Point","coordinates":[83547,28296]},{"type":"Point","coordinates":[83547,28296]},{"type":"Point","coordinates":[92657,25023]},{"type":"Point","coordinates":[92633,25032]},{"type":"Point","coordinates":[92635,25032]},{"type":"Point","coordinates":[83547,28298]},{"type":"Point","coordinates":[92635,25032]},{"type":"Point","coordinates":[92635,25032]},{"type":"Point","coordinates":[88330,26685]},{"type":"Point","coordinates":[92642,25030]},{"type":"Point","coordinates":[82888,28503]},{"type":"Point","coordinates":[92638,25033]},{"type":"Point","coordinates":[82892,28504]},{"type":"Point","coordinates":[83547,28302]},{"type":"Point","coordinates":[88196,26737]},{"type":"Point","coordinates":[92639,25036]},{"type":"Point","coordinates":[92639,25036]},{"type":"Point","coordinates":[92662,25029]},{"type":"Point","coordinates":[92661,25029]},{"type":"Point","coordinates":[83841,28215]},{"type":"Point","coordinates":[92643,25039]},{"type":"Point","coordinates":[92643,25039]},{"type":"Point","coordinates":[92642,25040]},{"type":"Point","coordinates":[92643,25039]},{"type":"Point","coordinates":[92643,25040]},{"type":"Point","coordinates":[92643,25040]},{"type":"Point","coordinates":[92643,25041]},{"type":"Point","coordinates":[92644,25047]},{"type":"Point","coordinates":[92678,25033]},{"type":"Point","coordinates":[92671,25040]},{"type":"Point","coordinates":[92672,25040]},{"type":"Point","coordinates":[92476,25122]},{"type":"Point","coordinates":[92695,25036]},{"type":"Point","coordinates":[92481,25125]},{"type":"Point","coordinates":[92678,25048]},{"type":"Point","coordinates":[68470,31930]},{"type":"Point","coordinates":[94551,24278]},{"type":"Point","coordinates":[92650,25073]},{"type":"Point","coordinates":[92646,25075]},{"type":"Point","coordinates":[92649,25078]},{"type":"Point","coordinates":[94706,24220]},{"type":"Point","coordinates":[83528,28359]},{"type":"Point","coordinates":[92280,25236]},{"type":"Point","coordinates":[37933,32550]},{"type":"Point","coordinates":[92834,25012]},{"type":"Point","coordinates":[69849,31720]},{"type":"Point","coordinates":[94521,24311]},{"type":"Point","coordinates":[91567,25524]},{"type":"Point","coordinates":[92485,25158]},{"type":"Point","coordinates":[94525,24312]},{"type":"Point","coordinates":[92485,25159]},{"type":"Point","coordinates":[92484,25164]},{"type":"Point","coordinates":[73137,31091]},{"type":"Point","coordinates":[91939,25390]},{"type":"Point","coordinates":[89754,26237]},{"type":"Point","coordinates":[91978,25378]},{"type":"Point","coordinates":[92652,25108]},{"type":"Point","coordinates":[92652,25108]},{"type":"Point","coordinates":[92652,25108]},{"type":"Point","coordinates":[92653,25108]},{"type":"Point","coordinates":[92413,25206]},{"type":"Point","coordinates":[92467,25187]},{"type":"Point","coordinates":[4609,22924]},{"type":"Point","coordinates":[90929,25797]},{"type":"Point","coordinates":[92468,25188]},{"type":"Point","coordinates":[92687,25100]},{"type":"Point","coordinates":[92139,25323]},{"type":"Point","coordinates":[90130,26108]},{"type":"Point","coordinates":[93907,24600]},{"type":"Point","coordinates":[91944,25404]},{"type":"Point","coordinates":[93930,24593]},{"type":"Point","coordinates":[95416,23959]},{"type":"Point","coordinates":[92578,25156]},{"type":"Point","coordinates":[95162,24075]},{"type":"Point","coordinates":[92405,25238]},{"type":"Point","coordinates":[82869,28619]},{"type":"Point","coordinates":[93912,24619]},{"type":"Point","coordinates":[92578,25173]},{"type":"Point","coordinates":[91936,25433]},{"type":"Point","coordinates":[93004,25003]},{"type":"Point","coordinates":[93003,25005]},{"type":"Point","coordinates":[93002,25005]},{"type":"Point","coordinates":[93001,25006]},{"type":"Point","coordinates":[91951,25433]},{"type":"Point","coordinates":[92581,25184]},{"type":"Point","coordinates":[95333,24032]},{"type":"Point","coordinates":[94042,24591]},{"type":"Point","coordinates":[82868,28649]},{"type":"Point","coordinates":[94548,24381]},{"type":"Point","coordinates":[94033,24601]},{"type":"Point","coordinates":[94034,24600]},{"type":"Point","coordinates":[94352,24467]},{"type":"Point","coordinates":[94035,24601]},{"type":"Point","coordinates":[94040,24602]},{"type":"Point","coordinates":[81472,29074]},{"type":"Point","coordinates":[92102,25407]},{"type":"Point","coordinates":[94071,24602]},{"type":"Point","coordinates":[93318,24919]},{"type":"Point","coordinates":[93956,24655]},{"type":"Point","coordinates":[93824,24712]},{"type":"Point","coordinates":[91739,25562]},{"type":"Point","coordinates":[94677,24353]},{"type":"Point","coordinates":[93985,24646]},{"type":"Point","coordinates":[92502,25258]},{"type":"Point","coordinates":[91245,25760]},{"type":"Point","coordinates":[92702,25181]},{"type":"Point","coordinates":[92569,25235]},{"type":"Point","coordinates":[91988,25469]},{"type":"Point","coordinates":[91988,25470]},{"type":"Point","coordinates":[92576,25235]},{"type":"Point","coordinates":[65091,32574]},{"type":"Point","coordinates":[92641,25212]},{"type":"Point","coordinates":[92606,25228]},{"type":"Point","coordinates":[91992,25476]},{"type":"Point","coordinates":[90324,26130]},{"type":"Point","coordinates":[94025,24646]},{"type":"Point","coordinates":[91993,25480]},{"type":"Point","coordinates":[91989,25485]},{"type":"Point","coordinates":[94761,24340]},{"type":"Point","coordinates":[94790,24328]},{"type":"Point","coordinates":[92000,25486]},{"type":"Point","coordinates":[92007,25484]},{"type":"Point","coordinates":[93706,24792]},{"type":"Point","coordinates":[92001,25490]},{"type":"Point","coordinates":[92667,25223]},{"type":"Point","coordinates":[93713,24794]},{"type":"Point","coordinates":[93714,24794]},{"type":"Point","coordinates":[93703,24800]},{"type":"Point","coordinates":[92610,25251]},{"type":"Point","coordinates":[93912,24716]},{"type":"Point","coordinates":[92316,25374]},{"type":"Point","coordinates":[92928,25129]},{"type":"Point","coordinates":[82840,28731]},{"type":"Point","coordinates":[93831,24757]},{"type":"Point","coordinates":[82835,28736]},{"type":"Point","coordinates":[92386,25354]},{"type":"Point","coordinates":[92279,25397]},{"type":"Point","coordinates":[93995,24694]},{"type":"Point","coordinates":[92380,25362]},{"type":"Point","coordinates":[80935,29309]},{"type":"Point","coordinates":[80940,29308]},{"type":"Point","coordinates":[80935,29311]},{"type":"Point","coordinates":[82879,28736]},{"type":"Point","coordinates":[92928,25147]},{"type":"Point","coordinates":[91022,25907]},{"type":"Point","coordinates":[80935,29313]},{"type":"Point","coordinates":[94050,24683]},{"type":"Point","coordinates":[94773,24379]},{"type":"Point","coordinates":[89988,26310]},{"type":"Point","coordinates":[93924,24741]},{"type":"Point","coordinates":[92433,25354]},{"type":"Point","coordinates":[82826,28760]},{"type":"Point","coordinates":[92933,25155]},{"type":"Point","coordinates":[92474,25344]},{"type":"Point","coordinates":[94246,24612]},{"type":"Point","coordinates":[80944,29322]},{"type":"Point","coordinates":[92932,25158]},{"type":"Point","coordinates":[92383,25381]},{"type":"Point","coordinates":[95557,24050]},{"type":"Point","coordinates":[92951,25155]},{"type":"Point","coordinates":[92952,25155]},{"type":"Point","coordinates":[80938,29329]},{"type":"Point","coordinates":[82810,28775]},{"type":"Point","coordinates":[92474,25350]},{"type":"Point","coordinates":[82809,28777]},{"type":"Point","coordinates":[93893,24769]},{"type":"Point","coordinates":[93892,24769]},{"type":"Point","coordinates":[94063,24699]},{"type":"Point","coordinates":[93979,24736]},{"type":"Point","coordinates":[92934,25170]},{"type":"Point","coordinates":[92842,25215]},{"type":"Point","coordinates":[92843,25215]},{"type":"Point","coordinates":[92392,25398]},{"type":"Point","coordinates":[93541,24930]},{"type":"Point","coordinates":[92938,25179]},{"type":"Point","coordinates":[94190,24660]},{"type":"Point","coordinates":[92705,25277]},{"type":"Point","coordinates":[92421,25393]},{"type":"Point","coordinates":[93998,24749]},{"type":"Point","coordinates":[92818,25241]},{"type":"Point","coordinates":[93909,24792]},{"type":"Point","coordinates":[92897,25212]},{"type":"Point","coordinates":[65478,32629]},{"type":"Point","coordinates":[82821,28809]},{"type":"Point","coordinates":[93915,24795]},{"type":"Point","coordinates":[93928,24790]},{"type":"Point","coordinates":[86005,27787]},{"type":"Point","coordinates":[93932,24793]},{"type":"Point","coordinates":[93553,24951]},{"type":"Point","coordinates":[93938,24792]},{"type":"Point","coordinates":[93942,24791]},{"type":"Point","coordinates":[2729,22259]},{"type":"Point","coordinates":[93106,25144]},{"type":"Point","coordinates":[92892,25234]},{"type":"Point","coordinates":[93884,24825]},{"type":"Point","coordinates":[90449,26203]},{"type":"Point","coordinates":[82848,28821]},{"type":"Point","coordinates":[94094,24744]},{"type":"Point","coordinates":[91229,25907]},{"type":"Point","coordinates":[93698,24913]},{"type":"Point","coordinates":[93110,25158]},{"type":"Point","coordinates":[93110,25158]},{"type":"Point","coordinates":[82796,28846]},{"type":"Point","coordinates":[82826,28842]},{"type":"Point","coordinates":[82834,28842]},{"type":"Point","coordinates":[82843,28840]},{"type":"Point","coordinates":[82839,28844]},{"type":"Point","coordinates":[82839,28844]},{"type":"Point","coordinates":[82838,28845]},{"type":"Point","coordinates":[82841,28844]},{"type":"Point","coordinates":[92977,25231]},{"type":"Point","coordinates":[92338,25491]},{"type":"Point","coordinates":[63696,32904]},{"type":"Point","coordinates":[92352,25491]},{"type":"Point","coordinates":[94032,24802]},{"type":"Point","coordinates":[94448,24627]},{"type":"Point","coordinates":[82795,28874]},{"type":"Point","coordinates":[94037,24803]},{"type":"Point","coordinates":[94031,24807]},{"type":"Point","coordinates":[82846,28867]},{"type":"Point","coordinates":[93018,25232]},{"type":"Point","coordinates":[94048,24805]},{"type":"Point","coordinates":[92685,25374]},{"type":"Point","coordinates":[94402,24661]},{"type":"Point","coordinates":[92347,25514]},{"type":"Point","coordinates":[92887,25295]},{"type":"Point","coordinates":[92342,25519]},{"type":"Point","coordinates":[80601,29551]},{"type":"Point","coordinates":[94853,24489]},{"type":"Point","coordinates":[90918,26096]},{"type":"Point","coordinates":[94230,24757]},{"type":"Point","coordinates":[94414,24682]},{"type":"Point","coordinates":[85955,27899]},{"type":"Point","coordinates":[92671,25409]},{"type":"Point","coordinates":[94170,24793]},{"type":"Point","coordinates":[82830,28912]},{"type":"Point","coordinates":[94774,24543]},{"type":"Point","coordinates":[94077,24847]},{"type":"Point","coordinates":[64474,32885]},{"type":"Point","coordinates":[85936,27936]},{"type":"Point","coordinates":[7761,24662]},{"type":"Point","coordinates":[92484,25523]},{"type":"Point","coordinates":[94098,24861]},{"type":"Point","coordinates":[80709,29576]},{"type":"Point","coordinates":[95248,24378]},{"type":"Point","coordinates":[92809,25405]},{"type":"Point","coordinates":[3584,22809]},{"type":"Point","coordinates":[95248,24383]},{"type":"Point","coordinates":[95248,24383]},{"type":"Point","coordinates":[95247,24392]},{"type":"Point","coordinates":[90766,26227]},{"type":"Point","coordinates":[90767,26227]},{"type":"Point","coordinates":[95247,24394]},{"type":"Point","coordinates":[90767,26230]},{"type":"Point","coordinates":[92264,25643]},{"type":"Point","coordinates":[81415,29398]},{"type":"Point","coordinates":[95279,24385]},{"type":"Point","coordinates":[92901,25390]},{"type":"Point","coordinates":[92358,25614]},{"type":"Point","coordinates":[95196,24431]},{"type":"Point","coordinates":[80259,29739]},{"type":"Point","coordinates":[95238,24416]},{"type":"Point","coordinates":[92223,25676]},{"type":"Point","coordinates":[94134,24893]},{"type":"Point","coordinates":[86241,27896]},{"type":"Point","coordinates":[86231,27901]},{"type":"Point","coordinates":[92234,25679]},{"type":"Point","coordinates":[93006,25366]},{"type":"Point","coordinates":[84441,28494]},{"type":"Point","coordinates":[84441,28495]},{"type":"Point","coordinates":[93007,25369]},{"type":"Point","coordinates":[92839,25440]},{"type":"Point","coordinates":[92840,25440]},{"type":"Point","coordinates":[92839,25440]},{"type":"Point","coordinates":[92841,25441]},{"type":"Point","coordinates":[94956,24556]},{"type":"Point","coordinates":[92739,25489]},{"type":"Point","coordinates":[92739,25489]},{"type":"Point","coordinates":[92838,25449]},{"type":"Point","coordinates":[92505,25587]},{"type":"Point","coordinates":[72714,31605]},{"type":"Point","coordinates":[93678,25113]},{"type":"Point","coordinates":[92746,25499]},{"type":"Point","coordinates":[94662,24701]},{"type":"Point","coordinates":[94091,24944]},{"type":"Point","coordinates":[92786,25484]},{"type":"Point","coordinates":[92786,25484]},{"type":"Point","coordinates":[92747,25502]},{"type":"Point","coordinates":[92746,25505]},{"type":"Point","coordinates":[85316,28242]},{"type":"Point","coordinates":[85314,28244]},{"type":"Point","coordinates":[92960,25422]},{"type":"Point","coordinates":[92811,25483]},{"type":"Point","coordinates":[94104,24948]},{"type":"Point","coordinates":[92808,25485]},{"type":"Point","coordinates":[94090,24955]},{"type":"Point","coordinates":[92961,25424]},{"type":"Point","coordinates":[94404,24823]},{"type":"Point","coordinates":[92811,25485]},{"type":"Point","coordinates":[92811,25485]},{"type":"Point","coordinates":[92809,25486]},{"type":"Point","coordinates":[72658,31633]},{"type":"Point","coordinates":[92815,25484]},{"type":"Point","coordinates":[92956,25428]},{"type":"Point","coordinates":[92313,25689]},{"type":"Point","coordinates":[85315,28251]},{"type":"Point","coordinates":[92288,25701]},{"type":"Point","coordinates":[92956,25431]},{"type":"Point","coordinates":[94096,24959]},{"type":"Point","coordinates":[92811,25492]},{"type":"Point","coordinates":[92811,25494]},{"type":"Point","coordinates":[92806,25498]},{"type":"Point","coordinates":[72965,31580]},{"type":"Point","coordinates":[92953,25438]},{"type":"Point","coordinates":[92954,25438]},{"type":"Point","coordinates":[92808,25499]},{"type":"Point","coordinates":[92808,25500]},{"type":"Point","coordinates":[92951,25443]},{"type":"Point","coordinates":[92808,25501]},{"type":"Point","coordinates":[84986,28372]},{"type":"Point","coordinates":[94897,24630]},{"type":"Point","coordinates":[92815,25501]},{"type":"Point","coordinates":[92824,25498]},{"type":"Point","coordinates":[92754,25527]},{"type":"Point","coordinates":[72971,31586]},{"type":"Point","coordinates":[92754,25527]},{"type":"Point","coordinates":[92754,25528]},{"type":"Point","coordinates":[94082,24981]},{"type":"Point","coordinates":[94449,24827]},{"type":"Point","coordinates":[92956,25450]},{"type":"Point","coordinates":[85309,28274]},{"type":"Point","coordinates":[91443,26058]},{"type":"Point","coordinates":[94458,24827]},{"type":"Point","coordinates":[92036,25824]},{"type":"Point","coordinates":[92753,25537]},{"type":"Point","coordinates":[92753,25538]},{"type":"Point","coordinates":[94210,24937]},{"type":"Point","coordinates":[94455,24837]},{"type":"Point","coordinates":[94194,24948]},{"type":"Point","coordinates":[94455,24838]},{"type":"Point","coordinates":[80859,29656]},{"type":"Point","coordinates":[93525,25229]},{"type":"Point","coordinates":[94373,24874]},{"type":"Point","coordinates":[94462,24837]},{"type":"Point","coordinates":[92713,25565]},{"type":"Point","coordinates":[92715,25567]},{"type":"Point","coordinates":[92717,25568]},{"type":"Point","coordinates":[92050,25837]},{"type":"Point","coordinates":[89557,26800]},{"type":"Point","coordinates":[92894,25499]},{"type":"Point","coordinates":[92722,25570]},{"type":"Point","coordinates":[92722,25570]},{"type":"Point","coordinates":[85529,28225]},{"type":"Point","coordinates":[92728,25572]},{"type":"Point","coordinates":[92729,25573]},{"type":"Point","coordinates":[92729,25573]},{"type":"Point","coordinates":[93987,25057]},{"type":"Point","coordinates":[84993,28411]},{"type":"Point","coordinates":[94284,24933]},{"type":"Point","coordinates":[92789,25553]},{"type":"Point","coordinates":[92788,25560]},{"type":"Point","coordinates":[85616,28214]},{"type":"Point","coordinates":[92788,25565]},{"type":"Point","coordinates":[94282,24947]},{"type":"Point","coordinates":[92834,25549]},{"type":"Point","coordinates":[92805,25562]},{"type":"Point","coordinates":[92805,25563]},{"type":"Point","coordinates":[93207,25402]},{"type":"Point","coordinates":[93539,25267]},{"type":"Point","coordinates":[80227,29879]},{"type":"Point","coordinates":[90979,26296]},{"type":"Point","coordinates":[92807,25573]},{"type":"Point","coordinates":[93805,25162]},{"type":"Point","coordinates":[92808,25577]},{"type":"Point","coordinates":[94433,24908]},{"type":"Point","coordinates":[85449,28299]},{"type":"Point","coordinates":[92807,25587]},{"type":"Point","coordinates":[92924,25539]},{"type":"Point","coordinates":[92928,25539]},{"type":"Point","coordinates":[92832,25579]},{"type":"Point","coordinates":[94257,24996]},{"type":"Point","coordinates":[94391,24944]},{"type":"Point","coordinates":[93096,25484]},{"type":"Point","coordinates":[93479,25332]},{"type":"Point","coordinates":[93518,25318]},{"type":"Point","coordinates":[72354,31816]},{"type":"Point","coordinates":[92617,25689]},{"type":"Point","coordinates":[94171,25049]},{"type":"Point","coordinates":[92370,25790]},{"type":"Point","coordinates":[93515,25328]},{"type":"Point","coordinates":[93515,25329]},{"type":"Point","coordinates":[92825,25612]},{"type":"Point","coordinates":[92823,25614]},{"type":"Point","coordinates":[95199,24618]},{"type":"Point","coordinates":[82829,29171]},{"type":"Point","coordinates":[92289,25832]},{"type":"Point","coordinates":[92293,25830]},{"type":"Point","coordinates":[93513,25333]},{"type":"Point","coordinates":[94407,24960]},{"type":"Point","coordinates":[92820,25619]},{"type":"Point","coordinates":[80621,29824]},{"type":"Point","coordinates":[94874,24762]},{"type":"Point","coordinates":[80611,29829]},{"type":"Point","coordinates":[92654,25690]},{"type":"Point","coordinates":[85622,28287]},{"type":"Point","coordinates":[94255,25032]},{"type":"Point","coordinates":[92824,25625]},{"type":"Point","coordinates":[92286,25844]},{"type":"Point","coordinates":[92737,25666]},{"type":"Point","coordinates":[92736,25667]},{"type":"Point","coordinates":[94097,25106]},{"type":"Point","coordinates":[94137,25089]},{"type":"Point","coordinates":[94140,25092]},{"type":"Point","coordinates":[92297,25850]},{"type":"Point","coordinates":[82836,29191]},{"type":"Point","coordinates":[94058,25129]},{"type":"Point","coordinates":[94392,24988]},{"type":"Point","coordinates":[94060,25131]},{"type":"Point","coordinates":[92957,25588]},{"type":"Point","coordinates":[92030,25964]},{"type":"Point","coordinates":[92026,25966]},{"type":"Point","coordinates":[94093,25121]},{"type":"Point","coordinates":[60658,33566]},{"type":"Point","coordinates":[94081,25129]},{"type":"Point","coordinates":[94074,25134]},{"type":"Point","coordinates":[93840,25234]},{"type":"Point","coordinates":[94411,24995]},{"type":"Point","coordinates":[93007,25581]},{"type":"Point","coordinates":[92761,25681]},{"type":"Point","coordinates":[94465,24976]},{"type":"Point","coordinates":[92734,25696]},{"type":"Point","coordinates":[94355,25029]},{"type":"Point","coordinates":[94355,25030]},{"type":"Point","coordinates":[94469,24984]},{"type":"Point","coordinates":[80552,29895]},{"type":"Point","coordinates":[2984,22801]},{"type":"Point","coordinates":[91388,26249]},{"type":"Point","coordinates":[94461,24997]},{"type":"Point","coordinates":[92866,25660]},{"type":"Point","coordinates":[94413,25018]},{"type":"Point","coordinates":[80406,29944]},{"type":"Point","coordinates":[94201,25109]},{"type":"Point","coordinates":[80555,29904]},{"type":"Point","coordinates":[92827,25680]},{"type":"Point","coordinates":[94689,24904]},{"type":"Point","coordinates":[85007,28550]},{"type":"Point","coordinates":[80547,29909]},{"type":"Point","coordinates":[80547,29909]},{"type":"Point","coordinates":[80547,29909]},{"type":"Point","coordinates":[80547,29909]},{"type":"Point","coordinates":[80548,29909]},{"type":"Point","coordinates":[80547,29910]},{"type":"Point","coordinates":[80549,29909]},{"type":"Point","coordinates":[80548,29911]},{"type":"Point","coordinates":[94195,25121]},{"type":"Point","coordinates":[94414,25029]},{"type":"Point","coordinates":[94018,25196]},{"type":"Point","coordinates":[94414,25030]},{"type":"Point","coordinates":[84055,28864]},{"type":"Point","coordinates":[69821,32381]},{"type":"Point","coordinates":[94631,24942]},{"type":"Point","coordinates":[92678,25754]},{"type":"Point","coordinates":[65485,33067]},{"type":"Point","coordinates":[94672,24926]},{"type":"Point","coordinates":[94840,24855]},{"type":"Point","coordinates":[93013,25621]},{"type":"Point","coordinates":[94436,25029]},{"type":"Point","coordinates":[94898,24837]},{"type":"Point","coordinates":[92743,25737]},{"type":"Point","coordinates":[92727,25745]},{"type":"Point","coordinates":[92080,26007]},{"type":"Point","coordinates":[92732,25746]},{"type":"Point","coordinates":[92462,25860]},{"type":"Point","coordinates":[94472,25030]},{"type":"Point","coordinates":[92737,25750]},{"type":"Point","coordinates":[92717,25763]},{"type":"Point","coordinates":[92715,25764]},{"type":"Point","coordinates":[92715,25764]},{"type":"Point","coordinates":[92737,25756]},{"type":"Point","coordinates":[92716,25765]},{"type":"Point","coordinates":[92744,25755]},{"type":"Point","coordinates":[92716,25767]},{"type":"Point","coordinates":[92716,25767]},{"type":"Point","coordinates":[92857,25710]},{"type":"Point","coordinates":[80536,29954]},{"type":"Point","coordinates":[86042,28248]},{"type":"Point","coordinates":[92716,25770]},{"type":"Point","coordinates":[92745,25758]},{"type":"Point","coordinates":[80531,29956]},{"type":"Point","coordinates":[92716,25770]},{"type":"Point","coordinates":[92860,25712]},{"type":"Point","coordinates":[92719,25770]},{"type":"Point","coordinates":[92719,25770]},{"type":"Point","coordinates":[92719,25772]},{"type":"Point","coordinates":[80542,29956]},{"type":"Point","coordinates":[80541,29956]},{"type":"Point","coordinates":[92719,25772]},{"type":"Point","coordinates":[92860,25716]},{"type":"Point","coordinates":[80540,29957]},{"type":"Point","coordinates":[92719,25773]},{"type":"Point","coordinates":[94463,25050]},{"type":"Point","coordinates":[80541,29958]},{"type":"Point","coordinates":[92719,25775]},{"type":"Point","coordinates":[85677,28377]},{"type":"Point","coordinates":[85677,28378]},{"type":"Point","coordinates":[92720,25775]},{"type":"Point","coordinates":[92719,25776]},{"type":"Point","coordinates":[86026,28262]},{"type":"Point","coordinates":[80543,29960]},{"type":"Point","coordinates":[92733,25771]},{"type":"Point","coordinates":[92838,25729]},{"type":"Point","coordinates":[92744,25767]},{"type":"Point","coordinates":[92733,25772]},{"type":"Point","coordinates":[92744,25768]},{"type":"Point","coordinates":[92720,25777]},{"type":"Point","coordinates":[92744,25768]},{"type":"Point","coordinates":[92739,25770]},{"type":"Point","coordinates":[92739,25770]},{"type":"Point","coordinates":[92778,25754]},{"type":"Point","coordinates":[92738,25770]},{"type":"Point","coordinates":[92779,25754]},{"type":"Point","coordinates":[92740,25770]},{"type":"Point","coordinates":[92740,25770]},{"type":"Point","coordinates":[72370,31941]},{"type":"Point","coordinates":[92747,25768]},{"type":"Point","coordinates":[92748,25767]},{"type":"Point","coordinates":[91316,26339]},{"type":"Point","coordinates":[80544,29964]},{"type":"Point","coordinates":[92766,25762]},{"type":"Point","coordinates":[92756,25767]},{"type":"Point","coordinates":[92767,25763]},{"type":"Point","coordinates":[92766,25763]},{"type":"Point","coordinates":[92311,25947]},{"type":"Point","coordinates":[92761,25767]},{"type":"Point","coordinates":[80541,29969]},{"type":"Point","coordinates":[91718,26187]},{"type":"Point","coordinates":[92884,25719]},{"type":"Point","coordinates":[92884,25720]},{"type":"Point","coordinates":[92866,25727]},{"type":"Point","coordinates":[92739,25781]},{"type":"Point","coordinates":[92807,25753]},{"type":"Point","coordinates":[91721,26189]},{"type":"Point","coordinates":[92867,25730]},{"type":"Point","coordinates":[92867,25731]},{"type":"Point","coordinates":[80522,29981]},{"type":"Point","coordinates":[80522,29981]},{"type":"Point","coordinates":[80522,29981]},{"type":"Point","coordinates":[92740,25784]},{"type":"Point","coordinates":[92609,25838]},{"type":"Point","coordinates":[92612,25837]},{"type":"Point","coordinates":[80523,29983]},{"type":"Point","coordinates":[92297,25965]},{"type":"Point","coordinates":[92768,25775]},{"type":"Point","coordinates":[72408,31952]},{"type":"Point","coordinates":[85491,28462]},{"type":"Point","coordinates":[91949,26113]},{"type":"Point","coordinates":[94446,25089]},{"type":"Point","coordinates":[94260,25171]},{"type":"Point","coordinates":[94655,25005]},{"type":"Point","coordinates":[94888,24906]},{"type":"Point","coordinates":[92743,25802]},{"type":"Point","coordinates":[93029,25685]},{"type":"Point","coordinates":[92743,25803]},{"type":"Point","coordinates":[92743,25803]},{"type":"Point","coordinates":[86776,28044]},{"type":"Point","coordinates":[92510,25901]},{"type":"Point","coordinates":[94222,25196]},{"type":"Point","coordinates":[94471,25091]},{"type":"Point","coordinates":[92745,25813]},{"type":"Point","coordinates":[92941,25734]},{"type":"Point","coordinates":[92939,25734]},{"type":"Point","coordinates":[92523,25904]},{"type":"Point","coordinates":[92526,25903]},{"type":"Point","coordinates":[94101,25255]},{"type":"Point","coordinates":[94477,25097]},{"type":"Point","coordinates":[72711,31920]},{"type":"Point","coordinates":[90994,26513]},{"type":"Point","coordinates":[94493,25093]},{"type":"Point","coordinates":[92370,25971]},{"type":"Point","coordinates":[94896,24924]},{"type":"Point","coordinates":[93420,25547]},{"type":"Point","coordinates":[92938,25746]},{"type":"Point","coordinates":[92935,25748]},{"type":"Point","coordinates":[94840,24953]},{"type":"Point","coordinates":[94840,24953]},{"type":"Point","coordinates":[94489,25103]},{"type":"Point","coordinates":[92662,25862]},{"type":"Point","coordinates":[91882,26175]},{"type":"Point","coordinates":[94842,24955]},{"type":"Point","coordinates":[94842,24956]},{"type":"Point","coordinates":[92913,25764]},{"type":"Point","coordinates":[85585,28475]},{"type":"Point","coordinates":[92749,25831]},{"type":"Point","coordinates":[92746,25833]},{"type":"Point","coordinates":[92746,25833]},{"type":"Point","coordinates":[92746,25833]},{"type":"Point","coordinates":[81578,29730]},{"type":"Point","coordinates":[81569,29733]},{"type":"Point","coordinates":[85034,28662]},{"type":"Point","coordinates":[93463,25544]},{"type":"Point","coordinates":[85583,28483]},{"type":"Point","coordinates":[92641,25882]},{"type":"Point","coordinates":[94829,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94831,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24973]},{"type":"Point","coordinates":[94830,24973]},{"type":"Point","coordinates":[94830,24973]},{"type":"Point","coordinates":[94830,24973]},{"type":"Point","coordinates":[94830,24973]},{"type":"Point","coordinates":[94831,24974]},{"type":"Point","coordinates":[80594,30021]},{"type":"Point","coordinates":[94831,24974]},{"type":"Point","coordinates":[94371,25171]},{"type":"Point","coordinates":[85622,28475]},{"type":"Point","coordinates":[94831,24976]},{"type":"Point","coordinates":[94837,24973]},{"type":"Point","coordinates":[92940,25768]},{"type":"Point","coordinates":[94541,25102]},{"type":"Point","coordinates":[92662,25881]},{"type":"Point","coordinates":[94834,24977]},{"type":"Point","coordinates":[92401,25988]},{"type":"Point","coordinates":[92727,25856]},{"type":"Point","coordinates":[94834,24979]},{"type":"Point","coordinates":[94834,24984]},{"type":"Point","coordinates":[85570,28503]},{"type":"Point","coordinates":[94823,24990]},{"type":"Point","coordinates":[85570,28503]},{"type":"Point","coordinates":[94888,24963]},{"type":"Point","coordinates":[94833,24986]},{"type":"Point","coordinates":[85782,28436]},{"type":"Point","coordinates":[92462,25975]},{"type":"Point","coordinates":[81403,29806]},{"type":"Point","coordinates":[85783,28437]},{"type":"Point","coordinates":[92264,26055]},{"type":"Point","coordinates":[81481,29785]},{"type":"Point","coordinates":[94464,25148]},{"type":"Point","coordinates":[80825,29974]},{"type":"Point","coordinates":[85780,28440]},{"type":"Point","coordinates":[91162,26492]},{"type":"Point","coordinates":[93366,25609]},{"type":"Point","coordinates":[80458,30081]},{"type":"Point","coordinates":[92402,26004]},{"type":"Point","coordinates":[80577,30050]},{"type":"Point","coordinates":[92159,26104]},{"type":"Point","coordinates":[94085,25315]},{"type":"Point","coordinates":[94209,25262]},{"type":"Point","coordinates":[87915,27709]},{"type":"Point","coordinates":[80581,30050]},{"type":"Point","coordinates":[80579,30052]},{"type":"Point","coordinates":[80581,30051]},{"type":"Point","coordinates":[80581,30052]},{"type":"Point","coordinates":[80581,30052]},{"type":"Point","coordinates":[85710,28471]},{"type":"Point","coordinates":[80583,30051]},{"type":"Point","coordinates":[80580,30052]},{"type":"Point","coordinates":[80580,30052]},{"type":"Point","coordinates":[81374,29825]},{"type":"Point","coordinates":[80583,30053]},{"type":"Point","coordinates":[80582,30053]},{"type":"Point","coordinates":[81449,29805]},{"type":"Point","coordinates":[94152,25292]},{"type":"Point","coordinates":[81174,29890]},{"type":"Point","coordinates":[81463,29808]},{"type":"Point","coordinates":[81346,29842]},{"type":"Point","coordinates":[81460,29809]},{"type":"Point","coordinates":[93021,25769]},{"type":"Point","coordinates":[94207,25277]},{"type":"Point","coordinates":[81454,29814]},{"type":"Point","coordinates":[94378,25208]},{"type":"Point","coordinates":[92899,25824]},{"type":"Point","coordinates":[80588,30066]},{"type":"Point","coordinates":[80527,30084]},{"type":"Point","coordinates":[81460,29817]},{"type":"Point","coordinates":[85101,28690]},{"type":"Point","coordinates":[81452,29820]},{"type":"Point","coordinates":[81446,29822]},{"type":"Point","coordinates":[81423,29829]},{"type":"Point","coordinates":[92679,25918]},{"type":"Point","coordinates":[81407,29835]},{"type":"Point","coordinates":[85764,28474]},{"type":"Point","coordinates":[81412,29834]},{"type":"Point","coordinates":[80591,30070]},{"type":"Point","coordinates":[92943,25811]},{"type":"Point","coordinates":[94847,25016]},{"type":"Point","coordinates":[81393,29840]},{"type":"Point","coordinates":[81392,29841]},{"type":"Point","coordinates":[81378,29845]},{"type":"Point","coordinates":[94478,25175]},{"type":"Point","coordinates":[94464,25181]},{"type":"Point","coordinates":[81454,29825]},{"type":"Point","coordinates":[81409,29838]},{"type":"Point","coordinates":[94473,25178]},{"type":"Point","coordinates":[81402,29842]},{"type":"Point","coordinates":[92517,25989]},{"type":"Point","coordinates":[81403,29842]},{"type":"Point","coordinates":[80595,30074]},{"type":"Point","coordinates":[80596,30074]},{"type":"Point","coordinates":[81403,29843]},{"type":"Point","coordinates":[80595,30075]},{"type":"Point","coordinates":[80597,30074]},{"type":"Point","coordinates":[80597,30074]},{"type":"Point","coordinates":[80597,30074]},{"type":"Point","coordinates":[72405,32061]},{"type":"Point","coordinates":[94467,25184]},{"type":"Point","coordinates":[80598,30075]},{"type":"Point","coordinates":[80599,30075]},{"type":"Point","coordinates":[94479,25179]},{"type":"Point","coordinates":[94165,25312]},{"type":"Point","coordinates":[81381,29852]},{"type":"Point","coordinates":[81381,29853]},{"type":"Point","coordinates":[80602,30077]},{"type":"Point","coordinates":[94167,25314]},{"type":"Point","coordinates":[85473,28581]},{"type":"Point","coordinates":[80602,30077]},{"type":"Point","coordinates":[71266,32290]},{"type":"Point","coordinates":[80602,30077]},{"type":"Point","coordinates":[80602,30078]},{"type":"Point","coordinates":[80602,30079]},{"type":"Point","coordinates":[80602,30079]},{"type":"Point","coordinates":[80602,30079]},{"type":"Point","coordinates":[80602,30079]},{"type":"Point","coordinates":[80603,30079]},{"type":"Point","coordinates":[81396,29852]},{"type":"Point","coordinates":[91139,26543]},{"type":"Point","coordinates":[94083,25353]},{"type":"Point","coordinates":[80603,30080]},{"type":"Point","coordinates":[81394,29854]},{"type":"Point","coordinates":[81397,29855]},{"type":"Point","coordinates":[63501,33494]},{"type":"Point","coordinates":[85924,28438]},{"type":"Point","coordinates":[80606,30084]},{"type":"Point","coordinates":[80607,30084]},{"type":"Point","coordinates":[94472,25195]},{"type":"Point","coordinates":[94478,25193]},{"type":"Point","coordinates":[63499,33498]},{"type":"Point","coordinates":[94853,25034]},{"type":"Point","coordinates":[94854,25034]},{"type":"Point","coordinates":[63499,33498]},{"type":"Point","coordinates":[93017,25804]},{"type":"Point","coordinates":[73440,31864]},{"type":"Point","coordinates":[85734,28509]},{"type":"Point","coordinates":[94498,25191]},{"type":"Point","coordinates":[92155,26156]},{"type":"Point","coordinates":[63502,33504]},{"type":"Point","coordinates":[80979,29987]},{"type":"Point","coordinates":[80977,29989]},{"type":"Point","coordinates":[80982,29988]},{"type":"Point","coordinates":[80978,29989]},{"type":"Point","coordinates":[94470,25206]},{"type":"Point","coordinates":[80977,29990]},{"type":"Point","coordinates":[94494,25197]},{"type":"Point","coordinates":[94497,25196]},{"type":"Point","coordinates":[94497,25197]},{"type":"Point","coordinates":[80615,30095]},{"type":"Point","coordinates":[94494,25198]},{"type":"Point","coordinates":[80981,29992]},{"type":"Point","coordinates":[94497,25198]},{"type":"Point","coordinates":[80641,30090]},{"type":"Point","coordinates":[80640,30090]},{"type":"Point","coordinates":[94108,25365]},{"type":"Point","coordinates":[94108,25366]},{"type":"Point","coordinates":[93386,25669]},{"type":"Point","coordinates":[93386,25669]},{"type":"Point","coordinates":[80620,30101]},{"type":"Point","coordinates":[80620,30102]},{"type":"Point","coordinates":[80884,30028]},{"type":"Point","coordinates":[92532,26021]},{"type":"Point","coordinates":[92132,26185]},{"type":"Point","coordinates":[92130,26187]},{"type":"Point","coordinates":[94108,25380]},{"type":"Point","coordinates":[65647,33257]},{"type":"Point","coordinates":[92535,26032]},{"type":"Point","coordinates":[94017,25425]},{"type":"Point","coordinates":[93707,25556]},{"type":"Point","coordinates":[80446,30173]},{"type":"Point","coordinates":[85721,28553]},{"type":"Point","coordinates":[91540,26438]},{"type":"Point","coordinates":[91540,26438]},{"type":"Point","coordinates":[80447,30178]},{"type":"Point","coordinates":[72540,32096]},{"type":"Point","coordinates":[92666,25994]},{"type":"Point","coordinates":[80447,30180]},{"type":"Point","coordinates":[93917,25480]},{"type":"Point","coordinates":[94877,25087]},{"type":"Point","coordinates":[80702,30122]},{"type":"Point","coordinates":[81400,29922]},{"type":"Point","coordinates":[81385,29927]},{"type":"Point","coordinates":[93499,25669]},{"type":"Point","coordinates":[94725,25154]},{"type":"Point","coordinates":[81388,29928]},{"type":"Point","coordinates":[94724,25157]},{"type":"Point","coordinates":[80454,30197]},{"type":"Point","coordinates":[80454,30197]},{"type":"Point","coordinates":[94762,25143]},{"type":"Point","coordinates":[94723,25159]},{"type":"Point","coordinates":[94513,25252]},{"type":"Point","coordinates":[85617,28618]},{"type":"Point","coordinates":[94861,25106]},{"type":"Point","coordinates":[94869,25105]},{"type":"Point","coordinates":[94863,25108]},{"type":"Point","coordinates":[92657,26026]},{"type":"Point","coordinates":[94460,25281]},{"type":"Point","coordinates":[93747,25581]},{"type":"Point","coordinates":[94460,25282]},{"type":"Point","coordinates":[94459,25286]},{"type":"Point","coordinates":[92377,26145]},{"type":"Point","coordinates":[94125,25427]},{"type":"Point","coordinates":[94458,25288]},{"type":"Point","coordinates":[85529,28661]},{"type":"Point","coordinates":[94197,25410]},{"type":"Point","coordinates":[92466,26123]},{"type":"Point","coordinates":[80711,30156]},{"type":"Point","coordinates":[90456,26916]},{"type":"Point","coordinates":[93765,25595]},{"type":"Point","coordinates":[94200,25415]},{"type":"Point","coordinates":[94761,25179]},{"type":"Point","coordinates":[94199,25418]},{"type":"Point","coordinates":[94510,25287]},{"type":"Point","coordinates":[94510,25288]},{"type":"Point","coordinates":[93764,25604]},{"type":"Point","coordinates":[94296,25391]},{"type":"Point","coordinates":[94511,25300]},{"type":"Point","coordinates":[94807,25179]},{"type":"Point","coordinates":[94517,25303]},{"type":"Point","coordinates":[65642,33347]},{"type":"Point","coordinates":[85548,28696]},{"type":"Point","coordinates":[94292,25406]},{"type":"Point","coordinates":[68394,32943]},{"type":"Point","coordinates":[92332,26217]},{"type":"Point","coordinates":[68414,32941]},{"type":"Point","coordinates":[94759,25213]},{"type":"Point","coordinates":[92680,26080]},{"type":"Point","coordinates":[94718,25236]},{"type":"Point","coordinates":[80740,30193]},{"type":"Point","coordinates":[92668,26091]},{"type":"Point","coordinates":[65649,33368]},{"type":"Point","coordinates":[92680,26088]},{"type":"Point","coordinates":[82631,29640]},{"type":"Point","coordinates":[94833,25193]},{"type":"Point","coordinates":[80737,30197]},{"type":"Point","coordinates":[85444,28751]},{"type":"Point","coordinates":[82629,29644]},{"type":"Point","coordinates":[82635,29643]},{"type":"Point","coordinates":[92665,26099]},{"type":"Point","coordinates":[80736,30201]},{"type":"Point","coordinates":[91029,26749]},{"type":"Point","coordinates":[85455,28752]},{"type":"Point","coordinates":[85512,28736]},{"type":"Point","coordinates":[92466,26183]},{"type":"Point","coordinates":[92662,26105]},{"type":"Point","coordinates":[82637,29649]},{"type":"Point","coordinates":[94274,25441]},{"type":"Point","coordinates":[92465,26187]},{"type":"Point","coordinates":[94275,25441]},{"type":"Point","coordinates":[80741,30208]},{"type":"Point","coordinates":[80666,30231]},{"type":"Point","coordinates":[80666,30231]},{"type":"Point","coordinates":[94826,25213]},{"type":"Point","coordinates":[80741,30213]},{"type":"Point","coordinates":[94606,25308]},{"type":"Point","coordinates":[85464,28762]},{"type":"Point","coordinates":[80666,30237]},{"type":"Point","coordinates":[2546,22974]},{"type":"Point","coordinates":[92702,26103]},{"type":"Point","coordinates":[94869,25203]},{"type":"Point","coordinates":[65384,33434]},{"type":"Point","coordinates":[93741,25685]},{"type":"Point","coordinates":[92673,26124]},{"type":"Point","coordinates":[94744,25264]},{"type":"Point","coordinates":[95100,25112]},{"type":"Point","coordinates":[80668,30250]},{"type":"Point","coordinates":[80667,30250]},{"type":"Point","coordinates":[85796,28666]},{"type":"Point","coordinates":[85796,28667]},{"type":"Point","coordinates":[85795,28667]},{"type":"Point","coordinates":[92674,26126]},{"type":"Point","coordinates":[92675,26126]},{"type":"Point","coordinates":[85794,28668]},{"type":"Point","coordinates":[85795,28668]},{"type":"Point","coordinates":[92962,26010]},{"type":"Point","coordinates":[92100,26359]},{"type":"Point","coordinates":[85797,28669]},{"type":"Point","coordinates":[94688,25293]},{"type":"Point","coordinates":[94606,25328]},{"type":"Point","coordinates":[92679,26128]},{"type":"Point","coordinates":[92716,26114]},{"type":"Point","coordinates":[85794,28674]},{"type":"Point","coordinates":[80664,30259]},{"type":"Point","coordinates":[92700,26124]},{"type":"Point","coordinates":[85273,28850]},{"type":"Point","coordinates":[2457,22956]},{"type":"Point","coordinates":[92689,26130]},{"type":"Point","coordinates":[92690,26130]},{"type":"Point","coordinates":[92690,26130]},{"type":"Point","coordinates":[92640,26151]},{"type":"Point","coordinates":[92690,26131]},{"type":"Point","coordinates":[92617,26162]},{"type":"Point","coordinates":[92453,26231]},{"type":"Point","coordinates":[92575,26182]},{"type":"Point","coordinates":[94836,25246]},{"type":"Point","coordinates":[80663,30272]},{"type":"Point","coordinates":[72322,32293]},{"type":"Point","coordinates":[92482,26226]},{"type":"Point","coordinates":[92646,26163]},{"type":"Point","coordinates":[80659,30279]},{"type":"Point","coordinates":[80655,30282]},{"type":"Point","coordinates":[93708,25730]},{"type":"Point","coordinates":[80655,30283]},{"type":"Point","coordinates":[93708,25732]},{"type":"Point","coordinates":[93708,25734]},{"type":"Point","coordinates":[85458,28814]},{"type":"Point","coordinates":[80742,30266]},{"type":"Point","coordinates":[80743,30266]},{"type":"Point","coordinates":[85761,28717]},{"type":"Point","coordinates":[93709,25742]},{"type":"Point","coordinates":[80816,30252]},{"type":"Point","coordinates":[93871,25680]},{"type":"Point","coordinates":[92970,26052]},{"type":"Point","coordinates":[94836,25276]},{"type":"Point","coordinates":[92478,26255]},{"type":"Point","coordinates":[94838,25277]},{"type":"Point","coordinates":[94282,25513]},{"type":"Point","coordinates":[84971,28992]},{"type":"Point","coordinates":[94481,25432]},{"type":"Point","coordinates":[93932,25663]},{"type":"Point","coordinates":[92639,26195]},{"type":"Point","coordinates":[92933,26077]},{"type":"Point","coordinates":[94014,25631]},{"type":"Point","coordinates":[92381,26302]},{"type":"Point","coordinates":[80866,30253]},{"type":"Point","coordinates":[92502,26256]},{"type":"Point","coordinates":[72591,32279]},{"type":"Point","coordinates":[94014,25637]},{"type":"Point","coordinates":[2217,22894]},{"type":"Point","coordinates":[65336,33508]},{"type":"Point","coordinates":[90606,27005]},{"type":"Point","coordinates":[90606,27006]},{"type":"Point","coordinates":[92968,26074]},{"type":"Point","coordinates":[92958,26078]},{"type":"Point","coordinates":[92701,26183]},{"type":"Point","coordinates":[91843,26528]},{"type":"Point","coordinates":[82617,29748]},{"type":"Point","coordinates":[80984,30229]},{"type":"Point","coordinates":[82618,29748]},{"type":"Point","coordinates":[80757,30294]},{"type":"Point","coordinates":[80793,30284]},{"type":"Point","coordinates":[80774,30290]},{"type":"Point","coordinates":[93712,25771]},{"type":"Point","coordinates":[84923,29026]},{"type":"Point","coordinates":[80876,30262]},{"type":"Point","coordinates":[80876,30262]},{"type":"Point","coordinates":[93853,25714]},{"type":"Point","coordinates":[84922,29027]},{"type":"Point","coordinates":[92966,26080]},{"type":"Point","coordinates":[90443,27077]},{"type":"Point","coordinates":[92982,26075]},{"type":"Point","coordinates":[84912,29035]},{"type":"Point","coordinates":[80781,30298]},{"type":"Point","coordinates":[90443,27085]},{"type":"Point","coordinates":[92970,26088]},{"type":"Point","coordinates":[80858,30279]},{"type":"Point","coordinates":[80793,30300]},{"type":"Point","coordinates":[80809,30296]},{"type":"Point","coordinates":[85820,28747]},{"type":"Point","coordinates":[73320,32155]},{"type":"Point","coordinates":[94651,25397]},{"type":"Point","coordinates":[93376,25933]},{"type":"Point","coordinates":[94658,25398]},{"type":"Point","coordinates":[80810,30304]},{"type":"Point","coordinates":[94651,25403]},{"type":"Point","coordinates":[90966,26901]},{"type":"Point","coordinates":[93588,25855]},{"type":"Point","coordinates":[94656,25407]},{"type":"Point","coordinates":[80811,30313]},{"type":"Point","coordinates":[92369,26353]},{"type":"Point","coordinates":[92650,26241]},{"type":"Point","coordinates":[92372,26356]},{"type":"Point","coordinates":[93854,25755]},{"type":"Point","coordinates":[93854,25755]},{"type":"Point","coordinates":[93854,25756]},{"type":"Point","coordinates":[80921,30299]},{"type":"Point","coordinates":[80621,30389]},{"type":"Point","coordinates":[92179,26452]},{"type":"Point","coordinates":[92493,26330]},{"type":"Point","coordinates":[72634,32338]},{"type":"Point","coordinates":[93962,25732]},{"type":"Point","coordinates":[93385,25973]},{"type":"Point","coordinates":[92949,26155]},{"type":"Point","coordinates":[92948,26155]},{"type":"Point","coordinates":[92947,26156]},{"type":"Point","coordinates":[92946,26158]},{"type":"Point","coordinates":[92946,26159]},{"type":"Point","coordinates":[93157,26074]},{"type":"Point","coordinates":[80675,30391]},{"type":"Point","coordinates":[92944,26161]},{"type":"Point","coordinates":[92943,26162]},{"type":"Point","coordinates":[92943,26162]},{"type":"Point","coordinates":[92983,26147]},{"type":"Point","coordinates":[94675,25443]},{"type":"Point","coordinates":[73737,32123]},{"type":"Point","coordinates":[25667,31456]},{"type":"Point","coordinates":[92933,26172]},{"type":"Point","coordinates":[91086,26908]},{"type":"Point","coordinates":[80550,30450]},{"type":"Point","coordinates":[92314,26440]},{"type":"Point","coordinates":[92269,26461]},{"type":"Point","coordinates":[92989,26171]},{"type":"Point","coordinates":[92674,26301]},{"type":"Point","coordinates":[93808,25835]},{"type":"Point","coordinates":[94639,25486]},{"type":"Point","coordinates":[80483,30476]},{"type":"Point","coordinates":[80483,30476]},{"type":"Point","coordinates":[72268,32458]},{"type":"Point","coordinates":[80484,30478]},{"type":"Point","coordinates":[92174,26506]},{"type":"Point","coordinates":[80478,30482]},{"type":"Point","coordinates":[80213,30559]},{"type":"Point","coordinates":[92917,26213]},{"type":"Point","coordinates":[80482,30490]},{"type":"Point","coordinates":[80475,30492]},{"type":"Point","coordinates":[93824,25846]},{"type":"Point","coordinates":[92422,26420]},{"type":"Point","coordinates":[80488,30494]},{"type":"Point","coordinates":[80489,30494]},{"type":"Point","coordinates":[80488,30495]},{"type":"Point","coordinates":[93000,26190]},{"type":"Point","coordinates":[80485,30496]},{"type":"Point","coordinates":[92306,26471]},{"type":"Point","coordinates":[80483,30497]},{"type":"Point","coordinates":[80484,30497]},{"type":"Point","coordinates":[92685,26319]},{"type":"Point","coordinates":[80484,30499]},{"type":"Point","coordinates":[94773,25455]},{"type":"Point","coordinates":[92921,26228]},{"type":"Point","coordinates":[92757,26296]},{"type":"Point","coordinates":[92423,26436]},{"type":"Point","coordinates":[93001,26204]},{"type":"Point","coordinates":[94259,25683]},{"type":"Point","coordinates":[80708,30451]},{"type":"Point","coordinates":[94263,25686]},{"type":"Point","coordinates":[92763,26310]},{"type":"Point","coordinates":[92931,26242]},{"type":"Point","coordinates":[92373,26475]},{"type":"Point","coordinates":[72284,32503]},{"type":"Point","coordinates":[85881,28873]},{"type":"Point","coordinates":[92660,26378]},{"type":"Point","coordinates":[91072,27007]},{"type":"Point","coordinates":[72224,32545]},{"type":"Point","coordinates":[94816,25495]},{"type":"Point","coordinates":[92586,26421]},{"type":"Point","coordinates":[94397,25676]},{"type":"Point","coordinates":[94397,25676]},{"type":"Point","coordinates":[94814,25499]},{"type":"Point","coordinates":[94397,25677]},{"type":"Point","coordinates":[93002,26256]},{"type":"Point","coordinates":[94811,25503]},{"type":"Point","coordinates":[94829,25497]},{"type":"Point","coordinates":[73792,32227]},{"type":"Point","coordinates":[72292,32541]},{"type":"Point","coordinates":[92391,26509]},{"type":"Point","coordinates":[92391,26509]},{"type":"Point","coordinates":[71627,32674]},{"type":"Point","coordinates":[94829,25501]},{"type":"Point","coordinates":[94836,25501]},{"type":"Point","coordinates":[94985,25438]},{"type":"Point","coordinates":[92661,26406]},{"type":"Point","coordinates":[73352,32330]},{"type":"Point","coordinates":[80903,30460]},{"type":"Point","coordinates":[92282,26566]},{"type":"Point","coordinates":[80900,30462]},{"type":"Point","coordinates":[80898,30467]},{"type":"Point","coordinates":[90869,27134]},{"type":"Point","coordinates":[95061,25427]},{"type":"Point","coordinates":[94853,25519]},{"type":"Point","coordinates":[92487,26501]},{"type":"Point","coordinates":[92671,26431]},{"type":"Point","coordinates":[92323,26571]},{"type":"Point","coordinates":[85674,29011]},{"type":"Point","coordinates":[92912,26336]},{"type":"Point","coordinates":[85628,29027]},{"type":"Point","coordinates":[84601,29365]},{"type":"Point","coordinates":[94188,25814]},{"type":"Point","coordinates":[90354,27350]},{"type":"Point","coordinates":[92919,26341]},{"type":"Point","coordinates":[93492,26107]},{"type":"Point","coordinates":[92237,26617]},{"type":"Point","coordinates":[92394,26556]},{"type":"Point","coordinates":[85611,29049]},{"type":"Point","coordinates":[94833,25553]},{"type":"Point","coordinates":[2074,23089]},{"type":"Point","coordinates":[93493,26117]},{"type":"Point","coordinates":[85654,29039]},{"type":"Point","coordinates":[92630,26472]},{"type":"Point","coordinates":[92924,26355]},{"type":"Point","coordinates":[94483,25711]},{"type":"Point","coordinates":[85591,29065]},{"type":"Point","coordinates":[90895,27164]},{"type":"Point","coordinates":[94677,25636]},{"type":"Point","coordinates":[63316,34031]},{"type":"Point","coordinates":[92512,26533]},{"type":"Point","coordinates":[92768,26430]},{"type":"Point","coordinates":[92509,26538]},{"type":"Point","coordinates":[92510,26538]},{"type":"Point","coordinates":[92510,26538]},{"type":"Point","coordinates":[80241,30712]},{"type":"Point","coordinates":[85294,29180]},{"type":"Point","coordinates":[93863,25988]},{"type":"Point","coordinates":[73058,32464]},{"type":"Point","coordinates":[73058,32464]},{"type":"Point","coordinates":[1659,22918]},{"type":"Point","coordinates":[72819,32518]},{"type":"Point","coordinates":[94655,25661]},{"type":"Point","coordinates":[93674,26076]},{"type":"Point","coordinates":[73059,32475]},{"type":"Point","coordinates":[65674,33754]},{"type":"Point","coordinates":[92257,26659]},{"type":"Point","coordinates":[94228,25851]},{"type":"Point","coordinates":[92405,26601]},{"type":"Point","coordinates":[93012,26356]},{"type":"Point","coordinates":[94970,25538]},{"type":"Point","coordinates":[92413,26599]},{"type":"Point","coordinates":[91415,26994]},{"type":"Point","coordinates":[72896,32515]},{"type":"Point","coordinates":[71338,32826]},{"type":"Point","coordinates":[92797,26447]},{"type":"Point","coordinates":[93018,26358]},{"type":"Point","coordinates":[94907,25570]},{"type":"Point","coordinates":[93723,26073]},{"type":"Point","coordinates":[93016,26366]},{"type":"Point","coordinates":[72913,32523]},{"type":"Point","coordinates":[92365,26630]},{"type":"Point","coordinates":[92540,26563]},{"type":"Point","coordinates":[92398,26620]},{"type":"Point","coordinates":[69453,33187]},{"type":"Point","coordinates":[72861,32539]},{"type":"Point","coordinates":[92106,26740]},{"type":"Point","coordinates":[92299,26665]},{"type":"Point","coordinates":[94055,25948]},{"type":"Point","coordinates":[93721,26089]},{"type":"Point","coordinates":[93720,26092]},{"type":"Point","coordinates":[2342,23291]},{"type":"Point","coordinates":[92786,26481]},{"type":"Point","coordinates":[91170,27124]},{"type":"Point","coordinates":[92304,26678]},{"type":"Point","coordinates":[69623,33175]},{"type":"Point","coordinates":[93831,26058]},{"type":"Point","coordinates":[94622,25728]},{"type":"Point","coordinates":[63503,34075]},{"type":"Point","coordinates":[93009,26403]},{"type":"Point","coordinates":[94611,25738]},{"type":"Point","coordinates":[91045,27187]},{"type":"Point","coordinates":[64770,33926]},{"type":"Point","coordinates":[92160,26750]},{"type":"Point","coordinates":[93664,26142]},{"type":"Point","coordinates":[94613,25745]},{"type":"Point","coordinates":[94614,25745]},{"type":"Point","coordinates":[94613,25745]},{"type":"Point","coordinates":[94614,25750]},{"type":"Point","coordinates":[94855,25651]},{"type":"Point","coordinates":[69607,33209]},{"type":"Point","coordinates":[72896,32581]},{"type":"Point","coordinates":[94832,25667]},{"type":"Point","coordinates":[69606,33217]},{"type":"Point","coordinates":[72955,32577]},{"type":"Point","coordinates":[85493,29210]},{"type":"Point","coordinates":[72958,32580]},{"type":"Point","coordinates":[72928,32590]},{"type":"Point","coordinates":[92358,26706]},{"type":"Point","coordinates":[72953,32589]},{"type":"Point","coordinates":[80278,30811]},{"type":"Point","coordinates":[65582,33860]},{"type":"Point","coordinates":[91180,27178]},{"type":"Point","coordinates":[80266,30817]},{"type":"Point","coordinates":[91181,27179]},{"type":"Point","coordinates":[72991,32590]},{"type":"Point","coordinates":[94685,25759]},{"type":"Point","coordinates":[72873,32618]},{"type":"Point","coordinates":[72951,32602]},{"type":"Point","coordinates":[72878,32619]},{"type":"Point","coordinates":[91178,27190]},{"type":"Point","coordinates":[94161,25985]},{"type":"Point","coordinates":[91215,27177]},{"type":"Point","coordinates":[92346,26730]},{"type":"Point","coordinates":[80697,30712]},{"type":"Point","coordinates":[72879,32628]},{"type":"Point","coordinates":[72874,32630]},{"type":"Point","coordinates":[73064,32591]},{"type":"Point","coordinates":[80268,30837]},{"type":"Point","coordinates":[94934,25668]},{"type":"Point","coordinates":[92306,26759]},{"type":"Point","coordinates":[92415,26717]},{"type":"Point","coordinates":[92653,26630]},{"type":"Point","coordinates":[91182,27214]},{"type":"Point","coordinates":[92652,26632]},{"type":"Point","coordinates":[92349,26756]},{"type":"Point","coordinates":[1576,23030]},{"type":"Point","coordinates":[93049,26479]},{"type":"Point","coordinates":[80255,30865]},{"type":"Point","coordinates":[85415,29296]},{"type":"Point","coordinates":[93045,26484]},{"type":"Point","coordinates":[80274,30863]},{"type":"Point","coordinates":[94245,25988]},{"type":"Point","coordinates":[91149,27246]},{"type":"Point","coordinates":[94931,25703]},{"type":"Point","coordinates":[94138,26041]},{"type":"Point","coordinates":[94139,26042]},{"type":"Point","coordinates":[94139,26042]},{"type":"Point","coordinates":[80279,30875]},{"type":"Point","coordinates":[92340,26785]},{"type":"Point","coordinates":[92340,26787]},{"type":"Point","coordinates":[93073,26492]},{"type":"Point","coordinates":[92949,26543]},{"type":"Point","coordinates":[92467,26741]},{"type":"Point","coordinates":[92853,26586]},{"type":"Point","coordinates":[94052,26094]},{"type":"Point","coordinates":[94616,25864]},{"type":"Point","coordinates":[92867,26597]},{"type":"Point","coordinates":[94575,25893]},{"type":"Point","coordinates":[92337,26817]},{"type":"Point","coordinates":[2358,23462]},{"type":"Point","coordinates":[92300,26834]},{"type":"Point","coordinates":[94585,25894]},{"type":"Point","coordinates":[80269,30913]},{"type":"Point","coordinates":[94940,25745]},{"type":"Point","coordinates":[65699,33948]},{"type":"Point","coordinates":[91138,27304]},{"type":"Point","coordinates":[93870,26206]},{"type":"Point","coordinates":[93870,26206]},{"type":"Point","coordinates":[93870,26206]},{"type":"Point","coordinates":[65698,33954]},{"type":"Point","coordinates":[63912,34185]},{"type":"Point","coordinates":[91221,27278]},{"type":"Point","coordinates":[92800,26652]},{"type":"Point","coordinates":[91145,27313]},{"type":"Point","coordinates":[72486,32810]},{"type":"Point","coordinates":[91858,27037]},{"type":"Point","coordinates":[94520,25950]},{"type":"Point","coordinates":[94518,25951]},{"type":"Point","coordinates":[89290,28022]},{"type":"Point","coordinates":[94377,26012]},{"type":"Point","coordinates":[94521,25952]},{"type":"Point","coordinates":[94522,25953]},{"type":"Point","coordinates":[80254,30949]},{"type":"Point","coordinates":[91865,27042]},{"type":"Point","coordinates":[94715,25877]},{"type":"Point","coordinates":[80682,30837]},{"type":"Point","coordinates":[92879,26647]},{"type":"Point","coordinates":[2632,23644]},{"type":"Point","coordinates":[91131,27344]},{"type":"Point","coordinates":[91130,27345]},{"type":"Point","coordinates":[91822,27075]},{"type":"Point","coordinates":[92735,26712]},{"type":"Point","coordinates":[94193,26112]},{"type":"Point","coordinates":[92333,26876]},{"type":"Point","coordinates":[94728,25890]},{"type":"Point","coordinates":[94135,26140]},{"type":"Point","coordinates":[94133,26143]},{"type":"Point","coordinates":[94133,26143]},{"type":"Point","coordinates":[91132,27356]},{"type":"Point","coordinates":[94769,25879]},{"type":"Point","coordinates":[93308,26496]},{"type":"Point","coordinates":[93852,26271]},{"type":"Point","coordinates":[95025,25777]},{"type":"Point","coordinates":[91066,27397]},{"type":"Point","coordinates":[94779,25890]},{"type":"Point","coordinates":[93862,26277]},{"type":"Point","coordinates":[93854,26281]},{"type":"Point","coordinates":[93855,26284]},{"type":"Point","coordinates":[93855,26284]},{"type":"Point","coordinates":[89757,27903]},{"type":"Point","coordinates":[92570,26811]},{"type":"Point","coordinates":[93857,26285]},{"type":"Point","coordinates":[93857,26286]},{"type":"Point","coordinates":[94742,25916]},{"type":"Point","coordinates":[93856,26290]},{"type":"Point","coordinates":[93855,26291]},{"type":"Point","coordinates":[93858,26291]},{"type":"Point","coordinates":[94045,26214]},{"type":"Point","coordinates":[93056,26626]},{"type":"Point","coordinates":[93060,26626]},{"type":"Point","coordinates":[93860,26298]},{"type":"Point","coordinates":[93860,26298]},{"type":"Point","coordinates":[2333,23556]},{"type":"Point","coordinates":[82046,30506]},{"type":"Point","coordinates":[65537,34065]},{"type":"Point","coordinates":[94098,26207]},{"type":"Point","coordinates":[94599,25999]},{"type":"Point","coordinates":[91164,27396]},{"type":"Point","coordinates":[93036,26654]},{"type":"Point","coordinates":[92302,26954]},{"type":"Point","coordinates":[94331,26122]},{"type":"Point","coordinates":[95071,25808]},{"type":"Point","coordinates":[64372,34243]},{"type":"Point","coordinates":[94888,25899]},{"type":"Point","coordinates":[94399,26109]},{"type":"Point","coordinates":[94399,26110]},{"type":"Point","coordinates":[65531,34098]},{"type":"Point","coordinates":[94395,26113]},{"type":"Point","coordinates":[94999,25859]},{"type":"Point","coordinates":[94999,25859]},{"type":"Point","coordinates":[94999,25859]},{"type":"Point","coordinates":[94999,25859]},{"type":"Point","coordinates":[94999,25859]},{"type":"Point","coordinates":[93483,26496]},{"type":"Point","coordinates":[94998,25863]},{"type":"Point","coordinates":[93990,26290]},{"type":"Point","coordinates":[94115,26240]},{"type":"Point","coordinates":[89953,27898]},{"type":"Point","coordinates":[86834,29021]},{"type":"Point","coordinates":[94121,26244]},{"type":"Point","coordinates":[95009,25874]},{"type":"Point","coordinates":[95046,25860]},{"type":"Point","coordinates":[95001,25880]},{"type":"Point","coordinates":[95001,25880]},{"type":"Point","coordinates":[95001,25881]},{"type":"Point","coordinates":[80474,31016]},{"type":"Point","coordinates":[89877,27938]},{"type":"Point","coordinates":[95055,25859]},{"type":"Point","coordinates":[91368,27370]},{"type":"Point","coordinates":[63258,34414]},{"type":"Point","coordinates":[63258,34414]},{"type":"Point","coordinates":[92946,26746]},{"type":"Point","coordinates":[63258,34415]},{"type":"Point","coordinates":[92949,26746]},{"type":"Point","coordinates":[95012,25887]},{"type":"Point","coordinates":[95032,25878]},{"type":"Point","coordinates":[94156,26252]},{"type":"Point","coordinates":[92950,26751]},{"type":"Point","coordinates":[86823,29050]},{"type":"Point","coordinates":[91248,27433]},{"type":"Point","coordinates":[95043,25885]},{"type":"Point","coordinates":[92709,26858]},{"type":"Point","coordinates":[91130,27486]},{"type":"Point","coordinates":[80878,30938]},{"type":"Point","coordinates":[92338,27025]},{"type":"Point","coordinates":[94828,25998]},{"type":"Point","coordinates":[64723,34276]},{"type":"Point","coordinates":[65628,34157]},{"type":"Point","coordinates":[95033,25921]},{"type":"Point","coordinates":[95047,25919]},{"type":"Point","coordinates":[91133,27518]},{"type":"Point","coordinates":[2307,23667]},{"type":"Point","coordinates":[64812,34278]},{"type":"Point","coordinates":[93379,26624]},{"type":"Point","coordinates":[89782,28036]},{"type":"Point","coordinates":[85281,29625]},{"type":"Point","coordinates":[89490,28154]},{"type":"Point","coordinates":[95066,25927]},{"type":"Point","coordinates":[89910,27998]},{"type":"Point","coordinates":[65811,34157]},{"type":"Point","coordinates":[65855,34152]},{"type":"Point","coordinates":[91136,27533]},{"type":"Point","coordinates":[96916,25122]},{"type":"Point","coordinates":[65964,34141]},{"type":"Point","coordinates":[86683,29165]},{"type":"Point","coordinates":[64912,34286]},{"type":"Point","coordinates":[89898,28020]},{"type":"Point","coordinates":[94237,26300]},{"type":"Point","coordinates":[91587,27379]},{"type":"Point","coordinates":[81240,30896]},{"type":"Point","coordinates":[81249,30894]},{"type":"Point","coordinates":[72298,33083]},{"type":"Point","coordinates":[81251,30897]},{"type":"Point","coordinates":[72298,33084]},{"type":"Point","coordinates":[81251,30897]},{"type":"Point","coordinates":[96736,25228]},{"type":"Point","coordinates":[63581,34472]},{"type":"Point","coordinates":[92326,27099]},{"type":"Point","coordinates":[72298,33095]},{"type":"Point","coordinates":[72298,33095]},{"type":"Point","coordinates":[89710,28120]},{"type":"Point","coordinates":[65775,34207]},{"type":"Point","coordinates":[65563,34239]},{"type":"Point","coordinates":[92326,27116]},{"type":"Point","coordinates":[2607,23878]},{"type":"Point","coordinates":[90838,27701]},{"type":"Point","coordinates":[73515,32865]},{"type":"Point","coordinates":[80589,31122]},{"type":"Point","coordinates":[91479,27466]},{"type":"Point","coordinates":[95199,25943]},{"type":"Point","coordinates":[81365,30909]},{"type":"Point","coordinates":[92909,26903]},{"type":"Point","coordinates":[66070,34195]},{"type":"Point","coordinates":[92086,27237]},{"type":"Point","coordinates":[88232,28694]},{"type":"Point","coordinates":[91257,27566]},{"type":"Point","coordinates":[92912,26909]},{"type":"Point","coordinates":[80586,31140]},{"type":"Point","coordinates":[92632,27042]},{"type":"Point","coordinates":[81610,30868]},{"type":"Point","coordinates":[90828,27767]},{"type":"Point","coordinates":[89895,28122]},{"type":"Point","coordinates":[94989,26082]},{"type":"Point","coordinates":[90649,27844]},{"type":"Point","coordinates":[86715,29271]},{"type":"Point","coordinates":[91354,27579]},{"type":"Point","coordinates":[94078,26480]},{"type":"Point","coordinates":[94862,26159]},{"type":"Point","coordinates":[92239,27241]},{"type":"Point","coordinates":[65599,34329]},{"type":"Point","coordinates":[95676,25813]},{"type":"Point","coordinates":[65601,34334]},{"type":"Point","coordinates":[78901,31680]},{"type":"Point","coordinates":[4384,24822]},{"type":"Point","coordinates":[65801,34326]},{"type":"Point","coordinates":[94484,26349]},{"type":"Point","coordinates":[93413,26802]},{"type":"Point","coordinates":[93397,26812]},{"type":"Point","coordinates":[65279,34408]},{"type":"Point","coordinates":[91366,27626]},{"type":"Point","coordinates":[65793,34343]},{"type":"Point","coordinates":[91086,27742]},{"type":"Point","coordinates":[81124,31094]},{"type":"Point","coordinates":[93990,26581]},{"type":"Point","coordinates":[94275,26466]},{"type":"Point","coordinates":[2218,23842]},{"type":"Point","coordinates":[90941,27814]},{"type":"Point","coordinates":[65284,34435]},{"type":"Point","coordinates":[90938,27822]},{"type":"Point","coordinates":[72122,33303]},{"type":"Point","coordinates":[4494,24937]},{"type":"Point","coordinates":[65666,34399]},{"type":"Point","coordinates":[65262,34455]},{"type":"Point","coordinates":[65763,34395]},{"type":"Point","coordinates":[92743,27133]},{"type":"Point","coordinates":[65767,34395]},{"type":"Point","coordinates":[92700,27158]},{"type":"Point","coordinates":[86578,29435]},{"type":"Point","coordinates":[87976,28949]},{"type":"Point","coordinates":[73622,33025]},{"type":"Point","coordinates":[90317,28094]},{"type":"Point","coordinates":[90317,28094]},{"type":"Point","coordinates":[92689,27167]},{"type":"Point","coordinates":[94000,26631]},{"type":"Point","coordinates":[65810,34402]},{"type":"Point","coordinates":[2073,23823]},{"type":"Point","coordinates":[94010,26628]},{"type":"Point","coordinates":[86579,29444]},{"type":"Point","coordinates":[94902,26258]},{"type":"Point","coordinates":[92694,27175]},{"type":"Point","coordinates":[94975,26233]},{"type":"Point","coordinates":[65782,34424]},{"type":"Point","coordinates":[94899,26272]},{"type":"Point","coordinates":[80839,31257]},{"type":"Point","coordinates":[79699,31575]},{"type":"Point","coordinates":[91871,27520]},{"type":"Point","coordinates":[86531,29490]},{"type":"Point","coordinates":[86532,29490]},{"type":"Point","coordinates":[94891,26289]},{"type":"Point","coordinates":[94890,26289]},{"type":"Point","coordinates":[94890,26289]},{"type":"Point","coordinates":[94897,26287]},{"type":"Point","coordinates":[90927,27900]},{"type":"Point","coordinates":[91237,27785]},{"type":"Point","coordinates":[1573,23623]},{"type":"Point","coordinates":[94966,26266]},{"type":"Point","coordinates":[94966,26267]},{"type":"Point","coordinates":[1574,23626]},{"type":"Point","coordinates":[1574,23626]},{"type":"Point","coordinates":[1574,23626]},{"type":"Point","coordinates":[1574,23626]},{"type":"Point","coordinates":[1579,23629]},{"type":"Point","coordinates":[1579,23629]},{"type":"Point","coordinates":[1578,23629]},{"type":"Point","coordinates":[1528,23605]},{"type":"Point","coordinates":[93976,26688]},{"type":"Point","coordinates":[1578,23630]},{"type":"Point","coordinates":[94965,26272]},{"type":"Point","coordinates":[1579,23632]},{"type":"Point","coordinates":[1584,23635]},{"type":"Point","coordinates":[93977,26690]},{"type":"Point","coordinates":[80866,31277]},{"type":"Point","coordinates":[93968,26696]},{"type":"Point","coordinates":[93891,26732]},{"type":"Point","coordinates":[94225,26593]},{"type":"Point","coordinates":[94898,26309]},{"type":"Point","coordinates":[90950,27912]},{"type":"Point","coordinates":[84696,30125]},{"type":"Point","coordinates":[1584,23646]},{"type":"Point","coordinates":[84696,30126]},{"type":"Point","coordinates":[84697,30126]},{"type":"Point","coordinates":[90951,27917]},{"type":"Point","coordinates":[84700,30131]},{"type":"Point","coordinates":[84701,30132]},{"type":"Point","coordinates":[94867,26335]},{"type":"Point","coordinates":[1586,23657]},{"type":"Point","coordinates":[1587,23658]},{"type":"Point","coordinates":[1585,23658]},{"type":"Point","coordinates":[89936,28313]},{"type":"Point","coordinates":[65834,34471]},{"type":"Point","coordinates":[94937,26311]},{"type":"Point","coordinates":[94959,26304]},{"type":"Point","coordinates":[64715,34624]},{"type":"Point","coordinates":[92346,27386]},{"type":"Point","coordinates":[94947,26313]},{"type":"Point","coordinates":[94947,26313]},{"type":"Point","coordinates":[94944,26315]},{"type":"Point","coordinates":[79513,31684]},{"type":"Point","coordinates":[93688,26849]},{"type":"Point","coordinates":[94717,26418]},{"type":"Point","coordinates":[94146,26660]},{"type":"Point","coordinates":[85058,30043]},{"type":"Point","coordinates":[92829,27209]},{"type":"Point","coordinates":[80277,31490]},{"type":"Point","coordinates":[94220,26641]},{"type":"Point","coordinates":[64826,34633]},{"type":"Point","coordinates":[79490,31711]},{"type":"Point","coordinates":[93937,26764]},{"type":"Point","coordinates":[92334,27420]},{"type":"Point","coordinates":[86566,29557]},{"type":"Point","coordinates":[92980,27163]},{"type":"Point","coordinates":[92982,27164]},{"type":"Point","coordinates":[92979,27165]},{"type":"Point","coordinates":[79456,31732]},{"type":"Point","coordinates":[92977,27169]},{"type":"Point","coordinates":[92977,27170]},{"type":"Point","coordinates":[81719,31097]},{"type":"Point","coordinates":[65869,34509]},{"type":"Point","coordinates":[92978,27170]},{"type":"Point","coordinates":[92978,27170]},{"type":"Point","coordinates":[92977,27171]},{"type":"Point","coordinates":[88183,29000]},{"type":"Point","coordinates":[92977,27171]},{"type":"Point","coordinates":[79450,31737]},{"type":"Point","coordinates":[79480,31730]},{"type":"Point","coordinates":[65869,34513]},{"type":"Point","coordinates":[81774,31089]},{"type":"Point","coordinates":[92545,27353]},{"type":"Point","coordinates":[73771,33120]},{"type":"Point","coordinates":[89397,28567]},{"type":"Point","coordinates":[65221,34606]},{"type":"Point","coordinates":[65221,34606]},{"type":"Point","coordinates":[79453,31747]},{"type":"Point","coordinates":[82524,30873]},{"type":"Point","coordinates":[64187,34745]},{"type":"Point","coordinates":[64833,34664]},{"type":"Point","coordinates":[94969,26365]},{"type":"Point","coordinates":[93506,26980]},{"type":"Point","coordinates":[92857,27246]},{"type":"Point","coordinates":[92028,27580]},{"type":"Point","coordinates":[73861,33123]},{"type":"Point","coordinates":[96868,25545]},{"type":"Point","coordinates":[64139,34768]},{"type":"Point","coordinates":[95017,26355]},{"type":"Point","coordinates":[94970,26378]},{"type":"Point","coordinates":[80436,31502]},{"type":"Point","coordinates":[65825,34553]},{"type":"Point","coordinates":[90957,28010]},{"type":"Point","coordinates":[94219,26701]},{"type":"Point","coordinates":[65826,34558]},{"type":"Point","coordinates":[65823,34559]},{"type":"Point","coordinates":[65823,34559]},{"type":"Point","coordinates":[65823,34559]},{"type":"Point","coordinates":[95158,26306]},{"type":"Point","coordinates":[65823,34561]},{"type":"Point","coordinates":[66129,34519]},{"type":"Point","coordinates":[2132,24027]},{"type":"Point","coordinates":[94947,26408]},{"type":"Point","coordinates":[65127,34667]},{"type":"Point","coordinates":[94839,26459]},{"type":"Point","coordinates":[94001,26815]},{"type":"Point","coordinates":[86564,29636]},{"type":"Point","coordinates":[65843,34585]},{"type":"Point","coordinates":[81670,31188]},{"type":"Point","coordinates":[94844,26473]},{"type":"Point","coordinates":[84997,30165]},{"type":"Point","coordinates":[73382,33273]},{"type":"Point","coordinates":[92614,27402]},{"type":"Point","coordinates":[94201,26755]},{"type":"Point","coordinates":[65821,34603]},{"type":"Point","coordinates":[81165,31349]},{"type":"Point","coordinates":[94949,26442]},{"type":"Point","coordinates":[94944,26446]},{"type":"Point","coordinates":[94872,26478]},{"type":"Point","coordinates":[94179,26771]},{"type":"Point","coordinates":[94996,26428]},{"type":"Point","coordinates":[92124,27612]},{"type":"Point","coordinates":[94529,26628]},{"type":"Point","coordinates":[94987,26435]},{"type":"Point","coordinates":[81663,31215]},{"type":"Point","coordinates":[95014,26426]},{"type":"Point","coordinates":[89895,28479]},{"type":"Point","coordinates":[94184,26784]},{"type":"Point","coordinates":[94212,26781]},{"type":"Point","coordinates":[81671,31234]},{"type":"Point","coordinates":[91487,27893]},{"type":"Point","coordinates":[65834,34643]},{"type":"Point","coordinates":[94217,26794]},{"type":"Point","coordinates":[65836,34645]},{"type":"Point","coordinates":[66104,34608]},{"type":"Point","coordinates":[95015,26460]},{"type":"Point","coordinates":[65828,34650]},{"type":"Point","coordinates":[95006,26466]},{"type":"Point","coordinates":[64952,34769]},{"type":"Point","coordinates":[65830,34651]},{"type":"Point","coordinates":[65830,34652]},{"type":"Point","coordinates":[94811,26551]},{"type":"Point","coordinates":[95058,26447]},{"type":"Point","coordinates":[64949,34774]},{"type":"Point","coordinates":[66006,34632]},{"type":"Point","coordinates":[91820,27779]},{"type":"Point","coordinates":[64952,34775]},{"type":"Point","coordinates":[64951,34775]},{"type":"Point","coordinates":[66006,34633]},{"type":"Point","coordinates":[64949,34776]},{"type":"Point","coordinates":[64952,34776]},{"type":"Point","coordinates":[65823,34660]},{"type":"Point","coordinates":[81744,31238]},{"type":"Point","coordinates":[81764,31233]},{"type":"Point","coordinates":[95155,26413]},{"type":"Point","coordinates":[91063,28082]},{"type":"Point","coordinates":[95156,26416]},{"type":"Point","coordinates":[64950,34782]},{"type":"Point","coordinates":[81477,31322]},{"type":"Point","coordinates":[65849,34664]},{"type":"Point","coordinates":[95157,26418]},{"type":"Point","coordinates":[65834,34669]},{"type":"Point","coordinates":[94815,26567]},{"type":"Point","coordinates":[79276,31941]},{"type":"Point","coordinates":[81779,31239]},{"type":"Point","coordinates":[91158,28053]},{"type":"Point","coordinates":[65831,34671]},{"type":"Point","coordinates":[79276,31942]},{"type":"Point","coordinates":[65944,34656]},{"type":"Point","coordinates":[65943,34657]},{"type":"Point","coordinates":[65944,34659]},{"type":"Point","coordinates":[65943,34659]},{"type":"Point","coordinates":[65943,34659]},{"type":"Point","coordinates":[90667,28246]},{"type":"Point","coordinates":[95010,26491]},{"type":"Point","coordinates":[65944,34661]},{"type":"Point","coordinates":[65940,34662]},{"type":"Point","coordinates":[93960,26935]},{"type":"Point","coordinates":[95288,26374]},{"type":"Point","coordinates":[91226,28036]},{"type":"Point","coordinates":[64760,34823]},{"type":"Point","coordinates":[81484,31337]},{"type":"Point","coordinates":[79281,31953]},{"type":"Point","coordinates":[79281,31953]},{"type":"Point","coordinates":[66122,34645]},{"type":"Point","coordinates":[91227,28044]},{"type":"Point","coordinates":[95163,26438]},{"type":"Point","coordinates":[81814,31248]},{"type":"Point","coordinates":[65440,34744]},{"type":"Point","coordinates":[81487,31346]},{"type":"Point","coordinates":[65958,34676]},{"type":"Point","coordinates":[93713,27056]},{"type":"Point","coordinates":[81476,31355]},{"type":"Point","coordinates":[91230,28058]},{"type":"Point","coordinates":[94682,26662]},{"type":"Point","coordinates":[91226,28064]},{"type":"Point","coordinates":[91027,28144]},{"type":"Point","coordinates":[79298,31975]},{"type":"Point","coordinates":[65490,34772]},{"type":"Point","coordinates":[96794,25771]},{"type":"Point","coordinates":[92344,27655]},{"type":"Point","coordinates":[2528,24396]},{"type":"Point","coordinates":[96736,25805]},{"type":"Point","coordinates":[55338,35674]},{"type":"Point","coordinates":[81892,31282]},{"type":"Point","coordinates":[81892,31282]},{"type":"Point","coordinates":[81891,31282]},{"type":"Point","coordinates":[81892,31282]},{"type":"Point","coordinates":[88330,29191]},{"type":"Point","coordinates":[92533,27597]},{"type":"Point","coordinates":[88326,29195]},{"type":"Point","coordinates":[91022,28196]},{"type":"Point","coordinates":[92648,27558]},{"type":"Point","coordinates":[94123,26955]},{"type":"Point","coordinates":[94123,26957]},{"type":"Point","coordinates":[88323,29210]},{"type":"Point","coordinates":[2459,24394]},{"type":"Point","coordinates":[81590,31407]},{"type":"Point","coordinates":[94918,26640]},{"type":"Point","coordinates":[96925,25768]},{"type":"Point","coordinates":[58921,35520]},{"type":"Point","coordinates":[91067,28211]},{"type":"Point","coordinates":[94999,26616]},{"type":"Point","coordinates":[48561,35780]},{"type":"Point","coordinates":[56624,35673]},{"type":"Point","coordinates":[91618,28009]},{"type":"Point","coordinates":[65844,34808]},{"type":"Point","coordinates":[81411,31493]},{"type":"Point","coordinates":[91063,28242]},{"type":"Point","coordinates":[81486,31479]},{"type":"Point","coordinates":[93986,27078]},{"type":"Point","coordinates":[89992,28658]},{"type":"Point","coordinates":[94626,26814]},{"type":"Point","coordinates":[94545,26855]},{"type":"Point","coordinates":[90969,28300]},{"type":"Point","coordinates":[94610,26831]},{"type":"Point","coordinates":[89521,28850]},{"type":"Point","coordinates":[65771,34859]},{"type":"Point","coordinates":[81650,31466]},{"type":"Point","coordinates":[91053,28291]},{"type":"Point","coordinates":[93941,27138]},{"type":"Point","coordinates":[90262,28599]},{"type":"Point","coordinates":[91087,28286]},{"type":"Point","coordinates":[1585,24080]},{"type":"Point","coordinates":[1585,24083]},{"type":"Point","coordinates":[91083,28295]},{"type":"Point","coordinates":[65813,34883]},{"type":"Point","coordinates":[92341,27806]},{"type":"Point","coordinates":[2380,24480]},{"type":"Point","coordinates":[65832,34895]},{"type":"Point","coordinates":[91510,28147]},{"type":"Point","coordinates":[65832,34896]},{"type":"Point","coordinates":[65833,34897]},{"type":"Point","coordinates":[65833,34897]},{"type":"Point","coordinates":[65834,34898]},{"type":"Point","coordinates":[63197,35231]},{"type":"Point","coordinates":[65836,34902]},{"type":"Point","coordinates":[65833,34903]},{"type":"Point","coordinates":[65833,34904]},{"type":"Point","coordinates":[65840,34903]},{"type":"Point","coordinates":[65840,34903]},{"type":"Point","coordinates":[65826,34905]},{"type":"Point","coordinates":[65834,34905]},{"type":"Point","coordinates":[65836,34908]},{"type":"Point","coordinates":[65849,34908]},{"type":"Point","coordinates":[65840,34911]},{"type":"Point","coordinates":[2269,24453]},{"type":"Point","coordinates":[65836,34913]},{"type":"Point","coordinates":[94607,26907]},{"type":"Point","coordinates":[94605,26907]},{"type":"Point","coordinates":[65837,34913]},{"type":"Point","coordinates":[94891,26790]},{"type":"Point","coordinates":[65858,34916]},{"type":"Point","coordinates":[89679,28874]},{"type":"Point","coordinates":[1881,24280]},{"type":"Point","coordinates":[1831,24256]},{"type":"Point","coordinates":[65865,34923]},{"type":"Point","coordinates":[65869,34929]},{"type":"Point","coordinates":[65867,34931]},{"type":"Point","coordinates":[65866,34933]},{"type":"Point","coordinates":[65857,34934]},{"type":"Point","coordinates":[65867,34933]},{"type":"Point","coordinates":[65864,34934]},{"type":"Point","coordinates":[65856,34936]},{"type":"Point","coordinates":[65855,34936]},{"type":"Point","coordinates":[65855,34936]},{"type":"Point","coordinates":[65864,34935]},{"type":"Point","coordinates":[66037,34912]},{"type":"Point","coordinates":[1837,24272]},{"type":"Point","coordinates":[65829,34941]},{"type":"Point","coordinates":[65829,34941]},{"type":"Point","coordinates":[65856,34937]},{"type":"Point","coordinates":[65861,34937]},{"type":"Point","coordinates":[65861,34937]},{"type":"Point","coordinates":[65855,34938]},{"type":"Point","coordinates":[65855,34938]},{"type":"Point","coordinates":[65864,34937]},{"type":"Point","coordinates":[65856,34939]},{"type":"Point","coordinates":[68618,34521]},{"type":"Point","coordinates":[68617,34521]},{"type":"Point","coordinates":[65862,34942]},{"type":"Point","coordinates":[93978,27208]},{"type":"Point","coordinates":[94005,27198]},{"type":"Point","coordinates":[65861,34949]},{"type":"Point","coordinates":[65857,34950]},{"type":"Point","coordinates":[95408,26607]},{"type":"Point","coordinates":[89267,29056]},{"type":"Point","coordinates":[69411,34401]},{"type":"Point","coordinates":[65871,34952]},{"type":"Point","coordinates":[65886,34952]},{"type":"Point","coordinates":[65944,34948]},{"type":"Point","coordinates":[91981,28040]},{"type":"Point","coordinates":[92773,27724]},{"type":"Point","coordinates":[65896,34966]},{"type":"Point","coordinates":[65902,34967]},{"type":"Point","coordinates":[65907,34969]},{"type":"Point","coordinates":[65880,34973]},{"type":"Point","coordinates":[65900,34971]},{"type":"Point","coordinates":[87021,29887]},{"type":"Point","coordinates":[88689,29300]},{"type":"Point","coordinates":[65904,34977]},{"type":"Point","coordinates":[65901,34979]},{"type":"Point","coordinates":[95778,26483]},{"type":"Point","coordinates":[65901,34980]},{"type":"Point","coordinates":[65898,34982]},{"type":"Point","coordinates":[65898,34983]},{"type":"Point","coordinates":[58906,35726]},{"type":"Point","coordinates":[65907,34985]},{"type":"Point","coordinates":[91507,28255]},{"type":"Point","coordinates":[63189,35336]},{"type":"Point","coordinates":[8407,27303]},{"type":"Point","coordinates":[92305,27974]},{"type":"Point","coordinates":[65960,35027]},{"type":"Point","coordinates":[64827,35179]},{"type":"Point","coordinates":[64134,35268]},{"type":"Point","coordinates":[1959,24444]},{"type":"Point","coordinates":[2271,24594]},{"type":"Point","coordinates":[1817,24377]},{"type":"Point","coordinates":[66103,35015]},{"type":"Point","coordinates":[87940,29636]},{"type":"Point","coordinates":[66101,35016]},{"type":"Point","coordinates":[94920,26928]},{"type":"Point","coordinates":[92328,28004]},{"type":"Point","coordinates":[1644,24316]},{"type":"Point","coordinates":[3433,25175]},{"type":"Point","coordinates":[90286,28809]},{"type":"Point","coordinates":[66060,35054]},{"type":"Point","coordinates":[92107,28108]},{"type":"Point","coordinates":[64758,35243]},{"type":"Point","coordinates":[1521,24288]},{"type":"Point","coordinates":[66094,35071]},{"type":"Point","coordinates":[66092,35076]},{"type":"Point","coordinates":[89845,29004]},{"type":"Point","coordinates":[81991,31625]},{"type":"Point","coordinates":[95942,26540]},{"type":"Point","coordinates":[81990,31627]},{"type":"Point","coordinates":[63119,35460]},{"type":"Point","coordinates":[92244,28091]},{"type":"Point","coordinates":[92253,28088]},{"type":"Point","coordinates":[2077,24579]},{"type":"Point","coordinates":[81981,31641]},{"type":"Point","coordinates":[64654,35284]},{"type":"Point","coordinates":[1995,24549]},{"type":"Point","coordinates":[94837,27036]},{"type":"Point","coordinates":[92249,28107]},{"type":"Point","coordinates":[89653,29121]},{"type":"Point","coordinates":[68101,34825]},{"type":"Point","coordinates":[89818,29085]},{"type":"Point","coordinates":[1942,24581]},{"type":"Point","coordinates":[94944,27053]},{"type":"Point","coordinates":[2224,24726]},{"type":"Point","coordinates":[1985,24616]},{"type":"Point","coordinates":[94066,27431]},{"type":"Point","coordinates":[92251,28170]},{"type":"Point","coordinates":[94931,27068]},{"type":"Point","coordinates":[89660,29169]},{"type":"Point","coordinates":[66026,35181]},{"type":"Point","coordinates":[66026,35181]},{"type":"Point","coordinates":[1816,24544]},{"type":"Point","coordinates":[94064,27449]},{"type":"Point","coordinates":[90223,28975]},{"type":"Point","coordinates":[66114,35188]},{"type":"Point","coordinates":[66113,35191]},{"type":"Point","coordinates":[66114,35196]},{"type":"Point","coordinates":[66114,35197]},{"type":"Point","coordinates":[94936,27102]},{"type":"Point","coordinates":[94936,27104]},{"type":"Point","coordinates":[96995,26206]},{"type":"Point","coordinates":[1984,24656]},{"type":"Point","coordinates":[94931,27107]},{"type":"Point","coordinates":[92989,27916]},{"type":"Point","coordinates":[1768,24573]},{"type":"Point","coordinates":[63028,35612]},{"type":"Point","coordinates":[65144,35359]},{"type":"Point","coordinates":[2031,24706]},{"type":"Point","coordinates":[66155,35223]},{"type":"Point","coordinates":[66123,35230]},{"type":"Point","coordinates":[96775,26344]},{"type":"Point","coordinates":[66024,35255]},{"type":"Point","coordinates":[94710,27251]},{"type":"Point","coordinates":[96832,26335]},{"type":"Point","coordinates":[92227,28277]},{"type":"Point","coordinates":[67958,34984]},{"type":"Point","coordinates":[64584,35471]},{"type":"Point","coordinates":[93971,27578]},{"type":"Point","coordinates":[65770,35318]},{"type":"Point","coordinates":[63146,35651]},{"type":"Point","coordinates":[91280,28670]},{"type":"Point","coordinates":[2028,24758]},{"type":"Point","coordinates":[92568,28168]},{"type":"Point","coordinates":[92568,28168]},{"type":"Point","coordinates":[2172,24834]},{"type":"Point","coordinates":[92122,28348]},{"type":"Point","coordinates":[1949,24729]},{"type":"Point","coordinates":[2412,24970]},{"type":"Point","coordinates":[63045,35694]},{"type":"Point","coordinates":[92248,28326]},{"type":"Point","coordinates":[95182,27119]},{"type":"Point","coordinates":[93106,27985]},{"type":"Point","coordinates":[1889,24731]},{"type":"Point","coordinates":[1869,24722]},{"type":"Point","coordinates":[1763,24672]},{"type":"Point","coordinates":[65568,35395]},{"type":"Point","coordinates":[65773,35375]},{"type":"Point","coordinates":[91233,28739]},{"type":"Point","coordinates":[1514,24571]},{"type":"Point","coordinates":[2030,24840]},{"type":"Point","coordinates":[66147,35357]},{"type":"Point","coordinates":[2008,24837]},{"type":"Point","coordinates":[89579,29417]},{"type":"Point","coordinates":[89576,29429]},{"type":"Point","coordinates":[64712,35584]},{"type":"Point","coordinates":[64712,35585]},{"type":"Point","coordinates":[92774,28202]},{"type":"Point","coordinates":[64712,35588]},{"type":"Point","coordinates":[64711,35589]},{"type":"Point","coordinates":[64711,35589]},{"type":"Point","coordinates":[92203,28433]},{"type":"Point","coordinates":[64704,35592]},{"type":"Point","coordinates":[93041,28101]},{"type":"Point","coordinates":[63216,35782]},{"type":"Point","coordinates":[1876,24825]},{"type":"Point","coordinates":[81696,32064]},{"type":"Point","coordinates":[81696,32064]},{"type":"Point","coordinates":[67898,35169]},{"type":"Point","coordinates":[65984,35455]},{"type":"Point","coordinates":[65962,35460]},{"type":"Point","coordinates":[91166,28878]},{"type":"Point","coordinates":[91169,28877]},{"type":"Point","coordinates":[63075,35824]},{"type":"Point","coordinates":[91167,28879]},{"type":"Point","coordinates":[91170,28878]},{"type":"Point","coordinates":[1518,24683]},{"type":"Point","coordinates":[63081,35828]},{"type":"Point","coordinates":[91176,28883]},{"type":"Point","coordinates":[1518,24687]},{"type":"Point","coordinates":[81480,32159]},{"type":"Point","coordinates":[63081,35839]},{"type":"Point","coordinates":[56357,36383]},{"type":"Point","coordinates":[63098,35841]},{"type":"Point","coordinates":[65120,35598]},{"type":"Point","coordinates":[1962,24923]},{"type":"Point","coordinates":[63099,35850]},{"type":"Point","coordinates":[91458,28796]},{"type":"Point","coordinates":[81545,32161]},{"type":"Point","coordinates":[1968,24938]},{"type":"Point","coordinates":[65674,35544]},{"type":"Point","coordinates":[94671,27508]},{"type":"Point","coordinates":[65120,35622]},{"type":"Point","coordinates":[93514,27996]},{"type":"Point","coordinates":[65004,35641]},{"type":"Point","coordinates":[1473,24710]},{"type":"Point","coordinates":[93460,28019]},{"type":"Point","coordinates":[65774,35546]},{"type":"Point","coordinates":[91478,28819]},{"type":"Point","coordinates":[65615,35572]},{"type":"Point","coordinates":[1824,24895]},{"type":"Point","coordinates":[1383,24692]},{"type":"Point","coordinates":[1813,24901]},{"type":"Point","coordinates":[65391,35626]},{"type":"Point","coordinates":[1962,24987]},{"type":"Point","coordinates":[93284,28132]},{"type":"Point","coordinates":[65462,35621]},{"type":"Point","coordinates":[93284,28133]},{"type":"Point","coordinates":[65585,35610]},{"type":"Point","coordinates":[65464,35629]},{"type":"Point","coordinates":[65599,35614]},{"type":"Point","coordinates":[65891,35577]},{"type":"Point","coordinates":[1902,24981]},{"type":"Point","coordinates":[65861,35587]},{"type":"Point","coordinates":[93303,28153]},{"type":"Point","coordinates":[1507,24805]},{"type":"Point","coordinates":[1507,24805]},{"type":"Point","coordinates":[65340,35674]},{"type":"Point","coordinates":[1846,24971]},{"type":"Point","coordinates":[92716,28403]},{"type":"Point","coordinates":[65016,35720]},{"type":"Point","coordinates":[2020,25059]},{"type":"Point","coordinates":[93276,28178]},{"type":"Point","coordinates":[93276,28178]},{"type":"Point","coordinates":[1513,24820]},{"type":"Point","coordinates":[1496,24821]},{"type":"Point","coordinates":[1508,24830]},{"type":"Point","coordinates":[1505,24829]},{"type":"Point","coordinates":[1518,24838]},{"type":"Point","coordinates":[1515,24839]},{"type":"Point","coordinates":[1517,24840]},{"type":"Point","coordinates":[1512,24839]},{"type":"Point","coordinates":[1512,24838]},{"type":"Point","coordinates":[1512,24838]},{"type":"Point","coordinates":[1515,24842]},{"type":"Point","coordinates":[1515,24843]},{"type":"Point","coordinates":[1517,24844]},{"type":"Point","coordinates":[65399,35697]},{"type":"Point","coordinates":[1512,24844]},{"type":"Point","coordinates":[93258,28215]},{"type":"Point","coordinates":[91464,28929]},{"type":"Point","coordinates":[1516,24846]},{"type":"Point","coordinates":[1511,24845]},{"type":"Point","coordinates":[89681,29607]},{"type":"Point","coordinates":[1476,24828]},{"type":"Point","coordinates":[1508,24844]},{"type":"Point","coordinates":[1521,24852]},{"type":"Point","coordinates":[1514,24850]},{"type":"Point","coordinates":[1514,24850]},{"type":"Point","coordinates":[1496,24842]},{"type":"Point","coordinates":[1514,24851]},{"type":"Point","coordinates":[1903,25040]},{"type":"Point","coordinates":[92158,28664]},{"type":"Point","coordinates":[1478,24836]},{"type":"Point","coordinates":[1461,24828]},{"type":"Point","coordinates":[93231,28237]},{"type":"Point","coordinates":[93270,28221]},{"type":"Point","coordinates":[1539,24878]},{"type":"Point","coordinates":[93295,28221]},{"type":"Point","coordinates":[1464,24843]},{"type":"Point","coordinates":[91002,29133]},{"type":"Point","coordinates":[93148,28291]},{"type":"Point","coordinates":[65495,35719]},{"type":"Point","coordinates":[1539,24891]},{"type":"Point","coordinates":[1512,24880]},{"type":"Point","coordinates":[1538,24895]},{"type":"Point","coordinates":[1545,24901]},{"type":"Point","coordinates":[1593,24931]},{"type":"Point","coordinates":[1846,25055]},{"type":"Point","coordinates":[65473,35741]},{"type":"Point","coordinates":[65494,35739]},{"type":"Point","coordinates":[92295,28656]},{"type":"Point","coordinates":[1541,24915]},{"type":"Point","coordinates":[1540,24914]},{"type":"Point","coordinates":[1512,24901]},{"type":"Point","coordinates":[1789,25039]},{"type":"Point","coordinates":[1537,24920]},{"type":"Point","coordinates":[1619,24960]},{"type":"Point","coordinates":[66232,35647]},{"type":"Point","coordinates":[1554,24929]},{"type":"Point","coordinates":[1538,24925]},{"type":"Point","coordinates":[1538,24925]},{"type":"Point","coordinates":[1506,24911]},{"type":"Point","coordinates":[1506,24911]},{"type":"Point","coordinates":[1506,24911]},{"type":"Point","coordinates":[1506,24911]},{"type":"Point","coordinates":[1506,24911]},{"type":"Point","coordinates":[1506,24911]},{"type":"Point","coordinates":[66236,35656]},{"type":"Point","coordinates":[1538,24933]},{"type":"Point","coordinates":[1548,24938]},{"type":"Point","coordinates":[65441,35770]},{"type":"Point","coordinates":[1532,24936]},{"type":"Point","coordinates":[1542,24943]},{"type":"Point","coordinates":[90047,29553]},{"type":"Point","coordinates":[1539,24944]},{"type":"Point","coordinates":[90724,29299]},{"type":"Point","coordinates":[1544,24947]},{"type":"Point","coordinates":[1544,24947]},{"type":"Point","coordinates":[1551,24951]},{"type":"Point","coordinates":[1540,24946]},{"type":"Point","coordinates":[1542,24947]},{"type":"Point","coordinates":[1540,24946]},{"type":"Point","coordinates":[1544,24948]},{"type":"Point","coordinates":[1546,24950]},{"type":"Point","coordinates":[1539,24947]},{"type":"Point","coordinates":[1541,24949]},{"type":"Point","coordinates":[1543,24950]},{"type":"Point","coordinates":[1540,24949]},{"type":"Point","coordinates":[1540,24949]},{"type":"Point","coordinates":[1540,24949]},{"type":"Point","coordinates":[1540,24949]},{"type":"Point","coordinates":[1539,24948]},{"type":"Point","coordinates":[1546,24952]},{"type":"Point","coordinates":[1538,24950]},{"type":"Point","coordinates":[1536,24949]},{"type":"Point","coordinates":[1537,24950]},{"type":"Point","coordinates":[1536,24949]},{"type":"Point","coordinates":[1535,24949]},{"type":"Point","coordinates":[1560,24961]},{"type":"Point","coordinates":[1386,24877]},{"type":"Point","coordinates":[1536,24950]},{"type":"Point","coordinates":[1537,24951]},{"type":"Point","coordinates":[1565,24965]},{"type":"Point","coordinates":[93363,28269]},{"type":"Point","coordinates":[1534,24953]},{"type":"Point","coordinates":[77785,33405]},{"type":"Point","coordinates":[96725,26840]},{"type":"Point","coordinates":[1504,24944]},{"type":"Point","coordinates":[89937,29613]},{"type":"Point","coordinates":[1484,24936]},{"type":"Point","coordinates":[1855,25117]},{"type":"Point","coordinates":[66231,35688]},{"type":"Point","coordinates":[65485,35792]},{"type":"Point","coordinates":[3303,25812]},{"type":"Point","coordinates":[85366,31226]},{"type":"Point","coordinates":[91274,29120]},{"type":"Point","coordinates":[92625,28592]},{"type":"Point","coordinates":[1446,24938]},{"type":"Point","coordinates":[65182,35854]},{"type":"Point","coordinates":[90977,29252]},{"type":"Point","coordinates":[90976,29253]},{"type":"Point","coordinates":[92584,28623]},{"type":"Point","coordinates":[90975,29254]},{"type":"Point","coordinates":[90982,29256]},{"type":"Point","coordinates":[90983,29256]},{"type":"Point","coordinates":[1496,24982]},{"type":"Point","coordinates":[90983,29259]},{"type":"Point","coordinates":[94842,27703]},{"type":"Point","coordinates":[65857,35780]},{"type":"Point","coordinates":[90979,29262]},{"type":"Point","coordinates":[1479,24977]},{"type":"Point","coordinates":[90979,29266]},{"type":"Point","coordinates":[93604,28225]},{"type":"Point","coordinates":[65619,35818]},{"type":"Point","coordinates":[91315,29139]},{"type":"Point","coordinates":[1501,24997]},{"type":"Point","coordinates":[1499,25005]},{"type":"Point","coordinates":[1467,24989]},{"type":"Point","coordinates":[1471,24992]},{"type":"Point","coordinates":[83222,31956]},{"type":"Point","coordinates":[1488,25005]},{"type":"Point","coordinates":[1475,24999]},{"type":"Point","coordinates":[1488,25005]},{"type":"Point","coordinates":[1767,25142]},{"type":"Point","coordinates":[1477,25005]},{"type":"Point","coordinates":[93409,28329]},{"type":"Point","coordinates":[66276,35751]},{"type":"Point","coordinates":[1478,25007]},{"type":"Point","coordinates":[94797,27755]},{"type":"Point","coordinates":[1430,24986]},{"type":"Point","coordinates":[89987,29677]},{"type":"Point","coordinates":[1470,25012]},{"type":"Point","coordinates":[89991,29677]},{"type":"Point","coordinates":[1451,25010]},{"type":"Point","coordinates":[77268,33629]},{"type":"Point","coordinates":[1445,25010]},{"type":"Point","coordinates":[93414,28348]},{"type":"Point","coordinates":[1390,24984]},{"type":"Point","coordinates":[1389,24985]},{"type":"Point","coordinates":[93413,28350]},{"type":"Point","coordinates":[90263,29587]},{"type":"Point","coordinates":[1448,25016]},{"type":"Point","coordinates":[65389,35899]},{"type":"Point","coordinates":[65263,35916]},{"type":"Point","coordinates":[97238,26717]},{"type":"Point","coordinates":[1479,25035]},{"type":"Point","coordinates":[77851,33493]},{"type":"Point","coordinates":[1422,25010]},{"type":"Point","coordinates":[1422,25010]},{"type":"Point","coordinates":[1421,25011]},{"type":"Point","coordinates":[91386,29168]},{"type":"Point","coordinates":[96357,27120]},{"type":"Point","coordinates":[92612,28695]},{"type":"Point","coordinates":[89977,29719]},{"type":"Point","coordinates":[89976,29720]},{"type":"Point","coordinates":[97272,26725]},{"type":"Point","coordinates":[1312,24978]},{"type":"Point","coordinates":[67987,35548]},{"type":"Point","coordinates":[93148,28495]},{"type":"Point","coordinates":[93465,28366]},{"type":"Point","coordinates":[65009,35988]},{"type":"Point","coordinates":[1387,25043]},{"type":"Point","coordinates":[77908,33531]},{"type":"Point","coordinates":[65423,35953]},{"type":"Point","coordinates":[65304,35970]},{"type":"Point","coordinates":[1352,25037]},{"type":"Point","coordinates":[87113,30792]},{"type":"Point","coordinates":[90141,29705]},{"type":"Point","coordinates":[22928,33161]},{"type":"Point","coordinates":[92092,28960]},{"type":"Point","coordinates":[90115,29722]},{"type":"Point","coordinates":[65552,35972]},{"type":"Point","coordinates":[1556,25173]},{"type":"Point","coordinates":[65564,35978]},{"type":"Point","coordinates":[89955,29815]},{"type":"Point","coordinates":[89954,29817]},{"type":"Point","coordinates":[1536,25178]},{"type":"Point","coordinates":[66065,35923]},{"type":"Point","coordinates":[1683,25259]},{"type":"Point","coordinates":[93380,28494]},{"type":"Point","coordinates":[90497,29629]},{"type":"Point","coordinates":[90497,29629]},{"type":"Point","coordinates":[77422,33727]},{"type":"Point","coordinates":[92143,28997]},{"type":"Point","coordinates":[92616,28811]},{"type":"Point","coordinates":[65193,36055]},{"type":"Point","coordinates":[92041,29043]},{"type":"Point","coordinates":[65491,36020]},{"type":"Point","coordinates":[65488,36022]},{"type":"Point","coordinates":[65489,36022]},{"type":"Point","coordinates":[91167,29388]},{"type":"Point","coordinates":[65757,35989]},{"type":"Point","coordinates":[89871,29887]},{"type":"Point","coordinates":[92057,29050]},{"type":"Point","coordinates":[89872,29888]},{"type":"Point","coordinates":[89872,29889]},{"type":"Point","coordinates":[92775,28768]},{"type":"Point","coordinates":[92778,28767]},{"type":"Point","coordinates":[4691,26709]},{"type":"Point","coordinates":[89876,29903]},{"type":"Point","coordinates":[94587,28038]},{"type":"Point","coordinates":[92912,28732]},{"type":"Point","coordinates":[92737,28807]},{"type":"Point","coordinates":[92737,28808]},{"type":"Point","coordinates":[92917,28739]},{"type":"Point","coordinates":[65745,36034]},{"type":"Point","coordinates":[65740,36039]},{"type":"Point","coordinates":[65758,36039]},{"type":"Point","coordinates":[92043,29103]},{"type":"Point","coordinates":[97171,26947]},{"type":"Point","coordinates":[65249,36112]},{"type":"Point","coordinates":[89857,29944]},{"type":"Point","coordinates":[92913,28760]},{"type":"Point","coordinates":[92913,28761]},{"type":"Point","coordinates":[92912,28762]},{"type":"Point","coordinates":[65713,36054]},{"type":"Point","coordinates":[90439,29730]},{"type":"Point","coordinates":[95393,27734]},{"type":"Point","coordinates":[22845,33279]},{"type":"Point","coordinates":[65719,36065]},{"type":"Point","coordinates":[65714,36066]},{"type":"Point","coordinates":[65249,36129]},{"type":"Point","coordinates":[37392,36174]},{"type":"Point","coordinates":[74897,34415]},{"type":"Point","coordinates":[1287,25166]},{"type":"Point","coordinates":[92714,28861]},{"type":"Point","coordinates":[89878,29959]},{"type":"Point","coordinates":[1693,25368]},{"type":"Point","coordinates":[65497,36107]},{"type":"Point","coordinates":[1404,25230]},{"type":"Point","coordinates":[92680,28882]},{"type":"Point","coordinates":[1453,25263]},{"type":"Point","coordinates":[92875,28812]},{"type":"Point","coordinates":[92551,28942]},{"type":"Point","coordinates":[92337,29030]},{"type":"Point","coordinates":[65753,36085]},{"type":"Point","coordinates":[92992,28770]},{"type":"Point","coordinates":[92554,28950]},{"type":"Point","coordinates":[92555,28950]},{"type":"Point","coordinates":[92557,28952]},{"type":"Point","coordinates":[66297,36020]},{"type":"Point","coordinates":[92874,28829]},{"type":"Point","coordinates":[93838,28437]},{"type":"Point","coordinates":[93838,28437]},{"type":"Point","coordinates":[53740,37073]},{"type":"Point","coordinates":[84240,31935]},{"type":"Point","coordinates":[1453,25290]},{"type":"Point","coordinates":[91765,29292]},{"type":"Point","coordinates":[81065,32909]},{"type":"Point","coordinates":[92801,28893]},{"type":"Point","coordinates":[66347,36052]},{"type":"Point","coordinates":[92694,28942]},{"type":"Point","coordinates":[56788,36996]},{"type":"Point","coordinates":[66349,36066]},{"type":"Point","coordinates":[91158,29561]},{"type":"Point","coordinates":[94508,28214]},{"type":"Point","coordinates":[91147,29566]},{"type":"Point","coordinates":[65458,36198]},{"type":"Point","coordinates":[65458,36200]},{"type":"Point","coordinates":[91319,29507]},{"type":"Point","coordinates":[92746,28945]},{"type":"Point","coordinates":[65460,36201]},{"type":"Point","coordinates":[66295,36086]},{"type":"Point","coordinates":[65458,36202]},{"type":"Point","coordinates":[77351,33934]},{"type":"Point","coordinates":[66295,36089]},{"type":"Point","coordinates":[65458,36204]},{"type":"Point","coordinates":[66291,36092]},{"type":"Point","coordinates":[66290,36092]},{"type":"Point","coordinates":[65790,36162]},{"type":"Point","coordinates":[91200,29562]},{"type":"Point","coordinates":[65345,36226]},{"type":"Point","coordinates":[65784,36168]},{"type":"Point","coordinates":[1428,25347]},{"type":"Point","coordinates":[65780,36172]},{"type":"Point","coordinates":[65785,36177]},{"type":"Point","coordinates":[65808,36175]},{"type":"Point","coordinates":[1760,25519]},{"type":"Point","coordinates":[65786,36180]},{"type":"Point","coordinates":[65697,36200]},{"type":"Point","coordinates":[63903,36430]},{"type":"Point","coordinates":[94174,28397]},{"type":"Point","coordinates":[94174,28397]},{"type":"Point","coordinates":[1400,25359]},{"type":"Point","coordinates":[1401,25362]},{"type":"Point","coordinates":[1348,25347]},{"type":"Point","coordinates":[77245,34010]},{"type":"Point","coordinates":[73031,34966]},{"type":"Point","coordinates":[92717,29028]},{"type":"Point","coordinates":[79474,33470]},{"type":"Point","coordinates":[1678,25546]},{"type":"Point","coordinates":[1390,25410]},{"type":"Point","coordinates":[67201,36057]},{"type":"Point","coordinates":[92965,28975]},{"type":"Point","coordinates":[90578,29913]},{"type":"Point","coordinates":[1559,25522]},{"type":"Point","coordinates":[92672,29098]},{"type":"Point","coordinates":[89621,30274]},{"type":"Point","coordinates":[1384,25441]},{"type":"Point","coordinates":[65327,36351]},{"type":"Point","coordinates":[1385,25452]},{"type":"Point","coordinates":[1387,25453]},{"type":"Point","coordinates":[1386,25455]},{"type":"Point","coordinates":[65327,36358]},{"type":"Point","coordinates":[92759,29089]},{"type":"Point","coordinates":[65330,36363]},{"type":"Point","coordinates":[65324,36366]},{"type":"Point","coordinates":[65323,36371]},{"type":"Point","coordinates":[65327,36370]},{"type":"Point","coordinates":[65324,36374]},{"type":"Point","coordinates":[1378,25478]},{"type":"Point","coordinates":[1545,25585]},{"type":"Point","coordinates":[74736,34737]},{"type":"Point","coordinates":[96488,27570]},{"type":"Point","coordinates":[92196,29362]},{"type":"Point","coordinates":[64566,36511]},{"type":"Point","coordinates":[1375,25515]},{"type":"Point","coordinates":[96231,27694]},{"type":"Point","coordinates":[94577,28406]},{"type":"Point","coordinates":[1280,25494]},{"type":"Point","coordinates":[93162,29009]},{"type":"Point","coordinates":[91306,29749]},{"type":"Point","coordinates":[77291,34182]},{"type":"Point","coordinates":[94734,28369]},{"type":"Point","coordinates":[75092,34703]},{"type":"Point","coordinates":[94119,28629]},{"type":"Point","coordinates":[63422,36695]},{"type":"Point","coordinates":[63421,36698]},{"type":"Point","coordinates":[77263,34198]},{"type":"Point","coordinates":[77263,34198]},{"type":"Point","coordinates":[63428,36702]},{"type":"Point","coordinates":[77491,34151]},{"type":"Point","coordinates":[74974,34754]},{"type":"Point","coordinates":[61346,36943]},{"type":"Point","coordinates":[1508,25657]},{"type":"Point","coordinates":[77474,34177]},{"type":"Point","coordinates":[74118,34962]},{"type":"Point","coordinates":[61352,36952]},{"type":"Point","coordinates":[1786,25809]},{"type":"Point","coordinates":[77436,34204]},{"type":"Point","coordinates":[84351,32254]},{"type":"Point","coordinates":[91885,29591]},{"type":"Point","coordinates":[93040,29132]},{"type":"Point","coordinates":[66303,36390]},{"type":"Point","coordinates":[90457,30152]},{"type":"Point","coordinates":[74880,34826]},{"type":"Point","coordinates":[66138,36420]},{"type":"Point","coordinates":[66921,36317]},{"type":"Point","coordinates":[77190,34306]},{"type":"Point","coordinates":[76247,34537]},{"type":"Point","coordinates":[60876,37055]},{"type":"Point","coordinates":[90490,30172]},{"type":"Point","coordinates":[77226,34310]},{"type":"Point","coordinates":[90481,30187]},{"type":"Point","coordinates":[77024,34370]},{"type":"Point","coordinates":[77289,34306]},{"type":"Point","coordinates":[77709,34205]},{"type":"Point","coordinates":[76394,34532]},{"type":"Point","coordinates":[76282,34562]},{"type":"Point","coordinates":[77271,34328]},{"type":"Point","coordinates":[76257,34574]},{"type":"Point","coordinates":[1394,25709]},{"type":"Point","coordinates":[1392,25709]},{"type":"Point","coordinates":[1393,25714]},{"type":"Point","coordinates":[1388,25712]},{"type":"Point","coordinates":[1387,25715]},{"type":"Point","coordinates":[75054,34865]},{"type":"Point","coordinates":[64560,36705]},{"type":"Point","coordinates":[1419,25738]},{"type":"Point","coordinates":[77004,34425]},{"type":"Point","coordinates":[77261,34367]},{"type":"Point","coordinates":[93518,29065]},{"type":"Point","coordinates":[87830,31229]},{"type":"Point","coordinates":[65611,36615]},{"type":"Point","coordinates":[88792,30898]},{"type":"Point","coordinates":[90673,30204]},{"type":"Point","coordinates":[72036,35557]},{"type":"Point","coordinates":[55107,37531]},{"type":"Point","coordinates":[61258,37131]},{"type":"Point","coordinates":[92956,29324]},{"type":"Point","coordinates":[61261,37132]},{"type":"Point","coordinates":[76969,34480]},{"type":"Point","coordinates":[61226,37152]},{"type":"Point","coordinates":[3077,26609]},{"type":"Point","coordinates":[88584,31011]},{"type":"Point","coordinates":[94780,28598]},{"type":"Point","coordinates":[88584,31012]},{"type":"Point","coordinates":[93131,29283]},{"type":"Point","coordinates":[76362,34659]},{"type":"Point","coordinates":[87263,31488]},{"type":"Point","coordinates":[77014,34506]},{"type":"Point","coordinates":[94878,28571]},{"type":"Point","coordinates":[76524,34629]},{"type":"Point","coordinates":[74823,35025]},{"type":"Point","coordinates":[88595,31030]},{"type":"Point","coordinates":[88595,31030]},{"type":"Point","coordinates":[94130,28896]},{"type":"Point","coordinates":[77288,34452]},{"type":"Point","coordinates":[91224,30070]},{"type":"Point","coordinates":[76856,34573]},{"type":"Point","coordinates":[76470,34669]},{"type":"Point","coordinates":[77057,34532]},{"type":"Point","coordinates":[92435,29609]},{"type":"Point","coordinates":[77289,34476]},{"type":"Point","coordinates":[76506,34667]},{"type":"Point","coordinates":[70540,35938]},{"type":"Point","coordinates":[70540,35940]},{"type":"Point","coordinates":[76474,34692]},{"type":"Point","coordinates":[77106,34539]},{"type":"Point","coordinates":[77111,34563]},{"type":"Point","coordinates":[67173,36528]},{"type":"Point","coordinates":[77882,34379]},{"type":"Point","coordinates":[66927,36573]},{"type":"Point","coordinates":[65333,36807]},{"type":"Point","coordinates":[77503,34491]},{"type":"Point","coordinates":[22470,33887]},{"type":"Point","coordinates":[22470,33888]},{"type":"Point","coordinates":[77879,34409]},{"type":"Point","coordinates":[77254,34568]},{"type":"Point","coordinates":[94423,28887]},{"type":"Point","coordinates":[1415,25973]},{"type":"Point","coordinates":[61088,37317]},{"type":"Point","coordinates":[84227,32635]},{"type":"Point","coordinates":[65761,36806]},{"type":"Point","coordinates":[77596,34526]},{"type":"Point","coordinates":[65755,36821]},{"type":"Point","coordinates":[65755,36822]},{"type":"Point","coordinates":[76433,34821]},{"type":"Point","coordinates":[76984,34689]},{"type":"Point","coordinates":[91220,30226]},{"type":"Point","coordinates":[87656,31537]},{"type":"Point","coordinates":[61066,37369]},{"type":"Point","coordinates":[75785,34984]},{"type":"Point","coordinates":[94288,29014]},{"type":"Point","coordinates":[95108,28672]},{"type":"Point","coordinates":[94294,29018]},{"type":"Point","coordinates":[66765,36716]},{"type":"Point","coordinates":[77183,34678]},{"type":"Point","coordinates":[77185,34681]},{"type":"Point","coordinates":[77231,34670]},{"type":"Point","coordinates":[60934,37428]},{"type":"Point","coordinates":[60934,37428]},{"type":"Point","coordinates":[60928,37431]},{"type":"Point","coordinates":[60922,37436]},{"type":"Point","coordinates":[76449,34882]},{"type":"Point","coordinates":[94742,28896]},{"type":"Point","coordinates":[94742,28897]},{"type":"Point","coordinates":[94739,28898]},{"type":"Point","coordinates":[77046,34763]},{"type":"Point","coordinates":[60877,37468]},{"type":"Point","coordinates":[95112,28743]},{"type":"Point","coordinates":[77312,34699]},{"type":"Point","coordinates":[76484,34901]},{"type":"Point","coordinates":[92935,29644]},{"type":"Point","coordinates":[94734,28907]},{"type":"Point","coordinates":[94730,28912]},{"type":"Point","coordinates":[76397,34940]},{"type":"Point","coordinates":[90523,30610]},{"type":"Point","coordinates":[93035,29638]},{"type":"Point","coordinates":[93035,29638]},{"type":"Point","coordinates":[94753,28934]},{"type":"Point","coordinates":[61682,37430]},{"type":"Point","coordinates":[93824,29321]},{"type":"Point","coordinates":[66385,36869]},{"type":"Point","coordinates":[92821,29733]},{"type":"Point","coordinates":[76580,34929]},{"type":"Point","coordinates":[65196,37041]},{"type":"Point","coordinates":[1271,26099]},{"type":"Point","coordinates":[1271,26099]},{"type":"Point","coordinates":[94740,28958]},{"type":"Point","coordinates":[61185,37496]},{"type":"Point","coordinates":[90766,30549]},{"type":"Point","coordinates":[94746,28958]},{"type":"Point","coordinates":[77106,34814]},{"type":"Point","coordinates":[94748,28968]},{"type":"Point","coordinates":[94739,28973]},{"type":"Point","coordinates":[60928,37536]},{"type":"Point","coordinates":[94896,28912]},{"type":"Point","coordinates":[89826,30921]},{"type":"Point","coordinates":[94411,29123]},{"type":"Point","coordinates":[76582,34960]},{"type":"Point","coordinates":[76587,34959]},{"type":"Point","coordinates":[60932,37547]},{"type":"Point","coordinates":[60926,37552]},{"type":"Point","coordinates":[78053,34604]},{"type":"Point","coordinates":[95109,28840]},{"type":"Point","coordinates":[60932,37556]},{"type":"Point","coordinates":[60942,37558]},{"type":"Point","coordinates":[78093,34607]},{"type":"Point","coordinates":[76598,34979]},{"type":"Point","coordinates":[85905,32327]},{"type":"Point","coordinates":[60928,37572]},{"type":"Point","coordinates":[76568,34992]},{"type":"Point","coordinates":[1441,26241]},{"type":"Point","coordinates":[77823,34700]},{"type":"Point","coordinates":[88892,31320]},{"type":"Point","coordinates":[92291,30040]},{"type":"Point","coordinates":[93011,29753]},{"type":"Point","coordinates":[92291,30040]},{"type":"Point","coordinates":[90912,30576]},{"type":"Point","coordinates":[92294,30041]},{"type":"Point","coordinates":[3973,27461]},{"type":"Point","coordinates":[76133,35125]},{"type":"Point","coordinates":[77698,34748]},{"type":"Point","coordinates":[1380,26244]},{"type":"Point","coordinates":[94747,29047]},{"type":"Point","coordinates":[1375,26251]},{"type":"Point","coordinates":[92282,30061]},{"type":"Point","coordinates":[92282,30061]},{"type":"Point","coordinates":[88329,31544]},{"type":"Point","coordinates":[92294,30058]},{"type":"Point","coordinates":[94899,28995]},{"type":"Point","coordinates":[76258,35123]},{"type":"Point","coordinates":[93480,29609]},{"type":"Point","coordinates":[85690,32479]},{"type":"Point","coordinates":[85690,32479]},{"type":"Point","coordinates":[1360,26280]},{"type":"Point","coordinates":[76538,35079]},{"type":"Point","coordinates":[75888,35234]},{"type":"Point","coordinates":[75888,35235]},{"type":"Point","coordinates":[75888,35235]},{"type":"Point","coordinates":[75887,35236]},{"type":"Point","coordinates":[92182,30145]},{"type":"Point","coordinates":[1365,26294]},{"type":"Point","coordinates":[1361,26294]},{"type":"Point","coordinates":[90620,30753]},{"type":"Point","coordinates":[78049,34728]},{"type":"Point","coordinates":[77213,34939]},{"type":"Point","coordinates":[76532,35106]},{"type":"Point","coordinates":[90689,30742]},{"type":"Point","coordinates":[91833,30305]},{"type":"Point","coordinates":[7973,29294]},{"type":"Point","coordinates":[1363,26318]},{"type":"Point","coordinates":[93486,29649]},{"type":"Point","coordinates":[77179,34963]},{"type":"Point","coordinates":[94849,29094]},{"type":"Point","coordinates":[76446,35144]},{"type":"Point","coordinates":[92385,30106]},{"type":"Point","coordinates":[92385,30106]},{"type":"Point","coordinates":[92379,30109]},{"type":"Point","coordinates":[92377,30110]},{"type":"Point","coordinates":[79489,34383]},{"type":"Point","coordinates":[79487,34388]},{"type":"Point","coordinates":[93015,29865]},{"type":"Point","coordinates":[75884,35293]},{"type":"Point","coordinates":[77246,34968]},{"type":"Point","coordinates":[93202,29801]},{"type":"Point","coordinates":[93202,29801]},{"type":"Point","coordinates":[76340,35196]},{"type":"Point","coordinates":[77328,34958]},{"type":"Point","coordinates":[77327,34959]},{"type":"Point","coordinates":[77347,34957]},{"type":"Point","coordinates":[79617,34373]},{"type":"Point","coordinates":[77324,34970]},{"type":"Point","coordinates":[92932,29927]},{"type":"Point","coordinates":[75733,35356]},{"type":"Point","coordinates":[1360,26373]},{"type":"Point","coordinates":[76118,35270]},{"type":"Point","coordinates":[75727,35361]},{"type":"Point","coordinates":[77080,35049]},{"type":"Point","coordinates":[76379,35219]},{"type":"Point","coordinates":[76385,35223]},{"type":"Point","coordinates":[92360,30179]},{"type":"Point","coordinates":[77345,34997]},{"type":"Point","coordinates":[65161,37297]},{"type":"Point","coordinates":[75239,35497]},{"type":"Point","coordinates":[92352,30188]},{"type":"Point","coordinates":[90446,30925]},{"type":"Point","coordinates":[77589,34942]},{"type":"Point","coordinates":[92358,30194]},{"type":"Point","coordinates":[76506,35211]},{"type":"Point","coordinates":[76511,35212]},{"type":"Point","coordinates":[76513,35213]},{"type":"Point","coordinates":[93039,29927]},{"type":"Point","coordinates":[92358,30199]},{"type":"Point","coordinates":[76385,35245]},{"type":"Point","coordinates":[92358,30200]},{"type":"Point","coordinates":[1354,26419]},{"type":"Point","coordinates":[1356,26424]},{"type":"Point","coordinates":[1313,26404]},{"type":"Point","coordinates":[87683,31957]},{"type":"Point","coordinates":[1356,26436]},{"type":"Point","coordinates":[1356,26436]},{"type":"Point","coordinates":[1356,26436]},{"type":"Point","coordinates":[76740,35182]},{"type":"Point","coordinates":[1373,26449]},{"type":"Point","coordinates":[1335,26431]},{"type":"Point","coordinates":[1335,26431]},{"type":"Point","coordinates":[1335,26431]},{"type":"Point","coordinates":[1335,26431]},{"type":"Point","coordinates":[1335,26433]},{"type":"Point","coordinates":[1335,26433]},{"type":"Point","coordinates":[1335,26433]},{"type":"Point","coordinates":[54879,38190]},{"type":"Point","coordinates":[1349,26442]},{"type":"Point","coordinates":[1349,26442]},{"type":"Point","coordinates":[75723,35436]},{"type":"Point","coordinates":[1352,26450]},{"type":"Point","coordinates":[1360,26456]},{"type":"Point","coordinates":[1357,26455]},{"type":"Point","coordinates":[93947,29602]},{"type":"Point","coordinates":[93947,29603]},{"type":"Point","coordinates":[7950,29433]},{"type":"Point","coordinates":[66012,37246]},{"type":"Point","coordinates":[1355,26468]},{"type":"Point","coordinates":[77040,35141]},{"type":"Point","coordinates":[76356,35308]},{"type":"Point","coordinates":[77537,35024]},{"type":"Point","coordinates":[1311,26454]},{"type":"Point","coordinates":[3558,27518]},{"type":"Point","coordinates":[1357,26478]},{"type":"Point","coordinates":[93557,29783]},{"type":"Point","coordinates":[1356,26480]},{"type":"Point","coordinates":[77240,35104]},{"type":"Point","coordinates":[1364,26486]},{"type":"Point","coordinates":[77234,35106]},{"type":"Point","coordinates":[76942,35181]},{"type":"Point","coordinates":[1365,26498]},{"type":"Point","coordinates":[77309,35099]},{"type":"Point","coordinates":[76865,35208]},{"type":"Point","coordinates":[76328,35338]},{"type":"Point","coordinates":[76972,35183]},{"type":"Point","coordinates":[1370,26504]},{"type":"Point","coordinates":[77378,35085]},{"type":"Point","coordinates":[1308,26474]},{"type":"Point","coordinates":[1318,26483]},{"type":"Point","coordinates":[1366,26506]},{"type":"Point","coordinates":[1339,26493]},{"type":"Point","coordinates":[77019,35178]},{"type":"Point","coordinates":[77301,35113]},{"type":"Point","coordinates":[65141,37405]},{"type":"Point","coordinates":[77052,35176]},{"type":"Point","coordinates":[1318,26491]},{"type":"Point","coordinates":[65140,37406]},{"type":"Point","coordinates":[75741,35494]},{"type":"Point","coordinates":[7956,29487]},{"type":"Point","coordinates":[1366,26523]},{"type":"Point","coordinates":[93119,30005]},{"type":"Point","coordinates":[77092,35184]},{"type":"Point","coordinates":[77186,35162]},{"type":"Point","coordinates":[1366,26533]},{"type":"Point","coordinates":[96328,28663]},{"type":"Point","coordinates":[76589,35308]},{"type":"Point","coordinates":[1351,26530]},{"type":"Point","coordinates":[7826,29450]},{"type":"Point","coordinates":[77333,35131]},{"type":"Point","coordinates":[91954,30481]},{"type":"Point","coordinates":[1382,26551]},{"type":"Point","coordinates":[1326,26525]},{"type":"Point","coordinates":[1425,26574]},{"type":"Point","coordinates":[1290,26514]},{"type":"Point","coordinates":[1367,26552]},{"type":"Point","coordinates":[1364,26552]},{"type":"Point","coordinates":[77125,35196]},{"type":"Point","coordinates":[1361,26552]},{"type":"Point","coordinates":[1363,26555]},{"type":"Point","coordinates":[1364,26555]},{"type":"Point","coordinates":[76805,35278]},{"type":"Point","coordinates":[1364,26559]},{"type":"Point","coordinates":[1363,26559]},{"type":"Point","coordinates":[1364,26559]},{"type":"Point","coordinates":[1366,26561]},{"type":"Point","coordinates":[1366,26561]},{"type":"Point","coordinates":[1364,26560]},{"type":"Point","coordinates":[1364,26560]},{"type":"Point","coordinates":[1363,26560]},{"type":"Point","coordinates":[1363,26561]},{"type":"Point","coordinates":[1363,26561]},{"type":"Point","coordinates":[1363,26561]},{"type":"Point","coordinates":[94289,29558]},{"type":"Point","coordinates":[1363,26561]},{"type":"Point","coordinates":[1363,26562]},{"type":"Point","coordinates":[92965,30110]},{"type":"Point","coordinates":[4540,28060]},{"type":"Point","coordinates":[1345,26564]},{"type":"Point","coordinates":[1364,26574]},{"type":"Point","coordinates":[64139,37590]},{"type":"Point","coordinates":[1337,26562]},{"type":"Point","coordinates":[77112,35223]},{"type":"Point","coordinates":[1357,26574]},{"type":"Point","coordinates":[1360,26577]},{"type":"Point","coordinates":[76865,35288]},{"type":"Point","coordinates":[1365,26585]},{"type":"Point","coordinates":[76929,35275]},{"type":"Point","coordinates":[1349,26578]},{"type":"Point","coordinates":[1349,26579]},{"type":"Point","coordinates":[1352,26581]},{"type":"Point","coordinates":[77058,35247]},{"type":"Point","coordinates":[1356,26584]},{"type":"Point","coordinates":[1363,26591]},{"type":"Point","coordinates":[77066,35249]},{"type":"Point","coordinates":[94040,29693]},{"type":"Point","coordinates":[1364,26593]},{"type":"Point","coordinates":[1345,26584]},{"type":"Point","coordinates":[1345,26584]},{"type":"Point","coordinates":[1348,26587]},{"type":"Point","coordinates":[1351,26589]},{"type":"Point","coordinates":[79715,34573]},{"type":"Point","coordinates":[76980,35274]},{"type":"Point","coordinates":[1343,26587]},{"type":"Point","coordinates":[1342,26587]},{"type":"Point","coordinates":[4502,28067]},{"type":"Point","coordinates":[1341,26587]},{"type":"Point","coordinates":[1342,26588]},{"type":"Point","coordinates":[1339,26588]},{"type":"Point","coordinates":[76640,35360]},{"type":"Point","coordinates":[1343,26592]},{"type":"Point","coordinates":[1351,26597]},{"type":"Point","coordinates":[1351,26597]},{"type":"Point","coordinates":[4489,28067]},{"type":"Point","coordinates":[89298,31546]},{"type":"Point","coordinates":[76719,35349]},{"type":"Point","coordinates":[1335,26594]},{"type":"Point","coordinates":[1334,26595]},{"type":"Point","coordinates":[1332,26596]},{"type":"Point","coordinates":[1332,26598]},{"type":"Point","coordinates":[77685,35119]},{"type":"Point","coordinates":[1328,26599]},{"type":"Point","coordinates":[1329,26602]},{"type":"Point","coordinates":[1337,26611]},{"type":"Point","coordinates":[4430,28063]},{"type":"Point","coordinates":[85590,32853]},{"type":"Point","coordinates":[76918,35323]},{"type":"Point","coordinates":[76658,35387]},{"type":"Point","coordinates":[1320,26622]},{"type":"Point","coordinates":[77055,35304]},{"type":"Point","coordinates":[1321,26626]},{"type":"Point","coordinates":[76756,35379]},{"type":"Point","coordinates":[77140,35290]},{"type":"Point","coordinates":[1322,26633]},{"type":"Point","coordinates":[1321,26634]},{"type":"Point","coordinates":[77485,35208]},{"type":"Point","coordinates":[79514,34688]},{"type":"Point","coordinates":[1328,26644]},{"type":"Point","coordinates":[1165,26565]},{"type":"Point","coordinates":[92160,30518]},{"type":"Point","coordinates":[77531,35207]},{"type":"Point","coordinates":[3520,27689]},{"type":"Point","coordinates":[77083,35321]},{"type":"Point","coordinates":[92314,30471]},{"type":"Point","coordinates":[76767,35407]},{"type":"Point","coordinates":[77602,35204]},{"type":"Point","coordinates":[77347,35269]},{"type":"Point","coordinates":[3523,27705]},{"type":"Point","coordinates":[75453,35732]},{"type":"Point","coordinates":[77712,35192]},{"type":"Point","coordinates":[78068,35121]},{"type":"Point","coordinates":[62756,37886]},{"type":"Point","coordinates":[92321,30509]},{"type":"Point","coordinates":[77754,35204]},{"type":"Point","coordinates":[77193,35343]},{"type":"Point","coordinates":[79482,34757]},{"type":"Point","coordinates":[76952,35403]},{"type":"Point","coordinates":[79483,34760]},{"type":"Point","coordinates":[77087,35377]},{"type":"Point","coordinates":[91638,30789]},{"type":"Point","coordinates":[1297,26699]},{"type":"Point","coordinates":[77126,35376]},{"type":"Point","coordinates":[89353,31657]},{"type":"Point","coordinates":[1320,26719]},{"type":"Point","coordinates":[89348,31661]},{"type":"Point","coordinates":[89348,31661]},{"type":"Point","coordinates":[89348,31662]},{"type":"Point","coordinates":[3572,27787]},{"type":"Point","coordinates":[89351,31665]},{"type":"Point","coordinates":[89351,31666]},{"type":"Point","coordinates":[1394,26765]},{"type":"Point","coordinates":[3453,27742]},{"type":"Point","coordinates":[77396,35325]},{"type":"Point","coordinates":[92425,30505]},{"type":"Point","coordinates":[77023,35418]},{"type":"Point","coordinates":[89347,31680]},{"type":"Point","coordinates":[89347,31680]},{"type":"Point","coordinates":[1295,26726]},{"type":"Point","coordinates":[76972,35435]},{"type":"Point","coordinates":[89346,31681]},{"type":"Point","coordinates":[77042,35419]},{"type":"Point","coordinates":[89346,31682]},{"type":"Point","coordinates":[89346,31682]},{"type":"Point","coordinates":[89346,31682]},{"type":"Point","coordinates":[77053,35420]},{"type":"Point","coordinates":[4066,28037]},{"type":"Point","coordinates":[3519,27788]},{"type":"Point","coordinates":[1273,26726]},{"type":"Point","coordinates":[1273,26726]},{"type":"Point","coordinates":[1272,26728]},{"type":"Point","coordinates":[91250,30981]},{"type":"Point","coordinates":[64302,37762]},{"type":"Point","coordinates":[63794,37824]},{"type":"Point","coordinates":[81303,34306]},{"type":"Point","coordinates":[81303,34306]},{"type":"Point","coordinates":[81303,34306]},{"type":"Point","coordinates":[1270,26729]},{"type":"Point","coordinates":[1270,26729]},{"type":"Point","coordinates":[64014,37798]},{"type":"Point","coordinates":[1268,26730]},{"type":"Point","coordinates":[1268,26730]},{"type":"Point","coordinates":[63787,37827]},{"type":"Point","coordinates":[3939,27991]},{"type":"Point","coordinates":[63796,37829]},{"type":"Point","coordinates":[3980,28014]},{"type":"Point","coordinates":[1268,26736]},{"type":"Point","coordinates":[76703,35523]},{"type":"Point","coordinates":[3985,28017]},{"type":"Point","coordinates":[76763,35509]},{"type":"Point","coordinates":[63792,37833]},{"type":"Point","coordinates":[77023,35448]},{"type":"Point","coordinates":[3956,28006]},{"type":"Point","coordinates":[76953,35467]},{"type":"Point","coordinates":[3963,28012]},{"type":"Point","coordinates":[77069,35441]},{"type":"Point","coordinates":[3962,28015]},{"type":"Point","coordinates":[89352,31712]},{"type":"Point","coordinates":[92969,30330]},{"type":"Point","coordinates":[77275,35397]},{"type":"Point","coordinates":[1056,26649]},{"type":"Point","coordinates":[93032,30307]},{"type":"Point","coordinates":[1235,26739]},{"type":"Point","coordinates":[1246,26754]},{"type":"Point","coordinates":[77340,35397]},{"type":"Point","coordinates":[4242,28166]},{"type":"Point","coordinates":[77087,35462]},{"type":"Point","coordinates":[50933,38609]},{"type":"Point","coordinates":[77675,35318]},{"type":"Point","coordinates":[77409,35386]},{"type":"Point","coordinates":[86529,32727]},{"type":"Point","coordinates":[86456,32753]},{"type":"Point","coordinates":[3620,27888]},{"type":"Point","coordinates":[1298,26793]},{"type":"Point","coordinates":[1298,26793]},{"type":"Point","coordinates":[77039,35483]},{"type":"Point","coordinates":[90507,31316]},{"type":"Point","coordinates":[77275,35426]},{"type":"Point","coordinates":[1240,26768]},{"type":"Point","coordinates":[1301,26798]},{"type":"Point","coordinates":[76867,35530]},{"type":"Point","coordinates":[1301,26802]},{"type":"Point","coordinates":[77412,35398]},{"type":"Point","coordinates":[1302,26803]},{"type":"Point","coordinates":[1307,26807]},{"type":"Point","coordinates":[93599,30114]},{"type":"Point","coordinates":[77077,35483]},{"type":"Point","coordinates":[3987,28072]},{"type":"Point","coordinates":[76684,35581]},{"type":"Point","coordinates":[1304,26810]},{"type":"Point","coordinates":[1304,26811]},{"type":"Point","coordinates":[77086,35486]},{"type":"Point","coordinates":[1306,26813]},{"type":"Point","coordinates":[1306,26818]},{"type":"Point","coordinates":[1307,26819]},{"type":"Point","coordinates":[1306,26818]},{"type":"Point","coordinates":[1306,26819]},{"type":"Point","coordinates":[1306,26819]},{"type":"Point","coordinates":[1306,26819]},{"type":"Point","coordinates":[1306,26819]},{"type":"Point","coordinates":[1306,26819]},{"type":"Point","coordinates":[3155,27698]},{"type":"Point","coordinates":[77710,35341]},{"type":"Point","coordinates":[76739,35583]},{"type":"Point","coordinates":[75394,35901]},{"type":"Point","coordinates":[77181,35480]},{"type":"Point","coordinates":[1273,26815]},{"type":"Point","coordinates":[77257,35462]},{"type":"Point","coordinates":[89338,31784]},{"type":"Point","coordinates":[51189,38654]},{"type":"Point","coordinates":[76782,35586]},{"type":"Point","coordinates":[89338,31793]},{"type":"Point","coordinates":[1281,26831]},{"type":"Point","coordinates":[77191,35489]},{"type":"Point","coordinates":[89336,31801]},{"type":"Point","coordinates":[89336,31802]},{"type":"Point","coordinates":[77338,35463]},{"type":"Point","coordinates":[63747,37933]},{"type":"Point","coordinates":[89321,31815]},{"type":"Point","coordinates":[63021,38020]},{"type":"Point","coordinates":[50984,38679]},{"type":"Point","coordinates":[50984,38680]},{"type":"Point","coordinates":[1225,26826]},{"type":"Point","coordinates":[1254,26844]},{"type":"Point","coordinates":[1207,26823]},{"type":"Point","coordinates":[4099,28187]},{"type":"Point","coordinates":[55116,38617]},{"type":"Point","coordinates":[77359,35479]},{"type":"Point","coordinates":[76706,35638]},{"type":"Point","coordinates":[79601,34902]},{"type":"Point","coordinates":[97482,28523]},{"type":"Point","coordinates":[1214,26833]},{"type":"Point","coordinates":[76663,35656]},{"type":"Point","coordinates":[77270,35509]},{"type":"Point","coordinates":[90877,31261]},{"type":"Point","coordinates":[1275,26876]},{"type":"Point","coordinates":[77268,35517]},{"type":"Point","coordinates":[97353,28598]},{"type":"Point","coordinates":[77413,35490]},{"type":"Point","coordinates":[77333,35512]},{"type":"Point","coordinates":[78437,35235]},{"type":"Point","coordinates":[93213,30368]},{"type":"Point","coordinates":[77123,35571]},{"type":"Point","coordinates":[77123,35571]},{"type":"Point","coordinates":[77123,35571]},{"type":"Point","coordinates":[63747,37987]},{"type":"Point","coordinates":[63748,37987]},{"type":"Point","coordinates":[1318,26919]},{"type":"Point","coordinates":[77138,35576]},{"type":"Point","coordinates":[93212,30385]},{"type":"Point","coordinates":[77195,35569]},{"type":"Point","coordinates":[76755,35677]},{"type":"Point","coordinates":[91148,31205]},{"type":"Point","coordinates":[77233,35570]},{"type":"Point","coordinates":[77390,35534]},{"type":"Point","coordinates":[3581,28016]},{"type":"Point","coordinates":[49659,38758]},{"type":"Point","coordinates":[77423,35544]},{"type":"Point","coordinates":[77120,35619]},{"type":"Point","coordinates":[1292,26965]},{"type":"Point","coordinates":[76554,35768]},{"type":"Point","coordinates":[77118,35633]},{"type":"Point","coordinates":[1314,26981]},{"type":"Point","coordinates":[1141,26898]},{"type":"Point","coordinates":[77314,35592]},{"type":"Point","coordinates":[76761,35730]},{"type":"Point","coordinates":[77271,35606]},{"type":"Point","coordinates":[77158,35634]},{"type":"Point","coordinates":[77007,35672]},{"type":"Point","coordinates":[77174,35633]},{"type":"Point","coordinates":[77126,35648]},{"type":"Point","coordinates":[51122,38802]},{"type":"Point","coordinates":[77253,35621]},{"type":"Point","coordinates":[76934,35700]},{"type":"Point","coordinates":[91513,31129]},{"type":"Point","coordinates":[77255,35624]},{"type":"Point","coordinates":[82653,34158]},{"type":"Point","coordinates":[77121,35660]},{"type":"Point","coordinates":[91508,31136]},{"type":"Point","coordinates":[76849,35729]},{"type":"Point","coordinates":[91504,31143]},{"type":"Point","coordinates":[77092,35677]},{"type":"Point","coordinates":[3945,28255]},{"type":"Point","coordinates":[91502,31157]},{"type":"Point","coordinates":[77177,35668]},{"type":"Point","coordinates":[22499,34989]},{"type":"Point","coordinates":[76832,35754]},{"type":"Point","coordinates":[76940,35730]},{"type":"Point","coordinates":[90950,31375]},{"type":"Point","coordinates":[90439,31569]},{"type":"Point","coordinates":[76974,35724]},{"type":"Point","coordinates":[76736,35783]},{"type":"Point","coordinates":[76417,35860]},{"type":"Point","coordinates":[1614,27184]},{"type":"Point","coordinates":[78592,35329]},{"type":"Point","coordinates":[78592,35329]},{"type":"Point","coordinates":[78592,35329]},{"type":"Point","coordinates":[77416,35627]},{"type":"Point","coordinates":[91280,31268]},{"type":"Point","coordinates":[76934,35751]},{"type":"Point","coordinates":[77273,35672]},{"type":"Point","coordinates":[77205,35689]},{"type":"Point","coordinates":[88608,32262]},{"type":"Point","coordinates":[91221,31299]},{"type":"Point","coordinates":[76808,35790]},{"type":"Point","coordinates":[88607,32273]},{"type":"Point","coordinates":[77053,35745]},{"type":"Point","coordinates":[77232,35708]},{"type":"Point","coordinates":[77020,35764]},{"type":"Point","coordinates":[76878,35799]},{"type":"Point","coordinates":[76726,35838]},{"type":"Point","coordinates":[77008,35770]},{"type":"Point","coordinates":[77270,35707]},{"type":"Point","coordinates":[3882,28302]},{"type":"Point","coordinates":[90389,31649]},{"type":"Point","coordinates":[77234,35723]},{"type":"Point","coordinates":[1283,27087]},{"type":"Point","coordinates":[3645,28204]},{"type":"Point","coordinates":[77242,35726]},{"type":"Point","coordinates":[77245,35728]},{"type":"Point","coordinates":[77643,35631]},{"type":"Point","coordinates":[76829,35836]},{"type":"Point","coordinates":[77650,35634]},{"type":"Point","coordinates":[3403,28103]},{"type":"Point","coordinates":[77326,35716]},{"type":"Point","coordinates":[76951,35810]},{"type":"Point","coordinates":[1269,27099]},{"type":"Point","coordinates":[77650,35641]},{"type":"Point","coordinates":[77244,35744]},{"type":"Point","coordinates":[77249,35744]},{"type":"Point","coordinates":[90150,31768]},{"type":"Point","coordinates":[90108,31785]},{"type":"Point","coordinates":[76988,35818]},{"type":"Point","coordinates":[76744,35878]},{"type":"Point","coordinates":[77249,35757]},{"type":"Point","coordinates":[1230,27098]},{"type":"Point","coordinates":[77242,35760]},{"type":"Point","coordinates":[88395,32422]},{"type":"Point","coordinates":[76459,35953]},{"type":"Point","coordinates":[80989,34777]},{"type":"Point","coordinates":[77246,35764]},{"type":"Point","coordinates":[77246,35764]},{"type":"Point","coordinates":[89298,32104]},{"type":"Point","coordinates":[77251,35768]},{"type":"Point","coordinates":[77363,35746]},{"type":"Point","coordinates":[77143,35807]},{"type":"Point","coordinates":[77414,35746]},{"type":"Point","coordinates":[77144,35813]},{"type":"Point","coordinates":[89213,32159]},{"type":"Point","coordinates":[77513,35729]},{"type":"Point","coordinates":[76860,35892]},{"type":"Point","coordinates":[90122,31833]},{"type":"Point","coordinates":[76915,35882]},{"type":"Point","coordinates":[89922,31911]},{"type":"Point","coordinates":[77773,35674]},{"type":"Point","coordinates":[1264,27164]},{"type":"Point","coordinates":[1300,27183]},{"type":"Point","coordinates":[77322,35789]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[77425,35764]},{"type":"Point","coordinates":[76914,35892]},{"type":"Point","coordinates":[77337,35791]},{"type":"Point","coordinates":[1231,27155]},{"type":"Point","coordinates":[77510,35750]},{"type":"Point","coordinates":[89283,32157]},{"type":"Point","coordinates":[89280,32159]},{"type":"Point","coordinates":[70914,37177]},{"type":"Point","coordinates":[1253,27171]},{"type":"Point","coordinates":[1256,27173]},{"type":"Point","coordinates":[91423,31362]},{"type":"Point","coordinates":[76658,35963]},{"type":"Point","coordinates":[1263,27179]},{"type":"Point","coordinates":[84378,33826]},{"type":"Point","coordinates":[84378,33826]},{"type":"Point","coordinates":[1260,27179]},{"type":"Point","coordinates":[90768,31618]},{"type":"Point","coordinates":[1281,27195]},{"type":"Point","coordinates":[1281,27195]},{"type":"Point","coordinates":[1281,27195]},{"type":"Point","coordinates":[65638,38033]},{"type":"Point","coordinates":[50844,39011]},{"type":"Point","coordinates":[1285,27201]},{"type":"Point","coordinates":[77292,35821]},{"type":"Point","coordinates":[77167,35854]},{"type":"Point","coordinates":[76849,35933]},{"type":"Point","coordinates":[77373,35810]},{"type":"Point","coordinates":[1183,27163]},{"type":"Point","coordinates":[76884,35938]},{"type":"Point","coordinates":[77779,35719]},{"type":"Point","coordinates":[65655,38056]},{"type":"Point","coordinates":[65655,38056]},{"type":"Point","coordinates":[1267,27219]},{"type":"Point","coordinates":[91201,31486]},{"type":"Point","coordinates":[77001,35920]},{"type":"Point","coordinates":[77003,35920]},{"type":"Point","coordinates":[77301,35849]},{"type":"Point","coordinates":[77007,35921]},{"type":"Point","coordinates":[77005,35924]},{"type":"Point","coordinates":[77016,35922]},{"type":"Point","coordinates":[77007,35925]},{"type":"Point","coordinates":[77007,35925]},{"type":"Point","coordinates":[77011,35924]},{"type":"Point","coordinates":[77011,35924]},{"type":"Point","coordinates":[77010,35925]},{"type":"Point","coordinates":[77286,35858]},{"type":"Point","coordinates":[77286,35858]},{"type":"Point","coordinates":[77008,35926]},{"type":"Point","coordinates":[77288,35860]},{"type":"Point","coordinates":[77285,35864]},{"type":"Point","coordinates":[77287,35863]},{"type":"Point","coordinates":[1351,27282]},{"type":"Point","coordinates":[77290,35871]},{"type":"Point","coordinates":[77429,35843]},{"type":"Point","coordinates":[65869,38061]},{"type":"Point","coordinates":[87328,32924]},{"type":"Point","coordinates":[78036,35694]},{"type":"Point","coordinates":[78522,35579]},{"type":"Point","coordinates":[78522,35579]},{"type":"Point","coordinates":[91124,31559]},{"type":"Point","coordinates":[77721,35787]},{"type":"Point","coordinates":[77133,35933]},{"type":"Point","coordinates":[77130,35935]},{"type":"Point","coordinates":[77345,35887]},{"type":"Point","coordinates":[78126,35694]},{"type":"Point","coordinates":[91132,31569]},{"type":"Point","coordinates":[5078,29052]},{"type":"Point","coordinates":[51103,39099]},{"type":"Point","coordinates":[77232,35926]},{"type":"Point","coordinates":[51319,39103]},{"type":"Point","coordinates":[82308,34566]},{"type":"Point","coordinates":[77010,35989]},{"type":"Point","coordinates":[89187,32310]},{"type":"Point","coordinates":[77010,35989]},{"type":"Point","coordinates":[77009,35992]},{"type":"Point","coordinates":[51308,39118]},{"type":"Point","coordinates":[51308,39118]},{"type":"Point","coordinates":[51308,39119]},{"type":"Point","coordinates":[77380,35907]},{"type":"Point","coordinates":[91138,31593]},{"type":"Point","coordinates":[77834,35795]},{"type":"Point","coordinates":[77025,36004]},{"type":"Point","coordinates":[77027,36006]},{"type":"Point","coordinates":[89759,32129]},{"type":"Point","coordinates":[77628,35868]},{"type":"Point","coordinates":[77276,35961]},{"type":"Point","coordinates":[1233,27320]},{"type":"Point","coordinates":[77121,36002]},{"type":"Point","coordinates":[77195,35984]},{"type":"Point","coordinates":[77247,35978]},{"type":"Point","coordinates":[78607,35640]},{"type":"Point","coordinates":[76674,36122]},{"type":"Point","coordinates":[77165,36003]},{"type":"Point","coordinates":[77165,36010]},{"type":"Point","coordinates":[77206,36008]},{"type":"Point","coordinates":[87080,33125]},{"type":"Point","coordinates":[1148,27314]},{"type":"Point","coordinates":[1243,27370]},{"type":"Point","coordinates":[87329,33053]},{"type":"Point","coordinates":[87326,33056]},{"type":"Point","coordinates":[77279,36013]},{"type":"Point","coordinates":[77631,35936]},{"type":"Point","coordinates":[77631,35936]},{"type":"Point","coordinates":[77180,36059]},{"type":"Point","coordinates":[77236,36046]},{"type":"Point","coordinates":[77558,35976]},{"type":"Point","coordinates":[51304,39235]},{"type":"Point","coordinates":[77663,35958]},{"type":"Point","coordinates":[86823,33273]},{"type":"Point","coordinates":[77369,36041]},{"type":"Point","coordinates":[51367,39251]},{"type":"Point","coordinates":[76659,36226]},{"type":"Point","coordinates":[1015,27331]},{"type":"Point","coordinates":[77148,36109]},{"type":"Point","coordinates":[89896,32207]},{"type":"Point","coordinates":[89914,32201]},{"type":"Point","coordinates":[77575,36006]},{"type":"Point","coordinates":[88582,32691]},{"type":"Point","coordinates":[78603,35755]},{"type":"Point","coordinates":[1404,27531]},{"type":"Point","coordinates":[65627,38301]},{"type":"Point","coordinates":[77208,36109]},{"type":"Point","coordinates":[89921,32212]},{"type":"Point","coordinates":[936,27311]},{"type":"Point","coordinates":[65635,38306]},{"type":"Point","coordinates":[77163,36127]},{"type":"Point","coordinates":[83651,34342]},{"type":"Point","coordinates":[77548,36042]},{"type":"Point","coordinates":[77215,36126]},{"type":"Point","coordinates":[77231,36133]},{"type":"Point","coordinates":[73469,36988]},{"type":"Point","coordinates":[949,27350]},{"type":"Point","coordinates":[77205,36150]},{"type":"Point","coordinates":[1350,27553]},{"type":"Point","coordinates":[82202,34814]},{"type":"Point","coordinates":[82203,34814]},{"type":"Point","coordinates":[77332,36126]},{"type":"Point","coordinates":[77232,36153]},{"type":"Point","coordinates":[77216,36160]},{"type":"Point","coordinates":[77558,36076]},{"type":"Point","coordinates":[91302,31750]},{"type":"Point","coordinates":[2697,28209]},{"type":"Point","coordinates":[950,27378]},{"type":"Point","coordinates":[89903,32281]},{"type":"Point","coordinates":[76811,36267]},{"type":"Point","coordinates":[76308,36393]},{"type":"Point","coordinates":[77923,36004]},{"type":"Point","coordinates":[77271,36168]},{"type":"Point","coordinates":[1305,27567]},{"type":"Point","coordinates":[77434,36142]},{"type":"Point","coordinates":[88842,32695]},{"type":"Point","coordinates":[77226,36194]},{"type":"Point","coordinates":[77082,36229]},{"type":"Point","coordinates":[78003,36005]},{"type":"Point","coordinates":[87223,33268]},{"type":"Point","coordinates":[70830,37571]},{"type":"Point","coordinates":[70830,37571]},{"type":"Point","coordinates":[77130,36227]},{"type":"Point","coordinates":[93801,30814]},{"type":"Point","coordinates":[65715,38402]},{"type":"Point","coordinates":[90901,31960]},{"type":"Point","coordinates":[75642,36601]},{"type":"Point","coordinates":[90945,31952]},{"type":"Point","coordinates":[77557,36146]},{"type":"Point","coordinates":[88541,32841]},{"type":"Point","coordinates":[88396,32894]},{"type":"Point","coordinates":[77285,36227]},{"type":"Point","coordinates":[77191,36253]},{"type":"Point","coordinates":[78589,35906]},{"type":"Point","coordinates":[78589,35906]},{"type":"Point","coordinates":[77114,36280]},{"type":"Point","coordinates":[77414,36207]},{"type":"Point","coordinates":[77414,36207]},{"type":"Point","coordinates":[90902,31996]},{"type":"Point","coordinates":[87341,33288]},{"type":"Point","coordinates":[90954,31991]},{"type":"Point","coordinates":[77791,36131]},{"type":"Point","coordinates":[78198,36037]},{"type":"Point","coordinates":[86145,33712]},{"type":"Point","coordinates":[78154,36061]},{"type":"Point","coordinates":[924,27499]},{"type":"Point","coordinates":[77410,36251]},{"type":"Point","coordinates":[90888,32046]},{"type":"Point","coordinates":[77584,36218]},{"type":"Point","coordinates":[77209,36312]},{"type":"Point","coordinates":[77071,36346]},{"type":"Point","coordinates":[87316,33350]},{"type":"Point","coordinates":[87316,33350]},{"type":"Point","coordinates":[91389,31877]},{"type":"Point","coordinates":[1100,27610]},{"type":"Point","coordinates":[77425,36276]},{"type":"Point","coordinates":[957,27546]},{"type":"Point","coordinates":[4113,29031]},{"type":"Point","coordinates":[78710,35962]},{"type":"Point","coordinates":[90302,32309]},{"type":"Point","coordinates":[65679,38533]},{"type":"Point","coordinates":[70705,37738]},{"type":"Point","coordinates":[77217,36352]},{"type":"Point","coordinates":[91083,32032]},{"type":"Point","coordinates":[77615,36264]},{"type":"Point","coordinates":[88925,32837]},{"type":"Point","coordinates":[78619,36014]},{"type":"Point","coordinates":[78611,36017]},{"type":"Point","coordinates":[77368,36331]},{"type":"Point","coordinates":[77179,36388]},{"type":"Point","coordinates":[89155,32770]},{"type":"Point","coordinates":[89156,32771]},{"type":"Point","coordinates":[89156,32772]},{"type":"Point","coordinates":[76990,36448]},{"type":"Point","coordinates":[920,27596]},{"type":"Point","coordinates":[77578,36308]},{"type":"Point","coordinates":[77578,36308]},{"type":"Point","coordinates":[77279,36389]},{"type":"Point","coordinates":[923,27620]},{"type":"Point","coordinates":[77286,36403]},{"type":"Point","coordinates":[77632,36318]},{"type":"Point","coordinates":[89579,32657]},{"type":"Point","coordinates":[65971,38572]},{"type":"Point","coordinates":[917,27628]},{"type":"Point","coordinates":[944,27642]},{"type":"Point","coordinates":[925,27633]},{"type":"Point","coordinates":[899,27626]},{"type":"Point","coordinates":[77566,36351]},{"type":"Point","coordinates":[90746,32242]},{"type":"Point","coordinates":[88960,32901]},{"type":"Point","coordinates":[77223,36461]},{"type":"Point","coordinates":[4181,29210]},{"type":"Point","coordinates":[76786,36580]},{"type":"Point","coordinates":[93379,31251]},{"type":"Point","coordinates":[77674,36368]},{"type":"Point","coordinates":[73511,37329]},{"type":"Point","coordinates":[89702,32693]},{"type":"Point","coordinates":[78619,36150]},{"type":"Point","coordinates":[89702,32693]},{"type":"Point","coordinates":[2943,28673]},{"type":"Point","coordinates":[89705,32695]},{"type":"Point","coordinates":[944,27732]},{"type":"Point","coordinates":[89705,32704]},{"type":"Point","coordinates":[961,27742]},{"type":"Point","coordinates":[88090,33285]},{"type":"Point","coordinates":[69165,38178]},{"type":"Point","coordinates":[88089,33292]},{"type":"Point","coordinates":[88068,33300]},{"type":"Point","coordinates":[4183,29275]},{"type":"Point","coordinates":[77609,36452]},{"type":"Point","coordinates":[77387,36514]},{"type":"Point","coordinates":[90837,32328]},{"type":"Point","coordinates":[84595,34503]},{"type":"Point","coordinates":[78099,36370]},{"type":"Point","coordinates":[77484,36532]},{"type":"Point","coordinates":[78825,36193]},{"type":"Point","coordinates":[78826,36195]},{"type":"Point","coordinates":[78826,36195]},{"type":"Point","coordinates":[78914,36175]},{"type":"Point","coordinates":[78914,36175]},{"type":"Point","coordinates":[77302,36583]},{"type":"Point","coordinates":[80019,35883]},{"type":"Point","coordinates":[80019,35883]},{"type":"Point","coordinates":[77521,36534]},{"type":"Point","coordinates":[77521,36534]},{"type":"Point","coordinates":[79043,36147]},{"type":"Point","coordinates":[78647,36256]},{"type":"Point","coordinates":[2796,28738]},{"type":"Point","coordinates":[91440,32180]},{"type":"Point","coordinates":[78821,36241]},{"type":"Point","coordinates":[90044,32717]},{"type":"Point","coordinates":[85146,34410]},{"type":"Point","coordinates":[88785,33176]},{"type":"Point","coordinates":[77201,36659]},{"type":"Point","coordinates":[90919,32408]},{"type":"Point","coordinates":[935,27888]},{"type":"Point","coordinates":[77027,36734]},{"type":"Point","coordinates":[1033,27958]},{"type":"Point","coordinates":[92419,31852]},{"type":"Point","coordinates":[90864,32457]},{"type":"Point","coordinates":[91041,32392]},{"type":"Point","coordinates":[90575,32569]},{"type":"Point","coordinates":[1426,28158]},{"type":"Point","coordinates":[90682,32531]},{"type":"Point","coordinates":[92346,31893]},{"type":"Point","coordinates":[77230,36711]},{"type":"Point","coordinates":[1516,28216]},{"type":"Point","coordinates":[91139,32380]},{"type":"Point","coordinates":[88605,33335]},{"type":"Point","coordinates":[88607,33337]},{"type":"Point","coordinates":[90823,32538]},{"type":"Point","coordinates":[88634,33363]},{"type":"Point","coordinates":[88634,33363]},{"type":"Point","coordinates":[88634,33363]},{"type":"Point","coordinates":[1096,28084]},{"type":"Point","coordinates":[88634,33363]},{"type":"Point","coordinates":[88634,33363]},{"type":"Point","coordinates":[77101,36811]},{"type":"Point","coordinates":[86097,34241]},{"type":"Point","coordinates":[88580,33392]},{"type":"Point","coordinates":[88063,33575]},{"type":"Point","coordinates":[89250,33156]},{"type":"Point","coordinates":[874,27992]},{"type":"Point","coordinates":[89907,32922]},{"type":"Point","coordinates":[91491,32337]},{"type":"Point","coordinates":[85573,34440]},{"type":"Point","coordinates":[88506,33451]},{"type":"Point","coordinates":[88066,33606]},{"type":"Point","coordinates":[2959,29014]},{"type":"Point","coordinates":[89414,33130]},{"type":"Point","coordinates":[762,27977]},{"type":"Point","coordinates":[79748,36196]},{"type":"Point","coordinates":[90616,32703]},{"type":"Point","coordinates":[78137,36622]},{"type":"Point","coordinates":[90037,32940]},{"type":"Point","coordinates":[89417,33180]},{"type":"Point","coordinates":[77319,36856]},{"type":"Point","coordinates":[861,28081]},{"type":"Point","coordinates":[89420,33190]},{"type":"Point","coordinates":[886,28104]},{"type":"Point","coordinates":[78940,36495]},{"type":"Point","coordinates":[78938,36496]},{"type":"Point","coordinates":[79648,36309]},{"type":"Point","coordinates":[79650,36311]},{"type":"Point","coordinates":[92197,32192]},{"type":"Point","coordinates":[88614,33532]},{"type":"Point","coordinates":[2854,29086]},{"type":"Point","coordinates":[1969,28671]},{"type":"Point","coordinates":[91667,32409]},{"type":"Point","coordinates":[3112,29214]},{"type":"Point","coordinates":[89433,33249]},{"type":"Point","coordinates":[89422,33257]},{"type":"Point","coordinates":[89408,33264]},{"type":"Point","coordinates":[79710,36321]},{"type":"Point","coordinates":[89391,33271]},{"type":"Point","coordinates":[990,28217]},{"type":"Point","coordinates":[89367,33282]},{"type":"Point","coordinates":[89399,33270]},{"type":"Point","coordinates":[92302,32174]},{"type":"Point","coordinates":[89756,33140]},{"type":"Point","coordinates":[87771,33852]},{"type":"Point","coordinates":[89384,33283]},{"type":"Point","coordinates":[89384,33283]},{"type":"Point","coordinates":[89384,33284]},{"type":"Point","coordinates":[92357,32162]},{"type":"Point","coordinates":[89900,33096]},{"type":"Point","coordinates":[91130,32638]},{"type":"Point","coordinates":[3109,29238]},{"type":"Point","coordinates":[91191,32620]},{"type":"Point","coordinates":[925,28207]},{"type":"Point","coordinates":[77316,36960]},{"type":"Point","coordinates":[92297,32202]},{"type":"Point","coordinates":[77406,36941]},{"type":"Point","coordinates":[3089,29240]},{"type":"Point","coordinates":[77406,36943]},{"type":"Point","coordinates":[91953,32338]},{"type":"Point","coordinates":[87645,33921]},{"type":"Point","coordinates":[77253,36983]},{"type":"Point","coordinates":[89121,33402]},{"type":"Point","coordinates":[76293,37221]},{"type":"Point","coordinates":[90920,32751]},{"type":"Point","coordinates":[92360,32200]},{"type":"Point","coordinates":[91958,32360]},{"type":"Point","coordinates":[92298,32229]},{"type":"Point","coordinates":[92299,32229]},{"type":"Point","coordinates":[1126,28338]},{"type":"Point","coordinates":[92354,32208]},{"type":"Point","coordinates":[92490,32157]},{"type":"Point","coordinates":[92351,32213]},{"type":"Point","coordinates":[92300,32234]},{"type":"Point","coordinates":[90910,32770]},{"type":"Point","coordinates":[90925,32771]},{"type":"Point","coordinates":[90926,32772]},{"type":"Point","coordinates":[90923,32777]},{"type":"Point","coordinates":[87570,33992]},{"type":"Point","coordinates":[90922,32782]},{"type":"Point","coordinates":[83673,35263]},{"type":"Point","coordinates":[90941,32777]},{"type":"Point","coordinates":[90960,32772]},{"type":"Point","coordinates":[90960,32773]},{"type":"Point","coordinates":[90934,32784]},{"type":"Point","coordinates":[92292,32261]},{"type":"Point","coordinates":[92293,32261]},{"type":"Point","coordinates":[92193,32305]},{"type":"Point","coordinates":[90900,32809]},{"type":"Point","coordinates":[986,28315]},{"type":"Point","coordinates":[90900,32813]},{"type":"Point","coordinates":[3006,29276]},{"type":"Point","coordinates":[970,28310]},{"type":"Point","coordinates":[90902,32814]},{"type":"Point","coordinates":[90942,32803]},{"type":"Point","coordinates":[90944,32803]},{"type":"Point","coordinates":[83257,35421]},{"type":"Point","coordinates":[91005,32785]},{"type":"Point","coordinates":[92863,32064]},{"type":"Point","coordinates":[92863,32065]},{"type":"Point","coordinates":[2936,29257]},{"type":"Point","coordinates":[90949,32810]},{"type":"Point","coordinates":[90944,32812]},{"type":"Point","coordinates":[914,28305]},{"type":"Point","coordinates":[90948,32820]},{"type":"Point","coordinates":[90946,32821]},{"type":"Point","coordinates":[90948,32821]},{"type":"Point","coordinates":[92702,32143]},{"type":"Point","coordinates":[90948,32823]},{"type":"Point","coordinates":[91989,32427]},{"type":"Point","coordinates":[907,28312]},{"type":"Point","coordinates":[76950,37158]},{"type":"Point","coordinates":[901,28315]},{"type":"Point","coordinates":[90970,32826]},{"type":"Point","coordinates":[77748,36967]},{"type":"Point","coordinates":[90923,32844]},{"type":"Point","coordinates":[87632,34037]},{"type":"Point","coordinates":[90908,32853]},{"type":"Point","coordinates":[87692,34020]},{"type":"Point","coordinates":[878,28312]},{"type":"Point","coordinates":[877,28311]},{"type":"Point","coordinates":[91655,32574]},{"type":"Point","coordinates":[90920,32855]},{"type":"Point","coordinates":[891,28329]},{"type":"Point","coordinates":[892,28330]},{"type":"Point","coordinates":[77360,37083]},{"type":"Point","coordinates":[883,28329]},{"type":"Point","coordinates":[905,28339]},{"type":"Point","coordinates":[883,28329]},{"type":"Point","coordinates":[75886,37436]},{"type":"Point","coordinates":[902,28340]},{"type":"Point","coordinates":[892,28336]},{"type":"Point","coordinates":[911,28347]},{"type":"Point","coordinates":[911,28347]},{"type":"Point","coordinates":[92508,32259]},{"type":"Point","coordinates":[936,28360]},{"type":"Point","coordinates":[91529,32641]},{"type":"Point","coordinates":[1038,28412]},{"type":"Point","coordinates":[91531,32642]},{"type":"Point","coordinates":[914,28352]},{"type":"Point","coordinates":[75894,37443]},{"type":"Point","coordinates":[898,28346]},{"type":"Point","coordinates":[921,28359]},{"type":"Point","coordinates":[912,28355]},{"type":"Point","coordinates":[880,28340]},{"type":"Point","coordinates":[900,28350]},{"type":"Point","coordinates":[91088,32816]},{"type":"Point","coordinates":[901,28351]},{"type":"Point","coordinates":[908,28356]},{"type":"Point","coordinates":[897,28350]},{"type":"Point","coordinates":[879,28341]},{"type":"Point","coordinates":[899,28351]},{"type":"Point","coordinates":[941,28372]},{"type":"Point","coordinates":[902,28353]},{"type":"Point","coordinates":[880,28343]},{"type":"Point","coordinates":[899,28352]},{"type":"Point","coordinates":[909,28357]},{"type":"Point","coordinates":[896,28351]},{"type":"Point","coordinates":[901,28354]},{"type":"Point","coordinates":[897,28352]},{"type":"Point","coordinates":[896,28352]},{"type":"Point","coordinates":[923,28365]},{"type":"Point","coordinates":[899,28353]},{"type":"Point","coordinates":[899,28354]},{"type":"Point","coordinates":[897,28353]},{"type":"Point","coordinates":[896,28353]},{"type":"Point","coordinates":[903,28356]},{"type":"Point","coordinates":[897,28354]},{"type":"Point","coordinates":[896,28353]},{"type":"Point","coordinates":[901,28356]},{"type":"Point","coordinates":[904,28357]},{"type":"Point","coordinates":[897,28354]},{"type":"Point","coordinates":[945,28377]},{"type":"Point","coordinates":[904,28357]},{"type":"Point","coordinates":[897,28354]},{"type":"Point","coordinates":[900,28355]},{"type":"Point","coordinates":[902,28357]},{"type":"Point","coordinates":[958,28384]},{"type":"Point","coordinates":[896,28354]},{"type":"Point","coordinates":[914,28363]},{"type":"Point","coordinates":[902,28357]},{"type":"Point","coordinates":[906,28359]},{"type":"Point","coordinates":[900,28356]},{"type":"Point","coordinates":[916,28364]},{"type":"Point","coordinates":[908,28360]},{"type":"Point","coordinates":[906,28359]},{"type":"Point","coordinates":[903,28358]},{"type":"Point","coordinates":[903,28358]},{"type":"Point","coordinates":[898,28356]},{"type":"Point","coordinates":[902,28358]},{"type":"Point","coordinates":[898,28356]},{"type":"Point","coordinates":[897,28356]},{"type":"Point","coordinates":[898,28356]},{"type":"Point","coordinates":[896,28356]},{"type":"Point","coordinates":[907,28362]},{"type":"Point","coordinates":[904,28361]},{"type":"Point","coordinates":[907,28362]},{"type":"Point","coordinates":[897,28357]},{"type":"Point","coordinates":[915,28366]},{"type":"Point","coordinates":[911,28364]},{"type":"Point","coordinates":[911,28365]},{"type":"Point","coordinates":[899,28359]},{"type":"Point","coordinates":[898,28359]},{"type":"Point","coordinates":[910,28365]},{"type":"Point","coordinates":[898,28359]},{"type":"Point","coordinates":[898,28359]},{"type":"Point","coordinates":[914,28367]},{"type":"Point","coordinates":[918,28369]},{"type":"Point","coordinates":[898,28359]},{"type":"Point","coordinates":[897,28360]},{"type":"Point","coordinates":[895,28359]},{"type":"Point","coordinates":[923,28373]},{"type":"Point","coordinates":[902,28363]},{"type":"Point","coordinates":[917,28371]},{"type":"Point","coordinates":[909,28367]},{"type":"Point","coordinates":[906,28366]},{"type":"Point","coordinates":[63066,39647]},{"type":"Point","coordinates":[914,28371]},{"type":"Point","coordinates":[900,28364]},{"type":"Point","coordinates":[944,28385]},{"type":"Point","coordinates":[899,28364]},{"type":"Point","coordinates":[1009,28417]},{"type":"Point","coordinates":[904,28366]},{"type":"Point","coordinates":[937,28382]},{"type":"Point","coordinates":[898,28364]},{"type":"Point","coordinates":[906,28368]},{"type":"Point","coordinates":[906,28368]},{"type":"Point","coordinates":[910,28370]},{"type":"Point","coordinates":[893,28362]},{"type":"Point","coordinates":[903,28367]},{"type":"Point","coordinates":[894,28363]},{"type":"Point","coordinates":[895,28364]},{"type":"Point","coordinates":[894,28363]},{"type":"Point","coordinates":[898,28365]},{"type":"Point","coordinates":[898,28365]},{"type":"Point","coordinates":[898,28365]},{"type":"Point","coordinates":[898,28366]},{"type":"Point","coordinates":[905,28369]},{"type":"Point","coordinates":[898,28366]},{"type":"Point","coordinates":[894,28364]},{"type":"Point","coordinates":[898,28365]},{"type":"Point","coordinates":[899,28366]},{"type":"Point","coordinates":[905,28369]},{"type":"Point","coordinates":[900,28367]},{"type":"Point","coordinates":[894,28364]},{"type":"Point","coordinates":[898,28366]},{"type":"Point","coordinates":[905,28370]},{"type":"Point","coordinates":[894,28364]},{"type":"Point","coordinates":[900,28368]},{"type":"Point","coordinates":[898,28367]},{"type":"Point","coordinates":[898,28367]},{"type":"Point","coordinates":[946,28390]},{"type":"Point","coordinates":[946,28390]},{"type":"Point","coordinates":[946,28390]},{"type":"Point","coordinates":[946,28390]},{"type":"Point","coordinates":[905,28371]},{"type":"Point","coordinates":[905,28371]},{"type":"Point","coordinates":[905,28371]},{"type":"Point","coordinates":[908,28373]},{"type":"Point","coordinates":[909,28374]},{"type":"Point","coordinates":[1040,28438]},{"type":"Point","coordinates":[899,28370]},{"type":"Point","coordinates":[881,28362]},{"type":"Point","coordinates":[899,28370]},{"type":"Point","coordinates":[904,28373]},{"type":"Point","coordinates":[899,28371]},{"type":"Point","coordinates":[83724,35362]},{"type":"Point","coordinates":[899,28371]},{"type":"Point","coordinates":[90894,32911]},{"type":"Point","coordinates":[898,28371]},{"type":"Point","coordinates":[898,28371]},{"type":"Point","coordinates":[898,28371]},{"type":"Point","coordinates":[898,28371]},{"type":"Point","coordinates":[905,28377]},{"type":"Point","coordinates":[90898,32912]},{"type":"Point","coordinates":[904,28378]},{"type":"Point","coordinates":[90898,32913]},{"type":"Point","coordinates":[933,28393]},{"type":"Point","coordinates":[896,28376]},{"type":"Point","coordinates":[906,28382]},{"type":"Point","coordinates":[90974,32887]},{"type":"Point","coordinates":[90896,32917]},{"type":"Point","coordinates":[2875,29321]},{"type":"Point","coordinates":[894,28379]},{"type":"Point","coordinates":[90974,32891]},{"type":"Point","coordinates":[900,28384]},{"type":"Point","coordinates":[902,28385]},{"type":"Point","coordinates":[902,28385]},{"type":"Point","coordinates":[914,28390]},{"type":"Point","coordinates":[898,28383]},{"type":"Point","coordinates":[901,28385]},{"type":"Point","coordinates":[901,28384]},{"type":"Point","coordinates":[899,28383]},{"type":"Point","coordinates":[901,28385]},{"type":"Point","coordinates":[906,28387]},{"type":"Point","coordinates":[907,28388]},{"type":"Point","coordinates":[90987,32888]},{"type":"Point","coordinates":[900,28385]},{"type":"Point","coordinates":[906,28389]},{"type":"Point","coordinates":[906,28389]},{"type":"Point","coordinates":[904,28388]},{"type":"Point","coordinates":[902,28388]},{"type":"Point","coordinates":[904,28389]},{"type":"Point","coordinates":[905,28390]},{"type":"Point","coordinates":[911,28393]},{"type":"Point","coordinates":[916,28396]},{"type":"Point","coordinates":[907,28392]},{"type":"Point","coordinates":[2808,29298]},{"type":"Point","coordinates":[902,28393]},{"type":"Point","coordinates":[903,28394]},{"type":"Point","coordinates":[903,28395]},{"type":"Point","coordinates":[902,28395]},{"type":"Point","coordinates":[894,28391]},{"type":"Point","coordinates":[903,28395]},{"type":"Point","coordinates":[903,28396]},{"type":"Point","coordinates":[906,28398]},{"type":"Point","coordinates":[91103,32855]},{"type":"Point","coordinates":[903,28397]},{"type":"Point","coordinates":[902,28397]},{"type":"Point","coordinates":[90849,32952]},{"type":"Point","coordinates":[91104,32857]},{"type":"Point","coordinates":[90989,32904]},{"type":"Point","coordinates":[90989,32905]},{"type":"Point","coordinates":[90990,32906]},{"type":"Point","coordinates":[90988,32908]},{"type":"Point","coordinates":[89347,33517]},{"type":"Point","coordinates":[88755,33730]},{"type":"Point","coordinates":[90989,32912]},{"type":"Point","coordinates":[90989,32912]},{"type":"Point","coordinates":[90990,32913]},{"type":"Point","coordinates":[90987,32914]},{"type":"Point","coordinates":[90989,32913]},{"type":"Point","coordinates":[90990,32913]},{"type":"Point","coordinates":[90987,32921]},{"type":"Point","coordinates":[90987,32921]},{"type":"Point","coordinates":[90984,32922]},{"type":"Point","coordinates":[90987,32921]},{"type":"Point","coordinates":[90987,32921]},{"type":"Point","coordinates":[90988,32921]},{"type":"Point","coordinates":[90988,32921]},{"type":"Point","coordinates":[91119,32873]},{"type":"Point","coordinates":[926,28433]},{"type":"Point","coordinates":[90990,32923]},{"type":"Point","coordinates":[90990,32923]},{"type":"Point","coordinates":[90996,32921]},{"type":"Point","coordinates":[90985,32926]},{"type":"Point","coordinates":[90990,32924]},{"type":"Point","coordinates":[90991,32924]},{"type":"Point","coordinates":[90991,32924]},{"type":"Point","coordinates":[90985,32926]},{"type":"Point","coordinates":[90990,32924]},{"type":"Point","coordinates":[90991,32924]},{"type":"Point","coordinates":[90990,32924]},{"type":"Point","coordinates":[90991,32924]},{"type":"Point","coordinates":[90985,32927]},{"type":"Point","coordinates":[918,28432]},{"type":"Point","coordinates":[920,28434]},{"type":"Point","coordinates":[861,28405]},{"type":"Point","coordinates":[861,28406]},{"type":"Point","coordinates":[861,28406]},{"type":"Point","coordinates":[861,28406]},{"type":"Point","coordinates":[90997,32924]},{"type":"Point","coordinates":[90997,32924]},{"type":"Point","coordinates":[91309,32806]},{"type":"Point","coordinates":[62781,39739]},{"type":"Point","coordinates":[91308,32808]},{"type":"Point","coordinates":[91308,32809]},{"type":"Point","coordinates":[91300,32812]},{"type":"Point","coordinates":[91309,32809]},{"type":"Point","coordinates":[91300,32813]},{"type":"Point","coordinates":[90982,32934]},{"type":"Point","coordinates":[858,28409]},{"type":"Point","coordinates":[79442,36643]},{"type":"Point","coordinates":[91546,32720]},{"type":"Point","coordinates":[91546,32720]},{"type":"Point","coordinates":[91546,32720]},{"type":"Point","coordinates":[91306,32812]},{"type":"Point","coordinates":[91546,32721]},{"type":"Point","coordinates":[912,28437]},{"type":"Point","coordinates":[922,28444]},{"type":"Point","coordinates":[857,28412]},{"type":"Point","coordinates":[857,28412]},{"type":"Point","coordinates":[857,28412]},{"type":"Point","coordinates":[857,28413]},{"type":"Point","coordinates":[857,28413]},{"type":"Point","coordinates":[857,28413]},{"type":"Point","coordinates":[91631,32691]},{"type":"Point","coordinates":[91545,32724]},{"type":"Point","coordinates":[858,28414]},{"type":"Point","coordinates":[922,28445]},{"type":"Point","coordinates":[921,28446]},{"type":"Point","coordinates":[90990,32940]},{"type":"Point","coordinates":[857,28418]},{"type":"Point","coordinates":[863,28422]},{"type":"Point","coordinates":[932,28457]},{"type":"Point","coordinates":[930,28456]},{"type":"Point","coordinates":[90989,32944]},{"type":"Point","coordinates":[834,28410]},{"type":"Point","coordinates":[860,28424]},{"type":"Point","coordinates":[91308,32824]},{"type":"Point","coordinates":[91467,32763]},{"type":"Point","coordinates":[860,28424]},{"type":"Point","coordinates":[860,28425]},{"type":"Point","coordinates":[859,28426]},{"type":"Point","coordinates":[90995,32945]},{"type":"Point","coordinates":[850,28422]},{"type":"Point","coordinates":[849,28423]},{"type":"Point","coordinates":[859,28429]},{"type":"Point","coordinates":[859,28429]},{"type":"Point","coordinates":[859,28429]},{"type":"Point","coordinates":[91730,32669]},{"type":"Point","coordinates":[83598,35482]},{"type":"Point","coordinates":[90798,33030]},{"type":"Point","coordinates":[91086,32922]},{"type":"Point","coordinates":[90795,33033]},{"type":"Point","coordinates":[91086,32924]},{"type":"Point","coordinates":[3058,29484]},{"type":"Point","coordinates":[91086,32925]},{"type":"Point","coordinates":[91088,32925]},{"type":"Point","coordinates":[91087,32926]},{"type":"Point","coordinates":[87666,34168]},{"type":"Point","coordinates":[76889,37323]},{"type":"Point","coordinates":[70187,38724]},{"type":"Point","coordinates":[91687,32703]},{"type":"Point","coordinates":[91686,32711]},{"type":"Point","coordinates":[73704,38057]},{"type":"Point","coordinates":[73702,38058]},{"type":"Point","coordinates":[865,28476]},{"type":"Point","coordinates":[77674,37160]},{"type":"Point","coordinates":[1386,28731]},{"type":"Point","coordinates":[73704,38071]},{"type":"Point","coordinates":[852,28483]},{"type":"Point","coordinates":[869,28492]},{"type":"Point","coordinates":[73706,38082]},{"type":"Point","coordinates":[64897,39568]},{"type":"Point","coordinates":[87591,34239]},{"type":"Point","coordinates":[92156,32564]},{"type":"Point","coordinates":[87569,34253]},{"type":"Point","coordinates":[91917,32663]},{"type":"Point","coordinates":[83947,35448]},{"type":"Point","coordinates":[92158,32584]},{"type":"Point","coordinates":[77392,37267]},{"type":"Point","coordinates":[923,28549]},{"type":"Point","coordinates":[90019,33401]},{"type":"Point","coordinates":[91602,32808]},{"type":"Point","coordinates":[92162,32594]},{"type":"Point","coordinates":[91603,32819]},{"type":"Point","coordinates":[64900,39614]},{"type":"Point","coordinates":[91619,32818]},{"type":"Point","coordinates":[1500,28849]},{"type":"Point","coordinates":[91606,32825]},{"type":"Point","coordinates":[91606,32825]},{"type":"Point","coordinates":[92167,32615]},{"type":"Point","coordinates":[89763,33536]},{"type":"Point","coordinates":[90883,33127]},{"type":"Point","coordinates":[67448,39292]},{"type":"Point","coordinates":[90887,33134]},{"type":"Point","coordinates":[90886,33134]},{"type":"Point","coordinates":[911,28604]},{"type":"Point","coordinates":[90886,33138]},{"type":"Point","coordinates":[90885,33138]},{"type":"Point","coordinates":[90887,33138]},{"type":"Point","coordinates":[90885,33141]},{"type":"Point","coordinates":[655,28483]},{"type":"Point","coordinates":[90888,33140]},{"type":"Point","coordinates":[839,28573]},{"type":"Point","coordinates":[90886,33142]},{"type":"Point","coordinates":[91323,32977]},{"type":"Point","coordinates":[91329,32976]},{"type":"Point","coordinates":[89756,33567]},{"type":"Point","coordinates":[89756,33567]},{"type":"Point","coordinates":[89747,33574]},{"type":"Point","coordinates":[91325,32984]},{"type":"Point","coordinates":[84064,35496]},{"type":"Point","coordinates":[90886,33154]},{"type":"Point","coordinates":[945,28640]},{"type":"Point","coordinates":[84069,35502]},{"type":"Point","coordinates":[91824,32804]},{"type":"Point","coordinates":[84042,35513]},{"type":"Point","coordinates":[76481,37577]},{"type":"Point","coordinates":[76612,37549]},{"type":"Point","coordinates":[76611,37550]},{"type":"Point","coordinates":[84059,35513]},{"type":"Point","coordinates":[90861,33179]},{"type":"Point","coordinates":[3015,29644]},{"type":"Point","coordinates":[2850,29570]},{"type":"Point","coordinates":[84045,35529]},{"type":"Point","coordinates":[76440,37605]},{"type":"Point","coordinates":[91798,32836]},{"type":"Point","coordinates":[69626,38995]},{"type":"Point","coordinates":[91799,32837]},{"type":"Point","coordinates":[2972,29633]},{"type":"Point","coordinates":[91798,32838]},{"type":"Point","coordinates":[92465,32580]},{"type":"Point","coordinates":[91798,32840]},{"type":"Point","coordinates":[91833,32828]},{"type":"Point","coordinates":[91797,32842]},{"type":"Point","coordinates":[91797,32844]},{"type":"Point","coordinates":[91803,32843]},{"type":"Point","coordinates":[91799,32844]},{"type":"Point","coordinates":[91801,32844]},{"type":"Point","coordinates":[80081,36691]},{"type":"Point","coordinates":[91803,32843]},{"type":"Point","coordinates":[91803,32843]},{"type":"Point","coordinates":[91803,32843]},{"type":"Point","coordinates":[831,28624]},{"type":"Point","coordinates":[90285,33421]},{"type":"Point","coordinates":[90287,33421]},{"type":"Point","coordinates":[697,28566]},{"type":"Point","coordinates":[721,28579]},{"type":"Point","coordinates":[87852,34301]},{"type":"Point","coordinates":[90285,33429]},{"type":"Point","coordinates":[76070,37717]},{"type":"Point","coordinates":[90001,33539]},{"type":"Point","coordinates":[90881,33217]},{"type":"Point","coordinates":[76048,37729]},{"type":"Point","coordinates":[90883,33218]},{"type":"Point","coordinates":[714,28592]},{"type":"Point","coordinates":[715,28593]},{"type":"Point","coordinates":[90887,33220]},{"type":"Point","coordinates":[90876,33225]},{"type":"Point","coordinates":[713,28594]},{"type":"Point","coordinates":[90876,33225]},{"type":"Point","coordinates":[700,28590]},{"type":"Point","coordinates":[83940,35606]},{"type":"Point","coordinates":[90882,33228]},{"type":"Point","coordinates":[91827,32868]},{"type":"Point","coordinates":[86608,34750]},{"type":"Point","coordinates":[91827,32869]},{"type":"Point","coordinates":[91824,32871]},{"type":"Point","coordinates":[90902,33223]},{"type":"Point","coordinates":[83939,35611]},{"type":"Point","coordinates":[91821,32875]},{"type":"Point","coordinates":[90892,33231]},{"type":"Point","coordinates":[87300,34528]},{"type":"Point","coordinates":[87306,34530]},{"type":"Point","coordinates":[87306,34530]},{"type":"Point","coordinates":[873,28696]},{"type":"Point","coordinates":[90939,33227]},{"type":"Point","coordinates":[90938,33228]},{"type":"Point","coordinates":[90938,33228]},{"type":"Point","coordinates":[90943,33227]},{"type":"Point","coordinates":[78745,37100]},{"type":"Point","coordinates":[62806,40011]},{"type":"Point","coordinates":[90879,33256]},{"type":"Point","coordinates":[90879,33256]},{"type":"Point","coordinates":[91177,33144]},{"type":"Point","coordinates":[90944,33239]},{"type":"Point","coordinates":[90519,33398]},{"type":"Point","coordinates":[828,28690]},{"type":"Point","coordinates":[828,28691]},{"type":"Point","coordinates":[828,28694]},{"type":"Point","coordinates":[90929,33250]},{"type":"Point","coordinates":[84501,35472]},{"type":"Point","coordinates":[83756,35703]},{"type":"Point","coordinates":[83956,35642]},{"type":"Point","coordinates":[90868,33290]},{"type":"Point","coordinates":[90869,33291]},{"type":"Point","coordinates":[90869,33291]},{"type":"Point","coordinates":[90870,33292]},{"type":"Point","coordinates":[90870,33293]},{"type":"Point","coordinates":[739,28674]},{"type":"Point","coordinates":[91809,32938]},{"type":"Point","coordinates":[91809,32938]},{"type":"Point","coordinates":[90864,33300]},{"type":"Point","coordinates":[89538,33791]},{"type":"Point","coordinates":[90863,33301]},{"type":"Point","coordinates":[90864,33301]},{"type":"Point","coordinates":[90869,33300]},{"type":"Point","coordinates":[91816,32939]},{"type":"Point","coordinates":[91815,32940]},{"type":"Point","coordinates":[91817,32939]},{"type":"Point","coordinates":[91817,32939]},{"type":"Point","coordinates":[91817,32939]},{"type":"Point","coordinates":[91815,32940]},{"type":"Point","coordinates":[738,28681]},{"type":"Point","coordinates":[91814,32941]},{"type":"Point","coordinates":[698,28663]},{"type":"Point","coordinates":[84451,35517]},{"type":"Point","coordinates":[693,28661]},{"type":"Point","coordinates":[90887,33297]},{"type":"Point","coordinates":[629,28631]},{"type":"Point","coordinates":[62729,40067]},{"type":"Point","coordinates":[707,28670]},{"type":"Point","coordinates":[79944,36834]},{"type":"Point","coordinates":[62726,40070]},{"type":"Point","coordinates":[712,28675]},{"type":"Point","coordinates":[712,28675]},{"type":"Point","coordinates":[712,28675]},{"type":"Point","coordinates":[700,28669]},{"type":"Point","coordinates":[704,28671]},{"type":"Point","coordinates":[710,28674]},{"type":"Point","coordinates":[706,28672]},{"type":"Point","coordinates":[711,28675]},{"type":"Point","coordinates":[711,28675]},{"type":"Point","coordinates":[711,28675]},{"type":"Point","coordinates":[711,28675]},{"type":"Point","coordinates":[712,28676]},{"type":"Point","coordinates":[699,28670]},{"type":"Point","coordinates":[706,28673]},{"type":"Point","coordinates":[709,28675]},{"type":"Point","coordinates":[712,28676]},{"type":"Point","coordinates":[90862,33312]},{"type":"Point","coordinates":[709,28675]},{"type":"Point","coordinates":[711,28676]},{"type":"Point","coordinates":[710,28676]},{"type":"Point","coordinates":[710,28676]},{"type":"Point","coordinates":[708,28675]},{"type":"Point","coordinates":[709,28676]},{"type":"Point","coordinates":[709,28676]},{"type":"Point","coordinates":[708,28676]},{"type":"Point","coordinates":[685,28664]},{"type":"Point","coordinates":[699,28672]},{"type":"Point","coordinates":[709,28678]},{"type":"Point","coordinates":[707,28677]},{"type":"Point","coordinates":[707,28677]},{"type":"Point","coordinates":[700,28674]},{"type":"Point","coordinates":[90863,33315]},{"type":"Point","coordinates":[707,28678]},{"type":"Point","coordinates":[707,28678]},{"type":"Point","coordinates":[708,28678]},{"type":"Point","coordinates":[708,28678]},{"type":"Point","coordinates":[708,28679]},{"type":"Point","coordinates":[708,28679]},{"type":"Point","coordinates":[709,28680]},{"type":"Point","coordinates":[709,28680]},{"type":"Point","coordinates":[709,28680]},{"type":"Point","coordinates":[707,28679]},{"type":"Point","coordinates":[709,28680]},{"type":"Point","coordinates":[704,28678]},{"type":"Point","coordinates":[709,28681]},{"type":"Point","coordinates":[709,28680]},{"type":"Point","coordinates":[709,28681]},{"type":"Point","coordinates":[709,28680]},{"type":"Point","coordinates":[707,28680]},{"type":"Point","coordinates":[708,28681]},{"type":"Point","coordinates":[709,28681]},{"type":"Point","coordinates":[704,28679]},{"type":"Point","coordinates":[708,28681]},{"type":"Point","coordinates":[710,28682]},{"type":"Point","coordinates":[709,28682]},{"type":"Point","coordinates":[710,28683]},{"type":"Point","coordinates":[709,28683]},{"type":"Point","coordinates":[709,28683]},{"type":"Point","coordinates":[708,28683]},{"type":"Point","coordinates":[707,28683]},{"type":"Point","coordinates":[710,28684]},{"type":"Point","coordinates":[707,28683]},{"type":"Point","coordinates":[90872,33318]},{"type":"Point","coordinates":[707,28684]},{"type":"Point","coordinates":[90311,33529]},{"type":"Point","coordinates":[90862,33324]},{"type":"Point","coordinates":[90908,33307]},{"type":"Point","coordinates":[87654,34483]},{"type":"Point","coordinates":[683,28677]},{"type":"Point","coordinates":[90886,33318]},{"type":"Point","coordinates":[90891,33320]},{"type":"Point","coordinates":[90906,33318]},{"type":"Point","coordinates":[90914,33316]},{"type":"Point","coordinates":[90906,33320]},{"type":"Point","coordinates":[90906,33320]},{"type":"Point","coordinates":[90905,33321]},{"type":"Point","coordinates":[90905,33321]},{"type":"Point","coordinates":[90906,33321]},{"type":"Point","coordinates":[91108,33250]},{"type":"Point","coordinates":[90876,33339]},{"type":"Point","coordinates":[90901,33331]},{"type":"Point","coordinates":[90869,33347]},{"type":"Point","coordinates":[90860,33351]},{"type":"Point","coordinates":[90868,33351]},{"type":"Point","coordinates":[658,28696]},{"type":"Point","coordinates":[90868,33355]},{"type":"Point","coordinates":[90891,33347]},{"type":"Point","coordinates":[90870,33356]},{"type":"Point","coordinates":[89956,33698]},{"type":"Point","coordinates":[959,28846]},{"type":"Point","coordinates":[80987,36602]},{"type":"Point","coordinates":[702,28728]},{"type":"Point","coordinates":[89946,33711]},{"type":"Point","coordinates":[89946,33711]},{"type":"Point","coordinates":[91264,33218]},{"type":"Point","coordinates":[91264,33218]},{"type":"Point","coordinates":[857,28814]},{"type":"Point","coordinates":[698,28737]},{"type":"Point","coordinates":[90899,33365]},{"type":"Point","coordinates":[613,28700]},{"type":"Point","coordinates":[682,28733]},{"type":"Point","coordinates":[91254,33238]},{"type":"Point","coordinates":[90313,33595]},{"type":"Point","coordinates":[36700,39805]},{"type":"Point","coordinates":[84040,35745]},{"type":"Point","coordinates":[90130,33680]},{"type":"Point","coordinates":[68226,39443]},{"type":"Point","coordinates":[91771,33075]},{"type":"Point","coordinates":[72353,38718]},{"type":"Point","coordinates":[90261,33651]},{"type":"Point","coordinates":[89548,33914]},{"type":"Point","coordinates":[91291,33266]},{"type":"Point","coordinates":[87158,34759]},{"type":"Point","coordinates":[89545,33926]},{"type":"Point","coordinates":[1168,29027]},{"type":"Point","coordinates":[681,28804]},{"type":"Point","coordinates":[90943,33422]},{"type":"Point","coordinates":[22460,37008]},{"type":"Point","coordinates":[90940,33437]},{"type":"Point","coordinates":[90940,33440]},{"type":"Point","coordinates":[63019,40194]},{"type":"Point","coordinates":[91350,33285]},{"type":"Point","coordinates":[90830,33485]},{"type":"Point","coordinates":[90838,33482]},{"type":"Point","coordinates":[90944,33443]},{"type":"Point","coordinates":[87718,34618]},{"type":"Point","coordinates":[649,28827]},{"type":"Point","coordinates":[676,28840]},{"type":"Point","coordinates":[91282,33332]},{"type":"Point","coordinates":[90847,33498]},{"type":"Point","coordinates":[675,28845]},{"type":"Point","coordinates":[92505,32864]},{"type":"Point","coordinates":[91784,33145]},{"type":"Point","coordinates":[91784,33146]},{"type":"Point","coordinates":[675,28847]},{"type":"Point","coordinates":[685,28852]},{"type":"Point","coordinates":[2579,29758]},{"type":"Point","coordinates":[62957,40230]},{"type":"Point","coordinates":[85799,35282]},{"type":"Point","coordinates":[91257,33356]},{"type":"Point","coordinates":[90848,33514]},{"type":"Point","coordinates":[90689,33575]},{"type":"Point","coordinates":[62838,40253]},{"type":"Point","coordinates":[92016,33074]},{"type":"Point","coordinates":[84106,35834]},{"type":"Point","coordinates":[90723,33575]},{"type":"Point","coordinates":[90983,33479]},{"type":"Point","coordinates":[90984,33479]},{"type":"Point","coordinates":[90984,33479]},{"type":"Point","coordinates":[90983,33480]},{"type":"Point","coordinates":[90984,33479]},{"type":"Point","coordinates":[90983,33480]},{"type":"Point","coordinates":[90982,33483]},{"type":"Point","coordinates":[90982,33487]},{"type":"Point","coordinates":[87803,34646]},{"type":"Point","coordinates":[90772,33583]},{"type":"Point","coordinates":[90987,33507]},{"type":"Point","coordinates":[91075,33476]},{"type":"Point","coordinates":[81050,36780]},{"type":"Point","coordinates":[89941,33910]},{"type":"Point","coordinates":[90974,33528]},{"type":"Point","coordinates":[81043,36791]},{"type":"Point","coordinates":[87658,34727]},{"type":"Point","coordinates":[81041,36794]},{"type":"Point","coordinates":[84144,35879]},{"type":"Point","coordinates":[81029,36808]},{"type":"Point","coordinates":[90921,33568]},{"type":"Point","coordinates":[80946,36843]},{"type":"Point","coordinates":[72470,38868]},{"type":"Point","coordinates":[80947,36849]},{"type":"Point","coordinates":[81027,36831]},{"type":"Point","coordinates":[578,28918]},{"type":"Point","coordinates":[90302,33823]},{"type":"Point","coordinates":[561,28913]},{"type":"Point","coordinates":[90767,33665]},{"type":"Point","coordinates":[567,28934]},{"type":"Point","coordinates":[562,28934]},{"type":"Point","coordinates":[568,28937]},{"type":"Point","coordinates":[89929,33985]},{"type":"Point","coordinates":[569,28939]},{"type":"Point","coordinates":[568,28940]},{"type":"Point","coordinates":[568,28941]},{"type":"Point","coordinates":[89079,34299]},{"type":"Point","coordinates":[91830,33281]},{"type":"Point","coordinates":[89311,34223]},{"type":"Point","coordinates":[89906,34008]},{"type":"Point","coordinates":[90095,33940]},{"type":"Point","coordinates":[90837,33664]},{"type":"Point","coordinates":[90837,33664]},{"type":"Point","coordinates":[655,28999]},{"type":"Point","coordinates":[90842,33670]},{"type":"Point","coordinates":[91725,33337]},{"type":"Point","coordinates":[74513,38508]},{"type":"Point","coordinates":[89306,34240]},{"type":"Point","coordinates":[89306,34240]},{"type":"Point","coordinates":[90232,33902]},{"type":"Point","coordinates":[5071,31059]},{"type":"Point","coordinates":[90460,33821]},{"type":"Point","coordinates":[89473,34193]},{"type":"Point","coordinates":[89597,34152]},{"type":"Point","coordinates":[89434,34212]},{"type":"Point","coordinates":[91132,33599]},{"type":"Point","coordinates":[699,29071]},{"type":"Point","coordinates":[700,29072]},{"type":"Point","coordinates":[703,29077]},{"type":"Point","coordinates":[703,29077]},{"type":"Point","coordinates":[90958,33678]},{"type":"Point","coordinates":[89824,34099]},{"type":"Point","coordinates":[90955,33680]},{"type":"Point","coordinates":[90982,33672]},{"type":"Point","coordinates":[79097,37462]},{"type":"Point","coordinates":[90930,33699]},{"type":"Point","coordinates":[90171,33986]},{"type":"Point","coordinates":[88497,34592]},{"type":"Point","coordinates":[91019,33678]},{"type":"Point","coordinates":[90970,33696]},{"type":"Point","coordinates":[1024,29261]},{"type":"Point","coordinates":[90980,33697]},{"type":"Point","coordinates":[90993,33694]},{"type":"Point","coordinates":[90991,33694]},{"type":"Point","coordinates":[90012,34060]},{"type":"Point","coordinates":[90120,34021]},{"type":"Point","coordinates":[91007,33690]},{"type":"Point","coordinates":[89878,34110]},{"type":"Point","coordinates":[89237,34346]},{"type":"Point","coordinates":[90930,33724]},{"type":"Point","coordinates":[90018,34072]},{"type":"Point","coordinates":[91850,33391]},{"type":"Point","coordinates":[80245,37209]},{"type":"Point","coordinates":[90941,33746]},{"type":"Point","coordinates":[90031,34096]},{"type":"Point","coordinates":[91813,33425]},{"type":"Point","coordinates":[89949,34127]},{"type":"Point","coordinates":[90940,33759]},{"type":"Point","coordinates":[90935,33762]},{"type":"Point","coordinates":[90940,33765]},{"type":"Point","coordinates":[90944,33764]},{"type":"Point","coordinates":[87318,35067]},{"type":"Point","coordinates":[87318,35067]},{"type":"Point","coordinates":[90898,33783]},{"type":"Point","coordinates":[75721,38368]},{"type":"Point","coordinates":[87408,35040]},{"type":"Point","coordinates":[90891,33791]},{"type":"Point","coordinates":[90887,33796]},{"type":"Point","coordinates":[90902,33791]},{"type":"Point","coordinates":[89836,34187]},{"type":"Point","coordinates":[90894,33796]},{"type":"Point","coordinates":[90896,33796]},{"type":"Point","coordinates":[89999,34132]},{"type":"Point","coordinates":[90896,33803]},{"type":"Point","coordinates":[90900,33802]},{"type":"Point","coordinates":[88080,34826]},{"type":"Point","coordinates":[91034,33754]},{"type":"Point","coordinates":[90904,33804]},{"type":"Point","coordinates":[90899,33809]},{"type":"Point","coordinates":[91036,33757]},{"type":"Point","coordinates":[90899,33811]},{"type":"Point","coordinates":[90898,33811]},{"type":"Point","coordinates":[90898,33811]},{"type":"Point","coordinates":[90899,33811]},{"type":"Point","coordinates":[91038,33768]},{"type":"Point","coordinates":[88425,34734]},{"type":"Point","coordinates":[62796,40588]},{"type":"Point","coordinates":[91005,33799]},{"type":"Point","coordinates":[87353,35112]},{"type":"Point","coordinates":[91777,33508]},{"type":"Point","coordinates":[474,29116]},{"type":"Point","coordinates":[87352,35121]},{"type":"Point","coordinates":[87352,35121]},{"type":"Point","coordinates":[87352,35121]},{"type":"Point","coordinates":[87353,35122]},{"type":"Point","coordinates":[90196,34113]},{"type":"Point","coordinates":[90016,34180]},{"type":"Point","coordinates":[86996,35247]},{"type":"Point","coordinates":[90035,34177]},{"type":"Point","coordinates":[89988,34196]},{"type":"Point","coordinates":[90019,34185]},{"type":"Point","coordinates":[90717,33927]},{"type":"Point","coordinates":[90033,34183]},{"type":"Point","coordinates":[90089,34167]},{"type":"Point","coordinates":[49700,41236]},{"type":"Point","coordinates":[90076,34177]},{"type":"Point","coordinates":[575,29203]},{"type":"Point","coordinates":[90597,33999]},{"type":"Point","coordinates":[90396,34077]},{"type":"Point","coordinates":[90597,34004]},{"type":"Point","coordinates":[81682,36950]},{"type":"Point","coordinates":[90001,34241]},{"type":"Point","coordinates":[89879,34287]},{"type":"Point","coordinates":[90256,34149]},{"type":"Point","coordinates":[89829,34309]},{"type":"Point","coordinates":[79993,37438]},{"type":"Point","coordinates":[80127,37403]},{"type":"Point","coordinates":[89489,34444]},{"type":"Point","coordinates":[89837,34318]},{"type":"Point","coordinates":[90705,33999]},{"type":"Point","coordinates":[90710,34001]},{"type":"Point","coordinates":[90710,34001]},{"type":"Point","coordinates":[89846,34322]},{"type":"Point","coordinates":[907,29417]},{"type":"Point","coordinates":[90905,33934]},{"type":"Point","coordinates":[90906,33935]},{"type":"Point","coordinates":[90906,33935]},{"type":"Point","coordinates":[90038,34266]},{"type":"Point","coordinates":[90040,34266]},{"type":"Point","coordinates":[91207,33830]},{"type":"Point","coordinates":[87420,35203]},{"type":"Point","coordinates":[90980,33927]},{"type":"Point","coordinates":[89867,34348]},{"type":"Point","coordinates":[87415,35216]},{"type":"Point","coordinates":[88560,34820]},{"type":"Point","coordinates":[63139,40681]},{"type":"Point","coordinates":[89894,34343]},{"type":"Point","coordinates":[89872,34356]},{"type":"Point","coordinates":[87417,35226]},{"type":"Point","coordinates":[87418,35226]},{"type":"Point","coordinates":[87419,35226]},{"type":"Point","coordinates":[79923,37513]},{"type":"Point","coordinates":[79916,37519]},{"type":"Point","coordinates":[87424,35229]},{"type":"Point","coordinates":[87425,35230]},{"type":"Point","coordinates":[87426,35230]},{"type":"Point","coordinates":[87425,35230]},{"type":"Point","coordinates":[90030,34309]},{"type":"Point","coordinates":[90030,34309]},{"type":"Point","coordinates":[90633,34087]},{"type":"Point","coordinates":[80805,37285]},{"type":"Point","coordinates":[566,29311]},{"type":"Point","coordinates":[567,29312]},{"type":"Point","coordinates":[584,29321]},{"type":"Point","coordinates":[89970,34341]},{"type":"Point","coordinates":[89969,34341]},{"type":"Point","coordinates":[584,29324]},{"type":"Point","coordinates":[89969,34341]},{"type":"Point","coordinates":[89974,34340]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[73279,39107]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[16072,35640]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[582,29325]},{"type":"Point","coordinates":[89970,34343]},{"type":"Point","coordinates":[583,29325]},{"type":"Point","coordinates":[583,29325]},{"type":"Point","coordinates":[89970,34343]},{"type":"Point","coordinates":[89883,34377]},{"type":"Point","coordinates":[585,29329]},{"type":"Point","coordinates":[89970,34345]},{"type":"Point","coordinates":[88486,34879]},{"type":"Point","coordinates":[585,29329]},{"type":"Point","coordinates":[89917,34365]},{"type":"Point","coordinates":[581,29328]},{"type":"Point","coordinates":[16067,35643]},{"type":"Point","coordinates":[16067,35645]},{"type":"Point","coordinates":[90078,34311]},{"type":"Point","coordinates":[90952,33987]},{"type":"Point","coordinates":[89271,34606]},{"type":"Point","coordinates":[582,29334]},{"type":"Point","coordinates":[88801,34775]},{"type":"Point","coordinates":[81700,37051]},{"type":"Point","coordinates":[89717,34448]},{"type":"Point","coordinates":[16065,35651]},{"type":"Point","coordinates":[560,29329]},{"type":"Point","coordinates":[90611,34125]},{"type":"Point","coordinates":[80205,37477]},{"type":"Point","coordinates":[89902,34391]},{"type":"Point","coordinates":[4450,31155]},{"type":"Point","coordinates":[91090,33953]},{"type":"Point","coordinates":[90657,34116]},{"type":"Point","coordinates":[90657,34117]},{"type":"Point","coordinates":[90658,34118]},{"type":"Point","coordinates":[88795,34799]},{"type":"Point","coordinates":[89919,34394]},{"type":"Point","coordinates":[89934,34391]},{"type":"Point","coordinates":[89953,34385]},{"type":"Point","coordinates":[89953,34385]},{"type":"Point","coordinates":[89929,34394]},{"type":"Point","coordinates":[89963,34383]},{"type":"Point","coordinates":[16041,35668]},{"type":"Point","coordinates":[89948,34390]},{"type":"Point","coordinates":[89813,34441]},{"type":"Point","coordinates":[89953,34393]},{"type":"Point","coordinates":[90775,34089]},{"type":"Point","coordinates":[90669,34134]},{"type":"Point","coordinates":[89935,34406]},{"type":"Point","coordinates":[89923,34415]},{"type":"Point","coordinates":[89923,34415]},{"type":"Point","coordinates":[87031,35436]},{"type":"Point","coordinates":[90707,34129]},{"type":"Point","coordinates":[80214,37516]},{"type":"Point","coordinates":[90704,34135]},{"type":"Point","coordinates":[90700,34138]},{"type":"Point","coordinates":[90665,34152]},{"type":"Point","coordinates":[34582,40168]},{"type":"Point","coordinates":[90690,34151]},{"type":"Point","coordinates":[89940,34431]},{"type":"Point","coordinates":[80218,37530]},{"type":"Point","coordinates":[90712,34146]},{"type":"Point","coordinates":[89944,34431]},{"type":"Point","coordinates":[89944,34431]},{"type":"Point","coordinates":[90694,34153]},{"type":"Point","coordinates":[34524,40173]},{"type":"Point","coordinates":[90680,34165]},{"type":"Point","coordinates":[90668,34171]},{"type":"Point","coordinates":[90702,34159]},{"type":"Point","coordinates":[79939,37615]},{"type":"Point","coordinates":[90709,34157]},{"type":"Point","coordinates":[90136,34378]},{"type":"Point","coordinates":[90173,34370]},{"type":"Point","coordinates":[89854,34489]},{"type":"Point","coordinates":[88584,34948]},{"type":"Point","coordinates":[90646,34199]},{"type":"Point","coordinates":[79946,37636]},{"type":"Point","coordinates":[74639,38928]},{"type":"Point","coordinates":[90003,34445]},{"type":"Point","coordinates":[353,29333]},{"type":"Point","coordinates":[90664,34205]},{"type":"Point","coordinates":[85642,35958]},{"type":"Point","coordinates":[90674,34202]},{"type":"Point","coordinates":[352,29336]},{"type":"Point","coordinates":[357,29339]},{"type":"Point","coordinates":[80553,37482]},{"type":"Point","coordinates":[369,29346]},{"type":"Point","coordinates":[353,29339]},{"type":"Point","coordinates":[89857,34516]},{"type":"Point","coordinates":[34719,40254]},{"type":"Point","coordinates":[89859,34522]},{"type":"Point","coordinates":[80375,37547]},{"type":"Point","coordinates":[79986,37660]},{"type":"Point","coordinates":[5257,31649]},{"type":"Point","coordinates":[88545,35014]},{"type":"Point","coordinates":[80313,37594]},{"type":"Point","coordinates":[90000,34505]},{"type":"Point","coordinates":[89997,34507]},{"type":"Point","coordinates":[90687,34263]},{"type":"Point","coordinates":[90683,34268]},{"type":"Point","coordinates":[90686,34268]},{"type":"Point","coordinates":[87248,35499]},{"type":"Point","coordinates":[89778,34611]},{"type":"Point","coordinates":[87177,35527]},{"type":"Point","coordinates":[89776,34616]},{"type":"Point","coordinates":[90182,34467]},{"type":"Point","coordinates":[87176,35537]},{"type":"Point","coordinates":[87881,35296]},{"type":"Point","coordinates":[87175,35538]},{"type":"Point","coordinates":[87176,35538]},{"type":"Point","coordinates":[87188,35537]},{"type":"Point","coordinates":[87164,35546]},{"type":"Point","coordinates":[5595,31858]},{"type":"Point","coordinates":[77545,38368]},{"type":"Point","coordinates":[80382,37639]},{"type":"Point","coordinates":[90545,34365]},{"type":"Point","coordinates":[90545,34366]},{"type":"Point","coordinates":[90545,34367]},{"type":"Point","coordinates":[86971,35639]},{"type":"Point","coordinates":[90543,34375]},{"type":"Point","coordinates":[86971,35642]},{"type":"Point","coordinates":[90542,34376]},{"type":"Point","coordinates":[90541,34382]},{"type":"Point","coordinates":[90296,34473]},{"type":"Point","coordinates":[87082,35612]},{"type":"Point","coordinates":[86969,35650]},{"type":"Point","coordinates":[85738,36076]},{"type":"Point","coordinates":[90570,34402]},{"type":"Point","coordinates":[90570,34402]},{"type":"Point","coordinates":[87045,35654]},{"type":"Point","coordinates":[87041,35658]},{"type":"Point","coordinates":[87041,35658]},{"type":"Point","coordinates":[87040,35658]},{"type":"Point","coordinates":[87040,35658]},{"type":"Point","coordinates":[80319,37709]},{"type":"Point","coordinates":[90537,34420]},{"type":"Point","coordinates":[87023,35671]},{"type":"Point","coordinates":[80165,37756]},{"type":"Point","coordinates":[87020,35673]},{"type":"Point","coordinates":[87018,35675]},{"type":"Point","coordinates":[87015,35677]},{"type":"Point","coordinates":[87011,35689]},{"type":"Point","coordinates":[87011,35689]},{"type":"Point","coordinates":[90633,34403]},{"type":"Point","coordinates":[86980,35700]},{"type":"Point","coordinates":[90084,34613]},{"type":"Point","coordinates":[86977,35709]},{"type":"Point","coordinates":[86975,35711]},{"type":"Point","coordinates":[86951,35720]},{"type":"Point","coordinates":[86959,35727]},{"type":"Point","coordinates":[79377,38002]},{"type":"Point","coordinates":[80075,37818]},{"type":"Point","coordinates":[90635,34427]},{"type":"Point","coordinates":[90555,34458]},{"type":"Point","coordinates":[90561,34460]},{"type":"Point","coordinates":[90172,34605]},{"type":"Point","coordinates":[90566,34466]},{"type":"Point","coordinates":[80513,37712]},{"type":"Point","coordinates":[90189,34609]},{"type":"Point","coordinates":[90560,34477]},{"type":"Point","coordinates":[90560,34477]},{"type":"Point","coordinates":[86936,35761]},{"type":"Point","coordinates":[89999,34685]},{"type":"Point","coordinates":[89551,34854]},{"type":"Point","coordinates":[86853,35802]},{"type":"Point","coordinates":[90454,34535]},{"type":"Point","coordinates":[5219,31847]},{"type":"Point","coordinates":[86728,35865]},{"type":"Point","coordinates":[79459,38039]},{"type":"Point","coordinates":[90578,34510]},{"type":"Point","coordinates":[86943,35806]},{"type":"Point","coordinates":[90523,34543]},{"type":"Point","coordinates":[90212,34665]},{"type":"Point","coordinates":[90180,34677]},{"type":"Point","coordinates":[80590,37762]},{"type":"Point","coordinates":[90531,34553]},{"type":"Point","coordinates":[797,29856]},{"type":"Point","coordinates":[86668,35918]},{"type":"Point","coordinates":[798,29857]},{"type":"Point","coordinates":[5456,32004]},{"type":"Point","coordinates":[776,29851]},{"type":"Point","coordinates":[15911,36017]},{"type":"Point","coordinates":[15912,36019]},{"type":"Point","coordinates":[90232,34684]},{"type":"Point","coordinates":[89689,34890]},{"type":"Point","coordinates":[79964,37963]},{"type":"Point","coordinates":[5164,31902]},{"type":"Point","coordinates":[5135,31894]},{"type":"Point","coordinates":[79956,37974]},{"type":"Point","coordinates":[5137,31898]},{"type":"Point","coordinates":[5136,31898]},{"type":"Point","coordinates":[924,29957]},{"type":"Point","coordinates":[79964,37975]},{"type":"Point","coordinates":[79964,37977]},{"type":"Point","coordinates":[930,29964]},{"type":"Point","coordinates":[926,29963]},{"type":"Point","coordinates":[926,29963]},{"type":"Point","coordinates":[80210,37913]},{"type":"Point","coordinates":[90177,34731]},{"type":"Point","coordinates":[80391,37872]},{"type":"Point","coordinates":[5128,31910]},{"type":"Point","coordinates":[90215,34727]},{"type":"Point","coordinates":[578,29807]},{"type":"Point","coordinates":[76647,38830]},{"type":"Point","coordinates":[822,29927]},{"type":"Point","coordinates":[90206,34736]},{"type":"Point","coordinates":[940,29988]},{"type":"Point","coordinates":[825,29932]},{"type":"Point","coordinates":[5133,31922]},{"type":"Point","coordinates":[76639,38840]},{"type":"Point","coordinates":[5133,31929]},{"type":"Point","coordinates":[5133,31932]},{"type":"Point","coordinates":[512,29795]},{"type":"Point","coordinates":[5136,31936]},{"type":"Point","coordinates":[90246,34738]},{"type":"Point","coordinates":[5087,31922]},{"type":"Point","coordinates":[5128,31941]},{"type":"Point","coordinates":[90239,34751]},{"type":"Point","coordinates":[5037,31906]},{"type":"Point","coordinates":[89745,34938]},{"type":"Point","coordinates":[90236,34761]},{"type":"Point","coordinates":[81671,37560]},{"type":"Point","coordinates":[76603,38886]},{"type":"Point","coordinates":[5140,31965]},{"type":"Point","coordinates":[80316,37959]},{"type":"Point","coordinates":[83486,37049]},{"type":"Point","coordinates":[5050,31944]},{"type":"Point","coordinates":[88880,35278]},{"type":"Point","coordinates":[5111,31974]},{"type":"Point","coordinates":[83497,37057]},{"type":"Point","coordinates":[90999,34536]},{"type":"Point","coordinates":[70300,40258]},{"type":"Point","coordinates":[70300,40258]},{"type":"Point","coordinates":[5181,32054]},{"type":"Point","coordinates":[80379,38012]},{"type":"Point","coordinates":[80396,38010]},{"type":"Point","coordinates":[90225,34867]},{"type":"Point","coordinates":[67692,40716]},{"type":"Point","coordinates":[5011,32015]},{"type":"Point","coordinates":[67890,40697]},{"type":"Point","coordinates":[685,30023]},{"type":"Point","coordinates":[685,30024]},{"type":"Point","coordinates":[685,30024]},{"type":"Point","coordinates":[751,30056]},{"type":"Point","coordinates":[750,30057]},{"type":"Point","coordinates":[730,30048]},{"type":"Point","coordinates":[80346,38051]},{"type":"Point","coordinates":[80345,38051]},{"type":"Point","coordinates":[80345,38051]},{"type":"Point","coordinates":[80345,38052]},{"type":"Point","coordinates":[742,30055]},{"type":"Point","coordinates":[750,30060]},{"type":"Point","coordinates":[668,30021]},{"type":"Point","coordinates":[748,30060]},{"type":"Point","coordinates":[747,30060]},{"type":"Point","coordinates":[752,30062]},{"type":"Point","coordinates":[5233,32130]},{"type":"Point","coordinates":[673,30027]},{"type":"Point","coordinates":[5008,32033]},{"type":"Point","coordinates":[90528,34788]},{"type":"Point","coordinates":[89695,35096]},{"type":"Point","coordinates":[620,30013]},{"type":"Point","coordinates":[80359,38066]},{"type":"Point","coordinates":[80361,38065]},{"type":"Point","coordinates":[80618,37998]},{"type":"Point","coordinates":[80444,38046]},{"type":"Point","coordinates":[67763,40746]},{"type":"Point","coordinates":[80445,38047]},{"type":"Point","coordinates":[80618,38000]},{"type":"Point","coordinates":[80431,38052]},{"type":"Point","coordinates":[90534,34801]},{"type":"Point","coordinates":[80447,38052]},{"type":"Point","coordinates":[80440,38054]},{"type":"Point","coordinates":[748,30090]},{"type":"Point","coordinates":[80379,38076]},{"type":"Point","coordinates":[80379,38076]},{"type":"Point","coordinates":[80383,38076]},{"type":"Point","coordinates":[90519,34816]},{"type":"Point","coordinates":[747,30095]},{"type":"Point","coordinates":[80433,38069]},{"type":"Point","coordinates":[80422,38074]},{"type":"Point","coordinates":[80431,38076]},{"type":"Point","coordinates":[80351,38101]},{"type":"Point","coordinates":[80230,38136]},{"type":"Point","coordinates":[80229,38138]},{"type":"Point","coordinates":[80460,38082]},{"type":"Point","coordinates":[80441,38088]},{"type":"Point","coordinates":[67702,40796]},{"type":"Point","coordinates":[690,30101]},{"type":"Point","coordinates":[67739,40802]},{"type":"Point","coordinates":[5314,32241]},{"type":"Point","coordinates":[67740,40813]},{"type":"Point","coordinates":[85882,36484]},{"type":"Point","coordinates":[79956,38246]},{"type":"Point","coordinates":[22325,38244]},{"type":"Point","coordinates":[753,30163]},{"type":"Point","coordinates":[34731,40855]},{"type":"Point","coordinates":[90839,34782]},{"type":"Point","coordinates":[85047,36807]},{"type":"Point","coordinates":[830,30248]},{"type":"Point","coordinates":[83651,37252]},{"type":"Point","coordinates":[90839,34825]},{"type":"Point","coordinates":[80336,38225]},{"type":"Point","coordinates":[62131,41612]},{"type":"Point","coordinates":[780,30254]},{"type":"Point","coordinates":[91057,34763]},{"type":"Point","coordinates":[90855,34853]},{"type":"Point","coordinates":[90804,34882]},{"type":"Point","coordinates":[814,30309]},{"type":"Point","coordinates":[814,30309]},{"type":"Point","coordinates":[814,30323]},{"type":"Point","coordinates":[814,30323]},{"type":"Point","coordinates":[63778,41492]},{"type":"Point","coordinates":[90067,35184]},{"type":"Point","coordinates":[813,30332]},{"type":"Point","coordinates":[90260,35115]},{"type":"Point","coordinates":[812,30332]},{"type":"Point","coordinates":[90073,35192]},{"type":"Point","coordinates":[89896,35265]},{"type":"Point","coordinates":[813,30352]},{"type":"Point","coordinates":[785,30345]},{"type":"Point","coordinates":[89942,35260]},{"type":"Point","coordinates":[812,30362]},{"type":"Point","coordinates":[848,30381]},{"type":"Point","coordinates":[89798,35322]},{"type":"Point","coordinates":[89250,35522]},{"type":"Point","coordinates":[89246,35526]},{"type":"Point","coordinates":[807,30378]},{"type":"Point","coordinates":[858,30411]},{"type":"Point","coordinates":[797,30384]},{"type":"Point","coordinates":[63749,41560]},{"type":"Point","coordinates":[90717,35010]},{"type":"Point","coordinates":[90847,34970]},{"type":"Point","coordinates":[63742,41579]},{"type":"Point","coordinates":[63717,41593]},{"type":"Point","coordinates":[85935,36712]},{"type":"Point","coordinates":[63719,41597]},{"type":"Point","coordinates":[63715,41613]},{"type":"Point","coordinates":[796,30446]},{"type":"Point","coordinates":[63715,41619]},{"type":"Point","coordinates":[797,30447]},{"type":"Point","coordinates":[797,30447]},{"type":"Point","coordinates":[785,30443]},{"type":"Point","coordinates":[796,30448]},{"type":"Point","coordinates":[795,30448]},{"type":"Point","coordinates":[796,30449]},{"type":"Point","coordinates":[795,30449]},{"type":"Point","coordinates":[799,30451]},{"type":"Point","coordinates":[796,30450]},{"type":"Point","coordinates":[794,30450]},{"type":"Point","coordinates":[794,30450]},{"type":"Point","coordinates":[621,30368]},{"type":"Point","coordinates":[675,30394]},{"type":"Point","coordinates":[790,30450]},{"type":"Point","coordinates":[793,30452]},{"type":"Point","coordinates":[791,30452]},{"type":"Point","coordinates":[677,30397]},{"type":"Point","coordinates":[704,30411]},{"type":"Point","coordinates":[700,30410]},{"type":"Point","coordinates":[65274,41439]},{"type":"Point","coordinates":[676,30400]},{"type":"Point","coordinates":[650,30388]},{"type":"Point","coordinates":[668,30397]},{"type":"Point","coordinates":[696,30410]},{"type":"Point","coordinates":[791,30456]},{"type":"Point","coordinates":[660,30393]},{"type":"Point","coordinates":[673,30400]},{"type":"Point","coordinates":[787,30455]},{"type":"Point","coordinates":[63719,41632]},{"type":"Point","coordinates":[651,30389]},{"type":"Point","coordinates":[63719,41632]},{"type":"Point","coordinates":[673,30400]},{"type":"Point","coordinates":[63719,41632]},{"type":"Point","coordinates":[674,30401]},{"type":"Point","coordinates":[802,30463]},{"type":"Point","coordinates":[724,30425]},{"type":"Point","coordinates":[677,30403]},{"type":"Point","coordinates":[790,30458]},{"type":"Point","coordinates":[727,30429]},{"type":"Point","coordinates":[626,30381]},{"type":"Point","coordinates":[702,30418]},{"type":"Point","coordinates":[787,30459]},{"type":"Point","coordinates":[666,30402]},{"type":"Point","coordinates":[684,30411]},{"type":"Point","coordinates":[89889,35390]},{"type":"Point","coordinates":[685,30412]},{"type":"Point","coordinates":[701,30420]},{"type":"Point","coordinates":[708,30424]},{"type":"Point","coordinates":[674,30409]},{"type":"Point","coordinates":[716,30430]},{"type":"Point","coordinates":[63698,41645]},{"type":"Point","coordinates":[90872,35033]},{"type":"Point","coordinates":[711,30432]},{"type":"Point","coordinates":[614,30388]},{"type":"Point","coordinates":[89867,35409]},{"type":"Point","coordinates":[772,30471]},{"type":"Point","coordinates":[772,30471]},{"type":"Point","coordinates":[772,30472]},{"type":"Point","coordinates":[761,30467]},{"type":"Point","coordinates":[772,30472]},{"type":"Point","coordinates":[649,30413]},{"type":"Point","coordinates":[79699,38618]},{"type":"Point","coordinates":[758,30469]},{"type":"Point","coordinates":[615,30402]},{"type":"Point","coordinates":[741,30463]},{"type":"Point","coordinates":[738,30463]},{"type":"Point","coordinates":[762,30475]},{"type":"Point","coordinates":[773,30485]},{"type":"Point","coordinates":[758,30478]},{"type":"Point","coordinates":[752,30477]},{"type":"Point","coordinates":[752,30477]},{"type":"Point","coordinates":[754,30479]},{"type":"Point","coordinates":[752,30479]},{"type":"Point","coordinates":[766,30486]},{"type":"Point","coordinates":[771,30498]},{"type":"Point","coordinates":[751,30492]},{"type":"Point","coordinates":[80096,38541]},{"type":"Point","coordinates":[80123,38536]},{"type":"Point","coordinates":[88413,35970]},{"type":"Point","coordinates":[86628,36579]},{"type":"Point","coordinates":[780,30518]},{"type":"Point","coordinates":[6645,33180]},{"type":"Point","coordinates":[771,30523]},{"type":"Point","coordinates":[80274,38516]},{"type":"Point","coordinates":[89977,35447]},{"type":"Point","coordinates":[80551,38459]},{"type":"Point","coordinates":[700,30517]},{"type":"Point","coordinates":[80113,38589]},{"type":"Point","coordinates":[80113,38589]},{"type":"Point","coordinates":[142,30253]},{"type":"Point","coordinates":[143,30254]},{"type":"Point","coordinates":[140,30254]},{"type":"Point","coordinates":[140,30254]},{"type":"Point","coordinates":[140,30254]},{"type":"Point","coordinates":[140,30254]},{"type":"Point","coordinates":[143,30255]},{"type":"Point","coordinates":[141,30255]},{"type":"Point","coordinates":[140,30254]},{"type":"Point","coordinates":[140,30254]},{"type":"Point","coordinates":[143,30255]},{"type":"Point","coordinates":[140,30254]},{"type":"Point","coordinates":[773,30567]},{"type":"Point","coordinates":[776,30570]},{"type":"Point","coordinates":[87669,36291]},{"type":"Point","coordinates":[79911,38662]},{"type":"Point","coordinates":[87686,36299]},{"type":"Point","coordinates":[619,30514]},{"type":"Point","coordinates":[675,30543]},{"type":"Point","coordinates":[738,30580]},{"type":"Point","coordinates":[892,30656]},{"type":"Point","coordinates":[810,30623]},{"type":"Point","coordinates":[822,30631]},{"type":"Point","coordinates":[789,30615]},{"type":"Point","coordinates":[789,30617]},{"type":"Point","coordinates":[790,30620]},{"type":"Point","coordinates":[787,30620]},{"type":"Point","coordinates":[788,30622]},{"type":"Point","coordinates":[792,30624]},{"type":"Point","coordinates":[792,30626]},{"type":"Point","coordinates":[791,30626]},{"type":"Point","coordinates":[791,30626]},{"type":"Point","coordinates":[791,30626]},{"type":"Point","coordinates":[791,30626]},{"type":"Point","coordinates":[788,30625]},{"type":"Point","coordinates":[87031,36552]},{"type":"Point","coordinates":[789,30626]},{"type":"Point","coordinates":[790,30628]},{"type":"Point","coordinates":[790,30630]},{"type":"Point","coordinates":[799,30635]},{"type":"Point","coordinates":[85712,36993]},{"type":"Point","coordinates":[85696,37001]},{"type":"Point","coordinates":[701,30592]},{"type":"Point","coordinates":[85696,37001]},{"type":"Point","coordinates":[85696,37001]},{"type":"Point","coordinates":[85701,37001]},{"type":"Point","coordinates":[768,30637]},{"type":"Point","coordinates":[85325,37133]},{"type":"Point","coordinates":[80729,38502]},{"type":"Point","coordinates":[766,30639]},{"type":"Point","coordinates":[90993,35169]},{"type":"Point","coordinates":[85562,37069]},{"type":"Point","coordinates":[89793,35622]},{"type":"Point","coordinates":[79892,38742]},{"type":"Point","coordinates":[85566,37075]},{"type":"Point","coordinates":[89788,35632]},{"type":"Point","coordinates":[89797,35638]},{"type":"Point","coordinates":[800,30687]},{"type":"Point","coordinates":[618,30600]},{"type":"Point","coordinates":[89786,35644]},{"type":"Point","coordinates":[89791,35646]},{"type":"Point","coordinates":[89540,35737]},{"type":"Point","coordinates":[89789,35647]},{"type":"Point","coordinates":[89799,35645]},{"type":"Point","coordinates":[89795,35647]},{"type":"Point","coordinates":[89799,35645]},{"type":"Point","coordinates":[89799,35645]},{"type":"Point","coordinates":[89799,35646]},{"type":"Point","coordinates":[89799,35646]},{"type":"Point","coordinates":[89787,35652]},{"type":"Point","coordinates":[89793,35651]},{"type":"Point","coordinates":[805,30700]},{"type":"Point","coordinates":[796,30699]},{"type":"Point","coordinates":[49631,42576]},{"type":"Point","coordinates":[49647,42599]},{"type":"Point","coordinates":[89779,35699]},{"type":"Point","coordinates":[814,30749]},{"type":"Point","coordinates":[846,30765]},{"type":"Point","coordinates":[847,30765]},{"type":"Point","coordinates":[89048,35963]},{"type":"Point","coordinates":[874,30783]},{"type":"Point","coordinates":[869,30782]},{"type":"Point","coordinates":[869,30782]},{"type":"Point","coordinates":[869,30783]},{"type":"Point","coordinates":[88902,36026]},{"type":"Point","coordinates":[65153,41741]},{"type":"Point","coordinates":[805,30760]},{"type":"Point","coordinates":[65151,41743]},{"type":"Point","coordinates":[806,30763]},{"type":"Point","coordinates":[848,30788]},{"type":"Point","coordinates":[89184,35958]},{"type":"Point","coordinates":[862,30819]},{"type":"Point","coordinates":[862,30824]},{"type":"Point","coordinates":[87089,36693]},{"type":"Point","coordinates":[87090,36700]},{"type":"Point","coordinates":[691,30753]},{"type":"Point","coordinates":[87091,36707]},{"type":"Point","coordinates":[872,30846]},{"type":"Point","coordinates":[869,30846]},{"type":"Point","coordinates":[871,30847]},{"type":"Point","coordinates":[872,30855]},{"type":"Point","coordinates":[872,30855]},{"type":"Point","coordinates":[874,30864]},{"type":"Point","coordinates":[881,30872]},{"type":"Point","coordinates":[723,30799]},{"type":"Point","coordinates":[87882,36465]},{"type":"Point","coordinates":[878,30877]},{"type":"Point","coordinates":[912,30895]},{"type":"Point","coordinates":[912,30895]},{"type":"Point","coordinates":[905,30900]},{"type":"Point","coordinates":[86466,36955]},{"type":"Point","coordinates":[908,30902]},{"type":"Point","coordinates":[906,30904]},{"type":"Point","coordinates":[89598,35879]},{"type":"Point","coordinates":[887,30904]},{"type":"Point","coordinates":[902,30918]},{"type":"Point","coordinates":[931,30934]},{"type":"Point","coordinates":[86327,37025]},{"type":"Point","coordinates":[904,30933]},{"type":"Point","coordinates":[88071,36449]},{"type":"Point","coordinates":[66209,41726]},{"type":"Point","coordinates":[899,30940]},{"type":"Point","coordinates":[65455,41831]},{"type":"Point","coordinates":[898,30941]},{"type":"Point","coordinates":[66198,41733]},{"type":"Point","coordinates":[66199,41733]},{"type":"Point","coordinates":[65100,41880]},{"type":"Point","coordinates":[66199,41733]},{"type":"Point","coordinates":[66202,41734]},{"type":"Point","coordinates":[66202,41734]},{"type":"Point","coordinates":[66197,41736]},{"type":"Point","coordinates":[66198,41743]},{"type":"Point","coordinates":[86861,36878]},{"type":"Point","coordinates":[891,30953]},{"type":"Point","coordinates":[74937,40209]},{"type":"Point","coordinates":[65155,41935]},{"type":"Point","coordinates":[34181,41522]},{"type":"Point","coordinates":[920,31034]},{"type":"Point","coordinates":[64307,42058]},{"type":"Point","coordinates":[88019,36557]},{"type":"Point","coordinates":[902,31037]},{"type":"Point","coordinates":[668,30926]},{"type":"Point","coordinates":[66270,41821]},{"type":"Point","coordinates":[87944,36601]},{"type":"Point","coordinates":[87958,36599]},{"type":"Point","coordinates":[939,31078]},{"type":"Point","coordinates":[66273,41836]},{"type":"Point","coordinates":[34176,41565]},{"type":"Point","coordinates":[89465,36087]},{"type":"Point","coordinates":[87947,36638]},{"type":"Point","coordinates":[87985,36627]},{"type":"Point","coordinates":[87985,36628]},{"type":"Point","coordinates":[86944,36993]},{"type":"Point","coordinates":[88104,36601]},{"type":"Point","coordinates":[88105,36601]},{"type":"Point","coordinates":[87978,36651]},{"type":"Point","coordinates":[87902,36679]},{"type":"Point","coordinates":[87969,36658]},{"type":"Point","coordinates":[89835,36028]},{"type":"Point","coordinates":[74974,40357]},{"type":"Point","coordinates":[66306,41923]},{"type":"Point","coordinates":[66306,41923]},{"type":"Point","coordinates":[85438,37554]},{"type":"Point","coordinates":[74977,40389]},{"type":"Point","coordinates":[89823,36069]},{"type":"Point","coordinates":[87429,36920]},{"type":"Point","coordinates":[87030,37058]},{"type":"Point","coordinates":[85448,37594]},{"type":"Point","coordinates":[85449,37594]},{"type":"Point","coordinates":[79986,39223]},{"type":"Point","coordinates":[5253,33242]},{"type":"Point","coordinates":[89902,36111]},{"type":"Point","coordinates":[81949,38707]},{"type":"Point","coordinates":[89028,36441]},{"type":"Point","coordinates":[79299,39438]},{"type":"Point","coordinates":[81692,38791]},{"type":"Point","coordinates":[74499,40604]},{"type":"Point","coordinates":[5460,33383]},{"type":"Point","coordinates":[5319,33332]},{"type":"Point","coordinates":[62443,42543]},{"type":"Point","coordinates":[72340,41065]},{"type":"Point","coordinates":[6211,33722]},{"type":"Point","coordinates":[81706,38845]},{"type":"Point","coordinates":[89411,36388]},{"type":"Point","coordinates":[74882,40602]},{"type":"Point","coordinates":[89258,36467]},{"type":"Point","coordinates":[847,31362]},{"type":"Point","coordinates":[72344,41139]},{"type":"Point","coordinates":[88779,36653]},{"type":"Point","coordinates":[5437,33473]},{"type":"Point","coordinates":[85599,37729]},{"type":"Point","coordinates":[90537,36023]},{"type":"Point","coordinates":[66303,42161]},{"type":"Point","coordinates":[66301,42162]},{"type":"Point","coordinates":[66302,42163]},{"type":"Point","coordinates":[65432,42285]},{"type":"Point","coordinates":[788,31357]},{"type":"Point","coordinates":[85640,37727]},{"type":"Point","coordinates":[65443,42290]},{"type":"Point","coordinates":[65439,42294]},{"type":"Point","coordinates":[89127,36558]},{"type":"Point","coordinates":[85679,37728]},{"type":"Point","coordinates":[782,31372]},{"type":"Point","coordinates":[774,31370]},{"type":"Point","coordinates":[72275,41201]},{"type":"Point","coordinates":[80604,39266]},{"type":"Point","coordinates":[65338,42347]},{"type":"Point","coordinates":[5305,33481]},{"type":"Point","coordinates":[6161,33854]},{"type":"Point","coordinates":[88548,36809]},{"type":"Point","coordinates":[88548,36810]},{"type":"Point","coordinates":[678,31375]},{"type":"Point","coordinates":[75019,40672]},{"type":"Point","coordinates":[75018,40673]},{"type":"Point","coordinates":[6345,33949]},{"type":"Point","coordinates":[74653,40757]},{"type":"Point","coordinates":[86376,37568]},{"type":"Point","coordinates":[74702,40758]},{"type":"Point","coordinates":[88753,36764]},{"type":"Point","coordinates":[654,31388]},{"type":"Point","coordinates":[369,31250]},{"type":"Point","coordinates":[71778,41371]},{"type":"Point","coordinates":[88568,36859]},{"type":"Point","coordinates":[844,31504]},{"type":"Point","coordinates":[79200,39716]},{"type":"Point","coordinates":[82679,38756]},{"type":"Point","coordinates":[69053,41870]},{"type":"Point","coordinates":[89661,36476]},{"type":"Point","coordinates":[5222,33519]},{"type":"Point","coordinates":[85581,37874]},{"type":"Point","coordinates":[82680,38768]},{"type":"Point","coordinates":[69272,41846]},{"type":"Point","coordinates":[80168,39485]},{"type":"Point","coordinates":[74766,40814]},{"type":"Point","coordinates":[5196,33547]},{"type":"Point","coordinates":[86053,37760]},{"type":"Point","coordinates":[5600,33727]},{"type":"Point","coordinates":[82707,38798]},{"type":"Point","coordinates":[34175,42065]},{"type":"Point","coordinates":[74948,40791]},{"type":"Point","coordinates":[5265,33586]},{"type":"Point","coordinates":[88878,36810]},{"type":"Point","coordinates":[65466,42458]},{"type":"Point","coordinates":[63030,42753]},{"type":"Point","coordinates":[88245,37038]},{"type":"Point","coordinates":[25542,40391]},{"type":"Point","coordinates":[65456,42476]},{"type":"Point","coordinates":[87129,37432]},{"type":"Point","coordinates":[6184,34007]},{"type":"Point","coordinates":[75119,40780]},{"type":"Point","coordinates":[86042,37798]},{"type":"Point","coordinates":[89343,36685]},{"type":"Point","coordinates":[89347,36684]},{"type":"Point","coordinates":[89022,36801]},{"type":"Point","coordinates":[77855,40162]},{"type":"Point","coordinates":[64803,42604]},{"type":"Point","coordinates":[64800,42606]},{"type":"Point","coordinates":[74768,40898]},{"type":"Point","coordinates":[64803,42614]},{"type":"Point","coordinates":[64807,42614]},{"type":"Point","coordinates":[69644,41902]},{"type":"Point","coordinates":[5160,33624]},{"type":"Point","coordinates":[813,31635]},{"type":"Point","coordinates":[73519,41197]},{"type":"Point","coordinates":[88138,37170]},{"type":"Point","coordinates":[73523,41200]},{"type":"Point","coordinates":[89262,36782]},{"type":"Point","coordinates":[89474,36706]},{"type":"Point","coordinates":[85346,38115]},{"type":"Point","coordinates":[89056,36871]},{"type":"Point","coordinates":[63065,42870]},{"type":"Point","coordinates":[65834,42533]},{"type":"Point","coordinates":[34303,42223]},{"type":"Point","coordinates":[89131,36855]},{"type":"Point","coordinates":[81631,39250]},{"type":"Point","coordinates":[5050,33640]},{"type":"Point","coordinates":[89046,36894]},{"type":"Point","coordinates":[89077,36885]},{"type":"Point","coordinates":[82865,38941]},{"type":"Point","coordinates":[88827,37019]},{"type":"Point","coordinates":[89097,36939]},{"type":"Point","coordinates":[89072,36950]},{"type":"Point","coordinates":[34117,42279]},{"type":"Point","coordinates":[34115,42279]},{"type":"Point","coordinates":[794,31767]},{"type":"Point","coordinates":[5288,33824]},{"type":"Point","coordinates":[89427,36838]},{"type":"Point","coordinates":[89427,36839]},{"type":"Point","coordinates":[34132,42293]},{"type":"Point","coordinates":[89080,36971]},{"type":"Point","coordinates":[5042,33733]},{"type":"Point","coordinates":[88691,37114]},{"type":"Point","coordinates":[88691,37114]},{"type":"Point","coordinates":[88951,37024]},{"type":"Point","coordinates":[801,31792]},{"type":"Point","coordinates":[790,31790]},{"type":"Point","coordinates":[74807,41070]},{"type":"Point","coordinates":[790,31798]},{"type":"Point","coordinates":[792,31800]},{"type":"Point","coordinates":[795,31802]},{"type":"Point","coordinates":[74944,41046]},{"type":"Point","coordinates":[5085,33769]},{"type":"Point","coordinates":[794,31803]},{"type":"Point","coordinates":[89052,37006]},{"type":"Point","coordinates":[89052,37006]},{"type":"Point","coordinates":[791,31803]},{"type":"Point","coordinates":[791,31804]},{"type":"Point","coordinates":[5356,33890]},{"type":"Point","coordinates":[34093,42318]},{"type":"Point","coordinates":[89259,36942]},{"type":"Point","coordinates":[81794,39340]},{"type":"Point","coordinates":[88972,37051]},{"type":"Point","coordinates":[85166,38337]},{"type":"Point","coordinates":[86505,37909]},{"type":"Point","coordinates":[34174,42357]},{"type":"Point","coordinates":[789,31840]},{"type":"Point","coordinates":[788,31840]},{"type":"Point","coordinates":[4674,33636]},{"type":"Point","coordinates":[85188,38362]},{"type":"Point","coordinates":[88984,37090]},{"type":"Point","coordinates":[5282,33923]},{"type":"Point","coordinates":[89776,36826]},{"type":"Point","coordinates":[89776,36826]},{"type":"Point","coordinates":[34423,42450]},{"type":"Point","coordinates":[68885,42303]},{"type":"Point","coordinates":[89099,37091]},{"type":"Point","coordinates":[34106,42413]},{"type":"Point","coordinates":[34233,42438]},{"type":"Point","coordinates":[89763,36860]},{"type":"Point","coordinates":[34362,42464]},{"type":"Point","coordinates":[89757,36870]},{"type":"Point","coordinates":[34222,42458]},{"type":"Point","coordinates":[64648,42942]},{"type":"Point","coordinates":[34231,42463]},{"type":"Point","coordinates":[64654,42944]},{"type":"Point","coordinates":[88598,37304]},{"type":"Point","coordinates":[86590,37990]},{"type":"Point","coordinates":[64454,43004]},{"type":"Point","coordinates":[69538,42268]},{"type":"Point","coordinates":[62480,43229]},{"type":"Point","coordinates":[73105,41609]},{"type":"Point","coordinates":[69209,42326]},{"type":"Point","coordinates":[69472,42282]},{"type":"Point","coordinates":[69208,42327]},{"type":"Point","coordinates":[69208,42327]},{"type":"Point","coordinates":[69209,42327]},{"type":"Point","coordinates":[69479,42288]},{"type":"Point","coordinates":[83783,38940]},{"type":"Point","coordinates":[89615,37020]},{"type":"Point","coordinates":[69406,42339]},{"type":"Point","coordinates":[75079,41239]},{"type":"Point","coordinates":[89291,37155]},{"type":"Point","coordinates":[35063,42689]},{"type":"Point","coordinates":[69288,42390]},{"type":"Point","coordinates":[69285,42396]},{"type":"Point","coordinates":[69285,42396]},{"type":"Point","coordinates":[84060,38915]},{"type":"Point","coordinates":[69285,42397]},{"type":"Point","coordinates":[69284,42398]},{"type":"Point","coordinates":[69284,42398]},{"type":"Point","coordinates":[69287,42401]},{"type":"Point","coordinates":[69260,42408]},{"type":"Point","coordinates":[89140,37245]},{"type":"Point","coordinates":[69260,42411]},{"type":"Point","coordinates":[81323,39729]},{"type":"Point","coordinates":[89113,37264]},{"type":"Point","coordinates":[89178,37242]},{"type":"Point","coordinates":[5760,34361]},{"type":"Point","coordinates":[67608,42708]},{"type":"Point","coordinates":[84056,38964]},{"type":"Point","coordinates":[84056,38964]},{"type":"Point","coordinates":[84056,38964]},{"type":"Point","coordinates":[84056,38965]},{"type":"Point","coordinates":[84056,38965]},{"type":"Point","coordinates":[91025,36599]},{"type":"Point","coordinates":[69453,42425]},{"type":"Point","coordinates":[69040,42502]},{"type":"Point","coordinates":[81218,39814]},{"type":"Point","coordinates":[69038,42513]},{"type":"Point","coordinates":[67547,42753]},{"type":"Point","coordinates":[69250,42493]},{"type":"Point","coordinates":[87173,38046]},{"type":"Point","coordinates":[81501,39806]},{"type":"Point","coordinates":[87720,37874]},{"type":"Point","coordinates":[90393,36943]},{"type":"Point","coordinates":[65099,43189]},{"type":"Point","coordinates":[81262,39923]},{"type":"Point","coordinates":[89465,37314]},{"type":"Point","coordinates":[88314,37725]},{"type":"Point","coordinates":[81461,39882]},{"type":"Point","coordinates":[81483,39879]},{"type":"Point","coordinates":[89468,37330]},{"type":"Point","coordinates":[83278,39362]},{"type":"Point","coordinates":[74638,41585]},{"type":"Point","coordinates":[88879,37559]},{"type":"Point","coordinates":[81433,39921]},{"type":"Point","coordinates":[69529,42590]},{"type":"Point","coordinates":[80546,40171]},{"type":"Point","coordinates":[91003,36813]},{"type":"Point","coordinates":[83983,39201]},{"type":"Point","coordinates":[69276,42663]},{"type":"Point","coordinates":[88607,37694]},{"type":"Point","coordinates":[68980,42714]},{"type":"Point","coordinates":[68981,42717]},{"type":"Point","coordinates":[68984,42720]},{"type":"Point","coordinates":[68983,42720]},{"type":"Point","coordinates":[68982,42720]},{"type":"Point","coordinates":[68983,42720]},{"type":"Point","coordinates":[75478,41463]},{"type":"Point","coordinates":[79672,40442]},{"type":"Point","coordinates":[68987,42731]},{"type":"Point","coordinates":[68981,42739]},{"type":"Point","coordinates":[60484,43796]},{"type":"Point","coordinates":[34317,42899]},{"type":"Point","coordinates":[805,32385]},{"type":"Point","coordinates":[68969,42748]},{"type":"Point","coordinates":[787,32378]},{"type":"Point","coordinates":[88733,37689]},{"type":"Point","coordinates":[81231,40048]},{"type":"Point","coordinates":[81231,40049]},{"type":"Point","coordinates":[88735,37691]},{"type":"Point","coordinates":[88732,37697]},{"type":"Point","coordinates":[76068,41366]},{"type":"Point","coordinates":[62900,43584]},{"type":"Point","coordinates":[88738,37701]},{"type":"Point","coordinates":[88737,37702]},{"type":"Point","coordinates":[88737,37702]},{"type":"Point","coordinates":[69002,42764]},{"type":"Point","coordinates":[88864,37661]},{"type":"Point","coordinates":[69001,42767]},{"type":"Point","coordinates":[62906,43593]},{"type":"Point","coordinates":[88740,37707]},{"type":"Point","coordinates":[62912,43594]},{"type":"Point","coordinates":[62906,43595]},{"type":"Point","coordinates":[69001,42771]},{"type":"Point","coordinates":[69303,42722]},{"type":"Point","coordinates":[62911,43597]},{"type":"Point","coordinates":[81409,40024]},{"type":"Point","coordinates":[81404,40031]},{"type":"Point","coordinates":[68996,42779]},{"type":"Point","coordinates":[69008,42778]},{"type":"Point","coordinates":[81408,40040]},{"type":"Point","coordinates":[81409,40040]},{"type":"Point","coordinates":[68998,42791]},{"type":"Point","coordinates":[820,32444]},{"type":"Point","coordinates":[75485,41544]},{"type":"Point","coordinates":[68998,42801]},{"type":"Point","coordinates":[88171,37948]},{"type":"Point","coordinates":[804,32464]},{"type":"Point","coordinates":[806,32465]},{"type":"Point","coordinates":[808,32467]},{"type":"Point","coordinates":[808,32467]},{"type":"Point","coordinates":[88371,37891]},{"type":"Point","coordinates":[1990,33037]},{"type":"Point","coordinates":[89199,37608]},{"type":"Point","coordinates":[89194,37613]},{"type":"Point","coordinates":[89193,37627]},{"type":"Point","coordinates":[91277,36870]},{"type":"Point","coordinates":[88381,37921]},{"type":"Point","coordinates":[34406,43067]},{"type":"Point","coordinates":[71664,42427]},{"type":"Point","coordinates":[68962,42914]},{"type":"Point","coordinates":[68964,42914]},{"type":"Point","coordinates":[68957,42915]},{"type":"Point","coordinates":[69202,42882]},{"type":"Point","coordinates":[573,32457]},{"type":"Point","coordinates":[568,32456]},{"type":"Point","coordinates":[69186,42889]},{"type":"Point","coordinates":[89457,37610]},{"type":"Point","coordinates":[89568,37571]},{"type":"Point","coordinates":[89568,37581]},{"type":"Point","coordinates":[89568,37583]},{"type":"Point","coordinates":[88349,38043]},{"type":"Point","coordinates":[71552,42519]},{"type":"Point","coordinates":[88346,38057]},{"type":"Point","coordinates":[86092,38820]},{"type":"Point","coordinates":[69186,42953]},{"type":"Point","coordinates":[68810,43016]},{"type":"Point","coordinates":[87203,38466]},{"type":"Point","coordinates":[83264,39718]},{"type":"Point","coordinates":[75855,41661]},{"type":"Point","coordinates":[71543,42555]},{"type":"Point","coordinates":[69186,42972]},{"type":"Point","coordinates":[88695,37965]},{"type":"Point","coordinates":[88695,37965]},{"type":"Point","coordinates":[83261,39730]},{"type":"Point","coordinates":[68982,43020]},{"type":"Point","coordinates":[86174,38849]},{"type":"Point","coordinates":[73434,42230]},{"type":"Point","coordinates":[73433,42230]},{"type":"Point","coordinates":[72573,42415]},{"type":"Point","coordinates":[88467,38100]},{"type":"Point","coordinates":[73538,42234]},{"type":"Point","coordinates":[88402,38141]},{"type":"Point","coordinates":[34634,43304]},{"type":"Point","coordinates":[47659,44503]},{"type":"Point","coordinates":[88457,38154]},{"type":"Point","coordinates":[85210,39233]},{"type":"Point","coordinates":[73348,42317]},{"type":"Point","coordinates":[82022,40207]},{"type":"Point","coordinates":[89323,37871]},{"type":"Point","coordinates":[89326,37870]},{"type":"Point","coordinates":[89326,37870]},{"type":"Point","coordinates":[89325,37879]},{"type":"Point","coordinates":[80656,40605]},{"type":"Point","coordinates":[89326,37882]},{"type":"Point","coordinates":[89326,37883]},{"type":"Point","coordinates":[88686,38109]},{"type":"Point","coordinates":[88691,38110]},{"type":"Point","coordinates":[69331,43093]},{"type":"Point","coordinates":[88687,38123]},{"type":"Point","coordinates":[81117,40511]},{"type":"Point","coordinates":[81119,40515]},{"type":"Point","coordinates":[88512,38206]},{"type":"Point","coordinates":[81355,40454]},{"type":"Point","coordinates":[81109,40528]},{"type":"Point","coordinates":[34823,43425]},{"type":"Point","coordinates":[34446,43372]},{"type":"Point","coordinates":[34687,43413]},{"type":"Point","coordinates":[64391,43853]},{"type":"Point","coordinates":[62666,44052]},{"type":"Point","coordinates":[34607,43409]},{"type":"Point","coordinates":[82997,40029]},{"type":"Point","coordinates":[88232,38355]},{"type":"Point","coordinates":[34291,43389]},{"type":"Point","coordinates":[555,32780]},{"type":"Point","coordinates":[555,32783]},{"type":"Point","coordinates":[34676,43454]},{"type":"Point","coordinates":[89327,37995]},{"type":"Point","coordinates":[62967,44072]},{"type":"Point","coordinates":[81139,40593]},{"type":"Point","coordinates":[89312,38010]},{"type":"Point","coordinates":[4095,34472]},{"type":"Point","coordinates":[877,33011]},{"type":"Point","coordinates":[844,32997]},{"type":"Point","coordinates":[89208,38104]},{"type":"Point","coordinates":[87955,38573]},{"type":"Point","coordinates":[34849,43595]},{"type":"Point","coordinates":[34848,43595]},{"type":"Point","coordinates":[34853,43597]},{"type":"Point","coordinates":[34846,43597]},{"type":"Point","coordinates":[34853,43599]},{"type":"Point","coordinates":[34855,43603]},{"type":"Point","coordinates":[34856,43604]},{"type":"Point","coordinates":[831,33046]},{"type":"Point","coordinates":[34616,43571]},{"type":"Point","coordinates":[826,33048]},{"type":"Point","coordinates":[826,33048]},{"type":"Point","coordinates":[62781,44208]},{"type":"Point","coordinates":[62780,44210]},{"type":"Point","coordinates":[62778,44228]},{"type":"Point","coordinates":[83022,40187]},{"type":"Point","coordinates":[81535,40627]},{"type":"Point","coordinates":[81534,40629]},{"type":"Point","coordinates":[81534,40631]},{"type":"Point","coordinates":[87259,38869]},{"type":"Point","coordinates":[87259,38871]},{"type":"Point","coordinates":[34617,43622]},{"type":"Point","coordinates":[88025,38618]},{"type":"Point","coordinates":[1111,33245]},{"type":"Point","coordinates":[84306,39855]},{"type":"Point","coordinates":[558,33004]},{"type":"Point","coordinates":[84661,39755]},{"type":"Point","coordinates":[557,33011]},{"type":"Point","coordinates":[62970,44276]},{"type":"Point","coordinates":[62863,44294]},{"type":"Point","coordinates":[64399,44124]},{"type":"Point","coordinates":[629,33059]},{"type":"Point","coordinates":[86618,39147]},{"type":"Point","coordinates":[84174,39929]},{"type":"Point","coordinates":[34727,43703]},{"type":"Point","coordinates":[86617,39172]},{"type":"Point","coordinates":[86619,39173]},{"type":"Point","coordinates":[34865,43743]},{"type":"Point","coordinates":[86624,39184]},{"type":"Point","coordinates":[86435,39248]},{"type":"Point","coordinates":[86437,39248]},{"type":"Point","coordinates":[80966,40905]},{"type":"Point","coordinates":[86434,39265]},{"type":"Point","coordinates":[80990,40908]},{"type":"Point","coordinates":[564,33094]},{"type":"Point","coordinates":[86620,39209]},{"type":"Point","coordinates":[34698,43754]},{"type":"Point","coordinates":[86615,39218]},{"type":"Point","coordinates":[85127,39700]},{"type":"Point","coordinates":[760,33223]},{"type":"Point","coordinates":[82455,40534]},{"type":"Point","coordinates":[82456,40536]},{"type":"Point","coordinates":[82452,40541]},{"type":"Point","coordinates":[86429,39326]},{"type":"Point","coordinates":[80966,40978]},{"type":"Point","coordinates":[80966,40980]},{"type":"Point","coordinates":[82446,40563]},{"type":"Point","coordinates":[34690,43813]},{"type":"Point","coordinates":[82446,40565]},{"type":"Point","coordinates":[34668,43812]},{"type":"Point","coordinates":[82446,40565]},{"type":"Point","coordinates":[82445,40569]},{"type":"Point","coordinates":[85151,39753]},{"type":"Point","coordinates":[85151,39754]},{"type":"Point","coordinates":[82443,40573]},{"type":"Point","coordinates":[72851,42916]},{"type":"Point","coordinates":[825,33311]},{"type":"Point","coordinates":[80920,41019]},{"type":"Point","coordinates":[72858,42928]},{"type":"Point","coordinates":[80698,41086]},{"type":"Point","coordinates":[80646,41102]},{"type":"Point","coordinates":[72450,43015]},{"type":"Point","coordinates":[88221,38770]},{"type":"Point","coordinates":[80912,41034]},{"type":"Point","coordinates":[82153,40689]},{"type":"Point","coordinates":[34653,43852]},{"type":"Point","coordinates":[80646,41113]},{"type":"Point","coordinates":[85094,39811]},{"type":"Point","coordinates":[34449,43824]},{"type":"Point","coordinates":[85246,39767]},{"type":"Point","coordinates":[86532,39353]},{"type":"Point","coordinates":[80619,41130]},{"type":"Point","coordinates":[80619,41130]},{"type":"Point","coordinates":[80620,41131]},{"type":"Point","coordinates":[86650,39320]},{"type":"Point","coordinates":[80617,41141]},{"type":"Point","coordinates":[34663,43875]},{"type":"Point","coordinates":[34662,43876]},{"type":"Point","coordinates":[34665,43876]},{"type":"Point","coordinates":[34665,43876]},{"type":"Point","coordinates":[80619,41144]},{"type":"Point","coordinates":[86485,39390]},{"type":"Point","coordinates":[80925,41075]},{"type":"Point","coordinates":[80927,41079]},{"type":"Point","coordinates":[85214,39818]},{"type":"Point","coordinates":[85183,39832]},{"type":"Point","coordinates":[86681,39355]},{"type":"Point","coordinates":[85227,39825]},{"type":"Point","coordinates":[85250,39823]},{"type":"Point","coordinates":[85250,39823]},{"type":"Point","coordinates":[85251,39826]},{"type":"Point","coordinates":[85195,39845]},{"type":"Point","coordinates":[34849,43949]},{"type":"Point","coordinates":[80838,41137]},{"type":"Point","coordinates":[82152,40772]},{"type":"Point","coordinates":[80699,41192]},{"type":"Point","coordinates":[80685,41197]},{"type":"Point","coordinates":[85237,39891]},{"type":"Point","coordinates":[86621,39450]},{"type":"Point","coordinates":[87346,39209]},{"type":"Point","coordinates":[86623,39452]},{"type":"Point","coordinates":[69417,43711]},{"type":"Point","coordinates":[86638,39458]},{"type":"Point","coordinates":[86638,39459]},{"type":"Point","coordinates":[86641,39463]},{"type":"Point","coordinates":[34396,43964]},{"type":"Point","coordinates":[86632,39469]},{"type":"Point","coordinates":[87734,39105]},{"type":"Point","coordinates":[86639,39476]},{"type":"Point","coordinates":[34607,44007]},{"type":"Point","coordinates":[86654,39474]},{"type":"Point","coordinates":[84550,40153]},{"type":"Point","coordinates":[84551,40155]},{"type":"Point","coordinates":[72777,43137]},{"type":"Point","coordinates":[84553,40158]},{"type":"Point","coordinates":[84553,40158]},{"type":"Point","coordinates":[84554,40160]},{"type":"Point","coordinates":[80833,41244]},{"type":"Point","coordinates":[526,33379]},{"type":"Point","coordinates":[81962,40933]},{"type":"Point","coordinates":[34497,44015]},{"type":"Point","coordinates":[34613,44036]},{"type":"Point","coordinates":[34620,44042]},{"type":"Point","coordinates":[65667,44354]},{"type":"Point","coordinates":[75814,42550]},{"type":"Point","coordinates":[76557,42397]},{"type":"Point","coordinates":[76557,42397]},{"type":"Point","coordinates":[1101,33732]},{"type":"Point","coordinates":[1101,33733]},{"type":"Point","coordinates":[536,33466]},{"type":"Point","coordinates":[86949,39481]},{"type":"Point","coordinates":[86763,39545]},{"type":"Point","coordinates":[86762,39546]},{"type":"Point","coordinates":[86761,39552]},{"type":"Point","coordinates":[82068,40999]},{"type":"Point","coordinates":[76914,42345]},{"type":"Point","coordinates":[86767,39573]},{"type":"Point","coordinates":[85167,40091]},{"type":"Point","coordinates":[85251,40076]},{"type":"Point","coordinates":[85180,40121]},{"type":"Point","coordinates":[84026,40482]},{"type":"Point","coordinates":[76461,42508]},{"type":"Point","coordinates":[88125,39158]},{"type":"Point","coordinates":[81767,41146]},{"type":"Point","coordinates":[84045,40484]},{"type":"Point","coordinates":[62640,44842]},{"type":"Point","coordinates":[86738,39637]},{"type":"Point","coordinates":[86738,39637]},{"type":"Point","coordinates":[86738,39638]},{"type":"Point","coordinates":[86732,39646]},{"type":"Point","coordinates":[81627,41205]},{"type":"Point","coordinates":[81580,41219]},{"type":"Point","coordinates":[81626,41208]},{"type":"Point","coordinates":[81625,41209]},{"type":"Point","coordinates":[81624,41212]},{"type":"Point","coordinates":[81624,41212]},{"type":"Point","coordinates":[81623,41214]},{"type":"Point","coordinates":[81623,41215]},{"type":"Point","coordinates":[81599,41231]},{"type":"Point","coordinates":[81599,41231]},{"type":"Point","coordinates":[76488,42545]},{"type":"Point","coordinates":[85005,40231]},{"type":"Point","coordinates":[84998,40243]},{"type":"Point","coordinates":[76855,42480]},{"type":"Point","coordinates":[82292,41065]},{"type":"Point","coordinates":[34409,44229]},{"type":"Point","coordinates":[83186,40815]},{"type":"Point","coordinates":[75920,42721]},{"type":"Point","coordinates":[72836,43381]},{"type":"Point","coordinates":[76857,42519]},{"type":"Point","coordinates":[4364,35418]},{"type":"Point","coordinates":[34544,44283]},{"type":"Point","coordinates":[86710,39744]},{"type":"Point","coordinates":[71973,43571]},{"type":"Point","coordinates":[82656,41007]},{"type":"Point","coordinates":[76300,42682]},{"type":"Point","coordinates":[86773,39758]},{"type":"Point","coordinates":[82553,41074]},{"type":"Point","coordinates":[7520,36810]},{"type":"Point","coordinates":[82031,41233]},{"type":"Point","coordinates":[84978,40359]},{"type":"Point","coordinates":[71974,43643]},{"type":"Point","coordinates":[71977,43646]},{"type":"Point","coordinates":[71976,43647]},{"type":"Point","coordinates":[71975,43647]},{"type":"Point","coordinates":[71977,43650]},{"type":"Point","coordinates":[84033,40694]},{"type":"Point","coordinates":[84032,40695]},{"type":"Point","coordinates":[84032,40695]},{"type":"Point","coordinates":[1005,33995]},{"type":"Point","coordinates":[81800,41359]},{"type":"Point","coordinates":[81913,41336]},{"type":"Point","coordinates":[84976,40437]},{"type":"Point","coordinates":[71977,43703]},{"type":"Point","coordinates":[76772,42696]},{"type":"Point","coordinates":[80401,41782]},{"type":"Point","coordinates":[81935,41359]},{"type":"Point","coordinates":[7457,36890]},{"type":"Point","coordinates":[86758,39887]},{"type":"Point","coordinates":[86663,39924]},{"type":"Point","coordinates":[82097,41335]},{"type":"Point","coordinates":[451,33800]},{"type":"Point","coordinates":[87966,39508]},{"type":"Point","coordinates":[4997,35889]},{"type":"Point","coordinates":[76066,42902]},{"type":"Point","coordinates":[81812,41442]},{"type":"Point","coordinates":[73203,43525]},{"type":"Point","coordinates":[73203,43531]},{"type":"Point","coordinates":[4996,35914]},{"type":"Point","coordinates":[81866,41441]},{"type":"Point","coordinates":[81867,41451]},{"type":"Point","coordinates":[81868,41451]},{"type":"Point","coordinates":[85224,40473]},{"type":"Point","coordinates":[86130,40186]},{"type":"Point","coordinates":[2027,34626]},{"type":"Point","coordinates":[85717,40350]},{"type":"Point","coordinates":[78007,42545]},{"type":"Point","coordinates":[83970,40921]},{"type":"Point","coordinates":[1109,34267]},{"type":"Point","coordinates":[4995,36033]},{"type":"Point","coordinates":[1098,34285]},{"type":"Point","coordinates":[86536,40152]},{"type":"Point","coordinates":[76599,42935]},{"type":"Point","coordinates":[82231,41474]},{"type":"Point","coordinates":[382,33947]},{"type":"Point","coordinates":[77171,42809]},{"type":"Point","coordinates":[72966,43736]},{"type":"Point","coordinates":[391,33979]},{"type":"Point","coordinates":[1105,34323]},{"type":"Point","coordinates":[1103,34331]},{"type":"Point","coordinates":[354,33974]},{"type":"Point","coordinates":[84625,40810]},{"type":"Point","coordinates":[84625,40810]},{"type":"Point","coordinates":[697,34147]},{"type":"Point","coordinates":[76784,42946]},{"type":"Point","coordinates":[72960,43790]},{"type":"Point","coordinates":[87161,40019]},{"type":"Point","coordinates":[352,34005]},{"type":"Point","coordinates":[76787,42971]},{"type":"Point","coordinates":[353,34017]},{"type":"Point","coordinates":[76777,42980]},{"type":"Point","coordinates":[72868,43839]},{"type":"Point","coordinates":[86891,40141]},{"type":"Point","coordinates":[13,33875]},{"type":"Point","coordinates":[76010,43177]},{"type":"Point","coordinates":[368,34056]},{"type":"Point","coordinates":[84984,40768]},{"type":"Point","coordinates":[73075,43819]},{"type":"Point","coordinates":[69082,44563]},{"type":"Point","coordinates":[77112,42957]},{"type":"Point","coordinates":[76754,43048]},{"type":"Point","coordinates":[402,34120]},{"type":"Point","coordinates":[76718,43076]},{"type":"Point","coordinates":[72444,44012]},{"type":"Point","coordinates":[81248,41943]},{"type":"Point","coordinates":[79288,42470]},{"type":"Point","coordinates":[76577,43137]},{"type":"Point","coordinates":[501,34207]},{"type":"Point","coordinates":[86817,40267]},{"type":"Point","coordinates":[460,34205]},{"type":"Point","coordinates":[81825,41806]},{"type":"Point","coordinates":[78095,42795]},{"type":"Point","coordinates":[86788,40294]},{"type":"Point","coordinates":[85142,40824]},{"type":"Point","coordinates":[89182,39491]},{"type":"Point","coordinates":[82016,41789]},{"type":"Point","coordinates":[82022,41791]},{"type":"Point","coordinates":[347,34206]},{"type":"Point","coordinates":[88602,39738]},{"type":"Point","coordinates":[361,34222]},{"type":"Point","coordinates":[318,34202]},{"type":"Point","coordinates":[318,34202]},{"type":"Point","coordinates":[82139,41787]},{"type":"Point","coordinates":[330,34216]},{"type":"Point","coordinates":[76805,43179]},{"type":"Point","coordinates":[76802,43180]},{"type":"Point","coordinates":[72295,44144]},{"type":"Point","coordinates":[6460,36998]},{"type":"Point","coordinates":[1579,34842]},{"type":"Point","coordinates":[75041,43607]},{"type":"Point","coordinates":[82104,41834]},{"type":"Point","coordinates":[567,34382]},{"type":"Point","coordinates":[86002,40672]},{"type":"Point","coordinates":[76958,43207]},{"type":"Point","coordinates":[76951,43209]},{"type":"Point","coordinates":[76970,43205]},{"type":"Point","coordinates":[370,34308]},{"type":"Point","coordinates":[76975,43207]},{"type":"Point","coordinates":[76950,43213]},{"type":"Point","coordinates":[76950,43215]},{"type":"Point","coordinates":[76971,43213]},{"type":"Point","coordinates":[823,34533]},{"type":"Point","coordinates":[76555,43312]},{"type":"Point","coordinates":[76555,43312]},{"type":"Point","coordinates":[76976,43215]},{"type":"Point","coordinates":[76955,43220]},{"type":"Point","coordinates":[85724,40789]},{"type":"Point","coordinates":[86813,40436]},{"type":"Point","coordinates":[76558,43318]},{"type":"Point","coordinates":[76954,43225]},{"type":"Point","coordinates":[73002,44086]},{"type":"Point","coordinates":[76952,43226]},{"type":"Point","coordinates":[76959,43226]},{"type":"Point","coordinates":[76967,43225]},{"type":"Point","coordinates":[76563,43322]},{"type":"Point","coordinates":[76983,43227]},{"type":"Point","coordinates":[86748,40469]},{"type":"Point","coordinates":[76981,43233]},{"type":"Point","coordinates":[7223,37391]},{"type":"Point","coordinates":[7238,37407]},{"type":"Point","coordinates":[76909,43261]},{"type":"Point","coordinates":[76909,43263]},{"type":"Point","coordinates":[76910,43263]},{"type":"Point","coordinates":[76907,43264]},{"type":"Point","coordinates":[76908,43264]},{"type":"Point","coordinates":[76909,43264]},{"type":"Point","coordinates":[713,34519]},{"type":"Point","coordinates":[76908,43266]},{"type":"Point","coordinates":[76908,43266]},{"type":"Point","coordinates":[76908,43266]},{"type":"Point","coordinates":[76909,43266]},{"type":"Point","coordinates":[76915,43265]},{"type":"Point","coordinates":[76908,43266]},{"type":"Point","coordinates":[88578,39881]},{"type":"Point","coordinates":[498,34426]},{"type":"Point","coordinates":[76558,43359]},{"type":"Point","coordinates":[7218,37417]},{"type":"Point","coordinates":[7220,37418]},{"type":"Point","coordinates":[77024,43255]},{"type":"Point","coordinates":[76999,43261]},{"type":"Point","coordinates":[478,34429]},{"type":"Point","coordinates":[77019,43264]},{"type":"Point","coordinates":[77017,43264]},{"type":"Point","coordinates":[76835,43308]},{"type":"Point","coordinates":[76930,43287]},{"type":"Point","coordinates":[76911,43295]},{"type":"Point","coordinates":[77069,43258]},{"type":"Point","coordinates":[76900,43298]},{"type":"Point","coordinates":[77019,43272]},{"type":"Point","coordinates":[77018,43272]},{"type":"Point","coordinates":[423,34415]},{"type":"Point","coordinates":[76852,43313]},{"type":"Point","coordinates":[77018,43274]},{"type":"Point","coordinates":[365,34388]},{"type":"Point","coordinates":[318,34366]},{"type":"Point","coordinates":[319,34376]},{"type":"Point","coordinates":[321,34377]},{"type":"Point","coordinates":[77068,43274]},{"type":"Point","coordinates":[77066,43275]},{"type":"Point","coordinates":[77067,43277]},{"type":"Point","coordinates":[77068,43277]},{"type":"Point","coordinates":[77062,43278]},{"type":"Point","coordinates":[77054,43281]},{"type":"Point","coordinates":[334,34389]},{"type":"Point","coordinates":[77064,43279]},{"type":"Point","coordinates":[77063,43279]},{"type":"Point","coordinates":[7198,37447]},{"type":"Point","coordinates":[295,34371]},{"type":"Point","coordinates":[77054,43282]},{"type":"Point","coordinates":[76864,43327]},{"type":"Point","coordinates":[77059,43281]},{"type":"Point","coordinates":[77059,43282]},{"type":"Point","coordinates":[77059,43282]},{"type":"Point","coordinates":[342,34397]},{"type":"Point","coordinates":[77057,43284]},{"type":"Point","coordinates":[77057,43285]},{"type":"Point","coordinates":[77057,43285]},{"type":"Point","coordinates":[77057,43285]},{"type":"Point","coordinates":[77057,43285]},{"type":"Point","coordinates":[77057,43285]},{"type":"Point","coordinates":[77056,43285]},{"type":"Point","coordinates":[86859,40511]},{"type":"Point","coordinates":[77058,43288]},{"type":"Point","coordinates":[76841,43340]},{"type":"Point","coordinates":[76857,43338]},{"type":"Point","coordinates":[924,34682]},{"type":"Point","coordinates":[86826,40529]},{"type":"Point","coordinates":[76850,43344]},{"type":"Point","coordinates":[86872,40518]},{"type":"Point","coordinates":[76828,43354]},{"type":"Point","coordinates":[76828,43354]},{"type":"Point","coordinates":[76830,43354]},{"type":"Point","coordinates":[86865,40523]},{"type":"Point","coordinates":[86888,40516]},{"type":"Point","coordinates":[86827,40537]},{"type":"Point","coordinates":[76834,43355]},{"type":"Point","coordinates":[76834,43355]},{"type":"Point","coordinates":[76835,43355]},{"type":"Point","coordinates":[76837,43355]},{"type":"Point","coordinates":[76832,43357]},{"type":"Point","coordinates":[7198,37470]},{"type":"Point","coordinates":[76866,43350]},{"type":"Point","coordinates":[76837,43358]},{"type":"Point","coordinates":[76838,43358]},{"type":"Point","coordinates":[76840,43358]},{"type":"Point","coordinates":[76837,43359]},{"type":"Point","coordinates":[76838,43360]},{"type":"Point","coordinates":[76838,43360]},{"type":"Point","coordinates":[76826,43364]},{"type":"Point","coordinates":[76862,43356]},{"type":"Point","coordinates":[76838,43362]},{"type":"Point","coordinates":[76845,43363]},{"type":"Point","coordinates":[86839,40545]},{"type":"Point","coordinates":[77330,43250]},{"type":"Point","coordinates":[86860,40539]},{"type":"Point","coordinates":[86836,40547]},{"type":"Point","coordinates":[76843,43366]},{"type":"Point","coordinates":[76842,43368]},{"type":"Point","coordinates":[76871,43362]},{"type":"Point","coordinates":[76844,43369]},{"type":"Point","coordinates":[76845,43369]},{"type":"Point","coordinates":[84848,41187]},{"type":"Point","coordinates":[76840,43371]},{"type":"Point","coordinates":[86869,40543]},{"type":"Point","coordinates":[76849,43372]},{"type":"Point","coordinates":[76851,43374]},{"type":"Point","coordinates":[76842,43378]},{"type":"Point","coordinates":[474,34505]},{"type":"Point","coordinates":[76836,43380]},{"type":"Point","coordinates":[7235,37517]},{"type":"Point","coordinates":[286,34426]},{"type":"Point","coordinates":[7281,37546]},{"type":"Point","coordinates":[395,34484]},{"type":"Point","coordinates":[76865,43401]},{"type":"Point","coordinates":[7246,37544]},{"type":"Point","coordinates":[7242,37543]},{"type":"Point","coordinates":[7244,37544]},{"type":"Point","coordinates":[589,34597]},{"type":"Point","coordinates":[282,34450]},{"type":"Point","coordinates":[87199,40477]},{"type":"Point","coordinates":[277,34456]},{"type":"Point","coordinates":[86583,40688]},{"type":"Point","coordinates":[86749,40634]},{"type":"Point","coordinates":[6504,37255]},{"type":"Point","coordinates":[86753,40635]},{"type":"Point","coordinates":[76555,43498]},{"type":"Point","coordinates":[86756,40640]},{"type":"Point","coordinates":[76859,43429]},{"type":"Point","coordinates":[272,34465]},{"type":"Point","coordinates":[265,34462]},{"type":"Point","coordinates":[5778,36960]},{"type":"Point","coordinates":[6133,37115]},{"type":"Point","coordinates":[6133,37116]},{"type":"Point","coordinates":[0,34346]},{"type":"Point","coordinates":[72833,44313]},{"type":"Point","coordinates":[72092,44459]},{"type":"Point","coordinates":[53162,46433]},{"type":"Point","coordinates":[76713,43484]},{"type":"Point","coordinates":[72105,44466]},{"type":"Point","coordinates":[76549,43530]},{"type":"Point","coordinates":[7224,37593]},{"type":"Point","coordinates":[72098,44474]},{"type":"Point","coordinates":[86608,40727]},{"type":"Point","coordinates":[86605,40729]},{"type":"Point","coordinates":[7232,37603]},{"type":"Point","coordinates":[83603,41670]},{"type":"Point","coordinates":[86598,40735]},{"type":"Point","coordinates":[85988,40933]},{"type":"Point","coordinates":[72104,44489]},{"type":"Point","coordinates":[72104,44489]},{"type":"Point","coordinates":[7218,37616]},{"type":"Point","coordinates":[86970,40629]},{"type":"Point","coordinates":[86595,40764]},{"type":"Point","coordinates":[294,34589]},{"type":"Point","coordinates":[355,34620]},{"type":"Point","coordinates":[292,34590]},{"type":"Point","coordinates":[335,34611]},{"type":"Point","coordinates":[355,34623]},{"type":"Point","coordinates":[271,34590]},{"type":"Point","coordinates":[85704,41113]},{"type":"Point","coordinates":[72915,44423]},{"type":"Point","coordinates":[86014,41026]},{"type":"Point","coordinates":[86015,41029]},{"type":"Point","coordinates":[77222,43490]},{"type":"Point","coordinates":[1018,34974]},{"type":"Point","coordinates":[76547,43652]},{"type":"Point","coordinates":[1307,35120]},{"type":"Point","coordinates":[1307,35120]},{"type":"Point","coordinates":[85508,41207]},{"type":"Point","coordinates":[76878,43589]},{"type":"Point","coordinates":[72654,44513]},{"type":"Point","coordinates":[72415,44564]},{"type":"Point","coordinates":[72518,44548]},{"type":"Point","coordinates":[1326,35162]},{"type":"Point","coordinates":[83176,41969]},{"type":"Point","coordinates":[74582,44158]},{"type":"Point","coordinates":[74603,44159]},{"type":"Point","coordinates":[6388,37445]},{"type":"Point","coordinates":[72671,44561]},{"type":"Point","coordinates":[72676,44561]},{"type":"Point","coordinates":[76733,43695]},{"type":"Point","coordinates":[86965,40815]},{"type":"Point","coordinates":[72633,44580]},{"type":"Point","coordinates":[86969,40816]},{"type":"Point","coordinates":[86969,40817]},{"type":"Point","coordinates":[73040,44506]},{"type":"Point","coordinates":[968,35059]},{"type":"Point","coordinates":[86128,41106]},{"type":"Point","coordinates":[6945,37711]},{"type":"Point","coordinates":[86129,41110]},{"type":"Point","coordinates":[72006,44728]},{"type":"Point","coordinates":[994,35095]},{"type":"Point","coordinates":[936,35069]},{"type":"Point","coordinates":[810,35010]},{"type":"Point","coordinates":[76584,43774]},{"type":"Point","coordinates":[949,35078]},{"type":"Point","coordinates":[946,35085]},{"type":"Point","coordinates":[951,35088]},{"type":"Point","coordinates":[945,35087]},{"type":"Point","coordinates":[945,35088]},{"type":"Point","coordinates":[945,35088]},{"type":"Point","coordinates":[946,35089]},{"type":"Point","coordinates":[946,35091]},{"type":"Point","coordinates":[948,35092]},{"type":"Point","coordinates":[949,35094]},{"type":"Point","coordinates":[949,35094]},{"type":"Point","coordinates":[949,35095]},{"type":"Point","coordinates":[950,35098]},{"type":"Point","coordinates":[950,35098]},{"type":"Point","coordinates":[952,35099]},{"type":"Point","coordinates":[955,35101]},{"type":"Point","coordinates":[955,35101]},{"type":"Point","coordinates":[955,35101]},{"type":"Point","coordinates":[955,35101]},{"type":"Point","coordinates":[955,35101]},{"type":"Point","coordinates":[955,35101]},{"type":"Point","coordinates":[955,35101]},{"type":"Point","coordinates":[72902,44596]},{"type":"Point","coordinates":[86707,40980]},{"type":"Point","coordinates":[86495,41050]},{"type":"Point","coordinates":[76762,43774]},{"type":"Point","coordinates":[74590,44262]},{"type":"Point","coordinates":[86079,41205]},{"type":"Point","coordinates":[85075,41531]},{"type":"Point","coordinates":[86236,41167]},{"type":"Point","coordinates":[86093,41217]},{"type":"Point","coordinates":[86094,41217]},{"type":"Point","coordinates":[67061,45642]},{"type":"Point","coordinates":[74544,44314]},{"type":"Point","coordinates":[86129,41227]},{"type":"Point","coordinates":[83762,41985]},{"type":"Point","coordinates":[6148,37526]},{"type":"Point","coordinates":[7168,37958]},{"type":"Point","coordinates":[61942,46318]},{"type":"Point","coordinates":[87943,40669]},{"type":"Point","coordinates":[72422,44822]},{"type":"Point","coordinates":[72423,44828]},{"type":"Point","coordinates":[338,34973]},{"type":"Point","coordinates":[85727,41442]},{"type":"Point","coordinates":[345,35007]},{"type":"Point","coordinates":[361,35027]},{"type":"Point","coordinates":[357,35026]},{"type":"Point","coordinates":[384,35040]},{"type":"Point","coordinates":[86526,41228]},{"type":"Point","coordinates":[381,35041]},{"type":"Point","coordinates":[410,35066]},{"type":"Point","coordinates":[72367,44910]},{"type":"Point","coordinates":[72367,44911]},{"type":"Point","coordinates":[72368,44912]},{"type":"Point","coordinates":[50129,46946]},{"type":"Point","coordinates":[596,35169]},{"type":"Point","coordinates":[596,35169]},{"type":"Point","coordinates":[429,35090]},{"type":"Point","coordinates":[88962,40443]},{"type":"Point","coordinates":[72350,44943]},{"type":"Point","coordinates":[68716,45583]},{"type":"Point","coordinates":[68759,45578]},{"type":"Point","coordinates":[68757,45579]},{"type":"Point","coordinates":[68743,45583]},{"type":"Point","coordinates":[72533,44914]},{"type":"Point","coordinates":[72457,44928]},{"type":"Point","coordinates":[86164,41401]},{"type":"Point","coordinates":[1189,35481]},{"type":"Point","coordinates":[1188,35484]},{"type":"Point","coordinates":[72465,44936]},{"type":"Point","coordinates":[1199,35490]},{"type":"Point","coordinates":[57295,46824]},{"type":"Point","coordinates":[57295,46825]},{"type":"Point","coordinates":[560,35189]},{"type":"Point","coordinates":[72451,44943]},{"type":"Point","coordinates":[73095,44818]},{"type":"Point","coordinates":[73095,44820]},{"type":"Point","coordinates":[7182,38134]},{"type":"Point","coordinates":[84734,41873]},{"type":"Point","coordinates":[4949,37199]},{"type":"Point","coordinates":[73129,44826]},{"type":"Point","coordinates":[484,35177]},{"type":"Point","coordinates":[1186,35510]},{"type":"Point","coordinates":[1184,35515]},{"type":"Point","coordinates":[501,35192]},{"type":"Point","coordinates":[1200,35529]},{"type":"Point","coordinates":[86660,41284]},{"type":"Point","coordinates":[76227,44182]},{"type":"Point","coordinates":[81315,42904]},{"type":"Point","coordinates":[69026,45596]},{"type":"Point","coordinates":[69026,45596]},{"type":"Point","coordinates":[64537,46233]},{"type":"Point","coordinates":[5759,37596]},{"type":"Point","coordinates":[5759,37596]},{"type":"Point","coordinates":[73194,44861]},{"type":"Point","coordinates":[85816,41600]},{"type":"Point","coordinates":[85822,41599]},{"type":"Point","coordinates":[72475,45020]},{"type":"Point","coordinates":[72475,45021]},{"type":"Point","coordinates":[72477,45023]},{"type":"Point","coordinates":[72478,45023]},{"type":"Point","coordinates":[72477,45024]},{"type":"Point","coordinates":[87290,41129]},{"type":"Point","coordinates":[68485,45733]},{"type":"Point","coordinates":[72434,45043]},{"type":"Point","coordinates":[58004,46887]},{"type":"Point","coordinates":[86401,41448]},{"type":"Point","coordinates":[296,35189]},{"type":"Point","coordinates":[1285,35669]},{"type":"Point","coordinates":[68792,45724]},{"type":"Point","coordinates":[72980,44975]},{"type":"Point","coordinates":[72979,44976]},{"type":"Point","coordinates":[72983,44978]},{"type":"Point","coordinates":[72489,45081]},{"type":"Point","coordinates":[84734,42009]},{"type":"Point","coordinates":[1349,35717]},{"type":"Point","coordinates":[85163,41878]},{"type":"Point","coordinates":[81300,43019]},{"type":"Point","coordinates":[64995,46285]},{"type":"Point","coordinates":[83608,42389]},{"type":"Point","coordinates":[83609,42390]},{"type":"Point","coordinates":[81305,43051]},{"type":"Point","coordinates":[72214,45184]},{"type":"Point","coordinates":[81541,43004]},{"type":"Point","coordinates":[87322,41246]},{"type":"Point","coordinates":[72226,45216]},{"type":"Point","coordinates":[70356,45568]},{"type":"Point","coordinates":[5226,37553]},{"type":"Point","coordinates":[81318,43116]},{"type":"Point","coordinates":[72721,45147]},{"type":"Point","coordinates":[72724,45153]},{"type":"Point","coordinates":[1113,35727]},{"type":"Point","coordinates":[86118,41727]},{"type":"Point","coordinates":[7150,38432]},{"type":"Point","coordinates":[72679,45217]},{"type":"Point","coordinates":[72680,45218]},{"type":"Point","coordinates":[72679,45218]},{"type":"Point","coordinates":[72478,45260]},{"type":"Point","coordinates":[72684,45225]},{"type":"Point","coordinates":[86733,41557]},{"type":"Point","coordinates":[86744,41554]},{"type":"Point","coordinates":[617,35561]},{"type":"Point","coordinates":[691,35597]},{"type":"Point","coordinates":[706,35615]},{"type":"Point","coordinates":[84516,42275]},{"type":"Point","coordinates":[706,35618]},{"type":"Point","coordinates":[709,35622]},{"type":"Point","coordinates":[704,35620]},{"type":"Point","coordinates":[703,35622]},{"type":"Point","coordinates":[90427,40304]},{"type":"Point","coordinates":[707,35625]},{"type":"Point","coordinates":[72601,45264]},{"type":"Point","coordinates":[714,35628]},{"type":"Point","coordinates":[86643,41610]},{"type":"Point","coordinates":[709,35629]},{"type":"Point","coordinates":[707,35629]},{"type":"Point","coordinates":[710,35636]},{"type":"Point","coordinates":[835,35701]},{"type":"Point","coordinates":[563,35576]},{"type":"Point","coordinates":[51615,47364]},{"type":"Point","coordinates":[84370,42353]},{"type":"Point","coordinates":[690,35649]},{"type":"Point","coordinates":[605,35624]},{"type":"Point","coordinates":[580,35613]},{"type":"Point","coordinates":[744,35693]},{"type":"Point","coordinates":[744,35693]},{"type":"Point","coordinates":[5892,38001]},{"type":"Point","coordinates":[85709,41964]},{"type":"Point","coordinates":[5887,38004]},{"type":"Point","coordinates":[5887,38004]},{"type":"Point","coordinates":[5883,38003]},{"type":"Point","coordinates":[5886,38006]},{"type":"Point","coordinates":[5886,38007]},{"type":"Point","coordinates":[5886,38007]},{"type":"Point","coordinates":[5886,38007]},{"type":"Point","coordinates":[5886,38007]},{"type":"Point","coordinates":[5886,38007]},{"type":"Point","coordinates":[5884,38007]},{"type":"Point","coordinates":[5885,38008]},{"type":"Point","coordinates":[5885,38008]},{"type":"Point","coordinates":[5885,38008]},{"type":"Point","coordinates":[5883,38010]},{"type":"Point","coordinates":[5885,38014]},{"type":"Point","coordinates":[5885,38014]},{"type":"Point","coordinates":[5885,38014]},{"type":"Point","coordinates":[5885,38014]},{"type":"Point","coordinates":[5885,38014]},{"type":"Point","coordinates":[5885,38014]},{"type":"Point","coordinates":[85718,41988]},{"type":"Point","coordinates":[85771,41975]},{"type":"Point","coordinates":[1229,35958]},{"type":"Point","coordinates":[86432,41771]},{"type":"Point","coordinates":[87014,41599]},{"type":"Point","coordinates":[85847,41978]},{"type":"Point","coordinates":[75462,44783]},{"type":"Point","coordinates":[53801,47427]},{"type":"Point","coordinates":[86053,41921]},{"type":"Point","coordinates":[85765,42022]},{"type":"Point","coordinates":[85770,42023]},{"type":"Point","coordinates":[72866,45346]},{"type":"Point","coordinates":[86051,41937]},{"type":"Point","coordinates":[85769,42030]},{"type":"Point","coordinates":[80243,43649]},{"type":"Point","coordinates":[86681,41742]},{"type":"Point","coordinates":[87368,41522]},{"type":"Point","coordinates":[62397,46927]},{"type":"Point","coordinates":[84463,42461]},{"type":"Point","coordinates":[86057,41964]},{"type":"Point","coordinates":[76170,44685]},{"type":"Point","coordinates":[85886,42037]},{"type":"Point","coordinates":[74520,45057]},{"type":"Point","coordinates":[86051,41989]},{"type":"Point","coordinates":[34594,46291]},{"type":"Point","coordinates":[51714,47533]},{"type":"Point","coordinates":[73254,45328]},{"type":"Point","coordinates":[86326,41910]},{"type":"Point","coordinates":[86325,41910]},{"type":"Point","coordinates":[86325,41910]},{"type":"Point","coordinates":[86325,41910]},{"type":"Point","coordinates":[85907,42050]},{"type":"Point","coordinates":[85894,42063]},{"type":"Point","coordinates":[86461,41883]},{"type":"Point","coordinates":[73197,45379]},{"type":"Point","coordinates":[86140,42009]},{"type":"Point","coordinates":[81553,43384]},{"type":"Point","coordinates":[84486,42535]},{"type":"Point","coordinates":[86308,41971]},{"type":"Point","coordinates":[73205,45400]},{"type":"Point","coordinates":[766,35923]},{"type":"Point","coordinates":[86227,42023]},{"type":"Point","coordinates":[87108,41737]},{"type":"Point","coordinates":[86227,42026]},{"type":"Point","coordinates":[83372,42914]},{"type":"Point","coordinates":[85886,42149]},{"type":"Point","coordinates":[85898,42146]},{"type":"Point","coordinates":[85832,42168]},{"type":"Point","coordinates":[86325,42013]},{"type":"Point","coordinates":[85888,42155]},{"type":"Point","coordinates":[86342,42010]},{"type":"Point","coordinates":[86343,42012]},{"type":"Point","coordinates":[86473,41975]},{"type":"Point","coordinates":[86499,41971]},{"type":"Point","coordinates":[86473,41985]},{"type":"Point","coordinates":[86349,42026]},{"type":"Point","coordinates":[86476,41994]},{"type":"Point","coordinates":[88568,41294]},{"type":"Point","coordinates":[86210,42084]},{"type":"Point","coordinates":[86351,42047]},{"type":"Point","coordinates":[85918,42189]},{"type":"Point","coordinates":[83454,42954]},{"type":"Point","coordinates":[86471,42026]},{"type":"Point","coordinates":[89010,41172]},{"type":"Point","coordinates":[86379,42061]},{"type":"Point","coordinates":[85692,42290]},{"type":"Point","coordinates":[85986,42199]},{"type":"Point","coordinates":[85973,42206]},{"type":"Point","coordinates":[86507,42038]},{"type":"Point","coordinates":[74675,45224]},{"type":"Point","coordinates":[84332,42742]},{"type":"Point","coordinates":[53746,47712]},{"type":"Point","coordinates":[86107,42189]},{"type":"Point","coordinates":[86019,42217]},{"type":"Point","coordinates":[86048,42209]},{"type":"Point","coordinates":[86024,42217]},{"type":"Point","coordinates":[72445,45698]},{"type":"Point","coordinates":[86486,42070]},{"type":"Point","coordinates":[72447,45699]},{"type":"Point","coordinates":[225,35820]},{"type":"Point","coordinates":[1261,36312]},{"type":"Point","coordinates":[233,35828]},{"type":"Point","coordinates":[72488,45703]},{"type":"Point","coordinates":[86001,42249]},{"type":"Point","coordinates":[86005,42248]},{"type":"Point","coordinates":[716,36073]},{"type":"Point","coordinates":[86002,42256]},{"type":"Point","coordinates":[86000,42258]},{"type":"Point","coordinates":[86001,42260]},{"type":"Point","coordinates":[86274,42173]},{"type":"Point","coordinates":[85844,42313]},{"type":"Point","coordinates":[310,35898]},{"type":"Point","coordinates":[311,35900]},{"type":"Point","coordinates":[86374,42161]},{"type":"Point","coordinates":[74698,45299]},{"type":"Point","coordinates":[86293,42193]},{"type":"Point","coordinates":[86293,42193]},{"type":"Point","coordinates":[86294,42193]},{"type":"Point","coordinates":[86294,42193]},{"type":"Point","coordinates":[61362,47340]},{"type":"Point","coordinates":[86262,42207]},{"type":"Point","coordinates":[86363,42175]},{"type":"Point","coordinates":[86292,42199]},{"type":"Point","coordinates":[61376,47343]},{"type":"Point","coordinates":[86170,42242]},{"type":"Point","coordinates":[79340,44229]},{"type":"Point","coordinates":[86296,42217]},{"type":"Point","coordinates":[86296,42218]},{"type":"Point","coordinates":[86157,42263]},{"type":"Point","coordinates":[6643,38767]},{"type":"Point","coordinates":[57788,47637]},{"type":"Point","coordinates":[57788,47638]},{"type":"Point","coordinates":[57788,47638]},{"type":"Point","coordinates":[86292,42227]},{"type":"Point","coordinates":[86292,42227]},{"type":"Point","coordinates":[57992,47631]},{"type":"Point","coordinates":[57933,47637]},{"type":"Point","coordinates":[86287,42234]},{"type":"Point","coordinates":[83345,43144]},{"type":"Point","coordinates":[80990,43812]},{"type":"Point","coordinates":[57987,47640]},{"type":"Point","coordinates":[58032,47638]},{"type":"Point","coordinates":[421,36019]},{"type":"Point","coordinates":[72211,45852]},{"type":"Point","coordinates":[85625,42458]},{"type":"Point","coordinates":[80974,43828]},{"type":"Point","coordinates":[74686,45357]},{"type":"Point","coordinates":[74683,45358]},{"type":"Point","coordinates":[85625,42463]},{"type":"Point","coordinates":[74683,45359]},{"type":"Point","coordinates":[86008,42342]},{"type":"Point","coordinates":[6764,38848]},{"type":"Point","coordinates":[6762,38848]},{"type":"Point","coordinates":[6763,38848]},{"type":"Point","coordinates":[85626,42466]},{"type":"Point","coordinates":[74686,45366]},{"type":"Point","coordinates":[86491,42194]},{"type":"Point","coordinates":[70119,46251]},{"type":"Point","coordinates":[7027,38969]},{"type":"Point","coordinates":[86310,42260]},{"type":"Point","coordinates":[85901,42393]},{"type":"Point","coordinates":[86953,42052]},{"type":"Point","coordinates":[52392,47876]},{"type":"Point","coordinates":[80942,43863]},{"type":"Point","coordinates":[86304,42273]},{"type":"Point","coordinates":[86306,42272]},{"type":"Point","coordinates":[83915,43021]},{"type":"Point","coordinates":[58024,47685]},{"type":"Point","coordinates":[58033,47693]},{"type":"Point","coordinates":[57973,47703]},{"type":"Point","coordinates":[7015,39016]},{"type":"Point","coordinates":[86067,42391]},{"type":"Point","coordinates":[86168,42371]},{"type":"Point","coordinates":[86169,42372]},{"type":"Point","coordinates":[85734,42519]},{"type":"Point","coordinates":[85409,42622]},{"type":"Point","coordinates":[86194,42379]},{"type":"Point","coordinates":[86194,42379]},{"type":"Point","coordinates":[86194,42379]},{"type":"Point","coordinates":[86196,42379]},{"type":"Point","coordinates":[86279,42352]},{"type":"Point","coordinates":[85985,42447]},{"type":"Point","coordinates":[84220,42997]},{"type":"Point","coordinates":[85742,42531]},{"type":"Point","coordinates":[85410,42641]},{"type":"Point","coordinates":[81315,43852]},{"type":"Point","coordinates":[84741,42853]},{"type":"Point","coordinates":[81315,43852]},{"type":"Point","coordinates":[85737,42547]},{"type":"Point","coordinates":[86459,42317]},{"type":"Point","coordinates":[58074,47768]},{"type":"Point","coordinates":[86175,42423]},{"type":"Point","coordinates":[823,36360]},{"type":"Point","coordinates":[821,36360]},{"type":"Point","coordinates":[819,36360]},{"type":"Point","coordinates":[80764,44034]},{"type":"Point","coordinates":[83946,43131]},{"type":"Point","coordinates":[62030,47482]},{"type":"Point","coordinates":[86463,42355]},{"type":"Point","coordinates":[86225,42434]},{"type":"Point","coordinates":[265,36120]},{"type":"Point","coordinates":[264,36123]},{"type":"Point","coordinates":[908,36430]},{"type":"Point","coordinates":[86252,42442]},{"type":"Point","coordinates":[6650,38984]},{"type":"Point","coordinates":[86464,42376]},{"type":"Point","coordinates":[86504,42365]},{"type":"Point","coordinates":[86505,42366]},{"type":"Point","coordinates":[86469,42379]},{"type":"Point","coordinates":[86289,42437]},{"type":"Point","coordinates":[85731,42617]},{"type":"Point","coordinates":[86114,42495]},{"type":"Point","coordinates":[86293,42438]},{"type":"Point","coordinates":[86292,42438]},{"type":"Point","coordinates":[86355,42419]},{"type":"Point","coordinates":[86359,42419]},{"type":"Point","coordinates":[86116,42499]},{"type":"Point","coordinates":[86389,42412]},{"type":"Point","coordinates":[86352,42427]},{"type":"Point","coordinates":[86368,42423]},{"type":"Point","coordinates":[80858,44061]},{"type":"Point","coordinates":[85127,42821]},{"type":"Point","coordinates":[84588,42989]},{"type":"Point","coordinates":[85138,42820]},{"type":"Point","coordinates":[86182,42492]},{"type":"Point","coordinates":[85908,42580]},{"type":"Point","coordinates":[86184,42495]},{"type":"Point","coordinates":[84271,43094]},{"type":"Point","coordinates":[86185,42497]},{"type":"Point","coordinates":[84405,43057]},{"type":"Point","coordinates":[86429,42425]},{"type":"Point","coordinates":[86176,42511]},{"type":"Point","coordinates":[58057,47867]},{"type":"Point","coordinates":[83960,43203]},{"type":"Point","coordinates":[89191,41509]},{"type":"Point","coordinates":[86276,42492]},{"type":"Point","coordinates":[58072,47881]},{"type":"Point","coordinates":[86465,42434]},{"type":"Point","coordinates":[58062,47883]},{"type":"Point","coordinates":[81982,43794]},{"type":"Point","coordinates":[86309,42489]},{"type":"Point","coordinates":[86278,42505]},{"type":"Point","coordinates":[58017,47896]},{"type":"Point","coordinates":[86224,42528]},{"type":"Point","coordinates":[84207,43158]},{"type":"Point","coordinates":[84309,43136]},{"type":"Point","coordinates":[86157,42560]},{"type":"Point","coordinates":[58022,47912]},{"type":"Point","coordinates":[86155,42562]},{"type":"Point","coordinates":[86182,42555]},{"type":"Point","coordinates":[34605,46892]},{"type":"Point","coordinates":[86156,42565]},{"type":"Point","coordinates":[58059,47916]},{"type":"Point","coordinates":[76825,45153]},{"type":"Point","coordinates":[86199,42558]},{"type":"Point","coordinates":[228,36226]},{"type":"Point","coordinates":[86651,42421]},{"type":"Point","coordinates":[86186,42573]},{"type":"Point","coordinates":[86186,42574]},{"type":"Point","coordinates":[6977,39228]},{"type":"Point","coordinates":[86480,42480]},{"type":"Point","coordinates":[86196,42578]},{"type":"Point","coordinates":[88228,41912]},{"type":"Point","coordinates":[84039,43257]},{"type":"Point","coordinates":[34694,46943]},{"type":"Point","coordinates":[86202,42589]},{"type":"Point","coordinates":[6963,39244]},{"type":"Point","coordinates":[59557,47851]},{"type":"Point","coordinates":[86200,42593]},{"type":"Point","coordinates":[86193,42596]},{"type":"Point","coordinates":[86194,42596]},{"type":"Point","coordinates":[86195,42597]},{"type":"Point","coordinates":[6965,39252]},{"type":"Point","coordinates":[34669,46950]},{"type":"Point","coordinates":[86298,42572]},{"type":"Point","coordinates":[86989,42348]},{"type":"Point","coordinates":[86102,42636]},{"type":"Point","coordinates":[86097,42639]},{"type":"Point","coordinates":[6451,39047]},{"type":"Point","coordinates":[84170,43238]},{"type":"Point","coordinates":[6975,39265]},{"type":"Point","coordinates":[6970,39264]},{"type":"Point","coordinates":[34773,46980]},{"type":"Point","coordinates":[86072,42669]},{"type":"Point","coordinates":[85905,42723]},{"type":"Point","coordinates":[86298,42605]},{"type":"Point","coordinates":[86234,42626]},{"type":"Point","coordinates":[85680,42803]},{"type":"Point","coordinates":[85680,42804]},{"type":"Point","coordinates":[86233,42629]},{"type":"Point","coordinates":[85985,42712]},{"type":"Point","coordinates":[86239,42633]},{"type":"Point","coordinates":[86239,42633]},{"type":"Point","coordinates":[86239,42633]},{"type":"Point","coordinates":[86230,42637]},{"type":"Point","coordinates":[86237,42636]},{"type":"Point","coordinates":[86247,42638]},{"type":"Point","coordinates":[34577,46989]},{"type":"Point","coordinates":[86311,42621]},{"type":"Point","coordinates":[81798,43981]},{"type":"Point","coordinates":[85891,42761]},{"type":"Point","coordinates":[86019,42721]},{"type":"Point","coordinates":[85995,42730]},{"type":"Point","coordinates":[244,36336]},{"type":"Point","coordinates":[85995,42731]},{"type":"Point","coordinates":[58105,48029]},{"type":"Point","coordinates":[74487,45794]},{"type":"Point","coordinates":[86321,42638]},{"type":"Point","coordinates":[86276,42653]},{"type":"Point","coordinates":[82089,43923]},{"type":"Point","coordinates":[34952,47074]},{"type":"Point","coordinates":[82086,43925]},{"type":"Point","coordinates":[82088,43932]},{"type":"Point","coordinates":[6093,38986]},{"type":"Point","coordinates":[82068,43944]},{"type":"Point","coordinates":[58057,48057]},{"type":"Point","coordinates":[86304,42669]},{"type":"Point","coordinates":[86303,42671]},{"type":"Point","coordinates":[86191,42714]},{"type":"Point","coordinates":[86192,42714]},{"type":"Point","coordinates":[86191,42714]},{"type":"Point","coordinates":[85864,42826]},{"type":"Point","coordinates":[86358,42669]},{"type":"Point","coordinates":[86194,42724]},{"type":"Point","coordinates":[34586,47060]},{"type":"Point","coordinates":[34584,47063]},{"type":"Point","coordinates":[1216,36878]},{"type":"Point","coordinates":[34632,47089]},{"type":"Point","coordinates":[34701,47112]},{"type":"Point","coordinates":[34701,47112]},{"type":"Point","coordinates":[86633,42620]},{"type":"Point","coordinates":[75477,45663]},{"type":"Point","coordinates":[364,36493]},{"type":"Point","coordinates":[34606,47104]},{"type":"Point","coordinates":[86024,42832]},{"type":"Point","coordinates":[326,36493]},{"type":"Point","coordinates":[1320,36974]},{"type":"Point","coordinates":[86173,42817]},{"type":"Point","coordinates":[86181,42825]},{"type":"Point","coordinates":[303,36523]},{"type":"Point","coordinates":[321,36533]},{"type":"Point","coordinates":[85367,43086]},{"type":"Point","coordinates":[62391,47831]},{"type":"Point","coordinates":[85546,43037]},{"type":"Point","coordinates":[399,36592]},{"type":"Point","coordinates":[1275,37007]},{"type":"Point","coordinates":[83832,43580]},{"type":"Point","coordinates":[349,36581]},{"type":"Point","coordinates":[335,36578]},{"type":"Point","coordinates":[86045,42916]},{"type":"Point","coordinates":[1258,37025]},{"type":"Point","coordinates":[25798,45536]},{"type":"Point","coordinates":[84014,43551]},{"type":"Point","coordinates":[86459,42792]},{"type":"Point","coordinates":[86340,42832]},{"type":"Point","coordinates":[340,36600]},{"type":"Point","coordinates":[1288,37049]},{"type":"Point","coordinates":[1153,36991]},{"type":"Point","coordinates":[25818,45560]},{"type":"Point","coordinates":[1263,37050]},{"type":"Point","coordinates":[1264,37050]},{"type":"Point","coordinates":[1006,36937]},{"type":"Point","coordinates":[84984,43283]},{"type":"Point","coordinates":[86355,42850]},{"type":"Point","coordinates":[34623,47238]},{"type":"Point","coordinates":[81745,44238]},{"type":"Point","coordinates":[86326,42861]},{"type":"Point","coordinates":[6130,39216]},{"type":"Point","coordinates":[84991,43291]},{"type":"Point","coordinates":[1286,37082]},{"type":"Point","coordinates":[61215,48028]},{"type":"Point","coordinates":[61215,48029]},{"type":"Point","coordinates":[6132,39227]},{"type":"Point","coordinates":[86343,42871]},{"type":"Point","coordinates":[84992,43299]},{"type":"Point","coordinates":[74357,46063]},{"type":"Point","coordinates":[6884,39546]},{"type":"Point","coordinates":[441,36694]},{"type":"Point","coordinates":[86368,42868]},{"type":"Point","coordinates":[86368,42869]},{"type":"Point","coordinates":[86367,42871]},{"type":"Point","coordinates":[86366,42871]},{"type":"Point","coordinates":[86369,42871]},{"type":"Point","coordinates":[34671,47272]},{"type":"Point","coordinates":[86367,42874]},{"type":"Point","coordinates":[86367,42874]},{"type":"Point","coordinates":[446,36703]},{"type":"Point","coordinates":[1025,36992]},{"type":"Point","coordinates":[86343,42901]},{"type":"Point","coordinates":[74607,46036]},{"type":"Point","coordinates":[86343,42902]},{"type":"Point","coordinates":[86343,42902]},{"type":"Point","coordinates":[86369,42898]},{"type":"Point","coordinates":[84103,43605]},{"type":"Point","coordinates":[1000,36990]},{"type":"Point","coordinates":[86375,42900]},{"type":"Point","coordinates":[86375,42900]},{"type":"Point","coordinates":[86376,42900]},{"type":"Point","coordinates":[374,36700]},{"type":"Point","coordinates":[413,36722]},{"type":"Point","coordinates":[407,36721]},{"type":"Point","coordinates":[86367,42913]},{"type":"Point","coordinates":[86367,42913]},{"type":"Point","coordinates":[59990,48186]},{"type":"Point","coordinates":[403,36724]},{"type":"Point","coordinates":[60351,48159]},{"type":"Point","coordinates":[401,36731]},{"type":"Point","coordinates":[25835,45651]},{"type":"Point","coordinates":[401,36733]},{"type":"Point","coordinates":[400,36737]},{"type":"Point","coordinates":[84117,43633]},{"type":"Point","coordinates":[380,36737]},{"type":"Point","coordinates":[83077,43952]},{"type":"Point","coordinates":[385,36745]},{"type":"Point","coordinates":[398,36754]},{"type":"Point","coordinates":[25849,45686]},{"type":"Point","coordinates":[85402,43263]},{"type":"Point","coordinates":[405,36785]},{"type":"Point","coordinates":[5499,39088]},{"type":"Point","coordinates":[55368,48527]},{"type":"Point","coordinates":[689,36942]},{"type":"Point","coordinates":[688,36942]},{"type":"Point","coordinates":[687,36945]},{"type":"Point","coordinates":[687,36945]},{"type":"Point","coordinates":[89276,42022]},{"type":"Point","coordinates":[686,36946]},{"type":"Point","coordinates":[686,36947]},{"type":"Point","coordinates":[88829,42200]},{"type":"Point","coordinates":[88878,42186]},{"type":"Point","coordinates":[25808,45769]},{"type":"Point","coordinates":[448,36883]},{"type":"Point","coordinates":[704,37005]},{"type":"Point","coordinates":[1424,37344]},{"type":"Point","coordinates":[25892,45798]},{"type":"Point","coordinates":[74443,46246]},{"type":"Point","coordinates":[81909,44417]},{"type":"Point","coordinates":[76025,45917]},{"type":"Point","coordinates":[84059,43806]},{"type":"Point","coordinates":[79765,45010]},{"type":"Point","coordinates":[73035,46551]},{"type":"Point","coordinates":[84055,43811]},{"type":"Point","coordinates":[87034,42885]},{"type":"Point","coordinates":[1294,37344]},{"type":"Point","coordinates":[85018,43544]},{"type":"Point","coordinates":[1295,37352]},{"type":"Point","coordinates":[1296,37353]},{"type":"Point","coordinates":[1290,37355]},{"type":"Point","coordinates":[1291,37358]},{"type":"Point","coordinates":[1144,37295]},{"type":"Point","coordinates":[6711,39754]},{"type":"Point","coordinates":[6718,39760]},{"type":"Point","coordinates":[1283,37375]},{"type":"Point","coordinates":[74540,46306]},{"type":"Point","coordinates":[88783,42348]},{"type":"Point","coordinates":[6716,39774]},{"type":"Point","coordinates":[6865,39835]},{"type":"Point","coordinates":[74426,46341]},{"type":"Point","coordinates":[1128,37320]},{"type":"Point","coordinates":[84053,43888]},{"type":"Point","coordinates":[83647,44013]},{"type":"Point","coordinates":[696,37137]},{"type":"Point","coordinates":[1480,37510]},{"type":"Point","coordinates":[1480,37510]},{"type":"Point","coordinates":[88990,42315]},{"type":"Point","coordinates":[86402,43190]},{"type":"Point","coordinates":[522,37073]},{"type":"Point","coordinates":[6711,39816]},{"type":"Point","coordinates":[88767,42405]},{"type":"Point","coordinates":[6713,39821]},{"type":"Point","coordinates":[6719,39829]},{"type":"Point","coordinates":[83650,44056]},{"type":"Point","coordinates":[1223,37418]},{"type":"Point","coordinates":[86371,43215]},{"type":"Point","coordinates":[6718,39834]},{"type":"Point","coordinates":[6716,39840]},{"type":"Point","coordinates":[921,37291]},{"type":"Point","coordinates":[61102,48406]},{"type":"Point","coordinates":[6715,39850]},{"type":"Point","coordinates":[74431,46413]},{"type":"Point","coordinates":[6696,39846]},{"type":"Point","coordinates":[25901,45982]},{"type":"Point","coordinates":[527,37121]},{"type":"Point","coordinates":[1108,37402]},{"type":"Point","coordinates":[1078,37392]},{"type":"Point","coordinates":[1498,37592]},{"type":"Point","coordinates":[776,37261]},{"type":"Point","coordinates":[783,37272]},{"type":"Point","coordinates":[6700,39884]},{"type":"Point","coordinates":[84055,44000]},{"type":"Point","coordinates":[1023,37392]},{"type":"Point","coordinates":[6657,39880]},{"type":"Point","coordinates":[6690,39897]},{"type":"Point","coordinates":[6690,39899]},{"type":"Point","coordinates":[6690,39899]},{"type":"Point","coordinates":[334,37085]},{"type":"Point","coordinates":[6685,39903]},{"type":"Point","coordinates":[6664,39895]},{"type":"Point","coordinates":[1097,37449]},{"type":"Point","coordinates":[728,37279]},{"type":"Point","coordinates":[6655,39902]},{"type":"Point","coordinates":[698,37275]},{"type":"Point","coordinates":[691,37276]},{"type":"Point","coordinates":[85249,43678]},{"type":"Point","coordinates":[1348,37589]},{"type":"Point","coordinates":[681,37281]},{"type":"Point","coordinates":[681,37282]},{"type":"Point","coordinates":[861,37367]},{"type":"Point","coordinates":[863,37368]},{"type":"Point","coordinates":[61708,48449]},{"type":"Point","coordinates":[61708,48449]},{"type":"Point","coordinates":[84101,44055]},{"type":"Point","coordinates":[88810,42538]},{"type":"Point","coordinates":[74595,46498]},{"type":"Point","coordinates":[554,37249]},{"type":"Point","coordinates":[61812,48475]},{"type":"Point","coordinates":[61818,48476]},{"type":"Point","coordinates":[595,37284]},{"type":"Point","coordinates":[84099,44089]},{"type":"Point","coordinates":[2116,38001]},{"type":"Point","coordinates":[84142,44086]},{"type":"Point","coordinates":[2134,38020]},{"type":"Point","coordinates":[2133,38020]},{"type":"Point","coordinates":[61860,48496]},{"type":"Point","coordinates":[2059,37994]},{"type":"Point","coordinates":[74569,46550]},{"type":"Point","coordinates":[6785,40063]},{"type":"Point","coordinates":[1284,37655]},{"type":"Point","coordinates":[74643,46553]},{"type":"Point","coordinates":[84113,44129]},{"type":"Point","coordinates":[61817,48530]},{"type":"Point","coordinates":[1225,37646]},{"type":"Point","coordinates":[1451,37765]},{"type":"Point","coordinates":[84749,43961]},{"type":"Point","coordinates":[81846,44814]},{"type":"Point","coordinates":[1329,37715]},{"type":"Point","coordinates":[60863,48654]},{"type":"Point","coordinates":[84067,44187]},{"type":"Point","coordinates":[61689,48593]},{"type":"Point","coordinates":[61686,48593]},{"type":"Point","coordinates":[61687,48593]},{"type":"Point","coordinates":[25756,46184]},{"type":"Point","coordinates":[61756,48596]},{"type":"Point","coordinates":[1092,37642]},{"type":"Point","coordinates":[62359,48544]},{"type":"Point","coordinates":[1516,37846]},{"type":"Point","coordinates":[61421,48640]},{"type":"Point","coordinates":[61981,48619]},{"type":"Point","coordinates":[1456,37853]},{"type":"Point","coordinates":[1457,37854]},{"type":"Point","coordinates":[1455,37854]},{"type":"Point","coordinates":[86029,43657]},{"type":"Point","coordinates":[1853,38059]},{"type":"Point","coordinates":[84029,44289]},{"type":"Point","coordinates":[1472,37888]},{"type":"Point","coordinates":[84029,44292]},{"type":"Point","coordinates":[84084,44281]},{"type":"Point","coordinates":[1241,37788]},{"type":"Point","coordinates":[1241,37789]},{"type":"Point","coordinates":[1240,37793]},{"type":"Point","coordinates":[1240,37793]},{"type":"Point","coordinates":[1467,37903]},{"type":"Point","coordinates":[1272,37815]},{"type":"Point","coordinates":[586,37502]},{"type":"Point","coordinates":[1468,37916]},{"type":"Point","coordinates":[1276,37836]},{"type":"Point","coordinates":[603,37521]},{"type":"Point","coordinates":[619,37530]},{"type":"Point","coordinates":[86075,43707]},{"type":"Point","coordinates":[638,37550]},{"type":"Point","coordinates":[77355,46133]},{"type":"Point","coordinates":[1283,37854]},{"type":"Point","coordinates":[596,37535]},{"type":"Point","coordinates":[1519,37968]},{"type":"Point","coordinates":[1760,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[25005,46166]},{"type":"Point","coordinates":[83996,44376]},{"type":"Point","coordinates":[2246,38324]},{"type":"Point","coordinates":[617,37570]},{"type":"Point","coordinates":[2240,38323]},{"type":"Point","coordinates":[1763,38107]},{"type":"Point","coordinates":[2246,38328]},{"type":"Point","coordinates":[2333,38369]},{"type":"Point","coordinates":[1763,38109]},{"type":"Point","coordinates":[61909,48739]},{"type":"Point","coordinates":[1763,38111]},{"type":"Point","coordinates":[1762,38114]},{"type":"Point","coordinates":[614,37579]},{"type":"Point","coordinates":[599,37574]},{"type":"Point","coordinates":[599,37574]},{"type":"Point","coordinates":[667,37607]},{"type":"Point","coordinates":[666,37607]},{"type":"Point","coordinates":[610,37581]},{"type":"Point","coordinates":[1754,38116]},{"type":"Point","coordinates":[3964,39113]},{"type":"Point","coordinates":[608,37586]},{"type":"Point","coordinates":[607,37585]},{"type":"Point","coordinates":[2245,38346]},{"type":"Point","coordinates":[71143,47476]},{"type":"Point","coordinates":[2192,38322]},{"type":"Point","coordinates":[602,37583]},{"type":"Point","coordinates":[1773,38131]},{"type":"Point","coordinates":[82559,44822]},{"type":"Point","coordinates":[605,37589]},{"type":"Point","coordinates":[1397,37961]},{"type":"Point","coordinates":[666,37621]},{"type":"Point","coordinates":[2244,38353]},{"type":"Point","coordinates":[1765,38143]},{"type":"Point","coordinates":[1765,38143]},{"type":"Point","coordinates":[1765,38143]},{"type":"Point","coordinates":[622,37609]},{"type":"Point","coordinates":[1765,38143]},{"type":"Point","coordinates":[1766,38144]},{"type":"Point","coordinates":[1765,38143]},{"type":"Point","coordinates":[1766,38144]},{"type":"Point","coordinates":[1766,38144]},{"type":"Point","coordinates":[1766,38144]},{"type":"Point","coordinates":[1765,38144]},{"type":"Point","coordinates":[1766,38144]},{"type":"Point","coordinates":[1765,38144]},{"type":"Point","coordinates":[1766,38145]},{"type":"Point","coordinates":[1766,38145]},{"type":"Point","coordinates":[1765,38144]},{"type":"Point","coordinates":[1766,38145]},{"type":"Point","coordinates":[1766,38145]},{"type":"Point","coordinates":[1765,38146]},{"type":"Point","coordinates":[84034,44408]},{"type":"Point","coordinates":[84034,44408]},{"type":"Point","coordinates":[1761,38147]},{"type":"Point","coordinates":[1761,38148]},{"type":"Point","coordinates":[623,37621]},{"type":"Point","coordinates":[1763,38154]},{"type":"Point","coordinates":[82558,44851]},{"type":"Point","coordinates":[1754,38157]},{"type":"Point","coordinates":[2206,38364]},{"type":"Point","coordinates":[2206,38364]},{"type":"Point","coordinates":[3907,39126]},{"type":"Point","coordinates":[616,37633]},{"type":"Point","coordinates":[1751,38167]},{"type":"Point","coordinates":[1795,38187]},{"type":"Point","coordinates":[1796,38189]},{"type":"Point","coordinates":[1163,37899]},{"type":"Point","coordinates":[1804,38197]},{"type":"Point","coordinates":[1823,38207]},{"type":"Point","coordinates":[61154,48877]},{"type":"Point","coordinates":[803,37736]},{"type":"Point","coordinates":[61151,48880]},{"type":"Point","coordinates":[4029,39201]},{"type":"Point","coordinates":[638,37660]},{"type":"Point","coordinates":[764,37721]},{"type":"Point","coordinates":[633,37663]},{"type":"Point","coordinates":[622,37659]},{"type":"Point","coordinates":[623,37660]},{"type":"Point","coordinates":[1541,38090]},{"type":"Point","coordinates":[2256,38419]},{"type":"Point","coordinates":[622,37663]},{"type":"Point","coordinates":[1765,38196]},{"type":"Point","coordinates":[1766,38197]},{"type":"Point","coordinates":[628,37675]},{"type":"Point","coordinates":[61608,48863]},{"type":"Point","coordinates":[2012,38324]},{"type":"Point","coordinates":[1624,38148]},{"type":"Point","coordinates":[84008,44485]},{"type":"Point","coordinates":[84007,44486]},{"type":"Point","coordinates":[83996,44492]},{"type":"Point","coordinates":[1005,37874]},{"type":"Point","coordinates":[1444,38078]},{"type":"Point","coordinates":[84000,44499]},{"type":"Point","coordinates":[83990,44502]},{"type":"Point","coordinates":[84001,44499]},{"type":"Point","coordinates":[1885,38284]},{"type":"Point","coordinates":[83926,44523]},{"type":"Point","coordinates":[1176,37958]},{"type":"Point","coordinates":[1999,38338]},{"type":"Point","coordinates":[84135,44469]},{"type":"Point","coordinates":[2045,38368]},{"type":"Point","coordinates":[2043,38368]},{"type":"Point","coordinates":[86446,43752]},{"type":"Point","coordinates":[2043,38370]},{"type":"Point","coordinates":[83999,44514]},{"type":"Point","coordinates":[1179,37972]},{"type":"Point","coordinates":[1343,38048]},{"type":"Point","coordinates":[655,37727]},{"type":"Point","coordinates":[6930,40489]},{"type":"Point","coordinates":[2049,38376]},{"type":"Point","coordinates":[2032,38371]},{"type":"Point","coordinates":[1732,38233]},{"type":"Point","coordinates":[1187,37981]},{"type":"Point","coordinates":[650,37730]},{"type":"Point","coordinates":[1733,38235]},{"type":"Point","coordinates":[2030,38372]},{"type":"Point","coordinates":[646,37728]},{"type":"Point","coordinates":[2030,38372]},{"type":"Point","coordinates":[2029,38372]},{"type":"Point","coordinates":[1280,38027]},{"type":"Point","coordinates":[2020,38374]},{"type":"Point","coordinates":[2009,38371]},{"type":"Point","coordinates":[1741,38250]},{"type":"Point","coordinates":[2006,38374]},{"type":"Point","coordinates":[1742,38253]},{"type":"Point","coordinates":[2293,38506]},{"type":"Point","coordinates":[2005,38376]},{"type":"Point","coordinates":[83975,44543]},{"type":"Point","coordinates":[1177,37993]},{"type":"Point","coordinates":[1176,37993]},{"type":"Point","coordinates":[1176,37993]},{"type":"Point","coordinates":[1177,37994]},{"type":"Point","coordinates":[1177,37995]},{"type":"Point","coordinates":[1177,37995]},{"type":"Point","coordinates":[1540,38164]},{"type":"Point","coordinates":[2001,38379]},{"type":"Point","coordinates":[1170,37997]},{"type":"Point","coordinates":[1170,37997]},{"type":"Point","coordinates":[69029,47981]},{"type":"Point","coordinates":[1170,38000]},{"type":"Point","coordinates":[1732,38261]},{"type":"Point","coordinates":[1733,38261]},{"type":"Point","coordinates":[1165,37999]},{"type":"Point","coordinates":[1160,37998]},{"type":"Point","coordinates":[1169,38003]},{"type":"Point","coordinates":[1154,37997]},{"type":"Point","coordinates":[1168,38004]},{"type":"Point","coordinates":[2008,38394]},{"type":"Point","coordinates":[1998,38394]},{"type":"Point","coordinates":[1966,38380]},{"type":"Point","coordinates":[1164,38009]},{"type":"Point","coordinates":[1166,38011]},{"type":"Point","coordinates":[3434,39043]},{"type":"Point","coordinates":[1967,38382]},{"type":"Point","coordinates":[2003,38399]},{"type":"Point","coordinates":[2004,38399]},{"type":"Point","coordinates":[1157,38008]},{"type":"Point","coordinates":[1163,38012]},{"type":"Point","coordinates":[1165,38014]},{"type":"Point","coordinates":[1164,38013]},{"type":"Point","coordinates":[1160,38013]},{"type":"Point","coordinates":[1159,38013]},{"type":"Point","coordinates":[1164,38016]},{"type":"Point","coordinates":[1151,38010]},{"type":"Point","coordinates":[1161,38015]},{"type":"Point","coordinates":[1161,38015]},{"type":"Point","coordinates":[1161,38015]},{"type":"Point","coordinates":[1164,38018]},{"type":"Point","coordinates":[1157,38014]},{"type":"Point","coordinates":[1162,38018]},{"type":"Point","coordinates":[1164,38019]},{"type":"Point","coordinates":[1163,38019]},{"type":"Point","coordinates":[1155,38016]},{"type":"Point","coordinates":[1163,38021]},{"type":"Point","coordinates":[1163,38021]},{"type":"Point","coordinates":[1163,38021]},{"type":"Point","coordinates":[1163,38021]},{"type":"Point","coordinates":[1160,38023]},{"type":"Point","coordinates":[1167,38027]},{"type":"Point","coordinates":[1952,38391]},{"type":"Point","coordinates":[676,37800]},{"type":"Point","coordinates":[1161,38027]},{"type":"Point","coordinates":[1161,38027]},{"type":"Point","coordinates":[1161,38027]},{"type":"Point","coordinates":[1162,38028]},{"type":"Point","coordinates":[1163,38029]},{"type":"Point","coordinates":[1163,38030]},{"type":"Point","coordinates":[1164,38031]},{"type":"Point","coordinates":[1162,38031]},{"type":"Point","coordinates":[2032,38433]},{"type":"Point","coordinates":[1162,38033]},{"type":"Point","coordinates":[1162,38034]},{"type":"Point","coordinates":[1164,38036]},{"type":"Point","coordinates":[84460,44445]},{"type":"Point","coordinates":[1158,38036]},{"type":"Point","coordinates":[1543,38218]},{"type":"Point","coordinates":[1886,38381]},{"type":"Point","coordinates":[1168,38053]},{"type":"Point","coordinates":[1387,38157]},{"type":"Point","coordinates":[1811,38362]},{"type":"Point","coordinates":[734,37863]},{"type":"Point","coordinates":[734,37864]},{"type":"Point","coordinates":[728,37865]},{"type":"Point","coordinates":[1810,38371]},{"type":"Point","coordinates":[1602,38284]},{"type":"Point","coordinates":[1826,38390]},{"type":"Point","coordinates":[859,37944]},{"type":"Point","coordinates":[1822,38393]},{"type":"Point","coordinates":[1421,38211]},{"type":"Point","coordinates":[1421,38211]},{"type":"Point","coordinates":[1200,38109]},{"type":"Point","coordinates":[1421,38212]},{"type":"Point","coordinates":[1420,38212]},{"type":"Point","coordinates":[1421,38212]},{"type":"Point","coordinates":[1420,38212]},{"type":"Point","coordinates":[1422,38213]},{"type":"Point","coordinates":[729,37889]},{"type":"Point","coordinates":[729,37890]},{"type":"Point","coordinates":[729,37890]},{"type":"Point","coordinates":[726,37888]},{"type":"Point","coordinates":[729,37890]},{"type":"Point","coordinates":[1421,38213]},{"type":"Point","coordinates":[1421,38213]},{"type":"Point","coordinates":[727,37889]},{"type":"Point","coordinates":[1421,38214]},{"type":"Point","coordinates":[1839,38406]},{"type":"Point","coordinates":[1015,38025]},{"type":"Point","coordinates":[1839,38407]},{"type":"Point","coordinates":[1840,38408]},{"type":"Point","coordinates":[1418,38214]},{"type":"Point","coordinates":[724,37890]},{"type":"Point","coordinates":[1651,38322]},{"type":"Point","coordinates":[6218,40325]},{"type":"Point","coordinates":[724,37891]},{"type":"Point","coordinates":[83949,44660]},{"type":"Point","coordinates":[1413,38216]},{"type":"Point","coordinates":[1161,38099]},{"type":"Point","coordinates":[87468,43553]},{"type":"Point","coordinates":[1412,38217]},{"type":"Point","coordinates":[1411,38218]},{"type":"Point","coordinates":[874,37970]},{"type":"Point","coordinates":[711,37894]},{"type":"Point","coordinates":[1396,38218]},{"type":"Point","coordinates":[1407,38226]},{"type":"Point","coordinates":[1809,38413]},{"type":"Point","coordinates":[1529,38291]},{"type":"Point","coordinates":[1278,38175]},{"type":"Point","coordinates":[1279,38178]},{"type":"Point","coordinates":[7584,40911]},{"type":"Point","coordinates":[1397,38233]},{"type":"Point","coordinates":[1031,38064]},{"type":"Point","coordinates":[1817,38430]},{"type":"Point","coordinates":[83959,44686]},{"type":"Point","coordinates":[1031,38069]},{"type":"Point","coordinates":[1176,38137]},{"type":"Point","coordinates":[1215,38155]},{"type":"Point","coordinates":[1279,38186]},{"type":"Point","coordinates":[1359,38224]},{"type":"Point","coordinates":[1359,38225]},{"type":"Point","coordinates":[1181,38144]},{"type":"Point","coordinates":[2183,38606]},{"type":"Point","coordinates":[1177,38147]},{"type":"Point","coordinates":[1357,38232]},{"type":"Point","coordinates":[1162,38143]},{"type":"Point","coordinates":[1175,38152]},{"type":"Point","coordinates":[1175,38153]},{"type":"Point","coordinates":[1176,38156]},{"type":"Point","coordinates":[1272,38202]},{"type":"Point","coordinates":[1632,38373]},{"type":"Point","coordinates":[2459,38752]},{"type":"Point","coordinates":[1825,38464]},{"type":"Point","coordinates":[1155,38155]},{"type":"Point","coordinates":[774,37978]},{"type":"Point","coordinates":[1106,38135]},{"type":"Point","coordinates":[1809,38464]},{"type":"Point","coordinates":[1018,38098]},{"type":"Point","coordinates":[1809,38466]},{"type":"Point","coordinates":[1249,38208]},{"type":"Point","coordinates":[1810,38468]},{"type":"Point","coordinates":[84457,44576]},{"type":"Point","coordinates":[1196,38185]},{"type":"Point","coordinates":[1152,38170]},{"type":"Point","coordinates":[2115,38616]},{"type":"Point","coordinates":[1614,38394]},{"type":"Point","coordinates":[1614,38395]},{"type":"Point","coordinates":[1614,38396]},{"type":"Point","coordinates":[1612,38394]},{"type":"Point","coordinates":[1612,38394]},{"type":"Point","coordinates":[1611,38394]},{"type":"Point","coordinates":[1612,38395]},{"type":"Point","coordinates":[1612,38394]},{"type":"Point","coordinates":[1611,38394]},{"type":"Point","coordinates":[1611,38395]},{"type":"Point","coordinates":[1613,38395]},{"type":"Point","coordinates":[1613,38396]},{"type":"Point","coordinates":[1587,38386]},{"type":"Point","coordinates":[1750,38475]},{"type":"Point","coordinates":[1030,38150]},{"type":"Point","coordinates":[2228,38704]},{"type":"Point","coordinates":[5980,40343]},{"type":"Point","coordinates":[1026,38153]},{"type":"Point","coordinates":[1103,38193]},{"type":"Point","coordinates":[1033,38162]},{"type":"Point","coordinates":[68815,48235]},{"type":"Point","coordinates":[1024,38161]},{"type":"Point","coordinates":[1180,38243]},{"type":"Point","coordinates":[1605,38441]},{"type":"Point","coordinates":[1608,38444]},{"type":"Point","coordinates":[83478,44938]},{"type":"Point","coordinates":[1343,38332]},{"type":"Point","coordinates":[708,38037]},{"type":"Point","coordinates":[83466,44953]},{"type":"Point","coordinates":[83928,44818]},{"type":"Point","coordinates":[1136,38246]},{"type":"Point","coordinates":[81624,45491]},{"type":"Point","coordinates":[1664,38498]},{"type":"Point","coordinates":[1093,38238]},{"type":"Point","coordinates":[1087,38239]},{"type":"Point","coordinates":[894,38154]},{"type":"Point","coordinates":[895,38155]},{"type":"Point","coordinates":[895,38155]},{"type":"Point","coordinates":[1040,38226]},{"type":"Point","coordinates":[1041,38227]},{"type":"Point","coordinates":[60051,49337]},{"type":"Point","coordinates":[89135,43167]},{"type":"Point","coordinates":[1038,38227]},{"type":"Point","coordinates":[894,38162]},{"type":"Point","coordinates":[1075,38247]},{"type":"Point","coordinates":[1035,38229]},{"type":"Point","coordinates":[1569,38481]},{"type":"Point","coordinates":[1649,38527]},{"type":"Point","coordinates":[1100,38283]},{"type":"Point","coordinates":[1540,38500]},{"type":"Point","coordinates":[1539,38500]},{"type":"Point","coordinates":[1539,38500]},{"type":"Point","coordinates":[1539,38501]},{"type":"Point","coordinates":[1539,38501]},{"type":"Point","coordinates":[1538,38501]},{"type":"Point","coordinates":[84963,44576]},{"type":"Point","coordinates":[1538,38502]},{"type":"Point","coordinates":[1098,38299]},{"type":"Point","coordinates":[1705,38581]},{"type":"Point","coordinates":[82492,45311]},{"type":"Point","coordinates":[865,38194]},{"type":"Point","coordinates":[1639,38556]},{"type":"Point","coordinates":[1640,38560]},{"type":"Point","coordinates":[1638,38564]},{"type":"Point","coordinates":[1230,38377]},{"type":"Point","coordinates":[1635,38570]},{"type":"Point","coordinates":[998,38275]},{"type":"Point","coordinates":[1543,38530]},{"type":"Point","coordinates":[1635,38577]},{"type":"Point","coordinates":[1744,38628]},{"type":"Point","coordinates":[779,38181]},{"type":"Point","coordinates":[1774,38645]},{"type":"Point","coordinates":[1743,38633]},{"type":"Point","coordinates":[1742,38632]},{"type":"Point","coordinates":[83147,45158]},{"type":"Point","coordinates":[1738,38635]},{"type":"Point","coordinates":[905,38251]},{"type":"Point","coordinates":[905,38251]},{"type":"Point","coordinates":[1037,38320]},{"type":"Point","coordinates":[1287,38437]},{"type":"Point","coordinates":[84103,44895]},{"type":"Point","coordinates":[1558,38571]},{"type":"Point","coordinates":[405,38033]},{"type":"Point","coordinates":[1465,38530]},{"type":"Point","coordinates":[1953,38763]},{"type":"Point","coordinates":[1953,38765]},{"type":"Point","coordinates":[1953,38765]},{"type":"Point","coordinates":[1388,38505]},{"type":"Point","coordinates":[1712,38656]},{"type":"Point","coordinates":[1936,38759]},{"type":"Point","coordinates":[1959,38770]},{"type":"Point","coordinates":[1957,38770]},{"type":"Point","coordinates":[889,38276]},{"type":"Point","coordinates":[1962,38775]},{"type":"Point","coordinates":[1968,38778]},{"type":"Point","coordinates":[1962,38776]},{"type":"Point","coordinates":[1236,38442]},{"type":"Point","coordinates":[1789,38699]},{"type":"Point","coordinates":[1965,38780]},{"type":"Point","coordinates":[1148,38403]},{"type":"Point","coordinates":[1789,38700]},{"type":"Point","coordinates":[1790,38701]},{"type":"Point","coordinates":[1790,38701]},{"type":"Point","coordinates":[1790,38702]},{"type":"Point","coordinates":[1344,38496]},{"type":"Point","coordinates":[1194,38427]},{"type":"Point","coordinates":[1799,38708]},{"type":"Point","coordinates":[1792,38705]},{"type":"Point","coordinates":[1740,38683]},{"type":"Point","coordinates":[1349,38505]},{"type":"Point","coordinates":[1968,38790]},{"type":"Point","coordinates":[1591,38625]},{"type":"Point","coordinates":[1581,38621]},{"type":"Point","coordinates":[1623,38642]},{"type":"Point","coordinates":[1820,38733]},{"type":"Point","coordinates":[1150,38424]},{"type":"Point","coordinates":[1607,38636]},{"type":"Point","coordinates":[1150,38425]},{"type":"Point","coordinates":[1432,38558]},{"type":"Point","coordinates":[1610,38640]},{"type":"Point","coordinates":[1150,38428]},{"type":"Point","coordinates":[1806,38731]},{"type":"Point","coordinates":[1806,38732]},{"type":"Point","coordinates":[1657,38664]},{"type":"Point","coordinates":[83193,45212]},{"type":"Point","coordinates":[1149,38430]},{"type":"Point","coordinates":[1149,38431]},{"type":"Point","coordinates":[1744,38706]},{"type":"Point","coordinates":[1744,38707]},{"type":"Point","coordinates":[83427,45146]},{"type":"Point","coordinates":[1764,38718]},{"type":"Point","coordinates":[1148,38435]},{"type":"Point","coordinates":[1745,38712]},{"type":"Point","coordinates":[1353,38531]},{"type":"Point","coordinates":[1746,38713]},{"type":"Point","coordinates":[1745,38713]},{"type":"Point","coordinates":[1745,38713]},{"type":"Point","coordinates":[1050,38397]},{"type":"Point","coordinates":[1075,38410]},{"type":"Point","coordinates":[83416,45165]},{"type":"Point","coordinates":[1160,38454]},{"type":"Point","coordinates":[1126,38438]},{"type":"Point","coordinates":[992,38377]},{"type":"Point","coordinates":[1162,38458]},{"type":"Point","coordinates":[7739,41309]},{"type":"Point","coordinates":[971,38376]},{"type":"Point","coordinates":[1785,38754]},{"type":"Point","coordinates":[976,38380]},{"type":"Point","coordinates":[970,38378]},{"type":"Point","coordinates":[977,38385]},{"type":"Point","coordinates":[1095,38441]},{"type":"Point","coordinates":[948,38373]},{"type":"Point","coordinates":[912,38358]},{"type":"Point","coordinates":[60863,49454]},{"type":"Point","coordinates":[7699,41308]},{"type":"Point","coordinates":[941,38377]},{"type":"Point","coordinates":[7694,41308]},{"type":"Point","coordinates":[7693,41308]},{"type":"Point","coordinates":[1840,38796]},{"type":"Point","coordinates":[7756,41335]},{"type":"Point","coordinates":[7698,41313]},{"type":"Point","coordinates":[1776,38769]},{"type":"Point","coordinates":[1784,38773]},{"type":"Point","coordinates":[1584,38681]},{"type":"Point","coordinates":[7734,41329]},{"type":"Point","coordinates":[1774,38769]},{"type":"Point","coordinates":[988,38406]},{"type":"Point","coordinates":[7726,41328]},{"type":"Point","coordinates":[7753,41340]},{"type":"Point","coordinates":[7696,41319]},{"type":"Point","coordinates":[7701,41323]},{"type":"Point","coordinates":[7708,41325]},{"type":"Point","coordinates":[1824,38802]},{"type":"Point","coordinates":[1834,38808]},{"type":"Point","coordinates":[1834,38808]},{"type":"Point","coordinates":[1836,38809]},{"type":"Point","coordinates":[1836,38810]},{"type":"Point","coordinates":[554,38216]},{"type":"Point","coordinates":[1838,38815]},{"type":"Point","coordinates":[1837,38815]},{"type":"Point","coordinates":[1036,38445]},{"type":"Point","coordinates":[1219,38532]},{"type":"Point","coordinates":[1171,38512]},{"type":"Point","coordinates":[1112,38485]},{"type":"Point","coordinates":[85728,44518]},{"type":"Point","coordinates":[1810,38815]},{"type":"Point","coordinates":[1834,38826]},{"type":"Point","coordinates":[1928,38870]},{"type":"Point","coordinates":[1378,38623]},{"type":"Point","coordinates":[2034,38926]},{"type":"Point","coordinates":[1168,38528]},{"type":"Point","coordinates":[1455,38663]},{"type":"Point","coordinates":[1241,38578]},{"type":"Point","coordinates":[1046,38490]},{"type":"Point","coordinates":[1056,38497]},{"type":"Point","coordinates":[1120,38527]},{"type":"Point","coordinates":[2008,38937]},{"type":"Point","coordinates":[1356,38637]},{"type":"Point","coordinates":[1049,38496]},{"type":"Point","coordinates":[83411,45260]},{"type":"Point","coordinates":[2011,38941]},{"type":"Point","coordinates":[1415,38667]},{"type":"Point","coordinates":[83889,45120]},{"type":"Point","coordinates":[1988,38936]},{"type":"Point","coordinates":[1984,38934]},{"type":"Point","coordinates":[1600,38758]},{"type":"Point","coordinates":[585,38286]},{"type":"Point","coordinates":[1989,38938]},{"type":"Point","coordinates":[718,38349]},{"type":"Point","coordinates":[1833,38868]},{"type":"Point","coordinates":[1827,38866]},{"type":"Point","coordinates":[1714,38814]},{"type":"Point","coordinates":[1354,38650]},{"type":"Point","coordinates":[1401,38672]},{"type":"Point","coordinates":[3607,39674]},{"type":"Point","coordinates":[1050,38515]},{"type":"Point","coordinates":[1369,38665]},{"type":"Point","coordinates":[1101,38540]},{"type":"Point","coordinates":[1093,38538]},{"type":"Point","coordinates":[62438,49397]},{"type":"Point","coordinates":[1095,38542]},{"type":"Point","coordinates":[1094,38542]},{"type":"Point","coordinates":[1098,38544]},{"type":"Point","coordinates":[1148,38567]},{"type":"Point","coordinates":[1095,38543]},{"type":"Point","coordinates":[1094,38543]},{"type":"Point","coordinates":[1094,38543]},{"type":"Point","coordinates":[1091,38542]},{"type":"Point","coordinates":[1093,38543]},{"type":"Point","coordinates":[1092,38544]},{"type":"Point","coordinates":[1093,38546]},{"type":"Point","coordinates":[1096,38548]},{"type":"Point","coordinates":[1096,38548]},{"type":"Point","coordinates":[1097,38548]},{"type":"Point","coordinates":[1399,38690]},{"type":"Point","coordinates":[1092,38548]},{"type":"Point","coordinates":[1958,38947]},{"type":"Point","coordinates":[1095,38549]},{"type":"Point","coordinates":[1092,38549]},{"type":"Point","coordinates":[1093,38550]},{"type":"Point","coordinates":[3024,39433]},{"type":"Point","coordinates":[1136,38572]},{"type":"Point","coordinates":[87695,43958]},{"type":"Point","coordinates":[2035,39007]},{"type":"Point","coordinates":[1265,38667]},{"type":"Point","coordinates":[1200,38640]},{"type":"Point","coordinates":[3198,39549]},{"type":"Point","coordinates":[61301,49567]},{"type":"Point","coordinates":[61301,49567]},{"type":"Point","coordinates":[2055,39055]},{"type":"Point","coordinates":[7121,41239]},{"type":"Point","coordinates":[1113,38626]},{"type":"Point","coordinates":[84618,44998]},{"type":"Point","coordinates":[1113,38637]},{"type":"Point","coordinates":[1920,39015]},{"type":"Point","coordinates":[1983,39046]},{"type":"Point","coordinates":[1241,38707]},{"type":"Point","coordinates":[1978,39052]},{"type":"Point","coordinates":[1976,39053]},{"type":"Point","coordinates":[1972,39056]},{"type":"Point","coordinates":[1980,39062]},{"type":"Point","coordinates":[1209,38710]},{"type":"Point","coordinates":[2906,39489]},{"type":"Point","coordinates":[1656,38924]},{"type":"Point","coordinates":[1960,39068]},{"type":"Point","coordinates":[1963,39071]},{"type":"Point","coordinates":[1962,39071]},{"type":"Point","coordinates":[1963,39071]},{"type":"Point","coordinates":[1605,38909]},{"type":"Point","coordinates":[82658,45629]},{"type":"Point","coordinates":[1190,38717]},{"type":"Point","coordinates":[1598,38909]},{"type":"Point","coordinates":[1624,38921]},{"type":"Point","coordinates":[2164,39169]},{"type":"Point","coordinates":[1361,38802]},{"type":"Point","coordinates":[3054,39574]},{"type":"Point","coordinates":[1620,38930]},{"type":"Point","coordinates":[1766,39000]},{"type":"Point","coordinates":[1769,39002]},{"type":"Point","coordinates":[1771,39004]},{"type":"Point","coordinates":[1771,39005]},{"type":"Point","coordinates":[1773,39009]},{"type":"Point","coordinates":[1771,39010]},{"type":"Point","coordinates":[1648,38954]},{"type":"Point","coordinates":[1769,39010]},{"type":"Point","coordinates":[1772,39012]},{"type":"Point","coordinates":[72219,48133]},{"type":"Point","coordinates":[1866,39080]},{"type":"Point","coordinates":[66521,49090]},{"type":"Point","coordinates":[2374,39314]},{"type":"Point","coordinates":[1852,39078]},{"type":"Point","coordinates":[1854,39082]},{"type":"Point","coordinates":[1857,39084]},{"type":"Point","coordinates":[2086,39189]},{"type":"Point","coordinates":[1857,39085]},{"type":"Point","coordinates":[2198,39241]},{"type":"Point","coordinates":[1854,39085]},{"type":"Point","coordinates":[1851,39085]},{"type":"Point","coordinates":[1857,39089]},{"type":"Point","coordinates":[82681,45686]},{"type":"Point","coordinates":[1881,39103]},{"type":"Point","coordinates":[1890,39111]},{"type":"Point","coordinates":[1849,39093]},{"type":"Point","coordinates":[2372,39332]},{"type":"Point","coordinates":[1853,39097]},{"type":"Point","coordinates":[1894,39116]},{"type":"Point","coordinates":[1894,39117]},{"type":"Point","coordinates":[1891,39118]},{"type":"Point","coordinates":[1895,39119]},{"type":"Point","coordinates":[1979,39158]},{"type":"Point","coordinates":[1631,38999]},{"type":"Point","coordinates":[1843,39097]},{"type":"Point","coordinates":[1844,39098]},{"type":"Point","coordinates":[1048,38735]},{"type":"Point","coordinates":[1882,39123]},{"type":"Point","coordinates":[2385,39353]},{"type":"Point","coordinates":[1866,39117]},{"type":"Point","coordinates":[1854,39116]},{"type":"Point","coordinates":[1867,39124]},{"type":"Point","coordinates":[1868,39125]},{"type":"Point","coordinates":[1868,39125]},{"type":"Point","coordinates":[1868,39126]},{"type":"Point","coordinates":[89231,43641]},{"type":"Point","coordinates":[1868,39126]},{"type":"Point","coordinates":[2265,39310]},{"type":"Point","coordinates":[1625,39018]},{"type":"Point","coordinates":[1624,39018]},{"type":"Point","coordinates":[1605,39010]},{"type":"Point","coordinates":[1632,39024]},{"type":"Point","coordinates":[1622,39021]},{"type":"Point","coordinates":[77824,47007]},{"type":"Point","coordinates":[1621,39027]},{"type":"Point","coordinates":[83290,45558]},{"type":"Point","coordinates":[1621,39032]},{"type":"Point","coordinates":[1626,39037]},{"type":"Point","coordinates":[6071,40985]},{"type":"Point","coordinates":[7143,41425]},{"type":"Point","coordinates":[942,38726]},{"type":"Point","coordinates":[35026,49055]},{"type":"Point","coordinates":[7145,41445]},{"type":"Point","coordinates":[2846,39616]},{"type":"Point","coordinates":[7143,41450]},{"type":"Point","coordinates":[7140,41454]},{"type":"Point","coordinates":[1590,39052]},{"type":"Point","coordinates":[1626,39069]},{"type":"Point","coordinates":[2290,39374]},{"type":"Point","coordinates":[7139,41458]},{"type":"Point","coordinates":[77928,47027]},{"type":"Point","coordinates":[1590,39058]},{"type":"Point","coordinates":[2915,39663]},{"type":"Point","coordinates":[85293,45000]},{"type":"Point","coordinates":[7135,41464]},{"type":"Point","coordinates":[7132,41464]},{"type":"Point","coordinates":[954,38775]},{"type":"Point","coordinates":[954,38775]},{"type":"Point","coordinates":[73017,48118]},{"type":"Point","coordinates":[7128,41471]},{"type":"Point","coordinates":[73020,48120]},{"type":"Point","coordinates":[1579,39077]},{"type":"Point","coordinates":[1794,39178]},{"type":"Point","coordinates":[7134,41486]},{"type":"Point","coordinates":[1962,39259]},{"type":"Point","coordinates":[7183,41510]},{"type":"Point","coordinates":[7115,41488]},{"type":"Point","coordinates":[2889,39686]},{"type":"Point","coordinates":[1198,38916]},{"type":"Point","coordinates":[85331,45026]},{"type":"Point","coordinates":[7187,41525]},{"type":"Point","coordinates":[81774,46079]},{"type":"Point","coordinates":[2265,39419]},{"type":"Point","coordinates":[81768,46088]},{"type":"Point","coordinates":[937,38815]},{"type":"Point","coordinates":[7081,41498]},{"type":"Point","coordinates":[6006,41060]},{"type":"Point","coordinates":[970,38840]},{"type":"Point","coordinates":[3080,39807]},{"type":"Point","coordinates":[919,38831]},{"type":"Point","coordinates":[2299,39479]},{"type":"Point","coordinates":[72647,48283]},{"type":"Point","coordinates":[3156,39886]},{"type":"Point","coordinates":[2416,39569]},{"type":"Point","coordinates":[90075,43546]},{"type":"Point","coordinates":[1874,39334]},{"type":"Point","coordinates":[1873,39335]},{"type":"Point","coordinates":[2243,39517]},{"type":"Point","coordinates":[2332,39558]},{"type":"Point","coordinates":[85922,44960]},{"type":"Point","coordinates":[1982,39418]},{"type":"Point","coordinates":[2071,39460]},{"type":"Point","coordinates":[5918,41140]},{"type":"Point","coordinates":[1988,39427]},{"type":"Point","coordinates":[5902,41140]},{"type":"Point","coordinates":[3008,39891]},{"type":"Point","coordinates":[5898,41140]},{"type":"Point","coordinates":[5899,41140]},{"type":"Point","coordinates":[5901,41143]},{"type":"Point","coordinates":[5899,41143]},{"type":"Point","coordinates":[5899,41143]},{"type":"Point","coordinates":[5901,41144]},{"type":"Point","coordinates":[7388,41754]},{"type":"Point","coordinates":[5898,41143]},{"type":"Point","coordinates":[5894,41142]},{"type":"Point","coordinates":[5894,41143]},{"type":"Point","coordinates":[5901,41147]},{"type":"Point","coordinates":[5892,41143]},{"type":"Point","coordinates":[5889,41143]},{"type":"Point","coordinates":[5911,41154]},{"type":"Point","coordinates":[5890,41145]},{"type":"Point","coordinates":[2051,39470]},{"type":"Point","coordinates":[5893,41146]},{"type":"Point","coordinates":[5893,41147]},{"type":"Point","coordinates":[5888,41146]},{"type":"Point","coordinates":[5893,41148]},{"type":"Point","coordinates":[5893,41148]},{"type":"Point","coordinates":[5891,41147]},{"type":"Point","coordinates":[5893,41148]},{"type":"Point","coordinates":[5892,41148]},{"type":"Point","coordinates":[5891,41148]},{"type":"Point","coordinates":[5889,41146]},{"type":"Point","coordinates":[5890,41148]},{"type":"Point","coordinates":[5888,41147]},{"type":"Point","coordinates":[5893,41149]},{"type":"Point","coordinates":[5884,41146]},{"type":"Point","coordinates":[5891,41149]},{"type":"Point","coordinates":[5892,41150]},{"type":"Point","coordinates":[5892,41150]},{"type":"Point","coordinates":[5893,41151]},{"type":"Point","coordinates":[5892,41150]},{"type":"Point","coordinates":[5884,41147]},{"type":"Point","coordinates":[5892,41150]},{"type":"Point","coordinates":[5889,41150]},{"type":"Point","coordinates":[5885,41149]},{"type":"Point","coordinates":[5885,41149]},{"type":"Point","coordinates":[5885,41149]},{"type":"Point","coordinates":[5885,41149]},{"type":"Point","coordinates":[5885,41149]},{"type":"Point","coordinates":[5885,41149]},{"type":"Point","coordinates":[5885,41149]},{"type":"Point","coordinates":[5889,41150]},{"type":"Point","coordinates":[1976,39441]},{"type":"Point","coordinates":[5889,41150]},{"type":"Point","coordinates":[5888,41150]},{"type":"Point","coordinates":[5884,41148]},{"type":"Point","coordinates":[5883,41148]},{"type":"Point","coordinates":[5889,41151]},{"type":"Point","coordinates":[5884,41149]},{"type":"Point","coordinates":[5888,41151]},{"type":"Point","coordinates":[5887,41151]},{"type":"Point","coordinates":[5888,41151]},{"type":"Point","coordinates":[5884,41149]},{"type":"Point","coordinates":[5887,41151]},{"type":"Point","coordinates":[5887,41151]},{"type":"Point","coordinates":[5887,41151]},{"type":"Point","coordinates":[5888,41151]},{"type":"Point","coordinates":[5888,41151]},{"type":"Point","coordinates":[5888,41151]},{"type":"Point","coordinates":[5890,41152]},{"type":"Point","coordinates":[5887,41151]},{"type":"Point","coordinates":[5886,41151]},{"type":"Point","coordinates":[5882,41149]},{"type":"Point","coordinates":[5882,41149]},{"type":"Point","coordinates":[5885,41151]},{"type":"Point","coordinates":[5883,41150]},{"type":"Point","coordinates":[5885,41151]},{"type":"Point","coordinates":[5886,41151]},{"type":"Point","coordinates":[5885,41151]},{"type":"Point","coordinates":[5887,41152]},{"type":"Point","coordinates":[5885,41151]},{"type":"Point","coordinates":[5877,41148]},{"type":"Point","coordinates":[5883,41151]},{"type":"Point","coordinates":[5885,41152]},{"type":"Point","coordinates":[5882,41151]},{"type":"Point","coordinates":[5883,41153]},{"type":"Point","coordinates":[5883,41153]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5885,41153]},{"type":"Point","coordinates":[5877,41151]},{"type":"Point","coordinates":[5884,41154]},{"type":"Point","coordinates":[5884,41154]},{"type":"Point","coordinates":[5874,41149]},{"type":"Point","coordinates":[5881,41153]},{"type":"Point","coordinates":[6602,41451]},{"type":"Point","coordinates":[5884,41154]},{"type":"Point","coordinates":[5883,41154]},{"type":"Point","coordinates":[5878,41152]},{"type":"Point","coordinates":[5883,41154]},{"type":"Point","coordinates":[5885,41155]},{"type":"Point","coordinates":[5887,41157]},{"type":"Point","coordinates":[5887,41157]},{"type":"Point","coordinates":[5887,41157]},{"type":"Point","coordinates":[5887,41157]},{"type":"Point","coordinates":[5887,41157]},{"type":"Point","coordinates":[5887,41157]},{"type":"Point","coordinates":[5883,41155]},{"type":"Point","coordinates":[5882,41155]},{"type":"Point","coordinates":[5880,41154]},{"type":"Point","coordinates":[5872,41151]},{"type":"Point","coordinates":[5883,41156]},{"type":"Point","coordinates":[5881,41156]},{"type":"Point","coordinates":[5881,41158]},{"type":"Point","coordinates":[5881,41161]},{"type":"Point","coordinates":[5883,41162]},{"type":"Point","coordinates":[78067,47219]},{"type":"Point","coordinates":[5877,41171]},{"type":"Point","coordinates":[1491,39250]},{"type":"Point","coordinates":[5881,41182]},{"type":"Point","coordinates":[2283,39625]},{"type":"Point","coordinates":[2913,39910]},{"type":"Point","coordinates":[2371,39677]},{"type":"Point","coordinates":[1578,39320]},{"type":"Point","coordinates":[70780,48788]},{"type":"Point","coordinates":[1904,39480]},{"type":"Point","coordinates":[5932,41243]},{"type":"Point","coordinates":[5938,41246]},{"type":"Point","coordinates":[2875,39925]},{"type":"Point","coordinates":[83591,45790]},{"type":"Point","coordinates":[1637,39367]},{"type":"Point","coordinates":[81242,46464]},{"type":"Point","coordinates":[83440,45844]},{"type":"Point","coordinates":[2986,39988]},{"type":"Point","coordinates":[2680,39860]},{"type":"Point","coordinates":[83594,45815]},{"type":"Point","coordinates":[83593,45816]},{"type":"Point","coordinates":[77916,47341]},{"type":"Point","coordinates":[5958,41299]},{"type":"Point","coordinates":[5936,41291]},{"type":"Point","coordinates":[5954,41299]},{"type":"Point","coordinates":[5983,41311]},{"type":"Point","coordinates":[5983,41311]},{"type":"Point","coordinates":[5935,41293]},{"type":"Point","coordinates":[1565,39378]},{"type":"Point","coordinates":[1621,39410]},{"type":"Point","coordinates":[5974,41317]},{"type":"Point","coordinates":[1642,39422]},{"type":"Point","coordinates":[5969,41321]},{"type":"Point","coordinates":[5968,41321]},{"type":"Point","coordinates":[5966,41321]},{"type":"Point","coordinates":[5934,41311]},{"type":"Point","coordinates":[70537,48906]},{"type":"Point","coordinates":[5949,41329]},{"type":"Point","coordinates":[5949,41329]},{"type":"Point","coordinates":[5950,41332]},{"type":"Point","coordinates":[5952,41333]},{"type":"Point","coordinates":[5954,41335]},{"type":"Point","coordinates":[5937,41331]},{"type":"Point","coordinates":[1493,39383]},{"type":"Point","coordinates":[2263,39745]},{"type":"Point","coordinates":[71432,48781]},{"type":"Point","coordinates":[1621,39467]},{"type":"Point","coordinates":[66236,49613]},{"type":"Point","coordinates":[89745,43946]},{"type":"Point","coordinates":[83509,45968]},{"type":"Point","coordinates":[1408,39440]},{"type":"Point","coordinates":[70587,49005]},{"type":"Point","coordinates":[70528,49017]},{"type":"Point","coordinates":[84582,45674]},{"type":"Point","coordinates":[80791,46768]},{"type":"Point","coordinates":[78193,47437]},{"type":"Point","coordinates":[73048,48591]},{"type":"Point","coordinates":[70851,49024]},{"type":"Point","coordinates":[70858,49025]},{"type":"Point","coordinates":[87806,44751]},{"type":"Point","coordinates":[83474,46118]},{"type":"Point","coordinates":[6403,41743]},{"type":"Point","coordinates":[83450,46130]},{"type":"Point","coordinates":[70401,49163]},{"type":"Point","coordinates":[83483,46143]},{"type":"Point","coordinates":[83482,46144]},{"type":"Point","coordinates":[1181,39490]},{"type":"Point","coordinates":[70268,49220]},{"type":"Point","coordinates":[2278,40007]},{"type":"Point","coordinates":[83434,46181]},{"type":"Point","coordinates":[1071,39527]},{"type":"Point","coordinates":[83477,46260]},{"type":"Point","coordinates":[1122,39592]},{"type":"Point","coordinates":[1126,39597]},{"type":"Point","coordinates":[1122,39599]},{"type":"Point","coordinates":[965,39528]},{"type":"Point","coordinates":[85050,45814]},{"type":"Point","coordinates":[62331,50450]},{"type":"Point","coordinates":[80899,47043]},{"type":"Point","coordinates":[83477,46325]},{"type":"Point","coordinates":[84023,46181]},{"type":"Point","coordinates":[83455,46352]},{"type":"Point","coordinates":[83455,46352]},{"type":"Point","coordinates":[74172,48695]},{"type":"Point","coordinates":[1578,39909]},{"type":"Point","coordinates":[1192,39747]},{"type":"Point","coordinates":[83470,46401]},{"type":"Point","coordinates":[1123,39739]},{"type":"Point","coordinates":[1636,39980]},{"type":"Point","coordinates":[62236,50577]},{"type":"Point","coordinates":[1132,39766]},{"type":"Point","coordinates":[83259,46507]},{"type":"Point","coordinates":[1118,39767]},{"type":"Point","coordinates":[1512,39950]},{"type":"Point","coordinates":[1109,39765]},{"type":"Point","coordinates":[1124,39772]},{"type":"Point","coordinates":[1117,39770]},{"type":"Point","coordinates":[1119,39771]},{"type":"Point","coordinates":[11438,44030]},{"type":"Point","coordinates":[1532,39964]},{"type":"Point","coordinates":[70828,49417]},{"type":"Point","coordinates":[83961,46320]},{"type":"Point","coordinates":[1672,40036]},{"type":"Point","coordinates":[62181,50608]},{"type":"Point","coordinates":[1531,39972]},{"type":"Point","coordinates":[1136,39792]},{"type":"Point","coordinates":[70708,49447]},{"type":"Point","coordinates":[1135,39793]},{"type":"Point","coordinates":[70799,49452]},{"type":"Point","coordinates":[1189,39841]},{"type":"Point","coordinates":[1511,39995]},{"type":"Point","coordinates":[70422,49526]},{"type":"Point","coordinates":[7582,42608]},{"type":"Point","coordinates":[1333,39932]},{"type":"Point","coordinates":[61205,50752]},{"type":"Point","coordinates":[61160,50761]},{"type":"Point","coordinates":[71723,49330]},{"type":"Point","coordinates":[74872,48706]},{"type":"Point","coordinates":[1198,39918]},{"type":"Point","coordinates":[7742,42750]},{"type":"Point","coordinates":[7732,42748]},{"type":"Point","coordinates":[7744,42756]},{"type":"Point","coordinates":[83671,46540]},{"type":"Point","coordinates":[2165,40406]},{"type":"Point","coordinates":[83712,46543]},{"type":"Point","coordinates":[74419,48888]},{"type":"Point","coordinates":[79231,47780]},{"type":"Point","coordinates":[79232,47781]},{"type":"Point","coordinates":[79259,47780]},{"type":"Point","coordinates":[74623,48858]},{"type":"Point","coordinates":[7558,42738]},{"type":"Point","coordinates":[7558,42738]},{"type":"Point","coordinates":[7185,42591]},{"type":"Point","coordinates":[7564,42748]},{"type":"Point","coordinates":[7628,42778]},{"type":"Point","coordinates":[7476,42718]},{"type":"Point","coordinates":[1406,40107]},{"type":"Point","coordinates":[1274,40047]},{"type":"Point","coordinates":[7619,42777]},{"type":"Point","coordinates":[7621,42781]},{"type":"Point","coordinates":[7627,42786]},{"type":"Point","coordinates":[7627,42787]},{"type":"Point","coordinates":[1277,40056]},{"type":"Point","coordinates":[7618,42785]},{"type":"Point","coordinates":[7609,42786]},{"type":"Point","coordinates":[1283,40064]},{"type":"Point","coordinates":[1283,40065]},{"type":"Point","coordinates":[62484,50777]},{"type":"Point","coordinates":[7649,42812]},{"type":"Point","coordinates":[1289,40079]},{"type":"Point","coordinates":[84155,46477]},{"type":"Point","coordinates":[1368,40116]},{"type":"Point","coordinates":[1210,40045]},{"type":"Point","coordinates":[1213,40047]},{"type":"Point","coordinates":[1058,39976]},{"type":"Point","coordinates":[1394,40141]},{"type":"Point","coordinates":[1191,40049]},{"type":"Point","coordinates":[1191,40050]},{"type":"Point","coordinates":[1187,40052]},{"type":"Point","coordinates":[70642,49698]},{"type":"Point","coordinates":[72751,49311]},{"type":"Point","coordinates":[7578,42822]},{"type":"Point","coordinates":[1293,40125]},{"type":"Point","coordinates":[1290,40124]},{"type":"Point","coordinates":[84075,46546]},{"type":"Point","coordinates":[1312,40139]},{"type":"Point","coordinates":[84076,46549]},{"type":"Point","coordinates":[1312,40141]},{"type":"Point","coordinates":[1312,40142]},{"type":"Point","coordinates":[1312,40142]},{"type":"Point","coordinates":[1291,40133]},{"type":"Point","coordinates":[1711,40326]},{"type":"Point","coordinates":[1301,40141]},{"type":"Point","coordinates":[1592,40276]},{"type":"Point","coordinates":[67113,50282]},{"type":"Point","coordinates":[1409,40199]},{"type":"Point","coordinates":[81269,47364]},{"type":"Point","coordinates":[1609,40301]},{"type":"Point","coordinates":[1300,40159]},{"type":"Point","coordinates":[83951,46615]},{"type":"Point","coordinates":[1316,40172]},{"type":"Point","coordinates":[1320,40178]},{"type":"Point","coordinates":[1301,40174]},{"type":"Point","coordinates":[1298,40173]},{"type":"Point","coordinates":[1299,40174]},{"type":"Point","coordinates":[1438,40238]},{"type":"Point","coordinates":[1438,40239]},{"type":"Point","coordinates":[1441,40241]},{"type":"Point","coordinates":[1439,40240]},{"type":"Point","coordinates":[1441,40241]},{"type":"Point","coordinates":[1438,40240]},{"type":"Point","coordinates":[1442,40242]},{"type":"Point","coordinates":[1438,40240]},{"type":"Point","coordinates":[1437,40240]},{"type":"Point","coordinates":[1441,40242]},{"type":"Point","coordinates":[1442,40242]},{"type":"Point","coordinates":[1441,40242]},{"type":"Point","coordinates":[1439,40241]},{"type":"Point","coordinates":[1437,40240]},{"type":"Point","coordinates":[1438,40241]},{"type":"Point","coordinates":[1439,40241]},{"type":"Point","coordinates":[1441,40242]},{"type":"Point","coordinates":[1439,40242]},{"type":"Point","coordinates":[1438,40241]},{"type":"Point","coordinates":[1438,40241]},{"type":"Point","coordinates":[1438,40241]},{"type":"Point","coordinates":[1307,40181]},{"type":"Point","coordinates":[1439,40242]},{"type":"Point","coordinates":[1439,40242]},{"type":"Point","coordinates":[1439,40242]},{"type":"Point","coordinates":[1436,40241]},{"type":"Point","coordinates":[1438,40242]},{"type":"Point","coordinates":[1439,40243]},{"type":"Point","coordinates":[1444,40246]},{"type":"Point","coordinates":[83988,46619]},{"type":"Point","coordinates":[1433,40241]},{"type":"Point","coordinates":[1433,40241]},{"type":"Point","coordinates":[1435,40243]},{"type":"Point","coordinates":[1434,40243]},{"type":"Point","coordinates":[1432,40242]},{"type":"Point","coordinates":[1433,40243]},{"type":"Point","coordinates":[1437,40245]},{"type":"Point","coordinates":[1433,40244]},{"type":"Point","coordinates":[1432,40243]},{"type":"Point","coordinates":[1437,40246]},{"type":"Point","coordinates":[72820,49360]},{"type":"Point","coordinates":[1435,40245]},{"type":"Point","coordinates":[1433,40244]},{"type":"Point","coordinates":[83324,46818]},{"type":"Point","coordinates":[1418,40238]},{"type":"Point","coordinates":[1431,40245]},{"type":"Point","coordinates":[1418,40239]},{"type":"Point","coordinates":[1309,40188]},{"type":"Point","coordinates":[1307,40188]},{"type":"Point","coordinates":[1439,40249]},{"type":"Point","coordinates":[1440,40249]},{"type":"Point","coordinates":[2390,40682]},{"type":"Point","coordinates":[1308,40189]},{"type":"Point","coordinates":[1432,40246]},{"type":"Point","coordinates":[1307,40189]},{"type":"Point","coordinates":[1432,40247]},{"type":"Point","coordinates":[1313,40192]},{"type":"Point","coordinates":[1439,40250]},{"type":"Point","coordinates":[1304,40188]},{"type":"Point","coordinates":[1312,40192]},{"type":"Point","coordinates":[1307,40190]},{"type":"Point","coordinates":[1439,40251]},{"type":"Point","coordinates":[1304,40189]},{"type":"Point","coordinates":[1437,40251]},{"type":"Point","coordinates":[1306,40190]},{"type":"Point","coordinates":[1300,40187]},{"type":"Point","coordinates":[1303,40190]},{"type":"Point","coordinates":[1440,40252]},{"type":"Point","coordinates":[1438,40252]},{"type":"Point","coordinates":[1304,40190]},{"type":"Point","coordinates":[1303,40190]},{"type":"Point","coordinates":[1305,40191]},{"type":"Point","coordinates":[69081,50028]},{"type":"Point","coordinates":[1438,40253]},{"type":"Point","coordinates":[1438,40254]},{"type":"Point","coordinates":[1303,40192]},{"type":"Point","coordinates":[1302,40191]},{"type":"Point","coordinates":[1301,40191]},{"type":"Point","coordinates":[1308,40194]},{"type":"Point","coordinates":[1439,40255]},{"type":"Point","coordinates":[1437,40254]},{"type":"Point","coordinates":[1306,40194]},{"type":"Point","coordinates":[1438,40255]},{"type":"Point","coordinates":[1440,40256]},{"type":"Point","coordinates":[1438,40256]},{"type":"Point","coordinates":[1302,40194]},{"type":"Point","coordinates":[1302,40194]},{"type":"Point","coordinates":[1562,40314]},{"type":"Point","coordinates":[1561,40314]},{"type":"Point","coordinates":[1302,40194]},{"type":"Point","coordinates":[1313,40200]},{"type":"Point","coordinates":[1561,40314]},{"type":"Point","coordinates":[1437,40258]},{"type":"Point","coordinates":[1437,40258]},{"type":"Point","coordinates":[1438,40259]},{"type":"Point","coordinates":[1436,40258]},{"type":"Point","coordinates":[1435,40258]},{"type":"Point","coordinates":[1437,40259]},{"type":"Point","coordinates":[1437,40259]},{"type":"Point","coordinates":[1440,40261]},{"type":"Point","coordinates":[1438,40260]},{"type":"Point","coordinates":[1437,40260]},{"type":"Point","coordinates":[1438,40261]},{"type":"Point","coordinates":[1302,40198]},{"type":"Point","coordinates":[1437,40261]},{"type":"Point","coordinates":[1438,40261]},{"type":"Point","coordinates":[1561,40318]},{"type":"Point","coordinates":[1436,40260]},{"type":"Point","coordinates":[1438,40262]},{"type":"Point","coordinates":[1313,40204]},{"type":"Point","coordinates":[1436,40261]},{"type":"Point","coordinates":[1312,40204]},{"type":"Point","coordinates":[1312,40204]},{"type":"Point","coordinates":[1435,40261]},{"type":"Point","coordinates":[1561,40319]},{"type":"Point","coordinates":[1302,40200]},{"type":"Point","coordinates":[1303,40201]},{"type":"Point","coordinates":[1302,40201]},{"type":"Point","coordinates":[1614,40344]},{"type":"Point","coordinates":[1312,40206]},{"type":"Point","coordinates":[1312,40206]},{"type":"Point","coordinates":[1301,40201]},{"type":"Point","coordinates":[1565,40324]},{"type":"Point","coordinates":[1566,40324]},{"type":"Point","coordinates":[1565,40324]},{"type":"Point","coordinates":[1566,40325]},{"type":"Point","coordinates":[1566,40325]},{"type":"Point","coordinates":[1566,40325]},{"type":"Point","coordinates":[1566,40325]},{"type":"Point","coordinates":[1407,40253]},{"type":"Point","coordinates":[1301,40204]},{"type":"Point","coordinates":[1566,40327]},{"type":"Point","coordinates":[1566,40327]},{"type":"Point","coordinates":[1566,40328]},{"type":"Point","coordinates":[1302,40206]},{"type":"Point","coordinates":[1566,40328]},{"type":"Point","coordinates":[1566,40328]},{"type":"Point","coordinates":[1438,40275]},{"type":"Point","coordinates":[72832,49386]},{"type":"Point","coordinates":[1434,40275]},{"type":"Point","coordinates":[1334,40230]},{"type":"Point","coordinates":[1606,40360]},{"type":"Point","coordinates":[1500,40318]},{"type":"Point","coordinates":[1386,40266]},{"type":"Point","coordinates":[1570,40352]},{"type":"Point","coordinates":[1391,40272]},{"type":"Point","coordinates":[2104,40604]},{"type":"Point","coordinates":[1332,40252]},{"type":"Point","coordinates":[1485,40328]},{"type":"Point","coordinates":[1485,40329]},{"type":"Point","coordinates":[1485,40329]},{"type":"Point","coordinates":[1335,40262]},{"type":"Point","coordinates":[1335,40263]},{"type":"Point","coordinates":[1335,40263]},{"type":"Point","coordinates":[1336,40263]},{"type":"Point","coordinates":[1336,40263]},{"type":"Point","coordinates":[1336,40263]},{"type":"Point","coordinates":[1335,40263]},{"type":"Point","coordinates":[1336,40264]},{"type":"Point","coordinates":[1718,40440]},{"type":"Point","coordinates":[1335,40267]},{"type":"Point","coordinates":[1775,40468]},{"type":"Point","coordinates":[1713,40440]},{"type":"Point","coordinates":[1334,40271]},{"type":"Point","coordinates":[1334,40272]},{"type":"Point","coordinates":[1333,40273]},{"type":"Point","coordinates":[1717,40452]},{"type":"Point","coordinates":[83239,46921]},{"type":"Point","coordinates":[1491,40354]},{"type":"Point","coordinates":[1322,40276]},{"type":"Point","coordinates":[1491,40354]},{"type":"Point","coordinates":[1490,40354]},{"type":"Point","coordinates":[1327,40281]},{"type":"Point","coordinates":[1667,40438]},{"type":"Point","coordinates":[84065,46685]},{"type":"Point","coordinates":[1324,40282]},{"type":"Point","coordinates":[1539,40386]},{"type":"Point","coordinates":[1509,40372]},{"type":"Point","coordinates":[1539,40388]},{"type":"Point","coordinates":[1539,40389]},{"type":"Point","coordinates":[1538,40389]},{"type":"Point","coordinates":[1537,40389]},{"type":"Point","coordinates":[2064,40630]},{"type":"Point","coordinates":[2064,40630]},{"type":"Point","coordinates":[1661,40448]},{"type":"Point","coordinates":[842,40073]},{"type":"Point","coordinates":[2030,40623]},{"type":"Point","coordinates":[2407,40795]},{"type":"Point","coordinates":[1488,40378]},{"type":"Point","coordinates":[2098,40659]},{"type":"Point","coordinates":[2098,40660]},{"type":"Point","coordinates":[1376,40330]},{"type":"Point","coordinates":[2098,40660]},{"type":"Point","coordinates":[1544,40413]},{"type":"Point","coordinates":[2375,40791]},{"type":"Point","coordinates":[1564,40424]},{"type":"Point","coordinates":[1520,40404]},{"type":"Point","coordinates":[1594,40440]},{"type":"Point","coordinates":[1594,40441]},{"type":"Point","coordinates":[1518,40410]},{"type":"Point","coordinates":[72189,49605]},{"type":"Point","coordinates":[2656,40930]},{"type":"Point","coordinates":[70727,49873]},{"type":"Point","coordinates":[1544,40429]},{"type":"Point","coordinates":[7570,43015]},{"type":"Point","coordinates":[1240,40293]},{"type":"Point","coordinates":[1586,40453]},{"type":"Point","coordinates":[1539,40431]},{"type":"Point","coordinates":[1536,40430]},{"type":"Point","coordinates":[5560,42197]},{"type":"Point","coordinates":[72888,49485]},{"type":"Point","coordinates":[1323,40340]},{"type":"Point","coordinates":[1570,40454]},{"type":"Point","coordinates":[1570,40454]},{"type":"Point","coordinates":[1570,40455]},{"type":"Point","coordinates":[1570,40455]},{"type":"Point","coordinates":[1423,40389]},{"type":"Point","coordinates":[7572,43031]},{"type":"Point","coordinates":[7581,43038]},{"type":"Point","coordinates":[1325,40352]},{"type":"Point","coordinates":[1307,40344]},{"type":"Point","coordinates":[7533,43026]},{"type":"Point","coordinates":[1303,40347]},{"type":"Point","coordinates":[1676,40519]},{"type":"Point","coordinates":[83142,47031]},{"type":"Point","coordinates":[1632,40503]},{"type":"Point","coordinates":[7589,43055]},{"type":"Point","coordinates":[7553,43042]},{"type":"Point","coordinates":[1723,40547]},{"type":"Point","coordinates":[1723,40547]},{"type":"Point","coordinates":[1550,40470]},{"type":"Point","coordinates":[1638,40514]},{"type":"Point","coordinates":[1638,40514]},{"type":"Point","coordinates":[83145,47041]},{"type":"Point","coordinates":[1638,40514]},{"type":"Point","coordinates":[7516,43035]},{"type":"Point","coordinates":[83140,47044]},{"type":"Point","coordinates":[1632,40514]},{"type":"Point","coordinates":[1631,40513]},{"type":"Point","coordinates":[1637,40517]},{"type":"Point","coordinates":[1395,40406]},{"type":"Point","coordinates":[1631,40514]},{"type":"Point","coordinates":[1631,40515]},{"type":"Point","coordinates":[1632,40515]},{"type":"Point","coordinates":[1551,40479]},{"type":"Point","coordinates":[1641,40522]},{"type":"Point","coordinates":[1531,40472]},{"type":"Point","coordinates":[7590,43070]},{"type":"Point","coordinates":[1578,40494]},{"type":"Point","coordinates":[7590,43071]},{"type":"Point","coordinates":[1553,40484]},{"type":"Point","coordinates":[7590,43072]},{"type":"Point","coordinates":[1571,40495]},{"type":"Point","coordinates":[1551,40487]},{"type":"Point","coordinates":[1333,40388]},{"type":"Point","coordinates":[63453,50965]},{"type":"Point","coordinates":[1335,40392]},{"type":"Point","coordinates":[70754,49931]},{"type":"Point","coordinates":[1988,40696]},{"type":"Point","coordinates":[1990,40698]},{"type":"Point","coordinates":[1988,40698]},{"type":"Point","coordinates":[1987,40698]},{"type":"Point","coordinates":[1599,40522]},{"type":"Point","coordinates":[1454,40456]},{"type":"Point","coordinates":[1575,40515]},{"type":"Point","coordinates":[1510,40489]},{"type":"Point","coordinates":[1337,40411]},{"type":"Point","coordinates":[1413,40450]},{"type":"Point","coordinates":[1420,40453]},{"type":"Point","coordinates":[1420,40453]},{"type":"Point","coordinates":[1418,40453]},{"type":"Point","coordinates":[1419,40454]},{"type":"Point","coordinates":[1418,40454]},{"type":"Point","coordinates":[7798,43186]},{"type":"Point","coordinates":[7586,43103]},{"type":"Point","coordinates":[7588,43105]},{"type":"Point","coordinates":[7588,43105]},{"type":"Point","coordinates":[7589,43107]},{"type":"Point","coordinates":[7585,43106]},{"type":"Point","coordinates":[1484,40491]},{"type":"Point","coordinates":[7582,43107]},{"type":"Point","coordinates":[2446,40929]},{"type":"Point","coordinates":[1346,40432]},{"type":"Point","coordinates":[1395,40455]},{"type":"Point","coordinates":[2346,40889]},{"type":"Point","coordinates":[1581,40543]},{"type":"Point","coordinates":[1983,40729]},{"type":"Point","coordinates":[83961,46859]},{"type":"Point","coordinates":[1561,40538]},{"type":"Point","coordinates":[7542,43103]},{"type":"Point","coordinates":[1560,40539]},{"type":"Point","coordinates":[1560,40539]},{"type":"Point","coordinates":[1561,40539]},{"type":"Point","coordinates":[1560,40539]},{"type":"Point","coordinates":[1560,40540]},{"type":"Point","coordinates":[1559,40540]},{"type":"Point","coordinates":[1520,40525]},{"type":"Point","coordinates":[1277,40414]},{"type":"Point","coordinates":[1277,40414]},{"type":"Point","coordinates":[1554,40544]},{"type":"Point","coordinates":[1553,40545]},{"type":"Point","coordinates":[1553,40545]},{"type":"Point","coordinates":[1554,40546]},{"type":"Point","coordinates":[1554,40546]},{"type":"Point","coordinates":[1553,40546]},{"type":"Point","coordinates":[1553,40549]},{"type":"Point","coordinates":[1516,40533]},{"type":"Point","coordinates":[1553,40550]},{"type":"Point","coordinates":[1552,40550]},{"type":"Point","coordinates":[1552,40550]},{"type":"Point","coordinates":[1552,40550]},{"type":"Point","coordinates":[1552,40551]},{"type":"Point","coordinates":[1552,40551]},{"type":"Point","coordinates":[1552,40551]},{"type":"Point","coordinates":[1552,40551]},{"type":"Point","coordinates":[1552,40551]},{"type":"Point","coordinates":[1552,40551]},{"type":"Point","coordinates":[1551,40551]},{"type":"Point","coordinates":[1552,40551]},{"type":"Point","coordinates":[1551,40551]},{"type":"Point","coordinates":[1552,40553]},{"type":"Point","coordinates":[1311,40442]},{"type":"Point","coordinates":[1591,40572]},{"type":"Point","coordinates":[1550,40554]},{"type":"Point","coordinates":[1510,40537]},{"type":"Point","coordinates":[1658,40604]},{"type":"Point","coordinates":[1510,40537]},{"type":"Point","coordinates":[1547,40554]},{"type":"Point","coordinates":[1590,40577]},{"type":"Point","coordinates":[1590,40577]},{"type":"Point","coordinates":[1590,40577]},{"type":"Point","coordinates":[1547,40557]},{"type":"Point","coordinates":[1529,40550]},{"type":"Point","coordinates":[1535,40554]},{"type":"Point","coordinates":[1507,40542]},{"type":"Point","coordinates":[1530,40552]},{"type":"Point","coordinates":[1541,40558]},{"type":"Point","coordinates":[1541,40558]},{"type":"Point","coordinates":[72090,49757]},{"type":"Point","coordinates":[1433,40514]},{"type":"Point","coordinates":[1546,40566]},{"type":"Point","coordinates":[2003,40779]},{"type":"Point","coordinates":[2019,40787]},{"type":"Point","coordinates":[1588,40591]},{"type":"Point","coordinates":[1359,40486]},{"type":"Point","coordinates":[1359,40487]},{"type":"Point","coordinates":[1511,40556]},{"type":"Point","coordinates":[1556,40578]},{"type":"Point","coordinates":[1555,40577]},{"type":"Point","coordinates":[1360,40488]},{"type":"Point","coordinates":[2002,40782]},{"type":"Point","coordinates":[2002,40782]},{"type":"Point","coordinates":[1611,40604]},{"type":"Point","coordinates":[74493,49293]},{"type":"Point","coordinates":[1611,40604]},{"type":"Point","coordinates":[1612,40605]},{"type":"Point","coordinates":[1611,40605]},{"type":"Point","coordinates":[1611,40605]},{"type":"Point","coordinates":[2005,40785]},{"type":"Point","coordinates":[1482,40547]},{"type":"Point","coordinates":[1481,40548]},{"type":"Point","coordinates":[1501,40558]},{"type":"Point","coordinates":[1499,40557]},{"type":"Point","coordinates":[1460,40541]},{"type":"Point","coordinates":[89634,45077]},{"type":"Point","coordinates":[1545,40584]},{"type":"Point","coordinates":[1544,40583]},{"type":"Point","coordinates":[1660,40639]},{"type":"Point","coordinates":[1544,40587]},{"type":"Point","coordinates":[1544,40588]},{"type":"Point","coordinates":[1544,40591]},{"type":"Point","coordinates":[1535,40587]},{"type":"Point","coordinates":[1371,40512]},{"type":"Point","coordinates":[63669,51043]},{"type":"Point","coordinates":[1501,40573]},{"type":"Point","coordinates":[1974,40793]},{"type":"Point","coordinates":[1974,40793]},{"type":"Point","coordinates":[83318,47114]},{"type":"Point","coordinates":[1543,40599]},{"type":"Point","coordinates":[1444,40554]},{"type":"Point","coordinates":[7650,43215]},{"type":"Point","coordinates":[7650,43215]},{"type":"Point","coordinates":[7650,43215]},{"type":"Point","coordinates":[1340,40508]},{"type":"Point","coordinates":[1441,40555]},{"type":"Point","coordinates":[1441,40556]},{"type":"Point","coordinates":[1500,40583]},{"type":"Point","coordinates":[2053,40836]},{"type":"Point","coordinates":[1491,40580]},{"type":"Point","coordinates":[1500,40584]},{"type":"Point","coordinates":[1441,40558]},{"type":"Point","coordinates":[1502,40586]},{"type":"Point","coordinates":[1441,40558]},{"type":"Point","coordinates":[1440,40559]},{"type":"Point","coordinates":[1501,40587]},{"type":"Point","coordinates":[1573,40622]},{"type":"Point","coordinates":[1469,40579]},{"type":"Point","coordinates":[83267,47145]},{"type":"Point","coordinates":[1417,40556]},{"type":"Point","coordinates":[1195,40454]},{"type":"Point","coordinates":[1317,40511]},{"type":"Point","coordinates":[1594,40641]},{"type":"Point","coordinates":[1594,40641]},{"type":"Point","coordinates":[1418,40560]},{"type":"Point","coordinates":[1622,40654]},{"type":"Point","coordinates":[1622,40654]},{"type":"Point","coordinates":[1463,40582]},{"type":"Point","coordinates":[1463,40582]},{"type":"Point","coordinates":[1454,40578]},{"type":"Point","coordinates":[1384,40548]},{"type":"Point","coordinates":[1382,40548]},{"type":"Point","coordinates":[1470,40589]},{"type":"Point","coordinates":[1580,40640]},{"type":"Point","coordinates":[1577,40639]},{"type":"Point","coordinates":[1577,40639]},{"type":"Point","coordinates":[1579,40640]},{"type":"Point","coordinates":[1580,40641]},{"type":"Point","coordinates":[1585,40643]},{"type":"Point","coordinates":[1333,40528]},{"type":"Point","coordinates":[7457,43163]},{"type":"Point","coordinates":[1588,40648]},{"type":"Point","coordinates":[1564,40640]},{"type":"Point","coordinates":[1564,40640]},{"type":"Point","coordinates":[1385,40558]},{"type":"Point","coordinates":[1498,40612]},{"type":"Point","coordinates":[1558,40641]},{"type":"Point","coordinates":[72317,49785]},{"type":"Point","coordinates":[1612,40674]},{"type":"Point","coordinates":[1421,40590]},{"type":"Point","coordinates":[1335,40552]},{"type":"Point","coordinates":[70455,50136]},{"type":"Point","coordinates":[7606,43247]},{"type":"Point","coordinates":[7606,43247]},{"type":"Point","coordinates":[1339,40560]},{"type":"Point","coordinates":[1578,40670]},{"type":"Point","coordinates":[1339,40560]},{"type":"Point","coordinates":[1337,40560]},{"type":"Point","coordinates":[1576,40671]},{"type":"Point","coordinates":[2085,40905]},{"type":"Point","coordinates":[1570,40671]},{"type":"Point","coordinates":[1568,40670]},{"type":"Point","coordinates":[1589,40681]},{"type":"Point","coordinates":[1591,40683]},{"type":"Point","coordinates":[1224,40515]},{"type":"Point","coordinates":[1592,40686]},{"type":"Point","coordinates":[1595,40688]},{"type":"Point","coordinates":[1595,40688]},{"type":"Point","coordinates":[2478,41089]},{"type":"Point","coordinates":[1591,40688]},{"type":"Point","coordinates":[1594,40689]},{"type":"Point","coordinates":[7573,43250]},{"type":"Point","coordinates":[1562,40676]},{"type":"Point","coordinates":[1595,40694]},{"type":"Point","coordinates":[1574,40685]},{"type":"Point","coordinates":[1350,40584]},{"type":"Point","coordinates":[1349,40584]},{"type":"Point","coordinates":[34290,50553]},{"type":"Point","coordinates":[1348,40585]},{"type":"Point","coordinates":[1550,40683]},{"type":"Point","coordinates":[2041,40907]},{"type":"Point","coordinates":[34288,50558]},{"type":"Point","coordinates":[1581,40701]},{"type":"Point","coordinates":[2091,40933]},{"type":"Point","coordinates":[1527,40678]},{"type":"Point","coordinates":[1485,40660]},{"type":"Point","coordinates":[1485,40660]},{"type":"Point","coordinates":[1485,40660]},{"type":"Point","coordinates":[1430,40635]},{"type":"Point","coordinates":[2021,40911]},{"type":"Point","coordinates":[1505,40677]},{"type":"Point","coordinates":[2463,41112]},{"type":"Point","coordinates":[1499,40675]},{"type":"Point","coordinates":[1505,40678]},{"type":"Point","coordinates":[1667,40752]},{"type":"Point","coordinates":[1500,40677]},{"type":"Point","coordinates":[1528,40694]},{"type":"Point","coordinates":[83035,47301]},{"type":"Point","coordinates":[2022,40923]},{"type":"Point","coordinates":[1505,40692]},{"type":"Point","coordinates":[7635,43317]},{"type":"Point","coordinates":[1514,40697]},{"type":"Point","coordinates":[5180,42312]},{"type":"Point","coordinates":[1502,40693]},{"type":"Point","coordinates":[2195,41009]},{"type":"Point","coordinates":[1502,40694]},{"type":"Point","coordinates":[2194,41009]},{"type":"Point","coordinates":[64151,51107]},{"type":"Point","coordinates":[1493,40692]},{"type":"Point","coordinates":[1600,40742]},{"type":"Point","coordinates":[1582,40735]},{"type":"Point","coordinates":[70677,50163]},{"type":"Point","coordinates":[1579,40734]},{"type":"Point","coordinates":[2358,41088]},{"type":"Point","coordinates":[1937,40898]},{"type":"Point","coordinates":[2058,40958]},{"type":"Point","coordinates":[83388,47219]},{"type":"Point","coordinates":[1499,40706]},{"type":"Point","coordinates":[1499,40706]},{"type":"Point","coordinates":[2059,40961]},{"type":"Point","coordinates":[1312,40620]},{"type":"Point","coordinates":[2060,40962]},{"type":"Point","coordinates":[1864,40874]},{"type":"Point","coordinates":[2059,40962]},{"type":"Point","coordinates":[1538,40725]},{"type":"Point","coordinates":[7564,43307]},{"type":"Point","coordinates":[1308,40622]},{"type":"Point","coordinates":[2072,40971]},{"type":"Point","coordinates":[2072,40971]},{"type":"Point","coordinates":[2072,40971]},{"type":"Point","coordinates":[2034,40954]},{"type":"Point","coordinates":[2072,40972]},{"type":"Point","coordinates":[1688,40798]},{"type":"Point","coordinates":[1537,40729]},{"type":"Point","coordinates":[7565,43313]},{"type":"Point","coordinates":[1537,40732]},{"type":"Point","coordinates":[2065,40973]},{"type":"Point","coordinates":[1537,40732]},{"type":"Point","coordinates":[1507,40719]},{"type":"Point","coordinates":[7580,43321]},{"type":"Point","coordinates":[1511,40721]},{"type":"Point","coordinates":[1573,40751]},{"type":"Point","coordinates":[73049,49745]},{"type":"Point","coordinates":[7581,43325]},{"type":"Point","coordinates":[1478,40711]},{"type":"Point","coordinates":[7551,43315]},{"type":"Point","coordinates":[2196,41038]},{"type":"Point","coordinates":[1478,40712]},{"type":"Point","coordinates":[1540,40741]},{"type":"Point","coordinates":[1510,40727]},{"type":"Point","coordinates":[2077,40986]},{"type":"Point","coordinates":[2077,40987]},{"type":"Point","coordinates":[1477,40713]},{"type":"Point","coordinates":[1875,40896]},{"type":"Point","coordinates":[2256,41070]},{"type":"Point","coordinates":[1471,40714]},{"type":"Point","coordinates":[1983,40948]},{"type":"Point","coordinates":[2063,40985]},{"type":"Point","coordinates":[1466,40714]},{"type":"Point","coordinates":[1543,40752]},{"type":"Point","coordinates":[2546,41208]},{"type":"Point","coordinates":[80784,47974]},{"type":"Point","coordinates":[2462,41171]},{"type":"Point","coordinates":[1559,40763]},{"type":"Point","coordinates":[1549,40761]},{"type":"Point","coordinates":[2107,41016]},{"type":"Point","coordinates":[1548,40761]},{"type":"Point","coordinates":[1503,40741]},{"type":"Point","coordinates":[1505,40742]},{"type":"Point","coordinates":[1559,40767]},{"type":"Point","coordinates":[2072,41000]},{"type":"Point","coordinates":[1551,40764]},{"type":"Point","coordinates":[2108,41017]},{"type":"Point","coordinates":[1550,40765]},{"type":"Point","coordinates":[2067,41001]},{"type":"Point","coordinates":[1616,40797]},{"type":"Point","coordinates":[7520,43325]},{"type":"Point","coordinates":[1534,40760]},{"type":"Point","coordinates":[81637,47753]},{"type":"Point","coordinates":[81637,47753]},{"type":"Point","coordinates":[1511,40751]},{"type":"Point","coordinates":[2086,41013]},{"type":"Point","coordinates":[2108,41024]},{"type":"Point","coordinates":[2086,41014]},{"type":"Point","coordinates":[1458,40729]},{"type":"Point","coordinates":[2092,41017]},{"type":"Point","coordinates":[1501,40749]},{"type":"Point","coordinates":[72855,49812]},{"type":"Point","coordinates":[1492,40746]},{"type":"Point","coordinates":[1540,40768]},{"type":"Point","coordinates":[2706,41297]},{"type":"Point","coordinates":[1568,40782]},{"type":"Point","coordinates":[2706,41297]},{"type":"Point","coordinates":[1503,40753]},{"type":"Point","coordinates":[73267,49735]},{"type":"Point","coordinates":[73127,49763]},{"type":"Point","coordinates":[1456,40733]},{"type":"Point","coordinates":[73123,49764]},{"type":"Point","coordinates":[2081,41019]},{"type":"Point","coordinates":[1451,40732]},{"type":"Point","coordinates":[1445,40729]},{"type":"Point","coordinates":[1257,40644]},{"type":"Point","coordinates":[1500,40757]},{"type":"Point","coordinates":[1499,40756]},{"type":"Point","coordinates":[1497,40756]},{"type":"Point","coordinates":[1596,40801]},{"type":"Point","coordinates":[1497,40756]},{"type":"Point","coordinates":[1501,40759]},{"type":"Point","coordinates":[1502,40760]},{"type":"Point","coordinates":[1499,40759]},{"type":"Point","coordinates":[1502,40760]},{"type":"Point","coordinates":[1499,40759]},{"type":"Point","coordinates":[1459,40741]},{"type":"Point","coordinates":[1502,40762]},{"type":"Point","coordinates":[1497,40760]},{"type":"Point","coordinates":[1499,40762]},{"type":"Point","coordinates":[1517,40770]},{"type":"Point","coordinates":[1497,40761]},{"type":"Point","coordinates":[1444,40737]},{"type":"Point","coordinates":[1504,40765]},{"type":"Point","coordinates":[1443,40737]},{"type":"Point","coordinates":[1505,40766]},{"type":"Point","coordinates":[1442,40737]},{"type":"Point","coordinates":[1504,40766]},{"type":"Point","coordinates":[1507,40768]},{"type":"Point","coordinates":[1505,40767]},{"type":"Point","coordinates":[1505,40767]},{"type":"Point","coordinates":[1505,40767]},{"type":"Point","coordinates":[1505,40767]},{"type":"Point","coordinates":[1503,40766]},{"type":"Point","coordinates":[73132,49774]},{"type":"Point","coordinates":[1505,40767]},{"type":"Point","coordinates":[2098,41038]},{"type":"Point","coordinates":[1482,40757]},{"type":"Point","coordinates":[1511,40770]},{"type":"Point","coordinates":[1505,40768]},{"type":"Point","coordinates":[1503,40767]},{"type":"Point","coordinates":[1503,40768]},{"type":"Point","coordinates":[73132,49775]},{"type":"Point","coordinates":[1513,40772]},{"type":"Point","coordinates":[1546,40788]},{"type":"Point","coordinates":[1503,40768]},{"type":"Point","coordinates":[2090,41036]},{"type":"Point","coordinates":[2003,40997]},{"type":"Point","coordinates":[1506,40771]},{"type":"Point","coordinates":[1506,40771]},{"type":"Point","coordinates":[1506,40771]},{"type":"Point","coordinates":[1440,40741]},{"type":"Point","coordinates":[1504,40771]},{"type":"Point","coordinates":[2096,41041]},{"type":"Point","coordinates":[1496,40768]},{"type":"Point","coordinates":[1504,40772]},{"type":"Point","coordinates":[1506,40773]},{"type":"Point","coordinates":[2090,41039]},{"type":"Point","coordinates":[1475,40759]},{"type":"Point","coordinates":[1505,40772]},{"type":"Point","coordinates":[1475,40759]},{"type":"Point","coordinates":[1505,40773]},{"type":"Point","coordinates":[1505,40774]},{"type":"Point","coordinates":[1462,40754]},{"type":"Point","coordinates":[1506,40774]},{"type":"Point","coordinates":[2093,41042]},{"type":"Point","coordinates":[1540,40790]},{"type":"Point","coordinates":[1506,40775]},{"type":"Point","coordinates":[1506,40776]},{"type":"Point","coordinates":[1505,40775]},{"type":"Point","coordinates":[1506,40776]},{"type":"Point","coordinates":[1505,40776]},{"type":"Point","coordinates":[1505,40776]},{"type":"Point","coordinates":[1505,40776]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1260,40664]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1493,40771]},{"type":"Point","coordinates":[1505,40777]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1505,40777]},{"type":"Point","coordinates":[1507,40779]},{"type":"Point","coordinates":[1498,40775]},{"type":"Point","coordinates":[1503,40778]},{"type":"Point","coordinates":[1505,40779]},{"type":"Point","coordinates":[1550,40800]},{"type":"Point","coordinates":[1530,40790]},{"type":"Point","coordinates":[1505,40779]},{"type":"Point","coordinates":[1505,40779]},{"type":"Point","coordinates":[1505,40779]},{"type":"Point","coordinates":[1505,40779]},{"type":"Point","coordinates":[1504,40779]},{"type":"Point","coordinates":[1495,40775]},{"type":"Point","coordinates":[1505,40780]},{"type":"Point","coordinates":[1505,40780]},{"type":"Point","coordinates":[2093,41048]},{"type":"Point","coordinates":[1506,40780]},{"type":"Point","coordinates":[1474,40766]},{"type":"Point","coordinates":[1506,40781]},{"type":"Point","coordinates":[1504,40780]},{"type":"Point","coordinates":[1498,40777]},{"type":"Point","coordinates":[1507,40781]},{"type":"Point","coordinates":[1507,40781]},{"type":"Point","coordinates":[1507,40781]},{"type":"Point","coordinates":[1505,40781]},{"type":"Point","coordinates":[1505,40781]},{"type":"Point","coordinates":[2094,41049]},{"type":"Point","coordinates":[1502,40779]},{"type":"Point","coordinates":[1506,40783]},{"type":"Point","coordinates":[1504,40782]},{"type":"Point","coordinates":[1504,40782]},{"type":"Point","coordinates":[1505,40783]},{"type":"Point","coordinates":[1494,40778]},{"type":"Point","coordinates":[1506,40783]},{"type":"Point","coordinates":[1504,40783]},{"type":"Point","coordinates":[1480,40772]},{"type":"Point","coordinates":[1499,40781]},{"type":"Point","coordinates":[1499,40781]},{"type":"Point","coordinates":[1499,40781]},{"type":"Point","coordinates":[1499,40781]},{"type":"Point","coordinates":[1504,40783]},{"type":"Point","coordinates":[1505,40783]},{"type":"Point","coordinates":[1504,40783]},{"type":"Point","coordinates":[1503,40783]},{"type":"Point","coordinates":[1503,40783]},{"type":"Point","coordinates":[1503,40783]},{"type":"Point","coordinates":[1503,40783]},{"type":"Point","coordinates":[1504,40784]},{"type":"Point","coordinates":[1503,40783]},{"type":"Point","coordinates":[2102,41057]},{"type":"Point","coordinates":[1505,40786]},{"type":"Point","coordinates":[1505,40785]},{"type":"Point","coordinates":[1505,40786]},{"type":"Point","coordinates":[1505,40786]},{"type":"Point","coordinates":[2094,41054]},{"type":"Point","coordinates":[1505,40786]},{"type":"Point","coordinates":[1504,40786]},{"type":"Point","coordinates":[2097,41056]},{"type":"Point","coordinates":[1505,40787]},{"type":"Point","coordinates":[1506,40787]},{"type":"Point","coordinates":[1505,40787]},{"type":"Point","coordinates":[2109,41062]},{"type":"Point","coordinates":[1506,40787]},{"type":"Point","coordinates":[1505,40787]},{"type":"Point","coordinates":[1428,40752]},{"type":"Point","coordinates":[1505,40787]},{"type":"Point","coordinates":[1504,40787]},{"type":"Point","coordinates":[1505,40787]},{"type":"Point","coordinates":[1505,40787]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1502,40786]},{"type":"Point","coordinates":[1505,40787]},{"type":"Point","coordinates":[1504,40787]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1506,40788]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1503,40787]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1508,40789]},{"type":"Point","coordinates":[1506,40789]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1501,40787]},{"type":"Point","coordinates":[1506,40789]},{"type":"Point","coordinates":[1502,40787]},{"type":"Point","coordinates":[1542,40806]},{"type":"Point","coordinates":[1506,40789]},{"type":"Point","coordinates":[1506,40789]},{"type":"Point","coordinates":[1507,40789]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1502,40787]},{"type":"Point","coordinates":[1506,40789]},{"type":"Point","coordinates":[1505,40789]},{"type":"Point","coordinates":[1507,40790]},{"type":"Point","coordinates":[1506,40790]},{"type":"Point","coordinates":[1506,40790]},{"type":"Point","coordinates":[1505,40789]},{"type":"Point","coordinates":[2102,41061]},{"type":"Point","coordinates":[1507,40790]},{"type":"Point","coordinates":[1506,40790]},{"type":"Point","coordinates":[1505,40790]},{"type":"Point","coordinates":[1506,40790]},{"type":"Point","coordinates":[1505,40790]},{"type":"Point","coordinates":[1425,40753]},{"type":"Point","coordinates":[1506,40791]},{"type":"Point","coordinates":[1503,40790]},{"type":"Point","coordinates":[2106,41064]},{"type":"Point","coordinates":[1424,40753]},{"type":"Point","coordinates":[1506,40791]},{"type":"Point","coordinates":[1506,40791]},{"type":"Point","coordinates":[1506,40791]},{"type":"Point","coordinates":[2106,41064]},{"type":"Point","coordinates":[1506,40791]},{"type":"Point","coordinates":[1506,40791]},{"type":"Point","coordinates":[1505,40791]},{"type":"Point","coordinates":[1506,40791]},{"type":"Point","coordinates":[2106,41064]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1507,40793]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1507,40793]},{"type":"Point","coordinates":[1507,40793]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1508,40793]},{"type":"Point","coordinates":[1506,40793]},{"type":"Point","coordinates":[1506,40793]},{"type":"Point","coordinates":[1506,40793]},{"type":"Point","coordinates":[1507,40793]},{"type":"Point","coordinates":[1509,40794]},{"type":"Point","coordinates":[1425,40756]},{"type":"Point","coordinates":[2106,41066]},{"type":"Point","coordinates":[1507,40794]},{"type":"Point","coordinates":[2107,41067]},{"type":"Point","coordinates":[1508,40795]},{"type":"Point","coordinates":[1508,40795]},{"type":"Point","coordinates":[1508,40795]},{"type":"Point","coordinates":[1501,40792]},{"type":"Point","coordinates":[1508,40795]},{"type":"Point","coordinates":[2109,41069]},{"type":"Point","coordinates":[2109,41069]},{"type":"Point","coordinates":[2109,41069]},{"type":"Point","coordinates":[2109,41069]},{"type":"Point","coordinates":[1426,40758]},{"type":"Point","coordinates":[1513,40798]},{"type":"Point","coordinates":[1508,40796]},{"type":"Point","coordinates":[1508,40796]},{"type":"Point","coordinates":[1508,40797]},{"type":"Point","coordinates":[1490,40788]},{"type":"Point","coordinates":[1504,40796]},{"type":"Point","coordinates":[1511,40800]},{"type":"Point","coordinates":[1562,40826]},{"type":"Point","coordinates":[1516,40805]},{"type":"Point","coordinates":[1441,40771]},{"type":"Point","coordinates":[81622,47811]},{"type":"Point","coordinates":[2062,41058]},{"type":"Point","coordinates":[1416,40764]},{"type":"Point","coordinates":[1497,40801]},{"type":"Point","coordinates":[1516,40810]},{"type":"Point","coordinates":[2130,41090]},{"type":"Point","coordinates":[1439,40776]},{"type":"Point","coordinates":[1415,40765]},{"type":"Point","coordinates":[1415,40765]},{"type":"Point","coordinates":[2123,41089]},{"type":"Point","coordinates":[1509,40811]},{"type":"Point","coordinates":[1436,40777]},{"type":"Point","coordinates":[1517,40816]},{"type":"Point","coordinates":[1517,40816]},{"type":"Point","coordinates":[73069,49829]},{"type":"Point","coordinates":[2072,41072]},{"type":"Point","coordinates":[81625,47823]},{"type":"Point","coordinates":[1407,40775]},{"type":"Point","coordinates":[2125,41106]},{"type":"Point","coordinates":[2066,41081]},{"type":"Point","coordinates":[1505,40826]},{"type":"Point","coordinates":[1505,40826]},{"type":"Point","coordinates":[2055,41077]},{"type":"Point","coordinates":[1508,40829]},{"type":"Point","coordinates":[1507,40829]},{"type":"Point","coordinates":[1507,40829]},{"type":"Point","coordinates":[1507,40829]},{"type":"Point","coordinates":[2098,41102]},{"type":"Point","coordinates":[2099,41104]},{"type":"Point","coordinates":[2099,41104]},{"type":"Point","coordinates":[2120,41113]},{"type":"Point","coordinates":[1535,40847]},{"type":"Point","coordinates":[1629,40890]},{"type":"Point","coordinates":[7396,43362]},{"type":"Point","coordinates":[2435,41258]},{"type":"Point","coordinates":[1549,40857]},{"type":"Point","coordinates":[2480,41279]},{"type":"Point","coordinates":[1498,40834]},{"type":"Point","coordinates":[7398,43367]},{"type":"Point","coordinates":[1462,40817]},{"type":"Point","coordinates":[7395,43369]},{"type":"Point","coordinates":[2267,41188]},{"type":"Point","coordinates":[2138,41130]},{"type":"Point","coordinates":[2070,41100]},{"type":"Point","coordinates":[2136,41130]},{"type":"Point","coordinates":[1554,40868]},{"type":"Point","coordinates":[1503,40847]},{"type":"Point","coordinates":[7154,43279]},{"type":"Point","coordinates":[2070,41111]},{"type":"Point","coordinates":[2071,41115]},{"type":"Point","coordinates":[2068,41115]},{"type":"Point","coordinates":[2139,41148]},{"type":"Point","coordinates":[2015,41093]},{"type":"Point","coordinates":[2499,41316]},{"type":"Point","coordinates":[2101,41137]},{"type":"Point","coordinates":[1629,40923]},{"type":"Point","coordinates":[2101,41138]},{"type":"Point","coordinates":[1511,40870]},{"type":"Point","coordinates":[83533,47333]},{"type":"Point","coordinates":[2064,41123]},{"type":"Point","coordinates":[2066,41124]},{"type":"Point","coordinates":[2081,41132]},{"type":"Point","coordinates":[2062,41124]},{"type":"Point","coordinates":[2062,41124]},{"type":"Point","coordinates":[2061,41124]},{"type":"Point","coordinates":[1987,41091]},{"type":"Point","coordinates":[2063,41126]},{"type":"Point","coordinates":[2038,41115]},{"type":"Point","coordinates":[2061,41126]},{"type":"Point","coordinates":[2061,41126]},{"type":"Point","coordinates":[2061,41126]},{"type":"Point","coordinates":[2060,41127]},{"type":"Point","coordinates":[2060,41127]},{"type":"Point","coordinates":[2060,41128]},{"type":"Point","coordinates":[2060,41128]},{"type":"Point","coordinates":[2060,41128]},{"type":"Point","coordinates":[2102,41147]},{"type":"Point","coordinates":[2080,41137]},{"type":"Point","coordinates":[2080,41137]},{"type":"Point","coordinates":[2060,41128]},{"type":"Point","coordinates":[2061,41129]},{"type":"Point","coordinates":[2141,41165]},{"type":"Point","coordinates":[2054,41127]},{"type":"Point","coordinates":[2073,41135]},{"type":"Point","coordinates":[2087,41143]},{"type":"Point","coordinates":[2061,41132]},{"type":"Point","coordinates":[1590,40918]},{"type":"Point","coordinates":[2068,41136]},{"type":"Point","coordinates":[2067,41136]},{"type":"Point","coordinates":[2039,41123]},{"type":"Point","coordinates":[2039,41123]},{"type":"Point","coordinates":[2039,41123]},{"type":"Point","coordinates":[2068,41136]},{"type":"Point","coordinates":[2039,41123]},{"type":"Point","coordinates":[2056,41132]},{"type":"Point","coordinates":[2055,41132]},{"type":"Point","coordinates":[2068,41137]},{"type":"Point","coordinates":[2055,41132]},{"type":"Point","coordinates":[2067,41138]},{"type":"Point","coordinates":[2101,41153]},{"type":"Point","coordinates":[2067,41139]},{"type":"Point","coordinates":[1540,40899]},{"type":"Point","coordinates":[2053,41133]},{"type":"Point","coordinates":[2061,41137]},{"type":"Point","coordinates":[2058,41136]},{"type":"Point","coordinates":[2070,41141]},{"type":"Point","coordinates":[2066,41139]},{"type":"Point","coordinates":[2055,41135]},{"type":"Point","coordinates":[2056,41136]},{"type":"Point","coordinates":[2059,41138]},{"type":"Point","coordinates":[2058,41138]},{"type":"Point","coordinates":[2062,41140]},{"type":"Point","coordinates":[2061,41139]},{"type":"Point","coordinates":[2095,41155]},{"type":"Point","coordinates":[2061,41140]},{"type":"Point","coordinates":[2060,41140]},{"type":"Point","coordinates":[2135,41175]},{"type":"Point","coordinates":[2134,41176]},{"type":"Point","coordinates":[2136,41179]},{"type":"Point","coordinates":[2138,41180]},{"type":"Point","coordinates":[2077,41155]},{"type":"Point","coordinates":[1574,40926]},{"type":"Point","coordinates":[7030,43283]},{"type":"Point","coordinates":[7030,43283]},{"type":"Point","coordinates":[7030,43283]},{"type":"Point","coordinates":[2148,41196]},{"type":"Point","coordinates":[2050,41153]},{"type":"Point","coordinates":[2139,41193]},{"type":"Point","coordinates":[2058,41158]},{"type":"Point","coordinates":[7036,43290]},{"type":"Point","coordinates":[7036,43290]},{"type":"Point","coordinates":[7036,43290]},{"type":"Point","coordinates":[7036,43290]},{"type":"Point","coordinates":[2113,41183]},{"type":"Point","coordinates":[2090,41174]},{"type":"Point","coordinates":[2088,41174]},{"type":"Point","coordinates":[2064,41164]},{"type":"Point","coordinates":[2091,41177]},{"type":"Point","coordinates":[2089,41177]},{"type":"Point","coordinates":[2042,41157]},{"type":"Point","coordinates":[2042,41157]},{"type":"Point","coordinates":[1463,40893]},{"type":"Point","coordinates":[2056,41166]},{"type":"Point","coordinates":[1742,41024]},{"type":"Point","coordinates":[2038,41159]},{"type":"Point","coordinates":[1116,40737]},{"type":"Point","coordinates":[7097,43324]},{"type":"Point","coordinates":[1489,40910]},{"type":"Point","coordinates":[2075,41177]},{"type":"Point","coordinates":[2045,41165]},{"type":"Point","coordinates":[2047,41168]},{"type":"Point","coordinates":[2062,41175]},{"type":"Point","coordinates":[2062,41176]},{"type":"Point","coordinates":[1556,40946]},{"type":"Point","coordinates":[2072,41181]},{"type":"Point","coordinates":[2062,41180]},{"type":"Point","coordinates":[1539,40943]},{"type":"Point","coordinates":[7640,43558]},{"type":"Point","coordinates":[1642,41002]},{"type":"Point","coordinates":[1726,41040]},{"type":"Point","coordinates":[1746,41050]},{"type":"Point","coordinates":[7622,43557]},{"type":"Point","coordinates":[1547,40961]},{"type":"Point","coordinates":[1489,40935]},{"type":"Point","coordinates":[2459,41377]},{"type":"Point","coordinates":[7067,43341]},{"type":"Point","coordinates":[5423,42666]},{"type":"Point","coordinates":[77139,49091]},{"type":"Point","coordinates":[2075,41209]},{"type":"Point","coordinates":[2058,41205]},{"type":"Point","coordinates":[1506,40955]},{"type":"Point","coordinates":[7091,43360]},{"type":"Point","coordinates":[2177,41261]},{"type":"Point","coordinates":[1505,40956]},{"type":"Point","coordinates":[2034,41198]},{"type":"Point","coordinates":[63302,51455]},{"type":"Point","coordinates":[1581,40996]},{"type":"Point","coordinates":[72609,50065]},{"type":"Point","coordinates":[2164,41267]},{"type":"Point","coordinates":[2165,41269]},{"type":"Point","coordinates":[2300,41330]},{"type":"Point","coordinates":[1627,41026]},{"type":"Point","coordinates":[2020,41206]},{"type":"Point","coordinates":[2100,41245]},{"type":"Point","coordinates":[1624,41030]},{"type":"Point","coordinates":[1624,41030]},{"type":"Point","coordinates":[2100,41247]},{"type":"Point","coordinates":[1624,41032]},{"type":"Point","coordinates":[1624,41032]},{"type":"Point","coordinates":[1624,41033]},{"type":"Point","coordinates":[2099,41250]},{"type":"Point","coordinates":[7272,43457]},{"type":"Point","coordinates":[2098,41252]},{"type":"Point","coordinates":[1556,41009]},{"type":"Point","coordinates":[2100,41260]},{"type":"Point","coordinates":[2235,41321]},{"type":"Point","coordinates":[74554,49702]},{"type":"Point","coordinates":[2103,41264]},{"type":"Point","coordinates":[2022,41228]},{"type":"Point","coordinates":[2105,41270]},{"type":"Point","coordinates":[82804,47671]},{"type":"Point","coordinates":[2329,41377]},{"type":"Point","coordinates":[2331,41379]},{"type":"Point","coordinates":[5815,42889]},{"type":"Point","coordinates":[1632,41068]},{"type":"Point","coordinates":[1643,41073]},{"type":"Point","coordinates":[1631,41069]},{"type":"Point","coordinates":[2317,41382]},{"type":"Point","coordinates":[74426,49755]},{"type":"Point","coordinates":[2176,41324]},{"type":"Point","coordinates":[2114,41297]},{"type":"Point","coordinates":[2055,41275]},{"type":"Point","coordinates":[5166,42636]},{"type":"Point","coordinates":[2055,41276]},{"type":"Point","coordinates":[1606,41072]},{"type":"Point","coordinates":[7367,43542]},{"type":"Point","coordinates":[74443,49767]},{"type":"Point","coordinates":[1615,41088]},{"type":"Point","coordinates":[1624,41096]},{"type":"Point","coordinates":[2262,41385]},{"type":"Point","coordinates":[1630,41100]},{"type":"Point","coordinates":[2140,41333]},{"type":"Point","coordinates":[7052,43435]},{"type":"Point","coordinates":[2207,41367]},{"type":"Point","coordinates":[2177,41361]},{"type":"Point","coordinates":[2177,41361]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[2196,41375]},{"type":"Point","coordinates":[2172,41366]},{"type":"Point","coordinates":[1735,41169]},{"type":"Point","coordinates":[2173,41368]},{"type":"Point","coordinates":[74441,49798]},{"type":"Point","coordinates":[2236,41400]},{"type":"Point","coordinates":[2182,41378]},{"type":"Point","coordinates":[2179,41379]},{"type":"Point","coordinates":[2137,41360]},{"type":"Point","coordinates":[2171,41375]},{"type":"Point","coordinates":[2083,41336]},{"type":"Point","coordinates":[2181,41381]},{"type":"Point","coordinates":[2082,41337]},{"type":"Point","coordinates":[2083,41337]},{"type":"Point","coordinates":[2084,41337]},{"type":"Point","coordinates":[2083,41337]},{"type":"Point","coordinates":[2176,41380]},{"type":"Point","coordinates":[2083,41338]},{"type":"Point","coordinates":[2083,41338]},{"type":"Point","coordinates":[2083,41338]},{"type":"Point","coordinates":[2082,41337]},{"type":"Point","coordinates":[2083,41338]},{"type":"Point","coordinates":[2083,41338]},{"type":"Point","coordinates":[2083,41338]},{"type":"Point","coordinates":[2083,41338]},{"type":"Point","coordinates":[2083,41339]},{"type":"Point","coordinates":[74487,49800]},{"type":"Point","coordinates":[2181,41384]},{"type":"Point","coordinates":[2178,41384]},{"type":"Point","coordinates":[2164,41378]},{"type":"Point","coordinates":[2171,41381]},{"type":"Point","coordinates":[2081,41340]},{"type":"Point","coordinates":[2182,41387]},{"type":"Point","coordinates":[1533,41094]},{"type":"Point","coordinates":[2195,41396]},{"type":"Point","coordinates":[2195,41396]},{"type":"Point","coordinates":[2188,41395]},{"type":"Point","coordinates":[2188,41395]},{"type":"Point","coordinates":[2195,41398]},{"type":"Point","coordinates":[2077,41345]},{"type":"Point","coordinates":[2256,41426]},{"type":"Point","coordinates":[2251,41424]},{"type":"Point","coordinates":[2251,41425]},{"type":"Point","coordinates":[2188,41397]},{"type":"Point","coordinates":[7334,43593]},{"type":"Point","coordinates":[2199,41408]},{"type":"Point","coordinates":[2170,41395]},{"type":"Point","coordinates":[2137,41381]},{"type":"Point","coordinates":[2166,41394]},{"type":"Point","coordinates":[2211,41415]},{"type":"Point","coordinates":[2031,41334]},{"type":"Point","coordinates":[2235,41428]},{"type":"Point","coordinates":[2198,41411]},{"type":"Point","coordinates":[2123,41378]},{"type":"Point","coordinates":[72455,50224]},{"type":"Point","coordinates":[74482,49820]},{"type":"Point","coordinates":[2127,41381]},{"type":"Point","coordinates":[2230,41430]},{"type":"Point","coordinates":[74518,49817]},{"type":"Point","coordinates":[2176,41408]},{"type":"Point","coordinates":[2180,41410]},{"type":"Point","coordinates":[2176,41408]},{"type":"Point","coordinates":[2176,41408]},{"type":"Point","coordinates":[2177,41409]},{"type":"Point","coordinates":[2176,41409]},{"type":"Point","coordinates":[2175,41408]},{"type":"Point","coordinates":[2176,41409]},{"type":"Point","coordinates":[2176,41409]},{"type":"Point","coordinates":[2176,41409]},{"type":"Point","coordinates":[2177,41410]},{"type":"Point","coordinates":[2172,41408]},{"type":"Point","coordinates":[2177,41410]},{"type":"Point","coordinates":[2178,41413]},{"type":"Point","coordinates":[2168,41408]},{"type":"Point","coordinates":[2177,41412]},{"type":"Point","coordinates":[2177,41412]},{"type":"Point","coordinates":[2095,41376]},{"type":"Point","coordinates":[2271,41455]},{"type":"Point","coordinates":[2412,41520]},{"type":"Point","coordinates":[2136,41395]},{"type":"Point","coordinates":[2206,41429]},{"type":"Point","coordinates":[2179,41417]},{"type":"Point","coordinates":[2138,41399]},{"type":"Point","coordinates":[2200,41428]},{"type":"Point","coordinates":[2154,41407]},{"type":"Point","coordinates":[2170,41415]},{"type":"Point","coordinates":[2179,41419]},{"type":"Point","coordinates":[2229,41442]},{"type":"Point","coordinates":[2168,41415]},{"type":"Point","coordinates":[2144,41405]},{"type":"Point","coordinates":[2195,41428]},{"type":"Point","coordinates":[2195,41428]},{"type":"Point","coordinates":[2195,41428]},{"type":"Point","coordinates":[2178,41420]},{"type":"Point","coordinates":[2178,41421]},{"type":"Point","coordinates":[2178,41421]},{"type":"Point","coordinates":[2103,41387]},{"type":"Point","coordinates":[2103,41387]},{"type":"Point","coordinates":[2169,41417]},{"type":"Point","coordinates":[2178,41421]},{"type":"Point","coordinates":[2173,41419]},{"type":"Point","coordinates":[82009,48009]},{"type":"Point","coordinates":[2173,41419]},{"type":"Point","coordinates":[2178,41421]},{"type":"Point","coordinates":[2178,41421]},{"type":"Point","coordinates":[2178,41421]},{"type":"Point","coordinates":[2201,41432]},{"type":"Point","coordinates":[2145,41407]},{"type":"Point","coordinates":[2178,41422]},{"type":"Point","coordinates":[2179,41422]},{"type":"Point","coordinates":[2172,41419]},{"type":"Point","coordinates":[2178,41422]},{"type":"Point","coordinates":[2172,41420]},{"type":"Point","coordinates":[2172,41420]},{"type":"Point","coordinates":[2178,41423]},{"type":"Point","coordinates":[2171,41420]},{"type":"Point","coordinates":[2195,41431]},{"type":"Point","coordinates":[2235,41450]},{"type":"Point","coordinates":[2178,41425]},{"type":"Point","coordinates":[2167,41420]},{"type":"Point","coordinates":[2179,41426]},{"type":"Point","coordinates":[2179,41427]},{"type":"Point","coordinates":[2179,41427]},{"type":"Point","coordinates":[2210,41442]},{"type":"Point","coordinates":[2209,41441]},{"type":"Point","coordinates":[2178,41427]},{"type":"Point","coordinates":[2210,41442]},{"type":"Point","coordinates":[2166,41422]},{"type":"Point","coordinates":[2160,41419]},{"type":"Point","coordinates":[2178,41427]},{"type":"Point","coordinates":[2063,41376]},{"type":"Point","coordinates":[2063,41376]},{"type":"Point","coordinates":[2175,41427]},{"type":"Point","coordinates":[2187,41434]},{"type":"Point","coordinates":[2178,41430]},{"type":"Point","coordinates":[2211,41445]},{"type":"Point","coordinates":[2165,41424]},{"type":"Point","coordinates":[2178,41432]},{"type":"Point","coordinates":[2161,41424]},{"type":"Point","coordinates":[2178,41432]},{"type":"Point","coordinates":[2162,41425]},{"type":"Point","coordinates":[2179,41433]},{"type":"Point","coordinates":[2179,41433]},{"type":"Point","coordinates":[2179,41433]},{"type":"Point","coordinates":[2213,41449]},{"type":"Point","coordinates":[2179,41433]},{"type":"Point","coordinates":[2178,41433]},{"type":"Point","coordinates":[2036,41368]},{"type":"Point","coordinates":[2178,41434]},{"type":"Point","coordinates":[2148,41420]},{"type":"Point","coordinates":[2176,41433]},{"type":"Point","coordinates":[2181,41435]},{"type":"Point","coordinates":[2161,41426]},{"type":"Point","coordinates":[2157,41425]},{"type":"Point","coordinates":[2173,41433]},{"type":"Point","coordinates":[2214,41451]},{"type":"Point","coordinates":[2163,41428]},{"type":"Point","coordinates":[2213,41451]},{"type":"Point","coordinates":[2215,41452]},{"type":"Point","coordinates":[2156,41426]},{"type":"Point","coordinates":[2156,41426]},{"type":"Point","coordinates":[2180,41437]},{"type":"Point","coordinates":[2179,41438]},{"type":"Point","coordinates":[6658,43360]},{"type":"Point","coordinates":[2131,41417]},{"type":"Point","coordinates":[2173,41437]},{"type":"Point","coordinates":[2165,41433]},{"type":"Point","coordinates":[2190,41445]},{"type":"Point","coordinates":[2169,41436]},{"type":"Point","coordinates":[2118,41416]},{"type":"Point","coordinates":[2221,41463]},{"type":"Point","coordinates":[2185,41446]},{"type":"Point","coordinates":[2183,41446]},{"type":"Point","coordinates":[2182,41446]},{"type":"Point","coordinates":[2180,41445]},{"type":"Point","coordinates":[1631,41196]},{"type":"Point","coordinates":[2222,41464]},{"type":"Point","coordinates":[2181,41446]},{"type":"Point","coordinates":[2221,41465]},{"type":"Point","coordinates":[2181,41448]},{"type":"Point","coordinates":[2215,41463]},{"type":"Point","coordinates":[2028,41379]},{"type":"Point","coordinates":[2060,41394]},{"type":"Point","coordinates":[2018,41376]},{"type":"Point","coordinates":[1967,41353]},{"type":"Point","coordinates":[2157,41439]},{"type":"Point","coordinates":[2178,41449]},{"type":"Point","coordinates":[2189,41455]},{"type":"Point","coordinates":[1633,41206]},{"type":"Point","coordinates":[1702,41238]},{"type":"Point","coordinates":[2173,41457]},{"type":"Point","coordinates":[2097,41423]},{"type":"Point","coordinates":[2085,41418]},{"type":"Point","coordinates":[2226,41482]},{"type":"Point","coordinates":[2225,41482]},{"type":"Point","coordinates":[2097,41425]},{"type":"Point","coordinates":[2170,41463]},{"type":"Point","coordinates":[2226,41489]},{"type":"Point","coordinates":[1630,41219]},{"type":"Point","coordinates":[2171,41465]},{"type":"Point","coordinates":[1629,41220]},{"type":"Point","coordinates":[74531,49874]},{"type":"Point","coordinates":[74552,49872]},{"type":"Point","coordinates":[1618,41218]},{"type":"Point","coordinates":[2218,41490]},{"type":"Point","coordinates":[1756,41282]},{"type":"Point","coordinates":[2225,41496]},{"type":"Point","coordinates":[2225,41496]},{"type":"Point","coordinates":[2217,41493]},{"type":"Point","coordinates":[2507,41625]},{"type":"Point","coordinates":[2507,41625]},{"type":"Point","coordinates":[1664,41244]},{"type":"Point","coordinates":[2197,41486]},{"type":"Point","coordinates":[2197,41486]},{"type":"Point","coordinates":[2232,41503]},{"type":"Point","coordinates":[2197,41488]},{"type":"Point","coordinates":[2193,41486]},{"type":"Point","coordinates":[2197,41489]},{"type":"Point","coordinates":[64180,51564]},{"type":"Point","coordinates":[2197,41489]},{"type":"Point","coordinates":[2233,41506]},{"type":"Point","coordinates":[2196,41490]},{"type":"Point","coordinates":[1618,41227]},{"type":"Point","coordinates":[2197,41490]},{"type":"Point","coordinates":[2196,41490]},{"type":"Point","coordinates":[2193,41489]},{"type":"Point","coordinates":[2195,41490]},{"type":"Point","coordinates":[2192,41489]},{"type":"Point","coordinates":[74417,49911]},{"type":"Point","coordinates":[2207,41496]},{"type":"Point","coordinates":[2195,41491]},{"type":"Point","coordinates":[2189,41489]},{"type":"Point","coordinates":[2203,41495]},{"type":"Point","coordinates":[2086,41446]},{"type":"Point","coordinates":[1669,41262]},{"type":"Point","coordinates":[2171,41496]},{"type":"Point","coordinates":[2171,41497]},{"type":"Point","coordinates":[82392,47980]},{"type":"Point","coordinates":[74387,49935]},{"type":"Point","coordinates":[82414,47974]},{"type":"Point","coordinates":[2172,41498]},{"type":"Point","coordinates":[1670,41271]},{"type":"Point","coordinates":[84628,47330]},{"type":"Point","coordinates":[2170,41499]},{"type":"Point","coordinates":[2181,41504]},{"type":"Point","coordinates":[83402,47694]},{"type":"Point","coordinates":[2006,41429]},{"type":"Point","coordinates":[2160,41499]},{"type":"Point","coordinates":[2161,41499]},{"type":"Point","coordinates":[1603,41246]},{"type":"Point","coordinates":[1603,41247]},{"type":"Point","coordinates":[1706,41296]},{"type":"Point","coordinates":[64009,51611]},{"type":"Point","coordinates":[1649,41270]},{"type":"Point","coordinates":[1655,41276]},{"type":"Point","coordinates":[2222,41534]},{"type":"Point","coordinates":[1654,41276]},{"type":"Point","coordinates":[1616,41260]},{"type":"Point","coordinates":[1625,41264]},{"type":"Point","coordinates":[2165,41510]},{"type":"Point","coordinates":[6928,43547]},{"type":"Point","coordinates":[2173,41515]},{"type":"Point","coordinates":[2173,41516]},{"type":"Point","coordinates":[2173,41516]},{"type":"Point","coordinates":[74375,49957]},{"type":"Point","coordinates":[2235,41549]},{"type":"Point","coordinates":[82438,47990]},{"type":"Point","coordinates":[1608,41266]},{"type":"Point","coordinates":[6287,43295]},{"type":"Point","coordinates":[1622,41273]},{"type":"Point","coordinates":[2183,41529]},{"type":"Point","coordinates":[2170,41524]},{"type":"Point","coordinates":[1628,41281]},{"type":"Point","coordinates":[2210,41546]},{"type":"Point","coordinates":[1567,41257]},{"type":"Point","coordinates":[1660,41302]},{"type":"Point","coordinates":[1660,41303]},{"type":"Point","coordinates":[1565,41260]},{"type":"Point","coordinates":[2589,41726]},{"type":"Point","coordinates":[1570,41269]},{"type":"Point","coordinates":[1616,41295]},{"type":"Point","coordinates":[79217,48875]},{"type":"Point","coordinates":[1615,41298]},{"type":"Point","coordinates":[2147,41539]},{"type":"Point","coordinates":[6768,43520]},{"type":"Point","coordinates":[2070,41512]},{"type":"Point","coordinates":[6488,43424]},{"type":"Point","coordinates":[1612,41325]},{"type":"Point","coordinates":[6490,43435]},{"type":"Point","coordinates":[1634,41336]},{"type":"Point","coordinates":[1637,41341]},{"type":"Point","coordinates":[1642,41343]},{"type":"Point","coordinates":[1634,41340]},{"type":"Point","coordinates":[74671,49960]},{"type":"Point","coordinates":[1638,41344]},{"type":"Point","coordinates":[1642,41346]},{"type":"Point","coordinates":[1635,41343]},{"type":"Point","coordinates":[87980,46351]},{"type":"Point","coordinates":[1638,41345]},{"type":"Point","coordinates":[1540,41301]},{"type":"Point","coordinates":[87973,46354]},{"type":"Point","coordinates":[2146,41577]},{"type":"Point","coordinates":[1631,41343]},{"type":"Point","coordinates":[1635,41346]},{"type":"Point","coordinates":[1541,41303]},{"type":"Point","coordinates":[1638,41347]},{"type":"Point","coordinates":[1632,41345]},{"type":"Point","coordinates":[1541,41304]},{"type":"Point","coordinates":[1544,41306]},{"type":"Point","coordinates":[6482,43443]},{"type":"Point","coordinates":[1622,41342]},{"type":"Point","coordinates":[6485,43446]},{"type":"Point","coordinates":[6486,43446]},{"type":"Point","coordinates":[1635,41349]},{"type":"Point","coordinates":[64032,51692]},{"type":"Point","coordinates":[1553,41313]},{"type":"Point","coordinates":[1600,41334]},{"type":"Point","coordinates":[6484,43447]},{"type":"Point","coordinates":[1540,41307]},{"type":"Point","coordinates":[1613,41340]},{"type":"Point","coordinates":[1613,41340]},{"type":"Point","coordinates":[6485,43447]},{"type":"Point","coordinates":[1541,41308]},{"type":"Point","coordinates":[1540,41309]},{"type":"Point","coordinates":[74668,49971]},{"type":"Point","coordinates":[6486,43450]},{"type":"Point","coordinates":[6487,43451]},{"type":"Point","coordinates":[2176,41599]},{"type":"Point","coordinates":[1619,41347]},{"type":"Point","coordinates":[1541,41311]},{"type":"Point","coordinates":[1983,41512]},{"type":"Point","coordinates":[1664,41368]},{"type":"Point","coordinates":[1541,41313]},{"type":"Point","coordinates":[1663,41368]},{"type":"Point","coordinates":[6480,43450]},{"type":"Point","coordinates":[6480,43450]},{"type":"Point","coordinates":[6480,43450]},{"type":"Point","coordinates":[6486,43453]},{"type":"Point","coordinates":[1662,41368]},{"type":"Point","coordinates":[1541,41313]},{"type":"Point","coordinates":[6487,43454]},{"type":"Point","coordinates":[1659,41368]},{"type":"Point","coordinates":[1601,41342]},{"type":"Point","coordinates":[1601,41342]},{"type":"Point","coordinates":[1607,41345]},{"type":"Point","coordinates":[6483,43454]},{"type":"Point","coordinates":[1604,41344]},{"type":"Point","coordinates":[1584,41335]},{"type":"Point","coordinates":[1619,41351]},{"type":"Point","coordinates":[1602,41344]},{"type":"Point","coordinates":[1542,41317]},{"type":"Point","coordinates":[1602,41344]},{"type":"Point","coordinates":[1602,41344]},{"type":"Point","coordinates":[6486,43457]},{"type":"Point","coordinates":[2015,41533]},{"type":"Point","coordinates":[1658,41371]},{"type":"Point","coordinates":[1657,41372]},{"type":"Point","coordinates":[1618,41354]},{"type":"Point","coordinates":[6487,43459]},{"type":"Point","coordinates":[6486,43459]},{"type":"Point","coordinates":[1662,41374]},{"type":"Point","coordinates":[6486,43459]},{"type":"Point","coordinates":[1614,41353]},{"type":"Point","coordinates":[6486,43459]},{"type":"Point","coordinates":[1544,41321]},{"type":"Point","coordinates":[6487,43460]},{"type":"Point","coordinates":[1613,41354]},{"type":"Point","coordinates":[1543,41322]},{"type":"Point","coordinates":[1543,41322]},{"type":"Point","coordinates":[6486,43462]},{"type":"Point","coordinates":[1543,41322]},{"type":"Point","coordinates":[1551,41326]},{"type":"Point","coordinates":[1543,41323]},{"type":"Point","coordinates":[1543,41323]},{"type":"Point","coordinates":[6480,43460]},{"type":"Point","coordinates":[74441,50031]},{"type":"Point","coordinates":[1546,41326]},{"type":"Point","coordinates":[1615,41359]},{"type":"Point","coordinates":[63312,51791]},{"type":"Point","coordinates":[7503,43878]},{"type":"Point","coordinates":[6483,43467]},{"type":"Point","coordinates":[6466,43464]},{"type":"Point","coordinates":[7499,43882]},{"type":"Point","coordinates":[1734,41423]},{"type":"Point","coordinates":[6418,43449]},{"type":"Point","coordinates":[6483,43476]},{"type":"Point","coordinates":[2240,41660]},{"type":"Point","coordinates":[1634,41390]},{"type":"Point","coordinates":[6481,43489]},{"type":"Point","coordinates":[2270,41683]},{"type":"Point","coordinates":[7548,43922]},{"type":"Point","coordinates":[1532,41351]},{"type":"Point","coordinates":[1626,41395]},{"type":"Point","coordinates":[1628,41397]},{"type":"Point","coordinates":[1628,41397]},{"type":"Point","coordinates":[1628,41398]},{"type":"Point","coordinates":[1625,41397]},{"type":"Point","coordinates":[1625,41398]},{"type":"Point","coordinates":[1628,41401]},{"type":"Point","coordinates":[1628,41401]},{"type":"Point","coordinates":[6408,43469]},{"type":"Point","coordinates":[1627,41400]},{"type":"Point","coordinates":[1627,41400]},{"type":"Point","coordinates":[6970,43700]},{"type":"Point","coordinates":[74495,50060]},{"type":"Point","coordinates":[2228,41678]},{"type":"Point","coordinates":[2167,41655]},{"type":"Point","coordinates":[1634,41414]},{"type":"Point","coordinates":[1599,41401]},{"type":"Point","coordinates":[2187,41669]},{"type":"Point","coordinates":[6489,43521]},{"type":"Point","coordinates":[1701,41456]},{"type":"Point","coordinates":[1597,41410]},{"type":"Point","coordinates":[2186,41678]},{"type":"Point","coordinates":[2186,41679]},{"type":"Point","coordinates":[6411,43495]},{"type":"Point","coordinates":[2244,41705]},{"type":"Point","coordinates":[6410,43496]},{"type":"Point","coordinates":[6412,43496]},{"type":"Point","coordinates":[6411,43496]},{"type":"Point","coordinates":[6411,43497]},{"type":"Point","coordinates":[6411,43497]},{"type":"Point","coordinates":[1599,41415]},{"type":"Point","coordinates":[6411,43497]},{"type":"Point","coordinates":[1598,41415]},{"type":"Point","coordinates":[6411,43499]},{"type":"Point","coordinates":[1597,41417]},{"type":"Point","coordinates":[6418,43504]},{"type":"Point","coordinates":[6413,43505]},{"type":"Point","coordinates":[6412,43505]},{"type":"Point","coordinates":[1637,41440]},{"type":"Point","coordinates":[63647,51822]},{"type":"Point","coordinates":[1636,41441]},{"type":"Point","coordinates":[1636,41441]},{"type":"Point","coordinates":[6874,43695]},{"type":"Point","coordinates":[1636,41442]},{"type":"Point","coordinates":[1636,41442]},{"type":"Point","coordinates":[1636,41442]},{"type":"Point","coordinates":[7341,43885]},{"type":"Point","coordinates":[2321,41757]},{"type":"Point","coordinates":[48769,52498]},{"type":"Point","coordinates":[6868,43703]},{"type":"Point","coordinates":[1662,41466]},{"type":"Point","coordinates":[1575,41428]},{"type":"Point","coordinates":[48756,52508]},{"type":"Point","coordinates":[6832,43701]},{"type":"Point","coordinates":[6413,43531]},{"type":"Point","coordinates":[73298,50359]},{"type":"Point","coordinates":[6987,43768]},{"type":"Point","coordinates":[1562,41436]},{"type":"Point","coordinates":[6922,43748]},{"type":"Point","coordinates":[73304,50374]},{"type":"Point","coordinates":[6531,43596]},{"type":"Point","coordinates":[73292,50378]},{"type":"Point","coordinates":[1553,41448]},{"type":"Point","coordinates":[1552,41448]},{"type":"Point","coordinates":[1521,41434]},{"type":"Point","coordinates":[1643,41491]},{"type":"Point","coordinates":[1619,41487]},{"type":"Point","coordinates":[73307,50386]},{"type":"Point","coordinates":[2229,41764]},{"type":"Point","coordinates":[1552,41460]},{"type":"Point","coordinates":[1537,41455]},{"type":"Point","coordinates":[1617,41495]},{"type":"Point","coordinates":[1524,41454]},{"type":"Point","coordinates":[7550,44032]},{"type":"Point","coordinates":[1636,41508]},{"type":"Point","coordinates":[1561,41476]},{"type":"Point","coordinates":[1566,41481]},{"type":"Point","coordinates":[1566,41482]},{"type":"Point","coordinates":[2221,41782]},{"type":"Point","coordinates":[7538,44041]},{"type":"Point","coordinates":[1574,41503]},{"type":"Point","coordinates":[1617,41529]},{"type":"Point","coordinates":[73309,50429]},{"type":"Point","coordinates":[73309,50430]},{"type":"Point","coordinates":[1519,41490]},{"type":"Point","coordinates":[2250,41822]},{"type":"Point","coordinates":[1669,41561]},{"type":"Point","coordinates":[1568,41516]},{"type":"Point","coordinates":[1669,41564]},{"type":"Point","coordinates":[73275,50447]},{"type":"Point","coordinates":[1672,41568]},{"type":"Point","coordinates":[1518,41501]},{"type":"Point","coordinates":[80612,48761]},{"type":"Point","coordinates":[80611,48761]},{"type":"Point","coordinates":[80611,48761]},{"type":"Point","coordinates":[80612,48762]},{"type":"Point","coordinates":[80612,48762]},{"type":"Point","coordinates":[80611,48762]},{"type":"Point","coordinates":[63969,51901]},{"type":"Point","coordinates":[80611,48763]},{"type":"Point","coordinates":[80610,48769]},{"type":"Point","coordinates":[80610,48769]},{"type":"Point","coordinates":[1658,41577]},{"type":"Point","coordinates":[1657,41577]},{"type":"Point","coordinates":[1657,41577]},{"type":"Point","coordinates":[1658,41578]},{"type":"Point","coordinates":[6741,43767]},{"type":"Point","coordinates":[73313,50457]},{"type":"Point","coordinates":[2243,41845]},{"type":"Point","coordinates":[73313,50458]},{"type":"Point","coordinates":[73313,50458]},{"type":"Point","coordinates":[73313,50458]},{"type":"Point","coordinates":[73313,50458]},{"type":"Point","coordinates":[73313,50458]},{"type":"Point","coordinates":[6740,43769]},{"type":"Point","coordinates":[73310,50459]},{"type":"Point","coordinates":[73313,50459]},{"type":"Point","coordinates":[73316,50459]},{"type":"Point","coordinates":[73317,50460]},{"type":"Point","coordinates":[73313,50463]},{"type":"Point","coordinates":[64016,51912]},{"type":"Point","coordinates":[64015,51913]},{"type":"Point","coordinates":[2315,41886]},{"type":"Point","coordinates":[2531,41983]},{"type":"Point","coordinates":[1649,41586]},{"type":"Point","coordinates":[73321,50468]},{"type":"Point","coordinates":[1720,41621]},{"type":"Point","coordinates":[64013,51919]},{"type":"Point","coordinates":[64013,51919]},{"type":"Point","coordinates":[1739,41632]},{"type":"Point","coordinates":[1739,41632]},{"type":"Point","coordinates":[64013,51922]},{"type":"Point","coordinates":[2322,41898]},{"type":"Point","coordinates":[64010,51925]},{"type":"Point","coordinates":[2326,41906]},{"type":"Point","coordinates":[1736,41640]},{"type":"Point","coordinates":[1737,41640]},{"type":"Point","coordinates":[1736,41641]},{"type":"Point","coordinates":[64011,51932]},{"type":"Point","coordinates":[1743,41649]},{"type":"Point","coordinates":[64008,51942]},{"type":"Point","coordinates":[63551,51996]},{"type":"Point","coordinates":[1600,41593]},{"type":"Point","coordinates":[7649,44174]},{"type":"Point","coordinates":[1620,41617]},{"type":"Point","coordinates":[6852,43871]},{"type":"Point","coordinates":[63489,52030]},{"type":"Point","coordinates":[63997,51978]},{"type":"Point","coordinates":[1628,41646]},{"type":"Point","coordinates":[1634,41661]},{"type":"Point","coordinates":[1601,41648]},{"type":"Point","coordinates":[1631,41662]},{"type":"Point","coordinates":[1591,41644]},{"type":"Point","coordinates":[1592,41645]},{"type":"Point","coordinates":[1591,41649]},{"type":"Point","coordinates":[1622,41664]},{"type":"Point","coordinates":[1611,41666]},{"type":"Point","coordinates":[2264,41978]},{"type":"Point","coordinates":[6656,43861]},{"type":"Point","coordinates":[2146,41934]},{"type":"Point","coordinates":[2184,41959]},{"type":"Point","coordinates":[1547,41671]},{"type":"Point","coordinates":[82314,48460]},{"type":"Point","coordinates":[2083,41927]},{"type":"Point","coordinates":[63877,52071]},{"type":"Point","coordinates":[1675,41745]},{"type":"Point","coordinates":[1677,41749]},{"type":"Point","coordinates":[82318,48466]},{"type":"Point","coordinates":[2881,42295]},{"type":"Point","coordinates":[1667,41756]},{"type":"Point","coordinates":[1344,41629]},{"type":"Point","coordinates":[63788,52117]},{"type":"Point","coordinates":[64029,52090]},{"type":"Point","coordinates":[1500,41702]},{"type":"Point","coordinates":[1628,41771]},{"type":"Point","coordinates":[2329,42092]},{"type":"Point","coordinates":[2330,42093]},{"type":"Point","coordinates":[2327,42092]},{"type":"Point","coordinates":[2317,42090]},{"type":"Point","coordinates":[2324,42094]},{"type":"Point","coordinates":[2298,42084]},{"type":"Point","coordinates":[2622,42230]},{"type":"Point","coordinates":[63313,52192]},{"type":"Point","coordinates":[1629,41785]},{"type":"Point","coordinates":[1629,41786]},{"type":"Point","coordinates":[7606,44334]},{"type":"Point","coordinates":[2300,42092]},{"type":"Point","coordinates":[2302,42095]},{"type":"Point","coordinates":[63767,52150]},{"type":"Point","coordinates":[10552,45467]},{"type":"Point","coordinates":[2622,42241]},{"type":"Point","coordinates":[2291,42106]},{"type":"Point","coordinates":[7790,44429]},{"type":"Point","coordinates":[7791,44429]},{"type":"Point","coordinates":[7790,44431]},{"type":"Point","coordinates":[2304,42123]},{"type":"Point","coordinates":[7788,44441]},{"type":"Point","coordinates":[1609,41816]},{"type":"Point","coordinates":[1586,41807]},{"type":"Point","coordinates":[81715,48730]},{"type":"Point","coordinates":[2664,42298]},{"type":"Point","coordinates":[2664,42299]},{"type":"Point","coordinates":[63964,52172]},{"type":"Point","coordinates":[63432,52243]},{"type":"Point","coordinates":[2121,42073]},{"type":"Point","coordinates":[2372,42198]},{"type":"Point","coordinates":[73451,50720]},{"type":"Point","coordinates":[1495,41806]},{"type":"Point","coordinates":[1512,41819]},{"type":"Point","coordinates":[1504,41821]},{"type":"Point","coordinates":[1520,41831]},{"type":"Point","coordinates":[1504,41824]},{"type":"Point","coordinates":[1505,41826]},{"type":"Point","coordinates":[1506,41826]},{"type":"Point","coordinates":[1506,41827]},{"type":"Point","coordinates":[1505,41827]},{"type":"Point","coordinates":[1506,41831]},{"type":"Point","coordinates":[1508,41832]},{"type":"Point","coordinates":[7829,44522]},{"type":"Point","coordinates":[2798,42429]},{"type":"Point","coordinates":[88137,46852]},{"type":"Point","coordinates":[48636,52952]},{"type":"Point","coordinates":[1442,41842]},{"type":"Point","coordinates":[7838,44569]},{"type":"Point","coordinates":[7817,44568]},{"type":"Point","coordinates":[64073,52262]},{"type":"Point","coordinates":[7073,44279]},{"type":"Point","coordinates":[7851,44589]},{"type":"Point","coordinates":[1525,41900]},{"type":"Point","coordinates":[63704,52315]},{"type":"Point","coordinates":[1487,41896]},{"type":"Point","coordinates":[64077,52282]},{"type":"Point","coordinates":[1523,41916]},{"type":"Point","coordinates":[1497,41906]},{"type":"Point","coordinates":[1507,41911]},{"type":"Point","coordinates":[1505,41912]},{"type":"Point","coordinates":[1505,41912]},{"type":"Point","coordinates":[1464,41895]},{"type":"Point","coordinates":[1609,41968]},{"type":"Point","coordinates":[1494,41932]},{"type":"Point","coordinates":[1594,41980]},{"type":"Point","coordinates":[1591,41979]},{"type":"Point","coordinates":[1594,41981]},{"type":"Point","coordinates":[1594,41981]},{"type":"Point","coordinates":[1569,41970]},{"type":"Point","coordinates":[1591,41980]},{"type":"Point","coordinates":[1592,41985]},{"type":"Point","coordinates":[24693,49944]},{"type":"Point","coordinates":[1588,41986]},{"type":"Point","coordinates":[2358,42336]},{"type":"Point","coordinates":[1446,41926]},{"type":"Point","coordinates":[1299,41861]},{"type":"Point","coordinates":[1477,41943]},{"type":"Point","coordinates":[70809,51356]},{"type":"Point","coordinates":[65624,52152]},{"type":"Point","coordinates":[65113,52224]},{"type":"Point","coordinates":[1921,42176]},{"type":"Point","coordinates":[86151,47636]},{"type":"Point","coordinates":[64087,52366]},{"type":"Point","coordinates":[7818,44687]},{"type":"Point","coordinates":[7917,44726]},{"type":"Point","coordinates":[1625,42063]},{"type":"Point","coordinates":[1625,42063]},{"type":"Point","coordinates":[64089,52378]},{"type":"Point","coordinates":[79640,49517]},{"type":"Point","coordinates":[2054,42265]},{"type":"Point","coordinates":[1461,41998]},{"type":"Point","coordinates":[1410,41984]},{"type":"Point","coordinates":[1412,41988]},{"type":"Point","coordinates":[1409,41986]},{"type":"Point","coordinates":[1409,41987]},{"type":"Point","coordinates":[1905,42217]},{"type":"Point","coordinates":[1416,41995]},{"type":"Point","coordinates":[1416,41995]},{"type":"Point","coordinates":[1413,41994]},{"type":"Point","coordinates":[1414,41995]},{"type":"Point","coordinates":[64430,52366]},{"type":"Point","coordinates":[3280,42835]},{"type":"Point","coordinates":[1412,41999]},{"type":"Point","coordinates":[1470,42026]},{"type":"Point","coordinates":[1412,41999]},{"type":"Point","coordinates":[1412,41999]},{"type":"Point","coordinates":[1412,41999]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1410,41999]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1413,42000]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1411,42000]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1411,41999]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1411,41999]},{"type":"Point","coordinates":[1411,42000]},{"type":"Point","coordinates":[1411,41999]},{"type":"Point","coordinates":[1410,41999]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1414,42001]},{"type":"Point","coordinates":[1411,42000]},{"type":"Point","coordinates":[1414,42002]},{"type":"Point","coordinates":[1407,41999]},{"type":"Point","coordinates":[1416,42004]},{"type":"Point","coordinates":[1416,42004]},{"type":"Point","coordinates":[1411,42002]},{"type":"Point","coordinates":[73396,50965]},{"type":"Point","coordinates":[1639,42117]},{"type":"Point","coordinates":[1445,42031]},{"type":"Point","coordinates":[82425,48813]},{"type":"Point","coordinates":[82425,48814]},{"type":"Point","coordinates":[1719,42159]},{"type":"Point","coordinates":[1437,42033]},{"type":"Point","coordinates":[1444,42037]},{"type":"Point","coordinates":[63622,52486]},{"type":"Point","coordinates":[1474,42057]},{"type":"Point","coordinates":[1474,42058]},{"type":"Point","coordinates":[1472,42058]},{"type":"Point","coordinates":[1472,42058]},{"type":"Point","coordinates":[1472,42059]},{"type":"Point","coordinates":[1471,42059]},{"type":"Point","coordinates":[63622,52496]},{"type":"Point","coordinates":[2383,42475]},{"type":"Point","coordinates":[1470,42063]},{"type":"Point","coordinates":[63623,52499]},{"type":"Point","coordinates":[1465,42062]},{"type":"Point","coordinates":[63622,52500]},{"type":"Point","coordinates":[63622,52501]},{"type":"Point","coordinates":[63623,52501]},{"type":"Point","coordinates":[1468,42065]},{"type":"Point","coordinates":[1467,42065]},{"type":"Point","coordinates":[1394,42032]},{"type":"Point","coordinates":[63622,52504]},{"type":"Point","coordinates":[63622,52504]},{"type":"Point","coordinates":[63629,52504]},{"type":"Point","coordinates":[1463,42067]},{"type":"Point","coordinates":[63622,52505]},{"type":"Point","coordinates":[73382,51003]},{"type":"Point","coordinates":[1476,42077]},{"type":"Point","coordinates":[63622,52510]},{"type":"Point","coordinates":[1669,42170]},{"type":"Point","coordinates":[73504,50987]},{"type":"Point","coordinates":[73504,50987]},{"type":"Point","coordinates":[73504,50987]},{"type":"Point","coordinates":[1456,42076]},{"type":"Point","coordinates":[1732,42208]},{"type":"Point","coordinates":[1756,42222]},{"type":"Point","coordinates":[1440,42087]},{"type":"Point","coordinates":[2369,42512]},{"type":"Point","coordinates":[63689,52532]},{"type":"Point","coordinates":[1396,42073]},{"type":"Point","coordinates":[1868,42288]},{"type":"Point","coordinates":[3316,42935]},{"type":"Point","coordinates":[3222,42895]},{"type":"Point","coordinates":[73367,51045]},{"type":"Point","coordinates":[1421,42089]},{"type":"Point","coordinates":[1724,42235]},{"type":"Point","coordinates":[1715,42232]},{"type":"Point","coordinates":[1741,42249]},{"type":"Point","coordinates":[1804,42278]},{"type":"Point","coordinates":[1394,42094]},{"type":"Point","coordinates":[86034,47827]},{"type":"Point","coordinates":[1730,42251]},{"type":"Point","coordinates":[63684,52561]},{"type":"Point","coordinates":[2239,42486]},{"type":"Point","coordinates":[2239,42487]},{"type":"Point","coordinates":[2238,42488]},{"type":"Point","coordinates":[1726,42259]},{"type":"Point","coordinates":[1762,42276]},{"type":"Point","coordinates":[1396,42115]},{"type":"Point","coordinates":[3378,43003]},{"type":"Point","coordinates":[1400,42118]},{"type":"Point","coordinates":[73468,51066]},{"type":"Point","coordinates":[1733,42275]},{"type":"Point","coordinates":[2160,42470]},{"type":"Point","coordinates":[1420,42139]},{"type":"Point","coordinates":[88170,47166]},{"type":"Point","coordinates":[1723,42280]},{"type":"Point","coordinates":[1397,42136]},{"type":"Point","coordinates":[1819,42330]},{"type":"Point","coordinates":[1735,42297]},{"type":"Point","coordinates":[1713,42288]},{"type":"Point","coordinates":[1400,42147]},{"type":"Point","coordinates":[8062,44976]},{"type":"Point","coordinates":[1716,42293]},{"type":"Point","coordinates":[1388,42146]},{"type":"Point","coordinates":[63635,52613]},{"type":"Point","coordinates":[86105,47858]},{"type":"Point","coordinates":[1725,42302]},{"type":"Point","coordinates":[1766,42321]},{"type":"Point","coordinates":[72225,51343]},{"type":"Point","coordinates":[1389,42160]},{"type":"Point","coordinates":[1702,42304]},{"type":"Point","coordinates":[1380,42157]},{"type":"Point","coordinates":[3390,43059]},{"type":"Point","coordinates":[2302,42578]},{"type":"Point","coordinates":[1374,42159]},{"type":"Point","coordinates":[2397,42626]},{"type":"Point","coordinates":[2397,42626]},{"type":"Point","coordinates":[47963,53283]},{"type":"Point","coordinates":[2286,42581]},{"type":"Point","coordinates":[6619,44440]},{"type":"Point","coordinates":[1776,42363]},{"type":"Point","coordinates":[53875,53313]},{"type":"Point","coordinates":[73437,51150]},{"type":"Point","coordinates":[63557,52671]},{"type":"Point","coordinates":[64499,52566]},{"type":"Point","coordinates":[1409,42210]},{"type":"Point","coordinates":[3158,42995]},{"type":"Point","coordinates":[86275,47867]},{"type":"Point","coordinates":[64503,52578]},{"type":"Point","coordinates":[6699,44503]},{"type":"Point","coordinates":[2302,42630]},{"type":"Point","coordinates":[1716,42367]},{"type":"Point","coordinates":[1733,42379]},{"type":"Point","coordinates":[1369,42216]},{"type":"Point","coordinates":[1716,42376]},{"type":"Point","coordinates":[1749,42392]},{"type":"Point","coordinates":[1749,42392]},{"type":"Point","coordinates":[1749,42392]},{"type":"Point","coordinates":[1716,42378]},{"type":"Point","coordinates":[1717,42379]},{"type":"Point","coordinates":[1855,42442]},{"type":"Point","coordinates":[2449,42709]},{"type":"Point","coordinates":[1715,42380]},{"type":"Point","coordinates":[1366,42223]},{"type":"Point","coordinates":[3140,43021]},{"type":"Point","coordinates":[1360,42224]},{"type":"Point","coordinates":[1649,42357]},{"type":"Point","coordinates":[1719,42389]},{"type":"Point","coordinates":[1362,42227]},{"type":"Point","coordinates":[82385,49059]},{"type":"Point","coordinates":[1846,42454]},{"type":"Point","coordinates":[1363,42235]},{"type":"Point","coordinates":[71595,51548]},{"type":"Point","coordinates":[1365,42239]},{"type":"Point","coordinates":[1363,42239]},{"type":"Point","coordinates":[1751,42416]},{"type":"Point","coordinates":[1363,42240]},{"type":"Point","coordinates":[6691,44543]},{"type":"Point","coordinates":[86211,47937]},{"type":"Point","coordinates":[1760,42432]},{"type":"Point","coordinates":[1776,42441]},{"type":"Point","coordinates":[1750,42430]},{"type":"Point","coordinates":[82375,49081]},{"type":"Point","coordinates":[6697,44554]},{"type":"Point","coordinates":[6697,44554]},{"type":"Point","coordinates":[6697,44554]},{"type":"Point","coordinates":[79292,49904]},{"type":"Point","coordinates":[1790,42452]},{"type":"Point","coordinates":[6705,44561]},{"type":"Point","coordinates":[1789,42454]},{"type":"Point","coordinates":[63483,52753]},{"type":"Point","coordinates":[6705,44565]},{"type":"Point","coordinates":[6705,44565]},{"type":"Point","coordinates":[6705,44565]},{"type":"Point","coordinates":[6714,44572]},{"type":"Point","coordinates":[6713,44572]},{"type":"Point","coordinates":[1413,42292]},{"type":"Point","coordinates":[6714,44575]},{"type":"Point","coordinates":[6711,44576]},{"type":"Point","coordinates":[6714,44577]},{"type":"Point","coordinates":[1374,42276]},{"type":"Point","coordinates":[6712,44577]},{"type":"Point","coordinates":[6711,44583]},{"type":"Point","coordinates":[1745,42453]},{"type":"Point","coordinates":[6704,44583]},{"type":"Point","coordinates":[6701,44584]},{"type":"Point","coordinates":[6701,44584]},{"type":"Point","coordinates":[6700,44584]},{"type":"Point","coordinates":[6704,44586]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6710,44589]},{"type":"Point","coordinates":[6696,44584]},{"type":"Point","coordinates":[6700,44586]},{"type":"Point","coordinates":[1411,42309]},{"type":"Point","coordinates":[6697,44588]},{"type":"Point","coordinates":[1377,42296]},{"type":"Point","coordinates":[1376,42298]},{"type":"Point","coordinates":[6701,44593]},{"type":"Point","coordinates":[1573,42389]},{"type":"Point","coordinates":[1414,42319]},{"type":"Point","coordinates":[6701,44596]},{"type":"Point","coordinates":[6698,44595]},{"type":"Point","coordinates":[6694,44594]},{"type":"Point","coordinates":[6692,44595]},{"type":"Point","coordinates":[6700,44598]},{"type":"Point","coordinates":[1456,42341]},{"type":"Point","coordinates":[1377,42306]},{"type":"Point","coordinates":[1455,42342]},{"type":"Point","coordinates":[6702,44601]},{"type":"Point","coordinates":[6706,44603]},{"type":"Point","coordinates":[6692,44597]},{"type":"Point","coordinates":[1765,42484]},{"type":"Point","coordinates":[6701,44602]},{"type":"Point","coordinates":[6664,44589]},{"type":"Point","coordinates":[1926,42560]},{"type":"Point","coordinates":[64104,52724]},{"type":"Point","coordinates":[1453,42347]},{"type":"Point","coordinates":[1453,42347]},{"type":"Point","coordinates":[1456,42349]},{"type":"Point","coordinates":[6693,44604]},{"type":"Point","coordinates":[6694,44604]},{"type":"Point","coordinates":[6694,44604]},{"type":"Point","coordinates":[6697,44606]},{"type":"Point","coordinates":[6693,44604]},{"type":"Point","coordinates":[1451,42348]},{"type":"Point","coordinates":[6691,44605]},{"type":"Point","coordinates":[6698,44607]},{"type":"Point","coordinates":[6688,44603]},{"type":"Point","coordinates":[6697,44607]},{"type":"Point","coordinates":[6692,44605]},{"type":"Point","coordinates":[6706,44611]},{"type":"Point","coordinates":[3158,43113]},{"type":"Point","coordinates":[6696,44607]},{"type":"Point","coordinates":[6701,44609]},{"type":"Point","coordinates":[6706,44612]},{"type":"Point","coordinates":[1451,42349]},{"type":"Point","coordinates":[6704,44611]},{"type":"Point","coordinates":[6705,44611]},{"type":"Point","coordinates":[6704,44612]},{"type":"Point","coordinates":[6704,44612]},{"type":"Point","coordinates":[6707,44612]},{"type":"Point","coordinates":[6705,44612]},{"type":"Point","coordinates":[6705,44612]},{"type":"Point","coordinates":[6704,44612]},{"type":"Point","coordinates":[6705,44612]},{"type":"Point","coordinates":[6705,44612]},{"type":"Point","coordinates":[6704,44612]},{"type":"Point","coordinates":[6704,44612]},{"type":"Point","coordinates":[6704,44612]},{"type":"Point","coordinates":[6690,44607]},{"type":"Point","coordinates":[6704,44613]},{"type":"Point","coordinates":[6704,44613]},{"type":"Point","coordinates":[6691,44608]},{"type":"Point","coordinates":[6690,44607]},{"type":"Point","coordinates":[6704,44613]},{"type":"Point","coordinates":[6704,44613]},{"type":"Point","coordinates":[6690,44608]},{"type":"Point","coordinates":[1865,42540]},{"type":"Point","coordinates":[6689,44608]},{"type":"Point","coordinates":[6703,44614]},{"type":"Point","coordinates":[6693,44610]},{"type":"Point","coordinates":[3374,43213]},{"type":"Point","coordinates":[6690,44609]},{"type":"Point","coordinates":[1452,42356]},{"type":"Point","coordinates":[1452,42356]},{"type":"Point","coordinates":[1381,42323]},{"type":"Point","coordinates":[6686,44609]},{"type":"Point","coordinates":[63592,52792]},{"type":"Point","coordinates":[6689,44612]},{"type":"Point","coordinates":[6686,44610]},{"type":"Point","coordinates":[6684,44610]},{"type":"Point","coordinates":[6686,44611]},{"type":"Point","coordinates":[6687,44612]},{"type":"Point","coordinates":[6687,44612]},{"type":"Point","coordinates":[6685,44612]},{"type":"Point","coordinates":[6685,44613]},{"type":"Point","coordinates":[6685,44612]},{"type":"Point","coordinates":[6691,44615]},{"type":"Point","coordinates":[63966,52766]},{"type":"Point","coordinates":[63966,52766]},{"type":"Point","coordinates":[73528,51276]},{"type":"Point","coordinates":[8049,45171]},{"type":"Point","coordinates":[1787,42532]},{"type":"Point","coordinates":[6643,44625]},{"type":"Point","coordinates":[73101,51379]},{"type":"Point","coordinates":[1839,42581]},{"type":"Point","coordinates":[1838,42581]},{"type":"Point","coordinates":[1819,42578]},{"type":"Point","coordinates":[3127,43162]},{"type":"Point","coordinates":[1932,42631]},{"type":"Point","coordinates":[1802,42578]},{"type":"Point","coordinates":[1860,42605]},{"type":"Point","coordinates":[1860,42605]},{"type":"Point","coordinates":[1848,42605]},{"type":"Point","coordinates":[1863,42614]},{"type":"Point","coordinates":[1765,42569]},{"type":"Point","coordinates":[1467,42437]},{"type":"Point","coordinates":[1699,42545]},{"type":"Point","coordinates":[1825,42608]},{"type":"Point","coordinates":[1824,42608]},{"type":"Point","coordinates":[1803,42607]},{"type":"Point","coordinates":[82070,49317]},{"type":"Point","coordinates":[1516,42484]},{"type":"Point","coordinates":[1745,42589]},{"type":"Point","coordinates":[1963,42693]},{"type":"Point","coordinates":[1943,42686]},{"type":"Point","coordinates":[1963,42696]},{"type":"Point","coordinates":[1963,42697]},{"type":"Point","coordinates":[1960,42697]},{"type":"Point","coordinates":[1755,42605]},{"type":"Point","coordinates":[1914,42677]},{"type":"Point","coordinates":[1957,42698]},{"type":"Point","coordinates":[1963,42701]},{"type":"Point","coordinates":[8159,45310]},{"type":"Point","coordinates":[1961,42703]},{"type":"Point","coordinates":[1763,42614]},{"type":"Point","coordinates":[1961,42703]},{"type":"Point","coordinates":[1824,42642]},{"type":"Point","coordinates":[1763,42615]},{"type":"Point","coordinates":[1763,42616]},{"type":"Point","coordinates":[1761,42619]},{"type":"Point","coordinates":[1761,42619]},{"type":"Point","coordinates":[1761,42619]},{"type":"Point","coordinates":[1761,42619]},{"type":"Point","coordinates":[1838,42655]},{"type":"Point","coordinates":[1766,42626]},{"type":"Point","coordinates":[1948,42709]},{"type":"Point","coordinates":[1948,42709]},{"type":"Point","coordinates":[1764,42626]},{"type":"Point","coordinates":[1765,42626]},{"type":"Point","coordinates":[1702,42599]},{"type":"Point","coordinates":[1953,42713]},{"type":"Point","coordinates":[1951,42712]},{"type":"Point","coordinates":[65072,52752]},{"type":"Point","coordinates":[1700,42607]},{"type":"Point","coordinates":[1875,42687]},{"type":"Point","coordinates":[1486,42514]},{"type":"Point","coordinates":[1963,42731]},{"type":"Point","coordinates":[1960,42731]},{"type":"Point","coordinates":[1965,42734]},{"type":"Point","coordinates":[1962,42734]},{"type":"Point","coordinates":[1751,42640]},{"type":"Point","coordinates":[1919,42724]},{"type":"Point","coordinates":[1482,42528]},{"type":"Point","coordinates":[1758,42659]},{"type":"Point","coordinates":[8152,45364]},{"type":"Point","coordinates":[82274,49344]},{"type":"Point","coordinates":[1987,42781]},{"type":"Point","coordinates":[1773,42685]},{"type":"Point","coordinates":[2508,43017]},{"type":"Point","coordinates":[2508,43017]},{"type":"Point","coordinates":[1563,42592]},{"type":"Point","coordinates":[8107,45365]},{"type":"Point","coordinates":[1909,42758]},{"type":"Point","coordinates":[1802,42710]},{"type":"Point","coordinates":[1450,42551]},{"type":"Point","coordinates":[1665,42650]},{"type":"Point","coordinates":[1851,42740]},{"type":"Point","coordinates":[1850,42740]},{"type":"Point","coordinates":[1979,42801]},{"type":"Point","coordinates":[3242,43366]},{"type":"Point","coordinates":[1961,42796]},{"type":"Point","coordinates":[1852,42748]},{"type":"Point","coordinates":[2438,43012]},{"type":"Point","coordinates":[1637,42654]},{"type":"Point","coordinates":[1958,42800]},{"type":"Point","coordinates":[1958,42800]},{"type":"Point","coordinates":[1958,42800]},{"type":"Point","coordinates":[1530,42607]},{"type":"Point","coordinates":[1635,42655]},{"type":"Point","coordinates":[1634,42654]},{"type":"Point","coordinates":[1630,42653]},{"type":"Point","coordinates":[1630,42655]},{"type":"Point","coordinates":[1629,42656]},{"type":"Point","coordinates":[86017,48276]},{"type":"Point","coordinates":[63538,53010]},{"type":"Point","coordinates":[1928,42792]},{"type":"Point","coordinates":[2516,43056]},{"type":"Point","coordinates":[1975,42814]},{"type":"Point","coordinates":[2532,43065]},{"type":"Point","coordinates":[6940,44934]},{"type":"Point","coordinates":[1957,42812]},{"type":"Point","coordinates":[2520,43067]},{"type":"Point","coordinates":[1718,42707]},{"type":"Point","coordinates":[1730,42712]},{"type":"Point","coordinates":[1613,42660]},{"type":"Point","coordinates":[1718,42709]},{"type":"Point","coordinates":[1830,42760]},{"type":"Point","coordinates":[1718,42710]},{"type":"Point","coordinates":[1602,42658]},{"type":"Point","coordinates":[1602,42658]},{"type":"Point","coordinates":[2000,42839]},{"type":"Point","coordinates":[1601,42659]},{"type":"Point","coordinates":[1602,42660]},{"type":"Point","coordinates":[1719,42715]},{"type":"Point","coordinates":[1700,42708]},{"type":"Point","coordinates":[1708,42712]},{"type":"Point","coordinates":[1822,42763]},{"type":"Point","coordinates":[1718,42716]},{"type":"Point","coordinates":[1716,42716]},{"type":"Point","coordinates":[1695,42706]},{"type":"Point","coordinates":[1717,42716]},{"type":"Point","coordinates":[1634,42679]},{"type":"Point","coordinates":[1714,42717]},{"type":"Point","coordinates":[1714,42717]},{"type":"Point","coordinates":[1714,42717]},{"type":"Point","coordinates":[1719,42720]},{"type":"Point","coordinates":[1706,42715]},{"type":"Point","coordinates":[1720,42721]},{"type":"Point","coordinates":[1719,42721]},{"type":"Point","coordinates":[1718,42721]},{"type":"Point","coordinates":[1719,42722]},{"type":"Point","coordinates":[1718,42722]},{"type":"Point","coordinates":[1721,42724]},{"type":"Point","coordinates":[1722,42725]},{"type":"Point","coordinates":[1722,42725]},{"type":"Point","coordinates":[1722,42725]},{"type":"Point","coordinates":[1721,42725]},{"type":"Point","coordinates":[1721,42725]},{"type":"Point","coordinates":[1721,42725]},{"type":"Point","coordinates":[1722,42725]},{"type":"Point","coordinates":[1718,42724]},{"type":"Point","coordinates":[1582,42663]},{"type":"Point","coordinates":[8248,45475]},{"type":"Point","coordinates":[1716,42724]},{"type":"Point","coordinates":[1719,42726]},{"type":"Point","coordinates":[1696,42716]},{"type":"Point","coordinates":[1717,42726]},{"type":"Point","coordinates":[1723,42729]},{"type":"Point","coordinates":[1718,42726]},{"type":"Point","coordinates":[1716,42725]},{"type":"Point","coordinates":[1580,42665]},{"type":"Point","coordinates":[1713,42725]},{"type":"Point","coordinates":[1718,42727]},{"type":"Point","coordinates":[1713,42725]},{"type":"Point","coordinates":[80938,49779]},{"type":"Point","coordinates":[1712,42725]},{"type":"Point","coordinates":[1712,42725]},{"type":"Point","coordinates":[1716,42728]},{"type":"Point","coordinates":[2019,42864]},{"type":"Point","coordinates":[1451,42607]},{"type":"Point","coordinates":[1712,42726]},{"type":"Point","coordinates":[1712,42726]},{"type":"Point","coordinates":[1966,42841]},{"type":"Point","coordinates":[1712,42726]},{"type":"Point","coordinates":[1902,42812]},{"type":"Point","coordinates":[1712,42726]},{"type":"Point","coordinates":[1717,42729]},{"type":"Point","coordinates":[1977,42847]},{"type":"Point","coordinates":[1720,42731]},{"type":"Point","coordinates":[1711,42727]},{"type":"Point","coordinates":[1716,42730]},{"type":"Point","coordinates":[1716,42730]},{"type":"Point","coordinates":[1715,42730]},{"type":"Point","coordinates":[1716,42733]},{"type":"Point","coordinates":[1759,42753]},{"type":"Point","coordinates":[1723,42738]},{"type":"Point","coordinates":[1708,42732]},{"type":"Point","coordinates":[1658,42710]},{"type":"Point","coordinates":[1702,42730]},{"type":"Point","coordinates":[1665,42713]},{"type":"Point","coordinates":[1719,42739]},{"type":"Point","coordinates":[1571,42672]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1572,42673]},{"type":"Point","coordinates":[1571,42672]},{"type":"Point","coordinates":[1570,42673]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1570,42673]},{"type":"Point","coordinates":[1841,42796]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1584,42679]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1570,42673]},{"type":"Point","coordinates":[1598,42686]},{"type":"Point","coordinates":[1582,42679]},{"type":"Point","coordinates":[1573,42675]},{"type":"Point","coordinates":[1572,42675]},{"type":"Point","coordinates":[1663,42716]},{"type":"Point","coordinates":[1709,42737]},{"type":"Point","coordinates":[1572,42675]},{"type":"Point","coordinates":[1573,42675]},{"type":"Point","coordinates":[1572,42675]},{"type":"Point","coordinates":[1579,42678]},{"type":"Point","coordinates":[1582,42680]},{"type":"Point","coordinates":[1573,42676]},{"type":"Point","coordinates":[1584,42681]},{"type":"Point","coordinates":[1572,42675]},{"type":"Point","coordinates":[1574,42677]},{"type":"Point","coordinates":[1573,42676]},{"type":"Point","coordinates":[1582,42680]},{"type":"Point","coordinates":[1623,42699]},{"type":"Point","coordinates":[1597,42687]},{"type":"Point","coordinates":[1660,42716]},{"type":"Point","coordinates":[1579,42679]},{"type":"Point","coordinates":[1581,42680]},{"type":"Point","coordinates":[1578,42679]},{"type":"Point","coordinates":[1581,42680]},{"type":"Point","coordinates":[80335,49952]},{"type":"Point","coordinates":[1573,42676]},{"type":"Point","coordinates":[1574,42677]},{"type":"Point","coordinates":[1581,42680]},{"type":"Point","coordinates":[1594,42686]},{"type":"Point","coordinates":[1573,42676]},{"type":"Point","coordinates":[1575,42677]},{"type":"Point","coordinates":[1581,42680]},{"type":"Point","coordinates":[1575,42677]},{"type":"Point","coordinates":[1581,42680]},{"type":"Point","coordinates":[1658,42715]},{"type":"Point","coordinates":[1581,42680]},{"type":"Point","coordinates":[1572,42676]},{"type":"Point","coordinates":[1581,42680]},{"type":"Point","coordinates":[1575,42678]},{"type":"Point","coordinates":[1576,42678]},{"type":"Point","coordinates":[1578,42679]},{"type":"Point","coordinates":[1573,42677]},{"type":"Point","coordinates":[1576,42678]},{"type":"Point","coordinates":[1576,42678]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1589,42684]},{"type":"Point","coordinates":[1570,42676]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1575,42678]},{"type":"Point","coordinates":[1575,42678]},{"type":"Point","coordinates":[1578,42680]},{"type":"Point","coordinates":[1582,42681]},{"type":"Point","coordinates":[1574,42678]},{"type":"Point","coordinates":[1576,42678]},{"type":"Point","coordinates":[1623,42700]},{"type":"Point","coordinates":[1582,42681]},{"type":"Point","coordinates":[1582,42681]},{"type":"Point","coordinates":[1578,42680]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1582,42681]},{"type":"Point","coordinates":[1573,42677]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1575,42678]},{"type":"Point","coordinates":[1580,42681]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1574,42678]},{"type":"Point","coordinates":[1576,42679]},{"type":"Point","coordinates":[1574,42678]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1574,42678]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1580,42681]},{"type":"Point","coordinates":[1582,42682]},{"type":"Point","coordinates":[1588,42685]},{"type":"Point","coordinates":[1597,42689]},{"type":"Point","coordinates":[1580,42681]},{"type":"Point","coordinates":[1622,42700]},{"type":"Point","coordinates":[1580,42681]},{"type":"Point","coordinates":[1581,42682]},{"type":"Point","coordinates":[1579,42681]},{"type":"Point","coordinates":[1576,42680]},{"type":"Point","coordinates":[1600,42691]},{"type":"Point","coordinates":[1718,42745]},{"type":"Point","coordinates":[1585,42685]},{"type":"Point","coordinates":[1622,42701]},{"type":"Point","coordinates":[1608,42696]},{"type":"Point","coordinates":[1608,42696]},{"type":"Point","coordinates":[1727,42750]},{"type":"Point","coordinates":[1580,42684]},{"type":"Point","coordinates":[1661,42721]},{"type":"Point","coordinates":[1601,42694]},{"type":"Point","coordinates":[1727,42751]},{"type":"Point","coordinates":[1718,42748]},{"type":"Point","coordinates":[1613,42700]},{"type":"Point","coordinates":[1725,42752]},{"type":"Point","coordinates":[1671,42727]},{"type":"Point","coordinates":[1724,42751]},{"type":"Point","coordinates":[1668,42726]},{"type":"Point","coordinates":[1722,42751]},{"type":"Point","coordinates":[1724,42751]},{"type":"Point","coordinates":[1621,42706]},{"type":"Point","coordinates":[1725,42753]},{"type":"Point","coordinates":[1753,42766]},{"type":"Point","coordinates":[1621,42706]},{"type":"Point","coordinates":[1721,42752]},{"type":"Point","coordinates":[3009,43328]},{"type":"Point","coordinates":[1679,42734]},{"type":"Point","coordinates":[81003,49784]},{"type":"Point","coordinates":[1606,42702]},{"type":"Point","coordinates":[1674,42733]},{"type":"Point","coordinates":[80954,49799]},{"type":"Point","coordinates":[2375,43050]},{"type":"Point","coordinates":[1667,42732]},{"type":"Point","coordinates":[1719,42755]},{"type":"Point","coordinates":[1667,42732]},{"type":"Point","coordinates":[1705,42749]},{"type":"Point","coordinates":[1667,42732]},{"type":"Point","coordinates":[1615,42710]},{"type":"Point","coordinates":[1931,42854]},{"type":"Point","coordinates":[1696,42747]},{"type":"Point","coordinates":[1575,42693]},{"type":"Point","coordinates":[1618,42713]},{"type":"Point","coordinates":[1602,42706]},{"type":"Point","coordinates":[1712,42756]},{"type":"Point","coordinates":[1683,42743]},{"type":"Point","coordinates":[1758,42777]},{"type":"Point","coordinates":[1715,42759]},{"type":"Point","coordinates":[1698,42752]},{"type":"Point","coordinates":[1602,42708]},{"type":"Point","coordinates":[1678,42744]},{"type":"Point","coordinates":[1602,42709]},{"type":"Point","coordinates":[1608,42713]},{"type":"Point","coordinates":[1464,42648]},{"type":"Point","coordinates":[1671,42742]},{"type":"Point","coordinates":[1678,42746]},{"type":"Point","coordinates":[1614,42717]},{"type":"Point","coordinates":[1602,42711]},{"type":"Point","coordinates":[1672,42743]},{"type":"Point","coordinates":[1671,42743]},{"type":"Point","coordinates":[1596,42709]},{"type":"Point","coordinates":[1697,42755]},{"type":"Point","coordinates":[1606,42715]},{"type":"Point","coordinates":[1600,42712]},{"type":"Point","coordinates":[64182,53004]},{"type":"Point","coordinates":[6701,44904]},{"type":"Point","coordinates":[1691,42756]},{"type":"Point","coordinates":[6701,44905]},{"type":"Point","coordinates":[1696,42760]},{"type":"Point","coordinates":[1690,42757]},{"type":"Point","coordinates":[1671,42749]},{"type":"Point","coordinates":[1671,42749]},{"type":"Point","coordinates":[1670,42749]},{"type":"Point","coordinates":[1929,42866]},{"type":"Point","coordinates":[80958,49816]},{"type":"Point","coordinates":[1666,42748]},{"type":"Point","coordinates":[1671,42751]},{"type":"Point","coordinates":[1658,42745]},{"type":"Point","coordinates":[1670,42751]},{"type":"Point","coordinates":[1672,42752]},{"type":"Point","coordinates":[1631,42734]},{"type":"Point","coordinates":[1770,42797]},{"type":"Point","coordinates":[1672,42753]},{"type":"Point","coordinates":[1770,42797]},{"type":"Point","coordinates":[1770,42797]},{"type":"Point","coordinates":[1770,42798]},{"type":"Point","coordinates":[1770,42798]},{"type":"Point","coordinates":[1771,42798]},{"type":"Point","coordinates":[1668,42752]},{"type":"Point","coordinates":[1836,42828]},{"type":"Point","coordinates":[6685,44905]},{"type":"Point","coordinates":[1636,42738]},{"type":"Point","coordinates":[1594,42720]},{"type":"Point","coordinates":[1491,42674]},{"type":"Point","coordinates":[1915,42867]},{"type":"Point","coordinates":[1915,42867]},{"type":"Point","coordinates":[80963,49821]},{"type":"Point","coordinates":[1976,42894]},{"type":"Point","coordinates":[80958,49824]},{"type":"Point","coordinates":[64609,52968]},{"type":"Point","coordinates":[1791,42819]},{"type":"Point","coordinates":[6682,44916]},{"type":"Point","coordinates":[1958,42897]},{"type":"Point","coordinates":[1947,42893]},{"type":"Point","coordinates":[1926,42887]},{"type":"Point","coordinates":[1933,42890]},{"type":"Point","coordinates":[1610,42745]},{"type":"Point","coordinates":[1854,42855]},{"type":"Point","coordinates":[85831,48430]},{"type":"Point","coordinates":[1618,42749]},{"type":"Point","coordinates":[1931,42890]},{"type":"Point","coordinates":[1931,42890]},{"type":"Point","coordinates":[1562,42724]},{"type":"Point","coordinates":[1609,42747]},{"type":"Point","coordinates":[1579,42736]},{"type":"Point","coordinates":[1860,42863]},{"type":"Point","coordinates":[1917,42890]},{"type":"Point","coordinates":[1589,42744]},{"type":"Point","coordinates":[8209,45539]},{"type":"Point","coordinates":[1717,42805]},{"type":"Point","coordinates":[64100,53051]},{"type":"Point","coordinates":[1704,42800]},{"type":"Point","coordinates":[2998,43381]},{"type":"Point","coordinates":[2077,42973]},{"type":"Point","coordinates":[2090,42979]},{"type":"Point","coordinates":[2107,42987]},{"type":"Point","coordinates":[2076,42974]},{"type":"Point","coordinates":[2023,42952]},{"type":"Point","coordinates":[1949,42920]},{"type":"Point","coordinates":[2024,42954]},{"type":"Point","coordinates":[65139,52943]},{"type":"Point","coordinates":[80986,49857]},{"type":"Point","coordinates":[3075,43428]},{"type":"Point","coordinates":[1749,42837]},{"type":"Point","coordinates":[2069,42985]},{"type":"Point","coordinates":[1931,42926]},{"type":"Point","coordinates":[8214,45569]},{"type":"Point","coordinates":[8214,45571]},{"type":"Point","coordinates":[1590,42777]},{"type":"Point","coordinates":[8213,45574]},{"type":"Point","coordinates":[1457,42723]},{"type":"Point","coordinates":[1743,42853]},{"type":"Point","coordinates":[1627,42801]},{"type":"Point","coordinates":[3136,43475]},{"type":"Point","coordinates":[1662,42817]},{"type":"Point","coordinates":[1652,42813]},{"type":"Point","coordinates":[1669,42821]},{"type":"Point","coordinates":[1652,42813]},{"type":"Point","coordinates":[1753,42860]},{"type":"Point","coordinates":[1748,42858]},{"type":"Point","coordinates":[1748,42858]},{"type":"Point","coordinates":[1750,42860]},{"type":"Point","coordinates":[1622,42802]},{"type":"Point","coordinates":[1749,42860]},{"type":"Point","coordinates":[1664,42822]},{"type":"Point","coordinates":[1800,42884]},{"type":"Point","coordinates":[1664,42823]},{"type":"Point","coordinates":[1746,42860]},{"type":"Point","coordinates":[1799,42884]},{"type":"Point","coordinates":[1746,42860]},{"type":"Point","coordinates":[1800,42885]},{"type":"Point","coordinates":[1747,42861]},{"type":"Point","coordinates":[2369,43141]},{"type":"Point","coordinates":[1799,42885]},{"type":"Point","coordinates":[1800,42885]},{"type":"Point","coordinates":[1753,42865]},{"type":"Point","coordinates":[1741,42860]},{"type":"Point","coordinates":[1657,42824]},{"type":"Point","coordinates":[1571,42785]},{"type":"Point","coordinates":[2011,42985]},{"type":"Point","coordinates":[1748,42866]},{"type":"Point","coordinates":[1977,42970]},{"type":"Point","coordinates":[1822,42899]},{"type":"Point","coordinates":[1751,42868]},{"type":"Point","coordinates":[1571,42786]},{"type":"Point","coordinates":[1622,42810]},{"type":"Point","coordinates":[2487,43199]},{"type":"Point","coordinates":[1792,42888]},{"type":"Point","coordinates":[1621,42810]},{"type":"Point","coordinates":[1621,42811]},{"type":"Point","coordinates":[1734,42863]},{"type":"Point","coordinates":[64026,53108]},{"type":"Point","coordinates":[1621,42812]},{"type":"Point","coordinates":[1622,42813]},{"type":"Point","coordinates":[1657,42829]},{"type":"Point","coordinates":[1734,42865]},{"type":"Point","coordinates":[1734,42865]},{"type":"Point","coordinates":[2046,43006]},{"type":"Point","coordinates":[1752,42875]},{"type":"Point","coordinates":[1751,42876]},{"type":"Point","coordinates":[1622,42818]},{"type":"Point","coordinates":[1751,42878]},{"type":"Point","coordinates":[1751,42878]},{"type":"Point","coordinates":[1750,42877]},{"type":"Point","coordinates":[1750,42878]},{"type":"Point","coordinates":[1750,42878]},{"type":"Point","coordinates":[1750,42878]},{"type":"Point","coordinates":[1748,42878]},{"type":"Point","coordinates":[1749,42878]},{"type":"Point","coordinates":[1751,42879]},{"type":"Point","coordinates":[1749,42878]},{"type":"Point","coordinates":[1749,42878]},{"type":"Point","coordinates":[1620,42820]},{"type":"Point","coordinates":[2102,43039]},{"type":"Point","coordinates":[1673,42845]},{"type":"Point","coordinates":[2015,43001]},{"type":"Point","coordinates":[1979,42985]},{"type":"Point","coordinates":[1667,42844]},{"type":"Point","coordinates":[1676,42848]},{"type":"Point","coordinates":[2312,43135]},{"type":"Point","coordinates":[1672,42848]},{"type":"Point","coordinates":[1619,42824]},{"type":"Point","coordinates":[1672,42848]},{"type":"Point","coordinates":[1671,42848]},{"type":"Point","coordinates":[1617,42824]},{"type":"Point","coordinates":[1724,42873]},{"type":"Point","coordinates":[1629,42830]},{"type":"Point","coordinates":[1724,42873]},{"type":"Point","coordinates":[1618,42827]},{"type":"Point","coordinates":[1618,42828]},{"type":"Point","coordinates":[1618,42828]},{"type":"Point","coordinates":[1742,42885]},{"type":"Point","coordinates":[1619,42829]},{"type":"Point","coordinates":[1617,42828]},{"type":"Point","coordinates":[1618,42829]},{"type":"Point","coordinates":[1617,42829]},{"type":"Point","coordinates":[1488,42771]},{"type":"Point","coordinates":[1616,42831]},{"type":"Point","coordinates":[1619,42832]},{"type":"Point","coordinates":[1750,42892]},{"type":"Point","coordinates":[1653,42848]},{"type":"Point","coordinates":[1615,42831]},{"type":"Point","coordinates":[1739,42888]},{"type":"Point","coordinates":[1739,42888]},{"type":"Point","coordinates":[1619,42834]},{"type":"Point","coordinates":[1619,42834]},{"type":"Point","coordinates":[1619,42834]},{"type":"Point","coordinates":[1622,42835]},{"type":"Point","coordinates":[1681,42862]},{"type":"Point","coordinates":[1620,42835]},{"type":"Point","coordinates":[1779,42907]},{"type":"Point","coordinates":[1620,42836]},{"type":"Point","coordinates":[1615,42834]},{"type":"Point","coordinates":[1616,42835]},{"type":"Point","coordinates":[1458,42763]},{"type":"Point","coordinates":[1615,42835]},{"type":"Point","coordinates":[1612,42834]},{"type":"Point","coordinates":[1610,42833]},{"type":"Point","coordinates":[1616,42836]},{"type":"Point","coordinates":[1617,42837]},{"type":"Point","coordinates":[1611,42835]},{"type":"Point","coordinates":[1617,42838]},{"type":"Point","coordinates":[1610,42835]},{"type":"Point","coordinates":[1606,42833]},{"type":"Point","coordinates":[1608,42836]},{"type":"Point","coordinates":[1609,42836]},{"type":"Point","coordinates":[1614,42839]},{"type":"Point","coordinates":[1607,42836]},{"type":"Point","coordinates":[1613,42840]},{"type":"Point","coordinates":[1612,42839]},{"type":"Point","coordinates":[1609,42838]},{"type":"Point","coordinates":[1609,42838]},{"type":"Point","coordinates":[1748,42901]},{"type":"Point","coordinates":[1961,42998]},{"type":"Point","coordinates":[1621,42844]},{"type":"Point","coordinates":[1686,42874]},{"type":"Point","coordinates":[1616,42842]},{"type":"Point","coordinates":[1609,42839]},{"type":"Point","coordinates":[2499,43239]},{"type":"Point","coordinates":[1605,42839]},{"type":"Point","coordinates":[1612,42843]},{"type":"Point","coordinates":[2003,43020]},{"type":"Point","coordinates":[1621,42848]},{"type":"Point","coordinates":[2108,43069]},{"type":"Point","coordinates":[1684,42878]},{"type":"Point","coordinates":[1665,42870]},{"type":"Point","coordinates":[1659,42868]},{"type":"Point","coordinates":[6699,45029]},{"type":"Point","coordinates":[1683,42879]},{"type":"Point","coordinates":[1683,42880]},{"type":"Point","coordinates":[1683,42880]},{"type":"Point","coordinates":[1687,42882]},{"type":"Point","coordinates":[1584,42836]},{"type":"Point","coordinates":[1558,42824]},{"type":"Point","coordinates":[1625,42855]},{"type":"Point","coordinates":[2026,43037]},{"type":"Point","coordinates":[1864,42964]},{"type":"Point","coordinates":[1722,42900]},{"type":"Point","coordinates":[1723,42901]},{"type":"Point","coordinates":[1722,42901]},{"type":"Point","coordinates":[1724,42902]},{"type":"Point","coordinates":[1733,42906]},{"type":"Point","coordinates":[1731,42906]},{"type":"Point","coordinates":[1542,42820]},{"type":"Point","coordinates":[1733,42907]},{"type":"Point","coordinates":[1644,42867]},{"type":"Point","coordinates":[1633,42863]},{"type":"Point","coordinates":[1737,42910]},{"type":"Point","coordinates":[1689,42890]},{"type":"Point","coordinates":[1689,42890]},{"type":"Point","coordinates":[1850,42963]},{"type":"Point","coordinates":[1689,42890]},{"type":"Point","coordinates":[1613,42857]},{"type":"Point","coordinates":[2595,43298]},{"type":"Point","coordinates":[2586,43294]},{"type":"Point","coordinates":[1682,42889]},{"type":"Point","coordinates":[2591,43297]},{"type":"Point","coordinates":[2592,43298]},{"type":"Point","coordinates":[2591,43297]},{"type":"Point","coordinates":[2584,43295]},{"type":"Point","coordinates":[2591,43298]},{"type":"Point","coordinates":[2068,43064]},{"type":"Point","coordinates":[2068,43064]},{"type":"Point","coordinates":[2068,43064]},{"type":"Point","coordinates":[2591,43298]},{"type":"Point","coordinates":[2582,43294]},{"type":"Point","coordinates":[2584,43295]},{"type":"Point","coordinates":[2584,43295]},{"type":"Point","coordinates":[2584,43295]},{"type":"Point","coordinates":[2585,43296]},{"type":"Point","coordinates":[1959,43016]},{"type":"Point","coordinates":[1717,42907]},{"type":"Point","coordinates":[2587,43297]},{"type":"Point","coordinates":[2585,43297]},{"type":"Point","coordinates":[2585,43297]},{"type":"Point","coordinates":[2585,43297]},{"type":"Point","coordinates":[1643,42874]},{"type":"Point","coordinates":[2087,43075]},{"type":"Point","coordinates":[1638,42873]},{"type":"Point","coordinates":[1721,42913]},{"type":"Point","coordinates":[1729,42916]},{"type":"Point","coordinates":[1735,42921]},{"type":"Point","coordinates":[2048,43062]},{"type":"Point","coordinates":[2048,43063]},{"type":"Point","coordinates":[2048,43063]},{"type":"Point","coordinates":[2049,43063]},{"type":"Point","coordinates":[2048,43063]},{"type":"Point","coordinates":[1737,42922]},{"type":"Point","coordinates":[2049,43063]},{"type":"Point","coordinates":[2048,43063]},{"type":"Point","coordinates":[2048,43063]},{"type":"Point","coordinates":[2048,43063]},{"type":"Point","coordinates":[1736,42922]},{"type":"Point","coordinates":[1737,42923]},{"type":"Point","coordinates":[1737,42923]},{"type":"Point","coordinates":[2586,43304]},{"type":"Point","coordinates":[1870,42985]},{"type":"Point","coordinates":[2562,43295]},{"type":"Point","coordinates":[1641,42882]},{"type":"Point","coordinates":[1641,42882]},{"type":"Point","coordinates":[1614,42871]},{"type":"Point","coordinates":[2555,43294]},{"type":"Point","coordinates":[2555,43294]},{"type":"Point","coordinates":[80426,50100]},{"type":"Point","coordinates":[2583,43307]},{"type":"Point","coordinates":[2555,43294]},{"type":"Point","coordinates":[2557,43295]},{"type":"Point","coordinates":[2557,43296]},{"type":"Point","coordinates":[2557,43296]},{"type":"Point","coordinates":[2555,43294]},{"type":"Point","coordinates":[1738,42928]},{"type":"Point","coordinates":[2560,43297]},{"type":"Point","coordinates":[2559,43297]},{"type":"Point","coordinates":[2559,43297]},{"type":"Point","coordinates":[1775,42946]},{"type":"Point","coordinates":[2559,43298]},{"type":"Point","coordinates":[1733,42930]},{"type":"Point","coordinates":[1665,42899]},{"type":"Point","coordinates":[1732,42930]},{"type":"Point","coordinates":[2556,43300]},{"type":"Point","coordinates":[2556,43300]},{"type":"Point","coordinates":[80577,50065]},{"type":"Point","coordinates":[2556,43300]},{"type":"Point","coordinates":[1753,42941]},{"type":"Point","coordinates":[1696,42916]},{"type":"Point","coordinates":[1762,42946]},{"type":"Point","coordinates":[1760,42948]},{"type":"Point","coordinates":[1615,42882]},{"type":"Point","coordinates":[1668,42909]},{"type":"Point","coordinates":[2275,43182]},{"type":"Point","coordinates":[2059,43085]},{"type":"Point","coordinates":[1747,42945]},{"type":"Point","coordinates":[1747,42946]},{"type":"Point","coordinates":[1756,42951]},{"type":"Point","coordinates":[2066,43091]},{"type":"Point","coordinates":[1748,42947]},{"type":"Point","coordinates":[1757,42951]},{"type":"Point","coordinates":[1747,42947]},{"type":"Point","coordinates":[1747,42947]},{"type":"Point","coordinates":[1538,42854]},{"type":"Point","coordinates":[4069,43974]},{"type":"Point","coordinates":[81698,49778]},{"type":"Point","coordinates":[81417,49856]},{"type":"Point","coordinates":[1980,43058]},{"type":"Point","coordinates":[2094,43110]},{"type":"Point","coordinates":[1668,42918]},{"type":"Point","coordinates":[1956,43048]},{"type":"Point","coordinates":[1959,43050]},{"type":"Point","coordinates":[2278,43194]},{"type":"Point","coordinates":[1640,42907]},{"type":"Point","coordinates":[1954,43050]},{"type":"Point","coordinates":[1492,42840]},{"type":"Point","coordinates":[2016,43078]},{"type":"Point","coordinates":[2070,43104]},{"type":"Point","coordinates":[1771,42972]},{"type":"Point","coordinates":[43956,53699]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[1729,42953]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2347,43231]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[1728,42953]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2014,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43083]},{"type":"Point","coordinates":[2014,43082]},{"type":"Point","coordinates":[2014,43082]},{"type":"Point","coordinates":[2014,43082]},{"type":"Point","coordinates":[2015,43083]},{"type":"Point","coordinates":[2015,43083]},{"type":"Point","coordinates":[2016,43083]},{"type":"Point","coordinates":[2014,43083]},{"type":"Point","coordinates":[2014,43083]},{"type":"Point","coordinates":[2014,43083]},{"type":"Point","coordinates":[2006,43082]},{"type":"Point","coordinates":[2006,43082]},{"type":"Point","coordinates":[1871,43027]},{"type":"Point","coordinates":[1778,42989]},{"type":"Point","coordinates":[1661,42937]},{"type":"Point","coordinates":[1707,42959]},{"type":"Point","coordinates":[1794,42998]},{"type":"Point","coordinates":[1857,43028]},{"type":"Point","coordinates":[2164,43166]},{"type":"Point","coordinates":[80727,50068]},{"type":"Point","coordinates":[80727,50068]},{"type":"Point","coordinates":[1775,42993]},{"type":"Point","coordinates":[1791,43000]},{"type":"Point","coordinates":[2001,43096]},{"type":"Point","coordinates":[2001,43096]},{"type":"Point","coordinates":[1815,43012]},{"type":"Point","coordinates":[1985,43091]},{"type":"Point","coordinates":[2709,43417]},{"type":"Point","coordinates":[1812,43017]},{"type":"Point","coordinates":[1704,42974]},{"type":"Point","coordinates":[1704,42974]},{"type":"Point","coordinates":[1704,42974]},{"type":"Point","coordinates":[1704,42974]},{"type":"Point","coordinates":[2061,43136]},{"type":"Point","coordinates":[1712,42979]},{"type":"Point","coordinates":[80543,50132]},{"type":"Point","coordinates":[2056,43136]},{"type":"Point","coordinates":[2045,43131]},{"type":"Point","coordinates":[2045,43132]},{"type":"Point","coordinates":[1738,42994]},{"type":"Point","coordinates":[1740,42996]},{"type":"Point","coordinates":[1740,42997]},{"type":"Point","coordinates":[1693,42978]},{"type":"Point","coordinates":[1693,42978]},{"type":"Point","coordinates":[1693,42978]},{"type":"Point","coordinates":[1989,43114]},{"type":"Point","coordinates":[1989,43114]},{"type":"Point","coordinates":[1989,43114]},{"type":"Point","coordinates":[64616,53171]},{"type":"Point","coordinates":[80535,50144]},{"type":"Point","coordinates":[1989,43119]},{"type":"Point","coordinates":[1990,43120]},{"type":"Point","coordinates":[1987,43120]},{"type":"Point","coordinates":[1987,43120]},{"type":"Point","coordinates":[1977,43116]},{"type":"Point","coordinates":[1988,43121]},{"type":"Point","coordinates":[2395,43304]},{"type":"Point","coordinates":[1987,43122]},{"type":"Point","coordinates":[1989,43122]},{"type":"Point","coordinates":[1987,43122]},{"type":"Point","coordinates":[1988,43122]},{"type":"Point","coordinates":[1988,43122]},{"type":"Point","coordinates":[1987,43122]},{"type":"Point","coordinates":[1813,43046]},{"type":"Point","coordinates":[2087,43169]},{"type":"Point","coordinates":[80533,50156]},{"type":"Point","coordinates":[80114,50267]},{"type":"Point","coordinates":[1634,42973]},{"type":"Point","coordinates":[1741,43026]},{"type":"Point","coordinates":[1742,43027]},{"type":"Point","coordinates":[1741,43027]},{"type":"Point","coordinates":[1742,43027]},{"type":"Point","coordinates":[1634,42979]},{"type":"Point","coordinates":[81218,49987]},{"type":"Point","coordinates":[1748,43038]},{"type":"Point","coordinates":[1881,43099]},{"type":"Point","coordinates":[1734,43033]},{"type":"Point","coordinates":[80436,50204]},{"type":"Point","coordinates":[2132,43215]},{"type":"Point","coordinates":[81097,50036]},{"type":"Point","coordinates":[1653,43009]},{"type":"Point","coordinates":[2469,43377]},{"type":"Point","coordinates":[1793,43077]},{"type":"Point","coordinates":[2468,43380]},{"type":"Point","coordinates":[1793,43077]},{"type":"Point","coordinates":[2469,43381]},{"type":"Point","coordinates":[2423,43362]},{"type":"Point","coordinates":[64640,53222]},{"type":"Point","coordinates":[1792,43085]},{"type":"Point","coordinates":[1863,43118]},{"type":"Point","coordinates":[1783,43082]},{"type":"Point","coordinates":[64644,53229]},{"type":"Point","coordinates":[1964,43166]},{"type":"Point","coordinates":[1556,42982]},{"type":"Point","coordinates":[2028,43198]},{"type":"Point","coordinates":[2024,43199]},{"type":"Point","coordinates":[2059,43219]},{"type":"Point","coordinates":[1641,43034]},{"type":"Point","coordinates":[1463,42962]},{"type":"Point","coordinates":[1463,42962]},{"type":"Point","coordinates":[1463,42962]},{"type":"Point","coordinates":[2403,43393]},{"type":"Point","coordinates":[2404,43397]},{"type":"Point","coordinates":[2497,43439]},{"type":"Point","coordinates":[2020,43226]},{"type":"Point","coordinates":[1897,43171]},{"type":"Point","coordinates":[8255,45841]},{"type":"Point","coordinates":[2498,43443]},{"type":"Point","coordinates":[1814,43136]},{"type":"Point","coordinates":[1699,43085]},{"type":"Point","coordinates":[2299,43355]},{"type":"Point","coordinates":[1714,43095]},{"type":"Point","coordinates":[86514,48519]},{"type":"Point","coordinates":[2127,43290]},{"type":"Point","coordinates":[1566,43040]},{"type":"Point","coordinates":[2007,43241]},{"type":"Point","coordinates":[1746,43124]},{"type":"Point","coordinates":[1745,43124]},{"type":"Point","coordinates":[1566,43046]},{"type":"Point","coordinates":[1566,43046]},{"type":"Point","coordinates":[1566,43046]},{"type":"Point","coordinates":[2362,43407]},{"type":"Point","coordinates":[2083,43283]},{"type":"Point","coordinates":[27784,51675]},{"type":"Point","coordinates":[2363,43412]},{"type":"Point","coordinates":[2363,43412]},{"type":"Point","coordinates":[71432,52280]},{"type":"Point","coordinates":[2363,43412]},{"type":"Point","coordinates":[2363,43412]},{"type":"Point","coordinates":[2362,43412]},{"type":"Point","coordinates":[2363,43413]},{"type":"Point","coordinates":[2363,43413]},{"type":"Point","coordinates":[2363,43413]},{"type":"Point","coordinates":[2364,43417]},{"type":"Point","coordinates":[2364,43417]},{"type":"Point","coordinates":[2364,43417]},{"type":"Point","coordinates":[2364,43417]},{"type":"Point","coordinates":[2364,43417]},{"type":"Point","coordinates":[2364,43417]},{"type":"Point","coordinates":[2364,43417]},{"type":"Point","coordinates":[2364,43418]},{"type":"Point","coordinates":[2364,43418]},{"type":"Point","coordinates":[2363,43420]},{"type":"Point","coordinates":[2365,43422]},{"type":"Point","coordinates":[8164,45846]},{"type":"Point","coordinates":[2230,43364]},{"type":"Point","coordinates":[2368,43433]},{"type":"Point","coordinates":[2393,43446]},{"type":"Point","coordinates":[2468,43480]},{"type":"Point","coordinates":[1664,43119]},{"type":"Point","coordinates":[2706,43587]},{"type":"Point","coordinates":[2175,43352]},{"type":"Point","coordinates":[2406,43456]},{"type":"Point","coordinates":[1715,43147]},{"type":"Point","coordinates":[2425,43467]},{"type":"Point","coordinates":[2427,43471]},{"type":"Point","coordinates":[2394,43458]},{"type":"Point","coordinates":[2427,43474]},{"type":"Point","coordinates":[2395,43463]},{"type":"Point","coordinates":[2425,43477]},{"type":"Point","coordinates":[2395,43464]},{"type":"Point","coordinates":[2402,43470]},{"type":"Point","coordinates":[2001,43298]},{"type":"Point","coordinates":[1791,43205]},{"type":"Point","coordinates":[2423,43489]},{"type":"Point","coordinates":[2001,43300]},{"type":"Point","coordinates":[1666,43152]},{"type":"Point","coordinates":[2219,43405]},{"type":"Point","coordinates":[2420,43495]},{"type":"Point","coordinates":[6700,45314]},{"type":"Point","coordinates":[1547,43110]},{"type":"Point","coordinates":[2378,43485]},{"type":"Point","coordinates":[2432,43513]},{"type":"Point","coordinates":[1437,43068]},{"type":"Point","coordinates":[1436,43069]},{"type":"Point","coordinates":[2430,43521]},{"type":"Point","coordinates":[2092,43370]},{"type":"Point","coordinates":[2429,43523]},{"type":"Point","coordinates":[87526,48294]},{"type":"Point","coordinates":[2432,43528]},{"type":"Point","coordinates":[2432,43528]},{"type":"Point","coordinates":[2431,43529]},{"type":"Point","coordinates":[2432,43529]},{"type":"Point","coordinates":[2432,43529]},{"type":"Point","coordinates":[86510,48624]},{"type":"Point","coordinates":[2433,43532]},{"type":"Point","coordinates":[2199,43428]},{"type":"Point","coordinates":[2430,43533]},{"type":"Point","coordinates":[2091,43386]},{"type":"Point","coordinates":[1628,43180]},{"type":"Point","coordinates":[1889,43299]},{"type":"Point","coordinates":[1741,43235]},{"type":"Point","coordinates":[2225,43454]},{"type":"Point","coordinates":[2224,43454]},{"type":"Point","coordinates":[2225,43455]},{"type":"Point","coordinates":[2225,43455]},{"type":"Point","coordinates":[73606,51971]},{"type":"Point","coordinates":[2225,43458]},{"type":"Point","coordinates":[2057,43383]},{"type":"Point","coordinates":[2223,43457]},{"type":"Point","coordinates":[27558,51737]},{"type":"Point","coordinates":[2225,43458]},{"type":"Point","coordinates":[2057,43385]},{"type":"Point","coordinates":[2151,43428]},{"type":"Point","coordinates":[2089,43401]},{"type":"Point","coordinates":[2058,43387]},{"type":"Point","coordinates":[2464,43573]},{"type":"Point","coordinates":[1567,43170]},{"type":"Point","coordinates":[2056,43391]},{"type":"Point","coordinates":[2056,43391]},{"type":"Point","coordinates":[2060,43395]},{"type":"Point","coordinates":[87723,48263]},{"type":"Point","coordinates":[2050,43391]},{"type":"Point","coordinates":[2050,43394]},{"type":"Point","coordinates":[2050,43394]},{"type":"Point","coordinates":[1822,43302]},{"type":"Point","coordinates":[2090,43423]},{"type":"Point","coordinates":[2108,43433]},{"type":"Point","coordinates":[1657,43234]},{"type":"Point","coordinates":[88023,48185]},{"type":"Point","coordinates":[1658,43237]},{"type":"Point","coordinates":[1841,43321]},{"type":"Point","coordinates":[1652,43237]},{"type":"Point","coordinates":[1652,43237]},{"type":"Point","coordinates":[1658,43240]},{"type":"Point","coordinates":[1813,43312]},{"type":"Point","coordinates":[2170,43472]},{"type":"Point","coordinates":[1658,43249]},{"type":"Point","coordinates":[84553,49295]},{"type":"Point","coordinates":[1506,43185]},{"type":"Point","coordinates":[1663,43257]},{"type":"Point","coordinates":[2331,43558]},{"type":"Point","coordinates":[1653,43257]},{"type":"Point","coordinates":[2327,43560]},{"type":"Point","coordinates":[1519,43201]},{"type":"Point","coordinates":[1653,43262]},{"type":"Point","coordinates":[1666,43271]},{"type":"Point","coordinates":[2165,43497]},{"type":"Point","coordinates":[1666,43276]},{"type":"Point","coordinates":[60939,53845]},{"type":"Point","coordinates":[1666,43280]},{"type":"Point","coordinates":[1667,43281]},{"type":"Point","coordinates":[1667,43281]},{"type":"Point","coordinates":[1670,43284]},{"type":"Point","coordinates":[1668,43283]},{"type":"Point","coordinates":[1696,43298]},{"type":"Point","coordinates":[1669,43288]},{"type":"Point","coordinates":[1669,43288]},{"type":"Point","coordinates":[64399,53504]},{"type":"Point","coordinates":[1669,43289]},{"type":"Point","coordinates":[1668,43288]},{"type":"Point","coordinates":[1668,43289]},{"type":"Point","coordinates":[1669,43289]},{"type":"Point","coordinates":[1700,43304]},{"type":"Point","coordinates":[1669,43290]},{"type":"Point","coordinates":[1669,43289]},{"type":"Point","coordinates":[1669,43290]},{"type":"Point","coordinates":[1669,43290]},{"type":"Point","coordinates":[64399,53505]},{"type":"Point","coordinates":[1669,43290]},{"type":"Point","coordinates":[1700,43304]},{"type":"Point","coordinates":[1699,43304]},{"type":"Point","coordinates":[1700,43304]},{"type":"Point","coordinates":[1669,43291]},{"type":"Point","coordinates":[1694,43303]},{"type":"Point","coordinates":[1669,43292]},{"type":"Point","coordinates":[1669,43292]},{"type":"Point","coordinates":[1669,43292]},{"type":"Point","coordinates":[1669,43292]},{"type":"Point","coordinates":[1701,43307]},{"type":"Point","coordinates":[1703,43308]},{"type":"Point","coordinates":[1703,43309]},{"type":"Point","coordinates":[1703,43309]},{"type":"Point","coordinates":[1669,43294]},{"type":"Point","coordinates":[1664,43292]},{"type":"Point","coordinates":[1672,43296]},{"type":"Point","coordinates":[1667,43294]},{"type":"Point","coordinates":[1701,43309]},{"type":"Point","coordinates":[1667,43294]},{"type":"Point","coordinates":[1701,43310]},{"type":"Point","coordinates":[1956,43425]},{"type":"Point","coordinates":[1956,43425]},{"type":"Point","coordinates":[1701,43310]},{"type":"Point","coordinates":[81444,50218]},{"type":"Point","coordinates":[81445,50218]},{"type":"Point","coordinates":[1688,43305]},{"type":"Point","coordinates":[1686,43305]},{"type":"Point","coordinates":[1672,43299]},{"type":"Point","coordinates":[1685,43305]},{"type":"Point","coordinates":[1670,43299]},{"type":"Point","coordinates":[1668,43299]},{"type":"Point","coordinates":[1712,43319]},{"type":"Point","coordinates":[1668,43299]},{"type":"Point","coordinates":[1683,43307]},{"type":"Point","coordinates":[1668,43303]},{"type":"Point","coordinates":[1669,43305]},{"type":"Point","coordinates":[1668,43305]},{"type":"Point","coordinates":[1668,43307]},{"type":"Point","coordinates":[1671,43309]},{"type":"Point","coordinates":[1666,43308]},{"type":"Point","coordinates":[2328,43606]},{"type":"Point","coordinates":[1669,43310]},{"type":"Point","coordinates":[1669,43311]},{"type":"Point","coordinates":[1670,43313]},{"type":"Point","coordinates":[1669,43313]},{"type":"Point","coordinates":[1696,43329]},{"type":"Point","coordinates":[2486,43684]},{"type":"Point","coordinates":[2494,43691]},{"type":"Point","coordinates":[2494,43691]},{"type":"Point","coordinates":[2497,43693]},{"type":"Point","coordinates":[2493,43692]},{"type":"Point","coordinates":[2493,43692]},{"type":"Point","coordinates":[2484,43688]},{"type":"Point","coordinates":[2496,43694]},{"type":"Point","coordinates":[2492,43692]},{"type":"Point","coordinates":[1749,43363]},{"type":"Point","coordinates":[2478,43691]},{"type":"Point","coordinates":[2308,43617]},{"type":"Point","coordinates":[2263,43598]},{"type":"Point","coordinates":[2277,43607]},{"type":"Point","coordinates":[1657,43333]},{"type":"Point","coordinates":[7034,45629]},{"type":"Point","coordinates":[1673,43345]},{"type":"Point","coordinates":[2492,43714]},{"type":"Point","coordinates":[2222,43595]},{"type":"Point","coordinates":[2493,43716]},{"type":"Point","coordinates":[2492,43719]},{"type":"Point","coordinates":[2493,43721]},{"type":"Point","coordinates":[2071,43532]},{"type":"Point","coordinates":[2494,43721]},{"type":"Point","coordinates":[2493,43721]},{"type":"Point","coordinates":[1674,43354]},{"type":"Point","coordinates":[2494,43722]},{"type":"Point","coordinates":[1672,43354]},{"type":"Point","coordinates":[2496,43726]},{"type":"Point","coordinates":[2496,43726]},{"type":"Point","coordinates":[1672,43357]},{"type":"Point","coordinates":[2498,43727]},{"type":"Point","coordinates":[2498,43727]},{"type":"Point","coordinates":[2493,43726]},{"type":"Point","coordinates":[1905,43462]},{"type":"Point","coordinates":[64343,53577]},{"type":"Point","coordinates":[80688,50482]},{"type":"Point","coordinates":[1603,43330]},{"type":"Point","coordinates":[2497,43732]},{"type":"Point","coordinates":[2492,43730]},{"type":"Point","coordinates":[2492,43730]},{"type":"Point","coordinates":[2496,43732]},{"type":"Point","coordinates":[2492,43731]},{"type":"Point","coordinates":[2492,43731]},{"type":"Point","coordinates":[2493,43733]},{"type":"Point","coordinates":[1778,43413]},{"type":"Point","coordinates":[7910,45999]},{"type":"Point","coordinates":[1609,43338]},{"type":"Point","coordinates":[1606,43338]},{"type":"Point","coordinates":[1606,43338]},{"type":"Point","coordinates":[1603,43337]},{"type":"Point","coordinates":[1609,43340]},{"type":"Point","coordinates":[1602,43337]},{"type":"Point","coordinates":[2497,43739]},{"type":"Point","coordinates":[1603,43338]},{"type":"Point","coordinates":[1778,43419]},{"type":"Point","coordinates":[1597,43339]},{"type":"Point","coordinates":[1598,43340]},{"type":"Point","coordinates":[1598,43340]},{"type":"Point","coordinates":[1698,43386]},{"type":"Point","coordinates":[1622,43353]},{"type":"Point","coordinates":[28540,52100]},{"type":"Point","coordinates":[1608,43347]},{"type":"Point","coordinates":[1620,43353]},{"type":"Point","coordinates":[1618,43352]},{"type":"Point","coordinates":[1607,43348]},{"type":"Point","coordinates":[1607,43348]},{"type":"Point","coordinates":[1606,43349]},{"type":"Point","coordinates":[1606,43349]},{"type":"Point","coordinates":[1606,43349]},{"type":"Point","coordinates":[2794,43882]},{"type":"Point","coordinates":[1603,43351]},{"type":"Point","coordinates":[1703,43396]},{"type":"Point","coordinates":[1603,43351]},{"type":"Point","coordinates":[1575,43339]},{"type":"Point","coordinates":[1620,43359]},{"type":"Point","coordinates":[1619,43359]},{"type":"Point","coordinates":[1576,43340]},{"type":"Point","coordinates":[1617,43359]},{"type":"Point","coordinates":[8138,46106]},{"type":"Point","coordinates":[1619,43360]},{"type":"Point","coordinates":[1603,43355]},{"type":"Point","coordinates":[1711,43405]},{"type":"Point","coordinates":[1640,43373]},{"type":"Point","coordinates":[1631,43374]},{"type":"Point","coordinates":[1632,43376]},{"type":"Point","coordinates":[1766,43437]},{"type":"Point","coordinates":[1632,43377]},{"type":"Point","coordinates":[1767,43438]},{"type":"Point","coordinates":[1728,43420]},{"type":"Point","coordinates":[1630,43376]},{"type":"Point","coordinates":[1629,43376]},{"type":"Point","coordinates":[1630,43377]},{"type":"Point","coordinates":[1422,43285]},{"type":"Point","coordinates":[1636,43383]},{"type":"Point","coordinates":[2492,43768]},{"type":"Point","coordinates":[1557,43350]},{"type":"Point","coordinates":[86096,48966]},{"type":"Point","coordinates":[87765,48432]},{"type":"Point","coordinates":[1649,43396]},{"type":"Point","coordinates":[1712,43424]},{"type":"Point","coordinates":[1660,43402]},{"type":"Point","coordinates":[1711,43425]},{"type":"Point","coordinates":[2074,43592]},{"type":"Point","coordinates":[1561,43361]},{"type":"Point","coordinates":[1660,43408]},{"type":"Point","coordinates":[1560,43364]},{"type":"Point","coordinates":[1559,43366]},{"type":"Point","coordinates":[1752,43454]},{"type":"Point","coordinates":[1658,43412]},{"type":"Point","coordinates":[2121,43620]},{"type":"Point","coordinates":[1528,43354]},{"type":"Point","coordinates":[1753,43456]},{"type":"Point","coordinates":[2390,43745]},{"type":"Point","coordinates":[2076,43605]},{"type":"Point","coordinates":[1655,43417]},{"type":"Point","coordinates":[1558,43373]},{"type":"Point","coordinates":[1558,43374]},{"type":"Point","coordinates":[1558,43374]},{"type":"Point","coordinates":[1661,43422]},{"type":"Point","coordinates":[1724,43452]},{"type":"Point","coordinates":[1391,43301]},{"type":"Point","coordinates":[1691,43438]},{"type":"Point","coordinates":[1711,43449]},{"type":"Point","coordinates":[1798,43490]},{"type":"Point","coordinates":[2517,43814]},{"type":"Point","coordinates":[1702,43449]},{"type":"Point","coordinates":[1696,43447]},{"type":"Point","coordinates":[48452,54386]},{"type":"Point","coordinates":[1772,43485]},{"type":"Point","coordinates":[1751,43479]},{"type":"Point","coordinates":[2203,43683]},{"type":"Point","coordinates":[1705,43462]},{"type":"Point","coordinates":[2956,44024]},{"type":"Point","coordinates":[1762,43492]},{"type":"Point","coordinates":[1714,43472]},{"type":"Point","coordinates":[1403,43331]},{"type":"Point","coordinates":[1604,43426]},{"type":"Point","coordinates":[1739,43487]},{"type":"Point","coordinates":[1442,43354]},{"type":"Point","coordinates":[1704,43477]},{"type":"Point","coordinates":[2445,43809]},{"type":"Point","coordinates":[80780,50557]},{"type":"Point","coordinates":[1731,43490]},{"type":"Point","coordinates":[2404,43793]},{"type":"Point","coordinates":[1740,43496]},{"type":"Point","coordinates":[1719,43487]},{"type":"Point","coordinates":[1727,43491]},{"type":"Point","coordinates":[1741,43498]},{"type":"Point","coordinates":[1741,43498]},{"type":"Point","coordinates":[1727,43492]},{"type":"Point","coordinates":[1741,43498]},{"type":"Point","coordinates":[1727,43492]},{"type":"Point","coordinates":[1726,43492]},{"type":"Point","coordinates":[1738,43497]},{"type":"Point","coordinates":[1726,43492]},{"type":"Point","coordinates":[1741,43499]},{"type":"Point","coordinates":[1741,43499]},{"type":"Point","coordinates":[1710,43486]},{"type":"Point","coordinates":[1736,43498]},{"type":"Point","coordinates":[1707,43486]},{"type":"Point","coordinates":[1730,43496]},{"type":"Point","coordinates":[1748,43506]},{"type":"Point","coordinates":[2065,43649]},{"type":"Point","coordinates":[2050,43643]},{"type":"Point","coordinates":[1432,43364]},{"type":"Point","coordinates":[2042,43640]},{"type":"Point","coordinates":[1717,43494]},{"type":"Point","coordinates":[1720,43497]},{"type":"Point","coordinates":[1730,43501]},{"type":"Point","coordinates":[1855,43558]},{"type":"Point","coordinates":[1720,43498]},{"type":"Point","coordinates":[1716,43498]},{"type":"Point","coordinates":[1720,43500]},{"type":"Point","coordinates":[2014,43633]},{"type":"Point","coordinates":[1720,43501]},{"type":"Point","coordinates":[2000,43632]},{"type":"Point","coordinates":[1841,43561]},{"type":"Point","coordinates":[1720,43506]},{"type":"Point","coordinates":[1738,43515]},{"type":"Point","coordinates":[2036,43649]},{"type":"Point","coordinates":[2001,43639]},{"type":"Point","coordinates":[1730,43518]},{"type":"Point","coordinates":[1827,43562]},{"type":"Point","coordinates":[2388,43814]},{"type":"Point","coordinates":[2388,43814]},{"type":"Point","coordinates":[2388,43814]},{"type":"Point","coordinates":[1858,43577]},{"type":"Point","coordinates":[2388,43814]},{"type":"Point","coordinates":[2360,43802]},{"type":"Point","coordinates":[2195,43728]},{"type":"Point","coordinates":[2001,43642]},{"type":"Point","coordinates":[2523,43875]},{"type":"Point","coordinates":[1701,43510]},{"type":"Point","coordinates":[1716,43517]},{"type":"Point","coordinates":[1718,43518]},{"type":"Point","coordinates":[1641,43484]},{"type":"Point","coordinates":[1714,43517]},{"type":"Point","coordinates":[1702,43512]},{"type":"Point","coordinates":[1707,43515]},{"type":"Point","coordinates":[1707,43515]},{"type":"Point","coordinates":[1705,43514]},{"type":"Point","coordinates":[1712,43517]},{"type":"Point","coordinates":[1702,43513]},{"type":"Point","coordinates":[1705,43514]},{"type":"Point","coordinates":[1729,43526]},{"type":"Point","coordinates":[1700,43512]},{"type":"Point","coordinates":[1704,43514]},{"type":"Point","coordinates":[1699,43512]},{"type":"Point","coordinates":[2066,43678]},{"type":"Point","coordinates":[1699,43513]},{"type":"Point","coordinates":[1698,43513]},{"type":"Point","coordinates":[1710,43519]},{"type":"Point","coordinates":[1700,43514]},{"type":"Point","coordinates":[1706,43517]},{"type":"Point","coordinates":[1699,43515]},{"type":"Point","coordinates":[1726,43527]},{"type":"Point","coordinates":[1706,43518]},{"type":"Point","coordinates":[1726,43527]},{"type":"Point","coordinates":[1723,43526]},{"type":"Point","coordinates":[2187,43735]},{"type":"Point","coordinates":[1838,43579]},{"type":"Point","coordinates":[1708,43521]},{"type":"Point","coordinates":[1699,43517]},{"type":"Point","coordinates":[1724,43529]},{"type":"Point","coordinates":[1705,43520]},{"type":"Point","coordinates":[1705,43522]},{"type":"Point","coordinates":[2065,43684]},{"type":"Point","coordinates":[1706,43523]},{"type":"Point","coordinates":[1707,43523]},{"type":"Point","coordinates":[1697,43520]},{"type":"Point","coordinates":[2181,43738]},{"type":"Point","coordinates":[1698,43521]},{"type":"Point","coordinates":[1698,43521]},{"type":"Point","coordinates":[1730,43536]},{"type":"Point","coordinates":[1698,43522]},{"type":"Point","coordinates":[1696,43521]},{"type":"Point","coordinates":[1694,43522]},{"type":"Point","coordinates":[1695,43522]},{"type":"Point","coordinates":[2067,43690]},{"type":"Point","coordinates":[1694,43523]},{"type":"Point","coordinates":[2228,43763]},{"type":"Point","coordinates":[1730,43541]},{"type":"Point","coordinates":[1997,43662]},{"type":"Point","coordinates":[1997,43662]},{"type":"Point","coordinates":[1997,43663]},{"type":"Point","coordinates":[1997,43663]},{"type":"Point","coordinates":[2066,43695]},{"type":"Point","coordinates":[2065,43695]},{"type":"Point","coordinates":[1692,43527]},{"type":"Point","coordinates":[2065,43695]},{"type":"Point","coordinates":[2064,43695]},{"type":"Point","coordinates":[1692,43527]},{"type":"Point","coordinates":[1691,43528]},{"type":"Point","coordinates":[1690,43529]},{"type":"Point","coordinates":[2064,43698]},{"type":"Point","coordinates":[1986,43664]},{"type":"Point","coordinates":[1998,43669]},{"type":"Point","coordinates":[1987,43665]},{"type":"Point","coordinates":[1990,43666]},{"type":"Point","coordinates":[1686,43533]},{"type":"Point","coordinates":[2356,43835]},{"type":"Point","coordinates":[2171,43753]},{"type":"Point","coordinates":[1987,43671]},{"type":"Point","coordinates":[2171,43755]},{"type":"Point","coordinates":[1571,43485]},{"type":"Point","coordinates":[1686,43537]},{"type":"Point","coordinates":[1684,43536]},{"type":"Point","coordinates":[1685,43538]},{"type":"Point","coordinates":[1685,43540]},{"type":"Point","coordinates":[8268,46306]},{"type":"Point","coordinates":[1685,43544]},{"type":"Point","coordinates":[1685,43544]},{"type":"Point","coordinates":[2187,43770]},{"type":"Point","coordinates":[8259,46307]},{"type":"Point","coordinates":[2001,43688]},{"type":"Point","coordinates":[1991,43685]},{"type":"Point","coordinates":[1685,43547]},{"type":"Point","coordinates":[1996,43687]},{"type":"Point","coordinates":[1521,43473]},{"type":"Point","coordinates":[1997,43688]},{"type":"Point","coordinates":[1685,43548]},{"type":"Point","coordinates":[80425,50728]},{"type":"Point","coordinates":[1999,43690]},{"type":"Point","coordinates":[1998,43690]},{"type":"Point","coordinates":[1524,43476]},{"type":"Point","coordinates":[1998,43690]},{"type":"Point","coordinates":[1998,43690]},{"type":"Point","coordinates":[1998,43690]},{"type":"Point","coordinates":[1998,43690]},{"type":"Point","coordinates":[1998,43691]},{"type":"Point","coordinates":[1997,43690]},{"type":"Point","coordinates":[1685,43550]},{"type":"Point","coordinates":[1994,43690]},{"type":"Point","coordinates":[1686,43552]},{"type":"Point","coordinates":[1997,43692]},{"type":"Point","coordinates":[1687,43553]},{"type":"Point","coordinates":[2001,43694]},{"type":"Point","coordinates":[1689,43554]},{"type":"Point","coordinates":[1690,43556]},{"type":"Point","coordinates":[1694,43560]},{"type":"Point","coordinates":[1693,43560]},{"type":"Point","coordinates":[1994,43697]},{"type":"Point","coordinates":[2132,43759]},{"type":"Point","coordinates":[2132,43759]},{"type":"Point","coordinates":[1519,43483]},{"type":"Point","coordinates":[2195,43788]},{"type":"Point","coordinates":[2060,43728]},{"type":"Point","coordinates":[1992,43698]},{"type":"Point","coordinates":[2241,43810]},{"type":"Point","coordinates":[1693,43564]},{"type":"Point","coordinates":[64283,53773]},{"type":"Point","coordinates":[2240,43811]},{"type":"Point","coordinates":[1693,43566]},{"type":"Point","coordinates":[8221,46311]},{"type":"Point","coordinates":[1693,43568]},{"type":"Point","coordinates":[1937,43678]},{"type":"Point","coordinates":[48266,54501]},{"type":"Point","coordinates":[1939,43681]},{"type":"Point","coordinates":[1354,43417]},{"type":"Point","coordinates":[1695,43574]},{"type":"Point","coordinates":[1697,43575]},{"type":"Point","coordinates":[2136,43773]},{"type":"Point","coordinates":[1931,43683]},{"type":"Point","coordinates":[1696,43577]},{"type":"Point","coordinates":[1695,43580]},{"type":"Point","coordinates":[1921,43684]},{"type":"Point","coordinates":[1921,43684]},{"type":"Point","coordinates":[1454,43477]},{"type":"Point","coordinates":[1678,43581]},{"type":"Point","coordinates":[1961,43709]},{"type":"Point","coordinates":[1695,43591]},{"type":"Point","coordinates":[1838,43656]},{"type":"Point","coordinates":[2178,43810]},{"type":"Point","coordinates":[1500,43505]},{"type":"Point","coordinates":[1694,43594]},{"type":"Point","coordinates":[1574,43540]},{"type":"Point","coordinates":[1583,43545]},{"type":"Point","coordinates":[1693,43597]},{"type":"Point","coordinates":[1497,43509]},{"type":"Point","coordinates":[1497,43509]},{"type":"Point","coordinates":[80795,50676]},{"type":"Point","coordinates":[1497,43509]},{"type":"Point","coordinates":[1693,43598]},{"type":"Point","coordinates":[1495,43509]},{"type":"Point","coordinates":[2377,43906]},{"type":"Point","coordinates":[84196,49728]},{"type":"Point","coordinates":[1493,43513]},{"type":"Point","coordinates":[2142,43806]},{"type":"Point","coordinates":[2142,43806]},{"type":"Point","coordinates":[1491,43514]},{"type":"Point","coordinates":[2277,43868]},{"type":"Point","coordinates":[1490,43514]},{"type":"Point","coordinates":[2434,43946]},{"type":"Point","coordinates":[1515,43536]},{"type":"Point","coordinates":[1696,43620]},{"type":"Point","coordinates":[2322,43902]},{"type":"Point","coordinates":[2344,43916]},{"type":"Point","coordinates":[1500,43538]},{"type":"Point","coordinates":[2150,43832]},{"type":"Point","coordinates":[2503,43993]},{"type":"Point","coordinates":[2501,43994]},{"type":"Point","coordinates":[1691,43632]},{"type":"Point","coordinates":[1512,43553]},{"type":"Point","coordinates":[8306,46411]},{"type":"Point","coordinates":[2136,43836]},{"type":"Point","coordinates":[2045,43796]},{"type":"Point","coordinates":[48119,54562]},{"type":"Point","coordinates":[8301,46414]},{"type":"Point","coordinates":[1540,43572]},{"type":"Point","coordinates":[1760,43672]},{"type":"Point","coordinates":[1563,43584]},{"type":"Point","coordinates":[6982,45898]},{"type":"Point","coordinates":[1495,43555]},{"type":"Point","coordinates":[1812,43698]},{"type":"Point","coordinates":[1496,43556]},{"type":"Point","coordinates":[1496,43556]},{"type":"Point","coordinates":[1496,43557]},{"type":"Point","coordinates":[1491,43554]},{"type":"Point","coordinates":[1518,43567]},{"type":"Point","coordinates":[87635,48703]},{"type":"Point","coordinates":[1489,43560]},{"type":"Point","coordinates":[1467,43552]},{"type":"Point","coordinates":[1484,43560]},{"type":"Point","coordinates":[2018,43802]},{"type":"Point","coordinates":[1503,43570]},{"type":"Point","coordinates":[1486,43563]},{"type":"Point","coordinates":[1488,43564]},{"type":"Point","coordinates":[1486,43566]},{"type":"Point","coordinates":[2019,43806]},{"type":"Point","coordinates":[1487,43567]},{"type":"Point","coordinates":[1488,43568]},{"type":"Point","coordinates":[1487,43567]},{"type":"Point","coordinates":[1485,43567]},{"type":"Point","coordinates":[1487,43568]},{"type":"Point","coordinates":[1485,43568]},{"type":"Point","coordinates":[1479,43567]},{"type":"Point","coordinates":[1483,43572]},{"type":"Point","coordinates":[1479,43572]},{"type":"Point","coordinates":[2573,44064]},{"type":"Point","coordinates":[1479,43576]},{"type":"Point","coordinates":[1484,43578]},{"type":"Point","coordinates":[1474,43577]},{"type":"Point","coordinates":[1474,43577]},{"type":"Point","coordinates":[2288,43947]},{"type":"Point","coordinates":[1738,43711]},{"type":"Point","coordinates":[8266,46452]},{"type":"Point","coordinates":[1566,43636]},{"type":"Point","coordinates":[1687,43694]},{"type":"Point","coordinates":[1555,43634]},{"type":"Point","coordinates":[1550,43633]},{"type":"Point","coordinates":[1554,43635]},{"type":"Point","coordinates":[1565,43642]},{"type":"Point","coordinates":[1582,43650]},{"type":"Point","coordinates":[1512,43619]},{"type":"Point","coordinates":[1750,43727]},{"type":"Point","coordinates":[1507,43617]},{"type":"Point","coordinates":[1512,43620]},{"type":"Point","coordinates":[1575,43649]},{"type":"Point","coordinates":[1755,43731]},{"type":"Point","coordinates":[1554,43640]},{"type":"Point","coordinates":[1581,43652]},{"type":"Point","coordinates":[1577,43651]},{"type":"Point","coordinates":[1902,43798]},{"type":"Point","coordinates":[1577,43651]},{"type":"Point","coordinates":[1576,43651]},{"type":"Point","coordinates":[1550,43640]},{"type":"Point","coordinates":[1550,43639]},{"type":"Point","coordinates":[1549,43639]},{"type":"Point","coordinates":[1592,43659]},{"type":"Point","coordinates":[2092,43884]},{"type":"Point","coordinates":[1717,43717]},{"type":"Point","coordinates":[1539,43636]},{"type":"Point","coordinates":[1571,43651]},{"type":"Point","coordinates":[1549,43641]},{"type":"Point","coordinates":[1595,43665]},{"type":"Point","coordinates":[1826,43771]},{"type":"Point","coordinates":[1547,43645]},{"type":"Point","coordinates":[19487,50231]},{"type":"Point","coordinates":[1499,43626]},{"type":"Point","coordinates":[1545,43648]},{"type":"Point","coordinates":[1496,43626]},{"type":"Point","coordinates":[2395,44031]},{"type":"Point","coordinates":[1494,43628]},{"type":"Point","coordinates":[1774,43757]},{"type":"Point","coordinates":[1493,43629]},{"type":"Point","coordinates":[1659,43705]},{"type":"Point","coordinates":[1492,43630]},{"type":"Point","coordinates":[1492,43630]},{"type":"Point","coordinates":[1492,43630]},{"type":"Point","coordinates":[86528,49135]},{"type":"Point","coordinates":[1617,43690]},{"type":"Point","coordinates":[1491,43636]},{"type":"Point","coordinates":[1491,43641]},{"type":"Point","coordinates":[1491,43641]},{"type":"Point","coordinates":[1491,43641]},{"type":"Point","coordinates":[1491,43641]},{"type":"Point","coordinates":[1490,43642]},{"type":"Point","coordinates":[1683,43732]},{"type":"Point","coordinates":[8244,46488]},{"type":"Point","coordinates":[70035,53130]},{"type":"Point","coordinates":[8237,46492]},{"type":"Point","coordinates":[1478,43648]},{"type":"Point","coordinates":[1623,43716]},{"type":"Point","coordinates":[1459,43643]},{"type":"Point","coordinates":[2193,43974]},{"type":"Point","coordinates":[1473,43651]},{"type":"Point","coordinates":[2061,43919]},{"type":"Point","coordinates":[1743,43776]},{"type":"Point","coordinates":[2061,43921]},{"type":"Point","coordinates":[2063,43922]},{"type":"Point","coordinates":[1689,43755]},{"type":"Point","coordinates":[1606,43718]},{"type":"Point","coordinates":[2075,43929]},{"type":"Point","coordinates":[2075,43929]},{"type":"Point","coordinates":[69961,53160]},{"type":"Point","coordinates":[1665,43746]},{"type":"Point","coordinates":[2058,43924]},{"type":"Point","coordinates":[1608,43721]},{"type":"Point","coordinates":[2075,43933]},{"type":"Point","coordinates":[2078,43934]},{"type":"Point","coordinates":[1683,43757]},{"type":"Point","coordinates":[2065,43929]},{"type":"Point","coordinates":[1356,43609]},{"type":"Point","coordinates":[2077,43935]},{"type":"Point","coordinates":[2070,43932]},{"type":"Point","coordinates":[1617,43728]},{"type":"Point","coordinates":[2077,43936]},{"type":"Point","coordinates":[2081,43938]},{"type":"Point","coordinates":[2083,43941]},{"type":"Point","coordinates":[1600,43724]},{"type":"Point","coordinates":[1693,43766]},{"type":"Point","coordinates":[1712,43776]},{"type":"Point","coordinates":[2067,43936]},{"type":"Point","coordinates":[1613,43732]},{"type":"Point","coordinates":[1597,43725]},{"type":"Point","coordinates":[2056,43933]},{"type":"Point","coordinates":[1598,43727]},{"type":"Point","coordinates":[2056,43933]},{"type":"Point","coordinates":[2056,43933]},{"type":"Point","coordinates":[2056,43934]},{"type":"Point","coordinates":[1715,43781]},{"type":"Point","coordinates":[1523,43694]},{"type":"Point","coordinates":[2056,43935]},{"type":"Point","coordinates":[1665,43759]},{"type":"Point","coordinates":[1593,43726]},{"type":"Point","coordinates":[1433,43654]},{"type":"Point","coordinates":[1621,43740]},{"type":"Point","coordinates":[1678,43767]},{"type":"Point","coordinates":[1675,43765]},{"type":"Point","coordinates":[70029,53165]},{"type":"Point","coordinates":[2078,43949]},{"type":"Point","coordinates":[1582,43728]},{"type":"Point","coordinates":[1676,43774]},{"type":"Point","coordinates":[1637,43757]},{"type":"Point","coordinates":[1630,43754]},{"type":"Point","coordinates":[2054,43946]},{"type":"Point","coordinates":[1580,43732]},{"type":"Point","coordinates":[1580,43733]},{"type":"Point","coordinates":[2078,43958]},{"type":"Point","coordinates":[1678,43779]},{"type":"Point","coordinates":[2048,43945]},{"type":"Point","coordinates":[1673,43777]},{"type":"Point","coordinates":[2063,43953]},{"type":"Point","coordinates":[2075,43960]},{"type":"Point","coordinates":[1642,43765]},{"type":"Point","coordinates":[2041,43945]},{"type":"Point","coordinates":[1624,43758]},{"type":"Point","coordinates":[1642,43767]},{"type":"Point","coordinates":[1642,43767]},{"type":"Point","coordinates":[2055,43953]},{"type":"Point","coordinates":[1665,43778]},{"type":"Point","coordinates":[1643,43770]},{"type":"Point","coordinates":[2072,43963]},{"type":"Point","coordinates":[2072,43963]},{"type":"Point","coordinates":[2072,43963]},{"type":"Point","coordinates":[1664,43780]},{"type":"Point","coordinates":[1668,43782]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1669,43782]},{"type":"Point","coordinates":[1669,43782]},{"type":"Point","coordinates":[1667,43783]},{"type":"Point","coordinates":[1666,43782]},{"type":"Point","coordinates":[1671,43785]},{"type":"Point","coordinates":[2047,43954]},{"type":"Point","coordinates":[1649,43775]},{"type":"Point","coordinates":[1667,43784]},{"type":"Point","coordinates":[1666,43783]},{"type":"Point","coordinates":[1661,43781]},{"type":"Point","coordinates":[1658,43780]},{"type":"Point","coordinates":[1652,43778]},{"type":"Point","coordinates":[1426,43676]},{"type":"Point","coordinates":[2075,43969]},{"type":"Point","coordinates":[1667,43787]},{"type":"Point","coordinates":[2039,43954]},{"type":"Point","coordinates":[1408,43670]},{"type":"Point","coordinates":[1668,43788]},{"type":"Point","coordinates":[1622,43768]},{"type":"Point","coordinates":[1668,43789]},{"type":"Point","coordinates":[19577,50344]},{"type":"Point","coordinates":[1663,43788]},{"type":"Point","coordinates":[1585,43753]},{"type":"Point","coordinates":[1670,43792]},{"type":"Point","coordinates":[1667,43791]},{"type":"Point","coordinates":[2045,43962]},{"type":"Point","coordinates":[1664,43792]},{"type":"Point","coordinates":[1666,43793]},{"type":"Point","coordinates":[1665,43793]},{"type":"Point","coordinates":[1664,43793]},{"type":"Point","coordinates":[1666,43794]},{"type":"Point","coordinates":[1666,43794]},{"type":"Point","coordinates":[1664,43793]},{"type":"Point","coordinates":[1664,43793]},{"type":"Point","coordinates":[1663,43793]},{"type":"Point","coordinates":[1723,43820]},{"type":"Point","coordinates":[1666,43795]},{"type":"Point","coordinates":[2094,43988]},{"type":"Point","coordinates":[1662,43794]},{"type":"Point","coordinates":[1664,43795]},{"type":"Point","coordinates":[1664,43795]},{"type":"Point","coordinates":[1664,43795]},{"type":"Point","coordinates":[1664,43795]},{"type":"Point","coordinates":[1664,43795]},{"type":"Point","coordinates":[1663,43796]},{"type":"Point","coordinates":[1662,43795]},{"type":"Point","coordinates":[2057,43974]},{"type":"Point","coordinates":[1661,43795]},{"type":"Point","coordinates":[2059,43975]},{"type":"Point","coordinates":[1661,43796]},{"type":"Point","coordinates":[2061,43976]},{"type":"Point","coordinates":[1661,43797]},{"type":"Point","coordinates":[1664,43798]},{"type":"Point","coordinates":[1664,43799]},{"type":"Point","coordinates":[1663,43799]},{"type":"Point","coordinates":[1662,43799]},{"type":"Point","coordinates":[1662,43799]},{"type":"Point","coordinates":[1615,43778]},{"type":"Point","coordinates":[1663,43800]},{"type":"Point","coordinates":[1662,43800]},{"type":"Point","coordinates":[1662,43800]},{"type":"Point","coordinates":[1662,43801]},{"type":"Point","coordinates":[1654,43798]},{"type":"Point","coordinates":[1640,43792]},{"type":"Point","coordinates":[1615,43780]},{"type":"Point","coordinates":[1586,43768]},{"type":"Point","coordinates":[1661,43801]},{"type":"Point","coordinates":[1663,43803]},{"type":"Point","coordinates":[1661,43803]},{"type":"Point","coordinates":[1614,43782]},{"type":"Point","coordinates":[1668,43807]},{"type":"Point","coordinates":[2108,44005]},{"type":"Point","coordinates":[1662,43805]},{"type":"Point","coordinates":[1670,43812]},{"type":"Point","coordinates":[2106,44009]},{"type":"Point","coordinates":[1664,43810]},{"type":"Point","coordinates":[1811,43877]},{"type":"Point","coordinates":[1584,43775]},{"type":"Point","coordinates":[1629,43797]},{"type":"Point","coordinates":[1609,43790]},{"type":"Point","coordinates":[1609,43790]},{"type":"Point","coordinates":[1609,43791]},{"type":"Point","coordinates":[1610,43791]},{"type":"Point","coordinates":[1583,43780]},{"type":"Point","coordinates":[1582,43781]},{"type":"Point","coordinates":[1614,43795]},{"type":"Point","coordinates":[1684,43827]},{"type":"Point","coordinates":[1684,43827]},{"type":"Point","coordinates":[1725,43846]},{"type":"Point","coordinates":[1726,43846]},{"type":"Point","coordinates":[1694,43832]},{"type":"Point","coordinates":[2031,43985]},{"type":"Point","coordinates":[1636,43807]},{"type":"Point","coordinates":[8294,46603]},{"type":"Point","coordinates":[1463,43730]},{"type":"Point","coordinates":[1633,43807]},{"type":"Point","coordinates":[1884,43921]},{"type":"Point","coordinates":[1606,43796]},{"type":"Point","coordinates":[1474,43737]},{"type":"Point","coordinates":[1577,43786]},{"type":"Point","coordinates":[69942,53242]},{"type":"Point","coordinates":[69941,53243]},{"type":"Point","coordinates":[1611,43803]},{"type":"Point","coordinates":[1493,43752]},{"type":"Point","coordinates":[1842,43911]},{"type":"Point","coordinates":[1491,43754]},{"type":"Point","coordinates":[1529,43772]},{"type":"Point","coordinates":[2100,44032]},{"type":"Point","coordinates":[1627,43822]},{"type":"Point","coordinates":[1566,43795]},{"type":"Point","coordinates":[1760,43892]},{"type":"Point","coordinates":[1824,43926]},{"type":"Point","coordinates":[1567,43811]},{"type":"Point","coordinates":[1561,43809]},{"type":"Point","coordinates":[1905,43966]},{"type":"Point","coordinates":[2184,44105]},{"type":"Point","coordinates":[8270,46647]},{"type":"Point","coordinates":[1559,43834]},{"type":"Point","coordinates":[1832,43958]},{"type":"Point","coordinates":[2006,44036]},{"type":"Point","coordinates":[1538,43836]},{"type":"Point","coordinates":[1697,43909]},{"type":"Point","coordinates":[76151,52106]},{"type":"Point","coordinates":[1696,43910]},{"type":"Point","coordinates":[8391,46716]},{"type":"Point","coordinates":[1827,43972]},{"type":"Point","coordinates":[1429,43794]},{"type":"Point","coordinates":[1485,43821]},{"type":"Point","coordinates":[1813,43970]},{"type":"Point","coordinates":[54073,54834]},{"type":"Point","coordinates":[1561,43858]},{"type":"Point","coordinates":[1830,43982]},{"type":"Point","coordinates":[1475,43826]},{"type":"Point","coordinates":[1780,43969]},{"type":"Point","coordinates":[80572,51060]},{"type":"Point","coordinates":[1556,43872]},{"type":"Point","coordinates":[8428,46755]},{"type":"Point","coordinates":[1556,43877]},{"type":"Point","coordinates":[79511,51342]},{"type":"Point","coordinates":[2736,44411]},{"type":"Point","coordinates":[1733,43965]},{"type":"Point","coordinates":[1557,43886]},{"type":"Point","coordinates":[1871,44028]},{"type":"Point","coordinates":[80549,51087]},{"type":"Point","coordinates":[80842,51011]},{"type":"Point","coordinates":[80547,51089]},{"type":"Point","coordinates":[1557,43893]},{"type":"Point","coordinates":[2139,44165]},{"type":"Point","coordinates":[1857,44041]},{"type":"Point","coordinates":[1555,43905]},{"type":"Point","coordinates":[1861,44047]},{"type":"Point","coordinates":[1858,44050]},{"type":"Point","coordinates":[1553,43918]},{"type":"Point","coordinates":[1862,44059]},{"type":"Point","coordinates":[8427,46806]},{"type":"Point","coordinates":[1552,43931]},{"type":"Point","coordinates":[1860,44076]},{"type":"Point","coordinates":[1546,43944]},{"type":"Point","coordinates":[2472,44360]},{"type":"Point","coordinates":[1474,43918]},{"type":"Point","coordinates":[1549,43952]},{"type":"Point","coordinates":[5244,45559]},{"type":"Point","coordinates":[1474,43920]},{"type":"Point","coordinates":[1473,43921]},{"type":"Point","coordinates":[1463,43918]},{"type":"Point","coordinates":[1463,43918]},{"type":"Point","coordinates":[1462,43918]},{"type":"Point","coordinates":[1463,43919]},{"type":"Point","coordinates":[1451,43914]},{"type":"Point","coordinates":[1463,43920]},{"type":"Point","coordinates":[1450,43916]},{"type":"Point","coordinates":[1450,43918]},{"type":"Point","coordinates":[1450,43919]},{"type":"Point","coordinates":[1818,44085]},{"type":"Point","coordinates":[1859,44107]},{"type":"Point","coordinates":[1543,43965]},{"type":"Point","coordinates":[1540,43965]},{"type":"Point","coordinates":[1474,43936]},{"type":"Point","coordinates":[1942,44154]},{"type":"Point","coordinates":[8507,46893]},{"type":"Point","coordinates":[1931,44152]},{"type":"Point","coordinates":[1559,43988]},{"type":"Point","coordinates":[1527,43978]},{"type":"Point","coordinates":[19522,50576]},{"type":"Point","coordinates":[1465,43976]},{"type":"Point","coordinates":[1770,44116]},{"type":"Point","coordinates":[1771,44120]},{"type":"Point","coordinates":[1773,44125]},{"type":"Point","coordinates":[1870,44169]},{"type":"Point","coordinates":[1832,44162]},{"type":"Point","coordinates":[1511,44017]},{"type":"Point","coordinates":[76395,52240]},{"type":"Point","coordinates":[2192,44332]},{"type":"Point","coordinates":[2008,44252]},{"type":"Point","coordinates":[1521,44033]},{"type":"Point","coordinates":[1514,44031]},{"type":"Point","coordinates":[2020,44261]},{"type":"Point","coordinates":[2069,44284]},{"type":"Point","coordinates":[1755,44150]},{"type":"Point","coordinates":[1929,44229]},{"type":"Point","coordinates":[2013,44268]},{"type":"Point","coordinates":[1801,44172]},{"type":"Point","coordinates":[2797,44617]},{"type":"Point","coordinates":[84845,50050]},{"type":"Point","coordinates":[71497,53254]},{"type":"Point","coordinates":[8388,46933]},{"type":"Point","coordinates":[1907,44229]},{"type":"Point","coordinates":[1907,44231]},{"type":"Point","coordinates":[1912,44235]},{"type":"Point","coordinates":[2224,44376]},{"type":"Point","coordinates":[1849,44208]},{"type":"Point","coordinates":[1537,44070]},{"type":"Point","coordinates":[1900,44234]},{"type":"Point","coordinates":[2029,44293]},{"type":"Point","coordinates":[1903,44237]},{"type":"Point","coordinates":[19446,50642]},{"type":"Point","coordinates":[1851,44216]},{"type":"Point","coordinates":[1899,44238]},{"type":"Point","coordinates":[2010,44289]},{"type":"Point","coordinates":[2005,44289]},{"type":"Point","coordinates":[1933,44257]},{"type":"Point","coordinates":[75975,52379]},{"type":"Point","coordinates":[2107,44336]},{"type":"Point","coordinates":[1994,44286]},{"type":"Point","coordinates":[75978,52380]},{"type":"Point","coordinates":[75974,52384]},{"type":"Point","coordinates":[2395,44470]},{"type":"Point","coordinates":[2225,44395]},{"type":"Point","coordinates":[1286,43973]},{"type":"Point","coordinates":[2394,44471]},{"type":"Point","coordinates":[2814,44659]},{"type":"Point","coordinates":[2104,44347]},{"type":"Point","coordinates":[1902,44257]},{"type":"Point","coordinates":[1457,44058]},{"type":"Point","coordinates":[1916,44266]},{"type":"Point","coordinates":[2107,44355]},{"type":"Point","coordinates":[1530,44096]},{"type":"Point","coordinates":[75976,52400]},{"type":"Point","coordinates":[1753,44199]},{"type":"Point","coordinates":[1771,44208]},{"type":"Point","coordinates":[6992,46427]},{"type":"Point","coordinates":[1745,44199]},{"type":"Point","coordinates":[2108,44362]},{"type":"Point","coordinates":[1860,44251]},{"type":"Point","coordinates":[1771,44212]},{"type":"Point","coordinates":[1560,44118]},{"type":"Point","coordinates":[1912,44277]},{"type":"Point","coordinates":[1378,44037]},{"type":"Point","coordinates":[1955,44299]},{"type":"Point","coordinates":[2397,44497]},{"type":"Point","coordinates":[1528,44108]},{"type":"Point","coordinates":[82367,50822]},{"type":"Point","coordinates":[2394,44499]},{"type":"Point","coordinates":[1770,44220]},{"type":"Point","coordinates":[1775,44223]},{"type":"Point","coordinates":[1812,44239]},{"type":"Point","coordinates":[1531,44116]},{"type":"Point","coordinates":[2008,44333]},{"type":"Point","coordinates":[2010,44338]},{"type":"Point","coordinates":[2120,44387]},{"type":"Point","coordinates":[76397,52331]},{"type":"Point","coordinates":[1684,44194]},{"type":"Point","coordinates":[1585,44150]},{"type":"Point","coordinates":[2437,44533]},{"type":"Point","coordinates":[1689,44199]},{"type":"Point","coordinates":[1527,44127]},{"type":"Point","coordinates":[1855,44276]},{"type":"Point","coordinates":[88544,48949]},{"type":"Point","coordinates":[76322,52360]},{"type":"Point","coordinates":[1737,44233]},{"type":"Point","coordinates":[1798,44262]},{"type":"Point","coordinates":[1589,44171]},{"type":"Point","coordinates":[1674,44212]},{"type":"Point","coordinates":[2435,44558]},{"type":"Point","coordinates":[1808,44283]},{"type":"Point","coordinates":[1722,44250]},{"type":"Point","coordinates":[2030,44393]},{"type":"Point","coordinates":[1845,44311]},{"type":"Point","coordinates":[1822,44302]},{"type":"Point","coordinates":[1736,44264]},{"type":"Point","coordinates":[1302,44072]},{"type":"Point","coordinates":[1842,44318]},{"type":"Point","coordinates":[1760,44284]},{"type":"Point","coordinates":[1934,44364]},{"type":"Point","coordinates":[1853,44329]},{"type":"Point","coordinates":[1821,44316]},{"type":"Point","coordinates":[1821,44316]},{"type":"Point","coordinates":[1821,44316]},{"type":"Point","coordinates":[2105,44444]},{"type":"Point","coordinates":[1800,44310]},{"type":"Point","coordinates":[1799,44312]},{"type":"Point","coordinates":[1822,44323]},{"type":"Point","coordinates":[1881,44350]},{"type":"Point","coordinates":[1987,44406]},{"type":"Point","coordinates":[2106,44459]},{"type":"Point","coordinates":[1736,44300]},{"type":"Point","coordinates":[1818,44338]},{"type":"Point","coordinates":[1890,44372]},{"type":"Point","coordinates":[1725,44301]},{"type":"Point","coordinates":[1726,44302]},{"type":"Point","coordinates":[1814,44342]},{"type":"Point","coordinates":[1889,44376]},{"type":"Point","coordinates":[1896,44379]},{"type":"Point","coordinates":[1743,44311]},{"type":"Point","coordinates":[1844,44357]},{"type":"Point","coordinates":[1754,44317]},{"type":"Point","coordinates":[1748,44314]},{"type":"Point","coordinates":[1896,44381]},{"type":"Point","coordinates":[1832,44354]},{"type":"Point","coordinates":[76229,52465]},{"type":"Point","coordinates":[1753,44322]},{"type":"Point","coordinates":[1753,44322]},{"type":"Point","coordinates":[1859,44371]},{"type":"Point","coordinates":[1859,44371]},{"type":"Point","coordinates":[2342,44587]},{"type":"Point","coordinates":[1738,44317]},{"type":"Point","coordinates":[1967,44420]},{"type":"Point","coordinates":[1822,44356]},{"type":"Point","coordinates":[1738,44318]},{"type":"Point","coordinates":[1738,44318]},{"type":"Point","coordinates":[1966,44420]},{"type":"Point","coordinates":[1745,44321]},{"type":"Point","coordinates":[1840,44364]},{"type":"Point","coordinates":[1840,44364]},{"type":"Point","coordinates":[1739,44319]},{"type":"Point","coordinates":[1743,44321]},{"type":"Point","coordinates":[1739,44319]},{"type":"Point","coordinates":[1738,44319]},{"type":"Point","coordinates":[1744,44321]},{"type":"Point","coordinates":[1739,44319]},{"type":"Point","coordinates":[1738,44319]},{"type":"Point","coordinates":[1738,44319]},{"type":"Point","coordinates":[1738,44319]},{"type":"Point","coordinates":[1739,44320]},{"type":"Point","coordinates":[1739,44320]},{"type":"Point","coordinates":[1738,44320]},{"type":"Point","coordinates":[1735,44318]},{"type":"Point","coordinates":[1738,44320]},{"type":"Point","coordinates":[1738,44320]},{"type":"Point","coordinates":[1739,44320]},{"type":"Point","coordinates":[1738,44320]},{"type":"Point","coordinates":[1738,44320]},{"type":"Point","coordinates":[1889,44388]},{"type":"Point","coordinates":[1863,44376]},{"type":"Point","coordinates":[1737,44322]},{"type":"Point","coordinates":[1877,44386]},{"type":"Point","coordinates":[1879,44387]},{"type":"Point","coordinates":[1738,44326]},{"type":"Point","coordinates":[1754,44340]},{"type":"Point","coordinates":[1980,44444]},{"type":"Point","coordinates":[1504,44230]},{"type":"Point","coordinates":[1624,44288]},{"type":"Point","coordinates":[1881,44408]},{"type":"Point","coordinates":[2357,44621]},{"type":"Point","coordinates":[1934,44433]},{"type":"Point","coordinates":[1870,44405]},{"type":"Point","coordinates":[88262,49163]},{"type":"Point","coordinates":[2173,44542]},{"type":"Point","coordinates":[88262,49164]},{"type":"Point","coordinates":[1881,44416]},{"type":"Point","coordinates":[1302,44155]},{"type":"Point","coordinates":[2445,44669]},{"type":"Point","coordinates":[2158,44543]},{"type":"Point","coordinates":[1860,44410]},{"type":"Point","coordinates":[1864,44412]},{"type":"Point","coordinates":[1869,44415]},{"type":"Point","coordinates":[1864,44413]},{"type":"Point","coordinates":[1864,44413]},{"type":"Point","coordinates":[1869,44415]},{"type":"Point","coordinates":[1868,44415]},{"type":"Point","coordinates":[1863,44413]},{"type":"Point","coordinates":[1864,44413]},{"type":"Point","coordinates":[1864,44413]},{"type":"Point","coordinates":[1864,44413]},{"type":"Point","coordinates":[1864,44413]},{"type":"Point","coordinates":[1864,44413]},{"type":"Point","coordinates":[1887,44424]},{"type":"Point","coordinates":[1782,44378]},{"type":"Point","coordinates":[1783,44378]},{"type":"Point","coordinates":[1736,44357]},{"type":"Point","coordinates":[1783,44380]},{"type":"Point","coordinates":[1872,44421]},{"type":"Point","coordinates":[2106,44526]},{"type":"Point","coordinates":[2106,44526]},{"type":"Point","coordinates":[19290,50790]},{"type":"Point","coordinates":[1867,44420]},{"type":"Point","coordinates":[1771,44378]},{"type":"Point","coordinates":[1864,44420]},{"type":"Point","coordinates":[2105,44528]},{"type":"Point","coordinates":[2105,44528]},{"type":"Point","coordinates":[1863,44420]},{"type":"Point","coordinates":[2104,44528]},{"type":"Point","coordinates":[2104,44528]},{"type":"Point","coordinates":[1869,44423]},{"type":"Point","coordinates":[1651,44325]},{"type":"Point","coordinates":[2103,44529]},{"type":"Point","coordinates":[2103,44529]},{"type":"Point","coordinates":[1870,44424]},{"type":"Point","coordinates":[1869,44424]},{"type":"Point","coordinates":[1869,44424]},{"type":"Point","coordinates":[1867,44424]},{"type":"Point","coordinates":[2210,44577]},{"type":"Point","coordinates":[1870,44425]},{"type":"Point","coordinates":[1870,44425]},{"type":"Point","coordinates":[1870,44425]},{"type":"Point","coordinates":[1872,44426]},{"type":"Point","coordinates":[1872,44427]},{"type":"Point","coordinates":[1870,44426]},{"type":"Point","coordinates":[1868,44425]},{"type":"Point","coordinates":[1872,44427]},{"type":"Point","coordinates":[1872,44427]},{"type":"Point","coordinates":[1872,44427]},{"type":"Point","coordinates":[1870,44427]},{"type":"Point","coordinates":[1870,44427]},{"type":"Point","coordinates":[1873,44428]},{"type":"Point","coordinates":[1872,44428]},{"type":"Point","coordinates":[1872,44428]},{"type":"Point","coordinates":[1870,44428]},{"type":"Point","coordinates":[1871,44428]},{"type":"Point","coordinates":[1874,44430]},{"type":"Point","coordinates":[1873,44430]},{"type":"Point","coordinates":[1873,44430]},{"type":"Point","coordinates":[1870,44429]},{"type":"Point","coordinates":[1868,44428]},{"type":"Point","coordinates":[1873,44431]},{"type":"Point","coordinates":[1870,44430]},{"type":"Point","coordinates":[1869,44430]},{"type":"Point","coordinates":[1875,44433]},{"type":"Point","coordinates":[1871,44431]},{"type":"Point","coordinates":[1869,44430]},{"type":"Point","coordinates":[1869,44430]},{"type":"Point","coordinates":[1872,44431]},{"type":"Point","coordinates":[1874,44433]},{"type":"Point","coordinates":[1880,44436]},{"type":"Point","coordinates":[1869,44431]},{"type":"Point","coordinates":[1872,44433]},{"type":"Point","coordinates":[1870,44432]},{"type":"Point","coordinates":[1872,44433]},{"type":"Point","coordinates":[1872,44434]},{"type":"Point","coordinates":[1869,44433]},{"type":"Point","coordinates":[1868,44432]},{"type":"Point","coordinates":[1872,44434]},{"type":"Point","coordinates":[1872,44434]},{"type":"Point","coordinates":[1868,44433]},{"type":"Point","coordinates":[1872,44435]},{"type":"Point","coordinates":[1870,44435]},{"type":"Point","coordinates":[1875,44437]},{"type":"Point","coordinates":[73467,53102]},{"type":"Point","coordinates":[1874,44438]},{"type":"Point","coordinates":[1873,44438]},{"type":"Point","coordinates":[1873,44438]},{"type":"Point","coordinates":[1874,44440]},{"type":"Point","coordinates":[1875,44440]},{"type":"Point","coordinates":[1875,44440]},{"type":"Point","coordinates":[1873,44439]},{"type":"Point","coordinates":[1875,44440]},{"type":"Point","coordinates":[1874,44440]},{"type":"Point","coordinates":[1875,44441]},{"type":"Point","coordinates":[1873,44440]},{"type":"Point","coordinates":[1874,44440]},{"type":"Point","coordinates":[1874,44441]},{"type":"Point","coordinates":[1876,44442]},{"type":"Point","coordinates":[1874,44441]},{"type":"Point","coordinates":[1874,44441]},{"type":"Point","coordinates":[1875,44442]},{"type":"Point","coordinates":[1874,44442]},{"type":"Point","coordinates":[1896,44453]},{"type":"Point","coordinates":[1873,44443]},{"type":"Point","coordinates":[1877,44445]},{"type":"Point","coordinates":[1897,44454]},{"type":"Point","coordinates":[1873,44444]},{"type":"Point","coordinates":[1901,44456]},{"type":"Point","coordinates":[1876,44445]},{"type":"Point","coordinates":[2273,44623]},{"type":"Point","coordinates":[1878,44448]},{"type":"Point","coordinates":[19284,50812]},{"type":"Point","coordinates":[19282,50812]},{"type":"Point","coordinates":[1876,44448]},{"type":"Point","coordinates":[1875,44449]},{"type":"Point","coordinates":[1711,44376]},{"type":"Point","coordinates":[1892,44458]},{"type":"Point","coordinates":[1892,44459]},{"type":"Point","coordinates":[1891,44459]},{"type":"Point","coordinates":[2241,44616]},{"type":"Point","coordinates":[1868,44451]},{"type":"Point","coordinates":[2187,44597]},{"type":"Point","coordinates":[1478,44279]},{"type":"Point","coordinates":[1904,44473]},{"type":"Point","coordinates":[1900,44471]},{"type":"Point","coordinates":[1873,44459]},{"type":"Point","coordinates":[2303,44652]},{"type":"Point","coordinates":[2175,44596]},{"type":"Point","coordinates":[1902,44474]},{"type":"Point","coordinates":[1899,44473]},{"type":"Point","coordinates":[1896,44472]},{"type":"Point","coordinates":[1880,44467]},{"type":"Point","coordinates":[1878,44466]},{"type":"Point","coordinates":[1906,44479]},{"type":"Point","coordinates":[1893,44474]},{"type":"Point","coordinates":[19274,50828]},{"type":"Point","coordinates":[1593,44341]},{"type":"Point","coordinates":[1885,44473]},{"type":"Point","coordinates":[1885,44473]},{"type":"Point","coordinates":[2201,44615]},{"type":"Point","coordinates":[1448,44277]},{"type":"Point","coordinates":[1878,44472]},{"type":"Point","coordinates":[1896,44481]},{"type":"Point","coordinates":[2115,44580]},{"type":"Point","coordinates":[19268,50836]},{"type":"Point","coordinates":[2136,44594]},{"type":"Point","coordinates":[2155,44604]},{"type":"Point","coordinates":[1266,44206]},{"type":"Point","coordinates":[2153,44610]},{"type":"Point","coordinates":[1877,44486]},{"type":"Point","coordinates":[1842,44471]},{"type":"Point","coordinates":[2114,44594]},{"type":"Point","coordinates":[1824,44467]},{"type":"Point","coordinates":[1824,44467]},{"type":"Point","coordinates":[1827,44468]},{"type":"Point","coordinates":[1822,44467]},{"type":"Point","coordinates":[2359,44707]},{"type":"Point","coordinates":[1819,44466]},{"type":"Point","coordinates":[2207,44640]},{"type":"Point","coordinates":[1879,44493]},{"type":"Point","coordinates":[1880,44494]},{"type":"Point","coordinates":[1825,44469]},{"type":"Point","coordinates":[7341,46801]},{"type":"Point","coordinates":[1818,44468]},{"type":"Point","coordinates":[2208,44642]},{"type":"Point","coordinates":[7331,46798]},{"type":"Point","coordinates":[1890,44501]},{"type":"Point","coordinates":[1819,44470]},{"type":"Point","coordinates":[7329,46799]},{"type":"Point","coordinates":[1829,44476]},{"type":"Point","coordinates":[1877,44498]},{"type":"Point","coordinates":[7329,46801]},{"type":"Point","coordinates":[7330,46802]},{"type":"Point","coordinates":[1325,44249]},{"type":"Point","coordinates":[7330,46803]},{"type":"Point","coordinates":[7331,46803]},{"type":"Point","coordinates":[1873,44498]},{"type":"Point","coordinates":[7330,46803]},{"type":"Point","coordinates":[7332,46804]},{"type":"Point","coordinates":[1822,44476]},{"type":"Point","coordinates":[1911,44517]},{"type":"Point","coordinates":[1829,44481]},{"type":"Point","coordinates":[1821,44478]},{"type":"Point","coordinates":[1819,44477]},{"type":"Point","coordinates":[2153,44629]},{"type":"Point","coordinates":[1818,44479]},{"type":"Point","coordinates":[2125,44617]},{"type":"Point","coordinates":[1879,44508]},{"type":"Point","coordinates":[1879,44510]},{"type":"Point","coordinates":[1830,44490]},{"type":"Point","coordinates":[1903,44525]},{"type":"Point","coordinates":[1832,44494]},{"type":"Point","coordinates":[2143,44634]},{"type":"Point","coordinates":[1831,44494]},{"type":"Point","coordinates":[1887,44519]},{"type":"Point","coordinates":[1904,44527]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[1875,44516]},{"type":"Point","coordinates":[1825,44493]},{"type":"Point","coordinates":[1980,44563]},{"type":"Point","coordinates":[2495,44792]},{"type":"Point","coordinates":[1966,44557]},{"type":"Point","coordinates":[1966,44557]},{"type":"Point","coordinates":[1893,44524]},{"type":"Point","coordinates":[1965,44557]},{"type":"Point","coordinates":[1882,44520]},{"type":"Point","coordinates":[1858,44509]},{"type":"Point","coordinates":[2141,44636]},{"type":"Point","coordinates":[2145,44639]},{"type":"Point","coordinates":[2502,44798]},{"type":"Point","coordinates":[2520,44806]},{"type":"Point","coordinates":[1905,44533]},{"type":"Point","coordinates":[2101,44622]},{"type":"Point","coordinates":[1873,44519]},{"type":"Point","coordinates":[2105,44625]},{"type":"Point","coordinates":[1899,44536]},{"type":"Point","coordinates":[1903,44539]},{"type":"Point","coordinates":[1840,44511]},{"type":"Point","coordinates":[2086,44623]},{"type":"Point","coordinates":[1837,44512]},{"type":"Point","coordinates":[2087,44624]},{"type":"Point","coordinates":[2490,44804]},{"type":"Point","coordinates":[1926,44553]},{"type":"Point","coordinates":[2089,44626]},{"type":"Point","coordinates":[1876,44531]},{"type":"Point","coordinates":[2099,44632]},{"type":"Point","coordinates":[2516,44820]},{"type":"Point","coordinates":[2516,44821]},{"type":"Point","coordinates":[1835,44518]},{"type":"Point","coordinates":[2533,44829]},{"type":"Point","coordinates":[1876,44537]},{"type":"Point","coordinates":[2509,44819]},{"type":"Point","coordinates":[1868,44534]},{"type":"Point","coordinates":[1868,44534]},{"type":"Point","coordinates":[2513,44821]},{"type":"Point","coordinates":[2511,44821]},{"type":"Point","coordinates":[2093,44636]},{"type":"Point","coordinates":[1889,44545]},{"type":"Point","coordinates":[2090,44636]},{"type":"Point","coordinates":[2499,44818]},{"type":"Point","coordinates":[2505,44821]},{"type":"Point","coordinates":[2492,44818]},{"type":"Point","coordinates":[2516,44830]},{"type":"Point","coordinates":[2494,44822]},{"type":"Point","coordinates":[2129,44661]},{"type":"Point","coordinates":[2150,44672]},{"type":"Point","coordinates":[1854,44540]},{"type":"Point","coordinates":[2492,44826]},{"type":"Point","coordinates":[2496,44829]},{"type":"Point","coordinates":[2319,44752]},{"type":"Point","coordinates":[2008,44615]},{"type":"Point","coordinates":[2497,44833]},{"type":"Point","coordinates":[2509,44840]},{"type":"Point","coordinates":[1836,44541]},{"type":"Point","coordinates":[87973,49406]},{"type":"Point","coordinates":[2004,44617]},{"type":"Point","coordinates":[2004,44617]},{"type":"Point","coordinates":[2004,44617]},{"type":"Point","coordinates":[2004,44617]},{"type":"Point","coordinates":[2004,44617]},{"type":"Point","coordinates":[2004,44617]},{"type":"Point","coordinates":[2004,44617]},{"type":"Point","coordinates":[2522,44849]},{"type":"Point","coordinates":[1846,44550]},{"type":"Point","coordinates":[2005,44622]},{"type":"Point","coordinates":[2500,44843]},{"type":"Point","coordinates":[2005,44624]},{"type":"Point","coordinates":[2005,44624]},{"type":"Point","coordinates":[1858,44558]},{"type":"Point","coordinates":[2137,44684]},{"type":"Point","coordinates":[2522,44855]},{"type":"Point","coordinates":[2651,44912]},{"type":"Point","coordinates":[1843,44553]},{"type":"Point","coordinates":[1861,44561]},{"type":"Point","coordinates":[1848,44555]},{"type":"Point","coordinates":[2545,44866]},{"type":"Point","coordinates":[1853,44558]},{"type":"Point","coordinates":[1858,44561]},{"type":"Point","coordinates":[1975,44615]},{"type":"Point","coordinates":[1845,44557]},{"type":"Point","coordinates":[1855,44561]},{"type":"Point","coordinates":[1855,44561]},{"type":"Point","coordinates":[1851,44564]},{"type":"Point","coordinates":[1846,44561]},{"type":"Point","coordinates":[1869,44573]},{"type":"Point","coordinates":[1859,44569]},{"type":"Point","coordinates":[1847,44564]},{"type":"Point","coordinates":[1963,44616]},{"type":"Point","coordinates":[2135,44693]},{"type":"Point","coordinates":[1962,44617]},{"type":"Point","coordinates":[1848,44566]},{"type":"Point","coordinates":[1855,44570]},{"type":"Point","coordinates":[1847,44567]},{"type":"Point","coordinates":[1855,44570]},{"type":"Point","coordinates":[2139,44699]},{"type":"Point","coordinates":[2511,44866]},{"type":"Point","coordinates":[1839,44566]},{"type":"Point","coordinates":[1845,44569]},{"type":"Point","coordinates":[1854,44574]},{"type":"Point","coordinates":[79015,52012]},{"type":"Point","coordinates":[1854,44575]},{"type":"Point","coordinates":[1854,44575]},{"type":"Point","coordinates":[2512,44868]},{"type":"Point","coordinates":[2512,44868]},{"type":"Point","coordinates":[1847,44572]},{"type":"Point","coordinates":[1837,44568]},{"type":"Point","coordinates":[1856,44577]},{"type":"Point","coordinates":[1854,44576]},{"type":"Point","coordinates":[1854,44576]},{"type":"Point","coordinates":[1855,44577]},{"type":"Point","coordinates":[1847,44574]},{"type":"Point","coordinates":[1868,44583]},{"type":"Point","coordinates":[1848,44575]},{"type":"Point","coordinates":[1847,44575]},{"type":"Point","coordinates":[2133,44703]},{"type":"Point","coordinates":[1852,44579]},{"type":"Point","coordinates":[1958,44627]},{"type":"Point","coordinates":[1852,44579]},{"type":"Point","coordinates":[1842,44575]},{"type":"Point","coordinates":[1848,44578]},{"type":"Point","coordinates":[1858,44582]},{"type":"Point","coordinates":[1849,44579]},{"type":"Point","coordinates":[1849,44580]},{"type":"Point","coordinates":[1848,44579]},{"type":"Point","coordinates":[1855,44582]},{"type":"Point","coordinates":[1955,44627]},{"type":"Point","coordinates":[1856,44584]},{"type":"Point","coordinates":[1849,44581]},{"type":"Point","coordinates":[1865,44588]},{"type":"Point","coordinates":[2126,44706]},{"type":"Point","coordinates":[1848,44581]},{"type":"Point","coordinates":[1836,44577]},{"type":"Point","coordinates":[1862,44589]},{"type":"Point","coordinates":[2145,44716]},{"type":"Point","coordinates":[1842,44580]},{"type":"Point","coordinates":[79016,52023]},{"type":"Point","coordinates":[1843,44581]},{"type":"Point","coordinates":[2138,44714]},{"type":"Point","coordinates":[1850,44585]},{"type":"Point","coordinates":[1848,44584]},{"type":"Point","coordinates":[2145,44717]},{"type":"Point","coordinates":[2145,44717]},{"type":"Point","coordinates":[2127,44709]},{"type":"Point","coordinates":[1850,44586]},{"type":"Point","coordinates":[1850,44586]},{"type":"Point","coordinates":[1860,44591]},{"type":"Point","coordinates":[79018,52025]},{"type":"Point","coordinates":[2131,44713]},{"type":"Point","coordinates":[1842,44584]},{"type":"Point","coordinates":[1863,44594]},{"type":"Point","coordinates":[1864,44594]},{"type":"Point","coordinates":[1844,44586]},{"type":"Point","coordinates":[1859,44593]},{"type":"Point","coordinates":[1833,44583]},{"type":"Point","coordinates":[1858,44595]},{"type":"Point","coordinates":[1978,44649]},{"type":"Point","coordinates":[1846,44590]},{"type":"Point","coordinates":[79017,52031]},{"type":"Point","coordinates":[1868,44601]},{"type":"Point","coordinates":[1831,44585]},{"type":"Point","coordinates":[1879,44608]},{"type":"Point","coordinates":[1839,44590]},{"type":"Point","coordinates":[2727,44985]},{"type":"Point","coordinates":[1867,44603]},{"type":"Point","coordinates":[1846,44594]},{"type":"Point","coordinates":[2742,44993]},{"type":"Point","coordinates":[1935,44635]},{"type":"Point","coordinates":[1848,44597]},{"type":"Point","coordinates":[1871,44609]},{"type":"Point","coordinates":[2128,44724]},{"type":"Point","coordinates":[1848,44600]},{"type":"Point","coordinates":[1829,44593]},{"type":"Point","coordinates":[1829,44594]},{"type":"Point","coordinates":[1843,44600]},{"type":"Point","coordinates":[1979,44664]},{"type":"Point","coordinates":[2103,44720]},{"type":"Point","coordinates":[1978,44665]},{"type":"Point","coordinates":[2093,44719]},{"type":"Point","coordinates":[1971,44667]},{"type":"Point","coordinates":[2022,44690]},{"type":"Point","coordinates":[1878,44627]},{"type":"Point","coordinates":[79012,52055]},{"type":"Point","coordinates":[2126,44739]},{"type":"Point","coordinates":[1903,44641]},{"type":"Point","coordinates":[1870,44627]},{"type":"Point","coordinates":[1876,44629]},{"type":"Point","coordinates":[1870,44627]},{"type":"Point","coordinates":[1822,44609]},{"type":"Point","coordinates":[1915,44651]},{"type":"Point","coordinates":[1836,44616]},{"type":"Point","coordinates":[1931,44660]},{"type":"Point","coordinates":[2117,44743]},{"type":"Point","coordinates":[2118,44745]},{"type":"Point","coordinates":[2125,44749]},{"type":"Point","coordinates":[2125,44749]},{"type":"Point","coordinates":[1749,44581]},{"type":"Point","coordinates":[1749,44581]},{"type":"Point","coordinates":[1871,44636]},{"type":"Point","coordinates":[1748,44582]},{"type":"Point","coordinates":[1747,44583]},{"type":"Point","coordinates":[2120,44750]},{"type":"Point","coordinates":[2121,44751]},{"type":"Point","coordinates":[2082,44734]},{"type":"Point","coordinates":[69429,54023]},{"type":"Point","coordinates":[2122,44754]},{"type":"Point","coordinates":[2127,44757]},{"type":"Point","coordinates":[88010,49480]},{"type":"Point","coordinates":[2126,44759]},{"type":"Point","coordinates":[76155,52745]},{"type":"Point","coordinates":[2127,44761]},{"type":"Point","coordinates":[1795,44613]},{"type":"Point","coordinates":[1840,44633]},{"type":"Point","coordinates":[2126,44761]},{"type":"Point","coordinates":[1795,44613]},{"type":"Point","coordinates":[1838,44633]},{"type":"Point","coordinates":[7393,46979]},{"type":"Point","coordinates":[2153,44780]},{"type":"Point","coordinates":[1880,44659]},{"type":"Point","coordinates":[2127,44770]},{"type":"Point","coordinates":[2139,44776]},{"type":"Point","coordinates":[2128,44771]},{"type":"Point","coordinates":[1836,44644]},{"type":"Point","coordinates":[1922,44685]},{"type":"Point","coordinates":[1922,44685]},{"type":"Point","coordinates":[2121,44776]},{"type":"Point","coordinates":[2124,44786]},{"type":"Point","coordinates":[1902,44687]},{"type":"Point","coordinates":[1809,44646]},{"type":"Point","coordinates":[2123,44789]},{"type":"Point","coordinates":[1860,44672]},{"type":"Point","coordinates":[2100,44784]},{"type":"Point","coordinates":[1856,44676]},{"type":"Point","coordinates":[1846,44674]},{"type":"Point","coordinates":[1837,44670]},{"type":"Point","coordinates":[1887,44696]},{"type":"Point","coordinates":[2098,44793]},{"type":"Point","coordinates":[1822,44670]},{"type":"Point","coordinates":[1786,44655]},{"type":"Point","coordinates":[2038,44770]},{"type":"Point","coordinates":[2102,44799]},{"type":"Point","coordinates":[2103,44800]},{"type":"Point","coordinates":[2346,44910]},{"type":"Point","coordinates":[2152,44824]},{"type":"Point","coordinates":[1773,44656]},{"type":"Point","coordinates":[1853,44696]},{"type":"Point","coordinates":[1912,44723]},{"type":"Point","coordinates":[1912,44723]},{"type":"Point","coordinates":[1625,44594]},{"type":"Point","coordinates":[1878,44709]},{"type":"Point","coordinates":[1878,44709]},{"type":"Point","coordinates":[1883,44712]},{"type":"Point","coordinates":[1912,44725]},{"type":"Point","coordinates":[1838,44693]},{"type":"Point","coordinates":[1882,44721]},{"type":"Point","coordinates":[81111,51608]},{"type":"Point","coordinates":[1696,44641]},{"type":"Point","coordinates":[1835,44711]},{"type":"Point","coordinates":[2359,44947]},{"type":"Point","coordinates":[2125,44845]},{"type":"Point","coordinates":[1996,44789]},{"type":"Point","coordinates":[87188,49839]},{"type":"Point","coordinates":[1775,44696]},{"type":"Point","coordinates":[1820,44720]},{"type":"Point","coordinates":[1824,44724]},{"type":"Point","coordinates":[1824,44725]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1825,44726]},{"type":"Point","coordinates":[1825,44726]},{"type":"Point","coordinates":[1998,44804]},{"type":"Point","coordinates":[1857,44755]},{"type":"Point","coordinates":[1819,44739]},{"type":"Point","coordinates":[2281,44947]},{"type":"Point","coordinates":[1817,44745]},{"type":"Point","coordinates":[1827,44750]},{"type":"Point","coordinates":[1878,44774]},{"type":"Point","coordinates":[87176,49882]},{"type":"Point","coordinates":[87176,49882]},{"type":"Point","coordinates":[87177,49882]},{"type":"Point","coordinates":[69400,54162]},{"type":"Point","coordinates":[87252,49860]},{"type":"Point","coordinates":[1826,44762]},{"type":"Point","coordinates":[1812,44759]},{"type":"Point","coordinates":[2273,44978]},{"type":"Point","coordinates":[87199,49975]},{"type":"Point","coordinates":[8224,47544]},{"type":"Point","coordinates":[25133,52751]},{"type":"Point","coordinates":[87260,49971]},{"type":"Point","coordinates":[1958,44950]},{"type":"Point","coordinates":[2179,45052]},{"type":"Point","coordinates":[87252,49998]},{"type":"Point","coordinates":[2215,45078]},{"type":"Point","coordinates":[76225,53001]},{"type":"Point","coordinates":[79703,52204]},{"type":"Point","coordinates":[54416,55749]},{"type":"Point","coordinates":[79714,52206]},{"type":"Point","coordinates":[79700,52211]},{"type":"Point","coordinates":[89043,49447]},{"type":"Point","coordinates":[79736,52204]},{"type":"Point","coordinates":[89047,49451]},{"type":"Point","coordinates":[89046,49453]},{"type":"Point","coordinates":[89047,49456]},{"type":"Point","coordinates":[89061,49455]},{"type":"Point","coordinates":[2614,45309]},{"type":"Point","coordinates":[66422,54800]},{"type":"Point","coordinates":[76752,52954]},{"type":"Point","coordinates":[66430,54815]},{"type":"Point","coordinates":[28618,53609]},{"type":"Point","coordinates":[68497,54537]},{"type":"Point","coordinates":[8282,47713]},{"type":"Point","coordinates":[8282,47713]},{"type":"Point","coordinates":[8282,47713]},{"type":"Point","coordinates":[8282,47713]},{"type":"Point","coordinates":[21524,52037]},{"type":"Point","coordinates":[88925,49596]},{"type":"Point","coordinates":[2197,45233]},{"type":"Point","coordinates":[88686,49700]},{"type":"Point","coordinates":[87045,50245]},{"type":"Point","coordinates":[80951,52029]},{"type":"Point","coordinates":[87042,50251]},{"type":"Point","coordinates":[87044,50258]},{"type":"Point","coordinates":[1599,44997]},{"type":"Point","coordinates":[87045,50262]},{"type":"Point","coordinates":[78172,52747]},{"type":"Point","coordinates":[87039,50282]},{"type":"Point","coordinates":[67518,54839]},{"type":"Point","coordinates":[78312,52774]},{"type":"Point","coordinates":[67811,54808]},{"type":"Point","coordinates":[68578,54696]},{"type":"Point","coordinates":[1716,45154]},{"type":"Point","coordinates":[89282,49649]},{"type":"Point","coordinates":[88207,50016]},{"type":"Point","coordinates":[66404,55068]},{"type":"Point","coordinates":[1747,45209]},{"type":"Point","coordinates":[6128,47088]},{"type":"Point","coordinates":[87679,50204]},{"type":"Point","coordinates":[2452,45546]},{"type":"Point","coordinates":[2323,45499]},{"type":"Point","coordinates":[2323,45499]},{"type":"Point","coordinates":[2323,45501]},{"type":"Point","coordinates":[87697,50231]},{"type":"Point","coordinates":[66392,55113]},{"type":"Point","coordinates":[7487,47667]},{"type":"Point","coordinates":[7487,47667]},{"type":"Point","coordinates":[87688,50238]},{"type":"Point","coordinates":[2324,45510]},{"type":"Point","coordinates":[87687,50240]},{"type":"Point","coordinates":[3002,45818]},{"type":"Point","coordinates":[81097,52200]},{"type":"Point","coordinates":[2333,45527]},{"type":"Point","coordinates":[76596,53305]},{"type":"Point","coordinates":[81095,52209]},{"type":"Point","coordinates":[2097,45431]},{"type":"Point","coordinates":[87687,50262]},{"type":"Point","coordinates":[87687,50263]},{"type":"Point","coordinates":[87687,50266]},{"type":"Point","coordinates":[87688,50267]},{"type":"Point","coordinates":[87687,50267]},{"type":"Point","coordinates":[8438,48077]},{"type":"Point","coordinates":[1697,45278]},{"type":"Point","coordinates":[66380,55169]},{"type":"Point","coordinates":[7445,47717]},{"type":"Point","coordinates":[2336,45588]},{"type":"Point","coordinates":[7440,47744]},{"type":"Point","coordinates":[2417,45654]},{"type":"Point","coordinates":[66401,55221]},{"type":"Point","coordinates":[66419,55221]},{"type":"Point","coordinates":[80855,52362]},{"type":"Point","coordinates":[66415,55226]},{"type":"Point","coordinates":[8010,47997]},{"type":"Point","coordinates":[66397,55253]},{"type":"Point","coordinates":[88762,50026]},{"type":"Point","coordinates":[66412,55263]},{"type":"Point","coordinates":[7478,47824]},{"type":"Point","coordinates":[8164,48095]},{"type":"Point","coordinates":[66386,55280]},{"type":"Point","coordinates":[7476,47845]},{"type":"Point","coordinates":[8566,48286]},{"type":"Point","coordinates":[8566,48287]},{"type":"Point","coordinates":[8597,48303]},{"type":"Point","coordinates":[78909,52958]},{"type":"Point","coordinates":[7644,47952]},{"type":"Point","coordinates":[8111,48137]},{"type":"Point","coordinates":[78852,52999]},{"type":"Point","coordinates":[2236,45718]},{"type":"Point","coordinates":[8534,48323]},{"type":"Point","coordinates":[2383,45801]},{"type":"Point","coordinates":[7413,47926]},{"type":"Point","coordinates":[7425,47936]},{"type":"Point","coordinates":[7427,47937]},{"type":"Point","coordinates":[7423,47937]},{"type":"Point","coordinates":[7424,47938]},{"type":"Point","coordinates":[7425,47938]},{"type":"Point","coordinates":[7423,47939]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47939]},{"type":"Point","coordinates":[7425,47939]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7424,47939]},{"type":"Point","coordinates":[7424,47939]},{"type":"Point","coordinates":[7423,47939]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7424,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7424,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47941]},{"type":"Point","coordinates":[7424,47940]},{"type":"Point","coordinates":[7425,47941]},{"type":"Point","coordinates":[7425,47941]},{"type":"Point","coordinates":[7425,47941]},{"type":"Point","coordinates":[7424,47941]},{"type":"Point","coordinates":[7424,47941]},{"type":"Point","coordinates":[7425,47941]},{"type":"Point","coordinates":[7424,47941]},{"type":"Point","coordinates":[7424,47941]},{"type":"Point","coordinates":[7424,47941]},{"type":"Point","coordinates":[7424,47941]},{"type":"Point","coordinates":[7423,47940]},{"type":"Point","coordinates":[7423,47941]},{"type":"Point","coordinates":[7423,47941]},{"type":"Point","coordinates":[7421,47941]},{"type":"Point","coordinates":[7425,47942]},{"type":"Point","coordinates":[7423,47942]},{"type":"Point","coordinates":[7422,47941]},{"type":"Point","coordinates":[7422,47941]},{"type":"Point","coordinates":[7422,47942]},{"type":"Point","coordinates":[7423,47942]},{"type":"Point","coordinates":[7417,47939]},{"type":"Point","coordinates":[7424,47943]},{"type":"Point","coordinates":[7420,47941]},{"type":"Point","coordinates":[7424,47943]},{"type":"Point","coordinates":[7423,47942]},{"type":"Point","coordinates":[7424,47943]},{"type":"Point","coordinates":[7422,47942]},{"type":"Point","coordinates":[7425,47944]},{"type":"Point","coordinates":[7421,47943]},{"type":"Point","coordinates":[7421,47943]},{"type":"Point","coordinates":[7421,47943]},{"type":"Point","coordinates":[7421,47943]},{"type":"Point","coordinates":[7419,47943]},{"type":"Point","coordinates":[7418,47943]},{"type":"Point","coordinates":[7421,47944]},{"type":"Point","coordinates":[7420,47944]},{"type":"Point","coordinates":[7421,47944]},{"type":"Point","coordinates":[7419,47944]},{"type":"Point","coordinates":[7420,47944]},{"type":"Point","coordinates":[7423,47946]},{"type":"Point","coordinates":[7415,47943]},{"type":"Point","coordinates":[7415,47943]},{"type":"Point","coordinates":[7421,47945]},{"type":"Point","coordinates":[7415,47943]},{"type":"Point","coordinates":[7415,47943]},{"type":"Point","coordinates":[7415,47943]},{"type":"Point","coordinates":[7418,47945]},{"type":"Point","coordinates":[7450,47958]},{"type":"Point","coordinates":[7763,48088]},{"type":"Point","coordinates":[7420,47954]},{"type":"Point","coordinates":[88882,50154]},{"type":"Point","coordinates":[7428,47963]},{"type":"Point","coordinates":[7434,47978]},{"type":"Point","coordinates":[7431,47977]},{"type":"Point","coordinates":[7433,47979]},{"type":"Point","coordinates":[7429,47979]},{"type":"Point","coordinates":[7428,47981]},{"type":"Point","coordinates":[2160,45785]},{"type":"Point","coordinates":[80285,52743]},{"type":"Point","coordinates":[66293,55470]},{"type":"Point","coordinates":[66302,55473]},{"type":"Point","coordinates":[66302,55473]},{"type":"Point","coordinates":[7426,48000]},{"type":"Point","coordinates":[20383,52316]},{"type":"Point","coordinates":[66316,55483]},{"type":"Point","coordinates":[6053,47469]},{"type":"Point","coordinates":[7408,48040]},{"type":"Point","coordinates":[7411,48046]},{"type":"Point","coordinates":[7410,48046]},{"type":"Point","coordinates":[20244,52327]},{"type":"Point","coordinates":[81170,52571]},{"type":"Point","coordinates":[81170,52573]},{"type":"Point","coordinates":[7417,48062]},{"type":"Point","coordinates":[7410,48061]},{"type":"Point","coordinates":[7420,48065]},{"type":"Point","coordinates":[7420,48065]},{"type":"Point","coordinates":[7419,48067]},{"type":"Point","coordinates":[2477,46018]},{"type":"Point","coordinates":[7501,48117]},{"type":"Point","coordinates":[7500,48120]},{"type":"Point","coordinates":[7504,48124]},{"type":"Point","coordinates":[2484,46033]},{"type":"Point","coordinates":[7499,48123]},{"type":"Point","coordinates":[7498,48129]},{"type":"Point","coordinates":[7499,48132]},{"type":"Point","coordinates":[7497,48131]},{"type":"Point","coordinates":[68531,55257]},{"type":"Point","coordinates":[7495,48132]},{"type":"Point","coordinates":[7532,48147]},{"type":"Point","coordinates":[56371,56463]},{"type":"Point","coordinates":[7494,48142]},{"type":"Point","coordinates":[7492,48142]},{"type":"Point","coordinates":[7503,48148]},{"type":"Point","coordinates":[7492,48146]},{"type":"Point","coordinates":[7492,48147]},{"type":"Point","coordinates":[7531,48165]},{"type":"Point","coordinates":[7534,48172]},{"type":"Point","coordinates":[7492,48157]},{"type":"Point","coordinates":[7493,48159]},{"type":"Point","coordinates":[7472,48152]},{"type":"Point","coordinates":[7472,48156]},{"type":"Point","coordinates":[7545,48197]},{"type":"Point","coordinates":[75259,54079]},{"type":"Point","coordinates":[20181,52407]},{"type":"Point","coordinates":[7505,48185]},{"type":"Point","coordinates":[7603,48225]},{"type":"Point","coordinates":[2130,45951]},{"type":"Point","coordinates":[7485,48194]},{"type":"Point","coordinates":[7523,48212]},{"type":"Point","coordinates":[20519,52523]},{"type":"Point","coordinates":[51189,56657]},{"type":"Point","coordinates":[7491,48213]},{"type":"Point","coordinates":[51191,56663]},{"type":"Point","coordinates":[8571,48648]},{"type":"Point","coordinates":[7471,48227]},{"type":"Point","coordinates":[7469,48231]},{"type":"Point","coordinates":[20420,52538]},{"type":"Point","coordinates":[56285,56607]},{"type":"Point","coordinates":[2170,46057]},{"type":"Point","coordinates":[7475,48280]},{"type":"Point","coordinates":[7571,48322]},{"type":"Point","coordinates":[20249,52538]},{"type":"Point","coordinates":[2194,46101]},{"type":"Point","coordinates":[2122,46072]},{"type":"Point","coordinates":[79081,53341]},{"type":"Point","coordinates":[20393,52613]},{"type":"Point","coordinates":[2111,46096]},{"type":"Point","coordinates":[2205,46148]},{"type":"Point","coordinates":[7636,48414]},{"type":"Point","coordinates":[7636,48415]},{"type":"Point","coordinates":[78881,53434]},{"type":"Point","coordinates":[2226,46175]},{"type":"Point","coordinates":[2057,46103]},{"type":"Point","coordinates":[78935,53438]},{"type":"Point","coordinates":[7879,48547]},{"type":"Point","coordinates":[78956,53449]},{"type":"Point","coordinates":[78938,53455]},{"type":"Point","coordinates":[78954,53454]},{"type":"Point","coordinates":[81083,52915]},{"type":"Point","coordinates":[78944,53462]},{"type":"Point","coordinates":[68172,55585]},{"type":"Point","coordinates":[7787,48529]},{"type":"Point","coordinates":[7611,48479]},{"type":"Point","coordinates":[7612,48481]},{"type":"Point","coordinates":[78127,53686]},{"type":"Point","coordinates":[68194,55616]},{"type":"Point","coordinates":[78451,53622]},{"type":"Point","coordinates":[1841,46085]},{"type":"Point","coordinates":[78971,53507]},{"type":"Point","coordinates":[7694,48548]},{"type":"Point","coordinates":[80493,53131]},{"type":"Point","coordinates":[7639,48530]},{"type":"Point","coordinates":[7257,48381]},{"type":"Point","coordinates":[1869,46119]},{"type":"Point","coordinates":[1828,46100]},{"type":"Point","coordinates":[1842,46107]},{"type":"Point","coordinates":[1823,46099]},{"type":"Point","coordinates":[1842,46109]},{"type":"Point","coordinates":[2110,46228]},{"type":"Point","coordinates":[20241,52718]},{"type":"Point","coordinates":[1822,46102]},{"type":"Point","coordinates":[1833,46107]},{"type":"Point","coordinates":[1823,46105]},{"type":"Point","coordinates":[1841,46114]},{"type":"Point","coordinates":[1841,46114]},{"type":"Point","coordinates":[88337,50831]},{"type":"Point","coordinates":[1827,46109]},{"type":"Point","coordinates":[1821,46107]},{"type":"Point","coordinates":[1824,46108]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1824,46109]},{"type":"Point","coordinates":[1823,46109]},{"type":"Point","coordinates":[77550,53876]},{"type":"Point","coordinates":[7775,48608]},{"type":"Point","coordinates":[67943,55711]},{"type":"Point","coordinates":[67944,55711]},{"type":"Point","coordinates":[67950,55711]},{"type":"Point","coordinates":[7688,48583]},{"type":"Point","coordinates":[78994,53552]},{"type":"Point","coordinates":[65926,56002]},{"type":"Point","coordinates":[65925,56002]},{"type":"Point","coordinates":[65925,56002]},{"type":"Point","coordinates":[7799,48647]},{"type":"Point","coordinates":[7789,48644]},{"type":"Point","coordinates":[7820,48657]},{"type":"Point","coordinates":[1801,46155]},{"type":"Point","coordinates":[1801,46155]},{"type":"Point","coordinates":[1801,46155]},{"type":"Point","coordinates":[1801,46155]},{"type":"Point","coordinates":[7760,48649]},{"type":"Point","coordinates":[2337,46397]},{"type":"Point","coordinates":[2336,46397]},{"type":"Point","coordinates":[65917,56031]},{"type":"Point","coordinates":[7740,48645]},{"type":"Point","coordinates":[1851,46200]},{"type":"Point","coordinates":[1863,46210]},{"type":"Point","coordinates":[2246,46382]},{"type":"Point","coordinates":[84771,52039]},{"type":"Point","coordinates":[7664,48643]},{"type":"Point","coordinates":[7805,48700]},{"type":"Point","coordinates":[1829,46205]},{"type":"Point","coordinates":[2001,46284]},{"type":"Point","coordinates":[1769,46181]},{"type":"Point","coordinates":[2001,46285]},{"type":"Point","coordinates":[2002,46285]},{"type":"Point","coordinates":[2002,46286]},{"type":"Point","coordinates":[2002,46285]},{"type":"Point","coordinates":[1833,46211]},{"type":"Point","coordinates":[1895,46239]},{"type":"Point","coordinates":[7753,48686]},{"type":"Point","coordinates":[1836,46215]},{"type":"Point","coordinates":[78387,53772]},{"type":"Point","coordinates":[1825,46211]},{"type":"Point","coordinates":[7779,48699]},{"type":"Point","coordinates":[1866,46230]},{"type":"Point","coordinates":[1841,46219]},{"type":"Point","coordinates":[1836,46217]},{"type":"Point","coordinates":[1826,46213]},{"type":"Point","coordinates":[7778,48701]},{"type":"Point","coordinates":[2000,46292]},{"type":"Point","coordinates":[2000,46292]},{"type":"Point","coordinates":[1808,46208]},{"type":"Point","coordinates":[7772,48702]},{"type":"Point","coordinates":[2267,46414]},{"type":"Point","coordinates":[1808,46210]},{"type":"Point","coordinates":[6462,48187]},{"type":"Point","coordinates":[7907,48761]},{"type":"Point","coordinates":[1844,46233]},{"type":"Point","coordinates":[1808,46217]},{"type":"Point","coordinates":[1821,46230]},{"type":"Point","coordinates":[1821,46230]},{"type":"Point","coordinates":[7744,48707]},{"type":"Point","coordinates":[7760,48728]},{"type":"Point","coordinates":[7743,48723]},{"type":"Point","coordinates":[1892,46279]},{"type":"Point","coordinates":[53500,57036]},{"type":"Point","coordinates":[7744,48725]},{"type":"Point","coordinates":[1786,46235]},{"type":"Point","coordinates":[7739,48729]},{"type":"Point","coordinates":[7742,48730]},{"type":"Point","coordinates":[1773,46233]},{"type":"Point","coordinates":[7741,48730]},{"type":"Point","coordinates":[7739,48730]},{"type":"Point","coordinates":[7740,48731]},{"type":"Point","coordinates":[7740,48731]},{"type":"Point","coordinates":[7739,48731]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7739,48732]},{"type":"Point","coordinates":[7739,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7739,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7739,48733]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7741,48734]},{"type":"Point","coordinates":[7739,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7739,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7740,48734]},{"type":"Point","coordinates":[7724,48728]},{"type":"Point","coordinates":[7738,48734]},{"type":"Point","coordinates":[7739,48734]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48734]},{"type":"Point","coordinates":[7738,48734]},{"type":"Point","coordinates":[7737,48734]},{"type":"Point","coordinates":[7740,48735]},{"type":"Point","coordinates":[7738,48734]},{"type":"Point","coordinates":[7738,48734]},{"type":"Point","coordinates":[1814,46258]},{"type":"Point","coordinates":[7739,48735]},{"type":"Point","coordinates":[7740,48735]},{"type":"Point","coordinates":[1903,46298]},{"type":"Point","coordinates":[7740,48736]},{"type":"Point","coordinates":[7738,48735]},{"type":"Point","coordinates":[7741,48736]},{"type":"Point","coordinates":[7740,48736]},{"type":"Point","coordinates":[7740,48736]},{"type":"Point","coordinates":[7737,48735]},{"type":"Point","coordinates":[7738,48735]},{"type":"Point","coordinates":[7741,48737]},{"type":"Point","coordinates":[7739,48736]},{"type":"Point","coordinates":[7738,48736]},{"type":"Point","coordinates":[52374,57067]},{"type":"Point","coordinates":[7739,48737]},{"type":"Point","coordinates":[7738,48736]},{"type":"Point","coordinates":[7741,48738]},{"type":"Point","coordinates":[7741,48739]},{"type":"Point","coordinates":[7741,48739]},{"type":"Point","coordinates":[7741,48739]},{"type":"Point","coordinates":[7741,48739]},{"type":"Point","coordinates":[7736,48739]},{"type":"Point","coordinates":[7738,48741]},{"type":"Point","coordinates":[7732,48739]},{"type":"Point","coordinates":[7732,48739]},{"type":"Point","coordinates":[7738,48743]},{"type":"Point","coordinates":[2033,46365]},{"type":"Point","coordinates":[1855,46288]},{"type":"Point","coordinates":[7751,48752]},{"type":"Point","coordinates":[77595,54022]},{"type":"Point","coordinates":[8060,48872]},{"type":"Point","coordinates":[7735,48747]},{"type":"Point","coordinates":[7750,48754]},{"type":"Point","coordinates":[7734,48750]},{"type":"Point","coordinates":[8288,48965]},{"type":"Point","coordinates":[7722,48747]},{"type":"Point","coordinates":[1734,46242]},{"type":"Point","coordinates":[7717,48751]},{"type":"Point","coordinates":[7720,48752]},{"type":"Point","coordinates":[1937,46337]},{"type":"Point","coordinates":[7734,48759]},{"type":"Point","coordinates":[1803,46281]},{"type":"Point","coordinates":[7730,48760]},{"type":"Point","coordinates":[7736,48764]},{"type":"Point","coordinates":[1825,46293]},{"type":"Point","coordinates":[7736,48765]},{"type":"Point","coordinates":[7729,48762]},{"type":"Point","coordinates":[7730,48763]},{"type":"Point","coordinates":[7735,48765]},{"type":"Point","coordinates":[7729,48763]},{"type":"Point","coordinates":[7737,48767]},{"type":"Point","coordinates":[7736,48767]},{"type":"Point","coordinates":[7736,48768]},{"type":"Point","coordinates":[78192,53903]},{"type":"Point","coordinates":[8080,48903]},{"type":"Point","coordinates":[7703,48757]},{"type":"Point","coordinates":[7699,48767]},{"type":"Point","coordinates":[7699,48768]},{"type":"Point","coordinates":[7705,48771]},{"type":"Point","coordinates":[1740,46275]},{"type":"Point","coordinates":[7705,48772]},{"type":"Point","coordinates":[7701,48771]},{"type":"Point","coordinates":[7700,48772]},{"type":"Point","coordinates":[7696,48771]},{"type":"Point","coordinates":[7699,48772]},{"type":"Point","coordinates":[7696,48772]},{"type":"Point","coordinates":[7697,48773]},{"type":"Point","coordinates":[7698,48773]},{"type":"Point","coordinates":[7696,48772]},{"type":"Point","coordinates":[7743,48792]},{"type":"Point","coordinates":[7698,48775]},{"type":"Point","coordinates":[7694,48774]},{"type":"Point","coordinates":[7698,48776]},{"type":"Point","coordinates":[7698,48776]},{"type":"Point","coordinates":[7698,48777]},{"type":"Point","coordinates":[7698,48777]},{"type":"Point","coordinates":[7696,48776]},{"type":"Point","coordinates":[7697,48776]},{"type":"Point","coordinates":[7697,48777]},{"type":"Point","coordinates":[7698,48778]},{"type":"Point","coordinates":[7696,48778]},{"type":"Point","coordinates":[7696,48778]},{"type":"Point","coordinates":[7697,48778]},{"type":"Point","coordinates":[7696,48778]},{"type":"Point","coordinates":[7696,48779]},{"type":"Point","coordinates":[7686,48775]},{"type":"Point","coordinates":[7696,48779]},{"type":"Point","coordinates":[7694,48778]},{"type":"Point","coordinates":[7694,48779]},{"type":"Point","coordinates":[7685,48775]},{"type":"Point","coordinates":[7696,48780]},{"type":"Point","coordinates":[77601,54070]},{"type":"Point","coordinates":[7703,48784]},{"type":"Point","coordinates":[7687,48778]},{"type":"Point","coordinates":[7701,48784]},{"type":"Point","coordinates":[7688,48779]},{"type":"Point","coordinates":[7725,48794]},{"type":"Point","coordinates":[7687,48779]},{"type":"Point","coordinates":[7692,48782]},{"type":"Point","coordinates":[7687,48780]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7698,48785]},{"type":"Point","coordinates":[7689,48781]},{"type":"Point","coordinates":[7687,48781]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7689,48781]},{"type":"Point","coordinates":[7689,48781]},{"type":"Point","coordinates":[7696,48784]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7701,48786]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7702,48787]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7688,48782]},{"type":"Point","coordinates":[7688,48782]},{"type":"Point","coordinates":[7694,48784]},{"type":"Point","coordinates":[7689,48782]},{"type":"Point","coordinates":[1907,46367]},{"type":"Point","coordinates":[1904,46367]},{"type":"Point","coordinates":[7691,48785]},{"type":"Point","coordinates":[7699,48788]},{"type":"Point","coordinates":[7690,48785]},{"type":"Point","coordinates":[7699,48789]},{"type":"Point","coordinates":[7726,48801]},{"type":"Point","coordinates":[7701,48791]},{"type":"Point","coordinates":[1933,46387]},{"type":"Point","coordinates":[7727,48805]},{"type":"Point","coordinates":[7727,48805]},{"type":"Point","coordinates":[7727,48805]},{"type":"Point","coordinates":[7727,48805]},{"type":"Point","coordinates":[7684,48790]},{"type":"Point","coordinates":[79359,53660]},{"type":"Point","coordinates":[1901,46375]},{"type":"Point","coordinates":[1818,46338]},{"type":"Point","coordinates":[7696,48796]},{"type":"Point","coordinates":[67900,55925]},{"type":"Point","coordinates":[1925,46387]},{"type":"Point","coordinates":[1818,46340]},{"type":"Point","coordinates":[67899,55926]},{"type":"Point","coordinates":[67899,55927]},{"type":"Point","coordinates":[67896,55928]},{"type":"Point","coordinates":[7726,48812]},{"type":"Point","coordinates":[1930,46393]},{"type":"Point","coordinates":[7725,48814]},{"type":"Point","coordinates":[7742,48821]},{"type":"Point","coordinates":[67899,55931]},{"type":"Point","coordinates":[7735,48820]},{"type":"Point","coordinates":[7683,48800]},{"type":"Point","coordinates":[67897,55934]},{"type":"Point","coordinates":[7700,48808]},{"type":"Point","coordinates":[67897,55934]},{"type":"Point","coordinates":[7726,48819]},{"type":"Point","coordinates":[7739,48826]},{"type":"Point","coordinates":[7708,48815]},{"type":"Point","coordinates":[7710,48816]},{"type":"Point","coordinates":[1823,46356]},{"type":"Point","coordinates":[7739,48831]},{"type":"Point","coordinates":[73028,55075]},{"type":"Point","coordinates":[7661,48802]},{"type":"Point","coordinates":[7728,48830]},{"type":"Point","coordinates":[7725,48830]},{"type":"Point","coordinates":[7728,48832]},{"type":"Point","coordinates":[7691,48818]},{"type":"Point","coordinates":[7736,48836]},{"type":"Point","coordinates":[7670,48812]},{"type":"Point","coordinates":[7668,48811]},{"type":"Point","coordinates":[7668,48811]},{"type":"Point","coordinates":[1809,46361]},{"type":"Point","coordinates":[7668,48812]},{"type":"Point","coordinates":[7667,48813]},{"type":"Point","coordinates":[7688,48822]},{"type":"Point","coordinates":[7689,48823]},{"type":"Point","coordinates":[7703,48831]},{"type":"Point","coordinates":[7669,48819]},{"type":"Point","coordinates":[7669,48819]},{"type":"Point","coordinates":[7691,48831]},{"type":"Point","coordinates":[67895,55961]},{"type":"Point","coordinates":[7695,48838]},{"type":"Point","coordinates":[72709,55159]},{"type":"Point","coordinates":[7692,48840]},{"type":"Point","coordinates":[7690,48839]},{"type":"Point","coordinates":[1795,46375]},{"type":"Point","coordinates":[7698,48844]},{"type":"Point","coordinates":[72693,55170]},{"type":"Point","coordinates":[72693,55170]},{"type":"Point","coordinates":[72693,55170]},{"type":"Point","coordinates":[72693,55170]},{"type":"Point","coordinates":[72699,55169]},{"type":"Point","coordinates":[72698,55169]},{"type":"Point","coordinates":[72698,55169]},{"type":"Point","coordinates":[1817,46391]},{"type":"Point","coordinates":[7693,48849]},{"type":"Point","coordinates":[80114,53524]},{"type":"Point","coordinates":[7656,48838]},{"type":"Point","coordinates":[7691,48854]},{"type":"Point","coordinates":[8172,49054]},{"type":"Point","coordinates":[1852,46434]},{"type":"Point","coordinates":[7682,48870]},{"type":"Point","coordinates":[1852,46434]},{"type":"Point","coordinates":[1854,46436]},{"type":"Point","coordinates":[1858,46437]},{"type":"Point","coordinates":[1860,46443]},{"type":"Point","coordinates":[89443,50780]},{"type":"Point","coordinates":[1896,46501]},{"type":"Point","coordinates":[78245,54072]},{"type":"Point","coordinates":[1947,46539]},{"type":"Point","coordinates":[1934,46545]},{"type":"Point","coordinates":[78219,54090]},{"type":"Point","coordinates":[1935,46547]},{"type":"Point","coordinates":[72670,55277]},{"type":"Point","coordinates":[1735,46461]},{"type":"Point","coordinates":[1732,46463]},{"type":"Point","coordinates":[1742,46468]},{"type":"Point","coordinates":[7928,49049]},{"type":"Point","coordinates":[1752,46474]},{"type":"Point","coordinates":[1760,46478]},{"type":"Point","coordinates":[1735,46467]},{"type":"Point","coordinates":[1772,46484]},{"type":"Point","coordinates":[1737,46469]},{"type":"Point","coordinates":[1749,46475]},{"type":"Point","coordinates":[1743,46474]},{"type":"Point","coordinates":[1743,46474]},{"type":"Point","coordinates":[1735,46470]},{"type":"Point","coordinates":[1760,46484]},{"type":"Point","coordinates":[1760,46485]},{"type":"Point","coordinates":[1758,46485]},{"type":"Point","coordinates":[1760,46486]},{"type":"Point","coordinates":[1758,46485]},{"type":"Point","coordinates":[1758,46487]},{"type":"Point","coordinates":[1758,46489]},{"type":"Point","coordinates":[1738,46481]},{"type":"Point","coordinates":[1746,46487]},{"type":"Point","coordinates":[1751,46491]},{"type":"Point","coordinates":[1753,46495]},{"type":"Point","coordinates":[66582,56289]},{"type":"Point","coordinates":[1748,46493]},{"type":"Point","coordinates":[1748,46493]},{"type":"Point","coordinates":[1736,46488]},{"type":"Point","coordinates":[1754,46496]},{"type":"Point","coordinates":[1741,46491]},{"type":"Point","coordinates":[1756,46497]},{"type":"Point","coordinates":[1747,46498]},{"type":"Point","coordinates":[78101,54165]},{"type":"Point","coordinates":[1746,46511]},{"type":"Point","coordinates":[1728,46504]},{"type":"Point","coordinates":[80105,53674]},{"type":"Point","coordinates":[7230,48818]},{"type":"Point","coordinates":[1746,46514]},{"type":"Point","coordinates":[1745,46516]},{"type":"Point","coordinates":[1745,46517]},{"type":"Point","coordinates":[1745,46520]},{"type":"Point","coordinates":[1749,46522]},{"type":"Point","coordinates":[1747,46524]},{"type":"Point","coordinates":[1744,46523]},{"type":"Point","coordinates":[1747,46526]},{"type":"Point","coordinates":[1744,46526]},{"type":"Point","coordinates":[1745,46526]},{"type":"Point","coordinates":[7583,48983]},{"type":"Point","coordinates":[7829,49088]},{"type":"Point","coordinates":[8016,49164]},{"type":"Point","coordinates":[8057,49181]},{"type":"Point","coordinates":[2063,46696]},{"type":"Point","coordinates":[55322,57321]},{"type":"Point","coordinates":[2083,46720]},{"type":"Point","coordinates":[2114,46734]},{"type":"Point","coordinates":[8016,49183]},{"type":"Point","coordinates":[8016,49183]},{"type":"Point","coordinates":[8011,49185]},{"type":"Point","coordinates":[59775,57085]},{"type":"Point","coordinates":[1863,46630]},{"type":"Point","coordinates":[8008,49188]},{"type":"Point","coordinates":[8010,49189]},{"type":"Point","coordinates":[7993,49188]},{"type":"Point","coordinates":[7941,49172]},{"type":"Point","coordinates":[7543,49018]},{"type":"Point","coordinates":[8004,49200]},{"type":"Point","coordinates":[7547,49023]},{"type":"Point","coordinates":[7963,49187]},{"type":"Point","coordinates":[79693,53862]},{"type":"Point","coordinates":[78015,54272]},{"type":"Point","coordinates":[1855,46656]},{"type":"Point","coordinates":[1844,46653]},{"type":"Point","coordinates":[1844,46654]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49230]},{"type":"Point","coordinates":[8031,49230]},{"type":"Point","coordinates":[8031,49230]},{"type":"Point","coordinates":[8655,49470]},{"type":"Point","coordinates":[8068,49248]},{"type":"Point","coordinates":[7954,49205]},{"type":"Point","coordinates":[1862,46676]},{"type":"Point","coordinates":[7978,49224]},{"type":"Point","coordinates":[1749,46630]},{"type":"Point","coordinates":[7948,49219]},{"type":"Point","coordinates":[2055,46775]},{"type":"Point","coordinates":[2077,46785]},{"type":"Point","coordinates":[2077,46785]},{"type":"Point","coordinates":[1767,46647]},{"type":"Point","coordinates":[58022,57264]},{"type":"Point","coordinates":[1772,46654]},{"type":"Point","coordinates":[1884,46709]},{"type":"Point","coordinates":[8013,49258]},{"type":"Point","coordinates":[55668,57397]},{"type":"Point","coordinates":[7658,49134]},{"type":"Point","coordinates":[2107,46825]},{"type":"Point","coordinates":[1779,46681]},{"type":"Point","coordinates":[7822,49207]},{"type":"Point","coordinates":[7822,49207]},{"type":"Point","coordinates":[7820,49206]},{"type":"Point","coordinates":[7822,49207]},{"type":"Point","coordinates":[7718,49167]},{"type":"Point","coordinates":[7823,49207]},{"type":"Point","coordinates":[7818,49207]},{"type":"Point","coordinates":[7359,49028]},{"type":"Point","coordinates":[7820,49208]},{"type":"Point","coordinates":[7821,49208]},{"type":"Point","coordinates":[7821,49209]},{"type":"Point","coordinates":[7818,49208]},{"type":"Point","coordinates":[8016,49285]},{"type":"Point","coordinates":[7818,49208]},{"type":"Point","coordinates":[7821,49211]},{"type":"Point","coordinates":[7821,49211]},{"type":"Point","coordinates":[7821,49212]},{"type":"Point","coordinates":[7821,49212]},{"type":"Point","coordinates":[7826,49219]},{"type":"Point","coordinates":[7826,49219]},{"type":"Point","coordinates":[7826,49219]},{"type":"Point","coordinates":[7825,49219]},{"type":"Point","coordinates":[7825,49219]},{"type":"Point","coordinates":[7825,49219]},{"type":"Point","coordinates":[7825,49219]},{"type":"Point","coordinates":[7826,49219]},{"type":"Point","coordinates":[7825,49219]},{"type":"Point","coordinates":[7825,49219]},{"type":"Point","coordinates":[7824,49221]},{"type":"Point","coordinates":[7824,49222]},{"type":"Point","coordinates":[1781,46702]},{"type":"Point","coordinates":[7822,49226]},{"type":"Point","coordinates":[1782,46707]},{"type":"Point","coordinates":[7821,49226]},{"type":"Point","coordinates":[1883,46754]},{"type":"Point","coordinates":[63670,56841]},{"type":"Point","coordinates":[7824,49233]},{"type":"Point","coordinates":[7812,49229]},{"type":"Point","coordinates":[7841,49241]},{"type":"Point","coordinates":[1879,46758]},{"type":"Point","coordinates":[1975,46801]},{"type":"Point","coordinates":[7824,49236]},{"type":"Point","coordinates":[7828,49239]},{"type":"Point","coordinates":[8029,49317]},{"type":"Point","coordinates":[1878,46768]},{"type":"Point","coordinates":[7807,49239]},{"type":"Point","coordinates":[1784,46731]},{"type":"Point","coordinates":[1761,46721]},{"type":"Point","coordinates":[8023,49329]},{"type":"Point","coordinates":[89434,51097]},{"type":"Point","coordinates":[1775,46730]},{"type":"Point","coordinates":[1774,46730]},{"type":"Point","coordinates":[77910,54413]},{"type":"Point","coordinates":[1777,46734]},{"type":"Point","coordinates":[1771,46732]},{"type":"Point","coordinates":[1768,46733]},{"type":"Point","coordinates":[1768,46734]},{"type":"Point","coordinates":[1765,46733]},{"type":"Point","coordinates":[1772,46737]},{"type":"Point","coordinates":[1763,46734]},{"type":"Point","coordinates":[1762,46734]},{"type":"Point","coordinates":[1768,46739]},{"type":"Point","coordinates":[7754,49254]},{"type":"Point","coordinates":[7773,49277]},{"type":"Point","coordinates":[77864,54473]},{"type":"Point","coordinates":[67942,56379]},{"type":"Point","coordinates":[79026,54221]},{"type":"Point","coordinates":[7745,49320]},{"type":"Point","coordinates":[79098,54229]},{"type":"Point","coordinates":[77836,54537]},{"type":"Point","coordinates":[7780,49345]},{"type":"Point","coordinates":[7780,49345]},{"type":"Point","coordinates":[7780,49345]},{"type":"Point","coordinates":[7780,49345]},{"type":"Point","coordinates":[55452,57581]},{"type":"Point","coordinates":[78760,54337]},{"type":"Point","coordinates":[88207,51637]},{"type":"Point","coordinates":[88193,51649]},{"type":"Point","coordinates":[61536,57232]},{"type":"Point","coordinates":[61535,57239]},{"type":"Point","coordinates":[61535,57242]},{"type":"Point","coordinates":[61536,57244]},{"type":"Point","coordinates":[61534,57245]},{"type":"Point","coordinates":[79268,54264]},{"type":"Point","coordinates":[50707,57734]},{"type":"Point","coordinates":[79635,54196]},{"type":"Point","coordinates":[58170,57537]},{"type":"Point","coordinates":[79118,54341]},{"type":"Point","coordinates":[79126,54347]},{"type":"Point","coordinates":[79128,54348]},{"type":"Point","coordinates":[79130,54353]},{"type":"Point","coordinates":[79130,54353]},{"type":"Point","coordinates":[79130,54353]},{"type":"Point","coordinates":[81378,53791]},{"type":"Point","coordinates":[55861,57705]},{"type":"Point","coordinates":[50877,57810]},{"type":"Point","coordinates":[1791,47021]},{"type":"Point","coordinates":[85164,52749]},{"type":"Point","coordinates":[50733,57839]},{"type":"Point","coordinates":[80552,54061]},{"type":"Point","coordinates":[76024,55172]},{"type":"Point","coordinates":[1737,47059]},{"type":"Point","coordinates":[1729,47064]},{"type":"Point","coordinates":[72832,55837]},{"type":"Point","coordinates":[1728,47066]},{"type":"Point","coordinates":[3986,48055]},{"type":"Point","coordinates":[54902,57874]},{"type":"Point","coordinates":[3949,48086]},{"type":"Point","coordinates":[1870,47195]},{"type":"Point","coordinates":[4093,48163]},{"type":"Point","coordinates":[63905,57259]},{"type":"Point","coordinates":[59676,57673]},{"type":"Point","coordinates":[3776,48069]},{"type":"Point","coordinates":[76062,55298]},{"type":"Point","coordinates":[64942,57180]},{"type":"Point","coordinates":[4122,48231]},{"type":"Point","coordinates":[54660,57956]},{"type":"Point","coordinates":[79233,54570]},{"type":"Point","coordinates":[7629,49674]},{"type":"Point","coordinates":[3772,48103]},{"type":"Point","coordinates":[7630,49683]},{"type":"Point","coordinates":[49385,58022]},{"type":"Point","coordinates":[60836,57639]},{"type":"Point","coordinates":[4025,48239]},{"type":"Point","coordinates":[79338,54612]},{"type":"Point","coordinates":[79338,54614]},{"type":"Point","coordinates":[79167,54665]},{"type":"Point","coordinates":[68436,56794]},{"type":"Point","coordinates":[68435,56795]},{"type":"Point","coordinates":[59885,57767]},{"type":"Point","coordinates":[59886,57767]},{"type":"Point","coordinates":[77516,55067]},{"type":"Point","coordinates":[77516,55067]},{"type":"Point","coordinates":[77513,55074]},{"type":"Point","coordinates":[77429,55132]},{"type":"Point","coordinates":[52077,58142]},{"type":"Point","coordinates":[3952,48309]},{"type":"Point","coordinates":[77437,55153]},{"type":"Point","coordinates":[77436,55154]},{"type":"Point","coordinates":[77436,55155]},{"type":"Point","coordinates":[77434,55157]},{"type":"Point","coordinates":[77434,55157]},{"type":"Point","coordinates":[1814,47410]},{"type":"Point","coordinates":[1814,47412]},{"type":"Point","coordinates":[77464,55164]},{"type":"Point","coordinates":[58248,57977]},{"type":"Point","coordinates":[69295,56781]},{"type":"Point","coordinates":[68382,56927]},{"type":"Point","coordinates":[75725,55591]},{"type":"Point","coordinates":[75722,55593]},{"type":"Point","coordinates":[1795,47459]},{"type":"Point","coordinates":[1766,47448]},{"type":"Point","coordinates":[78707,54926]},{"type":"Point","coordinates":[7725,49938]},{"type":"Point","coordinates":[77488,55229]},{"type":"Point","coordinates":[75912,55583]},{"type":"Point","coordinates":[1802,47482]},{"type":"Point","coordinates":[1816,47499]},{"type":"Point","coordinates":[77480,55245]},{"type":"Point","coordinates":[1835,47524]},{"type":"Point","coordinates":[1836,47527]},{"type":"Point","coordinates":[1836,47527]},{"type":"Point","coordinates":[1836,47527]},{"type":"Point","coordinates":[77478,55263]},{"type":"Point","coordinates":[1836,47528]},{"type":"Point","coordinates":[1836,47528]},{"type":"Point","coordinates":[7715,49980]},{"type":"Point","coordinates":[3726,48360]},{"type":"Point","coordinates":[68731,56952]},{"type":"Point","coordinates":[68738,56951]},{"type":"Point","coordinates":[72939,56231]},{"type":"Point","coordinates":[1839,47550]},{"type":"Point","coordinates":[1848,47559]},{"type":"Point","coordinates":[54204,58279]},{"type":"Point","coordinates":[1856,47575]},{"type":"Point","coordinates":[1833,47565]},{"type":"Point","coordinates":[1858,47578]},{"type":"Point","coordinates":[1860,47584]},{"type":"Point","coordinates":[1860,47585]},{"type":"Point","coordinates":[74016,56060]},{"type":"Point","coordinates":[2085,47694]},{"type":"Point","coordinates":[1818,47577]},{"type":"Point","coordinates":[3857,48467]},{"type":"Point","coordinates":[1872,47607]},{"type":"Point","coordinates":[1870,47613]},{"type":"Point","coordinates":[82439,54077]},{"type":"Point","coordinates":[1870,47615]},{"type":"Point","coordinates":[1869,47615]},{"type":"Point","coordinates":[1861,47613]},{"type":"Point","coordinates":[1867,47617]},{"type":"Point","coordinates":[1859,47614]},{"type":"Point","coordinates":[1859,47614]},{"type":"Point","coordinates":[1866,47618]},{"type":"Point","coordinates":[1866,47618]},{"type":"Point","coordinates":[1859,47615]},{"type":"Point","coordinates":[1859,47615]},{"type":"Point","coordinates":[1859,47615]},{"type":"Point","coordinates":[1868,47620]},{"type":"Point","coordinates":[1861,47618]},{"type":"Point","coordinates":[1864,47620]},{"type":"Point","coordinates":[1870,47623]},{"type":"Point","coordinates":[1866,47621]},{"type":"Point","coordinates":[1865,47621]},{"type":"Point","coordinates":[1866,47623]},{"type":"Point","coordinates":[1866,47623]},{"type":"Point","coordinates":[1871,47626]},{"type":"Point","coordinates":[1867,47625]},{"type":"Point","coordinates":[1871,47626]},{"type":"Point","coordinates":[1859,47622]},{"type":"Point","coordinates":[1870,47627]},{"type":"Point","coordinates":[1869,47627]},{"type":"Point","coordinates":[1872,47630]},{"type":"Point","coordinates":[76135,55653]},{"type":"Point","coordinates":[1860,47629]},{"type":"Point","coordinates":[2037,47709]},{"type":"Point","coordinates":[79198,54943]},{"type":"Point","coordinates":[1931,47662]},{"type":"Point","coordinates":[1999,47693]},{"type":"Point","coordinates":[1887,47647]},{"type":"Point","coordinates":[1885,47648]},{"type":"Point","coordinates":[1882,47651]},{"type":"Point","coordinates":[68543,57071]},{"type":"Point","coordinates":[1881,47651]},{"type":"Point","coordinates":[1883,47656]},{"type":"Point","coordinates":[1913,47681]},{"type":"Point","coordinates":[7675,50080]},{"type":"Point","coordinates":[7672,50080]},{"type":"Point","coordinates":[7672,50080]},{"type":"Point","coordinates":[1875,47669]},{"type":"Point","coordinates":[7669,50080]},{"type":"Point","coordinates":[7669,50080]},{"type":"Point","coordinates":[7666,50081]},{"type":"Point","coordinates":[7666,50082]},{"type":"Point","coordinates":[7667,50084]},{"type":"Point","coordinates":[7666,50083]},{"type":"Point","coordinates":[7673,50090]},{"type":"Point","coordinates":[2212,47836]},{"type":"Point","coordinates":[7680,50105]},{"type":"Point","coordinates":[7678,50106]},{"type":"Point","coordinates":[3748,48512]},{"type":"Point","coordinates":[7668,50119]},{"type":"Point","coordinates":[7667,50121]},{"type":"Point","coordinates":[7668,50122]},{"type":"Point","coordinates":[1899,47724]},{"type":"Point","coordinates":[1904,47727]},{"type":"Point","coordinates":[1894,47729]},{"type":"Point","coordinates":[6085,49506]},{"type":"Point","coordinates":[51352,58459]},{"type":"Point","coordinates":[51348,58462]},{"type":"Point","coordinates":[2041,47810]},{"type":"Point","coordinates":[51549,58472]},{"type":"Point","coordinates":[51549,58472]},{"type":"Point","coordinates":[51549,58473]},{"type":"Point","coordinates":[3808,48582]},{"type":"Point","coordinates":[54098,58440]},{"type":"Point","coordinates":[51542,58481]},{"type":"Point","coordinates":[54086,58446]},{"type":"Point","coordinates":[51534,58504]},{"type":"Point","coordinates":[51542,58506]},{"type":"Point","coordinates":[74191,56202]},{"type":"Point","coordinates":[74224,56206]},{"type":"Point","coordinates":[1970,47838]},{"type":"Point","coordinates":[79178,55108]},{"type":"Point","coordinates":[78877,55187]},{"type":"Point","coordinates":[54594,58494]},{"type":"Point","coordinates":[78714,55237]},{"type":"Point","coordinates":[2458,48075]},{"type":"Point","coordinates":[74714,56142]},{"type":"Point","coordinates":[72832,56528]},{"type":"Point","coordinates":[83730,53937]},{"type":"Point","coordinates":[1982,47897]},{"type":"Point","coordinates":[7762,50310]},{"type":"Point","coordinates":[7674,50277]},{"type":"Point","coordinates":[7762,50313]},{"type":"Point","coordinates":[7748,50309]},{"type":"Point","coordinates":[84756,53666]},{"type":"Point","coordinates":[7744,50320]},{"type":"Point","coordinates":[54798,58558]},{"type":"Point","coordinates":[69235,57201]},{"type":"Point","coordinates":[84755,53686]},{"type":"Point","coordinates":[69233,57203]},{"type":"Point","coordinates":[69232,57208]},{"type":"Point","coordinates":[69232,57210]},{"type":"Point","coordinates":[77977,55495]},{"type":"Point","coordinates":[2008,47962]},{"type":"Point","coordinates":[82382,54379]},{"type":"Point","coordinates":[82382,54379]},{"type":"Point","coordinates":[1995,47965]},{"type":"Point","coordinates":[69217,57225]},{"type":"Point","coordinates":[78031,55505]},{"type":"Point","coordinates":[1987,47977]},{"type":"Point","coordinates":[51117,58654]},{"type":"Point","coordinates":[1986,47980]},{"type":"Point","coordinates":[71536,56852]},{"type":"Point","coordinates":[82317,54419]},{"type":"Point","coordinates":[1963,47977]},{"type":"Point","coordinates":[69228,57249]},{"type":"Point","coordinates":[77996,55540]},{"type":"Point","coordinates":[2025,48021]},{"type":"Point","coordinates":[78166,55505]},{"type":"Point","coordinates":[67971,57467]},{"type":"Point","coordinates":[2267,48150]},{"type":"Point","coordinates":[56288,58588]},{"type":"Point","coordinates":[2029,48053]},{"type":"Point","coordinates":[49105,58691]},{"type":"Point","coordinates":[49105,58692]},{"type":"Point","coordinates":[2037,48057]},{"type":"Point","coordinates":[49105,58693]},{"type":"Point","coordinates":[49105,58694]},{"type":"Point","coordinates":[49105,58696]},{"type":"Point","coordinates":[2024,48059]},{"type":"Point","coordinates":[2024,48059]},{"type":"Point","coordinates":[2024,48059]},{"type":"Point","coordinates":[67955,57494]},{"type":"Point","coordinates":[49071,58715]},{"type":"Point","coordinates":[49071,58715]},{"type":"Point","coordinates":[49071,58715]},{"type":"Point","coordinates":[49073,58716]},{"type":"Point","coordinates":[49073,58716]},{"type":"Point","coordinates":[49073,58716]},{"type":"Point","coordinates":[49073,58716]},{"type":"Point","coordinates":[49073,58716]},{"type":"Point","coordinates":[49072,58717]},{"type":"Point","coordinates":[82683,54396]},{"type":"Point","coordinates":[49074,58717]},{"type":"Point","coordinates":[49095,58719]},{"type":"Point","coordinates":[49070,58720]},{"type":"Point","coordinates":[49075,58720]},{"type":"Point","coordinates":[49076,58723]},{"type":"Point","coordinates":[78423,55503]},{"type":"Point","coordinates":[49091,58730]},{"type":"Point","coordinates":[49104,58731]},{"type":"Point","coordinates":[49090,58732]},{"type":"Point","coordinates":[68935,57380]},{"type":"Point","coordinates":[49093,58736]},{"type":"Point","coordinates":[86512,53287]},{"type":"Point","coordinates":[2324,48230]},{"type":"Point","coordinates":[78935,55392]},{"type":"Point","coordinates":[7946,50554]},{"type":"Point","coordinates":[7946,50556]},{"type":"Point","coordinates":[68339,57489]},{"type":"Point","coordinates":[7910,50550]},{"type":"Point","coordinates":[7910,50550]},{"type":"Point","coordinates":[7938,50562]},{"type":"Point","coordinates":[7919,50558]},{"type":"Point","coordinates":[78593,55497]},{"type":"Point","coordinates":[71035,57064]},{"type":"Point","coordinates":[84224,54004]},{"type":"Point","coordinates":[84230,54007]},{"type":"Point","coordinates":[7897,50563]},{"type":"Point","coordinates":[7770,50516]},{"type":"Point","coordinates":[71013,57078]},{"type":"Point","coordinates":[7919,50574]},{"type":"Point","coordinates":[71342,57024]},{"type":"Point","coordinates":[7891,50574]},{"type":"Point","coordinates":[83635,54208]},{"type":"Point","coordinates":[49083,58804]},{"type":"Point","coordinates":[54025,58794]},{"type":"Point","coordinates":[68929,57461]},{"type":"Point","coordinates":[78627,55556]},{"type":"Point","coordinates":[49116,58827]},{"type":"Point","coordinates":[49127,58828]},{"type":"Point","coordinates":[7899,50622]},{"type":"Point","coordinates":[7768,50573]},{"type":"Point","coordinates":[7964,50653]},{"type":"Point","coordinates":[74335,56516]},{"type":"Point","coordinates":[2313,48328]},{"type":"Point","coordinates":[7823,50604]},{"type":"Point","coordinates":[49068,58841]},{"type":"Point","coordinates":[78584,55595]},{"type":"Point","coordinates":[78584,55595]},{"type":"Point","coordinates":[7828,50626]},{"type":"Point","coordinates":[78606,55604]},{"type":"Point","coordinates":[88806,52682]},{"type":"Point","coordinates":[54933,58827]},{"type":"Point","coordinates":[84320,54085]},{"type":"Point","coordinates":[78557,55619]},{"type":"Point","coordinates":[78557,55619]},{"type":"Point","coordinates":[2124,48286]},{"type":"Point","coordinates":[7680,50588]},{"type":"Point","coordinates":[7681,50590]},{"type":"Point","coordinates":[54871,58837]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56999]},{"type":"Point","coordinates":[72071,56999]},{"type":"Point","coordinates":[72071,56999]},{"type":"Point","coordinates":[72070,56999]},{"type":"Point","coordinates":[72071,56999]},{"type":"Point","coordinates":[72071,56999]},{"type":"Point","coordinates":[72069,57000]},{"type":"Point","coordinates":[72069,57000]},{"type":"Point","coordinates":[7678,50596]},{"type":"Point","coordinates":[72067,57004]},{"type":"Point","coordinates":[72065,57004]},{"type":"Point","coordinates":[78606,55622]},{"type":"Point","coordinates":[78569,55632]},{"type":"Point","coordinates":[72067,57006]},{"type":"Point","coordinates":[78570,55633]},{"type":"Point","coordinates":[78570,55633]},{"type":"Point","coordinates":[78570,55633]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[77974,55785]},{"type":"Point","coordinates":[78001,55780]},{"type":"Point","coordinates":[7676,50610]},{"type":"Point","coordinates":[77998,55783]},{"type":"Point","coordinates":[77999,55783]},{"type":"Point","coordinates":[78001,55782]},{"type":"Point","coordinates":[78002,55783]},{"type":"Point","coordinates":[78001,55783]},{"type":"Point","coordinates":[78003,55783]},{"type":"Point","coordinates":[78003,55783]},{"type":"Point","coordinates":[78003,55784]},{"type":"Point","coordinates":[78006,55783]},{"type":"Point","coordinates":[78000,55786]},{"type":"Point","coordinates":[77996,55788]},{"type":"Point","coordinates":[77996,55789]},{"type":"Point","coordinates":[77995,55790]},{"type":"Point","coordinates":[54668,58874]},{"type":"Point","coordinates":[54676,58874]},{"type":"Point","coordinates":[54678,58874]},{"type":"Point","coordinates":[54678,58874]},{"type":"Point","coordinates":[78043,55781]},{"type":"Point","coordinates":[78017,55788]},{"type":"Point","coordinates":[77992,55794]},{"type":"Point","coordinates":[78017,55790]},{"type":"Point","coordinates":[78500,55675]},{"type":"Point","coordinates":[77954,55806]},{"type":"Point","coordinates":[77957,55807]},{"type":"Point","coordinates":[57849,58741]},{"type":"Point","coordinates":[61993,58427]},{"type":"Point","coordinates":[77978,55804]},{"type":"Point","coordinates":[77994,55800]},{"type":"Point","coordinates":[69102,57539]},{"type":"Point","coordinates":[77994,55801]},{"type":"Point","coordinates":[77994,55801]},{"type":"Point","coordinates":[77950,55817]},{"type":"Point","coordinates":[2280,48407]},{"type":"Point","coordinates":[69483,57489]},{"type":"Point","coordinates":[78055,55798]},{"type":"Point","coordinates":[49060,58929]},{"type":"Point","coordinates":[77950,55826]},{"type":"Point","coordinates":[78542,55688]},{"type":"Point","coordinates":[68851,57595]},{"type":"Point","coordinates":[77945,55831]},{"type":"Point","coordinates":[78542,55690]},{"type":"Point","coordinates":[78593,55678]},{"type":"Point","coordinates":[78593,55679]},{"type":"Point","coordinates":[78597,55680]},{"type":"Point","coordinates":[69032,57573]},{"type":"Point","coordinates":[72997,56888]},{"type":"Point","coordinates":[78596,55682]},{"type":"Point","coordinates":[54771,58905]},{"type":"Point","coordinates":[78551,55695]},{"type":"Point","coordinates":[78535,55699]},{"type":"Point","coordinates":[54782,58907]},{"type":"Point","coordinates":[69820,57452]},{"type":"Point","coordinates":[78533,55704]},{"type":"Point","coordinates":[78534,55705]},{"type":"Point","coordinates":[78533,55707]},{"type":"Point","coordinates":[77941,55848]},{"type":"Point","coordinates":[78536,55708]},{"type":"Point","coordinates":[69891,57449]},{"type":"Point","coordinates":[78535,55709]},{"type":"Point","coordinates":[77932,55857]},{"type":"Point","coordinates":[68850,57622]},{"type":"Point","coordinates":[78538,55720]},{"type":"Point","coordinates":[69877,57465]},{"type":"Point","coordinates":[81853,54879]},{"type":"Point","coordinates":[69877,57467]},{"type":"Point","coordinates":[78529,55727]},{"type":"Point","coordinates":[69880,57468]},{"type":"Point","coordinates":[78529,55729]},{"type":"Point","coordinates":[78531,55728]},{"type":"Point","coordinates":[78531,55728]},{"type":"Point","coordinates":[69890,57470]},{"type":"Point","coordinates":[78283,55796]},{"type":"Point","coordinates":[69889,57485]},{"type":"Point","coordinates":[69738,57510]},{"type":"Point","coordinates":[84121,54266]},{"type":"Point","coordinates":[54695,58955]},{"type":"Point","coordinates":[82440,54748]},{"type":"Point","coordinates":[82437,54749]},{"type":"Point","coordinates":[51174,59024]},{"type":"Point","coordinates":[2117,48420]},{"type":"Point","coordinates":[69911,57503]},{"type":"Point","coordinates":[2113,48435]},{"type":"Point","coordinates":[2100,48430]},{"type":"Point","coordinates":[68832,57687]},{"type":"Point","coordinates":[2113,48437]},{"type":"Point","coordinates":[69923,57520]},{"type":"Point","coordinates":[2097,48437]},{"type":"Point","coordinates":[68825,57697]},{"type":"Point","coordinates":[70834,57372]},{"type":"Point","coordinates":[73168,56950]},{"type":"Point","coordinates":[2096,48441]},{"type":"Point","coordinates":[83946,54366]},{"type":"Point","coordinates":[54718,59003]},{"type":"Point","coordinates":[78457,55814]},{"type":"Point","coordinates":[2129,48460]},{"type":"Point","coordinates":[90205,52383]},{"type":"Point","coordinates":[84224,54289]},{"type":"Point","coordinates":[2094,48453]},{"type":"Point","coordinates":[2094,48453]},{"type":"Point","coordinates":[84208,54301]},{"type":"Point","coordinates":[68793,57720]},{"type":"Point","coordinates":[83199,54593]},{"type":"Point","coordinates":[84238,54299]},{"type":"Point","coordinates":[68831,57731]},{"type":"Point","coordinates":[73823,56855]},{"type":"Point","coordinates":[54765,59031]},{"type":"Point","coordinates":[83730,54458]},{"type":"Point","coordinates":[83848,54424]},{"type":"Point","coordinates":[2172,48509]},{"type":"Point","coordinates":[83735,54463]},{"type":"Point","coordinates":[84108,54361]},{"type":"Point","coordinates":[59157,58826]},{"type":"Point","coordinates":[2127,48505]},{"type":"Point","coordinates":[2114,48500]},{"type":"Point","coordinates":[68778,57760]},{"type":"Point","coordinates":[2184,48538]},{"type":"Point","coordinates":[54728,59056]},{"type":"Point","coordinates":[78063,55961]},{"type":"Point","coordinates":[51216,59128]},{"type":"Point","coordinates":[54602,59082]},{"type":"Point","coordinates":[78497,55886]},{"type":"Point","coordinates":[78498,55886]},{"type":"Point","coordinates":[78497,55886]},{"type":"Point","coordinates":[78497,55886]},{"type":"Point","coordinates":[78497,55887]},{"type":"Point","coordinates":[78496,55890]},{"type":"Point","coordinates":[77150,56205]},{"type":"Point","coordinates":[77151,56209]},{"type":"Point","coordinates":[7964,50959]},{"type":"Point","coordinates":[2358,48664]},{"type":"Point","coordinates":[71302,57405]},{"type":"Point","coordinates":[61508,58704]},{"type":"Point","coordinates":[71301,57408]},{"type":"Point","coordinates":[61511,58707]},{"type":"Point","coordinates":[7809,50925]},{"type":"Point","coordinates":[71306,57415]},{"type":"Point","coordinates":[78483,55961]},{"type":"Point","coordinates":[69820,57703]},{"type":"Point","coordinates":[8041,51061]},{"type":"Point","coordinates":[2243,48686]},{"type":"Point","coordinates":[2300,48711]},{"type":"Point","coordinates":[8054,51079]},{"type":"Point","coordinates":[83998,54541]},{"type":"Point","coordinates":[2192,48682]},{"type":"Point","coordinates":[84122,54509]},{"type":"Point","coordinates":[2215,48714]},{"type":"Point","coordinates":[84583,54400]},{"type":"Point","coordinates":[84014,54568]},{"type":"Point","coordinates":[84014,54568]},{"type":"Point","coordinates":[84015,54568]},{"type":"Point","coordinates":[84014,54568]},{"type":"Point","coordinates":[84016,54568]},{"type":"Point","coordinates":[84016,54568]},{"type":"Point","coordinates":[84014,54569]},{"type":"Point","coordinates":[75520,56702]},{"type":"Point","coordinates":[78511,56026]},{"type":"Point","coordinates":[84189,54528]},{"type":"Point","coordinates":[2212,48733]},{"type":"Point","coordinates":[2213,48733]},{"type":"Point","coordinates":[74153,56992]},{"type":"Point","coordinates":[2212,48737]},{"type":"Point","coordinates":[2238,48750]},{"type":"Point","coordinates":[84038,54579]},{"type":"Point","coordinates":[2262,48762]},{"type":"Point","coordinates":[2212,48744]},{"type":"Point","coordinates":[2207,48749]},{"type":"Point","coordinates":[2317,48800]},{"type":"Point","coordinates":[78744,55997]},{"type":"Point","coordinates":[83944,54631]},{"type":"Point","coordinates":[84099,54590]},{"type":"Point","coordinates":[84040,54609]},{"type":"Point","coordinates":[84103,54593]},{"type":"Point","coordinates":[84104,54593]},{"type":"Point","coordinates":[84104,54593]},{"type":"Point","coordinates":[2291,48811]},{"type":"Point","coordinates":[84062,54608]},{"type":"Point","coordinates":[2232,48794]},{"type":"Point","coordinates":[8137,51221]},{"type":"Point","coordinates":[84127,54601]},{"type":"Point","coordinates":[2510,48920]},{"type":"Point","coordinates":[2288,48823]},{"type":"Point","coordinates":[84099,54615]},{"type":"Point","coordinates":[84918,54384]},{"type":"Point","coordinates":[84490,54512]},{"type":"Point","coordinates":[2256,48825]},{"type":"Point","coordinates":[79072,55970]},{"type":"Point","coordinates":[83149,54902]},{"type":"Point","coordinates":[84072,54639]},{"type":"Point","coordinates":[87919,53464]},{"type":"Point","coordinates":[51452,59368]},{"type":"Point","coordinates":[83902,54694]},{"type":"Point","coordinates":[83907,54693]},{"type":"Point","coordinates":[83897,54700]},{"type":"Point","coordinates":[89305,53014]},{"type":"Point","coordinates":[83903,54702]},{"type":"Point","coordinates":[2271,48851]},{"type":"Point","coordinates":[2268,48851]},{"type":"Point","coordinates":[2247,48845]},{"type":"Point","coordinates":[2264,48855]},{"type":"Point","coordinates":[77308,56412]},{"type":"Point","coordinates":[2410,48923]},{"type":"Point","coordinates":[7775,51131]},{"type":"Point","coordinates":[2259,48860]},{"type":"Point","coordinates":[83880,54724]},{"type":"Point","coordinates":[84105,54662]},{"type":"Point","coordinates":[83981,54699]},{"type":"Point","coordinates":[7661,51099]},{"type":"Point","coordinates":[83884,54731]},{"type":"Point","coordinates":[83884,54732]},{"type":"Point","coordinates":[74634,57010]},{"type":"Point","coordinates":[83891,54735]},{"type":"Point","coordinates":[7683,51114]},{"type":"Point","coordinates":[83891,54736]},{"type":"Point","coordinates":[76773,56562]},{"type":"Point","coordinates":[83971,54724]},{"type":"Point","coordinates":[7646,51115]},{"type":"Point","coordinates":[7683,51130]},{"type":"Point","coordinates":[7683,51130]},{"type":"Point","coordinates":[7687,51132]},{"type":"Point","coordinates":[7684,51131]},{"type":"Point","coordinates":[7683,51131]},{"type":"Point","coordinates":[7684,51131]},{"type":"Point","coordinates":[7687,51135]},{"type":"Point","coordinates":[7686,51134]},{"type":"Point","coordinates":[7683,51133]},{"type":"Point","coordinates":[7687,51135]},{"type":"Point","coordinates":[7685,51134]},{"type":"Point","coordinates":[7682,51134]},{"type":"Point","coordinates":[7682,51134]},{"type":"Point","coordinates":[7683,51135]},{"type":"Point","coordinates":[7682,51135]},{"type":"Point","coordinates":[7687,51137]},{"type":"Point","coordinates":[7687,51137]},{"type":"Point","coordinates":[7685,51136]},{"type":"Point","coordinates":[7685,51136]},{"type":"Point","coordinates":[7683,51135]},{"type":"Point","coordinates":[7687,51137]},{"type":"Point","coordinates":[7683,51136]},{"type":"Point","coordinates":[7682,51136]},{"type":"Point","coordinates":[7683,51137]},{"type":"Point","coordinates":[7685,51138]},{"type":"Point","coordinates":[7682,51137]},{"type":"Point","coordinates":[84813,54490]},{"type":"Point","coordinates":[7674,51136]},{"type":"Point","coordinates":[7674,51137]},{"type":"Point","coordinates":[7675,51137]},{"type":"Point","coordinates":[7675,51137]},{"type":"Point","coordinates":[7681,51140]},{"type":"Point","coordinates":[7681,51140]},{"type":"Point","coordinates":[61427,58981]},{"type":"Point","coordinates":[61414,58982]},{"type":"Point","coordinates":[2301,48931]},{"type":"Point","coordinates":[7783,51194]},{"type":"Point","coordinates":[78442,56218]},{"type":"Point","coordinates":[90408,52719]},{"type":"Point","coordinates":[84688,54565]},{"type":"Point","coordinates":[84688,54565]},{"type":"Point","coordinates":[79953,55861]},{"type":"Point","coordinates":[79960,55872]},{"type":"Point","coordinates":[79949,55883]},{"type":"Point","coordinates":[75203,56980]},{"type":"Point","coordinates":[78526,56236]},{"type":"Point","coordinates":[83912,54817]},{"type":"Point","coordinates":[8006,51330]},{"type":"Point","coordinates":[7779,51251]},{"type":"Point","coordinates":[83205,55032]},{"type":"Point","coordinates":[83204,55032]},{"type":"Point","coordinates":[58583,59268]},{"type":"Point","coordinates":[83205,55033]},{"type":"Point","coordinates":[90426,52772]},{"type":"Point","coordinates":[77191,56574]},{"type":"Point","coordinates":[90428,52775]},{"type":"Point","coordinates":[84384,54707]},{"type":"Point","coordinates":[83947,54835]},{"type":"Point","coordinates":[77175,56580]},{"type":"Point","coordinates":[83878,54859]},{"type":"Point","coordinates":[83896,54855]},{"type":"Point","coordinates":[83878,54860]},{"type":"Point","coordinates":[84057,54812]},{"type":"Point","coordinates":[83898,54861]},{"type":"Point","coordinates":[83898,54861]},{"type":"Point","coordinates":[83989,54835]},{"type":"Point","coordinates":[83896,54863]},{"type":"Point","coordinates":[82381,55291]},{"type":"Point","coordinates":[83897,54872]},{"type":"Point","coordinates":[83894,54878]},{"type":"Point","coordinates":[83898,54878]},{"type":"Point","coordinates":[68014,58318]},{"type":"Point","coordinates":[84145,54819]},{"type":"Point","coordinates":[83321,55055]},{"type":"Point","coordinates":[2327,49071]},{"type":"Point","coordinates":[83327,55059]},{"type":"Point","coordinates":[2327,49073]},{"type":"Point","coordinates":[84822,54637]},{"type":"Point","coordinates":[72787,57552]},{"type":"Point","coordinates":[74559,57205]},{"type":"Point","coordinates":[83871,54921]},{"type":"Point","coordinates":[75023,57113]},{"type":"Point","coordinates":[83915,54919]},{"type":"Point","coordinates":[2253,49079]},{"type":"Point","coordinates":[2253,49079]},{"type":"Point","coordinates":[77311,56643]},{"type":"Point","coordinates":[83870,54954]},{"type":"Point","coordinates":[84089,54896]},{"type":"Point","coordinates":[84089,54896]},{"type":"Point","coordinates":[84089,54896]},{"type":"Point","coordinates":[84090,54896]},{"type":"Point","coordinates":[78447,56391]},{"type":"Point","coordinates":[78361,56415]},{"type":"Point","coordinates":[78361,56415]},{"type":"Point","coordinates":[83910,54958]},{"type":"Point","coordinates":[83930,54952]},{"type":"Point","coordinates":[52609,59621]},{"type":"Point","coordinates":[52609,59622]},{"type":"Point","coordinates":[52609,59622]},{"type":"Point","coordinates":[83924,54957]},{"type":"Point","coordinates":[52607,59625]},{"type":"Point","coordinates":[52605,59625]},{"type":"Point","coordinates":[84119,54914]},{"type":"Point","coordinates":[83830,54999]},{"type":"Point","coordinates":[83889,54983]},{"type":"Point","coordinates":[84088,54932]},{"type":"Point","coordinates":[84088,54934]},{"type":"Point","coordinates":[83984,54968]},{"type":"Point","coordinates":[52617,59658]},{"type":"Point","coordinates":[83913,54999]},{"type":"Point","coordinates":[78512,56422]},{"type":"Point","coordinates":[85202,54622]},{"type":"Point","coordinates":[89263,53332]},{"type":"Point","coordinates":[78511,56424]},{"type":"Point","coordinates":[85201,54624]},{"type":"Point","coordinates":[83941,54994]},{"type":"Point","coordinates":[89267,53332]},{"type":"Point","coordinates":[83917,55001]},{"type":"Point","coordinates":[76741,56835]},{"type":"Point","coordinates":[83946,54995]},{"type":"Point","coordinates":[89266,53336]},{"type":"Point","coordinates":[83946,54997]},{"type":"Point","coordinates":[83948,54997]},{"type":"Point","coordinates":[83948,54997]},{"type":"Point","coordinates":[83946,54998]},{"type":"Point","coordinates":[83805,55039]},{"type":"Point","coordinates":[83946,54998]},{"type":"Point","coordinates":[76778,56845]},{"type":"Point","coordinates":[83965,55029]},{"type":"Point","coordinates":[78345,56507]},{"type":"Point","coordinates":[42850,59419]},{"type":"Point","coordinates":[83975,55040]},{"type":"Point","coordinates":[82188,55543]},{"type":"Point","coordinates":[83973,55044]},{"type":"Point","coordinates":[83973,55045]},{"type":"Point","coordinates":[80035,56109]},{"type":"Point","coordinates":[83973,55045]},{"type":"Point","coordinates":[83973,55045]},{"type":"Point","coordinates":[83893,55073]},{"type":"Point","coordinates":[83977,55055]},{"type":"Point","coordinates":[83911,55074]},{"type":"Point","coordinates":[83896,55084]},{"type":"Point","coordinates":[80048,56123]},{"type":"Point","coordinates":[83919,55078]},{"type":"Point","coordinates":[84007,55054]},{"type":"Point","coordinates":[71866,57898]},{"type":"Point","coordinates":[83924,55091]},{"type":"Point","coordinates":[54716,59714]},{"type":"Point","coordinates":[83746,55146]},{"type":"Point","coordinates":[70584,58137]},{"type":"Point","coordinates":[67097,58673]},{"type":"Point","coordinates":[78507,56525]},{"type":"Point","coordinates":[84149,55035]},{"type":"Point","coordinates":[2287,49271]},{"type":"Point","coordinates":[78471,56536]},{"type":"Point","coordinates":[78504,56530]},{"type":"Point","coordinates":[84935,54809]},{"type":"Point","coordinates":[2274,49271]},{"type":"Point","coordinates":[2236,49258]},{"type":"Point","coordinates":[78508,56536]},{"type":"Point","coordinates":[78311,56607]},{"type":"Point","coordinates":[77955,56723]},{"type":"Point","coordinates":[83916,55170]},{"type":"Point","coordinates":[84511,54998]},{"type":"Point","coordinates":[54806,59785]},{"type":"Point","coordinates":[54806,59786]},{"type":"Point","coordinates":[54806,59786]},{"type":"Point","coordinates":[84566,54987]},{"type":"Point","coordinates":[7595,51537]},{"type":"Point","coordinates":[78080,56710]},{"type":"Point","coordinates":[69740,58362]},{"type":"Point","coordinates":[54804,59799]},{"type":"Point","coordinates":[69740,58362]},{"type":"Point","coordinates":[69888,58344]},{"type":"Point","coordinates":[7769,51623]},{"type":"Point","coordinates":[84475,55036]},{"type":"Point","coordinates":[77063,56962]},{"type":"Point","coordinates":[2399,49440]},{"type":"Point","coordinates":[2359,49427]},{"type":"Point","coordinates":[88218,53906]},{"type":"Point","coordinates":[70344,58331]},{"type":"Point","coordinates":[68684,58595]},{"type":"Point","coordinates":[2331,49451]},{"type":"Point","coordinates":[72621,57936]},{"type":"Point","coordinates":[83764,55308]},{"type":"Point","coordinates":[77221,56995]},{"type":"Point","coordinates":[61509,59497]},{"type":"Point","coordinates":[2331,49484]},{"type":"Point","coordinates":[2237,49448]},{"type":"Point","coordinates":[2339,49502]},{"type":"Point","coordinates":[2334,49503]},{"type":"Point","coordinates":[2333,49505]},{"type":"Point","coordinates":[2333,49505]},{"type":"Point","coordinates":[2333,49505]},{"type":"Point","coordinates":[2332,49505]},{"type":"Point","coordinates":[2332,49505]},{"type":"Point","coordinates":[2332,49505]},{"type":"Point","coordinates":[84515,55172]},{"type":"Point","coordinates":[75403,57468]},{"type":"Point","coordinates":[75403,57468]},{"type":"Point","coordinates":[78098,56868]},{"type":"Point","coordinates":[72711,58018]},{"type":"Point","coordinates":[72711,58018]},{"type":"Point","coordinates":[72711,58019]},{"type":"Point","coordinates":[85190,54991]},{"type":"Point","coordinates":[85189,54991]},{"type":"Point","coordinates":[70148,58488]},{"type":"Point","coordinates":[84665,55165]},{"type":"Point","coordinates":[84597,55190]},{"type":"Point","coordinates":[84597,55190]},{"type":"Point","coordinates":[84962,55096]},{"type":"Point","coordinates":[72707,58062]},{"type":"Point","coordinates":[75953,57410]},{"type":"Point","coordinates":[83858,55424]},{"type":"Point","coordinates":[67407,58933]},{"type":"Point","coordinates":[73038,58005]},{"type":"Point","coordinates":[84621,55207]},{"type":"Point","coordinates":[84636,55204]},{"type":"Point","coordinates":[84622,55210]},{"type":"Point","coordinates":[84614,55213]},{"type":"Point","coordinates":[84614,55213]},{"type":"Point","coordinates":[84643,55207]},{"type":"Point","coordinates":[84643,55208]},{"type":"Point","coordinates":[84644,55211]},{"type":"Point","coordinates":[84642,55212]},{"type":"Point","coordinates":[84618,55221]},{"type":"Point","coordinates":[84618,55221]},{"type":"Point","coordinates":[84615,55223]},{"type":"Point","coordinates":[71303,58339]},{"type":"Point","coordinates":[71305,58342]},{"type":"Point","coordinates":[73832,57893]},{"type":"Point","coordinates":[84509,55283]},{"type":"Point","coordinates":[76485,57342]},{"type":"Point","coordinates":[76480,57345]},{"type":"Point","coordinates":[72603,58138]},{"type":"Point","coordinates":[77593,57106]},{"type":"Point","coordinates":[85098,55135]},{"type":"Point","coordinates":[84975,55173]},{"type":"Point","coordinates":[84719,55253]},{"type":"Point","coordinates":[84974,55180]},{"type":"Point","coordinates":[70014,58623]},{"type":"Point","coordinates":[76310,57427]},{"type":"Point","coordinates":[53889,60142]},{"type":"Point","coordinates":[66220,59194]},{"type":"Point","coordinates":[66214,59196]},{"type":"Point","coordinates":[66213,59197]},{"type":"Point","coordinates":[54652,60125]},{"type":"Point","coordinates":[84424,55372]},{"type":"Point","coordinates":[84780,55275]},{"type":"Point","coordinates":[84780,55275]},{"type":"Point","coordinates":[84780,55275]},{"type":"Point","coordinates":[84706,55297]},{"type":"Point","coordinates":[84781,55275]},{"type":"Point","coordinates":[54649,60143]},{"type":"Point","coordinates":[84736,55297]},{"type":"Point","coordinates":[54273,60160]},{"type":"Point","coordinates":[84675,55328]},{"type":"Point","coordinates":[83808,55580]},{"type":"Point","coordinates":[83809,55580]},{"type":"Point","coordinates":[83810,55581]},{"type":"Point","coordinates":[84425,55404]},{"type":"Point","coordinates":[83818,55590]},{"type":"Point","coordinates":[77820,57146]},{"type":"Point","coordinates":[84966,55259]},{"type":"Point","coordinates":[54678,60179]},{"type":"Point","coordinates":[77816,57160]},{"type":"Point","coordinates":[84627,55372]},{"type":"Point","coordinates":[77817,57162]},{"type":"Point","coordinates":[77820,57166]},{"type":"Point","coordinates":[77819,57167]},{"type":"Point","coordinates":[77819,57168]},{"type":"Point","coordinates":[77819,57169]},{"type":"Point","coordinates":[77818,57172]},{"type":"Point","coordinates":[83837,55612]},{"type":"Point","coordinates":[77818,57172]},{"type":"Point","coordinates":[77818,57172]},{"type":"Point","coordinates":[77819,57176]},{"type":"Point","coordinates":[84706,55365]},{"type":"Point","coordinates":[77822,57176]},{"type":"Point","coordinates":[77819,57177]},{"type":"Point","coordinates":[77819,57177]},{"type":"Point","coordinates":[77820,57177]},{"type":"Point","coordinates":[77821,57178]},{"type":"Point","coordinates":[77820,57178]},{"type":"Point","coordinates":[77820,57178]},{"type":"Point","coordinates":[77820,57178]},{"type":"Point","coordinates":[76141,57555]},{"type":"Point","coordinates":[77819,57178]},{"type":"Point","coordinates":[77820,57178]},{"type":"Point","coordinates":[77821,57178]},{"type":"Point","coordinates":[77821,57178]},{"type":"Point","coordinates":[77819,57178]},{"type":"Point","coordinates":[77820,57178]},{"type":"Point","coordinates":[77820,57179]},{"type":"Point","coordinates":[76141,57560]},{"type":"Point","coordinates":[76117,57567]},{"type":"Point","coordinates":[77815,57190]},{"type":"Point","coordinates":[77810,57197]},{"type":"Point","coordinates":[77864,57186]},{"type":"Point","coordinates":[84811,55355]},{"type":"Point","coordinates":[77881,57184]},{"type":"Point","coordinates":[87816,54429]},{"type":"Point","coordinates":[77807,57225]},{"type":"Point","coordinates":[77912,57221]},{"type":"Point","coordinates":[85217,55292]},{"type":"Point","coordinates":[77802,57260]},{"type":"Point","coordinates":[76051,57672]},{"type":"Point","coordinates":[84686,55478]},{"type":"Point","coordinates":[84678,55496]},{"type":"Point","coordinates":[77773,57330]},{"type":"Point","coordinates":[85629,55237]},{"type":"Point","coordinates":[84535,55566]},{"type":"Point","coordinates":[84534,55569]},{"type":"Point","coordinates":[66156,59442]},{"type":"Point","coordinates":[84528,55579]},{"type":"Point","coordinates":[77709,57365]},{"type":"Point","coordinates":[84529,55582]},{"type":"Point","coordinates":[84589,55584]},{"type":"Point","coordinates":[84684,55558]},{"type":"Point","coordinates":[84578,55593]},{"type":"Point","coordinates":[7683,52185]},{"type":"Point","coordinates":[84578,55595]},{"type":"Point","coordinates":[84571,55597]},{"type":"Point","coordinates":[84573,55598]},{"type":"Point","coordinates":[85894,55206]},{"type":"Point","coordinates":[75427,57916]},{"type":"Point","coordinates":[75754,57877]},{"type":"Point","coordinates":[65138,59654]},{"type":"Point","coordinates":[84662,55649]},{"type":"Point","coordinates":[75191,58032]},{"type":"Point","coordinates":[75627,57942]},{"type":"Point","coordinates":[75670,57935]},{"type":"Point","coordinates":[75669,57938]},{"type":"Point","coordinates":[7671,52276]},{"type":"Point","coordinates":[81283,56613]},{"type":"Point","coordinates":[85110,55547]},{"type":"Point","coordinates":[85338,55484]},{"type":"Point","coordinates":[66709,59521]},{"type":"Point","coordinates":[74884,58131]},{"type":"Point","coordinates":[48209,60529]},{"type":"Point","coordinates":[85150,55556]},{"type":"Point","coordinates":[82958,56188]},{"type":"Point","coordinates":[82959,56188]},{"type":"Point","coordinates":[75258,58069]},{"type":"Point","coordinates":[70339,59003]},{"type":"Point","coordinates":[75398,58061]},{"type":"Point","coordinates":[74687,58217]},{"type":"Point","coordinates":[48298,60578]},{"type":"Point","coordinates":[80002,57011]},{"type":"Point","coordinates":[78303,57444]},{"type":"Point","coordinates":[77477,57637]},{"type":"Point","coordinates":[76934,57760]},{"type":"Point","coordinates":[84853,55705]},{"type":"Point","coordinates":[75679,58036]},{"type":"Point","coordinates":[77904,57543]},{"type":"Point","coordinates":[71364,58881]},{"type":"Point","coordinates":[61939,60148]},{"type":"Point","coordinates":[76644,57842]},{"type":"Point","coordinates":[84701,55769]},{"type":"Point","coordinates":[75413,58111]},{"type":"Point","coordinates":[79501,57192]},{"type":"Point","coordinates":[77816,57601]},{"type":"Point","coordinates":[77815,57601]},{"type":"Point","coordinates":[77775,57621]},{"type":"Point","coordinates":[75580,58112]},{"type":"Point","coordinates":[75378,58155]},{"type":"Point","coordinates":[75594,58112]},{"type":"Point","coordinates":[84285,55932]},{"type":"Point","coordinates":[75584,58115]},{"type":"Point","coordinates":[77817,57619]},{"type":"Point","coordinates":[77753,57638]},{"type":"Point","coordinates":[77788,57638]},{"type":"Point","coordinates":[77432,57722]},{"type":"Point","coordinates":[77429,57724]},{"type":"Point","coordinates":[77433,57723]},{"type":"Point","coordinates":[75121,58241]},{"type":"Point","coordinates":[74643,58345]},{"type":"Point","coordinates":[77787,57663]},{"type":"Point","coordinates":[77773,57667]},{"type":"Point","coordinates":[48238,60697]},{"type":"Point","coordinates":[77814,57661]},{"type":"Point","coordinates":[77261,57792]},{"type":"Point","coordinates":[77830,57664]},{"type":"Point","coordinates":[43620,60499]},{"type":"Point","coordinates":[78340,57554]},{"type":"Point","coordinates":[77840,57674]},{"type":"Point","coordinates":[74677,58369]},{"type":"Point","coordinates":[75739,58164]},{"type":"Point","coordinates":[76282,58049]},{"type":"Point","coordinates":[74626,58398]},{"type":"Point","coordinates":[77824,57704]},{"type":"Point","coordinates":[76918,57914]},{"type":"Point","coordinates":[84310,56015]},{"type":"Point","coordinates":[75694,58185]},{"type":"Point","coordinates":[87071,55184]},{"type":"Point","coordinates":[74929,58349]},{"type":"Point","coordinates":[75688,58193]},{"type":"Point","coordinates":[84267,56039]},{"type":"Point","coordinates":[61008,60386]},{"type":"Point","coordinates":[79160,57410]},{"type":"Point","coordinates":[76462,58038]},{"type":"Point","coordinates":[48443,60775]},{"type":"Point","coordinates":[52785,60798]},{"type":"Point","coordinates":[52785,60798]},{"type":"Point","coordinates":[76284,58080]},{"type":"Point","coordinates":[74904,58374]},{"type":"Point","coordinates":[84303,56054]},{"type":"Point","coordinates":[84274,56063]},{"type":"Point","coordinates":[84301,56056]},{"type":"Point","coordinates":[85431,55724]},{"type":"Point","coordinates":[75664,58228]},{"type":"Point","coordinates":[84279,56066]},{"type":"Point","coordinates":[67882,59626]},{"type":"Point","coordinates":[76289,58104]},{"type":"Point","coordinates":[83868,56196]},{"type":"Point","coordinates":[75075,58365]},{"type":"Point","coordinates":[75644,58255]},{"type":"Point","coordinates":[77288,57897]},{"type":"Point","coordinates":[83866,56210]},{"type":"Point","coordinates":[75281,58336]},{"type":"Point","coordinates":[75383,58315]},{"type":"Point","coordinates":[75640,58264]},{"type":"Point","coordinates":[75506,58294]},{"type":"Point","coordinates":[75600,58277]},{"type":"Point","coordinates":[75632,58270]},{"type":"Point","coordinates":[75057,58391]},{"type":"Point","coordinates":[75608,58276]},{"type":"Point","coordinates":[75589,58284]},{"type":"Point","coordinates":[75589,58284]},{"type":"Point","coordinates":[75590,58285]},{"type":"Point","coordinates":[48020,60836]},{"type":"Point","coordinates":[48019,60841]},{"type":"Point","coordinates":[52815,60888]},{"type":"Point","coordinates":[75030,58448]},{"type":"Point","coordinates":[77618,57883]},{"type":"Point","coordinates":[75046,58447]},{"type":"Point","coordinates":[75570,58344]},{"type":"Point","coordinates":[75568,58345]},{"type":"Point","coordinates":[75568,58345]},{"type":"Point","coordinates":[75566,58346]},{"type":"Point","coordinates":[2683,50636]},{"type":"Point","coordinates":[2688,50640]},{"type":"Point","coordinates":[75563,58359]},{"type":"Point","coordinates":[76751,58111]},{"type":"Point","coordinates":[77736,57888]},{"type":"Point","coordinates":[77738,57890]},{"type":"Point","coordinates":[77435,57960]},{"type":"Point","coordinates":[69288,59532]},{"type":"Point","coordinates":[48016,60907]},{"type":"Point","coordinates":[76316,58217]},{"type":"Point","coordinates":[76315,58219]},{"type":"Point","coordinates":[77340,57993]},{"type":"Point","coordinates":[77345,57995]},{"type":"Point","coordinates":[2680,50684]},{"type":"Point","coordinates":[83974,56318]},{"type":"Point","coordinates":[2731,50744]},{"type":"Point","coordinates":[77467,58032]},{"type":"Point","coordinates":[75542,58465]},{"type":"Point","coordinates":[80270,57373]},{"type":"Point","coordinates":[2695,50760]},{"type":"Point","coordinates":[75396,58503]},{"type":"Point","coordinates":[75401,58504]},{"type":"Point","coordinates":[67830,59846]},{"type":"Point","coordinates":[75503,58486]},{"type":"Point","coordinates":[2732,50783]},{"type":"Point","coordinates":[75505,58487]},{"type":"Point","coordinates":[75504,58487]},{"type":"Point","coordinates":[75504,58487]},{"type":"Point","coordinates":[75504,58487]},{"type":"Point","coordinates":[75504,58487]},{"type":"Point","coordinates":[75503,58488]},{"type":"Point","coordinates":[75505,58488]},{"type":"Point","coordinates":[75505,58488]},{"type":"Point","coordinates":[75502,58488]},{"type":"Point","coordinates":[75505,58488]},{"type":"Point","coordinates":[75500,58489]},{"type":"Point","coordinates":[75507,58488]},{"type":"Point","coordinates":[75503,58489]},{"type":"Point","coordinates":[75502,58490]},{"type":"Point","coordinates":[75503,58490]},{"type":"Point","coordinates":[75506,58491]},{"type":"Point","coordinates":[75503,58492]},{"type":"Point","coordinates":[75505,58492]},{"type":"Point","coordinates":[75504,58492]},{"type":"Point","coordinates":[77359,58085]},{"type":"Point","coordinates":[75506,58494]},{"type":"Point","coordinates":[75507,58494]},{"type":"Point","coordinates":[75498,58496]},{"type":"Point","coordinates":[75509,58497]},{"type":"Point","coordinates":[2712,50788]},{"type":"Point","coordinates":[75510,58499]},{"type":"Point","coordinates":[75510,58499]},{"type":"Point","coordinates":[75510,58499]},{"type":"Point","coordinates":[75515,58501]},{"type":"Point","coordinates":[2712,50794]},{"type":"Point","coordinates":[75511,58505]},{"type":"Point","coordinates":[75511,58505]},{"type":"Point","coordinates":[75511,58505]},{"type":"Point","coordinates":[75511,58505]},{"type":"Point","coordinates":[75511,58505]},{"type":"Point","coordinates":[75511,58505]},{"type":"Point","coordinates":[75511,58506]},{"type":"Point","coordinates":[2716,50798]},{"type":"Point","coordinates":[75509,58508]},{"type":"Point","coordinates":[75511,58509]},{"type":"Point","coordinates":[75512,58510]},{"type":"Point","coordinates":[75512,58510]},{"type":"Point","coordinates":[75515,58509]},{"type":"Point","coordinates":[75510,58510]},{"type":"Point","coordinates":[75514,58510]},{"type":"Point","coordinates":[75512,58510]},{"type":"Point","coordinates":[75513,58510]},{"type":"Point","coordinates":[40143,60550]},{"type":"Point","coordinates":[75513,58510]},{"type":"Point","coordinates":[75513,58510]},{"type":"Point","coordinates":[75512,58511]},{"type":"Point","coordinates":[75513,58511]},{"type":"Point","coordinates":[75513,58511]},{"type":"Point","coordinates":[75512,58511]},{"type":"Point","coordinates":[75514,58511]},{"type":"Point","coordinates":[75512,58511]},{"type":"Point","coordinates":[2711,50802]},{"type":"Point","coordinates":[75514,58512]},{"type":"Point","coordinates":[2707,50802]},{"type":"Point","coordinates":[2710,50806]},{"type":"Point","coordinates":[2713,50810]},{"type":"Point","coordinates":[2714,50811]},{"type":"Point","coordinates":[2717,50821]},{"type":"Point","coordinates":[2709,50818]},{"type":"Point","coordinates":[2717,50823]},{"type":"Point","coordinates":[2717,50823]},{"type":"Point","coordinates":[2706,50820]},{"type":"Point","coordinates":[2711,50823]},{"type":"Point","coordinates":[56703,60965]},{"type":"Point","coordinates":[56703,60966]},{"type":"Point","coordinates":[2707,50827]},{"type":"Point","coordinates":[2739,50849]},{"type":"Point","coordinates":[2738,50858]},{"type":"Point","coordinates":[48042,61079]},{"type":"Point","coordinates":[77438,58144]},{"type":"Point","coordinates":[2716,50862]},{"type":"Point","coordinates":[75504,58572]},{"type":"Point","coordinates":[2718,50866]},{"type":"Point","coordinates":[2724,50870]},{"type":"Point","coordinates":[2724,50870]},{"type":"Point","coordinates":[2720,50869]},{"type":"Point","coordinates":[2720,50869]},{"type":"Point","coordinates":[2720,50869]},{"type":"Point","coordinates":[2724,50871]},{"type":"Point","coordinates":[75520,58575]},{"type":"Point","coordinates":[2851,50933]},{"type":"Point","coordinates":[2732,50882]},{"type":"Point","coordinates":[2720,50877]},{"type":"Point","coordinates":[47889,61121]},{"type":"Point","coordinates":[42755,60864]},{"type":"Point","coordinates":[77513,58182]},{"type":"Point","coordinates":[76624,58389]},{"type":"Point","coordinates":[76623,58390]},{"type":"Point","coordinates":[77102,58300]},{"type":"Point","coordinates":[69641,59746]},{"type":"Point","coordinates":[75693,58624]},{"type":"Point","coordinates":[48288,61194]},{"type":"Point","coordinates":[76125,58547]},{"type":"Point","coordinates":[75813,58622]},{"type":"Point","coordinates":[68821,59914]},{"type":"Point","coordinates":[75693,58666]},{"type":"Point","coordinates":[76189,58572]},{"type":"Point","coordinates":[77240,58339]},{"type":"Point","coordinates":[76189,58573]},{"type":"Point","coordinates":[80673,57514]},{"type":"Point","coordinates":[77252,58355]},{"type":"Point","coordinates":[77252,58355]},{"type":"Point","coordinates":[77252,58356]},{"type":"Point","coordinates":[77254,58356]},{"type":"Point","coordinates":[77252,58356]},{"type":"Point","coordinates":[80666,57535]},{"type":"Point","coordinates":[77249,58361]},{"type":"Point","coordinates":[77249,58361]},{"type":"Point","coordinates":[77253,58365]},{"type":"Point","coordinates":[77256,58368]},{"type":"Point","coordinates":[7647,53066]},{"type":"Point","coordinates":[70522,59711]},{"type":"Point","coordinates":[65455,60447]},{"type":"Point","coordinates":[70523,59716]},{"type":"Point","coordinates":[70467,59743]},{"type":"Point","coordinates":[76202,58645]},{"type":"Point","coordinates":[70454,59751]},{"type":"Point","coordinates":[39984,60823]},{"type":"Point","coordinates":[80345,57680]},{"type":"Point","coordinates":[77220,58468]},{"type":"Point","coordinates":[75765,58792]},{"type":"Point","coordinates":[88238,55439]},{"type":"Point","coordinates":[77843,58332]},{"type":"Point","coordinates":[77163,58495]},{"type":"Point","coordinates":[76289,58690]},{"type":"Point","coordinates":[74473,59082]},{"type":"Point","coordinates":[84392,56644]},{"type":"Point","coordinates":[84393,56645]},{"type":"Point","coordinates":[80797,57631]},{"type":"Point","coordinates":[84392,56647]},{"type":"Point","coordinates":[84411,56644]},{"type":"Point","coordinates":[67801,60240]},{"type":"Point","coordinates":[76236,58719]},{"type":"Point","coordinates":[77219,58502]},{"type":"Point","coordinates":[77193,58518]},{"type":"Point","coordinates":[3088,51348]},{"type":"Point","coordinates":[76231,58732]},{"type":"Point","coordinates":[76230,58736]},{"type":"Point","coordinates":[75448,58910]},{"type":"Point","coordinates":[3080,51366]},{"type":"Point","coordinates":[76227,58755]},{"type":"Point","coordinates":[77070,58583]},{"type":"Point","coordinates":[71338,59745]},{"type":"Point","coordinates":[76170,58809]},{"type":"Point","coordinates":[77054,58617]},{"type":"Point","coordinates":[76177,58812]},{"type":"Point","coordinates":[61328,61068]},{"type":"Point","coordinates":[77053,58622]},{"type":"Point","coordinates":[76364,58778]},{"type":"Point","coordinates":[61325,61074]},{"type":"Point","coordinates":[3023,51409]},{"type":"Point","coordinates":[70687,59893]},{"type":"Point","coordinates":[75602,58962]},{"type":"Point","coordinates":[74546,59205]},{"type":"Point","coordinates":[77589,58560]},{"type":"Point","coordinates":[80471,57863]},{"type":"Point","coordinates":[77053,58688]},{"type":"Point","coordinates":[76447,58824]},{"type":"Point","coordinates":[76996,58706]},{"type":"Point","coordinates":[77002,58709]},{"type":"Point","coordinates":[76279,58874]},{"type":"Point","coordinates":[82403,57375]},{"type":"Point","coordinates":[77008,58722]},{"type":"Point","coordinates":[75538,59054]},{"type":"Point","coordinates":[40100,61094]},{"type":"Point","coordinates":[77005,58742]},{"type":"Point","coordinates":[76797,58810]},{"type":"Point","coordinates":[76997,58775]},{"type":"Point","coordinates":[76992,58783]},{"type":"Point","coordinates":[76990,58786]},{"type":"Point","coordinates":[77029,58779]},{"type":"Point","coordinates":[74756,59299]},{"type":"Point","coordinates":[82378,57487]},{"type":"Point","coordinates":[65305,60869]},{"type":"Point","coordinates":[65303,60873]},{"type":"Point","coordinates":[65303,60874]},{"type":"Point","coordinates":[76736,58915]},{"type":"Point","coordinates":[65307,60876]},{"type":"Point","coordinates":[82390,57523]},{"type":"Point","coordinates":[65303,60879]},{"type":"Point","coordinates":[65305,60885]},{"type":"Point","coordinates":[40914,61310]},{"type":"Point","coordinates":[76501,58995]},{"type":"Point","coordinates":[62936,61171]},{"type":"Point","coordinates":[85636,56634]},{"type":"Point","coordinates":[85636,56634]},{"type":"Point","coordinates":[85636,56634]},{"type":"Point","coordinates":[76342,59045]},{"type":"Point","coordinates":[76939,58917]},{"type":"Point","coordinates":[76938,58922]},{"type":"Point","coordinates":[80976,57954]},{"type":"Point","coordinates":[85603,56662]},{"type":"Point","coordinates":[85603,56662]},{"type":"Point","coordinates":[85607,56663]},{"type":"Point","coordinates":[76821,58963]},{"type":"Point","coordinates":[76850,58961]},{"type":"Point","coordinates":[2800,51599]},{"type":"Point","coordinates":[82293,57621]},{"type":"Point","coordinates":[81199,57914]},{"type":"Point","coordinates":[62409,61269]},{"type":"Point","coordinates":[76014,59152]},{"type":"Point","coordinates":[85615,56681]},{"type":"Point","coordinates":[76559,59040]},{"type":"Point","coordinates":[85617,56683]},{"type":"Point","coordinates":[76555,59042]},{"type":"Point","coordinates":[3081,51742]},{"type":"Point","coordinates":[76871,58980]},{"type":"Point","coordinates":[3087,51752]},{"type":"Point","coordinates":[3076,51749]},{"type":"Point","coordinates":[3075,51753]},{"type":"Point","coordinates":[62920,61248]},{"type":"Point","coordinates":[74734,59449]},{"type":"Point","coordinates":[76938,58982]},{"type":"Point","coordinates":[80571,58113]},{"type":"Point","coordinates":[76938,58983]},{"type":"Point","coordinates":[77521,58853]},{"type":"Point","coordinates":[76939,58984]},{"type":"Point","coordinates":[74720,59473]},{"type":"Point","coordinates":[80781,58077]},{"type":"Point","coordinates":[80781,58077]},{"type":"Point","coordinates":[76976,59007]},{"type":"Point","coordinates":[3057,51806]},{"type":"Point","coordinates":[78763,58649]},{"type":"Point","coordinates":[76698,59142]},{"type":"Point","coordinates":[76699,59142]},{"type":"Point","coordinates":[76752,59139]},{"type":"Point","coordinates":[76787,59137]},{"type":"Point","coordinates":[87525,56250]},{"type":"Point","coordinates":[76789,59153]},{"type":"Point","coordinates":[76880,59134]},{"type":"Point","coordinates":[82417,57776]},{"type":"Point","coordinates":[56688,61868]},{"type":"Point","coordinates":[56699,61870]},{"type":"Point","coordinates":[86421,56623]},{"type":"Point","coordinates":[82408,57792]},{"type":"Point","coordinates":[83509,57488]},{"type":"Point","coordinates":[76791,59187]},{"type":"Point","coordinates":[84365,57253]},{"type":"Point","coordinates":[86391,56652]},{"type":"Point","coordinates":[48360,62000]},{"type":"Point","coordinates":[69661,60570]},{"type":"Point","coordinates":[80957,58212]},{"type":"Point","coordinates":[84308,57295]},{"type":"Point","coordinates":[76698,59237]},{"type":"Point","coordinates":[56755,61915]},{"type":"Point","coordinates":[56752,61917]},{"type":"Point","coordinates":[76751,59232]},{"type":"Point","coordinates":[76755,59231]},{"type":"Point","coordinates":[2755,51839]},{"type":"Point","coordinates":[82444,57833]},{"type":"Point","coordinates":[74625,59692]},{"type":"Point","coordinates":[76682,59259]},{"type":"Point","coordinates":[76684,59260]},{"type":"Point","coordinates":[76684,59260]},{"type":"Point","coordinates":[76681,59261]},{"type":"Point","coordinates":[75435,59530]},{"type":"Point","coordinates":[3327,52107]},{"type":"Point","coordinates":[3006,51979]},{"type":"Point","coordinates":[58062,61890]},{"type":"Point","coordinates":[63566,61437]},{"type":"Point","coordinates":[80063,58498]},{"type":"Point","coordinates":[3356,52159]},{"type":"Point","coordinates":[56769,61983]},{"type":"Point","coordinates":[78108,59006]},{"type":"Point","coordinates":[81039,58310]},{"type":"Point","coordinates":[69822,60667]},{"type":"Point","coordinates":[69818,60674]},{"type":"Point","coordinates":[2931,52033]},{"type":"Point","coordinates":[74581,59812]},{"type":"Point","coordinates":[69819,60679]},{"type":"Point","coordinates":[69819,60680]},{"type":"Point","coordinates":[69819,60681]},{"type":"Point","coordinates":[77539,59193]},{"type":"Point","coordinates":[2933,52056]},{"type":"Point","coordinates":[77101,59299]},{"type":"Point","coordinates":[2974,52088]},{"type":"Point","coordinates":[77619,59200]},{"type":"Point","coordinates":[77618,59203]},{"type":"Point","coordinates":[87035,56657]},{"type":"Point","coordinates":[83599,57703]},{"type":"Point","coordinates":[77187,59339]},{"type":"Point","coordinates":[71212,60537]},{"type":"Point","coordinates":[71212,60537]},{"type":"Point","coordinates":[83608,57723]},{"type":"Point","coordinates":[56723,62146]},{"type":"Point","coordinates":[81119,58426]},{"type":"Point","coordinates":[77113,59398]},{"type":"Point","coordinates":[77351,59357]},{"type":"Point","coordinates":[86477,56921]},{"type":"Point","coordinates":[48233,62277]},{"type":"Point","coordinates":[86465,56937]},{"type":"Point","coordinates":[58243,62116]},{"type":"Point","coordinates":[77036,59449]},{"type":"Point","coordinates":[83475,57827]},{"type":"Point","coordinates":[83475,57827]},{"type":"Point","coordinates":[77358,59380]},{"type":"Point","coordinates":[83754,57761]},{"type":"Point","coordinates":[71163,60639]},{"type":"Point","coordinates":[83551,57852]},{"type":"Point","coordinates":[48176,62342]},{"type":"Point","coordinates":[3000,52280]},{"type":"Point","coordinates":[72261,60470]},{"type":"Point","coordinates":[48176,62344]},{"type":"Point","coordinates":[48177,62349]},{"type":"Point","coordinates":[77881,59323]},{"type":"Point","coordinates":[83561,57868]},{"type":"Point","coordinates":[70918,60724]},{"type":"Point","coordinates":[70927,60728]},{"type":"Point","coordinates":[84346,57659]},{"type":"Point","coordinates":[84378,57651]},{"type":"Point","coordinates":[48297,62380]},{"type":"Point","coordinates":[83768,57831]},{"type":"Point","coordinates":[80758,58653]},{"type":"Point","coordinates":[84386,57666]},{"type":"Point","coordinates":[84380,57669]},{"type":"Point","coordinates":[24953,59480]},{"type":"Point","coordinates":[70897,60764]},{"type":"Point","coordinates":[84382,57674]},{"type":"Point","coordinates":[84382,57675]},{"type":"Point","coordinates":[71021,60752]},{"type":"Point","coordinates":[72980,60401]},{"type":"Point","coordinates":[83421,57958]},{"type":"Point","coordinates":[86306,57113]},{"type":"Point","coordinates":[2908,52313]},{"type":"Point","coordinates":[83680,57889]},{"type":"Point","coordinates":[83267,58006]},{"type":"Point","coordinates":[83683,57889]},{"type":"Point","coordinates":[83281,58004]},{"type":"Point","coordinates":[84386,57690]},{"type":"Point","coordinates":[84386,57690]},{"type":"Point","coordinates":[83282,58004]},{"type":"Point","coordinates":[84387,57690]},{"type":"Point","coordinates":[83686,57890]},{"type":"Point","coordinates":[83674,57895]},{"type":"Point","coordinates":[83296,58002]},{"type":"Point","coordinates":[83677,57896]},{"type":"Point","coordinates":[83687,57899]},{"type":"Point","coordinates":[83687,57899]},{"type":"Point","coordinates":[83683,57901]},{"type":"Point","coordinates":[83664,57910]},{"type":"Point","coordinates":[83663,57911]},{"type":"Point","coordinates":[83676,57913]},{"type":"Point","coordinates":[83694,57910]},{"type":"Point","coordinates":[73567,60325]},{"type":"Point","coordinates":[70671,60849]},{"type":"Point","coordinates":[83441,57989]},{"type":"Point","coordinates":[77858,59418]},{"type":"Point","coordinates":[77309,59546]},{"type":"Point","coordinates":[71999,60627]},{"type":"Point","coordinates":[84590,57670]},{"type":"Point","coordinates":[84532,57694]},{"type":"Point","coordinates":[77364,59549]},{"type":"Point","coordinates":[72988,60469]},{"type":"Point","coordinates":[54476,62468]},{"type":"Point","coordinates":[48406,62486]},{"type":"Point","coordinates":[48406,62486]},{"type":"Point","coordinates":[88058,56636]},{"type":"Point","coordinates":[83855,57911]},{"type":"Point","coordinates":[76525,59758]},{"type":"Point","coordinates":[71384,60783]},{"type":"Point","coordinates":[75122,60073]},{"type":"Point","coordinates":[84582,57729]},{"type":"Point","coordinates":[72398,60612]},{"type":"Point","coordinates":[83248,58116]},{"type":"Point","coordinates":[84583,57737]},{"type":"Point","coordinates":[84583,57743]},{"type":"Point","coordinates":[83595,58028]},{"type":"Point","coordinates":[84569,57755]},{"type":"Point","coordinates":[83609,58030]},{"type":"Point","coordinates":[66324,61585]},{"type":"Point","coordinates":[84567,57757]},{"type":"Point","coordinates":[84567,57757]},{"type":"Point","coordinates":[80980,58743]},{"type":"Point","coordinates":[84561,57763]},{"type":"Point","coordinates":[83630,58032]},{"type":"Point","coordinates":[83630,58032]},{"type":"Point","coordinates":[84546,57770]},{"type":"Point","coordinates":[72967,60537]},{"type":"Point","coordinates":[77337,59644]},{"type":"Point","coordinates":[72109,60713]},{"type":"Point","coordinates":[76538,59830]},{"type":"Point","coordinates":[48329,62565]},{"type":"Point","coordinates":[72107,60716]},{"type":"Point","coordinates":[83781,58014]},{"type":"Point","coordinates":[84572,57789]},{"type":"Point","coordinates":[71980,60749]},{"type":"Point","coordinates":[71988,60753]},{"type":"Point","coordinates":[71950,60760]},{"type":"Point","coordinates":[76098,59943]},{"type":"Point","coordinates":[76605,59840]},{"type":"Point","coordinates":[72021,60762]},{"type":"Point","coordinates":[60487,62258]},{"type":"Point","coordinates":[70989,60945]},{"type":"Point","coordinates":[70990,60946]},{"type":"Point","coordinates":[64323,61891]},{"type":"Point","coordinates":[83650,58094]},{"type":"Point","coordinates":[83659,58092]},{"type":"Point","coordinates":[83646,58098]},{"type":"Point","coordinates":[83650,58100]},{"type":"Point","coordinates":[83654,58100]},{"type":"Point","coordinates":[84259,57928]},{"type":"Point","coordinates":[83660,58099]},{"type":"Point","coordinates":[83660,58099]},{"type":"Point","coordinates":[83660,58099]},{"type":"Point","coordinates":[83648,58104]},{"type":"Point","coordinates":[83654,58102]},{"type":"Point","coordinates":[75476,60115]},{"type":"Point","coordinates":[83659,58103]},{"type":"Point","coordinates":[83659,58104]},{"type":"Point","coordinates":[83659,58105]},{"type":"Point","coordinates":[83650,58108]},{"type":"Point","coordinates":[83649,58110]},{"type":"Point","coordinates":[83649,58110]},{"type":"Point","coordinates":[83666,58106]},{"type":"Point","coordinates":[83651,58111]},{"type":"Point","coordinates":[83648,58113]},{"type":"Point","coordinates":[83648,58113]},{"type":"Point","coordinates":[83656,58111]},{"type":"Point","coordinates":[83658,58111]},{"type":"Point","coordinates":[83657,58113]},{"type":"Point","coordinates":[83647,58116]},{"type":"Point","coordinates":[83647,58117]},{"type":"Point","coordinates":[83657,58115]},{"type":"Point","coordinates":[83657,58115]},{"type":"Point","coordinates":[83656,58116]},{"type":"Point","coordinates":[83654,58117]},{"type":"Point","coordinates":[83654,58117]},{"type":"Point","coordinates":[83653,58117]},{"type":"Point","coordinates":[83656,58116]},{"type":"Point","coordinates":[83657,58116]},{"type":"Point","coordinates":[83652,58118]},{"type":"Point","coordinates":[83651,58118]},{"type":"Point","coordinates":[83651,58118]},{"type":"Point","coordinates":[83658,58116]},{"type":"Point","coordinates":[83656,58117]},{"type":"Point","coordinates":[83651,58118]},{"type":"Point","coordinates":[83658,58116]},{"type":"Point","coordinates":[83656,58117]},{"type":"Point","coordinates":[83651,58118]},{"type":"Point","coordinates":[83657,58117]},{"type":"Point","coordinates":[83653,58118]},{"type":"Point","coordinates":[83651,58119]},{"type":"Point","coordinates":[83651,58119]},{"type":"Point","coordinates":[83653,58118]},{"type":"Point","coordinates":[83657,58118]},{"type":"Point","coordinates":[83655,58119]},{"type":"Point","coordinates":[75467,60133]},{"type":"Point","coordinates":[83655,58121]},{"type":"Point","coordinates":[83655,58121]},{"type":"Point","coordinates":[83655,58122]},{"type":"Point","coordinates":[83655,58122]},{"type":"Point","coordinates":[75476,60133]},{"type":"Point","coordinates":[75541,60120]},{"type":"Point","coordinates":[77049,59797]},{"type":"Point","coordinates":[84075,58012]},{"type":"Point","coordinates":[83618,58144]},{"type":"Point","coordinates":[75543,60132]},{"type":"Point","coordinates":[84027,58033]},{"type":"Point","coordinates":[83611,58152]},{"type":"Point","coordinates":[79784,59166]},{"type":"Point","coordinates":[83613,58153]},{"type":"Point","coordinates":[83601,58159]},{"type":"Point","coordinates":[83517,58186]},{"type":"Point","coordinates":[84288,57968]},{"type":"Point","coordinates":[72122,60823]},{"type":"Point","coordinates":[70759,61104]},{"type":"Point","coordinates":[77685,59744]},{"type":"Point","coordinates":[72057,60908]},{"type":"Point","coordinates":[77321,59845]},{"type":"Point","coordinates":[72383,60874]},{"type":"Point","coordinates":[76258,60111]},{"type":"Point","coordinates":[55690,62732]},{"type":"Point","coordinates":[83585,58294]},{"type":"Point","coordinates":[54337,62781]},{"type":"Point","coordinates":[76308,60120]},{"type":"Point","coordinates":[58160,62627]},{"type":"Point","coordinates":[77178,59936]},{"type":"Point","coordinates":[76731,60039]},{"type":"Point","coordinates":[84149,58161]},{"type":"Point","coordinates":[58110,62653]},{"type":"Point","coordinates":[55795,62769]},{"type":"Point","coordinates":[76722,60059]},{"type":"Point","coordinates":[77213,59950]},{"type":"Point","coordinates":[63210,62263]},{"type":"Point","coordinates":[76616,60102]},{"type":"Point","coordinates":[55550,62811]},{"type":"Point","coordinates":[72085,61016]},{"type":"Point","coordinates":[7090,54482]},{"type":"Point","coordinates":[58098,62697]},{"type":"Point","coordinates":[30334,61050]},{"type":"Point","coordinates":[76355,60186]},{"type":"Point","coordinates":[77435,59947]},{"type":"Point","coordinates":[83371,58449]},{"type":"Point","coordinates":[77275,59994]},{"type":"Point","coordinates":[76361,60200]},{"type":"Point","coordinates":[77101,60037]},{"type":"Point","coordinates":[30596,61119]},{"type":"Point","coordinates":[76357,60208]},{"type":"Point","coordinates":[30595,61121]},{"type":"Point","coordinates":[55489,62854]},{"type":"Point","coordinates":[80872,59141]},{"type":"Point","coordinates":[87986,57090]},{"type":"Point","coordinates":[72110,61082]},{"type":"Point","coordinates":[77087,60095]},{"type":"Point","coordinates":[70674,61353]},{"type":"Point","coordinates":[83823,58390]},{"type":"Point","coordinates":[65443,62119]},{"type":"Point","coordinates":[83607,58471]},{"type":"Point","coordinates":[72811,61002]},{"type":"Point","coordinates":[83893,58399]},{"type":"Point","coordinates":[82286,58845]},{"type":"Point","coordinates":[71094,61315]},{"type":"Point","coordinates":[72337,61096]},{"type":"Point","coordinates":[83498,58517]},{"type":"Point","coordinates":[84671,58185]},{"type":"Point","coordinates":[84674,58188]},{"type":"Point","coordinates":[75749,60434]},{"type":"Point","coordinates":[76272,60330]},{"type":"Point","coordinates":[76180,60351]},{"type":"Point","coordinates":[77418,60091]},{"type":"Point","coordinates":[83259,58617]},{"type":"Point","coordinates":[76279,60348]},{"type":"Point","coordinates":[76278,60355]},{"type":"Point","coordinates":[75599,60511]},{"type":"Point","coordinates":[76259,60373]},{"type":"Point","coordinates":[83953,58452]},{"type":"Point","coordinates":[80921,59276]},{"type":"Point","coordinates":[72229,61185]},{"type":"Point","coordinates":[70420,61499]},{"type":"Point","coordinates":[76265,60385]},{"type":"Point","coordinates":[76260,60386]},{"type":"Point","coordinates":[72207,61192]},{"type":"Point","coordinates":[83195,58677]},{"type":"Point","coordinates":[76088,60428]},{"type":"Point","coordinates":[80693,59359]},{"type":"Point","coordinates":[76186,60427]},{"type":"Point","coordinates":[76186,60427]},{"type":"Point","coordinates":[77102,60232]},{"type":"Point","coordinates":[83144,58725]},{"type":"Point","coordinates":[84330,58396]},{"type":"Point","coordinates":[72404,61200]},{"type":"Point","coordinates":[55628,63055]},{"type":"Point","coordinates":[76311,60430]},{"type":"Point","coordinates":[71610,61359]},{"type":"Point","coordinates":[83319,58702]},{"type":"Point","coordinates":[55616,63082]},{"type":"Point","coordinates":[71605,61376]},{"type":"Point","coordinates":[76462,60422]},{"type":"Point","coordinates":[83380,58715]},{"type":"Point","coordinates":[84047,58530]},{"type":"Point","coordinates":[71990,61340]},{"type":"Point","coordinates":[72035,61334]},{"type":"Point","coordinates":[72036,61338]},{"type":"Point","coordinates":[72279,61303]},{"type":"Point","coordinates":[72034,61353]},{"type":"Point","coordinates":[72035,61355]},{"type":"Point","coordinates":[72034,61362]},{"type":"Point","coordinates":[72034,61366]},{"type":"Point","coordinates":[55551,63152]},{"type":"Point","coordinates":[75685,60656]},{"type":"Point","coordinates":[72039,61373]},{"type":"Point","coordinates":[72161,61351]},{"type":"Point","coordinates":[83365,58782]},{"type":"Point","coordinates":[83425,58773]},{"type":"Point","coordinates":[80594,59536]},{"type":"Point","coordinates":[85441,58202]},{"type":"Point","coordinates":[73457,61132]},{"type":"Point","coordinates":[72354,61339]},{"type":"Point","coordinates":[83570,58761]},{"type":"Point","coordinates":[83386,58824]},{"type":"Point","coordinates":[83387,58824]},{"type":"Point","coordinates":[39970,62766]},{"type":"Point","coordinates":[72560,61343]},{"type":"Point","coordinates":[78690,60052]},{"type":"Point","coordinates":[70618,61691]},{"type":"Point","coordinates":[70626,61690]},{"type":"Point","coordinates":[71176,61617]},{"type":"Point","coordinates":[75430,60813]},{"type":"Point","coordinates":[52425,63338]},{"type":"Point","coordinates":[88674,57280]},{"type":"Point","coordinates":[80823,59594]},{"type":"Point","coordinates":[72030,61516]},{"type":"Point","coordinates":[84651,58558]},{"type":"Point","coordinates":[72025,61521]},{"type":"Point","coordinates":[88232,57466]},{"type":"Point","coordinates":[88229,57467]},{"type":"Point","coordinates":[88230,57467]},{"type":"Point","coordinates":[68403,62119]},{"type":"Point","coordinates":[39997,62860]},{"type":"Point","coordinates":[75338,60890]},{"type":"Point","coordinates":[72029,61540]},{"type":"Point","coordinates":[88247,57492]},{"type":"Point","coordinates":[72019,61577]},{"type":"Point","coordinates":[77070,60562]},{"type":"Point","coordinates":[77850,60385]},{"type":"Point","coordinates":[64866,62659]},{"type":"Point","coordinates":[40045,62961]},{"type":"Point","coordinates":[73455,61361]},{"type":"Point","coordinates":[77770,60491]},{"type":"Point","coordinates":[75042,61088]},{"type":"Point","coordinates":[72034,61671]},{"type":"Point","coordinates":[72034,61671]},{"type":"Point","coordinates":[73402,61420]},{"type":"Point","coordinates":[80717,59814]},{"type":"Point","coordinates":[80685,59830]},{"type":"Point","coordinates":[88242,57661]},{"type":"Point","coordinates":[68653,62281]},{"type":"Point","coordinates":[68658,62288]},{"type":"Point","coordinates":[75882,60983]},{"type":"Point","coordinates":[80807,59836]},{"type":"Point","coordinates":[88689,57551]},{"type":"Point","coordinates":[75464,61103]},{"type":"Point","coordinates":[60447,63269]},{"type":"Point","coordinates":[75149,61178]},{"type":"Point","coordinates":[63270,63035]},{"type":"Point","coordinates":[70820,62047]},{"type":"Point","coordinates":[70820,62047]},{"type":"Point","coordinates":[70811,62052]},{"type":"Point","coordinates":[70807,62055]},{"type":"Point","coordinates":[70805,62058]},{"type":"Point","coordinates":[70803,62059]},{"type":"Point","coordinates":[70803,62059]},{"type":"Point","coordinates":[70818,62065]},{"type":"Point","coordinates":[75914,61104]},{"type":"Point","coordinates":[75492,61208]},{"type":"Point","coordinates":[85589,58681]},{"type":"Point","coordinates":[85015,58856]},{"type":"Point","coordinates":[80891,59997]},{"type":"Point","coordinates":[85027,58863]},{"type":"Point","coordinates":[85034,58868]},{"type":"Point","coordinates":[80807,60030]},{"type":"Point","coordinates":[85041,58869]},{"type":"Point","coordinates":[77889,60746]},{"type":"Point","coordinates":[5938,54983]},{"type":"Point","coordinates":[5938,54985]},{"type":"Point","coordinates":[58101,63625]},{"type":"Point","coordinates":[75211,61364]},{"type":"Point","coordinates":[81215,59984]},{"type":"Point","coordinates":[88238,57942]},{"type":"Point","coordinates":[58067,63668]},{"type":"Point","coordinates":[58072,63673]},{"type":"Point","coordinates":[71862,62055]},{"type":"Point","coordinates":[76128,61289]},{"type":"Point","coordinates":[6044,55163]},{"type":"Point","coordinates":[87515,58282]},{"type":"Point","coordinates":[6042,55173]},{"type":"Point","coordinates":[73890,61764]},{"type":"Point","coordinates":[73671,61812]},{"type":"Point","coordinates":[58247,63769]},{"type":"Point","coordinates":[67510,62848]},{"type":"Point","coordinates":[84964,59102]},{"type":"Point","coordinates":[84963,59102]},{"type":"Point","coordinates":[88143,58138]},{"type":"Point","coordinates":[58349,63809]},{"type":"Point","coordinates":[70223,62481]},{"type":"Point","coordinates":[70233,62488]},{"type":"Point","coordinates":[67649,62889]},{"type":"Point","coordinates":[72804,62054]},{"type":"Point","coordinates":[58344,63844]},{"type":"Point","coordinates":[58451,63881]},{"type":"Point","coordinates":[58309,63899]},{"type":"Point","coordinates":[58323,63900]},{"type":"Point","coordinates":[70255,62566]},{"type":"Point","coordinates":[70253,62582]},{"type":"Point","coordinates":[70252,62582]},{"type":"Point","coordinates":[58237,63925]},{"type":"Point","coordinates":[75899,61527]},{"type":"Point","coordinates":[88451,58176]},{"type":"Point","coordinates":[88642,58139]},{"type":"Point","coordinates":[58449,63964]},{"type":"Point","coordinates":[88371,58251]},{"type":"Point","coordinates":[69860,62720]},{"type":"Point","coordinates":[88480,58228]},{"type":"Point","coordinates":[69824,62741]},{"type":"Point","coordinates":[70113,62695]},{"type":"Point","coordinates":[86547,58859]},{"type":"Point","coordinates":[69875,62744]},{"type":"Point","coordinates":[88554,58232]},{"type":"Point","coordinates":[88555,58232]},{"type":"Point","coordinates":[88445,58269]},{"type":"Point","coordinates":[88449,58272]},{"type":"Point","coordinates":[88452,58280]},{"type":"Point","coordinates":[70564,62653]},{"type":"Point","coordinates":[69789,62781]},{"type":"Point","coordinates":[88449,58285]},{"type":"Point","coordinates":[88449,58285]},{"type":"Point","coordinates":[88447,58289]},{"type":"Point","coordinates":[74913,61862]},{"type":"Point","coordinates":[82427,60084]},{"type":"Point","coordinates":[74926,61868]},{"type":"Point","coordinates":[88493,58307]},{"type":"Point","coordinates":[88500,58315]},{"type":"Point","coordinates":[88504,58317]},{"type":"Point","coordinates":[88499,58323]},{"type":"Point","coordinates":[88505,58322]},{"type":"Point","coordinates":[88502,58323]},{"type":"Point","coordinates":[88503,58323]},{"type":"Point","coordinates":[88466,58337]},{"type":"Point","coordinates":[88501,58329]},{"type":"Point","coordinates":[88501,58330]},{"type":"Point","coordinates":[88509,58328]},{"type":"Point","coordinates":[88502,58330]},{"type":"Point","coordinates":[88497,58334]},{"type":"Point","coordinates":[88498,58336]},{"type":"Point","coordinates":[88500,58338]},{"type":"Point","coordinates":[69815,62845]},{"type":"Point","coordinates":[88501,58339]},{"type":"Point","coordinates":[88493,58345]},{"type":"Point","coordinates":[88511,58340]},{"type":"Point","coordinates":[88499,58345]},{"type":"Point","coordinates":[88500,58346]},{"type":"Point","coordinates":[69610,62889]},{"type":"Point","coordinates":[88498,58352]},{"type":"Point","coordinates":[88514,58394]},{"type":"Point","coordinates":[79383,61014]},{"type":"Point","coordinates":[85316,59420]},{"type":"Point","coordinates":[74087,62205]},{"type":"Point","coordinates":[85351,59446]},{"type":"Point","coordinates":[85352,59474]},{"type":"Point","coordinates":[3435,54656]},{"type":"Point","coordinates":[77115,61634]},{"type":"Point","coordinates":[77090,61647]},{"type":"Point","coordinates":[77110,61647]},{"type":"Point","coordinates":[77110,61647]},{"type":"Point","coordinates":[77110,61647]},{"type":"Point","coordinates":[77110,61647]},{"type":"Point","coordinates":[77107,61654]},{"type":"Point","coordinates":[77115,61654]},{"type":"Point","coordinates":[77115,61654]},{"type":"Point","coordinates":[56993,64390]},{"type":"Point","coordinates":[74460,62225]},{"type":"Point","coordinates":[58198,64385]},{"type":"Point","coordinates":[87246,59029]},{"type":"Point","coordinates":[69851,63135]},{"type":"Point","coordinates":[82823,60350]},{"type":"Point","coordinates":[82769,60370]},{"type":"Point","coordinates":[82791,60368]},{"type":"Point","coordinates":[57401,64487]},{"type":"Point","coordinates":[82785,60381]},{"type":"Point","coordinates":[82783,60395]},{"type":"Point","coordinates":[82783,60395]},{"type":"Point","coordinates":[82737,60414]},{"type":"Point","coordinates":[82738,60414]},{"type":"Point","coordinates":[57408,64518]},{"type":"Point","coordinates":[82761,60440]},{"type":"Point","coordinates":[72570,62774]},{"type":"Point","coordinates":[88795,58666]},{"type":"Point","coordinates":[70512,63165]},{"type":"Point","coordinates":[49860,64809]},{"type":"Point","coordinates":[86739,59405]},{"type":"Point","coordinates":[60857,64433]},{"type":"Point","coordinates":[71353,63096]},{"type":"Point","coordinates":[82172,60723]},{"type":"Point","coordinates":[60856,64437]},{"type":"Point","coordinates":[71967,62998]},{"type":"Point","coordinates":[60858,64446]},{"type":"Point","coordinates":[82430,60671]},{"type":"Point","coordinates":[56188,64758]},{"type":"Point","coordinates":[69466,63460]},{"type":"Point","coordinates":[69466,63461]},{"type":"Point","coordinates":[82317,60749]},{"type":"Point","coordinates":[86838,59453]},{"type":"Point","coordinates":[86189,59675]},{"type":"Point","coordinates":[87875,59161]},{"type":"Point","coordinates":[87096,59409]},{"type":"Point","coordinates":[86695,59534]},{"type":"Point","coordinates":[82224,60820]},{"type":"Point","coordinates":[82255,60829]},{"type":"Point","coordinates":[86938,59505]},{"type":"Point","coordinates":[71749,63184]},{"type":"Point","coordinates":[86939,59506]},{"type":"Point","coordinates":[86938,59509]},{"type":"Point","coordinates":[87641,59296]},{"type":"Point","coordinates":[87641,59296]},{"type":"Point","coordinates":[87641,59296]},{"type":"Point","coordinates":[87642,59297]},{"type":"Point","coordinates":[87642,59298]},{"type":"Point","coordinates":[87642,59299]},{"type":"Point","coordinates":[57873,64818]},{"type":"Point","coordinates":[86815,59572]},{"type":"Point","coordinates":[82263,60913]},{"type":"Point","coordinates":[54439,65020]},{"type":"Point","coordinates":[87113,59537]},{"type":"Point","coordinates":[87111,59540]},{"type":"Point","coordinates":[87120,59549]},{"type":"Point","coordinates":[87175,59563]},{"type":"Point","coordinates":[82260,60993]},{"type":"Point","coordinates":[63458,64502]},{"type":"Point","coordinates":[71398,63424]},{"type":"Point","coordinates":[82253,61049]},{"type":"Point","coordinates":[82254,61051]},{"type":"Point","coordinates":[72174,63309]},{"type":"Point","coordinates":[71400,63492]},{"type":"Point","coordinates":[84269,60560]},{"type":"Point","coordinates":[41040,64902]},{"type":"Point","coordinates":[41032,64907]},{"type":"Point","coordinates":[71662,63604]},{"type":"Point","coordinates":[86825,59965]},{"type":"Point","coordinates":[41058,64975]},{"type":"Point","coordinates":[86931,59937]},{"type":"Point","coordinates":[71787,63635]},{"type":"Point","coordinates":[57013,65306]},{"type":"Point","coordinates":[87228,59909]},{"type":"Point","coordinates":[83990,60872]},{"type":"Point","coordinates":[4317,56039]},{"type":"Point","coordinates":[86883,60035]},{"type":"Point","coordinates":[87234,59929]},{"type":"Point","coordinates":[87233,59933]},{"type":"Point","coordinates":[87280,59944]},{"type":"Point","coordinates":[87270,59961]},{"type":"Point","coordinates":[87297,59955]},{"type":"Point","coordinates":[87299,59956]},{"type":"Point","coordinates":[87297,59960]},{"type":"Point","coordinates":[87287,59964]},{"type":"Point","coordinates":[61855,65071]},{"type":"Point","coordinates":[70565,63958]},{"type":"Point","coordinates":[4636,56245]},{"type":"Point","coordinates":[87099,60060]},{"type":"Point","coordinates":[73612,63446]},{"type":"Point","coordinates":[71506,63845]},{"type":"Point","coordinates":[87358,60007]},{"type":"Point","coordinates":[8474,57816]},{"type":"Point","coordinates":[86593,60293]},{"type":"Point","coordinates":[71392,63929]},{"type":"Point","coordinates":[71607,63895]},{"type":"Point","coordinates":[74358,63384]},{"type":"Point","coordinates":[74337,63398]},{"type":"Point","coordinates":[64156,64971]},{"type":"Point","coordinates":[85246,60737]},{"type":"Point","coordinates":[57491,65554]},{"type":"Point","coordinates":[71603,63964]},{"type":"Point","coordinates":[87279,60166]},{"type":"Point","coordinates":[81559,61810]},{"type":"Point","coordinates":[63207,65160]},{"type":"Point","coordinates":[54355,65734]},{"type":"Point","coordinates":[71408,64041]},{"type":"Point","coordinates":[41098,65361]},{"type":"Point","coordinates":[86637,60419]},{"type":"Point","coordinates":[50297,65830]},{"type":"Point","coordinates":[78082,62768]},{"type":"Point","coordinates":[84200,61222]},{"type":"Point","coordinates":[8200,57966]},{"type":"Point","coordinates":[71453,64133]},{"type":"Point","coordinates":[71537,64120]},{"type":"Point","coordinates":[81630,61965]},{"type":"Point","coordinates":[54780,65933]},{"type":"Point","coordinates":[54778,65936]},{"type":"Point","coordinates":[54779,65936]},{"type":"Point","coordinates":[50238,65989]},{"type":"Point","coordinates":[71735,64211]},{"type":"Point","coordinates":[54767,65958]},{"type":"Point","coordinates":[86967,60564]},{"type":"Point","coordinates":[36636,65176]},{"type":"Point","coordinates":[85784,61002]},{"type":"Point","coordinates":[85777,61012]},{"type":"Point","coordinates":[85772,61020]},{"type":"Point","coordinates":[85768,61022]},{"type":"Point","coordinates":[85762,61029]},{"type":"Point","coordinates":[85760,61029]},{"type":"Point","coordinates":[85762,61029]},{"type":"Point","coordinates":[85762,61029]},{"type":"Point","coordinates":[85760,61030]},{"type":"Point","coordinates":[85762,61030]},{"type":"Point","coordinates":[85759,61030]},{"type":"Point","coordinates":[85760,61030]},{"type":"Point","coordinates":[85761,61030]},{"type":"Point","coordinates":[85760,61031]},{"type":"Point","coordinates":[6661,57660]},{"type":"Point","coordinates":[86951,60696]},{"type":"Point","coordinates":[86952,60698]},{"type":"Point","coordinates":[74664,63836]},{"type":"Point","coordinates":[75271,63716]},{"type":"Point","coordinates":[50277,66190]},{"type":"Point","coordinates":[82927,61908]},{"type":"Point","coordinates":[82927,61908]},{"type":"Point","coordinates":[82927,61908]},{"type":"Point","coordinates":[82927,61908]},{"type":"Point","coordinates":[82926,61908]},{"type":"Point","coordinates":[82927,61908]},{"type":"Point","coordinates":[82927,61909]},{"type":"Point","coordinates":[86993,60728]},{"type":"Point","coordinates":[82928,61911]},{"type":"Point","coordinates":[83113,61861]},{"type":"Point","coordinates":[82932,61916]},{"type":"Point","coordinates":[82930,61918]},{"type":"Point","coordinates":[71568,64452]},{"type":"Point","coordinates":[82935,61920]},{"type":"Point","coordinates":[71549,64461]},{"type":"Point","coordinates":[86991,60748]},{"type":"Point","coordinates":[87019,60740]},{"type":"Point","coordinates":[71570,64461]},{"type":"Point","coordinates":[87000,60753]},{"type":"Point","coordinates":[71449,64488]},{"type":"Point","coordinates":[86948,60780]},{"type":"Point","coordinates":[86956,60780]},{"type":"Point","coordinates":[86984,60774]},{"type":"Point","coordinates":[86972,60779]},{"type":"Point","coordinates":[86990,60775]},{"type":"Point","coordinates":[86995,60778]},{"type":"Point","coordinates":[86982,60783]},{"type":"Point","coordinates":[86983,60784]},{"type":"Point","coordinates":[86987,60783]},{"type":"Point","coordinates":[86982,60785]},{"type":"Point","coordinates":[86982,60785]},{"type":"Point","coordinates":[86982,60785]},{"type":"Point","coordinates":[86972,60789]},{"type":"Point","coordinates":[86985,60785]},{"type":"Point","coordinates":[86971,60790]},{"type":"Point","coordinates":[86978,60789]},{"type":"Point","coordinates":[86986,60788]},{"type":"Point","coordinates":[86961,60797]},{"type":"Point","coordinates":[86981,60791]},{"type":"Point","coordinates":[86981,60792]},{"type":"Point","coordinates":[86988,60791]},{"type":"Point","coordinates":[86985,60793]},{"type":"Point","coordinates":[86984,60793]},{"type":"Point","coordinates":[86984,60793]},{"type":"Point","coordinates":[86989,60793]},{"type":"Point","coordinates":[86983,60800]},{"type":"Point","coordinates":[86983,60801]},{"type":"Point","coordinates":[86987,60800]},{"type":"Point","coordinates":[71542,64518]},{"type":"Point","coordinates":[71548,64519]},{"type":"Point","coordinates":[71713,64517]},{"type":"Point","coordinates":[86954,60864]},{"type":"Point","coordinates":[86955,60865]},{"type":"Point","coordinates":[86910,60880]},{"type":"Point","coordinates":[86953,60867]},{"type":"Point","coordinates":[86953,60868]},{"type":"Point","coordinates":[55014,66268]},{"type":"Point","coordinates":[86948,60869]},{"type":"Point","coordinates":[86948,60870]},{"type":"Point","coordinates":[86949,60874]},{"type":"Point","coordinates":[86950,60876]},{"type":"Point","coordinates":[86958,60874]},{"type":"Point","coordinates":[86911,60889]},{"type":"Point","coordinates":[86956,60876]},{"type":"Point","coordinates":[86911,60890]},{"type":"Point","coordinates":[71714,64551]},{"type":"Point","coordinates":[86950,60880]},{"type":"Point","coordinates":[86912,60892]},{"type":"Point","coordinates":[86955,60879]},{"type":"Point","coordinates":[86949,60881]},{"type":"Point","coordinates":[86949,60881]},{"type":"Point","coordinates":[86949,60881]},{"type":"Point","coordinates":[71729,64550]},{"type":"Point","coordinates":[86913,60893]},{"type":"Point","coordinates":[86949,60883]},{"type":"Point","coordinates":[86949,60884]},{"type":"Point","coordinates":[86954,60883]},{"type":"Point","coordinates":[86952,60885]},{"type":"Point","coordinates":[86950,60887]},{"type":"Point","coordinates":[7403,58157]},{"type":"Point","coordinates":[7406,58158]},{"type":"Point","coordinates":[7579,58226]},{"type":"Point","coordinates":[7396,58160]},{"type":"Point","coordinates":[86180,61141]},{"type":"Point","coordinates":[82451,62203]},{"type":"Point","coordinates":[5084,57268]},{"type":"Point","coordinates":[7758,58311]},{"type":"Point","coordinates":[7482,58211]},{"type":"Point","coordinates":[7559,58240]},{"type":"Point","coordinates":[82458,62214]},{"type":"Point","coordinates":[7483,58211]},{"type":"Point","coordinates":[7465,58208]},{"type":"Point","coordinates":[7481,58215]},{"type":"Point","coordinates":[7413,58193]},{"type":"Point","coordinates":[81045,62594]},{"type":"Point","coordinates":[70644,64783]},{"type":"Point","coordinates":[7401,58194]},{"type":"Point","coordinates":[86272,61140]},{"type":"Point","coordinates":[86918,60954]},{"type":"Point","coordinates":[4665,57138]},{"type":"Point","coordinates":[82016,62363]},{"type":"Point","coordinates":[4091,56908]},{"type":"Point","coordinates":[4348,57020]},{"type":"Point","coordinates":[86902,60979]},{"type":"Point","coordinates":[4502,57102]},{"type":"Point","coordinates":[86920,60995]},{"type":"Point","coordinates":[86921,60997]},{"type":"Point","coordinates":[86923,60997]},{"type":"Point","coordinates":[86922,60998]},{"type":"Point","coordinates":[7468,58276]},{"type":"Point","coordinates":[86915,61002]},{"type":"Point","coordinates":[86979,60983]},{"type":"Point","coordinates":[86928,60999]},{"type":"Point","coordinates":[86926,61000]},{"type":"Point","coordinates":[86925,61002]},{"type":"Point","coordinates":[86926,61002]},{"type":"Point","coordinates":[86927,61002]},{"type":"Point","coordinates":[86927,61002]},{"type":"Point","coordinates":[86927,61002]},{"type":"Point","coordinates":[86922,61004]},{"type":"Point","coordinates":[86927,61003]},{"type":"Point","coordinates":[7709,58374]},{"type":"Point","coordinates":[86032,61287]},{"type":"Point","coordinates":[4584,57167]},{"type":"Point","coordinates":[4178,57003]},{"type":"Point","coordinates":[86912,61026]},{"type":"Point","coordinates":[7676,58380]},{"type":"Point","coordinates":[7772,58418]},{"type":"Point","coordinates":[4476,57128]},{"type":"Point","coordinates":[6835,58081]},{"type":"Point","coordinates":[74097,64265]},{"type":"Point","coordinates":[86108,61296]},{"type":"Point","coordinates":[70700,64883]},{"type":"Point","coordinates":[4007,56960]},{"type":"Point","coordinates":[4709,57247]},{"type":"Point","coordinates":[42498,66189]},{"type":"Point","coordinates":[4078,56997]},{"type":"Point","coordinates":[7710,58427]},{"type":"Point","coordinates":[81061,62711]},{"type":"Point","coordinates":[86004,61343]},{"type":"Point","coordinates":[81079,62712]},{"type":"Point","coordinates":[78811,63278]},{"type":"Point","coordinates":[4550,57207]},{"type":"Point","coordinates":[4316,57114]},{"type":"Point","coordinates":[7462,58355]},{"type":"Point","coordinates":[86978,61063]},{"type":"Point","coordinates":[85800,61424]},{"type":"Point","coordinates":[86895,61099]},{"type":"Point","coordinates":[7859,58522]},{"type":"Point","coordinates":[4335,57148]},{"type":"Point","coordinates":[4326,57147]},{"type":"Point","coordinates":[86867,61122]},{"type":"Point","coordinates":[6818,58138]},{"type":"Point","coordinates":[4527,57234]},{"type":"Point","coordinates":[71428,64822]},{"type":"Point","coordinates":[86275,61314]},{"type":"Point","coordinates":[70958,64908]},{"type":"Point","coordinates":[86873,61136]},{"type":"Point","coordinates":[6886,58181]},{"type":"Point","coordinates":[19183,62229]},{"type":"Point","coordinates":[78868,63320]},{"type":"Point","coordinates":[7680,58491]},{"type":"Point","coordinates":[86897,61145]},{"type":"Point","coordinates":[7455,58415]},{"type":"Point","coordinates":[7451,58414]},{"type":"Point","coordinates":[7452,58416]},{"type":"Point","coordinates":[7537,58448]},{"type":"Point","coordinates":[7453,58420]},{"type":"Point","coordinates":[7452,58420]},{"type":"Point","coordinates":[7454,58421]},{"type":"Point","coordinates":[7454,58420]},{"type":"Point","coordinates":[7454,58421]},{"type":"Point","coordinates":[7454,58421]},{"type":"Point","coordinates":[7454,58421]},{"type":"Point","coordinates":[7454,58421]},{"type":"Point","coordinates":[7454,58421]},{"type":"Point","coordinates":[7454,58421]},{"type":"Point","coordinates":[7454,58422]},{"type":"Point","coordinates":[7454,58422]},{"type":"Point","coordinates":[7454,58422]},{"type":"Point","coordinates":[7454,58423]},{"type":"Point","coordinates":[7667,58503]},{"type":"Point","coordinates":[73588,64466]},{"type":"Point","coordinates":[7669,58506]},{"type":"Point","coordinates":[74708,64250]},{"type":"Point","coordinates":[7666,58506]},{"type":"Point","coordinates":[8065,58669]},{"type":"Point","coordinates":[7517,58463]},{"type":"Point","coordinates":[4612,57328]},{"type":"Point","coordinates":[42340,66289]},{"type":"Point","coordinates":[72175,64773]},{"type":"Point","coordinates":[86065,61462]},{"type":"Point","coordinates":[86065,61462]},{"type":"Point","coordinates":[76425,63943]},{"type":"Point","coordinates":[4385,57270]},{"type":"Point","coordinates":[86336,61386]},{"type":"Point","coordinates":[73931,64467]},{"type":"Point","coordinates":[4651,57392]},{"type":"Point","coordinates":[6974,58313]},{"type":"Point","coordinates":[7531,58526]},{"type":"Point","coordinates":[4479,57335]},{"type":"Point","coordinates":[86069,61489]},{"type":"Point","coordinates":[3559,56960]},{"type":"Point","coordinates":[42607,66373]},{"type":"Point","coordinates":[42223,66349]},{"type":"Point","coordinates":[73995,64478]},{"type":"Point","coordinates":[4016,57158]},{"type":"Point","coordinates":[3901,57114]},{"type":"Point","coordinates":[71015,65030]},{"type":"Point","coordinates":[4285,57280]},{"type":"Point","coordinates":[7422,58517]},{"type":"Point","coordinates":[9455,59271]},{"type":"Point","coordinates":[86266,61467]},{"type":"Point","coordinates":[4279,57295]},{"type":"Point","coordinates":[3899,57140]},{"type":"Point","coordinates":[62824,66144]},{"type":"Point","coordinates":[62823,66150]},{"type":"Point","coordinates":[4748,57496]},{"type":"Point","coordinates":[3629,57046]},{"type":"Point","coordinates":[71537,64984]},{"type":"Point","coordinates":[86266,61497]},{"type":"Point","coordinates":[86340,61482]},{"type":"Point","coordinates":[7724,58683]},{"type":"Point","coordinates":[4542,57444]},{"type":"Point","coordinates":[86241,61521]},{"type":"Point","coordinates":[7365,58557]},{"type":"Point","coordinates":[86192,61547]},{"type":"Point","coordinates":[70898,65123]},{"type":"Point","coordinates":[4386,57401]},{"type":"Point","coordinates":[81080,62976]},{"type":"Point","coordinates":[86194,61554]},{"type":"Point","coordinates":[86197,61553]},{"type":"Point","coordinates":[86197,61553]},{"type":"Point","coordinates":[86197,61554]},{"type":"Point","coordinates":[86198,61554]},{"type":"Point","coordinates":[86194,61555]},{"type":"Point","coordinates":[86195,61555]},{"type":"Point","coordinates":[86202,61553]},{"type":"Point","coordinates":[86195,61555]},{"type":"Point","coordinates":[86195,61555]},{"type":"Point","coordinates":[86195,61555]},{"type":"Point","coordinates":[86195,61555]},{"type":"Point","coordinates":[86200,61556]},{"type":"Point","coordinates":[86199,61556]},{"type":"Point","coordinates":[86199,61556]},{"type":"Point","coordinates":[86199,61556]},{"type":"Point","coordinates":[74297,64515]},{"type":"Point","coordinates":[4773,57565]},{"type":"Point","coordinates":[86200,61558]},{"type":"Point","coordinates":[86201,61558]},{"type":"Point","coordinates":[86200,61558]},{"type":"Point","coordinates":[86256,61542]},{"type":"Point","coordinates":[86201,61559]},{"type":"Point","coordinates":[86201,61559]},{"type":"Point","coordinates":[86950,61336]},{"type":"Point","coordinates":[86195,61566]},{"type":"Point","coordinates":[81087,62991]},{"type":"Point","coordinates":[86209,61566]},{"type":"Point","coordinates":[80593,63119]},{"type":"Point","coordinates":[86211,61569]},{"type":"Point","coordinates":[80651,63110]},{"type":"Point","coordinates":[86220,61574]},{"type":"Point","coordinates":[80632,63119]},{"type":"Point","coordinates":[80633,63120]},{"type":"Point","coordinates":[86279,61562]},{"type":"Point","coordinates":[4845,57623]},{"type":"Point","coordinates":[78663,63605]},{"type":"Point","coordinates":[80653,63126]},{"type":"Point","coordinates":[80636,63132]},{"type":"Point","coordinates":[71825,65022]},{"type":"Point","coordinates":[81099,63024]},{"type":"Point","coordinates":[86947,61378]},{"type":"Point","coordinates":[6880,58468]},{"type":"Point","coordinates":[3969,57311]},{"type":"Point","coordinates":[70981,65220]},{"type":"Point","coordinates":[73826,64711]},{"type":"Point","coordinates":[46067,66782]},{"type":"Point","coordinates":[86407,61616]},{"type":"Point","coordinates":[86096,61711]},{"type":"Point","coordinates":[86977,61446]},{"type":"Point","coordinates":[3878,57327]},{"type":"Point","coordinates":[46076,66806]},{"type":"Point","coordinates":[6706,58467]},{"type":"Point","coordinates":[82586,62737]},{"type":"Point","coordinates":[4104,57455]},{"type":"Point","coordinates":[86918,61500]},{"type":"Point","coordinates":[3968,57404]},{"type":"Point","coordinates":[86961,61498]},{"type":"Point","coordinates":[86986,61490]},{"type":"Point","coordinates":[86965,61498]},{"type":"Point","coordinates":[86984,61493]},{"type":"Point","coordinates":[86972,61498]},{"type":"Point","coordinates":[86974,61499]},{"type":"Point","coordinates":[4263,57537]},{"type":"Point","coordinates":[86971,61501]},{"type":"Point","coordinates":[86968,61502]},{"type":"Point","coordinates":[86968,61502]},{"type":"Point","coordinates":[86968,61502]},{"type":"Point","coordinates":[86968,61503]},{"type":"Point","coordinates":[86968,61503]},{"type":"Point","coordinates":[86968,61503]},{"type":"Point","coordinates":[86968,61503]},{"type":"Point","coordinates":[86968,61503]},{"type":"Point","coordinates":[86971,61502]},{"type":"Point","coordinates":[86968,61503]},{"type":"Point","coordinates":[86969,61503]},{"type":"Point","coordinates":[70988,65298]},{"type":"Point","coordinates":[86974,61502]},{"type":"Point","coordinates":[86971,61503]},{"type":"Point","coordinates":[86981,61501]},{"type":"Point","coordinates":[86969,61505]},{"type":"Point","coordinates":[86970,61505]},{"type":"Point","coordinates":[86991,61499]},{"type":"Point","coordinates":[4458,57623]},{"type":"Point","coordinates":[86970,61507]},{"type":"Point","coordinates":[86972,61506]},{"type":"Point","coordinates":[86971,61507]},{"type":"Point","coordinates":[86970,61510]},{"type":"Point","coordinates":[86979,61507]},{"type":"Point","coordinates":[86970,61511]},{"type":"Point","coordinates":[86993,61505]},{"type":"Point","coordinates":[86975,61512]},{"type":"Point","coordinates":[83300,62585]},{"type":"Point","coordinates":[74456,64676]},{"type":"Point","coordinates":[86974,61517]},{"type":"Point","coordinates":[86977,61519]},{"type":"Point","coordinates":[3711,57335]},{"type":"Point","coordinates":[9777,59677]},{"type":"Point","coordinates":[4127,57514]},{"type":"Point","coordinates":[4803,57796]},{"type":"Point","coordinates":[81366,63128]},{"type":"Point","coordinates":[4511,57685]},{"type":"Point","coordinates":[6276,58389]},{"type":"Point","coordinates":[87015,61535]},{"type":"Point","coordinates":[86973,61553]},{"type":"Point","coordinates":[70736,65393]},{"type":"Point","coordinates":[86971,61561]},{"type":"Point","coordinates":[83300,62637]},{"type":"Point","coordinates":[3998,57499]},{"type":"Point","coordinates":[71814,65230]},{"type":"Point","coordinates":[86681,61678]},{"type":"Point","coordinates":[55804,66956]},{"type":"Point","coordinates":[86755,61667]},{"type":"Point","coordinates":[86686,61694]},{"type":"Point","coordinates":[86687,61694]},{"type":"Point","coordinates":[86685,61697]},{"type":"Point","coordinates":[3464,57320]},{"type":"Point","coordinates":[86685,61698]},{"type":"Point","coordinates":[86684,61699]},{"type":"Point","coordinates":[86684,61699]},{"type":"Point","coordinates":[86684,61699]},{"type":"Point","coordinates":[86684,61699]},{"type":"Point","coordinates":[86684,61699]},{"type":"Point","coordinates":[86684,61700]},{"type":"Point","coordinates":[86683,61701]},{"type":"Point","coordinates":[86683,61701]},{"type":"Point","coordinates":[86679,61708]},{"type":"Point","coordinates":[86679,61709]},{"type":"Point","coordinates":[86681,61710]},{"type":"Point","coordinates":[86681,61712]},{"type":"Point","coordinates":[86677,61716]},{"type":"Point","coordinates":[86677,61717]},{"type":"Point","coordinates":[4523,57772]},{"type":"Point","coordinates":[86678,61718]},{"type":"Point","coordinates":[86673,61724]},{"type":"Point","coordinates":[71486,65347]},{"type":"Point","coordinates":[71485,65349]},{"type":"Point","coordinates":[71485,65349]},{"type":"Point","coordinates":[71485,65349]},{"type":"Point","coordinates":[71487,65349]},{"type":"Point","coordinates":[3903,57535]},{"type":"Point","coordinates":[4578,57827]},{"type":"Point","coordinates":[87034,61645]},{"type":"Point","coordinates":[73135,65079]},{"type":"Point","coordinates":[81279,63282]},{"type":"Point","coordinates":[71648,65361]},{"type":"Point","coordinates":[74304,64876]},{"type":"Point","coordinates":[73955,64947]},{"type":"Point","coordinates":[3592,57464]},{"type":"Point","coordinates":[3470,57417]},{"type":"Point","coordinates":[74508,64857]},{"type":"Point","coordinates":[3742,57572]},{"type":"Point","coordinates":[80637,63517]},{"type":"Point","coordinates":[3770,57587]},{"type":"Point","coordinates":[75017,64796]},{"type":"Point","coordinates":[3782,57595]},{"type":"Point","coordinates":[3771,57598]},{"type":"Point","coordinates":[3781,57602]},{"type":"Point","coordinates":[3775,57600]},{"type":"Point","coordinates":[80943,63454]},{"type":"Point","coordinates":[3806,57636]},{"type":"Point","coordinates":[3756,57660]},{"type":"Point","coordinates":[37647,66536]},{"type":"Point","coordinates":[4419,57979]},{"type":"Point","coordinates":[39350,66750]},{"type":"Point","coordinates":[78922,64076]},{"type":"Point","coordinates":[80896,63596]},{"type":"Point","coordinates":[74468,65047]},{"type":"Point","coordinates":[3686,57717]},{"type":"Point","coordinates":[4497,58055]},{"type":"Point","coordinates":[3470,57637]},{"type":"Point","coordinates":[3866,57811]},{"type":"Point","coordinates":[3762,57782]},{"type":"Point","coordinates":[86344,62147]},{"type":"Point","coordinates":[76320,64730]},{"type":"Point","coordinates":[71839,65615]},{"type":"Point","coordinates":[72072,65586]},{"type":"Point","coordinates":[82203,63367]},{"type":"Point","coordinates":[3516,57744]},{"type":"Point","coordinates":[46147,67354]},{"type":"Point","coordinates":[86643,62117]},{"type":"Point","coordinates":[4472,58154]},{"type":"Point","coordinates":[3620,57807]},{"type":"Point","coordinates":[86338,62223]},{"type":"Point","coordinates":[74399,65197]},{"type":"Point","coordinates":[86681,62123]},{"type":"Point","coordinates":[46150,67376]},{"type":"Point","coordinates":[3505,57783]},{"type":"Point","coordinates":[3435,57771]},{"type":"Point","coordinates":[3534,57833]},{"type":"Point","coordinates":[3694,57913]},{"type":"Point","coordinates":[74374,65289]},{"type":"Point","coordinates":[37827,66886]},{"type":"Point","coordinates":[4459,58332]},{"type":"Point","coordinates":[3739,58041]},{"type":"Point","coordinates":[3670,58026]},{"type":"Point","coordinates":[80521,64026]},{"type":"Point","coordinates":[75046,65271]},{"type":"Point","coordinates":[74798,65331]},{"type":"Point","coordinates":[9606,60340]},{"type":"Point","coordinates":[80517,64049]},{"type":"Point","coordinates":[8231,59850]},{"type":"Point","coordinates":[85838,62603]},{"type":"Point","coordinates":[4188,58279]},{"type":"Point","coordinates":[70021,66206]},{"type":"Point","coordinates":[8225,59852]},{"type":"Point","coordinates":[8225,59853]},{"type":"Point","coordinates":[8242,59861]},{"type":"Point","coordinates":[8225,59855]},{"type":"Point","coordinates":[8226,59856]},{"type":"Point","coordinates":[8226,59856]},{"type":"Point","coordinates":[8226,59856]},{"type":"Point","coordinates":[8226,59856]},{"type":"Point","coordinates":[8226,59857]},{"type":"Point","coordinates":[8226,59857]},{"type":"Point","coordinates":[8226,59857]},{"type":"Point","coordinates":[8229,59859]},{"type":"Point","coordinates":[8226,59859]},{"type":"Point","coordinates":[8226,59860]},{"type":"Point","coordinates":[8227,59861]},{"type":"Point","coordinates":[8227,59861]},{"type":"Point","coordinates":[8391,59925]},{"type":"Point","coordinates":[8227,59866]},{"type":"Point","coordinates":[3722,58106]},{"type":"Point","coordinates":[8190,59856]},{"type":"Point","coordinates":[8190,59856]},{"type":"Point","coordinates":[69960,66236]},{"type":"Point","coordinates":[69960,66236]},{"type":"Point","coordinates":[8228,59876]},{"type":"Point","coordinates":[61050,67320]},{"type":"Point","coordinates":[8227,59881]},{"type":"Point","coordinates":[8227,59881]},{"type":"Point","coordinates":[8227,59881]},{"type":"Point","coordinates":[3548,58046]},{"type":"Point","coordinates":[8227,59883]},{"type":"Point","coordinates":[8228,59885]},{"type":"Point","coordinates":[62974,67154]},{"type":"Point","coordinates":[8228,59889]},{"type":"Point","coordinates":[8228,59890]},{"type":"Point","coordinates":[8229,59893]},{"type":"Point","coordinates":[8229,59893]},{"type":"Point","coordinates":[8229,59893]},{"type":"Point","coordinates":[8228,59893]},{"type":"Point","coordinates":[8228,59893]},{"type":"Point","coordinates":[8261,59905]},{"type":"Point","coordinates":[8231,59897]},{"type":"Point","coordinates":[8229,59897]},{"type":"Point","coordinates":[85557,62737]},{"type":"Point","coordinates":[8232,59904]},{"type":"Point","coordinates":[8232,59906]},{"type":"Point","coordinates":[62964,67171]},{"type":"Point","coordinates":[8238,59909]},{"type":"Point","coordinates":[8233,59908]},{"type":"Point","coordinates":[74296,65501]},{"type":"Point","coordinates":[3494,58052]},{"type":"Point","coordinates":[8235,59914]},{"type":"Point","coordinates":[8232,59914]},{"type":"Point","coordinates":[74898,65388]},{"type":"Point","coordinates":[3710,58148]},{"type":"Point","coordinates":[8226,59919]},{"type":"Point","coordinates":[8227,59920]},{"type":"Point","coordinates":[8227,59920]},{"type":"Point","coordinates":[8227,59920]},{"type":"Point","coordinates":[8228,59920]},{"type":"Point","coordinates":[8224,59920]},{"type":"Point","coordinates":[3449,58046]},{"type":"Point","coordinates":[81335,63927]},{"type":"Point","coordinates":[80624,64112]},{"type":"Point","coordinates":[80609,64116]},{"type":"Point","coordinates":[4237,58383]},{"type":"Point","coordinates":[51376,67787]},{"type":"Point","coordinates":[80613,64120]},{"type":"Point","coordinates":[80605,64123]},{"type":"Point","coordinates":[8199,59928]},{"type":"Point","coordinates":[81357,63934]},{"type":"Point","coordinates":[80605,64128]},{"type":"Point","coordinates":[80609,64128]},{"type":"Point","coordinates":[8207,59938]},{"type":"Point","coordinates":[8206,59938]},{"type":"Point","coordinates":[81390,63931]},{"type":"Point","coordinates":[80607,64130]},{"type":"Point","coordinates":[8206,59939]},{"type":"Point","coordinates":[8203,59940]},{"type":"Point","coordinates":[8205,59940]},{"type":"Point","coordinates":[81360,63944]},{"type":"Point","coordinates":[81359,63945]},{"type":"Point","coordinates":[3496,58099]},{"type":"Point","coordinates":[80600,64145]},{"type":"Point","coordinates":[3440,58081]},{"type":"Point","coordinates":[10009,60612]},{"type":"Point","coordinates":[10009,60612]},{"type":"Point","coordinates":[10004,60614]},{"type":"Point","coordinates":[81360,63973]},{"type":"Point","coordinates":[81360,63976]},{"type":"Point","coordinates":[74758,65487]},{"type":"Point","coordinates":[74345,65578]},{"type":"Point","coordinates":[49933,67843]},{"type":"Point","coordinates":[3382,58097]},{"type":"Point","coordinates":[58755,67611]},{"type":"Point","coordinates":[52015,67853]},{"type":"Point","coordinates":[52014,67856]},{"type":"Point","coordinates":[81348,64009]},{"type":"Point","coordinates":[52154,67862]},{"type":"Point","coordinates":[51790,67873]},{"type":"Point","coordinates":[55620,67793]},{"type":"Point","coordinates":[35524,66851]},{"type":"Point","coordinates":[42615,67577]},{"type":"Point","coordinates":[3562,58206]},{"type":"Point","coordinates":[3472,58170]},{"type":"Point","coordinates":[3606,58227]},{"type":"Point","coordinates":[74511,65594]},{"type":"Point","coordinates":[3392,58149]},{"type":"Point","coordinates":[74469,65606]},{"type":"Point","coordinates":[85165,62999]},{"type":"Point","coordinates":[3702,58281]},{"type":"Point","coordinates":[74785,65545]},{"type":"Point","coordinates":[85206,62992]},{"type":"Point","coordinates":[4321,58539]},{"type":"Point","coordinates":[81915,63909]},{"type":"Point","coordinates":[71577,66154]},{"type":"Point","coordinates":[74360,65643]},{"type":"Point","coordinates":[74449,65635]},{"type":"Point","coordinates":[74450,65641]},{"type":"Point","coordinates":[74398,65652]},{"type":"Point","coordinates":[74395,65654]},{"type":"Point","coordinates":[78544,64763]},{"type":"Point","coordinates":[71944,66112]},{"type":"Point","coordinates":[39257,67341]},{"type":"Point","coordinates":[8487,60190]},{"type":"Point","coordinates":[74331,65680]},{"type":"Point","coordinates":[84894,63124]},{"type":"Point","coordinates":[74342,65683]},{"type":"Point","coordinates":[63540,67307]},{"type":"Point","coordinates":[81463,64069]},{"type":"Point","coordinates":[63542,67311]},{"type":"Point","coordinates":[78867,64712]},{"type":"Point","coordinates":[53281,67950]},{"type":"Point","coordinates":[74332,65705]},{"type":"Point","coordinates":[71975,66144]},{"type":"Point","coordinates":[74341,65708]},{"type":"Point","coordinates":[8228,60130]},{"type":"Point","coordinates":[74342,65710]},{"type":"Point","coordinates":[71988,66153]},{"type":"Point","coordinates":[74443,65722]},{"type":"Point","coordinates":[70702,66403]},{"type":"Point","coordinates":[74442,65726]},{"type":"Point","coordinates":[39288,67421]},{"type":"Point","coordinates":[74440,65729]},{"type":"Point","coordinates":[74435,65732]},{"type":"Point","coordinates":[74438,65731]},{"type":"Point","coordinates":[74438,65732]},{"type":"Point","coordinates":[74292,65762]},{"type":"Point","coordinates":[53288,68003]},{"type":"Point","coordinates":[74437,65747]},{"type":"Point","coordinates":[62861,67470]},{"type":"Point","coordinates":[55426,67974]},{"type":"Point","coordinates":[55047,67994]},{"type":"Point","coordinates":[9988,60854]},{"type":"Point","coordinates":[55237,67993]},{"type":"Point","coordinates":[82931,63796]},{"type":"Point","coordinates":[82931,63796]},{"type":"Point","coordinates":[82931,63796]},{"type":"Point","coordinates":[82931,63796]},{"type":"Point","coordinates":[82931,63796]},{"type":"Point","coordinates":[79315,64719]},{"type":"Point","coordinates":[55328,68013]},{"type":"Point","coordinates":[81614,64173]},{"type":"Point","coordinates":[50086,68089]},{"type":"Point","coordinates":[55045,68031]},{"type":"Point","coordinates":[74471,65804]},{"type":"Point","coordinates":[74471,65805]},{"type":"Point","coordinates":[46392,68001]},{"type":"Point","coordinates":[46392,68001]},{"type":"Point","coordinates":[75430,65613]},{"type":"Point","coordinates":[78892,64867]},{"type":"Point","coordinates":[53893,68091]},{"type":"Point","coordinates":[53874,68092]},{"type":"Point","coordinates":[8325,60324]},{"type":"Point","coordinates":[50128,68132]},{"type":"Point","coordinates":[85128,63254]},{"type":"Point","coordinates":[9683,60859]},{"type":"Point","coordinates":[39283,67580]},{"type":"Point","coordinates":[74408,65895]},{"type":"Point","coordinates":[74408,65895]},{"type":"Point","coordinates":[39413,67622]},{"type":"Point","coordinates":[31244,66532]},{"type":"Point","coordinates":[85025,63359]},{"type":"Point","coordinates":[55472,68140]},{"type":"Point","coordinates":[49599,68225]},{"type":"Point","coordinates":[49596,68231]},{"type":"Point","coordinates":[75321,65780]},{"type":"Point","coordinates":[55471,68167]},{"type":"Point","coordinates":[71629,66487]},{"type":"Point","coordinates":[62973,67667]},{"type":"Point","coordinates":[8541,60532]},{"type":"Point","coordinates":[74489,65971]},{"type":"Point","coordinates":[71832,66468]},{"type":"Point","coordinates":[39392,67710]},{"type":"Point","coordinates":[73636,66164]},{"type":"Point","coordinates":[69744,66842]},{"type":"Point","coordinates":[69742,66849]},{"type":"Point","coordinates":[71934,66486]},{"type":"Point","coordinates":[35993,67341]},{"type":"Point","coordinates":[74646,65997]},{"type":"Point","coordinates":[80326,64732]},{"type":"Point","coordinates":[69729,66881]},{"type":"Point","coordinates":[39164,67729]},{"type":"Point","coordinates":[74820,65975]},{"type":"Point","coordinates":[9993,61141]},{"type":"Point","coordinates":[78763,65135]},{"type":"Point","coordinates":[78754,65145]},{"type":"Point","coordinates":[74443,66097]},{"type":"Point","coordinates":[61304,67955]},{"type":"Point","coordinates":[75062,65981]},{"type":"Point","coordinates":[74405,66131]},{"type":"Point","coordinates":[75300,65977]},{"type":"Point","coordinates":[85019,63587]},{"type":"Point","coordinates":[8289,60624]},{"type":"Point","coordinates":[40837,67998]},{"type":"Point","coordinates":[8627,60772]},{"type":"Point","coordinates":[8628,60772]},{"type":"Point","coordinates":[10285,61368]},{"type":"Point","coordinates":[39420,67886]},{"type":"Point","coordinates":[78679,65275]},{"type":"Point","coordinates":[71558,66729]},{"type":"Point","coordinates":[71881,66679]},{"type":"Point","coordinates":[71639,66731]},{"type":"Point","coordinates":[8660,60824]},{"type":"Point","coordinates":[8658,60825]},{"type":"Point","coordinates":[80290,64930]},{"type":"Point","coordinates":[8106,60640]},{"type":"Point","coordinates":[8590,60818]},{"type":"Point","coordinates":[8589,60819]},{"type":"Point","coordinates":[78766,65306]},{"type":"Point","coordinates":[74781,66177]},{"type":"Point","coordinates":[85099,63691]},{"type":"Point","coordinates":[65862,67664]},{"type":"Point","coordinates":[69807,67123]},{"type":"Point","coordinates":[39364,68013]},{"type":"Point","coordinates":[39369,68014]},{"type":"Point","coordinates":[76400,65918]},{"type":"Point","coordinates":[8367,60826]},{"type":"Point","coordinates":[39353,68026]},{"type":"Point","coordinates":[39366,68027]},{"type":"Point","coordinates":[39366,68028]},{"type":"Point","coordinates":[49889,68609]},{"type":"Point","coordinates":[8911,61048]},{"type":"Point","coordinates":[59587,68343]},{"type":"Point","coordinates":[82281,64555]},{"type":"Point","coordinates":[36673,67790]},{"type":"Point","coordinates":[75183,66246]},{"type":"Point","coordinates":[60778,68291]},{"type":"Point","coordinates":[79585,65283]},{"type":"Point","coordinates":[37171,67874]},{"type":"Point","coordinates":[39473,68131]},{"type":"Point","coordinates":[59536,68413]},{"type":"Point","coordinates":[71756,66940]},{"type":"Point","coordinates":[39235,68129]},{"type":"Point","coordinates":[9046,61210]},{"type":"Point","coordinates":[39491,68169]},{"type":"Point","coordinates":[45866,68624]},{"type":"Point","coordinates":[79707,65307]},{"type":"Point","coordinates":[60850,68351]},{"type":"Point","coordinates":[59552,68452]},{"type":"Point","coordinates":[59550,68454]},{"type":"Point","coordinates":[82120,64743]},{"type":"Point","coordinates":[50203,68784]},{"type":"Point","coordinates":[36464,67884]},{"type":"Point","coordinates":[60015,68467]},{"type":"Point","coordinates":[36464,67904]},{"type":"Point","coordinates":[39348,68231]},{"type":"Point","coordinates":[39449,68270]},{"type":"Point","coordinates":[79339,65500]},{"type":"Point","coordinates":[79341,65501]},{"type":"Point","coordinates":[8119,60991]},{"type":"Point","coordinates":[79655,65447]},{"type":"Point","coordinates":[69775,67420]},{"type":"Point","coordinates":[80134,65353]},{"type":"Point","coordinates":[79645,65475]},{"type":"Point","coordinates":[79645,65475]},{"type":"Point","coordinates":[79639,65483]},{"type":"Point","coordinates":[50871,68909]},{"type":"Point","coordinates":[8884,61336]},{"type":"Point","coordinates":[8870,61333]},{"type":"Point","coordinates":[8871,61334]},{"type":"Point","coordinates":[8871,61335]},{"type":"Point","coordinates":[8870,61335]},{"type":"Point","coordinates":[8871,61335]},{"type":"Point","coordinates":[8871,61335]},{"type":"Point","coordinates":[79574,65520]},{"type":"Point","coordinates":[8832,61323]},{"type":"Point","coordinates":[8868,61337]},{"type":"Point","coordinates":[8873,61339]},{"type":"Point","coordinates":[8876,61341]},{"type":"Point","coordinates":[8876,61341]},{"type":"Point","coordinates":[8876,61341]},{"type":"Point","coordinates":[8876,61341]},{"type":"Point","coordinates":[49434,68914]},{"type":"Point","coordinates":[8870,61343]},{"type":"Point","coordinates":[8873,61345]},{"type":"Point","coordinates":[8867,61343]},{"type":"Point","coordinates":[39237,68336]},{"type":"Point","coordinates":[8870,61347]},{"type":"Point","coordinates":[8866,61346]},{"type":"Point","coordinates":[8874,61349]},{"type":"Point","coordinates":[8867,61346]},{"type":"Point","coordinates":[8867,61347]},{"type":"Point","coordinates":[8867,61347]},{"type":"Point","coordinates":[8867,61347]},{"type":"Point","coordinates":[8880,61353]},{"type":"Point","coordinates":[8836,61338]},{"type":"Point","coordinates":[8868,61350]},{"type":"Point","coordinates":[8839,61348]},{"type":"Point","coordinates":[8312,61155]},{"type":"Point","coordinates":[8841,61352]},{"type":"Point","coordinates":[8883,61371]},{"type":"Point","coordinates":[8883,61372]},{"type":"Point","coordinates":[8879,61371]},{"type":"Point","coordinates":[8878,61371]},{"type":"Point","coordinates":[8844,61363]},{"type":"Point","coordinates":[8846,61364]},{"type":"Point","coordinates":[20588,65018]},{"type":"Point","coordinates":[8844,61364]},{"type":"Point","coordinates":[8825,61358]},{"type":"Point","coordinates":[39676,68413]},{"type":"Point","coordinates":[8832,61374]},{"type":"Point","coordinates":[8862,61388]},{"type":"Point","coordinates":[8835,61381]},{"type":"Point","coordinates":[8835,61381]},{"type":"Point","coordinates":[8832,61380]},{"type":"Point","coordinates":[8837,61383]},{"type":"Point","coordinates":[8836,61383]},{"type":"Point","coordinates":[8836,61383]},{"type":"Point","coordinates":[8839,61384]},{"type":"Point","coordinates":[8880,61408]},{"type":"Point","coordinates":[79442,65622]},{"type":"Point","coordinates":[8871,61420]},{"type":"Point","coordinates":[39867,68478]},{"type":"Point","coordinates":[53881,68989]},{"type":"Point","coordinates":[8658,61367]},{"type":"Point","coordinates":[8658,61367]},{"type":"Point","coordinates":[8253,61226]},{"type":"Point","coordinates":[8082,61167]},{"type":"Point","coordinates":[50312,69037]},{"type":"Point","coordinates":[7947,61118]},{"type":"Point","coordinates":[8661,61381]},{"type":"Point","coordinates":[8833,61445]},{"type":"Point","coordinates":[8829,61452]},{"type":"Point","coordinates":[55971,68954]},{"type":"Point","coordinates":[8661,61391]},{"type":"Point","coordinates":[8660,61392]},{"type":"Point","coordinates":[8662,61393]},{"type":"Point","coordinates":[8824,61454]},{"type":"Point","coordinates":[8807,61449]},{"type":"Point","coordinates":[8807,61450]},{"type":"Point","coordinates":[8807,61450]},{"type":"Point","coordinates":[8825,61456]},{"type":"Point","coordinates":[8825,61456]},{"type":"Point","coordinates":[8824,61456]},{"type":"Point","coordinates":[8812,61455]},{"type":"Point","coordinates":[8812,61455]},{"type":"Point","coordinates":[8812,61455]},{"type":"Point","coordinates":[80282,65487]},{"type":"Point","coordinates":[8821,61459]},{"type":"Point","coordinates":[8818,61459]},{"type":"Point","coordinates":[8818,61459]},{"type":"Point","coordinates":[8818,61459]},{"type":"Point","coordinates":[8818,61460]},{"type":"Point","coordinates":[8818,61460]},{"type":"Point","coordinates":[80305,65491]},{"type":"Point","coordinates":[80303,65493]},{"type":"Point","coordinates":[8825,61473]},{"type":"Point","coordinates":[8706,61438]},{"type":"Point","coordinates":[7932,61159]},{"type":"Point","coordinates":[80285,65515]},{"type":"Point","coordinates":[8696,61461]},{"type":"Point","coordinates":[35823,68125]},{"type":"Point","coordinates":[9186,61644]},{"type":"Point","coordinates":[8696,61468]},{"type":"Point","coordinates":[8696,61468]},{"type":"Point","coordinates":[69635,67681]},{"type":"Point","coordinates":[54881,69058]},{"type":"Point","coordinates":[39387,68540]},{"type":"Point","coordinates":[41005,68691]},{"type":"Point","coordinates":[48260,69094]},{"type":"Point","coordinates":[69636,67698]},{"type":"Point","coordinates":[49017,69115]},{"type":"Point","coordinates":[40997,68703]},{"type":"Point","coordinates":[48820,69113]},{"type":"Point","coordinates":[84861,64347]},{"type":"Point","coordinates":[8081,61271]},{"type":"Point","coordinates":[8257,61342]},{"type":"Point","coordinates":[84053,64586]},{"type":"Point","coordinates":[8648,61489]},{"type":"Point","coordinates":[8104,61294]},{"type":"Point","coordinates":[8091,61294]},{"type":"Point","coordinates":[6617,60741]},{"type":"Point","coordinates":[8647,61506]},{"type":"Point","coordinates":[7990,61267]},{"type":"Point","coordinates":[6604,60751]},{"type":"Point","coordinates":[8020,61291]},{"type":"Point","coordinates":[71908,67395]},{"type":"Point","coordinates":[54245,69166]},{"type":"Point","coordinates":[40978,68775]},{"type":"Point","coordinates":[8071,61355]},{"type":"Point","coordinates":[6325,60699]},{"type":"Point","coordinates":[6377,60721]},{"type":"Point","coordinates":[40966,68803]},{"type":"Point","coordinates":[9024,61716]},{"type":"Point","coordinates":[9024,61716]},{"type":"Point","coordinates":[7481,61149]},{"type":"Point","coordinates":[48366,69216]},{"type":"Point","coordinates":[48367,69216]},{"type":"Point","coordinates":[71228,67559]},{"type":"Point","coordinates":[9017,61730]},{"type":"Point","coordinates":[9017,61730]},{"type":"Point","coordinates":[69599,67831]},{"type":"Point","coordinates":[8574,61575]},{"type":"Point","coordinates":[8044,61384]},{"type":"Point","coordinates":[71493,67543]},{"type":"Point","coordinates":[49744,69280]},{"type":"Point","coordinates":[84482,64608]},{"type":"Point","coordinates":[49733,69282]},{"type":"Point","coordinates":[49733,69282]},{"type":"Point","coordinates":[49733,69283]},{"type":"Point","coordinates":[69417,67895]},{"type":"Point","coordinates":[73651,67176]},{"type":"Point","coordinates":[36788,68454]},{"type":"Point","coordinates":[69629,67930]},{"type":"Point","coordinates":[69629,67930]},{"type":"Point","coordinates":[48941,69341]},{"type":"Point","coordinates":[69631,67932]},{"type":"Point","coordinates":[8109,61514]},{"type":"Point","coordinates":[71571,67624]},{"type":"Point","coordinates":[49033,69354]},{"type":"Point","coordinates":[8611,61703]},{"type":"Point","coordinates":[51267,69381]},{"type":"Point","coordinates":[51269,69381]},{"type":"Point","coordinates":[84770,64628]},{"type":"Point","coordinates":[20439,65427]},{"type":"Point","coordinates":[48960,69391]},{"type":"Point","coordinates":[48957,69397]},{"type":"Point","coordinates":[48957,69397]},{"type":"Point","coordinates":[73891,67254]},{"type":"Point","coordinates":[71475,67694]},{"type":"Point","coordinates":[35374,68408]},{"type":"Point","coordinates":[35385,68440]},{"type":"Point","coordinates":[35385,68441]},{"type":"Point","coordinates":[39755,68944]},{"type":"Point","coordinates":[6693,61105]},{"type":"Point","coordinates":[20464,65524]},{"type":"Point","coordinates":[69763,68059]},{"type":"Point","coordinates":[73972,67329]},{"type":"Point","coordinates":[83171,65204]},{"type":"Point","coordinates":[6543,61086]},{"type":"Point","coordinates":[69840,68063]},{"type":"Point","coordinates":[79248,66221]},{"type":"Point","coordinates":[79248,66221]},{"type":"Point","coordinates":[69530,68127]},{"type":"Point","coordinates":[69529,68128]},{"type":"Point","coordinates":[69530,68128]},{"type":"Point","coordinates":[6723,61173]},{"type":"Point","coordinates":[69529,68129]},{"type":"Point","coordinates":[69529,68129]},{"type":"Point","coordinates":[69811,68087]},{"type":"Point","coordinates":[49104,69529]},{"type":"Point","coordinates":[49096,69529]},{"type":"Point","coordinates":[69538,68136]},{"type":"Point","coordinates":[60960,69152]},{"type":"Point","coordinates":[6526,61118]},{"type":"Point","coordinates":[6512,61131]},{"type":"Point","coordinates":[50203,69578]},{"type":"Point","coordinates":[69313,68202]},{"type":"Point","coordinates":[69662,68151]},{"type":"Point","coordinates":[84595,64892]},{"type":"Point","coordinates":[83417,65233]},{"type":"Point","coordinates":[6731,61250]},{"type":"Point","coordinates":[50989,69622]},{"type":"Point","coordinates":[8902,62067]},{"type":"Point","coordinates":[6617,61222]},{"type":"Point","coordinates":[8814,62046]},{"type":"Point","coordinates":[6639,61244]},{"type":"Point","coordinates":[8817,62057]},{"type":"Point","coordinates":[8818,62060]},{"type":"Point","coordinates":[69814,68194]},{"type":"Point","coordinates":[6778,61307]},{"type":"Point","coordinates":[79886,66188]},{"type":"Point","coordinates":[52638,69650]},{"type":"Point","coordinates":[69954,68189]},{"type":"Point","coordinates":[9229,62234]},{"type":"Point","coordinates":[69823,68221]},{"type":"Point","coordinates":[56825,69550]},{"type":"Point","coordinates":[69819,68229]},{"type":"Point","coordinates":[69819,68229]},{"type":"Point","coordinates":[40335,69206]},{"type":"Point","coordinates":[39580,69144]},{"type":"Point","coordinates":[69776,68255]},{"type":"Point","coordinates":[69768,68260]},{"type":"Point","coordinates":[69768,68261]},{"type":"Point","coordinates":[69792,68264]},{"type":"Point","coordinates":[6288,61202]},{"type":"Point","coordinates":[69769,68296]},{"type":"Point","coordinates":[71210,68065]},{"type":"Point","coordinates":[49091,69738]},{"type":"Point","coordinates":[10008,62607]},{"type":"Point","coordinates":[79514,66393]},{"type":"Point","coordinates":[79514,66393]},{"type":"Point","coordinates":[79514,66393]},{"type":"Point","coordinates":[6654,61382]},{"type":"Point","coordinates":[69686,68342]},{"type":"Point","coordinates":[79505,66407]},{"type":"Point","coordinates":[69253,68412]},{"type":"Point","coordinates":[69725,68341]},{"type":"Point","coordinates":[6838,61478]},{"type":"Point","coordinates":[37823,69071]},{"type":"Point","coordinates":[37828,69074]},{"type":"Point","coordinates":[49690,69810]},{"type":"Point","coordinates":[49691,69813]},{"type":"Point","coordinates":[6614,61423]},{"type":"Point","coordinates":[69719,68388]},{"type":"Point","coordinates":[20983,66006]},{"type":"Point","coordinates":[68013,68647]},{"type":"Point","coordinates":[68013,68647]},{"type":"Point","coordinates":[83405,65462]},{"type":"Point","coordinates":[49065,69821]},{"type":"Point","coordinates":[9505,62512]},{"type":"Point","coordinates":[69719,68408]},{"type":"Point","coordinates":[20963,66018]},{"type":"Point","coordinates":[9414,62486]},{"type":"Point","coordinates":[9414,62487]},{"type":"Point","coordinates":[9489,62520]},{"type":"Point","coordinates":[69707,68427]},{"type":"Point","coordinates":[69706,68430]},{"type":"Point","coordinates":[9487,62531]},{"type":"Point","coordinates":[63842,69207]},{"type":"Point","coordinates":[9444,62529]},{"type":"Point","coordinates":[9441,62530]},{"type":"Point","coordinates":[9494,62583]},{"type":"Point","coordinates":[49617,69918]},{"type":"Point","coordinates":[49935,69932]},{"type":"Point","coordinates":[39695,69402]},{"type":"Point","coordinates":[50557,69951]},{"type":"Point","coordinates":[50557,69951]},{"type":"Point","coordinates":[50557,69951]},{"type":"Point","coordinates":[42616,69659]},{"type":"Point","coordinates":[68438,68715]},{"type":"Point","coordinates":[69833,68513]},{"type":"Point","coordinates":[6254,61443]},{"type":"Point","coordinates":[49035,69963]},{"type":"Point","coordinates":[49032,69966]},{"type":"Point","coordinates":[65508,69125]},{"type":"Point","coordinates":[49033,69977]},{"type":"Point","coordinates":[49031,69981]},{"type":"Point","coordinates":[49030,69990]},{"type":"Point","coordinates":[6127,61423]},{"type":"Point","coordinates":[65757,69118]},{"type":"Point","coordinates":[49029,69992]},{"type":"Point","coordinates":[49020,69992]},{"type":"Point","coordinates":[49022,69992]},{"type":"Point","coordinates":[49047,69995]},{"type":"Point","coordinates":[49048,69996]},{"type":"Point","coordinates":[49047,69997]},{"type":"Point","coordinates":[9990,62858]},{"type":"Point","coordinates":[49019,70000]},{"type":"Point","coordinates":[65685,69137]},{"type":"Point","coordinates":[49051,70006]},{"type":"Point","coordinates":[49019,70006]},{"type":"Point","coordinates":[49020,70008]},{"type":"Point","coordinates":[49837,70020]},{"type":"Point","coordinates":[49838,70020]},{"type":"Point","coordinates":[49841,70021]},{"type":"Point","coordinates":[49837,70021]},{"type":"Point","coordinates":[49839,70021]},{"type":"Point","coordinates":[49839,70021]},{"type":"Point","coordinates":[49839,70021]},{"type":"Point","coordinates":[49839,70021]},{"type":"Point","coordinates":[49030,70011]},{"type":"Point","coordinates":[49850,70024]},{"type":"Point","coordinates":[49024,70013]},{"type":"Point","coordinates":[49023,70013]},{"type":"Point","coordinates":[49025,70013]},{"type":"Point","coordinates":[49848,70027]},{"type":"Point","coordinates":[49845,70027]},{"type":"Point","coordinates":[9687,62770]},{"type":"Point","coordinates":[49026,70017]},{"type":"Point","coordinates":[49848,70029]},{"type":"Point","coordinates":[49844,70029]},{"type":"Point","coordinates":[49841,70029]},{"type":"Point","coordinates":[49031,70018]},{"type":"Point","coordinates":[49841,70030]},{"type":"Point","coordinates":[49847,70030]},{"type":"Point","coordinates":[49033,70018]},{"type":"Point","coordinates":[49037,70019]},{"type":"Point","coordinates":[49034,70019]},{"type":"Point","coordinates":[49038,70019]},{"type":"Point","coordinates":[49844,70032]},{"type":"Point","coordinates":[50115,70038]},{"type":"Point","coordinates":[49044,70024]},{"type":"Point","coordinates":[49045,70024]},{"type":"Point","coordinates":[49047,70025]},{"type":"Point","coordinates":[6878,61746]},{"type":"Point","coordinates":[49043,70026]},{"type":"Point","coordinates":[83823,65571]},{"type":"Point","coordinates":[50474,70056]},{"type":"Point","coordinates":[6820,61742]},{"type":"Point","coordinates":[61003,69673]},{"type":"Point","coordinates":[48903,70058]},{"type":"Point","coordinates":[49669,70074]},{"type":"Point","coordinates":[72960,68097]},{"type":"Point","coordinates":[49669,70082]},{"type":"Point","coordinates":[6525,61670]},{"type":"Point","coordinates":[69934,68633]},{"type":"Point","coordinates":[8611,62457]},{"type":"Point","coordinates":[53716,70086]},{"type":"Point","coordinates":[9245,62698]},{"type":"Point","coordinates":[39833,69589]},{"type":"Point","coordinates":[10096,63009]},{"type":"Point","coordinates":[6786,61802]},{"type":"Point","coordinates":[9140,62674]},{"type":"Point","coordinates":[48916,70112]},{"type":"Point","coordinates":[48916,70113]},{"type":"Point","coordinates":[49724,70128]},{"type":"Point","coordinates":[49724,70128]},{"type":"Point","coordinates":[49724,70128]},{"type":"Point","coordinates":[10093,63019]},{"type":"Point","coordinates":[49266,70127]},{"type":"Point","coordinates":[49267,70128]},{"type":"Point","coordinates":[48886,70124]},{"type":"Point","coordinates":[48886,70124]},{"type":"Point","coordinates":[68085,68952]},{"type":"Point","coordinates":[49240,70137]},{"type":"Point","coordinates":[49248,70140]},{"type":"Point","coordinates":[10020,63010]},{"type":"Point","coordinates":[49248,70144]},{"type":"Point","coordinates":[49270,70146]},{"type":"Point","coordinates":[9149,62707]},{"type":"Point","coordinates":[49264,70149]},{"type":"Point","coordinates":[49262,70149]},{"type":"Point","coordinates":[49263,70149]},{"type":"Point","coordinates":[49263,70150]},{"type":"Point","coordinates":[84020,65628]},{"type":"Point","coordinates":[48898,70147]},{"type":"Point","coordinates":[52218,70166]},{"type":"Point","coordinates":[48878,70154]},{"type":"Point","coordinates":[82516,66049]},{"type":"Point","coordinates":[60126,69844]},{"type":"Point","coordinates":[84041,65643]},{"type":"Point","coordinates":[82527,66056]},{"type":"Point","coordinates":[48823,70167]},{"type":"Point","coordinates":[82494,66065]},{"type":"Point","coordinates":[48878,70173]},{"type":"Point","coordinates":[49372,70181]},{"type":"Point","coordinates":[48941,70174]},{"type":"Point","coordinates":[48878,70173]},{"type":"Point","coordinates":[48941,70175]},{"type":"Point","coordinates":[48941,70175]},{"type":"Point","coordinates":[48941,70175]},{"type":"Point","coordinates":[48941,70175]},{"type":"Point","coordinates":[48880,70174]},{"type":"Point","coordinates":[50632,70195]},{"type":"Point","coordinates":[50632,70195]},{"type":"Point","coordinates":[50632,70196]},{"type":"Point","coordinates":[9263,62785]},{"type":"Point","coordinates":[6621,61808]},{"type":"Point","coordinates":[50632,70200]},{"type":"Point","coordinates":[48841,70179]},{"type":"Point","coordinates":[48841,70181]},{"type":"Point","coordinates":[49010,70188]},{"type":"Point","coordinates":[48886,70187]},{"type":"Point","coordinates":[49771,70209]},{"type":"Point","coordinates":[9080,62740]},{"type":"Point","coordinates":[48845,70198]},{"type":"Point","coordinates":[9071,62741]},{"type":"Point","coordinates":[83999,65697]},{"type":"Point","coordinates":[9059,62748]},{"type":"Point","coordinates":[49243,70221]},{"type":"Point","coordinates":[9061,62753]},{"type":"Point","coordinates":[48931,70219]},{"type":"Point","coordinates":[9065,62757]},{"type":"Point","coordinates":[37242,69433]},{"type":"Point","coordinates":[9309,62848]},{"type":"Point","coordinates":[48834,70222]},{"type":"Point","coordinates":[48834,70222]},{"type":"Point","coordinates":[48925,70228]},{"type":"Point","coordinates":[49824,70246]},{"type":"Point","coordinates":[49821,70247]},{"type":"Point","coordinates":[49173,70239]},{"type":"Point","coordinates":[6404,61784]},{"type":"Point","coordinates":[49821,70250]},{"type":"Point","coordinates":[48980,70240]},{"type":"Point","coordinates":[49830,70253]},{"type":"Point","coordinates":[8770,62671]},{"type":"Point","coordinates":[49825,70255]},{"type":"Point","coordinates":[9067,62781]},{"type":"Point","coordinates":[49825,70255]},{"type":"Point","coordinates":[9193,62827]},{"type":"Point","coordinates":[49825,70256]},{"type":"Point","coordinates":[9214,62836]},{"type":"Point","coordinates":[9223,62839]},{"type":"Point","coordinates":[49828,70258]},{"type":"Point","coordinates":[9224,62840]},{"type":"Point","coordinates":[49826,70260]},{"type":"Point","coordinates":[84113,65704]},{"type":"Point","coordinates":[49828,70260]},{"type":"Point","coordinates":[9224,62843]},{"type":"Point","coordinates":[49828,70261]},{"type":"Point","coordinates":[49828,70261]},{"type":"Point","coordinates":[49827,70261]},{"type":"Point","coordinates":[49828,70262]},{"type":"Point","coordinates":[49827,70266]},{"type":"Point","coordinates":[48925,70255]},{"type":"Point","coordinates":[8467,62579]},{"type":"Point","coordinates":[84345,65650]},{"type":"Point","coordinates":[48927,70258]},{"type":"Point","coordinates":[9113,62829]},{"type":"Point","coordinates":[49584,70285]},{"type":"Point","coordinates":[68806,68994]},{"type":"Point","coordinates":[55130,70232]},{"type":"Point","coordinates":[49579,70289]},{"type":"Point","coordinates":[49579,70289]},{"type":"Point","coordinates":[49582,70289]},{"type":"Point","coordinates":[49584,70289]},{"type":"Point","coordinates":[49584,70289]},{"type":"Point","coordinates":[49856,70298]},{"type":"Point","coordinates":[49857,70300]},{"type":"Point","coordinates":[49857,70301]},{"type":"Point","coordinates":[48794,70286]},{"type":"Point","coordinates":[48794,70286]},{"type":"Point","coordinates":[48795,70286]},{"type":"Point","coordinates":[49859,70303]},{"type":"Point","coordinates":[49859,70303]},{"type":"Point","coordinates":[49903,70304]},{"type":"Point","coordinates":[48823,70290]},{"type":"Point","coordinates":[69727,68874]},{"type":"Point","coordinates":[69726,68877]},{"type":"Point","coordinates":[49680,70312]},{"type":"Point","coordinates":[48892,70303]},{"type":"Point","coordinates":[49585,70317]},{"type":"Point","coordinates":[48892,70306]},{"type":"Point","coordinates":[48892,70307]},{"type":"Point","coordinates":[49584,70318]},{"type":"Point","coordinates":[49874,70322]},{"type":"Point","coordinates":[49551,70321]},{"type":"Point","coordinates":[84015,65797]},{"type":"Point","coordinates":[49814,70331]},{"type":"Point","coordinates":[49814,70332]},{"type":"Point","coordinates":[9245,62925]},{"type":"Point","coordinates":[48891,70319]},{"type":"Point","coordinates":[9237,62924]},{"type":"Point","coordinates":[9118,62881]},{"type":"Point","coordinates":[49741,70334]},{"type":"Point","coordinates":[49741,70334]},{"type":"Point","coordinates":[49741,70335]},{"type":"Point","coordinates":[49741,70335]},{"type":"Point","coordinates":[49740,70335]},{"type":"Point","coordinates":[9223,62924]},{"type":"Point","coordinates":[9220,62923]},{"type":"Point","coordinates":[8671,62726]},{"type":"Point","coordinates":[9237,62932]},{"type":"Point","coordinates":[49714,70342]},{"type":"Point","coordinates":[8672,62728]},{"type":"Point","coordinates":[9074,62874]},{"type":"Point","coordinates":[9074,62874]},{"type":"Point","coordinates":[9233,62934]},{"type":"Point","coordinates":[9211,62928]},{"type":"Point","coordinates":[9090,62888]},{"type":"Point","coordinates":[8658,62732]},{"type":"Point","coordinates":[49520,70348]},{"type":"Point","coordinates":[49520,70348]},{"type":"Point","coordinates":[49520,70348]},{"type":"Point","coordinates":[49520,70348]},{"type":"Point","coordinates":[49519,70349]},{"type":"Point","coordinates":[9100,62893]},{"type":"Point","coordinates":[49520,70349]},{"type":"Point","coordinates":[49521,70350]},{"type":"Point","coordinates":[49519,70350]},{"type":"Point","coordinates":[49520,70350]},{"type":"Point","coordinates":[9101,62896]},{"type":"Point","coordinates":[9117,62903]},{"type":"Point","coordinates":[9121,62906]},{"type":"Point","coordinates":[9100,62900]},{"type":"Point","coordinates":[49459,70356]},{"type":"Point","coordinates":[49462,70356]},{"type":"Point","coordinates":[49898,70362]},{"type":"Point","coordinates":[49898,70362]},{"type":"Point","coordinates":[49456,70357]},{"type":"Point","coordinates":[49455,70359]},{"type":"Point","coordinates":[48952,70350]},{"type":"Point","coordinates":[9209,62944]},{"type":"Point","coordinates":[49463,70360]},{"type":"Point","coordinates":[48758,70349]},{"type":"Point","coordinates":[82380,66284]},{"type":"Point","coordinates":[8498,62691]},{"type":"Point","coordinates":[8498,62691]},{"type":"Point","coordinates":[9104,62914]},{"type":"Point","coordinates":[9104,62914]},{"type":"Point","coordinates":[49465,70370]},{"type":"Point","coordinates":[9203,62952]},{"type":"Point","coordinates":[48838,70360]},{"type":"Point","coordinates":[49465,70371]},{"type":"Point","coordinates":[9195,62950]},{"type":"Point","coordinates":[49465,70371]},{"type":"Point","coordinates":[49465,70371]},{"type":"Point","coordinates":[9093,62917]},{"type":"Point","coordinates":[8414,62672]},{"type":"Point","coordinates":[49436,70376]},{"type":"Point","coordinates":[50440,70386]},{"type":"Point","coordinates":[48838,70366]},{"type":"Point","coordinates":[70274,68862]},{"type":"Point","coordinates":[49433,70377]},{"type":"Point","coordinates":[50440,70388]},{"type":"Point","coordinates":[49433,70378]},{"type":"Point","coordinates":[9097,62923]},{"type":"Point","coordinates":[49428,70379]},{"type":"Point","coordinates":[49428,70380]},{"type":"Point","coordinates":[49428,70380]},{"type":"Point","coordinates":[8497,62710]},{"type":"Point","coordinates":[49428,70383]},{"type":"Point","coordinates":[49363,70383]},{"type":"Point","coordinates":[49912,70391]},{"type":"Point","coordinates":[83541,65995]},{"type":"Point","coordinates":[49912,70392]},{"type":"Point","coordinates":[49912,70393]},{"type":"Point","coordinates":[49913,70393]},{"type":"Point","coordinates":[49909,70394]},{"type":"Point","coordinates":[49913,70395]},{"type":"Point","coordinates":[49907,70397]},{"type":"Point","coordinates":[49257,70388]},{"type":"Point","coordinates":[49257,70388]},{"type":"Point","coordinates":[49918,70398]},{"type":"Point","coordinates":[49912,70398]},{"type":"Point","coordinates":[9820,63197]},{"type":"Point","coordinates":[49914,70400]},{"type":"Point","coordinates":[49911,70401]},{"type":"Point","coordinates":[49911,70401]},{"type":"Point","coordinates":[49906,70402]},{"type":"Point","coordinates":[49906,70402]},{"type":"Point","coordinates":[49916,70402]},{"type":"Point","coordinates":[49335,70395]},{"type":"Point","coordinates":[49914,70403]},{"type":"Point","coordinates":[49336,70396]},{"type":"Point","coordinates":[49913,70403]},{"type":"Point","coordinates":[49913,70404]},{"type":"Point","coordinates":[49912,70404]},{"type":"Point","coordinates":[49252,70395]},{"type":"Point","coordinates":[49251,70395]},{"type":"Point","coordinates":[49912,70405]},{"type":"Point","coordinates":[49329,70399]},{"type":"Point","coordinates":[49329,70399]},{"type":"Point","coordinates":[49522,70404]},{"type":"Point","coordinates":[49920,70409]},{"type":"Point","coordinates":[49517,70405]},{"type":"Point","coordinates":[49344,70403]},{"type":"Point","coordinates":[49344,70403]},{"type":"Point","coordinates":[49926,70410]},{"type":"Point","coordinates":[49517,70406]},{"type":"Point","coordinates":[49519,70407]},{"type":"Point","coordinates":[49516,70407]},{"type":"Point","coordinates":[49925,70412]},{"type":"Point","coordinates":[49517,70408]},{"type":"Point","coordinates":[49517,70408]},{"type":"Point","coordinates":[49516,70409]},{"type":"Point","coordinates":[49516,70409]},{"type":"Point","coordinates":[49922,70414]},{"type":"Point","coordinates":[49589,70410]},{"type":"Point","coordinates":[49920,70414]},{"type":"Point","coordinates":[49518,70409]},{"type":"Point","coordinates":[49518,70410]},{"type":"Point","coordinates":[8652,62793]},{"type":"Point","coordinates":[49515,70410]},{"type":"Point","coordinates":[49521,70410]},{"type":"Point","coordinates":[49514,70411]},{"type":"Point","coordinates":[49926,70416]},{"type":"Point","coordinates":[49920,70416]},{"type":"Point","coordinates":[49521,70412]},{"type":"Point","coordinates":[49520,70412]},{"type":"Point","coordinates":[49520,70412]},{"type":"Point","coordinates":[49520,70412]},{"type":"Point","coordinates":[49516,70412]},{"type":"Point","coordinates":[49519,70413]},{"type":"Point","coordinates":[49695,70415]},{"type":"Point","coordinates":[81856,66473]},{"type":"Point","coordinates":[48905,70405]},{"type":"Point","coordinates":[49496,70416]},{"type":"Point","coordinates":[84234,65833]},{"type":"Point","coordinates":[49514,70417]},{"type":"Point","coordinates":[49514,70417]},{"type":"Point","coordinates":[49514,70418]},{"type":"Point","coordinates":[48905,70409]},{"type":"Point","coordinates":[9551,63125]},{"type":"Point","coordinates":[48904,70409]},{"type":"Point","coordinates":[49067,70414]},{"type":"Point","coordinates":[49519,70422]},{"type":"Point","coordinates":[8534,62767]},{"type":"Point","coordinates":[49516,70426]},{"type":"Point","coordinates":[49516,70426]},{"type":"Point","coordinates":[49515,70426]},{"type":"Point","coordinates":[49515,70426]},{"type":"Point","coordinates":[49516,70426]},{"type":"Point","coordinates":[49515,70426]},{"type":"Point","coordinates":[49515,70426]},{"type":"Point","coordinates":[49515,70426]},{"type":"Point","coordinates":[49515,70426]},{"type":"Point","coordinates":[49516,70427]},{"type":"Point","coordinates":[49516,70427]},{"type":"Point","coordinates":[49516,70427]},{"type":"Point","coordinates":[49516,70427]},{"type":"Point","coordinates":[49518,70428]},{"type":"Point","coordinates":[81857,66486]},{"type":"Point","coordinates":[84464,65785]},{"type":"Point","coordinates":[48907,70423]},{"type":"Point","coordinates":[84464,65786]},{"type":"Point","coordinates":[84466,65786]},{"type":"Point","coordinates":[84463,65787]},{"type":"Point","coordinates":[84419,65802]},{"type":"Point","coordinates":[84471,65788]},{"type":"Point","coordinates":[49630,70440]},{"type":"Point","coordinates":[49635,70445]},{"type":"Point","coordinates":[84438,65805]},{"type":"Point","coordinates":[49633,70451]},{"type":"Point","coordinates":[49633,70452]},{"type":"Point","coordinates":[8579,62814]},{"type":"Point","coordinates":[49636,70458]},{"type":"Point","coordinates":[84422,65821]},{"type":"Point","coordinates":[49637,70460]},{"type":"Point","coordinates":[49519,70460]},{"type":"Point","coordinates":[49634,70462]},{"type":"Point","coordinates":[80156,66948]},{"type":"Point","coordinates":[84418,65829]},{"type":"Point","coordinates":[8750,62895]},{"type":"Point","coordinates":[8572,62831]},{"type":"Point","coordinates":[8625,62854]},{"type":"Point","coordinates":[84463,65841]},{"type":"Point","coordinates":[49657,70491]},{"type":"Point","coordinates":[49657,70492]},{"type":"Point","coordinates":[84452,65848]},{"type":"Point","coordinates":[49657,70494]},{"type":"Point","coordinates":[84468,65844]},{"type":"Point","coordinates":[84451,65850]},{"type":"Point","coordinates":[49657,70496]},{"type":"Point","coordinates":[49516,70495]},{"type":"Point","coordinates":[49517,70495]},{"type":"Point","coordinates":[84214,65918]},{"type":"Point","coordinates":[49514,70495]},{"type":"Point","coordinates":[49515,70496]},{"type":"Point","coordinates":[48838,70486]},{"type":"Point","coordinates":[49058,70493]},{"type":"Point","coordinates":[49661,70506]},{"type":"Point","coordinates":[9165,63077]},{"type":"Point","coordinates":[48831,70495]},{"type":"Point","coordinates":[48832,70496]},{"type":"Point","coordinates":[48833,70497]},{"type":"Point","coordinates":[49517,70510]},{"type":"Point","coordinates":[49517,70510]},{"type":"Point","coordinates":[48832,70499]},{"type":"Point","coordinates":[48832,70499]},{"type":"Point","coordinates":[48832,70500]},{"type":"Point","coordinates":[8585,62874]},{"type":"Point","coordinates":[49662,70515]},{"type":"Point","coordinates":[49662,70516]},{"type":"Point","coordinates":[83978,66003]},{"type":"Point","coordinates":[49520,70514]},{"type":"Point","coordinates":[49521,70516]},{"type":"Point","coordinates":[49520,70516]},{"type":"Point","coordinates":[49521,70517]},{"type":"Point","coordinates":[49521,70517]},{"type":"Point","coordinates":[49521,70517]},{"type":"Point","coordinates":[49521,70518]},{"type":"Point","coordinates":[49521,70518]},{"type":"Point","coordinates":[49522,70519]},{"type":"Point","coordinates":[48933,70513]},{"type":"Point","coordinates":[49666,70527]},{"type":"Point","coordinates":[49715,70528]},{"type":"Point","coordinates":[49469,70525]},{"type":"Point","coordinates":[49666,70528]},{"type":"Point","coordinates":[49992,70532]},{"type":"Point","coordinates":[8698,62930]},{"type":"Point","coordinates":[10047,63413]},{"type":"Point","coordinates":[49669,70531]},{"type":"Point","coordinates":[10047,63415]},{"type":"Point","coordinates":[8773,62962]},{"type":"Point","coordinates":[48931,70523]},{"type":"Point","coordinates":[9820,63339]},{"type":"Point","coordinates":[9821,63341]},{"type":"Point","coordinates":[49387,70537]},{"type":"Point","coordinates":[9821,63344]},{"type":"Point","coordinates":[8483,62864]},{"type":"Point","coordinates":[49100,70534]},{"type":"Point","coordinates":[9820,63348]},{"type":"Point","coordinates":[49405,70542]},{"type":"Point","coordinates":[49390,70543]},{"type":"Point","coordinates":[49439,70545]},{"type":"Point","coordinates":[49441,70546]},{"type":"Point","coordinates":[49396,70547]},{"type":"Point","coordinates":[9824,63356]},{"type":"Point","coordinates":[49908,70554]},{"type":"Point","coordinates":[49452,70550]},{"type":"Point","coordinates":[49717,70554]},{"type":"Point","coordinates":[49451,70551]},{"type":"Point","coordinates":[49450,70551]},{"type":"Point","coordinates":[49453,70551]},{"type":"Point","coordinates":[9831,63363]},{"type":"Point","coordinates":[49454,70553]},{"type":"Point","coordinates":[49454,70553]},{"type":"Point","coordinates":[9832,63364]},{"type":"Point","coordinates":[49452,70554]},{"type":"Point","coordinates":[9876,63381]},{"type":"Point","coordinates":[8661,62957]},{"type":"Point","coordinates":[49818,70572]},{"type":"Point","coordinates":[83867,66093]},{"type":"Point","coordinates":[9529,63275]},{"type":"Point","coordinates":[49399,70573]},{"type":"Point","coordinates":[49400,70574]},{"type":"Point","coordinates":[49376,70575]},{"type":"Point","coordinates":[8768,63008]},{"type":"Point","coordinates":[49397,70577]},{"type":"Point","coordinates":[49693,70581]},{"type":"Point","coordinates":[9822,63386]},{"type":"Point","coordinates":[9812,63383]},{"type":"Point","coordinates":[49057,70573]},{"type":"Point","coordinates":[9814,63386]},{"type":"Point","coordinates":[9817,63387]},{"type":"Point","coordinates":[49019,70576]},{"type":"Point","coordinates":[49768,70590]},{"type":"Point","coordinates":[49020,70581]},{"type":"Point","coordinates":[9581,63313]},{"type":"Point","coordinates":[49416,70590]},{"type":"Point","coordinates":[9815,63396]},{"type":"Point","coordinates":[49706,70595]},{"type":"Point","coordinates":[48904,70586]},{"type":"Point","coordinates":[49765,70601]},{"type":"Point","coordinates":[49767,70603]},{"type":"Point","coordinates":[48896,70592]},{"type":"Point","coordinates":[48896,70592]},{"type":"Point","coordinates":[51363,70615]},{"type":"Point","coordinates":[10042,63490]},{"type":"Point","coordinates":[8764,63035]},{"type":"Point","coordinates":[49819,70614]},{"type":"Point","coordinates":[48890,70602]},{"type":"Point","coordinates":[9957,63468]},{"type":"Point","coordinates":[9439,63289]},{"type":"Point","coordinates":[9739,63398]},{"type":"Point","coordinates":[8482,62948]},{"type":"Point","coordinates":[49508,70621]},{"type":"Point","coordinates":[49507,70622]},{"type":"Point","coordinates":[84058,66095]},{"type":"Point","coordinates":[49429,70625]},{"type":"Point","coordinates":[9741,63406]},{"type":"Point","coordinates":[84056,66096]},{"type":"Point","coordinates":[9744,63410]},{"type":"Point","coordinates":[9752,63413]},{"type":"Point","coordinates":[9752,63413]},{"type":"Point","coordinates":[49722,70634]},{"type":"Point","coordinates":[9747,63413]},{"type":"Point","coordinates":[9747,63414]},{"type":"Point","coordinates":[49426,70631]},{"type":"Point","coordinates":[49424,70633]},{"type":"Point","coordinates":[49428,70636]},{"type":"Point","coordinates":[8436,62949]},{"type":"Point","coordinates":[49492,70641]},{"type":"Point","coordinates":[49492,70641]},{"type":"Point","coordinates":[9820,63453]},{"type":"Point","coordinates":[9820,63453]},{"type":"Point","coordinates":[83927,66153]},{"type":"Point","coordinates":[8627,63031]},{"type":"Point","coordinates":[8526,62997]},{"type":"Point","coordinates":[49863,70657]},{"type":"Point","coordinates":[49026,70650]},{"type":"Point","coordinates":[49646,70660]},{"type":"Point","coordinates":[8508,62999]},{"type":"Point","coordinates":[48897,70653]},{"type":"Point","coordinates":[49719,70671]},{"type":"Point","coordinates":[8600,63040]},{"type":"Point","coordinates":[49765,70673]},{"type":"Point","coordinates":[49737,70672]},{"type":"Point","coordinates":[8974,63177]},{"type":"Point","coordinates":[49734,70674]},{"type":"Point","coordinates":[49725,70674]},{"type":"Point","coordinates":[49726,70675]},{"type":"Point","coordinates":[49723,70675]},{"type":"Point","coordinates":[49740,70684]},{"type":"Point","coordinates":[49350,70682]},{"type":"Point","coordinates":[49997,70692]},{"type":"Point","coordinates":[9317,63320]},{"type":"Point","coordinates":[49553,70695]},{"type":"Point","coordinates":[8926,63189]},{"type":"Point","coordinates":[48901,70690]},{"type":"Point","coordinates":[9710,63470]},{"type":"Point","coordinates":[49937,70706]},{"type":"Point","coordinates":[49550,70703]},{"type":"Point","coordinates":[49550,70706]},{"type":"Point","coordinates":[49550,70707]},{"type":"Point","coordinates":[48964,70699]},{"type":"Point","coordinates":[49561,70709]},{"type":"Point","coordinates":[49547,70710]},{"type":"Point","coordinates":[8984,63221]},{"type":"Point","coordinates":[49547,70710]},{"type":"Point","coordinates":[84029,66189]},{"type":"Point","coordinates":[8498,63048]},{"type":"Point","coordinates":[9025,63241]},{"type":"Point","coordinates":[8844,63178]},{"type":"Point","coordinates":[8878,63192]},{"type":"Point","coordinates":[49708,70721]},{"type":"Point","coordinates":[8878,63193]},{"type":"Point","coordinates":[49707,70724]},{"type":"Point","coordinates":[8842,63183]},{"type":"Point","coordinates":[8842,63183]},{"type":"Point","coordinates":[49350,70725]},{"type":"Point","coordinates":[49548,70729]},{"type":"Point","coordinates":[49547,70731]},{"type":"Point","coordinates":[48899,70726]},{"type":"Point","coordinates":[50058,70743]},{"type":"Point","coordinates":[8915,63225]},{"type":"Point","coordinates":[49094,70731]},{"type":"Point","coordinates":[50059,70745]},{"type":"Point","coordinates":[8415,63047]},{"type":"Point","coordinates":[8700,63153]},{"type":"Point","coordinates":[10050,63635]},{"type":"Point","coordinates":[49547,70747]},{"type":"Point","coordinates":[8608,63123]},{"type":"Point","coordinates":[10043,63638]},{"type":"Point","coordinates":[8819,63203]},{"type":"Point","coordinates":[49630,70754]},{"type":"Point","coordinates":[49550,70755]},{"type":"Point","coordinates":[49217,70754]},{"type":"Point","coordinates":[49216,70755]},{"type":"Point","coordinates":[49216,70755]},{"type":"Point","coordinates":[9637,63506]},{"type":"Point","coordinates":[8605,63136]},{"type":"Point","coordinates":[49078,70755]},{"type":"Point","coordinates":[49215,70758]},{"type":"Point","coordinates":[49545,70765]},{"type":"Point","coordinates":[49268,70764]},{"type":"Point","coordinates":[49191,70764]},{"type":"Point","coordinates":[49543,70771]},{"type":"Point","coordinates":[49192,70766]},{"type":"Point","coordinates":[49194,70766]},{"type":"Point","coordinates":[49194,70767]},{"type":"Point","coordinates":[49214,70768]},{"type":"Point","coordinates":[49192,70768]},{"type":"Point","coordinates":[83926,66284]},{"type":"Point","coordinates":[49198,70773]},{"type":"Point","coordinates":[49186,70773]},{"type":"Point","coordinates":[49224,70774]},{"type":"Point","coordinates":[49186,70773]},{"type":"Point","coordinates":[49783,70782]},{"type":"Point","coordinates":[49216,70776]},{"type":"Point","coordinates":[48970,70773]},{"type":"Point","coordinates":[83924,66290]},{"type":"Point","coordinates":[49190,70777]},{"type":"Point","coordinates":[49199,70777]},{"type":"Point","coordinates":[49208,70778]},{"type":"Point","coordinates":[49165,70777]},{"type":"Point","coordinates":[49074,70776]},{"type":"Point","coordinates":[49192,70779]},{"type":"Point","coordinates":[48741,70771]},{"type":"Point","coordinates":[49183,70779]},{"type":"Point","coordinates":[49074,70777]},{"type":"Point","coordinates":[49794,70788]},{"type":"Point","coordinates":[49161,70780]},{"type":"Point","coordinates":[49161,70780]},{"type":"Point","coordinates":[49063,70779]},{"type":"Point","coordinates":[49227,70782]},{"type":"Point","coordinates":[49162,70781]},{"type":"Point","coordinates":[49161,70781]},{"type":"Point","coordinates":[49162,70781]},{"type":"Point","coordinates":[49161,70781]},{"type":"Point","coordinates":[49161,70781]},{"type":"Point","coordinates":[49161,70781]},{"type":"Point","coordinates":[49161,70781]},{"type":"Point","coordinates":[49216,70782]},{"type":"Point","coordinates":[49192,70782]},{"type":"Point","coordinates":[49161,70782]},{"type":"Point","coordinates":[49154,70782]},{"type":"Point","coordinates":[49191,70783]},{"type":"Point","coordinates":[49158,70783]},{"type":"Point","coordinates":[49216,70785]},{"type":"Point","coordinates":[49216,70785]},{"type":"Point","coordinates":[49182,70785]},{"type":"Point","coordinates":[49216,70786]},{"type":"Point","coordinates":[49673,70797]},{"type":"Point","coordinates":[49672,70797]},{"type":"Point","coordinates":[49673,70798]},{"type":"Point","coordinates":[49794,70800]},{"type":"Point","coordinates":[69221,69446]},{"type":"Point","coordinates":[69211,69449]},{"type":"Point","coordinates":[49799,70802]},{"type":"Point","coordinates":[8648,63191]},{"type":"Point","coordinates":[69220,69450]},{"type":"Point","coordinates":[49805,70805]},{"type":"Point","coordinates":[49807,70805]},{"type":"Point","coordinates":[49830,70806]},{"type":"Point","coordinates":[49804,70807]},{"type":"Point","coordinates":[49807,70808]},{"type":"Point","coordinates":[49800,70808]},{"type":"Point","coordinates":[9243,63412]},{"type":"Point","coordinates":[49797,70811]},{"type":"Point","coordinates":[49800,70813]},{"type":"Point","coordinates":[49810,70814]},{"type":"Point","coordinates":[49808,70816]},{"type":"Point","coordinates":[49810,70817]},{"type":"Point","coordinates":[49090,70808]},{"type":"Point","coordinates":[8584,63184]},{"type":"Point","coordinates":[49474,70815]},{"type":"Point","coordinates":[49082,70810]},{"type":"Point","coordinates":[49109,70811]},{"type":"Point","coordinates":[49804,70821]},{"type":"Point","coordinates":[49082,70812]},{"type":"Point","coordinates":[48968,70811]},{"type":"Point","coordinates":[8374,63114]},{"type":"Point","coordinates":[8430,63136]},{"type":"Point","coordinates":[49809,70828]},{"type":"Point","coordinates":[49811,70829]},{"type":"Point","coordinates":[49805,70829]},{"type":"Point","coordinates":[49806,70830]},{"type":"Point","coordinates":[49806,70830]},{"type":"Point","coordinates":[49806,70830]},{"type":"Point","coordinates":[49448,70826]},{"type":"Point","coordinates":[49449,70827]},{"type":"Point","coordinates":[49448,70828]},{"type":"Point","coordinates":[49448,70828]},{"type":"Point","coordinates":[49448,70828]},{"type":"Point","coordinates":[49446,70828]},{"type":"Point","coordinates":[49438,70828]},{"type":"Point","coordinates":[49452,70830]},{"type":"Point","coordinates":[8899,63315]},{"type":"Point","coordinates":[49453,70832]},{"type":"Point","coordinates":[49436,70833]},{"type":"Point","coordinates":[8444,63154]},{"type":"Point","coordinates":[49435,70835]},{"type":"Point","coordinates":[49434,70836]},{"type":"Point","coordinates":[49434,70837]},{"type":"Point","coordinates":[9811,63648]},{"type":"Point","coordinates":[50067,70845]},{"type":"Point","coordinates":[48807,70827]},{"type":"Point","coordinates":[49444,70839]},{"type":"Point","coordinates":[49017,70832]},{"type":"Point","coordinates":[8733,63267]},{"type":"Point","coordinates":[9812,63654]},{"type":"Point","coordinates":[49518,70846]},{"type":"Point","coordinates":[49090,70839]},{"type":"Point","coordinates":[83900,66366]},{"type":"Point","coordinates":[48771,70839]},{"type":"Point","coordinates":[49032,70848]},{"type":"Point","coordinates":[48731,70846]},{"type":"Point","coordinates":[48837,70850]},{"type":"Point","coordinates":[48837,70850]},{"type":"Point","coordinates":[49820,70872]},{"type":"Point","coordinates":[83847,66402]},{"type":"Point","coordinates":[49819,70878]},{"type":"Point","coordinates":[79882,67433]},{"type":"Point","coordinates":[9814,63687]},{"type":"Point","coordinates":[83869,66400]},{"type":"Point","coordinates":[83869,66401]},{"type":"Point","coordinates":[49812,70884]},{"type":"Point","coordinates":[83945,66385]},{"type":"Point","coordinates":[9820,63695]},{"type":"Point","coordinates":[49705,70884]},{"type":"Point","coordinates":[83809,66424]},{"type":"Point","coordinates":[9984,63754]},{"type":"Point","coordinates":[79792,67462]},{"type":"Point","coordinates":[9221,63484]},{"type":"Point","coordinates":[49050,70878]},{"type":"Point","coordinates":[49703,70894]},{"type":"Point","coordinates":[49827,70896]},{"type":"Point","coordinates":[83865,66419]},{"type":"Point","coordinates":[9213,63491]},{"type":"Point","coordinates":[83865,66422]},{"type":"Point","coordinates":[8481,63230]},{"type":"Point","coordinates":[49003,70888]},{"type":"Point","coordinates":[84123,66354]},{"type":"Point","coordinates":[49136,70895]},{"type":"Point","coordinates":[9797,63710]},{"type":"Point","coordinates":[9576,63634]},{"type":"Point","coordinates":[9790,63712]},{"type":"Point","coordinates":[48884,70899]},{"type":"Point","coordinates":[49833,70913]},{"type":"Point","coordinates":[49791,70914]},{"type":"Point","coordinates":[49404,70925]},{"type":"Point","coordinates":[83934,66435]},{"type":"Point","coordinates":[8466,63259]},{"type":"Point","coordinates":[9504,63634]},{"type":"Point","coordinates":[49050,70927]},{"type":"Point","coordinates":[48841,70923]},{"type":"Point","coordinates":[48841,70923]},{"type":"Point","coordinates":[49054,70928]},{"type":"Point","coordinates":[49721,70938]},{"type":"Point","coordinates":[49059,70930]},{"type":"Point","coordinates":[9758,63730]},{"type":"Point","coordinates":[9196,63531]},{"type":"Point","coordinates":[48849,70927]},{"type":"Point","coordinates":[48850,70928]},{"type":"Point","coordinates":[9511,63644]},{"type":"Point","coordinates":[48849,70928]},{"type":"Point","coordinates":[9511,63644]},{"type":"Point","coordinates":[49101,70932]},{"type":"Point","coordinates":[9510,63644]},{"type":"Point","coordinates":[84096,66402]},{"type":"Point","coordinates":[49401,70939]},{"type":"Point","coordinates":[9778,63742]},{"type":"Point","coordinates":[49001,70934]},{"type":"Point","coordinates":[49330,70941]},{"type":"Point","coordinates":[83923,66454]},{"type":"Point","coordinates":[9470,63637]},{"type":"Point","coordinates":[9470,63638]},{"type":"Point","coordinates":[49103,70941]},{"type":"Point","coordinates":[8617,63335]},{"type":"Point","coordinates":[9523,63660]},{"type":"Point","coordinates":[83926,66460]},{"type":"Point","coordinates":[9523,63660]},{"type":"Point","coordinates":[9469,63642]},{"type":"Point","coordinates":[9500,63655]},{"type":"Point","coordinates":[9468,63644]},{"type":"Point","coordinates":[9492,63652]},{"type":"Point","coordinates":[9468,63644]},{"type":"Point","coordinates":[9468,63644]},{"type":"Point","coordinates":[9467,63645]},{"type":"Point","coordinates":[9467,63645]},{"type":"Point","coordinates":[49441,70955]},{"type":"Point","coordinates":[8420,63269]},{"type":"Point","coordinates":[9071,63505]},{"type":"Point","coordinates":[8436,63276]},{"type":"Point","coordinates":[9500,63660]},{"type":"Point","coordinates":[48632,70943]},{"type":"Point","coordinates":[9500,63661]},{"type":"Point","coordinates":[8464,63289]},{"type":"Point","coordinates":[9720,63740]},{"type":"Point","coordinates":[9144,63538]},{"type":"Point","coordinates":[9065,63509]},{"type":"Point","coordinates":[48777,70951]},{"type":"Point","coordinates":[9628,63712]},{"type":"Point","coordinates":[9467,63655]},{"type":"Point","coordinates":[9467,63656]},{"type":"Point","coordinates":[48558,70948]},{"type":"Point","coordinates":[9838,63788]},{"type":"Point","coordinates":[49006,70958]},{"type":"Point","coordinates":[83773,66521]},{"type":"Point","coordinates":[8625,63357]},{"type":"Point","coordinates":[9630,63720]},{"type":"Point","coordinates":[9630,63720]},{"type":"Point","coordinates":[8578,63346]},{"type":"Point","coordinates":[8578,63346]},{"type":"Point","coordinates":[8579,63346]},{"type":"Point","coordinates":[8579,63347]},{"type":"Point","coordinates":[8579,63347]},{"type":"Point","coordinates":[8451,63302]},{"type":"Point","coordinates":[53776,70960]},{"type":"Point","coordinates":[48911,70968]},{"type":"Point","coordinates":[8360,63271]},{"type":"Point","coordinates":[8623,63376]},{"type":"Point","coordinates":[8625,63377]},{"type":"Point","coordinates":[8625,63378]},{"type":"Point","coordinates":[8621,63377]},{"type":"Point","coordinates":[8601,63372]},{"type":"Point","coordinates":[8625,63381]},{"type":"Point","coordinates":[8580,63369]},{"type":"Point","coordinates":[49509,70997]},{"type":"Point","coordinates":[49512,71001]},{"type":"Point","coordinates":[49494,71002]},{"type":"Point","coordinates":[49513,71003]},{"type":"Point","coordinates":[48764,70991]},{"type":"Point","coordinates":[49513,71005]},{"type":"Point","coordinates":[49093,71005]},{"type":"Point","coordinates":[49584,71021]},{"type":"Point","coordinates":[49663,71023]},{"type":"Point","coordinates":[83727,66588]},{"type":"Point","coordinates":[49663,71024]},{"type":"Point","coordinates":[9558,63746]},{"type":"Point","coordinates":[49663,71025]},{"type":"Point","coordinates":[49663,71025]},{"type":"Point","coordinates":[49876,71029]},{"type":"Point","coordinates":[49661,71027]},{"type":"Point","coordinates":[9253,63642]},{"type":"Point","coordinates":[48855,71017]},{"type":"Point","coordinates":[8905,63520]},{"type":"Point","coordinates":[49738,71032]},{"type":"Point","coordinates":[49739,71035]},{"type":"Point","coordinates":[48981,71029]},{"type":"Point","coordinates":[9227,63645]},{"type":"Point","coordinates":[49736,71041]},{"type":"Point","coordinates":[9228,63646]},{"type":"Point","coordinates":[49734,71043]},{"type":"Point","coordinates":[49746,71049]},{"type":"Point","coordinates":[9598,63792]},{"type":"Point","coordinates":[48865,71044]},{"type":"Point","coordinates":[8539,63414]},{"type":"Point","coordinates":[49798,71064]},{"type":"Point","coordinates":[49892,71067]},{"type":"Point","coordinates":[49892,71068]},{"type":"Point","coordinates":[49892,71068]},{"type":"Point","coordinates":[9774,63869]},{"type":"Point","coordinates":[49746,71070]},{"type":"Point","coordinates":[49495,71069]},{"type":"Point","coordinates":[9943,63931]},{"type":"Point","coordinates":[49750,71073]},{"type":"Point","coordinates":[49497,71071]},{"type":"Point","coordinates":[9857,63903]},{"type":"Point","coordinates":[49899,71077]},{"type":"Point","coordinates":[8939,63576]},{"type":"Point","coordinates":[49891,71081]},{"type":"Point","coordinates":[49891,71082]},{"type":"Point","coordinates":[48816,71066]},{"type":"Point","coordinates":[49656,71083]},{"type":"Point","coordinates":[9746,63873]},{"type":"Point","coordinates":[49889,71087]},{"type":"Point","coordinates":[49889,71087]},{"type":"Point","coordinates":[49889,71087]},{"type":"Point","coordinates":[48016,71053]},{"type":"Point","coordinates":[49891,71087]},{"type":"Point","coordinates":[49889,71088]},{"type":"Point","coordinates":[49894,71088]},{"type":"Point","coordinates":[8952,63594]},{"type":"Point","coordinates":[31684,69516]},{"type":"Point","coordinates":[49003,71080]},{"type":"Point","coordinates":[49655,71093]},{"type":"Point","coordinates":[49024,71088]},{"type":"Point","coordinates":[49653,71099]},{"type":"Point","coordinates":[49012,71092]},{"type":"Point","coordinates":[50091,71107]},{"type":"Point","coordinates":[50091,71107]},{"type":"Point","coordinates":[50090,71107]},{"type":"Point","coordinates":[70609,69538]},{"type":"Point","coordinates":[8697,63524]},{"type":"Point","coordinates":[68448,69872]},{"type":"Point","coordinates":[8665,63515]},{"type":"Point","coordinates":[49381,71111]},{"type":"Point","coordinates":[70603,69553]},{"type":"Point","coordinates":[49375,71117]},{"type":"Point","coordinates":[49375,71118]},{"type":"Point","coordinates":[56343,71027]},{"type":"Point","coordinates":[9736,63920]},{"type":"Point","coordinates":[9187,63726]},{"type":"Point","coordinates":[83665,66719]},{"type":"Point","coordinates":[8344,63427]},{"type":"Point","coordinates":[83683,66717]},{"type":"Point","coordinates":[83695,66721]},{"type":"Point","coordinates":[9070,63697]},{"type":"Point","coordinates":[8721,63573]},{"type":"Point","coordinates":[83695,66723]},{"type":"Point","coordinates":[49106,71143]},{"type":"Point","coordinates":[8741,63584]},{"type":"Point","coordinates":[8577,63526]},{"type":"Point","coordinates":[8579,63527]},{"type":"Point","coordinates":[49103,71145]},{"type":"Point","coordinates":[49103,71146]},{"type":"Point","coordinates":[49103,71146]},{"type":"Point","coordinates":[83661,66743]},{"type":"Point","coordinates":[49098,71151]},{"type":"Point","coordinates":[49255,71154]},{"type":"Point","coordinates":[49100,71152]},{"type":"Point","coordinates":[49101,71152]},{"type":"Point","coordinates":[8331,63445]},{"type":"Point","coordinates":[49833,71164]},{"type":"Point","coordinates":[49833,71164]},{"type":"Point","coordinates":[37980,70449]},{"type":"Point","coordinates":[49840,71166]},{"type":"Point","coordinates":[49101,71155]},{"type":"Point","coordinates":[49840,71166]},{"type":"Point","coordinates":[49101,71156]},{"type":"Point","coordinates":[49838,71168]},{"type":"Point","coordinates":[49101,71159]},{"type":"Point","coordinates":[49832,71169]},{"type":"Point","coordinates":[49142,71160]},{"type":"Point","coordinates":[49839,71170]},{"type":"Point","coordinates":[49838,71170]},{"type":"Point","coordinates":[49265,71165]},{"type":"Point","coordinates":[8299,63445]},{"type":"Point","coordinates":[47862,71137]},{"type":"Point","coordinates":[8584,63550]},{"type":"Point","coordinates":[48977,71167]},{"type":"Point","coordinates":[8584,63555]},{"type":"Point","coordinates":[8583,63555]},{"type":"Point","coordinates":[8389,63485]},{"type":"Point","coordinates":[83619,66777]},{"type":"Point","coordinates":[8918,63685]},{"type":"Point","coordinates":[9912,64039]},{"type":"Point","coordinates":[8786,63641]},{"type":"Point","coordinates":[8954,63702]},{"type":"Point","coordinates":[8582,63568]},{"type":"Point","coordinates":[68444,69957]},{"type":"Point","coordinates":[49257,71192]},{"type":"Point","coordinates":[8583,63576]},{"type":"Point","coordinates":[49267,71200]},{"type":"Point","coordinates":[8581,63583]},{"type":"Point","coordinates":[49262,71202]},{"type":"Point","coordinates":[8581,63586]},{"type":"Point","coordinates":[8581,63586]},{"type":"Point","coordinates":[8582,63587]},{"type":"Point","coordinates":[8582,63587]},{"type":"Point","coordinates":[8580,63587]},{"type":"Point","coordinates":[8581,63587]},{"type":"Point","coordinates":[9679,63981]},{"type":"Point","coordinates":[8566,63582]},{"type":"Point","coordinates":[50211,71217]},{"type":"Point","coordinates":[48890,71200]},{"type":"Point","coordinates":[8582,63589]},{"type":"Point","coordinates":[8582,63591]},{"type":"Point","coordinates":[8582,63591]},{"type":"Point","coordinates":[8578,63589]},{"type":"Point","coordinates":[49560,71213]},{"type":"Point","coordinates":[49138,71207]},{"type":"Point","coordinates":[8581,63593]},{"type":"Point","coordinates":[49561,71220]},{"type":"Point","coordinates":[83707,66795]},{"type":"Point","coordinates":[9988,64105]},{"type":"Point","coordinates":[83678,66807]},{"type":"Point","coordinates":[8610,63616]},{"type":"Point","coordinates":[48956,71221]},{"type":"Point","coordinates":[8355,63529]},{"type":"Point","coordinates":[83657,66824]},{"type":"Point","coordinates":[8607,63629]},{"type":"Point","coordinates":[8865,63728]},{"type":"Point","coordinates":[49530,71248]},{"type":"Point","coordinates":[8564,63622]},{"type":"Point","coordinates":[8580,63630]},{"type":"Point","coordinates":[8587,63633]},{"type":"Point","coordinates":[8560,63624]},{"type":"Point","coordinates":[8561,63625]},{"type":"Point","coordinates":[8587,63635]},{"type":"Point","coordinates":[8587,63635]},{"type":"Point","coordinates":[8560,63626]},{"type":"Point","coordinates":[8560,63626]},{"type":"Point","coordinates":[8560,63626]},{"type":"Point","coordinates":[8576,63632]},{"type":"Point","coordinates":[8576,63632]},{"type":"Point","coordinates":[8576,63632]},{"type":"Point","coordinates":[9015,63792]},{"type":"Point","coordinates":[8574,63633]},{"type":"Point","coordinates":[8560,63628]},{"type":"Point","coordinates":[8560,63629]},{"type":"Point","coordinates":[8574,63635]},{"type":"Point","coordinates":[8588,63640]},{"type":"Point","coordinates":[8580,63638]},{"type":"Point","coordinates":[8580,63638]},{"type":"Point","coordinates":[8580,63638]},{"type":"Point","coordinates":[8585,63641]},{"type":"Point","coordinates":[47569,71219]},{"type":"Point","coordinates":[8575,63639]},{"type":"Point","coordinates":[8577,63641]},{"type":"Point","coordinates":[8578,63641]},{"type":"Point","coordinates":[8576,63641]},{"type":"Point","coordinates":[8578,63641]},{"type":"Point","coordinates":[8576,63641]},{"type":"Point","coordinates":[8576,63641]},{"type":"Point","coordinates":[10188,64215]},{"type":"Point","coordinates":[8576,63645]},{"type":"Point","coordinates":[8969,63787]},{"type":"Point","coordinates":[8559,63641]},{"type":"Point","coordinates":[8560,63642]},{"type":"Point","coordinates":[8560,63642]},{"type":"Point","coordinates":[84055,66751]},{"type":"Point","coordinates":[49103,71266]},{"type":"Point","coordinates":[49414,71277]},{"type":"Point","coordinates":[8561,63653]},{"type":"Point","coordinates":[8597,63670]},{"type":"Point","coordinates":[49568,71286]},{"type":"Point","coordinates":[49440,71285]},{"type":"Point","coordinates":[49438,71286]},{"type":"Point","coordinates":[8711,63716]},{"type":"Point","coordinates":[8558,63662]},{"type":"Point","coordinates":[49440,71291]},{"type":"Point","coordinates":[48595,71276]},{"type":"Point","coordinates":[49437,71291]},{"type":"Point","coordinates":[48703,71278]},{"type":"Point","coordinates":[51712,71305]},{"type":"Point","coordinates":[49440,71294]},{"type":"Point","coordinates":[8593,63680]},{"type":"Point","coordinates":[48161,71270]},{"type":"Point","coordinates":[8620,63693]},{"type":"Point","coordinates":[43912,71093]},{"type":"Point","coordinates":[8897,63795]},{"type":"Point","coordinates":[51720,71311]},{"type":"Point","coordinates":[49432,71301]},{"type":"Point","coordinates":[49430,71301]},{"type":"Point","coordinates":[9939,64169]},{"type":"Point","coordinates":[8867,63790]},{"type":"Point","coordinates":[49431,71305]},{"type":"Point","coordinates":[8557,63679]},{"type":"Point","coordinates":[48158,71281]},{"type":"Point","coordinates":[8558,63681]},{"type":"Point","coordinates":[48679,71295]},{"type":"Point","coordinates":[8768,63758]},{"type":"Point","coordinates":[48679,71295]},{"type":"Point","coordinates":[8556,63683]},{"type":"Point","coordinates":[8602,63700]},{"type":"Point","coordinates":[49575,71313]},{"type":"Point","coordinates":[48150,71287]},{"type":"Point","coordinates":[8697,63737]},{"type":"Point","coordinates":[8561,63689]},{"type":"Point","coordinates":[8561,63689]},{"type":"Point","coordinates":[8562,63690]},{"type":"Point","coordinates":[8558,63689]},{"type":"Point","coordinates":[8561,63690]},{"type":"Point","coordinates":[8559,63690]},{"type":"Point","coordinates":[8682,63735]},{"type":"Point","coordinates":[8558,63690]},{"type":"Point","coordinates":[8562,63691]},{"type":"Point","coordinates":[51736,71328]},{"type":"Point","coordinates":[8559,63692]},{"type":"Point","coordinates":[8571,63696]},{"type":"Point","coordinates":[8557,63691]},{"type":"Point","coordinates":[8561,63693]},{"type":"Point","coordinates":[8562,63693]},{"type":"Point","coordinates":[8562,63693]},{"type":"Point","coordinates":[8557,63692]},{"type":"Point","coordinates":[8562,63693]},{"type":"Point","coordinates":[8562,63693]},{"type":"Point","coordinates":[51736,71329]},{"type":"Point","coordinates":[8558,63692]},{"type":"Point","coordinates":[8559,63693]},{"type":"Point","coordinates":[8562,63694]},{"type":"Point","coordinates":[8557,63692]},{"type":"Point","coordinates":[8557,63693]},{"type":"Point","coordinates":[8562,63695]},{"type":"Point","coordinates":[8562,63695]},{"type":"Point","coordinates":[8559,63694]},{"type":"Point","coordinates":[8560,63695]},{"type":"Point","coordinates":[8556,63694]},{"type":"Point","coordinates":[8562,63696]},{"type":"Point","coordinates":[8560,63696]},{"type":"Point","coordinates":[8560,63697]},{"type":"Point","coordinates":[8560,63697]},{"type":"Point","coordinates":[8561,63697]},{"type":"Point","coordinates":[8561,63697]},{"type":"Point","coordinates":[8561,63698]},{"type":"Point","coordinates":[8561,63698]},{"type":"Point","coordinates":[8557,63696]},{"type":"Point","coordinates":[8564,63699]},{"type":"Point","coordinates":[8561,63698]},{"type":"Point","coordinates":[8563,63699]},{"type":"Point","coordinates":[8563,63699]},{"type":"Point","coordinates":[8563,63699]},{"type":"Point","coordinates":[8561,63698]},{"type":"Point","coordinates":[8563,63699]},{"type":"Point","coordinates":[8556,63697]},{"type":"Point","coordinates":[8563,63699]},{"type":"Point","coordinates":[8562,63699]},{"type":"Point","coordinates":[8562,63699]},{"type":"Point","coordinates":[8563,63699]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8556,63698]},{"type":"Point","coordinates":[8561,63699]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8563,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8556,63698]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8559,63699]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8560,63699]},{"type":"Point","coordinates":[8561,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8560,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8560,63700]},{"type":"Point","coordinates":[8560,63700]},{"type":"Point","coordinates":[8561,63701]},{"type":"Point","coordinates":[8556,63699]},{"type":"Point","coordinates":[8561,63701]},{"type":"Point","coordinates":[8561,63701]},{"type":"Point","coordinates":[8561,63701]},{"type":"Point","coordinates":[8558,63701]},{"type":"Point","coordinates":[8560,63702]},{"type":"Point","coordinates":[8561,63702]},{"type":"Point","coordinates":[8575,63707]},{"type":"Point","coordinates":[8561,63702]},{"type":"Point","coordinates":[8574,63708]},{"type":"Point","coordinates":[8561,63704]},{"type":"Point","coordinates":[8564,63706]},{"type":"Point","coordinates":[8561,63705]},{"type":"Point","coordinates":[8564,63706]},{"type":"Point","coordinates":[8564,63706]},{"type":"Point","coordinates":[8564,63706]},{"type":"Point","coordinates":[8558,63704]},{"type":"Point","coordinates":[8564,63706]},{"type":"Point","coordinates":[8563,63706]},{"type":"Point","coordinates":[8564,63706]},{"type":"Point","coordinates":[8559,63705]},{"type":"Point","coordinates":[8558,63705]},{"type":"Point","coordinates":[8567,63708]},{"type":"Point","coordinates":[8562,63706]},{"type":"Point","coordinates":[8560,63705]},{"type":"Point","coordinates":[8563,63707]},{"type":"Point","coordinates":[8563,63707]},{"type":"Point","coordinates":[49233,71328]},{"type":"Point","coordinates":[8566,63709]},{"type":"Point","coordinates":[8564,63708]},{"type":"Point","coordinates":[8558,63706]},{"type":"Point","coordinates":[8571,63711]},{"type":"Point","coordinates":[8561,63707]},{"type":"Point","coordinates":[8557,63706]},{"type":"Point","coordinates":[8557,63706]},{"type":"Point","coordinates":[8566,63709]},{"type":"Point","coordinates":[8556,63706]},{"type":"Point","coordinates":[8556,63706]},{"type":"Point","coordinates":[8556,63706]},{"type":"Point","coordinates":[8556,63706]},{"type":"Point","coordinates":[8565,63709]},{"type":"Point","coordinates":[49270,71330]},{"type":"Point","coordinates":[8556,63706]},{"type":"Point","coordinates":[8566,63710]},{"type":"Point","coordinates":[8566,63710]},{"type":"Point","coordinates":[8559,63707]},{"type":"Point","coordinates":[8565,63710]},{"type":"Point","coordinates":[8573,63713]},{"type":"Point","coordinates":[8561,63709]},{"type":"Point","coordinates":[8578,63715]},{"type":"Point","coordinates":[8562,63709]},{"type":"Point","coordinates":[8562,63709]},{"type":"Point","coordinates":[8561,63709]},{"type":"Point","coordinates":[49354,71333]},{"type":"Point","coordinates":[8560,63709]},{"type":"Point","coordinates":[8558,63708]},{"type":"Point","coordinates":[8565,63711]},{"type":"Point","coordinates":[49266,71332]},{"type":"Point","coordinates":[8566,63712]},{"type":"Point","coordinates":[8565,63712]},{"type":"Point","coordinates":[8571,63715]},{"type":"Point","coordinates":[8565,63713]},{"type":"Point","coordinates":[49351,71335]},{"type":"Point","coordinates":[8565,63713]},{"type":"Point","coordinates":[8557,63711]},{"type":"Point","coordinates":[8565,63713]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8567,63715]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63715]},{"type":"Point","coordinates":[8564,63714]},{"type":"Point","coordinates":[8564,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8564,63714]},{"type":"Point","coordinates":[8564,63714]},{"type":"Point","coordinates":[8564,63714]},{"type":"Point","coordinates":[8565,63715]},{"type":"Point","coordinates":[8564,63715]},{"type":"Point","coordinates":[8565,63715]},{"type":"Point","coordinates":[8564,63715]},{"type":"Point","coordinates":[8565,63715]},{"type":"Point","coordinates":[8561,63714]},{"type":"Point","coordinates":[49269,71336]},{"type":"Point","coordinates":[8561,63714]},{"type":"Point","coordinates":[8554,63712]},{"type":"Point","coordinates":[8564,63716]},{"type":"Point","coordinates":[8564,63716]},{"type":"Point","coordinates":[8564,63716]},{"type":"Point","coordinates":[8568,63717]},{"type":"Point","coordinates":[8561,63715]},{"type":"Point","coordinates":[8561,63715]},{"type":"Point","coordinates":[8564,63716]},{"type":"Point","coordinates":[8561,63715]},{"type":"Point","coordinates":[8561,63715]},{"type":"Point","coordinates":[8561,63715]},{"type":"Point","coordinates":[8563,63715]},{"type":"Point","coordinates":[8564,63716]},{"type":"Point","coordinates":[8560,63715]},{"type":"Point","coordinates":[8561,63715]},{"type":"Point","coordinates":[8575,63720]},{"type":"Point","coordinates":[8561,63716]},{"type":"Point","coordinates":[8560,63716]},{"type":"Point","coordinates":[8560,63716]},{"type":"Point","coordinates":[48755,71329]},{"type":"Point","coordinates":[8555,63714]},{"type":"Point","coordinates":[8561,63717]},{"type":"Point","coordinates":[8561,63717]},{"type":"Point","coordinates":[8561,63717]},{"type":"Point","coordinates":[8576,63723]},{"type":"Point","coordinates":[8570,63721]},{"type":"Point","coordinates":[8557,63716]},{"type":"Point","coordinates":[8557,63716]},{"type":"Point","coordinates":[72981,69370]},{"type":"Point","coordinates":[8560,63718]},{"type":"Point","coordinates":[9299,63984]},{"type":"Point","coordinates":[8555,63717]},{"type":"Point","coordinates":[8572,63724]},{"type":"Point","coordinates":[8572,63724]},{"type":"Point","coordinates":[8572,63724]},{"type":"Point","coordinates":[8561,63720]},{"type":"Point","coordinates":[8572,63724]},{"type":"Point","coordinates":[8561,63720]},{"type":"Point","coordinates":[8561,63720]},{"type":"Point","coordinates":[8561,63720]},{"type":"Point","coordinates":[8559,63720]},{"type":"Point","coordinates":[8559,63721]},{"type":"Point","coordinates":[8626,63746]},{"type":"Point","coordinates":[8557,63722]},{"type":"Point","coordinates":[9302,63990]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[48895,71341]},{"type":"Point","coordinates":[8585,63736]},{"type":"Point","coordinates":[49240,71349]},{"type":"Point","coordinates":[8562,63729]},{"type":"Point","coordinates":[8571,63732]},{"type":"Point","coordinates":[8559,63728]},{"type":"Point","coordinates":[8563,63731]},{"type":"Point","coordinates":[8575,63737]},{"type":"Point","coordinates":[8566,63734]},{"type":"Point","coordinates":[8575,63737]},{"type":"Point","coordinates":[8566,63734]},{"type":"Point","coordinates":[8569,63735]},{"type":"Point","coordinates":[8575,63737]},{"type":"Point","coordinates":[66697,70364]},{"type":"Point","coordinates":[8576,63739]},{"type":"Point","coordinates":[8552,63730]},{"type":"Point","coordinates":[8562,63737]},{"type":"Point","coordinates":[9263,63990]},{"type":"Point","coordinates":[49470,71364]},{"type":"Point","coordinates":[8552,63736]},{"type":"Point","coordinates":[8570,63746]},{"type":"Point","coordinates":[8577,63756]},{"type":"Point","coordinates":[8577,63756]},{"type":"Point","coordinates":[8566,63753]},{"type":"Point","coordinates":[35171,70325]},{"type":"Point","coordinates":[8813,63845]},{"type":"Point","coordinates":[49492,71383]},{"type":"Point","coordinates":[48789,71372]},{"type":"Point","coordinates":[49449,71383]},{"type":"Point","coordinates":[48920,71375]},{"type":"Point","coordinates":[9457,64085]},{"type":"Point","coordinates":[74326,69161]},{"type":"Point","coordinates":[48907,71380]},{"type":"Point","coordinates":[48909,71380]},{"type":"Point","coordinates":[49448,71390]},{"type":"Point","coordinates":[48913,71381]},{"type":"Point","coordinates":[49448,71390]},{"type":"Point","coordinates":[66730,70393]},{"type":"Point","coordinates":[48911,71382]},{"type":"Point","coordinates":[8652,63808]},{"type":"Point","coordinates":[49442,71400]},{"type":"Point","coordinates":[49656,71409]},{"type":"Point","coordinates":[49657,71409]},{"type":"Point","coordinates":[49656,71409]},{"type":"Point","coordinates":[49656,71411]},{"type":"Point","coordinates":[42240,71098]},{"type":"Point","coordinates":[74314,69195]},{"type":"Point","coordinates":[8498,63774]},{"type":"Point","coordinates":[8570,63802]},{"type":"Point","coordinates":[48829,71412]},{"type":"Point","coordinates":[8596,63815]},{"type":"Point","coordinates":[68528,70184]},{"type":"Point","coordinates":[49441,71428]},{"type":"Point","coordinates":[49441,71428]},{"type":"Point","coordinates":[48666,71415]},{"type":"Point","coordinates":[49441,71428]},{"type":"Point","coordinates":[74326,69204]},{"type":"Point","coordinates":[48026,71406]},{"type":"Point","coordinates":[48025,71406]},{"type":"Point","coordinates":[48026,71408]},{"type":"Point","coordinates":[48025,71409]},{"type":"Point","coordinates":[48026,71409]},{"type":"Point","coordinates":[8574,63822]},{"type":"Point","coordinates":[74325,69214]},{"type":"Point","coordinates":[49645,71444]},{"type":"Point","coordinates":[8570,63822]},{"type":"Point","coordinates":[8573,63824]},{"type":"Point","coordinates":[74326,69216]},{"type":"Point","coordinates":[8556,63820]},{"type":"Point","coordinates":[49436,71445]},{"type":"Point","coordinates":[8864,63933]},{"type":"Point","coordinates":[8574,63829]},{"type":"Point","coordinates":[49542,71450]},{"type":"Point","coordinates":[49639,71452]},{"type":"Point","coordinates":[49635,71453]},{"type":"Point","coordinates":[9873,64298]},{"type":"Point","coordinates":[49647,71456]},{"type":"Point","coordinates":[9672,64231]},{"type":"Point","coordinates":[48685,71442]},{"type":"Point","coordinates":[66812,70452]},{"type":"Point","coordinates":[48678,71452]},{"type":"Point","coordinates":[8269,63738]},{"type":"Point","coordinates":[48680,71453]},{"type":"Point","coordinates":[48568,71452]},{"type":"Point","coordinates":[49635,71471]},{"type":"Point","coordinates":[9722,64264]},{"type":"Point","coordinates":[49421,71470]},{"type":"Point","coordinates":[48686,71458]},{"type":"Point","coordinates":[48688,71461]},{"type":"Point","coordinates":[50106,71482]},{"type":"Point","coordinates":[48687,71461]},{"type":"Point","coordinates":[49638,71479]},{"type":"Point","coordinates":[8328,63771]},{"type":"Point","coordinates":[74285,69260]},{"type":"Point","coordinates":[48571,71463]},{"type":"Point","coordinates":[8912,63984]},{"type":"Point","coordinates":[8402,63804]},{"type":"Point","coordinates":[49638,71486]},{"type":"Point","coordinates":[49639,71488]},{"type":"Point","coordinates":[6198,62983]},{"type":"Point","coordinates":[9240,64110]},{"type":"Point","coordinates":[8852,63973]},{"type":"Point","coordinates":[49278,71487]},{"type":"Point","coordinates":[42541,71195]},{"type":"Point","coordinates":[8642,63900]},{"type":"Point","coordinates":[49620,71498]},{"type":"Point","coordinates":[69335,70136]},{"type":"Point","coordinates":[6215,63003]},{"type":"Point","coordinates":[48794,71489]},{"type":"Point","coordinates":[48795,71490]},{"type":"Point","coordinates":[48795,71490]},{"type":"Point","coordinates":[8299,63785]},{"type":"Point","coordinates":[48796,71490]},{"type":"Point","coordinates":[48790,71491]},{"type":"Point","coordinates":[48789,71491]},{"type":"Point","coordinates":[66800,70497]},{"type":"Point","coordinates":[48800,71493]},{"type":"Point","coordinates":[8550,63880]},{"type":"Point","coordinates":[8550,63880]},{"type":"Point","coordinates":[8549,63880]},{"type":"Point","coordinates":[8604,63900]},{"type":"Point","coordinates":[48799,71494]},{"type":"Point","coordinates":[48799,71494]},{"type":"Point","coordinates":[48801,71495]},{"type":"Point","coordinates":[49279,71504]},{"type":"Point","coordinates":[48798,71496]},{"type":"Point","coordinates":[8554,63884]},{"type":"Point","coordinates":[6224,63015]},{"type":"Point","coordinates":[8555,63885]},{"type":"Point","coordinates":[49657,71511]},{"type":"Point","coordinates":[48796,71499]},{"type":"Point","coordinates":[48575,71495]},{"type":"Point","coordinates":[73954,69358]},{"type":"Point","coordinates":[48576,71497]},{"type":"Point","coordinates":[49559,71519]},{"type":"Point","coordinates":[48579,71503]},{"type":"Point","coordinates":[48579,71503]},{"type":"Point","coordinates":[48579,71505]},{"type":"Point","coordinates":[48579,71506]},{"type":"Point","coordinates":[48837,71513]},{"type":"Point","coordinates":[83184,67247]},{"type":"Point","coordinates":[49661,71530]},{"type":"Point","coordinates":[49662,71531]},{"type":"Point","coordinates":[8376,63842]},{"type":"Point","coordinates":[8540,63909]},{"type":"Point","coordinates":[9748,64347]},{"type":"Point","coordinates":[8591,63936]},{"type":"Point","coordinates":[48982,71540]},{"type":"Point","coordinates":[48138,71522]},{"type":"Point","coordinates":[48947,71541]},{"type":"Point","coordinates":[48988,71544]},{"type":"Point","coordinates":[48178,71531]},{"type":"Point","coordinates":[48999,71550]},{"type":"Point","coordinates":[48177,71535]},{"type":"Point","coordinates":[49506,71562]},{"type":"Point","coordinates":[49701,71567]},{"type":"Point","coordinates":[49706,71568]},{"type":"Point","coordinates":[49706,71569]},{"type":"Point","coordinates":[8720,64004]},{"type":"Point","coordinates":[49706,71569]},{"type":"Point","coordinates":[49706,71569]},{"type":"Point","coordinates":[49701,71569]},{"type":"Point","coordinates":[49700,71570]},{"type":"Point","coordinates":[49438,71569]},{"type":"Point","coordinates":[8445,63908]},{"type":"Point","coordinates":[48591,71556]},{"type":"Point","coordinates":[48510,71556]},{"type":"Point","coordinates":[49450,71573]},{"type":"Point","coordinates":[49710,71577]},{"type":"Point","coordinates":[49307,71574]},{"type":"Point","coordinates":[8484,63930]},{"type":"Point","coordinates":[6181,63070]},{"type":"Point","coordinates":[48167,71557]},{"type":"Point","coordinates":[48152,71559]},{"type":"Point","coordinates":[48168,71562]},{"type":"Point","coordinates":[9864,64444]},{"type":"Point","coordinates":[9865,64445]},{"type":"Point","coordinates":[48171,71574]},{"type":"Point","coordinates":[8348,63904]},{"type":"Point","coordinates":[6171,63089]},{"type":"Point","coordinates":[9866,64447]},{"type":"Point","coordinates":[48135,71575]},{"type":"Point","coordinates":[48171,71577]},{"type":"Point","coordinates":[49643,71606]},{"type":"Point","coordinates":[8661,64022]},{"type":"Point","coordinates":[49410,71604]},{"type":"Point","coordinates":[49683,71608]},{"type":"Point","coordinates":[9863,64452]},{"type":"Point","coordinates":[48172,71580]},{"type":"Point","coordinates":[9864,64452]},{"type":"Point","coordinates":[48996,71599]},{"type":"Point","coordinates":[49684,71609]},{"type":"Point","coordinates":[8535,63981]},{"type":"Point","coordinates":[48177,71584]},{"type":"Point","coordinates":[48146,71584]},{"type":"Point","coordinates":[48146,71584]},{"type":"Point","coordinates":[48146,71584]},{"type":"Point","coordinates":[48146,71584]},{"type":"Point","coordinates":[48146,71584]},{"type":"Point","coordinates":[48146,71584]},{"type":"Point","coordinates":[8495,63968]},{"type":"Point","coordinates":[48146,71585]},{"type":"Point","coordinates":[48146,71585]},{"type":"Point","coordinates":[49379,71610]},{"type":"Point","coordinates":[8510,63975]},{"type":"Point","coordinates":[48144,71587]},{"type":"Point","coordinates":[48162,71590]},{"type":"Point","coordinates":[48162,71591]},{"type":"Point","coordinates":[8536,63989]},{"type":"Point","coordinates":[48178,71592]},{"type":"Point","coordinates":[49923,71623]},{"type":"Point","coordinates":[48179,71593]},{"type":"Point","coordinates":[49385,71617]},{"type":"Point","coordinates":[73698,69514]},{"type":"Point","coordinates":[73701,69515]},{"type":"Point","coordinates":[8497,63981]},{"type":"Point","coordinates":[49399,71622]},{"type":"Point","coordinates":[49399,71623]},{"type":"Point","coordinates":[9879,64476]},{"type":"Point","coordinates":[49399,71623]},{"type":"Point","coordinates":[49399,71623]},{"type":"Point","coordinates":[49384,71623]},{"type":"Point","coordinates":[49654,71627]},{"type":"Point","coordinates":[51169,71637]},{"type":"Point","coordinates":[48160,71603]},{"type":"Point","coordinates":[49734,71633]},{"type":"Point","coordinates":[8661,64049]},{"type":"Point","coordinates":[49663,71636]},{"type":"Point","coordinates":[9864,64482]},{"type":"Point","coordinates":[9877,64487]},{"type":"Point","coordinates":[9877,64487]},{"type":"Point","coordinates":[48186,71611]},{"type":"Point","coordinates":[8593,64030]},{"type":"Point","coordinates":[76157,69042]},{"type":"Point","coordinates":[73865,69503]},{"type":"Point","coordinates":[9732,64441]},{"type":"Point","coordinates":[9722,64438]},{"type":"Point","coordinates":[9749,64450]},{"type":"Point","coordinates":[48121,71616]},{"type":"Point","coordinates":[9308,64295]},{"type":"Point","coordinates":[9308,64295]},{"type":"Point","coordinates":[8939,64164]},{"type":"Point","coordinates":[48122,71618]},{"type":"Point","coordinates":[9205,64261]},{"type":"Point","coordinates":[6211,63152]},{"type":"Point","coordinates":[8259,63920]},{"type":"Point","coordinates":[49584,71649]},{"type":"Point","coordinates":[73716,69541]},{"type":"Point","coordinates":[8598,64046]},{"type":"Point","coordinates":[9308,64304]},{"type":"Point","coordinates":[49360,71655]},{"type":"Point","coordinates":[48623,71644]},{"type":"Point","coordinates":[8299,63947]},{"type":"Point","coordinates":[9323,64319]},{"type":"Point","coordinates":[8852,64151]},{"type":"Point","coordinates":[8715,64106]},{"type":"Point","coordinates":[9305,64321]},{"type":"Point","coordinates":[8850,64158]},{"type":"Point","coordinates":[48180,71646]},{"type":"Point","coordinates":[9301,64320]},{"type":"Point","coordinates":[48363,71651]},{"type":"Point","coordinates":[48248,71648]},{"type":"Point","coordinates":[49585,71675]},{"type":"Point","coordinates":[49585,71675]},{"type":"Point","coordinates":[49582,71675]},{"type":"Point","coordinates":[49584,71675]},{"type":"Point","coordinates":[49582,71675]},{"type":"Point","coordinates":[49582,71675]},{"type":"Point","coordinates":[8381,63993]},{"type":"Point","coordinates":[49586,71677]},{"type":"Point","coordinates":[49586,71677]},{"type":"Point","coordinates":[49679,71680]},{"type":"Point","coordinates":[8897,64184]},{"type":"Point","coordinates":[48180,71656]},{"type":"Point","coordinates":[48176,71659]},{"type":"Point","coordinates":[9302,64336]},{"type":"Point","coordinates":[9302,64336]},{"type":"Point","coordinates":[9298,64337]},{"type":"Point","coordinates":[49713,71693]},{"type":"Point","coordinates":[8627,64098]},{"type":"Point","coordinates":[9451,64395]},{"type":"Point","coordinates":[49684,71694]},{"type":"Point","coordinates":[9299,64341]},{"type":"Point","coordinates":[9297,64340]},{"type":"Point","coordinates":[9296,64340]},{"type":"Point","coordinates":[8336,63994]},{"type":"Point","coordinates":[9299,64341]},{"type":"Point","coordinates":[8257,63965]},{"type":"Point","coordinates":[9296,64340]},{"type":"Point","coordinates":[9298,64342]},{"type":"Point","coordinates":[9298,64342]},{"type":"Point","coordinates":[9296,64341]},{"type":"Point","coordinates":[49684,71696]},{"type":"Point","coordinates":[9295,64341]},{"type":"Point","coordinates":[48204,71669]},{"type":"Point","coordinates":[9296,64342]},{"type":"Point","coordinates":[73901,69553]},{"type":"Point","coordinates":[49472,71697]},{"type":"Point","coordinates":[48346,71676]},{"type":"Point","coordinates":[48206,71672]},{"type":"Point","coordinates":[49795,71704]},{"type":"Point","coordinates":[49795,71704]},{"type":"Point","coordinates":[9476,64413]},{"type":"Point","coordinates":[49684,71704]},{"type":"Point","coordinates":[49685,71705]},{"type":"Point","coordinates":[48182,71677]},{"type":"Point","coordinates":[48206,71680]},{"type":"Point","coordinates":[8745,64155]},{"type":"Point","coordinates":[49655,71707]},{"type":"Point","coordinates":[9477,64418]},{"type":"Point","coordinates":[49734,71709]},{"type":"Point","coordinates":[48114,71684]},{"type":"Point","coordinates":[9752,64522]},{"type":"Point","coordinates":[48202,71687]},{"type":"Point","coordinates":[8657,64134]},{"type":"Point","coordinates":[9478,64432]},{"type":"Point","coordinates":[9485,64435]},{"type":"Point","coordinates":[48199,71696]},{"type":"Point","coordinates":[9760,64534]},{"type":"Point","coordinates":[8843,64209]},{"type":"Point","coordinates":[8579,64115]},{"type":"Point","coordinates":[8907,64235]},{"type":"Point","coordinates":[8907,64236]},{"type":"Point","coordinates":[8907,64236]},{"type":"Point","coordinates":[8907,64236]},{"type":"Point","coordinates":[8907,64236]},{"type":"Point","coordinates":[8907,64236]},{"type":"Point","coordinates":[8907,64236]},{"type":"Point","coordinates":[8907,64236]},{"type":"Point","coordinates":[8899,64234]},{"type":"Point","coordinates":[8907,64237]},{"type":"Point","coordinates":[8907,64238]},{"type":"Point","coordinates":[48715,71718]},{"type":"Point","coordinates":[47664,71692]},{"type":"Point","coordinates":[49032,71725]},{"type":"Point","coordinates":[49775,71738]},{"type":"Point","coordinates":[49776,71738]},{"type":"Point","coordinates":[49775,71738]},{"type":"Point","coordinates":[8571,64123]},{"type":"Point","coordinates":[8234,64003]},{"type":"Point","coordinates":[49689,71740]},{"type":"Point","coordinates":[48183,71713]},{"type":"Point","coordinates":[8897,64245]},{"type":"Point","coordinates":[48183,71719]},{"type":"Point","coordinates":[48183,71719]},{"type":"Point","coordinates":[48623,71730]},{"type":"Point","coordinates":[48624,71730]},{"type":"Point","coordinates":[48182,71720]},{"type":"Point","coordinates":[48624,71731]},{"type":"Point","coordinates":[48222,71724]},{"type":"Point","coordinates":[8586,64145]},{"type":"Point","coordinates":[48139,71727]},{"type":"Point","coordinates":[8995,64296]},{"type":"Point","coordinates":[49539,71755]},{"type":"Point","coordinates":[8517,64125]},{"type":"Point","coordinates":[71684,70014]},{"type":"Point","coordinates":[49538,71758]},{"type":"Point","coordinates":[49538,71759]},{"type":"Point","coordinates":[49538,71759]},{"type":"Point","coordinates":[49537,71760]},{"type":"Point","coordinates":[49536,71760]},{"type":"Point","coordinates":[49537,71761]},{"type":"Point","coordinates":[49536,71761]},{"type":"Point","coordinates":[8536,64137]},{"type":"Point","coordinates":[9766,64578]},{"type":"Point","coordinates":[48136,71737]},{"type":"Point","coordinates":[8535,64140]},{"type":"Point","coordinates":[71683,70022]},{"type":"Point","coordinates":[48248,71741]},{"type":"Point","coordinates":[49726,71768]},{"type":"Point","coordinates":[49727,71769]},{"type":"Point","coordinates":[49536,71767]},{"type":"Point","coordinates":[49727,71769]},{"type":"Point","coordinates":[68706,70499]},{"type":"Point","coordinates":[8414,64101]},{"type":"Point","coordinates":[49536,71770]},{"type":"Point","coordinates":[71683,70030]},{"type":"Point","coordinates":[48886,71762]},{"type":"Point","coordinates":[8301,64064]},{"type":"Point","coordinates":[49583,71775]},{"type":"Point","coordinates":[8718,64219]},{"type":"Point","coordinates":[81772,67874]},{"type":"Point","coordinates":[48533,71763]},{"type":"Point","coordinates":[49684,71784]},{"type":"Point","coordinates":[8362,64099]},{"type":"Point","coordinates":[8574,64177]},{"type":"Point","coordinates":[82159,67785]},{"type":"Point","coordinates":[48201,71767]},{"type":"Point","coordinates":[49641,71794]},{"type":"Point","coordinates":[48660,71791]},{"type":"Point","coordinates":[49513,71806]},{"type":"Point","coordinates":[47708,71769]},{"type":"Point","coordinates":[8927,64328]},{"type":"Point","coordinates":[48873,71805]},{"type":"Point","coordinates":[49002,71807]},{"type":"Point","coordinates":[48305,71795]},{"type":"Point","coordinates":[47711,71781]},{"type":"Point","coordinates":[48885,71810]},{"type":"Point","coordinates":[48216,71796]},{"type":"Point","coordinates":[49981,71827]},{"type":"Point","coordinates":[48297,71799]},{"type":"Point","coordinates":[48142,71796]},{"type":"Point","coordinates":[48867,71813]},{"type":"Point","coordinates":[48215,71801]},{"type":"Point","coordinates":[47536,71784]},{"type":"Point","coordinates":[48899,71817]},{"type":"Point","coordinates":[49164,71822]},{"type":"Point","coordinates":[48176,71802]},{"type":"Point","coordinates":[48297,71807]},{"type":"Point","coordinates":[49606,71831]},{"type":"Point","coordinates":[48866,71820]},{"type":"Point","coordinates":[48885,71822]},{"type":"Point","coordinates":[48914,71823]},{"type":"Point","coordinates":[48899,71823]},{"type":"Point","coordinates":[48906,71823]},{"type":"Point","coordinates":[48900,71823]},{"type":"Point","coordinates":[48993,71825]},{"type":"Point","coordinates":[48296,71811]},{"type":"Point","coordinates":[48296,71811]},{"type":"Point","coordinates":[48870,71823]},{"type":"Point","coordinates":[48870,71824]},{"type":"Point","coordinates":[48900,71825]},{"type":"Point","coordinates":[48891,71825]},{"type":"Point","coordinates":[48866,71825]},{"type":"Point","coordinates":[48930,71826]},{"type":"Point","coordinates":[48910,71826]},{"type":"Point","coordinates":[48910,71826]},{"type":"Point","coordinates":[48298,71813]},{"type":"Point","coordinates":[48298,71813]},{"type":"Point","coordinates":[48899,71826]},{"type":"Point","coordinates":[48296,71813]},{"type":"Point","coordinates":[48892,71826]},{"type":"Point","coordinates":[83000,67612]},{"type":"Point","coordinates":[48931,71830]},{"type":"Point","coordinates":[48903,71830]},{"type":"Point","coordinates":[48907,71831]},{"type":"Point","coordinates":[48932,71832]},{"type":"Point","coordinates":[48929,71832]},{"type":"Point","coordinates":[48932,71832]},{"type":"Point","coordinates":[48903,71832]},{"type":"Point","coordinates":[48902,71832]},{"type":"Point","coordinates":[48922,71834]},{"type":"Point","coordinates":[48922,71835]},{"type":"Point","coordinates":[48932,71837]},{"type":"Point","coordinates":[48932,71837]},{"type":"Point","coordinates":[48924,71837]},{"type":"Point","coordinates":[48299,71824]},{"type":"Point","coordinates":[48928,71838]},{"type":"Point","coordinates":[48954,71839]},{"type":"Point","coordinates":[48932,71839]},{"type":"Point","coordinates":[49376,71847]},{"type":"Point","coordinates":[48930,71839]},{"type":"Point","coordinates":[48931,71840]},{"type":"Point","coordinates":[48930,71840]},{"type":"Point","coordinates":[48931,71840]},{"type":"Point","coordinates":[48730,71837]},{"type":"Point","coordinates":[48930,71840]},{"type":"Point","coordinates":[48900,71842]},{"type":"Point","coordinates":[48734,71839]},{"type":"Point","coordinates":[48899,71842]},{"type":"Point","coordinates":[48902,71843]},{"type":"Point","coordinates":[49169,71848]},{"type":"Point","coordinates":[48294,71831]},{"type":"Point","coordinates":[48950,71844]},{"type":"Point","coordinates":[48905,71844]},{"type":"Point","coordinates":[48729,71841]},{"type":"Point","coordinates":[48946,71846]},{"type":"Point","coordinates":[49620,71858]},{"type":"Point","coordinates":[9350,64529]},{"type":"Point","coordinates":[68680,70593]},{"type":"Point","coordinates":[48899,71852]},{"type":"Point","coordinates":[8909,64376]},{"type":"Point","coordinates":[48866,71853]},{"type":"Point","coordinates":[48867,71853]},{"type":"Point","coordinates":[48870,71853]},{"type":"Point","coordinates":[48882,71854]},{"type":"Point","coordinates":[48894,71854]},{"type":"Point","coordinates":[49180,71859]},{"type":"Point","coordinates":[48899,71856]},{"type":"Point","coordinates":[49973,71871]},{"type":"Point","coordinates":[9131,64460]},{"type":"Point","coordinates":[48959,71859]},{"type":"Point","coordinates":[83516,67504]},{"type":"Point","coordinates":[48897,71859]},{"type":"Point","coordinates":[8552,64255]},{"type":"Point","coordinates":[48900,71860]},{"type":"Point","coordinates":[49732,71873]},{"type":"Point","coordinates":[48355,71850]},{"type":"Point","coordinates":[48874,71861]},{"type":"Point","coordinates":[48887,71862]},{"type":"Point","coordinates":[48878,71861]},{"type":"Point","coordinates":[48890,71862]},{"type":"Point","coordinates":[48877,71862]},{"type":"Point","coordinates":[48962,71864]},{"type":"Point","coordinates":[49742,71879]},{"type":"Point","coordinates":[48878,71868]},{"type":"Point","coordinates":[48878,71869]},{"type":"Point","coordinates":[48878,71870]},{"type":"Point","coordinates":[49087,71874]},{"type":"Point","coordinates":[48878,71871]},{"type":"Point","coordinates":[48878,71871]},{"type":"Point","coordinates":[48135,71859]},{"type":"Point","coordinates":[48134,71859]},{"type":"Point","coordinates":[48135,71860]},{"type":"Point","coordinates":[48878,71877]},{"type":"Point","coordinates":[8564,64282]},{"type":"Point","coordinates":[48364,71873]},{"type":"Point","coordinates":[8847,64386]},{"type":"Point","coordinates":[71640,70163]},{"type":"Point","coordinates":[83546,67530]},{"type":"Point","coordinates":[48377,71881]},{"type":"Point","coordinates":[8627,64314]},{"type":"Point","coordinates":[48377,71881]},{"type":"Point","coordinates":[48377,71881]},{"type":"Point","coordinates":[48377,71882]},{"type":"Point","coordinates":[48912,71895]},{"type":"Point","coordinates":[8616,64316]},{"type":"Point","coordinates":[8851,64402]},{"type":"Point","coordinates":[48375,71888]},{"type":"Point","coordinates":[48377,71890]},{"type":"Point","coordinates":[49456,71912]},{"type":"Point","coordinates":[48617,71899]},{"type":"Point","coordinates":[47391,71874]},{"type":"Point","coordinates":[8833,64410]},{"type":"Point","coordinates":[50793,71935]},{"type":"Point","coordinates":[48750,71913]},{"type":"Point","coordinates":[9309,64587]},{"type":"Point","coordinates":[9069,64502]},{"type":"Point","coordinates":[48815,71920]},{"type":"Point","coordinates":[49486,71933]},{"type":"Point","coordinates":[48179,71913]},{"type":"Point","coordinates":[48174,71917]},{"type":"Point","coordinates":[48358,71927]},{"type":"Point","coordinates":[48283,71925]},{"type":"Point","coordinates":[71629,70219]},{"type":"Point","coordinates":[48583,71935]},{"type":"Point","coordinates":[48567,71936]},{"type":"Point","coordinates":[8499,64322]},{"type":"Point","coordinates":[49476,71956]},{"type":"Point","coordinates":[8809,64441]},{"type":"Point","coordinates":[48850,71952]},{"type":"Point","coordinates":[49729,71966]},{"type":"Point","coordinates":[48854,71952]},{"type":"Point","coordinates":[8596,64368]},{"type":"Point","coordinates":[49920,71974]},{"type":"Point","coordinates":[48853,71960]},{"type":"Point","coordinates":[48853,71960]},{"type":"Point","coordinates":[48862,71963]},{"type":"Point","coordinates":[48851,71964]},{"type":"Point","coordinates":[48853,71964]},{"type":"Point","coordinates":[49739,71979]},{"type":"Point","coordinates":[48851,71966]},{"type":"Point","coordinates":[48852,71967]},{"type":"Point","coordinates":[48609,71964]},{"type":"Point","coordinates":[48609,71964]},{"type":"Point","coordinates":[49475,71979]},{"type":"Point","coordinates":[48851,71969]},{"type":"Point","coordinates":[49741,71985]},{"type":"Point","coordinates":[48556,71966]},{"type":"Point","coordinates":[48851,71972]},{"type":"Point","coordinates":[48851,71973]},{"type":"Point","coordinates":[49440,71983]},{"type":"Point","coordinates":[49436,71983]},{"type":"Point","coordinates":[48611,71970]},{"type":"Point","coordinates":[48591,71972]},{"type":"Point","coordinates":[48801,71977]},{"type":"Point","coordinates":[49126,71983]},{"type":"Point","coordinates":[48584,71975]},{"type":"Point","coordinates":[48563,71975]},{"type":"Point","coordinates":[48562,71976]},{"type":"Point","coordinates":[50199,72000]},{"type":"Point","coordinates":[49932,71998]},{"type":"Point","coordinates":[48581,71978]},{"type":"Point","coordinates":[48584,71978]},{"type":"Point","coordinates":[49464,71998]},{"type":"Point","coordinates":[48733,71986]},{"type":"Point","coordinates":[48582,71987]},{"type":"Point","coordinates":[8584,64404]},{"type":"Point","coordinates":[47497,71960]},{"type":"Point","coordinates":[48586,71989]},{"type":"Point","coordinates":[42296,71691]},{"type":"Point","coordinates":[9633,64782]},{"type":"Point","coordinates":[48177,71983]},{"type":"Point","coordinates":[48576,71992]},{"type":"Point","coordinates":[48327,71987]},{"type":"Point","coordinates":[47493,71965]},{"type":"Point","coordinates":[9376,64694]},{"type":"Point","coordinates":[8508,64384]},{"type":"Point","coordinates":[9441,64719]},{"type":"Point","coordinates":[9441,64719]},{"type":"Point","coordinates":[48380,71991]},{"type":"Point","coordinates":[48581,71996]},{"type":"Point","coordinates":[9441,64720]},{"type":"Point","coordinates":[48573,71997]},{"type":"Point","coordinates":[9441,64720]},{"type":"Point","coordinates":[9368,64695]},{"type":"Point","coordinates":[9368,64695]},{"type":"Point","coordinates":[76299,69393]},{"type":"Point","coordinates":[47498,71970]},{"type":"Point","coordinates":[48577,71999]},{"type":"Point","coordinates":[9367,64697]},{"type":"Point","coordinates":[48806,72005]},{"type":"Point","coordinates":[50551,72031]},{"type":"Point","coordinates":[48865,72011]},{"type":"Point","coordinates":[8668,64455]},{"type":"Point","coordinates":[8668,64456]},{"type":"Point","coordinates":[48406,72006]},{"type":"Point","coordinates":[48411,72008]},{"type":"Point","coordinates":[47819,71995]},{"type":"Point","coordinates":[48401,72010]},{"type":"Point","coordinates":[48796,72018]},{"type":"Point","coordinates":[48784,72018]},{"type":"Point","coordinates":[48796,72019]},{"type":"Point","coordinates":[48410,72011]},{"type":"Point","coordinates":[48792,72019]},{"type":"Point","coordinates":[48797,72020]},{"type":"Point","coordinates":[49657,72034]},{"type":"Point","coordinates":[83051,67797]},{"type":"Point","coordinates":[48796,72021]},{"type":"Point","coordinates":[48797,72021]},{"type":"Point","coordinates":[48407,72013]},{"type":"Point","coordinates":[50230,72041]},{"type":"Point","coordinates":[48797,72021]},{"type":"Point","coordinates":[48797,72022]},{"type":"Point","coordinates":[48797,72022]},{"type":"Point","coordinates":[48797,72022]},{"type":"Point","coordinates":[48406,72014]},{"type":"Point","coordinates":[48409,72015]},{"type":"Point","coordinates":[48408,72015]},{"type":"Point","coordinates":[8956,64570]},{"type":"Point","coordinates":[48407,72016]},{"type":"Point","coordinates":[71623,70308]},{"type":"Point","coordinates":[48406,72019]},{"type":"Point","coordinates":[48406,72021]},{"type":"Point","coordinates":[48406,72023]},{"type":"Point","coordinates":[83059,67806]},{"type":"Point","coordinates":[49650,72049]},{"type":"Point","coordinates":[48099,72026]},{"type":"Point","coordinates":[54853,72010]},{"type":"Point","coordinates":[48819,72044]},{"type":"Point","coordinates":[48897,72045]},{"type":"Point","coordinates":[48540,72038]},{"type":"Point","coordinates":[48538,72039]},{"type":"Point","coordinates":[8648,64483]},{"type":"Point","coordinates":[48849,72050]},{"type":"Point","coordinates":[48536,72045]},{"type":"Point","coordinates":[48844,72051]},{"type":"Point","coordinates":[48849,72051]},{"type":"Point","coordinates":[49969,72068]},{"type":"Point","coordinates":[49966,72068]},{"type":"Point","coordinates":[48849,72052]},{"type":"Point","coordinates":[49966,72069]},{"type":"Point","coordinates":[49965,72069]},{"type":"Point","coordinates":[48884,72055]},{"type":"Point","coordinates":[48844,72055]},{"type":"Point","coordinates":[48907,72057]},{"type":"Point","coordinates":[49381,72065]},{"type":"Point","coordinates":[48843,72056]},{"type":"Point","coordinates":[8654,64494]},{"type":"Point","coordinates":[48840,72057]},{"type":"Point","coordinates":[8658,64496]},{"type":"Point","coordinates":[35422,71053]},{"type":"Point","coordinates":[8669,64503]},{"type":"Point","coordinates":[48246,72049]},{"type":"Point","coordinates":[48246,72049]},{"type":"Point","coordinates":[49641,72079]},{"type":"Point","coordinates":[48318,72056]},{"type":"Point","coordinates":[48318,72056]},{"type":"Point","coordinates":[50012,72085]},{"type":"Point","coordinates":[48897,72070]},{"type":"Point","coordinates":[48242,72058]},{"type":"Point","coordinates":[48897,72073]},{"type":"Point","coordinates":[48897,72074]},{"type":"Point","coordinates":[48897,72074]},{"type":"Point","coordinates":[48898,72074]},{"type":"Point","coordinates":[48898,72074]},{"type":"Point","coordinates":[48898,72075]},{"type":"Point","coordinates":[48897,72079]},{"type":"Point","coordinates":[48323,72067]},{"type":"Point","coordinates":[68753,70814]},{"type":"Point","coordinates":[48403,72069]},{"type":"Point","coordinates":[8788,64565]},{"type":"Point","coordinates":[48925,72081]},{"type":"Point","coordinates":[48327,72069]},{"type":"Point","coordinates":[9503,64822]},{"type":"Point","coordinates":[48325,72071]},{"type":"Point","coordinates":[8618,64511]},{"type":"Point","coordinates":[49015,72091]},{"type":"Point","coordinates":[49578,72100]},{"type":"Point","coordinates":[8667,64534]},{"type":"Point","coordinates":[48389,72081]},{"type":"Point","coordinates":[49279,72102]},{"type":"Point","coordinates":[83284,67809]},{"type":"Point","coordinates":[8457,64477]},{"type":"Point","coordinates":[8462,64483]},{"type":"Point","coordinates":[8637,64554]},{"type":"Point","coordinates":[8637,64554]},{"type":"Point","coordinates":[41965,71793]},{"type":"Point","coordinates":[9430,64840]},{"type":"Point","coordinates":[9425,64839]},{"type":"Point","coordinates":[9424,64839]},{"type":"Point","coordinates":[48531,72118]},{"type":"Point","coordinates":[48530,72119]},{"type":"Point","coordinates":[48530,72120]},{"type":"Point","coordinates":[48782,72127]},{"type":"Point","coordinates":[48530,72125]},{"type":"Point","coordinates":[48383,72125]},{"type":"Point","coordinates":[49798,72156]},{"type":"Point","coordinates":[48783,72140]},{"type":"Point","coordinates":[41946,71815]},{"type":"Point","coordinates":[48338,72135]},{"type":"Point","coordinates":[48365,72140]},{"type":"Point","coordinates":[8373,64494]},{"type":"Point","coordinates":[49392,72168]},{"type":"Point","coordinates":[49725,72172]},{"type":"Point","coordinates":[49731,72176]},{"type":"Point","coordinates":[49397,72172]},{"type":"Point","coordinates":[49730,72181]},{"type":"Point","coordinates":[49730,72181]},{"type":"Point","coordinates":[8645,64607]},{"type":"Point","coordinates":[48343,72160]},{"type":"Point","coordinates":[49727,72187]},{"type":"Point","coordinates":[71580,70464]},{"type":"Point","coordinates":[83214,67910]},{"type":"Point","coordinates":[48802,72176]},{"type":"Point","coordinates":[48357,72168]},{"type":"Point","coordinates":[9306,64853]},{"type":"Point","coordinates":[49839,72198]},{"type":"Point","coordinates":[71689,70459]},{"type":"Point","coordinates":[48215,72182]},{"type":"Point","coordinates":[49496,72207]},{"type":"Point","coordinates":[8865,64717]},{"type":"Point","coordinates":[48224,72190]},{"type":"Point","coordinates":[8926,64743]},{"type":"Point","coordinates":[55728,72143]},{"type":"Point","coordinates":[48216,72194]},{"type":"Point","coordinates":[47906,72187]},{"type":"Point","coordinates":[54893,72175]},{"type":"Point","coordinates":[48357,72205]},{"type":"Point","coordinates":[71591,70503]},{"type":"Point","coordinates":[48744,72213]},{"type":"Point","coordinates":[48208,72202]},{"type":"Point","coordinates":[41975,71889]},{"type":"Point","coordinates":[48367,72212]},{"type":"Point","coordinates":[48210,72210]},{"type":"Point","coordinates":[48377,72215]},{"type":"Point","coordinates":[48366,72216]},{"type":"Point","coordinates":[48368,72218]},{"type":"Point","coordinates":[48369,72219]},{"type":"Point","coordinates":[9360,64930]},{"type":"Point","coordinates":[48511,72229]},{"type":"Point","coordinates":[48513,72230]},{"type":"Point","coordinates":[9363,64933]},{"type":"Point","coordinates":[48372,72228]},{"type":"Point","coordinates":[48374,72229]},{"type":"Point","coordinates":[71445,70553]},{"type":"Point","coordinates":[49584,72255]},{"type":"Point","coordinates":[48523,72238]},{"type":"Point","coordinates":[48514,72238]},{"type":"Point","coordinates":[48514,72239]},{"type":"Point","coordinates":[48374,72240]},{"type":"Point","coordinates":[54964,72215]},{"type":"Point","coordinates":[48184,72239]},{"type":"Point","coordinates":[48517,72247]},{"type":"Point","coordinates":[58812,72036]},{"type":"Point","coordinates":[48385,72249]},{"type":"Point","coordinates":[48515,72252]},{"type":"Point","coordinates":[49534,72270]},{"type":"Point","coordinates":[48503,72254]},{"type":"Point","coordinates":[48837,72262]},{"type":"Point","coordinates":[58814,72042]},{"type":"Point","coordinates":[9287,64932]},{"type":"Point","coordinates":[9287,64932]},{"type":"Point","coordinates":[48169,72249]},{"type":"Point","coordinates":[48173,72251]},{"type":"Point","coordinates":[9336,64953]},{"type":"Point","coordinates":[48518,72260]},{"type":"Point","coordinates":[48180,72252]},{"type":"Point","coordinates":[48171,72252]},{"type":"Point","coordinates":[48171,72252]},{"type":"Point","coordinates":[48171,72253]},{"type":"Point","coordinates":[48171,72253]},{"type":"Point","coordinates":[48168,72253]},{"type":"Point","coordinates":[48166,72253]},{"type":"Point","coordinates":[67129,71236]},{"type":"Point","coordinates":[67132,71236]},{"type":"Point","coordinates":[67132,71238]},{"type":"Point","coordinates":[48253,72263]},{"type":"Point","coordinates":[49266,72284]},{"type":"Point","coordinates":[8457,64653]},{"type":"Point","coordinates":[8460,64654]},{"type":"Point","coordinates":[8886,64808]},{"type":"Point","coordinates":[48529,72275]},{"type":"Point","coordinates":[48150,72269]},{"type":"Point","coordinates":[48683,72282]},{"type":"Point","coordinates":[8453,64656]},{"type":"Point","coordinates":[48683,72282]},{"type":"Point","coordinates":[49267,72294]},{"type":"Point","coordinates":[8455,64660]},{"type":"Point","coordinates":[8455,64660]},{"type":"Point","coordinates":[8456,64660]},{"type":"Point","coordinates":[48791,72288]},{"type":"Point","coordinates":[8455,64661]},{"type":"Point","coordinates":[8455,64660]},{"type":"Point","coordinates":[8455,64661]},{"type":"Point","coordinates":[8456,64661]},{"type":"Point","coordinates":[8456,64661]},{"type":"Point","coordinates":[8455,64661]},{"type":"Point","coordinates":[8455,64662]},{"type":"Point","coordinates":[48789,72291]},{"type":"Point","coordinates":[8455,64663]},{"type":"Point","coordinates":[8455,64664]},{"type":"Point","coordinates":[8454,64664]},{"type":"Point","coordinates":[8454,64665]},{"type":"Point","coordinates":[8454,64665]},{"type":"Point","coordinates":[8454,64665]},{"type":"Point","coordinates":[48448,72286]},{"type":"Point","coordinates":[48256,72282]},{"type":"Point","coordinates":[48256,72284]},{"type":"Point","coordinates":[48258,72285]},{"type":"Point","coordinates":[48255,72285]},{"type":"Point","coordinates":[48257,72286]},{"type":"Point","coordinates":[49308,72307]},{"type":"Point","coordinates":[48850,72300]},{"type":"Point","coordinates":[48199,72287]},{"type":"Point","coordinates":[48261,72290]},{"type":"Point","coordinates":[48256,72291]},{"type":"Point","coordinates":[48765,72305]},{"type":"Point","coordinates":[48758,72307]},{"type":"Point","coordinates":[54900,72273]},{"type":"Point","coordinates":[48970,72316]},{"type":"Point","coordinates":[48685,72312]},{"type":"Point","coordinates":[48685,72313]},{"type":"Point","coordinates":[48683,72313]},{"type":"Point","coordinates":[66945,71307]},{"type":"Point","coordinates":[49289,72327]},{"type":"Point","coordinates":[48224,72306]},{"type":"Point","coordinates":[54911,72284]},{"type":"Point","coordinates":[48687,72318]},{"type":"Point","coordinates":[72439,70461]},{"type":"Point","coordinates":[48224,72308]},{"type":"Point","coordinates":[48224,72308]},{"type":"Point","coordinates":[48683,72320]},{"type":"Point","coordinates":[48229,72310]},{"type":"Point","coordinates":[48234,72312]},{"type":"Point","coordinates":[54907,72290]},{"type":"Point","coordinates":[48229,72313]},{"type":"Point","coordinates":[48680,72324]},{"type":"Point","coordinates":[48686,72324]},{"type":"Point","coordinates":[48202,72314]},{"type":"Point","coordinates":[49303,72336]},{"type":"Point","coordinates":[8882,64856]},{"type":"Point","coordinates":[49860,72345]},{"type":"Point","coordinates":[48683,72328]},{"type":"Point","coordinates":[72432,70474]},{"type":"Point","coordinates":[48681,72329]},{"type":"Point","coordinates":[48681,72330]},{"type":"Point","coordinates":[48681,72330]},{"type":"Point","coordinates":[48680,72330]},{"type":"Point","coordinates":[48165,72319]},{"type":"Point","coordinates":[48680,72331]},{"type":"Point","coordinates":[50167,72355]},{"type":"Point","coordinates":[71464,70646]},{"type":"Point","coordinates":[9243,64995]},{"type":"Point","coordinates":[48154,72327]},{"type":"Point","coordinates":[9433,65070]},{"type":"Point","coordinates":[66844,71348]},{"type":"Point","coordinates":[9499,65111]},{"type":"Point","coordinates":[9500,65112]},{"type":"Point","coordinates":[48973,72367]},{"type":"Point","coordinates":[48606,72360]},{"type":"Point","coordinates":[48273,72355]},{"type":"Point","coordinates":[9501,65119]},{"type":"Point","coordinates":[9340,65064]},{"type":"Point","coordinates":[9340,65064]},{"type":"Point","coordinates":[8742,64851]},{"type":"Point","coordinates":[9344,65066]},{"type":"Point","coordinates":[49226,72381]},{"type":"Point","coordinates":[9348,65069]},{"type":"Point","coordinates":[49308,72383]},{"type":"Point","coordinates":[48403,72366]},{"type":"Point","coordinates":[48952,72379]},{"type":"Point","coordinates":[49319,72392]},{"type":"Point","coordinates":[8644,64827]},{"type":"Point","coordinates":[72655,70497]},{"type":"Point","coordinates":[48229,72382]},{"type":"Point","coordinates":[9579,65180]},{"type":"Point","coordinates":[9177,65043]},{"type":"Point","coordinates":[48675,72407]},{"type":"Point","coordinates":[49204,72417]},{"type":"Point","coordinates":[8205,64696]},{"type":"Point","coordinates":[9241,65071]},{"type":"Point","coordinates":[49205,72422]},{"type":"Point","coordinates":[9205,65067]},{"type":"Point","coordinates":[48987,72430]},{"type":"Point","coordinates":[48987,72430]},{"type":"Point","coordinates":[48796,72431]},{"type":"Point","coordinates":[9618,65223]},{"type":"Point","coordinates":[9128,65052]},{"type":"Point","coordinates":[49087,72440]},{"type":"Point","coordinates":[49197,72443]},{"type":"Point","coordinates":[8189,64715]},{"type":"Point","coordinates":[9212,65086]},{"type":"Point","coordinates":[8761,64925]},{"type":"Point","coordinates":[9212,65087]},{"type":"Point","coordinates":[9212,65087]},{"type":"Point","coordinates":[9213,65088]},{"type":"Point","coordinates":[9213,65089]},{"type":"Point","coordinates":[9212,65092]},{"type":"Point","coordinates":[9212,65092]},{"type":"Point","coordinates":[9211,65092]},{"type":"Point","coordinates":[48233,72434]},{"type":"Point","coordinates":[49053,72451]},{"type":"Point","coordinates":[52250,72465]},{"type":"Point","coordinates":[48169,72433]},{"type":"Point","coordinates":[48070,72432]},{"type":"Point","coordinates":[82082,68488]},{"type":"Point","coordinates":[9138,65073]},{"type":"Point","coordinates":[9206,65102]},{"type":"Point","coordinates":[68754,71194]},{"type":"Point","coordinates":[52251,72474]},{"type":"Point","coordinates":[9206,65102]},{"type":"Point","coordinates":[9210,65108]},{"type":"Point","coordinates":[52253,72480]},{"type":"Point","coordinates":[48147,72458]},{"type":"Point","coordinates":[48143,72460]},{"type":"Point","coordinates":[49161,72483]},{"type":"Point","coordinates":[49169,72484]},{"type":"Point","coordinates":[9213,65127]},{"type":"Point","coordinates":[9216,65133]},{"type":"Point","coordinates":[9155,65112]},{"type":"Point","coordinates":[9216,65136]},{"type":"Point","coordinates":[9215,65140]},{"type":"Point","coordinates":[9215,65141]},{"type":"Point","coordinates":[9215,65141]},{"type":"Point","coordinates":[48265,72482]},{"type":"Point","coordinates":[48913,72496]},{"type":"Point","coordinates":[48054,72478]},{"type":"Point","coordinates":[49180,72502]},{"type":"Point","coordinates":[9212,65146]},{"type":"Point","coordinates":[9212,65146]},{"type":"Point","coordinates":[9213,65147]},{"type":"Point","coordinates":[9212,65147]},{"type":"Point","coordinates":[9212,65147]},{"type":"Point","coordinates":[9214,65150]},{"type":"Point","coordinates":[9214,65151]},{"type":"Point","coordinates":[49483,72517]},{"type":"Point","coordinates":[9213,65156]},{"type":"Point","coordinates":[9213,65157]},{"type":"Point","coordinates":[48075,72496]},{"type":"Point","coordinates":[49181,72519]},{"type":"Point","coordinates":[49190,72522]},{"type":"Point","coordinates":[49189,72523]},{"type":"Point","coordinates":[49137,72523]},{"type":"Point","coordinates":[49190,72527]},{"type":"Point","coordinates":[49189,72527]},{"type":"Point","coordinates":[49189,72527]},{"type":"Point","coordinates":[8772,65013]},{"type":"Point","coordinates":[72464,70661]},{"type":"Point","coordinates":[49134,72530]},{"type":"Point","coordinates":[49153,72533]},{"type":"Point","coordinates":[9298,65209]},{"type":"Point","coordinates":[72826,70602]},{"type":"Point","coordinates":[9213,65181]},{"type":"Point","coordinates":[72458,70671]},{"type":"Point","coordinates":[9211,65182]},{"type":"Point","coordinates":[9211,65184]},{"type":"Point","coordinates":[72460,70675]},{"type":"Point","coordinates":[9296,65225]},{"type":"Point","coordinates":[9296,65226]},{"type":"Point","coordinates":[9296,65226]},{"type":"Point","coordinates":[9295,65226]},{"type":"Point","coordinates":[9292,65226]},{"type":"Point","coordinates":[48225,72537]},{"type":"Point","coordinates":[49136,72556]},{"type":"Point","coordinates":[9291,65230]},{"type":"Point","coordinates":[78609,69441]},{"type":"Point","coordinates":[49293,72562]},{"type":"Point","coordinates":[9286,65232]},{"type":"Point","coordinates":[9126,65175]},{"type":"Point","coordinates":[66991,71541]},{"type":"Point","coordinates":[66986,71543]},{"type":"Point","coordinates":[9282,65236]},{"type":"Point","coordinates":[9278,65236]},{"type":"Point","coordinates":[9264,65232]},{"type":"Point","coordinates":[9277,65237]},{"type":"Point","coordinates":[9276,65237]},{"type":"Point","coordinates":[9268,65236]},{"type":"Point","coordinates":[9275,65239]},{"type":"Point","coordinates":[48105,72550]},{"type":"Point","coordinates":[9207,65216]},{"type":"Point","coordinates":[9207,65217]},{"type":"Point","coordinates":[9207,65218]},{"type":"Point","coordinates":[48162,72561]},{"type":"Point","coordinates":[48852,72577]},{"type":"Point","coordinates":[9200,65234]},{"type":"Point","coordinates":[9200,65234]},{"type":"Point","coordinates":[9200,65234]},{"type":"Point","coordinates":[72457,70728]},{"type":"Point","coordinates":[9199,65237]},{"type":"Point","coordinates":[9198,65236]},{"type":"Point","coordinates":[9198,65238]},{"type":"Point","coordinates":[9198,65238]},{"type":"Point","coordinates":[72455,70732]},{"type":"Point","coordinates":[59154,72351]},{"type":"Point","coordinates":[72455,70733]},{"type":"Point","coordinates":[9185,65235]},{"type":"Point","coordinates":[72458,70734]},{"type":"Point","coordinates":[9195,65241]},{"type":"Point","coordinates":[48919,72608]},{"type":"Point","coordinates":[48930,72611]},{"type":"Point","coordinates":[48934,72616]},{"type":"Point","coordinates":[48934,72617]},{"type":"Point","coordinates":[48934,72617]},{"type":"Point","coordinates":[48934,72617]},{"type":"Point","coordinates":[72433,70759]},{"type":"Point","coordinates":[48930,72618]},{"type":"Point","coordinates":[48934,72618]},{"type":"Point","coordinates":[48928,72618]},{"type":"Point","coordinates":[48935,72619]},{"type":"Point","coordinates":[48924,72618]},{"type":"Point","coordinates":[48924,72618]},{"type":"Point","coordinates":[48924,72619]},{"type":"Point","coordinates":[48930,72619]},{"type":"Point","coordinates":[48921,72619]},{"type":"Point","coordinates":[9150,65248]},{"type":"Point","coordinates":[48923,72620]},{"type":"Point","coordinates":[48934,72621]},{"type":"Point","coordinates":[48927,72621]},{"type":"Point","coordinates":[48927,72621]},{"type":"Point","coordinates":[48934,72621]},{"type":"Point","coordinates":[48927,72621]},{"type":"Point","coordinates":[48935,72621]},{"type":"Point","coordinates":[48930,72621]},{"type":"Point","coordinates":[48922,72621]},{"type":"Point","coordinates":[48927,72621]},{"type":"Point","coordinates":[48928,72622]},{"type":"Point","coordinates":[48925,72622]},{"type":"Point","coordinates":[48925,72622]},{"type":"Point","coordinates":[48924,72622]},{"type":"Point","coordinates":[48925,72622]},{"type":"Point","coordinates":[48922,72622]},{"type":"Point","coordinates":[48932,72623]},{"type":"Point","coordinates":[48923,72623]},{"type":"Point","coordinates":[48923,72623]},{"type":"Point","coordinates":[48931,72623]},{"type":"Point","coordinates":[48931,72623]},{"type":"Point","coordinates":[48931,72623]},{"type":"Point","coordinates":[48930,72623]},{"type":"Point","coordinates":[72336,70782]},{"type":"Point","coordinates":[48923,72624]},{"type":"Point","coordinates":[48922,72627]},{"type":"Point","coordinates":[48922,72628]},{"type":"Point","coordinates":[48920,72628]},{"type":"Point","coordinates":[48923,72631]},{"type":"Point","coordinates":[48922,72631]},{"type":"Point","coordinates":[72473,70767]},{"type":"Point","coordinates":[72326,70797]},{"type":"Point","coordinates":[48924,72636]},{"type":"Point","coordinates":[48924,72636]},{"type":"Point","coordinates":[48923,72642]},{"type":"Point","coordinates":[48435,72635]},{"type":"Point","coordinates":[9167,65295]},{"type":"Point","coordinates":[77581,69785]},{"type":"Point","coordinates":[9114,65284]},{"type":"Point","coordinates":[48881,72668]},{"type":"Point","coordinates":[8630,65113]},{"type":"Point","coordinates":[71530,70972]},{"type":"Point","coordinates":[83122,68441]},{"type":"Point","coordinates":[48851,72690]},{"type":"Point","coordinates":[48862,72694]},{"type":"Point","coordinates":[48862,72694]},{"type":"Point","coordinates":[70560,71162]},{"type":"Point","coordinates":[49585,72714]},{"type":"Point","coordinates":[49585,72721]},{"type":"Point","coordinates":[74652,70471]},{"type":"Point","coordinates":[66932,71743]},{"type":"Point","coordinates":[48609,72762]},{"type":"Point","coordinates":[72486,70901]},{"type":"Point","coordinates":[54541,72745]},{"type":"Point","coordinates":[73676,70689]},{"type":"Point","coordinates":[72483,70909]},{"type":"Point","coordinates":[72480,70914]},{"type":"Point","coordinates":[72469,70916]},{"type":"Point","coordinates":[70447,71261]},{"type":"Point","coordinates":[74399,70569]},{"type":"Point","coordinates":[8651,65250]},{"type":"Point","coordinates":[74179,70620]},{"type":"Point","coordinates":[74179,70621]},{"type":"Point","coordinates":[43623,72593]},{"type":"Point","coordinates":[74184,70629]},{"type":"Point","coordinates":[53738,72809]},{"type":"Point","coordinates":[48389,72822]},{"type":"Point","coordinates":[48391,72824]},{"type":"Point","coordinates":[48393,72832]},{"type":"Point","coordinates":[48393,72832]},{"type":"Point","coordinates":[48469,72834]},{"type":"Point","coordinates":[48403,72839]},{"type":"Point","coordinates":[48400,72840]},{"type":"Point","coordinates":[48476,72842]},{"type":"Point","coordinates":[48473,72844]},{"type":"Point","coordinates":[48524,72846]},{"type":"Point","coordinates":[48473,72846]},{"type":"Point","coordinates":[53728,72849]},{"type":"Point","coordinates":[48519,72848]},{"type":"Point","coordinates":[48472,72849]},{"type":"Point","coordinates":[53728,72853]},{"type":"Point","coordinates":[70470,71341]},{"type":"Point","coordinates":[78606,69759]},{"type":"Point","coordinates":[53674,72864]},{"type":"Point","coordinates":[53676,72868]},{"type":"Point","coordinates":[35654,71898]},{"type":"Point","coordinates":[34905,71819]},{"type":"Point","coordinates":[48438,72888]},{"type":"Point","coordinates":[53678,72898]},{"type":"Point","coordinates":[67820,71779]},{"type":"Point","coordinates":[69434,71563]},{"type":"Point","coordinates":[48460,72922]},{"type":"Point","coordinates":[70552,71395]},{"type":"Point","coordinates":[70555,71399]},{"type":"Point","coordinates":[72245,71136]},{"type":"Point","coordinates":[47664,72951]},{"type":"Point","coordinates":[53690,72979]},{"type":"Point","coordinates":[72324,71154]},{"type":"Point","coordinates":[72315,71204]},{"type":"Point","coordinates":[72302,71210]},{"type":"Point","coordinates":[70488,71524]},{"type":"Point","coordinates":[81223,69324]},{"type":"Point","coordinates":[50449,73089]},{"type":"Point","coordinates":[52578,73091]},{"type":"Point","coordinates":[20863,69288]},{"type":"Point","coordinates":[48476,73097]},{"type":"Point","coordinates":[48354,73105]},{"type":"Point","coordinates":[48352,73105]},{"type":"Point","coordinates":[48354,73105]},{"type":"Point","coordinates":[72206,71315]},{"type":"Point","coordinates":[64422,72437]},{"type":"Point","coordinates":[43609,72931]},{"type":"Point","coordinates":[81356,69387]},{"type":"Point","coordinates":[55880,73101]},{"type":"Point","coordinates":[55875,73103]},{"type":"Point","coordinates":[35741,72218]},{"type":"Point","coordinates":[34351,72038]},{"type":"Point","coordinates":[43590,72976]},{"type":"Point","coordinates":[36661,72352]},{"type":"Point","coordinates":[43494,72982]},{"type":"Point","coordinates":[47773,73191]},{"type":"Point","coordinates":[63021,72663]},{"type":"Point","coordinates":[81421,69441]},{"type":"Point","coordinates":[36683,72385]},{"type":"Point","coordinates":[80821,69596]},{"type":"Point","coordinates":[43485,73011]},{"type":"Point","coordinates":[49191,73250]},{"type":"Point","coordinates":[35086,72200]},{"type":"Point","coordinates":[79958,69841]},{"type":"Point","coordinates":[21016,69517]},{"type":"Point","coordinates":[70964,71676]},{"type":"Point","coordinates":[53784,73276]},{"type":"Point","coordinates":[81512,69477]},{"type":"Point","coordinates":[48579,73286]},{"type":"Point","coordinates":[48579,73286]},{"type":"Point","coordinates":[48578,73286]},{"type":"Point","coordinates":[66327,72375]},{"type":"Point","coordinates":[38092,72630]},{"type":"Point","coordinates":[21114,69595]},{"type":"Point","coordinates":[42489,73036]},{"type":"Point","coordinates":[79964,69911]},{"type":"Point","coordinates":[79963,69912]},{"type":"Point","coordinates":[48458,73329]},{"type":"Point","coordinates":[20835,69554]},{"type":"Point","coordinates":[49393,73375]},{"type":"Point","coordinates":[20504,69494]},{"type":"Point","coordinates":[49425,73386]},{"type":"Point","coordinates":[64274,72701]},{"type":"Point","coordinates":[49422,73418]},{"type":"Point","coordinates":[39568,72876]},{"type":"Point","coordinates":[41333,73034]},{"type":"Point","coordinates":[38761,72804]},{"type":"Point","coordinates":[37375,72659]},{"type":"Point","coordinates":[70993,71817]},{"type":"Point","coordinates":[43573,73211]},{"type":"Point","coordinates":[43574,73211]},{"type":"Point","coordinates":[64247,72750]},{"type":"Point","coordinates":[53485,73440]},{"type":"Point","coordinates":[79143,70246]},{"type":"Point","coordinates":[71118,71854]},{"type":"Point","coordinates":[73913,71362]},{"type":"Point","coordinates":[20904,69719]},{"type":"Point","coordinates":[51426,73539]},{"type":"Point","coordinates":[73631,71452]},{"type":"Point","coordinates":[60615,73190]},{"type":"Point","coordinates":[20577,69711]},{"type":"Point","coordinates":[47754,73553]},{"type":"Point","coordinates":[47754,73555]},{"type":"Point","coordinates":[62754,73052]},{"type":"Point","coordinates":[21366,69925]},{"type":"Point","coordinates":[21369,69926]},{"type":"Point","coordinates":[70822,72011]},{"type":"Point","coordinates":[71061,71975]},{"type":"Point","coordinates":[21370,69931]},{"type":"Point","coordinates":[21368,69930]},{"type":"Point","coordinates":[21347,69930]},{"type":"Point","coordinates":[21171,69893]},{"type":"Point","coordinates":[21391,69953]},{"type":"Point","coordinates":[21035,69866]},{"type":"Point","coordinates":[21398,69958]},{"type":"Point","coordinates":[48209,73601]},{"type":"Point","coordinates":[49825,73630]},{"type":"Point","coordinates":[21163,69906]},{"type":"Point","coordinates":[49827,73633]},{"type":"Point","coordinates":[49828,73637]},{"type":"Point","coordinates":[21347,69969]},{"type":"Point","coordinates":[21345,69970]},{"type":"Point","coordinates":[63051,73076]},{"type":"Point","coordinates":[21333,69971]},{"type":"Point","coordinates":[48531,73637]},{"type":"Point","coordinates":[74029,71508]},{"type":"Point","coordinates":[21122,69929]},{"type":"Point","coordinates":[21125,69930]},{"type":"Point","coordinates":[21122,69929]},{"type":"Point","coordinates":[49886,73670]},{"type":"Point","coordinates":[21124,69938]},{"type":"Point","coordinates":[74033,71516]},{"type":"Point","coordinates":[21322,70003]},{"type":"Point","coordinates":[52273,73695]},{"type":"Point","coordinates":[21121,69956]},{"type":"Point","coordinates":[21121,69956]},{"type":"Point","coordinates":[21119,69956]},{"type":"Point","coordinates":[21119,69957]},{"type":"Point","coordinates":[21118,69958]},{"type":"Point","coordinates":[49059,73688]},{"type":"Point","coordinates":[49094,73693]},{"type":"Point","coordinates":[21118,69972]},{"type":"Point","coordinates":[81637,69897]},{"type":"Point","coordinates":[81637,69897]},{"type":"Point","coordinates":[81636,69899]},{"type":"Point","coordinates":[60726,73389]},{"type":"Point","coordinates":[52595,73765]},{"type":"Point","coordinates":[64081,73085]},{"type":"Point","coordinates":[71291,72109]},{"type":"Point","coordinates":[64665,73053]},{"type":"Point","coordinates":[20918,70068]},{"type":"Point","coordinates":[20918,70071]},{"type":"Point","coordinates":[20930,70079]},{"type":"Point","coordinates":[47977,73830]},{"type":"Point","coordinates":[37365,73121]},{"type":"Point","coordinates":[81959,69974]},{"type":"Point","coordinates":[39978,73399]},{"type":"Point","coordinates":[21413,70263]},{"type":"Point","coordinates":[52603,73934]},{"type":"Point","coordinates":[21398,70270]},{"type":"Point","coordinates":[47453,73889]},{"type":"Point","coordinates":[53712,73926]},{"type":"Point","coordinates":[21374,70286]},{"type":"Point","coordinates":[46862,73888]},{"type":"Point","coordinates":[82083,70003]},{"type":"Point","coordinates":[20372,70050]},{"type":"Point","coordinates":[40456,73512]},{"type":"Point","coordinates":[46665,73906]},{"type":"Point","coordinates":[46662,73911]},{"type":"Point","coordinates":[21289,70300]},{"type":"Point","coordinates":[23719,70882]},{"type":"Point","coordinates":[43242,73753]},{"type":"Point","coordinates":[46667,73934]},{"type":"Point","coordinates":[46667,73934]},{"type":"Point","coordinates":[46668,73936]},{"type":"Point","coordinates":[46667,73936]},{"type":"Point","coordinates":[20722,70179]},{"type":"Point","coordinates":[46550,73945]},{"type":"Point","coordinates":[21402,70367]},{"type":"Point","coordinates":[20802,70225]},{"type":"Point","coordinates":[21419,70382]},{"type":"Point","coordinates":[21422,70388]},{"type":"Point","coordinates":[21390,70384]},{"type":"Point","coordinates":[21390,70384]},{"type":"Point","coordinates":[46675,73975]},{"type":"Point","coordinates":[37691,73310]},{"type":"Point","coordinates":[46683,73977]},{"type":"Point","coordinates":[46615,73977]},{"type":"Point","coordinates":[46637,73982]},{"type":"Point","coordinates":[21338,70394]},{"type":"Point","coordinates":[20847,70272]},{"type":"Point","coordinates":[52466,74074]},{"type":"Point","coordinates":[46682,74005]},{"type":"Point","coordinates":[46680,74005]},{"type":"Point","coordinates":[46681,74006]},{"type":"Point","coordinates":[46677,74009]},{"type":"Point","coordinates":[21323,70405]},{"type":"Point","coordinates":[21324,70407]},{"type":"Point","coordinates":[46665,74014]},{"type":"Point","coordinates":[46665,74015]},{"type":"Point","coordinates":[21334,70419]},{"type":"Point","coordinates":[82136,70129]},{"type":"Point","coordinates":[21338,70425]},{"type":"Point","coordinates":[81407,70319]},{"type":"Point","coordinates":[52772,74102]},{"type":"Point","coordinates":[21256,70418]},{"type":"Point","coordinates":[46630,74040]},{"type":"Point","coordinates":[64887,73363]},{"type":"Point","coordinates":[21284,70452]},{"type":"Point","coordinates":[38784,73566]},{"type":"Point","coordinates":[21294,70507]},{"type":"Point","coordinates":[21256,70499]},{"type":"Point","coordinates":[21300,70515]},{"type":"Point","coordinates":[21255,70504]},{"type":"Point","coordinates":[21257,70507]},{"type":"Point","coordinates":[36025,73285]},{"type":"Point","coordinates":[36025,73285]},{"type":"Point","coordinates":[21268,70560]},{"type":"Point","coordinates":[21237,70581]},{"type":"Point","coordinates":[22026,70786]},{"type":"Point","coordinates":[79772,70945]},{"type":"Point","coordinates":[21463,70688]},{"type":"Point","coordinates":[21320,70696]},{"type":"Point","coordinates":[53586,74383]},{"type":"Point","coordinates":[21534,70796]},{"type":"Point","coordinates":[33004,73104]},{"type":"Point","coordinates":[21730,70963]},{"type":"Point","coordinates":[59184,74288]},{"type":"Point","coordinates":[59197,74305]},{"type":"Point","coordinates":[71227,72918]},{"type":"Point","coordinates":[81477,70841]},{"type":"Point","coordinates":[65992,73743]},{"type":"Point","coordinates":[79486,71363]},{"type":"Point","coordinates":[73483,72629]},{"type":"Point","coordinates":[35574,73694]},{"type":"Point","coordinates":[21368,71062]},{"type":"Point","coordinates":[21761,71171]},{"type":"Point","coordinates":[72629,72872]},{"type":"Point","coordinates":[39717,74238]},{"type":"Point","coordinates":[38767,74153]},{"type":"Point","coordinates":[72630,72886]},{"type":"Point","coordinates":[38764,74159]},{"type":"Point","coordinates":[38765,74159]},{"type":"Point","coordinates":[38764,74163]},{"type":"Point","coordinates":[38762,74165]},{"type":"Point","coordinates":[38763,74166]},{"type":"Point","coordinates":[72666,72915]},{"type":"Point","coordinates":[74743,72528]},{"type":"Point","coordinates":[73417,72863]},{"type":"Point","coordinates":[72643,73008]},{"type":"Point","coordinates":[73415,72884]},{"type":"Point","coordinates":[60874,74597]},{"type":"Point","coordinates":[39086,74438]},{"type":"Point","coordinates":[81572,71220]},{"type":"Point","coordinates":[38645,74417]},{"type":"Point","coordinates":[38645,74417]},{"type":"Point","coordinates":[38654,74419]},{"type":"Point","coordinates":[20717,71302]},{"type":"Point","coordinates":[52691,75135]},{"type":"Point","coordinates":[78897,71978]},{"type":"Point","coordinates":[80780,71595]},{"type":"Point","coordinates":[79068,72023]},{"type":"Point","coordinates":[41644,74868]},{"type":"Point","coordinates":[79071,72031]},{"type":"Point","coordinates":[45891,75145]},{"type":"Point","coordinates":[79080,72064]},{"type":"Point","coordinates":[71477,73602]},{"type":"Point","coordinates":[33106,73986]},{"type":"Point","coordinates":[24270,72390]},{"type":"Point","coordinates":[71535,73667]},{"type":"Point","coordinates":[24252,72407]},{"type":"Point","coordinates":[80517,71880]},{"type":"Point","coordinates":[21180,71734]},{"type":"Point","coordinates":[36772,74611]},{"type":"Point","coordinates":[36771,74611]},{"type":"Point","coordinates":[30313,73732]},{"type":"Point","coordinates":[71647,73869]},{"type":"Point","coordinates":[21772,72102]},{"type":"Point","coordinates":[71645,73957]},{"type":"Point","coordinates":[20985,71952]},{"type":"Point","coordinates":[20984,71953]},{"type":"Point","coordinates":[71710,73974]},{"type":"Point","coordinates":[20995,71959]},{"type":"Point","coordinates":[20969,71955]},{"type":"Point","coordinates":[20511,71844]},{"type":"Point","coordinates":[20511,71844]},{"type":"Point","coordinates":[36849,74900]},{"type":"Point","coordinates":[71858,73986]},{"type":"Point","coordinates":[71862,73986]},{"type":"Point","coordinates":[71862,73986]},{"type":"Point","coordinates":[50464,75767]},{"type":"Point","coordinates":[52457,75769]},{"type":"Point","coordinates":[37039,74963]},{"type":"Point","coordinates":[70412,74264]},{"type":"Point","coordinates":[53878,75787]},{"type":"Point","coordinates":[20829,72028]},{"type":"Point","coordinates":[20841,72059]},{"type":"Point","coordinates":[37195,75052]},{"type":"Point","coordinates":[20840,72065]},{"type":"Point","coordinates":[20842,72066]},{"type":"Point","coordinates":[20842,72066]},{"type":"Point","coordinates":[20842,72066]},{"type":"Point","coordinates":[20842,72066]},{"type":"Point","coordinates":[57139,75711]},{"type":"Point","coordinates":[20843,72072]},{"type":"Point","coordinates":[20846,72074]},{"type":"Point","coordinates":[20845,72074]},{"type":"Point","coordinates":[20846,72077]},{"type":"Point","coordinates":[20841,72076]},{"type":"Point","coordinates":[20843,72093]},{"type":"Point","coordinates":[40128,75422]},{"type":"Point","coordinates":[65254,75140]},{"type":"Point","coordinates":[20621,72151]},{"type":"Point","coordinates":[65168,75195]},{"type":"Point","coordinates":[66117,75152]},{"type":"Point","coordinates":[20644,72273]},{"type":"Point","coordinates":[66371,75160]},{"type":"Point","coordinates":[37194,75315]},{"type":"Point","coordinates":[20652,72282]},{"type":"Point","coordinates":[65131,75330]},{"type":"Point","coordinates":[20409,72237]},{"type":"Point","coordinates":[37009,75323]},{"type":"Point","coordinates":[58399,75931]},{"type":"Point","coordinates":[66129,75228]},{"type":"Point","coordinates":[20622,72353]},{"type":"Point","coordinates":[20619,72353]},{"type":"Point","coordinates":[20612,72359]},{"type":"Point","coordinates":[37033,75391]},{"type":"Point","coordinates":[43852,75990]},{"type":"Point","coordinates":[37091,75434]},{"type":"Point","coordinates":[37159,75463]},{"type":"Point","coordinates":[37138,75466]},{"type":"Point","coordinates":[58452,76085]},{"type":"Point","coordinates":[37149,75502]},{"type":"Point","coordinates":[37173,75527]},{"type":"Point","coordinates":[37170,75535]},{"type":"Point","coordinates":[37173,75538]},{"type":"Point","coordinates":[46542,76259]},{"type":"Point","coordinates":[37174,75549]},{"type":"Point","coordinates":[37174,75549]},{"type":"Point","coordinates":[37163,75549]},{"type":"Point","coordinates":[37171,75555]},{"type":"Point","coordinates":[53943,76331]},{"type":"Point","coordinates":[64822,75599]},{"type":"Point","coordinates":[37172,75564]},{"type":"Point","coordinates":[53937,76334]},{"type":"Point","coordinates":[53941,76338]},{"type":"Point","coordinates":[53940,76338]},{"type":"Point","coordinates":[53941,76338]},{"type":"Point","coordinates":[53940,76338]},{"type":"Point","coordinates":[53940,76338]},{"type":"Point","coordinates":[53941,76339]},{"type":"Point","coordinates":[53941,76339]},{"type":"Point","coordinates":[53938,76339]},{"type":"Point","coordinates":[37177,75581]},{"type":"Point","coordinates":[53938,76356]},{"type":"Point","coordinates":[53938,76357]},{"type":"Point","coordinates":[37178,75602]},{"type":"Point","coordinates":[37178,75605]},{"type":"Point","coordinates":[76527,73763]},{"type":"Point","coordinates":[37176,75606]},{"type":"Point","coordinates":[46676,76324]},{"type":"Point","coordinates":[37177,75606]},{"type":"Point","coordinates":[37176,75607]},{"type":"Point","coordinates":[54897,76399]},{"type":"Point","coordinates":[37096,75651]},{"type":"Point","coordinates":[53920,76443]},{"type":"Point","coordinates":[36844,75637]},{"type":"Point","coordinates":[53933,76460]},{"type":"Point","coordinates":[65309,75708]},{"type":"Point","coordinates":[60182,76225]},{"type":"Point","coordinates":[60626,76203]},{"type":"Point","coordinates":[19429,72428]},{"type":"Point","coordinates":[71540,74885]},{"type":"Point","coordinates":[37156,75800]},{"type":"Point","coordinates":[77350,73840]},{"type":"Point","coordinates":[70583,75115]},{"type":"Point","coordinates":[48883,76646]},{"type":"Point","coordinates":[48804,76694]},{"type":"Point","coordinates":[77028,73996]},{"type":"Point","coordinates":[63801,76093]},{"type":"Point","coordinates":[63799,76097]},{"type":"Point","coordinates":[78279,73763]},{"type":"Point","coordinates":[78303,73783]},{"type":"Point","coordinates":[57125,76662]},{"type":"Point","coordinates":[46368,76728]},{"type":"Point","coordinates":[58478,76621]},{"type":"Point","coordinates":[37661,76097]},{"type":"Point","coordinates":[57202,76706]},{"type":"Point","coordinates":[53701,76837]},{"type":"Point","coordinates":[53720,76850]},{"type":"Point","coordinates":[37483,76116]},{"type":"Point","coordinates":[37483,76118]},{"type":"Point","coordinates":[65114,76110]},{"type":"Point","coordinates":[76735,74230]},{"type":"Point","coordinates":[36998,76101]},{"type":"Point","coordinates":[57297,76787]},{"type":"Point","coordinates":[37425,76171]},{"type":"Point","coordinates":[37425,76172]},{"type":"Point","coordinates":[37424,76172]},{"type":"Point","coordinates":[57341,76804]},{"type":"Point","coordinates":[57336,76804]},{"type":"Point","coordinates":[56977,76842]},{"type":"Point","coordinates":[65846,76126]},{"type":"Point","coordinates":[70239,75519]},{"type":"Point","coordinates":[19930,73014]},{"type":"Point","coordinates":[19930,73014]},{"type":"Point","coordinates":[19930,73014]},{"type":"Point","coordinates":[57384,76867]},{"type":"Point","coordinates":[21799,73552]},{"type":"Point","coordinates":[22611,73747]},{"type":"Point","coordinates":[20181,73155]},{"type":"Point","coordinates":[58177,76917]},{"type":"Point","coordinates":[20022,73154]},{"type":"Point","coordinates":[20002,73179]},{"type":"Point","coordinates":[20000,73199]},{"type":"Point","coordinates":[19998,73199]},{"type":"Point","coordinates":[19997,73200]},{"type":"Point","coordinates":[20068,73222]},{"type":"Point","coordinates":[19997,73208]},{"type":"Point","coordinates":[64822,76486]},{"type":"Point","coordinates":[64523,76526]},{"type":"Point","coordinates":[72461,75467]},{"type":"Point","coordinates":[20173,73401]},{"type":"Point","coordinates":[77493,74506]},{"type":"Point","coordinates":[61641,76901]},{"type":"Point","coordinates":[71865,75601]},{"type":"Point","coordinates":[51538,77361]},{"type":"Point","coordinates":[79450,74114]},{"type":"Point","coordinates":[60600,77047]},{"type":"Point","coordinates":[54711,77384]},{"type":"Point","coordinates":[60576,77083]},{"type":"Point","coordinates":[65168,76644]},{"type":"Point","coordinates":[65169,76665]},{"type":"Point","coordinates":[71989,75708]},{"type":"Point","coordinates":[60592,77125]},{"type":"Point","coordinates":[64066,76809]},{"type":"Point","coordinates":[37643,76758]},{"type":"Point","coordinates":[65510,76689]},{"type":"Point","coordinates":[52266,77543]},{"type":"Point","coordinates":[66776,76557]},{"type":"Point","coordinates":[64999,76773]},{"type":"Point","coordinates":[65011,76814]},{"type":"Point","coordinates":[53428,77603]},{"type":"Point","coordinates":[53425,77609]},{"type":"Point","coordinates":[53368,77622]},{"type":"Point","coordinates":[73136,75671]},{"type":"Point","coordinates":[76075,75160]},{"type":"Point","coordinates":[64674,76966]},{"type":"Point","coordinates":[54677,77670]},{"type":"Point","coordinates":[45743,77638]},{"type":"Point","coordinates":[45747,77639]},{"type":"Point","coordinates":[54280,77729]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54296,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54296,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54296,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54294,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54294,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54294,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54294,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54294,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54294,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54295,77734]},{"type":"Point","coordinates":[54295,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54293,77735]},{"type":"Point","coordinates":[54293,77737]},{"type":"Point","coordinates":[54293,77737]},{"type":"Point","coordinates":[54292,77738]},{"type":"Point","coordinates":[54291,77741]},{"type":"Point","coordinates":[54290,77742]},{"type":"Point","coordinates":[54290,77743]},{"type":"Point","coordinates":[54290,77744]},{"type":"Point","coordinates":[54289,77745]},{"type":"Point","coordinates":[54289,77745]},{"type":"Point","coordinates":[54289,77745]},{"type":"Point","coordinates":[54289,77745]},{"type":"Point","coordinates":[54289,77745]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[45768,77668]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[54288,77746]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[54288,77746]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54288,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54288,77747]},{"type":"Point","coordinates":[54288,77747]},{"type":"Point","coordinates":[54288,77747]},{"type":"Point","coordinates":[54288,77747]},{"type":"Point","coordinates":[54288,77747]},{"type":"Point","coordinates":[54288,77748]},{"type":"Point","coordinates":[58170,77613]},{"type":"Point","coordinates":[55437,77755]},{"type":"Point","coordinates":[74892,75535]},{"type":"Point","coordinates":[74891,75536]},{"type":"Point","coordinates":[49259,77827]},{"type":"Point","coordinates":[49261,77842]},{"type":"Point","coordinates":[75374,75466]},{"type":"Point","coordinates":[64231,77166]},{"type":"Point","coordinates":[55454,77805]},{"type":"Point","coordinates":[79325,74641]},{"type":"Point","coordinates":[56162,77785]},{"type":"Point","coordinates":[58143,77748]},{"type":"Point","coordinates":[73682,75894]},{"type":"Point","coordinates":[72882,76074]},{"type":"Point","coordinates":[62228,77521]},{"type":"Point","coordinates":[74919,75742]},{"type":"Point","coordinates":[74957,75747]},{"type":"Point","coordinates":[76831,75445]},{"type":"Point","coordinates":[76831,75446]},{"type":"Point","coordinates":[75034,75841]},{"type":"Point","coordinates":[70337,76676]},{"type":"Point","coordinates":[70337,76676]},{"type":"Point","coordinates":[80791,74587]},{"type":"Point","coordinates":[70341,76684]},{"type":"Point","coordinates":[70341,76684]},{"type":"Point","coordinates":[70341,76684]},{"type":"Point","coordinates":[58432,77975]},{"type":"Point","coordinates":[48567,78205]},{"type":"Point","coordinates":[70381,76731]},{"type":"Point","coordinates":[67926,77095]},{"type":"Point","coordinates":[66815,77247]},{"type":"Point","coordinates":[70362,76755]},{"type":"Point","coordinates":[79544,74967]},{"type":"Point","coordinates":[55676,78189]},{"type":"Point","coordinates":[58374,78067]},{"type":"Point","coordinates":[55970,78252]},{"type":"Point","coordinates":[71459,76671]},{"type":"Point","coordinates":[55437,78284]},{"type":"Point","coordinates":[55420,78295]},{"type":"Point","coordinates":[47622,78337]},{"type":"Point","coordinates":[71425,76731]},{"type":"Point","coordinates":[71478,76731]},{"type":"Point","coordinates":[70672,76888]},{"type":"Point","coordinates":[55862,78364]},{"type":"Point","coordinates":[70682,76914]},{"type":"Point","coordinates":[65530,77641]},{"type":"Point","coordinates":[65531,77641]},{"type":"Point","coordinates":[79454,75214]},{"type":"Point","coordinates":[65077,77700]},{"type":"Point","coordinates":[50989,78490]},{"type":"Point","coordinates":[54964,78447]},{"type":"Point","coordinates":[54956,78449]},{"type":"Point","coordinates":[65964,77616]},{"type":"Point","coordinates":[56378,78407]},{"type":"Point","coordinates":[54738,78479]},{"type":"Point","coordinates":[54738,78480]},{"type":"Point","coordinates":[54741,78480]},{"type":"Point","coordinates":[54756,78483]},{"type":"Point","coordinates":[54749,78483]},{"type":"Point","coordinates":[54981,78477]},{"type":"Point","coordinates":[81229,74844]},{"type":"Point","coordinates":[54714,78492]},{"type":"Point","coordinates":[54981,78489]},{"type":"Point","coordinates":[54740,78499]},{"type":"Point","coordinates":[54740,78499]},{"type":"Point","coordinates":[54746,78504]},{"type":"Point","coordinates":[55026,78499]},{"type":"Point","coordinates":[54977,78505]},{"type":"Point","coordinates":[54719,78513]},{"type":"Point","coordinates":[54728,78515]},{"type":"Point","coordinates":[54728,78515]},{"type":"Point","coordinates":[55269,78510]},{"type":"Point","coordinates":[54749,78528]},{"type":"Point","coordinates":[65655,77734]},{"type":"Point","coordinates":[54525,78553]},{"type":"Point","coordinates":[56929,78466]},{"type":"Point","coordinates":[54507,78574]},{"type":"Point","coordinates":[54623,78581]},{"type":"Point","coordinates":[54716,78599]},{"type":"Point","coordinates":[54912,78601]},{"type":"Point","coordinates":[54915,78607]},{"type":"Point","coordinates":[68366,77476]},{"type":"Point","coordinates":[58144,78486]},{"type":"Point","coordinates":[65962,77795]},{"type":"Point","coordinates":[57590,78542]},{"type":"Point","coordinates":[73621,76655]},{"type":"Point","coordinates":[57597,78543]},{"type":"Point","coordinates":[57598,78543]},{"type":"Point","coordinates":[68344,77510]},{"type":"Point","coordinates":[68344,77510]},{"type":"Point","coordinates":[68343,77514]},{"type":"Point","coordinates":[68343,77517]},{"type":"Point","coordinates":[68332,77519]},{"type":"Point","coordinates":[68364,77515]},{"type":"Point","coordinates":[70508,77200]},{"type":"Point","coordinates":[68346,77525]},{"type":"Point","coordinates":[68348,77527]},{"type":"Point","coordinates":[47995,78690]},{"type":"Point","coordinates":[47995,78691]},{"type":"Point","coordinates":[68341,77533]},{"type":"Point","coordinates":[68341,77533]},{"type":"Point","coordinates":[47998,78694]},{"type":"Point","coordinates":[70474,77233]},{"type":"Point","coordinates":[49579,78791]},{"type":"Point","coordinates":[68357,77600]},{"type":"Point","coordinates":[58147,78619]},{"type":"Point","coordinates":[57043,78734]},{"type":"Point","coordinates":[54332,78843]},{"type":"Point","coordinates":[57058,78746]},{"type":"Point","coordinates":[54303,78848]},{"type":"Point","coordinates":[57155,78781]},{"type":"Point","coordinates":[70375,77431]},{"type":"Point","coordinates":[55640,78862]},{"type":"Point","coordinates":[57175,78801]},{"type":"Point","coordinates":[80617,75410]},{"type":"Point","coordinates":[57142,78825]},{"type":"Point","coordinates":[52028,78969]},{"type":"Point","coordinates":[55397,78920]},{"type":"Point","coordinates":[70254,77516]},{"type":"Point","coordinates":[65923,78124]},{"type":"Point","coordinates":[57267,78879]},{"type":"Point","coordinates":[52705,79030]},{"type":"Point","coordinates":[55707,78963]},{"type":"Point","coordinates":[52708,79039]},{"type":"Point","coordinates":[55411,78979]},{"type":"Point","coordinates":[64816,78302]},{"type":"Point","coordinates":[80430,75576]},{"type":"Point","coordinates":[55481,78996]},{"type":"Point","coordinates":[65837,78204]},{"type":"Point","coordinates":[64814,78332]},{"type":"Point","coordinates":[76083,76563]},{"type":"Point","coordinates":[66516,78135]},{"type":"Point","coordinates":[81221,75420]},{"type":"Point","coordinates":[70449,77602]},{"type":"Point","coordinates":[55463,79039]},{"type":"Point","coordinates":[76113,76593]},{"type":"Point","coordinates":[81233,75441]},{"type":"Point","coordinates":[55585,79110]},{"type":"Point","coordinates":[60810,78826]},{"type":"Point","coordinates":[70400,77706]},{"type":"Point","coordinates":[76096,76694]},{"type":"Point","coordinates":[65110,78471]},{"type":"Point","coordinates":[55501,79187]},{"type":"Point","coordinates":[65108,78482]},{"type":"Point","coordinates":[54819,79222]},{"type":"Point","coordinates":[55602,79211]},{"type":"Point","coordinates":[37448,78534]},{"type":"Point","coordinates":[60770,78923]},{"type":"Point","coordinates":[63608,78673]},{"type":"Point","coordinates":[81250,75622]},{"type":"Point","coordinates":[68481,78110]},{"type":"Point","coordinates":[70125,77880]},{"type":"Point","coordinates":[70118,77884]},{"type":"Point","coordinates":[65654,78492]},{"type":"Point","coordinates":[70114,77886]},{"type":"Point","coordinates":[65654,78493]},{"type":"Point","coordinates":[55654,79278]},{"type":"Point","coordinates":[65662,78509]},{"type":"Point","coordinates":[65664,78510]},{"type":"Point","coordinates":[81264,75710]},{"type":"Point","coordinates":[69919,77975]},{"type":"Point","coordinates":[81009,75776]},{"type":"Point","coordinates":[46922,79334]},{"type":"Point","coordinates":[62737,78875]},{"type":"Point","coordinates":[70743,77880]},{"type":"Point","coordinates":[81004,75810]},{"type":"Point","coordinates":[48452,79409]},{"type":"Point","coordinates":[48452,79409]},{"type":"Point","coordinates":[48452,79410]},{"type":"Point","coordinates":[81239,75758]},{"type":"Point","coordinates":[55630,79365]},{"type":"Point","coordinates":[64829,78694]},{"type":"Point","coordinates":[79350,76253]},{"type":"Point","coordinates":[49617,79481]},{"type":"Point","coordinates":[69908,78065]},{"type":"Point","coordinates":[48400,79467]},{"type":"Point","coordinates":[69957,78065]},{"type":"Point","coordinates":[55719,79435]},{"type":"Point","coordinates":[66221,78601]},{"type":"Point","coordinates":[79751,76215]},{"type":"Point","coordinates":[65685,78696]},{"type":"Point","coordinates":[62807,79005]},{"type":"Point","coordinates":[49452,79557]},{"type":"Point","coordinates":[49452,79557]},{"type":"Point","coordinates":[66588,78606]},{"type":"Point","coordinates":[58856,79331]},{"type":"Point","coordinates":[62821,79026]},{"type":"Point","coordinates":[44432,79400]},{"type":"Point","coordinates":[52108,79601]},{"type":"Point","coordinates":[69436,78263]},{"type":"Point","coordinates":[72035,77866]},{"type":"Point","coordinates":[70453,78130]},{"type":"Point","coordinates":[51869,79647]},{"type":"Point","coordinates":[81218,75977]},{"type":"Point","coordinates":[51863,79657]},{"type":"Point","coordinates":[70684,78113]},{"type":"Point","coordinates":[70237,78187]},{"type":"Point","coordinates":[74690,77431]},{"type":"Point","coordinates":[73517,77651]},{"type":"Point","coordinates":[52336,79678]},{"type":"Point","coordinates":[70757,78142]},{"type":"Point","coordinates":[70699,78154]},{"type":"Point","coordinates":[74219,77560]},{"type":"Point","coordinates":[65855,78852]},{"type":"Point","coordinates":[74044,77605]},{"type":"Point","coordinates":[52229,79730]},{"type":"Point","coordinates":[65652,78884]},{"type":"Point","coordinates":[80828,76161]},{"type":"Point","coordinates":[73281,77764]},{"type":"Point","coordinates":[76013,77258]},{"type":"Point","coordinates":[66406,78826]},{"type":"Point","coordinates":[67935,78640]},{"type":"Point","coordinates":[74095,77647]},{"type":"Point","coordinates":[67940,78642]},{"type":"Point","coordinates":[67908,78651]},{"type":"Point","coordinates":[72217,78001]},{"type":"Point","coordinates":[79973,76437]},{"type":"Point","coordinates":[79973,76439]},{"type":"Point","coordinates":[79844,76475]},{"type":"Point","coordinates":[79845,76476]},{"type":"Point","coordinates":[79835,76483]},{"type":"Point","coordinates":[70636,78292]},{"type":"Point","coordinates":[70781,78269]},{"type":"Point","coordinates":[70783,78271]},{"type":"Point","coordinates":[70783,78272]},{"type":"Point","coordinates":[79852,76491]},{"type":"Point","coordinates":[75725,77397]},{"type":"Point","coordinates":[71609,78191]},{"type":"Point","coordinates":[48250,79858]},{"type":"Point","coordinates":[70224,78423]},{"type":"Point","coordinates":[68068,78749]},{"type":"Point","coordinates":[48392,79883]},{"type":"Point","coordinates":[47563,79871]},{"type":"Point","coordinates":[47563,79871]},{"type":"Point","coordinates":[47563,79872]},{"type":"Point","coordinates":[47563,79872]},{"type":"Point","coordinates":[47563,79872]},{"type":"Point","coordinates":[79804,76591]},{"type":"Point","coordinates":[70079,78476]},{"type":"Point","coordinates":[70089,78474]},{"type":"Point","coordinates":[75663,77490]},{"type":"Point","coordinates":[73814,77850]},{"type":"Point","coordinates":[62455,79417]},{"type":"Point","coordinates":[72025,78169]},{"type":"Point","coordinates":[70083,78484]},{"type":"Point","coordinates":[70086,78484]},{"type":"Point","coordinates":[70086,78485]},{"type":"Point","coordinates":[70084,78485]},{"type":"Point","coordinates":[49359,79929]},{"type":"Point","coordinates":[72024,78180]},{"type":"Point","coordinates":[48249,79912]},{"type":"Point","coordinates":[72047,78186]},{"type":"Point","coordinates":[48210,79925]},{"type":"Point","coordinates":[62998,79394]},{"type":"Point","coordinates":[67429,78890]},{"type":"Point","coordinates":[72044,78196]},{"type":"Point","coordinates":[67430,78893]},{"type":"Point","coordinates":[48211,79932]},{"type":"Point","coordinates":[48211,79932]},{"type":"Point","coordinates":[70081,78521]},{"type":"Point","coordinates":[54873,79920]},{"type":"Point","coordinates":[51978,79980]},{"type":"Point","coordinates":[51978,79980]},{"type":"Point","coordinates":[70081,78532]},{"type":"Point","coordinates":[64107,79305]},{"type":"Point","coordinates":[71939,78242]},{"type":"Point","coordinates":[48522,79965]},{"type":"Point","coordinates":[71940,78243]},{"type":"Point","coordinates":[66011,79102]},{"type":"Point","coordinates":[47385,79938]},{"type":"Point","coordinates":[71938,78247]},{"type":"Point","coordinates":[75622,77569]},{"type":"Point","coordinates":[47728,79958]},{"type":"Point","coordinates":[47396,79953]},{"type":"Point","coordinates":[70739,78464]},{"type":"Point","coordinates":[47742,79978]},{"type":"Point","coordinates":[70559,78502]},{"type":"Point","coordinates":[47737,79981]},{"type":"Point","coordinates":[47744,79983]},{"type":"Point","coordinates":[47742,79986]},{"type":"Point","coordinates":[47739,79989]},{"type":"Point","coordinates":[71319,78391]},{"type":"Point","coordinates":[65598,79198]},{"type":"Point","coordinates":[74177,77902]},{"type":"Point","coordinates":[66005,79160]},{"type":"Point","coordinates":[65632,79208]},{"type":"Point","coordinates":[74301,77885]},{"type":"Point","coordinates":[65632,79210]},{"type":"Point","coordinates":[50382,80066]},{"type":"Point","coordinates":[62642,79537]},{"type":"Point","coordinates":[70957,78487]},{"type":"Point","coordinates":[50380,80079]},{"type":"Point","coordinates":[70119,78629]},{"type":"Point","coordinates":[71482,78418]},{"type":"Point","coordinates":[65467,79266]},{"type":"Point","coordinates":[70052,78650]},{"type":"Point","coordinates":[65440,79271]},{"type":"Point","coordinates":[68069,78950]},{"type":"Point","coordinates":[65430,79286]},{"type":"Point","coordinates":[65434,79287]},{"type":"Point","coordinates":[47594,80064]},{"type":"Point","coordinates":[69593,78739]},{"type":"Point","coordinates":[65423,79292]},{"type":"Point","coordinates":[50535,80129]},{"type":"Point","coordinates":[75609,77713]},{"type":"Point","coordinates":[70000,78708]},{"type":"Point","coordinates":[47752,80103]},{"type":"Point","coordinates":[65983,79263]},{"type":"Point","coordinates":[65913,79272]},{"type":"Point","coordinates":[49326,80141]},{"type":"Point","coordinates":[53222,80138]},{"type":"Point","coordinates":[53929,80127]},{"type":"Point","coordinates":[47696,80111]},{"type":"Point","coordinates":[56913,80032]},{"type":"Point","coordinates":[47686,80117]},{"type":"Point","coordinates":[71366,78514]},{"type":"Point","coordinates":[70300,78692]},{"type":"Point","coordinates":[47658,80128]},{"type":"Point","coordinates":[47658,80133]},{"type":"Point","coordinates":[47677,80135]},{"type":"Point","coordinates":[74227,78027]},{"type":"Point","coordinates":[70864,78618]},{"type":"Point","coordinates":[63246,79605]},{"type":"Point","coordinates":[67997,79058]},{"type":"Point","coordinates":[65692,79354]},{"type":"Point","coordinates":[74078,78082]},{"type":"Point","coordinates":[75922,77733]},{"type":"Point","coordinates":[48889,80209]},{"type":"Point","coordinates":[48095,80208]},{"type":"Point","coordinates":[68280,79069]},{"type":"Point","coordinates":[56812,80127]},{"type":"Point","coordinates":[55682,80177]},{"type":"Point","coordinates":[65589,79418]},{"type":"Point","coordinates":[72022,78503]},{"type":"Point","coordinates":[56917,80142]},{"type":"Point","coordinates":[50513,80284]},{"type":"Point","coordinates":[53905,80263]},{"type":"Point","coordinates":[72891,78382]},{"type":"Point","coordinates":[50525,80293]},{"type":"Point","coordinates":[52135,80294]},{"type":"Point","coordinates":[69678,78914]},{"type":"Point","coordinates":[74035,78188]},{"type":"Point","coordinates":[54602,80261]},{"type":"Point","coordinates":[54601,80262]},{"type":"Point","coordinates":[75324,77942]},{"type":"Point","coordinates":[74361,78129]},{"type":"Point","coordinates":[54600,80263]},{"type":"Point","coordinates":[54600,80263]},{"type":"Point","coordinates":[54601,80263]},{"type":"Point","coordinates":[54599,80264]},{"type":"Point","coordinates":[54598,80265]},{"type":"Point","coordinates":[54601,80270]},{"type":"Point","coordinates":[71451,78652]},{"type":"Point","coordinates":[54598,80271]},{"type":"Point","coordinates":[54600,80279]},{"type":"Point","coordinates":[54586,80281]},{"type":"Point","coordinates":[69699,78942]},{"type":"Point","coordinates":[71451,78668]},{"type":"Point","coordinates":[50500,80336]},{"type":"Point","coordinates":[50500,80336]},{"type":"Point","coordinates":[65821,79473]},{"type":"Point","coordinates":[65821,79473]},{"type":"Point","coordinates":[69785,78940]},{"type":"Point","coordinates":[74368,78163]},{"type":"Point","coordinates":[54594,80299]},{"type":"Point","coordinates":[65822,79481]},{"type":"Point","coordinates":[65822,79485]},{"type":"Point","coordinates":[65822,79485]},{"type":"Point","coordinates":[65820,79486]},{"type":"Point","coordinates":[65825,79486]},{"type":"Point","coordinates":[65822,79487]},{"type":"Point","coordinates":[50583,80361]},{"type":"Point","coordinates":[71094,78755]},{"type":"Point","coordinates":[71042,78766]},{"type":"Point","coordinates":[74278,78203]},{"type":"Point","coordinates":[49445,80357]},{"type":"Point","coordinates":[49446,80358]},{"type":"Point","coordinates":[49445,80358]},{"type":"Point","coordinates":[70262,78896]},{"type":"Point","coordinates":[74231,78221]},{"type":"Point","coordinates":[65846,79510]},{"type":"Point","coordinates":[75685,77948]},{"type":"Point","coordinates":[74150,78249]},{"type":"Point","coordinates":[50459,80388]},{"type":"Point","coordinates":[74288,78225]},{"type":"Point","coordinates":[73589,78369]},{"type":"Point","coordinates":[50499,80413]},{"type":"Point","coordinates":[74268,78254]},{"type":"Point","coordinates":[54619,80370]},{"type":"Point","coordinates":[54618,80370]},{"type":"Point","coordinates":[54621,80371]},{"type":"Point","coordinates":[74173,78274]},{"type":"Point","coordinates":[54620,80373]},{"type":"Point","coordinates":[71102,78813]},{"type":"Point","coordinates":[52064,80423]},{"type":"Point","coordinates":[54530,80382]},{"type":"Point","coordinates":[54530,80382]},{"type":"Point","coordinates":[54530,80382]},{"type":"Point","coordinates":[54530,80382]},{"type":"Point","coordinates":[54531,80382]},{"type":"Point","coordinates":[54530,80382]},{"type":"Point","coordinates":[54530,80382]},{"type":"Point","coordinates":[54530,80382]},{"type":"Point","coordinates":[74254,78269]},{"type":"Point","coordinates":[54615,80381]},{"type":"Point","coordinates":[54532,80384]},{"type":"Point","coordinates":[54564,80383]},{"type":"Point","coordinates":[54531,80384]},{"type":"Point","coordinates":[54532,80386]},{"type":"Point","coordinates":[74064,78314]},{"type":"Point","coordinates":[70713,78905]},{"type":"Point","coordinates":[74333,78283]},{"type":"Point","coordinates":[74110,78326]},{"type":"Point","coordinates":[74322,78287]},{"type":"Point","coordinates":[74377,78282]},{"type":"Point","coordinates":[50402,80466]},{"type":"Point","coordinates":[57210,80321]},{"type":"Point","coordinates":[75403,78089]},{"type":"Point","coordinates":[61215,80065]},{"type":"Point","coordinates":[66502,79524]},{"type":"Point","coordinates":[66502,79525]},{"type":"Point","coordinates":[61218,80069]},{"type":"Point","coordinates":[57442,80319]},{"type":"Point","coordinates":[66485,79531]},{"type":"Point","coordinates":[74051,78363]},{"type":"Point","coordinates":[74203,78337]},{"type":"Point","coordinates":[71017,78895]},{"type":"Point","coordinates":[67490,79413]},{"type":"Point","coordinates":[66489,79542]},{"type":"Point","coordinates":[66489,79542]},{"type":"Point","coordinates":[66489,79542]},{"type":"Point","coordinates":[66490,79542]},{"type":"Point","coordinates":[74357,78316]},{"type":"Point","coordinates":[54786,80449]},{"type":"Point","coordinates":[74094,78381]},{"type":"Point","coordinates":[69365,79172]},{"type":"Point","coordinates":[61414,80092]},{"type":"Point","coordinates":[71002,78925]},{"type":"Point","coordinates":[74105,78388]},{"type":"Point","coordinates":[47801,80474]},{"type":"Point","coordinates":[65794,79655]},{"type":"Point","coordinates":[47801,80477]},{"type":"Point","coordinates":[51686,80524]},{"type":"Point","coordinates":[47802,80479]},{"type":"Point","coordinates":[47801,80480]},{"type":"Point","coordinates":[74106,78395]},{"type":"Point","coordinates":[74148,78393]},{"type":"Point","coordinates":[69357,79194]},{"type":"Point","coordinates":[74107,78402]},{"type":"Point","coordinates":[70791,78982]},{"type":"Point","coordinates":[63767,79900]},{"type":"Point","coordinates":[57026,80415]},{"type":"Point","coordinates":[74153,78415]},{"type":"Point","coordinates":[54465,80514]},{"type":"Point","coordinates":[50349,80558]},{"type":"Point","coordinates":[54459,80518]},{"type":"Point","coordinates":[54445,80518]},{"type":"Point","coordinates":[54447,80519]},{"type":"Point","coordinates":[54459,80519]},{"type":"Point","coordinates":[74369,78382]},{"type":"Point","coordinates":[47700,80515]},{"type":"Point","coordinates":[54465,80520]},{"type":"Point","coordinates":[54468,80521]},{"type":"Point","coordinates":[54465,80527]},{"type":"Point","coordinates":[54467,80527]},{"type":"Point","coordinates":[68018,79432]},{"type":"Point","coordinates":[74386,78397]},{"type":"Point","coordinates":[70722,79036]},{"type":"Point","coordinates":[65511,79763]},{"type":"Point","coordinates":[74040,78479]},{"type":"Point","coordinates":[75335,78236]},{"type":"Point","coordinates":[74191,78458]},{"type":"Point","coordinates":[75468,78218]},{"type":"Point","coordinates":[72362,78792]},{"type":"Point","coordinates":[47703,80563]},{"type":"Point","coordinates":[61382,80192]},{"type":"Point","coordinates":[74144,78479]},{"type":"Point","coordinates":[63305,80023]},{"type":"Point","coordinates":[75490,78237]},{"type":"Point","coordinates":[71072,79035]},{"type":"Point","coordinates":[47739,80593]},{"type":"Point","coordinates":[51848,80639]},{"type":"Point","coordinates":[75515,78243]},{"type":"Point","coordinates":[75515,78244]},{"type":"Point","coordinates":[75515,78244]},{"type":"Point","coordinates":[75515,78245]},{"type":"Point","coordinates":[75515,78245]},{"type":"Point","coordinates":[75513,78246]},{"type":"Point","coordinates":[75513,78246]},{"type":"Point","coordinates":[75513,78247]},{"type":"Point","coordinates":[75513,78247]},{"type":"Point","coordinates":[75512,78247]},{"type":"Point","coordinates":[75512,78247]},{"type":"Point","coordinates":[75512,78247]},{"type":"Point","coordinates":[75513,78249]},{"type":"Point","coordinates":[75509,78250]},{"type":"Point","coordinates":[75510,78251]},{"type":"Point","coordinates":[75510,78251]},{"type":"Point","coordinates":[75510,78251]},{"type":"Point","coordinates":[75509,78252]},{"type":"Point","coordinates":[75510,78252]},{"type":"Point","coordinates":[75509,78252]},{"type":"Point","coordinates":[75511,78251]},{"type":"Point","coordinates":[66070,79755]},{"type":"Point","coordinates":[47639,80605]},{"type":"Point","coordinates":[70801,79103]},{"type":"Point","coordinates":[54757,80612]},{"type":"Point","coordinates":[74203,78515]},{"type":"Point","coordinates":[74282,78501]},{"type":"Point","coordinates":[74354,78491]},{"type":"Point","coordinates":[74364,78491]},{"type":"Point","coordinates":[63309,80078]},{"type":"Point","coordinates":[74160,78534]},{"type":"Point","coordinates":[74077,78556]},{"type":"Point","coordinates":[74150,78544]},{"type":"Point","coordinates":[47683,80637]},{"type":"Point","coordinates":[74382,78504]},{"type":"Point","coordinates":[47683,80638]},{"type":"Point","coordinates":[66279,79765]},{"type":"Point","coordinates":[47639,80639]},{"type":"Point","coordinates":[63301,80095]},{"type":"Point","coordinates":[47666,80643]},{"type":"Point","coordinates":[47752,80646]},{"type":"Point","coordinates":[63302,80097]},{"type":"Point","coordinates":[69909,79272]},{"type":"Point","coordinates":[47644,80647]},{"type":"Point","coordinates":[47643,80647]},{"type":"Point","coordinates":[74203,78549]},{"type":"Point","coordinates":[63295,80103]},{"type":"Point","coordinates":[45266,80559]},{"type":"Point","coordinates":[63295,80104]},{"type":"Point","coordinates":[56922,80565]},{"type":"Point","coordinates":[47636,80649]},{"type":"Point","coordinates":[70550,79180]},{"type":"Point","coordinates":[63269,80108]},{"type":"Point","coordinates":[70904,79124]},{"type":"Point","coordinates":[63304,80106]},{"type":"Point","coordinates":[63296,80106]},{"type":"Point","coordinates":[63304,80108]},{"type":"Point","coordinates":[63736,80066]},{"type":"Point","coordinates":[63306,80109]},{"type":"Point","coordinates":[74340,78532]},{"type":"Point","coordinates":[63308,80111]},{"type":"Point","coordinates":[47712,80660]},{"type":"Point","coordinates":[63722,80072]},{"type":"Point","coordinates":[74056,78588]},{"type":"Point","coordinates":[63722,80073]},{"type":"Point","coordinates":[63721,80073]},{"type":"Point","coordinates":[63722,80073]},{"type":"Point","coordinates":[50553,80709]},{"type":"Point","coordinates":[47699,80662]},{"type":"Point","coordinates":[63721,80073]},{"type":"Point","coordinates":[63722,80073]},{"type":"Point","coordinates":[63721,80073]},{"type":"Point","coordinates":[70194,79246]},{"type":"Point","coordinates":[45276,80572]},{"type":"Point","coordinates":[63721,80075]},{"type":"Point","coordinates":[63721,80075]},{"type":"Point","coordinates":[74216,78561]},{"type":"Point","coordinates":[47497,80660]},{"type":"Point","coordinates":[63725,80078]},{"type":"Point","coordinates":[63717,80081]},{"type":"Point","coordinates":[74167,78576]},{"type":"Point","coordinates":[63716,80082]},{"type":"Point","coordinates":[74203,78570]},{"type":"Point","coordinates":[57420,80562]},{"type":"Point","coordinates":[47644,80673]},{"type":"Point","coordinates":[47461,80668]},{"type":"Point","coordinates":[47644,80674]},{"type":"Point","coordinates":[63718,80087]},{"type":"Point","coordinates":[63718,80089]},{"type":"Point","coordinates":[71034,79129]},{"type":"Point","coordinates":[75170,78394]},{"type":"Point","coordinates":[74295,78563]},{"type":"Point","coordinates":[74122,78601]},{"type":"Point","coordinates":[57746,80563]},{"type":"Point","coordinates":[47620,80690]},{"type":"Point","coordinates":[64344,80041]},{"type":"Point","coordinates":[47620,80698]},{"type":"Point","coordinates":[74346,78579]},{"type":"Point","coordinates":[71060,79159]},{"type":"Point","coordinates":[71058,79162]},{"type":"Point","coordinates":[74249,78607]},{"type":"Point","coordinates":[63417,80168]},{"type":"Point","coordinates":[47648,80725]},{"type":"Point","coordinates":[74308,78610]},{"type":"Point","coordinates":[70751,79230]},{"type":"Point","coordinates":[61219,80374]},{"type":"Point","coordinates":[66555,79829]},{"type":"Point","coordinates":[81111,77159]},{"type":"Point","coordinates":[71014,79207]},{"type":"Point","coordinates":[61503,80371]},{"type":"Point","coordinates":[74338,78630]},{"type":"Point","coordinates":[73135,78858]},{"type":"Point","coordinates":[54530,80766]},{"type":"Point","coordinates":[74123,78683]},{"type":"Point","coordinates":[74435,78631]},{"type":"Point","coordinates":[54613,80779]},{"type":"Point","coordinates":[54596,80780]},{"type":"Point","coordinates":[81245,77158]},{"type":"Point","coordinates":[81244,77162]},{"type":"Point","coordinates":[53177,80818]},{"type":"Point","coordinates":[81243,77167]},{"type":"Point","coordinates":[81243,77167]},{"type":"Point","coordinates":[74080,78712]},{"type":"Point","coordinates":[54620,80789]},{"type":"Point","coordinates":[81243,77169]},{"type":"Point","coordinates":[52101,80836]},{"type":"Point","coordinates":[52101,80836]},{"type":"Point","coordinates":[54626,80792]},{"type":"Point","coordinates":[54625,80796]},{"type":"Point","coordinates":[48737,80823]},{"type":"Point","coordinates":[75406,78470]},{"type":"Point","coordinates":[54602,80808]},{"type":"Point","coordinates":[71024,79263]},{"type":"Point","coordinates":[74227,78706]},{"type":"Point","coordinates":[74340,78689]},{"type":"Point","coordinates":[54599,80817]},{"type":"Point","coordinates":[54599,80817]},{"type":"Point","coordinates":[74257,78710]},{"type":"Point","coordinates":[63272,80276]},{"type":"Point","coordinates":[74237,78716]},{"type":"Point","coordinates":[47459,80820]},{"type":"Point","coordinates":[69715,79485]},{"type":"Point","coordinates":[47462,80822]},{"type":"Point","coordinates":[47788,80832]},{"type":"Point","coordinates":[69711,79490]},{"type":"Point","coordinates":[47461,80825]},{"type":"Point","coordinates":[54769,80835]},{"type":"Point","coordinates":[53007,80879]},{"type":"Point","coordinates":[70070,79450]},{"type":"Point","coordinates":[74059,78775]},{"type":"Point","coordinates":[70698,79362]},{"type":"Point","coordinates":[69702,79517]},{"type":"Point","coordinates":[74204,78759]},{"type":"Point","coordinates":[54520,80864]},{"type":"Point","coordinates":[74085,78789]},{"type":"Point","coordinates":[69709,79525]},{"type":"Point","coordinates":[71081,79312]},{"type":"Point","coordinates":[74089,78790]},{"type":"Point","coordinates":[47483,80865]},{"type":"Point","coordinates":[47483,80866]},{"type":"Point","coordinates":[66875,79924]},{"type":"Point","coordinates":[81202,77263]},{"type":"Point","coordinates":[47483,80868]},{"type":"Point","coordinates":[47410,80868]},{"type":"Point","coordinates":[69537,79560]},{"type":"Point","coordinates":[74387,78743]},{"type":"Point","coordinates":[75908,78447]},{"type":"Point","coordinates":[66457,79989]},{"type":"Point","coordinates":[66457,79989]},{"type":"Point","coordinates":[46882,80861]},{"type":"Point","coordinates":[66453,79991]},{"type":"Point","coordinates":[66455,79991]},{"type":"Point","coordinates":[66458,79991]},{"type":"Point","coordinates":[66449,79993]},{"type":"Point","coordinates":[66452,79994]},{"type":"Point","coordinates":[66458,79993]},{"type":"Point","coordinates":[66456,79995]},{"type":"Point","coordinates":[66456,79995]},{"type":"Point","coordinates":[66456,79995]},{"type":"Point","coordinates":[53012,80929]},{"type":"Point","coordinates":[70771,79389]},{"type":"Point","coordinates":[74122,78818]},{"type":"Point","coordinates":[57287,80800]},{"type":"Point","coordinates":[54812,80899]},{"type":"Point","coordinates":[66460,80011]},{"type":"Point","coordinates":[66932,79953]},{"type":"Point","coordinates":[74183,78815]},{"type":"Point","coordinates":[70997,79380]},{"type":"Point","coordinates":[66959,79968]},{"type":"Point","coordinates":[74127,78846]},{"type":"Point","coordinates":[66928,79977]},{"type":"Point","coordinates":[54790,80930]},{"type":"Point","coordinates":[66926,79983]},{"type":"Point","coordinates":[75525,78586]},{"type":"Point","coordinates":[75525,78586]},{"type":"Point","coordinates":[74254,78832]},{"type":"Point","coordinates":[66930,79988]},{"type":"Point","coordinates":[81411,77286]},{"type":"Point","coordinates":[74043,78880]},{"type":"Point","coordinates":[75006,78698]},{"type":"Point","coordinates":[61544,80563]},{"type":"Point","coordinates":[70947,79422]},{"type":"Point","coordinates":[75499,78609]},{"type":"Point","coordinates":[67484,79932]},{"type":"Point","coordinates":[66929,80005]},{"type":"Point","coordinates":[66927,80008]},{"type":"Point","coordinates":[75550,78606]},{"type":"Point","coordinates":[66926,80009]},{"type":"Point","coordinates":[75486,78623]},{"type":"Point","coordinates":[75490,78622]},{"type":"Point","coordinates":[66923,80019]},{"type":"Point","coordinates":[54525,80976]},{"type":"Point","coordinates":[70070,79581]},{"type":"Point","coordinates":[74165,78887]},{"type":"Point","coordinates":[74336,78858]},{"type":"Point","coordinates":[71073,79429]},{"type":"Point","coordinates":[75754,78585]},{"type":"Point","coordinates":[61497,80603]},{"type":"Point","coordinates":[70401,79539]},{"type":"Point","coordinates":[80900,77454]},{"type":"Point","coordinates":[74098,78919]},{"type":"Point","coordinates":[68170,79881]},{"type":"Point","coordinates":[74249,78899]},{"type":"Point","coordinates":[75798,78606]},{"type":"Point","coordinates":[74291,78904]},{"type":"Point","coordinates":[70742,79526]},{"type":"Point","coordinates":[70878,79506]},{"type":"Point","coordinates":[70183,79620]},{"type":"Point","coordinates":[70899,79509]},{"type":"Point","coordinates":[47578,81033]},{"type":"Point","coordinates":[74120,78959]},{"type":"Point","coordinates":[47823,81045]},{"type":"Point","coordinates":[66319,80168]},{"type":"Point","coordinates":[72243,79301]},{"type":"Point","coordinates":[81418,77388]},{"type":"Point","coordinates":[63573,80479]},{"type":"Point","coordinates":[61230,80694]},{"type":"Point","coordinates":[75649,78681]},{"type":"Point","coordinates":[74083,78984]},{"type":"Point","coordinates":[74242,78956]},{"type":"Point","coordinates":[47618,81060]},{"type":"Point","coordinates":[69980,79683]},{"type":"Point","coordinates":[66488,80170]},{"type":"Point","coordinates":[66488,80170]},{"type":"Point","coordinates":[47422,81062]},{"type":"Point","coordinates":[70154,79663]},{"type":"Point","coordinates":[47652,81071]},{"type":"Point","coordinates":[61347,80706]},{"type":"Point","coordinates":[47639,81075]},{"type":"Point","coordinates":[70132,79673]},{"type":"Point","coordinates":[80987,77522]},{"type":"Point","coordinates":[59642,80837]},{"type":"Point","coordinates":[70176,79670]},{"type":"Point","coordinates":[68298,79946]},{"type":"Point","coordinates":[66253,80213]},{"type":"Point","coordinates":[80401,77670]},{"type":"Point","coordinates":[66256,80216]},{"type":"Point","coordinates":[74276,78976]},{"type":"Point","coordinates":[47652,81086]},{"type":"Point","coordinates":[80457,77663]},{"type":"Point","coordinates":[66256,80220]},{"type":"Point","coordinates":[66255,80221]},{"type":"Point","coordinates":[77813,78279]},{"type":"Point","coordinates":[66186,80253]},{"type":"Point","coordinates":[49034,81151]},{"type":"Point","coordinates":[60221,80840]},{"type":"Point","coordinates":[54806,81121]},{"type":"Point","coordinates":[51997,81174]},{"type":"Point","coordinates":[66337,80251]},{"type":"Point","coordinates":[77842,78300]},{"type":"Point","coordinates":[51791,81184]},{"type":"Point","coordinates":[61160,80783]},{"type":"Point","coordinates":[61163,80784]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[53175,81183]},{"type":"Point","coordinates":[49019,81182]},{"type":"Point","coordinates":[66506,80255]},{"type":"Point","coordinates":[62326,80708]},{"type":"Point","coordinates":[50984,81214]},{"type":"Point","coordinates":[66529,80262]},{"type":"Point","coordinates":[47447,81160]},{"type":"Point","coordinates":[66521,80265]},{"type":"Point","coordinates":[66510,80266]},{"type":"Point","coordinates":[75569,78813]},{"type":"Point","coordinates":[69025,79939]},{"type":"Point","coordinates":[71384,79577]},{"type":"Point","coordinates":[66506,80284]},{"type":"Point","coordinates":[71626,79548]},{"type":"Point","coordinates":[71390,79589]},{"type":"Point","coordinates":[71390,79589]},{"type":"Point","coordinates":[69067,79948]},{"type":"Point","coordinates":[66508,80294]},{"type":"Point","coordinates":[54791,81193]},{"type":"Point","coordinates":[71411,79591]},{"type":"Point","coordinates":[71389,79599]},{"type":"Point","coordinates":[71391,79599]},{"type":"Point","coordinates":[71392,79600]},{"type":"Point","coordinates":[71397,79599]},{"type":"Point","coordinates":[61364,80835]},{"type":"Point","coordinates":[69057,79965]},{"type":"Point","coordinates":[69606,79887]},{"type":"Point","coordinates":[47435,81207]},{"type":"Point","coordinates":[77680,78420]},{"type":"Point","coordinates":[71566,79584]},{"type":"Point","coordinates":[47433,81211]},{"type":"Point","coordinates":[69642,79895]},{"type":"Point","coordinates":[69645,79895]},{"type":"Point","coordinates":[69637,79898]},{"type":"Point","coordinates":[54820,81231]},{"type":"Point","coordinates":[81484,77561]},{"type":"Point","coordinates":[54821,81234]},{"type":"Point","coordinates":[54828,81241]},{"type":"Point","coordinates":[51782,81295]},{"type":"Point","coordinates":[71534,79622]},{"type":"Point","coordinates":[71710,79596]},{"type":"Point","coordinates":[54828,81249]},{"type":"Point","coordinates":[47420,81247]},{"type":"Point","coordinates":[81197,77651]},{"type":"Point","coordinates":[54833,81251]},{"type":"Point","coordinates":[47534,81258]},{"type":"Point","coordinates":[63609,80689]},{"type":"Point","coordinates":[75528,78915]},{"type":"Point","coordinates":[75528,78915]},{"type":"Point","coordinates":[75528,78916]},{"type":"Point","coordinates":[75529,78917]},{"type":"Point","coordinates":[75589,78907]},{"type":"Point","coordinates":[54835,81264]},{"type":"Point","coordinates":[54837,81265]},{"type":"Point","coordinates":[69298,79993]},{"type":"Point","coordinates":[69298,79994]},{"type":"Point","coordinates":[47412,81265]},{"type":"Point","coordinates":[47412,81265]},{"type":"Point","coordinates":[47646,81272]},{"type":"Point","coordinates":[54837,81270]},{"type":"Point","coordinates":[54837,81270]},{"type":"Point","coordinates":[75544,78926]},{"type":"Point","coordinates":[52811,81318]},{"type":"Point","coordinates":[48134,81292]},{"type":"Point","coordinates":[54836,81277]},{"type":"Point","coordinates":[51784,81330]},{"type":"Point","coordinates":[61033,80942]},{"type":"Point","coordinates":[81221,77681]},{"type":"Point","coordinates":[62726,80801]},{"type":"Point","coordinates":[81221,77683]},{"type":"Point","coordinates":[47684,81293]},{"type":"Point","coordinates":[61610,80904]},{"type":"Point","coordinates":[75430,78965]},{"type":"Point","coordinates":[61609,80907]},{"type":"Point","coordinates":[48270,81314]},{"type":"Point","coordinates":[71737,79642]},{"type":"Point","coordinates":[54829,81300]},{"type":"Point","coordinates":[54937,81323]},{"type":"Point","coordinates":[75573,78975]},{"type":"Point","coordinates":[68495,80180]},{"type":"Point","coordinates":[75364,79027]},{"type":"Point","coordinates":[52974,81385]},{"type":"Point","coordinates":[52357,81394]},{"type":"Point","coordinates":[75561,79004]},{"type":"Point","coordinates":[71865,79688]},{"type":"Point","coordinates":[71853,79691]},{"type":"Point","coordinates":[53401,81409]},{"type":"Point","coordinates":[56143,81333]},{"type":"Point","coordinates":[72791,79549]},{"type":"Point","coordinates":[71772,79724]},{"type":"Point","coordinates":[69356,80105]},{"type":"Point","coordinates":[59702,81153]},{"type":"Point","coordinates":[71890,79718]},{"type":"Point","coordinates":[75412,79081]},{"type":"Point","coordinates":[75412,79081]},{"type":"Point","coordinates":[54557,81412]},{"type":"Point","coordinates":[47476,81410]},{"type":"Point","coordinates":[71824,79743]},{"type":"Point","coordinates":[46447,81384]},{"type":"Point","coordinates":[47460,81421]},{"type":"Point","coordinates":[75247,79138]},{"type":"Point","coordinates":[75422,79104]},{"type":"Point","coordinates":[75633,79066]},{"type":"Point","coordinates":[47553,81439]},{"type":"Point","coordinates":[45274,81356]},{"type":"Point","coordinates":[47544,81444]},{"type":"Point","coordinates":[48323,81473]},{"type":"Point","coordinates":[47612,81456]},{"type":"Point","coordinates":[49812,81503]},{"type":"Point","coordinates":[71901,79775]},{"type":"Point","coordinates":[71899,79777]},{"type":"Point","coordinates":[71903,79777]},{"type":"Point","coordinates":[57064,81372]},{"type":"Point","coordinates":[47711,81465]},{"type":"Point","coordinates":[71904,79778]},{"type":"Point","coordinates":[71903,79783]},{"type":"Point","coordinates":[71901,79784]},{"type":"Point","coordinates":[47579,81477]},{"type":"Point","coordinates":[51312,81531]},{"type":"Point","coordinates":[71901,79796]},{"type":"Point","coordinates":[71904,79799]},{"type":"Point","coordinates":[80886,77963]},{"type":"Point","coordinates":[80889,77967]},{"type":"Point","coordinates":[47509,81491]},{"type":"Point","coordinates":[47499,81494]},{"type":"Point","coordinates":[47530,81496]},{"type":"Point","coordinates":[80669,78027]},{"type":"Point","coordinates":[47533,81499]},{"type":"Point","coordinates":[47534,81499]},{"type":"Point","coordinates":[52579,81544]},{"type":"Point","coordinates":[52579,81545]},{"type":"Point","coordinates":[47586,81507]},{"type":"Point","coordinates":[68654,80329]},{"type":"Point","coordinates":[47537,81511]},{"type":"Point","coordinates":[47539,81514]},{"type":"Point","coordinates":[47539,81514]},{"type":"Point","coordinates":[47537,81515]},{"type":"Point","coordinates":[47537,81515]},{"type":"Point","coordinates":[47538,81515]},{"type":"Point","coordinates":[47538,81516]},{"type":"Point","coordinates":[47476,81515]},{"type":"Point","coordinates":[81552,77834]},{"type":"Point","coordinates":[47538,81519]},{"type":"Point","coordinates":[47526,81520]},{"type":"Point","coordinates":[47606,81526]},{"type":"Point","coordinates":[47538,81525]},{"type":"Point","coordinates":[75825,79123]},{"type":"Point","coordinates":[47538,81528]},{"type":"Point","coordinates":[47537,81529]},{"type":"Point","coordinates":[47537,81529]},{"type":"Point","coordinates":[47536,81531]},{"type":"Point","coordinates":[75653,79162]},{"type":"Point","coordinates":[47399,81528]},{"type":"Point","coordinates":[63853,80936]},{"type":"Point","coordinates":[47499,81535]},{"type":"Point","coordinates":[63836,80945]},{"type":"Point","coordinates":[47537,81545]},{"type":"Point","coordinates":[51814,81603]},{"type":"Point","coordinates":[79304,78412]},{"type":"Point","coordinates":[74102,79495]},{"type":"Point","coordinates":[47452,81565]},{"type":"Point","coordinates":[68554,80402]},{"type":"Point","coordinates":[72223,79837]},{"type":"Point","coordinates":[47668,81583]},{"type":"Point","coordinates":[81300,77958]},{"type":"Point","coordinates":[74399,79454]},{"type":"Point","coordinates":[68569,80413]},{"type":"Point","coordinates":[68544,80421]},{"type":"Point","coordinates":[47491,81588]},{"type":"Point","coordinates":[47661,81596]},{"type":"Point","coordinates":[51794,81644]},{"type":"Point","coordinates":[48307,81614]},{"type":"Point","coordinates":[47478,81594]},{"type":"Point","coordinates":[51823,81648]},{"type":"Point","coordinates":[68516,80439]},{"type":"Point","coordinates":[47468,81599]},{"type":"Point","coordinates":[68533,80439]},{"type":"Point","coordinates":[68533,80439]},{"type":"Point","coordinates":[81294,77985]},{"type":"Point","coordinates":[47469,81605]},{"type":"Point","coordinates":[47461,81608]},{"type":"Point","coordinates":[47509,81610]},{"type":"Point","coordinates":[47466,81609]},{"type":"Point","coordinates":[81295,77992]},{"type":"Point","coordinates":[81296,77992]},{"type":"Point","coordinates":[47446,81613]},{"type":"Point","coordinates":[47507,81615]},{"type":"Point","coordinates":[47526,81620]},{"type":"Point","coordinates":[81412,77973]},{"type":"Point","coordinates":[47523,81628]},{"type":"Point","coordinates":[47522,81630]},{"type":"Point","coordinates":[47517,81631]},{"type":"Point","coordinates":[47431,81631]},{"type":"Point","coordinates":[47485,81635]},{"type":"Point","coordinates":[81305,78015]},{"type":"Point","coordinates":[67629,80601]},{"type":"Point","coordinates":[67629,80603]},{"type":"Point","coordinates":[67669,80598]},{"type":"Point","coordinates":[51874,81695]},{"type":"Point","coordinates":[47484,81643]},{"type":"Point","coordinates":[51881,81696]},{"type":"Point","coordinates":[48103,81664]},{"type":"Point","coordinates":[67641,80608]},{"type":"Point","coordinates":[51874,81700]},{"type":"Point","coordinates":[54978,81645]},{"type":"Point","coordinates":[67673,80608]},{"type":"Point","coordinates":[48688,81682]},{"type":"Point","coordinates":[67673,80610]},{"type":"Point","coordinates":[67671,80615]},{"type":"Point","coordinates":[47405,81656]},{"type":"Point","coordinates":[47555,81674]},{"type":"Point","coordinates":[47543,81674]},{"type":"Point","coordinates":[47575,81676]},{"type":"Point","coordinates":[80953,78141]},{"type":"Point","coordinates":[47463,81679]},{"type":"Point","coordinates":[79595,78466]},{"type":"Point","coordinates":[47511,81691]},{"type":"Point","coordinates":[47858,81703]},{"type":"Point","coordinates":[51239,81749]},{"type":"Point","coordinates":[47382,81694]},{"type":"Point","coordinates":[47612,81702]},{"type":"Point","coordinates":[47609,81704]},{"type":"Point","coordinates":[45071,81607]},{"type":"Point","coordinates":[47608,81706]},{"type":"Point","coordinates":[46927,81695]},{"type":"Point","coordinates":[52236,81765]},{"type":"Point","coordinates":[47726,81724]},{"type":"Point","coordinates":[47725,81725]},{"type":"Point","coordinates":[47596,81726]},{"type":"Point","coordinates":[47262,81716]},{"type":"Point","coordinates":[47603,81733]},{"type":"Point","coordinates":[48224,81763]},{"type":"Point","coordinates":[80921,78224]},{"type":"Point","coordinates":[80896,78230]},{"type":"Point","coordinates":[50949,81805]},{"type":"Point","coordinates":[45033,81662]},{"type":"Point","coordinates":[80896,78244]},{"type":"Point","coordinates":[52195,81816]},{"type":"Point","coordinates":[47451,81765]},{"type":"Point","coordinates":[52174,81832]},{"type":"Point","coordinates":[79519,78589]},{"type":"Point","coordinates":[52696,81854]},{"type":"Point","coordinates":[52696,81855]},{"type":"Point","coordinates":[48028,81829]},{"type":"Point","coordinates":[47609,81822]},{"type":"Point","coordinates":[52698,81864]},{"type":"Point","coordinates":[48183,81852]},{"type":"Point","coordinates":[51127,81896]},{"type":"Point","coordinates":[80601,78400]},{"type":"Point","coordinates":[80604,78424]},{"type":"Point","coordinates":[73694,79887]},{"type":"Point","coordinates":[73695,79888]},{"type":"Point","coordinates":[73703,79915]},{"type":"Point","coordinates":[47433,81912]},{"type":"Point","coordinates":[47434,81912]},{"type":"Point","coordinates":[52208,81967]},{"type":"Point","coordinates":[47630,81923]},{"type":"Point","coordinates":[80826,78423]},{"type":"Point","coordinates":[54009,81963]},{"type":"Point","coordinates":[52027,81994]},{"type":"Point","coordinates":[47493,81979]},{"type":"Point","coordinates":[52227,82059]},{"type":"Point","coordinates":[47325,82013]},{"type":"Point","coordinates":[55941,82005]},{"type":"Point","coordinates":[52167,82104]},{"type":"Point","coordinates":[51754,82128]},{"type":"Point","coordinates":[80572,78645]},{"type":"Point","coordinates":[54465,82098]},{"type":"Point","coordinates":[80556,78655]},{"type":"Point","coordinates":[52888,82137]},{"type":"Point","coordinates":[48307,82122]},{"type":"Point","coordinates":[80582,78662]},{"type":"Point","coordinates":[80588,78660]},{"type":"Point","coordinates":[81241,78510]},{"type":"Point","coordinates":[80927,78588]},{"type":"Point","coordinates":[81253,78528]},{"type":"Point","coordinates":[74506,79989]},{"type":"Point","coordinates":[75601,79785]},{"type":"Point","coordinates":[80513,78715]},{"type":"Point","coordinates":[81278,78530]},{"type":"Point","coordinates":[81282,78532]},{"type":"Point","coordinates":[81284,78533]},{"type":"Point","coordinates":[81255,78542]},{"type":"Point","coordinates":[81280,78536]},{"type":"Point","coordinates":[80582,78706]},{"type":"Point","coordinates":[81297,78533]},{"type":"Point","coordinates":[81287,78538]},{"type":"Point","coordinates":[81324,78529]},{"type":"Point","coordinates":[81281,78540]},{"type":"Point","coordinates":[81282,78541]},{"type":"Point","coordinates":[80581,78717]},{"type":"Point","coordinates":[48360,82181]},{"type":"Point","coordinates":[81276,78551]},{"type":"Point","coordinates":[80578,78720]},{"type":"Point","coordinates":[80576,78721]},{"type":"Point","coordinates":[80577,78721]},{"type":"Point","coordinates":[81264,78555]},{"type":"Point","coordinates":[48358,82183]},{"type":"Point","coordinates":[81255,78562]},{"type":"Point","coordinates":[81257,78562]},{"type":"Point","coordinates":[81160,78587]},{"type":"Point","coordinates":[80566,78732]},{"type":"Point","coordinates":[80565,78733]},{"type":"Point","coordinates":[80565,78735]},{"type":"Point","coordinates":[51902,82243]},{"type":"Point","coordinates":[80545,78761]},{"type":"Point","coordinates":[48385,82219]},{"type":"Point","coordinates":[48504,82230]},{"type":"Point","coordinates":[52233,82272]},{"type":"Point","coordinates":[55207,82217]},{"type":"Point","coordinates":[48489,82257]},{"type":"Point","coordinates":[78680,79240]},{"type":"Point","coordinates":[52398,82291]},{"type":"Point","coordinates":[79321,79099]},{"type":"Point","coordinates":[52416,82308]},{"type":"Point","coordinates":[55608,82236]},{"type":"Point","coordinates":[52416,82321]},{"type":"Point","coordinates":[52393,82326]},{"type":"Point","coordinates":[48720,82314]},{"type":"Point","coordinates":[46084,82236]},{"type":"Point","coordinates":[55080,82279]},{"type":"Point","coordinates":[80801,78796]},{"type":"Point","coordinates":[75871,79884]},{"type":"Point","coordinates":[78091,79427]},{"type":"Point","coordinates":[74054,80249]},{"type":"Point","coordinates":[81391,78679]},{"type":"Point","coordinates":[52462,82369]},{"type":"Point","coordinates":[81378,78691]},{"type":"Point","coordinates":[52463,82371]},{"type":"Point","coordinates":[52814,82382]},{"type":"Point","coordinates":[74408,80220]},{"type":"Point","coordinates":[80689,78888]},{"type":"Point","coordinates":[52810,82401]},{"type":"Point","coordinates":[51706,82413]},{"type":"Point","coordinates":[80695,78898]},{"type":"Point","coordinates":[80696,78910]},{"type":"Point","coordinates":[74112,80336]},{"type":"Point","coordinates":[80696,78938]},{"type":"Point","coordinates":[74110,80343]},{"type":"Point","coordinates":[48722,82454]},{"type":"Point","coordinates":[52515,82473]},{"type":"Point","coordinates":[74063,80402]},{"type":"Point","coordinates":[74236,80375]},{"type":"Point","coordinates":[73256,80578]},{"type":"Point","coordinates":[74163,80422]},{"type":"Point","coordinates":[52583,82562]},{"type":"Point","coordinates":[52623,82563]},{"type":"Point","coordinates":[47912,82533]},{"type":"Point","coordinates":[52655,82569]},{"type":"Point","coordinates":[52628,82574]},{"type":"Point","coordinates":[52651,82575]},{"type":"Point","coordinates":[52706,82577]},{"type":"Point","coordinates":[52653,82578]},{"type":"Point","coordinates":[52637,82584]},{"type":"Point","coordinates":[52638,82585]},{"type":"Point","coordinates":[52638,82586]},{"type":"Point","coordinates":[52638,82587]},{"type":"Point","coordinates":[78589,79566]},{"type":"Point","coordinates":[52637,82588]},{"type":"Point","coordinates":[48764,82575]},{"type":"Point","coordinates":[54220,82567]},{"type":"Point","coordinates":[48761,82591]},{"type":"Point","coordinates":[75387,80255]},{"type":"Point","coordinates":[75387,80256]},{"type":"Point","coordinates":[81611,78885]},{"type":"Point","coordinates":[48743,82611]},{"type":"Point","coordinates":[52198,82641]},{"type":"Point","coordinates":[52192,82643]},{"type":"Point","coordinates":[75252,80328]},{"type":"Point","coordinates":[75252,80330]},{"type":"Point","coordinates":[48744,82645]},{"type":"Point","coordinates":[52161,82668]},{"type":"Point","coordinates":[75234,80343]},{"type":"Point","coordinates":[75247,80347]},{"type":"Point","coordinates":[81294,79026]},{"type":"Point","coordinates":[46763,82619]},{"type":"Point","coordinates":[77531,79914]},{"type":"Point","coordinates":[51877,82712]},{"type":"Point","coordinates":[51884,82718]},{"type":"Point","coordinates":[51884,82719]},{"type":"Point","coordinates":[51884,82719]},{"type":"Point","coordinates":[51884,82720]},{"type":"Point","coordinates":[52060,82734]},{"type":"Point","coordinates":[52033,82738]},{"type":"Point","coordinates":[80526,79267]},{"type":"Point","coordinates":[52023,82762]},{"type":"Point","coordinates":[52021,82766]},{"type":"Point","coordinates":[52021,82766]},{"type":"Point","coordinates":[48782,82750]},{"type":"Point","coordinates":[52018,82770]},{"type":"Point","coordinates":[52021,82770]},{"type":"Point","coordinates":[52017,82782]},{"type":"Point","coordinates":[52006,82782]},{"type":"Point","coordinates":[80482,79322]},{"type":"Point","coordinates":[52020,82784]},{"type":"Point","coordinates":[81588,79062]},{"type":"Point","coordinates":[52001,82798]},{"type":"Point","coordinates":[52001,82799]},{"type":"Point","coordinates":[63626,82186]},{"type":"Point","coordinates":[51980,82811]},{"type":"Point","coordinates":[51952,82813]},{"type":"Point","coordinates":[63619,82195]},{"type":"Point","coordinates":[51950,82815]},{"type":"Point","coordinates":[51951,82818]},{"type":"Point","coordinates":[52612,82823]},{"type":"Point","coordinates":[63638,82210]},{"type":"Point","coordinates":[52916,82822]},{"type":"Point","coordinates":[51960,82834]},{"type":"Point","coordinates":[51961,82836]},{"type":"Point","coordinates":[52914,82834]},{"type":"Point","coordinates":[48740,82827]},{"type":"Point","coordinates":[51885,82858]},{"type":"Point","coordinates":[51941,82858]},{"type":"Point","coordinates":[50229,82857]},{"type":"Point","coordinates":[78483,79857]},{"type":"Point","coordinates":[51901,82861]},{"type":"Point","coordinates":[63618,82244]},{"type":"Point","coordinates":[51893,82868]},{"type":"Point","coordinates":[81377,79217]},{"type":"Point","coordinates":[51884,82897]},{"type":"Point","coordinates":[51906,82923]},{"type":"Point","coordinates":[52773,82935]},{"type":"Point","coordinates":[51510,82952]},{"type":"Point","coordinates":[52807,82951]},{"type":"Point","coordinates":[44648,82806]},{"type":"Point","coordinates":[80642,79488]},{"type":"Point","coordinates":[52940,82986]},{"type":"Point","coordinates":[79248,79837]},{"type":"Point","coordinates":[79229,79848]},{"type":"Point","coordinates":[52923,83013]},{"type":"Point","coordinates":[52924,83014]},{"type":"Point","coordinates":[47185,82970]},{"type":"Point","coordinates":[78797,79962]},{"type":"Point","coordinates":[63714,82421]},{"type":"Point","coordinates":[75398,80699]},{"type":"Point","coordinates":[52934,83052]},{"type":"Point","coordinates":[52865,83086]},{"type":"Point","coordinates":[74173,80974]},{"type":"Point","coordinates":[81470,79404]},{"type":"Point","coordinates":[48293,83073]},{"type":"Point","coordinates":[79603,79861]},{"type":"Point","coordinates":[74603,80914]},{"type":"Point","coordinates":[47096,83064]},{"type":"Point","coordinates":[47097,83064]},{"type":"Point","coordinates":[47094,83065]},{"type":"Point","coordinates":[52230,83147]},{"type":"Point","coordinates":[81917,79343]},{"type":"Point","coordinates":[52229,83149]},{"type":"Point","coordinates":[47104,83088]},{"type":"Point","coordinates":[47104,83089]},{"type":"Point","coordinates":[52225,83152]},{"type":"Point","coordinates":[52225,83152]},{"type":"Point","coordinates":[45945,83063]},{"type":"Point","coordinates":[52920,83221]},{"type":"Point","coordinates":[80537,79797]},{"type":"Point","coordinates":[48382,83258]},{"type":"Point","coordinates":[51987,83291]},{"type":"Point","coordinates":[80535,79830]},{"type":"Point","coordinates":[80542,79829]},{"type":"Point","coordinates":[80556,79831]},{"type":"Point","coordinates":[74637,81108]},{"type":"Point","coordinates":[52541,83313]},{"type":"Point","coordinates":[52381,83318]},{"type":"Point","coordinates":[52381,83318]},{"type":"Point","coordinates":[80558,79848]},{"type":"Point","coordinates":[52383,83322]},{"type":"Point","coordinates":[52383,83322]},{"type":"Point","coordinates":[52384,83323]},{"type":"Point","coordinates":[52383,83323]},{"type":"Point","coordinates":[80554,79858]},{"type":"Point","coordinates":[80355,79907]},{"type":"Point","coordinates":[80559,79865]},{"type":"Point","coordinates":[80363,79915]},{"type":"Point","coordinates":[80542,79886]},{"type":"Point","coordinates":[51933,83356]},{"type":"Point","coordinates":[51940,83362]},{"type":"Point","coordinates":[51926,83369]},{"type":"Point","coordinates":[51926,83369]},{"type":"Point","coordinates":[50924,83374]},{"type":"Point","coordinates":[50932,83374]},{"type":"Point","coordinates":[50934,83376]},{"type":"Point","coordinates":[53957,83345]},{"type":"Point","coordinates":[81701,79624]},{"type":"Point","coordinates":[54553,83335]},{"type":"Point","coordinates":[51005,83386]},{"type":"Point","coordinates":[51878,83396]},{"type":"Point","coordinates":[52130,83395]},{"type":"Point","coordinates":[52478,83396]},{"type":"Point","coordinates":[53829,83389]},{"type":"Point","coordinates":[74764,81182]},{"type":"Point","coordinates":[81497,79718]},{"type":"Point","coordinates":[52426,83427]},{"type":"Point","coordinates":[52406,83446]},{"type":"Point","coordinates":[78557,80449]},{"type":"Point","coordinates":[52424,83462]},{"type":"Point","coordinates":[51962,83472]},{"type":"Point","coordinates":[53357,83460]},{"type":"Point","coordinates":[53357,83461]},{"type":"Point","coordinates":[53356,83461]},{"type":"Point","coordinates":[53355,83462]},{"type":"Point","coordinates":[52498,83489]},{"type":"Point","coordinates":[52444,83505]},{"type":"Point","coordinates":[52470,83506]},{"type":"Point","coordinates":[79476,80292]},{"type":"Point","coordinates":[53333,83500]},{"type":"Point","coordinates":[52453,83514]},{"type":"Point","coordinates":[51950,83521]},{"type":"Point","coordinates":[52279,83519]},{"type":"Point","coordinates":[52751,83515]},{"type":"Point","coordinates":[52751,83515]},{"type":"Point","coordinates":[52750,83515]},{"type":"Point","coordinates":[52750,83515]},{"type":"Point","coordinates":[81526,79820]},{"type":"Point","coordinates":[52479,83522]},{"type":"Point","coordinates":[80736,80014]},{"type":"Point","coordinates":[52475,83524]},{"type":"Point","coordinates":[51936,83559]},{"type":"Point","coordinates":[79735,80289]},{"type":"Point","coordinates":[52069,83571]},{"type":"Point","coordinates":[51918,83575]},{"type":"Point","coordinates":[52317,83579]},{"type":"Point","coordinates":[52299,83582]},{"type":"Point","coordinates":[52046,83585]},{"type":"Point","coordinates":[52314,83583]},{"type":"Point","coordinates":[52316,83584]},{"type":"Point","coordinates":[52311,83584]},{"type":"Point","coordinates":[52306,83585]},{"type":"Point","coordinates":[52310,83586]},{"type":"Point","coordinates":[52309,83587]},{"type":"Point","coordinates":[52312,83588]},{"type":"Point","coordinates":[52309,83590]},{"type":"Point","coordinates":[52308,83590]},{"type":"Point","coordinates":[52307,83591]},{"type":"Point","coordinates":[52310,83591]},{"type":"Point","coordinates":[52023,83594]},{"type":"Point","coordinates":[79537,80363]},{"type":"Point","coordinates":[80494,80140]},{"type":"Point","coordinates":[80496,80139]},{"type":"Point","coordinates":[52057,83595]},{"type":"Point","coordinates":[52310,83593]},{"type":"Point","coordinates":[52427,83594]},{"type":"Point","coordinates":[52426,83595]},{"type":"Point","coordinates":[52427,83595]},{"type":"Point","coordinates":[52316,83597]},{"type":"Point","coordinates":[52310,83597]},{"type":"Point","coordinates":[52426,83596]},{"type":"Point","coordinates":[51992,83601]},{"type":"Point","coordinates":[52078,83601]},{"type":"Point","coordinates":[52306,83602]},{"type":"Point","coordinates":[52401,83601]},{"type":"Point","coordinates":[51992,83605]},{"type":"Point","coordinates":[51992,83605]},{"type":"Point","coordinates":[51991,83605]},{"type":"Point","coordinates":[51983,83606]},{"type":"Point","coordinates":[52402,83604]},{"type":"Point","coordinates":[51979,83608]},{"type":"Point","coordinates":[52318,83622]},{"type":"Point","coordinates":[53156,83630]},{"type":"Point","coordinates":[52122,83643]},{"type":"Point","coordinates":[52194,83643]},{"type":"Point","coordinates":[79551,80426]},{"type":"Point","coordinates":[52714,83663]},{"type":"Point","coordinates":[79034,80554]},{"type":"Point","coordinates":[79038,80556]},{"type":"Point","coordinates":[79522,80447]},{"type":"Point","coordinates":[52574,83674]},{"type":"Point","coordinates":[79533,80451]},{"type":"Point","coordinates":[52573,83676]},{"type":"Point","coordinates":[79034,80568]},{"type":"Point","coordinates":[51661,83688]},{"type":"Point","coordinates":[79033,80571]},{"type":"Point","coordinates":[79034,80571]},{"type":"Point","coordinates":[79033,80572]},{"type":"Point","coordinates":[51745,83692]},{"type":"Point","coordinates":[74075,81588]},{"type":"Point","coordinates":[51743,83696]},{"type":"Point","coordinates":[51591,83708]},{"type":"Point","coordinates":[79506,80486]},{"type":"Point","coordinates":[80035,80367]},{"type":"Point","coordinates":[51953,83731]},{"type":"Point","coordinates":[51953,83732]},{"type":"Point","coordinates":[51674,83735]},{"type":"Point","coordinates":[52007,83734]},{"type":"Point","coordinates":[52649,83733]},{"type":"Point","coordinates":[81558,80040]},{"type":"Point","coordinates":[79676,80498]},{"type":"Point","coordinates":[81971,79953]},{"type":"Point","coordinates":[51938,83767]},{"type":"Point","coordinates":[52545,83767]},{"type":"Point","coordinates":[80600,80296]},{"type":"Point","coordinates":[52417,83784]},{"type":"Point","coordinates":[52407,83784]},{"type":"Point","coordinates":[52417,83784]},{"type":"Point","coordinates":[52416,83786]},{"type":"Point","coordinates":[52456,83794]},{"type":"Point","coordinates":[46668,83722]},{"type":"Point","coordinates":[79549,80567]},{"type":"Point","coordinates":[52454,83798]},{"type":"Point","coordinates":[46672,83726]},{"type":"Point","coordinates":[52437,83802]},{"type":"Point","coordinates":[52306,83804]},{"type":"Point","coordinates":[52452,83815]},{"type":"Point","coordinates":[79675,80559]},{"type":"Point","coordinates":[52707,83819]},{"type":"Point","coordinates":[52348,83836]},{"type":"Point","coordinates":[52312,83841]},{"type":"Point","coordinates":[52312,83843]},{"type":"Point","coordinates":[52313,83843]},{"type":"Point","coordinates":[52311,83845]},{"type":"Point","coordinates":[81613,80134]},{"type":"Point","coordinates":[79663,80599]},{"type":"Point","coordinates":[80536,80395]},{"type":"Point","coordinates":[80536,80396]},{"type":"Point","coordinates":[52315,83858]},{"type":"Point","coordinates":[51995,83861]},{"type":"Point","coordinates":[52293,83876]},{"type":"Point","coordinates":[80485,80429]},{"type":"Point","coordinates":[45588,83764]},{"type":"Point","coordinates":[45593,83779]},{"type":"Point","coordinates":[80489,80451]},{"type":"Point","coordinates":[80489,80451]},{"type":"Point","coordinates":[80489,80452]},{"type":"Point","coordinates":[80511,80450]},{"type":"Point","coordinates":[52705,83902]},{"type":"Point","coordinates":[79767,80632]},{"type":"Point","coordinates":[52310,83914]},{"type":"Point","coordinates":[52301,83917]},{"type":"Point","coordinates":[73753,81884]},{"type":"Point","coordinates":[52296,83925]},{"type":"Point","coordinates":[52296,83925]},{"type":"Point","coordinates":[80497,80487]},{"type":"Point","coordinates":[80498,80493]},{"type":"Point","coordinates":[52635,83946]},{"type":"Point","coordinates":[82059,80124]},{"type":"Point","coordinates":[52323,83953]},{"type":"Point","coordinates":[82050,80133]},{"type":"Point","coordinates":[79681,80702]},{"type":"Point","coordinates":[82065,80131]},{"type":"Point","coordinates":[79681,80705]},{"type":"Point","coordinates":[79681,80705]},{"type":"Point","coordinates":[79982,80636]},{"type":"Point","coordinates":[79680,80706]},{"type":"Point","coordinates":[79680,80707]},{"type":"Point","coordinates":[79687,80706]},{"type":"Point","coordinates":[79879,80662]},{"type":"Point","coordinates":[51866,83971]},{"type":"Point","coordinates":[79847,80679]},{"type":"Point","coordinates":[79845,80681]},{"type":"Point","coordinates":[52641,83982]},{"type":"Point","coordinates":[51291,83990]},{"type":"Point","coordinates":[52323,83989]},{"type":"Point","coordinates":[80610,80516]},{"type":"Point","coordinates":[79942,80681]},{"type":"Point","coordinates":[79843,80706]},{"type":"Point","coordinates":[79930,80687]},{"type":"Point","coordinates":[79743,80732]},{"type":"Point","coordinates":[79940,80688]},{"type":"Point","coordinates":[79936,80690]},{"type":"Point","coordinates":[79936,80690]},{"type":"Point","coordinates":[79936,80690]},{"type":"Point","coordinates":[82054,80183]},{"type":"Point","coordinates":[79808,80725]},{"type":"Point","coordinates":[81026,80437]},{"type":"Point","coordinates":[79940,80695]},{"type":"Point","coordinates":[47794,83976]},{"type":"Point","coordinates":[79935,80700]},{"type":"Point","coordinates":[79941,80704]},{"type":"Point","coordinates":[79868,80725]},{"type":"Point","coordinates":[79920,80733]},{"type":"Point","coordinates":[79705,80784]},{"type":"Point","coordinates":[80565,80584]},{"type":"Point","coordinates":[73981,81981]},{"type":"Point","coordinates":[79782,80782]},{"type":"Point","coordinates":[79860,80780]},{"type":"Point","coordinates":[51881,84086]},{"type":"Point","coordinates":[51882,84087]},{"type":"Point","coordinates":[51883,84088]},{"type":"Point","coordinates":[51874,84089]},{"type":"Point","coordinates":[51881,84089]},{"type":"Point","coordinates":[51881,84089]},{"type":"Point","coordinates":[51883,84089]},{"type":"Point","coordinates":[79756,80815]},{"type":"Point","coordinates":[79756,80815]},{"type":"Point","coordinates":[51874,84095]},{"type":"Point","coordinates":[79756,80819]},{"type":"Point","coordinates":[79757,80819]},{"type":"Point","coordinates":[79751,80821]},{"type":"Point","coordinates":[79755,80820]},{"type":"Point","coordinates":[79756,80820]},{"type":"Point","coordinates":[79756,80821]},{"type":"Point","coordinates":[79753,80822]},{"type":"Point","coordinates":[79752,80822]},{"type":"Point","coordinates":[79756,80821]},{"type":"Point","coordinates":[79753,80822]},{"type":"Point","coordinates":[79751,80825]},{"type":"Point","coordinates":[79752,80825]},{"type":"Point","coordinates":[79751,80830]},{"type":"Point","coordinates":[79749,80834]},{"type":"Point","coordinates":[79748,80838]},{"type":"Point","coordinates":[79854,80819]},{"type":"Point","coordinates":[79870,80822]},{"type":"Point","coordinates":[79874,80828]},{"type":"Point","coordinates":[79884,80827]},{"type":"Point","coordinates":[79878,80829]},{"type":"Point","coordinates":[79877,80830]},{"type":"Point","coordinates":[79876,80833]},{"type":"Point","coordinates":[79846,80863]},{"type":"Point","coordinates":[79286,80992]},{"type":"Point","coordinates":[79848,80865]},{"type":"Point","coordinates":[52739,84169]},{"type":"Point","coordinates":[53085,84168]},{"type":"Point","coordinates":[53087,84171]},{"type":"Point","coordinates":[80477,80763]},{"type":"Point","coordinates":[79612,80977]},{"type":"Point","coordinates":[34490,83128]},{"type":"Point","coordinates":[34860,83181]},{"type":"Point","coordinates":[80232,80854]},{"type":"Point","coordinates":[53111,84237]},{"type":"Point","coordinates":[81009,80682]},{"type":"Point","coordinates":[53115,84246]},{"type":"Point","coordinates":[52982,84252]},{"type":"Point","coordinates":[52982,84255]},{"type":"Point","coordinates":[52956,84256]},{"type":"Point","coordinates":[35096,83240]},{"type":"Point","coordinates":[52511,84264]},{"type":"Point","coordinates":[52954,84262]},{"type":"Point","coordinates":[52946,84265]},{"type":"Point","coordinates":[52946,84270]},{"type":"Point","coordinates":[53033,84271]},{"type":"Point","coordinates":[52943,84274]},{"type":"Point","coordinates":[52941,84276]},{"type":"Point","coordinates":[34922,83247]},{"type":"Point","coordinates":[79271,81143]},{"type":"Point","coordinates":[79272,81143]},{"type":"Point","coordinates":[34869,83251]},{"type":"Point","coordinates":[79272,81149]},{"type":"Point","coordinates":[79262,81151]},{"type":"Point","coordinates":[45734,84203]},{"type":"Point","coordinates":[35139,83300]},{"type":"Point","coordinates":[45451,84197]},{"type":"Point","coordinates":[45735,84210]},{"type":"Point","coordinates":[46984,84272]},{"type":"Point","coordinates":[54544,84297]},{"type":"Point","coordinates":[52775,84333]},{"type":"Point","coordinates":[45714,84226]},{"type":"Point","coordinates":[81260,80712]},{"type":"Point","coordinates":[52386,84342]},{"type":"Point","coordinates":[79452,81142]},{"type":"Point","coordinates":[80147,80990]},{"type":"Point","coordinates":[80147,80990]},{"type":"Point","coordinates":[80147,80991]},{"type":"Point","coordinates":[80136,80994]},{"type":"Point","coordinates":[53002,84350]},{"type":"Point","coordinates":[80151,80996]},{"type":"Point","coordinates":[80151,80996]},{"type":"Point","coordinates":[78575,81356]},{"type":"Point","coordinates":[53012,84361]},{"type":"Point","coordinates":[34809,83307]},{"type":"Point","coordinates":[80145,81008]},{"type":"Point","coordinates":[54548,84336]},{"type":"Point","coordinates":[54548,84336]},{"type":"Point","coordinates":[35049,83349]},{"type":"Point","coordinates":[35092,83360]},{"type":"Point","coordinates":[78611,81372]},{"type":"Point","coordinates":[79273,81232]},{"type":"Point","coordinates":[79273,81232]},{"type":"Point","coordinates":[52146,84399]},{"type":"Point","coordinates":[52143,84400]},{"type":"Point","coordinates":[45620,84283]},{"type":"Point","coordinates":[52682,84401]},{"type":"Point","coordinates":[34656,83350]},{"type":"Point","coordinates":[52712,84436]},{"type":"Point","coordinates":[52851,84449]},{"type":"Point","coordinates":[53097,84452]},{"type":"Point","coordinates":[79949,81146]},{"type":"Point","coordinates":[34950,83421]},{"type":"Point","coordinates":[79944,81154]},{"type":"Point","coordinates":[35094,83444]},{"type":"Point","coordinates":[34995,83432]},{"type":"Point","coordinates":[51614,84487]},{"type":"Point","coordinates":[53085,84487]},{"type":"Point","coordinates":[53085,84488]},{"type":"Point","coordinates":[34816,83440]},{"type":"Point","coordinates":[51582,84515]},{"type":"Point","coordinates":[79962,81194]},{"type":"Point","coordinates":[79978,81196]},{"type":"Point","coordinates":[51580,84524]},{"type":"Point","coordinates":[79962,81207]},{"type":"Point","coordinates":[79951,81221]},{"type":"Point","coordinates":[34776,83471]},{"type":"Point","coordinates":[79297,81373]},{"type":"Point","coordinates":[47400,84503]},{"type":"Point","coordinates":[35097,83530]},{"type":"Point","coordinates":[53447,84550]},{"type":"Point","coordinates":[46046,84467]},{"type":"Point","coordinates":[45768,84461]},{"type":"Point","coordinates":[78555,81618]},{"type":"Point","coordinates":[52498,84624]},{"type":"Point","coordinates":[52497,84625]},{"type":"Point","coordinates":[81647,80916]},{"type":"Point","coordinates":[47099,84576]},{"type":"Point","coordinates":[79879,81340]},{"type":"Point","coordinates":[82157,80807]},{"type":"Point","coordinates":[34668,83580]},{"type":"Point","coordinates":[79911,81370]},{"type":"Point","coordinates":[45928,84574]},{"type":"Point","coordinates":[79407,81503]},{"type":"Point","coordinates":[79948,81381]},{"type":"Point","coordinates":[81049,81137]},{"type":"Point","coordinates":[81087,81134]},{"type":"Point","coordinates":[45613,84608]},{"type":"Point","coordinates":[45979,84666]},{"type":"Point","coordinates":[47916,84734]},{"type":"Point","coordinates":[52211,84781]},{"type":"Point","coordinates":[45939,84678]},{"type":"Point","coordinates":[45939,84679]},{"type":"Point","coordinates":[34938,83789]},{"type":"Point","coordinates":[34835,83777]},{"type":"Point","coordinates":[52796,84841]},{"type":"Point","coordinates":[52794,84844]},{"type":"Point","coordinates":[34915,83821]},{"type":"Point","coordinates":[46498,84790]},{"type":"Point","coordinates":[78570,81902]},{"type":"Point","coordinates":[52760,84904]},{"type":"Point","coordinates":[34980,83900]},{"type":"Point","coordinates":[34724,83884]},{"type":"Point","coordinates":[46052,84872]},{"type":"Point","coordinates":[46031,84887]},{"type":"Point","coordinates":[53497,84976]},{"type":"Point","coordinates":[46023,84906]},{"type":"Point","coordinates":[46045,84910]},{"type":"Point","coordinates":[45889,84925]},{"type":"Point","coordinates":[35725,84087]},{"type":"Point","coordinates":[45889,84927]},{"type":"Point","coordinates":[45887,84928]},{"type":"Point","coordinates":[45884,84930]},{"type":"Point","coordinates":[35894,84128]},{"type":"Point","coordinates":[35791,84127]},{"type":"Point","coordinates":[78429,82119]},{"type":"Point","coordinates":[51992,85091]},{"type":"Point","coordinates":[53179,85081]},{"type":"Point","coordinates":[78440,82127]},{"type":"Point","coordinates":[51979,85104]},{"type":"Point","coordinates":[51947,85106]},{"type":"Point","coordinates":[51947,85106]},{"type":"Point","coordinates":[52593,85103]},{"type":"Point","coordinates":[51955,85112]},{"type":"Point","coordinates":[51977,85131]},{"type":"Point","coordinates":[78422,82168]},{"type":"Point","coordinates":[35714,84231]},{"type":"Point","coordinates":[36155,84297]},{"type":"Point","coordinates":[45949,85104]},{"type":"Point","coordinates":[45954,85108]},{"type":"Point","coordinates":[45954,85108]},{"type":"Point","coordinates":[82545,81306]},{"type":"Point","coordinates":[52665,85239]},{"type":"Point","coordinates":[53109,85241]},{"type":"Point","coordinates":[81578,81561]},{"type":"Point","coordinates":[35961,84345]},{"type":"Point","coordinates":[49636,85314]},{"type":"Point","coordinates":[79539,82108]},{"type":"Point","coordinates":[81070,81756]},{"type":"Point","coordinates":[81059,81762]},{"type":"Point","coordinates":[81069,81783]},{"type":"Point","coordinates":[81069,81783]},{"type":"Point","coordinates":[81119,81774]},{"type":"Point","coordinates":[81114,81775]},{"type":"Point","coordinates":[36096,84486]},{"type":"Point","coordinates":[53746,85366]},{"type":"Point","coordinates":[53746,85366]},{"type":"Point","coordinates":[53710,85381]},{"type":"Point","coordinates":[78441,82457]},{"type":"Point","coordinates":[81220,81960]},{"type":"Point","coordinates":[35700,84621]},{"type":"Point","coordinates":[80512,82151]},{"type":"Point","coordinates":[81390,81959]},{"type":"Point","coordinates":[35867,84750]},{"type":"Point","coordinates":[81073,82141]},{"type":"Point","coordinates":[46903,85650]},{"type":"Point","coordinates":[80276,82342]},{"type":"Point","coordinates":[82010,81950]},{"type":"Point","coordinates":[80635,82300]},{"type":"Point","coordinates":[81229,82160]},{"type":"Point","coordinates":[80572,82322]},{"type":"Point","coordinates":[80604,82328]},{"type":"Point","coordinates":[78550,82809]},{"type":"Point","coordinates":[80980,82338]},{"type":"Point","coordinates":[35990,84975]},{"type":"Point","coordinates":[81806,82149]},{"type":"Point","coordinates":[81125,82325]},{"type":"Point","coordinates":[52219,85904]},{"type":"Point","coordinates":[52218,85904]},{"type":"Point","coordinates":[52219,85904]},{"type":"Point","coordinates":[52205,85915]},{"type":"Point","coordinates":[52209,85916]},{"type":"Point","coordinates":[82751,81972]},{"type":"Point","coordinates":[79656,82743]},{"type":"Point","coordinates":[80932,82457]},{"type":"Point","coordinates":[36014,85093]},{"type":"Point","coordinates":[79525,82819]},{"type":"Point","coordinates":[80175,82745]},{"type":"Point","coordinates":[51974,86131]},{"type":"Point","coordinates":[51974,86132]},{"type":"Point","coordinates":[35642,85225]},{"type":"Point","coordinates":[79769,82940]},{"type":"Point","coordinates":[79798,82944]},{"type":"Point","coordinates":[79152,83111]},{"type":"Point","coordinates":[81547,82589]},{"type":"Point","coordinates":[45671,86170]},{"type":"Point","coordinates":[36064,85419]},{"type":"Point","coordinates":[80261,82998]},{"type":"Point","coordinates":[79877,83101]},{"type":"Point","coordinates":[80097,83058]},{"type":"Point","coordinates":[36165,85509]},{"type":"Point","coordinates":[35999,85530]},{"type":"Point","coordinates":[52247,86515]},{"type":"Point","coordinates":[36280,85668]},{"type":"Point","coordinates":[52232,86648]},{"type":"Point","coordinates":[50005,86718]},{"type":"Point","coordinates":[52335,86744]},{"type":"Point","coordinates":[79450,83569]},{"type":"Point","coordinates":[79798,83564]},{"type":"Point","coordinates":[79716,83588]},{"type":"Point","coordinates":[51703,86837]},{"type":"Point","coordinates":[79441,83727]},{"type":"Point","coordinates":[52026,86910]},{"type":"Point","coordinates":[79537,83728]},{"type":"Point","coordinates":[49820,86979]},{"type":"Point","coordinates":[79543,83799]},{"type":"Point","coordinates":[81939,83239]},{"type":"Point","coordinates":[79711,83770]},{"type":"Point","coordinates":[82631,83093]},{"type":"Point","coordinates":[81569,83368]},{"type":"Point","coordinates":[81803,83328]},{"type":"Point","coordinates":[52135,87080]},{"type":"Point","coordinates":[82532,83264]},{"type":"Point","coordinates":[48971,87212]},{"type":"Point","coordinates":[79580,84113]},{"type":"Point","coordinates":[79626,84117]},{"type":"Point","coordinates":[79874,84068]},{"type":"Point","coordinates":[80077,84039]},{"type":"Point","coordinates":[83333,83248]},{"type":"Point","coordinates":[79781,84134]},{"type":"Point","coordinates":[81985,83611]},{"type":"Point","coordinates":[79536,84231]},{"type":"Point","coordinates":[48970,87451]},{"type":"Point","coordinates":[80002,84174]},{"type":"Point","coordinates":[81934,83799]},{"type":"Point","coordinates":[79788,84312]},{"type":"Point","coordinates":[82267,83737]},{"type":"Point","coordinates":[79963,84339]},{"type":"Point","coordinates":[79808,84376]},{"type":"Point","coordinates":[82313,83779]},{"type":"Point","coordinates":[81981,83897]},{"type":"Point","coordinates":[81949,83907]},{"type":"Point","coordinates":[81958,83916]},{"type":"Point","coordinates":[79988,84386]},{"type":"Point","coordinates":[81916,83933]},{"type":"Point","coordinates":[48641,87666]},{"type":"Point","coordinates":[81855,84040]},{"type":"Point","coordinates":[82715,83834]},{"type":"Point","coordinates":[82506,83893]},{"type":"Point","coordinates":[82721,83851]},{"type":"Point","coordinates":[80685,84351]},{"type":"Point","coordinates":[82373,83953]},{"type":"Point","coordinates":[79776,84607]},{"type":"Point","coordinates":[48199,87853]},{"type":"Point","coordinates":[48214,87861]},{"type":"Point","coordinates":[82492,84025]},{"type":"Point","coordinates":[83576,83749]},{"type":"Point","coordinates":[83575,83749]},{"type":"Point","coordinates":[81483,84274]},{"type":"Point","coordinates":[83576,83751]},{"type":"Point","coordinates":[83572,83752]},{"type":"Point","coordinates":[83536,83778]},{"type":"Point","coordinates":[79643,84733]},{"type":"Point","coordinates":[82310,84105]},{"type":"Point","coordinates":[80136,84655]},{"type":"Point","coordinates":[80136,84656]},{"type":"Point","coordinates":[80408,84602]},{"type":"Point","coordinates":[79718,84799]},{"type":"Point","coordinates":[79718,84799]},{"type":"Point","coordinates":[82654,84106]},{"type":"Point","coordinates":[82653,84109]},{"type":"Point","coordinates":[82625,84122]},{"type":"Point","coordinates":[82568,84145]},{"type":"Point","coordinates":[82421,84184]},{"type":"Point","coordinates":[82565,84149]},{"type":"Point","coordinates":[82591,84165]},{"type":"Point","coordinates":[82588,84166]},{"type":"Point","coordinates":[82588,84166]},{"type":"Point","coordinates":[82588,84166]},{"type":"Point","coordinates":[82589,84166]},{"type":"Point","coordinates":[82589,84166]},{"type":"Point","coordinates":[82586,84169]},{"type":"Point","coordinates":[82586,84170]},{"type":"Point","coordinates":[82587,84170]},{"type":"Point","coordinates":[82587,84171]},{"type":"Point","coordinates":[82591,84171]},{"type":"Point","coordinates":[82587,84172]},{"type":"Point","coordinates":[82587,84173]},{"type":"Point","coordinates":[82591,84172]},{"type":"Point","coordinates":[82587,84173]},{"type":"Point","coordinates":[82587,84173]},{"type":"Point","coordinates":[82591,84172]},{"type":"Point","coordinates":[82586,84173]},{"type":"Point","coordinates":[82588,84173]},{"type":"Point","coordinates":[82592,84172]},{"type":"Point","coordinates":[82587,84174]},{"type":"Point","coordinates":[82590,84173]},{"type":"Point","coordinates":[82590,84173]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82591,84174]},{"type":"Point","coordinates":[82591,84174]},{"type":"Point","coordinates":[82594,84174]},{"type":"Point","coordinates":[82582,84179]},{"type":"Point","coordinates":[82602,84174]},{"type":"Point","coordinates":[82581,84180]},{"type":"Point","coordinates":[82582,84180]},{"type":"Point","coordinates":[80098,84778]},{"type":"Point","coordinates":[80094,84779]},{"type":"Point","coordinates":[82583,84180]},{"type":"Point","coordinates":[82584,84181]},{"type":"Point","coordinates":[82584,84181]},{"type":"Point","coordinates":[82596,84180]},{"type":"Point","coordinates":[80094,84783]},{"type":"Point","coordinates":[82601,84183]},{"type":"Point","coordinates":[80336,84735]},{"type":"Point","coordinates":[82604,84196]},{"type":"Point","coordinates":[82261,84293]},{"type":"Point","coordinates":[82672,84207]},{"type":"Point","coordinates":[82319,84300]},{"type":"Point","coordinates":[82246,84332]},{"type":"Point","coordinates":[82245,84334]},{"type":"Point","coordinates":[80947,84667]},{"type":"Point","coordinates":[80084,84890]},{"type":"Point","coordinates":[83013,84190]},{"type":"Point","coordinates":[81660,84562]},{"type":"Point","coordinates":[81661,84563]},{"type":"Point","coordinates":[81661,84563]},{"type":"Point","coordinates":[81661,84564]},{"type":"Point","coordinates":[81661,84565]},{"type":"Point","coordinates":[81661,84565]},{"type":"Point","coordinates":[81661,84569]},{"type":"Point","coordinates":[81656,84586]},{"type":"Point","coordinates":[79571,85075]},{"type":"Point","coordinates":[81659,84585]},{"type":"Point","coordinates":[81666,84584]},{"type":"Point","coordinates":[81664,84585]},{"type":"Point","coordinates":[81667,84584]},{"type":"Point","coordinates":[83409,84160]},{"type":"Point","coordinates":[83411,84160]},{"type":"Point","coordinates":[80331,84976]},{"type":"Point","coordinates":[80331,84980]},{"type":"Point","coordinates":[83448,84218]},{"type":"Point","coordinates":[83449,84229]},{"type":"Point","coordinates":[82800,84398]},{"type":"Point","coordinates":[79886,85106]},{"type":"Point","coordinates":[82820,84401]},{"type":"Point","coordinates":[80532,85002]},{"type":"Point","coordinates":[83684,84232]},{"type":"Point","coordinates":[80060,85139]},{"type":"Point","coordinates":[82022,84693]},{"type":"Point","coordinates":[81614,84795]},{"type":"Point","coordinates":[82771,84521]},{"type":"Point","coordinates":[79882,85226]},{"type":"Point","coordinates":[82775,84547]},{"type":"Point","coordinates":[82029,84741]},{"type":"Point","coordinates":[82784,84553]},{"type":"Point","coordinates":[82786,84553]},{"type":"Point","coordinates":[82806,84553]},{"type":"Point","coordinates":[82802,84555]},{"type":"Point","coordinates":[82817,84558]},{"type":"Point","coordinates":[82820,84559]},{"type":"Point","coordinates":[82820,84560]},{"type":"Point","coordinates":[82824,84560]},{"type":"Point","coordinates":[82822,84570]},{"type":"Point","coordinates":[82828,84569]},{"type":"Point","coordinates":[82816,84580]},{"type":"Point","coordinates":[82823,84581]},{"type":"Point","coordinates":[82805,84588]},{"type":"Point","coordinates":[82085,84783]},{"type":"Point","coordinates":[79765,85354]},{"type":"Point","coordinates":[81484,85010]},{"type":"Point","coordinates":[81917,84934]},{"type":"Point","coordinates":[81516,85040]},{"type":"Point","coordinates":[81922,84949]},{"type":"Point","coordinates":[81915,84965]},{"type":"Point","coordinates":[80116,85392]},{"type":"Point","coordinates":[83931,84598]},{"type":"Point","coordinates":[83522,84714]},{"type":"Point","coordinates":[83777,84661]},{"type":"Point","coordinates":[82681,85011]},{"type":"Point","coordinates":[79842,85695]},{"type":"Point","coordinates":[83912,84722]},{"type":"Point","coordinates":[82617,85074]},{"type":"Point","coordinates":[83701,84834]},{"type":"Point","coordinates":[81532,85398]},{"type":"Point","coordinates":[82663,85126]},{"type":"Point","coordinates":[82665,85130]},{"type":"Point","coordinates":[83923,84815]},{"type":"Point","coordinates":[82862,85094]},{"type":"Point","coordinates":[80495,85674]},{"type":"Point","coordinates":[82651,85171]},{"type":"Point","coordinates":[80141,85797]},{"type":"Point","coordinates":[82663,85201]},{"type":"Point","coordinates":[82084,85381]},{"type":"Point","coordinates":[83928,84935]},{"type":"Point","coordinates":[80915,85694]},{"type":"Point","coordinates":[80909,85760]},{"type":"Point","coordinates":[80951,85767]},{"type":"Point","coordinates":[83726,85081]},{"type":"Point","coordinates":[80876,85792]},{"type":"Point","coordinates":[80131,86066]},{"type":"Point","coordinates":[80395,86023]},{"type":"Point","coordinates":[82575,85501]},{"type":"Point","coordinates":[79667,86202]},{"type":"Point","coordinates":[79660,86220]},{"type":"Point","coordinates":[82553,85534]},{"type":"Point","coordinates":[80099,86163]},{"type":"Point","coordinates":[82395,85640]},{"type":"Point","coordinates":[80132,86195]},{"type":"Point","coordinates":[80451,86125]},{"type":"Point","coordinates":[80443,86136]},{"type":"Point","coordinates":[80426,86144]},{"type":"Point","coordinates":[80183,86209]},{"type":"Point","coordinates":[80055,86275]},{"type":"Point","coordinates":[80315,86239]},{"type":"Point","coordinates":[80107,86301]},{"type":"Point","coordinates":[80266,86277]},{"type":"Point","coordinates":[82140,85858]},{"type":"Point","coordinates":[79760,86423]},{"type":"Point","coordinates":[80234,86315]},{"type":"Point","coordinates":[82148,85894]},{"type":"Point","coordinates":[81405,86125]},{"type":"Point","coordinates":[82184,85938]},{"type":"Point","coordinates":[81529,86128]},{"type":"Point","coordinates":[82212,85973]},{"type":"Point","coordinates":[80310,86441]},{"type":"Point","coordinates":[46926,89726]},{"type":"Point","coordinates":[82167,86013]},{"type":"Point","coordinates":[84020,85544]},{"type":"Point","coordinates":[80073,86546]},{"type":"Point","coordinates":[80552,86437]},{"type":"Point","coordinates":[79867,86612]},{"type":"Point","coordinates":[79650,86674]},{"type":"Point","coordinates":[79874,86626]},{"type":"Point","coordinates":[79862,86630]},{"type":"Point","coordinates":[80237,86546]},{"type":"Point","coordinates":[80558,86473]},{"type":"Point","coordinates":[79977,86608]},{"type":"Point","coordinates":[79878,86633]},{"type":"Point","coordinates":[79855,86648]},{"type":"Point","coordinates":[79658,86705]},{"type":"Point","coordinates":[80287,86561]},{"type":"Point","coordinates":[79661,86705]},{"type":"Point","coordinates":[79659,86706]},{"type":"Point","coordinates":[80288,86567]},{"type":"Point","coordinates":[79662,86714]},{"type":"Point","coordinates":[79666,86720]},{"type":"Point","coordinates":[82282,86102]},{"type":"Point","coordinates":[82278,86104]},{"type":"Point","coordinates":[82278,86106]},{"type":"Point","coordinates":[82277,86106]},{"type":"Point","coordinates":[82024,86168]},{"type":"Point","coordinates":[82279,86117]},{"type":"Point","coordinates":[82286,86124]},{"type":"Point","coordinates":[83251,85886]},{"type":"Point","coordinates":[82278,86136]},{"type":"Point","coordinates":[83103,85934]},{"type":"Point","coordinates":[80285,86625]},{"type":"Point","coordinates":[79817,86756]},{"type":"Point","coordinates":[82813,86040]},{"type":"Point","coordinates":[81321,86419]},{"type":"Point","coordinates":[80136,86715]},{"type":"Point","coordinates":[80159,86722]},{"type":"Point","coordinates":[79571,86865]},{"type":"Point","coordinates":[80131,86742]},{"type":"Point","coordinates":[80140,86741]},{"type":"Point","coordinates":[79568,86873]},{"type":"Point","coordinates":[80318,86703]},{"type":"Point","coordinates":[80138,86746]},{"type":"Point","coordinates":[82333,86226]},{"type":"Point","coordinates":[80138,86749]},{"type":"Point","coordinates":[80139,86749]},{"type":"Point","coordinates":[80139,86749]},{"type":"Point","coordinates":[80138,86749]},{"type":"Point","coordinates":[80139,86749]},{"type":"Point","coordinates":[80139,86749]},{"type":"Point","coordinates":[80139,86749]},{"type":"Point","coordinates":[80138,86750]},{"type":"Point","coordinates":[80138,86750]},{"type":"Point","coordinates":[80138,86752]},{"type":"Point","coordinates":[80138,86752]},{"type":"Point","coordinates":[83918,85830]},{"type":"Point","coordinates":[79586,86891]},{"type":"Point","coordinates":[79440,86939]},{"type":"Point","coordinates":[81665,86436]},{"type":"Point","coordinates":[83294,86039]},{"type":"Point","coordinates":[81346,86521]},{"type":"Point","coordinates":[80331,86764]},{"type":"Point","coordinates":[81704,86443]},{"type":"Point","coordinates":[80350,86767]},{"type":"Point","coordinates":[80288,86783]},{"type":"Point","coordinates":[80280,86785]},{"type":"Point","coordinates":[80286,86784]},{"type":"Point","coordinates":[80286,86784]},{"type":"Point","coordinates":[80283,86786]},{"type":"Point","coordinates":[80282,86786]},{"type":"Point","coordinates":[80281,86787]},{"type":"Point","coordinates":[80286,86786]},{"type":"Point","coordinates":[80286,86786]},{"type":"Point","coordinates":[80279,86788]},{"type":"Point","coordinates":[80279,86788]},{"type":"Point","coordinates":[80279,86788]},{"type":"Point","coordinates":[80279,86788]},{"type":"Point","coordinates":[80279,86788]},{"type":"Point","coordinates":[80279,86788]},{"type":"Point","coordinates":[80279,86788]},{"type":"Point","coordinates":[80276,86789]},{"type":"Point","coordinates":[80280,86789]},{"type":"Point","coordinates":[80286,86788]},{"type":"Point","coordinates":[80280,86790]},{"type":"Point","coordinates":[80283,86789]},{"type":"Point","coordinates":[80285,86789]},{"type":"Point","coordinates":[80279,86791]},{"type":"Point","coordinates":[80293,86787]},{"type":"Point","coordinates":[80279,86791]},{"type":"Point","coordinates":[80279,86791]},{"type":"Point","coordinates":[80274,86792]},{"type":"Point","coordinates":[80279,86791]},{"type":"Point","coordinates":[80279,86791]},{"type":"Point","coordinates":[80290,86790]},{"type":"Point","coordinates":[80282,86792]},{"type":"Point","coordinates":[80289,86791]},{"type":"Point","coordinates":[80289,86792]},{"type":"Point","coordinates":[80281,86794]},{"type":"Point","coordinates":[80280,86794]},{"type":"Point","coordinates":[80287,86793]},{"type":"Point","coordinates":[80286,86793]},{"type":"Point","coordinates":[80287,86793]},{"type":"Point","coordinates":[80279,86795]},{"type":"Point","coordinates":[80285,86794]},{"type":"Point","coordinates":[80287,86794]},{"type":"Point","coordinates":[80278,86797]},{"type":"Point","coordinates":[80287,86795]},{"type":"Point","coordinates":[80286,86795]},{"type":"Point","coordinates":[80279,86797]},{"type":"Point","coordinates":[80285,86797]},{"type":"Point","coordinates":[80285,86797]},{"type":"Point","coordinates":[80285,86797]},{"type":"Point","coordinates":[80285,86797]},{"type":"Point","coordinates":[80283,86800]},{"type":"Point","coordinates":[80283,86800]},{"type":"Point","coordinates":[80287,86800]},{"type":"Point","coordinates":[80268,86805]},{"type":"Point","coordinates":[80274,86805]},{"type":"Point","coordinates":[80287,86802]},{"type":"Point","coordinates":[80272,86807]},{"type":"Point","coordinates":[82325,86318]},{"type":"Point","coordinates":[80291,86806]},{"type":"Point","coordinates":[80229,86828]},{"type":"Point","coordinates":[81020,86643]},{"type":"Point","coordinates":[82108,86384]},{"type":"Point","coordinates":[83155,86168]},{"type":"Point","coordinates":[81567,86575]},{"type":"Point","coordinates":[81549,86600]},{"type":"Point","coordinates":[80234,86924]},{"type":"Point","coordinates":[79438,87144]},{"type":"Point","coordinates":[81154,86753]},{"type":"Point","coordinates":[80206,86993]},{"type":"Point","coordinates":[80490,86929]},{"type":"Point","coordinates":[82224,86515]},{"type":"Point","coordinates":[80203,86997]},{"type":"Point","coordinates":[80203,86998]},{"type":"Point","coordinates":[79929,87063]},{"type":"Point","coordinates":[80274,87000]},{"type":"Point","coordinates":[84059,86103]},{"type":"Point","coordinates":[79746,87168]},{"type":"Point","coordinates":[81379,86837]},{"type":"Point","coordinates":[81390,86837]},{"type":"Point","coordinates":[81390,86837]},{"type":"Point","coordinates":[81962,86707]},{"type":"Point","coordinates":[80036,87169]},{"type":"Point","coordinates":[80038,87169]},{"type":"Point","coordinates":[81408,86851]},{"type":"Point","coordinates":[84141,86168]},{"type":"Point","coordinates":[81373,86877]},{"type":"Point","coordinates":[82193,86686]},{"type":"Point","coordinates":[79550,87338]},{"type":"Point","coordinates":[80496,87185]},{"type":"Point","coordinates":[80684,87169]},{"type":"Point","coordinates":[79437,87472]},{"type":"Point","coordinates":[79490,87497]},{"type":"Point","coordinates":[82025,86905]},{"type":"Point","coordinates":[82025,86905]},{"type":"Point","coordinates":[79498,87501]},{"type":"Point","coordinates":[81285,87090]},{"type":"Point","coordinates":[81279,87093]},{"type":"Point","coordinates":[84088,86398]},{"type":"Point","coordinates":[81278,87111]},{"type":"Point","coordinates":[81270,87116]},{"type":"Point","coordinates":[79492,87529]},{"type":"Point","coordinates":[82965,86713]},{"type":"Point","coordinates":[81368,87196]},{"type":"Point","coordinates":[81527,87164]},{"type":"Point","coordinates":[84218,86503]},{"type":"Point","coordinates":[80632,87425]},{"type":"Point","coordinates":[79441,87700]},{"type":"Point","coordinates":[79341,87739]},{"type":"Point","coordinates":[79428,87748]},{"type":"Point","coordinates":[79390,87761]},{"type":"Point","coordinates":[79418,87788]},{"type":"Point","coordinates":[82235,87139]},{"type":"Point","coordinates":[82235,87139]},{"type":"Point","coordinates":[80855,87474]},{"type":"Point","coordinates":[80439,87585]},{"type":"Point","coordinates":[80561,87576]},{"type":"Point","coordinates":[80516,87641]},{"type":"Point","coordinates":[80522,87640]},{"type":"Point","coordinates":[80519,87644]},{"type":"Point","coordinates":[80519,87644]},{"type":"Point","coordinates":[80519,87645]},{"type":"Point","coordinates":[79373,87908]},{"type":"Point","coordinates":[84279,86725]},{"type":"Point","coordinates":[82158,87264]},{"type":"Point","coordinates":[79789,87831]},{"type":"Point","coordinates":[82318,87246]},{"type":"Point","coordinates":[80587,87671]},{"type":"Point","coordinates":[82173,87294]},{"type":"Point","coordinates":[82017,87339]},{"type":"Point","coordinates":[82011,87340]},{"type":"Point","coordinates":[82020,87338]},{"type":"Point","coordinates":[80548,87691]},{"type":"Point","coordinates":[80551,87692]},{"type":"Point","coordinates":[80552,87697]},{"type":"Point","coordinates":[82068,87369]},{"type":"Point","coordinates":[80456,87764]},{"type":"Point","coordinates":[82266,87345]},{"type":"Point","coordinates":[82252,87353]},{"type":"Point","coordinates":[82252,87353]},{"type":"Point","coordinates":[80683,87806]},{"type":"Point","coordinates":[82329,87429]},{"type":"Point","coordinates":[82331,87429]},{"type":"Point","coordinates":[79674,88066]},{"type":"Point","coordinates":[79625,88082]},{"type":"Point","coordinates":[79829,88065]},{"type":"Point","coordinates":[79827,88082]},{"type":"Point","coordinates":[84383,86990]},{"type":"Point","coordinates":[79574,88232]},{"type":"Point","coordinates":[79787,88227]},{"type":"Point","coordinates":[79811,88242]},{"type":"Point","coordinates":[79813,88246]},{"type":"Point","coordinates":[79811,88249]},{"type":"Point","coordinates":[82059,87728]},{"type":"Point","coordinates":[80513,88132]},{"type":"Point","coordinates":[82424,87679]},{"type":"Point","coordinates":[79750,88322]},{"type":"Point","coordinates":[80553,88198]},{"type":"Point","coordinates":[79639,88429]},{"type":"Point","coordinates":[79665,88490]},{"type":"Point","coordinates":[80408,88326]},{"type":"Point","coordinates":[80363,88339]},{"type":"Point","coordinates":[80385,88367]},{"type":"Point","coordinates":[80138,88440]},{"type":"Point","coordinates":[82165,87972]},{"type":"Point","coordinates":[48614,91721]},{"type":"Point","coordinates":[48610,91734]},{"type":"Point","coordinates":[48589,91796]},{"type":"Point","coordinates":[81643,88219]},{"type":"Point","coordinates":[80804,88446]},{"type":"Point","coordinates":[81118,88420]},{"type":"Point","coordinates":[81088,88511]},{"type":"Point","coordinates":[83283,87977]},{"type":"Point","coordinates":[82276,88280]},{"type":"Point","coordinates":[84814,87665]},{"type":"Point","coordinates":[80107,88838]},{"type":"Point","coordinates":[80108,88839]},{"type":"Point","coordinates":[80107,88854]},{"type":"Point","coordinates":[79677,89009]},{"type":"Point","coordinates":[85050,87697]},{"type":"Point","coordinates":[80306,88882]},{"type":"Point","coordinates":[79918,88976]},{"type":"Point","coordinates":[81116,88715]},{"type":"Point","coordinates":[82517,88379]},{"type":"Point","coordinates":[82515,88383]},{"type":"Point","coordinates":[80415,88892]},{"type":"Point","coordinates":[80972,88786]},{"type":"Point","coordinates":[79861,89058]},{"type":"Point","coordinates":[80500,88926]},{"type":"Point","coordinates":[80511,88929]},{"type":"Point","coordinates":[80634,88908]},{"type":"Point","coordinates":[82351,88510]},{"type":"Point","coordinates":[79830,89121]},{"type":"Point","coordinates":[79837,89120]},{"type":"Point","coordinates":[80072,89097]},{"type":"Point","coordinates":[48407,92402]},{"type":"Point","coordinates":[48405,92407]},{"type":"Point","coordinates":[48404,92409]},{"type":"Point","coordinates":[82254,88658]},{"type":"Point","coordinates":[48405,92414]},{"type":"Point","coordinates":[82273,88659]},{"type":"Point","coordinates":[82273,88659]},{"type":"Point","coordinates":[82273,88659]},{"type":"Point","coordinates":[82243,88667]},{"type":"Point","coordinates":[82301,88664]},{"type":"Point","coordinates":[48383,92487]},{"type":"Point","coordinates":[48368,92548]},{"type":"Point","coordinates":[80435,89245]},{"type":"Point","coordinates":[80275,89318]},{"type":"Point","coordinates":[80356,89314]},{"type":"Point","coordinates":[80490,89287]},{"type":"Point","coordinates":[80350,89384]},{"type":"Point","coordinates":[80362,89431]},{"type":"Point","coordinates":[80426,89456]},{"type":"Point","coordinates":[80442,89518]},{"type":"Point","coordinates":[80303,89597]},{"type":"Point","coordinates":[80299,89599]},{"type":"Point","coordinates":[80303,89598]},{"type":"Point","coordinates":[80303,89598]},{"type":"Point","coordinates":[80773,89573]},{"type":"Point","coordinates":[80411,89661]},{"type":"Point","coordinates":[80411,89672]},{"type":"Point","coordinates":[80263,89731]},{"type":"Point","coordinates":[80797,89641]},{"type":"Point","coordinates":[82586,89256]},{"type":"Point","coordinates":[80351,89793]},{"type":"Point","coordinates":[80345,89795]},{"type":"Point","coordinates":[80352,89794]},{"type":"Point","coordinates":[80347,89799]},{"type":"Point","coordinates":[80270,89866]},{"type":"Point","coordinates":[80240,89874]},{"type":"Point","coordinates":[80280,89882]},{"type":"Point","coordinates":[83037,89325]},{"type":"Point","coordinates":[80696,89933]},{"type":"Point","coordinates":[80696,89935]},{"type":"Point","coordinates":[80363,90035]},{"type":"Point","coordinates":[80332,90067]},{"type":"Point","coordinates":[85272,88854]},{"type":"Point","coordinates":[80317,90158]},{"type":"Point","coordinates":[80318,90163]},{"type":"Point","coordinates":[80318,90164]},{"type":"Point","coordinates":[80320,90164]},{"type":"Point","coordinates":[80391,90165]},{"type":"Point","coordinates":[80827,90107]},{"type":"Point","coordinates":[80827,90107]},{"type":"Point","coordinates":[82810,89635]},{"type":"Point","coordinates":[80364,90227]},{"type":"Point","coordinates":[82779,89656]},{"type":"Point","coordinates":[80354,90249]},{"type":"Point","coordinates":[80405,90254]},{"type":"Point","coordinates":[85182,89140]},{"type":"Point","coordinates":[84727,89337]},{"type":"Point","coordinates":[84578,89397]},{"type":"Point","coordinates":[84583,89399]},{"type":"Point","coordinates":[84577,89401]},{"type":"Point","coordinates":[80654,90387]},{"type":"Point","coordinates":[80517,90464]},{"type":"Point","coordinates":[80513,90466]},{"type":"Point","coordinates":[80513,90467]},{"type":"Point","coordinates":[80744,90433]},{"type":"Point","coordinates":[80734,90453]},{"type":"Point","coordinates":[85114,89396]},{"type":"Point","coordinates":[82772,90014]},{"type":"Point","coordinates":[80494,90689]},{"type":"Point","coordinates":[80496,90703]},{"type":"Point","coordinates":[82757,90201]},{"type":"Point","coordinates":[85489,89522]},{"type":"Point","coordinates":[82935,90215]},{"type":"Point","coordinates":[80550,90794]},{"type":"Point","coordinates":[80608,90819]},{"type":"Point","coordinates":[81270,90696]},{"type":"Point","coordinates":[80858,90811]},{"type":"Point","coordinates":[85397,89677]},{"type":"Point","coordinates":[81519,90700]},{"type":"Point","coordinates":[84428,89998]},{"type":"Point","coordinates":[80652,90959]},{"type":"Point","coordinates":[80652,90959]},{"type":"Point","coordinates":[85393,89794]},{"type":"Point","coordinates":[81701,90734]},{"type":"Point","coordinates":[81701,90734]},{"type":"Point","coordinates":[85585,89798]},{"type":"Point","coordinates":[85730,89802]},{"type":"Point","coordinates":[85592,89842]},{"type":"Point","coordinates":[85624,89860]},{"type":"Point","coordinates":[85329,89940]},{"type":"Point","coordinates":[85366,90016]},{"type":"Point","coordinates":[80940,91168]},{"type":"Point","coordinates":[82316,90886]},{"type":"Point","coordinates":[80853,91311]},{"type":"Point","coordinates":[85387,90193]},{"type":"Point","coordinates":[85474,90280]},{"type":"Point","coordinates":[85454,90333]},{"type":"Point","coordinates":[85453,90429]},{"type":"Point","coordinates":[82760,91357]},{"type":"Point","coordinates":[81779,91651]},{"type":"Point","coordinates":[82311,91565]},{"type":"Point","coordinates":[82304,91568]},{"type":"Point","coordinates":[82139,91821]},{"type":"Point","coordinates":[82226,91851]},{"type":"Point","coordinates":[81861,92046]},{"type":"Point","coordinates":[81746,92130]},{"type":"Point","coordinates":[81122,92303]},{"type":"Point","coordinates":[82423,92004]},{"type":"Point","coordinates":[81746,92211]},{"type":"Point","coordinates":[85829,91186]},{"type":"Point","coordinates":[81988,92217]},{"type":"Point","coordinates":[81988,92218]},{"type":"Point","coordinates":[81987,92219]},{"type":"Point","coordinates":[81985,92223]},{"type":"Point","coordinates":[81984,92225]},{"type":"Point","coordinates":[81983,92227]},{"type":"Point","coordinates":[81987,92228]},{"type":"Point","coordinates":[81987,92228]},{"type":"Point","coordinates":[81986,92230]},{"type":"Point","coordinates":[81982,92234]},{"type":"Point","coordinates":[81982,92234]},{"type":"Point","coordinates":[81983,92234]},{"type":"Point","coordinates":[81795,92308]},{"type":"Point","coordinates":[82134,92329]},{"type":"Point","coordinates":[81889,92431]},{"type":"Point","coordinates":[82642,92378]},{"type":"Point","coordinates":[82636,92390]},{"type":"Point","coordinates":[82639,92418]},{"type":"Point","coordinates":[82637,92418]},{"type":"Point","coordinates":[83409,92231]},{"type":"Point","coordinates":[82125,92621]},{"type":"Point","coordinates":[82432,92551]},{"type":"Point","coordinates":[82630,92521]},{"type":"Point","coordinates":[81566,92804]},{"type":"Point","coordinates":[81383,92896]},{"type":"Point","coordinates":[81440,92892]},{"type":"Point","coordinates":[82154,92735]},{"type":"Point","coordinates":[45579,96480]},{"type":"Point","coordinates":[82402,92850]},{"type":"Point","coordinates":[82523,92855]},{"type":"Point","coordinates":[82533,92857]},{"type":"Point","coordinates":[82519,92871]},{"type":"Point","coordinates":[82513,92877]},{"type":"Point","coordinates":[85738,92152]},{"type":"Point","coordinates":[45601,96671]},{"type":"Point","coordinates":[82239,93080]},{"type":"Point","coordinates":[82356,93080]},{"type":"Point","coordinates":[82505,93095]},{"type":"Point","coordinates":[82499,93097]},{"type":"Point","coordinates":[82500,93097]},{"type":"Point","coordinates":[82079,93225]},{"type":"Point","coordinates":[83867,92817]},{"type":"Point","coordinates":[45889,96890]},{"type":"Point","coordinates":[83349,93341]},{"type":"Point","coordinates":[84105,93155]},{"type":"Point","coordinates":[83238,93407]},{"type":"Point","coordinates":[83240,93412]},{"type":"Point","coordinates":[47515,97332]},{"type":"Point","coordinates":[47515,97334]},{"type":"Point","coordinates":[47515,97334]},{"type":"Point","coordinates":[47513,97335]},{"type":"Point","coordinates":[47513,97338]},{"type":"Point","coordinates":[47514,97338]},{"type":"Point","coordinates":[47514,97339]},{"type":"Point","coordinates":[47510,97341]},{"type":"Point","coordinates":[82235,93675]},{"type":"Point","coordinates":[84091,93220]},{"type":"Point","coordinates":[46032,97324]},{"type":"Point","coordinates":[82161,93770]},{"type":"Point","coordinates":[46010,97455]},{"type":"Point","coordinates":[83010,93662]},{"type":"Point","coordinates":[85816,92957]},{"type":"Point","coordinates":[82806,93766]},{"type":"Point","coordinates":[46201,97544]},{"type":"Point","coordinates":[82723,93818]},{"type":"Point","coordinates":[82252,93960]},{"type":"Point","coordinates":[82828,93822]},{"type":"Point","coordinates":[82261,93966]},{"type":"Point","coordinates":[48322,97666]},{"type":"Point","coordinates":[83388,93706]},{"type":"Point","coordinates":[46473,97699]},{"type":"Point","coordinates":[82402,94045]},{"type":"Point","coordinates":[85442,93289]},{"type":"Point","coordinates":[46302,97769]},{"type":"Point","coordinates":[83121,93952]},{"type":"Point","coordinates":[81927,94272]},{"type":"Point","coordinates":[82793,94152]},{"type":"Point","coordinates":[82734,94182]},{"type":"Point","coordinates":[83088,94141]},{"type":"Point","coordinates":[83045,94183]},{"type":"Point","coordinates":[83224,94157]},{"type":"Point","coordinates":[83301,94202]},{"type":"Point","coordinates":[83142,94242]},{"type":"Point","coordinates":[83181,94234]},{"type":"Point","coordinates":[83181,94234]},{"type":"Point","coordinates":[82981,94411]},{"type":"Point","coordinates":[82981,94412]},{"type":"Point","coordinates":[82751,94536]},{"type":"Point","coordinates":[83237,94453]},{"type":"Point","coordinates":[83686,94408]},{"type":"Point","coordinates":[83324,94578]},{"type":"Point","coordinates":[83441,94586]},{"type":"Point","coordinates":[83172,94658]},{"type":"Point","coordinates":[83702,94538]},{"type":"Point","coordinates":[83702,94539]},{"type":"Point","coordinates":[83704,94539]},{"type":"Point","coordinates":[83705,94540]},{"type":"Point","coordinates":[82984,94736]},{"type":"Point","coordinates":[83269,94668]},{"type":"Point","coordinates":[83891,94528]},{"type":"Point","coordinates":[83507,94731]},{"type":"Point","coordinates":[83385,94787]},{"type":"Point","coordinates":[82863,94978]},{"type":"Point","coordinates":[85374,94404]},{"type":"Point","coordinates":[83842,94812]},{"type":"Point","coordinates":[85807,94380]},{"type":"Point","coordinates":[85236,94544]},{"type":"Point","coordinates":[85666,94474]},{"type":"Point","coordinates":[85925,94594]},{"type":"Point","coordinates":[85628,94700]},{"type":"Point","coordinates":[84366,95035]},{"type":"Point","coordinates":[85927,94701]},{"type":"Point","coordinates":[85928,94701]},{"type":"Point","coordinates":[85491,94845]},{"type":"Point","coordinates":[85841,94833]},{"type":"Point","coordinates":[85514,94926]},{"type":"Point","coordinates":[85514,94926]},{"type":"Point","coordinates":[85593,94962]},{"type":"Point","coordinates":[85485,95030]},{"type":"Point","coordinates":[85131,95271]},{"type":"Point","coordinates":[85748,95183]},{"type":"Point","coordinates":[85476,95279]},{"type":"Point","coordinates":[85467,95292]},{"type":"Point","coordinates":[85659,95258]},{"type":"Point","coordinates":[85885,95218]},{"type":"Point","coordinates":[85713,95369]},{"type":"Point","coordinates":[85689,95385]},{"type":"Point","coordinates":[85714,95397]},{"type":"Point","coordinates":[85176,95539]},{"type":"Point","coordinates":[84656,95691]},{"type":"Point","coordinates":[84627,95831]},{"type":"Point","coordinates":[85386,95674]},{"type":"Point","coordinates":[85521,95899]},{"type":"Point","coordinates":[85922,95985]},{"type":"Point","coordinates":[84982,96396]},{"type":"Point","coordinates":[85936,96257]},{"type":"Point","coordinates":[85651,96559]},{"type":"Point","coordinates":[85357,96735]},{"type":"Point","coordinates":[85906,97003]},{"type":"Point","coordinates":[85606,97116]},{"type":"Point","coordinates":[85359,97522]},{"type":"Point","coordinates":[83510,98727]},{"type":"Point","coordinates":[83216,99403]},{"type":"Point","coordinates":[83355,99708]},{"type":"Point","coordinates":[82769,99876]},{"type":"Point","coordinates":[83236,99999]},{"type":"Point","coordinates":[22829,86201]},{"type":"Point","coordinates":[22578,86456]},{"type":"Point","coordinates":[22735,86504]},{"type":"Point","coordinates":[22662,86682]},{"type":"Point","coordinates":[23051,86903]},{"type":"Point","coordinates":[22573,86915]},{"type":"Point","coordinates":[22901,86937]},{"type":"Point","coordinates":[22870,86960]},{"type":"Point","coordinates":[22522,86961]},{"type":"Point","coordinates":[22906,86975]},{"type":"Point","coordinates":[22446,86973]},{"type":"Point","coordinates":[22495,86987]},{"type":"Point","coordinates":[22637,86993]},{"type":"Point","coordinates":[22419,87000]},{"type":"Point","coordinates":[22677,87023]},{"type":"Point","coordinates":[22378,87024]},{"type":"Point","coordinates":[22338,87039]},{"type":"Point","coordinates":[22513,87059]},{"type":"Point","coordinates":[22315,87061]},{"type":"Point","coordinates":[22274,87071]},{"type":"Point","coordinates":[22343,87087]},{"type":"Point","coordinates":[22374,87102]},{"type":"Point","coordinates":[22119,87103]},{"type":"Point","coordinates":[22251,87137]},{"type":"Point","coordinates":[22496,87157]},{"type":"Point","coordinates":[22264,87156]},{"type":"Point","coordinates":[22383,87162]},{"type":"Point","coordinates":[22457,87178]},{"type":"Point","coordinates":[22123,87175]},{"type":"Point","coordinates":[22124,87179]},{"type":"Point","coordinates":[22132,87194]},{"type":"Point","coordinates":[23012,87241]},{"type":"Point","coordinates":[22345,87239]},{"type":"Point","coordinates":[22395,87246]},{"type":"Point","coordinates":[22195,87288]},{"type":"Point","coordinates":[22420,87295]},{"type":"Point","coordinates":[22465,87300]},{"type":"Point","coordinates":[22261,87302]},{"type":"Point","coordinates":[23131,87319]},{"type":"Point","coordinates":[22550,87318]},{"type":"Point","coordinates":[22130,87324]},{"type":"Point","coordinates":[22208,87328]},{"type":"Point","coordinates":[22525,87333]},{"type":"Point","coordinates":[22229,87340]},{"type":"Point","coordinates":[22987,87359]},{"type":"Point","coordinates":[22197,87362]},{"type":"Point","coordinates":[22449,87370]},{"type":"Point","coordinates":[22370,87378]},{"type":"Point","coordinates":[22302,87377]},{"type":"Point","coordinates":[22260,87382]},{"type":"Point","coordinates":[22136,87382]},{"type":"Point","coordinates":[22277,87403]},{"type":"Point","coordinates":[22398,87412]},{"type":"Point","coordinates":[22604,87420]},{"type":"Point","coordinates":[22472,87425]},{"type":"Point","coordinates":[22496,87426]},{"type":"Point","coordinates":[22121,87421]},{"type":"Point","coordinates":[22211,87446]},{"type":"Point","coordinates":[22351,87457]},{"type":"Point","coordinates":[22341,87461]},{"type":"Point","coordinates":[22800,87471]},{"type":"Point","coordinates":[22262,87466]},{"type":"Point","coordinates":[22170,87466]},{"type":"Point","coordinates":[22450,87474]},{"type":"Point","coordinates":[22287,87480]},{"type":"Point","coordinates":[22195,87484]},{"type":"Point","coordinates":[22114,87496]},{"type":"Point","coordinates":[22347,87510]},{"type":"Point","coordinates":[22516,87513]},{"type":"Point","coordinates":[22823,87523]},{"type":"Point","coordinates":[23071,87537]},{"type":"Point","coordinates":[22251,87529]},{"type":"Point","coordinates":[22625,87536]},{"type":"Point","coordinates":[22488,87534]},{"type":"Point","coordinates":[22153,87531]},{"type":"Point","coordinates":[22436,87542]},{"type":"Point","coordinates":[22341,87553]},{"type":"Point","coordinates":[22473,87591]},{"type":"Point","coordinates":[22230,87590]},{"type":"Point","coordinates":[22204,87593]},{"type":"Point","coordinates":[22188,87606]},{"type":"Point","coordinates":[22218,87609]},{"type":"Point","coordinates":[22922,87646]},{"type":"Point","coordinates":[22201,87639]},{"type":"Point","coordinates":[22149,87650]},{"type":"Point","coordinates":[22525,87671]},{"type":"Point","coordinates":[22196,87666]},{"type":"Point","coordinates":[22417,87673]},{"type":"Point","coordinates":[22391,87675]},{"type":"Point","coordinates":[22195,87677]},{"type":"Point","coordinates":[22429,87695]},{"type":"Point","coordinates":[22441,87701]},{"type":"Point","coordinates":[22201,87703]},{"type":"Point","coordinates":[22690,87713]},{"type":"Point","coordinates":[22726,87735]},{"type":"Point","coordinates":[22383,87864]},{"type":"Point","coordinates":[23388,87952]},{"type":"Point","coordinates":[22745,88067]},{"type":"Point","coordinates":[22633,88099]},{"type":"Point","coordinates":[22633,88099]},{"type":"Point","coordinates":[22634,88099]},{"type":"Point","coordinates":[22635,88100]},{"type":"Point","coordinates":[22634,88100]},{"type":"Point","coordinates":[22635,88102]},{"type":"Point","coordinates":[22765,88121]},{"type":"Point","coordinates":[22596,88123]},{"type":"Point","coordinates":[23443,88148]},{"type":"Point","coordinates":[22961,88231]},{"type":"Point","coordinates":[22914,88291]},{"type":"Point","coordinates":[22908,88357]},{"type":"Point","coordinates":[22770,88411]},{"type":"Point","coordinates":[26618,88618]},{"type":"Point","coordinates":[25928,88807]},{"type":"Point","coordinates":[25856,88860]},{"type":"Point","coordinates":[25959,88877]},{"type":"Point","coordinates":[25973,88953]},{"type":"Point","coordinates":[26091,89035]},{"type":"Point","coordinates":[26042,89062]},{"type":"Point","coordinates":[26052,89161]},{"type":"Point","coordinates":[26165,89164]},{"type":"Point","coordinates":[26104,89290]},{"type":"Point","coordinates":[25858,89294]},{"type":"Point","coordinates":[25949,89306]},{"type":"Point","coordinates":[26464,89316]},{"type":"Point","coordinates":[25927,89332]},{"type":"Point","coordinates":[25984,89336]},{"type":"Point","coordinates":[26046,89373]},{"type":"Point","coordinates":[26288,89380]},{"type":"Point","coordinates":[26430,89388]},{"type":"Point","coordinates":[25889,89386]},{"type":"Point","coordinates":[26422,89392]},{"type":"Point","coordinates":[26007,89400]},{"type":"Point","coordinates":[26321,89402]},{"type":"Point","coordinates":[26047,89423]},{"type":"Point","coordinates":[26198,89426]},{"type":"Point","coordinates":[26320,89436]},{"type":"Point","coordinates":[25542,89433]},{"type":"Point","coordinates":[25883,89459]},{"type":"Point","coordinates":[26614,89485]},{"type":"Point","coordinates":[25365,89489]},{"type":"Point","coordinates":[26454,89499]},{"type":"Point","coordinates":[26176,89501]},{"type":"Point","coordinates":[26359,89505]},{"type":"Point","coordinates":[26662,89520]},{"type":"Point","coordinates":[26241,89519]},{"type":"Point","coordinates":[26554,89527]},{"type":"Point","coordinates":[26063,89525]},{"type":"Point","coordinates":[25582,89526]},{"type":"Point","coordinates":[25830,89529]},{"type":"Point","coordinates":[26019,89542]},{"type":"Point","coordinates":[25762,89563]},{"type":"Point","coordinates":[26086,89572]},{"type":"Point","coordinates":[26085,89574]},{"type":"Point","coordinates":[26499,89579]},{"type":"Point","coordinates":[25834,89581]},{"type":"Point","coordinates":[26407,89589]},{"type":"Point","coordinates":[26293,89589]},{"type":"Point","coordinates":[26594,89591]},{"type":"Point","coordinates":[25796,89588]},{"type":"Point","coordinates":[26210,89596]},{"type":"Point","coordinates":[26152,89597]},{"type":"Point","coordinates":[26467,89602]},{"type":"Point","coordinates":[26031,89614]},{"type":"Point","coordinates":[26077,89622]},{"type":"Point","coordinates":[26077,89622]},{"type":"Point","coordinates":[25364,89618]},{"type":"Point","coordinates":[26076,89623]},{"type":"Point","coordinates":[26076,89623]},{"type":"Point","coordinates":[26076,89623]},{"type":"Point","coordinates":[26076,89623]},{"type":"Point","coordinates":[26076,89624]},{"type":"Point","coordinates":[26414,89627]},{"type":"Point","coordinates":[25720,89632]},{"type":"Point","coordinates":[25699,89649]},{"type":"Point","coordinates":[26511,89657]},{"type":"Point","coordinates":[26469,89666]},{"type":"Point","coordinates":[26396,89669]},{"type":"Point","coordinates":[25367,89669]},{"type":"Point","coordinates":[26402,89677]},{"type":"Point","coordinates":[25942,89682]},{"type":"Point","coordinates":[26374,89691]},{"type":"Point","coordinates":[25861,89692]},{"type":"Point","coordinates":[26539,89701]},{"type":"Point","coordinates":[26513,89709]},{"type":"Point","coordinates":[26190,89709]},{"type":"Point","coordinates":[25717,89721]},{"type":"Point","coordinates":[25816,89724]},{"type":"Point","coordinates":[25736,89748]},{"type":"Point","coordinates":[26623,89755]},{"type":"Point","coordinates":[25840,89753]},{"type":"Point","coordinates":[26211,89761]},{"type":"Point","coordinates":[26557,89768]},{"type":"Point","coordinates":[26618,89769]},{"type":"Point","coordinates":[25778,89774]},{"type":"Point","coordinates":[26190,89788]},{"type":"Point","coordinates":[26502,89818]},{"type":"Point","coordinates":[26402,89821]},{"type":"Point","coordinates":[26614,89831]},{"type":"Point","coordinates":[26243,89845]},{"type":"Point","coordinates":[25950,89866]},{"type":"Point","coordinates":[26605,89878]},{"type":"Point","coordinates":[26316,89878]},{"type":"Point","coordinates":[25727,89877]},{"type":"Point","coordinates":[26507,89883]},{"type":"Point","coordinates":[26100,89894]},{"type":"Point","coordinates":[25815,89900]},{"type":"Point","coordinates":[26425,89922]},{"type":"Point","coordinates":[25959,89923]},{"type":"Point","coordinates":[26617,89934]},{"type":"Point","coordinates":[26501,89934]},{"type":"Point","coordinates":[26052,89933]},{"type":"Point","coordinates":[26397,89940]},{"type":"Point","coordinates":[26543,89942]},{"type":"Point","coordinates":[25829,89946]},{"type":"Point","coordinates":[26577,89960]},{"type":"Point","coordinates":[25975,89977]},{"type":"Point","coordinates":[26503,89982]},{"type":"Point","coordinates":[26705,89985]},{"type":"Point","coordinates":[26464,90009]},{"type":"Point","coordinates":[26526,90021]},{"type":"Point","coordinates":[25766,90025]},{"type":"Point","coordinates":[25777,90044]},{"type":"Point","coordinates":[25595,90048]},{"type":"Point","coordinates":[25711,90051]},{"type":"Point","coordinates":[25774,90053]},{"type":"Point","coordinates":[26182,90059]},{"type":"Point","coordinates":[26491,90066]},{"type":"Point","coordinates":[26989,90078]},{"type":"Point","coordinates":[26439,90084]},{"type":"Point","coordinates":[26581,90108]},{"type":"Point","coordinates":[26748,90112]},{"type":"Point","coordinates":[26560,90118]},{"type":"Point","coordinates":[26736,90124]},{"type":"Point","coordinates":[26484,90126]},{"type":"Point","coordinates":[26855,90134]},{"type":"Point","coordinates":[26357,90134]},{"type":"Point","coordinates":[26682,90143]},{"type":"Point","coordinates":[26822,90150]},{"type":"Point","coordinates":[26931,90153]},{"type":"Point","coordinates":[26571,90153]},{"type":"Point","coordinates":[26349,90159]},{"type":"Point","coordinates":[26794,90170]},{"type":"Point","coordinates":[26568,90171]},{"type":"Point","coordinates":[26990,90186]},{"type":"Point","coordinates":[26257,90188]},{"type":"Point","coordinates":[26623,90191]},{"type":"Point","coordinates":[26752,90196]},{"type":"Point","coordinates":[26766,90200]},{"type":"Point","coordinates":[26977,90201]},{"type":"Point","coordinates":[26952,90203]},{"type":"Point","coordinates":[26951,90204]},{"type":"Point","coordinates":[26796,90207]},{"type":"Point","coordinates":[26988,90214]},{"type":"Point","coordinates":[26956,90217]},{"type":"Point","coordinates":[26697,90231]},{"type":"Point","coordinates":[26701,90232]},{"type":"Point","coordinates":[26952,90246]},{"type":"Point","coordinates":[26854,90260]},{"type":"Point","coordinates":[26410,90259]},{"type":"Point","coordinates":[26719,90262]},{"type":"Point","coordinates":[26290,90261]},{"type":"Point","coordinates":[26486,90265]},{"type":"Point","coordinates":[26214,90263]},{"type":"Point","coordinates":[26607,90272]},{"type":"Point","coordinates":[26635,90273]},{"type":"Point","coordinates":[26870,90285]},{"type":"Point","coordinates":[26705,90289]},{"type":"Point","coordinates":[26941,90291]},{"type":"Point","coordinates":[26970,90295]},{"type":"Point","coordinates":[26206,90292]},{"type":"Point","coordinates":[26877,90299]},{"type":"Point","coordinates":[26399,90297]},{"type":"Point","coordinates":[26708,90305]},{"type":"Point","coordinates":[26658,90306]},{"type":"Point","coordinates":[26461,90308]},{"type":"Point","coordinates":[26959,90321]},{"type":"Point","coordinates":[26959,90327]},{"type":"Point","coordinates":[26632,90333]},{"type":"Point","coordinates":[26501,90333]},{"type":"Point","coordinates":[27045,90346]},{"type":"Point","coordinates":[26773,90357]},{"type":"Point","coordinates":[26637,90358]},{"type":"Point","coordinates":[26365,90366]},{"type":"Point","coordinates":[26226,90366]},{"type":"Point","coordinates":[26734,90369]},{"type":"Point","coordinates":[26539,90375]},{"type":"Point","coordinates":[26700,90377]},{"type":"Point","coordinates":[26650,90379]},{"type":"Point","coordinates":[26962,90386]},{"type":"Point","coordinates":[26178,90392]},{"type":"Point","coordinates":[26336,90395]},{"type":"Point","coordinates":[26602,90401]},{"type":"Point","coordinates":[26425,90400]},{"type":"Point","coordinates":[26583,90403]},{"type":"Point","coordinates":[26813,90417]},{"type":"Point","coordinates":[26563,90418]},{"type":"Point","coordinates":[26959,90420]},{"type":"Point","coordinates":[26959,90420]},{"type":"Point","coordinates":[26220,90418]},{"type":"Point","coordinates":[26958,90424]},{"type":"Point","coordinates":[26958,90424]},{"type":"Point","coordinates":[26956,90434]},{"type":"Point","coordinates":[26458,90433]},{"type":"Point","coordinates":[26470,90438]},{"type":"Point","coordinates":[26574,90441]},{"type":"Point","coordinates":[26957,90444]},{"type":"Point","coordinates":[26957,90445]},{"type":"Point","coordinates":[26881,90466]},{"type":"Point","coordinates":[26768,90473]},{"type":"Point","coordinates":[26356,90479]},{"type":"Point","coordinates":[26766,90485]},{"type":"Point","coordinates":[26538,90486]},{"type":"Point","coordinates":[26379,90494]},{"type":"Point","coordinates":[26623,90499]},{"type":"Point","coordinates":[27064,90511]},{"type":"Point","coordinates":[26590,90510]},{"type":"Point","coordinates":[26750,90523]},{"type":"Point","coordinates":[26189,90520]},{"type":"Point","coordinates":[26691,90523]},{"type":"Point","coordinates":[27071,90527]},{"type":"Point","coordinates":[26623,90528]},{"type":"Point","coordinates":[26288,90534]},{"type":"Point","coordinates":[26742,90537]},{"type":"Point","coordinates":[26940,90544]},{"type":"Point","coordinates":[27019,90545]},{"type":"Point","coordinates":[26569,90549]},{"type":"Point","coordinates":[26212,90551]},{"type":"Point","coordinates":[26690,90568]},{"type":"Point","coordinates":[26815,90570]},{"type":"Point","coordinates":[26794,90593]},{"type":"Point","coordinates":[26826,90597]},{"type":"Point","coordinates":[26595,90599]},{"type":"Point","coordinates":[26668,90599]},{"type":"Point","coordinates":[26172,90600]},{"type":"Point","coordinates":[26669,90606]},{"type":"Point","coordinates":[26280,90606]},{"type":"Point","coordinates":[26802,90621]},{"type":"Point","coordinates":[26717,90621]},{"type":"Point","coordinates":[26269,90621]},{"type":"Point","coordinates":[26578,90622]},{"type":"Point","coordinates":[26774,90628]},{"type":"Point","coordinates":[26752,90630]},{"type":"Point","coordinates":[27061,90633]},{"type":"Point","coordinates":[26470,90658]},{"type":"Point","coordinates":[26861,90665]},{"type":"Point","coordinates":[27026,90689]},{"type":"Point","coordinates":[26819,90690]},{"type":"Point","coordinates":[26431,90693]},{"type":"Point","coordinates":[27005,90699]},{"type":"Point","coordinates":[26833,90705]},{"type":"Point","coordinates":[26345,90712]},{"type":"Point","coordinates":[26500,90716]},{"type":"Point","coordinates":[26375,90720]},{"type":"Point","coordinates":[26395,90723]},{"type":"Point","coordinates":[26570,90732]},{"type":"Point","coordinates":[26597,90733]},{"type":"Point","coordinates":[26672,90734]},{"type":"Point","coordinates":[26873,90741]},{"type":"Point","coordinates":[26470,90748]},{"type":"Point","coordinates":[27023,90759]},{"type":"Point","coordinates":[26917,90763]},{"type":"Point","coordinates":[26491,90765]},{"type":"Point","coordinates":[26840,90773]},{"type":"Point","coordinates":[26378,90774]},{"type":"Point","coordinates":[26948,90782]},{"type":"Point","coordinates":[26947,90790]},{"type":"Point","coordinates":[26992,90810]},{"type":"Point","coordinates":[26950,90813]},{"type":"Point","coordinates":[26641,90813]},{"type":"Point","coordinates":[26805,90816]},{"type":"Point","coordinates":[26501,90817]},{"type":"Point","coordinates":[26208,90821]},{"type":"Point","coordinates":[26290,90825]},{"type":"Point","coordinates":[28803,91390]},{"type":"Point","coordinates":[28164,91537]},{"type":"Point","coordinates":[29233,91582]},{"type":"Point","coordinates":[29761,91670]},{"type":"Point","coordinates":[29288,91685]},{"type":"Point","coordinates":[29898,91705]},{"type":"Point","coordinates":[30085,91777]},{"type":"Point","coordinates":[30214,91792]},{"type":"Point","coordinates":[29769,91795]},{"type":"Point","coordinates":[29143,91820]},{"type":"Point","coordinates":[28696,91824]},{"type":"Point","coordinates":[29625,91877]},{"type":"Point","coordinates":[30636,91875]},{"type":"Point","coordinates":[30118,91891]},{"type":"Point","coordinates":[30221,91907]},{"type":"Point","coordinates":[29510,91919]},{"type":"Point","coordinates":[30163,91938]},{"type":"Point","coordinates":[29460,92046]},{"type":"Point","coordinates":[29725,92050]},{"type":"Point","coordinates":[29490,92054]},{"type":"Point","coordinates":[29474,92055]},{"type":"Point","coordinates":[30250,92056]},{"type":"Point","coordinates":[29372,92113]},{"type":"Point","coordinates":[29234,92125]},{"type":"Point","coordinates":[29243,92133]},{"type":"Point","coordinates":[29566,92265]},{"type":"Point","coordinates":[29394,92280]},{"type":"Point","coordinates":[29625,92296]},{"type":"Point","coordinates":[29841,92368]},{"type":"Point","coordinates":[30047,92370]},{"type":"Point","coordinates":[29889,92378]},{"type":"Point","coordinates":[29962,92381]},{"type":"Point","coordinates":[30031,92382]},{"type":"Point","coordinates":[30108,92383]},{"type":"Point","coordinates":[29949,92384]},{"type":"Point","coordinates":[30191,92388]},{"type":"Point","coordinates":[29936,92394]},{"type":"Point","coordinates":[30204,92398]},{"type":"Point","coordinates":[29813,92401]},{"type":"Point","coordinates":[30033,92404]},{"type":"Point","coordinates":[30047,92410]},{"type":"Point","coordinates":[29885,92411]},{"type":"Point","coordinates":[30187,92411]},{"type":"Point","coordinates":[30096,92412]},{"type":"Point","coordinates":[30170,92412]},{"type":"Point","coordinates":[29907,92418]},{"type":"Point","coordinates":[29957,92418]},{"type":"Point","coordinates":[30060,92419]},{"type":"Point","coordinates":[29978,92421]},{"type":"Point","coordinates":[30696,92420]},{"type":"Point","coordinates":[30060,92427]},{"type":"Point","coordinates":[30310,92427]},{"type":"Point","coordinates":[30393,92433]},{"type":"Point","coordinates":[30146,92435]},{"type":"Point","coordinates":[29931,92444]},{"type":"Point","coordinates":[30174,92448]},{"type":"Point","coordinates":[30061,92450]},{"type":"Point","coordinates":[30198,92451]},{"type":"Point","coordinates":[30162,92452]},{"type":"Point","coordinates":[29820,92455]},{"type":"Point","coordinates":[30224,92454]},{"type":"Point","coordinates":[30153,92455]},{"type":"Point","coordinates":[30147,92456]},{"type":"Point","coordinates":[30025,92458]},{"type":"Point","coordinates":[30238,92457]},{"type":"Point","coordinates":[30628,92457]},{"type":"Point","coordinates":[30109,92462]},{"type":"Point","coordinates":[29819,92469]},{"type":"Point","coordinates":[30057,92469]},{"type":"Point","coordinates":[30124,92470]},{"type":"Point","coordinates":[30205,92471]},{"type":"Point","coordinates":[30057,92474]},{"type":"Point","coordinates":[29905,92476]},{"type":"Point","coordinates":[29968,92476]},{"type":"Point","coordinates":[29960,92477]},{"type":"Point","coordinates":[30023,92484]},{"type":"Point","coordinates":[29994,92484]},{"type":"Point","coordinates":[30199,92485]},{"type":"Point","coordinates":[29897,92490]},{"type":"Point","coordinates":[30110,92490]},{"type":"Point","coordinates":[29871,92493]},{"type":"Point","coordinates":[30132,92493]},{"type":"Point","coordinates":[30177,92494]},{"type":"Point","coordinates":[29927,92497]},{"type":"Point","coordinates":[30065,92497]},{"type":"Point","coordinates":[29932,92499]},{"type":"Point","coordinates":[29967,92501]},{"type":"Point","coordinates":[29816,92502]},{"type":"Point","coordinates":[29879,92502]},{"type":"Point","coordinates":[29859,92503]},{"type":"Point","coordinates":[30095,92503]},{"type":"Point","coordinates":[30036,92505]},{"type":"Point","coordinates":[29976,92507]},{"type":"Point","coordinates":[29892,92508]},{"type":"Point","coordinates":[30119,92510]},{"type":"Point","coordinates":[29832,92521]},{"type":"Point","coordinates":[30234,92519]},{"type":"Point","coordinates":[30065,92522]},{"type":"Point","coordinates":[29817,92524]},{"type":"Point","coordinates":[30037,92525]},{"type":"Point","coordinates":[29862,92531]},{"type":"Point","coordinates":[30104,92531]},{"type":"Point","coordinates":[29913,92533]},{"type":"Point","coordinates":[29854,92537]},{"type":"Point","coordinates":[30250,92537]},{"type":"Point","coordinates":[30102,92539]},{"type":"Point","coordinates":[30173,92542]},{"type":"Point","coordinates":[30085,92543]},{"type":"Point","coordinates":[29903,92545]},{"type":"Point","coordinates":[30593,92542]},{"type":"Point","coordinates":[30141,92547]},{"type":"Point","coordinates":[30106,92551]},{"type":"Point","coordinates":[29909,92552]},{"type":"Point","coordinates":[29922,92556]},{"type":"Point","coordinates":[29892,92560]},{"type":"Point","coordinates":[29812,92567]},{"type":"Point","coordinates":[30122,92566]},{"type":"Point","coordinates":[30131,92567]},{"type":"Point","coordinates":[29843,92570]},{"type":"Point","coordinates":[30103,92574]},{"type":"Point","coordinates":[29899,92579]},{"type":"Point","coordinates":[29964,92580]},{"type":"Point","coordinates":[30693,92577]},{"type":"Point","coordinates":[30429,92579]},{"type":"Point","coordinates":[30029,92584]},{"type":"Point","coordinates":[30073,92585]},{"type":"Point","coordinates":[30081,92586]},{"type":"Point","coordinates":[29885,92595]},{"type":"Point","coordinates":[29810,92597]},{"type":"Point","coordinates":[29808,92597]},{"type":"Point","coordinates":[29903,92601]},{"type":"Point","coordinates":[30254,92600]},{"type":"Point","coordinates":[30180,92601]},{"type":"Point","coordinates":[30219,92606]},{"type":"Point","coordinates":[30130,92607]},{"type":"Point","coordinates":[29961,92609]},{"type":"Point","coordinates":[30626,92608]},{"type":"Point","coordinates":[29867,92614]},{"type":"Point","coordinates":[30124,92615]},{"type":"Point","coordinates":[30198,92617]},{"type":"Point","coordinates":[30224,92617]},{"type":"Point","coordinates":[30623,92616]},{"type":"Point","coordinates":[30197,92623]},{"type":"Point","coordinates":[30394,92629]},{"type":"Point","coordinates":[30153,92631]},{"type":"Point","coordinates":[30145,92642]},{"type":"Point","coordinates":[30186,92642]},{"type":"Point","coordinates":[30325,92652]},{"type":"Point","coordinates":[29813,92656]},{"type":"Point","coordinates":[29942,92656]},{"type":"Point","coordinates":[30327,92678]},{"type":"Point","coordinates":[30260,92679]},{"type":"Point","coordinates":[29858,92684]},{"type":"Point","coordinates":[29973,92694]},{"type":"Point","coordinates":[30038,92696]},{"type":"Point","coordinates":[30205,92696]},{"type":"Point","coordinates":[30112,92698]},{"type":"Point","coordinates":[29815,92702]},{"type":"Point","coordinates":[30187,92703]},{"type":"Point","coordinates":[30156,92704]},{"type":"Point","coordinates":[29897,92719]},{"type":"Point","coordinates":[29926,92718]},{"type":"Point","coordinates":[30161,92718]},{"type":"Point","coordinates":[30331,92717]},{"type":"Point","coordinates":[30112,92724]},{"type":"Point","coordinates":[30674,92722]},{"type":"Point","coordinates":[30088,92728]},{"type":"Point","coordinates":[29992,92729]},{"type":"Point","coordinates":[30269,92736]},{"type":"Point","coordinates":[29862,92738]},{"type":"Point","coordinates":[29813,92739]},{"type":"Point","coordinates":[29903,92740]},{"type":"Point","coordinates":[30251,92741]},{"type":"Point","coordinates":[30566,92742]},{"type":"Point","coordinates":[29892,92746]},{"type":"Point","coordinates":[30223,92745]},{"type":"Point","coordinates":[30192,92752]},{"type":"Point","coordinates":[30082,92753]},{"type":"Point","coordinates":[30055,92755]},{"type":"Point","coordinates":[30149,92755]},{"type":"Point","coordinates":[30455,92756]},{"type":"Point","coordinates":[30014,92759]},{"type":"Point","coordinates":[30022,92765]},{"type":"Point","coordinates":[30187,92772]},{"type":"Point","coordinates":[30239,92772]},{"type":"Point","coordinates":[29818,92777]},{"type":"Point","coordinates":[30211,92778]},{"type":"Point","coordinates":[30021,92796]},{"type":"Point","coordinates":[30378,92795]},{"type":"Point","coordinates":[30432,92795]},{"type":"Point","coordinates":[30173,92796]},{"type":"Point","coordinates":[29811,92798]},{"type":"Point","coordinates":[30202,92813]},{"type":"Point","coordinates":[30233,92815]},{"type":"Point","coordinates":[29991,92822]},{"type":"Point","coordinates":[30375,92822]},{"type":"Point","coordinates":[29595,92828]},{"type":"Point","coordinates":[29876,92828]},{"type":"Point","coordinates":[30257,92831]},{"type":"Point","coordinates":[29911,92837]},{"type":"Point","coordinates":[30185,92836]},{"type":"Point","coordinates":[30109,92840]},{"type":"Point","coordinates":[30197,92843]},{"type":"Point","coordinates":[29870,92854]},{"type":"Point","coordinates":[29954,92854]},{"type":"Point","coordinates":[30465,92860]},{"type":"Point","coordinates":[30596,92862]},{"type":"Point","coordinates":[29938,92867]},{"type":"Point","coordinates":[30598,92867]},{"type":"Point","coordinates":[30598,92867]},{"type":"Point","coordinates":[30598,92867]},{"type":"Point","coordinates":[30598,92868]},{"type":"Point","coordinates":[30212,92870]},{"type":"Point","coordinates":[30165,92873]},{"type":"Point","coordinates":[30244,92876]},{"type":"Point","coordinates":[29894,92878]},{"type":"Point","coordinates":[29872,92882]},{"type":"Point","coordinates":[30181,92892]},{"type":"Point","coordinates":[30088,92896]},{"type":"Point","coordinates":[30031,92897]},{"type":"Point","coordinates":[30114,92899]},{"type":"Point","coordinates":[30155,92899]},{"type":"Point","coordinates":[30142,92907]},{"type":"Point","coordinates":[30134,92911]},{"type":"Point","coordinates":[30037,92912]},{"type":"Point","coordinates":[30524,92913]},{"type":"Point","coordinates":[30081,92915]},{"type":"Point","coordinates":[30256,92921]},{"type":"Point","coordinates":[29899,92925]},{"type":"Point","coordinates":[29920,92926]},{"type":"Point","coordinates":[30323,92926]},{"type":"Point","coordinates":[29863,92930]},{"type":"Point","coordinates":[30028,92930]},{"type":"Point","coordinates":[30233,92931]},{"type":"Point","coordinates":[30038,92933]},{"type":"Point","coordinates":[29860,92935]},{"type":"Point","coordinates":[29807,92935]},{"type":"Point","coordinates":[30080,92935]},{"type":"Point","coordinates":[29821,92940]},{"type":"Point","coordinates":[30087,92940]},{"type":"Point","coordinates":[30129,92943]},{"type":"Point","coordinates":[30147,92944]},{"type":"Point","coordinates":[30259,92945]},{"type":"Point","coordinates":[30261,92949]},{"type":"Point","coordinates":[29952,92956]},{"type":"Point","coordinates":[30174,92955]},{"type":"Point","coordinates":[30394,92956]},{"type":"Point","coordinates":[29888,92960]},{"type":"Point","coordinates":[29955,92970]},{"type":"Point","coordinates":[30048,92972]},{"type":"Point","coordinates":[30097,92972]},{"type":"Point","coordinates":[30632,92970]},{"type":"Point","coordinates":[30016,92976]},{"type":"Point","coordinates":[30119,92979]},{"type":"Point","coordinates":[29893,92983]},{"type":"Point","coordinates":[30103,92983]},{"type":"Point","coordinates":[29956,92984]},{"type":"Point","coordinates":[30532,92990]},{"type":"Point","coordinates":[30199,92999]},{"type":"Point","coordinates":[29970,93000]},{"type":"Point","coordinates":[29812,93008]},{"type":"Point","coordinates":[30241,93010]},{"type":"Point","coordinates":[29734,93014]},{"type":"Point","coordinates":[30246,93016]},{"type":"Point","coordinates":[30137,93021]},{"type":"Point","coordinates":[30250,93027]},{"type":"Point","coordinates":[30259,93029]},{"type":"Point","coordinates":[30171,93030]},{"type":"Point","coordinates":[30320,93040]},{"type":"Point","coordinates":[30130,93044]},{"type":"Point","coordinates":[30672,93043]},{"type":"Point","coordinates":[30262,93049]},{"type":"Point","coordinates":[30195,93051]},{"type":"Point","coordinates":[30228,93052]},{"type":"Point","coordinates":[30217,93053]},{"type":"Point","coordinates":[29948,93055]},{"type":"Point","coordinates":[29956,93067]},{"type":"Point","coordinates":[30189,93069]},{"type":"Point","coordinates":[29902,93074]},{"type":"Point","coordinates":[29869,93075]},{"type":"Point","coordinates":[30372,93075]},{"type":"Point","coordinates":[29974,93078]},{"type":"Point","coordinates":[30089,93080]},{"type":"Point","coordinates":[29964,93083]},{"type":"Point","coordinates":[29919,93086]},{"type":"Point","coordinates":[30360,93085]},{"type":"Point","coordinates":[30250,93086]},{"type":"Point","coordinates":[30127,93093]},{"type":"Point","coordinates":[30619,93096]},{"type":"Point","coordinates":[29949,93104]},{"type":"Point","coordinates":[29809,93105]},{"type":"Point","coordinates":[29838,93107]},{"type":"Point","coordinates":[29929,93107]},{"type":"Point","coordinates":[29853,93108]},{"type":"Point","coordinates":[30230,93108]},{"type":"Point","coordinates":[29852,93126]},{"type":"Point","coordinates":[30226,93128]},{"type":"Point","coordinates":[30074,93130]},{"type":"Point","coordinates":[30062,93132]},{"type":"Point","coordinates":[30204,93132]},{"type":"Point","coordinates":[30103,93135]},{"type":"Point","coordinates":[29607,93567]},{"type":"Point","coordinates":[31743,94678]},{"type":"Point","coordinates":[31629,95047]},{"type":"Point","coordinates":[31924,95147]},{"type":"Point","coordinates":[31409,95205]},{"type":"Point","coordinates":[32005,95284]},{"type":"Point","coordinates":[31230,95390]},{"type":"Point","coordinates":[32305,95519]},{"type":"Point","coordinates":[31237,95602]},{"type":"Point","coordinates":[31927,95607]},{"type":"Point","coordinates":[32040,95670]},{"type":"Point","coordinates":[30819,95694]},{"type":"Point","coordinates":[31209,95830]},{"type":"Point","coordinates":[31078,95936]},{"type":"Point","coordinates":[32168,95936]},{"type":"Point","coordinates":[31513,95952]},{"type":"Point","coordinates":[32162,95985]},{"type":"Point","coordinates":[32788,96071]},{"type":"Point","coordinates":[31705,96215]},{"type":"Point","coordinates":[32052,96272]},{"type":"Point","coordinates":[30792,96290]},{"type":"Point","coordinates":[32086,96295]},{"type":"Point","coordinates":[32909,96320]},{"type":"Point","coordinates":[31816,96367]},{"type":"Point","coordinates":[30761,96390]},{"type":"Point","coordinates":[32241,96390]},{"type":"Point","coordinates":[31717,96402]},{"type":"Point","coordinates":[31145,96412]},{"type":"Point","coordinates":[31933,96435]},{"type":"Point","coordinates":[30644,96467]},{"type":"Point","coordinates":[32142,96455]},{"type":"Point","coordinates":[30854,96592]},{"type":"Point","coordinates":[30854,96592]},{"type":"Point","coordinates":[30854,96592]},{"type":"Point","coordinates":[31584,96658]},{"type":"Point","coordinates":[32319,96693]},{"type":"Point","coordinates":[30865,96730]},{"type":"Point","coordinates":[30589,96740]},{"type":"Point","coordinates":[32373,96726]},{"type":"Point","coordinates":[30799,96755]},{"type":"Point","coordinates":[31826,96750]},{"type":"Point","coordinates":[30927,96763]},{"type":"Point","coordinates":[32017,96766]},{"type":"Point","coordinates":[31998,96773]},{"type":"Point","coordinates":[30709,96810]},{"type":"Point","coordinates":[30706,96813]},{"type":"Point","coordinates":[31792,96815]},{"type":"Point","coordinates":[30350,96850]},{"type":"Point","coordinates":[32444,96843]},{"type":"Point","coordinates":[32079,96868]},{"type":"Point","coordinates":[30844,96911]},{"type":"Point","coordinates":[30844,96911]},{"type":"Point","coordinates":[31991,96903]},{"type":"Point","coordinates":[30968,96914]},{"type":"Point","coordinates":[30346,96926]},{"type":"Point","coordinates":[30774,96940]},{"type":"Point","coordinates":[30774,96940]},{"type":"Point","coordinates":[32222,96930]},{"type":"Point","coordinates":[32887,96951]},{"type":"Point","coordinates":[32392,96984]},{"type":"Point","coordinates":[32396,97019]},{"type":"Point","coordinates":[32407,97071]},{"type":"Point","coordinates":[32312,97074]},{"type":"Point","coordinates":[30862,97099]},{"type":"Point","coordinates":[32184,97095]},{"type":"Point","coordinates":[33008,97088]},{"type":"Point","coordinates":[32377,97098]},{"type":"Point","coordinates":[32445,97099]},{"type":"Point","coordinates":[32816,97103]},{"type":"Point","coordinates":[32104,97132]},{"type":"Point","coordinates":[30891,97155]},{"type":"Point","coordinates":[30890,97155]},{"type":"Point","coordinates":[32533,97180]},{"type":"Point","coordinates":[31494,97200]},{"type":"Point","coordinates":[31494,97200]},{"type":"Point","coordinates":[32104,97198]},{"type":"Point","coordinates":[32988,97196]},{"type":"Point","coordinates":[32988,97196]},{"type":"Point","coordinates":[30887,97235]},{"type":"Point","coordinates":[32280,97253]},{"type":"Point","coordinates":[32396,97280]},{"type":"Point","coordinates":[32241,97282]},{"type":"Point","coordinates":[32484,97291]},{"type":"Point","coordinates":[32327,97293]},{"type":"Point","coordinates":[30913,97315]},{"type":"Point","coordinates":[30909,97327]},{"type":"Point","coordinates":[30909,97328]},{"type":"Point","coordinates":[32385,97317]},{"type":"Point","coordinates":[32166,97328]},{"type":"Point","coordinates":[32185,97408]},{"type":"Point","coordinates":[30963,97435]},{"type":"Point","coordinates":[32462,97431]},{"type":"Point","coordinates":[30976,97463]},{"type":"Point","coordinates":[32107,97467]},{"type":"Point","coordinates":[30908,97481]},{"type":"Point","coordinates":[30969,97540]},{"type":"Point","coordinates":[32373,97529]},{"type":"Point","coordinates":[32360,97549]},{"type":"Point","coordinates":[32529,97554]},{"type":"Point","coordinates":[32451,97569]},{"type":"Point","coordinates":[32263,97596]},{"type":"Point","coordinates":[32500,97595]},{"type":"Point","coordinates":[30990,97619]},{"type":"Point","coordinates":[32755,97605]},{"type":"Point","coordinates":[31023,97627]},{"type":"Point","coordinates":[32490,97632]},{"type":"Point","coordinates":[32185,97653]},{"type":"Point","coordinates":[32332,97657]},{"type":"Point","coordinates":[31078,97686]},{"type":"Point","coordinates":[32271,97690]},{"type":"Point","coordinates":[32232,97717]},{"type":"Point","coordinates":[31996,98090]},{"type":"Point","coordinates":[31035,98461]},{"type":"Point","coordinates":[31133,98877]},{"type":"Point","coordinates":[31621,99033]},{"type":"Point","coordinates":[31508,99105]}]}},"arcs":[]} +{"type":"Topology","bbox":[18.85013234142872,18.774007841900584,955.4733965562898,605.4005645612752],"transform":{"scale":[0.009366326305411666,0.005866324230436051],"translate":[18.85013234142872,18.774007841900584]},"objects":{"overlay":{"type":"GeometryCollection","geometries":[{"type":"Point","coordinates":[7712,93067]},{"type":"Point","coordinates":[16747,93349]},{"type":"Point","coordinates":[16844,93392]},{"type":"Point","coordinates":[16797,93416]},{"type":"Point","coordinates":[16793,93459]},{"type":"Point","coordinates":[18294,93152]},{"type":"Point","coordinates":[18084,94320]},{"type":"Point","coordinates":[44146,8650]},{"type":"Point","coordinates":[13041,1234]},{"type":"Point","coordinates":[13051,1243]},{"type":"Point","coordinates":[13235,1388]},{"type":"Point","coordinates":[13023,1323]},{"type":"Point","coordinates":[18097,3331]},{"type":"Point","coordinates":[16876,2952]},{"type":"Point","coordinates":[10194,513]},{"type":"Point","coordinates":[10198,522]},{"type":"Point","coordinates":[10197,522]},{"type":"Point","coordinates":[8809,0]},{"type":"Point","coordinates":[11408,1173]},{"type":"Point","coordinates":[11415,1187]},{"type":"Point","coordinates":[11460,1233]},{"type":"Point","coordinates":[22774,5480]},{"type":"Point","coordinates":[11686,1474]},{"type":"Point","coordinates":[11679,1491]},{"type":"Point","coordinates":[22709,5521]},{"type":"Point","coordinates":[11470,1440]},{"type":"Point","coordinates":[11468,1450]},{"type":"Point","coordinates":[11471,1473]},{"type":"Point","coordinates":[8940,355]},{"type":"Point","coordinates":[8986,380]},{"type":"Point","coordinates":[8153,2]},{"type":"Point","coordinates":[11732,1635]},{"type":"Point","coordinates":[8918,411]},{"type":"Point","coordinates":[11406,1537]},{"type":"Point","coordinates":[17636,4010]},{"type":"Point","coordinates":[8863,494]},{"type":"Point","coordinates":[8842,514]},{"type":"Point","coordinates":[15176,3188]},{"type":"Point","coordinates":[12887,2332]},{"type":"Point","coordinates":[12852,2397]},{"type":"Point","coordinates":[12823,2414]},{"type":"Point","coordinates":[41396,9792]},{"type":"Point","coordinates":[12801,2646]},{"type":"Point","coordinates":[11365,2158]},{"type":"Point","coordinates":[11597,2337]},{"type":"Point","coordinates":[11572,2335]},{"type":"Point","coordinates":[11605,2350]},{"type":"Point","coordinates":[7943,812]},{"type":"Point","coordinates":[8542,1142]},{"type":"Point","coordinates":[11602,2511]},{"type":"Point","coordinates":[8544,1212]},{"type":"Point","coordinates":[7924,926]},{"type":"Point","coordinates":[55659,10724]},{"type":"Point","coordinates":[55622,10894]},{"type":"Point","coordinates":[53490,11570]},{"type":"Point","coordinates":[11036,3547]},{"type":"Point","coordinates":[17300,6011]},{"type":"Point","coordinates":[11046,3556]},{"type":"Point","coordinates":[36930,11023]},{"type":"Point","coordinates":[57340,11886]},{"type":"Point","coordinates":[50349,12194]},{"type":"Point","coordinates":[11914,4155]},{"type":"Point","coordinates":[39637,11558]},{"type":"Point","coordinates":[19334,7071]},{"type":"Point","coordinates":[7410,2301]},{"type":"Point","coordinates":[10599,3835]},{"type":"Point","coordinates":[60098,12106]},{"type":"Point","coordinates":[12206,4695]},{"type":"Point","coordinates":[11538,4421]},{"type":"Point","coordinates":[61615,12121]},{"type":"Point","coordinates":[58525,12476]},{"type":"Point","coordinates":[58518,12480]},{"type":"Point","coordinates":[49098,12756]},{"type":"Point","coordinates":[58058,12620]},{"type":"Point","coordinates":[58113,12626]},{"type":"Point","coordinates":[58112,12628]},{"type":"Point","coordinates":[49442,12907]},{"type":"Point","coordinates":[48696,12912]},{"type":"Point","coordinates":[58072,12713]},{"type":"Point","coordinates":[58072,12713]},{"type":"Point","coordinates":[58506,12691]},{"type":"Point","coordinates":[49487,12993]},{"type":"Point","coordinates":[49487,12993]},{"type":"Point","coordinates":[49399,12994]},{"type":"Point","coordinates":[57911,12811]},{"type":"Point","coordinates":[57919,12817]},{"type":"Point","coordinates":[57928,12821]},{"type":"Point","coordinates":[57922,12838]},{"type":"Point","coordinates":[8654,3633]},{"type":"Point","coordinates":[57939,12848]},{"type":"Point","coordinates":[57769,13003]},{"type":"Point","coordinates":[51722,13275]},{"type":"Point","coordinates":[57421,13104]},{"type":"Point","coordinates":[50523,13334]},{"type":"Point","coordinates":[6432,2905]},{"type":"Point","coordinates":[7154,3251]},{"type":"Point","coordinates":[60493,12991]},{"type":"Point","coordinates":[60491,12997]},{"type":"Point","coordinates":[50701,13511]},{"type":"Point","coordinates":[7273,3534]},{"type":"Point","coordinates":[37925,12729]},{"type":"Point","coordinates":[50809,13642]},{"type":"Point","coordinates":[50566,13666]},{"type":"Point","coordinates":[50436,13685]},{"type":"Point","coordinates":[10806,5213]},{"type":"Point","coordinates":[49855,13715]},{"type":"Point","coordinates":[16245,7422]},{"type":"Point","coordinates":[50824,13745]},{"type":"Point","coordinates":[7291,3730]},{"type":"Point","coordinates":[58333,13527]},{"type":"Point","coordinates":[50819,13861]},{"type":"Point","coordinates":[8449,4405]},{"type":"Point","coordinates":[59938,13535]},{"type":"Point","coordinates":[55661,13868]},{"type":"Point","coordinates":[17296,8051]},{"type":"Point","coordinates":[59566,13634]},{"type":"Point","coordinates":[8466,4505]},{"type":"Point","coordinates":[8498,4545]},{"type":"Point","coordinates":[7871,4265]},{"type":"Point","coordinates":[8480,4548]},{"type":"Point","coordinates":[8427,4526]},{"type":"Point","coordinates":[58679,13762]},{"type":"Point","coordinates":[50561,14086]},{"type":"Point","coordinates":[8451,4615]},{"type":"Point","coordinates":[50519,14115]},{"type":"Point","coordinates":[54815,14059]},{"type":"Point","coordinates":[39042,13431]},{"type":"Point","coordinates":[39077,13450]},{"type":"Point","coordinates":[38589,13391]},{"type":"Point","coordinates":[39068,13454]},{"type":"Point","coordinates":[60080,13795]},{"type":"Point","coordinates":[38167,13343]},{"type":"Point","coordinates":[20323,9319]},{"type":"Point","coordinates":[50521,14231]},{"type":"Point","coordinates":[55218,14151]},{"type":"Point","coordinates":[8471,4760]},{"type":"Point","coordinates":[39100,13505]},{"type":"Point","coordinates":[39100,13505]},{"type":"Point","coordinates":[59602,13896]},{"type":"Point","coordinates":[10328,5629]},{"type":"Point","coordinates":[10341,5640]},{"type":"Point","coordinates":[7637,4450]},{"type":"Point","coordinates":[56857,14150]},{"type":"Point","coordinates":[59587,14032]},{"type":"Point","coordinates":[39260,13685]},{"type":"Point","coordinates":[10280,5749]},{"type":"Point","coordinates":[52910,14417]},{"type":"Point","coordinates":[53592,14429]},{"type":"Point","coordinates":[53577,14453]},{"type":"Point","coordinates":[57338,14316]},{"type":"Point","coordinates":[39006,13889]},{"type":"Point","coordinates":[53020,14659]},{"type":"Point","coordinates":[10791,6239]},{"type":"Point","coordinates":[10762,6230]},{"type":"Point","coordinates":[59281,14379]},{"type":"Point","coordinates":[10531,6217]},{"type":"Point","coordinates":[58793,14505]},{"type":"Point","coordinates":[57506,14651]},{"type":"Point","coordinates":[59032,14568]},{"type":"Point","coordinates":[10508,6359]},{"type":"Point","coordinates":[10695,6442]},{"type":"Point","coordinates":[10555,6387]},{"type":"Point","coordinates":[59098,14611]},{"type":"Point","coordinates":[10689,6457]},{"type":"Point","coordinates":[59083,14634]},{"type":"Point","coordinates":[7881,5228]},{"type":"Point","coordinates":[50629,14954]},{"type":"Point","coordinates":[56320,14842]},{"type":"Point","coordinates":[59085,14676]},{"type":"Point","coordinates":[59081,14691]},{"type":"Point","coordinates":[59083,14694]},{"type":"Point","coordinates":[59069,14705]},{"type":"Point","coordinates":[59040,14713]},{"type":"Point","coordinates":[59040,14720]},{"type":"Point","coordinates":[9768,6158]},{"type":"Point","coordinates":[59063,14720]},{"type":"Point","coordinates":[59072,14725]},{"type":"Point","coordinates":[59053,14728]},{"type":"Point","coordinates":[58999,14735]},{"type":"Point","coordinates":[59005,14746]},{"type":"Point","coordinates":[59082,14740]},{"type":"Point","coordinates":[59002,14746]},{"type":"Point","coordinates":[59003,14746]},{"type":"Point","coordinates":[59082,14740]},{"type":"Point","coordinates":[59002,14746]},{"type":"Point","coordinates":[59084,14740]},{"type":"Point","coordinates":[59005,14747]},{"type":"Point","coordinates":[59002,14749]},{"type":"Point","coordinates":[59058,14745]},{"type":"Point","coordinates":[59058,14746]},{"type":"Point","coordinates":[59058,14746]},{"type":"Point","coordinates":[59058,14746]},{"type":"Point","coordinates":[59062,14746]},{"type":"Point","coordinates":[59071,14745]},{"type":"Point","coordinates":[59058,14746]},{"type":"Point","coordinates":[59058,14746]},{"type":"Point","coordinates":[59057,14749]},{"type":"Point","coordinates":[59057,14750]},{"type":"Point","coordinates":[59094,14747]},{"type":"Point","coordinates":[59059,14750]},{"type":"Point","coordinates":[59089,14748]},{"type":"Point","coordinates":[59089,14749]},{"type":"Point","coordinates":[59087,14749]},{"type":"Point","coordinates":[59050,14752]},{"type":"Point","coordinates":[59090,14750]},{"type":"Point","coordinates":[59090,14750]},{"type":"Point","coordinates":[59082,14751]},{"type":"Point","coordinates":[59082,14751]},{"type":"Point","coordinates":[59061,14754]},{"type":"Point","coordinates":[59081,14754]},{"type":"Point","coordinates":[59081,14755]},{"type":"Point","coordinates":[59093,14754]},{"type":"Point","coordinates":[59081,14755]},{"type":"Point","coordinates":[59093,14755]},{"type":"Point","coordinates":[59061,14759]},{"type":"Point","coordinates":[59100,14756]},{"type":"Point","coordinates":[59087,14758]},{"type":"Point","coordinates":[59058,14760]},{"type":"Point","coordinates":[59057,14762]},{"type":"Point","coordinates":[59097,14760]},{"type":"Point","coordinates":[59087,14762]},{"type":"Point","coordinates":[59089,14762]},{"type":"Point","coordinates":[59089,14762]},{"type":"Point","coordinates":[59089,14762]},{"type":"Point","coordinates":[59096,14762]},{"type":"Point","coordinates":[59096,14762]},{"type":"Point","coordinates":[59096,14763]},{"type":"Point","coordinates":[59096,14763]},{"type":"Point","coordinates":[59102,14771]},{"type":"Point","coordinates":[59084,14773]},{"type":"Point","coordinates":[59076,14775]},{"type":"Point","coordinates":[59095,14774]},{"type":"Point","coordinates":[59084,14778]},{"type":"Point","coordinates":[59086,14788]},{"type":"Point","coordinates":[59059,14810]},{"type":"Point","coordinates":[58952,14822]},{"type":"Point","coordinates":[64178,14285]},{"type":"Point","coordinates":[10596,6633]},{"type":"Point","coordinates":[59053,14843]},{"type":"Point","coordinates":[59056,14845]},{"type":"Point","coordinates":[11927,7205]},{"type":"Point","coordinates":[58949,14867]},{"type":"Point","coordinates":[58949,14869]},{"type":"Point","coordinates":[52541,15170]},{"type":"Point","coordinates":[52524,15173]},{"type":"Point","coordinates":[52538,15173]},{"type":"Point","coordinates":[52524,15173]},{"type":"Point","coordinates":[52524,15179]},{"type":"Point","coordinates":[40184,14576]},{"type":"Point","coordinates":[52520,15181]},{"type":"Point","coordinates":[52524,15183]},{"type":"Point","coordinates":[52539,15187]},{"type":"Point","coordinates":[52534,15191]},{"type":"Point","coordinates":[11657,7241]},{"type":"Point","coordinates":[58879,15044]},{"type":"Point","coordinates":[58942,15067]},{"type":"Point","coordinates":[56671,15233]},{"type":"Point","coordinates":[7817,5651]},{"type":"Point","coordinates":[56671,15236]},{"type":"Point","coordinates":[56672,15237]},{"type":"Point","coordinates":[58972,15095]},{"type":"Point","coordinates":[43476,15109]},{"type":"Point","coordinates":[54759,15353]},{"type":"Point","coordinates":[95843,5202]},{"type":"Point","coordinates":[95861,5208]},{"type":"Point","coordinates":[52466,15610]},{"type":"Point","coordinates":[52371,15629]},{"type":"Point","coordinates":[55189,15579]},{"type":"Point","coordinates":[55191,15580]},{"type":"Point","coordinates":[55191,15580]},{"type":"Point","coordinates":[38489,14846]},{"type":"Point","coordinates":[55190,15581]},{"type":"Point","coordinates":[63676,14950]},{"type":"Point","coordinates":[52406,15772]},{"type":"Point","coordinates":[52433,15781]},{"type":"Point","coordinates":[52433,15792]},{"type":"Point","coordinates":[7318,5993]},{"type":"Point","coordinates":[6949,5931]},{"type":"Point","coordinates":[9579,7139]},{"type":"Point","coordinates":[23597,12205]},{"type":"Point","coordinates":[63466,15319]},{"type":"Point","coordinates":[7171,6134]},{"type":"Point","coordinates":[6934,6235]},{"type":"Point","coordinates":[57493,16165]},{"type":"Point","coordinates":[58021,16131]},{"type":"Point","coordinates":[95074,6420]},{"type":"Point","coordinates":[57485,16203]},{"type":"Point","coordinates":[38606,15687]},{"type":"Point","coordinates":[9487,7583]},{"type":"Point","coordinates":[55690,16428]},{"type":"Point","coordinates":[38579,15746]},{"type":"Point","coordinates":[9753,7747]},{"type":"Point","coordinates":[7036,6615]},{"type":"Point","coordinates":[7069,6634]},{"type":"Point","coordinates":[46597,16564]},{"type":"Point","coordinates":[46598,16577]},{"type":"Point","coordinates":[38424,15887]},{"type":"Point","coordinates":[9466,7773]},{"type":"Point","coordinates":[38689,15936]},{"type":"Point","coordinates":[38700,15938]},{"type":"Point","coordinates":[38658,15950]},{"type":"Point","coordinates":[7020,6697]},{"type":"Point","coordinates":[54566,16741]},{"type":"Point","coordinates":[54564,16742]},{"type":"Point","coordinates":[95109,6848]},{"type":"Point","coordinates":[9367,7850]},{"type":"Point","coordinates":[9018,7698]},{"type":"Point","coordinates":[9560,7937]},{"type":"Point","coordinates":[9047,7720]},{"type":"Point","coordinates":[9039,7721]},{"type":"Point","coordinates":[9042,7723]},{"type":"Point","coordinates":[9047,7727]},{"type":"Point","coordinates":[9054,7731]},{"type":"Point","coordinates":[9054,7730]},{"type":"Point","coordinates":[9142,7777]},{"type":"Point","coordinates":[9022,7726]},{"type":"Point","coordinates":[38665,16075]},{"type":"Point","coordinates":[9039,7735]},{"type":"Point","coordinates":[9058,7744]},{"type":"Point","coordinates":[9013,7725]},{"type":"Point","coordinates":[7766,7171]},{"type":"Point","coordinates":[9071,7757]},{"type":"Point","coordinates":[9077,7760]},{"type":"Point","coordinates":[9058,7753]},{"type":"Point","coordinates":[9066,7757]},{"type":"Point","coordinates":[9057,7755]},{"type":"Point","coordinates":[9060,7758]},{"type":"Point","coordinates":[9081,7769]},{"type":"Point","coordinates":[8995,7736]},{"type":"Point","coordinates":[9018,7755]},{"type":"Point","coordinates":[9026,7758]},{"type":"Point","coordinates":[9024,7758]},{"type":"Point","coordinates":[8978,7745]},{"type":"Point","coordinates":[7193,6949]},{"type":"Point","coordinates":[53844,16879]},{"type":"Point","coordinates":[53845,16879]},{"type":"Point","coordinates":[53837,16890]},{"type":"Point","coordinates":[46667,16832]},{"type":"Point","coordinates":[38881,16174]},{"type":"Point","coordinates":[7040,6903]},{"type":"Point","coordinates":[38901,16184]},{"type":"Point","coordinates":[38901,16184]},{"type":"Point","coordinates":[38898,16185]},{"type":"Point","coordinates":[38897,16186]},{"type":"Point","coordinates":[38896,16186]},{"type":"Point","coordinates":[38896,16187]},{"type":"Point","coordinates":[39842,16314]},{"type":"Point","coordinates":[46539,16854]},{"type":"Point","coordinates":[46536,16857]},{"type":"Point","coordinates":[39873,16321]},{"type":"Point","coordinates":[46672,16866]},{"type":"Point","coordinates":[39809,16386]},{"type":"Point","coordinates":[7060,7033]},{"type":"Point","coordinates":[50405,17054]},{"type":"Point","coordinates":[50406,17055]},{"type":"Point","coordinates":[49650,17048]},{"type":"Point","coordinates":[49861,17053]},{"type":"Point","coordinates":[9237,8035]},{"type":"Point","coordinates":[9757,8278]},{"type":"Point","coordinates":[49850,17098]},{"type":"Point","coordinates":[49851,17098]},{"type":"Point","coordinates":[49873,17110]},{"type":"Point","coordinates":[49859,17111]},{"type":"Point","coordinates":[49858,17112]},{"type":"Point","coordinates":[57795,16919]},{"type":"Point","coordinates":[57676,16953]},{"type":"Point","coordinates":[57674,16955]},{"type":"Point","coordinates":[9628,8308]},{"type":"Point","coordinates":[43068,16843]},{"type":"Point","coordinates":[61883,16595]},{"type":"Point","coordinates":[8592,7863]},{"type":"Point","coordinates":[57666,16972]},{"type":"Point","coordinates":[57739,16968]},{"type":"Point","coordinates":[6944,7135]},{"type":"Point","coordinates":[43089,16875]},{"type":"Point","coordinates":[57058,17046]},{"type":"Point","coordinates":[61737,16659]},{"type":"Point","coordinates":[57670,17010]},{"type":"Point","coordinates":[57670,17011]},{"type":"Point","coordinates":[57671,17011]},{"type":"Point","coordinates":[57670,17011]},{"type":"Point","coordinates":[9967,8522]},{"type":"Point","coordinates":[38673,16462]},{"type":"Point","coordinates":[57670,17078]},{"type":"Point","coordinates":[57688,17103]},{"type":"Point","coordinates":[61715,16756]},{"type":"Point","coordinates":[49851,17396]},{"type":"Point","coordinates":[9471,8508]},{"type":"Point","coordinates":[43096,17112]},{"type":"Point","coordinates":[57593,17231]},{"type":"Point","coordinates":[69326,15771]},{"type":"Point","coordinates":[95061,7543]},{"type":"Point","coordinates":[95072,7546]},{"type":"Point","coordinates":[9282,8462]},{"type":"Point","coordinates":[63492,16732]},{"type":"Point","coordinates":[61395,17027]},{"type":"Point","coordinates":[57527,17361]},{"type":"Point","coordinates":[8723,8327]},{"type":"Point","coordinates":[19036,12322]},{"type":"Point","coordinates":[57480,17384]},{"type":"Point","coordinates":[57743,17369]},{"type":"Point","coordinates":[9501,8687]},{"type":"Point","coordinates":[9431,8685]},{"type":"Point","coordinates":[57772,17424]},{"type":"Point","coordinates":[57772,17425]},{"type":"Point","coordinates":[57615,17474]},{"type":"Point","coordinates":[9070,8598]},{"type":"Point","coordinates":[61178,17186]},{"type":"Point","coordinates":[20031,12866]},{"type":"Point","coordinates":[57445,17608]},{"type":"Point","coordinates":[9459,8934]},{"type":"Point","coordinates":[65104,16889]},{"type":"Point","coordinates":[65108,16891]},{"type":"Point","coordinates":[65106,16892]},{"type":"Point","coordinates":[65107,16892]},{"type":"Point","coordinates":[65106,16893]},{"type":"Point","coordinates":[9587,9024]},{"type":"Point","coordinates":[61081,17432]},{"type":"Point","coordinates":[55917,17882]},{"type":"Point","coordinates":[55917,17882]},{"type":"Point","coordinates":[55916,17883]},{"type":"Point","coordinates":[55917,17884]},{"type":"Point","coordinates":[51269,18020]},{"type":"Point","coordinates":[15790,11687]},{"type":"Point","coordinates":[61790,17557]},{"type":"Point","coordinates":[49471,18115]},{"type":"Point","coordinates":[59562,17801]},{"type":"Point","coordinates":[59715,17789]},{"type":"Point","coordinates":[59712,17792]},{"type":"Point","coordinates":[59639,17799]},{"type":"Point","coordinates":[57792,17982]},{"type":"Point","coordinates":[57792,17982]},{"type":"Point","coordinates":[65427,17182]},{"type":"Point","coordinates":[60489,17811]},{"type":"Point","coordinates":[56547,18141]},{"type":"Point","coordinates":[47926,18241]},{"type":"Point","coordinates":[34950,17017]},{"type":"Point","coordinates":[34950,17019]},{"type":"Point","coordinates":[12621,10783]},{"type":"Point","coordinates":[49151,18356]},{"type":"Point","coordinates":[9038,9323]},{"type":"Point","coordinates":[9189,9392]},{"type":"Point","coordinates":[8275,9018]},{"type":"Point","coordinates":[9082,9408]},{"type":"Point","coordinates":[48764,18435]},{"type":"Point","coordinates":[54612,18512]},{"type":"Point","coordinates":[48527,18553]},{"type":"Point","coordinates":[53977,18624]},{"type":"Point","coordinates":[61582,18142]},{"type":"Point","coordinates":[10518,10335]},{"type":"Point","coordinates":[53915,18775]},{"type":"Point","coordinates":[49052,18800]},{"type":"Point","coordinates":[49318,18810]},{"type":"Point","coordinates":[19980,13945]},{"type":"Point","coordinates":[20731,14187]},{"type":"Point","coordinates":[58236,18630]},{"type":"Point","coordinates":[53890,18853]},{"type":"Point","coordinates":[53889,18855]},{"type":"Point","coordinates":[38940,18146]},{"type":"Point","coordinates":[54185,18911]},{"type":"Point","coordinates":[54185,18911]},{"type":"Point","coordinates":[54171,18996]},{"type":"Point","coordinates":[54171,18996]},{"type":"Point","coordinates":[54171,18996]},{"type":"Point","coordinates":[54171,18996]},{"type":"Point","coordinates":[54169,18998]},{"type":"Point","coordinates":[54160,19053]},{"type":"Point","coordinates":[8494,9825]},{"type":"Point","coordinates":[8496,9834]},{"type":"Point","coordinates":[8465,9908]},{"type":"Point","coordinates":[33897,17863]},{"type":"Point","coordinates":[61998,18829]},{"type":"Point","coordinates":[62507,18901]},{"type":"Point","coordinates":[49053,19538]},{"type":"Point","coordinates":[63148,19062]},{"type":"Point","coordinates":[52980,19779]},{"type":"Point","coordinates":[8416,10568]},{"type":"Point","coordinates":[8040,10449]},{"type":"Point","coordinates":[96361,9680]},{"type":"Point","coordinates":[22233,16059]},{"type":"Point","coordinates":[8505,11034]},{"type":"Point","coordinates":[8291,10995]},{"type":"Point","coordinates":[60511,20024]},{"type":"Point","coordinates":[7700,11140]},{"type":"Point","coordinates":[52196,20801]},{"type":"Point","coordinates":[58881,20547]},{"type":"Point","coordinates":[70123,19070]},{"type":"Point","coordinates":[56275,20879]},{"type":"Point","coordinates":[30185,18861]},{"type":"Point","coordinates":[52154,21072]},{"type":"Point","coordinates":[30048,18984]},{"type":"Point","coordinates":[66648,20054]},{"type":"Point","coordinates":[66648,20056]},{"type":"Point","coordinates":[70120,19464]},{"type":"Point","coordinates":[7433,11588]},{"type":"Point","coordinates":[6230,11123]},{"type":"Point","coordinates":[56563,21239]},{"type":"Point","coordinates":[29718,19108]},{"type":"Point","coordinates":[5573,10889]},{"type":"Point","coordinates":[61969,20871]},{"type":"Point","coordinates":[7660,11977]},{"type":"Point","coordinates":[65433,20557]},{"type":"Point","coordinates":[65435,20558]},{"type":"Point","coordinates":[6798,11708]},{"type":"Point","coordinates":[5069,10941]},{"type":"Point","coordinates":[18056,16260]},{"type":"Point","coordinates":[17562,16119]},{"type":"Point","coordinates":[54175,21787]},{"type":"Point","coordinates":[54175,21792]},{"type":"Point","coordinates":[54175,21792]},{"type":"Point","coordinates":[6546,11780]},{"type":"Point","coordinates":[53171,21823]},{"type":"Point","coordinates":[54153,21826]},{"type":"Point","coordinates":[70596,20002]},{"type":"Point","coordinates":[70435,20066]},{"type":"Point","coordinates":[70445,20073]},{"type":"Point","coordinates":[6382,11835]},{"type":"Point","coordinates":[58712,21737]},{"type":"Point","coordinates":[57274,21921]},{"type":"Point","coordinates":[70309,20301]},{"type":"Point","coordinates":[70122,20348]},{"type":"Point","coordinates":[56718,22043]},{"type":"Point","coordinates":[54145,22171]},{"type":"Point","coordinates":[6492,12155]},{"type":"Point","coordinates":[56304,22158]},{"type":"Point","coordinates":[56279,22176]},{"type":"Point","coordinates":[43705,22032]},{"type":"Point","coordinates":[43705,22032]},{"type":"Point","coordinates":[57423,22150]},{"type":"Point","coordinates":[62039,21774]},{"type":"Point","coordinates":[69644,20666]},{"type":"Point","coordinates":[69656,20673]},{"type":"Point","coordinates":[53970,22383]},{"type":"Point","coordinates":[53953,22393]},{"type":"Point","coordinates":[53948,22394]},{"type":"Point","coordinates":[6365,12315]},{"type":"Point","coordinates":[25682,19230]},{"type":"Point","coordinates":[56860,22395]},{"type":"Point","coordinates":[57177,22383]},{"type":"Point","coordinates":[17969,17082]},{"type":"Point","coordinates":[56867,22433]},{"type":"Point","coordinates":[56858,22436]},{"type":"Point","coordinates":[56863,22444]},{"type":"Point","coordinates":[62636,22025]},{"type":"Point","coordinates":[56893,22517]},{"type":"Point","coordinates":[56893,22517]},{"type":"Point","coordinates":[56893,22517]},{"type":"Point","coordinates":[69990,20922]},{"type":"Point","coordinates":[69990,20922]},{"type":"Point","coordinates":[56878,22527]},{"type":"Point","coordinates":[56879,22527]},{"type":"Point","coordinates":[56871,22539]},{"type":"Point","coordinates":[56862,22542]},{"type":"Point","coordinates":[8065,13360]},{"type":"Point","coordinates":[70614,20858]},{"type":"Point","coordinates":[56865,22573]},{"type":"Point","coordinates":[56855,22580]},{"type":"Point","coordinates":[56854,22594]},{"type":"Point","coordinates":[56865,22599]},{"type":"Point","coordinates":[16599,16794]},{"type":"Point","coordinates":[64965,21856]},{"type":"Point","coordinates":[57183,22623]},{"type":"Point","coordinates":[56789,22647]},{"type":"Point","coordinates":[57183,22626]},{"type":"Point","coordinates":[57183,22626]},{"type":"Point","coordinates":[69943,21068]},{"type":"Point","coordinates":[56773,22669]},{"type":"Point","coordinates":[69910,21132]},{"type":"Point","coordinates":[56083,22760]},{"type":"Point","coordinates":[56083,22763]},{"type":"Point","coordinates":[70124,21112]},{"type":"Point","coordinates":[70692,21012]},{"type":"Point","coordinates":[8037,13555]},{"type":"Point","coordinates":[56212,22780]},{"type":"Point","coordinates":[8044,13566]},{"type":"Point","coordinates":[8001,13556]},{"type":"Point","coordinates":[8239,13683]},{"type":"Point","coordinates":[8231,13681]},{"type":"Point","coordinates":[8233,13682]},{"type":"Point","coordinates":[16497,16948]},{"type":"Point","coordinates":[7896,13549]},{"type":"Point","coordinates":[25068,19575]},{"type":"Point","coordinates":[7936,13572]},{"type":"Point","coordinates":[7929,13575]},{"type":"Point","coordinates":[7919,13575]},{"type":"Point","coordinates":[7930,13580]},{"type":"Point","coordinates":[7925,13583]},{"type":"Point","coordinates":[7927,13588]},{"type":"Point","coordinates":[16485,16980]},{"type":"Point","coordinates":[7925,13589]},{"type":"Point","coordinates":[7928,13591]},{"type":"Point","coordinates":[7928,13592]},{"type":"Point","coordinates":[7928,13592]},{"type":"Point","coordinates":[7928,13592]},{"type":"Point","coordinates":[7928,13592]},{"type":"Point","coordinates":[58826,22695]},{"type":"Point","coordinates":[16450,16981]},{"type":"Point","coordinates":[56136,22875]},{"type":"Point","coordinates":[52805,22987]},{"type":"Point","coordinates":[16474,17002]},{"type":"Point","coordinates":[25077,19636]},{"type":"Point","coordinates":[16447,17001]},{"type":"Point","coordinates":[56762,22870]},{"type":"Point","coordinates":[16473,17024]},{"type":"Point","coordinates":[56764,22874]},{"type":"Point","coordinates":[52794,23035]},{"type":"Point","coordinates":[25076,19688]},{"type":"Point","coordinates":[57134,22914]},{"type":"Point","coordinates":[54812,23061]},{"type":"Point","coordinates":[52958,23122]},{"type":"Point","coordinates":[56705,22997]},{"type":"Point","coordinates":[56382,23017]},{"type":"Point","coordinates":[56655,23068]},{"type":"Point","coordinates":[16996,17405]},{"type":"Point","coordinates":[55894,23130]},{"type":"Point","coordinates":[8074,13931]},{"type":"Point","coordinates":[15367,16856]},{"type":"Point","coordinates":[15365,16857]},{"type":"Point","coordinates":[15368,16863]},{"type":"Point","coordinates":[16982,17438]},{"type":"Point","coordinates":[94801,13699]},{"type":"Point","coordinates":[14989,16741]},{"type":"Point","coordinates":[7852,13868]},{"type":"Point","coordinates":[6786,13433]},{"type":"Point","coordinates":[25191,20000]},{"type":"Point","coordinates":[15163,16887]},{"type":"Point","coordinates":[15176,16907]},{"type":"Point","coordinates":[15199,16918]},{"type":"Point","coordinates":[56565,23295]},{"type":"Point","coordinates":[15365,17069]},{"type":"Point","coordinates":[5401,12957]},{"type":"Point","coordinates":[15341,17086]},{"type":"Point","coordinates":[55803,23421]},{"type":"Point","coordinates":[57389,23346]},{"type":"Point","coordinates":[69804,21823]},{"type":"Point","coordinates":[16608,17611]},{"type":"Point","coordinates":[66220,22445]},{"type":"Point","coordinates":[69243,21959]},{"type":"Point","coordinates":[57388,23418]},{"type":"Point","coordinates":[68829,22074]},{"type":"Point","coordinates":[15112,17156]},{"type":"Point","coordinates":[66091,22578]},{"type":"Point","coordinates":[15185,17245]},{"type":"Point","coordinates":[56712,23550]},{"type":"Point","coordinates":[56010,23596]},{"type":"Point","coordinates":[55557,23618]},{"type":"Point","coordinates":[55534,23636]},{"type":"Point","coordinates":[15202,17324]},{"type":"Point","coordinates":[68831,22254]},{"type":"Point","coordinates":[68202,22362]},{"type":"Point","coordinates":[56550,23661]},{"type":"Point","coordinates":[72416,21573]},{"type":"Point","coordinates":[16010,17667]},{"type":"Point","coordinates":[69287,22213]},{"type":"Point","coordinates":[96358,13607]},{"type":"Point","coordinates":[7943,14522]},{"type":"Point","coordinates":[58861,23596]},{"type":"Point","coordinates":[68804,22364]},{"type":"Point","coordinates":[68800,22368]},{"type":"Point","coordinates":[16070,17840]},{"type":"Point","coordinates":[56122,23844]},{"type":"Point","coordinates":[66306,22840]},{"type":"Point","coordinates":[55494,23879]},{"type":"Point","coordinates":[16225,17920]},{"type":"Point","coordinates":[7681,14532]},{"type":"Point","coordinates":[56367,23863]},{"type":"Point","coordinates":[55884,23931]},{"type":"Point","coordinates":[68725,22523]},{"type":"Point","coordinates":[16207,17973]},{"type":"Point","coordinates":[56284,23937]},{"type":"Point","coordinates":[15108,17604]},{"type":"Point","coordinates":[56634,23941]},{"type":"Point","coordinates":[28315,21515]},{"type":"Point","coordinates":[28315,21517]},{"type":"Point","coordinates":[51360,24097]},{"type":"Point","coordinates":[28315,21522]},{"type":"Point","coordinates":[56518,24001]},{"type":"Point","coordinates":[55516,24083]},{"type":"Point","coordinates":[16019,18039]},{"type":"Point","coordinates":[56070,24080]},{"type":"Point","coordinates":[56075,24084]},{"type":"Point","coordinates":[55223,24126]},{"type":"Point","coordinates":[56702,24057]},{"type":"Point","coordinates":[89974,16710]},{"type":"Point","coordinates":[89967,16736]},{"type":"Point","coordinates":[55819,24143]},{"type":"Point","coordinates":[56033,24136]},{"type":"Point","coordinates":[56033,24136]},{"type":"Point","coordinates":[56063,24139]},{"type":"Point","coordinates":[56454,24120]},{"type":"Point","coordinates":[13661,17259]},{"type":"Point","coordinates":[56309,24130]},{"type":"Point","coordinates":[56071,24144]},{"type":"Point","coordinates":[90341,16612]},{"type":"Point","coordinates":[56310,24133]},{"type":"Point","coordinates":[56067,24145]},{"type":"Point","coordinates":[56066,24146]},{"type":"Point","coordinates":[90600,16554]},{"type":"Point","coordinates":[56390,24181]},{"type":"Point","coordinates":[55979,24203]},{"type":"Point","coordinates":[56341,24187]},{"type":"Point","coordinates":[89836,16875]},{"type":"Point","coordinates":[55360,24239]},{"type":"Point","coordinates":[55974,24213]},{"type":"Point","coordinates":[55982,24213]},{"type":"Point","coordinates":[55974,24216]},{"type":"Point","coordinates":[55973,24229]},{"type":"Point","coordinates":[55547,24252]},{"type":"Point","coordinates":[56045,24231]},{"type":"Point","coordinates":[56043,24234]},{"type":"Point","coordinates":[56044,24234]},{"type":"Point","coordinates":[56030,24241]},{"type":"Point","coordinates":[56030,24241]},{"type":"Point","coordinates":[56055,24242]},{"type":"Point","coordinates":[97520,13587]},{"type":"Point","coordinates":[89789,16937]},{"type":"Point","coordinates":[89790,16937]},{"type":"Point","coordinates":[55920,24259]},{"type":"Point","coordinates":[90709,16582]},{"type":"Point","coordinates":[55625,24279]},{"type":"Point","coordinates":[97511,13611]},{"type":"Point","coordinates":[55743,24276]},{"type":"Point","coordinates":[55892,24273]},{"type":"Point","coordinates":[56464,24245]},{"type":"Point","coordinates":[55910,24273]},{"type":"Point","coordinates":[55904,24280]},{"type":"Point","coordinates":[68836,22853]},{"type":"Point","coordinates":[55625,24295]},{"type":"Point","coordinates":[55625,24295]},{"type":"Point","coordinates":[55625,24295]},{"type":"Point","coordinates":[55625,24296]},{"type":"Point","coordinates":[56310,24264]},{"type":"Point","coordinates":[55630,24297]},{"type":"Point","coordinates":[89864,16937]},{"type":"Point","coordinates":[55632,24298]},{"type":"Point","coordinates":[13456,17331]},{"type":"Point","coordinates":[90718,16609]},{"type":"Point","coordinates":[55921,24299]},{"type":"Point","coordinates":[90352,16760]},{"type":"Point","coordinates":[90353,16761]},{"type":"Point","coordinates":[55922,24306]},{"type":"Point","coordinates":[90357,16767]},{"type":"Point","coordinates":[55737,24317]},{"type":"Point","coordinates":[55926,24311]},{"type":"Point","coordinates":[89869,16967]},{"type":"Point","coordinates":[91314,16393]},{"type":"Point","coordinates":[55934,24322]},{"type":"Point","coordinates":[62052,23861]},{"type":"Point","coordinates":[90722,16651]},{"type":"Point","coordinates":[90343,16805]},{"type":"Point","coordinates":[55968,24352]},{"type":"Point","coordinates":[55746,24373]},{"type":"Point","coordinates":[55865,24372]},{"type":"Point","coordinates":[56129,24361]},{"type":"Point","coordinates":[13450,17435]},{"type":"Point","coordinates":[90256,16902]},{"type":"Point","coordinates":[56097,24395]},{"type":"Point","coordinates":[56104,24398]},{"type":"Point","coordinates":[86795,18214]},{"type":"Point","coordinates":[27887,21855]},{"type":"Point","coordinates":[56137,24426]},{"type":"Point","coordinates":[66228,23439]},{"type":"Point","coordinates":[55673,24457]},{"type":"Point","coordinates":[55960,24450]},{"type":"Point","coordinates":[68408,23105]},{"type":"Point","coordinates":[90230,16983]},{"type":"Point","coordinates":[68976,23019]},{"type":"Point","coordinates":[68432,23115]},{"type":"Point","coordinates":[56439,24448]},{"type":"Point","coordinates":[69582,22916]},{"type":"Point","coordinates":[69586,22922]},{"type":"Point","coordinates":[69583,22932]},{"type":"Point","coordinates":[55941,24490]},{"type":"Point","coordinates":[90394,16943]},{"type":"Point","coordinates":[55879,24499]},{"type":"Point","coordinates":[56687,24463]},{"type":"Point","coordinates":[93352,15737]},{"type":"Point","coordinates":[90306,16997]},{"type":"Point","coordinates":[55885,24524]},{"type":"Point","coordinates":[90264,17026]},{"type":"Point","coordinates":[55965,24529]},{"type":"Point","coordinates":[56030,24527]},{"type":"Point","coordinates":[55967,24535]},{"type":"Point","coordinates":[55962,24537]},{"type":"Point","coordinates":[55965,24537]},{"type":"Point","coordinates":[55965,24537]},{"type":"Point","coordinates":[55965,24537]},{"type":"Point","coordinates":[55965,24537]},{"type":"Point","coordinates":[55961,24539]},{"type":"Point","coordinates":[55390,24566]},{"type":"Point","coordinates":[56422,24519]},{"type":"Point","coordinates":[56288,24530]},{"type":"Point","coordinates":[56014,24547]},{"type":"Point","coordinates":[90706,16878]},{"type":"Point","coordinates":[97342,13987]},{"type":"Point","coordinates":[97343,13987]},{"type":"Point","coordinates":[56019,24548]},{"type":"Point","coordinates":[55966,24552]},{"type":"Point","coordinates":[69258,23059]},{"type":"Point","coordinates":[56123,24551]},{"type":"Point","coordinates":[66100,23578]},{"type":"Point","coordinates":[55734,24574]},{"type":"Point","coordinates":[55869,24574]},{"type":"Point","coordinates":[56127,24564]},{"type":"Point","coordinates":[68399,23225]},{"type":"Point","coordinates":[5497,14256]},{"type":"Point","coordinates":[90697,16907]},{"type":"Point","coordinates":[55667,24587]},{"type":"Point","coordinates":[55720,24587]},{"type":"Point","coordinates":[90698,16912]},{"type":"Point","coordinates":[90697,16913]},{"type":"Point","coordinates":[90698,16914]},{"type":"Point","coordinates":[68189,23271]},{"type":"Point","coordinates":[90699,16921]},{"type":"Point","coordinates":[54991,24631]},{"type":"Point","coordinates":[55795,24600]},{"type":"Point","coordinates":[90703,16925]},{"type":"Point","coordinates":[55650,24609]},{"type":"Point","coordinates":[55129,24636]},{"type":"Point","coordinates":[55128,24644]},{"type":"Point","coordinates":[90119,17173]},{"type":"Point","coordinates":[56147,24601]},{"type":"Point","coordinates":[55730,24625]},{"type":"Point","coordinates":[21403,20352]},{"type":"Point","coordinates":[21403,20352]},{"type":"Point","coordinates":[21403,20352]},{"type":"Point","coordinates":[21403,20352]},{"type":"Point","coordinates":[55128,24655]},{"type":"Point","coordinates":[68518,23260]},{"type":"Point","coordinates":[55274,24659]},{"type":"Point","coordinates":[55987,24632]},{"type":"Point","coordinates":[55078,24672]},{"type":"Point","coordinates":[68517,23269]},{"type":"Point","coordinates":[55183,24677]},{"type":"Point","coordinates":[91432,16688]},{"type":"Point","coordinates":[89391,17500]},{"type":"Point","coordinates":[55248,24722]},{"type":"Point","coordinates":[90146,17248]},{"type":"Point","coordinates":[90609,17066]},{"type":"Point","coordinates":[55934,24697]},{"type":"Point","coordinates":[55901,24699]},{"type":"Point","coordinates":[90613,17068]},{"type":"Point","coordinates":[99996,12856]},{"type":"Point","coordinates":[99999,12857]},{"type":"Point","coordinates":[55934,24711]},{"type":"Point","coordinates":[56926,24670]},{"type":"Point","coordinates":[56941,24672]},{"type":"Point","coordinates":[56679,24696]},{"type":"Point","coordinates":[55898,24746]},{"type":"Point","coordinates":[89607,17518]},{"type":"Point","coordinates":[68512,23390]},{"type":"Point","coordinates":[68170,23454]},{"type":"Point","coordinates":[68170,23454]},{"type":"Point","coordinates":[56104,24766]},{"type":"Point","coordinates":[55664,24799]},{"type":"Point","coordinates":[68339,23456]},{"type":"Point","coordinates":[56978,24758]},{"type":"Point","coordinates":[55397,24841]},{"type":"Point","coordinates":[99192,13373]},{"type":"Point","coordinates":[90068,17435]},{"type":"Point","coordinates":[90069,17435]},{"type":"Point","coordinates":[90115,17421]},{"type":"Point","coordinates":[90227,17382]},{"type":"Point","coordinates":[56000,24855]},{"type":"Point","coordinates":[97195,14383]},{"type":"Point","coordinates":[68856,23446]},{"type":"Point","coordinates":[58085,24764]},{"type":"Point","coordinates":[56122,24885]},{"type":"Point","coordinates":[97279,14383]},{"type":"Point","coordinates":[56074,24897]},{"type":"Point","coordinates":[56074,24897]},{"type":"Point","coordinates":[90107,17486]},{"type":"Point","coordinates":[55573,24943]},{"type":"Point","coordinates":[90610,17305]},{"type":"Point","coordinates":[58869,24753]},{"type":"Point","coordinates":[58875,24763]},{"type":"Point","coordinates":[58875,24763]},{"type":"Point","coordinates":[56424,24947]},{"type":"Point","coordinates":[56088,24975]},{"type":"Point","coordinates":[56077,24980]},{"type":"Point","coordinates":[55814,24997]},{"type":"Point","coordinates":[55982,24996]},{"type":"Point","coordinates":[86826,18812]},{"type":"Point","coordinates":[56029,25004]},{"type":"Point","coordinates":[55994,25010]},{"type":"Point","coordinates":[56026,25009]},{"type":"Point","coordinates":[56002,25011]},{"type":"Point","coordinates":[56559,24993]},{"type":"Point","coordinates":[90001,17646]},{"type":"Point","coordinates":[89598,17803]},{"type":"Point","coordinates":[89723,17758]},{"type":"Point","coordinates":[95940,15140]},{"type":"Point","coordinates":[55980,25035]},{"type":"Point","coordinates":[55981,25035]},{"type":"Point","coordinates":[55980,25036]},{"type":"Point","coordinates":[55980,25036]},{"type":"Point","coordinates":[55981,25036]},{"type":"Point","coordinates":[56425,25023]},{"type":"Point","coordinates":[56634,25013]},{"type":"Point","coordinates":[89727,17778]},{"type":"Point","coordinates":[56420,25028]},{"type":"Point","coordinates":[56427,25031]},{"type":"Point","coordinates":[56427,25031]},{"type":"Point","coordinates":[92415,16702]},{"type":"Point","coordinates":[89727,17785]},{"type":"Point","coordinates":[95963,15169]},{"type":"Point","coordinates":[55828,25086]},{"type":"Point","coordinates":[69370,23576]},{"type":"Point","coordinates":[87846,18533]},{"type":"Point","coordinates":[68900,23671]},{"type":"Point","coordinates":[68900,23671]},{"type":"Point","coordinates":[89758,17838]},{"type":"Point","coordinates":[56393,25103]},{"type":"Point","coordinates":[90934,17384]},{"type":"Point","coordinates":[91256,17256]},{"type":"Point","coordinates":[91256,17257]},{"type":"Point","coordinates":[90932,17388]},{"type":"Point","coordinates":[90522,17554]},{"type":"Point","coordinates":[89742,17869]},{"type":"Point","coordinates":[56076,25143]},{"type":"Point","coordinates":[89737,17880]},{"type":"Point","coordinates":[56097,25147]},{"type":"Point","coordinates":[90958,17401]},{"type":"Point","coordinates":[56004,25153]},{"type":"Point","coordinates":[97363,14629]},{"type":"Point","coordinates":[16923,19496]},{"type":"Point","coordinates":[89837,17874]},{"type":"Point","coordinates":[89948,17836]},{"type":"Point","coordinates":[89716,17933]},{"type":"Point","coordinates":[55846,25221]},{"type":"Point","coordinates":[89717,17962]},{"type":"Point","coordinates":[56548,25207]},{"type":"Point","coordinates":[56142,25239]},{"type":"Point","coordinates":[89733,17996]},{"type":"Point","coordinates":[24799,21958]},{"type":"Point","coordinates":[89715,18006]},{"type":"Point","coordinates":[91800,17176]},{"type":"Point","coordinates":[55727,25290]},{"type":"Point","coordinates":[7143,15745]},{"type":"Point","coordinates":[56014,25281]},{"type":"Point","coordinates":[89730,18025]},{"type":"Point","coordinates":[90281,17841]},{"type":"Point","coordinates":[91332,17436]},{"type":"Point","coordinates":[89728,18074]},{"type":"Point","coordinates":[89729,18084]},{"type":"Point","coordinates":[91329,17452]},{"type":"Point","coordinates":[89730,18091]},{"type":"Point","coordinates":[89817,18067]},{"type":"Point","coordinates":[89525,18184]},{"type":"Point","coordinates":[91382,17468]},{"type":"Point","coordinates":[56263,25371]},{"type":"Point","coordinates":[95048,15922]},{"type":"Point","coordinates":[91369,17500]},{"type":"Point","coordinates":[55798,25428]},{"type":"Point","coordinates":[89741,18168]},{"type":"Point","coordinates":[89742,18168]},{"type":"Point","coordinates":[89735,18171]},{"type":"Point","coordinates":[92675,16985]},{"type":"Point","coordinates":[89739,18170]},{"type":"Point","coordinates":[89740,18170]},{"type":"Point","coordinates":[89738,18171]},{"type":"Point","coordinates":[89736,18172]},{"type":"Point","coordinates":[89741,18172]},{"type":"Point","coordinates":[89741,18173]},{"type":"Point","coordinates":[89739,18176]},{"type":"Point","coordinates":[89748,18176]},{"type":"Point","coordinates":[89740,18179]},{"type":"Point","coordinates":[89741,18180]},{"type":"Point","coordinates":[89740,18185]},{"type":"Point","coordinates":[91356,17544]},{"type":"Point","coordinates":[89737,18187]},{"type":"Point","coordinates":[89738,18188]},{"type":"Point","coordinates":[89736,18189]},{"type":"Point","coordinates":[89736,18190]},{"type":"Point","coordinates":[89734,18190]},{"type":"Point","coordinates":[89734,18191]},{"type":"Point","coordinates":[89739,18189]},{"type":"Point","coordinates":[89734,18191]},{"type":"Point","coordinates":[89739,18189]},{"type":"Point","coordinates":[89736,18191]},{"type":"Point","coordinates":[89736,18191]},{"type":"Point","coordinates":[89743,18189]},{"type":"Point","coordinates":[89736,18193]},{"type":"Point","coordinates":[89743,18190]},{"type":"Point","coordinates":[89742,18192]},{"type":"Point","coordinates":[56102,25470]},{"type":"Point","coordinates":[56100,25472]},{"type":"Point","coordinates":[90856,17778]},{"type":"Point","coordinates":[90868,17788]},{"type":"Point","coordinates":[90590,17938]},{"type":"Point","coordinates":[89803,18257]},{"type":"Point","coordinates":[67907,24290]},{"type":"Point","coordinates":[68088,24269]},{"type":"Point","coordinates":[90945,17837]},{"type":"Point","coordinates":[90838,17900]},{"type":"Point","coordinates":[89937,18260]},{"type":"Point","coordinates":[96392,15522]},{"type":"Point","coordinates":[89866,18294]},{"type":"Point","coordinates":[89814,18320]},{"type":"Point","coordinates":[91052,17844]},{"type":"Point","coordinates":[90926,17941]},{"type":"Point","coordinates":[4930,15143]},{"type":"Point","coordinates":[90377,18174]},{"type":"Point","coordinates":[62611,25153]},{"type":"Point","coordinates":[90555,18110]},{"type":"Point","coordinates":[65161,24840]},{"type":"Point","coordinates":[89836,18444]},{"type":"Point","coordinates":[89837,18448]},{"type":"Point","coordinates":[89837,18453]},{"type":"Point","coordinates":[89837,18456]},{"type":"Point","coordinates":[95925,15922]},{"type":"Point","coordinates":[89839,18495]},{"type":"Point","coordinates":[89840,18504]},{"type":"Point","coordinates":[56907,25755]},{"type":"Point","coordinates":[89848,18529]},{"type":"Point","coordinates":[4829,15255]},{"type":"Point","coordinates":[89852,18539]},{"type":"Point","coordinates":[4861,15279]},{"type":"Point","coordinates":[4822,15264]},{"type":"Point","coordinates":[89858,18550]},{"type":"Point","coordinates":[89859,18551]},{"type":"Point","coordinates":[95936,15992]},{"type":"Point","coordinates":[91034,18093]},{"type":"Point","coordinates":[89863,18556]},{"type":"Point","coordinates":[95926,16003]},{"type":"Point","coordinates":[92220,17611]},{"type":"Point","coordinates":[95926,16003]},{"type":"Point","coordinates":[89865,18559]},{"type":"Point","coordinates":[90174,18441]},{"type":"Point","coordinates":[89871,18566]},{"type":"Point","coordinates":[89871,18566]},{"type":"Point","coordinates":[89873,18568]},{"type":"Point","coordinates":[90171,18452]},{"type":"Point","coordinates":[89877,18573]},{"type":"Point","coordinates":[89876,18575]},{"type":"Point","coordinates":[89911,18561]},{"type":"Point","coordinates":[4830,15304]},{"type":"Point","coordinates":[90182,18461]},{"type":"Point","coordinates":[52894,25992]},{"type":"Point","coordinates":[52897,25992]},{"type":"Point","coordinates":[56054,25896]},{"type":"Point","coordinates":[6999,16324]},{"type":"Point","coordinates":[56052,25899]},{"type":"Point","coordinates":[62199,25423]},{"type":"Point","coordinates":[89940,18579]},{"type":"Point","coordinates":[4382,15132]},{"type":"Point","coordinates":[91393,18017]},{"type":"Point","coordinates":[62226,25455]},{"type":"Point","coordinates":[98887,14702]},{"type":"Point","coordinates":[65043,25124]},{"type":"Point","coordinates":[65044,25127]},{"type":"Point","coordinates":[6932,16353]},{"type":"Point","coordinates":[98034,15153]},{"type":"Point","coordinates":[56319,25976]},{"type":"Point","coordinates":[57460,25917]},{"type":"Point","coordinates":[62230,25513]},{"type":"Point","coordinates":[62220,25515]},{"type":"Point","coordinates":[57481,25934]},{"type":"Point","coordinates":[90507,18493]},{"type":"Point","coordinates":[68237,24732]},{"type":"Point","coordinates":[92366,17746]},{"type":"Point","coordinates":[68236,24733]},{"type":"Point","coordinates":[90044,18688]},{"type":"Point","coordinates":[91472,18124]},{"type":"Point","coordinates":[90477,18535]},{"type":"Point","coordinates":[90181,18668]},{"type":"Point","coordinates":[90176,18671]},{"type":"Point","coordinates":[90265,18652]},{"type":"Point","coordinates":[90157,18695]},{"type":"Point","coordinates":[90073,18735]},{"type":"Point","coordinates":[4429,15355]},{"type":"Point","coordinates":[90014,18771]},{"type":"Point","coordinates":[90021,18771]},{"type":"Point","coordinates":[90001,18784]},{"type":"Point","coordinates":[90028,18775]},{"type":"Point","coordinates":[97312,15650]},{"type":"Point","coordinates":[90359,18650]},{"type":"Point","coordinates":[90355,18654]},{"type":"Point","coordinates":[90123,18753]},{"type":"Point","coordinates":[90122,18765]},{"type":"Point","coordinates":[55587,26176]},{"type":"Point","coordinates":[7167,16668]},{"type":"Point","coordinates":[55586,26188]},{"type":"Point","coordinates":[90112,18787]},{"type":"Point","coordinates":[90113,18787]},{"type":"Point","coordinates":[90440,18663]},{"type":"Point","coordinates":[55568,26199]},{"type":"Point","coordinates":[90111,18797]},{"type":"Point","coordinates":[90827,18522]},{"type":"Point","coordinates":[90081,18817]},{"type":"Point","coordinates":[91412,18310]},{"type":"Point","coordinates":[56069,26209]},{"type":"Point","coordinates":[56068,26212]},{"type":"Point","coordinates":[91408,18318]},{"type":"Point","coordinates":[25767,23173]},{"type":"Point","coordinates":[91433,18318]},{"type":"Point","coordinates":[91559,18271]},{"type":"Point","coordinates":[91552,18275]},{"type":"Point","coordinates":[56036,26232]},{"type":"Point","coordinates":[91553,18275]},{"type":"Point","coordinates":[91531,18285]},{"type":"Point","coordinates":[89762,18988]},{"type":"Point","coordinates":[91392,18344]},{"type":"Point","coordinates":[91560,18277]},{"type":"Point","coordinates":[56077,26236]},{"type":"Point","coordinates":[91390,18349]},{"type":"Point","coordinates":[56087,26238]},{"type":"Point","coordinates":[90092,18867]},{"type":"Point","coordinates":[91387,18354]},{"type":"Point","coordinates":[97957,15483]},{"type":"Point","coordinates":[90056,18901]},{"type":"Point","coordinates":[91567,18300]},{"type":"Point","coordinates":[38334,25585]},{"type":"Point","coordinates":[90436,18778]},{"type":"Point","coordinates":[90436,18780]},{"type":"Point","coordinates":[96467,16210]},{"type":"Point","coordinates":[90439,18782]},{"type":"Point","coordinates":[96465,16213]},{"type":"Point","coordinates":[90162,18900]},{"type":"Point","coordinates":[91361,18425]},{"type":"Point","coordinates":[90355,18826]},{"type":"Point","coordinates":[90074,18939]},{"type":"Point","coordinates":[90070,18944]},{"type":"Point","coordinates":[90919,18615]},{"type":"Point","coordinates":[90165,18914]},{"type":"Point","coordinates":[37594,25550]},{"type":"Point","coordinates":[91351,18461]},{"type":"Point","coordinates":[91349,18471]},{"type":"Point","coordinates":[90105,18979]},{"type":"Point","coordinates":[89110,19364]},{"type":"Point","coordinates":[91343,18491]},{"type":"Point","coordinates":[90113,18981]},{"type":"Point","coordinates":[90624,18792]},{"type":"Point","coordinates":[90124,18990]},{"type":"Point","coordinates":[90102,19002]},{"type":"Point","coordinates":[91341,18517]},{"type":"Point","coordinates":[91315,18533]},{"type":"Point","coordinates":[91315,18535]},{"type":"Point","coordinates":[91413,18498]},{"type":"Point","coordinates":[91373,18521]},{"type":"Point","coordinates":[91338,18538]},{"type":"Point","coordinates":[90953,18696]},{"type":"Point","coordinates":[91378,18527]},{"type":"Point","coordinates":[91551,18458]},{"type":"Point","coordinates":[91426,18519]},{"type":"Point","coordinates":[90470,18903]},{"type":"Point","coordinates":[91332,18561]},{"type":"Point","coordinates":[91332,18562]},{"type":"Point","coordinates":[91332,18562]},{"type":"Point","coordinates":[90465,18909]},{"type":"Point","coordinates":[90468,18908]},{"type":"Point","coordinates":[90464,18910]},{"type":"Point","coordinates":[91387,18541]},{"type":"Point","coordinates":[91387,18542]},{"type":"Point","coordinates":[91385,18543]},{"type":"Point","coordinates":[91411,18534]},{"type":"Point","coordinates":[91409,18535]},{"type":"Point","coordinates":[90470,18914]},{"type":"Point","coordinates":[90337,18967]},{"type":"Point","coordinates":[90337,18967]},{"type":"Point","coordinates":[91330,18573]},{"type":"Point","coordinates":[91373,18559]},{"type":"Point","coordinates":[90474,18922]},{"type":"Point","coordinates":[91363,18569]},{"type":"Point","coordinates":[91381,18564]},{"type":"Point","coordinates":[86754,20324]},{"type":"Point","coordinates":[91423,18552]},{"type":"Point","coordinates":[91355,18581]},{"type":"Point","coordinates":[91638,18467]},{"type":"Point","coordinates":[91471,18537]},{"type":"Point","coordinates":[91422,18557]},{"type":"Point","coordinates":[91422,18557]},{"type":"Point","coordinates":[90481,18935]},{"type":"Point","coordinates":[91409,18566]},{"type":"Point","coordinates":[93718,17605]},{"type":"Point","coordinates":[91420,18565]},{"type":"Point","coordinates":[91433,18562]},{"type":"Point","coordinates":[91029,18726]},{"type":"Point","coordinates":[7431,17106]},{"type":"Point","coordinates":[91419,18573]},{"type":"Point","coordinates":[91331,18611]},{"type":"Point","coordinates":[91036,18730]},{"type":"Point","coordinates":[7445,17121]},{"type":"Point","coordinates":[91433,18576]},{"type":"Point","coordinates":[91415,18587]},{"type":"Point","coordinates":[91330,18623]},{"type":"Point","coordinates":[91330,18623]},{"type":"Point","coordinates":[91436,18582]},{"type":"Point","coordinates":[91330,18627]},{"type":"Point","coordinates":[90030,19142]},{"type":"Point","coordinates":[91432,18587]},{"type":"Point","coordinates":[90468,18972]},{"type":"Point","coordinates":[91481,18568]},{"type":"Point","coordinates":[91480,18571]},{"type":"Point","coordinates":[91480,18571]},{"type":"Point","coordinates":[90542,18948]},{"type":"Point","coordinates":[90073,19133]},{"type":"Point","coordinates":[91399,18608]},{"type":"Point","coordinates":[91363,18624]},{"type":"Point","coordinates":[91331,18637]},{"type":"Point","coordinates":[91431,18598]},{"type":"Point","coordinates":[91399,18612]},{"type":"Point","coordinates":[91332,18639]},{"type":"Point","coordinates":[91332,18639]},{"type":"Point","coordinates":[91431,18599]},{"type":"Point","coordinates":[90080,19137]},{"type":"Point","coordinates":[92954,17974]},{"type":"Point","coordinates":[91399,18615]},{"type":"Point","coordinates":[91454,18593]},{"type":"Point","coordinates":[91333,18645]},{"type":"Point","coordinates":[91454,18596]},{"type":"Point","coordinates":[91365,18632]},{"type":"Point","coordinates":[91455,18597]},{"type":"Point","coordinates":[91455,18598]},{"type":"Point","coordinates":[91373,18632]},{"type":"Point","coordinates":[91339,18647]},{"type":"Point","coordinates":[91401,18623]},{"type":"Point","coordinates":[91430,18612]},{"type":"Point","coordinates":[91333,18652]},{"type":"Point","coordinates":[6571,16769]},{"type":"Point","coordinates":[91423,18618]},{"type":"Point","coordinates":[91324,18658]},{"type":"Point","coordinates":[91422,18619]},{"type":"Point","coordinates":[91419,18621]},{"type":"Point","coordinates":[91335,18655]},{"type":"Point","coordinates":[91364,18643]},{"type":"Point","coordinates":[91403,18628]},{"type":"Point","coordinates":[91304,18670]},{"type":"Point","coordinates":[91435,18617]},{"type":"Point","coordinates":[91286,18678]},{"type":"Point","coordinates":[91308,18671]},{"type":"Point","coordinates":[91335,18662]},{"type":"Point","coordinates":[91398,18636]},{"type":"Point","coordinates":[91377,18645]},{"type":"Point","coordinates":[91376,18646]},{"type":"Point","coordinates":[91404,18635]},{"type":"Point","coordinates":[91436,18623]},{"type":"Point","coordinates":[91397,18640]},{"type":"Point","coordinates":[91331,18668]},{"type":"Point","coordinates":[91556,18577]},{"type":"Point","coordinates":[91335,18666]},{"type":"Point","coordinates":[91471,18612]},{"type":"Point","coordinates":[91486,18607]},{"type":"Point","coordinates":[91335,18668]},{"type":"Point","coordinates":[91439,18626]},{"type":"Point","coordinates":[91454,18620]},{"type":"Point","coordinates":[91335,18668]},{"type":"Point","coordinates":[91309,18680]},{"type":"Point","coordinates":[91439,18630]},{"type":"Point","coordinates":[91408,18643]},{"type":"Point","coordinates":[91470,18619]},{"type":"Point","coordinates":[90545,18991]},{"type":"Point","coordinates":[91471,18623]},{"type":"Point","coordinates":[91485,18619]},{"type":"Point","coordinates":[91336,18680]},{"type":"Point","coordinates":[91485,18622]},{"type":"Point","coordinates":[91485,18622]},{"type":"Point","coordinates":[91360,18673]},{"type":"Point","coordinates":[91308,18695]},{"type":"Point","coordinates":[91396,18661]},{"type":"Point","coordinates":[91297,18701]},{"type":"Point","coordinates":[91517,18613]},{"type":"Point","coordinates":[91359,18678]},{"type":"Point","coordinates":[91394,18664]},{"type":"Point","coordinates":[91402,18662]},{"type":"Point","coordinates":[91309,18699]},{"type":"Point","coordinates":[91445,18645]},{"type":"Point","coordinates":[91402,18662]},{"type":"Point","coordinates":[91402,18662]},{"type":"Point","coordinates":[91343,18688]},{"type":"Point","coordinates":[91404,18663]},{"type":"Point","coordinates":[91404,18663]},{"type":"Point","coordinates":[91484,18633]},{"type":"Point","coordinates":[91393,18669]},{"type":"Point","coordinates":[91513,18621]},{"type":"Point","coordinates":[91334,18693]},{"type":"Point","coordinates":[91334,18694]},{"type":"Point","coordinates":[91328,18698]},{"type":"Point","coordinates":[91465,18643]},{"type":"Point","coordinates":[91320,18704]},{"type":"Point","coordinates":[91320,18704]},{"type":"Point","coordinates":[91506,18629]},{"type":"Point","coordinates":[91504,18630]},{"type":"Point","coordinates":[90415,19067]},{"type":"Point","coordinates":[91333,18702]},{"type":"Point","coordinates":[91392,18680]},{"type":"Point","coordinates":[91365,18692]},{"type":"Point","coordinates":[91482,18645]},{"type":"Point","coordinates":[91329,18707]},{"type":"Point","coordinates":[91357,18699]},{"type":"Point","coordinates":[91957,18455]},{"type":"Point","coordinates":[91325,18713]},{"type":"Point","coordinates":[91391,18687]},{"type":"Point","coordinates":[91320,18716]},{"type":"Point","coordinates":[91318,18717]},{"type":"Point","coordinates":[91329,18713]},{"type":"Point","coordinates":[91494,18646]},{"type":"Point","coordinates":[90933,18872]},{"type":"Point","coordinates":[90933,18872]},{"type":"Point","coordinates":[90933,18872]},{"type":"Point","coordinates":[90933,18872]},{"type":"Point","coordinates":[90933,18872]},{"type":"Point","coordinates":[90933,18872]},{"type":"Point","coordinates":[91324,18716]},{"type":"Point","coordinates":[91417,18680]},{"type":"Point","coordinates":[90957,18865]},{"type":"Point","coordinates":[90957,18865]},{"type":"Point","coordinates":[91521,18638]},{"type":"Point","coordinates":[89278,19521]},{"type":"Point","coordinates":[91390,18693]},{"type":"Point","coordinates":[90610,19005]},{"type":"Point","coordinates":[91482,18658]},{"type":"Point","coordinates":[91249,18756]},{"type":"Point","coordinates":[91422,18687]},{"type":"Point","coordinates":[91369,18709]},{"type":"Point","coordinates":[92718,18157]},{"type":"Point","coordinates":[91415,18693]},{"type":"Point","coordinates":[91370,18712]},{"type":"Point","coordinates":[91339,18725]},{"type":"Point","coordinates":[91347,18722]},{"type":"Point","coordinates":[91329,18731]},{"type":"Point","coordinates":[91396,18706]},{"type":"Point","coordinates":[91310,18740]},{"type":"Point","coordinates":[98464,15584]},{"type":"Point","coordinates":[91428,18697]},{"type":"Point","coordinates":[91309,18750]},{"type":"Point","coordinates":[91369,18726]},{"type":"Point","coordinates":[91352,18734]},{"type":"Point","coordinates":[91325,18747]},{"type":"Point","coordinates":[91378,18726]},{"type":"Point","coordinates":[90413,19113]},{"type":"Point","coordinates":[91358,18737]},{"type":"Point","coordinates":[91349,18742]},{"type":"Point","coordinates":[91433,18709]},{"type":"Point","coordinates":[91349,18743]},{"type":"Point","coordinates":[91437,18709]},{"type":"Point","coordinates":[91349,18749]},{"type":"Point","coordinates":[91443,18712]},{"type":"Point","coordinates":[91443,18712]},{"type":"Point","coordinates":[91560,18665]},{"type":"Point","coordinates":[91323,18761]},{"type":"Point","coordinates":[89857,19341]},{"type":"Point","coordinates":[91348,18752]},{"type":"Point","coordinates":[98473,15605]},{"type":"Point","coordinates":[91684,18616]},{"type":"Point","coordinates":[91560,18667]},{"type":"Point","coordinates":[91299,18773]},{"type":"Point","coordinates":[98740,15477]},{"type":"Point","coordinates":[91395,18735]},{"type":"Point","coordinates":[98470,15610]},{"type":"Point","coordinates":[91347,18756]},{"type":"Point","coordinates":[91448,18716]},{"type":"Point","coordinates":[91300,18780]},{"type":"Point","coordinates":[98473,15613]},{"type":"Point","coordinates":[91346,18763]},{"type":"Point","coordinates":[91439,18725]},{"type":"Point","coordinates":[91439,18726]},{"type":"Point","coordinates":[91699,18622]},{"type":"Point","coordinates":[91346,18765]},{"type":"Point","coordinates":[91338,18769]},{"type":"Point","coordinates":[98478,15616]},{"type":"Point","coordinates":[91346,18766]},{"type":"Point","coordinates":[91346,18766]},{"type":"Point","coordinates":[91471,18716]},{"type":"Point","coordinates":[91346,18766]},{"type":"Point","coordinates":[91478,18714]},{"type":"Point","coordinates":[91472,18717]},{"type":"Point","coordinates":[91370,18758]},{"type":"Point","coordinates":[90502,19105]},{"type":"Point","coordinates":[91298,18789]},{"type":"Point","coordinates":[91493,18712]},{"type":"Point","coordinates":[91544,18691]},{"type":"Point","coordinates":[43578,26469]},{"type":"Point","coordinates":[91458,18729]},{"type":"Point","coordinates":[91345,18775]},{"type":"Point","coordinates":[91317,18788]},{"type":"Point","coordinates":[91295,18798]},{"type":"Point","coordinates":[91508,18713]},{"type":"Point","coordinates":[91508,18713]},{"type":"Point","coordinates":[91512,18712]},{"type":"Point","coordinates":[90783,19004]},{"type":"Point","coordinates":[91344,18780]},{"type":"Point","coordinates":[91396,18760]},{"type":"Point","coordinates":[91369,18772]},{"type":"Point","coordinates":[91384,18767]},{"type":"Point","coordinates":[91345,18783]},{"type":"Point","coordinates":[91425,18751]},{"type":"Point","coordinates":[91459,18738]},{"type":"Point","coordinates":[91287,18807]},{"type":"Point","coordinates":[91335,18789]},{"type":"Point","coordinates":[91330,18791]},{"type":"Point","coordinates":[91426,18754]},{"type":"Point","coordinates":[91365,18779]},{"type":"Point","coordinates":[91302,18805]},{"type":"Point","coordinates":[91424,18758]},{"type":"Point","coordinates":[91402,18767]},{"type":"Point","coordinates":[91304,18807]},{"type":"Point","coordinates":[93274,17992]},{"type":"Point","coordinates":[91480,18736]},{"type":"Point","coordinates":[91424,18760]},{"type":"Point","coordinates":[91424,18760]},{"type":"Point","coordinates":[91345,18792]},{"type":"Point","coordinates":[91366,18785]},{"type":"Point","coordinates":[91509,18727]},{"type":"Point","coordinates":[91366,18786]},{"type":"Point","coordinates":[91366,18786]},{"type":"Point","coordinates":[90489,19137]},{"type":"Point","coordinates":[90489,19137]},{"type":"Point","coordinates":[90488,19138]},{"type":"Point","coordinates":[90487,19138]},{"type":"Point","coordinates":[90488,19138]},{"type":"Point","coordinates":[90490,19137]},{"type":"Point","coordinates":[91345,18797]},{"type":"Point","coordinates":[90489,19138]},{"type":"Point","coordinates":[90490,19138]},{"type":"Point","coordinates":[98323,15722]},{"type":"Point","coordinates":[98483,15646]},{"type":"Point","coordinates":[95383,17084]},{"type":"Point","coordinates":[91397,18778]},{"type":"Point","coordinates":[91431,18766]},{"type":"Point","coordinates":[91414,18774]},{"type":"Point","coordinates":[91414,18774]},{"type":"Point","coordinates":[98452,15665]},{"type":"Point","coordinates":[91288,18826]},{"type":"Point","coordinates":[91423,18772]},{"type":"Point","coordinates":[91342,18805]},{"type":"Point","coordinates":[91573,18712]},{"type":"Point","coordinates":[91342,18806]},{"type":"Point","coordinates":[90487,19147]},{"type":"Point","coordinates":[90487,19147]},{"type":"Point","coordinates":[91328,18812]},{"type":"Point","coordinates":[90493,19145]},{"type":"Point","coordinates":[91317,18817]},{"type":"Point","coordinates":[91335,18812]},{"type":"Point","coordinates":[91476,18755]},{"type":"Point","coordinates":[91289,18831]},{"type":"Point","coordinates":[91417,18780]},{"type":"Point","coordinates":[90487,19151]},{"type":"Point","coordinates":[6322,16818]},{"type":"Point","coordinates":[91434,18774]},{"type":"Point","coordinates":[91423,18781]},{"type":"Point","coordinates":[91435,18776]},{"type":"Point","coordinates":[90486,19156]},{"type":"Point","coordinates":[91400,18792]},{"type":"Point","coordinates":[91266,18847]},{"type":"Point","coordinates":[91192,18877]},{"type":"Point","coordinates":[90488,19157]},{"type":"Point","coordinates":[91302,18835]},{"type":"Point","coordinates":[91436,18782]},{"type":"Point","coordinates":[91475,18766]},{"type":"Point","coordinates":[91315,18831]},{"type":"Point","coordinates":[91406,18795]},{"type":"Point","coordinates":[91356,18816]},{"type":"Point","coordinates":[91356,18816]},{"type":"Point","coordinates":[91358,18818]},{"type":"Point","coordinates":[91365,18815]},{"type":"Point","coordinates":[91407,18803]},{"type":"Point","coordinates":[91297,18847]},{"type":"Point","coordinates":[90783,19054]},{"type":"Point","coordinates":[91365,18824]},{"type":"Point","coordinates":[91365,18825]},{"type":"Point","coordinates":[91313,18847]},{"type":"Point","coordinates":[91396,18816]},{"type":"Point","coordinates":[91387,18823]},{"type":"Point","coordinates":[91409,18815]},{"type":"Point","coordinates":[91474,18790]},{"type":"Point","coordinates":[91438,18805]},{"type":"Point","coordinates":[91368,18834]},{"type":"Point","coordinates":[91471,18794]},{"type":"Point","coordinates":[91400,18824]},{"type":"Point","coordinates":[91400,18824]},{"type":"Point","coordinates":[90296,19264]},{"type":"Point","coordinates":[91407,18823]},{"type":"Point","coordinates":[91407,18823]},{"type":"Point","coordinates":[91407,18823]},{"type":"Point","coordinates":[91298,18867]},{"type":"Point","coordinates":[91493,18790]},{"type":"Point","coordinates":[91407,18825]},{"type":"Point","coordinates":[90913,19024]},{"type":"Point","coordinates":[91408,18827]},{"type":"Point","coordinates":[91343,18855]},{"type":"Point","coordinates":[91343,18855]},{"type":"Point","coordinates":[91343,18855]},{"type":"Point","coordinates":[91366,18847]},{"type":"Point","coordinates":[91497,18795]},{"type":"Point","coordinates":[91498,18795]},{"type":"Point","coordinates":[91419,18827]},{"type":"Point","coordinates":[91587,18761]},{"type":"Point","coordinates":[91587,18762]},{"type":"Point","coordinates":[91437,18824]},{"type":"Point","coordinates":[54626,26775]},{"type":"Point","coordinates":[91298,18880]},{"type":"Point","coordinates":[91298,18880]},{"type":"Point","coordinates":[91305,18879]},{"type":"Point","coordinates":[91592,18763]},{"type":"Point","coordinates":[91398,18842]},{"type":"Point","coordinates":[91348,18863]},{"type":"Point","coordinates":[91294,18887]},{"type":"Point","coordinates":[91467,18818]},{"type":"Point","coordinates":[91398,18847]},{"type":"Point","coordinates":[91467,18819]},{"type":"Point","coordinates":[88645,19918]},{"type":"Point","coordinates":[69751,25157]},{"type":"Point","coordinates":[91293,18895]},{"type":"Point","coordinates":[91293,18897]},{"type":"Point","coordinates":[91363,18869]},{"type":"Point","coordinates":[91229,18925]},{"type":"Point","coordinates":[91361,18872]},{"type":"Point","coordinates":[91465,18831]},{"type":"Point","coordinates":[91363,18873]},{"type":"Point","coordinates":[91304,18897]},{"type":"Point","coordinates":[91228,18928]},{"type":"Point","coordinates":[91362,18874]},{"type":"Point","coordinates":[90096,19377]},{"type":"Point","coordinates":[90929,19052]},{"type":"Point","coordinates":[90929,19052]},{"type":"Point","coordinates":[91346,18885]},{"type":"Point","coordinates":[91389,18869]},{"type":"Point","coordinates":[91463,18839]},{"type":"Point","coordinates":[90930,19053]},{"type":"Point","coordinates":[90930,19054]},{"type":"Point","coordinates":[91358,18883]},{"type":"Point","coordinates":[91358,18883]},{"type":"Point","coordinates":[61789,26310]},{"type":"Point","coordinates":[90931,19054]},{"type":"Point","coordinates":[90931,19054]},{"type":"Point","coordinates":[90932,19055]},{"type":"Point","coordinates":[91355,18886]},{"type":"Point","coordinates":[91441,18852]},{"type":"Point","coordinates":[91464,18844]},{"type":"Point","coordinates":[91464,18844]},{"type":"Point","coordinates":[98534,15717]},{"type":"Point","coordinates":[91400,18871]},{"type":"Point","coordinates":[91401,18872]},{"type":"Point","coordinates":[91345,18894]},{"type":"Point","coordinates":[91398,18874]},{"type":"Point","coordinates":[91352,18893]},{"type":"Point","coordinates":[91351,18893]},{"type":"Point","coordinates":[91351,18896]},{"type":"Point","coordinates":[91605,18794]},{"type":"Point","coordinates":[91506,18835]},{"type":"Point","coordinates":[98371,15803]},{"type":"Point","coordinates":[91605,18796]},{"type":"Point","coordinates":[91339,18904]},{"type":"Point","coordinates":[87622,20328]},{"type":"Point","coordinates":[91509,18836]},{"type":"Point","coordinates":[91342,18904]},{"type":"Point","coordinates":[91510,18836]},{"type":"Point","coordinates":[91385,18886]},{"type":"Point","coordinates":[91406,18878]},{"type":"Point","coordinates":[91256,18939]},{"type":"Point","coordinates":[91465,18856]},{"type":"Point","coordinates":[91318,18916]},{"type":"Point","coordinates":[91341,18911]},{"type":"Point","coordinates":[91508,18846]},{"type":"Point","coordinates":[91395,18894]},{"type":"Point","coordinates":[91628,18802]},{"type":"Point","coordinates":[91480,18862]},{"type":"Point","coordinates":[91354,18915]},{"type":"Point","coordinates":[91355,18916]},{"type":"Point","coordinates":[91271,18949]},{"type":"Point","coordinates":[91392,18901]},{"type":"Point","coordinates":[91345,18921]},{"type":"Point","coordinates":[91271,18952]},{"type":"Point","coordinates":[91500,18861]},{"type":"Point","coordinates":[91224,18973]},{"type":"Point","coordinates":[91357,18922]},{"type":"Point","coordinates":[91358,18922]},{"type":"Point","coordinates":[91394,18908]},{"type":"Point","coordinates":[6602,17066]},{"type":"Point","coordinates":[91407,18905]},{"type":"Point","coordinates":[91436,18894]},{"type":"Point","coordinates":[91408,18906]},{"type":"Point","coordinates":[91329,18940]},{"type":"Point","coordinates":[88712,19958]},{"type":"Point","coordinates":[91505,18870]},{"type":"Point","coordinates":[91392,18916]},{"type":"Point","coordinates":[91326,18948]},{"type":"Point","coordinates":[91499,18879]},{"type":"Point","coordinates":[91483,18887]},{"type":"Point","coordinates":[91433,18911]},{"type":"Point","coordinates":[91419,18917]},{"type":"Point","coordinates":[91587,18850]},{"type":"Point","coordinates":[91586,18851]},{"type":"Point","coordinates":[91585,18852]},{"type":"Point","coordinates":[91586,18852]},{"type":"Point","coordinates":[91372,18941]},{"type":"Point","coordinates":[12278,19469]},{"type":"Point","coordinates":[64195,26098]},{"type":"Point","coordinates":[91373,18945]},{"type":"Point","coordinates":[12276,19472]},{"type":"Point","coordinates":[90787,19181]},{"type":"Point","coordinates":[91595,18857]},{"type":"Point","coordinates":[91226,19007]},{"type":"Point","coordinates":[91403,18941]},{"type":"Point","coordinates":[56910,26778]},{"type":"Point","coordinates":[91421,18942]},{"type":"Point","coordinates":[91492,18913]},{"type":"Point","coordinates":[91418,18946]},{"type":"Point","coordinates":[91329,18982]},{"type":"Point","coordinates":[91278,19007]},{"type":"Point","coordinates":[91280,19006]},{"type":"Point","coordinates":[91438,18943]},{"type":"Point","coordinates":[91419,18951]},{"type":"Point","coordinates":[91451,18939]},{"type":"Point","coordinates":[53840,26919]},{"type":"Point","coordinates":[91375,18973]},{"type":"Point","coordinates":[91447,18945]},{"type":"Point","coordinates":[91458,18940]},{"type":"Point","coordinates":[12285,19506]},{"type":"Point","coordinates":[91458,18942]},{"type":"Point","coordinates":[12279,19505]},{"type":"Point","coordinates":[91527,18916]},{"type":"Point","coordinates":[91390,18975]},{"type":"Point","coordinates":[91454,18954]},{"type":"Point","coordinates":[91421,18968]},{"type":"Point","coordinates":[91275,19029]},{"type":"Point","coordinates":[91420,18976]},{"type":"Point","coordinates":[88978,19932]},{"type":"Point","coordinates":[91370,18998]},{"type":"Point","coordinates":[88545,20105]},{"type":"Point","coordinates":[12290,19541]},{"type":"Point","coordinates":[91031,19149]},{"type":"Point","coordinates":[91356,19022]},{"type":"Point","coordinates":[91256,19062]},{"type":"Point","coordinates":[91216,19079]},{"type":"Point","coordinates":[91325,19036]},{"type":"Point","coordinates":[88543,20115]},{"type":"Point","coordinates":[88517,20127]},{"type":"Point","coordinates":[88896,19989]},{"type":"Point","coordinates":[91257,19074]},{"type":"Point","coordinates":[91507,18975]},{"type":"Point","coordinates":[91442,19003]},{"type":"Point","coordinates":[91216,19095]},{"type":"Point","coordinates":[91580,18952]},{"type":"Point","coordinates":[94433,17753]},{"type":"Point","coordinates":[91507,18983]},{"type":"Point","coordinates":[12321,19583]},{"type":"Point","coordinates":[12324,19585]},{"type":"Point","coordinates":[91374,19041]},{"type":"Point","coordinates":[91370,19046]},{"type":"Point","coordinates":[91404,19036]},{"type":"Point","coordinates":[91246,19102]},{"type":"Point","coordinates":[88710,20088]},{"type":"Point","coordinates":[91251,19102]},{"type":"Point","coordinates":[91252,19103]},{"type":"Point","coordinates":[91481,19011]},{"type":"Point","coordinates":[91249,19105]},{"type":"Point","coordinates":[91249,19106]},{"type":"Point","coordinates":[91292,19092]},{"type":"Point","coordinates":[91252,19108]},{"type":"Point","coordinates":[91252,19108]},{"type":"Point","coordinates":[91255,19108]},{"type":"Point","coordinates":[91255,19109]},{"type":"Point","coordinates":[91255,19109]},{"type":"Point","coordinates":[91250,19111]},{"type":"Point","coordinates":[91250,19111]},{"type":"Point","coordinates":[91250,19111]},{"type":"Point","coordinates":[91250,19111]},{"type":"Point","coordinates":[91256,19111]},{"type":"Point","coordinates":[96128,17032]},{"type":"Point","coordinates":[91542,19003]},{"type":"Point","coordinates":[91543,19003]},{"type":"Point","coordinates":[65561,26040]},{"type":"Point","coordinates":[91326,19093]},{"type":"Point","coordinates":[91466,19038]},{"type":"Point","coordinates":[91466,19038]},{"type":"Point","coordinates":[91259,19122]},{"type":"Point","coordinates":[91529,19017]},{"type":"Point","coordinates":[91519,19022]},{"type":"Point","coordinates":[91559,19006]},{"type":"Point","coordinates":[91484,19037]},{"type":"Point","coordinates":[91780,18917]},{"type":"Point","coordinates":[91478,19042]},{"type":"Point","coordinates":[91261,19131]},{"type":"Point","coordinates":[91262,19131]},{"type":"Point","coordinates":[90177,19563]},{"type":"Point","coordinates":[91261,19136]},{"type":"Point","coordinates":[12282,19622]},{"type":"Point","coordinates":[91263,19140]},{"type":"Point","coordinates":[91333,19112]},{"type":"Point","coordinates":[64525,26207]},{"type":"Point","coordinates":[91554,19026]},{"type":"Point","coordinates":[91984,18853]},{"type":"Point","coordinates":[91984,18856]},{"type":"Point","coordinates":[88532,20210]},{"type":"Point","coordinates":[91289,19145]},{"type":"Point","coordinates":[90104,19616]},{"type":"Point","coordinates":[90104,19616]},{"type":"Point","coordinates":[91524,19057]},{"type":"Point","coordinates":[49817,27087]},{"type":"Point","coordinates":[91261,19168]},{"type":"Point","coordinates":[91547,19054]},{"type":"Point","coordinates":[91547,19055]},{"type":"Point","coordinates":[91369,19129]},{"type":"Point","coordinates":[91260,19181]},{"type":"Point","coordinates":[91329,19155]},{"type":"Point","coordinates":[91266,19181]},{"type":"Point","coordinates":[91254,19185]},{"type":"Point","coordinates":[91257,19185]},{"type":"Point","coordinates":[91244,19191]},{"type":"Point","coordinates":[91298,19169]},{"type":"Point","coordinates":[91279,19178]},{"type":"Point","coordinates":[91265,19184]},{"type":"Point","coordinates":[91289,19175]},{"type":"Point","coordinates":[91255,19189]},{"type":"Point","coordinates":[91314,19167]},{"type":"Point","coordinates":[91249,19195]},{"type":"Point","coordinates":[91251,19196]},{"type":"Point","coordinates":[91243,19200]},{"type":"Point","coordinates":[91252,19196]},{"type":"Point","coordinates":[91353,19160]},{"type":"Point","coordinates":[91242,19207]},{"type":"Point","coordinates":[91242,19207]},{"type":"Point","coordinates":[91270,19197]},{"type":"Point","coordinates":[91252,19205]},{"type":"Point","coordinates":[91245,19209]},{"type":"Point","coordinates":[91251,19207]},{"type":"Point","coordinates":[91279,19197]},{"type":"Point","coordinates":[91280,19198]},{"type":"Point","coordinates":[89500,19900]},{"type":"Point","coordinates":[91282,19200]},{"type":"Point","coordinates":[91282,19201]},{"type":"Point","coordinates":[91231,19221]},{"type":"Point","coordinates":[91262,19209]},{"type":"Point","coordinates":[91271,19208]},{"type":"Point","coordinates":[91270,19210]},{"type":"Point","coordinates":[91265,19214]},{"type":"Point","coordinates":[89618,19861]},{"type":"Point","coordinates":[91266,19216]},{"type":"Point","coordinates":[91266,19216]},{"type":"Point","coordinates":[91268,19215]},{"type":"Point","coordinates":[91268,19215]},{"type":"Point","coordinates":[91237,19230]},{"type":"Point","coordinates":[91280,19214]},{"type":"Point","coordinates":[90952,19346]},{"type":"Point","coordinates":[91273,19219]},{"type":"Point","coordinates":[91265,19224]},{"type":"Point","coordinates":[91265,19225]},{"type":"Point","coordinates":[91609,19087]},{"type":"Point","coordinates":[90957,19352]},{"type":"Point","coordinates":[91450,19162]},{"type":"Point","coordinates":[91452,19163]},{"type":"Point","coordinates":[91360,19203]},{"type":"Point","coordinates":[91229,19256]},{"type":"Point","coordinates":[91811,19023]},{"type":"Point","coordinates":[91454,19173]},{"type":"Point","coordinates":[88877,20188]},{"type":"Point","coordinates":[91283,19254]},{"type":"Point","coordinates":[91453,19188]},{"type":"Point","coordinates":[91525,19163]},{"type":"Point","coordinates":[91366,19229]},{"type":"Point","coordinates":[91293,19261]},{"type":"Point","coordinates":[60031,26820]},{"type":"Point","coordinates":[60031,26820]},{"type":"Point","coordinates":[88884,20200]},{"type":"Point","coordinates":[88884,20200]},{"type":"Point","coordinates":[88884,20200]},{"type":"Point","coordinates":[91298,19263]},{"type":"Point","coordinates":[88885,20203]},{"type":"Point","coordinates":[91838,19046]},{"type":"Point","coordinates":[91301,19264]},{"type":"Point","coordinates":[98028,16328]},{"type":"Point","coordinates":[90057,19780]},{"type":"Point","coordinates":[91376,19259]},{"type":"Point","coordinates":[91375,19260]},{"type":"Point","coordinates":[91450,19245]},{"type":"Point","coordinates":[90590,19590]},{"type":"Point","coordinates":[6402,17339]},{"type":"Point","coordinates":[91436,19256]},{"type":"Point","coordinates":[91430,19261]},{"type":"Point","coordinates":[91239,19340]},{"type":"Point","coordinates":[91287,19321]},{"type":"Point","coordinates":[91287,19322]},{"type":"Point","coordinates":[97105,16808]},{"type":"Point","coordinates":[91327,19311]},{"type":"Point","coordinates":[91456,19259]},{"type":"Point","coordinates":[91308,19322]},{"type":"Point","coordinates":[95960,17336]},{"type":"Point","coordinates":[91328,19315]},{"type":"Point","coordinates":[91632,19192]},{"type":"Point","coordinates":[91726,19160]},{"type":"Point","coordinates":[91730,19159]},{"type":"Point","coordinates":[91352,19314]},{"type":"Point","coordinates":[91713,19169]},{"type":"Point","coordinates":[91240,19387]},{"type":"Point","coordinates":[85239,21611]},{"type":"Point","coordinates":[90940,19526]},{"type":"Point","coordinates":[91428,19333]},{"type":"Point","coordinates":[64264,26493]},{"type":"Point","coordinates":[20131,22615]},{"type":"Point","coordinates":[85188,21664]},{"type":"Point","coordinates":[90724,19651]},{"type":"Point","coordinates":[91296,19425]},{"type":"Point","coordinates":[91297,19426]},{"type":"Point","coordinates":[91271,19438]},{"type":"Point","coordinates":[86783,21135]},{"type":"Point","coordinates":[91191,19491]},{"type":"Point","coordinates":[90893,19614]},{"type":"Point","coordinates":[56962,27233]},{"type":"Point","coordinates":[91245,19491]},{"type":"Point","coordinates":[90569,19779]},{"type":"Point","coordinates":[90892,19654]},{"type":"Point","coordinates":[90532,19798]},{"type":"Point","coordinates":[90536,19797]},{"type":"Point","coordinates":[90532,19799]},{"type":"Point","coordinates":[90532,19799]},{"type":"Point","coordinates":[90532,19799]},{"type":"Point","coordinates":[90537,19798]},{"type":"Point","coordinates":[90537,19799]},{"type":"Point","coordinates":[91312,19495]},{"type":"Point","coordinates":[89987,20019]},{"type":"Point","coordinates":[91312,19497]},{"type":"Point","coordinates":[91193,19552]},{"type":"Point","coordinates":[90667,19763]},{"type":"Point","coordinates":[91288,19519]},{"type":"Point","coordinates":[91293,19520]},{"type":"Point","coordinates":[91293,19520]},{"type":"Point","coordinates":[91296,19520]},{"type":"Point","coordinates":[91301,19518]},{"type":"Point","coordinates":[4774,16804]},{"type":"Point","coordinates":[91282,19529]},{"type":"Point","coordinates":[91282,19531]},{"type":"Point","coordinates":[18389,22217]},{"type":"Point","coordinates":[91295,19550]},{"type":"Point","coordinates":[91774,19368]},{"type":"Point","coordinates":[7109,17919]},{"type":"Point","coordinates":[4780,16876]},{"type":"Point","coordinates":[87580,21021]},{"type":"Point","coordinates":[87580,21021]},{"type":"Point","coordinates":[57156,27361]},{"type":"Point","coordinates":[54490,27486]},{"type":"Point","coordinates":[91517,19520]},{"type":"Point","coordinates":[90576,19902]},{"type":"Point","coordinates":[87593,21039]},{"type":"Point","coordinates":[90653,19882]},{"type":"Point","coordinates":[87594,21040]},{"type":"Point","coordinates":[90654,19885]},{"type":"Point","coordinates":[90962,19763]},{"type":"Point","coordinates":[90644,19895]},{"type":"Point","coordinates":[5225,17130]},{"type":"Point","coordinates":[54463,27515]},{"type":"Point","coordinates":[95199,18005]},{"type":"Point","coordinates":[91504,19569]},{"type":"Point","coordinates":[91207,19706]},{"type":"Point","coordinates":[91385,19638]},{"type":"Point","coordinates":[90239,20100]},{"type":"Point","coordinates":[90495,20001]},{"type":"Point","coordinates":[91183,19733]},{"type":"Point","coordinates":[91193,19732]},{"type":"Point","coordinates":[91192,19732]},{"type":"Point","coordinates":[90486,20019]},{"type":"Point","coordinates":[7063,18028]},{"type":"Point","coordinates":[50471,27630]},{"type":"Point","coordinates":[90602,19998]},{"type":"Point","coordinates":[90602,20000]},{"type":"Point","coordinates":[90602,20000]},{"type":"Point","coordinates":[91198,19818]},{"type":"Point","coordinates":[91197,19820]},{"type":"Point","coordinates":[57060,27538]},{"type":"Point","coordinates":[19133,22700]},{"type":"Point","coordinates":[20542,23138]},{"type":"Point","coordinates":[4795,17098]},{"type":"Point","coordinates":[19119,22713]},{"type":"Point","coordinates":[19099,22718]},{"type":"Point","coordinates":[57868,27541]},{"type":"Point","coordinates":[19131,22753]},{"type":"Point","coordinates":[7235,18264]},{"type":"Point","coordinates":[7026,18188]},{"type":"Point","coordinates":[93772,18856]},{"type":"Point","coordinates":[7242,18290]},{"type":"Point","coordinates":[7253,18296]},{"type":"Point","coordinates":[96570,17620]},{"type":"Point","coordinates":[92407,19433]},{"type":"Point","coordinates":[91382,19865]},{"type":"Point","coordinates":[7162,18286]},{"type":"Point","coordinates":[7017,18224]},{"type":"Point","coordinates":[91297,19926]},{"type":"Point","coordinates":[91688,19769]},{"type":"Point","coordinates":[90116,20399]},{"type":"Point","coordinates":[93781,18908]},{"type":"Point","coordinates":[91312,19932]},{"type":"Point","coordinates":[90612,20244]},{"type":"Point","coordinates":[91591,19859]},{"type":"Point","coordinates":[7015,18290]},{"type":"Point","coordinates":[57331,27719]},{"type":"Point","coordinates":[96491,17758]},{"type":"Point","coordinates":[92238,19603]},{"type":"Point","coordinates":[92469,19513]},{"type":"Point","coordinates":[90368,20365]},{"type":"Point","coordinates":[91829,19795]},{"type":"Point","coordinates":[90052,20506]},{"type":"Point","coordinates":[91293,20025]},{"type":"Point","coordinates":[90235,20445]},{"type":"Point","coordinates":[92250,19658]},{"type":"Point","coordinates":[65394,26984]},{"type":"Point","coordinates":[92238,19670]},{"type":"Point","coordinates":[92238,19673]},{"type":"Point","coordinates":[92237,19674]},{"type":"Point","coordinates":[7311,18506]},{"type":"Point","coordinates":[91831,19853]},{"type":"Point","coordinates":[91412,20030]},{"type":"Point","coordinates":[93836,19028]},{"type":"Point","coordinates":[96625,17805]},{"type":"Point","coordinates":[97570,17370]},{"type":"Point","coordinates":[90541,20398]},{"type":"Point","coordinates":[90418,20449]},{"type":"Point","coordinates":[90014,20623]},{"type":"Point","coordinates":[90156,20570]},{"type":"Point","coordinates":[85241,22354]},{"type":"Point","coordinates":[57278,27883]},{"type":"Point","coordinates":[90389,20510]},{"type":"Point","coordinates":[90386,20513]},{"type":"Point","coordinates":[90390,20513]},{"type":"Point","coordinates":[90390,20513]},{"type":"Point","coordinates":[50601,28082]},{"type":"Point","coordinates":[50595,28085]},{"type":"Point","coordinates":[90395,20534]},{"type":"Point","coordinates":[96549,17935]},{"type":"Point","coordinates":[90412,20544]},{"type":"Point","coordinates":[57315,27928]},{"type":"Point","coordinates":[90339,20584]},{"type":"Point","coordinates":[90660,20459]},{"type":"Point","coordinates":[7178,18602]},{"type":"Point","coordinates":[7180,18606]},{"type":"Point","coordinates":[61885,27584]},{"type":"Point","coordinates":[91363,20205]},{"type":"Point","coordinates":[7102,18581]},{"type":"Point","coordinates":[91350,20217]},{"type":"Point","coordinates":[91350,20219]},{"type":"Point","coordinates":[57368,27970]},{"type":"Point","coordinates":[91252,20264]},{"type":"Point","coordinates":[90333,20639]},{"type":"Point","coordinates":[90333,20639]},{"type":"Point","coordinates":[92192,19900]},{"type":"Point","coordinates":[7095,18616]},{"type":"Point","coordinates":[91643,20148]},{"type":"Point","coordinates":[91645,20159]},{"type":"Point","coordinates":[88650,21321]},{"type":"Point","coordinates":[94082,19145]},{"type":"Point","coordinates":[96728,17984]},{"type":"Point","coordinates":[68399,26816]},{"type":"Point","coordinates":[94271,19111]},{"type":"Point","coordinates":[92244,19976]},{"type":"Point","coordinates":[91367,20333]},{"type":"Point","coordinates":[38645,27524]},{"type":"Point","coordinates":[90154,20827]},{"type":"Point","coordinates":[92066,20071]},{"type":"Point","coordinates":[90572,20671]},{"type":"Point","coordinates":[3005,16837]},{"type":"Point","coordinates":[90715,20640]},{"type":"Point","coordinates":[90452,20744]},{"type":"Point","coordinates":[91135,20520]},{"type":"Point","coordinates":[85690,22534]},{"type":"Point","coordinates":[91319,20458]},{"type":"Point","coordinates":[90132,20926]},{"type":"Point","coordinates":[59145,28069]},{"type":"Point","coordinates":[59176,28072]},{"type":"Point","coordinates":[91399,20444]},{"type":"Point","coordinates":[90909,20641]},{"type":"Point","coordinates":[92190,20132]},{"type":"Point","coordinates":[90163,20953]},{"type":"Point","coordinates":[90118,20972]},{"type":"Point","coordinates":[5157,17987]},{"type":"Point","coordinates":[91314,20522]},{"type":"Point","coordinates":[91315,20522]},{"type":"Point","coordinates":[63875,27652]},{"type":"Point","coordinates":[61838,27885]},{"type":"Point","coordinates":[90638,20795]},{"type":"Point","coordinates":[95876,18591]},{"type":"Point","coordinates":[95874,18595]},{"type":"Point","coordinates":[90639,20798]},{"type":"Point","coordinates":[90182,20979]},{"type":"Point","coordinates":[50519,28442]},{"type":"Point","coordinates":[61753,27902]},{"type":"Point","coordinates":[92166,20193]},{"type":"Point","coordinates":[61754,27909]},{"type":"Point","coordinates":[95850,18621]},{"type":"Point","coordinates":[90433,20896]},{"type":"Point","coordinates":[91814,20364]},{"type":"Point","coordinates":[90649,20866]},{"type":"Point","coordinates":[90516,20920]},{"type":"Point","coordinates":[91606,20492]},{"type":"Point","coordinates":[91792,20448]},{"type":"Point","coordinates":[90413,20999]},{"type":"Point","coordinates":[91684,20503]},{"type":"Point","coordinates":[91690,20501]},{"type":"Point","coordinates":[91690,20501]},{"type":"Point","coordinates":[91690,20501]},{"type":"Point","coordinates":[91685,20504]},{"type":"Point","coordinates":[5576,18327]},{"type":"Point","coordinates":[91685,20507]},{"type":"Point","coordinates":[92136,20336]},{"type":"Point","coordinates":[91689,20518]},{"type":"Point","coordinates":[91689,20519]},{"type":"Point","coordinates":[95890,18743]},{"type":"Point","coordinates":[71060,26670]},{"type":"Point","coordinates":[95299,19014]},{"type":"Point","coordinates":[91691,20542]},{"type":"Point","coordinates":[91692,20547]},{"type":"Point","coordinates":[93646,19742]},{"type":"Point","coordinates":[40049,28014]},{"type":"Point","coordinates":[91533,20621]},{"type":"Point","coordinates":[15759,22493]},{"type":"Point","coordinates":[91694,20560]},{"type":"Point","coordinates":[92106,20399]},{"type":"Point","coordinates":[91883,20492]},{"type":"Point","coordinates":[91896,20494]},{"type":"Point","coordinates":[18788,23528]},{"type":"Point","coordinates":[18818,23548]},{"type":"Point","coordinates":[91830,20557]},{"type":"Point","coordinates":[91885,20536]},{"type":"Point","coordinates":[91820,20575]},{"type":"Point","coordinates":[91839,20568]},{"type":"Point","coordinates":[90168,21231]},{"type":"Point","coordinates":[90468,21117]},{"type":"Point","coordinates":[91840,20580]},{"type":"Point","coordinates":[91840,20580]},{"type":"Point","coordinates":[95666,18953]},{"type":"Point","coordinates":[91840,20583]},{"type":"Point","coordinates":[91841,20587]},{"type":"Point","coordinates":[91846,20586]},{"type":"Point","coordinates":[95465,19050]},{"type":"Point","coordinates":[90167,21253]},{"type":"Point","coordinates":[5536,18458]},{"type":"Point","coordinates":[91483,20740]},{"type":"Point","coordinates":[91487,20739]},{"type":"Point","coordinates":[91846,20595]},{"type":"Point","coordinates":[91846,20595]},{"type":"Point","coordinates":[91487,20745]},{"type":"Point","coordinates":[92111,20505]},{"type":"Point","coordinates":[90070,21317]},{"type":"Point","coordinates":[25310,25497]},{"type":"Point","coordinates":[6677,19015]},{"type":"Point","coordinates":[92173,20510]},{"type":"Point","coordinates":[95698,19004]},{"type":"Point","coordinates":[92174,20512]},{"type":"Point","coordinates":[91961,20619]},{"type":"Point","coordinates":[91885,20658]},{"type":"Point","coordinates":[91974,20624]},{"type":"Point","coordinates":[91427,20856]},{"type":"Point","coordinates":[92062,20601]},{"type":"Point","coordinates":[91486,20838]},{"type":"Point","coordinates":[91428,20863]},{"type":"Point","coordinates":[91429,20865]},{"type":"Point","coordinates":[92131,20587]},{"type":"Point","coordinates":[90160,21375]},{"type":"Point","coordinates":[63297,28110]},{"type":"Point","coordinates":[91122,21002]},{"type":"Point","coordinates":[91805,20733]},{"type":"Point","coordinates":[91585,20823]},{"type":"Point","coordinates":[91541,20845]},{"type":"Point","coordinates":[91584,20832]},{"type":"Point","coordinates":[92033,20652]},{"type":"Point","coordinates":[91583,20838]},{"type":"Point","coordinates":[68190,27441]},{"type":"Point","coordinates":[92072,20642]},{"type":"Point","coordinates":[91616,20828]},{"type":"Point","coordinates":[92233,20580]},{"type":"Point","coordinates":[92072,20649]},{"type":"Point","coordinates":[92033,20666]},{"type":"Point","coordinates":[95415,19229]},{"type":"Point","coordinates":[91614,20840]},{"type":"Point","coordinates":[92006,20694]},{"type":"Point","coordinates":[90607,21255]},{"type":"Point","coordinates":[91994,20703]},{"type":"Point","coordinates":[50740,28874]},{"type":"Point","coordinates":[92239,20613]},{"type":"Point","coordinates":[91609,20873]},{"type":"Point","coordinates":[92049,20695]},{"type":"Point","coordinates":[91654,20863]},{"type":"Point","coordinates":[92249,20626]},{"type":"Point","coordinates":[92075,20699]},{"type":"Point","coordinates":[6958,19311]},{"type":"Point","coordinates":[94286,19787]},{"type":"Point","coordinates":[92098,20706]},{"type":"Point","coordinates":[90277,21440]},{"type":"Point","coordinates":[62762,28279]},{"type":"Point","coordinates":[92086,20724]},{"type":"Point","coordinates":[90000,21551]},{"type":"Point","coordinates":[92212,20677]},{"type":"Point","coordinates":[92212,20678]},{"type":"Point","coordinates":[92212,20678]},{"type":"Point","coordinates":[92087,20731]},{"type":"Point","coordinates":[92092,20729]},{"type":"Point","coordinates":[92222,20676]},{"type":"Point","coordinates":[92828,20428]},{"type":"Point","coordinates":[50542,28940]},{"type":"Point","coordinates":[92217,20683]},{"type":"Point","coordinates":[90233,21474]},{"type":"Point","coordinates":[64983,28025]},{"type":"Point","coordinates":[90783,21266]},{"type":"Point","coordinates":[90890,21225]},{"type":"Point","coordinates":[92179,20716]},{"type":"Point","coordinates":[91917,20827]},{"type":"Point","coordinates":[91188,21125]},{"type":"Point","coordinates":[91899,20841]},{"type":"Point","coordinates":[90897,21244]},{"type":"Point","coordinates":[91752,20907]},{"type":"Point","coordinates":[91749,20910]},{"type":"Point","coordinates":[7724,19719]},{"type":"Point","coordinates":[92090,20775]},{"type":"Point","coordinates":[90910,21251]},{"type":"Point","coordinates":[91874,20865]},{"type":"Point","coordinates":[91073,21201]},{"type":"Point","coordinates":[91870,20893]},{"type":"Point","coordinates":[90699,21362]},{"type":"Point","coordinates":[90703,21377]},{"type":"Point","coordinates":[93077,20421]},{"type":"Point","coordinates":[90743,21383]},{"type":"Point","coordinates":[90735,21387]},{"type":"Point","coordinates":[90753,21392]},{"type":"Point","coordinates":[90747,21400]},{"type":"Point","coordinates":[93056,20473]},{"type":"Point","coordinates":[61661,28553]},{"type":"Point","coordinates":[90972,21345]},{"type":"Point","coordinates":[26713,26218]},{"type":"Point","coordinates":[91691,21075]},{"type":"Point","coordinates":[91645,21114]},{"type":"Point","coordinates":[92185,20896]},{"type":"Point","coordinates":[57594,28940]},{"type":"Point","coordinates":[56746,28991]},{"type":"Point","coordinates":[57597,28944]},{"type":"Point","coordinates":[91309,21266]},{"type":"Point","coordinates":[91725,21101]},{"type":"Point","coordinates":[92346,20853]},{"type":"Point","coordinates":[91661,21133]},{"type":"Point","coordinates":[89453,22014]},{"type":"Point","coordinates":[95563,19501]},{"type":"Point","coordinates":[91861,21073]},{"type":"Point","coordinates":[89455,22017]},{"type":"Point","coordinates":[25515,25998]},{"type":"Point","coordinates":[91667,21161]},{"type":"Point","coordinates":[4620,18548]},{"type":"Point","coordinates":[91000,21456]},{"type":"Point","coordinates":[71341,27249]},{"type":"Point","coordinates":[90920,21491]},{"type":"Point","coordinates":[91009,21464]},{"type":"Point","coordinates":[90247,21766]},{"type":"Point","coordinates":[91030,21460]},{"type":"Point","coordinates":[91028,21462]},{"type":"Point","coordinates":[7667,19962]},{"type":"Point","coordinates":[59897,28880]},{"type":"Point","coordinates":[90876,21537]},{"type":"Point","coordinates":[59896,28881]},{"type":"Point","coordinates":[91975,21098]},{"type":"Point","coordinates":[91032,21479]},{"type":"Point","coordinates":[90872,21542]},{"type":"Point","coordinates":[91031,21480]},{"type":"Point","coordinates":[90871,21544]},{"type":"Point","coordinates":[90878,21543]},{"type":"Point","coordinates":[91036,21481]},{"type":"Point","coordinates":[91036,21481]},{"type":"Point","coordinates":[51034,29257]},{"type":"Point","coordinates":[92021,21091]},{"type":"Point","coordinates":[92021,21091]},{"type":"Point","coordinates":[92088,21081]},{"type":"Point","coordinates":[92088,21082]},{"type":"Point","coordinates":[91753,21219]},{"type":"Point","coordinates":[7670,20011]},{"type":"Point","coordinates":[91016,21519]},{"type":"Point","coordinates":[7669,20017]},{"type":"Point","coordinates":[7667,20019]},{"type":"Point","coordinates":[92946,20746]},{"type":"Point","coordinates":[64574,28430]},{"type":"Point","coordinates":[92079,21108]},{"type":"Point","coordinates":[50760,29300]},{"type":"Point","coordinates":[5290,18965]},{"type":"Point","coordinates":[92007,21140]},{"type":"Point","coordinates":[92124,21095]},{"type":"Point","coordinates":[92866,20796]},{"type":"Point","coordinates":[90517,21742]},{"type":"Point","coordinates":[90507,21747]},{"type":"Point","coordinates":[90827,21624]},{"type":"Point","coordinates":[90513,21747]},{"type":"Point","coordinates":[90504,21752]},{"type":"Point","coordinates":[90316,21827]},{"type":"Point","coordinates":[92050,21144]},{"type":"Point","coordinates":[90505,21765]},{"type":"Point","coordinates":[90842,21636]},{"type":"Point","coordinates":[92922,20795]},{"type":"Point","coordinates":[91833,21241]},{"type":"Point","coordinates":[92922,20795]},{"type":"Point","coordinates":[90506,21769]},{"type":"Point","coordinates":[90842,21637]},{"type":"Point","coordinates":[90842,21637]},{"type":"Point","coordinates":[90842,21637]},{"type":"Point","coordinates":[90842,21637]},{"type":"Point","coordinates":[90506,21769]},{"type":"Point","coordinates":[91996,21177]},{"type":"Point","coordinates":[71571,27320]},{"type":"Point","coordinates":[91339,21443]},{"type":"Point","coordinates":[90847,21638]},{"type":"Point","coordinates":[90515,21769]},{"type":"Point","coordinates":[90510,21772]},{"type":"Point","coordinates":[90841,21642]},{"type":"Point","coordinates":[90329,21844]},{"type":"Point","coordinates":[92005,21179]},{"type":"Point","coordinates":[90509,21776]},{"type":"Point","coordinates":[7618,20050]},{"type":"Point","coordinates":[92194,21106]},{"type":"Point","coordinates":[90839,21651]},{"type":"Point","coordinates":[7629,20059]},{"type":"Point","coordinates":[92027,21178]},{"type":"Point","coordinates":[90355,21843]},{"type":"Point","coordinates":[92013,21185]},{"type":"Point","coordinates":[7628,20061]},{"type":"Point","coordinates":[7626,20061]},{"type":"Point","coordinates":[7627,20061]},{"type":"Point","coordinates":[7627,20061]},{"type":"Point","coordinates":[90514,21786]},{"type":"Point","coordinates":[90507,21789]},{"type":"Point","coordinates":[90514,21787]},{"type":"Point","coordinates":[92024,21187]},{"type":"Point","coordinates":[92024,21187]},{"type":"Point","coordinates":[92097,21157]},{"type":"Point","coordinates":[90647,21737]},{"type":"Point","coordinates":[90646,21739]},{"type":"Point","coordinates":[90425,21826]},{"type":"Point","coordinates":[90646,21740]},{"type":"Point","coordinates":[92019,21193]},{"type":"Point","coordinates":[65046,28435]},{"type":"Point","coordinates":[65046,28435]},{"type":"Point","coordinates":[91247,21511]},{"type":"Point","coordinates":[95188,19862]},{"type":"Point","coordinates":[61572,28851]},{"type":"Point","coordinates":[91621,21374]},{"type":"Point","coordinates":[91244,21533]},{"type":"Point","coordinates":[92155,21167]},{"type":"Point","coordinates":[92155,21166]},{"type":"Point","coordinates":[92158,21165]},{"type":"Point","coordinates":[92155,21167]},{"type":"Point","coordinates":[92155,21167]},{"type":"Point","coordinates":[92155,21167]},{"type":"Point","coordinates":[92154,21167]},{"type":"Point","coordinates":[92154,21167]},{"type":"Point","coordinates":[92154,21167]},{"type":"Point","coordinates":[92155,21167]},{"type":"Point","coordinates":[92155,21167]},{"type":"Point","coordinates":[92155,21167]},{"type":"Point","coordinates":[92157,21166]},{"type":"Point","coordinates":[92161,21167]},{"type":"Point","coordinates":[92156,21169]},{"type":"Point","coordinates":[92155,21170]},{"type":"Point","coordinates":[92157,21169]},{"type":"Point","coordinates":[92161,21167]},{"type":"Point","coordinates":[92160,21168]},{"type":"Point","coordinates":[92161,21168]},{"type":"Point","coordinates":[92157,21169]},{"type":"Point","coordinates":[92161,21168]},{"type":"Point","coordinates":[92161,21168]},{"type":"Point","coordinates":[92160,21168]},{"type":"Point","coordinates":[92156,21170]},{"type":"Point","coordinates":[92156,21170]},{"type":"Point","coordinates":[92160,21168]},{"type":"Point","coordinates":[92157,21169]},{"type":"Point","coordinates":[92159,21168]},{"type":"Point","coordinates":[92156,21170]},{"type":"Point","coordinates":[92156,21170]},{"type":"Point","coordinates":[92155,21170]},{"type":"Point","coordinates":[92160,21168]},{"type":"Point","coordinates":[92155,21170]},{"type":"Point","coordinates":[62700,28749]},{"type":"Point","coordinates":[91741,21339]},{"type":"Point","coordinates":[92157,21172]},{"type":"Point","coordinates":[92160,21171]},{"type":"Point","coordinates":[92158,21172]},{"type":"Point","coordinates":[92160,21171]},{"type":"Point","coordinates":[92157,21172]},{"type":"Point","coordinates":[92155,21173]},{"type":"Point","coordinates":[92160,21171]},{"type":"Point","coordinates":[90490,21838]},{"type":"Point","coordinates":[92157,21175]},{"type":"Point","coordinates":[91210,21558]},{"type":"Point","coordinates":[92156,21179]},{"type":"Point","coordinates":[92154,21180]},{"type":"Point","coordinates":[92160,21178]},{"type":"Point","coordinates":[91258,21543]},{"type":"Point","coordinates":[92160,21181]},{"type":"Point","coordinates":[92158,21182]},{"type":"Point","coordinates":[92163,21180]},{"type":"Point","coordinates":[92163,21180]},{"type":"Point","coordinates":[92159,21181]},{"type":"Point","coordinates":[92161,21180]},{"type":"Point","coordinates":[92155,21183]},{"type":"Point","coordinates":[92155,21183]},{"type":"Point","coordinates":[91259,21546]},{"type":"Point","coordinates":[91213,21564]},{"type":"Point","coordinates":[91235,21556]},{"type":"Point","coordinates":[91233,21557]},{"type":"Point","coordinates":[92151,21188]},{"type":"Point","coordinates":[92157,21185]},{"type":"Point","coordinates":[92157,21185]},{"type":"Point","coordinates":[92160,21184]},{"type":"Point","coordinates":[92162,21184]},{"type":"Point","coordinates":[92158,21185]},{"type":"Point","coordinates":[91652,21392]},{"type":"Point","coordinates":[92161,21187]},{"type":"Point","coordinates":[92163,21186]},{"type":"Point","coordinates":[92157,21189]},{"type":"Point","coordinates":[92160,21188]},{"type":"Point","coordinates":[90492,21854]},{"type":"Point","coordinates":[92163,21189]},{"type":"Point","coordinates":[92161,21190]},{"type":"Point","coordinates":[92161,21190]},{"type":"Point","coordinates":[91244,21560]},{"type":"Point","coordinates":[61567,28890]},{"type":"Point","coordinates":[93556,20613]},{"type":"Point","coordinates":[92160,21194]},{"type":"Point","coordinates":[92160,21194]},{"type":"Point","coordinates":[92165,21192]},{"type":"Point","coordinates":[92163,21193]},{"type":"Point","coordinates":[92161,21194]},{"type":"Point","coordinates":[95198,19908]},{"type":"Point","coordinates":[90514,21851]},{"type":"Point","coordinates":[92068,21233]},{"type":"Point","coordinates":[61572,28894]},{"type":"Point","coordinates":[92165,21195]},{"type":"Point","coordinates":[92161,21197]},{"type":"Point","coordinates":[92160,21198]},{"type":"Point","coordinates":[92164,21198]},{"type":"Point","coordinates":[92163,21199]},{"type":"Point","coordinates":[92160,21203]},{"type":"Point","coordinates":[92161,21203]},{"type":"Point","coordinates":[92161,21203]},{"type":"Point","coordinates":[92162,21203]},{"type":"Point","coordinates":[92164,21205]},{"type":"Point","coordinates":[92166,21204]},{"type":"Point","coordinates":[90514,21863]},{"type":"Point","coordinates":[92165,21208]},{"type":"Point","coordinates":[92770,20961]},{"type":"Point","coordinates":[91272,21572]},{"type":"Point","coordinates":[91273,21574]},{"type":"Point","coordinates":[25823,26329]},{"type":"Point","coordinates":[91238,21590]},{"type":"Point","coordinates":[91274,21577]},{"type":"Point","coordinates":[60593,29017]},{"type":"Point","coordinates":[90235,21996]},{"type":"Point","coordinates":[90576,21872]},{"type":"Point","coordinates":[90576,21872]},{"type":"Point","coordinates":[92051,21288]},{"type":"Point","coordinates":[90515,21909]},{"type":"Point","coordinates":[90515,21909]},{"type":"Point","coordinates":[90517,21911]},{"type":"Point","coordinates":[90516,21912]},{"type":"Point","coordinates":[90520,21910]},{"type":"Point","coordinates":[90521,21911]},{"type":"Point","coordinates":[91602,21483]},{"type":"Point","coordinates":[90520,21913]},{"type":"Point","coordinates":[90517,21915]},{"type":"Point","coordinates":[90517,21915]},{"type":"Point","coordinates":[90520,21914]},{"type":"Point","coordinates":[90515,21916]},{"type":"Point","coordinates":[90520,21915]},{"type":"Point","coordinates":[90518,21916]},{"type":"Point","coordinates":[90340,21989]},{"type":"Point","coordinates":[89648,22263]},{"type":"Point","coordinates":[90991,21743]},{"type":"Point","coordinates":[90331,22004]},{"type":"Point","coordinates":[92065,21324]},{"type":"Point","coordinates":[91119,21711]},{"type":"Point","coordinates":[90991,21762]},{"type":"Point","coordinates":[90375,22009]},{"type":"Point","coordinates":[91891,21408]},{"type":"Point","coordinates":[91897,21408]},{"type":"Point","coordinates":[91112,21726]},{"type":"Point","coordinates":[91107,21728]},{"type":"Point","coordinates":[91105,21730]},{"type":"Point","coordinates":[51147,29526]},{"type":"Point","coordinates":[90433,21998]},{"type":"Point","coordinates":[91910,21414]},{"type":"Point","coordinates":[91095,21742]},{"type":"Point","coordinates":[91101,21744]},{"type":"Point","coordinates":[91109,21742]},{"type":"Point","coordinates":[91917,21426]},{"type":"Point","coordinates":[91676,21525]},{"type":"Point","coordinates":[91672,21527]},{"type":"Point","coordinates":[91158,21733]},{"type":"Point","coordinates":[91677,21528]},{"type":"Point","coordinates":[91677,21529]},{"type":"Point","coordinates":[91670,21535]},{"type":"Point","coordinates":[91792,21487]},{"type":"Point","coordinates":[91705,21522]},{"type":"Point","coordinates":[91630,21554]},{"type":"Point","coordinates":[91134,21753]},{"type":"Point","coordinates":[92181,21334]},{"type":"Point","coordinates":[91682,21538]},{"type":"Point","coordinates":[91680,21539]},{"type":"Point","coordinates":[91674,21542]},{"type":"Point","coordinates":[91678,21541]},{"type":"Point","coordinates":[91711,21529]},{"type":"Point","coordinates":[91136,21760]},{"type":"Point","coordinates":[91136,21760]},{"type":"Point","coordinates":[91916,21449]},{"type":"Point","coordinates":[91635,21563]},{"type":"Point","coordinates":[91726,21526]},{"type":"Point","coordinates":[91746,21519]},{"type":"Point","coordinates":[91695,21540]},{"type":"Point","coordinates":[90263,22106]},{"type":"Point","coordinates":[91726,21529]},{"type":"Point","coordinates":[91726,21529]},{"type":"Point","coordinates":[91725,21530]},{"type":"Point","coordinates":[90395,22056]},{"type":"Point","coordinates":[91726,21529]},{"type":"Point","coordinates":[91136,21765]},{"type":"Point","coordinates":[91732,21528]},{"type":"Point","coordinates":[91729,21529]},{"type":"Point","coordinates":[91735,21528]},{"type":"Point","coordinates":[91727,21532]},{"type":"Point","coordinates":[91727,21532]},{"type":"Point","coordinates":[91712,21539]},{"type":"Point","coordinates":[91746,21525]},{"type":"Point","coordinates":[91745,21525]},{"type":"Point","coordinates":[91746,21525]},{"type":"Point","coordinates":[91730,21533]},{"type":"Point","coordinates":[91735,21532]},{"type":"Point","coordinates":[91730,21533]},{"type":"Point","coordinates":[91730,21533]},{"type":"Point","coordinates":[91729,21534]},{"type":"Point","coordinates":[91728,21535]},{"type":"Point","coordinates":[90803,21903]},{"type":"Point","coordinates":[91729,21535]},{"type":"Point","coordinates":[91659,21564]},{"type":"Point","coordinates":[91751,21528]},{"type":"Point","coordinates":[91762,21524]},{"type":"Point","coordinates":[91732,21536]},{"type":"Point","coordinates":[91732,21536]},{"type":"Point","coordinates":[90943,21851]},{"type":"Point","coordinates":[91732,21536]},{"type":"Point","coordinates":[91733,21537]},{"type":"Point","coordinates":[91625,21581]},{"type":"Point","coordinates":[90818,21901]},{"type":"Point","coordinates":[91726,21540]},{"type":"Point","coordinates":[91726,21541]},{"type":"Point","coordinates":[91726,21541]},{"type":"Point","coordinates":[91725,21541]},{"type":"Point","coordinates":[91725,21541]},{"type":"Point","coordinates":[91726,21541]},{"type":"Point","coordinates":[91725,21541]},{"type":"Point","coordinates":[63943,28794]},{"type":"Point","coordinates":[91727,21541]},{"type":"Point","coordinates":[91728,21541]},{"type":"Point","coordinates":[91721,21547]},{"type":"Point","coordinates":[91022,21826]},{"type":"Point","coordinates":[91022,21826]},{"type":"Point","coordinates":[91721,21548]},{"type":"Point","coordinates":[91021,21827]},{"type":"Point","coordinates":[91719,21549]},{"type":"Point","coordinates":[91639,21581]},{"type":"Point","coordinates":[91724,21547]},{"type":"Point","coordinates":[91023,21827]},{"type":"Point","coordinates":[91647,21579]},{"type":"Point","coordinates":[91636,21583]},{"type":"Point","coordinates":[91726,21548]},{"type":"Point","coordinates":[90522,22025]},{"type":"Point","coordinates":[90522,22025]},{"type":"Point","coordinates":[91724,21549]},{"type":"Point","coordinates":[95558,19927]},{"type":"Point","coordinates":[91738,21543]},{"type":"Point","coordinates":[63937,28803]},{"type":"Point","coordinates":[91722,21552]},{"type":"Point","coordinates":[92049,21425]},{"type":"Point","coordinates":[90297,22124]},{"type":"Point","coordinates":[90298,22125]},{"type":"Point","coordinates":[91809,21528]},{"type":"Point","coordinates":[91643,21594]},{"type":"Point","coordinates":[90312,22121]},{"type":"Point","coordinates":[90299,22126]},{"type":"Point","coordinates":[90825,21921]},{"type":"Point","coordinates":[91761,21549]},{"type":"Point","coordinates":[91761,21549]},{"type":"Point","coordinates":[91724,21564]},{"type":"Point","coordinates":[90302,22128]},{"type":"Point","coordinates":[90826,21925]},{"type":"Point","coordinates":[91747,21560]},{"type":"Point","coordinates":[90996,21863]},{"type":"Point","coordinates":[91747,21564]},{"type":"Point","coordinates":[90925,21893]},{"type":"Point","coordinates":[90817,21935]},{"type":"Point","coordinates":[90816,21936]},{"type":"Point","coordinates":[91752,21564]},{"type":"Point","coordinates":[91698,21587]},{"type":"Point","coordinates":[91731,21574]},{"type":"Point","coordinates":[91661,21604]},{"type":"Point","coordinates":[91134,21819]},{"type":"Point","coordinates":[91676,21602]},{"type":"Point","coordinates":[92809,21153]},{"type":"Point","coordinates":[90934,21912]},{"type":"Point","coordinates":[91764,21584]},{"type":"Point","coordinates":[90763,21982]},{"type":"Point","coordinates":[93568,20843]},{"type":"Point","coordinates":[90760,21987]},{"type":"Point","coordinates":[91767,21587]},{"type":"Point","coordinates":[91697,21619]},{"type":"Point","coordinates":[90821,21968]},{"type":"Point","coordinates":[90777,21986]},{"type":"Point","coordinates":[91698,21622]},{"type":"Point","coordinates":[91696,21623]},{"type":"Point","coordinates":[90782,21992]},{"type":"Point","coordinates":[90833,21973]},{"type":"Point","coordinates":[50528,29659]},{"type":"Point","coordinates":[91764,21615]},{"type":"Point","coordinates":[91761,21630]},{"type":"Point","coordinates":[90627,22087]},{"type":"Point","coordinates":[90619,22092]},{"type":"Point","coordinates":[90626,22090]},{"type":"Point","coordinates":[90620,22093]},{"type":"Point","coordinates":[92011,21539]},{"type":"Point","coordinates":[91678,21674]},{"type":"Point","coordinates":[38085,28869]},{"type":"Point","coordinates":[90627,22091]},{"type":"Point","coordinates":[90619,22096]},{"type":"Point","coordinates":[90630,22092]},{"type":"Point","coordinates":[90625,22097]},{"type":"Point","coordinates":[90616,22106]},{"type":"Point","coordinates":[91763,21653]},{"type":"Point","coordinates":[92403,21395]},{"type":"Point","coordinates":[92377,21414]},{"type":"Point","coordinates":[91002,21969]},{"type":"Point","coordinates":[91093,21934]},{"type":"Point","coordinates":[92402,21409]},{"type":"Point","coordinates":[91093,21937]},{"type":"Point","coordinates":[91093,21936]},{"type":"Point","coordinates":[91094,21936]},{"type":"Point","coordinates":[92042,21559]},{"type":"Point","coordinates":[91093,21940]},{"type":"Point","coordinates":[91092,21943]},{"type":"Point","coordinates":[91094,21943]},{"type":"Point","coordinates":[92394,21421]},{"type":"Point","coordinates":[16129,23763]},{"type":"Point","coordinates":[92398,21424]},{"type":"Point","coordinates":[90629,22136]},{"type":"Point","coordinates":[91523,21784]},{"type":"Point","coordinates":[59813,29381]},{"type":"Point","coordinates":[90286,22275]},{"type":"Point","coordinates":[89257,22678]},{"type":"Point","coordinates":[95083,20308]},{"type":"Point","coordinates":[90879,22058]},{"type":"Point","coordinates":[64391,28912]},{"type":"Point","coordinates":[91092,21981]},{"type":"Point","coordinates":[90893,22062]},{"type":"Point","coordinates":[89989,22415]},{"type":"Point","coordinates":[90889,22066]},{"type":"Point","coordinates":[91014,22021]},{"type":"Point","coordinates":[91096,21992]},{"type":"Point","coordinates":[91016,22030]},{"type":"Point","coordinates":[90347,22301]},{"type":"Point","coordinates":[92132,21604]},{"type":"Point","coordinates":[92245,21574]},{"type":"Point","coordinates":[92068,21670]},{"type":"Point","coordinates":[92067,21670]},{"type":"Point","coordinates":[92065,21673]},{"type":"Point","coordinates":[92068,21672]},{"type":"Point","coordinates":[92059,21676]},{"type":"Point","coordinates":[91798,21813]},{"type":"Point","coordinates":[90954,22150]},{"type":"Point","coordinates":[90989,22139]},{"type":"Point","coordinates":[91364,21993]},{"type":"Point","coordinates":[5852,19828]},{"type":"Point","coordinates":[25168,26630]},{"type":"Point","coordinates":[91628,21921]},{"type":"Point","coordinates":[57195,29770]},{"type":"Point","coordinates":[85461,24267]},{"type":"Point","coordinates":[85461,24267]},{"type":"Point","coordinates":[92188,21782]},{"type":"Point","coordinates":[91947,21904]},{"type":"Point","coordinates":[92004,21891]},{"type":"Point","coordinates":[92026,21896]},{"type":"Point","coordinates":[91747,22021]},{"type":"Point","coordinates":[91086,22303]},{"type":"Point","coordinates":[91086,22303]},{"type":"Point","coordinates":[92045,21933]},{"type":"Point","coordinates":[92057,21930]},{"type":"Point","coordinates":[91788,22040]},{"type":"Point","coordinates":[91954,21982]},{"type":"Point","coordinates":[61989,29548]},{"type":"Point","coordinates":[92022,21976]},{"type":"Point","coordinates":[91856,22047]},{"type":"Point","coordinates":[92042,21976]},{"type":"Point","coordinates":[90948,22418]},{"type":"Point","coordinates":[92049,21980]},{"type":"Point","coordinates":[92034,21991]},{"type":"Point","coordinates":[95327,20600]},{"type":"Point","coordinates":[92034,21992]},{"type":"Point","coordinates":[92021,21998]},{"type":"Point","coordinates":[92022,21999]},{"type":"Point","coordinates":[92035,21994]},{"type":"Point","coordinates":[91620,22161]},{"type":"Point","coordinates":[92028,21999]},{"type":"Point","coordinates":[92037,21997]},{"type":"Point","coordinates":[92043,21997]},{"type":"Point","coordinates":[92046,21997]},{"type":"Point","coordinates":[92032,22008]},{"type":"Point","coordinates":[92033,22009]},{"type":"Point","coordinates":[92033,22009]},{"type":"Point","coordinates":[50132,30151]},{"type":"Point","coordinates":[50129,30162]},{"type":"Point","coordinates":[92338,21915]},{"type":"Point","coordinates":[90945,22495]},{"type":"Point","coordinates":[64123,29404]},{"type":"Point","coordinates":[91993,22126]},{"type":"Point","coordinates":[92032,22113]},{"type":"Point","coordinates":[92981,21729]},{"type":"Point","coordinates":[73111,27956]},{"type":"Point","coordinates":[91105,22510]},{"type":"Point","coordinates":[38087,29461]},{"type":"Point","coordinates":[91906,22194]},{"type":"Point","coordinates":[91128,22507]},{"type":"Point","coordinates":[65091,29365]},{"type":"Point","coordinates":[58154,30075]},{"type":"Point","coordinates":[91197,22516]},{"type":"Point","coordinates":[91872,22255]},{"type":"Point","coordinates":[91873,22255]},{"type":"Point","coordinates":[73137,28014]},{"type":"Point","coordinates":[84977,24813]},{"type":"Point","coordinates":[91440,22457]},{"type":"Point","coordinates":[60307,29957]},{"type":"Point","coordinates":[93526,21606]},{"type":"Point","coordinates":[93529,21607]},{"type":"Point","coordinates":[91881,22301]},{"type":"Point","coordinates":[91211,22576]},{"type":"Point","coordinates":[91820,22356]},{"type":"Point","coordinates":[25752,27310]},{"type":"Point","coordinates":[62291,29833]},{"type":"Point","coordinates":[62163,29847]},{"type":"Point","coordinates":[62163,29847]},{"type":"Point","coordinates":[91474,22530]},{"type":"Point","coordinates":[92204,22244]},{"type":"Point","coordinates":[65154,29510]},{"type":"Point","coordinates":[92771,22026]},{"type":"Point","coordinates":[92771,22026]},{"type":"Point","coordinates":[50027,30464]},{"type":"Point","coordinates":[91574,22547]},{"type":"Point","coordinates":[91600,22542]},{"type":"Point","coordinates":[92070,22354]},{"type":"Point","coordinates":[72104,28404]},{"type":"Point","coordinates":[61979,29957]},{"type":"Point","coordinates":[61824,29975]},{"type":"Point","coordinates":[62145,29950]},{"type":"Point","coordinates":[6002,20574]},{"type":"Point","coordinates":[61706,30008]},{"type":"Point","coordinates":[82081,25975]},{"type":"Point","coordinates":[93372,21931]},{"type":"Point","coordinates":[91090,22866]},{"type":"Point","coordinates":[93652,21831]},{"type":"Point","coordinates":[93640,21841]},{"type":"Point","coordinates":[93644,21839]},{"type":"Point","coordinates":[92053,22497]},{"type":"Point","coordinates":[91520,22731]},{"type":"Point","coordinates":[81380,26255]},{"type":"Point","coordinates":[61750,30155]},{"type":"Point","coordinates":[61751,30159]},{"type":"Point","coordinates":[93188,22099]},{"type":"Point","coordinates":[61753,30164]},{"type":"Point","coordinates":[61762,30170]},{"type":"Point","coordinates":[61752,30172]},{"type":"Point","coordinates":[61929,30159]},{"type":"Point","coordinates":[81825,26174]},{"type":"Point","coordinates":[61753,30181]},{"type":"Point","coordinates":[89688,23513]},{"type":"Point","coordinates":[93598,21963]},{"type":"Point","coordinates":[94740,21478]},{"type":"Point","coordinates":[47042,30698]},{"type":"Point","coordinates":[81886,26220]},{"type":"Point","coordinates":[91369,22926]},{"type":"Point","coordinates":[89964,23477]},{"type":"Point","coordinates":[81414,26371]},{"type":"Point","coordinates":[94669,21609]},{"type":"Point","coordinates":[91414,22959]},{"type":"Point","coordinates":[92952,22366]},{"type":"Point","coordinates":[90875,23228]},{"type":"Point","coordinates":[95023,21514]},{"type":"Point","coordinates":[95024,21515]},{"type":"Point","coordinates":[95029,21516]},{"type":"Point","coordinates":[3868,19976]},{"type":"Point","coordinates":[84887,25421]},{"type":"Point","coordinates":[26881,28090]},{"type":"Point","coordinates":[83936,25737]},{"type":"Point","coordinates":[61983,30378]},{"type":"Point","coordinates":[89930,23645]},{"type":"Point","coordinates":[65287,29991]},{"type":"Point","coordinates":[62367,30358]},{"type":"Point","coordinates":[91111,23212]},{"type":"Point","coordinates":[90836,23323]},{"type":"Point","coordinates":[93628,22190]},{"type":"Point","coordinates":[92052,22843]},{"type":"Point","coordinates":[90823,23346]},{"type":"Point","coordinates":[61839,30454]},{"type":"Point","coordinates":[91807,22982]},{"type":"Point","coordinates":[69225,29465]},{"type":"Point","coordinates":[89875,23788]},{"type":"Point","coordinates":[83451,26032]},{"type":"Point","coordinates":[61898,30530]},{"type":"Point","coordinates":[92690,22715]},{"type":"Point","coordinates":[89935,23807]},{"type":"Point","coordinates":[89937,23807]},{"type":"Point","coordinates":[89927,23813]},{"type":"Point","coordinates":[83317,26111]},{"type":"Point","coordinates":[89971,23803]},{"type":"Point","coordinates":[65361,30149]},{"type":"Point","coordinates":[89928,23826]},{"type":"Point","coordinates":[91438,23244]},{"type":"Point","coordinates":[95057,21741]},{"type":"Point","coordinates":[83329,26128]},{"type":"Point","coordinates":[69582,29497]},{"type":"Point","coordinates":[83331,26128]},{"type":"Point","coordinates":[91324,23300]},{"type":"Point","coordinates":[83235,26175]},{"type":"Point","coordinates":[83238,26174]},{"type":"Point","coordinates":[83236,26176]},{"type":"Point","coordinates":[65456,30179]},{"type":"Point","coordinates":[91557,23252]},{"type":"Point","coordinates":[83248,26210]},{"type":"Point","coordinates":[83243,26223]},{"type":"Point","coordinates":[83370,26187]},{"type":"Point","coordinates":[81816,26667]},{"type":"Point","coordinates":[93557,22491]},{"type":"Point","coordinates":[93612,22473]},{"type":"Point","coordinates":[91079,23516]},{"type":"Point","coordinates":[81312,26876]},{"type":"Point","coordinates":[83262,26292]},{"type":"Point","coordinates":[95067,21909]},{"type":"Point","coordinates":[93529,22570]},{"type":"Point","coordinates":[91824,23276]},{"type":"Point","coordinates":[64566,30466]},{"type":"Point","coordinates":[93606,22578]},{"type":"Point","coordinates":[93607,22579]},{"type":"Point","coordinates":[93608,22578]},{"type":"Point","coordinates":[64458,30489]},{"type":"Point","coordinates":[95107,21960]},{"type":"Point","coordinates":[85792,25564]},{"type":"Point","coordinates":[93799,22530]},{"type":"Point","coordinates":[83553,26316]},{"type":"Point","coordinates":[91045,23675]},{"type":"Point","coordinates":[93679,22607]},{"type":"Point","coordinates":[81237,27051]},{"type":"Point","coordinates":[94638,22226]},{"type":"Point","coordinates":[94639,22230]},{"type":"Point","coordinates":[83150,26489]},{"type":"Point","coordinates":[94647,22231]},{"type":"Point","coordinates":[93700,22648]},{"type":"Point","coordinates":[83448,26419]},{"type":"Point","coordinates":[92252,23254]},{"type":"Point","coordinates":[83446,26420]},{"type":"Point","coordinates":[92237,23263]},{"type":"Point","coordinates":[92239,23262]},{"type":"Point","coordinates":[92233,23267]},{"type":"Point","coordinates":[93708,22659]},{"type":"Point","coordinates":[92234,23271]},{"type":"Point","coordinates":[92235,23272]},{"type":"Point","coordinates":[92238,23272]},{"type":"Point","coordinates":[92232,23276]},{"type":"Point","coordinates":[93654,22692]},{"type":"Point","coordinates":[71319,29522]},{"type":"Point","coordinates":[80825,27236]},{"type":"Point","coordinates":[92040,23376]},{"type":"Point","coordinates":[92053,23377]},{"type":"Point","coordinates":[92049,23381]},{"type":"Point","coordinates":[92139,23349]},{"type":"Point","coordinates":[86965,25309]},{"type":"Point","coordinates":[94728,22280]},{"type":"Point","coordinates":[92302,23295]},{"type":"Point","coordinates":[94712,22287]},{"type":"Point","coordinates":[92044,23400]},{"type":"Point","coordinates":[88089,24915]},{"type":"Point","coordinates":[62275,30927]},{"type":"Point","coordinates":[83305,26542]},{"type":"Point","coordinates":[83512,26487]},{"type":"Point","coordinates":[93514,22825]},{"type":"Point","coordinates":[93590,22796]},{"type":"Point","coordinates":[93516,22827]},{"type":"Point","coordinates":[93516,22831]},{"type":"Point","coordinates":[93523,22829]},{"type":"Point","coordinates":[80792,27319]},{"type":"Point","coordinates":[80793,27320]},{"type":"Point","coordinates":[92120,23411]},{"type":"Point","coordinates":[93529,22833]},{"type":"Point","coordinates":[91567,23638]},{"type":"Point","coordinates":[80789,27327]},{"type":"Point","coordinates":[93532,22837]},{"type":"Point","coordinates":[91576,23636]},{"type":"Point","coordinates":[80784,27333]},{"type":"Point","coordinates":[80782,27334]},{"type":"Point","coordinates":[93534,22843]},{"type":"Point","coordinates":[83248,26607]},{"type":"Point","coordinates":[85406,25917]},{"type":"Point","coordinates":[81888,27030]},{"type":"Point","coordinates":[93538,22859]},{"type":"Point","coordinates":[93538,22860]},{"type":"Point","coordinates":[93539,22860]},{"type":"Point","coordinates":[93539,22861]},{"type":"Point","coordinates":[93541,22865]},{"type":"Point","coordinates":[93560,22857]},{"type":"Point","coordinates":[91626,23647]},{"type":"Point","coordinates":[93597,22843]},{"type":"Point","coordinates":[93602,22841]},{"type":"Point","coordinates":[93532,22871]},{"type":"Point","coordinates":[93542,22868]},{"type":"Point","coordinates":[93567,22863]},{"type":"Point","coordinates":[93568,22864]},{"type":"Point","coordinates":[93568,22864]},{"type":"Point","coordinates":[93544,22874]},{"type":"Point","coordinates":[93569,22864]},{"type":"Point","coordinates":[93571,22864]},{"type":"Point","coordinates":[65127,30667]},{"type":"Point","coordinates":[93573,22867]},{"type":"Point","coordinates":[93573,22867]},{"type":"Point","coordinates":[83512,26561]},{"type":"Point","coordinates":[83512,26561]},{"type":"Point","coordinates":[80805,27379]},{"type":"Point","coordinates":[63420,30897]},{"type":"Point","coordinates":[93874,22761]},{"type":"Point","coordinates":[1943,19797]},{"type":"Point","coordinates":[92675,23272]},{"type":"Point","coordinates":[92675,23272]},{"type":"Point","coordinates":[81541,27193]},{"type":"Point","coordinates":[63610,30905]},{"type":"Point","coordinates":[89590,24501]},{"type":"Point","coordinates":[89890,24392]},{"type":"Point","coordinates":[94568,22509]},{"type":"Point","coordinates":[62815,31016]},{"type":"Point","coordinates":[93665,22904]},{"type":"Point","coordinates":[83479,26643]},{"type":"Point","coordinates":[80978,27401]},{"type":"Point","coordinates":[62709,31043]},{"type":"Point","coordinates":[81274,27317]},{"type":"Point","coordinates":[92709,23317]},{"type":"Point","coordinates":[93669,22922]},{"type":"Point","coordinates":[64784,30808]},{"type":"Point","coordinates":[70849,29840]},{"type":"Point","coordinates":[85433,26030]},{"type":"Point","coordinates":[92319,23486]},{"type":"Point","coordinates":[93661,22934]},{"type":"Point","coordinates":[92326,23488]},{"type":"Point","coordinates":[92712,23330]},{"type":"Point","coordinates":[92718,23329]},{"type":"Point","coordinates":[92715,23331]},{"type":"Point","coordinates":[92715,23331]},{"type":"Point","coordinates":[92712,23332]},{"type":"Point","coordinates":[92718,23330]},{"type":"Point","coordinates":[92718,23330]},{"type":"Point","coordinates":[92718,23330]},{"type":"Point","coordinates":[70840,29852]},{"type":"Point","coordinates":[92719,23332]},{"type":"Point","coordinates":[92721,23333]},{"type":"Point","coordinates":[92315,23500]},{"type":"Point","coordinates":[92723,23335]},{"type":"Point","coordinates":[70826,29860]},{"type":"Point","coordinates":[62624,31087]},{"type":"Point","coordinates":[69418,30121]},{"type":"Point","coordinates":[62789,31076]},{"type":"Point","coordinates":[92706,23352]},{"type":"Point","coordinates":[62779,31077]},{"type":"Point","coordinates":[62754,31085]},{"type":"Point","coordinates":[94802,22477]},{"type":"Point","coordinates":[85842,25925]},{"type":"Point","coordinates":[62759,31087]},{"type":"Point","coordinates":[62755,31088]},{"type":"Point","coordinates":[70863,29883]},{"type":"Point","coordinates":[70865,29884]},{"type":"Point","coordinates":[62627,31120]},{"type":"Point","coordinates":[92722,23375]},{"type":"Point","coordinates":[62694,31121]},{"type":"Point","coordinates":[70820,29909]},{"type":"Point","coordinates":[65413,30791]},{"type":"Point","coordinates":[65415,30798]},{"type":"Point","coordinates":[80914,27512]},{"type":"Point","coordinates":[62615,31144]},{"type":"Point","coordinates":[62640,31149]},{"type":"Point","coordinates":[63714,31029]},{"type":"Point","coordinates":[92681,23426]},{"type":"Point","coordinates":[62744,31155]},{"type":"Point","coordinates":[62745,31156]},{"type":"Point","coordinates":[80976,27522]},{"type":"Point","coordinates":[65384,30841]},{"type":"Point","coordinates":[62821,31177]},{"type":"Point","coordinates":[88707,25014]},{"type":"Point","coordinates":[81601,27374]},{"type":"Point","coordinates":[86147,25928]},{"type":"Point","coordinates":[81299,27468]},{"type":"Point","coordinates":[92051,23741]},{"type":"Point","coordinates":[81302,27472]},{"type":"Point","coordinates":[63626,31102]},{"type":"Point","coordinates":[91828,23837]},{"type":"Point","coordinates":[91343,24031]},{"type":"Point","coordinates":[86111,25956]},{"type":"Point","coordinates":[91833,23839]},{"type":"Point","coordinates":[62717,31214]},{"type":"Point","coordinates":[92030,23766]},{"type":"Point","coordinates":[93831,23026]},{"type":"Point","coordinates":[69051,30327]},{"type":"Point","coordinates":[85802,26075]},{"type":"Point","coordinates":[93830,23033]},{"type":"Point","coordinates":[86141,25965]},{"type":"Point","coordinates":[65150,30933]},{"type":"Point","coordinates":[62718,31231]},{"type":"Point","coordinates":[93833,23037]},{"type":"Point","coordinates":[81320,27499]},{"type":"Point","coordinates":[81317,27503]},{"type":"Point","coordinates":[85909,26053]},{"type":"Point","coordinates":[85899,26057]},{"type":"Point","coordinates":[81315,27506]},{"type":"Point","coordinates":[86150,25974]},{"type":"Point","coordinates":[93902,23020]},{"type":"Point","coordinates":[85886,26066]},{"type":"Point","coordinates":[93906,23027]},{"type":"Point","coordinates":[89346,24844]},{"type":"Point","coordinates":[85885,26081]},{"type":"Point","coordinates":[85877,26085]},{"type":"Point","coordinates":[85877,26085]},{"type":"Point","coordinates":[85877,26085]},{"type":"Point","coordinates":[85877,26085]},{"type":"Point","coordinates":[85879,26086]},{"type":"Point","coordinates":[85876,26087]},{"type":"Point","coordinates":[89811,24679]},{"type":"Point","coordinates":[83402,26902]},{"type":"Point","coordinates":[83402,26903]},{"type":"Point","coordinates":[85883,26095]},{"type":"Point","coordinates":[83408,26923]},{"type":"Point","coordinates":[62045,31365]},{"type":"Point","coordinates":[65301,30979]},{"type":"Point","coordinates":[80941,27697]},{"type":"Point","coordinates":[90960,24298]},{"type":"Point","coordinates":[89855,24724]},{"type":"Point","coordinates":[93363,23332]},{"type":"Point","coordinates":[80942,27708]},{"type":"Point","coordinates":[80947,27714]},{"type":"Point","coordinates":[7574,22769]},{"type":"Point","coordinates":[85944,26154]},{"type":"Point","coordinates":[86001,26136]},{"type":"Point","coordinates":[92983,23524]},{"type":"Point","coordinates":[83663,26913]},{"type":"Point","coordinates":[85946,26166]},{"type":"Point","coordinates":[85943,26168]},{"type":"Point","coordinates":[93048,23515]},{"type":"Point","coordinates":[65142,31083]},{"type":"Point","coordinates":[62463,31411]},{"type":"Point","coordinates":[85970,26198]},{"type":"Point","coordinates":[65333,31083]},{"type":"Point","coordinates":[85971,26202]},{"type":"Point","coordinates":[71622,30052]},{"type":"Point","coordinates":[64854,31165]},{"type":"Point","coordinates":[69220,30509]},{"type":"Point","coordinates":[81591,27627]},{"type":"Point","coordinates":[81591,27627]},{"type":"Point","coordinates":[92107,23966]},{"type":"Point","coordinates":[70773,30251]},{"type":"Point","coordinates":[63955,31325]},{"type":"Point","coordinates":[69485,30502]},{"type":"Point","coordinates":[85483,26443]},{"type":"Point","coordinates":[81328,27745]},{"type":"Point","coordinates":[92119,24007]},{"type":"Point","coordinates":[85487,26452]},{"type":"Point","coordinates":[85467,26470]},{"type":"Point","coordinates":[81313,27785]},{"type":"Point","coordinates":[85476,26483]},{"type":"Point","coordinates":[93053,23664]},{"type":"Point","coordinates":[5641,22100]},{"type":"Point","coordinates":[5644,22102]},{"type":"Point","coordinates":[5643,22104]},{"type":"Point","coordinates":[5637,22106]},{"type":"Point","coordinates":[69412,30579]},{"type":"Point","coordinates":[5633,22107]},{"type":"Point","coordinates":[86444,26173]},{"type":"Point","coordinates":[94287,23184]},{"type":"Point","coordinates":[69352,30618]},{"type":"Point","coordinates":[4965,21836]},{"type":"Point","coordinates":[5606,22128]},{"type":"Point","coordinates":[69706,30565]},{"type":"Point","coordinates":[81236,27866]},{"type":"Point","coordinates":[65119,31289]},{"type":"Point","coordinates":[95028,22890]},{"type":"Point","coordinates":[5599,22162]},{"type":"Point","coordinates":[5598,22163]},{"type":"Point","coordinates":[5595,22162]},{"type":"Point","coordinates":[5596,22162]},{"type":"Point","coordinates":[5591,22171]},{"type":"Point","coordinates":[5589,22171]},{"type":"Point","coordinates":[5589,22171]},{"type":"Point","coordinates":[86442,26273]},{"type":"Point","coordinates":[5591,22196]},{"type":"Point","coordinates":[92583,23976]},{"type":"Point","coordinates":[5797,22294]},{"type":"Point","coordinates":[5796,22295]},{"type":"Point","coordinates":[5796,22295]},{"type":"Point","coordinates":[92115,24178]},{"type":"Point","coordinates":[81584,27849]},{"type":"Point","coordinates":[5828,22325]},{"type":"Point","coordinates":[5828,22325]},{"type":"Point","coordinates":[5691,22264]},{"type":"Point","coordinates":[90912,24666]},{"type":"Point","coordinates":[72563,30111]},{"type":"Point","coordinates":[92562,24019]},{"type":"Point","coordinates":[89862,25083]},{"type":"Point","coordinates":[39080,31626]},{"type":"Point","coordinates":[92478,24064]},{"type":"Point","coordinates":[5843,22364]},{"type":"Point","coordinates":[94633,23172]},{"type":"Point","coordinates":[5843,22364]},{"type":"Point","coordinates":[5843,22365]},{"type":"Point","coordinates":[86693,26254]},{"type":"Point","coordinates":[5790,22351]},{"type":"Point","coordinates":[5819,22365]},{"type":"Point","coordinates":[92766,23973]},{"type":"Point","coordinates":[5836,22385]},{"type":"Point","coordinates":[5610,22291]},{"type":"Point","coordinates":[5912,22435]},{"type":"Point","coordinates":[5614,22305]},{"type":"Point","coordinates":[92489,24113]},{"type":"Point","coordinates":[5616,22309]},{"type":"Point","coordinates":[5617,22310]},{"type":"Point","coordinates":[5621,22314]},{"type":"Point","coordinates":[70653,30562]},{"type":"Point","coordinates":[5621,22315]},{"type":"Point","coordinates":[73306,30032]},{"type":"Point","coordinates":[5621,22316]},{"type":"Point","coordinates":[5631,22320]},{"type":"Point","coordinates":[5622,22317]},{"type":"Point","coordinates":[84798,26941]},{"type":"Point","coordinates":[5658,22340]},{"type":"Point","coordinates":[5629,22330]},{"type":"Point","coordinates":[5644,22338]},{"type":"Point","coordinates":[5648,22350]},{"type":"Point","coordinates":[5648,22353]},{"type":"Point","coordinates":[92703,24057]},{"type":"Point","coordinates":[5648,22354]},{"type":"Point","coordinates":[5692,22378]},{"type":"Point","coordinates":[93417,23768]},{"type":"Point","coordinates":[86544,26391]},{"type":"Point","coordinates":[92685,24081]},{"type":"Point","coordinates":[92685,24081]},{"type":"Point","coordinates":[94845,23181]},{"type":"Point","coordinates":[93955,23569]},{"type":"Point","coordinates":[5714,22428]},{"type":"Point","coordinates":[81179,28123]},{"type":"Point","coordinates":[68422,31029]},{"type":"Point","coordinates":[81582,28011]},{"type":"Point","coordinates":[5710,22436]},{"type":"Point","coordinates":[91042,24777]},{"type":"Point","coordinates":[89966,25196]},{"type":"Point","coordinates":[64684,31594]},{"type":"Point","coordinates":[81488,28052]},{"type":"Point","coordinates":[81488,28052]},{"type":"Point","coordinates":[68562,31031]},{"type":"Point","coordinates":[92266,24312]},{"type":"Point","coordinates":[89967,25219]},{"type":"Point","coordinates":[5678,22456]},{"type":"Point","coordinates":[94216,23520]},{"type":"Point","coordinates":[82520,27779]},{"type":"Point","coordinates":[82522,27784]},{"type":"Point","coordinates":[92305,24341]},{"type":"Point","coordinates":[43129,32217]},{"type":"Point","coordinates":[94872,23275]},{"type":"Point","coordinates":[94874,23277]},{"type":"Point","coordinates":[94874,23278]},{"type":"Point","coordinates":[93832,23721]},{"type":"Point","coordinates":[93835,23723]},{"type":"Point","coordinates":[5549,22451]},{"type":"Point","coordinates":[5548,22452]},{"type":"Point","coordinates":[5548,22452]},{"type":"Point","coordinates":[93218,23989]},{"type":"Point","coordinates":[64351,31715]},{"type":"Point","coordinates":[64317,31736]},{"type":"Point","coordinates":[92190,24428]},{"type":"Point","coordinates":[93287,23984]},{"type":"Point","coordinates":[92186,24437]},{"type":"Point","coordinates":[92150,24452]},{"type":"Point","coordinates":[86285,26634]},{"type":"Point","coordinates":[92146,24455]},{"type":"Point","coordinates":[92182,24443]},{"type":"Point","coordinates":[94867,23324]},{"type":"Point","coordinates":[22297,28582]},{"type":"Point","coordinates":[92143,24467]},{"type":"Point","coordinates":[92175,24458]},{"type":"Point","coordinates":[92148,24471]},{"type":"Point","coordinates":[92146,24472]},{"type":"Point","coordinates":[92159,24469]},{"type":"Point","coordinates":[92142,24480]},{"type":"Point","coordinates":[92144,24484]},{"type":"Point","coordinates":[92145,24484]},{"type":"Point","coordinates":[94891,23344]},{"type":"Point","coordinates":[93941,23749]},{"type":"Point","coordinates":[92058,24527]},{"type":"Point","coordinates":[94856,23365]},{"type":"Point","coordinates":[92078,24536]},{"type":"Point","coordinates":[92939,24190]},{"type":"Point","coordinates":[81086,28344]},{"type":"Point","coordinates":[94886,23389]},{"type":"Point","coordinates":[86357,26709]},{"type":"Point","coordinates":[93695,23922]},{"type":"Point","coordinates":[89588,25568]},{"type":"Point","coordinates":[71637,30697]},{"type":"Point","coordinates":[70611,30895]},{"type":"Point","coordinates":[81670,28243]},{"type":"Point","coordinates":[94937,23446]},{"type":"Point","coordinates":[93716,23967]},{"type":"Point","coordinates":[94936,23450]},{"type":"Point","coordinates":[94941,23449]},{"type":"Point","coordinates":[92140,24616]},{"type":"Point","coordinates":[89874,25512]},{"type":"Point","coordinates":[94377,23704]},{"type":"Point","coordinates":[71631,30739]},{"type":"Point","coordinates":[92151,24628]},{"type":"Point","coordinates":[70671,30933]},{"type":"Point","coordinates":[70666,30937]},{"type":"Point","coordinates":[87042,26561]},{"type":"Point","coordinates":[93461,24110]},{"type":"Point","coordinates":[84547,27408]},{"type":"Point","coordinates":[68745,31293]},{"type":"Point","coordinates":[91957,24747]},{"type":"Point","coordinates":[83085,27892]},{"type":"Point","coordinates":[86239,26894]},{"type":"Point","coordinates":[95086,23475]},{"type":"Point","coordinates":[95086,23475]},{"type":"Point","coordinates":[95086,23475]},{"type":"Point","coordinates":[27866,30227]},{"type":"Point","coordinates":[90151,25492]},{"type":"Point","coordinates":[83441,27839]},{"type":"Point","coordinates":[91941,24821]},{"type":"Point","coordinates":[93522,24186]},{"type":"Point","coordinates":[88203,26257]},{"type":"Point","coordinates":[88207,26259]},{"type":"Point","coordinates":[93781,24087]},{"type":"Point","coordinates":[93768,24095]},{"type":"Point","coordinates":[93787,24088]},{"type":"Point","coordinates":[44043,32631]},{"type":"Point","coordinates":[95029,23573]},{"type":"Point","coordinates":[86175,26989]},{"type":"Point","coordinates":[86101,27034]},{"type":"Point","coordinates":[86100,27035]},{"type":"Point","coordinates":[81515,28486]},{"type":"Point","coordinates":[70976,31038]},{"type":"Point","coordinates":[2263,21302]},{"type":"Point","coordinates":[91182,25194]},{"type":"Point","coordinates":[92263,24775]},{"type":"Point","coordinates":[81516,28513]},{"type":"Point","coordinates":[94160,24000]},{"type":"Point","coordinates":[82585,28206]},{"type":"Point","coordinates":[91104,25253]},{"type":"Point","coordinates":[91113,25252]},{"type":"Point","coordinates":[92260,24806]},{"type":"Point","coordinates":[93825,24163]},{"type":"Point","coordinates":[81844,28453]},{"type":"Point","coordinates":[94002,24100]},{"type":"Point","coordinates":[81481,28563]},{"type":"Point","coordinates":[83953,27812]},{"type":"Point","coordinates":[81856,28464]},{"type":"Point","coordinates":[81855,28467]},{"type":"Point","coordinates":[93773,24213]},{"type":"Point","coordinates":[92056,24921]},{"type":"Point","coordinates":[81853,28474]},{"type":"Point","coordinates":[94004,24132]},{"type":"Point","coordinates":[93998,24137]},{"type":"Point","coordinates":[94977,23720]},{"type":"Point","coordinates":[94977,23721]},{"type":"Point","coordinates":[91123,25307]},{"type":"Point","coordinates":[85459,27359]},{"type":"Point","coordinates":[93794,24232]},{"type":"Point","coordinates":[91995,24976]},{"type":"Point","coordinates":[71495,31053]},{"type":"Point","coordinates":[95118,23683]},{"type":"Point","coordinates":[69858,31359]},{"type":"Point","coordinates":[92366,24838]},{"type":"Point","coordinates":[93921,24207]},{"type":"Point","coordinates":[89922,25806]},{"type":"Point","coordinates":[89923,25806]},{"type":"Point","coordinates":[92222,24916]},{"type":"Point","coordinates":[92222,24919]},{"type":"Point","coordinates":[93801,24280]},{"type":"Point","coordinates":[37316,32149]},{"type":"Point","coordinates":[50814,33065]},{"type":"Point","coordinates":[92223,24935]},{"type":"Point","coordinates":[94768,23880]},{"type":"Point","coordinates":[92225,24939]},{"type":"Point","coordinates":[92231,24937]},{"type":"Point","coordinates":[92225,24940]},{"type":"Point","coordinates":[90795,25505]},{"type":"Point","coordinates":[92229,24939]},{"type":"Point","coordinates":[92226,24941]},{"type":"Point","coordinates":[71479,31110]},{"type":"Point","coordinates":[89934,25842]},{"type":"Point","coordinates":[71504,31119]},{"type":"Point","coordinates":[93826,24304]},{"type":"Point","coordinates":[93725,24348]},{"type":"Point","coordinates":[83714,28018]},{"type":"Point","coordinates":[93938,24268]},{"type":"Point","coordinates":[93836,24312]},{"type":"Point","coordinates":[89841,25907]},{"type":"Point","coordinates":[92414,24902]},{"type":"Point","coordinates":[94824,23903]},{"type":"Point","coordinates":[91161,25406]},{"type":"Point","coordinates":[82938,28277]},{"type":"Point","coordinates":[89971,25865]},{"type":"Point","coordinates":[89971,25866]},{"type":"Point","coordinates":[71488,31149]},{"type":"Point","coordinates":[82937,28280]},{"type":"Point","coordinates":[83500,28107]},{"type":"Point","coordinates":[91068,25453]},{"type":"Point","coordinates":[91159,25419]},{"type":"Point","coordinates":[92310,24966]},{"type":"Point","coordinates":[91150,25427]},{"type":"Point","coordinates":[94237,24173]},{"type":"Point","coordinates":[93953,24296]},{"type":"Point","coordinates":[92686,24821]},{"type":"Point","coordinates":[38764,32410]},{"type":"Point","coordinates":[81379,28774]},{"type":"Point","coordinates":[91221,25419]},{"type":"Point","coordinates":[71415,31196]},{"type":"Point","coordinates":[91222,25422]},{"type":"Point","coordinates":[94016,24289]},{"type":"Point","coordinates":[92632,24869]},{"type":"Point","coordinates":[71417,31209]},{"type":"Point","coordinates":[81719,28694]},{"type":"Point","coordinates":[92621,24876]},{"type":"Point","coordinates":[71417,31210]},{"type":"Point","coordinates":[89928,25935]},{"type":"Point","coordinates":[83832,28053]},{"type":"Point","coordinates":[82064,28597]},{"type":"Point","coordinates":[89910,25946]},{"type":"Point","coordinates":[93830,24386]},{"type":"Point","coordinates":[92444,24958]},{"type":"Point","coordinates":[92444,24958]},{"type":"Point","coordinates":[92444,24959]},{"type":"Point","coordinates":[92630,24886]},{"type":"Point","coordinates":[91109,25493]},{"type":"Point","coordinates":[81267,28844]},{"type":"Point","coordinates":[90012,25919]},{"type":"Point","coordinates":[93840,24392]},{"type":"Point","coordinates":[93840,24393]},{"type":"Point","coordinates":[92651,24885]},{"type":"Point","coordinates":[91074,25513]},{"type":"Point","coordinates":[92651,24886]},{"type":"Point","coordinates":[92450,24968]},{"type":"Point","coordinates":[92486,24953]},{"type":"Point","coordinates":[92640,24891]},{"type":"Point","coordinates":[81511,28779]},{"type":"Point","coordinates":[90016,25924]},{"type":"Point","coordinates":[90015,25926]},{"type":"Point","coordinates":[87049,27008]},{"type":"Point","coordinates":[81249,28862]},{"type":"Point","coordinates":[81250,28863]},{"type":"Point","coordinates":[92440,24982]},{"type":"Point","coordinates":[92442,24982]},{"type":"Point","coordinates":[81246,28867]},{"type":"Point","coordinates":[92634,24909]},{"type":"Point","coordinates":[92634,24910]},{"type":"Point","coordinates":[93865,24404]},{"type":"Point","coordinates":[93832,24418]},{"type":"Point","coordinates":[90031,25941]},{"type":"Point","coordinates":[82957,28369]},{"type":"Point","coordinates":[93801,24442]},{"type":"Point","coordinates":[85609,27525]},{"type":"Point","coordinates":[71551,31239]},{"type":"Point","coordinates":[83668,28159]},{"type":"Point","coordinates":[92673,24920]},{"type":"Point","coordinates":[92493,24993]},{"type":"Point","coordinates":[92493,24994]},{"type":"Point","coordinates":[92560,24968]},{"type":"Point","coordinates":[93869,24431]},{"type":"Point","coordinates":[92502,24996]},{"type":"Point","coordinates":[92584,24963]},{"type":"Point","coordinates":[92504,24998]},{"type":"Point","coordinates":[92505,24999]},{"type":"Point","coordinates":[93805,24464]},{"type":"Point","coordinates":[92506,25000]},{"type":"Point","coordinates":[92507,25000]},{"type":"Point","coordinates":[92506,25001]},{"type":"Point","coordinates":[92593,24966]},{"type":"Point","coordinates":[92593,24969]},{"type":"Point","coordinates":[92511,25003]},{"type":"Point","coordinates":[92589,24972]},{"type":"Point","coordinates":[93655,24536]},{"type":"Point","coordinates":[83851,28127]},{"type":"Point","coordinates":[93692,24522]},{"type":"Point","coordinates":[83849,28131]},{"type":"Point","coordinates":[92518,25009]},{"type":"Point","coordinates":[93945,24420]},{"type":"Point","coordinates":[92521,25009]},{"type":"Point","coordinates":[92522,25010]},{"type":"Point","coordinates":[92531,25007]},{"type":"Point","coordinates":[92525,25010]},{"type":"Point","coordinates":[92589,24984]},{"type":"Point","coordinates":[92531,25007]},{"type":"Point","coordinates":[92532,25007]},{"type":"Point","coordinates":[83372,28287]},{"type":"Point","coordinates":[92635,24976]},{"type":"Point","coordinates":[93688,24544]},{"type":"Point","coordinates":[92588,25002]},{"type":"Point","coordinates":[92627,24993]},{"type":"Point","coordinates":[92629,24993]},{"type":"Point","coordinates":[90649,25779]},{"type":"Point","coordinates":[82923,28453]},{"type":"Point","coordinates":[92616,25005]},{"type":"Point","coordinates":[92616,25005]},{"type":"Point","coordinates":[92618,25005]},{"type":"Point","coordinates":[92618,25006]},{"type":"Point","coordinates":[92204,25173]},{"type":"Point","coordinates":[92620,25006]},{"type":"Point","coordinates":[92620,25006]},{"type":"Point","coordinates":[92622,25006]},{"type":"Point","coordinates":[92621,25006]},{"type":"Point","coordinates":[92622,25006]},{"type":"Point","coordinates":[92621,25006]},{"type":"Point","coordinates":[92621,25007]},{"type":"Point","coordinates":[92621,25007]},{"type":"Point","coordinates":[92625,25006]},{"type":"Point","coordinates":[92626,25007]},{"type":"Point","coordinates":[92700,24977]},{"type":"Point","coordinates":[92632,25006]},{"type":"Point","coordinates":[92710,24975]},{"type":"Point","coordinates":[92637,25006]},{"type":"Point","coordinates":[92608,25018]},{"type":"Point","coordinates":[71519,31324]},{"type":"Point","coordinates":[92634,25008]},{"type":"Point","coordinates":[92635,25008]},{"type":"Point","coordinates":[92631,25012]},{"type":"Point","coordinates":[92634,25011]},{"type":"Point","coordinates":[92638,25010]},{"type":"Point","coordinates":[92634,25012]},{"type":"Point","coordinates":[95278,23902]},{"type":"Point","coordinates":[92658,25003]},{"type":"Point","coordinates":[92638,25011]},{"type":"Point","coordinates":[92635,25015]},{"type":"Point","coordinates":[92635,25015]},{"type":"Point","coordinates":[92631,25017]},{"type":"Point","coordinates":[92638,25014]},{"type":"Point","coordinates":[92644,25012]},{"type":"Point","coordinates":[92632,25018]},{"type":"Point","coordinates":[92639,25015]},{"type":"Point","coordinates":[92636,25016]},{"type":"Point","coordinates":[92632,25018]},{"type":"Point","coordinates":[92632,25019]},{"type":"Point","coordinates":[92632,25018]},{"type":"Point","coordinates":[92093,25236]},{"type":"Point","coordinates":[92632,25019]},{"type":"Point","coordinates":[92632,25019]},{"type":"Point","coordinates":[92635,25019]},{"type":"Point","coordinates":[83541,28287]},{"type":"Point","coordinates":[92634,25020]},{"type":"Point","coordinates":[92634,25020]},{"type":"Point","coordinates":[92634,25020]},{"type":"Point","coordinates":[92634,25020]},{"type":"Point","coordinates":[92633,25021]},{"type":"Point","coordinates":[92633,25021]},{"type":"Point","coordinates":[92633,25021]},{"type":"Point","coordinates":[92633,25021]},{"type":"Point","coordinates":[85799,27555]},{"type":"Point","coordinates":[92633,25021]},{"type":"Point","coordinates":[92633,25021]},{"type":"Point","coordinates":[94312,24325]},{"type":"Point","coordinates":[92632,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92633,25022]},{"type":"Point","coordinates":[92635,25022]},{"type":"Point","coordinates":[92635,25022]},{"type":"Point","coordinates":[83538,28290]},{"type":"Point","coordinates":[92633,25023]},{"type":"Point","coordinates":[92634,25022]},{"type":"Point","coordinates":[92633,25023]},{"type":"Point","coordinates":[92635,25022]},{"type":"Point","coordinates":[92633,25023]},{"type":"Point","coordinates":[92633,25023]},{"type":"Point","coordinates":[92633,25023]},{"type":"Point","coordinates":[83538,28291]},{"type":"Point","coordinates":[92633,25023]},{"type":"Point","coordinates":[92634,25023]},{"type":"Point","coordinates":[92634,25023]},{"type":"Point","coordinates":[92635,25023]},{"type":"Point","coordinates":[92634,25023]},{"type":"Point","coordinates":[92635,25023]},{"type":"Point","coordinates":[92634,25024]},{"type":"Point","coordinates":[92633,25024]},{"type":"Point","coordinates":[92633,25024]},{"type":"Point","coordinates":[83538,28293]},{"type":"Point","coordinates":[92635,25024]},{"type":"Point","coordinates":[92668,25011]},{"type":"Point","coordinates":[92635,25024]},{"type":"Point","coordinates":[92633,25025]},{"type":"Point","coordinates":[92633,25025]},{"type":"Point","coordinates":[92640,25023]},{"type":"Point","coordinates":[38815,32591]},{"type":"Point","coordinates":[92634,25026]},{"type":"Point","coordinates":[92641,25023]},{"type":"Point","coordinates":[92638,25025]},{"type":"Point","coordinates":[68452,31894]},{"type":"Point","coordinates":[92666,25015]},{"type":"Point","coordinates":[83547,28293]},{"type":"Point","coordinates":[92633,25028]},{"type":"Point","coordinates":[92636,25027]},{"type":"Point","coordinates":[92636,25027]},{"type":"Point","coordinates":[92636,25028]},{"type":"Point","coordinates":[83545,28295]},{"type":"Point","coordinates":[83546,28296]},{"type":"Point","coordinates":[83547,28296]},{"type":"Point","coordinates":[83547,28296]},{"type":"Point","coordinates":[83547,28296]},{"type":"Point","coordinates":[92657,25023]},{"type":"Point","coordinates":[92633,25032]},{"type":"Point","coordinates":[92635,25032]},{"type":"Point","coordinates":[83547,28298]},{"type":"Point","coordinates":[92635,25032]},{"type":"Point","coordinates":[92635,25032]},{"type":"Point","coordinates":[88330,26685]},{"type":"Point","coordinates":[92642,25030]},{"type":"Point","coordinates":[82888,28503]},{"type":"Point","coordinates":[92638,25033]},{"type":"Point","coordinates":[82892,28504]},{"type":"Point","coordinates":[83547,28302]},{"type":"Point","coordinates":[88196,26737]},{"type":"Point","coordinates":[92639,25036]},{"type":"Point","coordinates":[92639,25036]},{"type":"Point","coordinates":[92662,25029]},{"type":"Point","coordinates":[92661,25029]},{"type":"Point","coordinates":[83841,28215]},{"type":"Point","coordinates":[92643,25039]},{"type":"Point","coordinates":[92643,25039]},{"type":"Point","coordinates":[92642,25040]},{"type":"Point","coordinates":[92643,25039]},{"type":"Point","coordinates":[92643,25040]},{"type":"Point","coordinates":[92643,25040]},{"type":"Point","coordinates":[92643,25041]},{"type":"Point","coordinates":[92644,25047]},{"type":"Point","coordinates":[92678,25033]},{"type":"Point","coordinates":[92671,25040]},{"type":"Point","coordinates":[92672,25040]},{"type":"Point","coordinates":[92476,25122]},{"type":"Point","coordinates":[92695,25036]},{"type":"Point","coordinates":[92481,25125]},{"type":"Point","coordinates":[92678,25048]},{"type":"Point","coordinates":[68470,31930]},{"type":"Point","coordinates":[94551,24278]},{"type":"Point","coordinates":[92650,25073]},{"type":"Point","coordinates":[92646,25075]},{"type":"Point","coordinates":[92649,25078]},{"type":"Point","coordinates":[94706,24220]},{"type":"Point","coordinates":[83528,28359]},{"type":"Point","coordinates":[92280,25236]},{"type":"Point","coordinates":[37933,32550]},{"type":"Point","coordinates":[92834,25012]},{"type":"Point","coordinates":[69849,31720]},{"type":"Point","coordinates":[94521,24311]},{"type":"Point","coordinates":[91567,25524]},{"type":"Point","coordinates":[92485,25158]},{"type":"Point","coordinates":[94525,24312]},{"type":"Point","coordinates":[92485,25159]},{"type":"Point","coordinates":[92484,25164]},{"type":"Point","coordinates":[73137,31091]},{"type":"Point","coordinates":[91939,25390]},{"type":"Point","coordinates":[89754,26237]},{"type":"Point","coordinates":[91978,25378]},{"type":"Point","coordinates":[92652,25108]},{"type":"Point","coordinates":[92652,25108]},{"type":"Point","coordinates":[92652,25108]},{"type":"Point","coordinates":[92653,25108]},{"type":"Point","coordinates":[92413,25206]},{"type":"Point","coordinates":[92467,25187]},{"type":"Point","coordinates":[4609,22924]},{"type":"Point","coordinates":[90929,25797]},{"type":"Point","coordinates":[92468,25188]},{"type":"Point","coordinates":[92687,25100]},{"type":"Point","coordinates":[92139,25323]},{"type":"Point","coordinates":[90130,26108]},{"type":"Point","coordinates":[93907,24600]},{"type":"Point","coordinates":[91944,25404]},{"type":"Point","coordinates":[93930,24593]},{"type":"Point","coordinates":[95416,23959]},{"type":"Point","coordinates":[92578,25156]},{"type":"Point","coordinates":[95162,24075]},{"type":"Point","coordinates":[92405,25238]},{"type":"Point","coordinates":[82869,28619]},{"type":"Point","coordinates":[93912,24619]},{"type":"Point","coordinates":[92578,25173]},{"type":"Point","coordinates":[91936,25433]},{"type":"Point","coordinates":[93004,25003]},{"type":"Point","coordinates":[93003,25005]},{"type":"Point","coordinates":[93002,25005]},{"type":"Point","coordinates":[93001,25006]},{"type":"Point","coordinates":[91951,25433]},{"type":"Point","coordinates":[92581,25184]},{"type":"Point","coordinates":[95333,24032]},{"type":"Point","coordinates":[94042,24591]},{"type":"Point","coordinates":[82868,28649]},{"type":"Point","coordinates":[94548,24381]},{"type":"Point","coordinates":[94033,24601]},{"type":"Point","coordinates":[94034,24600]},{"type":"Point","coordinates":[94352,24467]},{"type":"Point","coordinates":[94035,24601]},{"type":"Point","coordinates":[94040,24602]},{"type":"Point","coordinates":[81472,29074]},{"type":"Point","coordinates":[92102,25407]},{"type":"Point","coordinates":[94071,24602]},{"type":"Point","coordinates":[93318,24919]},{"type":"Point","coordinates":[93956,24655]},{"type":"Point","coordinates":[93824,24712]},{"type":"Point","coordinates":[91739,25562]},{"type":"Point","coordinates":[94677,24353]},{"type":"Point","coordinates":[93985,24646]},{"type":"Point","coordinates":[92502,25258]},{"type":"Point","coordinates":[91245,25760]},{"type":"Point","coordinates":[92702,25181]},{"type":"Point","coordinates":[92569,25235]},{"type":"Point","coordinates":[91988,25469]},{"type":"Point","coordinates":[91988,25470]},{"type":"Point","coordinates":[92576,25235]},{"type":"Point","coordinates":[65091,32574]},{"type":"Point","coordinates":[92641,25212]},{"type":"Point","coordinates":[92606,25228]},{"type":"Point","coordinates":[91992,25476]},{"type":"Point","coordinates":[90324,26130]},{"type":"Point","coordinates":[94025,24646]},{"type":"Point","coordinates":[91993,25480]},{"type":"Point","coordinates":[91989,25485]},{"type":"Point","coordinates":[94761,24340]},{"type":"Point","coordinates":[94790,24328]},{"type":"Point","coordinates":[92000,25486]},{"type":"Point","coordinates":[92007,25484]},{"type":"Point","coordinates":[93706,24792]},{"type":"Point","coordinates":[92001,25490]},{"type":"Point","coordinates":[92667,25223]},{"type":"Point","coordinates":[93713,24794]},{"type":"Point","coordinates":[93714,24794]},{"type":"Point","coordinates":[93703,24800]},{"type":"Point","coordinates":[92610,25251]},{"type":"Point","coordinates":[93912,24716]},{"type":"Point","coordinates":[92316,25374]},{"type":"Point","coordinates":[92928,25129]},{"type":"Point","coordinates":[82840,28731]},{"type":"Point","coordinates":[93831,24757]},{"type":"Point","coordinates":[82835,28736]},{"type":"Point","coordinates":[92386,25354]},{"type":"Point","coordinates":[92279,25397]},{"type":"Point","coordinates":[93995,24694]},{"type":"Point","coordinates":[92380,25362]},{"type":"Point","coordinates":[80935,29309]},{"type":"Point","coordinates":[80940,29308]},{"type":"Point","coordinates":[80935,29311]},{"type":"Point","coordinates":[82879,28736]},{"type":"Point","coordinates":[92928,25147]},{"type":"Point","coordinates":[91022,25907]},{"type":"Point","coordinates":[80935,29313]},{"type":"Point","coordinates":[94050,24683]},{"type":"Point","coordinates":[94773,24379]},{"type":"Point","coordinates":[89988,26310]},{"type":"Point","coordinates":[93924,24741]},{"type":"Point","coordinates":[92433,25354]},{"type":"Point","coordinates":[82826,28760]},{"type":"Point","coordinates":[92933,25155]},{"type":"Point","coordinates":[92474,25344]},{"type":"Point","coordinates":[94246,24612]},{"type":"Point","coordinates":[80944,29322]},{"type":"Point","coordinates":[92932,25158]},{"type":"Point","coordinates":[92383,25381]},{"type":"Point","coordinates":[95557,24050]},{"type":"Point","coordinates":[92951,25155]},{"type":"Point","coordinates":[92952,25155]},{"type":"Point","coordinates":[80938,29329]},{"type":"Point","coordinates":[82810,28775]},{"type":"Point","coordinates":[92474,25350]},{"type":"Point","coordinates":[82809,28777]},{"type":"Point","coordinates":[93893,24769]},{"type":"Point","coordinates":[93892,24769]},{"type":"Point","coordinates":[94063,24699]},{"type":"Point","coordinates":[93979,24736]},{"type":"Point","coordinates":[92934,25170]},{"type":"Point","coordinates":[92842,25215]},{"type":"Point","coordinates":[92843,25215]},{"type":"Point","coordinates":[92392,25398]},{"type":"Point","coordinates":[93541,24930]},{"type":"Point","coordinates":[92938,25179]},{"type":"Point","coordinates":[94190,24660]},{"type":"Point","coordinates":[92705,25277]},{"type":"Point","coordinates":[92421,25393]},{"type":"Point","coordinates":[93998,24749]},{"type":"Point","coordinates":[92818,25241]},{"type":"Point","coordinates":[93909,24792]},{"type":"Point","coordinates":[92897,25212]},{"type":"Point","coordinates":[65478,32629]},{"type":"Point","coordinates":[82821,28809]},{"type":"Point","coordinates":[93915,24795]},{"type":"Point","coordinates":[93928,24790]},{"type":"Point","coordinates":[86005,27787]},{"type":"Point","coordinates":[93932,24793]},{"type":"Point","coordinates":[93553,24951]},{"type":"Point","coordinates":[93938,24792]},{"type":"Point","coordinates":[93942,24791]},{"type":"Point","coordinates":[2729,22259]},{"type":"Point","coordinates":[93106,25144]},{"type":"Point","coordinates":[92892,25234]},{"type":"Point","coordinates":[93884,24825]},{"type":"Point","coordinates":[90449,26203]},{"type":"Point","coordinates":[82848,28821]},{"type":"Point","coordinates":[94094,24744]},{"type":"Point","coordinates":[91229,25907]},{"type":"Point","coordinates":[93698,24913]},{"type":"Point","coordinates":[93110,25158]},{"type":"Point","coordinates":[93110,25158]},{"type":"Point","coordinates":[82796,28846]},{"type":"Point","coordinates":[82826,28842]},{"type":"Point","coordinates":[82834,28842]},{"type":"Point","coordinates":[82843,28840]},{"type":"Point","coordinates":[82839,28844]},{"type":"Point","coordinates":[82839,28844]},{"type":"Point","coordinates":[82838,28845]},{"type":"Point","coordinates":[82841,28844]},{"type":"Point","coordinates":[92977,25231]},{"type":"Point","coordinates":[92338,25491]},{"type":"Point","coordinates":[63696,32904]},{"type":"Point","coordinates":[92352,25491]},{"type":"Point","coordinates":[94032,24802]},{"type":"Point","coordinates":[94448,24627]},{"type":"Point","coordinates":[82795,28874]},{"type":"Point","coordinates":[94037,24803]},{"type":"Point","coordinates":[94031,24807]},{"type":"Point","coordinates":[82846,28867]},{"type":"Point","coordinates":[93018,25232]},{"type":"Point","coordinates":[94048,24805]},{"type":"Point","coordinates":[92685,25374]},{"type":"Point","coordinates":[94402,24661]},{"type":"Point","coordinates":[92347,25514]},{"type":"Point","coordinates":[92887,25295]},{"type":"Point","coordinates":[92342,25519]},{"type":"Point","coordinates":[80601,29551]},{"type":"Point","coordinates":[94853,24489]},{"type":"Point","coordinates":[90918,26096]},{"type":"Point","coordinates":[94230,24757]},{"type":"Point","coordinates":[94414,24682]},{"type":"Point","coordinates":[85955,27899]},{"type":"Point","coordinates":[92671,25409]},{"type":"Point","coordinates":[94170,24793]},{"type":"Point","coordinates":[82830,28912]},{"type":"Point","coordinates":[94774,24543]},{"type":"Point","coordinates":[94077,24847]},{"type":"Point","coordinates":[64474,32885]},{"type":"Point","coordinates":[85936,27936]},{"type":"Point","coordinates":[7761,24662]},{"type":"Point","coordinates":[92484,25523]},{"type":"Point","coordinates":[94098,24861]},{"type":"Point","coordinates":[80709,29576]},{"type":"Point","coordinates":[95248,24378]},{"type":"Point","coordinates":[92809,25405]},{"type":"Point","coordinates":[3584,22809]},{"type":"Point","coordinates":[95248,24383]},{"type":"Point","coordinates":[95248,24383]},{"type":"Point","coordinates":[95247,24392]},{"type":"Point","coordinates":[90766,26227]},{"type":"Point","coordinates":[90767,26227]},{"type":"Point","coordinates":[95247,24394]},{"type":"Point","coordinates":[90767,26230]},{"type":"Point","coordinates":[92264,25643]},{"type":"Point","coordinates":[81415,29398]},{"type":"Point","coordinates":[95279,24385]},{"type":"Point","coordinates":[92901,25390]},{"type":"Point","coordinates":[92358,25614]},{"type":"Point","coordinates":[95196,24431]},{"type":"Point","coordinates":[80259,29739]},{"type":"Point","coordinates":[95238,24416]},{"type":"Point","coordinates":[92223,25676]},{"type":"Point","coordinates":[94134,24893]},{"type":"Point","coordinates":[86241,27896]},{"type":"Point","coordinates":[86231,27901]},{"type":"Point","coordinates":[92234,25679]},{"type":"Point","coordinates":[93006,25366]},{"type":"Point","coordinates":[84441,28494]},{"type":"Point","coordinates":[84441,28495]},{"type":"Point","coordinates":[93007,25369]},{"type":"Point","coordinates":[92839,25440]},{"type":"Point","coordinates":[92840,25440]},{"type":"Point","coordinates":[92839,25440]},{"type":"Point","coordinates":[92841,25441]},{"type":"Point","coordinates":[94956,24556]},{"type":"Point","coordinates":[92739,25489]},{"type":"Point","coordinates":[92739,25489]},{"type":"Point","coordinates":[92838,25449]},{"type":"Point","coordinates":[92505,25587]},{"type":"Point","coordinates":[72714,31605]},{"type":"Point","coordinates":[93678,25113]},{"type":"Point","coordinates":[92746,25499]},{"type":"Point","coordinates":[94662,24701]},{"type":"Point","coordinates":[94091,24944]},{"type":"Point","coordinates":[92786,25484]},{"type":"Point","coordinates":[92786,25484]},{"type":"Point","coordinates":[92747,25502]},{"type":"Point","coordinates":[92746,25505]},{"type":"Point","coordinates":[85316,28242]},{"type":"Point","coordinates":[85314,28244]},{"type":"Point","coordinates":[92960,25422]},{"type":"Point","coordinates":[92811,25483]},{"type":"Point","coordinates":[94104,24948]},{"type":"Point","coordinates":[92808,25485]},{"type":"Point","coordinates":[94090,24955]},{"type":"Point","coordinates":[92961,25424]},{"type":"Point","coordinates":[94404,24823]},{"type":"Point","coordinates":[92811,25485]},{"type":"Point","coordinates":[92811,25485]},{"type":"Point","coordinates":[92809,25486]},{"type":"Point","coordinates":[72658,31633]},{"type":"Point","coordinates":[92815,25484]},{"type":"Point","coordinates":[92956,25428]},{"type":"Point","coordinates":[92313,25689]},{"type":"Point","coordinates":[85315,28251]},{"type":"Point","coordinates":[92288,25701]},{"type":"Point","coordinates":[92956,25431]},{"type":"Point","coordinates":[94096,24959]},{"type":"Point","coordinates":[92811,25492]},{"type":"Point","coordinates":[92811,25494]},{"type":"Point","coordinates":[92806,25498]},{"type":"Point","coordinates":[72965,31580]},{"type":"Point","coordinates":[92953,25438]},{"type":"Point","coordinates":[92954,25438]},{"type":"Point","coordinates":[92808,25499]},{"type":"Point","coordinates":[92808,25500]},{"type":"Point","coordinates":[92951,25443]},{"type":"Point","coordinates":[92808,25501]},{"type":"Point","coordinates":[84986,28372]},{"type":"Point","coordinates":[94897,24630]},{"type":"Point","coordinates":[92815,25501]},{"type":"Point","coordinates":[92824,25498]},{"type":"Point","coordinates":[92754,25527]},{"type":"Point","coordinates":[72971,31586]},{"type":"Point","coordinates":[92754,25527]},{"type":"Point","coordinates":[92754,25528]},{"type":"Point","coordinates":[94082,24981]},{"type":"Point","coordinates":[94449,24827]},{"type":"Point","coordinates":[92956,25450]},{"type":"Point","coordinates":[85309,28274]},{"type":"Point","coordinates":[91443,26058]},{"type":"Point","coordinates":[94458,24827]},{"type":"Point","coordinates":[92036,25824]},{"type":"Point","coordinates":[92753,25537]},{"type":"Point","coordinates":[92753,25538]},{"type":"Point","coordinates":[94210,24937]},{"type":"Point","coordinates":[94455,24837]},{"type":"Point","coordinates":[94194,24948]},{"type":"Point","coordinates":[94455,24838]},{"type":"Point","coordinates":[80859,29656]},{"type":"Point","coordinates":[93525,25229]},{"type":"Point","coordinates":[94373,24874]},{"type":"Point","coordinates":[94462,24837]},{"type":"Point","coordinates":[92713,25565]},{"type":"Point","coordinates":[92715,25567]},{"type":"Point","coordinates":[92717,25568]},{"type":"Point","coordinates":[92050,25837]},{"type":"Point","coordinates":[89557,26800]},{"type":"Point","coordinates":[92894,25499]},{"type":"Point","coordinates":[92722,25570]},{"type":"Point","coordinates":[92722,25570]},{"type":"Point","coordinates":[85529,28225]},{"type":"Point","coordinates":[92728,25572]},{"type":"Point","coordinates":[92729,25573]},{"type":"Point","coordinates":[92729,25573]},{"type":"Point","coordinates":[93987,25057]},{"type":"Point","coordinates":[84993,28411]},{"type":"Point","coordinates":[94284,24933]},{"type":"Point","coordinates":[92789,25553]},{"type":"Point","coordinates":[92788,25560]},{"type":"Point","coordinates":[85616,28214]},{"type":"Point","coordinates":[92788,25565]},{"type":"Point","coordinates":[94282,24947]},{"type":"Point","coordinates":[92834,25549]},{"type":"Point","coordinates":[92805,25562]},{"type":"Point","coordinates":[92805,25563]},{"type":"Point","coordinates":[93207,25402]},{"type":"Point","coordinates":[93539,25267]},{"type":"Point","coordinates":[80227,29879]},{"type":"Point","coordinates":[90979,26296]},{"type":"Point","coordinates":[92807,25573]},{"type":"Point","coordinates":[93805,25162]},{"type":"Point","coordinates":[92808,25577]},{"type":"Point","coordinates":[94433,24908]},{"type":"Point","coordinates":[85449,28299]},{"type":"Point","coordinates":[92807,25587]},{"type":"Point","coordinates":[92924,25539]},{"type":"Point","coordinates":[92928,25539]},{"type":"Point","coordinates":[92832,25579]},{"type":"Point","coordinates":[94257,24996]},{"type":"Point","coordinates":[94391,24944]},{"type":"Point","coordinates":[93096,25484]},{"type":"Point","coordinates":[93479,25332]},{"type":"Point","coordinates":[93518,25318]},{"type":"Point","coordinates":[72354,31816]},{"type":"Point","coordinates":[92617,25689]},{"type":"Point","coordinates":[94171,25049]},{"type":"Point","coordinates":[92370,25790]},{"type":"Point","coordinates":[93515,25328]},{"type":"Point","coordinates":[93515,25329]},{"type":"Point","coordinates":[92825,25612]},{"type":"Point","coordinates":[92823,25614]},{"type":"Point","coordinates":[95199,24618]},{"type":"Point","coordinates":[82829,29171]},{"type":"Point","coordinates":[92289,25832]},{"type":"Point","coordinates":[92293,25830]},{"type":"Point","coordinates":[93513,25333]},{"type":"Point","coordinates":[94407,24960]},{"type":"Point","coordinates":[92820,25619]},{"type":"Point","coordinates":[80621,29824]},{"type":"Point","coordinates":[94874,24762]},{"type":"Point","coordinates":[80611,29829]},{"type":"Point","coordinates":[92654,25690]},{"type":"Point","coordinates":[85622,28287]},{"type":"Point","coordinates":[94255,25032]},{"type":"Point","coordinates":[92824,25625]},{"type":"Point","coordinates":[92286,25844]},{"type":"Point","coordinates":[92737,25666]},{"type":"Point","coordinates":[92736,25667]},{"type":"Point","coordinates":[94097,25106]},{"type":"Point","coordinates":[94137,25089]},{"type":"Point","coordinates":[94140,25092]},{"type":"Point","coordinates":[92297,25850]},{"type":"Point","coordinates":[82836,29191]},{"type":"Point","coordinates":[94058,25129]},{"type":"Point","coordinates":[94392,24988]},{"type":"Point","coordinates":[94060,25131]},{"type":"Point","coordinates":[92957,25588]},{"type":"Point","coordinates":[92030,25964]},{"type":"Point","coordinates":[92026,25966]},{"type":"Point","coordinates":[94093,25121]},{"type":"Point","coordinates":[60658,33566]},{"type":"Point","coordinates":[94081,25129]},{"type":"Point","coordinates":[94074,25134]},{"type":"Point","coordinates":[93840,25234]},{"type":"Point","coordinates":[94411,24995]},{"type":"Point","coordinates":[93007,25581]},{"type":"Point","coordinates":[92761,25681]},{"type":"Point","coordinates":[94465,24976]},{"type":"Point","coordinates":[92734,25696]},{"type":"Point","coordinates":[94355,25029]},{"type":"Point","coordinates":[94355,25030]},{"type":"Point","coordinates":[94469,24984]},{"type":"Point","coordinates":[80552,29895]},{"type":"Point","coordinates":[2984,22801]},{"type":"Point","coordinates":[91388,26249]},{"type":"Point","coordinates":[94461,24997]},{"type":"Point","coordinates":[92866,25660]},{"type":"Point","coordinates":[94413,25018]},{"type":"Point","coordinates":[80406,29944]},{"type":"Point","coordinates":[94201,25109]},{"type":"Point","coordinates":[80555,29904]},{"type":"Point","coordinates":[92827,25680]},{"type":"Point","coordinates":[94689,24904]},{"type":"Point","coordinates":[85007,28550]},{"type":"Point","coordinates":[80547,29909]},{"type":"Point","coordinates":[80547,29909]},{"type":"Point","coordinates":[80547,29909]},{"type":"Point","coordinates":[80547,29909]},{"type":"Point","coordinates":[80548,29909]},{"type":"Point","coordinates":[80547,29910]},{"type":"Point","coordinates":[80549,29909]},{"type":"Point","coordinates":[80548,29911]},{"type":"Point","coordinates":[94195,25121]},{"type":"Point","coordinates":[94414,25029]},{"type":"Point","coordinates":[94018,25196]},{"type":"Point","coordinates":[94414,25030]},{"type":"Point","coordinates":[84055,28864]},{"type":"Point","coordinates":[69821,32381]},{"type":"Point","coordinates":[94631,24942]},{"type":"Point","coordinates":[92678,25754]},{"type":"Point","coordinates":[65485,33067]},{"type":"Point","coordinates":[94672,24926]},{"type":"Point","coordinates":[94840,24855]},{"type":"Point","coordinates":[93013,25621]},{"type":"Point","coordinates":[94436,25029]},{"type":"Point","coordinates":[94898,24837]},{"type":"Point","coordinates":[92743,25737]},{"type":"Point","coordinates":[92727,25745]},{"type":"Point","coordinates":[92080,26007]},{"type":"Point","coordinates":[92732,25746]},{"type":"Point","coordinates":[92462,25860]},{"type":"Point","coordinates":[94472,25030]},{"type":"Point","coordinates":[92737,25750]},{"type":"Point","coordinates":[92717,25763]},{"type":"Point","coordinates":[92715,25764]},{"type":"Point","coordinates":[92715,25764]},{"type":"Point","coordinates":[92737,25756]},{"type":"Point","coordinates":[92716,25765]},{"type":"Point","coordinates":[92744,25755]},{"type":"Point","coordinates":[92716,25767]},{"type":"Point","coordinates":[92716,25767]},{"type":"Point","coordinates":[92857,25710]},{"type":"Point","coordinates":[80536,29954]},{"type":"Point","coordinates":[86042,28248]},{"type":"Point","coordinates":[92716,25770]},{"type":"Point","coordinates":[92745,25758]},{"type":"Point","coordinates":[80531,29956]},{"type":"Point","coordinates":[92716,25770]},{"type":"Point","coordinates":[92860,25712]},{"type":"Point","coordinates":[92719,25770]},{"type":"Point","coordinates":[92719,25770]},{"type":"Point","coordinates":[92719,25772]},{"type":"Point","coordinates":[80542,29956]},{"type":"Point","coordinates":[80541,29956]},{"type":"Point","coordinates":[92719,25772]},{"type":"Point","coordinates":[92860,25716]},{"type":"Point","coordinates":[80540,29957]},{"type":"Point","coordinates":[92719,25773]},{"type":"Point","coordinates":[94463,25050]},{"type":"Point","coordinates":[80541,29958]},{"type":"Point","coordinates":[92719,25775]},{"type":"Point","coordinates":[85677,28377]},{"type":"Point","coordinates":[85677,28378]},{"type":"Point","coordinates":[92720,25775]},{"type":"Point","coordinates":[92719,25776]},{"type":"Point","coordinates":[86026,28262]},{"type":"Point","coordinates":[80543,29960]},{"type":"Point","coordinates":[92733,25771]},{"type":"Point","coordinates":[92838,25729]},{"type":"Point","coordinates":[92744,25767]},{"type":"Point","coordinates":[92733,25772]},{"type":"Point","coordinates":[92744,25768]},{"type":"Point","coordinates":[92720,25777]},{"type":"Point","coordinates":[92744,25768]},{"type":"Point","coordinates":[92739,25770]},{"type":"Point","coordinates":[92739,25770]},{"type":"Point","coordinates":[92778,25754]},{"type":"Point","coordinates":[92738,25770]},{"type":"Point","coordinates":[92779,25754]},{"type":"Point","coordinates":[92740,25770]},{"type":"Point","coordinates":[92740,25770]},{"type":"Point","coordinates":[72370,31941]},{"type":"Point","coordinates":[92747,25768]},{"type":"Point","coordinates":[92748,25767]},{"type":"Point","coordinates":[91316,26339]},{"type":"Point","coordinates":[80544,29964]},{"type":"Point","coordinates":[92766,25762]},{"type":"Point","coordinates":[92756,25767]},{"type":"Point","coordinates":[92767,25763]},{"type":"Point","coordinates":[92766,25763]},{"type":"Point","coordinates":[92311,25947]},{"type":"Point","coordinates":[92761,25767]},{"type":"Point","coordinates":[80541,29969]},{"type":"Point","coordinates":[91718,26187]},{"type":"Point","coordinates":[92884,25719]},{"type":"Point","coordinates":[92884,25720]},{"type":"Point","coordinates":[92866,25727]},{"type":"Point","coordinates":[92739,25781]},{"type":"Point","coordinates":[92807,25753]},{"type":"Point","coordinates":[91721,26189]},{"type":"Point","coordinates":[92867,25730]},{"type":"Point","coordinates":[92867,25731]},{"type":"Point","coordinates":[80522,29981]},{"type":"Point","coordinates":[80522,29981]},{"type":"Point","coordinates":[80522,29981]},{"type":"Point","coordinates":[92740,25784]},{"type":"Point","coordinates":[92609,25838]},{"type":"Point","coordinates":[92612,25837]},{"type":"Point","coordinates":[80523,29983]},{"type":"Point","coordinates":[92297,25965]},{"type":"Point","coordinates":[92768,25775]},{"type":"Point","coordinates":[72408,31952]},{"type":"Point","coordinates":[85491,28462]},{"type":"Point","coordinates":[91949,26113]},{"type":"Point","coordinates":[94446,25089]},{"type":"Point","coordinates":[94260,25171]},{"type":"Point","coordinates":[94655,25005]},{"type":"Point","coordinates":[94888,24906]},{"type":"Point","coordinates":[92743,25802]},{"type":"Point","coordinates":[93029,25685]},{"type":"Point","coordinates":[92743,25803]},{"type":"Point","coordinates":[92743,25803]},{"type":"Point","coordinates":[86776,28044]},{"type":"Point","coordinates":[92510,25901]},{"type":"Point","coordinates":[94222,25196]},{"type":"Point","coordinates":[94471,25091]},{"type":"Point","coordinates":[92745,25813]},{"type":"Point","coordinates":[92941,25734]},{"type":"Point","coordinates":[92939,25734]},{"type":"Point","coordinates":[92523,25904]},{"type":"Point","coordinates":[92526,25903]},{"type":"Point","coordinates":[94101,25255]},{"type":"Point","coordinates":[94477,25097]},{"type":"Point","coordinates":[72711,31920]},{"type":"Point","coordinates":[90994,26513]},{"type":"Point","coordinates":[94493,25093]},{"type":"Point","coordinates":[92370,25971]},{"type":"Point","coordinates":[94896,24924]},{"type":"Point","coordinates":[93420,25547]},{"type":"Point","coordinates":[92938,25746]},{"type":"Point","coordinates":[92935,25748]},{"type":"Point","coordinates":[94840,24953]},{"type":"Point","coordinates":[94840,24953]},{"type":"Point","coordinates":[94489,25103]},{"type":"Point","coordinates":[92662,25862]},{"type":"Point","coordinates":[91882,26175]},{"type":"Point","coordinates":[94842,24955]},{"type":"Point","coordinates":[94842,24956]},{"type":"Point","coordinates":[92913,25764]},{"type":"Point","coordinates":[85585,28475]},{"type":"Point","coordinates":[92749,25831]},{"type":"Point","coordinates":[92746,25833]},{"type":"Point","coordinates":[92746,25833]},{"type":"Point","coordinates":[92746,25833]},{"type":"Point","coordinates":[81578,29730]},{"type":"Point","coordinates":[81569,29733]},{"type":"Point","coordinates":[85034,28662]},{"type":"Point","coordinates":[93463,25544]},{"type":"Point","coordinates":[85583,28483]},{"type":"Point","coordinates":[92641,25882]},{"type":"Point","coordinates":[94829,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94831,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24972]},{"type":"Point","coordinates":[94830,24973]},{"type":"Point","coordinates":[94830,24973]},{"type":"Point","coordinates":[94830,24973]},{"type":"Point","coordinates":[94830,24973]},{"type":"Point","coordinates":[94830,24973]},{"type":"Point","coordinates":[94831,24974]},{"type":"Point","coordinates":[80594,30021]},{"type":"Point","coordinates":[94831,24974]},{"type":"Point","coordinates":[94371,25171]},{"type":"Point","coordinates":[85622,28475]},{"type":"Point","coordinates":[94831,24976]},{"type":"Point","coordinates":[94837,24973]},{"type":"Point","coordinates":[92940,25768]},{"type":"Point","coordinates":[94541,25102]},{"type":"Point","coordinates":[92662,25881]},{"type":"Point","coordinates":[94834,24977]},{"type":"Point","coordinates":[92401,25988]},{"type":"Point","coordinates":[92727,25856]},{"type":"Point","coordinates":[94834,24979]},{"type":"Point","coordinates":[94834,24984]},{"type":"Point","coordinates":[85570,28503]},{"type":"Point","coordinates":[94823,24990]},{"type":"Point","coordinates":[85570,28503]},{"type":"Point","coordinates":[94888,24963]},{"type":"Point","coordinates":[94833,24986]},{"type":"Point","coordinates":[85782,28436]},{"type":"Point","coordinates":[92462,25975]},{"type":"Point","coordinates":[81403,29806]},{"type":"Point","coordinates":[85783,28437]},{"type":"Point","coordinates":[92264,26055]},{"type":"Point","coordinates":[81481,29785]},{"type":"Point","coordinates":[94464,25148]},{"type":"Point","coordinates":[80825,29974]},{"type":"Point","coordinates":[85780,28440]},{"type":"Point","coordinates":[91162,26492]},{"type":"Point","coordinates":[93366,25609]},{"type":"Point","coordinates":[80458,30081]},{"type":"Point","coordinates":[92402,26004]},{"type":"Point","coordinates":[80577,30050]},{"type":"Point","coordinates":[92159,26104]},{"type":"Point","coordinates":[94085,25315]},{"type":"Point","coordinates":[94209,25262]},{"type":"Point","coordinates":[87915,27709]},{"type":"Point","coordinates":[80581,30050]},{"type":"Point","coordinates":[80579,30052]},{"type":"Point","coordinates":[80581,30051]},{"type":"Point","coordinates":[80581,30052]},{"type":"Point","coordinates":[80581,30052]},{"type":"Point","coordinates":[85710,28471]},{"type":"Point","coordinates":[80583,30051]},{"type":"Point","coordinates":[80580,30052]},{"type":"Point","coordinates":[80580,30052]},{"type":"Point","coordinates":[81374,29825]},{"type":"Point","coordinates":[80583,30053]},{"type":"Point","coordinates":[80582,30053]},{"type":"Point","coordinates":[81449,29805]},{"type":"Point","coordinates":[94152,25292]},{"type":"Point","coordinates":[81174,29890]},{"type":"Point","coordinates":[81463,29808]},{"type":"Point","coordinates":[81346,29842]},{"type":"Point","coordinates":[81460,29809]},{"type":"Point","coordinates":[93021,25769]},{"type":"Point","coordinates":[94207,25277]},{"type":"Point","coordinates":[81454,29814]},{"type":"Point","coordinates":[94378,25208]},{"type":"Point","coordinates":[92899,25824]},{"type":"Point","coordinates":[80588,30066]},{"type":"Point","coordinates":[80527,30084]},{"type":"Point","coordinates":[81460,29817]},{"type":"Point","coordinates":[85101,28690]},{"type":"Point","coordinates":[81452,29820]},{"type":"Point","coordinates":[81446,29822]},{"type":"Point","coordinates":[81423,29829]},{"type":"Point","coordinates":[92679,25918]},{"type":"Point","coordinates":[81407,29835]},{"type":"Point","coordinates":[85764,28474]},{"type":"Point","coordinates":[81412,29834]},{"type":"Point","coordinates":[80591,30070]},{"type":"Point","coordinates":[92943,25811]},{"type":"Point","coordinates":[94847,25016]},{"type":"Point","coordinates":[81393,29840]},{"type":"Point","coordinates":[81392,29841]},{"type":"Point","coordinates":[81378,29845]},{"type":"Point","coordinates":[94478,25175]},{"type":"Point","coordinates":[94464,25181]},{"type":"Point","coordinates":[81454,29825]},{"type":"Point","coordinates":[81409,29838]},{"type":"Point","coordinates":[94473,25178]},{"type":"Point","coordinates":[81402,29842]},{"type":"Point","coordinates":[92517,25989]},{"type":"Point","coordinates":[81403,29842]},{"type":"Point","coordinates":[80595,30074]},{"type":"Point","coordinates":[80596,30074]},{"type":"Point","coordinates":[81403,29843]},{"type":"Point","coordinates":[80595,30075]},{"type":"Point","coordinates":[80597,30074]},{"type":"Point","coordinates":[80597,30074]},{"type":"Point","coordinates":[80597,30074]},{"type":"Point","coordinates":[72405,32061]},{"type":"Point","coordinates":[94467,25184]},{"type":"Point","coordinates":[80598,30075]},{"type":"Point","coordinates":[80599,30075]},{"type":"Point","coordinates":[94479,25179]},{"type":"Point","coordinates":[94165,25312]},{"type":"Point","coordinates":[81381,29852]},{"type":"Point","coordinates":[81381,29853]},{"type":"Point","coordinates":[80602,30077]},{"type":"Point","coordinates":[94167,25314]},{"type":"Point","coordinates":[85473,28581]},{"type":"Point","coordinates":[80602,30077]},{"type":"Point","coordinates":[71266,32290]},{"type":"Point","coordinates":[80602,30077]},{"type":"Point","coordinates":[80602,30078]},{"type":"Point","coordinates":[80602,30079]},{"type":"Point","coordinates":[80602,30079]},{"type":"Point","coordinates":[80602,30079]},{"type":"Point","coordinates":[80602,30079]},{"type":"Point","coordinates":[80603,30079]},{"type":"Point","coordinates":[81396,29852]},{"type":"Point","coordinates":[91139,26543]},{"type":"Point","coordinates":[94083,25353]},{"type":"Point","coordinates":[80603,30080]},{"type":"Point","coordinates":[81394,29854]},{"type":"Point","coordinates":[81397,29855]},{"type":"Point","coordinates":[63501,33494]},{"type":"Point","coordinates":[85924,28438]},{"type":"Point","coordinates":[80606,30084]},{"type":"Point","coordinates":[80607,30084]},{"type":"Point","coordinates":[94472,25195]},{"type":"Point","coordinates":[94478,25193]},{"type":"Point","coordinates":[63499,33498]},{"type":"Point","coordinates":[94853,25034]},{"type":"Point","coordinates":[94854,25034]},{"type":"Point","coordinates":[63499,33498]},{"type":"Point","coordinates":[93017,25804]},{"type":"Point","coordinates":[73440,31864]},{"type":"Point","coordinates":[85734,28509]},{"type":"Point","coordinates":[94498,25191]},{"type":"Point","coordinates":[92155,26156]},{"type":"Point","coordinates":[63502,33504]},{"type":"Point","coordinates":[80979,29987]},{"type":"Point","coordinates":[80977,29989]},{"type":"Point","coordinates":[80982,29988]},{"type":"Point","coordinates":[80978,29989]},{"type":"Point","coordinates":[94470,25206]},{"type":"Point","coordinates":[80977,29990]},{"type":"Point","coordinates":[94494,25197]},{"type":"Point","coordinates":[94497,25196]},{"type":"Point","coordinates":[94497,25197]},{"type":"Point","coordinates":[80615,30095]},{"type":"Point","coordinates":[94494,25198]},{"type":"Point","coordinates":[80981,29992]},{"type":"Point","coordinates":[94497,25198]},{"type":"Point","coordinates":[80641,30090]},{"type":"Point","coordinates":[80640,30090]},{"type":"Point","coordinates":[94108,25365]},{"type":"Point","coordinates":[94108,25366]},{"type":"Point","coordinates":[93386,25669]},{"type":"Point","coordinates":[93386,25669]},{"type":"Point","coordinates":[80620,30101]},{"type":"Point","coordinates":[80620,30102]},{"type":"Point","coordinates":[80884,30028]},{"type":"Point","coordinates":[92532,26021]},{"type":"Point","coordinates":[92132,26185]},{"type":"Point","coordinates":[92130,26187]},{"type":"Point","coordinates":[94108,25380]},{"type":"Point","coordinates":[65647,33257]},{"type":"Point","coordinates":[92535,26032]},{"type":"Point","coordinates":[94017,25425]},{"type":"Point","coordinates":[93707,25556]},{"type":"Point","coordinates":[80446,30173]},{"type":"Point","coordinates":[85721,28553]},{"type":"Point","coordinates":[91540,26438]},{"type":"Point","coordinates":[91540,26438]},{"type":"Point","coordinates":[80447,30178]},{"type":"Point","coordinates":[72540,32096]},{"type":"Point","coordinates":[92666,25994]},{"type":"Point","coordinates":[80447,30180]},{"type":"Point","coordinates":[93917,25480]},{"type":"Point","coordinates":[94877,25087]},{"type":"Point","coordinates":[80702,30122]},{"type":"Point","coordinates":[81400,29922]},{"type":"Point","coordinates":[81385,29927]},{"type":"Point","coordinates":[93499,25669]},{"type":"Point","coordinates":[94725,25154]},{"type":"Point","coordinates":[81388,29928]},{"type":"Point","coordinates":[94724,25157]},{"type":"Point","coordinates":[80454,30197]},{"type":"Point","coordinates":[80454,30197]},{"type":"Point","coordinates":[94762,25143]},{"type":"Point","coordinates":[94723,25159]},{"type":"Point","coordinates":[94513,25252]},{"type":"Point","coordinates":[85617,28618]},{"type":"Point","coordinates":[94861,25106]},{"type":"Point","coordinates":[94869,25105]},{"type":"Point","coordinates":[94863,25108]},{"type":"Point","coordinates":[92657,26026]},{"type":"Point","coordinates":[94460,25281]},{"type":"Point","coordinates":[93747,25581]},{"type":"Point","coordinates":[94460,25282]},{"type":"Point","coordinates":[94459,25286]},{"type":"Point","coordinates":[92377,26145]},{"type":"Point","coordinates":[94125,25427]},{"type":"Point","coordinates":[94458,25288]},{"type":"Point","coordinates":[85529,28661]},{"type":"Point","coordinates":[94197,25410]},{"type":"Point","coordinates":[92466,26123]},{"type":"Point","coordinates":[80711,30156]},{"type":"Point","coordinates":[90456,26916]},{"type":"Point","coordinates":[93765,25595]},{"type":"Point","coordinates":[94200,25415]},{"type":"Point","coordinates":[94761,25179]},{"type":"Point","coordinates":[94199,25418]},{"type":"Point","coordinates":[94510,25287]},{"type":"Point","coordinates":[94510,25288]},{"type":"Point","coordinates":[93764,25604]},{"type":"Point","coordinates":[94296,25391]},{"type":"Point","coordinates":[94511,25300]},{"type":"Point","coordinates":[94807,25179]},{"type":"Point","coordinates":[94517,25303]},{"type":"Point","coordinates":[65642,33347]},{"type":"Point","coordinates":[85548,28696]},{"type":"Point","coordinates":[94292,25406]},{"type":"Point","coordinates":[68394,32943]},{"type":"Point","coordinates":[92332,26217]},{"type":"Point","coordinates":[68414,32941]},{"type":"Point","coordinates":[94759,25213]},{"type":"Point","coordinates":[92680,26080]},{"type":"Point","coordinates":[94718,25236]},{"type":"Point","coordinates":[80740,30193]},{"type":"Point","coordinates":[92668,26091]},{"type":"Point","coordinates":[65649,33368]},{"type":"Point","coordinates":[92680,26088]},{"type":"Point","coordinates":[82631,29640]},{"type":"Point","coordinates":[94833,25193]},{"type":"Point","coordinates":[80737,30197]},{"type":"Point","coordinates":[85444,28751]},{"type":"Point","coordinates":[82629,29644]},{"type":"Point","coordinates":[82635,29643]},{"type":"Point","coordinates":[92665,26099]},{"type":"Point","coordinates":[80736,30201]},{"type":"Point","coordinates":[91029,26749]},{"type":"Point","coordinates":[85455,28752]},{"type":"Point","coordinates":[85512,28736]},{"type":"Point","coordinates":[92466,26183]},{"type":"Point","coordinates":[92662,26105]},{"type":"Point","coordinates":[82637,29649]},{"type":"Point","coordinates":[94274,25441]},{"type":"Point","coordinates":[92465,26187]},{"type":"Point","coordinates":[94275,25441]},{"type":"Point","coordinates":[80741,30208]},{"type":"Point","coordinates":[80666,30231]},{"type":"Point","coordinates":[80666,30231]},{"type":"Point","coordinates":[94826,25213]},{"type":"Point","coordinates":[80741,30213]},{"type":"Point","coordinates":[94606,25308]},{"type":"Point","coordinates":[85464,28762]},{"type":"Point","coordinates":[80666,30237]},{"type":"Point","coordinates":[2546,22974]},{"type":"Point","coordinates":[92702,26103]},{"type":"Point","coordinates":[94869,25203]},{"type":"Point","coordinates":[65384,33434]},{"type":"Point","coordinates":[93741,25685]},{"type":"Point","coordinates":[92673,26124]},{"type":"Point","coordinates":[94744,25264]},{"type":"Point","coordinates":[95100,25112]},{"type":"Point","coordinates":[80668,30250]},{"type":"Point","coordinates":[80667,30250]},{"type":"Point","coordinates":[85796,28666]},{"type":"Point","coordinates":[85796,28667]},{"type":"Point","coordinates":[85795,28667]},{"type":"Point","coordinates":[92674,26126]},{"type":"Point","coordinates":[92675,26126]},{"type":"Point","coordinates":[85794,28668]},{"type":"Point","coordinates":[85795,28668]},{"type":"Point","coordinates":[92962,26010]},{"type":"Point","coordinates":[92100,26359]},{"type":"Point","coordinates":[85797,28669]},{"type":"Point","coordinates":[94688,25293]},{"type":"Point","coordinates":[94606,25328]},{"type":"Point","coordinates":[92679,26128]},{"type":"Point","coordinates":[92716,26114]},{"type":"Point","coordinates":[85794,28674]},{"type":"Point","coordinates":[80664,30259]},{"type":"Point","coordinates":[92700,26124]},{"type":"Point","coordinates":[85273,28850]},{"type":"Point","coordinates":[2457,22956]},{"type":"Point","coordinates":[92689,26130]},{"type":"Point","coordinates":[92690,26130]},{"type":"Point","coordinates":[92690,26130]},{"type":"Point","coordinates":[92640,26151]},{"type":"Point","coordinates":[92690,26131]},{"type":"Point","coordinates":[92617,26162]},{"type":"Point","coordinates":[92453,26231]},{"type":"Point","coordinates":[92575,26182]},{"type":"Point","coordinates":[94836,25246]},{"type":"Point","coordinates":[80663,30272]},{"type":"Point","coordinates":[72322,32293]},{"type":"Point","coordinates":[92482,26226]},{"type":"Point","coordinates":[92646,26163]},{"type":"Point","coordinates":[80659,30279]},{"type":"Point","coordinates":[80655,30282]},{"type":"Point","coordinates":[93708,25730]},{"type":"Point","coordinates":[80655,30283]},{"type":"Point","coordinates":[93708,25732]},{"type":"Point","coordinates":[93708,25734]},{"type":"Point","coordinates":[85458,28814]},{"type":"Point","coordinates":[80742,30266]},{"type":"Point","coordinates":[80743,30266]},{"type":"Point","coordinates":[85761,28717]},{"type":"Point","coordinates":[93709,25742]},{"type":"Point","coordinates":[80816,30252]},{"type":"Point","coordinates":[93871,25680]},{"type":"Point","coordinates":[92970,26052]},{"type":"Point","coordinates":[94836,25276]},{"type":"Point","coordinates":[92478,26255]},{"type":"Point","coordinates":[94838,25277]},{"type":"Point","coordinates":[94282,25513]},{"type":"Point","coordinates":[84971,28992]},{"type":"Point","coordinates":[94481,25432]},{"type":"Point","coordinates":[93932,25663]},{"type":"Point","coordinates":[92639,26195]},{"type":"Point","coordinates":[92933,26077]},{"type":"Point","coordinates":[94014,25631]},{"type":"Point","coordinates":[92381,26302]},{"type":"Point","coordinates":[80866,30253]},{"type":"Point","coordinates":[92502,26256]},{"type":"Point","coordinates":[72591,32279]},{"type":"Point","coordinates":[94014,25637]},{"type":"Point","coordinates":[2217,22894]},{"type":"Point","coordinates":[65336,33508]},{"type":"Point","coordinates":[90606,27005]},{"type":"Point","coordinates":[90606,27006]},{"type":"Point","coordinates":[92968,26074]},{"type":"Point","coordinates":[92958,26078]},{"type":"Point","coordinates":[92701,26183]},{"type":"Point","coordinates":[91843,26528]},{"type":"Point","coordinates":[82617,29748]},{"type":"Point","coordinates":[80984,30229]},{"type":"Point","coordinates":[82618,29748]},{"type":"Point","coordinates":[80757,30294]},{"type":"Point","coordinates":[80793,30284]},{"type":"Point","coordinates":[80774,30290]},{"type":"Point","coordinates":[93712,25771]},{"type":"Point","coordinates":[84923,29026]},{"type":"Point","coordinates":[80876,30262]},{"type":"Point","coordinates":[80876,30262]},{"type":"Point","coordinates":[93853,25714]},{"type":"Point","coordinates":[84922,29027]},{"type":"Point","coordinates":[92966,26080]},{"type":"Point","coordinates":[90443,27077]},{"type":"Point","coordinates":[92982,26075]},{"type":"Point","coordinates":[84912,29035]},{"type":"Point","coordinates":[80781,30298]},{"type":"Point","coordinates":[90443,27085]},{"type":"Point","coordinates":[92970,26088]},{"type":"Point","coordinates":[80858,30279]},{"type":"Point","coordinates":[80793,30300]},{"type":"Point","coordinates":[80809,30296]},{"type":"Point","coordinates":[85820,28747]},{"type":"Point","coordinates":[73320,32155]},{"type":"Point","coordinates":[94651,25397]},{"type":"Point","coordinates":[93376,25933]},{"type":"Point","coordinates":[94658,25398]},{"type":"Point","coordinates":[80810,30304]},{"type":"Point","coordinates":[94651,25403]},{"type":"Point","coordinates":[90966,26901]},{"type":"Point","coordinates":[93588,25855]},{"type":"Point","coordinates":[94656,25407]},{"type":"Point","coordinates":[80811,30313]},{"type":"Point","coordinates":[92369,26353]},{"type":"Point","coordinates":[92650,26241]},{"type":"Point","coordinates":[92372,26356]},{"type":"Point","coordinates":[93854,25755]},{"type":"Point","coordinates":[93854,25755]},{"type":"Point","coordinates":[93854,25756]},{"type":"Point","coordinates":[80921,30299]},{"type":"Point","coordinates":[80621,30389]},{"type":"Point","coordinates":[92179,26452]},{"type":"Point","coordinates":[92493,26330]},{"type":"Point","coordinates":[72634,32338]},{"type":"Point","coordinates":[93962,25732]},{"type":"Point","coordinates":[93385,25973]},{"type":"Point","coordinates":[92949,26155]},{"type":"Point","coordinates":[92948,26155]},{"type":"Point","coordinates":[92947,26156]},{"type":"Point","coordinates":[92946,26158]},{"type":"Point","coordinates":[92946,26159]},{"type":"Point","coordinates":[93157,26074]},{"type":"Point","coordinates":[80675,30391]},{"type":"Point","coordinates":[92944,26161]},{"type":"Point","coordinates":[92943,26162]},{"type":"Point","coordinates":[92943,26162]},{"type":"Point","coordinates":[92983,26147]},{"type":"Point","coordinates":[94675,25443]},{"type":"Point","coordinates":[73737,32123]},{"type":"Point","coordinates":[25667,31456]},{"type":"Point","coordinates":[92933,26172]},{"type":"Point","coordinates":[91086,26908]},{"type":"Point","coordinates":[80550,30450]},{"type":"Point","coordinates":[92314,26440]},{"type":"Point","coordinates":[92269,26461]},{"type":"Point","coordinates":[92989,26171]},{"type":"Point","coordinates":[92674,26301]},{"type":"Point","coordinates":[93808,25835]},{"type":"Point","coordinates":[94639,25486]},{"type":"Point","coordinates":[80483,30476]},{"type":"Point","coordinates":[80483,30476]},{"type":"Point","coordinates":[72268,32458]},{"type":"Point","coordinates":[80484,30478]},{"type":"Point","coordinates":[92174,26506]},{"type":"Point","coordinates":[80478,30482]},{"type":"Point","coordinates":[80213,30559]},{"type":"Point","coordinates":[92917,26213]},{"type":"Point","coordinates":[80482,30490]},{"type":"Point","coordinates":[80475,30492]},{"type":"Point","coordinates":[93824,25846]},{"type":"Point","coordinates":[92422,26420]},{"type":"Point","coordinates":[80488,30494]},{"type":"Point","coordinates":[80489,30494]},{"type":"Point","coordinates":[80488,30495]},{"type":"Point","coordinates":[93000,26190]},{"type":"Point","coordinates":[80485,30496]},{"type":"Point","coordinates":[92306,26471]},{"type":"Point","coordinates":[80483,30497]},{"type":"Point","coordinates":[80484,30497]},{"type":"Point","coordinates":[92685,26319]},{"type":"Point","coordinates":[80484,30499]},{"type":"Point","coordinates":[94773,25455]},{"type":"Point","coordinates":[92921,26228]},{"type":"Point","coordinates":[92757,26296]},{"type":"Point","coordinates":[92423,26436]},{"type":"Point","coordinates":[93001,26204]},{"type":"Point","coordinates":[94259,25683]},{"type":"Point","coordinates":[80708,30451]},{"type":"Point","coordinates":[94263,25686]},{"type":"Point","coordinates":[92763,26310]},{"type":"Point","coordinates":[92931,26242]},{"type":"Point","coordinates":[92373,26475]},{"type":"Point","coordinates":[72284,32503]},{"type":"Point","coordinates":[85881,28873]},{"type":"Point","coordinates":[92660,26378]},{"type":"Point","coordinates":[91072,27007]},{"type":"Point","coordinates":[72224,32545]},{"type":"Point","coordinates":[94816,25495]},{"type":"Point","coordinates":[92586,26421]},{"type":"Point","coordinates":[94397,25676]},{"type":"Point","coordinates":[94397,25676]},{"type":"Point","coordinates":[94814,25499]},{"type":"Point","coordinates":[94397,25677]},{"type":"Point","coordinates":[93002,26256]},{"type":"Point","coordinates":[94811,25503]},{"type":"Point","coordinates":[94829,25497]},{"type":"Point","coordinates":[73792,32227]},{"type":"Point","coordinates":[72292,32541]},{"type":"Point","coordinates":[92391,26509]},{"type":"Point","coordinates":[92391,26509]},{"type":"Point","coordinates":[71627,32674]},{"type":"Point","coordinates":[94829,25501]},{"type":"Point","coordinates":[94836,25501]},{"type":"Point","coordinates":[94985,25438]},{"type":"Point","coordinates":[92661,26406]},{"type":"Point","coordinates":[73352,32330]},{"type":"Point","coordinates":[80903,30460]},{"type":"Point","coordinates":[92282,26566]},{"type":"Point","coordinates":[80900,30462]},{"type":"Point","coordinates":[80898,30467]},{"type":"Point","coordinates":[90869,27134]},{"type":"Point","coordinates":[95061,25427]},{"type":"Point","coordinates":[94853,25519]},{"type":"Point","coordinates":[92487,26501]},{"type":"Point","coordinates":[92671,26431]},{"type":"Point","coordinates":[92323,26571]},{"type":"Point","coordinates":[85674,29011]},{"type":"Point","coordinates":[92912,26336]},{"type":"Point","coordinates":[85628,29027]},{"type":"Point","coordinates":[84601,29365]},{"type":"Point","coordinates":[94188,25814]},{"type":"Point","coordinates":[90354,27350]},{"type":"Point","coordinates":[92919,26341]},{"type":"Point","coordinates":[93492,26107]},{"type":"Point","coordinates":[92237,26617]},{"type":"Point","coordinates":[92394,26556]},{"type":"Point","coordinates":[85611,29049]},{"type":"Point","coordinates":[94833,25553]},{"type":"Point","coordinates":[2074,23089]},{"type":"Point","coordinates":[93493,26117]},{"type":"Point","coordinates":[85654,29039]},{"type":"Point","coordinates":[92630,26472]},{"type":"Point","coordinates":[92924,26355]},{"type":"Point","coordinates":[94483,25711]},{"type":"Point","coordinates":[85591,29065]},{"type":"Point","coordinates":[90895,27164]},{"type":"Point","coordinates":[94677,25636]},{"type":"Point","coordinates":[63316,34031]},{"type":"Point","coordinates":[92512,26533]},{"type":"Point","coordinates":[92768,26430]},{"type":"Point","coordinates":[92509,26538]},{"type":"Point","coordinates":[92510,26538]},{"type":"Point","coordinates":[92510,26538]},{"type":"Point","coordinates":[80241,30712]},{"type":"Point","coordinates":[85294,29180]},{"type":"Point","coordinates":[93863,25988]},{"type":"Point","coordinates":[73058,32464]},{"type":"Point","coordinates":[73058,32464]},{"type":"Point","coordinates":[1659,22918]},{"type":"Point","coordinates":[72819,32518]},{"type":"Point","coordinates":[94655,25661]},{"type":"Point","coordinates":[93674,26076]},{"type":"Point","coordinates":[73059,32475]},{"type":"Point","coordinates":[65674,33754]},{"type":"Point","coordinates":[92257,26659]},{"type":"Point","coordinates":[94228,25851]},{"type":"Point","coordinates":[92405,26601]},{"type":"Point","coordinates":[93012,26356]},{"type":"Point","coordinates":[94970,25538]},{"type":"Point","coordinates":[92413,26599]},{"type":"Point","coordinates":[91415,26994]},{"type":"Point","coordinates":[72896,32515]},{"type":"Point","coordinates":[71338,32826]},{"type":"Point","coordinates":[92797,26447]},{"type":"Point","coordinates":[93018,26358]},{"type":"Point","coordinates":[94907,25570]},{"type":"Point","coordinates":[93723,26073]},{"type":"Point","coordinates":[93016,26366]},{"type":"Point","coordinates":[72913,32523]},{"type":"Point","coordinates":[92365,26630]},{"type":"Point","coordinates":[92540,26563]},{"type":"Point","coordinates":[92398,26620]},{"type":"Point","coordinates":[69453,33187]},{"type":"Point","coordinates":[72861,32539]},{"type":"Point","coordinates":[92106,26740]},{"type":"Point","coordinates":[92299,26665]},{"type":"Point","coordinates":[94055,25948]},{"type":"Point","coordinates":[93721,26089]},{"type":"Point","coordinates":[93720,26092]},{"type":"Point","coordinates":[2342,23291]},{"type":"Point","coordinates":[92786,26481]},{"type":"Point","coordinates":[91170,27124]},{"type":"Point","coordinates":[92304,26678]},{"type":"Point","coordinates":[69623,33175]},{"type":"Point","coordinates":[93831,26058]},{"type":"Point","coordinates":[94622,25728]},{"type":"Point","coordinates":[63503,34075]},{"type":"Point","coordinates":[93009,26403]},{"type":"Point","coordinates":[94611,25738]},{"type":"Point","coordinates":[91045,27187]},{"type":"Point","coordinates":[64770,33926]},{"type":"Point","coordinates":[92160,26750]},{"type":"Point","coordinates":[93664,26142]},{"type":"Point","coordinates":[94613,25745]},{"type":"Point","coordinates":[94614,25745]},{"type":"Point","coordinates":[94613,25745]},{"type":"Point","coordinates":[94614,25750]},{"type":"Point","coordinates":[94855,25651]},{"type":"Point","coordinates":[69607,33209]},{"type":"Point","coordinates":[72896,32581]},{"type":"Point","coordinates":[94832,25667]},{"type":"Point","coordinates":[69606,33217]},{"type":"Point","coordinates":[72955,32577]},{"type":"Point","coordinates":[85493,29210]},{"type":"Point","coordinates":[72958,32580]},{"type":"Point","coordinates":[72928,32590]},{"type":"Point","coordinates":[92358,26706]},{"type":"Point","coordinates":[72953,32589]},{"type":"Point","coordinates":[80278,30811]},{"type":"Point","coordinates":[65582,33860]},{"type":"Point","coordinates":[91180,27178]},{"type":"Point","coordinates":[80266,30817]},{"type":"Point","coordinates":[91181,27179]},{"type":"Point","coordinates":[72991,32590]},{"type":"Point","coordinates":[94685,25759]},{"type":"Point","coordinates":[72873,32618]},{"type":"Point","coordinates":[72951,32602]},{"type":"Point","coordinates":[72878,32619]},{"type":"Point","coordinates":[91178,27190]},{"type":"Point","coordinates":[94161,25985]},{"type":"Point","coordinates":[91215,27177]},{"type":"Point","coordinates":[92346,26730]},{"type":"Point","coordinates":[80697,30712]},{"type":"Point","coordinates":[72879,32628]},{"type":"Point","coordinates":[72874,32630]},{"type":"Point","coordinates":[73064,32591]},{"type":"Point","coordinates":[80268,30837]},{"type":"Point","coordinates":[94934,25668]},{"type":"Point","coordinates":[92306,26759]},{"type":"Point","coordinates":[92415,26717]},{"type":"Point","coordinates":[92653,26630]},{"type":"Point","coordinates":[91182,27214]},{"type":"Point","coordinates":[92652,26632]},{"type":"Point","coordinates":[92349,26756]},{"type":"Point","coordinates":[1576,23030]},{"type":"Point","coordinates":[93049,26479]},{"type":"Point","coordinates":[80255,30865]},{"type":"Point","coordinates":[85415,29296]},{"type":"Point","coordinates":[93045,26484]},{"type":"Point","coordinates":[80274,30863]},{"type":"Point","coordinates":[94245,25988]},{"type":"Point","coordinates":[91149,27246]},{"type":"Point","coordinates":[94931,25703]},{"type":"Point","coordinates":[94138,26041]},{"type":"Point","coordinates":[94139,26042]},{"type":"Point","coordinates":[94139,26042]},{"type":"Point","coordinates":[80279,30875]},{"type":"Point","coordinates":[92340,26785]},{"type":"Point","coordinates":[92340,26787]},{"type":"Point","coordinates":[93073,26492]},{"type":"Point","coordinates":[92949,26543]},{"type":"Point","coordinates":[92467,26741]},{"type":"Point","coordinates":[92853,26586]},{"type":"Point","coordinates":[94052,26094]},{"type":"Point","coordinates":[94616,25864]},{"type":"Point","coordinates":[92867,26597]},{"type":"Point","coordinates":[94575,25893]},{"type":"Point","coordinates":[92337,26817]},{"type":"Point","coordinates":[2358,23462]},{"type":"Point","coordinates":[92300,26834]},{"type":"Point","coordinates":[94585,25894]},{"type":"Point","coordinates":[80269,30913]},{"type":"Point","coordinates":[94940,25745]},{"type":"Point","coordinates":[65699,33948]},{"type":"Point","coordinates":[91138,27304]},{"type":"Point","coordinates":[93870,26206]},{"type":"Point","coordinates":[93870,26206]},{"type":"Point","coordinates":[93870,26206]},{"type":"Point","coordinates":[65698,33954]},{"type":"Point","coordinates":[63912,34185]},{"type":"Point","coordinates":[91221,27278]},{"type":"Point","coordinates":[92800,26652]},{"type":"Point","coordinates":[91145,27313]},{"type":"Point","coordinates":[72486,32810]},{"type":"Point","coordinates":[91858,27037]},{"type":"Point","coordinates":[94520,25950]},{"type":"Point","coordinates":[94518,25951]},{"type":"Point","coordinates":[89290,28022]},{"type":"Point","coordinates":[94377,26012]},{"type":"Point","coordinates":[94521,25952]},{"type":"Point","coordinates":[94522,25953]},{"type":"Point","coordinates":[80254,30949]},{"type":"Point","coordinates":[91865,27042]},{"type":"Point","coordinates":[94715,25877]},{"type":"Point","coordinates":[80682,30837]},{"type":"Point","coordinates":[92879,26647]},{"type":"Point","coordinates":[2632,23644]},{"type":"Point","coordinates":[91131,27344]},{"type":"Point","coordinates":[91130,27345]},{"type":"Point","coordinates":[91822,27075]},{"type":"Point","coordinates":[92735,26712]},{"type":"Point","coordinates":[94193,26112]},{"type":"Point","coordinates":[92333,26876]},{"type":"Point","coordinates":[94728,25890]},{"type":"Point","coordinates":[94135,26140]},{"type":"Point","coordinates":[94133,26143]},{"type":"Point","coordinates":[94133,26143]},{"type":"Point","coordinates":[91132,27356]},{"type":"Point","coordinates":[94769,25879]},{"type":"Point","coordinates":[93308,26496]},{"type":"Point","coordinates":[93852,26271]},{"type":"Point","coordinates":[95025,25777]},{"type":"Point","coordinates":[91066,27397]},{"type":"Point","coordinates":[94779,25890]},{"type":"Point","coordinates":[93862,26277]},{"type":"Point","coordinates":[93854,26281]},{"type":"Point","coordinates":[93855,26284]},{"type":"Point","coordinates":[93855,26284]},{"type":"Point","coordinates":[89757,27903]},{"type":"Point","coordinates":[92570,26811]},{"type":"Point","coordinates":[93857,26285]},{"type":"Point","coordinates":[93857,26286]},{"type":"Point","coordinates":[94742,25916]},{"type":"Point","coordinates":[93856,26290]},{"type":"Point","coordinates":[93855,26291]},{"type":"Point","coordinates":[93858,26291]},{"type":"Point","coordinates":[94045,26214]},{"type":"Point","coordinates":[93056,26626]},{"type":"Point","coordinates":[93060,26626]},{"type":"Point","coordinates":[93860,26298]},{"type":"Point","coordinates":[93860,26298]},{"type":"Point","coordinates":[2333,23556]},{"type":"Point","coordinates":[82046,30506]},{"type":"Point","coordinates":[65537,34065]},{"type":"Point","coordinates":[94098,26207]},{"type":"Point","coordinates":[94599,25999]},{"type":"Point","coordinates":[91164,27396]},{"type":"Point","coordinates":[93036,26654]},{"type":"Point","coordinates":[92302,26954]},{"type":"Point","coordinates":[94331,26122]},{"type":"Point","coordinates":[95071,25808]},{"type":"Point","coordinates":[64372,34243]},{"type":"Point","coordinates":[94888,25899]},{"type":"Point","coordinates":[94399,26109]},{"type":"Point","coordinates":[94399,26110]},{"type":"Point","coordinates":[65531,34098]},{"type":"Point","coordinates":[94395,26113]},{"type":"Point","coordinates":[94999,25859]},{"type":"Point","coordinates":[94999,25859]},{"type":"Point","coordinates":[94999,25859]},{"type":"Point","coordinates":[94999,25859]},{"type":"Point","coordinates":[94999,25859]},{"type":"Point","coordinates":[93483,26496]},{"type":"Point","coordinates":[94998,25863]},{"type":"Point","coordinates":[93990,26290]},{"type":"Point","coordinates":[94115,26240]},{"type":"Point","coordinates":[89953,27898]},{"type":"Point","coordinates":[86834,29021]},{"type":"Point","coordinates":[94121,26244]},{"type":"Point","coordinates":[95009,25874]},{"type":"Point","coordinates":[95046,25860]},{"type":"Point","coordinates":[95001,25880]},{"type":"Point","coordinates":[95001,25880]},{"type":"Point","coordinates":[95001,25881]},{"type":"Point","coordinates":[80474,31016]},{"type":"Point","coordinates":[89877,27938]},{"type":"Point","coordinates":[95055,25859]},{"type":"Point","coordinates":[91368,27370]},{"type":"Point","coordinates":[63258,34414]},{"type":"Point","coordinates":[63258,34414]},{"type":"Point","coordinates":[92946,26746]},{"type":"Point","coordinates":[63258,34415]},{"type":"Point","coordinates":[92949,26746]},{"type":"Point","coordinates":[95012,25887]},{"type":"Point","coordinates":[95032,25878]},{"type":"Point","coordinates":[94156,26252]},{"type":"Point","coordinates":[92950,26751]},{"type":"Point","coordinates":[86823,29050]},{"type":"Point","coordinates":[91248,27433]},{"type":"Point","coordinates":[95043,25885]},{"type":"Point","coordinates":[92709,26858]},{"type":"Point","coordinates":[91130,27486]},{"type":"Point","coordinates":[80878,30938]},{"type":"Point","coordinates":[92338,27025]},{"type":"Point","coordinates":[94828,25998]},{"type":"Point","coordinates":[64723,34276]},{"type":"Point","coordinates":[65628,34157]},{"type":"Point","coordinates":[95033,25921]},{"type":"Point","coordinates":[95047,25919]},{"type":"Point","coordinates":[91133,27518]},{"type":"Point","coordinates":[2307,23667]},{"type":"Point","coordinates":[64812,34278]},{"type":"Point","coordinates":[93379,26624]},{"type":"Point","coordinates":[89782,28036]},{"type":"Point","coordinates":[85281,29625]},{"type":"Point","coordinates":[89490,28154]},{"type":"Point","coordinates":[95066,25927]},{"type":"Point","coordinates":[89910,27998]},{"type":"Point","coordinates":[65811,34157]},{"type":"Point","coordinates":[65855,34152]},{"type":"Point","coordinates":[91136,27533]},{"type":"Point","coordinates":[96916,25122]},{"type":"Point","coordinates":[65964,34141]},{"type":"Point","coordinates":[86683,29165]},{"type":"Point","coordinates":[64912,34286]},{"type":"Point","coordinates":[89898,28020]},{"type":"Point","coordinates":[94237,26300]},{"type":"Point","coordinates":[91587,27379]},{"type":"Point","coordinates":[81240,30896]},{"type":"Point","coordinates":[81249,30894]},{"type":"Point","coordinates":[72298,33083]},{"type":"Point","coordinates":[81251,30897]},{"type":"Point","coordinates":[72298,33084]},{"type":"Point","coordinates":[81251,30897]},{"type":"Point","coordinates":[96736,25228]},{"type":"Point","coordinates":[63581,34472]},{"type":"Point","coordinates":[92326,27099]},{"type":"Point","coordinates":[72298,33095]},{"type":"Point","coordinates":[72298,33095]},{"type":"Point","coordinates":[89710,28120]},{"type":"Point","coordinates":[65775,34207]},{"type":"Point","coordinates":[65563,34239]},{"type":"Point","coordinates":[92326,27116]},{"type":"Point","coordinates":[2607,23878]},{"type":"Point","coordinates":[90838,27701]},{"type":"Point","coordinates":[73515,32865]},{"type":"Point","coordinates":[80589,31122]},{"type":"Point","coordinates":[91479,27466]},{"type":"Point","coordinates":[95199,25943]},{"type":"Point","coordinates":[81365,30909]},{"type":"Point","coordinates":[92909,26903]},{"type":"Point","coordinates":[66070,34195]},{"type":"Point","coordinates":[92086,27237]},{"type":"Point","coordinates":[88232,28694]},{"type":"Point","coordinates":[91257,27566]},{"type":"Point","coordinates":[92912,26909]},{"type":"Point","coordinates":[80586,31140]},{"type":"Point","coordinates":[92632,27042]},{"type":"Point","coordinates":[81610,30868]},{"type":"Point","coordinates":[90828,27767]},{"type":"Point","coordinates":[89895,28122]},{"type":"Point","coordinates":[94989,26082]},{"type":"Point","coordinates":[90649,27844]},{"type":"Point","coordinates":[86715,29271]},{"type":"Point","coordinates":[91354,27579]},{"type":"Point","coordinates":[94078,26480]},{"type":"Point","coordinates":[94862,26159]},{"type":"Point","coordinates":[92239,27241]},{"type":"Point","coordinates":[65599,34329]},{"type":"Point","coordinates":[95676,25813]},{"type":"Point","coordinates":[65601,34334]},{"type":"Point","coordinates":[78901,31680]},{"type":"Point","coordinates":[4384,24822]},{"type":"Point","coordinates":[65801,34326]},{"type":"Point","coordinates":[94484,26349]},{"type":"Point","coordinates":[93413,26802]},{"type":"Point","coordinates":[93397,26812]},{"type":"Point","coordinates":[65279,34408]},{"type":"Point","coordinates":[91366,27626]},{"type":"Point","coordinates":[65793,34343]},{"type":"Point","coordinates":[91086,27742]},{"type":"Point","coordinates":[81124,31094]},{"type":"Point","coordinates":[93990,26581]},{"type":"Point","coordinates":[94275,26466]},{"type":"Point","coordinates":[2218,23842]},{"type":"Point","coordinates":[90941,27814]},{"type":"Point","coordinates":[65284,34435]},{"type":"Point","coordinates":[90938,27822]},{"type":"Point","coordinates":[72122,33303]},{"type":"Point","coordinates":[4494,24937]},{"type":"Point","coordinates":[65666,34399]},{"type":"Point","coordinates":[65262,34455]},{"type":"Point","coordinates":[65763,34395]},{"type":"Point","coordinates":[92743,27133]},{"type":"Point","coordinates":[65767,34395]},{"type":"Point","coordinates":[92700,27158]},{"type":"Point","coordinates":[86578,29435]},{"type":"Point","coordinates":[87976,28949]},{"type":"Point","coordinates":[73622,33025]},{"type":"Point","coordinates":[90317,28094]},{"type":"Point","coordinates":[90317,28094]},{"type":"Point","coordinates":[92689,27167]},{"type":"Point","coordinates":[94000,26631]},{"type":"Point","coordinates":[65810,34402]},{"type":"Point","coordinates":[2073,23823]},{"type":"Point","coordinates":[94010,26628]},{"type":"Point","coordinates":[86579,29444]},{"type":"Point","coordinates":[94902,26258]},{"type":"Point","coordinates":[92694,27175]},{"type":"Point","coordinates":[94975,26233]},{"type":"Point","coordinates":[65782,34424]},{"type":"Point","coordinates":[94899,26272]},{"type":"Point","coordinates":[80839,31257]},{"type":"Point","coordinates":[79699,31575]},{"type":"Point","coordinates":[91871,27520]},{"type":"Point","coordinates":[86531,29490]},{"type":"Point","coordinates":[86532,29490]},{"type":"Point","coordinates":[94891,26289]},{"type":"Point","coordinates":[94890,26289]},{"type":"Point","coordinates":[94890,26289]},{"type":"Point","coordinates":[94897,26287]},{"type":"Point","coordinates":[90927,27900]},{"type":"Point","coordinates":[91237,27785]},{"type":"Point","coordinates":[1573,23623]},{"type":"Point","coordinates":[94966,26266]},{"type":"Point","coordinates":[94966,26267]},{"type":"Point","coordinates":[1574,23626]},{"type":"Point","coordinates":[1574,23626]},{"type":"Point","coordinates":[1574,23626]},{"type":"Point","coordinates":[1574,23626]},{"type":"Point","coordinates":[1579,23629]},{"type":"Point","coordinates":[1579,23629]},{"type":"Point","coordinates":[1578,23629]},{"type":"Point","coordinates":[1528,23605]},{"type":"Point","coordinates":[93976,26688]},{"type":"Point","coordinates":[1578,23630]},{"type":"Point","coordinates":[94965,26272]},{"type":"Point","coordinates":[1579,23632]},{"type":"Point","coordinates":[1584,23635]},{"type":"Point","coordinates":[93977,26690]},{"type":"Point","coordinates":[80866,31277]},{"type":"Point","coordinates":[93968,26696]},{"type":"Point","coordinates":[93891,26732]},{"type":"Point","coordinates":[94225,26593]},{"type":"Point","coordinates":[94898,26309]},{"type":"Point","coordinates":[90950,27912]},{"type":"Point","coordinates":[84696,30125]},{"type":"Point","coordinates":[1584,23646]},{"type":"Point","coordinates":[84696,30126]},{"type":"Point","coordinates":[84697,30126]},{"type":"Point","coordinates":[90951,27917]},{"type":"Point","coordinates":[84700,30131]},{"type":"Point","coordinates":[84701,30132]},{"type":"Point","coordinates":[94867,26335]},{"type":"Point","coordinates":[1586,23657]},{"type":"Point","coordinates":[1587,23658]},{"type":"Point","coordinates":[1585,23658]},{"type":"Point","coordinates":[89936,28313]},{"type":"Point","coordinates":[65834,34471]},{"type":"Point","coordinates":[94937,26311]},{"type":"Point","coordinates":[94959,26304]},{"type":"Point","coordinates":[64715,34624]},{"type":"Point","coordinates":[92346,27386]},{"type":"Point","coordinates":[94947,26313]},{"type":"Point","coordinates":[94947,26313]},{"type":"Point","coordinates":[94944,26315]},{"type":"Point","coordinates":[79513,31684]},{"type":"Point","coordinates":[93688,26849]},{"type":"Point","coordinates":[94717,26418]},{"type":"Point","coordinates":[94146,26660]},{"type":"Point","coordinates":[85058,30043]},{"type":"Point","coordinates":[92829,27209]},{"type":"Point","coordinates":[80277,31490]},{"type":"Point","coordinates":[94220,26641]},{"type":"Point","coordinates":[64826,34633]},{"type":"Point","coordinates":[79490,31711]},{"type":"Point","coordinates":[93937,26764]},{"type":"Point","coordinates":[92334,27420]},{"type":"Point","coordinates":[86566,29557]},{"type":"Point","coordinates":[92980,27163]},{"type":"Point","coordinates":[92982,27164]},{"type":"Point","coordinates":[92979,27165]},{"type":"Point","coordinates":[79456,31732]},{"type":"Point","coordinates":[92977,27169]},{"type":"Point","coordinates":[92977,27170]},{"type":"Point","coordinates":[81719,31097]},{"type":"Point","coordinates":[65869,34509]},{"type":"Point","coordinates":[92978,27170]},{"type":"Point","coordinates":[92978,27170]},{"type":"Point","coordinates":[92977,27171]},{"type":"Point","coordinates":[88183,29000]},{"type":"Point","coordinates":[92977,27171]},{"type":"Point","coordinates":[79450,31737]},{"type":"Point","coordinates":[79480,31730]},{"type":"Point","coordinates":[65869,34513]},{"type":"Point","coordinates":[81774,31089]},{"type":"Point","coordinates":[92545,27353]},{"type":"Point","coordinates":[73771,33120]},{"type":"Point","coordinates":[89397,28567]},{"type":"Point","coordinates":[65221,34606]},{"type":"Point","coordinates":[65221,34606]},{"type":"Point","coordinates":[79453,31747]},{"type":"Point","coordinates":[82524,30873]},{"type":"Point","coordinates":[64187,34745]},{"type":"Point","coordinates":[64833,34664]},{"type":"Point","coordinates":[94969,26365]},{"type":"Point","coordinates":[93506,26980]},{"type":"Point","coordinates":[92857,27246]},{"type":"Point","coordinates":[92028,27580]},{"type":"Point","coordinates":[73861,33123]},{"type":"Point","coordinates":[96868,25545]},{"type":"Point","coordinates":[64139,34768]},{"type":"Point","coordinates":[95017,26355]},{"type":"Point","coordinates":[94970,26378]},{"type":"Point","coordinates":[80436,31502]},{"type":"Point","coordinates":[65825,34553]},{"type":"Point","coordinates":[90957,28010]},{"type":"Point","coordinates":[94219,26701]},{"type":"Point","coordinates":[65826,34558]},{"type":"Point","coordinates":[65823,34559]},{"type":"Point","coordinates":[65823,34559]},{"type":"Point","coordinates":[65823,34559]},{"type":"Point","coordinates":[95158,26306]},{"type":"Point","coordinates":[65823,34561]},{"type":"Point","coordinates":[66129,34519]},{"type":"Point","coordinates":[2132,24027]},{"type":"Point","coordinates":[94947,26408]},{"type":"Point","coordinates":[65127,34667]},{"type":"Point","coordinates":[94839,26459]},{"type":"Point","coordinates":[94001,26815]},{"type":"Point","coordinates":[86564,29636]},{"type":"Point","coordinates":[65843,34585]},{"type":"Point","coordinates":[81670,31188]},{"type":"Point","coordinates":[94844,26473]},{"type":"Point","coordinates":[84997,30165]},{"type":"Point","coordinates":[73382,33273]},{"type":"Point","coordinates":[92614,27402]},{"type":"Point","coordinates":[94201,26755]},{"type":"Point","coordinates":[65821,34603]},{"type":"Point","coordinates":[81165,31349]},{"type":"Point","coordinates":[94949,26442]},{"type":"Point","coordinates":[94944,26446]},{"type":"Point","coordinates":[94872,26478]},{"type":"Point","coordinates":[94179,26771]},{"type":"Point","coordinates":[94996,26428]},{"type":"Point","coordinates":[92124,27612]},{"type":"Point","coordinates":[94529,26628]},{"type":"Point","coordinates":[94987,26435]},{"type":"Point","coordinates":[81663,31215]},{"type":"Point","coordinates":[95014,26426]},{"type":"Point","coordinates":[89895,28479]},{"type":"Point","coordinates":[94184,26784]},{"type":"Point","coordinates":[94212,26781]},{"type":"Point","coordinates":[81671,31234]},{"type":"Point","coordinates":[91487,27893]},{"type":"Point","coordinates":[65834,34643]},{"type":"Point","coordinates":[94217,26794]},{"type":"Point","coordinates":[65836,34645]},{"type":"Point","coordinates":[66104,34608]},{"type":"Point","coordinates":[95015,26460]},{"type":"Point","coordinates":[65828,34650]},{"type":"Point","coordinates":[95006,26466]},{"type":"Point","coordinates":[64952,34769]},{"type":"Point","coordinates":[65830,34651]},{"type":"Point","coordinates":[65830,34652]},{"type":"Point","coordinates":[94811,26551]},{"type":"Point","coordinates":[95058,26447]},{"type":"Point","coordinates":[64949,34774]},{"type":"Point","coordinates":[66006,34632]},{"type":"Point","coordinates":[91820,27779]},{"type":"Point","coordinates":[64952,34775]},{"type":"Point","coordinates":[64951,34775]},{"type":"Point","coordinates":[66006,34633]},{"type":"Point","coordinates":[64949,34776]},{"type":"Point","coordinates":[64952,34776]},{"type":"Point","coordinates":[65823,34660]},{"type":"Point","coordinates":[81744,31238]},{"type":"Point","coordinates":[81764,31233]},{"type":"Point","coordinates":[95155,26413]},{"type":"Point","coordinates":[91063,28082]},{"type":"Point","coordinates":[95156,26416]},{"type":"Point","coordinates":[64950,34782]},{"type":"Point","coordinates":[81477,31322]},{"type":"Point","coordinates":[65849,34664]},{"type":"Point","coordinates":[95157,26418]},{"type":"Point","coordinates":[65834,34669]},{"type":"Point","coordinates":[94815,26567]},{"type":"Point","coordinates":[79276,31941]},{"type":"Point","coordinates":[81779,31239]},{"type":"Point","coordinates":[91158,28053]},{"type":"Point","coordinates":[65831,34671]},{"type":"Point","coordinates":[79276,31942]},{"type":"Point","coordinates":[65944,34656]},{"type":"Point","coordinates":[65943,34657]},{"type":"Point","coordinates":[65944,34659]},{"type":"Point","coordinates":[65943,34659]},{"type":"Point","coordinates":[65943,34659]},{"type":"Point","coordinates":[90667,28246]},{"type":"Point","coordinates":[95010,26491]},{"type":"Point","coordinates":[65944,34661]},{"type":"Point","coordinates":[65940,34662]},{"type":"Point","coordinates":[93960,26935]},{"type":"Point","coordinates":[95288,26374]},{"type":"Point","coordinates":[91226,28036]},{"type":"Point","coordinates":[64760,34823]},{"type":"Point","coordinates":[81484,31337]},{"type":"Point","coordinates":[79281,31953]},{"type":"Point","coordinates":[79281,31953]},{"type":"Point","coordinates":[66122,34645]},{"type":"Point","coordinates":[91227,28044]},{"type":"Point","coordinates":[95163,26438]},{"type":"Point","coordinates":[81814,31248]},{"type":"Point","coordinates":[65440,34744]},{"type":"Point","coordinates":[81487,31346]},{"type":"Point","coordinates":[65958,34676]},{"type":"Point","coordinates":[93713,27056]},{"type":"Point","coordinates":[81476,31355]},{"type":"Point","coordinates":[91230,28058]},{"type":"Point","coordinates":[94682,26662]},{"type":"Point","coordinates":[91226,28064]},{"type":"Point","coordinates":[91027,28144]},{"type":"Point","coordinates":[79298,31975]},{"type":"Point","coordinates":[65490,34772]},{"type":"Point","coordinates":[96794,25771]},{"type":"Point","coordinates":[92344,27655]},{"type":"Point","coordinates":[2528,24396]},{"type":"Point","coordinates":[96736,25805]},{"type":"Point","coordinates":[55338,35674]},{"type":"Point","coordinates":[81892,31282]},{"type":"Point","coordinates":[81892,31282]},{"type":"Point","coordinates":[81891,31282]},{"type":"Point","coordinates":[81892,31282]},{"type":"Point","coordinates":[88330,29191]},{"type":"Point","coordinates":[92533,27597]},{"type":"Point","coordinates":[88326,29195]},{"type":"Point","coordinates":[91022,28196]},{"type":"Point","coordinates":[92648,27558]},{"type":"Point","coordinates":[94123,26955]},{"type":"Point","coordinates":[94123,26957]},{"type":"Point","coordinates":[88323,29210]},{"type":"Point","coordinates":[2459,24394]},{"type":"Point","coordinates":[81590,31407]},{"type":"Point","coordinates":[94918,26640]},{"type":"Point","coordinates":[96925,25768]},{"type":"Point","coordinates":[58921,35520]},{"type":"Point","coordinates":[91067,28211]},{"type":"Point","coordinates":[94999,26616]},{"type":"Point","coordinates":[48561,35780]},{"type":"Point","coordinates":[56624,35673]},{"type":"Point","coordinates":[91618,28009]},{"type":"Point","coordinates":[65844,34808]},{"type":"Point","coordinates":[81411,31493]},{"type":"Point","coordinates":[91063,28242]},{"type":"Point","coordinates":[81486,31479]},{"type":"Point","coordinates":[93986,27078]},{"type":"Point","coordinates":[89992,28658]},{"type":"Point","coordinates":[94626,26814]},{"type":"Point","coordinates":[94545,26855]},{"type":"Point","coordinates":[90969,28300]},{"type":"Point","coordinates":[94610,26831]},{"type":"Point","coordinates":[89521,28850]},{"type":"Point","coordinates":[65771,34859]},{"type":"Point","coordinates":[81650,31466]},{"type":"Point","coordinates":[91053,28291]},{"type":"Point","coordinates":[93941,27138]},{"type":"Point","coordinates":[90262,28599]},{"type":"Point","coordinates":[91087,28286]},{"type":"Point","coordinates":[1585,24080]},{"type":"Point","coordinates":[1585,24083]},{"type":"Point","coordinates":[91083,28295]},{"type":"Point","coordinates":[65813,34883]},{"type":"Point","coordinates":[92341,27806]},{"type":"Point","coordinates":[2380,24480]},{"type":"Point","coordinates":[65832,34895]},{"type":"Point","coordinates":[91510,28147]},{"type":"Point","coordinates":[65832,34896]},{"type":"Point","coordinates":[65833,34897]},{"type":"Point","coordinates":[65833,34897]},{"type":"Point","coordinates":[65834,34898]},{"type":"Point","coordinates":[63197,35231]},{"type":"Point","coordinates":[65836,34902]},{"type":"Point","coordinates":[65833,34903]},{"type":"Point","coordinates":[65833,34904]},{"type":"Point","coordinates":[65840,34903]},{"type":"Point","coordinates":[65840,34903]},{"type":"Point","coordinates":[65826,34905]},{"type":"Point","coordinates":[65834,34905]},{"type":"Point","coordinates":[65836,34908]},{"type":"Point","coordinates":[65849,34908]},{"type":"Point","coordinates":[65840,34911]},{"type":"Point","coordinates":[2269,24453]},{"type":"Point","coordinates":[65836,34913]},{"type":"Point","coordinates":[94607,26907]},{"type":"Point","coordinates":[94605,26907]},{"type":"Point","coordinates":[65837,34913]},{"type":"Point","coordinates":[94891,26790]},{"type":"Point","coordinates":[65858,34916]},{"type":"Point","coordinates":[89679,28874]},{"type":"Point","coordinates":[1881,24280]},{"type":"Point","coordinates":[1831,24256]},{"type":"Point","coordinates":[65865,34923]},{"type":"Point","coordinates":[65869,34929]},{"type":"Point","coordinates":[65867,34931]},{"type":"Point","coordinates":[65866,34933]},{"type":"Point","coordinates":[65857,34934]},{"type":"Point","coordinates":[65867,34933]},{"type":"Point","coordinates":[65864,34934]},{"type":"Point","coordinates":[65856,34936]},{"type":"Point","coordinates":[65855,34936]},{"type":"Point","coordinates":[65855,34936]},{"type":"Point","coordinates":[65864,34935]},{"type":"Point","coordinates":[66037,34912]},{"type":"Point","coordinates":[1837,24272]},{"type":"Point","coordinates":[65829,34941]},{"type":"Point","coordinates":[65829,34941]},{"type":"Point","coordinates":[65856,34937]},{"type":"Point","coordinates":[65861,34937]},{"type":"Point","coordinates":[65861,34937]},{"type":"Point","coordinates":[65855,34938]},{"type":"Point","coordinates":[65855,34938]},{"type":"Point","coordinates":[65864,34937]},{"type":"Point","coordinates":[65856,34939]},{"type":"Point","coordinates":[68618,34521]},{"type":"Point","coordinates":[68617,34521]},{"type":"Point","coordinates":[65862,34942]},{"type":"Point","coordinates":[93978,27208]},{"type":"Point","coordinates":[94005,27198]},{"type":"Point","coordinates":[65861,34949]},{"type":"Point","coordinates":[65857,34950]},{"type":"Point","coordinates":[95408,26607]},{"type":"Point","coordinates":[89267,29056]},{"type":"Point","coordinates":[69411,34401]},{"type":"Point","coordinates":[65871,34952]},{"type":"Point","coordinates":[65886,34952]},{"type":"Point","coordinates":[65944,34948]},{"type":"Point","coordinates":[91981,28040]},{"type":"Point","coordinates":[92773,27724]},{"type":"Point","coordinates":[65896,34966]},{"type":"Point","coordinates":[65902,34967]},{"type":"Point","coordinates":[65907,34969]},{"type":"Point","coordinates":[65880,34973]},{"type":"Point","coordinates":[65900,34971]},{"type":"Point","coordinates":[87021,29887]},{"type":"Point","coordinates":[88689,29300]},{"type":"Point","coordinates":[65904,34977]},{"type":"Point","coordinates":[65901,34979]},{"type":"Point","coordinates":[95778,26483]},{"type":"Point","coordinates":[65901,34980]},{"type":"Point","coordinates":[65898,34982]},{"type":"Point","coordinates":[65898,34983]},{"type":"Point","coordinates":[58906,35726]},{"type":"Point","coordinates":[65907,34985]},{"type":"Point","coordinates":[91507,28255]},{"type":"Point","coordinates":[63189,35336]},{"type":"Point","coordinates":[8407,27303]},{"type":"Point","coordinates":[92305,27974]},{"type":"Point","coordinates":[65960,35027]},{"type":"Point","coordinates":[64827,35179]},{"type":"Point","coordinates":[64134,35268]},{"type":"Point","coordinates":[1959,24444]},{"type":"Point","coordinates":[2271,24594]},{"type":"Point","coordinates":[1817,24377]},{"type":"Point","coordinates":[66103,35015]},{"type":"Point","coordinates":[87940,29636]},{"type":"Point","coordinates":[66101,35016]},{"type":"Point","coordinates":[94920,26928]},{"type":"Point","coordinates":[92328,28004]},{"type":"Point","coordinates":[1644,24316]},{"type":"Point","coordinates":[3433,25175]},{"type":"Point","coordinates":[90286,28809]},{"type":"Point","coordinates":[66060,35054]},{"type":"Point","coordinates":[92107,28108]},{"type":"Point","coordinates":[64758,35243]},{"type":"Point","coordinates":[1521,24288]},{"type":"Point","coordinates":[66094,35071]},{"type":"Point","coordinates":[66092,35076]},{"type":"Point","coordinates":[89845,29004]},{"type":"Point","coordinates":[81991,31625]},{"type":"Point","coordinates":[95942,26540]},{"type":"Point","coordinates":[81990,31627]},{"type":"Point","coordinates":[63119,35460]},{"type":"Point","coordinates":[92244,28091]},{"type":"Point","coordinates":[92253,28088]},{"type":"Point","coordinates":[2077,24579]},{"type":"Point","coordinates":[81981,31641]},{"type":"Point","coordinates":[64654,35284]},{"type":"Point","coordinates":[1995,24549]},{"type":"Point","coordinates":[94837,27036]},{"type":"Point","coordinates":[92249,28107]},{"type":"Point","coordinates":[89653,29121]},{"type":"Point","coordinates":[68101,34825]},{"type":"Point","coordinates":[89818,29085]},{"type":"Point","coordinates":[1942,24581]},{"type":"Point","coordinates":[94944,27053]},{"type":"Point","coordinates":[2224,24726]},{"type":"Point","coordinates":[1985,24616]},{"type":"Point","coordinates":[94066,27431]},{"type":"Point","coordinates":[92251,28170]},{"type":"Point","coordinates":[94931,27068]},{"type":"Point","coordinates":[89660,29169]},{"type":"Point","coordinates":[66026,35181]},{"type":"Point","coordinates":[66026,35181]},{"type":"Point","coordinates":[1816,24544]},{"type":"Point","coordinates":[94064,27449]},{"type":"Point","coordinates":[90223,28975]},{"type":"Point","coordinates":[66114,35188]},{"type":"Point","coordinates":[66113,35191]},{"type":"Point","coordinates":[66114,35196]},{"type":"Point","coordinates":[66114,35197]},{"type":"Point","coordinates":[94936,27102]},{"type":"Point","coordinates":[94936,27104]},{"type":"Point","coordinates":[96995,26206]},{"type":"Point","coordinates":[1984,24656]},{"type":"Point","coordinates":[94931,27107]},{"type":"Point","coordinates":[92989,27916]},{"type":"Point","coordinates":[1768,24573]},{"type":"Point","coordinates":[63028,35612]},{"type":"Point","coordinates":[65144,35359]},{"type":"Point","coordinates":[2031,24706]},{"type":"Point","coordinates":[66155,35223]},{"type":"Point","coordinates":[66123,35230]},{"type":"Point","coordinates":[96775,26344]},{"type":"Point","coordinates":[66024,35255]},{"type":"Point","coordinates":[94710,27251]},{"type":"Point","coordinates":[96832,26335]},{"type":"Point","coordinates":[92227,28277]},{"type":"Point","coordinates":[67958,34984]},{"type":"Point","coordinates":[64584,35471]},{"type":"Point","coordinates":[93971,27578]},{"type":"Point","coordinates":[65770,35318]},{"type":"Point","coordinates":[63146,35651]},{"type":"Point","coordinates":[91280,28670]},{"type":"Point","coordinates":[2028,24758]},{"type":"Point","coordinates":[92568,28168]},{"type":"Point","coordinates":[92568,28168]},{"type":"Point","coordinates":[2172,24834]},{"type":"Point","coordinates":[92122,28348]},{"type":"Point","coordinates":[1949,24729]},{"type":"Point","coordinates":[2412,24970]},{"type":"Point","coordinates":[63045,35694]},{"type":"Point","coordinates":[92248,28326]},{"type":"Point","coordinates":[95182,27119]},{"type":"Point","coordinates":[93106,27985]},{"type":"Point","coordinates":[1889,24731]},{"type":"Point","coordinates":[1869,24722]},{"type":"Point","coordinates":[1763,24672]},{"type":"Point","coordinates":[65568,35395]},{"type":"Point","coordinates":[65773,35375]},{"type":"Point","coordinates":[91233,28739]},{"type":"Point","coordinates":[1514,24571]},{"type":"Point","coordinates":[2030,24840]},{"type":"Point","coordinates":[66147,35357]},{"type":"Point","coordinates":[2008,24837]},{"type":"Point","coordinates":[89579,29417]},{"type":"Point","coordinates":[89576,29429]},{"type":"Point","coordinates":[64712,35584]},{"type":"Point","coordinates":[64712,35585]},{"type":"Point","coordinates":[92774,28202]},{"type":"Point","coordinates":[64712,35588]},{"type":"Point","coordinates":[64711,35589]},{"type":"Point","coordinates":[64711,35589]},{"type":"Point","coordinates":[92203,28433]},{"type":"Point","coordinates":[64704,35592]},{"type":"Point","coordinates":[93041,28101]},{"type":"Point","coordinates":[63216,35782]},{"type":"Point","coordinates":[1876,24825]},{"type":"Point","coordinates":[81696,32064]},{"type":"Point","coordinates":[81696,32064]},{"type":"Point","coordinates":[67898,35169]},{"type":"Point","coordinates":[65984,35455]},{"type":"Point","coordinates":[65962,35460]},{"type":"Point","coordinates":[91166,28878]},{"type":"Point","coordinates":[91169,28877]},{"type":"Point","coordinates":[63075,35824]},{"type":"Point","coordinates":[91167,28879]},{"type":"Point","coordinates":[91170,28878]},{"type":"Point","coordinates":[1518,24683]},{"type":"Point","coordinates":[63081,35828]},{"type":"Point","coordinates":[91176,28883]},{"type":"Point","coordinates":[1518,24687]},{"type":"Point","coordinates":[81480,32159]},{"type":"Point","coordinates":[63081,35839]},{"type":"Point","coordinates":[56357,36383]},{"type":"Point","coordinates":[63098,35841]},{"type":"Point","coordinates":[65120,35598]},{"type":"Point","coordinates":[1962,24923]},{"type":"Point","coordinates":[63099,35850]},{"type":"Point","coordinates":[91458,28796]},{"type":"Point","coordinates":[81545,32161]},{"type":"Point","coordinates":[1968,24938]},{"type":"Point","coordinates":[65674,35544]},{"type":"Point","coordinates":[94671,27508]},{"type":"Point","coordinates":[65120,35622]},{"type":"Point","coordinates":[93514,27996]},{"type":"Point","coordinates":[65004,35641]},{"type":"Point","coordinates":[1473,24710]},{"type":"Point","coordinates":[93460,28019]},{"type":"Point","coordinates":[65774,35546]},{"type":"Point","coordinates":[91478,28819]},{"type":"Point","coordinates":[65615,35572]},{"type":"Point","coordinates":[1824,24895]},{"type":"Point","coordinates":[1383,24692]},{"type":"Point","coordinates":[1813,24901]},{"type":"Point","coordinates":[65391,35626]},{"type":"Point","coordinates":[1962,24987]},{"type":"Point","coordinates":[93284,28132]},{"type":"Point","coordinates":[65462,35621]},{"type":"Point","coordinates":[93284,28133]},{"type":"Point","coordinates":[65585,35610]},{"type":"Point","coordinates":[65464,35629]},{"type":"Point","coordinates":[65599,35614]},{"type":"Point","coordinates":[65891,35577]},{"type":"Point","coordinates":[1902,24981]},{"type":"Point","coordinates":[65861,35587]},{"type":"Point","coordinates":[93303,28153]},{"type":"Point","coordinates":[1507,24805]},{"type":"Point","coordinates":[1507,24805]},{"type":"Point","coordinates":[65340,35674]},{"type":"Point","coordinates":[1846,24971]},{"type":"Point","coordinates":[92716,28403]},{"type":"Point","coordinates":[65016,35720]},{"type":"Point","coordinates":[2020,25059]},{"type":"Point","coordinates":[93276,28178]},{"type":"Point","coordinates":[93276,28178]},{"type":"Point","coordinates":[1513,24820]},{"type":"Point","coordinates":[1496,24821]},{"type":"Point","coordinates":[1508,24830]},{"type":"Point","coordinates":[1505,24829]},{"type":"Point","coordinates":[1518,24838]},{"type":"Point","coordinates":[1515,24839]},{"type":"Point","coordinates":[1517,24840]},{"type":"Point","coordinates":[1512,24839]},{"type":"Point","coordinates":[1512,24838]},{"type":"Point","coordinates":[1512,24838]},{"type":"Point","coordinates":[1515,24842]},{"type":"Point","coordinates":[1515,24843]},{"type":"Point","coordinates":[1517,24844]},{"type":"Point","coordinates":[65399,35697]},{"type":"Point","coordinates":[1512,24844]},{"type":"Point","coordinates":[93258,28215]},{"type":"Point","coordinates":[91464,28929]},{"type":"Point","coordinates":[1516,24846]},{"type":"Point","coordinates":[1511,24845]},{"type":"Point","coordinates":[89681,29607]},{"type":"Point","coordinates":[1476,24828]},{"type":"Point","coordinates":[1508,24844]},{"type":"Point","coordinates":[1521,24852]},{"type":"Point","coordinates":[1514,24850]},{"type":"Point","coordinates":[1514,24850]},{"type":"Point","coordinates":[1496,24842]},{"type":"Point","coordinates":[1514,24851]},{"type":"Point","coordinates":[1903,25040]},{"type":"Point","coordinates":[92158,28664]},{"type":"Point","coordinates":[1478,24836]},{"type":"Point","coordinates":[1461,24828]},{"type":"Point","coordinates":[93231,28237]},{"type":"Point","coordinates":[93270,28221]},{"type":"Point","coordinates":[1539,24878]},{"type":"Point","coordinates":[93295,28221]},{"type":"Point","coordinates":[1464,24843]},{"type":"Point","coordinates":[91002,29133]},{"type":"Point","coordinates":[93148,28291]},{"type":"Point","coordinates":[65495,35719]},{"type":"Point","coordinates":[1539,24891]},{"type":"Point","coordinates":[1512,24880]},{"type":"Point","coordinates":[1538,24895]},{"type":"Point","coordinates":[1545,24901]},{"type":"Point","coordinates":[1593,24931]},{"type":"Point","coordinates":[1846,25055]},{"type":"Point","coordinates":[65473,35741]},{"type":"Point","coordinates":[65494,35739]},{"type":"Point","coordinates":[92295,28656]},{"type":"Point","coordinates":[1541,24915]},{"type":"Point","coordinates":[1540,24914]},{"type":"Point","coordinates":[1512,24901]},{"type":"Point","coordinates":[1789,25039]},{"type":"Point","coordinates":[1537,24920]},{"type":"Point","coordinates":[1619,24960]},{"type":"Point","coordinates":[66232,35647]},{"type":"Point","coordinates":[1554,24929]},{"type":"Point","coordinates":[1538,24925]},{"type":"Point","coordinates":[1538,24925]},{"type":"Point","coordinates":[1506,24911]},{"type":"Point","coordinates":[1506,24911]},{"type":"Point","coordinates":[1506,24911]},{"type":"Point","coordinates":[1506,24911]},{"type":"Point","coordinates":[1506,24911]},{"type":"Point","coordinates":[1506,24911]},{"type":"Point","coordinates":[66236,35656]},{"type":"Point","coordinates":[1538,24933]},{"type":"Point","coordinates":[1548,24938]},{"type":"Point","coordinates":[65441,35770]},{"type":"Point","coordinates":[1532,24936]},{"type":"Point","coordinates":[1542,24943]},{"type":"Point","coordinates":[90047,29553]},{"type":"Point","coordinates":[1539,24944]},{"type":"Point","coordinates":[90724,29299]},{"type":"Point","coordinates":[1544,24947]},{"type":"Point","coordinates":[1544,24947]},{"type":"Point","coordinates":[1551,24951]},{"type":"Point","coordinates":[1540,24946]},{"type":"Point","coordinates":[1542,24947]},{"type":"Point","coordinates":[1540,24946]},{"type":"Point","coordinates":[1544,24948]},{"type":"Point","coordinates":[1546,24950]},{"type":"Point","coordinates":[1539,24947]},{"type":"Point","coordinates":[1541,24949]},{"type":"Point","coordinates":[1543,24950]},{"type":"Point","coordinates":[1540,24949]},{"type":"Point","coordinates":[1540,24949]},{"type":"Point","coordinates":[1540,24949]},{"type":"Point","coordinates":[1540,24949]},{"type":"Point","coordinates":[1539,24948]},{"type":"Point","coordinates":[1546,24952]},{"type":"Point","coordinates":[1538,24950]},{"type":"Point","coordinates":[1536,24949]},{"type":"Point","coordinates":[1537,24950]},{"type":"Point","coordinates":[1536,24949]},{"type":"Point","coordinates":[1535,24949]},{"type":"Point","coordinates":[1560,24961]},{"type":"Point","coordinates":[1386,24877]},{"type":"Point","coordinates":[1536,24950]},{"type":"Point","coordinates":[1537,24951]},{"type":"Point","coordinates":[1565,24965]},{"type":"Point","coordinates":[93363,28269]},{"type":"Point","coordinates":[1534,24953]},{"type":"Point","coordinates":[77785,33405]},{"type":"Point","coordinates":[96725,26840]},{"type":"Point","coordinates":[1504,24944]},{"type":"Point","coordinates":[89937,29613]},{"type":"Point","coordinates":[1484,24936]},{"type":"Point","coordinates":[1855,25117]},{"type":"Point","coordinates":[66231,35688]},{"type":"Point","coordinates":[65485,35792]},{"type":"Point","coordinates":[3303,25812]},{"type":"Point","coordinates":[85366,31226]},{"type":"Point","coordinates":[91274,29120]},{"type":"Point","coordinates":[92625,28592]},{"type":"Point","coordinates":[1446,24938]},{"type":"Point","coordinates":[65182,35854]},{"type":"Point","coordinates":[90977,29252]},{"type":"Point","coordinates":[90976,29253]},{"type":"Point","coordinates":[92584,28623]},{"type":"Point","coordinates":[90975,29254]},{"type":"Point","coordinates":[90982,29256]},{"type":"Point","coordinates":[90983,29256]},{"type":"Point","coordinates":[1496,24982]},{"type":"Point","coordinates":[90983,29259]},{"type":"Point","coordinates":[94842,27703]},{"type":"Point","coordinates":[65857,35780]},{"type":"Point","coordinates":[90979,29262]},{"type":"Point","coordinates":[1479,24977]},{"type":"Point","coordinates":[90979,29266]},{"type":"Point","coordinates":[93604,28225]},{"type":"Point","coordinates":[65619,35818]},{"type":"Point","coordinates":[91315,29139]},{"type":"Point","coordinates":[1501,24997]},{"type":"Point","coordinates":[1499,25005]},{"type":"Point","coordinates":[1467,24989]},{"type":"Point","coordinates":[1471,24992]},{"type":"Point","coordinates":[83222,31956]},{"type":"Point","coordinates":[1488,25005]},{"type":"Point","coordinates":[1475,24999]},{"type":"Point","coordinates":[1488,25005]},{"type":"Point","coordinates":[1767,25142]},{"type":"Point","coordinates":[1477,25005]},{"type":"Point","coordinates":[93409,28329]},{"type":"Point","coordinates":[66276,35751]},{"type":"Point","coordinates":[1478,25007]},{"type":"Point","coordinates":[94797,27755]},{"type":"Point","coordinates":[1430,24986]},{"type":"Point","coordinates":[89987,29677]},{"type":"Point","coordinates":[1470,25012]},{"type":"Point","coordinates":[89991,29677]},{"type":"Point","coordinates":[1451,25010]},{"type":"Point","coordinates":[77268,33629]},{"type":"Point","coordinates":[1445,25010]},{"type":"Point","coordinates":[93414,28348]},{"type":"Point","coordinates":[1390,24984]},{"type":"Point","coordinates":[1389,24985]},{"type":"Point","coordinates":[93413,28350]},{"type":"Point","coordinates":[90263,29587]},{"type":"Point","coordinates":[1448,25016]},{"type":"Point","coordinates":[65389,35899]},{"type":"Point","coordinates":[65263,35916]},{"type":"Point","coordinates":[97238,26717]},{"type":"Point","coordinates":[1479,25035]},{"type":"Point","coordinates":[77851,33493]},{"type":"Point","coordinates":[1422,25010]},{"type":"Point","coordinates":[1422,25010]},{"type":"Point","coordinates":[1421,25011]},{"type":"Point","coordinates":[91386,29168]},{"type":"Point","coordinates":[96357,27120]},{"type":"Point","coordinates":[92612,28695]},{"type":"Point","coordinates":[89977,29719]},{"type":"Point","coordinates":[89976,29720]},{"type":"Point","coordinates":[97272,26725]},{"type":"Point","coordinates":[1312,24978]},{"type":"Point","coordinates":[67987,35548]},{"type":"Point","coordinates":[93148,28495]},{"type":"Point","coordinates":[93465,28366]},{"type":"Point","coordinates":[65009,35988]},{"type":"Point","coordinates":[1387,25043]},{"type":"Point","coordinates":[77908,33531]},{"type":"Point","coordinates":[65423,35953]},{"type":"Point","coordinates":[65304,35970]},{"type":"Point","coordinates":[1352,25037]},{"type":"Point","coordinates":[87113,30792]},{"type":"Point","coordinates":[90141,29705]},{"type":"Point","coordinates":[22928,33161]},{"type":"Point","coordinates":[92092,28960]},{"type":"Point","coordinates":[90115,29722]},{"type":"Point","coordinates":[65552,35972]},{"type":"Point","coordinates":[1556,25173]},{"type":"Point","coordinates":[65564,35978]},{"type":"Point","coordinates":[89955,29815]},{"type":"Point","coordinates":[89954,29817]},{"type":"Point","coordinates":[1536,25178]},{"type":"Point","coordinates":[66065,35923]},{"type":"Point","coordinates":[1683,25259]},{"type":"Point","coordinates":[93380,28494]},{"type":"Point","coordinates":[90497,29629]},{"type":"Point","coordinates":[90497,29629]},{"type":"Point","coordinates":[77422,33727]},{"type":"Point","coordinates":[92143,28997]},{"type":"Point","coordinates":[92616,28811]},{"type":"Point","coordinates":[65193,36055]},{"type":"Point","coordinates":[92041,29043]},{"type":"Point","coordinates":[65491,36020]},{"type":"Point","coordinates":[65488,36022]},{"type":"Point","coordinates":[65489,36022]},{"type":"Point","coordinates":[91167,29388]},{"type":"Point","coordinates":[65757,35989]},{"type":"Point","coordinates":[89871,29887]},{"type":"Point","coordinates":[92057,29050]},{"type":"Point","coordinates":[89872,29888]},{"type":"Point","coordinates":[89872,29889]},{"type":"Point","coordinates":[92775,28768]},{"type":"Point","coordinates":[92778,28767]},{"type":"Point","coordinates":[4691,26709]},{"type":"Point","coordinates":[89876,29903]},{"type":"Point","coordinates":[94587,28038]},{"type":"Point","coordinates":[92912,28732]},{"type":"Point","coordinates":[92737,28807]},{"type":"Point","coordinates":[92737,28808]},{"type":"Point","coordinates":[92917,28739]},{"type":"Point","coordinates":[65745,36034]},{"type":"Point","coordinates":[65740,36039]},{"type":"Point","coordinates":[65758,36039]},{"type":"Point","coordinates":[92043,29103]},{"type":"Point","coordinates":[97171,26947]},{"type":"Point","coordinates":[65249,36112]},{"type":"Point","coordinates":[89857,29944]},{"type":"Point","coordinates":[92913,28760]},{"type":"Point","coordinates":[92913,28761]},{"type":"Point","coordinates":[92912,28762]},{"type":"Point","coordinates":[65713,36054]},{"type":"Point","coordinates":[90439,29730]},{"type":"Point","coordinates":[95393,27734]},{"type":"Point","coordinates":[22845,33279]},{"type":"Point","coordinates":[65719,36065]},{"type":"Point","coordinates":[65714,36066]},{"type":"Point","coordinates":[65249,36129]},{"type":"Point","coordinates":[37392,36174]},{"type":"Point","coordinates":[74897,34415]},{"type":"Point","coordinates":[1287,25166]},{"type":"Point","coordinates":[92714,28861]},{"type":"Point","coordinates":[89878,29959]},{"type":"Point","coordinates":[1693,25368]},{"type":"Point","coordinates":[65497,36107]},{"type":"Point","coordinates":[1404,25230]},{"type":"Point","coordinates":[92680,28882]},{"type":"Point","coordinates":[1453,25263]},{"type":"Point","coordinates":[92875,28812]},{"type":"Point","coordinates":[92551,28942]},{"type":"Point","coordinates":[92337,29030]},{"type":"Point","coordinates":[65753,36085]},{"type":"Point","coordinates":[92992,28770]},{"type":"Point","coordinates":[92554,28950]},{"type":"Point","coordinates":[92555,28950]},{"type":"Point","coordinates":[92557,28952]},{"type":"Point","coordinates":[66297,36020]},{"type":"Point","coordinates":[92874,28829]},{"type":"Point","coordinates":[93838,28437]},{"type":"Point","coordinates":[93838,28437]},{"type":"Point","coordinates":[53740,37073]},{"type":"Point","coordinates":[84240,31935]},{"type":"Point","coordinates":[1453,25290]},{"type":"Point","coordinates":[91765,29292]},{"type":"Point","coordinates":[81065,32909]},{"type":"Point","coordinates":[92801,28893]},{"type":"Point","coordinates":[66347,36052]},{"type":"Point","coordinates":[92694,28942]},{"type":"Point","coordinates":[56788,36996]},{"type":"Point","coordinates":[66349,36066]},{"type":"Point","coordinates":[91158,29561]},{"type":"Point","coordinates":[94508,28214]},{"type":"Point","coordinates":[91147,29566]},{"type":"Point","coordinates":[65458,36198]},{"type":"Point","coordinates":[65458,36200]},{"type":"Point","coordinates":[91319,29507]},{"type":"Point","coordinates":[92746,28945]},{"type":"Point","coordinates":[65460,36201]},{"type":"Point","coordinates":[66295,36086]},{"type":"Point","coordinates":[65458,36202]},{"type":"Point","coordinates":[77351,33934]},{"type":"Point","coordinates":[66295,36089]},{"type":"Point","coordinates":[65458,36204]},{"type":"Point","coordinates":[66291,36092]},{"type":"Point","coordinates":[66290,36092]},{"type":"Point","coordinates":[65790,36162]},{"type":"Point","coordinates":[91200,29562]},{"type":"Point","coordinates":[65345,36226]},{"type":"Point","coordinates":[65784,36168]},{"type":"Point","coordinates":[1428,25347]},{"type":"Point","coordinates":[65780,36172]},{"type":"Point","coordinates":[65785,36177]},{"type":"Point","coordinates":[65808,36175]},{"type":"Point","coordinates":[1760,25519]},{"type":"Point","coordinates":[65786,36180]},{"type":"Point","coordinates":[65697,36200]},{"type":"Point","coordinates":[63903,36430]},{"type":"Point","coordinates":[94174,28397]},{"type":"Point","coordinates":[94174,28397]},{"type":"Point","coordinates":[1400,25359]},{"type":"Point","coordinates":[1401,25362]},{"type":"Point","coordinates":[1348,25347]},{"type":"Point","coordinates":[77245,34010]},{"type":"Point","coordinates":[73031,34966]},{"type":"Point","coordinates":[92717,29028]},{"type":"Point","coordinates":[79474,33470]},{"type":"Point","coordinates":[1678,25546]},{"type":"Point","coordinates":[1390,25410]},{"type":"Point","coordinates":[67201,36057]},{"type":"Point","coordinates":[92965,28975]},{"type":"Point","coordinates":[90578,29913]},{"type":"Point","coordinates":[1559,25522]},{"type":"Point","coordinates":[92672,29098]},{"type":"Point","coordinates":[89621,30274]},{"type":"Point","coordinates":[1384,25441]},{"type":"Point","coordinates":[65327,36351]},{"type":"Point","coordinates":[1385,25452]},{"type":"Point","coordinates":[1387,25453]},{"type":"Point","coordinates":[1386,25455]},{"type":"Point","coordinates":[65327,36358]},{"type":"Point","coordinates":[92759,29089]},{"type":"Point","coordinates":[65330,36363]},{"type":"Point","coordinates":[65324,36366]},{"type":"Point","coordinates":[65323,36371]},{"type":"Point","coordinates":[65327,36370]},{"type":"Point","coordinates":[65324,36374]},{"type":"Point","coordinates":[1378,25478]},{"type":"Point","coordinates":[1545,25585]},{"type":"Point","coordinates":[74736,34737]},{"type":"Point","coordinates":[96488,27570]},{"type":"Point","coordinates":[92196,29362]},{"type":"Point","coordinates":[64566,36511]},{"type":"Point","coordinates":[1375,25515]},{"type":"Point","coordinates":[96231,27694]},{"type":"Point","coordinates":[94577,28406]},{"type":"Point","coordinates":[1280,25494]},{"type":"Point","coordinates":[93162,29009]},{"type":"Point","coordinates":[91306,29749]},{"type":"Point","coordinates":[77291,34182]},{"type":"Point","coordinates":[94734,28369]},{"type":"Point","coordinates":[75092,34703]},{"type":"Point","coordinates":[94119,28629]},{"type":"Point","coordinates":[63422,36695]},{"type":"Point","coordinates":[63421,36698]},{"type":"Point","coordinates":[77263,34198]},{"type":"Point","coordinates":[77263,34198]},{"type":"Point","coordinates":[63428,36702]},{"type":"Point","coordinates":[77491,34151]},{"type":"Point","coordinates":[74974,34754]},{"type":"Point","coordinates":[61346,36943]},{"type":"Point","coordinates":[1508,25657]},{"type":"Point","coordinates":[77474,34177]},{"type":"Point","coordinates":[74118,34962]},{"type":"Point","coordinates":[61352,36952]},{"type":"Point","coordinates":[1786,25809]},{"type":"Point","coordinates":[77436,34204]},{"type":"Point","coordinates":[84351,32254]},{"type":"Point","coordinates":[91885,29591]},{"type":"Point","coordinates":[93040,29132]},{"type":"Point","coordinates":[66303,36390]},{"type":"Point","coordinates":[90457,30152]},{"type":"Point","coordinates":[74880,34826]},{"type":"Point","coordinates":[66138,36420]},{"type":"Point","coordinates":[66921,36317]},{"type":"Point","coordinates":[77190,34306]},{"type":"Point","coordinates":[76247,34537]},{"type":"Point","coordinates":[60876,37055]},{"type":"Point","coordinates":[90490,30172]},{"type":"Point","coordinates":[77226,34310]},{"type":"Point","coordinates":[90481,30187]},{"type":"Point","coordinates":[77024,34370]},{"type":"Point","coordinates":[77289,34306]},{"type":"Point","coordinates":[77709,34205]},{"type":"Point","coordinates":[76394,34532]},{"type":"Point","coordinates":[76282,34562]},{"type":"Point","coordinates":[77271,34328]},{"type":"Point","coordinates":[76257,34574]},{"type":"Point","coordinates":[1394,25709]},{"type":"Point","coordinates":[1392,25709]},{"type":"Point","coordinates":[1393,25714]},{"type":"Point","coordinates":[1388,25712]},{"type":"Point","coordinates":[1387,25715]},{"type":"Point","coordinates":[75054,34865]},{"type":"Point","coordinates":[64560,36705]},{"type":"Point","coordinates":[1419,25738]},{"type":"Point","coordinates":[77004,34425]},{"type":"Point","coordinates":[77261,34367]},{"type":"Point","coordinates":[93518,29065]},{"type":"Point","coordinates":[87830,31229]},{"type":"Point","coordinates":[65611,36615]},{"type":"Point","coordinates":[88792,30898]},{"type":"Point","coordinates":[90673,30204]},{"type":"Point","coordinates":[72036,35557]},{"type":"Point","coordinates":[55107,37531]},{"type":"Point","coordinates":[61258,37131]},{"type":"Point","coordinates":[92956,29324]},{"type":"Point","coordinates":[61261,37132]},{"type":"Point","coordinates":[76969,34480]},{"type":"Point","coordinates":[61226,37152]},{"type":"Point","coordinates":[3077,26609]},{"type":"Point","coordinates":[88584,31011]},{"type":"Point","coordinates":[94780,28598]},{"type":"Point","coordinates":[88584,31012]},{"type":"Point","coordinates":[93131,29283]},{"type":"Point","coordinates":[76362,34659]},{"type":"Point","coordinates":[87263,31488]},{"type":"Point","coordinates":[77014,34506]},{"type":"Point","coordinates":[94878,28571]},{"type":"Point","coordinates":[76524,34629]},{"type":"Point","coordinates":[74823,35025]},{"type":"Point","coordinates":[88595,31030]},{"type":"Point","coordinates":[88595,31030]},{"type":"Point","coordinates":[94130,28896]},{"type":"Point","coordinates":[77288,34452]},{"type":"Point","coordinates":[91224,30070]},{"type":"Point","coordinates":[76856,34573]},{"type":"Point","coordinates":[76470,34669]},{"type":"Point","coordinates":[77057,34532]},{"type":"Point","coordinates":[92435,29609]},{"type":"Point","coordinates":[77289,34476]},{"type":"Point","coordinates":[76506,34667]},{"type":"Point","coordinates":[70540,35938]},{"type":"Point","coordinates":[70540,35940]},{"type":"Point","coordinates":[76474,34692]},{"type":"Point","coordinates":[77106,34539]},{"type":"Point","coordinates":[77111,34563]},{"type":"Point","coordinates":[67173,36528]},{"type":"Point","coordinates":[77882,34379]},{"type":"Point","coordinates":[66927,36573]},{"type":"Point","coordinates":[65333,36807]},{"type":"Point","coordinates":[77503,34491]},{"type":"Point","coordinates":[22470,33887]},{"type":"Point","coordinates":[22470,33888]},{"type":"Point","coordinates":[77879,34409]},{"type":"Point","coordinates":[77254,34568]},{"type":"Point","coordinates":[94423,28887]},{"type":"Point","coordinates":[1415,25973]},{"type":"Point","coordinates":[61088,37317]},{"type":"Point","coordinates":[84227,32635]},{"type":"Point","coordinates":[65761,36806]},{"type":"Point","coordinates":[77596,34526]},{"type":"Point","coordinates":[65755,36821]},{"type":"Point","coordinates":[65755,36822]},{"type":"Point","coordinates":[76433,34821]},{"type":"Point","coordinates":[76984,34689]},{"type":"Point","coordinates":[91220,30226]},{"type":"Point","coordinates":[87656,31537]},{"type":"Point","coordinates":[61066,37369]},{"type":"Point","coordinates":[75785,34984]},{"type":"Point","coordinates":[94288,29014]},{"type":"Point","coordinates":[95108,28672]},{"type":"Point","coordinates":[94294,29018]},{"type":"Point","coordinates":[66765,36716]},{"type":"Point","coordinates":[77183,34678]},{"type":"Point","coordinates":[77185,34681]},{"type":"Point","coordinates":[77231,34670]},{"type":"Point","coordinates":[60934,37428]},{"type":"Point","coordinates":[60934,37428]},{"type":"Point","coordinates":[60928,37431]},{"type":"Point","coordinates":[60922,37436]},{"type":"Point","coordinates":[76449,34882]},{"type":"Point","coordinates":[94742,28896]},{"type":"Point","coordinates":[94742,28897]},{"type":"Point","coordinates":[94739,28898]},{"type":"Point","coordinates":[77046,34763]},{"type":"Point","coordinates":[60877,37468]},{"type":"Point","coordinates":[95112,28743]},{"type":"Point","coordinates":[77312,34699]},{"type":"Point","coordinates":[76484,34901]},{"type":"Point","coordinates":[92935,29644]},{"type":"Point","coordinates":[94734,28907]},{"type":"Point","coordinates":[94730,28912]},{"type":"Point","coordinates":[76397,34940]},{"type":"Point","coordinates":[90523,30610]},{"type":"Point","coordinates":[93035,29638]},{"type":"Point","coordinates":[93035,29638]},{"type":"Point","coordinates":[94753,28934]},{"type":"Point","coordinates":[61682,37430]},{"type":"Point","coordinates":[93824,29321]},{"type":"Point","coordinates":[66385,36869]},{"type":"Point","coordinates":[92821,29733]},{"type":"Point","coordinates":[76580,34929]},{"type":"Point","coordinates":[65196,37041]},{"type":"Point","coordinates":[1271,26099]},{"type":"Point","coordinates":[1271,26099]},{"type":"Point","coordinates":[94740,28958]},{"type":"Point","coordinates":[61185,37496]},{"type":"Point","coordinates":[90766,30549]},{"type":"Point","coordinates":[94746,28958]},{"type":"Point","coordinates":[77106,34814]},{"type":"Point","coordinates":[94748,28968]},{"type":"Point","coordinates":[94739,28973]},{"type":"Point","coordinates":[60928,37536]},{"type":"Point","coordinates":[94896,28912]},{"type":"Point","coordinates":[89826,30921]},{"type":"Point","coordinates":[94411,29123]},{"type":"Point","coordinates":[76582,34960]},{"type":"Point","coordinates":[76587,34959]},{"type":"Point","coordinates":[60932,37547]},{"type":"Point","coordinates":[60926,37552]},{"type":"Point","coordinates":[78053,34604]},{"type":"Point","coordinates":[95109,28840]},{"type":"Point","coordinates":[60932,37556]},{"type":"Point","coordinates":[60942,37558]},{"type":"Point","coordinates":[78093,34607]},{"type":"Point","coordinates":[76598,34979]},{"type":"Point","coordinates":[85905,32327]},{"type":"Point","coordinates":[60928,37572]},{"type":"Point","coordinates":[76568,34992]},{"type":"Point","coordinates":[1441,26241]},{"type":"Point","coordinates":[77823,34700]},{"type":"Point","coordinates":[88892,31320]},{"type":"Point","coordinates":[92291,30040]},{"type":"Point","coordinates":[93011,29753]},{"type":"Point","coordinates":[92291,30040]},{"type":"Point","coordinates":[90912,30576]},{"type":"Point","coordinates":[92294,30041]},{"type":"Point","coordinates":[3973,27461]},{"type":"Point","coordinates":[76133,35125]},{"type":"Point","coordinates":[77698,34748]},{"type":"Point","coordinates":[1380,26244]},{"type":"Point","coordinates":[94747,29047]},{"type":"Point","coordinates":[1375,26251]},{"type":"Point","coordinates":[92282,30061]},{"type":"Point","coordinates":[92282,30061]},{"type":"Point","coordinates":[88329,31544]},{"type":"Point","coordinates":[92294,30058]},{"type":"Point","coordinates":[94899,28995]},{"type":"Point","coordinates":[76258,35123]},{"type":"Point","coordinates":[93480,29609]},{"type":"Point","coordinates":[85690,32479]},{"type":"Point","coordinates":[85690,32479]},{"type":"Point","coordinates":[1360,26280]},{"type":"Point","coordinates":[76538,35079]},{"type":"Point","coordinates":[75888,35234]},{"type":"Point","coordinates":[75888,35235]},{"type":"Point","coordinates":[75888,35235]},{"type":"Point","coordinates":[75887,35236]},{"type":"Point","coordinates":[92182,30145]},{"type":"Point","coordinates":[1365,26294]},{"type":"Point","coordinates":[1361,26294]},{"type":"Point","coordinates":[90620,30753]},{"type":"Point","coordinates":[78049,34728]},{"type":"Point","coordinates":[77213,34939]},{"type":"Point","coordinates":[76532,35106]},{"type":"Point","coordinates":[90689,30742]},{"type":"Point","coordinates":[91833,30305]},{"type":"Point","coordinates":[7973,29294]},{"type":"Point","coordinates":[1363,26318]},{"type":"Point","coordinates":[93486,29649]},{"type":"Point","coordinates":[77179,34963]},{"type":"Point","coordinates":[94849,29094]},{"type":"Point","coordinates":[76446,35144]},{"type":"Point","coordinates":[92385,30106]},{"type":"Point","coordinates":[92385,30106]},{"type":"Point","coordinates":[92379,30109]},{"type":"Point","coordinates":[92377,30110]},{"type":"Point","coordinates":[79489,34383]},{"type":"Point","coordinates":[79487,34388]},{"type":"Point","coordinates":[93015,29865]},{"type":"Point","coordinates":[75884,35293]},{"type":"Point","coordinates":[77246,34968]},{"type":"Point","coordinates":[93202,29801]},{"type":"Point","coordinates":[93202,29801]},{"type":"Point","coordinates":[76340,35196]},{"type":"Point","coordinates":[77328,34958]},{"type":"Point","coordinates":[77327,34959]},{"type":"Point","coordinates":[77347,34957]},{"type":"Point","coordinates":[79617,34373]},{"type":"Point","coordinates":[77324,34970]},{"type":"Point","coordinates":[92932,29927]},{"type":"Point","coordinates":[75733,35356]},{"type":"Point","coordinates":[1360,26373]},{"type":"Point","coordinates":[76118,35270]},{"type":"Point","coordinates":[75727,35361]},{"type":"Point","coordinates":[77080,35049]},{"type":"Point","coordinates":[76379,35219]},{"type":"Point","coordinates":[76385,35223]},{"type":"Point","coordinates":[92360,30179]},{"type":"Point","coordinates":[77345,34997]},{"type":"Point","coordinates":[65161,37297]},{"type":"Point","coordinates":[75239,35497]},{"type":"Point","coordinates":[92352,30188]},{"type":"Point","coordinates":[90446,30925]},{"type":"Point","coordinates":[77589,34942]},{"type":"Point","coordinates":[92358,30194]},{"type":"Point","coordinates":[76506,35211]},{"type":"Point","coordinates":[76511,35212]},{"type":"Point","coordinates":[76513,35213]},{"type":"Point","coordinates":[93039,29927]},{"type":"Point","coordinates":[92358,30199]},{"type":"Point","coordinates":[76385,35245]},{"type":"Point","coordinates":[92358,30200]},{"type":"Point","coordinates":[1354,26419]},{"type":"Point","coordinates":[1356,26424]},{"type":"Point","coordinates":[1313,26404]},{"type":"Point","coordinates":[87683,31957]},{"type":"Point","coordinates":[1356,26436]},{"type":"Point","coordinates":[1356,26436]},{"type":"Point","coordinates":[1356,26436]},{"type":"Point","coordinates":[76740,35182]},{"type":"Point","coordinates":[1373,26449]},{"type":"Point","coordinates":[1335,26431]},{"type":"Point","coordinates":[1335,26431]},{"type":"Point","coordinates":[1335,26431]},{"type":"Point","coordinates":[1335,26431]},{"type":"Point","coordinates":[1335,26433]},{"type":"Point","coordinates":[1335,26433]},{"type":"Point","coordinates":[1335,26433]},{"type":"Point","coordinates":[54879,38190]},{"type":"Point","coordinates":[1349,26442]},{"type":"Point","coordinates":[1349,26442]},{"type":"Point","coordinates":[75723,35436]},{"type":"Point","coordinates":[1352,26450]},{"type":"Point","coordinates":[1360,26456]},{"type":"Point","coordinates":[1357,26455]},{"type":"Point","coordinates":[93947,29602]},{"type":"Point","coordinates":[93947,29603]},{"type":"Point","coordinates":[7950,29433]},{"type":"Point","coordinates":[66012,37246]},{"type":"Point","coordinates":[1355,26468]},{"type":"Point","coordinates":[77040,35141]},{"type":"Point","coordinates":[76356,35308]},{"type":"Point","coordinates":[77537,35024]},{"type":"Point","coordinates":[1311,26454]},{"type":"Point","coordinates":[3558,27518]},{"type":"Point","coordinates":[1357,26478]},{"type":"Point","coordinates":[93557,29783]},{"type":"Point","coordinates":[1356,26480]},{"type":"Point","coordinates":[77240,35104]},{"type":"Point","coordinates":[1364,26486]},{"type":"Point","coordinates":[77234,35106]},{"type":"Point","coordinates":[76942,35181]},{"type":"Point","coordinates":[1365,26498]},{"type":"Point","coordinates":[77309,35099]},{"type":"Point","coordinates":[76865,35208]},{"type":"Point","coordinates":[76328,35338]},{"type":"Point","coordinates":[76972,35183]},{"type":"Point","coordinates":[1370,26504]},{"type":"Point","coordinates":[77378,35085]},{"type":"Point","coordinates":[1308,26474]},{"type":"Point","coordinates":[1318,26483]},{"type":"Point","coordinates":[1366,26506]},{"type":"Point","coordinates":[1339,26493]},{"type":"Point","coordinates":[77019,35178]},{"type":"Point","coordinates":[77301,35113]},{"type":"Point","coordinates":[65141,37405]},{"type":"Point","coordinates":[77052,35176]},{"type":"Point","coordinates":[1318,26491]},{"type":"Point","coordinates":[65140,37406]},{"type":"Point","coordinates":[75741,35494]},{"type":"Point","coordinates":[7956,29487]},{"type":"Point","coordinates":[1366,26523]},{"type":"Point","coordinates":[93119,30005]},{"type":"Point","coordinates":[77092,35184]},{"type":"Point","coordinates":[77186,35162]},{"type":"Point","coordinates":[1366,26533]},{"type":"Point","coordinates":[96328,28663]},{"type":"Point","coordinates":[76589,35308]},{"type":"Point","coordinates":[1351,26530]},{"type":"Point","coordinates":[7826,29450]},{"type":"Point","coordinates":[77333,35131]},{"type":"Point","coordinates":[91954,30481]},{"type":"Point","coordinates":[1382,26551]},{"type":"Point","coordinates":[1326,26525]},{"type":"Point","coordinates":[1425,26574]},{"type":"Point","coordinates":[1290,26514]},{"type":"Point","coordinates":[1367,26552]},{"type":"Point","coordinates":[1364,26552]},{"type":"Point","coordinates":[77125,35196]},{"type":"Point","coordinates":[1361,26552]},{"type":"Point","coordinates":[1363,26555]},{"type":"Point","coordinates":[1364,26555]},{"type":"Point","coordinates":[76805,35278]},{"type":"Point","coordinates":[1364,26559]},{"type":"Point","coordinates":[1363,26559]},{"type":"Point","coordinates":[1364,26559]},{"type":"Point","coordinates":[1366,26561]},{"type":"Point","coordinates":[1366,26561]},{"type":"Point","coordinates":[1364,26560]},{"type":"Point","coordinates":[1364,26560]},{"type":"Point","coordinates":[1363,26560]},{"type":"Point","coordinates":[1363,26561]},{"type":"Point","coordinates":[1363,26561]},{"type":"Point","coordinates":[1363,26561]},{"type":"Point","coordinates":[94289,29558]},{"type":"Point","coordinates":[1363,26561]},{"type":"Point","coordinates":[1363,26562]},{"type":"Point","coordinates":[92965,30110]},{"type":"Point","coordinates":[4540,28060]},{"type":"Point","coordinates":[1345,26564]},{"type":"Point","coordinates":[1364,26574]},{"type":"Point","coordinates":[64139,37590]},{"type":"Point","coordinates":[1337,26562]},{"type":"Point","coordinates":[77112,35223]},{"type":"Point","coordinates":[1357,26574]},{"type":"Point","coordinates":[1360,26577]},{"type":"Point","coordinates":[76865,35288]},{"type":"Point","coordinates":[1365,26585]},{"type":"Point","coordinates":[76929,35275]},{"type":"Point","coordinates":[1349,26578]},{"type":"Point","coordinates":[1349,26579]},{"type":"Point","coordinates":[1352,26581]},{"type":"Point","coordinates":[77058,35247]},{"type":"Point","coordinates":[1356,26584]},{"type":"Point","coordinates":[1363,26591]},{"type":"Point","coordinates":[77066,35249]},{"type":"Point","coordinates":[94040,29693]},{"type":"Point","coordinates":[1364,26593]},{"type":"Point","coordinates":[1345,26584]},{"type":"Point","coordinates":[1345,26584]},{"type":"Point","coordinates":[1348,26587]},{"type":"Point","coordinates":[1351,26589]},{"type":"Point","coordinates":[79715,34573]},{"type":"Point","coordinates":[76980,35274]},{"type":"Point","coordinates":[1343,26587]},{"type":"Point","coordinates":[1342,26587]},{"type":"Point","coordinates":[4502,28067]},{"type":"Point","coordinates":[1341,26587]},{"type":"Point","coordinates":[1342,26588]},{"type":"Point","coordinates":[1339,26588]},{"type":"Point","coordinates":[76640,35360]},{"type":"Point","coordinates":[1343,26592]},{"type":"Point","coordinates":[1351,26597]},{"type":"Point","coordinates":[1351,26597]},{"type":"Point","coordinates":[4489,28067]},{"type":"Point","coordinates":[89298,31546]},{"type":"Point","coordinates":[76719,35349]},{"type":"Point","coordinates":[1335,26594]},{"type":"Point","coordinates":[1334,26595]},{"type":"Point","coordinates":[1332,26596]},{"type":"Point","coordinates":[1332,26598]},{"type":"Point","coordinates":[77685,35119]},{"type":"Point","coordinates":[1328,26599]},{"type":"Point","coordinates":[1329,26602]},{"type":"Point","coordinates":[1337,26611]},{"type":"Point","coordinates":[4430,28063]},{"type":"Point","coordinates":[85590,32853]},{"type":"Point","coordinates":[76918,35323]},{"type":"Point","coordinates":[76658,35387]},{"type":"Point","coordinates":[1320,26622]},{"type":"Point","coordinates":[77055,35304]},{"type":"Point","coordinates":[1321,26626]},{"type":"Point","coordinates":[76756,35379]},{"type":"Point","coordinates":[77140,35290]},{"type":"Point","coordinates":[1322,26633]},{"type":"Point","coordinates":[1321,26634]},{"type":"Point","coordinates":[77485,35208]},{"type":"Point","coordinates":[79514,34688]},{"type":"Point","coordinates":[1328,26644]},{"type":"Point","coordinates":[1165,26565]},{"type":"Point","coordinates":[92160,30518]},{"type":"Point","coordinates":[77531,35207]},{"type":"Point","coordinates":[3520,27689]},{"type":"Point","coordinates":[77083,35321]},{"type":"Point","coordinates":[92314,30471]},{"type":"Point","coordinates":[76767,35407]},{"type":"Point","coordinates":[77602,35204]},{"type":"Point","coordinates":[77347,35269]},{"type":"Point","coordinates":[3523,27705]},{"type":"Point","coordinates":[75453,35732]},{"type":"Point","coordinates":[77712,35192]},{"type":"Point","coordinates":[78068,35121]},{"type":"Point","coordinates":[62756,37886]},{"type":"Point","coordinates":[92321,30509]},{"type":"Point","coordinates":[77754,35204]},{"type":"Point","coordinates":[77193,35343]},{"type":"Point","coordinates":[79482,34757]},{"type":"Point","coordinates":[76952,35403]},{"type":"Point","coordinates":[79483,34760]},{"type":"Point","coordinates":[77087,35377]},{"type":"Point","coordinates":[91638,30789]},{"type":"Point","coordinates":[1297,26699]},{"type":"Point","coordinates":[77126,35376]},{"type":"Point","coordinates":[89353,31657]},{"type":"Point","coordinates":[1320,26719]},{"type":"Point","coordinates":[89348,31661]},{"type":"Point","coordinates":[89348,31661]},{"type":"Point","coordinates":[89348,31662]},{"type":"Point","coordinates":[3572,27787]},{"type":"Point","coordinates":[89351,31665]},{"type":"Point","coordinates":[89351,31666]},{"type":"Point","coordinates":[1394,26765]},{"type":"Point","coordinates":[3453,27742]},{"type":"Point","coordinates":[77396,35325]},{"type":"Point","coordinates":[92425,30505]},{"type":"Point","coordinates":[77023,35418]},{"type":"Point","coordinates":[89347,31680]},{"type":"Point","coordinates":[89347,31680]},{"type":"Point","coordinates":[1295,26726]},{"type":"Point","coordinates":[76972,35435]},{"type":"Point","coordinates":[89346,31681]},{"type":"Point","coordinates":[77042,35419]},{"type":"Point","coordinates":[89346,31682]},{"type":"Point","coordinates":[89346,31682]},{"type":"Point","coordinates":[89346,31682]},{"type":"Point","coordinates":[77053,35420]},{"type":"Point","coordinates":[4066,28037]},{"type":"Point","coordinates":[3519,27788]},{"type":"Point","coordinates":[1273,26726]},{"type":"Point","coordinates":[1273,26726]},{"type":"Point","coordinates":[1272,26728]},{"type":"Point","coordinates":[91250,30981]},{"type":"Point","coordinates":[64302,37762]},{"type":"Point","coordinates":[63794,37824]},{"type":"Point","coordinates":[81303,34306]},{"type":"Point","coordinates":[81303,34306]},{"type":"Point","coordinates":[81303,34306]},{"type":"Point","coordinates":[1270,26729]},{"type":"Point","coordinates":[1270,26729]},{"type":"Point","coordinates":[64014,37798]},{"type":"Point","coordinates":[1268,26730]},{"type":"Point","coordinates":[1268,26730]},{"type":"Point","coordinates":[63787,37827]},{"type":"Point","coordinates":[3939,27991]},{"type":"Point","coordinates":[63796,37829]},{"type":"Point","coordinates":[3980,28014]},{"type":"Point","coordinates":[1268,26736]},{"type":"Point","coordinates":[76703,35523]},{"type":"Point","coordinates":[3985,28017]},{"type":"Point","coordinates":[76763,35509]},{"type":"Point","coordinates":[63792,37833]},{"type":"Point","coordinates":[77023,35448]},{"type":"Point","coordinates":[3956,28006]},{"type":"Point","coordinates":[76953,35467]},{"type":"Point","coordinates":[3963,28012]},{"type":"Point","coordinates":[77069,35441]},{"type":"Point","coordinates":[3962,28015]},{"type":"Point","coordinates":[89352,31712]},{"type":"Point","coordinates":[92969,30330]},{"type":"Point","coordinates":[77275,35397]},{"type":"Point","coordinates":[1056,26649]},{"type":"Point","coordinates":[93032,30307]},{"type":"Point","coordinates":[1235,26739]},{"type":"Point","coordinates":[1246,26754]},{"type":"Point","coordinates":[77340,35397]},{"type":"Point","coordinates":[4242,28166]},{"type":"Point","coordinates":[77087,35462]},{"type":"Point","coordinates":[50933,38609]},{"type":"Point","coordinates":[77675,35318]},{"type":"Point","coordinates":[77409,35386]},{"type":"Point","coordinates":[86529,32727]},{"type":"Point","coordinates":[86456,32753]},{"type":"Point","coordinates":[3620,27888]},{"type":"Point","coordinates":[1298,26793]},{"type":"Point","coordinates":[1298,26793]},{"type":"Point","coordinates":[77039,35483]},{"type":"Point","coordinates":[90507,31316]},{"type":"Point","coordinates":[77275,35426]},{"type":"Point","coordinates":[1240,26768]},{"type":"Point","coordinates":[1301,26798]},{"type":"Point","coordinates":[76867,35530]},{"type":"Point","coordinates":[1301,26802]},{"type":"Point","coordinates":[77412,35398]},{"type":"Point","coordinates":[1302,26803]},{"type":"Point","coordinates":[1307,26807]},{"type":"Point","coordinates":[93599,30114]},{"type":"Point","coordinates":[77077,35483]},{"type":"Point","coordinates":[3987,28072]},{"type":"Point","coordinates":[76684,35581]},{"type":"Point","coordinates":[1304,26810]},{"type":"Point","coordinates":[1304,26811]},{"type":"Point","coordinates":[77086,35486]},{"type":"Point","coordinates":[1306,26813]},{"type":"Point","coordinates":[1306,26818]},{"type":"Point","coordinates":[1307,26819]},{"type":"Point","coordinates":[1306,26818]},{"type":"Point","coordinates":[1306,26819]},{"type":"Point","coordinates":[1306,26819]},{"type":"Point","coordinates":[1306,26819]},{"type":"Point","coordinates":[1306,26819]},{"type":"Point","coordinates":[1306,26819]},{"type":"Point","coordinates":[3155,27698]},{"type":"Point","coordinates":[77710,35341]},{"type":"Point","coordinates":[76739,35583]},{"type":"Point","coordinates":[75394,35901]},{"type":"Point","coordinates":[77181,35480]},{"type":"Point","coordinates":[1273,26815]},{"type":"Point","coordinates":[77257,35462]},{"type":"Point","coordinates":[89338,31784]},{"type":"Point","coordinates":[51189,38654]},{"type":"Point","coordinates":[76782,35586]},{"type":"Point","coordinates":[89338,31793]},{"type":"Point","coordinates":[1281,26831]},{"type":"Point","coordinates":[77191,35489]},{"type":"Point","coordinates":[89336,31801]},{"type":"Point","coordinates":[89336,31802]},{"type":"Point","coordinates":[77338,35463]},{"type":"Point","coordinates":[63747,37933]},{"type":"Point","coordinates":[89321,31815]},{"type":"Point","coordinates":[63021,38020]},{"type":"Point","coordinates":[50984,38679]},{"type":"Point","coordinates":[50984,38680]},{"type":"Point","coordinates":[1225,26826]},{"type":"Point","coordinates":[1254,26844]},{"type":"Point","coordinates":[1207,26823]},{"type":"Point","coordinates":[4099,28187]},{"type":"Point","coordinates":[55116,38617]},{"type":"Point","coordinates":[77359,35479]},{"type":"Point","coordinates":[76706,35638]},{"type":"Point","coordinates":[79601,34902]},{"type":"Point","coordinates":[97482,28523]},{"type":"Point","coordinates":[1214,26833]},{"type":"Point","coordinates":[76663,35656]},{"type":"Point","coordinates":[77270,35509]},{"type":"Point","coordinates":[90877,31261]},{"type":"Point","coordinates":[1275,26876]},{"type":"Point","coordinates":[77268,35517]},{"type":"Point","coordinates":[97353,28598]},{"type":"Point","coordinates":[77413,35490]},{"type":"Point","coordinates":[77333,35512]},{"type":"Point","coordinates":[78437,35235]},{"type":"Point","coordinates":[93213,30368]},{"type":"Point","coordinates":[77123,35571]},{"type":"Point","coordinates":[77123,35571]},{"type":"Point","coordinates":[77123,35571]},{"type":"Point","coordinates":[63747,37987]},{"type":"Point","coordinates":[63748,37987]},{"type":"Point","coordinates":[1318,26919]},{"type":"Point","coordinates":[77138,35576]},{"type":"Point","coordinates":[93212,30385]},{"type":"Point","coordinates":[77195,35569]},{"type":"Point","coordinates":[76755,35677]},{"type":"Point","coordinates":[91148,31205]},{"type":"Point","coordinates":[77233,35570]},{"type":"Point","coordinates":[77390,35534]},{"type":"Point","coordinates":[3581,28016]},{"type":"Point","coordinates":[49659,38758]},{"type":"Point","coordinates":[77423,35544]},{"type":"Point","coordinates":[77120,35619]},{"type":"Point","coordinates":[1292,26965]},{"type":"Point","coordinates":[76554,35768]},{"type":"Point","coordinates":[77118,35633]},{"type":"Point","coordinates":[1314,26981]},{"type":"Point","coordinates":[1141,26898]},{"type":"Point","coordinates":[77314,35592]},{"type":"Point","coordinates":[76761,35730]},{"type":"Point","coordinates":[77271,35606]},{"type":"Point","coordinates":[77158,35634]},{"type":"Point","coordinates":[77007,35672]},{"type":"Point","coordinates":[77174,35633]},{"type":"Point","coordinates":[77126,35648]},{"type":"Point","coordinates":[51122,38802]},{"type":"Point","coordinates":[77253,35621]},{"type":"Point","coordinates":[76934,35700]},{"type":"Point","coordinates":[91513,31129]},{"type":"Point","coordinates":[77255,35624]},{"type":"Point","coordinates":[82653,34158]},{"type":"Point","coordinates":[77121,35660]},{"type":"Point","coordinates":[91508,31136]},{"type":"Point","coordinates":[76849,35729]},{"type":"Point","coordinates":[91504,31143]},{"type":"Point","coordinates":[77092,35677]},{"type":"Point","coordinates":[3945,28255]},{"type":"Point","coordinates":[91502,31157]},{"type":"Point","coordinates":[77177,35668]},{"type":"Point","coordinates":[22499,34989]},{"type":"Point","coordinates":[76832,35754]},{"type":"Point","coordinates":[76940,35730]},{"type":"Point","coordinates":[90950,31375]},{"type":"Point","coordinates":[90439,31569]},{"type":"Point","coordinates":[76974,35724]},{"type":"Point","coordinates":[76736,35783]},{"type":"Point","coordinates":[76417,35860]},{"type":"Point","coordinates":[1614,27184]},{"type":"Point","coordinates":[78592,35329]},{"type":"Point","coordinates":[78592,35329]},{"type":"Point","coordinates":[78592,35329]},{"type":"Point","coordinates":[77416,35627]},{"type":"Point","coordinates":[91280,31268]},{"type":"Point","coordinates":[76934,35751]},{"type":"Point","coordinates":[77273,35672]},{"type":"Point","coordinates":[77205,35689]},{"type":"Point","coordinates":[88608,32262]},{"type":"Point","coordinates":[91221,31299]},{"type":"Point","coordinates":[76808,35790]},{"type":"Point","coordinates":[88607,32273]},{"type":"Point","coordinates":[77053,35745]},{"type":"Point","coordinates":[77232,35708]},{"type":"Point","coordinates":[77020,35764]},{"type":"Point","coordinates":[76878,35799]},{"type":"Point","coordinates":[76726,35838]},{"type":"Point","coordinates":[77008,35770]},{"type":"Point","coordinates":[77270,35707]},{"type":"Point","coordinates":[3882,28302]},{"type":"Point","coordinates":[90389,31649]},{"type":"Point","coordinates":[77234,35723]},{"type":"Point","coordinates":[1283,27087]},{"type":"Point","coordinates":[3645,28204]},{"type":"Point","coordinates":[77242,35726]},{"type":"Point","coordinates":[77245,35728]},{"type":"Point","coordinates":[77643,35631]},{"type":"Point","coordinates":[76829,35836]},{"type":"Point","coordinates":[77650,35634]},{"type":"Point","coordinates":[3403,28103]},{"type":"Point","coordinates":[77326,35716]},{"type":"Point","coordinates":[76951,35810]},{"type":"Point","coordinates":[1269,27099]},{"type":"Point","coordinates":[77650,35641]},{"type":"Point","coordinates":[77244,35744]},{"type":"Point","coordinates":[77249,35744]},{"type":"Point","coordinates":[90150,31768]},{"type":"Point","coordinates":[90108,31785]},{"type":"Point","coordinates":[76988,35818]},{"type":"Point","coordinates":[76744,35878]},{"type":"Point","coordinates":[77249,35757]},{"type":"Point","coordinates":[1230,27098]},{"type":"Point","coordinates":[77242,35760]},{"type":"Point","coordinates":[88395,32422]},{"type":"Point","coordinates":[76459,35953]},{"type":"Point","coordinates":[80989,34777]},{"type":"Point","coordinates":[77246,35764]},{"type":"Point","coordinates":[77246,35764]},{"type":"Point","coordinates":[89298,32104]},{"type":"Point","coordinates":[77251,35768]},{"type":"Point","coordinates":[77363,35746]},{"type":"Point","coordinates":[77143,35807]},{"type":"Point","coordinates":[77414,35746]},{"type":"Point","coordinates":[77144,35813]},{"type":"Point","coordinates":[89213,32159]},{"type":"Point","coordinates":[77513,35729]},{"type":"Point","coordinates":[76860,35892]},{"type":"Point","coordinates":[90122,31833]},{"type":"Point","coordinates":[76915,35882]},{"type":"Point","coordinates":[89922,31911]},{"type":"Point","coordinates":[77773,35674]},{"type":"Point","coordinates":[1264,27164]},{"type":"Point","coordinates":[1300,27183]},{"type":"Point","coordinates":[77322,35789]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[1265,27167]},{"type":"Point","coordinates":[77425,35764]},{"type":"Point","coordinates":[76914,35892]},{"type":"Point","coordinates":[77337,35791]},{"type":"Point","coordinates":[1231,27155]},{"type":"Point","coordinates":[77510,35750]},{"type":"Point","coordinates":[89283,32157]},{"type":"Point","coordinates":[89280,32159]},{"type":"Point","coordinates":[70914,37177]},{"type":"Point","coordinates":[1253,27171]},{"type":"Point","coordinates":[1256,27173]},{"type":"Point","coordinates":[91423,31362]},{"type":"Point","coordinates":[76658,35963]},{"type":"Point","coordinates":[1263,27179]},{"type":"Point","coordinates":[84378,33826]},{"type":"Point","coordinates":[84378,33826]},{"type":"Point","coordinates":[1260,27179]},{"type":"Point","coordinates":[90768,31618]},{"type":"Point","coordinates":[1281,27195]},{"type":"Point","coordinates":[1281,27195]},{"type":"Point","coordinates":[1281,27195]},{"type":"Point","coordinates":[65638,38033]},{"type":"Point","coordinates":[50844,39011]},{"type":"Point","coordinates":[1285,27201]},{"type":"Point","coordinates":[77292,35821]},{"type":"Point","coordinates":[77167,35854]},{"type":"Point","coordinates":[76849,35933]},{"type":"Point","coordinates":[77373,35810]},{"type":"Point","coordinates":[1183,27163]},{"type":"Point","coordinates":[76884,35938]},{"type":"Point","coordinates":[77779,35719]},{"type":"Point","coordinates":[65655,38056]},{"type":"Point","coordinates":[65655,38056]},{"type":"Point","coordinates":[1267,27219]},{"type":"Point","coordinates":[91201,31486]},{"type":"Point","coordinates":[77001,35920]},{"type":"Point","coordinates":[77003,35920]},{"type":"Point","coordinates":[77301,35849]},{"type":"Point","coordinates":[77007,35921]},{"type":"Point","coordinates":[77005,35924]},{"type":"Point","coordinates":[77016,35922]},{"type":"Point","coordinates":[77007,35925]},{"type":"Point","coordinates":[77007,35925]},{"type":"Point","coordinates":[77011,35924]},{"type":"Point","coordinates":[77011,35924]},{"type":"Point","coordinates":[77010,35925]},{"type":"Point","coordinates":[77286,35858]},{"type":"Point","coordinates":[77286,35858]},{"type":"Point","coordinates":[77008,35926]},{"type":"Point","coordinates":[77288,35860]},{"type":"Point","coordinates":[77285,35864]},{"type":"Point","coordinates":[77287,35863]},{"type":"Point","coordinates":[1351,27282]},{"type":"Point","coordinates":[77290,35871]},{"type":"Point","coordinates":[77429,35843]},{"type":"Point","coordinates":[65869,38061]},{"type":"Point","coordinates":[87328,32924]},{"type":"Point","coordinates":[78036,35694]},{"type":"Point","coordinates":[78522,35579]},{"type":"Point","coordinates":[78522,35579]},{"type":"Point","coordinates":[91124,31559]},{"type":"Point","coordinates":[77721,35787]},{"type":"Point","coordinates":[77133,35933]},{"type":"Point","coordinates":[77130,35935]},{"type":"Point","coordinates":[77345,35887]},{"type":"Point","coordinates":[78126,35694]},{"type":"Point","coordinates":[91132,31569]},{"type":"Point","coordinates":[5078,29052]},{"type":"Point","coordinates":[51103,39099]},{"type":"Point","coordinates":[77232,35926]},{"type":"Point","coordinates":[51319,39103]},{"type":"Point","coordinates":[82308,34566]},{"type":"Point","coordinates":[77010,35989]},{"type":"Point","coordinates":[89187,32310]},{"type":"Point","coordinates":[77010,35989]},{"type":"Point","coordinates":[77009,35992]},{"type":"Point","coordinates":[51308,39118]},{"type":"Point","coordinates":[51308,39118]},{"type":"Point","coordinates":[51308,39119]},{"type":"Point","coordinates":[77380,35907]},{"type":"Point","coordinates":[91138,31593]},{"type":"Point","coordinates":[77834,35795]},{"type":"Point","coordinates":[77025,36004]},{"type":"Point","coordinates":[77027,36006]},{"type":"Point","coordinates":[89759,32129]},{"type":"Point","coordinates":[77628,35868]},{"type":"Point","coordinates":[77276,35961]},{"type":"Point","coordinates":[1233,27320]},{"type":"Point","coordinates":[77121,36002]},{"type":"Point","coordinates":[77195,35984]},{"type":"Point","coordinates":[77247,35978]},{"type":"Point","coordinates":[78607,35640]},{"type":"Point","coordinates":[76674,36122]},{"type":"Point","coordinates":[77165,36003]},{"type":"Point","coordinates":[77165,36010]},{"type":"Point","coordinates":[77206,36008]},{"type":"Point","coordinates":[87080,33125]},{"type":"Point","coordinates":[1148,27314]},{"type":"Point","coordinates":[1243,27370]},{"type":"Point","coordinates":[87329,33053]},{"type":"Point","coordinates":[87326,33056]},{"type":"Point","coordinates":[77279,36013]},{"type":"Point","coordinates":[77631,35936]},{"type":"Point","coordinates":[77631,35936]},{"type":"Point","coordinates":[77180,36059]},{"type":"Point","coordinates":[77236,36046]},{"type":"Point","coordinates":[77558,35976]},{"type":"Point","coordinates":[51304,39235]},{"type":"Point","coordinates":[77663,35958]},{"type":"Point","coordinates":[86823,33273]},{"type":"Point","coordinates":[77369,36041]},{"type":"Point","coordinates":[51367,39251]},{"type":"Point","coordinates":[76659,36226]},{"type":"Point","coordinates":[1015,27331]},{"type":"Point","coordinates":[77148,36109]},{"type":"Point","coordinates":[89896,32207]},{"type":"Point","coordinates":[89914,32201]},{"type":"Point","coordinates":[77575,36006]},{"type":"Point","coordinates":[88582,32691]},{"type":"Point","coordinates":[78603,35755]},{"type":"Point","coordinates":[1404,27531]},{"type":"Point","coordinates":[65627,38301]},{"type":"Point","coordinates":[77208,36109]},{"type":"Point","coordinates":[89921,32212]},{"type":"Point","coordinates":[936,27311]},{"type":"Point","coordinates":[65635,38306]},{"type":"Point","coordinates":[77163,36127]},{"type":"Point","coordinates":[83651,34342]},{"type":"Point","coordinates":[77548,36042]},{"type":"Point","coordinates":[77215,36126]},{"type":"Point","coordinates":[77231,36133]},{"type":"Point","coordinates":[73469,36988]},{"type":"Point","coordinates":[949,27350]},{"type":"Point","coordinates":[77205,36150]},{"type":"Point","coordinates":[1350,27553]},{"type":"Point","coordinates":[82202,34814]},{"type":"Point","coordinates":[82203,34814]},{"type":"Point","coordinates":[77332,36126]},{"type":"Point","coordinates":[77232,36153]},{"type":"Point","coordinates":[77216,36160]},{"type":"Point","coordinates":[77558,36076]},{"type":"Point","coordinates":[91302,31750]},{"type":"Point","coordinates":[2697,28209]},{"type":"Point","coordinates":[950,27378]},{"type":"Point","coordinates":[89903,32281]},{"type":"Point","coordinates":[76811,36267]},{"type":"Point","coordinates":[76308,36393]},{"type":"Point","coordinates":[77923,36004]},{"type":"Point","coordinates":[77271,36168]},{"type":"Point","coordinates":[1305,27567]},{"type":"Point","coordinates":[77434,36142]},{"type":"Point","coordinates":[88842,32695]},{"type":"Point","coordinates":[77226,36194]},{"type":"Point","coordinates":[77082,36229]},{"type":"Point","coordinates":[78003,36005]},{"type":"Point","coordinates":[87223,33268]},{"type":"Point","coordinates":[70830,37571]},{"type":"Point","coordinates":[70830,37571]},{"type":"Point","coordinates":[77130,36227]},{"type":"Point","coordinates":[93801,30814]},{"type":"Point","coordinates":[65715,38402]},{"type":"Point","coordinates":[90901,31960]},{"type":"Point","coordinates":[75642,36601]},{"type":"Point","coordinates":[90945,31952]},{"type":"Point","coordinates":[77557,36146]},{"type":"Point","coordinates":[88541,32841]},{"type":"Point","coordinates":[88396,32894]},{"type":"Point","coordinates":[77285,36227]},{"type":"Point","coordinates":[77191,36253]},{"type":"Point","coordinates":[78589,35906]},{"type":"Point","coordinates":[78589,35906]},{"type":"Point","coordinates":[77114,36280]},{"type":"Point","coordinates":[77414,36207]},{"type":"Point","coordinates":[77414,36207]},{"type":"Point","coordinates":[90902,31996]},{"type":"Point","coordinates":[87341,33288]},{"type":"Point","coordinates":[90954,31991]},{"type":"Point","coordinates":[77791,36131]},{"type":"Point","coordinates":[78198,36037]},{"type":"Point","coordinates":[86145,33712]},{"type":"Point","coordinates":[78154,36061]},{"type":"Point","coordinates":[924,27499]},{"type":"Point","coordinates":[77410,36251]},{"type":"Point","coordinates":[90888,32046]},{"type":"Point","coordinates":[77584,36218]},{"type":"Point","coordinates":[77209,36312]},{"type":"Point","coordinates":[77071,36346]},{"type":"Point","coordinates":[87316,33350]},{"type":"Point","coordinates":[87316,33350]},{"type":"Point","coordinates":[91389,31877]},{"type":"Point","coordinates":[1100,27610]},{"type":"Point","coordinates":[77425,36276]},{"type":"Point","coordinates":[957,27546]},{"type":"Point","coordinates":[4113,29031]},{"type":"Point","coordinates":[78710,35962]},{"type":"Point","coordinates":[90302,32309]},{"type":"Point","coordinates":[65679,38533]},{"type":"Point","coordinates":[70705,37738]},{"type":"Point","coordinates":[77217,36352]},{"type":"Point","coordinates":[91083,32032]},{"type":"Point","coordinates":[77615,36264]},{"type":"Point","coordinates":[88925,32837]},{"type":"Point","coordinates":[78619,36014]},{"type":"Point","coordinates":[78611,36017]},{"type":"Point","coordinates":[77368,36331]},{"type":"Point","coordinates":[77179,36388]},{"type":"Point","coordinates":[89155,32770]},{"type":"Point","coordinates":[89156,32771]},{"type":"Point","coordinates":[89156,32772]},{"type":"Point","coordinates":[76990,36448]},{"type":"Point","coordinates":[920,27596]},{"type":"Point","coordinates":[77578,36308]},{"type":"Point","coordinates":[77578,36308]},{"type":"Point","coordinates":[77279,36389]},{"type":"Point","coordinates":[923,27620]},{"type":"Point","coordinates":[77286,36403]},{"type":"Point","coordinates":[77632,36318]},{"type":"Point","coordinates":[89579,32657]},{"type":"Point","coordinates":[65971,38572]},{"type":"Point","coordinates":[917,27628]},{"type":"Point","coordinates":[944,27642]},{"type":"Point","coordinates":[925,27633]},{"type":"Point","coordinates":[899,27626]},{"type":"Point","coordinates":[77566,36351]},{"type":"Point","coordinates":[90746,32242]},{"type":"Point","coordinates":[88960,32901]},{"type":"Point","coordinates":[77223,36461]},{"type":"Point","coordinates":[4181,29210]},{"type":"Point","coordinates":[76786,36580]},{"type":"Point","coordinates":[93379,31251]},{"type":"Point","coordinates":[77674,36368]},{"type":"Point","coordinates":[73511,37329]},{"type":"Point","coordinates":[89702,32693]},{"type":"Point","coordinates":[78619,36150]},{"type":"Point","coordinates":[89702,32693]},{"type":"Point","coordinates":[2943,28673]},{"type":"Point","coordinates":[89705,32695]},{"type":"Point","coordinates":[944,27732]},{"type":"Point","coordinates":[89705,32704]},{"type":"Point","coordinates":[961,27742]},{"type":"Point","coordinates":[88090,33285]},{"type":"Point","coordinates":[69165,38178]},{"type":"Point","coordinates":[88089,33292]},{"type":"Point","coordinates":[88068,33300]},{"type":"Point","coordinates":[4183,29275]},{"type":"Point","coordinates":[77609,36452]},{"type":"Point","coordinates":[77387,36514]},{"type":"Point","coordinates":[90837,32328]},{"type":"Point","coordinates":[84595,34503]},{"type":"Point","coordinates":[78099,36370]},{"type":"Point","coordinates":[77484,36532]},{"type":"Point","coordinates":[78825,36193]},{"type":"Point","coordinates":[78826,36195]},{"type":"Point","coordinates":[78826,36195]},{"type":"Point","coordinates":[78914,36175]},{"type":"Point","coordinates":[78914,36175]},{"type":"Point","coordinates":[77302,36583]},{"type":"Point","coordinates":[80019,35883]},{"type":"Point","coordinates":[80019,35883]},{"type":"Point","coordinates":[77521,36534]},{"type":"Point","coordinates":[77521,36534]},{"type":"Point","coordinates":[79043,36147]},{"type":"Point","coordinates":[78647,36256]},{"type":"Point","coordinates":[2796,28738]},{"type":"Point","coordinates":[91440,32180]},{"type":"Point","coordinates":[78821,36241]},{"type":"Point","coordinates":[90044,32717]},{"type":"Point","coordinates":[85146,34410]},{"type":"Point","coordinates":[88785,33176]},{"type":"Point","coordinates":[77201,36659]},{"type":"Point","coordinates":[90919,32408]},{"type":"Point","coordinates":[935,27888]},{"type":"Point","coordinates":[77027,36734]},{"type":"Point","coordinates":[1033,27958]},{"type":"Point","coordinates":[92419,31852]},{"type":"Point","coordinates":[90864,32457]},{"type":"Point","coordinates":[91041,32392]},{"type":"Point","coordinates":[90575,32569]},{"type":"Point","coordinates":[1426,28158]},{"type":"Point","coordinates":[90682,32531]},{"type":"Point","coordinates":[92346,31893]},{"type":"Point","coordinates":[77230,36711]},{"type":"Point","coordinates":[1516,28216]},{"type":"Point","coordinates":[91139,32380]},{"type":"Point","coordinates":[88605,33335]},{"type":"Point","coordinates":[88607,33337]},{"type":"Point","coordinates":[90823,32538]},{"type":"Point","coordinates":[88634,33363]},{"type":"Point","coordinates":[88634,33363]},{"type":"Point","coordinates":[88634,33363]},{"type":"Point","coordinates":[1096,28084]},{"type":"Point","coordinates":[88634,33363]},{"type":"Point","coordinates":[88634,33363]},{"type":"Point","coordinates":[77101,36811]},{"type":"Point","coordinates":[86097,34241]},{"type":"Point","coordinates":[88580,33392]},{"type":"Point","coordinates":[88063,33575]},{"type":"Point","coordinates":[89250,33156]},{"type":"Point","coordinates":[874,27992]},{"type":"Point","coordinates":[89907,32922]},{"type":"Point","coordinates":[91491,32337]},{"type":"Point","coordinates":[85573,34440]},{"type":"Point","coordinates":[88506,33451]},{"type":"Point","coordinates":[88066,33606]},{"type":"Point","coordinates":[2959,29014]},{"type":"Point","coordinates":[89414,33130]},{"type":"Point","coordinates":[762,27977]},{"type":"Point","coordinates":[79748,36196]},{"type":"Point","coordinates":[90616,32703]},{"type":"Point","coordinates":[78137,36622]},{"type":"Point","coordinates":[90037,32940]},{"type":"Point","coordinates":[89417,33180]},{"type":"Point","coordinates":[77319,36856]},{"type":"Point","coordinates":[861,28081]},{"type":"Point","coordinates":[89420,33190]},{"type":"Point","coordinates":[886,28104]},{"type":"Point","coordinates":[78940,36495]},{"type":"Point","coordinates":[78938,36496]},{"type":"Point","coordinates":[79648,36309]},{"type":"Point","coordinates":[79650,36311]},{"type":"Point","coordinates":[92197,32192]},{"type":"Point","coordinates":[88614,33532]},{"type":"Point","coordinates":[2854,29086]},{"type":"Point","coordinates":[1969,28671]},{"type":"Point","coordinates":[91667,32409]},{"type":"Point","coordinates":[3112,29214]},{"type":"Point","coordinates":[89433,33249]},{"type":"Point","coordinates":[89422,33257]},{"type":"Point","coordinates":[89408,33264]},{"type":"Point","coordinates":[79710,36321]},{"type":"Point","coordinates":[89391,33271]},{"type":"Point","coordinates":[990,28217]},{"type":"Point","coordinates":[89367,33282]},{"type":"Point","coordinates":[89399,33270]},{"type":"Point","coordinates":[92302,32174]},{"type":"Point","coordinates":[89756,33140]},{"type":"Point","coordinates":[87771,33852]},{"type":"Point","coordinates":[89384,33283]},{"type":"Point","coordinates":[89384,33283]},{"type":"Point","coordinates":[89384,33284]},{"type":"Point","coordinates":[92357,32162]},{"type":"Point","coordinates":[89900,33096]},{"type":"Point","coordinates":[91130,32638]},{"type":"Point","coordinates":[3109,29238]},{"type":"Point","coordinates":[91191,32620]},{"type":"Point","coordinates":[925,28207]},{"type":"Point","coordinates":[77316,36960]},{"type":"Point","coordinates":[92297,32202]},{"type":"Point","coordinates":[77406,36941]},{"type":"Point","coordinates":[3089,29240]},{"type":"Point","coordinates":[77406,36943]},{"type":"Point","coordinates":[91953,32338]},{"type":"Point","coordinates":[87645,33921]},{"type":"Point","coordinates":[77253,36983]},{"type":"Point","coordinates":[89121,33402]},{"type":"Point","coordinates":[76293,37221]},{"type":"Point","coordinates":[90920,32751]},{"type":"Point","coordinates":[92360,32200]},{"type":"Point","coordinates":[91958,32360]},{"type":"Point","coordinates":[92298,32229]},{"type":"Point","coordinates":[92299,32229]},{"type":"Point","coordinates":[1126,28338]},{"type":"Point","coordinates":[92354,32208]},{"type":"Point","coordinates":[92490,32157]},{"type":"Point","coordinates":[92351,32213]},{"type":"Point","coordinates":[92300,32234]},{"type":"Point","coordinates":[90910,32770]},{"type":"Point","coordinates":[90925,32771]},{"type":"Point","coordinates":[90926,32772]},{"type":"Point","coordinates":[90923,32777]},{"type":"Point","coordinates":[87570,33992]},{"type":"Point","coordinates":[90922,32782]},{"type":"Point","coordinates":[83673,35263]},{"type":"Point","coordinates":[90941,32777]},{"type":"Point","coordinates":[90960,32772]},{"type":"Point","coordinates":[90960,32773]},{"type":"Point","coordinates":[90934,32784]},{"type":"Point","coordinates":[92292,32261]},{"type":"Point","coordinates":[92293,32261]},{"type":"Point","coordinates":[92193,32305]},{"type":"Point","coordinates":[90900,32809]},{"type":"Point","coordinates":[986,28315]},{"type":"Point","coordinates":[90900,32813]},{"type":"Point","coordinates":[3006,29276]},{"type":"Point","coordinates":[970,28310]},{"type":"Point","coordinates":[90902,32814]},{"type":"Point","coordinates":[90942,32803]},{"type":"Point","coordinates":[90944,32803]},{"type":"Point","coordinates":[83257,35421]},{"type":"Point","coordinates":[91005,32785]},{"type":"Point","coordinates":[92863,32064]},{"type":"Point","coordinates":[92863,32065]},{"type":"Point","coordinates":[2936,29257]},{"type":"Point","coordinates":[90949,32810]},{"type":"Point","coordinates":[90944,32812]},{"type":"Point","coordinates":[914,28305]},{"type":"Point","coordinates":[90948,32820]},{"type":"Point","coordinates":[90946,32821]},{"type":"Point","coordinates":[90948,32821]},{"type":"Point","coordinates":[92702,32143]},{"type":"Point","coordinates":[90948,32823]},{"type":"Point","coordinates":[91989,32427]},{"type":"Point","coordinates":[907,28312]},{"type":"Point","coordinates":[76950,37158]},{"type":"Point","coordinates":[901,28315]},{"type":"Point","coordinates":[90970,32826]},{"type":"Point","coordinates":[77748,36967]},{"type":"Point","coordinates":[90923,32844]},{"type":"Point","coordinates":[87632,34037]},{"type":"Point","coordinates":[90908,32853]},{"type":"Point","coordinates":[87692,34020]},{"type":"Point","coordinates":[878,28312]},{"type":"Point","coordinates":[877,28311]},{"type":"Point","coordinates":[91655,32574]},{"type":"Point","coordinates":[90920,32855]},{"type":"Point","coordinates":[891,28329]},{"type":"Point","coordinates":[892,28330]},{"type":"Point","coordinates":[77360,37083]},{"type":"Point","coordinates":[883,28329]},{"type":"Point","coordinates":[905,28339]},{"type":"Point","coordinates":[883,28329]},{"type":"Point","coordinates":[75886,37436]},{"type":"Point","coordinates":[902,28340]},{"type":"Point","coordinates":[892,28336]},{"type":"Point","coordinates":[911,28347]},{"type":"Point","coordinates":[911,28347]},{"type":"Point","coordinates":[92508,32259]},{"type":"Point","coordinates":[936,28360]},{"type":"Point","coordinates":[91529,32641]},{"type":"Point","coordinates":[1038,28412]},{"type":"Point","coordinates":[91531,32642]},{"type":"Point","coordinates":[914,28352]},{"type":"Point","coordinates":[75894,37443]},{"type":"Point","coordinates":[898,28346]},{"type":"Point","coordinates":[921,28359]},{"type":"Point","coordinates":[912,28355]},{"type":"Point","coordinates":[880,28340]},{"type":"Point","coordinates":[900,28350]},{"type":"Point","coordinates":[91088,32816]},{"type":"Point","coordinates":[901,28351]},{"type":"Point","coordinates":[908,28356]},{"type":"Point","coordinates":[897,28350]},{"type":"Point","coordinates":[879,28341]},{"type":"Point","coordinates":[899,28351]},{"type":"Point","coordinates":[941,28372]},{"type":"Point","coordinates":[902,28353]},{"type":"Point","coordinates":[880,28343]},{"type":"Point","coordinates":[899,28352]},{"type":"Point","coordinates":[909,28357]},{"type":"Point","coordinates":[896,28351]},{"type":"Point","coordinates":[901,28354]},{"type":"Point","coordinates":[897,28352]},{"type":"Point","coordinates":[896,28352]},{"type":"Point","coordinates":[923,28365]},{"type":"Point","coordinates":[899,28353]},{"type":"Point","coordinates":[899,28354]},{"type":"Point","coordinates":[897,28353]},{"type":"Point","coordinates":[896,28353]},{"type":"Point","coordinates":[903,28356]},{"type":"Point","coordinates":[897,28354]},{"type":"Point","coordinates":[896,28353]},{"type":"Point","coordinates":[901,28356]},{"type":"Point","coordinates":[904,28357]},{"type":"Point","coordinates":[897,28354]},{"type":"Point","coordinates":[945,28377]},{"type":"Point","coordinates":[904,28357]},{"type":"Point","coordinates":[897,28354]},{"type":"Point","coordinates":[900,28355]},{"type":"Point","coordinates":[902,28357]},{"type":"Point","coordinates":[958,28384]},{"type":"Point","coordinates":[896,28354]},{"type":"Point","coordinates":[914,28363]},{"type":"Point","coordinates":[902,28357]},{"type":"Point","coordinates":[906,28359]},{"type":"Point","coordinates":[900,28356]},{"type":"Point","coordinates":[916,28364]},{"type":"Point","coordinates":[908,28360]},{"type":"Point","coordinates":[906,28359]},{"type":"Point","coordinates":[903,28358]},{"type":"Point","coordinates":[903,28358]},{"type":"Point","coordinates":[898,28356]},{"type":"Point","coordinates":[902,28358]},{"type":"Point","coordinates":[898,28356]},{"type":"Point","coordinates":[897,28356]},{"type":"Point","coordinates":[898,28356]},{"type":"Point","coordinates":[896,28356]},{"type":"Point","coordinates":[907,28362]},{"type":"Point","coordinates":[904,28361]},{"type":"Point","coordinates":[907,28362]},{"type":"Point","coordinates":[897,28357]},{"type":"Point","coordinates":[915,28366]},{"type":"Point","coordinates":[911,28364]},{"type":"Point","coordinates":[911,28365]},{"type":"Point","coordinates":[899,28359]},{"type":"Point","coordinates":[898,28359]},{"type":"Point","coordinates":[910,28365]},{"type":"Point","coordinates":[898,28359]},{"type":"Point","coordinates":[898,28359]},{"type":"Point","coordinates":[914,28367]},{"type":"Point","coordinates":[918,28369]},{"type":"Point","coordinates":[898,28359]},{"type":"Point","coordinates":[897,28360]},{"type":"Point","coordinates":[895,28359]},{"type":"Point","coordinates":[923,28373]},{"type":"Point","coordinates":[902,28363]},{"type":"Point","coordinates":[917,28371]},{"type":"Point","coordinates":[909,28367]},{"type":"Point","coordinates":[906,28366]},{"type":"Point","coordinates":[63066,39647]},{"type":"Point","coordinates":[914,28371]},{"type":"Point","coordinates":[900,28364]},{"type":"Point","coordinates":[944,28385]},{"type":"Point","coordinates":[899,28364]},{"type":"Point","coordinates":[1009,28417]},{"type":"Point","coordinates":[904,28366]},{"type":"Point","coordinates":[937,28382]},{"type":"Point","coordinates":[898,28364]},{"type":"Point","coordinates":[906,28368]},{"type":"Point","coordinates":[906,28368]},{"type":"Point","coordinates":[910,28370]},{"type":"Point","coordinates":[893,28362]},{"type":"Point","coordinates":[903,28367]},{"type":"Point","coordinates":[894,28363]},{"type":"Point","coordinates":[895,28364]},{"type":"Point","coordinates":[894,28363]},{"type":"Point","coordinates":[898,28365]},{"type":"Point","coordinates":[898,28365]},{"type":"Point","coordinates":[898,28365]},{"type":"Point","coordinates":[898,28366]},{"type":"Point","coordinates":[905,28369]},{"type":"Point","coordinates":[898,28366]},{"type":"Point","coordinates":[894,28364]},{"type":"Point","coordinates":[898,28365]},{"type":"Point","coordinates":[899,28366]},{"type":"Point","coordinates":[905,28369]},{"type":"Point","coordinates":[900,28367]},{"type":"Point","coordinates":[894,28364]},{"type":"Point","coordinates":[898,28366]},{"type":"Point","coordinates":[905,28370]},{"type":"Point","coordinates":[894,28364]},{"type":"Point","coordinates":[900,28368]},{"type":"Point","coordinates":[898,28367]},{"type":"Point","coordinates":[898,28367]},{"type":"Point","coordinates":[946,28390]},{"type":"Point","coordinates":[946,28390]},{"type":"Point","coordinates":[946,28390]},{"type":"Point","coordinates":[946,28390]},{"type":"Point","coordinates":[905,28371]},{"type":"Point","coordinates":[905,28371]},{"type":"Point","coordinates":[905,28371]},{"type":"Point","coordinates":[908,28373]},{"type":"Point","coordinates":[909,28374]},{"type":"Point","coordinates":[1040,28438]},{"type":"Point","coordinates":[899,28370]},{"type":"Point","coordinates":[881,28362]},{"type":"Point","coordinates":[899,28370]},{"type":"Point","coordinates":[904,28373]},{"type":"Point","coordinates":[899,28371]},{"type":"Point","coordinates":[83724,35362]},{"type":"Point","coordinates":[899,28371]},{"type":"Point","coordinates":[90894,32911]},{"type":"Point","coordinates":[898,28371]},{"type":"Point","coordinates":[898,28371]},{"type":"Point","coordinates":[898,28371]},{"type":"Point","coordinates":[898,28371]},{"type":"Point","coordinates":[905,28377]},{"type":"Point","coordinates":[90898,32912]},{"type":"Point","coordinates":[904,28378]},{"type":"Point","coordinates":[90898,32913]},{"type":"Point","coordinates":[933,28393]},{"type":"Point","coordinates":[896,28376]},{"type":"Point","coordinates":[906,28382]},{"type":"Point","coordinates":[90974,32887]},{"type":"Point","coordinates":[90896,32917]},{"type":"Point","coordinates":[2875,29321]},{"type":"Point","coordinates":[894,28379]},{"type":"Point","coordinates":[90974,32891]},{"type":"Point","coordinates":[900,28384]},{"type":"Point","coordinates":[902,28385]},{"type":"Point","coordinates":[902,28385]},{"type":"Point","coordinates":[914,28390]},{"type":"Point","coordinates":[898,28383]},{"type":"Point","coordinates":[901,28385]},{"type":"Point","coordinates":[901,28384]},{"type":"Point","coordinates":[899,28383]},{"type":"Point","coordinates":[901,28385]},{"type":"Point","coordinates":[906,28387]},{"type":"Point","coordinates":[907,28388]},{"type":"Point","coordinates":[90987,32888]},{"type":"Point","coordinates":[900,28385]},{"type":"Point","coordinates":[906,28389]},{"type":"Point","coordinates":[906,28389]},{"type":"Point","coordinates":[904,28388]},{"type":"Point","coordinates":[902,28388]},{"type":"Point","coordinates":[904,28389]},{"type":"Point","coordinates":[905,28390]},{"type":"Point","coordinates":[911,28393]},{"type":"Point","coordinates":[916,28396]},{"type":"Point","coordinates":[907,28392]},{"type":"Point","coordinates":[2808,29298]},{"type":"Point","coordinates":[902,28393]},{"type":"Point","coordinates":[903,28394]},{"type":"Point","coordinates":[903,28395]},{"type":"Point","coordinates":[902,28395]},{"type":"Point","coordinates":[894,28391]},{"type":"Point","coordinates":[903,28395]},{"type":"Point","coordinates":[903,28396]},{"type":"Point","coordinates":[906,28398]},{"type":"Point","coordinates":[91103,32855]},{"type":"Point","coordinates":[903,28397]},{"type":"Point","coordinates":[902,28397]},{"type":"Point","coordinates":[90849,32952]},{"type":"Point","coordinates":[91104,32857]},{"type":"Point","coordinates":[90989,32904]},{"type":"Point","coordinates":[90989,32905]},{"type":"Point","coordinates":[90990,32906]},{"type":"Point","coordinates":[90988,32908]},{"type":"Point","coordinates":[89347,33517]},{"type":"Point","coordinates":[88755,33730]},{"type":"Point","coordinates":[90989,32912]},{"type":"Point","coordinates":[90989,32912]},{"type":"Point","coordinates":[90990,32913]},{"type":"Point","coordinates":[90987,32914]},{"type":"Point","coordinates":[90989,32913]},{"type":"Point","coordinates":[90990,32913]},{"type":"Point","coordinates":[90987,32921]},{"type":"Point","coordinates":[90987,32921]},{"type":"Point","coordinates":[90984,32922]},{"type":"Point","coordinates":[90987,32921]},{"type":"Point","coordinates":[90987,32921]},{"type":"Point","coordinates":[90988,32921]},{"type":"Point","coordinates":[90988,32921]},{"type":"Point","coordinates":[91119,32873]},{"type":"Point","coordinates":[926,28433]},{"type":"Point","coordinates":[90990,32923]},{"type":"Point","coordinates":[90990,32923]},{"type":"Point","coordinates":[90996,32921]},{"type":"Point","coordinates":[90985,32926]},{"type":"Point","coordinates":[90990,32924]},{"type":"Point","coordinates":[90991,32924]},{"type":"Point","coordinates":[90991,32924]},{"type":"Point","coordinates":[90985,32926]},{"type":"Point","coordinates":[90990,32924]},{"type":"Point","coordinates":[90991,32924]},{"type":"Point","coordinates":[90990,32924]},{"type":"Point","coordinates":[90991,32924]},{"type":"Point","coordinates":[90985,32927]},{"type":"Point","coordinates":[918,28432]},{"type":"Point","coordinates":[920,28434]},{"type":"Point","coordinates":[861,28405]},{"type":"Point","coordinates":[861,28406]},{"type":"Point","coordinates":[861,28406]},{"type":"Point","coordinates":[861,28406]},{"type":"Point","coordinates":[90997,32924]},{"type":"Point","coordinates":[90997,32924]},{"type":"Point","coordinates":[91309,32806]},{"type":"Point","coordinates":[62781,39739]},{"type":"Point","coordinates":[91308,32808]},{"type":"Point","coordinates":[91308,32809]},{"type":"Point","coordinates":[91300,32812]},{"type":"Point","coordinates":[91309,32809]},{"type":"Point","coordinates":[91300,32813]},{"type":"Point","coordinates":[90982,32934]},{"type":"Point","coordinates":[858,28409]},{"type":"Point","coordinates":[79442,36643]},{"type":"Point","coordinates":[91546,32720]},{"type":"Point","coordinates":[91546,32720]},{"type":"Point","coordinates":[91546,32720]},{"type":"Point","coordinates":[91306,32812]},{"type":"Point","coordinates":[91546,32721]},{"type":"Point","coordinates":[912,28437]},{"type":"Point","coordinates":[922,28444]},{"type":"Point","coordinates":[857,28412]},{"type":"Point","coordinates":[857,28412]},{"type":"Point","coordinates":[857,28412]},{"type":"Point","coordinates":[857,28413]},{"type":"Point","coordinates":[857,28413]},{"type":"Point","coordinates":[857,28413]},{"type":"Point","coordinates":[91631,32691]},{"type":"Point","coordinates":[91545,32724]},{"type":"Point","coordinates":[858,28414]},{"type":"Point","coordinates":[922,28445]},{"type":"Point","coordinates":[921,28446]},{"type":"Point","coordinates":[90990,32940]},{"type":"Point","coordinates":[857,28418]},{"type":"Point","coordinates":[863,28422]},{"type":"Point","coordinates":[932,28457]},{"type":"Point","coordinates":[930,28456]},{"type":"Point","coordinates":[90989,32944]},{"type":"Point","coordinates":[834,28410]},{"type":"Point","coordinates":[860,28424]},{"type":"Point","coordinates":[91308,32824]},{"type":"Point","coordinates":[91467,32763]},{"type":"Point","coordinates":[860,28424]},{"type":"Point","coordinates":[860,28425]},{"type":"Point","coordinates":[859,28426]},{"type":"Point","coordinates":[90995,32945]},{"type":"Point","coordinates":[850,28422]},{"type":"Point","coordinates":[849,28423]},{"type":"Point","coordinates":[859,28429]},{"type":"Point","coordinates":[859,28429]},{"type":"Point","coordinates":[859,28429]},{"type":"Point","coordinates":[91730,32669]},{"type":"Point","coordinates":[83598,35482]},{"type":"Point","coordinates":[90798,33030]},{"type":"Point","coordinates":[91086,32922]},{"type":"Point","coordinates":[90795,33033]},{"type":"Point","coordinates":[91086,32924]},{"type":"Point","coordinates":[3058,29484]},{"type":"Point","coordinates":[91086,32925]},{"type":"Point","coordinates":[91088,32925]},{"type":"Point","coordinates":[91087,32926]},{"type":"Point","coordinates":[87666,34168]},{"type":"Point","coordinates":[76889,37323]},{"type":"Point","coordinates":[70187,38724]},{"type":"Point","coordinates":[91687,32703]},{"type":"Point","coordinates":[91686,32711]},{"type":"Point","coordinates":[73704,38057]},{"type":"Point","coordinates":[73702,38058]},{"type":"Point","coordinates":[865,28476]},{"type":"Point","coordinates":[77674,37160]},{"type":"Point","coordinates":[1386,28731]},{"type":"Point","coordinates":[73704,38071]},{"type":"Point","coordinates":[852,28483]},{"type":"Point","coordinates":[869,28492]},{"type":"Point","coordinates":[73706,38082]},{"type":"Point","coordinates":[64897,39568]},{"type":"Point","coordinates":[87591,34239]},{"type":"Point","coordinates":[92156,32564]},{"type":"Point","coordinates":[87569,34253]},{"type":"Point","coordinates":[91917,32663]},{"type":"Point","coordinates":[83947,35448]},{"type":"Point","coordinates":[92158,32584]},{"type":"Point","coordinates":[77392,37267]},{"type":"Point","coordinates":[923,28549]},{"type":"Point","coordinates":[90019,33401]},{"type":"Point","coordinates":[91602,32808]},{"type":"Point","coordinates":[92162,32594]},{"type":"Point","coordinates":[91603,32819]},{"type":"Point","coordinates":[64900,39614]},{"type":"Point","coordinates":[91619,32818]},{"type":"Point","coordinates":[1500,28849]},{"type":"Point","coordinates":[91606,32825]},{"type":"Point","coordinates":[91606,32825]},{"type":"Point","coordinates":[92167,32615]},{"type":"Point","coordinates":[89763,33536]},{"type":"Point","coordinates":[90883,33127]},{"type":"Point","coordinates":[67448,39292]},{"type":"Point","coordinates":[90887,33134]},{"type":"Point","coordinates":[90886,33134]},{"type":"Point","coordinates":[911,28604]},{"type":"Point","coordinates":[90886,33138]},{"type":"Point","coordinates":[90885,33138]},{"type":"Point","coordinates":[90887,33138]},{"type":"Point","coordinates":[90885,33141]},{"type":"Point","coordinates":[655,28483]},{"type":"Point","coordinates":[90888,33140]},{"type":"Point","coordinates":[839,28573]},{"type":"Point","coordinates":[90886,33142]},{"type":"Point","coordinates":[91323,32977]},{"type":"Point","coordinates":[91329,32976]},{"type":"Point","coordinates":[89756,33567]},{"type":"Point","coordinates":[89756,33567]},{"type":"Point","coordinates":[89747,33574]},{"type":"Point","coordinates":[91325,32984]},{"type":"Point","coordinates":[84064,35496]},{"type":"Point","coordinates":[90886,33154]},{"type":"Point","coordinates":[945,28640]},{"type":"Point","coordinates":[84069,35502]},{"type":"Point","coordinates":[91824,32804]},{"type":"Point","coordinates":[84042,35513]},{"type":"Point","coordinates":[76481,37577]},{"type":"Point","coordinates":[76612,37549]},{"type":"Point","coordinates":[76611,37550]},{"type":"Point","coordinates":[84059,35513]},{"type":"Point","coordinates":[90861,33179]},{"type":"Point","coordinates":[3015,29644]},{"type":"Point","coordinates":[2850,29570]},{"type":"Point","coordinates":[84045,35529]},{"type":"Point","coordinates":[76440,37605]},{"type":"Point","coordinates":[91798,32836]},{"type":"Point","coordinates":[69626,38995]},{"type":"Point","coordinates":[91799,32837]},{"type":"Point","coordinates":[2972,29633]},{"type":"Point","coordinates":[91798,32838]},{"type":"Point","coordinates":[92465,32580]},{"type":"Point","coordinates":[91798,32840]},{"type":"Point","coordinates":[91833,32828]},{"type":"Point","coordinates":[91797,32842]},{"type":"Point","coordinates":[91797,32844]},{"type":"Point","coordinates":[91803,32843]},{"type":"Point","coordinates":[91799,32844]},{"type":"Point","coordinates":[91801,32844]},{"type":"Point","coordinates":[80081,36691]},{"type":"Point","coordinates":[91803,32843]},{"type":"Point","coordinates":[91803,32843]},{"type":"Point","coordinates":[91803,32843]},{"type":"Point","coordinates":[831,28624]},{"type":"Point","coordinates":[90285,33421]},{"type":"Point","coordinates":[90287,33421]},{"type":"Point","coordinates":[697,28566]},{"type":"Point","coordinates":[721,28579]},{"type":"Point","coordinates":[87852,34301]},{"type":"Point","coordinates":[90285,33429]},{"type":"Point","coordinates":[76070,37717]},{"type":"Point","coordinates":[90001,33539]},{"type":"Point","coordinates":[90881,33217]},{"type":"Point","coordinates":[76048,37729]},{"type":"Point","coordinates":[90883,33218]},{"type":"Point","coordinates":[714,28592]},{"type":"Point","coordinates":[715,28593]},{"type":"Point","coordinates":[90887,33220]},{"type":"Point","coordinates":[90876,33225]},{"type":"Point","coordinates":[713,28594]},{"type":"Point","coordinates":[90876,33225]},{"type":"Point","coordinates":[700,28590]},{"type":"Point","coordinates":[83940,35606]},{"type":"Point","coordinates":[90882,33228]},{"type":"Point","coordinates":[91827,32868]},{"type":"Point","coordinates":[86608,34750]},{"type":"Point","coordinates":[91827,32869]},{"type":"Point","coordinates":[91824,32871]},{"type":"Point","coordinates":[90902,33223]},{"type":"Point","coordinates":[83939,35611]},{"type":"Point","coordinates":[91821,32875]},{"type":"Point","coordinates":[90892,33231]},{"type":"Point","coordinates":[87300,34528]},{"type":"Point","coordinates":[87306,34530]},{"type":"Point","coordinates":[87306,34530]},{"type":"Point","coordinates":[873,28696]},{"type":"Point","coordinates":[90939,33227]},{"type":"Point","coordinates":[90938,33228]},{"type":"Point","coordinates":[90938,33228]},{"type":"Point","coordinates":[90943,33227]},{"type":"Point","coordinates":[78745,37100]},{"type":"Point","coordinates":[62806,40011]},{"type":"Point","coordinates":[90879,33256]},{"type":"Point","coordinates":[90879,33256]},{"type":"Point","coordinates":[91177,33144]},{"type":"Point","coordinates":[90944,33239]},{"type":"Point","coordinates":[90519,33398]},{"type":"Point","coordinates":[828,28690]},{"type":"Point","coordinates":[828,28691]},{"type":"Point","coordinates":[828,28694]},{"type":"Point","coordinates":[90929,33250]},{"type":"Point","coordinates":[84501,35472]},{"type":"Point","coordinates":[83756,35703]},{"type":"Point","coordinates":[83956,35642]},{"type":"Point","coordinates":[90868,33290]},{"type":"Point","coordinates":[90869,33291]},{"type":"Point","coordinates":[90869,33291]},{"type":"Point","coordinates":[90870,33292]},{"type":"Point","coordinates":[90870,33293]},{"type":"Point","coordinates":[739,28674]},{"type":"Point","coordinates":[91809,32938]},{"type":"Point","coordinates":[91809,32938]},{"type":"Point","coordinates":[90864,33300]},{"type":"Point","coordinates":[89538,33791]},{"type":"Point","coordinates":[90863,33301]},{"type":"Point","coordinates":[90864,33301]},{"type":"Point","coordinates":[90869,33300]},{"type":"Point","coordinates":[91816,32939]},{"type":"Point","coordinates":[91815,32940]},{"type":"Point","coordinates":[91817,32939]},{"type":"Point","coordinates":[91817,32939]},{"type":"Point","coordinates":[91817,32939]},{"type":"Point","coordinates":[91815,32940]},{"type":"Point","coordinates":[738,28681]},{"type":"Point","coordinates":[91814,32941]},{"type":"Point","coordinates":[698,28663]},{"type":"Point","coordinates":[84451,35517]},{"type":"Point","coordinates":[693,28661]},{"type":"Point","coordinates":[90887,33297]},{"type":"Point","coordinates":[629,28631]},{"type":"Point","coordinates":[62729,40067]},{"type":"Point","coordinates":[707,28670]},{"type":"Point","coordinates":[79944,36834]},{"type":"Point","coordinates":[62726,40070]},{"type":"Point","coordinates":[712,28675]},{"type":"Point","coordinates":[712,28675]},{"type":"Point","coordinates":[712,28675]},{"type":"Point","coordinates":[700,28669]},{"type":"Point","coordinates":[704,28671]},{"type":"Point","coordinates":[710,28674]},{"type":"Point","coordinates":[706,28672]},{"type":"Point","coordinates":[711,28675]},{"type":"Point","coordinates":[711,28675]},{"type":"Point","coordinates":[711,28675]},{"type":"Point","coordinates":[711,28675]},{"type":"Point","coordinates":[712,28676]},{"type":"Point","coordinates":[699,28670]},{"type":"Point","coordinates":[706,28673]},{"type":"Point","coordinates":[709,28675]},{"type":"Point","coordinates":[712,28676]},{"type":"Point","coordinates":[90862,33312]},{"type":"Point","coordinates":[709,28675]},{"type":"Point","coordinates":[711,28676]},{"type":"Point","coordinates":[710,28676]},{"type":"Point","coordinates":[710,28676]},{"type":"Point","coordinates":[708,28675]},{"type":"Point","coordinates":[709,28676]},{"type":"Point","coordinates":[709,28676]},{"type":"Point","coordinates":[708,28676]},{"type":"Point","coordinates":[685,28664]},{"type":"Point","coordinates":[699,28672]},{"type":"Point","coordinates":[709,28678]},{"type":"Point","coordinates":[707,28677]},{"type":"Point","coordinates":[707,28677]},{"type":"Point","coordinates":[700,28674]},{"type":"Point","coordinates":[90863,33315]},{"type":"Point","coordinates":[707,28678]},{"type":"Point","coordinates":[707,28678]},{"type":"Point","coordinates":[708,28678]},{"type":"Point","coordinates":[708,28678]},{"type":"Point","coordinates":[708,28679]},{"type":"Point","coordinates":[708,28679]},{"type":"Point","coordinates":[709,28680]},{"type":"Point","coordinates":[709,28680]},{"type":"Point","coordinates":[709,28680]},{"type":"Point","coordinates":[707,28679]},{"type":"Point","coordinates":[709,28680]},{"type":"Point","coordinates":[704,28678]},{"type":"Point","coordinates":[709,28681]},{"type":"Point","coordinates":[709,28680]},{"type":"Point","coordinates":[709,28681]},{"type":"Point","coordinates":[709,28680]},{"type":"Point","coordinates":[707,28680]},{"type":"Point","coordinates":[708,28681]},{"type":"Point","coordinates":[709,28681]},{"type":"Point","coordinates":[704,28679]},{"type":"Point","coordinates":[708,28681]},{"type":"Point","coordinates":[710,28682]},{"type":"Point","coordinates":[709,28682]},{"type":"Point","coordinates":[710,28683]},{"type":"Point","coordinates":[709,28683]},{"type":"Point","coordinates":[709,28683]},{"type":"Point","coordinates":[708,28683]},{"type":"Point","coordinates":[707,28683]},{"type":"Point","coordinates":[710,28684]},{"type":"Point","coordinates":[707,28683]},{"type":"Point","coordinates":[90872,33318]},{"type":"Point","coordinates":[707,28684]},{"type":"Point","coordinates":[90311,33529]},{"type":"Point","coordinates":[90862,33324]},{"type":"Point","coordinates":[90908,33307]},{"type":"Point","coordinates":[87654,34483]},{"type":"Point","coordinates":[683,28677]},{"type":"Point","coordinates":[90886,33318]},{"type":"Point","coordinates":[90891,33320]},{"type":"Point","coordinates":[90906,33318]},{"type":"Point","coordinates":[90914,33316]},{"type":"Point","coordinates":[90906,33320]},{"type":"Point","coordinates":[90906,33320]},{"type":"Point","coordinates":[90905,33321]},{"type":"Point","coordinates":[90905,33321]},{"type":"Point","coordinates":[90906,33321]},{"type":"Point","coordinates":[91108,33250]},{"type":"Point","coordinates":[90876,33339]},{"type":"Point","coordinates":[90901,33331]},{"type":"Point","coordinates":[90869,33347]},{"type":"Point","coordinates":[90860,33351]},{"type":"Point","coordinates":[90868,33351]},{"type":"Point","coordinates":[658,28696]},{"type":"Point","coordinates":[90868,33355]},{"type":"Point","coordinates":[90891,33347]},{"type":"Point","coordinates":[90870,33356]},{"type":"Point","coordinates":[89956,33698]},{"type":"Point","coordinates":[959,28846]},{"type":"Point","coordinates":[80987,36602]},{"type":"Point","coordinates":[702,28728]},{"type":"Point","coordinates":[89946,33711]},{"type":"Point","coordinates":[89946,33711]},{"type":"Point","coordinates":[91264,33218]},{"type":"Point","coordinates":[91264,33218]},{"type":"Point","coordinates":[857,28814]},{"type":"Point","coordinates":[698,28737]},{"type":"Point","coordinates":[90899,33365]},{"type":"Point","coordinates":[613,28700]},{"type":"Point","coordinates":[682,28733]},{"type":"Point","coordinates":[91254,33238]},{"type":"Point","coordinates":[90313,33595]},{"type":"Point","coordinates":[36700,39805]},{"type":"Point","coordinates":[84040,35745]},{"type":"Point","coordinates":[90130,33680]},{"type":"Point","coordinates":[68226,39443]},{"type":"Point","coordinates":[91771,33075]},{"type":"Point","coordinates":[72353,38718]},{"type":"Point","coordinates":[90261,33651]},{"type":"Point","coordinates":[89548,33914]},{"type":"Point","coordinates":[91291,33266]},{"type":"Point","coordinates":[87158,34759]},{"type":"Point","coordinates":[89545,33926]},{"type":"Point","coordinates":[1168,29027]},{"type":"Point","coordinates":[681,28804]},{"type":"Point","coordinates":[90943,33422]},{"type":"Point","coordinates":[22460,37008]},{"type":"Point","coordinates":[90940,33437]},{"type":"Point","coordinates":[90940,33440]},{"type":"Point","coordinates":[63019,40194]},{"type":"Point","coordinates":[91350,33285]},{"type":"Point","coordinates":[90830,33485]},{"type":"Point","coordinates":[90838,33482]},{"type":"Point","coordinates":[90944,33443]},{"type":"Point","coordinates":[87718,34618]},{"type":"Point","coordinates":[649,28827]},{"type":"Point","coordinates":[676,28840]},{"type":"Point","coordinates":[91282,33332]},{"type":"Point","coordinates":[90847,33498]},{"type":"Point","coordinates":[675,28845]},{"type":"Point","coordinates":[92505,32864]},{"type":"Point","coordinates":[91784,33145]},{"type":"Point","coordinates":[91784,33146]},{"type":"Point","coordinates":[675,28847]},{"type":"Point","coordinates":[685,28852]},{"type":"Point","coordinates":[2579,29758]},{"type":"Point","coordinates":[62957,40230]},{"type":"Point","coordinates":[85799,35282]},{"type":"Point","coordinates":[91257,33356]},{"type":"Point","coordinates":[90848,33514]},{"type":"Point","coordinates":[90689,33575]},{"type":"Point","coordinates":[62838,40253]},{"type":"Point","coordinates":[92016,33074]},{"type":"Point","coordinates":[84106,35834]},{"type":"Point","coordinates":[90723,33575]},{"type":"Point","coordinates":[90983,33479]},{"type":"Point","coordinates":[90984,33479]},{"type":"Point","coordinates":[90984,33479]},{"type":"Point","coordinates":[90983,33480]},{"type":"Point","coordinates":[90984,33479]},{"type":"Point","coordinates":[90983,33480]},{"type":"Point","coordinates":[90982,33483]},{"type":"Point","coordinates":[90982,33487]},{"type":"Point","coordinates":[87803,34646]},{"type":"Point","coordinates":[90772,33583]},{"type":"Point","coordinates":[90987,33507]},{"type":"Point","coordinates":[91075,33476]},{"type":"Point","coordinates":[81050,36780]},{"type":"Point","coordinates":[89941,33910]},{"type":"Point","coordinates":[90974,33528]},{"type":"Point","coordinates":[81043,36791]},{"type":"Point","coordinates":[87658,34727]},{"type":"Point","coordinates":[81041,36794]},{"type":"Point","coordinates":[84144,35879]},{"type":"Point","coordinates":[81029,36808]},{"type":"Point","coordinates":[90921,33568]},{"type":"Point","coordinates":[80946,36843]},{"type":"Point","coordinates":[72470,38868]},{"type":"Point","coordinates":[80947,36849]},{"type":"Point","coordinates":[81027,36831]},{"type":"Point","coordinates":[578,28918]},{"type":"Point","coordinates":[90302,33823]},{"type":"Point","coordinates":[561,28913]},{"type":"Point","coordinates":[90767,33665]},{"type":"Point","coordinates":[567,28934]},{"type":"Point","coordinates":[562,28934]},{"type":"Point","coordinates":[568,28937]},{"type":"Point","coordinates":[89929,33985]},{"type":"Point","coordinates":[569,28939]},{"type":"Point","coordinates":[568,28940]},{"type":"Point","coordinates":[568,28941]},{"type":"Point","coordinates":[89079,34299]},{"type":"Point","coordinates":[91830,33281]},{"type":"Point","coordinates":[89311,34223]},{"type":"Point","coordinates":[89906,34008]},{"type":"Point","coordinates":[90095,33940]},{"type":"Point","coordinates":[90837,33664]},{"type":"Point","coordinates":[90837,33664]},{"type":"Point","coordinates":[655,28999]},{"type":"Point","coordinates":[90842,33670]},{"type":"Point","coordinates":[91725,33337]},{"type":"Point","coordinates":[74513,38508]},{"type":"Point","coordinates":[89306,34240]},{"type":"Point","coordinates":[89306,34240]},{"type":"Point","coordinates":[90232,33902]},{"type":"Point","coordinates":[5071,31059]},{"type":"Point","coordinates":[90460,33821]},{"type":"Point","coordinates":[89473,34193]},{"type":"Point","coordinates":[89597,34152]},{"type":"Point","coordinates":[89434,34212]},{"type":"Point","coordinates":[91132,33599]},{"type":"Point","coordinates":[699,29071]},{"type":"Point","coordinates":[700,29072]},{"type":"Point","coordinates":[703,29077]},{"type":"Point","coordinates":[703,29077]},{"type":"Point","coordinates":[90958,33678]},{"type":"Point","coordinates":[89824,34099]},{"type":"Point","coordinates":[90955,33680]},{"type":"Point","coordinates":[90982,33672]},{"type":"Point","coordinates":[79097,37462]},{"type":"Point","coordinates":[90930,33699]},{"type":"Point","coordinates":[90171,33986]},{"type":"Point","coordinates":[88497,34592]},{"type":"Point","coordinates":[91019,33678]},{"type":"Point","coordinates":[90970,33696]},{"type":"Point","coordinates":[1024,29261]},{"type":"Point","coordinates":[90980,33697]},{"type":"Point","coordinates":[90993,33694]},{"type":"Point","coordinates":[90991,33694]},{"type":"Point","coordinates":[90012,34060]},{"type":"Point","coordinates":[90120,34021]},{"type":"Point","coordinates":[91007,33690]},{"type":"Point","coordinates":[89878,34110]},{"type":"Point","coordinates":[89237,34346]},{"type":"Point","coordinates":[90930,33724]},{"type":"Point","coordinates":[90018,34072]},{"type":"Point","coordinates":[91850,33391]},{"type":"Point","coordinates":[80245,37209]},{"type":"Point","coordinates":[90941,33746]},{"type":"Point","coordinates":[90031,34096]},{"type":"Point","coordinates":[91813,33425]},{"type":"Point","coordinates":[89949,34127]},{"type":"Point","coordinates":[90940,33759]},{"type":"Point","coordinates":[90935,33762]},{"type":"Point","coordinates":[90940,33765]},{"type":"Point","coordinates":[90944,33764]},{"type":"Point","coordinates":[87318,35067]},{"type":"Point","coordinates":[87318,35067]},{"type":"Point","coordinates":[90898,33783]},{"type":"Point","coordinates":[75721,38368]},{"type":"Point","coordinates":[87408,35040]},{"type":"Point","coordinates":[90891,33791]},{"type":"Point","coordinates":[90887,33796]},{"type":"Point","coordinates":[90902,33791]},{"type":"Point","coordinates":[89836,34187]},{"type":"Point","coordinates":[90894,33796]},{"type":"Point","coordinates":[90896,33796]},{"type":"Point","coordinates":[89999,34132]},{"type":"Point","coordinates":[90896,33803]},{"type":"Point","coordinates":[90900,33802]},{"type":"Point","coordinates":[88080,34826]},{"type":"Point","coordinates":[91034,33754]},{"type":"Point","coordinates":[90904,33804]},{"type":"Point","coordinates":[90899,33809]},{"type":"Point","coordinates":[91036,33757]},{"type":"Point","coordinates":[90899,33811]},{"type":"Point","coordinates":[90898,33811]},{"type":"Point","coordinates":[90898,33811]},{"type":"Point","coordinates":[90899,33811]},{"type":"Point","coordinates":[91038,33768]},{"type":"Point","coordinates":[88425,34734]},{"type":"Point","coordinates":[62796,40588]},{"type":"Point","coordinates":[91005,33799]},{"type":"Point","coordinates":[87353,35112]},{"type":"Point","coordinates":[91777,33508]},{"type":"Point","coordinates":[474,29116]},{"type":"Point","coordinates":[87352,35121]},{"type":"Point","coordinates":[87352,35121]},{"type":"Point","coordinates":[87352,35121]},{"type":"Point","coordinates":[87353,35122]},{"type":"Point","coordinates":[90196,34113]},{"type":"Point","coordinates":[90016,34180]},{"type":"Point","coordinates":[86996,35247]},{"type":"Point","coordinates":[90035,34177]},{"type":"Point","coordinates":[89988,34196]},{"type":"Point","coordinates":[90019,34185]},{"type":"Point","coordinates":[90717,33927]},{"type":"Point","coordinates":[90033,34183]},{"type":"Point","coordinates":[90089,34167]},{"type":"Point","coordinates":[49700,41236]},{"type":"Point","coordinates":[90076,34177]},{"type":"Point","coordinates":[575,29203]},{"type":"Point","coordinates":[90597,33999]},{"type":"Point","coordinates":[90396,34077]},{"type":"Point","coordinates":[90597,34004]},{"type":"Point","coordinates":[81682,36950]},{"type":"Point","coordinates":[90001,34241]},{"type":"Point","coordinates":[89879,34287]},{"type":"Point","coordinates":[90256,34149]},{"type":"Point","coordinates":[89829,34309]},{"type":"Point","coordinates":[79993,37438]},{"type":"Point","coordinates":[80127,37403]},{"type":"Point","coordinates":[89489,34444]},{"type":"Point","coordinates":[89837,34318]},{"type":"Point","coordinates":[90705,33999]},{"type":"Point","coordinates":[90710,34001]},{"type":"Point","coordinates":[90710,34001]},{"type":"Point","coordinates":[89846,34322]},{"type":"Point","coordinates":[907,29417]},{"type":"Point","coordinates":[90905,33934]},{"type":"Point","coordinates":[90906,33935]},{"type":"Point","coordinates":[90906,33935]},{"type":"Point","coordinates":[90038,34266]},{"type":"Point","coordinates":[90040,34266]},{"type":"Point","coordinates":[91207,33830]},{"type":"Point","coordinates":[87420,35203]},{"type":"Point","coordinates":[90980,33927]},{"type":"Point","coordinates":[89867,34348]},{"type":"Point","coordinates":[87415,35216]},{"type":"Point","coordinates":[88560,34820]},{"type":"Point","coordinates":[63139,40681]},{"type":"Point","coordinates":[89894,34343]},{"type":"Point","coordinates":[89872,34356]},{"type":"Point","coordinates":[87417,35226]},{"type":"Point","coordinates":[87418,35226]},{"type":"Point","coordinates":[87419,35226]},{"type":"Point","coordinates":[79923,37513]},{"type":"Point","coordinates":[79916,37519]},{"type":"Point","coordinates":[87424,35229]},{"type":"Point","coordinates":[87425,35230]},{"type":"Point","coordinates":[87426,35230]},{"type":"Point","coordinates":[87425,35230]},{"type":"Point","coordinates":[90030,34309]},{"type":"Point","coordinates":[90030,34309]},{"type":"Point","coordinates":[90633,34087]},{"type":"Point","coordinates":[80805,37285]},{"type":"Point","coordinates":[566,29311]},{"type":"Point","coordinates":[567,29312]},{"type":"Point","coordinates":[584,29321]},{"type":"Point","coordinates":[89970,34341]},{"type":"Point","coordinates":[89969,34341]},{"type":"Point","coordinates":[584,29324]},{"type":"Point","coordinates":[89969,34341]},{"type":"Point","coordinates":[89974,34340]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[73279,39107]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[16072,35640]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[89970,34342]},{"type":"Point","coordinates":[582,29325]},{"type":"Point","coordinates":[89970,34343]},{"type":"Point","coordinates":[583,29325]},{"type":"Point","coordinates":[583,29325]},{"type":"Point","coordinates":[89970,34343]},{"type":"Point","coordinates":[89883,34377]},{"type":"Point","coordinates":[585,29329]},{"type":"Point","coordinates":[89970,34345]},{"type":"Point","coordinates":[88486,34879]},{"type":"Point","coordinates":[585,29329]},{"type":"Point","coordinates":[89917,34365]},{"type":"Point","coordinates":[581,29328]},{"type":"Point","coordinates":[16067,35643]},{"type":"Point","coordinates":[16067,35645]},{"type":"Point","coordinates":[90078,34311]},{"type":"Point","coordinates":[90952,33987]},{"type":"Point","coordinates":[89271,34606]},{"type":"Point","coordinates":[582,29334]},{"type":"Point","coordinates":[88801,34775]},{"type":"Point","coordinates":[81700,37051]},{"type":"Point","coordinates":[89717,34448]},{"type":"Point","coordinates":[16065,35651]},{"type":"Point","coordinates":[560,29329]},{"type":"Point","coordinates":[90611,34125]},{"type":"Point","coordinates":[80205,37477]},{"type":"Point","coordinates":[89902,34391]},{"type":"Point","coordinates":[4450,31155]},{"type":"Point","coordinates":[91090,33953]},{"type":"Point","coordinates":[90657,34116]},{"type":"Point","coordinates":[90657,34117]},{"type":"Point","coordinates":[90658,34118]},{"type":"Point","coordinates":[88795,34799]},{"type":"Point","coordinates":[89919,34394]},{"type":"Point","coordinates":[89934,34391]},{"type":"Point","coordinates":[89953,34385]},{"type":"Point","coordinates":[89953,34385]},{"type":"Point","coordinates":[89929,34394]},{"type":"Point","coordinates":[89963,34383]},{"type":"Point","coordinates":[16041,35668]},{"type":"Point","coordinates":[89948,34390]},{"type":"Point","coordinates":[89813,34441]},{"type":"Point","coordinates":[89953,34393]},{"type":"Point","coordinates":[90775,34089]},{"type":"Point","coordinates":[90669,34134]},{"type":"Point","coordinates":[89935,34406]},{"type":"Point","coordinates":[89923,34415]},{"type":"Point","coordinates":[89923,34415]},{"type":"Point","coordinates":[87031,35436]},{"type":"Point","coordinates":[90707,34129]},{"type":"Point","coordinates":[80214,37516]},{"type":"Point","coordinates":[90704,34135]},{"type":"Point","coordinates":[90700,34138]},{"type":"Point","coordinates":[90665,34152]},{"type":"Point","coordinates":[34582,40168]},{"type":"Point","coordinates":[90690,34151]},{"type":"Point","coordinates":[89940,34431]},{"type":"Point","coordinates":[80218,37530]},{"type":"Point","coordinates":[90712,34146]},{"type":"Point","coordinates":[89944,34431]},{"type":"Point","coordinates":[89944,34431]},{"type":"Point","coordinates":[90694,34153]},{"type":"Point","coordinates":[34524,40173]},{"type":"Point","coordinates":[90680,34165]},{"type":"Point","coordinates":[90668,34171]},{"type":"Point","coordinates":[90702,34159]},{"type":"Point","coordinates":[79939,37615]},{"type":"Point","coordinates":[90709,34157]},{"type":"Point","coordinates":[90136,34378]},{"type":"Point","coordinates":[90173,34370]},{"type":"Point","coordinates":[89854,34489]},{"type":"Point","coordinates":[88584,34948]},{"type":"Point","coordinates":[90646,34199]},{"type":"Point","coordinates":[79946,37636]},{"type":"Point","coordinates":[74639,38928]},{"type":"Point","coordinates":[90003,34445]},{"type":"Point","coordinates":[353,29333]},{"type":"Point","coordinates":[90664,34205]},{"type":"Point","coordinates":[85642,35958]},{"type":"Point","coordinates":[90674,34202]},{"type":"Point","coordinates":[352,29336]},{"type":"Point","coordinates":[357,29339]},{"type":"Point","coordinates":[80553,37482]},{"type":"Point","coordinates":[369,29346]},{"type":"Point","coordinates":[353,29339]},{"type":"Point","coordinates":[89857,34516]},{"type":"Point","coordinates":[34719,40254]},{"type":"Point","coordinates":[89859,34522]},{"type":"Point","coordinates":[80375,37547]},{"type":"Point","coordinates":[79986,37660]},{"type":"Point","coordinates":[5257,31649]},{"type":"Point","coordinates":[88545,35014]},{"type":"Point","coordinates":[80313,37594]},{"type":"Point","coordinates":[90000,34505]},{"type":"Point","coordinates":[89997,34507]},{"type":"Point","coordinates":[90687,34263]},{"type":"Point","coordinates":[90683,34268]},{"type":"Point","coordinates":[90686,34268]},{"type":"Point","coordinates":[87248,35499]},{"type":"Point","coordinates":[89778,34611]},{"type":"Point","coordinates":[87177,35527]},{"type":"Point","coordinates":[89776,34616]},{"type":"Point","coordinates":[90182,34467]},{"type":"Point","coordinates":[87176,35537]},{"type":"Point","coordinates":[87881,35296]},{"type":"Point","coordinates":[87175,35538]},{"type":"Point","coordinates":[87176,35538]},{"type":"Point","coordinates":[87188,35537]},{"type":"Point","coordinates":[87164,35546]},{"type":"Point","coordinates":[5595,31858]},{"type":"Point","coordinates":[77545,38368]},{"type":"Point","coordinates":[80382,37639]},{"type":"Point","coordinates":[90545,34365]},{"type":"Point","coordinates":[90545,34366]},{"type":"Point","coordinates":[90545,34367]},{"type":"Point","coordinates":[86971,35639]},{"type":"Point","coordinates":[90543,34375]},{"type":"Point","coordinates":[86971,35642]},{"type":"Point","coordinates":[90542,34376]},{"type":"Point","coordinates":[90541,34382]},{"type":"Point","coordinates":[90296,34473]},{"type":"Point","coordinates":[87082,35612]},{"type":"Point","coordinates":[86969,35650]},{"type":"Point","coordinates":[85738,36076]},{"type":"Point","coordinates":[90570,34402]},{"type":"Point","coordinates":[90570,34402]},{"type":"Point","coordinates":[87045,35654]},{"type":"Point","coordinates":[87041,35658]},{"type":"Point","coordinates":[87041,35658]},{"type":"Point","coordinates":[87040,35658]},{"type":"Point","coordinates":[87040,35658]},{"type":"Point","coordinates":[80319,37709]},{"type":"Point","coordinates":[90537,34420]},{"type":"Point","coordinates":[87023,35671]},{"type":"Point","coordinates":[80165,37756]},{"type":"Point","coordinates":[87020,35673]},{"type":"Point","coordinates":[87018,35675]},{"type":"Point","coordinates":[87015,35677]},{"type":"Point","coordinates":[87011,35689]},{"type":"Point","coordinates":[87011,35689]},{"type":"Point","coordinates":[90633,34403]},{"type":"Point","coordinates":[86980,35700]},{"type":"Point","coordinates":[90084,34613]},{"type":"Point","coordinates":[86977,35709]},{"type":"Point","coordinates":[86975,35711]},{"type":"Point","coordinates":[86951,35720]},{"type":"Point","coordinates":[86959,35727]},{"type":"Point","coordinates":[79377,38002]},{"type":"Point","coordinates":[80075,37818]},{"type":"Point","coordinates":[90635,34427]},{"type":"Point","coordinates":[90555,34458]},{"type":"Point","coordinates":[90561,34460]},{"type":"Point","coordinates":[90172,34605]},{"type":"Point","coordinates":[90566,34466]},{"type":"Point","coordinates":[80513,37712]},{"type":"Point","coordinates":[90189,34609]},{"type":"Point","coordinates":[90560,34477]},{"type":"Point","coordinates":[90560,34477]},{"type":"Point","coordinates":[86936,35761]},{"type":"Point","coordinates":[89999,34685]},{"type":"Point","coordinates":[89551,34854]},{"type":"Point","coordinates":[86853,35802]},{"type":"Point","coordinates":[90454,34535]},{"type":"Point","coordinates":[5219,31847]},{"type":"Point","coordinates":[86728,35865]},{"type":"Point","coordinates":[79459,38039]},{"type":"Point","coordinates":[90578,34510]},{"type":"Point","coordinates":[86943,35806]},{"type":"Point","coordinates":[90523,34543]},{"type":"Point","coordinates":[90212,34665]},{"type":"Point","coordinates":[90180,34677]},{"type":"Point","coordinates":[80590,37762]},{"type":"Point","coordinates":[90531,34553]},{"type":"Point","coordinates":[797,29856]},{"type":"Point","coordinates":[86668,35918]},{"type":"Point","coordinates":[798,29857]},{"type":"Point","coordinates":[5456,32004]},{"type":"Point","coordinates":[776,29851]},{"type":"Point","coordinates":[15911,36017]},{"type":"Point","coordinates":[15912,36019]},{"type":"Point","coordinates":[90232,34684]},{"type":"Point","coordinates":[89689,34890]},{"type":"Point","coordinates":[79964,37963]},{"type":"Point","coordinates":[5164,31902]},{"type":"Point","coordinates":[5135,31894]},{"type":"Point","coordinates":[79956,37974]},{"type":"Point","coordinates":[5137,31898]},{"type":"Point","coordinates":[5136,31898]},{"type":"Point","coordinates":[924,29957]},{"type":"Point","coordinates":[79964,37975]},{"type":"Point","coordinates":[79964,37977]},{"type":"Point","coordinates":[930,29964]},{"type":"Point","coordinates":[926,29963]},{"type":"Point","coordinates":[926,29963]},{"type":"Point","coordinates":[80210,37913]},{"type":"Point","coordinates":[90177,34731]},{"type":"Point","coordinates":[80391,37872]},{"type":"Point","coordinates":[5128,31910]},{"type":"Point","coordinates":[90215,34727]},{"type":"Point","coordinates":[578,29807]},{"type":"Point","coordinates":[76647,38830]},{"type":"Point","coordinates":[822,29927]},{"type":"Point","coordinates":[90206,34736]},{"type":"Point","coordinates":[940,29988]},{"type":"Point","coordinates":[825,29932]},{"type":"Point","coordinates":[5133,31922]},{"type":"Point","coordinates":[76639,38840]},{"type":"Point","coordinates":[5133,31929]},{"type":"Point","coordinates":[5133,31932]},{"type":"Point","coordinates":[512,29795]},{"type":"Point","coordinates":[5136,31936]},{"type":"Point","coordinates":[90246,34738]},{"type":"Point","coordinates":[5087,31922]},{"type":"Point","coordinates":[5128,31941]},{"type":"Point","coordinates":[90239,34751]},{"type":"Point","coordinates":[5037,31906]},{"type":"Point","coordinates":[89745,34938]},{"type":"Point","coordinates":[90236,34761]},{"type":"Point","coordinates":[81671,37560]},{"type":"Point","coordinates":[76603,38886]},{"type":"Point","coordinates":[5140,31965]},{"type":"Point","coordinates":[80316,37959]},{"type":"Point","coordinates":[83486,37049]},{"type":"Point","coordinates":[5050,31944]},{"type":"Point","coordinates":[88880,35278]},{"type":"Point","coordinates":[5111,31974]},{"type":"Point","coordinates":[83497,37057]},{"type":"Point","coordinates":[90999,34536]},{"type":"Point","coordinates":[70300,40258]},{"type":"Point","coordinates":[70300,40258]},{"type":"Point","coordinates":[5181,32054]},{"type":"Point","coordinates":[80379,38012]},{"type":"Point","coordinates":[80396,38010]},{"type":"Point","coordinates":[90225,34867]},{"type":"Point","coordinates":[67692,40716]},{"type":"Point","coordinates":[5011,32015]},{"type":"Point","coordinates":[67890,40697]},{"type":"Point","coordinates":[685,30023]},{"type":"Point","coordinates":[685,30024]},{"type":"Point","coordinates":[685,30024]},{"type":"Point","coordinates":[751,30056]},{"type":"Point","coordinates":[750,30057]},{"type":"Point","coordinates":[730,30048]},{"type":"Point","coordinates":[80346,38051]},{"type":"Point","coordinates":[80345,38051]},{"type":"Point","coordinates":[80345,38051]},{"type":"Point","coordinates":[80345,38052]},{"type":"Point","coordinates":[742,30055]},{"type":"Point","coordinates":[750,30060]},{"type":"Point","coordinates":[668,30021]},{"type":"Point","coordinates":[748,30060]},{"type":"Point","coordinates":[747,30060]},{"type":"Point","coordinates":[752,30062]},{"type":"Point","coordinates":[5233,32130]},{"type":"Point","coordinates":[673,30027]},{"type":"Point","coordinates":[5008,32033]},{"type":"Point","coordinates":[90528,34788]},{"type":"Point","coordinates":[89695,35096]},{"type":"Point","coordinates":[620,30013]},{"type":"Point","coordinates":[80359,38066]},{"type":"Point","coordinates":[80361,38065]},{"type":"Point","coordinates":[80618,37998]},{"type":"Point","coordinates":[80444,38046]},{"type":"Point","coordinates":[67763,40746]},{"type":"Point","coordinates":[80445,38047]},{"type":"Point","coordinates":[80618,38000]},{"type":"Point","coordinates":[80431,38052]},{"type":"Point","coordinates":[90534,34801]},{"type":"Point","coordinates":[80447,38052]},{"type":"Point","coordinates":[80440,38054]},{"type":"Point","coordinates":[748,30090]},{"type":"Point","coordinates":[80379,38076]},{"type":"Point","coordinates":[80379,38076]},{"type":"Point","coordinates":[80383,38076]},{"type":"Point","coordinates":[90519,34816]},{"type":"Point","coordinates":[747,30095]},{"type":"Point","coordinates":[80433,38069]},{"type":"Point","coordinates":[80422,38074]},{"type":"Point","coordinates":[80431,38076]},{"type":"Point","coordinates":[80351,38101]},{"type":"Point","coordinates":[80230,38136]},{"type":"Point","coordinates":[80229,38138]},{"type":"Point","coordinates":[80460,38082]},{"type":"Point","coordinates":[80441,38088]},{"type":"Point","coordinates":[67702,40796]},{"type":"Point","coordinates":[690,30101]},{"type":"Point","coordinates":[67739,40802]},{"type":"Point","coordinates":[5314,32241]},{"type":"Point","coordinates":[67740,40813]},{"type":"Point","coordinates":[85882,36484]},{"type":"Point","coordinates":[79956,38246]},{"type":"Point","coordinates":[22325,38244]},{"type":"Point","coordinates":[753,30163]},{"type":"Point","coordinates":[34731,40855]},{"type":"Point","coordinates":[90839,34782]},{"type":"Point","coordinates":[85047,36807]},{"type":"Point","coordinates":[830,30248]},{"type":"Point","coordinates":[83651,37252]},{"type":"Point","coordinates":[90839,34825]},{"type":"Point","coordinates":[80336,38225]},{"type":"Point","coordinates":[62131,41612]},{"type":"Point","coordinates":[780,30254]},{"type":"Point","coordinates":[91057,34763]},{"type":"Point","coordinates":[90855,34853]},{"type":"Point","coordinates":[90804,34882]},{"type":"Point","coordinates":[814,30309]},{"type":"Point","coordinates":[814,30309]},{"type":"Point","coordinates":[814,30323]},{"type":"Point","coordinates":[814,30323]},{"type":"Point","coordinates":[63778,41492]},{"type":"Point","coordinates":[90067,35184]},{"type":"Point","coordinates":[813,30332]},{"type":"Point","coordinates":[90260,35115]},{"type":"Point","coordinates":[812,30332]},{"type":"Point","coordinates":[90073,35192]},{"type":"Point","coordinates":[89896,35265]},{"type":"Point","coordinates":[813,30352]},{"type":"Point","coordinates":[785,30345]},{"type":"Point","coordinates":[89942,35260]},{"type":"Point","coordinates":[812,30362]},{"type":"Point","coordinates":[848,30381]},{"type":"Point","coordinates":[89798,35322]},{"type":"Point","coordinates":[89250,35522]},{"type":"Point","coordinates":[89246,35526]},{"type":"Point","coordinates":[807,30378]},{"type":"Point","coordinates":[858,30411]},{"type":"Point","coordinates":[797,30384]},{"type":"Point","coordinates":[63749,41560]},{"type":"Point","coordinates":[90717,35010]},{"type":"Point","coordinates":[90847,34970]},{"type":"Point","coordinates":[63742,41579]},{"type":"Point","coordinates":[63717,41593]},{"type":"Point","coordinates":[85935,36712]},{"type":"Point","coordinates":[63719,41597]},{"type":"Point","coordinates":[63715,41613]},{"type":"Point","coordinates":[796,30446]},{"type":"Point","coordinates":[63715,41619]},{"type":"Point","coordinates":[797,30447]},{"type":"Point","coordinates":[797,30447]},{"type":"Point","coordinates":[785,30443]},{"type":"Point","coordinates":[796,30448]},{"type":"Point","coordinates":[795,30448]},{"type":"Point","coordinates":[796,30449]},{"type":"Point","coordinates":[795,30449]},{"type":"Point","coordinates":[799,30451]},{"type":"Point","coordinates":[796,30450]},{"type":"Point","coordinates":[794,30450]},{"type":"Point","coordinates":[794,30450]},{"type":"Point","coordinates":[621,30368]},{"type":"Point","coordinates":[675,30394]},{"type":"Point","coordinates":[790,30450]},{"type":"Point","coordinates":[793,30452]},{"type":"Point","coordinates":[791,30452]},{"type":"Point","coordinates":[677,30397]},{"type":"Point","coordinates":[704,30411]},{"type":"Point","coordinates":[700,30410]},{"type":"Point","coordinates":[65274,41439]},{"type":"Point","coordinates":[676,30400]},{"type":"Point","coordinates":[650,30388]},{"type":"Point","coordinates":[668,30397]},{"type":"Point","coordinates":[696,30410]},{"type":"Point","coordinates":[791,30456]},{"type":"Point","coordinates":[660,30393]},{"type":"Point","coordinates":[673,30400]},{"type":"Point","coordinates":[787,30455]},{"type":"Point","coordinates":[63719,41632]},{"type":"Point","coordinates":[651,30389]},{"type":"Point","coordinates":[63719,41632]},{"type":"Point","coordinates":[673,30400]},{"type":"Point","coordinates":[63719,41632]},{"type":"Point","coordinates":[674,30401]},{"type":"Point","coordinates":[802,30463]},{"type":"Point","coordinates":[724,30425]},{"type":"Point","coordinates":[677,30403]},{"type":"Point","coordinates":[790,30458]},{"type":"Point","coordinates":[727,30429]},{"type":"Point","coordinates":[626,30381]},{"type":"Point","coordinates":[702,30418]},{"type":"Point","coordinates":[787,30459]},{"type":"Point","coordinates":[666,30402]},{"type":"Point","coordinates":[684,30411]},{"type":"Point","coordinates":[89889,35390]},{"type":"Point","coordinates":[685,30412]},{"type":"Point","coordinates":[701,30420]},{"type":"Point","coordinates":[708,30424]},{"type":"Point","coordinates":[674,30409]},{"type":"Point","coordinates":[716,30430]},{"type":"Point","coordinates":[63698,41645]},{"type":"Point","coordinates":[90872,35033]},{"type":"Point","coordinates":[711,30432]},{"type":"Point","coordinates":[614,30388]},{"type":"Point","coordinates":[89867,35409]},{"type":"Point","coordinates":[772,30471]},{"type":"Point","coordinates":[772,30471]},{"type":"Point","coordinates":[772,30472]},{"type":"Point","coordinates":[761,30467]},{"type":"Point","coordinates":[772,30472]},{"type":"Point","coordinates":[649,30413]},{"type":"Point","coordinates":[79699,38618]},{"type":"Point","coordinates":[758,30469]},{"type":"Point","coordinates":[615,30402]},{"type":"Point","coordinates":[741,30463]},{"type":"Point","coordinates":[738,30463]},{"type":"Point","coordinates":[762,30475]},{"type":"Point","coordinates":[773,30485]},{"type":"Point","coordinates":[758,30478]},{"type":"Point","coordinates":[752,30477]},{"type":"Point","coordinates":[752,30477]},{"type":"Point","coordinates":[754,30479]},{"type":"Point","coordinates":[752,30479]},{"type":"Point","coordinates":[766,30486]},{"type":"Point","coordinates":[771,30498]},{"type":"Point","coordinates":[751,30492]},{"type":"Point","coordinates":[80096,38541]},{"type":"Point","coordinates":[80123,38536]},{"type":"Point","coordinates":[88413,35970]},{"type":"Point","coordinates":[86628,36579]},{"type":"Point","coordinates":[780,30518]},{"type":"Point","coordinates":[6645,33180]},{"type":"Point","coordinates":[771,30523]},{"type":"Point","coordinates":[80274,38516]},{"type":"Point","coordinates":[89977,35447]},{"type":"Point","coordinates":[80551,38459]},{"type":"Point","coordinates":[700,30517]},{"type":"Point","coordinates":[80113,38589]},{"type":"Point","coordinates":[80113,38589]},{"type":"Point","coordinates":[142,30253]},{"type":"Point","coordinates":[143,30254]},{"type":"Point","coordinates":[140,30254]},{"type":"Point","coordinates":[140,30254]},{"type":"Point","coordinates":[140,30254]},{"type":"Point","coordinates":[140,30254]},{"type":"Point","coordinates":[143,30255]},{"type":"Point","coordinates":[141,30255]},{"type":"Point","coordinates":[140,30254]},{"type":"Point","coordinates":[140,30254]},{"type":"Point","coordinates":[143,30255]},{"type":"Point","coordinates":[140,30254]},{"type":"Point","coordinates":[773,30567]},{"type":"Point","coordinates":[776,30570]},{"type":"Point","coordinates":[87669,36291]},{"type":"Point","coordinates":[79911,38662]},{"type":"Point","coordinates":[87686,36299]},{"type":"Point","coordinates":[619,30514]},{"type":"Point","coordinates":[675,30543]},{"type":"Point","coordinates":[738,30580]},{"type":"Point","coordinates":[892,30656]},{"type":"Point","coordinates":[810,30623]},{"type":"Point","coordinates":[822,30631]},{"type":"Point","coordinates":[789,30615]},{"type":"Point","coordinates":[789,30617]},{"type":"Point","coordinates":[790,30620]},{"type":"Point","coordinates":[787,30620]},{"type":"Point","coordinates":[788,30622]},{"type":"Point","coordinates":[792,30624]},{"type":"Point","coordinates":[792,30626]},{"type":"Point","coordinates":[791,30626]},{"type":"Point","coordinates":[791,30626]},{"type":"Point","coordinates":[791,30626]},{"type":"Point","coordinates":[791,30626]},{"type":"Point","coordinates":[788,30625]},{"type":"Point","coordinates":[87031,36552]},{"type":"Point","coordinates":[789,30626]},{"type":"Point","coordinates":[790,30628]},{"type":"Point","coordinates":[790,30630]},{"type":"Point","coordinates":[799,30635]},{"type":"Point","coordinates":[85712,36993]},{"type":"Point","coordinates":[85696,37001]},{"type":"Point","coordinates":[701,30592]},{"type":"Point","coordinates":[85696,37001]},{"type":"Point","coordinates":[85696,37001]},{"type":"Point","coordinates":[85701,37001]},{"type":"Point","coordinates":[768,30637]},{"type":"Point","coordinates":[85325,37133]},{"type":"Point","coordinates":[80729,38502]},{"type":"Point","coordinates":[766,30639]},{"type":"Point","coordinates":[90993,35169]},{"type":"Point","coordinates":[85562,37069]},{"type":"Point","coordinates":[89793,35622]},{"type":"Point","coordinates":[79892,38742]},{"type":"Point","coordinates":[85566,37075]},{"type":"Point","coordinates":[89788,35632]},{"type":"Point","coordinates":[89797,35638]},{"type":"Point","coordinates":[800,30687]},{"type":"Point","coordinates":[618,30600]},{"type":"Point","coordinates":[89786,35644]},{"type":"Point","coordinates":[89791,35646]},{"type":"Point","coordinates":[89540,35737]},{"type":"Point","coordinates":[89789,35647]},{"type":"Point","coordinates":[89799,35645]},{"type":"Point","coordinates":[89795,35647]},{"type":"Point","coordinates":[89799,35645]},{"type":"Point","coordinates":[89799,35645]},{"type":"Point","coordinates":[89799,35646]},{"type":"Point","coordinates":[89799,35646]},{"type":"Point","coordinates":[89787,35652]},{"type":"Point","coordinates":[89793,35651]},{"type":"Point","coordinates":[805,30700]},{"type":"Point","coordinates":[796,30699]},{"type":"Point","coordinates":[49631,42576]},{"type":"Point","coordinates":[49647,42599]},{"type":"Point","coordinates":[89779,35699]},{"type":"Point","coordinates":[814,30749]},{"type":"Point","coordinates":[846,30765]},{"type":"Point","coordinates":[847,30765]},{"type":"Point","coordinates":[89048,35963]},{"type":"Point","coordinates":[874,30783]},{"type":"Point","coordinates":[869,30782]},{"type":"Point","coordinates":[869,30782]},{"type":"Point","coordinates":[869,30783]},{"type":"Point","coordinates":[88902,36026]},{"type":"Point","coordinates":[65153,41741]},{"type":"Point","coordinates":[805,30760]},{"type":"Point","coordinates":[65151,41743]},{"type":"Point","coordinates":[806,30763]},{"type":"Point","coordinates":[848,30788]},{"type":"Point","coordinates":[89184,35958]},{"type":"Point","coordinates":[862,30819]},{"type":"Point","coordinates":[862,30824]},{"type":"Point","coordinates":[87089,36693]},{"type":"Point","coordinates":[87090,36700]},{"type":"Point","coordinates":[691,30753]},{"type":"Point","coordinates":[87091,36707]},{"type":"Point","coordinates":[872,30846]},{"type":"Point","coordinates":[869,30846]},{"type":"Point","coordinates":[871,30847]},{"type":"Point","coordinates":[872,30855]},{"type":"Point","coordinates":[872,30855]},{"type":"Point","coordinates":[874,30864]},{"type":"Point","coordinates":[881,30872]},{"type":"Point","coordinates":[723,30799]},{"type":"Point","coordinates":[87882,36465]},{"type":"Point","coordinates":[878,30877]},{"type":"Point","coordinates":[912,30895]},{"type":"Point","coordinates":[912,30895]},{"type":"Point","coordinates":[905,30900]},{"type":"Point","coordinates":[86466,36955]},{"type":"Point","coordinates":[908,30902]},{"type":"Point","coordinates":[906,30904]},{"type":"Point","coordinates":[89598,35879]},{"type":"Point","coordinates":[887,30904]},{"type":"Point","coordinates":[902,30918]},{"type":"Point","coordinates":[931,30934]},{"type":"Point","coordinates":[86327,37025]},{"type":"Point","coordinates":[904,30933]},{"type":"Point","coordinates":[88071,36449]},{"type":"Point","coordinates":[66209,41726]},{"type":"Point","coordinates":[899,30940]},{"type":"Point","coordinates":[65455,41831]},{"type":"Point","coordinates":[898,30941]},{"type":"Point","coordinates":[66198,41733]},{"type":"Point","coordinates":[66199,41733]},{"type":"Point","coordinates":[65100,41880]},{"type":"Point","coordinates":[66199,41733]},{"type":"Point","coordinates":[66202,41734]},{"type":"Point","coordinates":[66202,41734]},{"type":"Point","coordinates":[66197,41736]},{"type":"Point","coordinates":[66198,41743]},{"type":"Point","coordinates":[86861,36878]},{"type":"Point","coordinates":[891,30953]},{"type":"Point","coordinates":[74937,40209]},{"type":"Point","coordinates":[65155,41935]},{"type":"Point","coordinates":[34181,41522]},{"type":"Point","coordinates":[920,31034]},{"type":"Point","coordinates":[64307,42058]},{"type":"Point","coordinates":[88019,36557]},{"type":"Point","coordinates":[902,31037]},{"type":"Point","coordinates":[668,30926]},{"type":"Point","coordinates":[66270,41821]},{"type":"Point","coordinates":[87944,36601]},{"type":"Point","coordinates":[87958,36599]},{"type":"Point","coordinates":[939,31078]},{"type":"Point","coordinates":[66273,41836]},{"type":"Point","coordinates":[34176,41565]},{"type":"Point","coordinates":[89465,36087]},{"type":"Point","coordinates":[87947,36638]},{"type":"Point","coordinates":[87985,36627]},{"type":"Point","coordinates":[87985,36628]},{"type":"Point","coordinates":[86944,36993]},{"type":"Point","coordinates":[88104,36601]},{"type":"Point","coordinates":[88105,36601]},{"type":"Point","coordinates":[87978,36651]},{"type":"Point","coordinates":[87902,36679]},{"type":"Point","coordinates":[87969,36658]},{"type":"Point","coordinates":[89835,36028]},{"type":"Point","coordinates":[74974,40357]},{"type":"Point","coordinates":[66306,41923]},{"type":"Point","coordinates":[66306,41923]},{"type":"Point","coordinates":[85438,37554]},{"type":"Point","coordinates":[74977,40389]},{"type":"Point","coordinates":[89823,36069]},{"type":"Point","coordinates":[87429,36920]},{"type":"Point","coordinates":[87030,37058]},{"type":"Point","coordinates":[85448,37594]},{"type":"Point","coordinates":[85449,37594]},{"type":"Point","coordinates":[79986,39223]},{"type":"Point","coordinates":[5253,33242]},{"type":"Point","coordinates":[89902,36111]},{"type":"Point","coordinates":[81949,38707]},{"type":"Point","coordinates":[89028,36441]},{"type":"Point","coordinates":[79299,39438]},{"type":"Point","coordinates":[81692,38791]},{"type":"Point","coordinates":[74499,40604]},{"type":"Point","coordinates":[5460,33383]},{"type":"Point","coordinates":[5319,33332]},{"type":"Point","coordinates":[62443,42543]},{"type":"Point","coordinates":[72340,41065]},{"type":"Point","coordinates":[6211,33722]},{"type":"Point","coordinates":[81706,38845]},{"type":"Point","coordinates":[89411,36388]},{"type":"Point","coordinates":[74882,40602]},{"type":"Point","coordinates":[89258,36467]},{"type":"Point","coordinates":[847,31362]},{"type":"Point","coordinates":[72344,41139]},{"type":"Point","coordinates":[88779,36653]},{"type":"Point","coordinates":[5437,33473]},{"type":"Point","coordinates":[85599,37729]},{"type":"Point","coordinates":[90537,36023]},{"type":"Point","coordinates":[66303,42161]},{"type":"Point","coordinates":[66301,42162]},{"type":"Point","coordinates":[66302,42163]},{"type":"Point","coordinates":[65432,42285]},{"type":"Point","coordinates":[788,31357]},{"type":"Point","coordinates":[85640,37727]},{"type":"Point","coordinates":[65443,42290]},{"type":"Point","coordinates":[65439,42294]},{"type":"Point","coordinates":[89127,36558]},{"type":"Point","coordinates":[85679,37728]},{"type":"Point","coordinates":[782,31372]},{"type":"Point","coordinates":[774,31370]},{"type":"Point","coordinates":[72275,41201]},{"type":"Point","coordinates":[80604,39266]},{"type":"Point","coordinates":[65338,42347]},{"type":"Point","coordinates":[5305,33481]},{"type":"Point","coordinates":[6161,33854]},{"type":"Point","coordinates":[88548,36809]},{"type":"Point","coordinates":[88548,36810]},{"type":"Point","coordinates":[678,31375]},{"type":"Point","coordinates":[75019,40672]},{"type":"Point","coordinates":[75018,40673]},{"type":"Point","coordinates":[6345,33949]},{"type":"Point","coordinates":[74653,40757]},{"type":"Point","coordinates":[86376,37568]},{"type":"Point","coordinates":[74702,40758]},{"type":"Point","coordinates":[88753,36764]},{"type":"Point","coordinates":[654,31388]},{"type":"Point","coordinates":[369,31250]},{"type":"Point","coordinates":[71778,41371]},{"type":"Point","coordinates":[88568,36859]},{"type":"Point","coordinates":[844,31504]},{"type":"Point","coordinates":[79200,39716]},{"type":"Point","coordinates":[82679,38756]},{"type":"Point","coordinates":[69053,41870]},{"type":"Point","coordinates":[89661,36476]},{"type":"Point","coordinates":[5222,33519]},{"type":"Point","coordinates":[85581,37874]},{"type":"Point","coordinates":[82680,38768]},{"type":"Point","coordinates":[69272,41846]},{"type":"Point","coordinates":[80168,39485]},{"type":"Point","coordinates":[74766,40814]},{"type":"Point","coordinates":[5196,33547]},{"type":"Point","coordinates":[86053,37760]},{"type":"Point","coordinates":[5600,33727]},{"type":"Point","coordinates":[82707,38798]},{"type":"Point","coordinates":[34175,42065]},{"type":"Point","coordinates":[74948,40791]},{"type":"Point","coordinates":[5265,33586]},{"type":"Point","coordinates":[88878,36810]},{"type":"Point","coordinates":[65466,42458]},{"type":"Point","coordinates":[63030,42753]},{"type":"Point","coordinates":[88245,37038]},{"type":"Point","coordinates":[25542,40391]},{"type":"Point","coordinates":[65456,42476]},{"type":"Point","coordinates":[87129,37432]},{"type":"Point","coordinates":[6184,34007]},{"type":"Point","coordinates":[75119,40780]},{"type":"Point","coordinates":[86042,37798]},{"type":"Point","coordinates":[89343,36685]},{"type":"Point","coordinates":[89347,36684]},{"type":"Point","coordinates":[89022,36801]},{"type":"Point","coordinates":[77855,40162]},{"type":"Point","coordinates":[64803,42604]},{"type":"Point","coordinates":[64800,42606]},{"type":"Point","coordinates":[74768,40898]},{"type":"Point","coordinates":[64803,42614]},{"type":"Point","coordinates":[64807,42614]},{"type":"Point","coordinates":[69644,41902]},{"type":"Point","coordinates":[5160,33624]},{"type":"Point","coordinates":[813,31635]},{"type":"Point","coordinates":[73519,41197]},{"type":"Point","coordinates":[88138,37170]},{"type":"Point","coordinates":[73523,41200]},{"type":"Point","coordinates":[89262,36782]},{"type":"Point","coordinates":[89474,36706]},{"type":"Point","coordinates":[85346,38115]},{"type":"Point","coordinates":[89056,36871]},{"type":"Point","coordinates":[63065,42870]},{"type":"Point","coordinates":[65834,42533]},{"type":"Point","coordinates":[34303,42223]},{"type":"Point","coordinates":[89131,36855]},{"type":"Point","coordinates":[81631,39250]},{"type":"Point","coordinates":[5050,33640]},{"type":"Point","coordinates":[89046,36894]},{"type":"Point","coordinates":[89077,36885]},{"type":"Point","coordinates":[82865,38941]},{"type":"Point","coordinates":[88827,37019]},{"type":"Point","coordinates":[89097,36939]},{"type":"Point","coordinates":[89072,36950]},{"type":"Point","coordinates":[34117,42279]},{"type":"Point","coordinates":[34115,42279]},{"type":"Point","coordinates":[794,31767]},{"type":"Point","coordinates":[5288,33824]},{"type":"Point","coordinates":[89427,36838]},{"type":"Point","coordinates":[89427,36839]},{"type":"Point","coordinates":[34132,42293]},{"type":"Point","coordinates":[89080,36971]},{"type":"Point","coordinates":[5042,33733]},{"type":"Point","coordinates":[88691,37114]},{"type":"Point","coordinates":[88691,37114]},{"type":"Point","coordinates":[88951,37024]},{"type":"Point","coordinates":[801,31792]},{"type":"Point","coordinates":[790,31790]},{"type":"Point","coordinates":[74807,41070]},{"type":"Point","coordinates":[790,31798]},{"type":"Point","coordinates":[792,31800]},{"type":"Point","coordinates":[795,31802]},{"type":"Point","coordinates":[74944,41046]},{"type":"Point","coordinates":[5085,33769]},{"type":"Point","coordinates":[794,31803]},{"type":"Point","coordinates":[89052,37006]},{"type":"Point","coordinates":[89052,37006]},{"type":"Point","coordinates":[791,31803]},{"type":"Point","coordinates":[791,31804]},{"type":"Point","coordinates":[5356,33890]},{"type":"Point","coordinates":[34093,42318]},{"type":"Point","coordinates":[89259,36942]},{"type":"Point","coordinates":[81794,39340]},{"type":"Point","coordinates":[88972,37051]},{"type":"Point","coordinates":[85166,38337]},{"type":"Point","coordinates":[86505,37909]},{"type":"Point","coordinates":[34174,42357]},{"type":"Point","coordinates":[789,31840]},{"type":"Point","coordinates":[788,31840]},{"type":"Point","coordinates":[4674,33636]},{"type":"Point","coordinates":[85188,38362]},{"type":"Point","coordinates":[88984,37090]},{"type":"Point","coordinates":[5282,33923]},{"type":"Point","coordinates":[89776,36826]},{"type":"Point","coordinates":[89776,36826]},{"type":"Point","coordinates":[34423,42450]},{"type":"Point","coordinates":[68885,42303]},{"type":"Point","coordinates":[89099,37091]},{"type":"Point","coordinates":[34106,42413]},{"type":"Point","coordinates":[34233,42438]},{"type":"Point","coordinates":[89763,36860]},{"type":"Point","coordinates":[34362,42464]},{"type":"Point","coordinates":[89757,36870]},{"type":"Point","coordinates":[34222,42458]},{"type":"Point","coordinates":[64648,42942]},{"type":"Point","coordinates":[34231,42463]},{"type":"Point","coordinates":[64654,42944]},{"type":"Point","coordinates":[88598,37304]},{"type":"Point","coordinates":[86590,37990]},{"type":"Point","coordinates":[64454,43004]},{"type":"Point","coordinates":[69538,42268]},{"type":"Point","coordinates":[62480,43229]},{"type":"Point","coordinates":[73105,41609]},{"type":"Point","coordinates":[69209,42326]},{"type":"Point","coordinates":[69472,42282]},{"type":"Point","coordinates":[69208,42327]},{"type":"Point","coordinates":[69208,42327]},{"type":"Point","coordinates":[69209,42327]},{"type":"Point","coordinates":[69479,42288]},{"type":"Point","coordinates":[83783,38940]},{"type":"Point","coordinates":[89615,37020]},{"type":"Point","coordinates":[69406,42339]},{"type":"Point","coordinates":[75079,41239]},{"type":"Point","coordinates":[89291,37155]},{"type":"Point","coordinates":[35063,42689]},{"type":"Point","coordinates":[69288,42390]},{"type":"Point","coordinates":[69285,42396]},{"type":"Point","coordinates":[69285,42396]},{"type":"Point","coordinates":[84060,38915]},{"type":"Point","coordinates":[69285,42397]},{"type":"Point","coordinates":[69284,42398]},{"type":"Point","coordinates":[69284,42398]},{"type":"Point","coordinates":[69287,42401]},{"type":"Point","coordinates":[69260,42408]},{"type":"Point","coordinates":[89140,37245]},{"type":"Point","coordinates":[69260,42411]},{"type":"Point","coordinates":[81323,39729]},{"type":"Point","coordinates":[89113,37264]},{"type":"Point","coordinates":[89178,37242]},{"type":"Point","coordinates":[5760,34361]},{"type":"Point","coordinates":[67608,42708]},{"type":"Point","coordinates":[84056,38964]},{"type":"Point","coordinates":[84056,38964]},{"type":"Point","coordinates":[84056,38964]},{"type":"Point","coordinates":[84056,38965]},{"type":"Point","coordinates":[84056,38965]},{"type":"Point","coordinates":[91025,36599]},{"type":"Point","coordinates":[69453,42425]},{"type":"Point","coordinates":[69040,42502]},{"type":"Point","coordinates":[81218,39814]},{"type":"Point","coordinates":[69038,42513]},{"type":"Point","coordinates":[67547,42753]},{"type":"Point","coordinates":[69250,42493]},{"type":"Point","coordinates":[87173,38046]},{"type":"Point","coordinates":[81501,39806]},{"type":"Point","coordinates":[87720,37874]},{"type":"Point","coordinates":[90393,36943]},{"type":"Point","coordinates":[65099,43189]},{"type":"Point","coordinates":[81262,39923]},{"type":"Point","coordinates":[89465,37314]},{"type":"Point","coordinates":[88314,37725]},{"type":"Point","coordinates":[81461,39882]},{"type":"Point","coordinates":[81483,39879]},{"type":"Point","coordinates":[89468,37330]},{"type":"Point","coordinates":[83278,39362]},{"type":"Point","coordinates":[74638,41585]},{"type":"Point","coordinates":[88879,37559]},{"type":"Point","coordinates":[81433,39921]},{"type":"Point","coordinates":[69529,42590]},{"type":"Point","coordinates":[80546,40171]},{"type":"Point","coordinates":[91003,36813]},{"type":"Point","coordinates":[83983,39201]},{"type":"Point","coordinates":[69276,42663]},{"type":"Point","coordinates":[88607,37694]},{"type":"Point","coordinates":[68980,42714]},{"type":"Point","coordinates":[68981,42717]},{"type":"Point","coordinates":[68984,42720]},{"type":"Point","coordinates":[68983,42720]},{"type":"Point","coordinates":[68982,42720]},{"type":"Point","coordinates":[68983,42720]},{"type":"Point","coordinates":[75478,41463]},{"type":"Point","coordinates":[79672,40442]},{"type":"Point","coordinates":[68987,42731]},{"type":"Point","coordinates":[68981,42739]},{"type":"Point","coordinates":[60484,43796]},{"type":"Point","coordinates":[34317,42899]},{"type":"Point","coordinates":[805,32385]},{"type":"Point","coordinates":[68969,42748]},{"type":"Point","coordinates":[787,32378]},{"type":"Point","coordinates":[88733,37689]},{"type":"Point","coordinates":[81231,40048]},{"type":"Point","coordinates":[81231,40049]},{"type":"Point","coordinates":[88735,37691]},{"type":"Point","coordinates":[88732,37697]},{"type":"Point","coordinates":[76068,41366]},{"type":"Point","coordinates":[62900,43584]},{"type":"Point","coordinates":[88738,37701]},{"type":"Point","coordinates":[88737,37702]},{"type":"Point","coordinates":[88737,37702]},{"type":"Point","coordinates":[69002,42764]},{"type":"Point","coordinates":[88864,37661]},{"type":"Point","coordinates":[69001,42767]},{"type":"Point","coordinates":[62906,43593]},{"type":"Point","coordinates":[88740,37707]},{"type":"Point","coordinates":[62912,43594]},{"type":"Point","coordinates":[62906,43595]},{"type":"Point","coordinates":[69001,42771]},{"type":"Point","coordinates":[69303,42722]},{"type":"Point","coordinates":[62911,43597]},{"type":"Point","coordinates":[81409,40024]},{"type":"Point","coordinates":[81404,40031]},{"type":"Point","coordinates":[68996,42779]},{"type":"Point","coordinates":[69008,42778]},{"type":"Point","coordinates":[81408,40040]},{"type":"Point","coordinates":[81409,40040]},{"type":"Point","coordinates":[68998,42791]},{"type":"Point","coordinates":[820,32444]},{"type":"Point","coordinates":[75485,41544]},{"type":"Point","coordinates":[68998,42801]},{"type":"Point","coordinates":[88171,37948]},{"type":"Point","coordinates":[804,32464]},{"type":"Point","coordinates":[806,32465]},{"type":"Point","coordinates":[808,32467]},{"type":"Point","coordinates":[808,32467]},{"type":"Point","coordinates":[88371,37891]},{"type":"Point","coordinates":[1990,33037]},{"type":"Point","coordinates":[89199,37608]},{"type":"Point","coordinates":[89194,37613]},{"type":"Point","coordinates":[89193,37627]},{"type":"Point","coordinates":[91277,36870]},{"type":"Point","coordinates":[88381,37921]},{"type":"Point","coordinates":[34406,43067]},{"type":"Point","coordinates":[71664,42427]},{"type":"Point","coordinates":[68962,42914]},{"type":"Point","coordinates":[68964,42914]},{"type":"Point","coordinates":[68957,42915]},{"type":"Point","coordinates":[69202,42882]},{"type":"Point","coordinates":[573,32457]},{"type":"Point","coordinates":[568,32456]},{"type":"Point","coordinates":[69186,42889]},{"type":"Point","coordinates":[89457,37610]},{"type":"Point","coordinates":[89568,37571]},{"type":"Point","coordinates":[89568,37581]},{"type":"Point","coordinates":[89568,37583]},{"type":"Point","coordinates":[88349,38043]},{"type":"Point","coordinates":[71552,42519]},{"type":"Point","coordinates":[88346,38057]},{"type":"Point","coordinates":[86092,38820]},{"type":"Point","coordinates":[69186,42953]},{"type":"Point","coordinates":[68810,43016]},{"type":"Point","coordinates":[87203,38466]},{"type":"Point","coordinates":[83264,39718]},{"type":"Point","coordinates":[75855,41661]},{"type":"Point","coordinates":[71543,42555]},{"type":"Point","coordinates":[69186,42972]},{"type":"Point","coordinates":[88695,37965]},{"type":"Point","coordinates":[88695,37965]},{"type":"Point","coordinates":[83261,39730]},{"type":"Point","coordinates":[68982,43020]},{"type":"Point","coordinates":[86174,38849]},{"type":"Point","coordinates":[73434,42230]},{"type":"Point","coordinates":[73433,42230]},{"type":"Point","coordinates":[72573,42415]},{"type":"Point","coordinates":[88467,38100]},{"type":"Point","coordinates":[73538,42234]},{"type":"Point","coordinates":[88402,38141]},{"type":"Point","coordinates":[34634,43304]},{"type":"Point","coordinates":[47659,44503]},{"type":"Point","coordinates":[88457,38154]},{"type":"Point","coordinates":[85210,39233]},{"type":"Point","coordinates":[73348,42317]},{"type":"Point","coordinates":[82022,40207]},{"type":"Point","coordinates":[89323,37871]},{"type":"Point","coordinates":[89326,37870]},{"type":"Point","coordinates":[89326,37870]},{"type":"Point","coordinates":[89325,37879]},{"type":"Point","coordinates":[80656,40605]},{"type":"Point","coordinates":[89326,37882]},{"type":"Point","coordinates":[89326,37883]},{"type":"Point","coordinates":[88686,38109]},{"type":"Point","coordinates":[88691,38110]},{"type":"Point","coordinates":[69331,43093]},{"type":"Point","coordinates":[88687,38123]},{"type":"Point","coordinates":[81117,40511]},{"type":"Point","coordinates":[81119,40515]},{"type":"Point","coordinates":[88512,38206]},{"type":"Point","coordinates":[81355,40454]},{"type":"Point","coordinates":[81109,40528]},{"type":"Point","coordinates":[34823,43425]},{"type":"Point","coordinates":[34446,43372]},{"type":"Point","coordinates":[34687,43413]},{"type":"Point","coordinates":[64391,43853]},{"type":"Point","coordinates":[62666,44052]},{"type":"Point","coordinates":[34607,43409]},{"type":"Point","coordinates":[82997,40029]},{"type":"Point","coordinates":[88232,38355]},{"type":"Point","coordinates":[34291,43389]},{"type":"Point","coordinates":[555,32780]},{"type":"Point","coordinates":[555,32783]},{"type":"Point","coordinates":[34676,43454]},{"type":"Point","coordinates":[89327,37995]},{"type":"Point","coordinates":[62967,44072]},{"type":"Point","coordinates":[81139,40593]},{"type":"Point","coordinates":[89312,38010]},{"type":"Point","coordinates":[4095,34472]},{"type":"Point","coordinates":[877,33011]},{"type":"Point","coordinates":[844,32997]},{"type":"Point","coordinates":[89208,38104]},{"type":"Point","coordinates":[87955,38573]},{"type":"Point","coordinates":[34849,43595]},{"type":"Point","coordinates":[34848,43595]},{"type":"Point","coordinates":[34853,43597]},{"type":"Point","coordinates":[34846,43597]},{"type":"Point","coordinates":[34853,43599]},{"type":"Point","coordinates":[34855,43603]},{"type":"Point","coordinates":[34856,43604]},{"type":"Point","coordinates":[831,33046]},{"type":"Point","coordinates":[34616,43571]},{"type":"Point","coordinates":[826,33048]},{"type":"Point","coordinates":[826,33048]},{"type":"Point","coordinates":[62781,44208]},{"type":"Point","coordinates":[62780,44210]},{"type":"Point","coordinates":[62778,44228]},{"type":"Point","coordinates":[83022,40187]},{"type":"Point","coordinates":[81535,40627]},{"type":"Point","coordinates":[81534,40629]},{"type":"Point","coordinates":[81534,40631]},{"type":"Point","coordinates":[87259,38869]},{"type":"Point","coordinates":[87259,38871]},{"type":"Point","coordinates":[34617,43622]},{"type":"Point","coordinates":[88025,38618]},{"type":"Point","coordinates":[1111,33245]},{"type":"Point","coordinates":[84306,39855]},{"type":"Point","coordinates":[558,33004]},{"type":"Point","coordinates":[84661,39755]},{"type":"Point","coordinates":[557,33011]},{"type":"Point","coordinates":[62970,44276]},{"type":"Point","coordinates":[62863,44294]},{"type":"Point","coordinates":[64399,44124]},{"type":"Point","coordinates":[629,33059]},{"type":"Point","coordinates":[86618,39147]},{"type":"Point","coordinates":[84174,39929]},{"type":"Point","coordinates":[34727,43703]},{"type":"Point","coordinates":[86617,39172]},{"type":"Point","coordinates":[86619,39173]},{"type":"Point","coordinates":[34865,43743]},{"type":"Point","coordinates":[86624,39184]},{"type":"Point","coordinates":[86435,39248]},{"type":"Point","coordinates":[86437,39248]},{"type":"Point","coordinates":[80966,40905]},{"type":"Point","coordinates":[86434,39265]},{"type":"Point","coordinates":[80990,40908]},{"type":"Point","coordinates":[564,33094]},{"type":"Point","coordinates":[86620,39209]},{"type":"Point","coordinates":[34698,43754]},{"type":"Point","coordinates":[86615,39218]},{"type":"Point","coordinates":[85127,39700]},{"type":"Point","coordinates":[760,33223]},{"type":"Point","coordinates":[82455,40534]},{"type":"Point","coordinates":[82456,40536]},{"type":"Point","coordinates":[82452,40541]},{"type":"Point","coordinates":[86429,39326]},{"type":"Point","coordinates":[80966,40978]},{"type":"Point","coordinates":[80966,40980]},{"type":"Point","coordinates":[82446,40563]},{"type":"Point","coordinates":[34690,43813]},{"type":"Point","coordinates":[82446,40565]},{"type":"Point","coordinates":[34668,43812]},{"type":"Point","coordinates":[82446,40565]},{"type":"Point","coordinates":[82445,40569]},{"type":"Point","coordinates":[85151,39753]},{"type":"Point","coordinates":[85151,39754]},{"type":"Point","coordinates":[82443,40573]},{"type":"Point","coordinates":[72851,42916]},{"type":"Point","coordinates":[825,33311]},{"type":"Point","coordinates":[80920,41019]},{"type":"Point","coordinates":[72858,42928]},{"type":"Point","coordinates":[80698,41086]},{"type":"Point","coordinates":[80646,41102]},{"type":"Point","coordinates":[72450,43015]},{"type":"Point","coordinates":[88221,38770]},{"type":"Point","coordinates":[80912,41034]},{"type":"Point","coordinates":[82153,40689]},{"type":"Point","coordinates":[34653,43852]},{"type":"Point","coordinates":[80646,41113]},{"type":"Point","coordinates":[85094,39811]},{"type":"Point","coordinates":[34449,43824]},{"type":"Point","coordinates":[85246,39767]},{"type":"Point","coordinates":[86532,39353]},{"type":"Point","coordinates":[80619,41130]},{"type":"Point","coordinates":[80619,41130]},{"type":"Point","coordinates":[80620,41131]},{"type":"Point","coordinates":[86650,39320]},{"type":"Point","coordinates":[80617,41141]},{"type":"Point","coordinates":[34663,43875]},{"type":"Point","coordinates":[34662,43876]},{"type":"Point","coordinates":[34665,43876]},{"type":"Point","coordinates":[34665,43876]},{"type":"Point","coordinates":[80619,41144]},{"type":"Point","coordinates":[86485,39390]},{"type":"Point","coordinates":[80925,41075]},{"type":"Point","coordinates":[80927,41079]},{"type":"Point","coordinates":[85214,39818]},{"type":"Point","coordinates":[85183,39832]},{"type":"Point","coordinates":[86681,39355]},{"type":"Point","coordinates":[85227,39825]},{"type":"Point","coordinates":[85250,39823]},{"type":"Point","coordinates":[85250,39823]},{"type":"Point","coordinates":[85251,39826]},{"type":"Point","coordinates":[85195,39845]},{"type":"Point","coordinates":[34849,43949]},{"type":"Point","coordinates":[80838,41137]},{"type":"Point","coordinates":[82152,40772]},{"type":"Point","coordinates":[80699,41192]},{"type":"Point","coordinates":[80685,41197]},{"type":"Point","coordinates":[85237,39891]},{"type":"Point","coordinates":[86621,39450]},{"type":"Point","coordinates":[87346,39209]},{"type":"Point","coordinates":[86623,39452]},{"type":"Point","coordinates":[69417,43711]},{"type":"Point","coordinates":[86638,39458]},{"type":"Point","coordinates":[86638,39459]},{"type":"Point","coordinates":[86641,39463]},{"type":"Point","coordinates":[34396,43964]},{"type":"Point","coordinates":[86632,39469]},{"type":"Point","coordinates":[87734,39105]},{"type":"Point","coordinates":[86639,39476]},{"type":"Point","coordinates":[34607,44007]},{"type":"Point","coordinates":[86654,39474]},{"type":"Point","coordinates":[84550,40153]},{"type":"Point","coordinates":[84551,40155]},{"type":"Point","coordinates":[72777,43137]},{"type":"Point","coordinates":[84553,40158]},{"type":"Point","coordinates":[84553,40158]},{"type":"Point","coordinates":[84554,40160]},{"type":"Point","coordinates":[80833,41244]},{"type":"Point","coordinates":[526,33379]},{"type":"Point","coordinates":[81962,40933]},{"type":"Point","coordinates":[34497,44015]},{"type":"Point","coordinates":[34613,44036]},{"type":"Point","coordinates":[34620,44042]},{"type":"Point","coordinates":[65667,44354]},{"type":"Point","coordinates":[75814,42550]},{"type":"Point","coordinates":[76557,42397]},{"type":"Point","coordinates":[76557,42397]},{"type":"Point","coordinates":[1101,33732]},{"type":"Point","coordinates":[1101,33733]},{"type":"Point","coordinates":[536,33466]},{"type":"Point","coordinates":[86949,39481]},{"type":"Point","coordinates":[86763,39545]},{"type":"Point","coordinates":[86762,39546]},{"type":"Point","coordinates":[86761,39552]},{"type":"Point","coordinates":[82068,40999]},{"type":"Point","coordinates":[76914,42345]},{"type":"Point","coordinates":[86767,39573]},{"type":"Point","coordinates":[85167,40091]},{"type":"Point","coordinates":[85251,40076]},{"type":"Point","coordinates":[85180,40121]},{"type":"Point","coordinates":[84026,40482]},{"type":"Point","coordinates":[76461,42508]},{"type":"Point","coordinates":[88125,39158]},{"type":"Point","coordinates":[81767,41146]},{"type":"Point","coordinates":[84045,40484]},{"type":"Point","coordinates":[62640,44842]},{"type":"Point","coordinates":[86738,39637]},{"type":"Point","coordinates":[86738,39637]},{"type":"Point","coordinates":[86738,39638]},{"type":"Point","coordinates":[86732,39646]},{"type":"Point","coordinates":[81627,41205]},{"type":"Point","coordinates":[81580,41219]},{"type":"Point","coordinates":[81626,41208]},{"type":"Point","coordinates":[81625,41209]},{"type":"Point","coordinates":[81624,41212]},{"type":"Point","coordinates":[81624,41212]},{"type":"Point","coordinates":[81623,41214]},{"type":"Point","coordinates":[81623,41215]},{"type":"Point","coordinates":[81599,41231]},{"type":"Point","coordinates":[81599,41231]},{"type":"Point","coordinates":[76488,42545]},{"type":"Point","coordinates":[85005,40231]},{"type":"Point","coordinates":[84998,40243]},{"type":"Point","coordinates":[76855,42480]},{"type":"Point","coordinates":[82292,41065]},{"type":"Point","coordinates":[34409,44229]},{"type":"Point","coordinates":[83186,40815]},{"type":"Point","coordinates":[75920,42721]},{"type":"Point","coordinates":[72836,43381]},{"type":"Point","coordinates":[76857,42519]},{"type":"Point","coordinates":[4364,35418]},{"type":"Point","coordinates":[34544,44283]},{"type":"Point","coordinates":[86710,39744]},{"type":"Point","coordinates":[71973,43571]},{"type":"Point","coordinates":[82656,41007]},{"type":"Point","coordinates":[76300,42682]},{"type":"Point","coordinates":[86773,39758]},{"type":"Point","coordinates":[82553,41074]},{"type":"Point","coordinates":[7520,36810]},{"type":"Point","coordinates":[82031,41233]},{"type":"Point","coordinates":[84978,40359]},{"type":"Point","coordinates":[71974,43643]},{"type":"Point","coordinates":[71977,43646]},{"type":"Point","coordinates":[71976,43647]},{"type":"Point","coordinates":[71975,43647]},{"type":"Point","coordinates":[71977,43650]},{"type":"Point","coordinates":[84033,40694]},{"type":"Point","coordinates":[84032,40695]},{"type":"Point","coordinates":[84032,40695]},{"type":"Point","coordinates":[1005,33995]},{"type":"Point","coordinates":[81800,41359]},{"type":"Point","coordinates":[81913,41336]},{"type":"Point","coordinates":[84976,40437]},{"type":"Point","coordinates":[71977,43703]},{"type":"Point","coordinates":[76772,42696]},{"type":"Point","coordinates":[80401,41782]},{"type":"Point","coordinates":[81935,41359]},{"type":"Point","coordinates":[7457,36890]},{"type":"Point","coordinates":[86758,39887]},{"type":"Point","coordinates":[86663,39924]},{"type":"Point","coordinates":[82097,41335]},{"type":"Point","coordinates":[451,33800]},{"type":"Point","coordinates":[87966,39508]},{"type":"Point","coordinates":[4997,35889]},{"type":"Point","coordinates":[76066,42902]},{"type":"Point","coordinates":[81812,41442]},{"type":"Point","coordinates":[73203,43525]},{"type":"Point","coordinates":[73203,43531]},{"type":"Point","coordinates":[4996,35914]},{"type":"Point","coordinates":[81866,41441]},{"type":"Point","coordinates":[81867,41451]},{"type":"Point","coordinates":[81868,41451]},{"type":"Point","coordinates":[85224,40473]},{"type":"Point","coordinates":[86130,40186]},{"type":"Point","coordinates":[2027,34626]},{"type":"Point","coordinates":[85717,40350]},{"type":"Point","coordinates":[78007,42545]},{"type":"Point","coordinates":[83970,40921]},{"type":"Point","coordinates":[1109,34267]},{"type":"Point","coordinates":[4995,36033]},{"type":"Point","coordinates":[1098,34285]},{"type":"Point","coordinates":[86536,40152]},{"type":"Point","coordinates":[76599,42935]},{"type":"Point","coordinates":[82231,41474]},{"type":"Point","coordinates":[382,33947]},{"type":"Point","coordinates":[77171,42809]},{"type":"Point","coordinates":[72966,43736]},{"type":"Point","coordinates":[391,33979]},{"type":"Point","coordinates":[1105,34323]},{"type":"Point","coordinates":[1103,34331]},{"type":"Point","coordinates":[354,33974]},{"type":"Point","coordinates":[84625,40810]},{"type":"Point","coordinates":[84625,40810]},{"type":"Point","coordinates":[697,34147]},{"type":"Point","coordinates":[76784,42946]},{"type":"Point","coordinates":[72960,43790]},{"type":"Point","coordinates":[87161,40019]},{"type":"Point","coordinates":[352,34005]},{"type":"Point","coordinates":[76787,42971]},{"type":"Point","coordinates":[353,34017]},{"type":"Point","coordinates":[76777,42980]},{"type":"Point","coordinates":[72868,43839]},{"type":"Point","coordinates":[86891,40141]},{"type":"Point","coordinates":[13,33875]},{"type":"Point","coordinates":[76010,43177]},{"type":"Point","coordinates":[368,34056]},{"type":"Point","coordinates":[84984,40768]},{"type":"Point","coordinates":[73075,43819]},{"type":"Point","coordinates":[69082,44563]},{"type":"Point","coordinates":[77112,42957]},{"type":"Point","coordinates":[76754,43048]},{"type":"Point","coordinates":[402,34120]},{"type":"Point","coordinates":[76718,43076]},{"type":"Point","coordinates":[72444,44012]},{"type":"Point","coordinates":[81248,41943]},{"type":"Point","coordinates":[79288,42470]},{"type":"Point","coordinates":[76577,43137]},{"type":"Point","coordinates":[501,34207]},{"type":"Point","coordinates":[86817,40267]},{"type":"Point","coordinates":[460,34205]},{"type":"Point","coordinates":[81825,41806]},{"type":"Point","coordinates":[78095,42795]},{"type":"Point","coordinates":[86788,40294]},{"type":"Point","coordinates":[85142,40824]},{"type":"Point","coordinates":[89182,39491]},{"type":"Point","coordinates":[82016,41789]},{"type":"Point","coordinates":[82022,41791]},{"type":"Point","coordinates":[347,34206]},{"type":"Point","coordinates":[88602,39738]},{"type":"Point","coordinates":[361,34222]},{"type":"Point","coordinates":[318,34202]},{"type":"Point","coordinates":[318,34202]},{"type":"Point","coordinates":[82139,41787]},{"type":"Point","coordinates":[330,34216]},{"type":"Point","coordinates":[76805,43179]},{"type":"Point","coordinates":[76802,43180]},{"type":"Point","coordinates":[72295,44144]},{"type":"Point","coordinates":[6460,36998]},{"type":"Point","coordinates":[1579,34842]},{"type":"Point","coordinates":[75041,43607]},{"type":"Point","coordinates":[82104,41834]},{"type":"Point","coordinates":[567,34382]},{"type":"Point","coordinates":[86002,40672]},{"type":"Point","coordinates":[76958,43207]},{"type":"Point","coordinates":[76951,43209]},{"type":"Point","coordinates":[76970,43205]},{"type":"Point","coordinates":[370,34308]},{"type":"Point","coordinates":[76975,43207]},{"type":"Point","coordinates":[76950,43213]},{"type":"Point","coordinates":[76950,43215]},{"type":"Point","coordinates":[76971,43213]},{"type":"Point","coordinates":[823,34533]},{"type":"Point","coordinates":[76555,43312]},{"type":"Point","coordinates":[76555,43312]},{"type":"Point","coordinates":[76976,43215]},{"type":"Point","coordinates":[76955,43220]},{"type":"Point","coordinates":[85724,40789]},{"type":"Point","coordinates":[86813,40436]},{"type":"Point","coordinates":[76558,43318]},{"type":"Point","coordinates":[76954,43225]},{"type":"Point","coordinates":[73002,44086]},{"type":"Point","coordinates":[76952,43226]},{"type":"Point","coordinates":[76959,43226]},{"type":"Point","coordinates":[76967,43225]},{"type":"Point","coordinates":[76563,43322]},{"type":"Point","coordinates":[76983,43227]},{"type":"Point","coordinates":[86748,40469]},{"type":"Point","coordinates":[76981,43233]},{"type":"Point","coordinates":[7223,37391]},{"type":"Point","coordinates":[7238,37407]},{"type":"Point","coordinates":[76909,43261]},{"type":"Point","coordinates":[76909,43263]},{"type":"Point","coordinates":[76910,43263]},{"type":"Point","coordinates":[76907,43264]},{"type":"Point","coordinates":[76908,43264]},{"type":"Point","coordinates":[76909,43264]},{"type":"Point","coordinates":[713,34519]},{"type":"Point","coordinates":[76908,43266]},{"type":"Point","coordinates":[76908,43266]},{"type":"Point","coordinates":[76908,43266]},{"type":"Point","coordinates":[76909,43266]},{"type":"Point","coordinates":[76915,43265]},{"type":"Point","coordinates":[76908,43266]},{"type":"Point","coordinates":[88578,39881]},{"type":"Point","coordinates":[498,34426]},{"type":"Point","coordinates":[76558,43359]},{"type":"Point","coordinates":[7218,37417]},{"type":"Point","coordinates":[7220,37418]},{"type":"Point","coordinates":[77024,43255]},{"type":"Point","coordinates":[76999,43261]},{"type":"Point","coordinates":[478,34429]},{"type":"Point","coordinates":[77019,43264]},{"type":"Point","coordinates":[77017,43264]},{"type":"Point","coordinates":[76835,43308]},{"type":"Point","coordinates":[76930,43287]},{"type":"Point","coordinates":[76911,43295]},{"type":"Point","coordinates":[77069,43258]},{"type":"Point","coordinates":[76900,43298]},{"type":"Point","coordinates":[77019,43272]},{"type":"Point","coordinates":[77018,43272]},{"type":"Point","coordinates":[423,34415]},{"type":"Point","coordinates":[76852,43313]},{"type":"Point","coordinates":[77018,43274]},{"type":"Point","coordinates":[365,34388]},{"type":"Point","coordinates":[318,34366]},{"type":"Point","coordinates":[319,34376]},{"type":"Point","coordinates":[321,34377]},{"type":"Point","coordinates":[77068,43274]},{"type":"Point","coordinates":[77066,43275]},{"type":"Point","coordinates":[77067,43277]},{"type":"Point","coordinates":[77068,43277]},{"type":"Point","coordinates":[77062,43278]},{"type":"Point","coordinates":[77054,43281]},{"type":"Point","coordinates":[334,34389]},{"type":"Point","coordinates":[77064,43279]},{"type":"Point","coordinates":[77063,43279]},{"type":"Point","coordinates":[7198,37447]},{"type":"Point","coordinates":[295,34371]},{"type":"Point","coordinates":[77054,43282]},{"type":"Point","coordinates":[76864,43327]},{"type":"Point","coordinates":[77059,43281]},{"type":"Point","coordinates":[77059,43282]},{"type":"Point","coordinates":[77059,43282]},{"type":"Point","coordinates":[342,34397]},{"type":"Point","coordinates":[77057,43284]},{"type":"Point","coordinates":[77057,43285]},{"type":"Point","coordinates":[77057,43285]},{"type":"Point","coordinates":[77057,43285]},{"type":"Point","coordinates":[77057,43285]},{"type":"Point","coordinates":[77057,43285]},{"type":"Point","coordinates":[77056,43285]},{"type":"Point","coordinates":[86859,40511]},{"type":"Point","coordinates":[77058,43288]},{"type":"Point","coordinates":[76841,43340]},{"type":"Point","coordinates":[76857,43338]},{"type":"Point","coordinates":[924,34682]},{"type":"Point","coordinates":[86826,40529]},{"type":"Point","coordinates":[76850,43344]},{"type":"Point","coordinates":[86872,40518]},{"type":"Point","coordinates":[76828,43354]},{"type":"Point","coordinates":[76828,43354]},{"type":"Point","coordinates":[76830,43354]},{"type":"Point","coordinates":[86865,40523]},{"type":"Point","coordinates":[86888,40516]},{"type":"Point","coordinates":[86827,40537]},{"type":"Point","coordinates":[76834,43355]},{"type":"Point","coordinates":[76834,43355]},{"type":"Point","coordinates":[76835,43355]},{"type":"Point","coordinates":[76837,43355]},{"type":"Point","coordinates":[76832,43357]},{"type":"Point","coordinates":[7198,37470]},{"type":"Point","coordinates":[76866,43350]},{"type":"Point","coordinates":[76837,43358]},{"type":"Point","coordinates":[76838,43358]},{"type":"Point","coordinates":[76840,43358]},{"type":"Point","coordinates":[76837,43359]},{"type":"Point","coordinates":[76838,43360]},{"type":"Point","coordinates":[76838,43360]},{"type":"Point","coordinates":[76826,43364]},{"type":"Point","coordinates":[76862,43356]},{"type":"Point","coordinates":[76838,43362]},{"type":"Point","coordinates":[76845,43363]},{"type":"Point","coordinates":[86839,40545]},{"type":"Point","coordinates":[77330,43250]},{"type":"Point","coordinates":[86860,40539]},{"type":"Point","coordinates":[86836,40547]},{"type":"Point","coordinates":[76843,43366]},{"type":"Point","coordinates":[76842,43368]},{"type":"Point","coordinates":[76871,43362]},{"type":"Point","coordinates":[76844,43369]},{"type":"Point","coordinates":[76845,43369]},{"type":"Point","coordinates":[84848,41187]},{"type":"Point","coordinates":[76840,43371]},{"type":"Point","coordinates":[86869,40543]},{"type":"Point","coordinates":[76849,43372]},{"type":"Point","coordinates":[76851,43374]},{"type":"Point","coordinates":[76842,43378]},{"type":"Point","coordinates":[474,34505]},{"type":"Point","coordinates":[76836,43380]},{"type":"Point","coordinates":[7235,37517]},{"type":"Point","coordinates":[286,34426]},{"type":"Point","coordinates":[7281,37546]},{"type":"Point","coordinates":[395,34484]},{"type":"Point","coordinates":[76865,43401]},{"type":"Point","coordinates":[7246,37544]},{"type":"Point","coordinates":[7242,37543]},{"type":"Point","coordinates":[7244,37544]},{"type":"Point","coordinates":[589,34597]},{"type":"Point","coordinates":[282,34450]},{"type":"Point","coordinates":[87199,40477]},{"type":"Point","coordinates":[277,34456]},{"type":"Point","coordinates":[86583,40688]},{"type":"Point","coordinates":[86749,40634]},{"type":"Point","coordinates":[6504,37255]},{"type":"Point","coordinates":[86753,40635]},{"type":"Point","coordinates":[76555,43498]},{"type":"Point","coordinates":[86756,40640]},{"type":"Point","coordinates":[76859,43429]},{"type":"Point","coordinates":[272,34465]},{"type":"Point","coordinates":[265,34462]},{"type":"Point","coordinates":[5778,36960]},{"type":"Point","coordinates":[6133,37115]},{"type":"Point","coordinates":[6133,37116]},{"type":"Point","coordinates":[0,34346]},{"type":"Point","coordinates":[72833,44313]},{"type":"Point","coordinates":[72092,44459]},{"type":"Point","coordinates":[53162,46433]},{"type":"Point","coordinates":[76713,43484]},{"type":"Point","coordinates":[72105,44466]},{"type":"Point","coordinates":[76549,43530]},{"type":"Point","coordinates":[7224,37593]},{"type":"Point","coordinates":[72098,44474]},{"type":"Point","coordinates":[86608,40727]},{"type":"Point","coordinates":[86605,40729]},{"type":"Point","coordinates":[7232,37603]},{"type":"Point","coordinates":[83603,41670]},{"type":"Point","coordinates":[86598,40735]},{"type":"Point","coordinates":[85988,40933]},{"type":"Point","coordinates":[72104,44489]},{"type":"Point","coordinates":[72104,44489]},{"type":"Point","coordinates":[7218,37616]},{"type":"Point","coordinates":[86970,40629]},{"type":"Point","coordinates":[86595,40764]},{"type":"Point","coordinates":[294,34589]},{"type":"Point","coordinates":[355,34620]},{"type":"Point","coordinates":[292,34590]},{"type":"Point","coordinates":[335,34611]},{"type":"Point","coordinates":[355,34623]},{"type":"Point","coordinates":[271,34590]},{"type":"Point","coordinates":[85704,41113]},{"type":"Point","coordinates":[72915,44423]},{"type":"Point","coordinates":[86014,41026]},{"type":"Point","coordinates":[86015,41029]},{"type":"Point","coordinates":[77222,43490]},{"type":"Point","coordinates":[1018,34974]},{"type":"Point","coordinates":[76547,43652]},{"type":"Point","coordinates":[1307,35120]},{"type":"Point","coordinates":[1307,35120]},{"type":"Point","coordinates":[85508,41207]},{"type":"Point","coordinates":[76878,43589]},{"type":"Point","coordinates":[72654,44513]},{"type":"Point","coordinates":[72415,44564]},{"type":"Point","coordinates":[72518,44548]},{"type":"Point","coordinates":[1326,35162]},{"type":"Point","coordinates":[83176,41969]},{"type":"Point","coordinates":[74582,44158]},{"type":"Point","coordinates":[74603,44159]},{"type":"Point","coordinates":[6388,37445]},{"type":"Point","coordinates":[72671,44561]},{"type":"Point","coordinates":[72676,44561]},{"type":"Point","coordinates":[76733,43695]},{"type":"Point","coordinates":[86965,40815]},{"type":"Point","coordinates":[72633,44580]},{"type":"Point","coordinates":[86969,40816]},{"type":"Point","coordinates":[86969,40817]},{"type":"Point","coordinates":[73040,44506]},{"type":"Point","coordinates":[968,35059]},{"type":"Point","coordinates":[86128,41106]},{"type":"Point","coordinates":[6945,37711]},{"type":"Point","coordinates":[86129,41110]},{"type":"Point","coordinates":[72006,44728]},{"type":"Point","coordinates":[994,35095]},{"type":"Point","coordinates":[936,35069]},{"type":"Point","coordinates":[810,35010]},{"type":"Point","coordinates":[76584,43774]},{"type":"Point","coordinates":[949,35078]},{"type":"Point","coordinates":[946,35085]},{"type":"Point","coordinates":[951,35088]},{"type":"Point","coordinates":[945,35087]},{"type":"Point","coordinates":[945,35088]},{"type":"Point","coordinates":[945,35088]},{"type":"Point","coordinates":[946,35089]},{"type":"Point","coordinates":[946,35091]},{"type":"Point","coordinates":[948,35092]},{"type":"Point","coordinates":[949,35094]},{"type":"Point","coordinates":[949,35094]},{"type":"Point","coordinates":[949,35095]},{"type":"Point","coordinates":[950,35098]},{"type":"Point","coordinates":[950,35098]},{"type":"Point","coordinates":[952,35099]},{"type":"Point","coordinates":[955,35101]},{"type":"Point","coordinates":[955,35101]},{"type":"Point","coordinates":[955,35101]},{"type":"Point","coordinates":[955,35101]},{"type":"Point","coordinates":[955,35101]},{"type":"Point","coordinates":[955,35101]},{"type":"Point","coordinates":[955,35101]},{"type":"Point","coordinates":[72902,44596]},{"type":"Point","coordinates":[86707,40980]},{"type":"Point","coordinates":[86495,41050]},{"type":"Point","coordinates":[76762,43774]},{"type":"Point","coordinates":[74590,44262]},{"type":"Point","coordinates":[86079,41205]},{"type":"Point","coordinates":[85075,41531]},{"type":"Point","coordinates":[86236,41167]},{"type":"Point","coordinates":[86093,41217]},{"type":"Point","coordinates":[86094,41217]},{"type":"Point","coordinates":[67061,45642]},{"type":"Point","coordinates":[74544,44314]},{"type":"Point","coordinates":[86129,41227]},{"type":"Point","coordinates":[83762,41985]},{"type":"Point","coordinates":[6148,37526]},{"type":"Point","coordinates":[7168,37958]},{"type":"Point","coordinates":[61942,46318]},{"type":"Point","coordinates":[87943,40669]},{"type":"Point","coordinates":[72422,44822]},{"type":"Point","coordinates":[72423,44828]},{"type":"Point","coordinates":[338,34973]},{"type":"Point","coordinates":[85727,41442]},{"type":"Point","coordinates":[345,35007]},{"type":"Point","coordinates":[361,35027]},{"type":"Point","coordinates":[357,35026]},{"type":"Point","coordinates":[384,35040]},{"type":"Point","coordinates":[86526,41228]},{"type":"Point","coordinates":[381,35041]},{"type":"Point","coordinates":[410,35066]},{"type":"Point","coordinates":[72367,44910]},{"type":"Point","coordinates":[72367,44911]},{"type":"Point","coordinates":[72368,44912]},{"type":"Point","coordinates":[50129,46946]},{"type":"Point","coordinates":[596,35169]},{"type":"Point","coordinates":[596,35169]},{"type":"Point","coordinates":[429,35090]},{"type":"Point","coordinates":[88962,40443]},{"type":"Point","coordinates":[72350,44943]},{"type":"Point","coordinates":[68716,45583]},{"type":"Point","coordinates":[68759,45578]},{"type":"Point","coordinates":[68757,45579]},{"type":"Point","coordinates":[68743,45583]},{"type":"Point","coordinates":[72533,44914]},{"type":"Point","coordinates":[72457,44928]},{"type":"Point","coordinates":[86164,41401]},{"type":"Point","coordinates":[1189,35481]},{"type":"Point","coordinates":[1188,35484]},{"type":"Point","coordinates":[72465,44936]},{"type":"Point","coordinates":[1199,35490]},{"type":"Point","coordinates":[57295,46824]},{"type":"Point","coordinates":[57295,46825]},{"type":"Point","coordinates":[560,35189]},{"type":"Point","coordinates":[72451,44943]},{"type":"Point","coordinates":[73095,44818]},{"type":"Point","coordinates":[73095,44820]},{"type":"Point","coordinates":[7182,38134]},{"type":"Point","coordinates":[84734,41873]},{"type":"Point","coordinates":[4949,37199]},{"type":"Point","coordinates":[73129,44826]},{"type":"Point","coordinates":[484,35177]},{"type":"Point","coordinates":[1186,35510]},{"type":"Point","coordinates":[1184,35515]},{"type":"Point","coordinates":[501,35192]},{"type":"Point","coordinates":[1200,35529]},{"type":"Point","coordinates":[86660,41284]},{"type":"Point","coordinates":[76227,44182]},{"type":"Point","coordinates":[81315,42904]},{"type":"Point","coordinates":[69026,45596]},{"type":"Point","coordinates":[69026,45596]},{"type":"Point","coordinates":[64537,46233]},{"type":"Point","coordinates":[5759,37596]},{"type":"Point","coordinates":[5759,37596]},{"type":"Point","coordinates":[73194,44861]},{"type":"Point","coordinates":[85816,41600]},{"type":"Point","coordinates":[85822,41599]},{"type":"Point","coordinates":[72475,45020]},{"type":"Point","coordinates":[72475,45021]},{"type":"Point","coordinates":[72477,45023]},{"type":"Point","coordinates":[72478,45023]},{"type":"Point","coordinates":[72477,45024]},{"type":"Point","coordinates":[87290,41129]},{"type":"Point","coordinates":[68485,45733]},{"type":"Point","coordinates":[72434,45043]},{"type":"Point","coordinates":[58004,46887]},{"type":"Point","coordinates":[86401,41448]},{"type":"Point","coordinates":[296,35189]},{"type":"Point","coordinates":[1285,35669]},{"type":"Point","coordinates":[68792,45724]},{"type":"Point","coordinates":[72980,44975]},{"type":"Point","coordinates":[72979,44976]},{"type":"Point","coordinates":[72983,44978]},{"type":"Point","coordinates":[72489,45081]},{"type":"Point","coordinates":[84734,42009]},{"type":"Point","coordinates":[1349,35717]},{"type":"Point","coordinates":[85163,41878]},{"type":"Point","coordinates":[81300,43019]},{"type":"Point","coordinates":[64995,46285]},{"type":"Point","coordinates":[83608,42389]},{"type":"Point","coordinates":[83609,42390]},{"type":"Point","coordinates":[81305,43051]},{"type":"Point","coordinates":[72214,45184]},{"type":"Point","coordinates":[81541,43004]},{"type":"Point","coordinates":[87322,41246]},{"type":"Point","coordinates":[72226,45216]},{"type":"Point","coordinates":[70356,45568]},{"type":"Point","coordinates":[5226,37553]},{"type":"Point","coordinates":[81318,43116]},{"type":"Point","coordinates":[72721,45147]},{"type":"Point","coordinates":[72724,45153]},{"type":"Point","coordinates":[1113,35727]},{"type":"Point","coordinates":[86118,41727]},{"type":"Point","coordinates":[7150,38432]},{"type":"Point","coordinates":[72679,45217]},{"type":"Point","coordinates":[72680,45218]},{"type":"Point","coordinates":[72679,45218]},{"type":"Point","coordinates":[72478,45260]},{"type":"Point","coordinates":[72684,45225]},{"type":"Point","coordinates":[86733,41557]},{"type":"Point","coordinates":[86744,41554]},{"type":"Point","coordinates":[617,35561]},{"type":"Point","coordinates":[691,35597]},{"type":"Point","coordinates":[706,35615]},{"type":"Point","coordinates":[84516,42275]},{"type":"Point","coordinates":[706,35618]},{"type":"Point","coordinates":[709,35622]},{"type":"Point","coordinates":[704,35620]},{"type":"Point","coordinates":[703,35622]},{"type":"Point","coordinates":[90427,40304]},{"type":"Point","coordinates":[707,35625]},{"type":"Point","coordinates":[72601,45264]},{"type":"Point","coordinates":[714,35628]},{"type":"Point","coordinates":[86643,41610]},{"type":"Point","coordinates":[709,35629]},{"type":"Point","coordinates":[707,35629]},{"type":"Point","coordinates":[710,35636]},{"type":"Point","coordinates":[835,35701]},{"type":"Point","coordinates":[563,35576]},{"type":"Point","coordinates":[51615,47364]},{"type":"Point","coordinates":[84370,42353]},{"type":"Point","coordinates":[690,35649]},{"type":"Point","coordinates":[605,35624]},{"type":"Point","coordinates":[580,35613]},{"type":"Point","coordinates":[744,35693]},{"type":"Point","coordinates":[744,35693]},{"type":"Point","coordinates":[5892,38001]},{"type":"Point","coordinates":[85709,41964]},{"type":"Point","coordinates":[5887,38004]},{"type":"Point","coordinates":[5887,38004]},{"type":"Point","coordinates":[5883,38003]},{"type":"Point","coordinates":[5886,38006]},{"type":"Point","coordinates":[5886,38007]},{"type":"Point","coordinates":[5886,38007]},{"type":"Point","coordinates":[5886,38007]},{"type":"Point","coordinates":[5886,38007]},{"type":"Point","coordinates":[5886,38007]},{"type":"Point","coordinates":[5884,38007]},{"type":"Point","coordinates":[5885,38008]},{"type":"Point","coordinates":[5885,38008]},{"type":"Point","coordinates":[5885,38008]},{"type":"Point","coordinates":[5883,38010]},{"type":"Point","coordinates":[5885,38014]},{"type":"Point","coordinates":[5885,38014]},{"type":"Point","coordinates":[5885,38014]},{"type":"Point","coordinates":[5885,38014]},{"type":"Point","coordinates":[5885,38014]},{"type":"Point","coordinates":[5885,38014]},{"type":"Point","coordinates":[85718,41988]},{"type":"Point","coordinates":[85771,41975]},{"type":"Point","coordinates":[1229,35958]},{"type":"Point","coordinates":[86432,41771]},{"type":"Point","coordinates":[87014,41599]},{"type":"Point","coordinates":[85847,41978]},{"type":"Point","coordinates":[75462,44783]},{"type":"Point","coordinates":[53801,47427]},{"type":"Point","coordinates":[86053,41921]},{"type":"Point","coordinates":[85765,42022]},{"type":"Point","coordinates":[85770,42023]},{"type":"Point","coordinates":[72866,45346]},{"type":"Point","coordinates":[86051,41937]},{"type":"Point","coordinates":[85769,42030]},{"type":"Point","coordinates":[80243,43649]},{"type":"Point","coordinates":[86681,41742]},{"type":"Point","coordinates":[87368,41522]},{"type":"Point","coordinates":[62397,46927]},{"type":"Point","coordinates":[84463,42461]},{"type":"Point","coordinates":[86057,41964]},{"type":"Point","coordinates":[76170,44685]},{"type":"Point","coordinates":[85886,42037]},{"type":"Point","coordinates":[74520,45057]},{"type":"Point","coordinates":[86051,41989]},{"type":"Point","coordinates":[34594,46291]},{"type":"Point","coordinates":[51714,47533]},{"type":"Point","coordinates":[73254,45328]},{"type":"Point","coordinates":[86326,41910]},{"type":"Point","coordinates":[86325,41910]},{"type":"Point","coordinates":[86325,41910]},{"type":"Point","coordinates":[86325,41910]},{"type":"Point","coordinates":[85907,42050]},{"type":"Point","coordinates":[85894,42063]},{"type":"Point","coordinates":[86461,41883]},{"type":"Point","coordinates":[73197,45379]},{"type":"Point","coordinates":[86140,42009]},{"type":"Point","coordinates":[81553,43384]},{"type":"Point","coordinates":[84486,42535]},{"type":"Point","coordinates":[86308,41971]},{"type":"Point","coordinates":[73205,45400]},{"type":"Point","coordinates":[766,35923]},{"type":"Point","coordinates":[86227,42023]},{"type":"Point","coordinates":[87108,41737]},{"type":"Point","coordinates":[86227,42026]},{"type":"Point","coordinates":[83372,42914]},{"type":"Point","coordinates":[85886,42149]},{"type":"Point","coordinates":[85898,42146]},{"type":"Point","coordinates":[85832,42168]},{"type":"Point","coordinates":[86325,42013]},{"type":"Point","coordinates":[85888,42155]},{"type":"Point","coordinates":[86342,42010]},{"type":"Point","coordinates":[86343,42012]},{"type":"Point","coordinates":[86473,41975]},{"type":"Point","coordinates":[86499,41971]},{"type":"Point","coordinates":[86473,41985]},{"type":"Point","coordinates":[86349,42026]},{"type":"Point","coordinates":[86476,41994]},{"type":"Point","coordinates":[88568,41294]},{"type":"Point","coordinates":[86210,42084]},{"type":"Point","coordinates":[86351,42047]},{"type":"Point","coordinates":[85918,42189]},{"type":"Point","coordinates":[83454,42954]},{"type":"Point","coordinates":[86471,42026]},{"type":"Point","coordinates":[89010,41172]},{"type":"Point","coordinates":[86379,42061]},{"type":"Point","coordinates":[85692,42290]},{"type":"Point","coordinates":[85986,42199]},{"type":"Point","coordinates":[85973,42206]},{"type":"Point","coordinates":[86507,42038]},{"type":"Point","coordinates":[74675,45224]},{"type":"Point","coordinates":[84332,42742]},{"type":"Point","coordinates":[53746,47712]},{"type":"Point","coordinates":[86107,42189]},{"type":"Point","coordinates":[86019,42217]},{"type":"Point","coordinates":[86048,42209]},{"type":"Point","coordinates":[86024,42217]},{"type":"Point","coordinates":[72445,45698]},{"type":"Point","coordinates":[86486,42070]},{"type":"Point","coordinates":[72447,45699]},{"type":"Point","coordinates":[225,35820]},{"type":"Point","coordinates":[1261,36312]},{"type":"Point","coordinates":[233,35828]},{"type":"Point","coordinates":[72488,45703]},{"type":"Point","coordinates":[86001,42249]},{"type":"Point","coordinates":[86005,42248]},{"type":"Point","coordinates":[716,36073]},{"type":"Point","coordinates":[86002,42256]},{"type":"Point","coordinates":[86000,42258]},{"type":"Point","coordinates":[86001,42260]},{"type":"Point","coordinates":[86274,42173]},{"type":"Point","coordinates":[85844,42313]},{"type":"Point","coordinates":[310,35898]},{"type":"Point","coordinates":[311,35900]},{"type":"Point","coordinates":[86374,42161]},{"type":"Point","coordinates":[74698,45299]},{"type":"Point","coordinates":[86293,42193]},{"type":"Point","coordinates":[86293,42193]},{"type":"Point","coordinates":[86294,42193]},{"type":"Point","coordinates":[86294,42193]},{"type":"Point","coordinates":[61362,47340]},{"type":"Point","coordinates":[86262,42207]},{"type":"Point","coordinates":[86363,42175]},{"type":"Point","coordinates":[86292,42199]},{"type":"Point","coordinates":[61376,47343]},{"type":"Point","coordinates":[86170,42242]},{"type":"Point","coordinates":[79340,44229]},{"type":"Point","coordinates":[86296,42217]},{"type":"Point","coordinates":[86296,42218]},{"type":"Point","coordinates":[86157,42263]},{"type":"Point","coordinates":[6643,38767]},{"type":"Point","coordinates":[57788,47637]},{"type":"Point","coordinates":[57788,47638]},{"type":"Point","coordinates":[57788,47638]},{"type":"Point","coordinates":[86292,42227]},{"type":"Point","coordinates":[86292,42227]},{"type":"Point","coordinates":[57992,47631]},{"type":"Point","coordinates":[57933,47637]},{"type":"Point","coordinates":[86287,42234]},{"type":"Point","coordinates":[83345,43144]},{"type":"Point","coordinates":[80990,43812]},{"type":"Point","coordinates":[57987,47640]},{"type":"Point","coordinates":[58032,47638]},{"type":"Point","coordinates":[421,36019]},{"type":"Point","coordinates":[72211,45852]},{"type":"Point","coordinates":[85625,42458]},{"type":"Point","coordinates":[80974,43828]},{"type":"Point","coordinates":[74686,45357]},{"type":"Point","coordinates":[74683,45358]},{"type":"Point","coordinates":[85625,42463]},{"type":"Point","coordinates":[74683,45359]},{"type":"Point","coordinates":[86008,42342]},{"type":"Point","coordinates":[6764,38848]},{"type":"Point","coordinates":[6762,38848]},{"type":"Point","coordinates":[6763,38848]},{"type":"Point","coordinates":[85626,42466]},{"type":"Point","coordinates":[74686,45366]},{"type":"Point","coordinates":[86491,42194]},{"type":"Point","coordinates":[70119,46251]},{"type":"Point","coordinates":[7027,38969]},{"type":"Point","coordinates":[86310,42260]},{"type":"Point","coordinates":[85901,42393]},{"type":"Point","coordinates":[86953,42052]},{"type":"Point","coordinates":[52392,47876]},{"type":"Point","coordinates":[80942,43863]},{"type":"Point","coordinates":[86304,42273]},{"type":"Point","coordinates":[86306,42272]},{"type":"Point","coordinates":[83915,43021]},{"type":"Point","coordinates":[58024,47685]},{"type":"Point","coordinates":[58033,47693]},{"type":"Point","coordinates":[57973,47703]},{"type":"Point","coordinates":[7015,39016]},{"type":"Point","coordinates":[86067,42391]},{"type":"Point","coordinates":[86168,42371]},{"type":"Point","coordinates":[86169,42372]},{"type":"Point","coordinates":[85734,42519]},{"type":"Point","coordinates":[85409,42622]},{"type":"Point","coordinates":[86194,42379]},{"type":"Point","coordinates":[86194,42379]},{"type":"Point","coordinates":[86194,42379]},{"type":"Point","coordinates":[86196,42379]},{"type":"Point","coordinates":[86279,42352]},{"type":"Point","coordinates":[85985,42447]},{"type":"Point","coordinates":[84220,42997]},{"type":"Point","coordinates":[85742,42531]},{"type":"Point","coordinates":[85410,42641]},{"type":"Point","coordinates":[81315,43852]},{"type":"Point","coordinates":[84741,42853]},{"type":"Point","coordinates":[81315,43852]},{"type":"Point","coordinates":[85737,42547]},{"type":"Point","coordinates":[86459,42317]},{"type":"Point","coordinates":[58074,47768]},{"type":"Point","coordinates":[86175,42423]},{"type":"Point","coordinates":[823,36360]},{"type":"Point","coordinates":[821,36360]},{"type":"Point","coordinates":[819,36360]},{"type":"Point","coordinates":[80764,44034]},{"type":"Point","coordinates":[83946,43131]},{"type":"Point","coordinates":[62030,47482]},{"type":"Point","coordinates":[86463,42355]},{"type":"Point","coordinates":[86225,42434]},{"type":"Point","coordinates":[265,36120]},{"type":"Point","coordinates":[264,36123]},{"type":"Point","coordinates":[908,36430]},{"type":"Point","coordinates":[86252,42442]},{"type":"Point","coordinates":[6650,38984]},{"type":"Point","coordinates":[86464,42376]},{"type":"Point","coordinates":[86504,42365]},{"type":"Point","coordinates":[86505,42366]},{"type":"Point","coordinates":[86469,42379]},{"type":"Point","coordinates":[86289,42437]},{"type":"Point","coordinates":[85731,42617]},{"type":"Point","coordinates":[86114,42495]},{"type":"Point","coordinates":[86293,42438]},{"type":"Point","coordinates":[86292,42438]},{"type":"Point","coordinates":[86355,42419]},{"type":"Point","coordinates":[86359,42419]},{"type":"Point","coordinates":[86116,42499]},{"type":"Point","coordinates":[86389,42412]},{"type":"Point","coordinates":[86352,42427]},{"type":"Point","coordinates":[86368,42423]},{"type":"Point","coordinates":[80858,44061]},{"type":"Point","coordinates":[85127,42821]},{"type":"Point","coordinates":[84588,42989]},{"type":"Point","coordinates":[85138,42820]},{"type":"Point","coordinates":[86182,42492]},{"type":"Point","coordinates":[85908,42580]},{"type":"Point","coordinates":[86184,42495]},{"type":"Point","coordinates":[84271,43094]},{"type":"Point","coordinates":[86185,42497]},{"type":"Point","coordinates":[84405,43057]},{"type":"Point","coordinates":[86429,42425]},{"type":"Point","coordinates":[86176,42511]},{"type":"Point","coordinates":[58057,47867]},{"type":"Point","coordinates":[83960,43203]},{"type":"Point","coordinates":[89191,41509]},{"type":"Point","coordinates":[86276,42492]},{"type":"Point","coordinates":[58072,47881]},{"type":"Point","coordinates":[86465,42434]},{"type":"Point","coordinates":[58062,47883]},{"type":"Point","coordinates":[81982,43794]},{"type":"Point","coordinates":[86309,42489]},{"type":"Point","coordinates":[86278,42505]},{"type":"Point","coordinates":[58017,47896]},{"type":"Point","coordinates":[86224,42528]},{"type":"Point","coordinates":[84207,43158]},{"type":"Point","coordinates":[84309,43136]},{"type":"Point","coordinates":[86157,42560]},{"type":"Point","coordinates":[58022,47912]},{"type":"Point","coordinates":[86155,42562]},{"type":"Point","coordinates":[86182,42555]},{"type":"Point","coordinates":[34605,46892]},{"type":"Point","coordinates":[86156,42565]},{"type":"Point","coordinates":[58059,47916]},{"type":"Point","coordinates":[76825,45153]},{"type":"Point","coordinates":[86199,42558]},{"type":"Point","coordinates":[228,36226]},{"type":"Point","coordinates":[86651,42421]},{"type":"Point","coordinates":[86186,42573]},{"type":"Point","coordinates":[86186,42574]},{"type":"Point","coordinates":[6977,39228]},{"type":"Point","coordinates":[86480,42480]},{"type":"Point","coordinates":[86196,42578]},{"type":"Point","coordinates":[88228,41912]},{"type":"Point","coordinates":[84039,43257]},{"type":"Point","coordinates":[34694,46943]},{"type":"Point","coordinates":[86202,42589]},{"type":"Point","coordinates":[6963,39244]},{"type":"Point","coordinates":[59557,47851]},{"type":"Point","coordinates":[86200,42593]},{"type":"Point","coordinates":[86193,42596]},{"type":"Point","coordinates":[86194,42596]},{"type":"Point","coordinates":[86195,42597]},{"type":"Point","coordinates":[6965,39252]},{"type":"Point","coordinates":[34669,46950]},{"type":"Point","coordinates":[86298,42572]},{"type":"Point","coordinates":[86989,42348]},{"type":"Point","coordinates":[86102,42636]},{"type":"Point","coordinates":[86097,42639]},{"type":"Point","coordinates":[6451,39047]},{"type":"Point","coordinates":[84170,43238]},{"type":"Point","coordinates":[6975,39265]},{"type":"Point","coordinates":[6970,39264]},{"type":"Point","coordinates":[34773,46980]},{"type":"Point","coordinates":[86072,42669]},{"type":"Point","coordinates":[85905,42723]},{"type":"Point","coordinates":[86298,42605]},{"type":"Point","coordinates":[86234,42626]},{"type":"Point","coordinates":[85680,42803]},{"type":"Point","coordinates":[85680,42804]},{"type":"Point","coordinates":[86233,42629]},{"type":"Point","coordinates":[85985,42712]},{"type":"Point","coordinates":[86239,42633]},{"type":"Point","coordinates":[86239,42633]},{"type":"Point","coordinates":[86239,42633]},{"type":"Point","coordinates":[86230,42637]},{"type":"Point","coordinates":[86237,42636]},{"type":"Point","coordinates":[86247,42638]},{"type":"Point","coordinates":[34577,46989]},{"type":"Point","coordinates":[86311,42621]},{"type":"Point","coordinates":[81798,43981]},{"type":"Point","coordinates":[85891,42761]},{"type":"Point","coordinates":[86019,42721]},{"type":"Point","coordinates":[85995,42730]},{"type":"Point","coordinates":[244,36336]},{"type":"Point","coordinates":[85995,42731]},{"type":"Point","coordinates":[58105,48029]},{"type":"Point","coordinates":[74487,45794]},{"type":"Point","coordinates":[86321,42638]},{"type":"Point","coordinates":[86276,42653]},{"type":"Point","coordinates":[82089,43923]},{"type":"Point","coordinates":[34952,47074]},{"type":"Point","coordinates":[82086,43925]},{"type":"Point","coordinates":[82088,43932]},{"type":"Point","coordinates":[6093,38986]},{"type":"Point","coordinates":[82068,43944]},{"type":"Point","coordinates":[58057,48057]},{"type":"Point","coordinates":[86304,42669]},{"type":"Point","coordinates":[86303,42671]},{"type":"Point","coordinates":[86191,42714]},{"type":"Point","coordinates":[86192,42714]},{"type":"Point","coordinates":[86191,42714]},{"type":"Point","coordinates":[85864,42826]},{"type":"Point","coordinates":[86358,42669]},{"type":"Point","coordinates":[86194,42724]},{"type":"Point","coordinates":[34586,47060]},{"type":"Point","coordinates":[34584,47063]},{"type":"Point","coordinates":[1216,36878]},{"type":"Point","coordinates":[34632,47089]},{"type":"Point","coordinates":[34701,47112]},{"type":"Point","coordinates":[34701,47112]},{"type":"Point","coordinates":[86633,42620]},{"type":"Point","coordinates":[75477,45663]},{"type":"Point","coordinates":[364,36493]},{"type":"Point","coordinates":[34606,47104]},{"type":"Point","coordinates":[86024,42832]},{"type":"Point","coordinates":[326,36493]},{"type":"Point","coordinates":[1320,36974]},{"type":"Point","coordinates":[86173,42817]},{"type":"Point","coordinates":[86181,42825]},{"type":"Point","coordinates":[303,36523]},{"type":"Point","coordinates":[321,36533]},{"type":"Point","coordinates":[85367,43086]},{"type":"Point","coordinates":[62391,47831]},{"type":"Point","coordinates":[85546,43037]},{"type":"Point","coordinates":[399,36592]},{"type":"Point","coordinates":[1275,37007]},{"type":"Point","coordinates":[83832,43580]},{"type":"Point","coordinates":[349,36581]},{"type":"Point","coordinates":[335,36578]},{"type":"Point","coordinates":[86045,42916]},{"type":"Point","coordinates":[1258,37025]},{"type":"Point","coordinates":[25798,45536]},{"type":"Point","coordinates":[84014,43551]},{"type":"Point","coordinates":[86459,42792]},{"type":"Point","coordinates":[86340,42832]},{"type":"Point","coordinates":[340,36600]},{"type":"Point","coordinates":[1288,37049]},{"type":"Point","coordinates":[1153,36991]},{"type":"Point","coordinates":[25818,45560]},{"type":"Point","coordinates":[1263,37050]},{"type":"Point","coordinates":[1264,37050]},{"type":"Point","coordinates":[1006,36937]},{"type":"Point","coordinates":[84984,43283]},{"type":"Point","coordinates":[86355,42850]},{"type":"Point","coordinates":[34623,47238]},{"type":"Point","coordinates":[81745,44238]},{"type":"Point","coordinates":[86326,42861]},{"type":"Point","coordinates":[6130,39216]},{"type":"Point","coordinates":[84991,43291]},{"type":"Point","coordinates":[1286,37082]},{"type":"Point","coordinates":[61215,48028]},{"type":"Point","coordinates":[61215,48029]},{"type":"Point","coordinates":[6132,39227]},{"type":"Point","coordinates":[86343,42871]},{"type":"Point","coordinates":[84992,43299]},{"type":"Point","coordinates":[74357,46063]},{"type":"Point","coordinates":[6884,39546]},{"type":"Point","coordinates":[441,36694]},{"type":"Point","coordinates":[86368,42868]},{"type":"Point","coordinates":[86368,42869]},{"type":"Point","coordinates":[86367,42871]},{"type":"Point","coordinates":[86366,42871]},{"type":"Point","coordinates":[86369,42871]},{"type":"Point","coordinates":[34671,47272]},{"type":"Point","coordinates":[86367,42874]},{"type":"Point","coordinates":[86367,42874]},{"type":"Point","coordinates":[446,36703]},{"type":"Point","coordinates":[1025,36992]},{"type":"Point","coordinates":[86343,42901]},{"type":"Point","coordinates":[74607,46036]},{"type":"Point","coordinates":[86343,42902]},{"type":"Point","coordinates":[86343,42902]},{"type":"Point","coordinates":[86369,42898]},{"type":"Point","coordinates":[84103,43605]},{"type":"Point","coordinates":[1000,36990]},{"type":"Point","coordinates":[86375,42900]},{"type":"Point","coordinates":[86375,42900]},{"type":"Point","coordinates":[86376,42900]},{"type":"Point","coordinates":[374,36700]},{"type":"Point","coordinates":[413,36722]},{"type":"Point","coordinates":[407,36721]},{"type":"Point","coordinates":[86367,42913]},{"type":"Point","coordinates":[86367,42913]},{"type":"Point","coordinates":[59990,48186]},{"type":"Point","coordinates":[403,36724]},{"type":"Point","coordinates":[60351,48159]},{"type":"Point","coordinates":[401,36731]},{"type":"Point","coordinates":[25835,45651]},{"type":"Point","coordinates":[401,36733]},{"type":"Point","coordinates":[400,36737]},{"type":"Point","coordinates":[84117,43633]},{"type":"Point","coordinates":[380,36737]},{"type":"Point","coordinates":[83077,43952]},{"type":"Point","coordinates":[385,36745]},{"type":"Point","coordinates":[398,36754]},{"type":"Point","coordinates":[25849,45686]},{"type":"Point","coordinates":[85402,43263]},{"type":"Point","coordinates":[405,36785]},{"type":"Point","coordinates":[5499,39088]},{"type":"Point","coordinates":[55368,48527]},{"type":"Point","coordinates":[689,36942]},{"type":"Point","coordinates":[688,36942]},{"type":"Point","coordinates":[687,36945]},{"type":"Point","coordinates":[687,36945]},{"type":"Point","coordinates":[89276,42022]},{"type":"Point","coordinates":[686,36946]},{"type":"Point","coordinates":[686,36947]},{"type":"Point","coordinates":[88829,42200]},{"type":"Point","coordinates":[88878,42186]},{"type":"Point","coordinates":[25808,45769]},{"type":"Point","coordinates":[448,36883]},{"type":"Point","coordinates":[704,37005]},{"type":"Point","coordinates":[1424,37344]},{"type":"Point","coordinates":[25892,45798]},{"type":"Point","coordinates":[74443,46246]},{"type":"Point","coordinates":[81909,44417]},{"type":"Point","coordinates":[76025,45917]},{"type":"Point","coordinates":[84059,43806]},{"type":"Point","coordinates":[79765,45010]},{"type":"Point","coordinates":[73035,46551]},{"type":"Point","coordinates":[84055,43811]},{"type":"Point","coordinates":[87034,42885]},{"type":"Point","coordinates":[1294,37344]},{"type":"Point","coordinates":[85018,43544]},{"type":"Point","coordinates":[1295,37352]},{"type":"Point","coordinates":[1296,37353]},{"type":"Point","coordinates":[1290,37355]},{"type":"Point","coordinates":[1291,37358]},{"type":"Point","coordinates":[1144,37295]},{"type":"Point","coordinates":[6711,39754]},{"type":"Point","coordinates":[6718,39760]},{"type":"Point","coordinates":[1283,37375]},{"type":"Point","coordinates":[74540,46306]},{"type":"Point","coordinates":[88783,42348]},{"type":"Point","coordinates":[6716,39774]},{"type":"Point","coordinates":[6865,39835]},{"type":"Point","coordinates":[74426,46341]},{"type":"Point","coordinates":[1128,37320]},{"type":"Point","coordinates":[84053,43888]},{"type":"Point","coordinates":[83647,44013]},{"type":"Point","coordinates":[696,37137]},{"type":"Point","coordinates":[1480,37510]},{"type":"Point","coordinates":[1480,37510]},{"type":"Point","coordinates":[88990,42315]},{"type":"Point","coordinates":[86402,43190]},{"type":"Point","coordinates":[522,37073]},{"type":"Point","coordinates":[6711,39816]},{"type":"Point","coordinates":[88767,42405]},{"type":"Point","coordinates":[6713,39821]},{"type":"Point","coordinates":[6719,39829]},{"type":"Point","coordinates":[83650,44056]},{"type":"Point","coordinates":[1223,37418]},{"type":"Point","coordinates":[86371,43215]},{"type":"Point","coordinates":[6718,39834]},{"type":"Point","coordinates":[6716,39840]},{"type":"Point","coordinates":[921,37291]},{"type":"Point","coordinates":[61102,48406]},{"type":"Point","coordinates":[6715,39850]},{"type":"Point","coordinates":[74431,46413]},{"type":"Point","coordinates":[6696,39846]},{"type":"Point","coordinates":[25901,45982]},{"type":"Point","coordinates":[527,37121]},{"type":"Point","coordinates":[1108,37402]},{"type":"Point","coordinates":[1078,37392]},{"type":"Point","coordinates":[1498,37592]},{"type":"Point","coordinates":[776,37261]},{"type":"Point","coordinates":[783,37272]},{"type":"Point","coordinates":[6700,39884]},{"type":"Point","coordinates":[84055,44000]},{"type":"Point","coordinates":[1023,37392]},{"type":"Point","coordinates":[6657,39880]},{"type":"Point","coordinates":[6690,39897]},{"type":"Point","coordinates":[6690,39899]},{"type":"Point","coordinates":[6690,39899]},{"type":"Point","coordinates":[334,37085]},{"type":"Point","coordinates":[6685,39903]},{"type":"Point","coordinates":[6664,39895]},{"type":"Point","coordinates":[1097,37449]},{"type":"Point","coordinates":[728,37279]},{"type":"Point","coordinates":[6655,39902]},{"type":"Point","coordinates":[698,37275]},{"type":"Point","coordinates":[691,37276]},{"type":"Point","coordinates":[85249,43678]},{"type":"Point","coordinates":[1348,37589]},{"type":"Point","coordinates":[681,37281]},{"type":"Point","coordinates":[681,37282]},{"type":"Point","coordinates":[861,37367]},{"type":"Point","coordinates":[863,37368]},{"type":"Point","coordinates":[61708,48449]},{"type":"Point","coordinates":[61708,48449]},{"type":"Point","coordinates":[84101,44055]},{"type":"Point","coordinates":[88810,42538]},{"type":"Point","coordinates":[74595,46498]},{"type":"Point","coordinates":[554,37249]},{"type":"Point","coordinates":[61812,48475]},{"type":"Point","coordinates":[61818,48476]},{"type":"Point","coordinates":[595,37284]},{"type":"Point","coordinates":[84099,44089]},{"type":"Point","coordinates":[2116,38001]},{"type":"Point","coordinates":[84142,44086]},{"type":"Point","coordinates":[2134,38020]},{"type":"Point","coordinates":[2133,38020]},{"type":"Point","coordinates":[61860,48496]},{"type":"Point","coordinates":[2059,37994]},{"type":"Point","coordinates":[74569,46550]},{"type":"Point","coordinates":[6785,40063]},{"type":"Point","coordinates":[1284,37655]},{"type":"Point","coordinates":[74643,46553]},{"type":"Point","coordinates":[84113,44129]},{"type":"Point","coordinates":[61817,48530]},{"type":"Point","coordinates":[1225,37646]},{"type":"Point","coordinates":[1451,37765]},{"type":"Point","coordinates":[84749,43961]},{"type":"Point","coordinates":[81846,44814]},{"type":"Point","coordinates":[1329,37715]},{"type":"Point","coordinates":[60863,48654]},{"type":"Point","coordinates":[84067,44187]},{"type":"Point","coordinates":[61689,48593]},{"type":"Point","coordinates":[61686,48593]},{"type":"Point","coordinates":[61687,48593]},{"type":"Point","coordinates":[25756,46184]},{"type":"Point","coordinates":[61756,48596]},{"type":"Point","coordinates":[1092,37642]},{"type":"Point","coordinates":[62359,48544]},{"type":"Point","coordinates":[1516,37846]},{"type":"Point","coordinates":[61421,48640]},{"type":"Point","coordinates":[61981,48619]},{"type":"Point","coordinates":[1456,37853]},{"type":"Point","coordinates":[1457,37854]},{"type":"Point","coordinates":[1455,37854]},{"type":"Point","coordinates":[86029,43657]},{"type":"Point","coordinates":[1853,38059]},{"type":"Point","coordinates":[84029,44289]},{"type":"Point","coordinates":[1472,37888]},{"type":"Point","coordinates":[84029,44292]},{"type":"Point","coordinates":[84084,44281]},{"type":"Point","coordinates":[1241,37788]},{"type":"Point","coordinates":[1241,37789]},{"type":"Point","coordinates":[1240,37793]},{"type":"Point","coordinates":[1240,37793]},{"type":"Point","coordinates":[1467,37903]},{"type":"Point","coordinates":[1272,37815]},{"type":"Point","coordinates":[586,37502]},{"type":"Point","coordinates":[1468,37916]},{"type":"Point","coordinates":[1276,37836]},{"type":"Point","coordinates":[603,37521]},{"type":"Point","coordinates":[619,37530]},{"type":"Point","coordinates":[86075,43707]},{"type":"Point","coordinates":[638,37550]},{"type":"Point","coordinates":[77355,46133]},{"type":"Point","coordinates":[1283,37854]},{"type":"Point","coordinates":[596,37535]},{"type":"Point","coordinates":[1519,37968]},{"type":"Point","coordinates":[1760,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38095]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[1759,38096]},{"type":"Point","coordinates":[25005,46166]},{"type":"Point","coordinates":[83996,44376]},{"type":"Point","coordinates":[2246,38324]},{"type":"Point","coordinates":[617,37570]},{"type":"Point","coordinates":[2240,38323]},{"type":"Point","coordinates":[1763,38107]},{"type":"Point","coordinates":[2246,38328]},{"type":"Point","coordinates":[2333,38369]},{"type":"Point","coordinates":[1763,38109]},{"type":"Point","coordinates":[61909,48739]},{"type":"Point","coordinates":[1763,38111]},{"type":"Point","coordinates":[1762,38114]},{"type":"Point","coordinates":[614,37579]},{"type":"Point","coordinates":[599,37574]},{"type":"Point","coordinates":[599,37574]},{"type":"Point","coordinates":[667,37607]},{"type":"Point","coordinates":[666,37607]},{"type":"Point","coordinates":[610,37581]},{"type":"Point","coordinates":[1754,38116]},{"type":"Point","coordinates":[3964,39113]},{"type":"Point","coordinates":[608,37586]},{"type":"Point","coordinates":[607,37585]},{"type":"Point","coordinates":[2245,38346]},{"type":"Point","coordinates":[71143,47476]},{"type":"Point","coordinates":[2192,38322]},{"type":"Point","coordinates":[602,37583]},{"type":"Point","coordinates":[1773,38131]},{"type":"Point","coordinates":[82559,44822]},{"type":"Point","coordinates":[605,37589]},{"type":"Point","coordinates":[1397,37961]},{"type":"Point","coordinates":[666,37621]},{"type":"Point","coordinates":[2244,38353]},{"type":"Point","coordinates":[1765,38143]},{"type":"Point","coordinates":[1765,38143]},{"type":"Point","coordinates":[1765,38143]},{"type":"Point","coordinates":[622,37609]},{"type":"Point","coordinates":[1765,38143]},{"type":"Point","coordinates":[1766,38144]},{"type":"Point","coordinates":[1765,38143]},{"type":"Point","coordinates":[1766,38144]},{"type":"Point","coordinates":[1766,38144]},{"type":"Point","coordinates":[1766,38144]},{"type":"Point","coordinates":[1765,38144]},{"type":"Point","coordinates":[1766,38144]},{"type":"Point","coordinates":[1765,38144]},{"type":"Point","coordinates":[1766,38145]},{"type":"Point","coordinates":[1766,38145]},{"type":"Point","coordinates":[1765,38144]},{"type":"Point","coordinates":[1766,38145]},{"type":"Point","coordinates":[1766,38145]},{"type":"Point","coordinates":[1765,38146]},{"type":"Point","coordinates":[84034,44408]},{"type":"Point","coordinates":[84034,44408]},{"type":"Point","coordinates":[1761,38147]},{"type":"Point","coordinates":[1761,38148]},{"type":"Point","coordinates":[623,37621]},{"type":"Point","coordinates":[1763,38154]},{"type":"Point","coordinates":[82558,44851]},{"type":"Point","coordinates":[1754,38157]},{"type":"Point","coordinates":[2206,38364]},{"type":"Point","coordinates":[2206,38364]},{"type":"Point","coordinates":[3907,39126]},{"type":"Point","coordinates":[616,37633]},{"type":"Point","coordinates":[1751,38167]},{"type":"Point","coordinates":[1795,38187]},{"type":"Point","coordinates":[1796,38189]},{"type":"Point","coordinates":[1163,37899]},{"type":"Point","coordinates":[1804,38197]},{"type":"Point","coordinates":[1823,38207]},{"type":"Point","coordinates":[61154,48877]},{"type":"Point","coordinates":[803,37736]},{"type":"Point","coordinates":[61151,48880]},{"type":"Point","coordinates":[4029,39201]},{"type":"Point","coordinates":[638,37660]},{"type":"Point","coordinates":[764,37721]},{"type":"Point","coordinates":[633,37663]},{"type":"Point","coordinates":[622,37659]},{"type":"Point","coordinates":[623,37660]},{"type":"Point","coordinates":[1541,38090]},{"type":"Point","coordinates":[2256,38419]},{"type":"Point","coordinates":[622,37663]},{"type":"Point","coordinates":[1765,38196]},{"type":"Point","coordinates":[1766,38197]},{"type":"Point","coordinates":[628,37675]},{"type":"Point","coordinates":[61608,48863]},{"type":"Point","coordinates":[2012,38324]},{"type":"Point","coordinates":[1624,38148]},{"type":"Point","coordinates":[84008,44485]},{"type":"Point","coordinates":[84007,44486]},{"type":"Point","coordinates":[83996,44492]},{"type":"Point","coordinates":[1005,37874]},{"type":"Point","coordinates":[1444,38078]},{"type":"Point","coordinates":[84000,44499]},{"type":"Point","coordinates":[83990,44502]},{"type":"Point","coordinates":[84001,44499]},{"type":"Point","coordinates":[1885,38284]},{"type":"Point","coordinates":[83926,44523]},{"type":"Point","coordinates":[1176,37958]},{"type":"Point","coordinates":[1999,38338]},{"type":"Point","coordinates":[84135,44469]},{"type":"Point","coordinates":[2045,38368]},{"type":"Point","coordinates":[2043,38368]},{"type":"Point","coordinates":[86446,43752]},{"type":"Point","coordinates":[2043,38370]},{"type":"Point","coordinates":[83999,44514]},{"type":"Point","coordinates":[1179,37972]},{"type":"Point","coordinates":[1343,38048]},{"type":"Point","coordinates":[655,37727]},{"type":"Point","coordinates":[6930,40489]},{"type":"Point","coordinates":[2049,38376]},{"type":"Point","coordinates":[2032,38371]},{"type":"Point","coordinates":[1732,38233]},{"type":"Point","coordinates":[1187,37981]},{"type":"Point","coordinates":[650,37730]},{"type":"Point","coordinates":[1733,38235]},{"type":"Point","coordinates":[2030,38372]},{"type":"Point","coordinates":[646,37728]},{"type":"Point","coordinates":[2030,38372]},{"type":"Point","coordinates":[2029,38372]},{"type":"Point","coordinates":[1280,38027]},{"type":"Point","coordinates":[2020,38374]},{"type":"Point","coordinates":[2009,38371]},{"type":"Point","coordinates":[1741,38250]},{"type":"Point","coordinates":[2006,38374]},{"type":"Point","coordinates":[1742,38253]},{"type":"Point","coordinates":[2293,38506]},{"type":"Point","coordinates":[2005,38376]},{"type":"Point","coordinates":[83975,44543]},{"type":"Point","coordinates":[1177,37993]},{"type":"Point","coordinates":[1176,37993]},{"type":"Point","coordinates":[1176,37993]},{"type":"Point","coordinates":[1177,37994]},{"type":"Point","coordinates":[1177,37995]},{"type":"Point","coordinates":[1177,37995]},{"type":"Point","coordinates":[1540,38164]},{"type":"Point","coordinates":[2001,38379]},{"type":"Point","coordinates":[1170,37997]},{"type":"Point","coordinates":[1170,37997]},{"type":"Point","coordinates":[69029,47981]},{"type":"Point","coordinates":[1170,38000]},{"type":"Point","coordinates":[1732,38261]},{"type":"Point","coordinates":[1733,38261]},{"type":"Point","coordinates":[1165,37999]},{"type":"Point","coordinates":[1160,37998]},{"type":"Point","coordinates":[1169,38003]},{"type":"Point","coordinates":[1154,37997]},{"type":"Point","coordinates":[1168,38004]},{"type":"Point","coordinates":[2008,38394]},{"type":"Point","coordinates":[1998,38394]},{"type":"Point","coordinates":[1966,38380]},{"type":"Point","coordinates":[1164,38009]},{"type":"Point","coordinates":[1166,38011]},{"type":"Point","coordinates":[3434,39043]},{"type":"Point","coordinates":[1967,38382]},{"type":"Point","coordinates":[2003,38399]},{"type":"Point","coordinates":[2004,38399]},{"type":"Point","coordinates":[1157,38008]},{"type":"Point","coordinates":[1163,38012]},{"type":"Point","coordinates":[1165,38014]},{"type":"Point","coordinates":[1164,38013]},{"type":"Point","coordinates":[1160,38013]},{"type":"Point","coordinates":[1159,38013]},{"type":"Point","coordinates":[1164,38016]},{"type":"Point","coordinates":[1151,38010]},{"type":"Point","coordinates":[1161,38015]},{"type":"Point","coordinates":[1161,38015]},{"type":"Point","coordinates":[1161,38015]},{"type":"Point","coordinates":[1164,38018]},{"type":"Point","coordinates":[1157,38014]},{"type":"Point","coordinates":[1162,38018]},{"type":"Point","coordinates":[1164,38019]},{"type":"Point","coordinates":[1163,38019]},{"type":"Point","coordinates":[1155,38016]},{"type":"Point","coordinates":[1163,38021]},{"type":"Point","coordinates":[1163,38021]},{"type":"Point","coordinates":[1163,38021]},{"type":"Point","coordinates":[1163,38021]},{"type":"Point","coordinates":[1160,38023]},{"type":"Point","coordinates":[1167,38027]},{"type":"Point","coordinates":[1952,38391]},{"type":"Point","coordinates":[676,37800]},{"type":"Point","coordinates":[1161,38027]},{"type":"Point","coordinates":[1161,38027]},{"type":"Point","coordinates":[1161,38027]},{"type":"Point","coordinates":[1162,38028]},{"type":"Point","coordinates":[1163,38029]},{"type":"Point","coordinates":[1163,38030]},{"type":"Point","coordinates":[1164,38031]},{"type":"Point","coordinates":[1162,38031]},{"type":"Point","coordinates":[2032,38433]},{"type":"Point","coordinates":[1162,38033]},{"type":"Point","coordinates":[1162,38034]},{"type":"Point","coordinates":[1164,38036]},{"type":"Point","coordinates":[84460,44445]},{"type":"Point","coordinates":[1158,38036]},{"type":"Point","coordinates":[1543,38218]},{"type":"Point","coordinates":[1886,38381]},{"type":"Point","coordinates":[1168,38053]},{"type":"Point","coordinates":[1387,38157]},{"type":"Point","coordinates":[1811,38362]},{"type":"Point","coordinates":[734,37863]},{"type":"Point","coordinates":[734,37864]},{"type":"Point","coordinates":[728,37865]},{"type":"Point","coordinates":[1810,38371]},{"type":"Point","coordinates":[1602,38284]},{"type":"Point","coordinates":[1826,38390]},{"type":"Point","coordinates":[859,37944]},{"type":"Point","coordinates":[1822,38393]},{"type":"Point","coordinates":[1421,38211]},{"type":"Point","coordinates":[1421,38211]},{"type":"Point","coordinates":[1200,38109]},{"type":"Point","coordinates":[1421,38212]},{"type":"Point","coordinates":[1420,38212]},{"type":"Point","coordinates":[1421,38212]},{"type":"Point","coordinates":[1420,38212]},{"type":"Point","coordinates":[1422,38213]},{"type":"Point","coordinates":[729,37889]},{"type":"Point","coordinates":[729,37890]},{"type":"Point","coordinates":[729,37890]},{"type":"Point","coordinates":[726,37888]},{"type":"Point","coordinates":[729,37890]},{"type":"Point","coordinates":[1421,38213]},{"type":"Point","coordinates":[1421,38213]},{"type":"Point","coordinates":[727,37889]},{"type":"Point","coordinates":[1421,38214]},{"type":"Point","coordinates":[1839,38406]},{"type":"Point","coordinates":[1015,38025]},{"type":"Point","coordinates":[1839,38407]},{"type":"Point","coordinates":[1840,38408]},{"type":"Point","coordinates":[1418,38214]},{"type":"Point","coordinates":[724,37890]},{"type":"Point","coordinates":[1651,38322]},{"type":"Point","coordinates":[6218,40325]},{"type":"Point","coordinates":[724,37891]},{"type":"Point","coordinates":[83949,44660]},{"type":"Point","coordinates":[1413,38216]},{"type":"Point","coordinates":[1161,38099]},{"type":"Point","coordinates":[87468,43553]},{"type":"Point","coordinates":[1412,38217]},{"type":"Point","coordinates":[1411,38218]},{"type":"Point","coordinates":[874,37970]},{"type":"Point","coordinates":[711,37894]},{"type":"Point","coordinates":[1396,38218]},{"type":"Point","coordinates":[1407,38226]},{"type":"Point","coordinates":[1809,38413]},{"type":"Point","coordinates":[1529,38291]},{"type":"Point","coordinates":[1278,38175]},{"type":"Point","coordinates":[1279,38178]},{"type":"Point","coordinates":[7584,40911]},{"type":"Point","coordinates":[1397,38233]},{"type":"Point","coordinates":[1031,38064]},{"type":"Point","coordinates":[1817,38430]},{"type":"Point","coordinates":[83959,44686]},{"type":"Point","coordinates":[1031,38069]},{"type":"Point","coordinates":[1176,38137]},{"type":"Point","coordinates":[1215,38155]},{"type":"Point","coordinates":[1279,38186]},{"type":"Point","coordinates":[1359,38224]},{"type":"Point","coordinates":[1359,38225]},{"type":"Point","coordinates":[1181,38144]},{"type":"Point","coordinates":[2183,38606]},{"type":"Point","coordinates":[1177,38147]},{"type":"Point","coordinates":[1357,38232]},{"type":"Point","coordinates":[1162,38143]},{"type":"Point","coordinates":[1175,38152]},{"type":"Point","coordinates":[1175,38153]},{"type":"Point","coordinates":[1176,38156]},{"type":"Point","coordinates":[1272,38202]},{"type":"Point","coordinates":[1632,38373]},{"type":"Point","coordinates":[2459,38752]},{"type":"Point","coordinates":[1825,38464]},{"type":"Point","coordinates":[1155,38155]},{"type":"Point","coordinates":[774,37978]},{"type":"Point","coordinates":[1106,38135]},{"type":"Point","coordinates":[1809,38464]},{"type":"Point","coordinates":[1018,38098]},{"type":"Point","coordinates":[1809,38466]},{"type":"Point","coordinates":[1249,38208]},{"type":"Point","coordinates":[1810,38468]},{"type":"Point","coordinates":[84457,44576]},{"type":"Point","coordinates":[1196,38185]},{"type":"Point","coordinates":[1152,38170]},{"type":"Point","coordinates":[2115,38616]},{"type":"Point","coordinates":[1614,38394]},{"type":"Point","coordinates":[1614,38395]},{"type":"Point","coordinates":[1614,38396]},{"type":"Point","coordinates":[1612,38394]},{"type":"Point","coordinates":[1612,38394]},{"type":"Point","coordinates":[1611,38394]},{"type":"Point","coordinates":[1612,38395]},{"type":"Point","coordinates":[1612,38394]},{"type":"Point","coordinates":[1611,38394]},{"type":"Point","coordinates":[1611,38395]},{"type":"Point","coordinates":[1613,38395]},{"type":"Point","coordinates":[1613,38396]},{"type":"Point","coordinates":[1587,38386]},{"type":"Point","coordinates":[1750,38475]},{"type":"Point","coordinates":[1030,38150]},{"type":"Point","coordinates":[2228,38704]},{"type":"Point","coordinates":[5980,40343]},{"type":"Point","coordinates":[1026,38153]},{"type":"Point","coordinates":[1103,38193]},{"type":"Point","coordinates":[1033,38162]},{"type":"Point","coordinates":[68815,48235]},{"type":"Point","coordinates":[1024,38161]},{"type":"Point","coordinates":[1180,38243]},{"type":"Point","coordinates":[1605,38441]},{"type":"Point","coordinates":[1608,38444]},{"type":"Point","coordinates":[83478,44938]},{"type":"Point","coordinates":[1343,38332]},{"type":"Point","coordinates":[708,38037]},{"type":"Point","coordinates":[83466,44953]},{"type":"Point","coordinates":[83928,44818]},{"type":"Point","coordinates":[1136,38246]},{"type":"Point","coordinates":[81624,45491]},{"type":"Point","coordinates":[1664,38498]},{"type":"Point","coordinates":[1093,38238]},{"type":"Point","coordinates":[1087,38239]},{"type":"Point","coordinates":[894,38154]},{"type":"Point","coordinates":[895,38155]},{"type":"Point","coordinates":[895,38155]},{"type":"Point","coordinates":[1040,38226]},{"type":"Point","coordinates":[1041,38227]},{"type":"Point","coordinates":[60051,49337]},{"type":"Point","coordinates":[89135,43167]},{"type":"Point","coordinates":[1038,38227]},{"type":"Point","coordinates":[894,38162]},{"type":"Point","coordinates":[1075,38247]},{"type":"Point","coordinates":[1035,38229]},{"type":"Point","coordinates":[1569,38481]},{"type":"Point","coordinates":[1649,38527]},{"type":"Point","coordinates":[1100,38283]},{"type":"Point","coordinates":[1540,38500]},{"type":"Point","coordinates":[1539,38500]},{"type":"Point","coordinates":[1539,38500]},{"type":"Point","coordinates":[1539,38501]},{"type":"Point","coordinates":[1539,38501]},{"type":"Point","coordinates":[1538,38501]},{"type":"Point","coordinates":[84963,44576]},{"type":"Point","coordinates":[1538,38502]},{"type":"Point","coordinates":[1098,38299]},{"type":"Point","coordinates":[1705,38581]},{"type":"Point","coordinates":[82492,45311]},{"type":"Point","coordinates":[865,38194]},{"type":"Point","coordinates":[1639,38556]},{"type":"Point","coordinates":[1640,38560]},{"type":"Point","coordinates":[1638,38564]},{"type":"Point","coordinates":[1230,38377]},{"type":"Point","coordinates":[1635,38570]},{"type":"Point","coordinates":[998,38275]},{"type":"Point","coordinates":[1543,38530]},{"type":"Point","coordinates":[1635,38577]},{"type":"Point","coordinates":[1744,38628]},{"type":"Point","coordinates":[779,38181]},{"type":"Point","coordinates":[1774,38645]},{"type":"Point","coordinates":[1743,38633]},{"type":"Point","coordinates":[1742,38632]},{"type":"Point","coordinates":[83147,45158]},{"type":"Point","coordinates":[1738,38635]},{"type":"Point","coordinates":[905,38251]},{"type":"Point","coordinates":[905,38251]},{"type":"Point","coordinates":[1037,38320]},{"type":"Point","coordinates":[1287,38437]},{"type":"Point","coordinates":[84103,44895]},{"type":"Point","coordinates":[1558,38571]},{"type":"Point","coordinates":[405,38033]},{"type":"Point","coordinates":[1465,38530]},{"type":"Point","coordinates":[1953,38763]},{"type":"Point","coordinates":[1953,38765]},{"type":"Point","coordinates":[1953,38765]},{"type":"Point","coordinates":[1388,38505]},{"type":"Point","coordinates":[1712,38656]},{"type":"Point","coordinates":[1936,38759]},{"type":"Point","coordinates":[1959,38770]},{"type":"Point","coordinates":[1957,38770]},{"type":"Point","coordinates":[889,38276]},{"type":"Point","coordinates":[1962,38775]},{"type":"Point","coordinates":[1968,38778]},{"type":"Point","coordinates":[1962,38776]},{"type":"Point","coordinates":[1236,38442]},{"type":"Point","coordinates":[1789,38699]},{"type":"Point","coordinates":[1965,38780]},{"type":"Point","coordinates":[1148,38403]},{"type":"Point","coordinates":[1789,38700]},{"type":"Point","coordinates":[1790,38701]},{"type":"Point","coordinates":[1790,38701]},{"type":"Point","coordinates":[1790,38702]},{"type":"Point","coordinates":[1344,38496]},{"type":"Point","coordinates":[1194,38427]},{"type":"Point","coordinates":[1799,38708]},{"type":"Point","coordinates":[1792,38705]},{"type":"Point","coordinates":[1740,38683]},{"type":"Point","coordinates":[1349,38505]},{"type":"Point","coordinates":[1968,38790]},{"type":"Point","coordinates":[1591,38625]},{"type":"Point","coordinates":[1581,38621]},{"type":"Point","coordinates":[1623,38642]},{"type":"Point","coordinates":[1820,38733]},{"type":"Point","coordinates":[1150,38424]},{"type":"Point","coordinates":[1607,38636]},{"type":"Point","coordinates":[1150,38425]},{"type":"Point","coordinates":[1432,38558]},{"type":"Point","coordinates":[1610,38640]},{"type":"Point","coordinates":[1150,38428]},{"type":"Point","coordinates":[1806,38731]},{"type":"Point","coordinates":[1806,38732]},{"type":"Point","coordinates":[1657,38664]},{"type":"Point","coordinates":[83193,45212]},{"type":"Point","coordinates":[1149,38430]},{"type":"Point","coordinates":[1149,38431]},{"type":"Point","coordinates":[1744,38706]},{"type":"Point","coordinates":[1744,38707]},{"type":"Point","coordinates":[83427,45146]},{"type":"Point","coordinates":[1764,38718]},{"type":"Point","coordinates":[1148,38435]},{"type":"Point","coordinates":[1745,38712]},{"type":"Point","coordinates":[1353,38531]},{"type":"Point","coordinates":[1746,38713]},{"type":"Point","coordinates":[1745,38713]},{"type":"Point","coordinates":[1745,38713]},{"type":"Point","coordinates":[1050,38397]},{"type":"Point","coordinates":[1075,38410]},{"type":"Point","coordinates":[83416,45165]},{"type":"Point","coordinates":[1160,38454]},{"type":"Point","coordinates":[1126,38438]},{"type":"Point","coordinates":[992,38377]},{"type":"Point","coordinates":[1162,38458]},{"type":"Point","coordinates":[7739,41309]},{"type":"Point","coordinates":[971,38376]},{"type":"Point","coordinates":[1785,38754]},{"type":"Point","coordinates":[976,38380]},{"type":"Point","coordinates":[970,38378]},{"type":"Point","coordinates":[977,38385]},{"type":"Point","coordinates":[1095,38441]},{"type":"Point","coordinates":[948,38373]},{"type":"Point","coordinates":[912,38358]},{"type":"Point","coordinates":[60863,49454]},{"type":"Point","coordinates":[7699,41308]},{"type":"Point","coordinates":[941,38377]},{"type":"Point","coordinates":[7694,41308]},{"type":"Point","coordinates":[7693,41308]},{"type":"Point","coordinates":[1840,38796]},{"type":"Point","coordinates":[7756,41335]},{"type":"Point","coordinates":[7698,41313]},{"type":"Point","coordinates":[1776,38769]},{"type":"Point","coordinates":[1784,38773]},{"type":"Point","coordinates":[1584,38681]},{"type":"Point","coordinates":[7734,41329]},{"type":"Point","coordinates":[1774,38769]},{"type":"Point","coordinates":[988,38406]},{"type":"Point","coordinates":[7726,41328]},{"type":"Point","coordinates":[7753,41340]},{"type":"Point","coordinates":[7696,41319]},{"type":"Point","coordinates":[7701,41323]},{"type":"Point","coordinates":[7708,41325]},{"type":"Point","coordinates":[1824,38802]},{"type":"Point","coordinates":[1834,38808]},{"type":"Point","coordinates":[1834,38808]},{"type":"Point","coordinates":[1836,38809]},{"type":"Point","coordinates":[1836,38810]},{"type":"Point","coordinates":[554,38216]},{"type":"Point","coordinates":[1838,38815]},{"type":"Point","coordinates":[1837,38815]},{"type":"Point","coordinates":[1036,38445]},{"type":"Point","coordinates":[1219,38532]},{"type":"Point","coordinates":[1171,38512]},{"type":"Point","coordinates":[1112,38485]},{"type":"Point","coordinates":[85728,44518]},{"type":"Point","coordinates":[1810,38815]},{"type":"Point","coordinates":[1834,38826]},{"type":"Point","coordinates":[1928,38870]},{"type":"Point","coordinates":[1378,38623]},{"type":"Point","coordinates":[2034,38926]},{"type":"Point","coordinates":[1168,38528]},{"type":"Point","coordinates":[1455,38663]},{"type":"Point","coordinates":[1241,38578]},{"type":"Point","coordinates":[1046,38490]},{"type":"Point","coordinates":[1056,38497]},{"type":"Point","coordinates":[1120,38527]},{"type":"Point","coordinates":[2008,38937]},{"type":"Point","coordinates":[1356,38637]},{"type":"Point","coordinates":[1049,38496]},{"type":"Point","coordinates":[83411,45260]},{"type":"Point","coordinates":[2011,38941]},{"type":"Point","coordinates":[1415,38667]},{"type":"Point","coordinates":[83889,45120]},{"type":"Point","coordinates":[1988,38936]},{"type":"Point","coordinates":[1984,38934]},{"type":"Point","coordinates":[1600,38758]},{"type":"Point","coordinates":[585,38286]},{"type":"Point","coordinates":[1989,38938]},{"type":"Point","coordinates":[718,38349]},{"type":"Point","coordinates":[1833,38868]},{"type":"Point","coordinates":[1827,38866]},{"type":"Point","coordinates":[1714,38814]},{"type":"Point","coordinates":[1354,38650]},{"type":"Point","coordinates":[1401,38672]},{"type":"Point","coordinates":[3607,39674]},{"type":"Point","coordinates":[1050,38515]},{"type":"Point","coordinates":[1369,38665]},{"type":"Point","coordinates":[1101,38540]},{"type":"Point","coordinates":[1093,38538]},{"type":"Point","coordinates":[62438,49397]},{"type":"Point","coordinates":[1095,38542]},{"type":"Point","coordinates":[1094,38542]},{"type":"Point","coordinates":[1098,38544]},{"type":"Point","coordinates":[1148,38567]},{"type":"Point","coordinates":[1095,38543]},{"type":"Point","coordinates":[1094,38543]},{"type":"Point","coordinates":[1094,38543]},{"type":"Point","coordinates":[1091,38542]},{"type":"Point","coordinates":[1093,38543]},{"type":"Point","coordinates":[1092,38544]},{"type":"Point","coordinates":[1093,38546]},{"type":"Point","coordinates":[1096,38548]},{"type":"Point","coordinates":[1096,38548]},{"type":"Point","coordinates":[1097,38548]},{"type":"Point","coordinates":[1399,38690]},{"type":"Point","coordinates":[1092,38548]},{"type":"Point","coordinates":[1958,38947]},{"type":"Point","coordinates":[1095,38549]},{"type":"Point","coordinates":[1092,38549]},{"type":"Point","coordinates":[1093,38550]},{"type":"Point","coordinates":[3024,39433]},{"type":"Point","coordinates":[1136,38572]},{"type":"Point","coordinates":[87695,43958]},{"type":"Point","coordinates":[2035,39007]},{"type":"Point","coordinates":[1265,38667]},{"type":"Point","coordinates":[1200,38640]},{"type":"Point","coordinates":[3198,39549]},{"type":"Point","coordinates":[61301,49567]},{"type":"Point","coordinates":[61301,49567]},{"type":"Point","coordinates":[2055,39055]},{"type":"Point","coordinates":[7121,41239]},{"type":"Point","coordinates":[1113,38626]},{"type":"Point","coordinates":[84618,44998]},{"type":"Point","coordinates":[1113,38637]},{"type":"Point","coordinates":[1920,39015]},{"type":"Point","coordinates":[1983,39046]},{"type":"Point","coordinates":[1241,38707]},{"type":"Point","coordinates":[1978,39052]},{"type":"Point","coordinates":[1976,39053]},{"type":"Point","coordinates":[1972,39056]},{"type":"Point","coordinates":[1980,39062]},{"type":"Point","coordinates":[1209,38710]},{"type":"Point","coordinates":[2906,39489]},{"type":"Point","coordinates":[1656,38924]},{"type":"Point","coordinates":[1960,39068]},{"type":"Point","coordinates":[1963,39071]},{"type":"Point","coordinates":[1962,39071]},{"type":"Point","coordinates":[1963,39071]},{"type":"Point","coordinates":[1605,38909]},{"type":"Point","coordinates":[82658,45629]},{"type":"Point","coordinates":[1190,38717]},{"type":"Point","coordinates":[1598,38909]},{"type":"Point","coordinates":[1624,38921]},{"type":"Point","coordinates":[2164,39169]},{"type":"Point","coordinates":[1361,38802]},{"type":"Point","coordinates":[3054,39574]},{"type":"Point","coordinates":[1620,38930]},{"type":"Point","coordinates":[1766,39000]},{"type":"Point","coordinates":[1769,39002]},{"type":"Point","coordinates":[1771,39004]},{"type":"Point","coordinates":[1771,39005]},{"type":"Point","coordinates":[1773,39009]},{"type":"Point","coordinates":[1771,39010]},{"type":"Point","coordinates":[1648,38954]},{"type":"Point","coordinates":[1769,39010]},{"type":"Point","coordinates":[1772,39012]},{"type":"Point","coordinates":[72219,48133]},{"type":"Point","coordinates":[1866,39080]},{"type":"Point","coordinates":[66521,49090]},{"type":"Point","coordinates":[2374,39314]},{"type":"Point","coordinates":[1852,39078]},{"type":"Point","coordinates":[1854,39082]},{"type":"Point","coordinates":[1857,39084]},{"type":"Point","coordinates":[2086,39189]},{"type":"Point","coordinates":[1857,39085]},{"type":"Point","coordinates":[2198,39241]},{"type":"Point","coordinates":[1854,39085]},{"type":"Point","coordinates":[1851,39085]},{"type":"Point","coordinates":[1857,39089]},{"type":"Point","coordinates":[82681,45686]},{"type":"Point","coordinates":[1881,39103]},{"type":"Point","coordinates":[1890,39111]},{"type":"Point","coordinates":[1849,39093]},{"type":"Point","coordinates":[2372,39332]},{"type":"Point","coordinates":[1853,39097]},{"type":"Point","coordinates":[1894,39116]},{"type":"Point","coordinates":[1894,39117]},{"type":"Point","coordinates":[1891,39118]},{"type":"Point","coordinates":[1895,39119]},{"type":"Point","coordinates":[1979,39158]},{"type":"Point","coordinates":[1631,38999]},{"type":"Point","coordinates":[1843,39097]},{"type":"Point","coordinates":[1844,39098]},{"type":"Point","coordinates":[1048,38735]},{"type":"Point","coordinates":[1882,39123]},{"type":"Point","coordinates":[2385,39353]},{"type":"Point","coordinates":[1866,39117]},{"type":"Point","coordinates":[1854,39116]},{"type":"Point","coordinates":[1867,39124]},{"type":"Point","coordinates":[1868,39125]},{"type":"Point","coordinates":[1868,39125]},{"type":"Point","coordinates":[1868,39126]},{"type":"Point","coordinates":[89231,43641]},{"type":"Point","coordinates":[1868,39126]},{"type":"Point","coordinates":[2265,39310]},{"type":"Point","coordinates":[1625,39018]},{"type":"Point","coordinates":[1624,39018]},{"type":"Point","coordinates":[1605,39010]},{"type":"Point","coordinates":[1632,39024]},{"type":"Point","coordinates":[1622,39021]},{"type":"Point","coordinates":[77824,47007]},{"type":"Point","coordinates":[1621,39027]},{"type":"Point","coordinates":[83290,45558]},{"type":"Point","coordinates":[1621,39032]},{"type":"Point","coordinates":[1626,39037]},{"type":"Point","coordinates":[6071,40985]},{"type":"Point","coordinates":[7143,41425]},{"type":"Point","coordinates":[942,38726]},{"type":"Point","coordinates":[35026,49055]},{"type":"Point","coordinates":[7145,41445]},{"type":"Point","coordinates":[2846,39616]},{"type":"Point","coordinates":[7143,41450]},{"type":"Point","coordinates":[7140,41454]},{"type":"Point","coordinates":[1590,39052]},{"type":"Point","coordinates":[1626,39069]},{"type":"Point","coordinates":[2290,39374]},{"type":"Point","coordinates":[7139,41458]},{"type":"Point","coordinates":[77928,47027]},{"type":"Point","coordinates":[1590,39058]},{"type":"Point","coordinates":[2915,39663]},{"type":"Point","coordinates":[85293,45000]},{"type":"Point","coordinates":[7135,41464]},{"type":"Point","coordinates":[7132,41464]},{"type":"Point","coordinates":[954,38775]},{"type":"Point","coordinates":[954,38775]},{"type":"Point","coordinates":[73017,48118]},{"type":"Point","coordinates":[7128,41471]},{"type":"Point","coordinates":[73020,48120]},{"type":"Point","coordinates":[1579,39077]},{"type":"Point","coordinates":[1794,39178]},{"type":"Point","coordinates":[7134,41486]},{"type":"Point","coordinates":[1962,39259]},{"type":"Point","coordinates":[7183,41510]},{"type":"Point","coordinates":[7115,41488]},{"type":"Point","coordinates":[2889,39686]},{"type":"Point","coordinates":[1198,38916]},{"type":"Point","coordinates":[85331,45026]},{"type":"Point","coordinates":[7187,41525]},{"type":"Point","coordinates":[81774,46079]},{"type":"Point","coordinates":[2265,39419]},{"type":"Point","coordinates":[81768,46088]},{"type":"Point","coordinates":[937,38815]},{"type":"Point","coordinates":[7081,41498]},{"type":"Point","coordinates":[6006,41060]},{"type":"Point","coordinates":[970,38840]},{"type":"Point","coordinates":[3080,39807]},{"type":"Point","coordinates":[919,38831]},{"type":"Point","coordinates":[2299,39479]},{"type":"Point","coordinates":[72647,48283]},{"type":"Point","coordinates":[3156,39886]},{"type":"Point","coordinates":[2416,39569]},{"type":"Point","coordinates":[90075,43546]},{"type":"Point","coordinates":[1874,39334]},{"type":"Point","coordinates":[1873,39335]},{"type":"Point","coordinates":[2243,39517]},{"type":"Point","coordinates":[2332,39558]},{"type":"Point","coordinates":[85922,44960]},{"type":"Point","coordinates":[1982,39418]},{"type":"Point","coordinates":[2071,39460]},{"type":"Point","coordinates":[5918,41140]},{"type":"Point","coordinates":[1988,39427]},{"type":"Point","coordinates":[5902,41140]},{"type":"Point","coordinates":[3008,39891]},{"type":"Point","coordinates":[5898,41140]},{"type":"Point","coordinates":[5899,41140]},{"type":"Point","coordinates":[5901,41143]},{"type":"Point","coordinates":[5899,41143]},{"type":"Point","coordinates":[5899,41143]},{"type":"Point","coordinates":[5901,41144]},{"type":"Point","coordinates":[7388,41754]},{"type":"Point","coordinates":[5898,41143]},{"type":"Point","coordinates":[5894,41142]},{"type":"Point","coordinates":[5894,41143]},{"type":"Point","coordinates":[5901,41147]},{"type":"Point","coordinates":[5892,41143]},{"type":"Point","coordinates":[5889,41143]},{"type":"Point","coordinates":[5911,41154]},{"type":"Point","coordinates":[5890,41145]},{"type":"Point","coordinates":[2051,39470]},{"type":"Point","coordinates":[5893,41146]},{"type":"Point","coordinates":[5893,41147]},{"type":"Point","coordinates":[5888,41146]},{"type":"Point","coordinates":[5893,41148]},{"type":"Point","coordinates":[5893,41148]},{"type":"Point","coordinates":[5891,41147]},{"type":"Point","coordinates":[5893,41148]},{"type":"Point","coordinates":[5892,41148]},{"type":"Point","coordinates":[5891,41148]},{"type":"Point","coordinates":[5889,41146]},{"type":"Point","coordinates":[5890,41148]},{"type":"Point","coordinates":[5888,41147]},{"type":"Point","coordinates":[5893,41149]},{"type":"Point","coordinates":[5884,41146]},{"type":"Point","coordinates":[5891,41149]},{"type":"Point","coordinates":[5892,41150]},{"type":"Point","coordinates":[5892,41150]},{"type":"Point","coordinates":[5893,41151]},{"type":"Point","coordinates":[5892,41150]},{"type":"Point","coordinates":[5884,41147]},{"type":"Point","coordinates":[5892,41150]},{"type":"Point","coordinates":[5889,41150]},{"type":"Point","coordinates":[5885,41149]},{"type":"Point","coordinates":[5885,41149]},{"type":"Point","coordinates":[5885,41149]},{"type":"Point","coordinates":[5885,41149]},{"type":"Point","coordinates":[5885,41149]},{"type":"Point","coordinates":[5885,41149]},{"type":"Point","coordinates":[5885,41149]},{"type":"Point","coordinates":[5889,41150]},{"type":"Point","coordinates":[1976,39441]},{"type":"Point","coordinates":[5889,41150]},{"type":"Point","coordinates":[5888,41150]},{"type":"Point","coordinates":[5884,41148]},{"type":"Point","coordinates":[5883,41148]},{"type":"Point","coordinates":[5889,41151]},{"type":"Point","coordinates":[5884,41149]},{"type":"Point","coordinates":[5888,41151]},{"type":"Point","coordinates":[5887,41151]},{"type":"Point","coordinates":[5888,41151]},{"type":"Point","coordinates":[5884,41149]},{"type":"Point","coordinates":[5887,41151]},{"type":"Point","coordinates":[5887,41151]},{"type":"Point","coordinates":[5887,41151]},{"type":"Point","coordinates":[5888,41151]},{"type":"Point","coordinates":[5888,41151]},{"type":"Point","coordinates":[5888,41151]},{"type":"Point","coordinates":[5890,41152]},{"type":"Point","coordinates":[5887,41151]},{"type":"Point","coordinates":[5886,41151]},{"type":"Point","coordinates":[5882,41149]},{"type":"Point","coordinates":[5882,41149]},{"type":"Point","coordinates":[5885,41151]},{"type":"Point","coordinates":[5883,41150]},{"type":"Point","coordinates":[5885,41151]},{"type":"Point","coordinates":[5886,41151]},{"type":"Point","coordinates":[5885,41151]},{"type":"Point","coordinates":[5887,41152]},{"type":"Point","coordinates":[5885,41151]},{"type":"Point","coordinates":[5877,41148]},{"type":"Point","coordinates":[5883,41151]},{"type":"Point","coordinates":[5885,41152]},{"type":"Point","coordinates":[5882,41151]},{"type":"Point","coordinates":[5883,41153]},{"type":"Point","coordinates":[5883,41153]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5878,41151]},{"type":"Point","coordinates":[5885,41153]},{"type":"Point","coordinates":[5877,41151]},{"type":"Point","coordinates":[5884,41154]},{"type":"Point","coordinates":[5884,41154]},{"type":"Point","coordinates":[5874,41149]},{"type":"Point","coordinates":[5881,41153]},{"type":"Point","coordinates":[6602,41451]},{"type":"Point","coordinates":[5884,41154]},{"type":"Point","coordinates":[5883,41154]},{"type":"Point","coordinates":[5878,41152]},{"type":"Point","coordinates":[5883,41154]},{"type":"Point","coordinates":[5885,41155]},{"type":"Point","coordinates":[5887,41157]},{"type":"Point","coordinates":[5887,41157]},{"type":"Point","coordinates":[5887,41157]},{"type":"Point","coordinates":[5887,41157]},{"type":"Point","coordinates":[5887,41157]},{"type":"Point","coordinates":[5887,41157]},{"type":"Point","coordinates":[5883,41155]},{"type":"Point","coordinates":[5882,41155]},{"type":"Point","coordinates":[5880,41154]},{"type":"Point","coordinates":[5872,41151]},{"type":"Point","coordinates":[5883,41156]},{"type":"Point","coordinates":[5881,41156]},{"type":"Point","coordinates":[5881,41158]},{"type":"Point","coordinates":[5881,41161]},{"type":"Point","coordinates":[5883,41162]},{"type":"Point","coordinates":[78067,47219]},{"type":"Point","coordinates":[5877,41171]},{"type":"Point","coordinates":[1491,39250]},{"type":"Point","coordinates":[5881,41182]},{"type":"Point","coordinates":[2283,39625]},{"type":"Point","coordinates":[2913,39910]},{"type":"Point","coordinates":[2371,39677]},{"type":"Point","coordinates":[1578,39320]},{"type":"Point","coordinates":[70780,48788]},{"type":"Point","coordinates":[1904,39480]},{"type":"Point","coordinates":[5932,41243]},{"type":"Point","coordinates":[5938,41246]},{"type":"Point","coordinates":[2875,39925]},{"type":"Point","coordinates":[83591,45790]},{"type":"Point","coordinates":[1637,39367]},{"type":"Point","coordinates":[81242,46464]},{"type":"Point","coordinates":[83440,45844]},{"type":"Point","coordinates":[2986,39988]},{"type":"Point","coordinates":[2680,39860]},{"type":"Point","coordinates":[83594,45815]},{"type":"Point","coordinates":[83593,45816]},{"type":"Point","coordinates":[77916,47341]},{"type":"Point","coordinates":[5958,41299]},{"type":"Point","coordinates":[5936,41291]},{"type":"Point","coordinates":[5954,41299]},{"type":"Point","coordinates":[5983,41311]},{"type":"Point","coordinates":[5983,41311]},{"type":"Point","coordinates":[5935,41293]},{"type":"Point","coordinates":[1565,39378]},{"type":"Point","coordinates":[1621,39410]},{"type":"Point","coordinates":[5974,41317]},{"type":"Point","coordinates":[1642,39422]},{"type":"Point","coordinates":[5969,41321]},{"type":"Point","coordinates":[5968,41321]},{"type":"Point","coordinates":[5966,41321]},{"type":"Point","coordinates":[5934,41311]},{"type":"Point","coordinates":[70537,48906]},{"type":"Point","coordinates":[5949,41329]},{"type":"Point","coordinates":[5949,41329]},{"type":"Point","coordinates":[5950,41332]},{"type":"Point","coordinates":[5952,41333]},{"type":"Point","coordinates":[5954,41335]},{"type":"Point","coordinates":[5937,41331]},{"type":"Point","coordinates":[1493,39383]},{"type":"Point","coordinates":[2263,39745]},{"type":"Point","coordinates":[71432,48781]},{"type":"Point","coordinates":[1621,39467]},{"type":"Point","coordinates":[66236,49613]},{"type":"Point","coordinates":[89745,43946]},{"type":"Point","coordinates":[83509,45968]},{"type":"Point","coordinates":[1408,39440]},{"type":"Point","coordinates":[70587,49005]},{"type":"Point","coordinates":[70528,49017]},{"type":"Point","coordinates":[84582,45674]},{"type":"Point","coordinates":[80791,46768]},{"type":"Point","coordinates":[78193,47437]},{"type":"Point","coordinates":[73048,48591]},{"type":"Point","coordinates":[70851,49024]},{"type":"Point","coordinates":[70858,49025]},{"type":"Point","coordinates":[87806,44751]},{"type":"Point","coordinates":[83474,46118]},{"type":"Point","coordinates":[6403,41743]},{"type":"Point","coordinates":[83450,46130]},{"type":"Point","coordinates":[70401,49163]},{"type":"Point","coordinates":[83483,46143]},{"type":"Point","coordinates":[83482,46144]},{"type":"Point","coordinates":[1181,39490]},{"type":"Point","coordinates":[70268,49220]},{"type":"Point","coordinates":[2278,40007]},{"type":"Point","coordinates":[83434,46181]},{"type":"Point","coordinates":[1071,39527]},{"type":"Point","coordinates":[83477,46260]},{"type":"Point","coordinates":[1122,39592]},{"type":"Point","coordinates":[1126,39597]},{"type":"Point","coordinates":[1122,39599]},{"type":"Point","coordinates":[965,39528]},{"type":"Point","coordinates":[85050,45814]},{"type":"Point","coordinates":[62331,50450]},{"type":"Point","coordinates":[80899,47043]},{"type":"Point","coordinates":[83477,46325]},{"type":"Point","coordinates":[84023,46181]},{"type":"Point","coordinates":[83455,46352]},{"type":"Point","coordinates":[83455,46352]},{"type":"Point","coordinates":[74172,48695]},{"type":"Point","coordinates":[1578,39909]},{"type":"Point","coordinates":[1192,39747]},{"type":"Point","coordinates":[83470,46401]},{"type":"Point","coordinates":[1123,39739]},{"type":"Point","coordinates":[1636,39980]},{"type":"Point","coordinates":[62236,50577]},{"type":"Point","coordinates":[1132,39766]},{"type":"Point","coordinates":[83259,46507]},{"type":"Point","coordinates":[1118,39767]},{"type":"Point","coordinates":[1512,39950]},{"type":"Point","coordinates":[1109,39765]},{"type":"Point","coordinates":[1124,39772]},{"type":"Point","coordinates":[1117,39770]},{"type":"Point","coordinates":[1119,39771]},{"type":"Point","coordinates":[11438,44030]},{"type":"Point","coordinates":[1532,39964]},{"type":"Point","coordinates":[70828,49417]},{"type":"Point","coordinates":[83961,46320]},{"type":"Point","coordinates":[1672,40036]},{"type":"Point","coordinates":[62181,50608]},{"type":"Point","coordinates":[1531,39972]},{"type":"Point","coordinates":[1136,39792]},{"type":"Point","coordinates":[70708,49447]},{"type":"Point","coordinates":[1135,39793]},{"type":"Point","coordinates":[70799,49452]},{"type":"Point","coordinates":[1189,39841]},{"type":"Point","coordinates":[1511,39995]},{"type":"Point","coordinates":[70422,49526]},{"type":"Point","coordinates":[7582,42608]},{"type":"Point","coordinates":[1333,39932]},{"type":"Point","coordinates":[61205,50752]},{"type":"Point","coordinates":[61160,50761]},{"type":"Point","coordinates":[71723,49330]},{"type":"Point","coordinates":[74872,48706]},{"type":"Point","coordinates":[1198,39918]},{"type":"Point","coordinates":[7742,42750]},{"type":"Point","coordinates":[7732,42748]},{"type":"Point","coordinates":[7744,42756]},{"type":"Point","coordinates":[83671,46540]},{"type":"Point","coordinates":[2165,40406]},{"type":"Point","coordinates":[83712,46543]},{"type":"Point","coordinates":[74419,48888]},{"type":"Point","coordinates":[79231,47780]},{"type":"Point","coordinates":[79232,47781]},{"type":"Point","coordinates":[79259,47780]},{"type":"Point","coordinates":[74623,48858]},{"type":"Point","coordinates":[7558,42738]},{"type":"Point","coordinates":[7558,42738]},{"type":"Point","coordinates":[7185,42591]},{"type":"Point","coordinates":[7564,42748]},{"type":"Point","coordinates":[7628,42778]},{"type":"Point","coordinates":[7476,42718]},{"type":"Point","coordinates":[1406,40107]},{"type":"Point","coordinates":[1274,40047]},{"type":"Point","coordinates":[7619,42777]},{"type":"Point","coordinates":[7621,42781]},{"type":"Point","coordinates":[7627,42786]},{"type":"Point","coordinates":[7627,42787]},{"type":"Point","coordinates":[1277,40056]},{"type":"Point","coordinates":[7618,42785]},{"type":"Point","coordinates":[7609,42786]},{"type":"Point","coordinates":[1283,40064]},{"type":"Point","coordinates":[1283,40065]},{"type":"Point","coordinates":[62484,50777]},{"type":"Point","coordinates":[7649,42812]},{"type":"Point","coordinates":[1289,40079]},{"type":"Point","coordinates":[84155,46477]},{"type":"Point","coordinates":[1368,40116]},{"type":"Point","coordinates":[1210,40045]},{"type":"Point","coordinates":[1213,40047]},{"type":"Point","coordinates":[1058,39976]},{"type":"Point","coordinates":[1394,40141]},{"type":"Point","coordinates":[1191,40049]},{"type":"Point","coordinates":[1191,40050]},{"type":"Point","coordinates":[1187,40052]},{"type":"Point","coordinates":[70642,49698]},{"type":"Point","coordinates":[72751,49311]},{"type":"Point","coordinates":[7578,42822]},{"type":"Point","coordinates":[1293,40125]},{"type":"Point","coordinates":[1290,40124]},{"type":"Point","coordinates":[84075,46546]},{"type":"Point","coordinates":[1312,40139]},{"type":"Point","coordinates":[84076,46549]},{"type":"Point","coordinates":[1312,40141]},{"type":"Point","coordinates":[1312,40142]},{"type":"Point","coordinates":[1312,40142]},{"type":"Point","coordinates":[1291,40133]},{"type":"Point","coordinates":[1711,40326]},{"type":"Point","coordinates":[1301,40141]},{"type":"Point","coordinates":[1592,40276]},{"type":"Point","coordinates":[67113,50282]},{"type":"Point","coordinates":[1409,40199]},{"type":"Point","coordinates":[81269,47364]},{"type":"Point","coordinates":[1609,40301]},{"type":"Point","coordinates":[1300,40159]},{"type":"Point","coordinates":[83951,46615]},{"type":"Point","coordinates":[1316,40172]},{"type":"Point","coordinates":[1320,40178]},{"type":"Point","coordinates":[1301,40174]},{"type":"Point","coordinates":[1298,40173]},{"type":"Point","coordinates":[1299,40174]},{"type":"Point","coordinates":[1438,40238]},{"type":"Point","coordinates":[1438,40239]},{"type":"Point","coordinates":[1441,40241]},{"type":"Point","coordinates":[1439,40240]},{"type":"Point","coordinates":[1441,40241]},{"type":"Point","coordinates":[1438,40240]},{"type":"Point","coordinates":[1442,40242]},{"type":"Point","coordinates":[1438,40240]},{"type":"Point","coordinates":[1437,40240]},{"type":"Point","coordinates":[1441,40242]},{"type":"Point","coordinates":[1442,40242]},{"type":"Point","coordinates":[1441,40242]},{"type":"Point","coordinates":[1439,40241]},{"type":"Point","coordinates":[1437,40240]},{"type":"Point","coordinates":[1438,40241]},{"type":"Point","coordinates":[1439,40241]},{"type":"Point","coordinates":[1441,40242]},{"type":"Point","coordinates":[1439,40242]},{"type":"Point","coordinates":[1438,40241]},{"type":"Point","coordinates":[1438,40241]},{"type":"Point","coordinates":[1438,40241]},{"type":"Point","coordinates":[1307,40181]},{"type":"Point","coordinates":[1439,40242]},{"type":"Point","coordinates":[1439,40242]},{"type":"Point","coordinates":[1439,40242]},{"type":"Point","coordinates":[1436,40241]},{"type":"Point","coordinates":[1438,40242]},{"type":"Point","coordinates":[1439,40243]},{"type":"Point","coordinates":[1444,40246]},{"type":"Point","coordinates":[83988,46619]},{"type":"Point","coordinates":[1433,40241]},{"type":"Point","coordinates":[1433,40241]},{"type":"Point","coordinates":[1435,40243]},{"type":"Point","coordinates":[1434,40243]},{"type":"Point","coordinates":[1432,40242]},{"type":"Point","coordinates":[1433,40243]},{"type":"Point","coordinates":[1437,40245]},{"type":"Point","coordinates":[1433,40244]},{"type":"Point","coordinates":[1432,40243]},{"type":"Point","coordinates":[1437,40246]},{"type":"Point","coordinates":[72820,49360]},{"type":"Point","coordinates":[1435,40245]},{"type":"Point","coordinates":[1433,40244]},{"type":"Point","coordinates":[83324,46818]},{"type":"Point","coordinates":[1418,40238]},{"type":"Point","coordinates":[1431,40245]},{"type":"Point","coordinates":[1418,40239]},{"type":"Point","coordinates":[1309,40188]},{"type":"Point","coordinates":[1307,40188]},{"type":"Point","coordinates":[1439,40249]},{"type":"Point","coordinates":[1440,40249]},{"type":"Point","coordinates":[2390,40682]},{"type":"Point","coordinates":[1308,40189]},{"type":"Point","coordinates":[1432,40246]},{"type":"Point","coordinates":[1307,40189]},{"type":"Point","coordinates":[1432,40247]},{"type":"Point","coordinates":[1313,40192]},{"type":"Point","coordinates":[1439,40250]},{"type":"Point","coordinates":[1304,40188]},{"type":"Point","coordinates":[1312,40192]},{"type":"Point","coordinates":[1307,40190]},{"type":"Point","coordinates":[1439,40251]},{"type":"Point","coordinates":[1304,40189]},{"type":"Point","coordinates":[1437,40251]},{"type":"Point","coordinates":[1306,40190]},{"type":"Point","coordinates":[1300,40187]},{"type":"Point","coordinates":[1303,40190]},{"type":"Point","coordinates":[1440,40252]},{"type":"Point","coordinates":[1438,40252]},{"type":"Point","coordinates":[1304,40190]},{"type":"Point","coordinates":[1303,40190]},{"type":"Point","coordinates":[1305,40191]},{"type":"Point","coordinates":[69081,50028]},{"type":"Point","coordinates":[1438,40253]},{"type":"Point","coordinates":[1438,40254]},{"type":"Point","coordinates":[1303,40192]},{"type":"Point","coordinates":[1302,40191]},{"type":"Point","coordinates":[1301,40191]},{"type":"Point","coordinates":[1308,40194]},{"type":"Point","coordinates":[1439,40255]},{"type":"Point","coordinates":[1437,40254]},{"type":"Point","coordinates":[1306,40194]},{"type":"Point","coordinates":[1438,40255]},{"type":"Point","coordinates":[1440,40256]},{"type":"Point","coordinates":[1438,40256]},{"type":"Point","coordinates":[1302,40194]},{"type":"Point","coordinates":[1302,40194]},{"type":"Point","coordinates":[1562,40314]},{"type":"Point","coordinates":[1561,40314]},{"type":"Point","coordinates":[1302,40194]},{"type":"Point","coordinates":[1313,40200]},{"type":"Point","coordinates":[1561,40314]},{"type":"Point","coordinates":[1437,40258]},{"type":"Point","coordinates":[1437,40258]},{"type":"Point","coordinates":[1438,40259]},{"type":"Point","coordinates":[1436,40258]},{"type":"Point","coordinates":[1435,40258]},{"type":"Point","coordinates":[1437,40259]},{"type":"Point","coordinates":[1437,40259]},{"type":"Point","coordinates":[1440,40261]},{"type":"Point","coordinates":[1438,40260]},{"type":"Point","coordinates":[1437,40260]},{"type":"Point","coordinates":[1438,40261]},{"type":"Point","coordinates":[1302,40198]},{"type":"Point","coordinates":[1437,40261]},{"type":"Point","coordinates":[1438,40261]},{"type":"Point","coordinates":[1561,40318]},{"type":"Point","coordinates":[1436,40260]},{"type":"Point","coordinates":[1438,40262]},{"type":"Point","coordinates":[1313,40204]},{"type":"Point","coordinates":[1436,40261]},{"type":"Point","coordinates":[1312,40204]},{"type":"Point","coordinates":[1312,40204]},{"type":"Point","coordinates":[1435,40261]},{"type":"Point","coordinates":[1561,40319]},{"type":"Point","coordinates":[1302,40200]},{"type":"Point","coordinates":[1303,40201]},{"type":"Point","coordinates":[1302,40201]},{"type":"Point","coordinates":[1614,40344]},{"type":"Point","coordinates":[1312,40206]},{"type":"Point","coordinates":[1312,40206]},{"type":"Point","coordinates":[1301,40201]},{"type":"Point","coordinates":[1565,40324]},{"type":"Point","coordinates":[1566,40324]},{"type":"Point","coordinates":[1565,40324]},{"type":"Point","coordinates":[1566,40325]},{"type":"Point","coordinates":[1566,40325]},{"type":"Point","coordinates":[1566,40325]},{"type":"Point","coordinates":[1566,40325]},{"type":"Point","coordinates":[1407,40253]},{"type":"Point","coordinates":[1301,40204]},{"type":"Point","coordinates":[1566,40327]},{"type":"Point","coordinates":[1566,40327]},{"type":"Point","coordinates":[1566,40328]},{"type":"Point","coordinates":[1302,40206]},{"type":"Point","coordinates":[1566,40328]},{"type":"Point","coordinates":[1566,40328]},{"type":"Point","coordinates":[1438,40275]},{"type":"Point","coordinates":[72832,49386]},{"type":"Point","coordinates":[1434,40275]},{"type":"Point","coordinates":[1334,40230]},{"type":"Point","coordinates":[1606,40360]},{"type":"Point","coordinates":[1500,40318]},{"type":"Point","coordinates":[1386,40266]},{"type":"Point","coordinates":[1570,40352]},{"type":"Point","coordinates":[1391,40272]},{"type":"Point","coordinates":[2104,40604]},{"type":"Point","coordinates":[1332,40252]},{"type":"Point","coordinates":[1485,40328]},{"type":"Point","coordinates":[1485,40329]},{"type":"Point","coordinates":[1485,40329]},{"type":"Point","coordinates":[1335,40262]},{"type":"Point","coordinates":[1335,40263]},{"type":"Point","coordinates":[1335,40263]},{"type":"Point","coordinates":[1336,40263]},{"type":"Point","coordinates":[1336,40263]},{"type":"Point","coordinates":[1336,40263]},{"type":"Point","coordinates":[1335,40263]},{"type":"Point","coordinates":[1336,40264]},{"type":"Point","coordinates":[1718,40440]},{"type":"Point","coordinates":[1335,40267]},{"type":"Point","coordinates":[1775,40468]},{"type":"Point","coordinates":[1713,40440]},{"type":"Point","coordinates":[1334,40271]},{"type":"Point","coordinates":[1334,40272]},{"type":"Point","coordinates":[1333,40273]},{"type":"Point","coordinates":[1717,40452]},{"type":"Point","coordinates":[83239,46921]},{"type":"Point","coordinates":[1491,40354]},{"type":"Point","coordinates":[1322,40276]},{"type":"Point","coordinates":[1491,40354]},{"type":"Point","coordinates":[1490,40354]},{"type":"Point","coordinates":[1327,40281]},{"type":"Point","coordinates":[1667,40438]},{"type":"Point","coordinates":[84065,46685]},{"type":"Point","coordinates":[1324,40282]},{"type":"Point","coordinates":[1539,40386]},{"type":"Point","coordinates":[1509,40372]},{"type":"Point","coordinates":[1539,40388]},{"type":"Point","coordinates":[1539,40389]},{"type":"Point","coordinates":[1538,40389]},{"type":"Point","coordinates":[1537,40389]},{"type":"Point","coordinates":[2064,40630]},{"type":"Point","coordinates":[2064,40630]},{"type":"Point","coordinates":[1661,40448]},{"type":"Point","coordinates":[842,40073]},{"type":"Point","coordinates":[2030,40623]},{"type":"Point","coordinates":[2407,40795]},{"type":"Point","coordinates":[1488,40378]},{"type":"Point","coordinates":[2098,40659]},{"type":"Point","coordinates":[2098,40660]},{"type":"Point","coordinates":[1376,40330]},{"type":"Point","coordinates":[2098,40660]},{"type":"Point","coordinates":[1544,40413]},{"type":"Point","coordinates":[2375,40791]},{"type":"Point","coordinates":[1564,40424]},{"type":"Point","coordinates":[1520,40404]},{"type":"Point","coordinates":[1594,40440]},{"type":"Point","coordinates":[1594,40441]},{"type":"Point","coordinates":[1518,40410]},{"type":"Point","coordinates":[72189,49605]},{"type":"Point","coordinates":[2656,40930]},{"type":"Point","coordinates":[70727,49873]},{"type":"Point","coordinates":[1544,40429]},{"type":"Point","coordinates":[7570,43015]},{"type":"Point","coordinates":[1240,40293]},{"type":"Point","coordinates":[1586,40453]},{"type":"Point","coordinates":[1539,40431]},{"type":"Point","coordinates":[1536,40430]},{"type":"Point","coordinates":[5560,42197]},{"type":"Point","coordinates":[72888,49485]},{"type":"Point","coordinates":[1323,40340]},{"type":"Point","coordinates":[1570,40454]},{"type":"Point","coordinates":[1570,40454]},{"type":"Point","coordinates":[1570,40455]},{"type":"Point","coordinates":[1570,40455]},{"type":"Point","coordinates":[1423,40389]},{"type":"Point","coordinates":[7572,43031]},{"type":"Point","coordinates":[7581,43038]},{"type":"Point","coordinates":[1325,40352]},{"type":"Point","coordinates":[1307,40344]},{"type":"Point","coordinates":[7533,43026]},{"type":"Point","coordinates":[1303,40347]},{"type":"Point","coordinates":[1676,40519]},{"type":"Point","coordinates":[83142,47031]},{"type":"Point","coordinates":[1632,40503]},{"type":"Point","coordinates":[7589,43055]},{"type":"Point","coordinates":[7553,43042]},{"type":"Point","coordinates":[1723,40547]},{"type":"Point","coordinates":[1723,40547]},{"type":"Point","coordinates":[1550,40470]},{"type":"Point","coordinates":[1638,40514]},{"type":"Point","coordinates":[1638,40514]},{"type":"Point","coordinates":[83145,47041]},{"type":"Point","coordinates":[1638,40514]},{"type":"Point","coordinates":[7516,43035]},{"type":"Point","coordinates":[83140,47044]},{"type":"Point","coordinates":[1632,40514]},{"type":"Point","coordinates":[1631,40513]},{"type":"Point","coordinates":[1637,40517]},{"type":"Point","coordinates":[1395,40406]},{"type":"Point","coordinates":[1631,40514]},{"type":"Point","coordinates":[1631,40515]},{"type":"Point","coordinates":[1632,40515]},{"type":"Point","coordinates":[1551,40479]},{"type":"Point","coordinates":[1641,40522]},{"type":"Point","coordinates":[1531,40472]},{"type":"Point","coordinates":[7590,43070]},{"type":"Point","coordinates":[1578,40494]},{"type":"Point","coordinates":[7590,43071]},{"type":"Point","coordinates":[1553,40484]},{"type":"Point","coordinates":[7590,43072]},{"type":"Point","coordinates":[1571,40495]},{"type":"Point","coordinates":[1551,40487]},{"type":"Point","coordinates":[1333,40388]},{"type":"Point","coordinates":[63453,50965]},{"type":"Point","coordinates":[1335,40392]},{"type":"Point","coordinates":[70754,49931]},{"type":"Point","coordinates":[1988,40696]},{"type":"Point","coordinates":[1990,40698]},{"type":"Point","coordinates":[1988,40698]},{"type":"Point","coordinates":[1987,40698]},{"type":"Point","coordinates":[1599,40522]},{"type":"Point","coordinates":[1454,40456]},{"type":"Point","coordinates":[1575,40515]},{"type":"Point","coordinates":[1510,40489]},{"type":"Point","coordinates":[1337,40411]},{"type":"Point","coordinates":[1413,40450]},{"type":"Point","coordinates":[1420,40453]},{"type":"Point","coordinates":[1420,40453]},{"type":"Point","coordinates":[1418,40453]},{"type":"Point","coordinates":[1419,40454]},{"type":"Point","coordinates":[1418,40454]},{"type":"Point","coordinates":[7798,43186]},{"type":"Point","coordinates":[7586,43103]},{"type":"Point","coordinates":[7588,43105]},{"type":"Point","coordinates":[7588,43105]},{"type":"Point","coordinates":[7589,43107]},{"type":"Point","coordinates":[7585,43106]},{"type":"Point","coordinates":[1484,40491]},{"type":"Point","coordinates":[7582,43107]},{"type":"Point","coordinates":[2446,40929]},{"type":"Point","coordinates":[1346,40432]},{"type":"Point","coordinates":[1395,40455]},{"type":"Point","coordinates":[2346,40889]},{"type":"Point","coordinates":[1581,40543]},{"type":"Point","coordinates":[1983,40729]},{"type":"Point","coordinates":[83961,46859]},{"type":"Point","coordinates":[1561,40538]},{"type":"Point","coordinates":[7542,43103]},{"type":"Point","coordinates":[1560,40539]},{"type":"Point","coordinates":[1560,40539]},{"type":"Point","coordinates":[1561,40539]},{"type":"Point","coordinates":[1560,40539]},{"type":"Point","coordinates":[1560,40540]},{"type":"Point","coordinates":[1559,40540]},{"type":"Point","coordinates":[1520,40525]},{"type":"Point","coordinates":[1277,40414]},{"type":"Point","coordinates":[1277,40414]},{"type":"Point","coordinates":[1554,40544]},{"type":"Point","coordinates":[1553,40545]},{"type":"Point","coordinates":[1553,40545]},{"type":"Point","coordinates":[1554,40546]},{"type":"Point","coordinates":[1554,40546]},{"type":"Point","coordinates":[1553,40546]},{"type":"Point","coordinates":[1553,40549]},{"type":"Point","coordinates":[1516,40533]},{"type":"Point","coordinates":[1553,40550]},{"type":"Point","coordinates":[1552,40550]},{"type":"Point","coordinates":[1552,40550]},{"type":"Point","coordinates":[1552,40550]},{"type":"Point","coordinates":[1552,40551]},{"type":"Point","coordinates":[1552,40551]},{"type":"Point","coordinates":[1552,40551]},{"type":"Point","coordinates":[1552,40551]},{"type":"Point","coordinates":[1552,40551]},{"type":"Point","coordinates":[1552,40551]},{"type":"Point","coordinates":[1551,40551]},{"type":"Point","coordinates":[1552,40551]},{"type":"Point","coordinates":[1551,40551]},{"type":"Point","coordinates":[1552,40553]},{"type":"Point","coordinates":[1311,40442]},{"type":"Point","coordinates":[1591,40572]},{"type":"Point","coordinates":[1550,40554]},{"type":"Point","coordinates":[1510,40537]},{"type":"Point","coordinates":[1658,40604]},{"type":"Point","coordinates":[1510,40537]},{"type":"Point","coordinates":[1547,40554]},{"type":"Point","coordinates":[1590,40577]},{"type":"Point","coordinates":[1590,40577]},{"type":"Point","coordinates":[1590,40577]},{"type":"Point","coordinates":[1547,40557]},{"type":"Point","coordinates":[1529,40550]},{"type":"Point","coordinates":[1535,40554]},{"type":"Point","coordinates":[1507,40542]},{"type":"Point","coordinates":[1530,40552]},{"type":"Point","coordinates":[1541,40558]},{"type":"Point","coordinates":[1541,40558]},{"type":"Point","coordinates":[72090,49757]},{"type":"Point","coordinates":[1433,40514]},{"type":"Point","coordinates":[1546,40566]},{"type":"Point","coordinates":[2003,40779]},{"type":"Point","coordinates":[2019,40787]},{"type":"Point","coordinates":[1588,40591]},{"type":"Point","coordinates":[1359,40486]},{"type":"Point","coordinates":[1359,40487]},{"type":"Point","coordinates":[1511,40556]},{"type":"Point","coordinates":[1556,40578]},{"type":"Point","coordinates":[1555,40577]},{"type":"Point","coordinates":[1360,40488]},{"type":"Point","coordinates":[2002,40782]},{"type":"Point","coordinates":[2002,40782]},{"type":"Point","coordinates":[1611,40604]},{"type":"Point","coordinates":[74493,49293]},{"type":"Point","coordinates":[1611,40604]},{"type":"Point","coordinates":[1612,40605]},{"type":"Point","coordinates":[1611,40605]},{"type":"Point","coordinates":[1611,40605]},{"type":"Point","coordinates":[2005,40785]},{"type":"Point","coordinates":[1482,40547]},{"type":"Point","coordinates":[1481,40548]},{"type":"Point","coordinates":[1501,40558]},{"type":"Point","coordinates":[1499,40557]},{"type":"Point","coordinates":[1460,40541]},{"type":"Point","coordinates":[89634,45077]},{"type":"Point","coordinates":[1545,40584]},{"type":"Point","coordinates":[1544,40583]},{"type":"Point","coordinates":[1660,40639]},{"type":"Point","coordinates":[1544,40587]},{"type":"Point","coordinates":[1544,40588]},{"type":"Point","coordinates":[1544,40591]},{"type":"Point","coordinates":[1535,40587]},{"type":"Point","coordinates":[1371,40512]},{"type":"Point","coordinates":[63669,51043]},{"type":"Point","coordinates":[1501,40573]},{"type":"Point","coordinates":[1974,40793]},{"type":"Point","coordinates":[1974,40793]},{"type":"Point","coordinates":[83318,47114]},{"type":"Point","coordinates":[1543,40599]},{"type":"Point","coordinates":[1444,40554]},{"type":"Point","coordinates":[7650,43215]},{"type":"Point","coordinates":[7650,43215]},{"type":"Point","coordinates":[7650,43215]},{"type":"Point","coordinates":[1340,40508]},{"type":"Point","coordinates":[1441,40555]},{"type":"Point","coordinates":[1441,40556]},{"type":"Point","coordinates":[1500,40583]},{"type":"Point","coordinates":[2053,40836]},{"type":"Point","coordinates":[1491,40580]},{"type":"Point","coordinates":[1500,40584]},{"type":"Point","coordinates":[1441,40558]},{"type":"Point","coordinates":[1502,40586]},{"type":"Point","coordinates":[1441,40558]},{"type":"Point","coordinates":[1440,40559]},{"type":"Point","coordinates":[1501,40587]},{"type":"Point","coordinates":[1573,40622]},{"type":"Point","coordinates":[1469,40579]},{"type":"Point","coordinates":[83267,47145]},{"type":"Point","coordinates":[1417,40556]},{"type":"Point","coordinates":[1195,40454]},{"type":"Point","coordinates":[1317,40511]},{"type":"Point","coordinates":[1594,40641]},{"type":"Point","coordinates":[1594,40641]},{"type":"Point","coordinates":[1418,40560]},{"type":"Point","coordinates":[1622,40654]},{"type":"Point","coordinates":[1622,40654]},{"type":"Point","coordinates":[1463,40582]},{"type":"Point","coordinates":[1463,40582]},{"type":"Point","coordinates":[1454,40578]},{"type":"Point","coordinates":[1384,40548]},{"type":"Point","coordinates":[1382,40548]},{"type":"Point","coordinates":[1470,40589]},{"type":"Point","coordinates":[1580,40640]},{"type":"Point","coordinates":[1577,40639]},{"type":"Point","coordinates":[1577,40639]},{"type":"Point","coordinates":[1579,40640]},{"type":"Point","coordinates":[1580,40641]},{"type":"Point","coordinates":[1585,40643]},{"type":"Point","coordinates":[1333,40528]},{"type":"Point","coordinates":[7457,43163]},{"type":"Point","coordinates":[1588,40648]},{"type":"Point","coordinates":[1564,40640]},{"type":"Point","coordinates":[1564,40640]},{"type":"Point","coordinates":[1385,40558]},{"type":"Point","coordinates":[1498,40612]},{"type":"Point","coordinates":[1558,40641]},{"type":"Point","coordinates":[72317,49785]},{"type":"Point","coordinates":[1612,40674]},{"type":"Point","coordinates":[1421,40590]},{"type":"Point","coordinates":[1335,40552]},{"type":"Point","coordinates":[70455,50136]},{"type":"Point","coordinates":[7606,43247]},{"type":"Point","coordinates":[7606,43247]},{"type":"Point","coordinates":[1339,40560]},{"type":"Point","coordinates":[1578,40670]},{"type":"Point","coordinates":[1339,40560]},{"type":"Point","coordinates":[1337,40560]},{"type":"Point","coordinates":[1576,40671]},{"type":"Point","coordinates":[2085,40905]},{"type":"Point","coordinates":[1570,40671]},{"type":"Point","coordinates":[1568,40670]},{"type":"Point","coordinates":[1589,40681]},{"type":"Point","coordinates":[1591,40683]},{"type":"Point","coordinates":[1224,40515]},{"type":"Point","coordinates":[1592,40686]},{"type":"Point","coordinates":[1595,40688]},{"type":"Point","coordinates":[1595,40688]},{"type":"Point","coordinates":[2478,41089]},{"type":"Point","coordinates":[1591,40688]},{"type":"Point","coordinates":[1594,40689]},{"type":"Point","coordinates":[7573,43250]},{"type":"Point","coordinates":[1562,40676]},{"type":"Point","coordinates":[1595,40694]},{"type":"Point","coordinates":[1574,40685]},{"type":"Point","coordinates":[1350,40584]},{"type":"Point","coordinates":[1349,40584]},{"type":"Point","coordinates":[34290,50553]},{"type":"Point","coordinates":[1348,40585]},{"type":"Point","coordinates":[1550,40683]},{"type":"Point","coordinates":[2041,40907]},{"type":"Point","coordinates":[34288,50558]},{"type":"Point","coordinates":[1581,40701]},{"type":"Point","coordinates":[2091,40933]},{"type":"Point","coordinates":[1527,40678]},{"type":"Point","coordinates":[1485,40660]},{"type":"Point","coordinates":[1485,40660]},{"type":"Point","coordinates":[1485,40660]},{"type":"Point","coordinates":[1430,40635]},{"type":"Point","coordinates":[2021,40911]},{"type":"Point","coordinates":[1505,40677]},{"type":"Point","coordinates":[2463,41112]},{"type":"Point","coordinates":[1499,40675]},{"type":"Point","coordinates":[1505,40678]},{"type":"Point","coordinates":[1667,40752]},{"type":"Point","coordinates":[1500,40677]},{"type":"Point","coordinates":[1528,40694]},{"type":"Point","coordinates":[83035,47301]},{"type":"Point","coordinates":[2022,40923]},{"type":"Point","coordinates":[1505,40692]},{"type":"Point","coordinates":[7635,43317]},{"type":"Point","coordinates":[1514,40697]},{"type":"Point","coordinates":[5180,42312]},{"type":"Point","coordinates":[1502,40693]},{"type":"Point","coordinates":[2195,41009]},{"type":"Point","coordinates":[1502,40694]},{"type":"Point","coordinates":[2194,41009]},{"type":"Point","coordinates":[64151,51107]},{"type":"Point","coordinates":[1493,40692]},{"type":"Point","coordinates":[1600,40742]},{"type":"Point","coordinates":[1582,40735]},{"type":"Point","coordinates":[70677,50163]},{"type":"Point","coordinates":[1579,40734]},{"type":"Point","coordinates":[2358,41088]},{"type":"Point","coordinates":[1937,40898]},{"type":"Point","coordinates":[2058,40958]},{"type":"Point","coordinates":[83388,47219]},{"type":"Point","coordinates":[1499,40706]},{"type":"Point","coordinates":[1499,40706]},{"type":"Point","coordinates":[2059,40961]},{"type":"Point","coordinates":[1312,40620]},{"type":"Point","coordinates":[2060,40962]},{"type":"Point","coordinates":[1864,40874]},{"type":"Point","coordinates":[2059,40962]},{"type":"Point","coordinates":[1538,40725]},{"type":"Point","coordinates":[7564,43307]},{"type":"Point","coordinates":[1308,40622]},{"type":"Point","coordinates":[2072,40971]},{"type":"Point","coordinates":[2072,40971]},{"type":"Point","coordinates":[2072,40971]},{"type":"Point","coordinates":[2034,40954]},{"type":"Point","coordinates":[2072,40972]},{"type":"Point","coordinates":[1688,40798]},{"type":"Point","coordinates":[1537,40729]},{"type":"Point","coordinates":[7565,43313]},{"type":"Point","coordinates":[1537,40732]},{"type":"Point","coordinates":[2065,40973]},{"type":"Point","coordinates":[1537,40732]},{"type":"Point","coordinates":[1507,40719]},{"type":"Point","coordinates":[7580,43321]},{"type":"Point","coordinates":[1511,40721]},{"type":"Point","coordinates":[1573,40751]},{"type":"Point","coordinates":[73049,49745]},{"type":"Point","coordinates":[7581,43325]},{"type":"Point","coordinates":[1478,40711]},{"type":"Point","coordinates":[7551,43315]},{"type":"Point","coordinates":[2196,41038]},{"type":"Point","coordinates":[1478,40712]},{"type":"Point","coordinates":[1540,40741]},{"type":"Point","coordinates":[1510,40727]},{"type":"Point","coordinates":[2077,40986]},{"type":"Point","coordinates":[2077,40987]},{"type":"Point","coordinates":[1477,40713]},{"type":"Point","coordinates":[1875,40896]},{"type":"Point","coordinates":[2256,41070]},{"type":"Point","coordinates":[1471,40714]},{"type":"Point","coordinates":[1983,40948]},{"type":"Point","coordinates":[2063,40985]},{"type":"Point","coordinates":[1466,40714]},{"type":"Point","coordinates":[1543,40752]},{"type":"Point","coordinates":[2546,41208]},{"type":"Point","coordinates":[80784,47974]},{"type":"Point","coordinates":[2462,41171]},{"type":"Point","coordinates":[1559,40763]},{"type":"Point","coordinates":[1549,40761]},{"type":"Point","coordinates":[2107,41016]},{"type":"Point","coordinates":[1548,40761]},{"type":"Point","coordinates":[1503,40741]},{"type":"Point","coordinates":[1505,40742]},{"type":"Point","coordinates":[1559,40767]},{"type":"Point","coordinates":[2072,41000]},{"type":"Point","coordinates":[1551,40764]},{"type":"Point","coordinates":[2108,41017]},{"type":"Point","coordinates":[1550,40765]},{"type":"Point","coordinates":[2067,41001]},{"type":"Point","coordinates":[1616,40797]},{"type":"Point","coordinates":[7520,43325]},{"type":"Point","coordinates":[1534,40760]},{"type":"Point","coordinates":[81637,47753]},{"type":"Point","coordinates":[81637,47753]},{"type":"Point","coordinates":[1511,40751]},{"type":"Point","coordinates":[2086,41013]},{"type":"Point","coordinates":[2108,41024]},{"type":"Point","coordinates":[2086,41014]},{"type":"Point","coordinates":[1458,40729]},{"type":"Point","coordinates":[2092,41017]},{"type":"Point","coordinates":[1501,40749]},{"type":"Point","coordinates":[72855,49812]},{"type":"Point","coordinates":[1492,40746]},{"type":"Point","coordinates":[1540,40768]},{"type":"Point","coordinates":[2706,41297]},{"type":"Point","coordinates":[1568,40782]},{"type":"Point","coordinates":[2706,41297]},{"type":"Point","coordinates":[1503,40753]},{"type":"Point","coordinates":[73267,49735]},{"type":"Point","coordinates":[73127,49763]},{"type":"Point","coordinates":[1456,40733]},{"type":"Point","coordinates":[73123,49764]},{"type":"Point","coordinates":[2081,41019]},{"type":"Point","coordinates":[1451,40732]},{"type":"Point","coordinates":[1445,40729]},{"type":"Point","coordinates":[1257,40644]},{"type":"Point","coordinates":[1500,40757]},{"type":"Point","coordinates":[1499,40756]},{"type":"Point","coordinates":[1497,40756]},{"type":"Point","coordinates":[1596,40801]},{"type":"Point","coordinates":[1497,40756]},{"type":"Point","coordinates":[1501,40759]},{"type":"Point","coordinates":[1502,40760]},{"type":"Point","coordinates":[1499,40759]},{"type":"Point","coordinates":[1502,40760]},{"type":"Point","coordinates":[1499,40759]},{"type":"Point","coordinates":[1459,40741]},{"type":"Point","coordinates":[1502,40762]},{"type":"Point","coordinates":[1497,40760]},{"type":"Point","coordinates":[1499,40762]},{"type":"Point","coordinates":[1517,40770]},{"type":"Point","coordinates":[1497,40761]},{"type":"Point","coordinates":[1444,40737]},{"type":"Point","coordinates":[1504,40765]},{"type":"Point","coordinates":[1443,40737]},{"type":"Point","coordinates":[1505,40766]},{"type":"Point","coordinates":[1442,40737]},{"type":"Point","coordinates":[1504,40766]},{"type":"Point","coordinates":[1507,40768]},{"type":"Point","coordinates":[1505,40767]},{"type":"Point","coordinates":[1505,40767]},{"type":"Point","coordinates":[1505,40767]},{"type":"Point","coordinates":[1505,40767]},{"type":"Point","coordinates":[1503,40766]},{"type":"Point","coordinates":[73132,49774]},{"type":"Point","coordinates":[1505,40767]},{"type":"Point","coordinates":[2098,41038]},{"type":"Point","coordinates":[1482,40757]},{"type":"Point","coordinates":[1511,40770]},{"type":"Point","coordinates":[1505,40768]},{"type":"Point","coordinates":[1503,40767]},{"type":"Point","coordinates":[1503,40768]},{"type":"Point","coordinates":[73132,49775]},{"type":"Point","coordinates":[1513,40772]},{"type":"Point","coordinates":[1546,40788]},{"type":"Point","coordinates":[1503,40768]},{"type":"Point","coordinates":[2090,41036]},{"type":"Point","coordinates":[2003,40997]},{"type":"Point","coordinates":[1506,40771]},{"type":"Point","coordinates":[1506,40771]},{"type":"Point","coordinates":[1506,40771]},{"type":"Point","coordinates":[1440,40741]},{"type":"Point","coordinates":[1504,40771]},{"type":"Point","coordinates":[2096,41041]},{"type":"Point","coordinates":[1496,40768]},{"type":"Point","coordinates":[1504,40772]},{"type":"Point","coordinates":[1506,40773]},{"type":"Point","coordinates":[2090,41039]},{"type":"Point","coordinates":[1475,40759]},{"type":"Point","coordinates":[1505,40772]},{"type":"Point","coordinates":[1475,40759]},{"type":"Point","coordinates":[1505,40773]},{"type":"Point","coordinates":[1505,40774]},{"type":"Point","coordinates":[1462,40754]},{"type":"Point","coordinates":[1506,40774]},{"type":"Point","coordinates":[2093,41042]},{"type":"Point","coordinates":[1540,40790]},{"type":"Point","coordinates":[1506,40775]},{"type":"Point","coordinates":[1506,40776]},{"type":"Point","coordinates":[1505,40775]},{"type":"Point","coordinates":[1506,40776]},{"type":"Point","coordinates":[1505,40776]},{"type":"Point","coordinates":[1505,40776]},{"type":"Point","coordinates":[1505,40776]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1260,40664]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1493,40771]},{"type":"Point","coordinates":[1505,40777]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1495,40772]},{"type":"Point","coordinates":[1505,40777]},{"type":"Point","coordinates":[1507,40779]},{"type":"Point","coordinates":[1498,40775]},{"type":"Point","coordinates":[1503,40778]},{"type":"Point","coordinates":[1505,40779]},{"type":"Point","coordinates":[1550,40800]},{"type":"Point","coordinates":[1530,40790]},{"type":"Point","coordinates":[1505,40779]},{"type":"Point","coordinates":[1505,40779]},{"type":"Point","coordinates":[1505,40779]},{"type":"Point","coordinates":[1505,40779]},{"type":"Point","coordinates":[1504,40779]},{"type":"Point","coordinates":[1495,40775]},{"type":"Point","coordinates":[1505,40780]},{"type":"Point","coordinates":[1505,40780]},{"type":"Point","coordinates":[2093,41048]},{"type":"Point","coordinates":[1506,40780]},{"type":"Point","coordinates":[1474,40766]},{"type":"Point","coordinates":[1506,40781]},{"type":"Point","coordinates":[1504,40780]},{"type":"Point","coordinates":[1498,40777]},{"type":"Point","coordinates":[1507,40781]},{"type":"Point","coordinates":[1507,40781]},{"type":"Point","coordinates":[1507,40781]},{"type":"Point","coordinates":[1505,40781]},{"type":"Point","coordinates":[1505,40781]},{"type":"Point","coordinates":[2094,41049]},{"type":"Point","coordinates":[1502,40779]},{"type":"Point","coordinates":[1506,40783]},{"type":"Point","coordinates":[1504,40782]},{"type":"Point","coordinates":[1504,40782]},{"type":"Point","coordinates":[1505,40783]},{"type":"Point","coordinates":[1494,40778]},{"type":"Point","coordinates":[1506,40783]},{"type":"Point","coordinates":[1504,40783]},{"type":"Point","coordinates":[1480,40772]},{"type":"Point","coordinates":[1499,40781]},{"type":"Point","coordinates":[1499,40781]},{"type":"Point","coordinates":[1499,40781]},{"type":"Point","coordinates":[1499,40781]},{"type":"Point","coordinates":[1504,40783]},{"type":"Point","coordinates":[1505,40783]},{"type":"Point","coordinates":[1504,40783]},{"type":"Point","coordinates":[1503,40783]},{"type":"Point","coordinates":[1503,40783]},{"type":"Point","coordinates":[1503,40783]},{"type":"Point","coordinates":[1503,40783]},{"type":"Point","coordinates":[1504,40784]},{"type":"Point","coordinates":[1503,40783]},{"type":"Point","coordinates":[2102,41057]},{"type":"Point","coordinates":[1505,40786]},{"type":"Point","coordinates":[1505,40785]},{"type":"Point","coordinates":[1505,40786]},{"type":"Point","coordinates":[1505,40786]},{"type":"Point","coordinates":[2094,41054]},{"type":"Point","coordinates":[1505,40786]},{"type":"Point","coordinates":[1504,40786]},{"type":"Point","coordinates":[2097,41056]},{"type":"Point","coordinates":[1505,40787]},{"type":"Point","coordinates":[1506,40787]},{"type":"Point","coordinates":[1505,40787]},{"type":"Point","coordinates":[2109,41062]},{"type":"Point","coordinates":[1506,40787]},{"type":"Point","coordinates":[1505,40787]},{"type":"Point","coordinates":[1428,40752]},{"type":"Point","coordinates":[1505,40787]},{"type":"Point","coordinates":[1504,40787]},{"type":"Point","coordinates":[1505,40787]},{"type":"Point","coordinates":[1505,40787]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1502,40786]},{"type":"Point","coordinates":[1505,40787]},{"type":"Point","coordinates":[1504,40787]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1506,40788]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1503,40787]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1508,40789]},{"type":"Point","coordinates":[1506,40789]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1501,40787]},{"type":"Point","coordinates":[1506,40789]},{"type":"Point","coordinates":[1502,40787]},{"type":"Point","coordinates":[1542,40806]},{"type":"Point","coordinates":[1506,40789]},{"type":"Point","coordinates":[1506,40789]},{"type":"Point","coordinates":[1507,40789]},{"type":"Point","coordinates":[1505,40788]},{"type":"Point","coordinates":[1502,40787]},{"type":"Point","coordinates":[1506,40789]},{"type":"Point","coordinates":[1505,40789]},{"type":"Point","coordinates":[1507,40790]},{"type":"Point","coordinates":[1506,40790]},{"type":"Point","coordinates":[1506,40790]},{"type":"Point","coordinates":[1505,40789]},{"type":"Point","coordinates":[2102,41061]},{"type":"Point","coordinates":[1507,40790]},{"type":"Point","coordinates":[1506,40790]},{"type":"Point","coordinates":[1505,40790]},{"type":"Point","coordinates":[1506,40790]},{"type":"Point","coordinates":[1505,40790]},{"type":"Point","coordinates":[1425,40753]},{"type":"Point","coordinates":[1506,40791]},{"type":"Point","coordinates":[1503,40790]},{"type":"Point","coordinates":[2106,41064]},{"type":"Point","coordinates":[1424,40753]},{"type":"Point","coordinates":[1506,40791]},{"type":"Point","coordinates":[1506,40791]},{"type":"Point","coordinates":[1506,40791]},{"type":"Point","coordinates":[2106,41064]},{"type":"Point","coordinates":[1506,40791]},{"type":"Point","coordinates":[1506,40791]},{"type":"Point","coordinates":[1505,40791]},{"type":"Point","coordinates":[1506,40791]},{"type":"Point","coordinates":[2106,41064]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1507,40793]},{"type":"Point","coordinates":[1507,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1507,40793]},{"type":"Point","coordinates":[1507,40793]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1506,40792]},{"type":"Point","coordinates":[1508,40793]},{"type":"Point","coordinates":[1506,40793]},{"type":"Point","coordinates":[1506,40793]},{"type":"Point","coordinates":[1506,40793]},{"type":"Point","coordinates":[1507,40793]},{"type":"Point","coordinates":[1509,40794]},{"type":"Point","coordinates":[1425,40756]},{"type":"Point","coordinates":[2106,41066]},{"type":"Point","coordinates":[1507,40794]},{"type":"Point","coordinates":[2107,41067]},{"type":"Point","coordinates":[1508,40795]},{"type":"Point","coordinates":[1508,40795]},{"type":"Point","coordinates":[1508,40795]},{"type":"Point","coordinates":[1501,40792]},{"type":"Point","coordinates":[1508,40795]},{"type":"Point","coordinates":[2109,41069]},{"type":"Point","coordinates":[2109,41069]},{"type":"Point","coordinates":[2109,41069]},{"type":"Point","coordinates":[2109,41069]},{"type":"Point","coordinates":[1426,40758]},{"type":"Point","coordinates":[1513,40798]},{"type":"Point","coordinates":[1508,40796]},{"type":"Point","coordinates":[1508,40796]},{"type":"Point","coordinates":[1508,40797]},{"type":"Point","coordinates":[1490,40788]},{"type":"Point","coordinates":[1504,40796]},{"type":"Point","coordinates":[1511,40800]},{"type":"Point","coordinates":[1562,40826]},{"type":"Point","coordinates":[1516,40805]},{"type":"Point","coordinates":[1441,40771]},{"type":"Point","coordinates":[81622,47811]},{"type":"Point","coordinates":[2062,41058]},{"type":"Point","coordinates":[1416,40764]},{"type":"Point","coordinates":[1497,40801]},{"type":"Point","coordinates":[1516,40810]},{"type":"Point","coordinates":[2130,41090]},{"type":"Point","coordinates":[1439,40776]},{"type":"Point","coordinates":[1415,40765]},{"type":"Point","coordinates":[1415,40765]},{"type":"Point","coordinates":[2123,41089]},{"type":"Point","coordinates":[1509,40811]},{"type":"Point","coordinates":[1436,40777]},{"type":"Point","coordinates":[1517,40816]},{"type":"Point","coordinates":[1517,40816]},{"type":"Point","coordinates":[73069,49829]},{"type":"Point","coordinates":[2072,41072]},{"type":"Point","coordinates":[81625,47823]},{"type":"Point","coordinates":[1407,40775]},{"type":"Point","coordinates":[2125,41106]},{"type":"Point","coordinates":[2066,41081]},{"type":"Point","coordinates":[1505,40826]},{"type":"Point","coordinates":[1505,40826]},{"type":"Point","coordinates":[2055,41077]},{"type":"Point","coordinates":[1508,40829]},{"type":"Point","coordinates":[1507,40829]},{"type":"Point","coordinates":[1507,40829]},{"type":"Point","coordinates":[1507,40829]},{"type":"Point","coordinates":[2098,41102]},{"type":"Point","coordinates":[2099,41104]},{"type":"Point","coordinates":[2099,41104]},{"type":"Point","coordinates":[2120,41113]},{"type":"Point","coordinates":[1535,40847]},{"type":"Point","coordinates":[1629,40890]},{"type":"Point","coordinates":[7396,43362]},{"type":"Point","coordinates":[2435,41258]},{"type":"Point","coordinates":[1549,40857]},{"type":"Point","coordinates":[2480,41279]},{"type":"Point","coordinates":[1498,40834]},{"type":"Point","coordinates":[7398,43367]},{"type":"Point","coordinates":[1462,40817]},{"type":"Point","coordinates":[7395,43369]},{"type":"Point","coordinates":[2267,41188]},{"type":"Point","coordinates":[2138,41130]},{"type":"Point","coordinates":[2070,41100]},{"type":"Point","coordinates":[2136,41130]},{"type":"Point","coordinates":[1554,40868]},{"type":"Point","coordinates":[1503,40847]},{"type":"Point","coordinates":[7154,43279]},{"type":"Point","coordinates":[2070,41111]},{"type":"Point","coordinates":[2071,41115]},{"type":"Point","coordinates":[2068,41115]},{"type":"Point","coordinates":[2139,41148]},{"type":"Point","coordinates":[2015,41093]},{"type":"Point","coordinates":[2499,41316]},{"type":"Point","coordinates":[2101,41137]},{"type":"Point","coordinates":[1629,40923]},{"type":"Point","coordinates":[2101,41138]},{"type":"Point","coordinates":[1511,40870]},{"type":"Point","coordinates":[83533,47333]},{"type":"Point","coordinates":[2064,41123]},{"type":"Point","coordinates":[2066,41124]},{"type":"Point","coordinates":[2081,41132]},{"type":"Point","coordinates":[2062,41124]},{"type":"Point","coordinates":[2062,41124]},{"type":"Point","coordinates":[2061,41124]},{"type":"Point","coordinates":[1987,41091]},{"type":"Point","coordinates":[2063,41126]},{"type":"Point","coordinates":[2038,41115]},{"type":"Point","coordinates":[2061,41126]},{"type":"Point","coordinates":[2061,41126]},{"type":"Point","coordinates":[2061,41126]},{"type":"Point","coordinates":[2060,41127]},{"type":"Point","coordinates":[2060,41127]},{"type":"Point","coordinates":[2060,41128]},{"type":"Point","coordinates":[2060,41128]},{"type":"Point","coordinates":[2060,41128]},{"type":"Point","coordinates":[2102,41147]},{"type":"Point","coordinates":[2080,41137]},{"type":"Point","coordinates":[2080,41137]},{"type":"Point","coordinates":[2060,41128]},{"type":"Point","coordinates":[2061,41129]},{"type":"Point","coordinates":[2141,41165]},{"type":"Point","coordinates":[2054,41127]},{"type":"Point","coordinates":[2073,41135]},{"type":"Point","coordinates":[2087,41143]},{"type":"Point","coordinates":[2061,41132]},{"type":"Point","coordinates":[1590,40918]},{"type":"Point","coordinates":[2068,41136]},{"type":"Point","coordinates":[2067,41136]},{"type":"Point","coordinates":[2039,41123]},{"type":"Point","coordinates":[2039,41123]},{"type":"Point","coordinates":[2039,41123]},{"type":"Point","coordinates":[2068,41136]},{"type":"Point","coordinates":[2039,41123]},{"type":"Point","coordinates":[2056,41132]},{"type":"Point","coordinates":[2055,41132]},{"type":"Point","coordinates":[2068,41137]},{"type":"Point","coordinates":[2055,41132]},{"type":"Point","coordinates":[2067,41138]},{"type":"Point","coordinates":[2101,41153]},{"type":"Point","coordinates":[2067,41139]},{"type":"Point","coordinates":[1540,40899]},{"type":"Point","coordinates":[2053,41133]},{"type":"Point","coordinates":[2061,41137]},{"type":"Point","coordinates":[2058,41136]},{"type":"Point","coordinates":[2070,41141]},{"type":"Point","coordinates":[2066,41139]},{"type":"Point","coordinates":[2055,41135]},{"type":"Point","coordinates":[2056,41136]},{"type":"Point","coordinates":[2059,41138]},{"type":"Point","coordinates":[2058,41138]},{"type":"Point","coordinates":[2062,41140]},{"type":"Point","coordinates":[2061,41139]},{"type":"Point","coordinates":[2095,41155]},{"type":"Point","coordinates":[2061,41140]},{"type":"Point","coordinates":[2060,41140]},{"type":"Point","coordinates":[2135,41175]},{"type":"Point","coordinates":[2134,41176]},{"type":"Point","coordinates":[2136,41179]},{"type":"Point","coordinates":[2138,41180]},{"type":"Point","coordinates":[2077,41155]},{"type":"Point","coordinates":[1574,40926]},{"type":"Point","coordinates":[7030,43283]},{"type":"Point","coordinates":[7030,43283]},{"type":"Point","coordinates":[7030,43283]},{"type":"Point","coordinates":[2148,41196]},{"type":"Point","coordinates":[2050,41153]},{"type":"Point","coordinates":[2139,41193]},{"type":"Point","coordinates":[2058,41158]},{"type":"Point","coordinates":[7036,43290]},{"type":"Point","coordinates":[7036,43290]},{"type":"Point","coordinates":[7036,43290]},{"type":"Point","coordinates":[7036,43290]},{"type":"Point","coordinates":[2113,41183]},{"type":"Point","coordinates":[2090,41174]},{"type":"Point","coordinates":[2088,41174]},{"type":"Point","coordinates":[2064,41164]},{"type":"Point","coordinates":[2091,41177]},{"type":"Point","coordinates":[2089,41177]},{"type":"Point","coordinates":[2042,41157]},{"type":"Point","coordinates":[2042,41157]},{"type":"Point","coordinates":[1463,40893]},{"type":"Point","coordinates":[2056,41166]},{"type":"Point","coordinates":[1742,41024]},{"type":"Point","coordinates":[2038,41159]},{"type":"Point","coordinates":[1116,40737]},{"type":"Point","coordinates":[7097,43324]},{"type":"Point","coordinates":[1489,40910]},{"type":"Point","coordinates":[2075,41177]},{"type":"Point","coordinates":[2045,41165]},{"type":"Point","coordinates":[2047,41168]},{"type":"Point","coordinates":[2062,41175]},{"type":"Point","coordinates":[2062,41176]},{"type":"Point","coordinates":[1556,40946]},{"type":"Point","coordinates":[2072,41181]},{"type":"Point","coordinates":[2062,41180]},{"type":"Point","coordinates":[1539,40943]},{"type":"Point","coordinates":[7640,43558]},{"type":"Point","coordinates":[1642,41002]},{"type":"Point","coordinates":[1726,41040]},{"type":"Point","coordinates":[1746,41050]},{"type":"Point","coordinates":[7622,43557]},{"type":"Point","coordinates":[1547,40961]},{"type":"Point","coordinates":[1489,40935]},{"type":"Point","coordinates":[2459,41377]},{"type":"Point","coordinates":[7067,43341]},{"type":"Point","coordinates":[5423,42666]},{"type":"Point","coordinates":[77139,49091]},{"type":"Point","coordinates":[2075,41209]},{"type":"Point","coordinates":[2058,41205]},{"type":"Point","coordinates":[1506,40955]},{"type":"Point","coordinates":[7091,43360]},{"type":"Point","coordinates":[2177,41261]},{"type":"Point","coordinates":[1505,40956]},{"type":"Point","coordinates":[2034,41198]},{"type":"Point","coordinates":[63302,51455]},{"type":"Point","coordinates":[1581,40996]},{"type":"Point","coordinates":[72609,50065]},{"type":"Point","coordinates":[2164,41267]},{"type":"Point","coordinates":[2165,41269]},{"type":"Point","coordinates":[2300,41330]},{"type":"Point","coordinates":[1627,41026]},{"type":"Point","coordinates":[2020,41206]},{"type":"Point","coordinates":[2100,41245]},{"type":"Point","coordinates":[1624,41030]},{"type":"Point","coordinates":[1624,41030]},{"type":"Point","coordinates":[2100,41247]},{"type":"Point","coordinates":[1624,41032]},{"type":"Point","coordinates":[1624,41032]},{"type":"Point","coordinates":[1624,41033]},{"type":"Point","coordinates":[2099,41250]},{"type":"Point","coordinates":[7272,43457]},{"type":"Point","coordinates":[2098,41252]},{"type":"Point","coordinates":[1556,41009]},{"type":"Point","coordinates":[2100,41260]},{"type":"Point","coordinates":[2235,41321]},{"type":"Point","coordinates":[74554,49702]},{"type":"Point","coordinates":[2103,41264]},{"type":"Point","coordinates":[2022,41228]},{"type":"Point","coordinates":[2105,41270]},{"type":"Point","coordinates":[82804,47671]},{"type":"Point","coordinates":[2329,41377]},{"type":"Point","coordinates":[2331,41379]},{"type":"Point","coordinates":[5815,42889]},{"type":"Point","coordinates":[1632,41068]},{"type":"Point","coordinates":[1643,41073]},{"type":"Point","coordinates":[1631,41069]},{"type":"Point","coordinates":[2317,41382]},{"type":"Point","coordinates":[74426,49755]},{"type":"Point","coordinates":[2176,41324]},{"type":"Point","coordinates":[2114,41297]},{"type":"Point","coordinates":[2055,41275]},{"type":"Point","coordinates":[5166,42636]},{"type":"Point","coordinates":[2055,41276]},{"type":"Point","coordinates":[1606,41072]},{"type":"Point","coordinates":[7367,43542]},{"type":"Point","coordinates":[74443,49767]},{"type":"Point","coordinates":[1615,41088]},{"type":"Point","coordinates":[1624,41096]},{"type":"Point","coordinates":[2262,41385]},{"type":"Point","coordinates":[1630,41100]},{"type":"Point","coordinates":[2140,41333]},{"type":"Point","coordinates":[7052,43435]},{"type":"Point","coordinates":[2207,41367]},{"type":"Point","coordinates":[2177,41361]},{"type":"Point","coordinates":[2177,41361]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[1976,41275]},{"type":"Point","coordinates":[2196,41375]},{"type":"Point","coordinates":[2172,41366]},{"type":"Point","coordinates":[1735,41169]},{"type":"Point","coordinates":[2173,41368]},{"type":"Point","coordinates":[74441,49798]},{"type":"Point","coordinates":[2236,41400]},{"type":"Point","coordinates":[2182,41378]},{"type":"Point","coordinates":[2179,41379]},{"type":"Point","coordinates":[2137,41360]},{"type":"Point","coordinates":[2171,41375]},{"type":"Point","coordinates":[2083,41336]},{"type":"Point","coordinates":[2181,41381]},{"type":"Point","coordinates":[2082,41337]},{"type":"Point","coordinates":[2083,41337]},{"type":"Point","coordinates":[2084,41337]},{"type":"Point","coordinates":[2083,41337]},{"type":"Point","coordinates":[2176,41380]},{"type":"Point","coordinates":[2083,41338]},{"type":"Point","coordinates":[2083,41338]},{"type":"Point","coordinates":[2083,41338]},{"type":"Point","coordinates":[2082,41337]},{"type":"Point","coordinates":[2083,41338]},{"type":"Point","coordinates":[2083,41338]},{"type":"Point","coordinates":[2083,41338]},{"type":"Point","coordinates":[2083,41338]},{"type":"Point","coordinates":[2083,41339]},{"type":"Point","coordinates":[74487,49800]},{"type":"Point","coordinates":[2181,41384]},{"type":"Point","coordinates":[2178,41384]},{"type":"Point","coordinates":[2164,41378]},{"type":"Point","coordinates":[2171,41381]},{"type":"Point","coordinates":[2081,41340]},{"type":"Point","coordinates":[2182,41387]},{"type":"Point","coordinates":[1533,41094]},{"type":"Point","coordinates":[2195,41396]},{"type":"Point","coordinates":[2195,41396]},{"type":"Point","coordinates":[2188,41395]},{"type":"Point","coordinates":[2188,41395]},{"type":"Point","coordinates":[2195,41398]},{"type":"Point","coordinates":[2077,41345]},{"type":"Point","coordinates":[2256,41426]},{"type":"Point","coordinates":[2251,41424]},{"type":"Point","coordinates":[2251,41425]},{"type":"Point","coordinates":[2188,41397]},{"type":"Point","coordinates":[7334,43593]},{"type":"Point","coordinates":[2199,41408]},{"type":"Point","coordinates":[2170,41395]},{"type":"Point","coordinates":[2137,41381]},{"type":"Point","coordinates":[2166,41394]},{"type":"Point","coordinates":[2211,41415]},{"type":"Point","coordinates":[2031,41334]},{"type":"Point","coordinates":[2235,41428]},{"type":"Point","coordinates":[2198,41411]},{"type":"Point","coordinates":[2123,41378]},{"type":"Point","coordinates":[72455,50224]},{"type":"Point","coordinates":[74482,49820]},{"type":"Point","coordinates":[2127,41381]},{"type":"Point","coordinates":[2230,41430]},{"type":"Point","coordinates":[74518,49817]},{"type":"Point","coordinates":[2176,41408]},{"type":"Point","coordinates":[2180,41410]},{"type":"Point","coordinates":[2176,41408]},{"type":"Point","coordinates":[2176,41408]},{"type":"Point","coordinates":[2177,41409]},{"type":"Point","coordinates":[2176,41409]},{"type":"Point","coordinates":[2175,41408]},{"type":"Point","coordinates":[2176,41409]},{"type":"Point","coordinates":[2176,41409]},{"type":"Point","coordinates":[2176,41409]},{"type":"Point","coordinates":[2177,41410]},{"type":"Point","coordinates":[2172,41408]},{"type":"Point","coordinates":[2177,41410]},{"type":"Point","coordinates":[2178,41413]},{"type":"Point","coordinates":[2168,41408]},{"type":"Point","coordinates":[2177,41412]},{"type":"Point","coordinates":[2177,41412]},{"type":"Point","coordinates":[2095,41376]},{"type":"Point","coordinates":[2271,41455]},{"type":"Point","coordinates":[2412,41520]},{"type":"Point","coordinates":[2136,41395]},{"type":"Point","coordinates":[2206,41429]},{"type":"Point","coordinates":[2179,41417]},{"type":"Point","coordinates":[2138,41399]},{"type":"Point","coordinates":[2200,41428]},{"type":"Point","coordinates":[2154,41407]},{"type":"Point","coordinates":[2170,41415]},{"type":"Point","coordinates":[2179,41419]},{"type":"Point","coordinates":[2229,41442]},{"type":"Point","coordinates":[2168,41415]},{"type":"Point","coordinates":[2144,41405]},{"type":"Point","coordinates":[2195,41428]},{"type":"Point","coordinates":[2195,41428]},{"type":"Point","coordinates":[2195,41428]},{"type":"Point","coordinates":[2178,41420]},{"type":"Point","coordinates":[2178,41421]},{"type":"Point","coordinates":[2178,41421]},{"type":"Point","coordinates":[2103,41387]},{"type":"Point","coordinates":[2103,41387]},{"type":"Point","coordinates":[2169,41417]},{"type":"Point","coordinates":[2178,41421]},{"type":"Point","coordinates":[2173,41419]},{"type":"Point","coordinates":[82009,48009]},{"type":"Point","coordinates":[2173,41419]},{"type":"Point","coordinates":[2178,41421]},{"type":"Point","coordinates":[2178,41421]},{"type":"Point","coordinates":[2178,41421]},{"type":"Point","coordinates":[2201,41432]},{"type":"Point","coordinates":[2145,41407]},{"type":"Point","coordinates":[2178,41422]},{"type":"Point","coordinates":[2179,41422]},{"type":"Point","coordinates":[2172,41419]},{"type":"Point","coordinates":[2178,41422]},{"type":"Point","coordinates":[2172,41420]},{"type":"Point","coordinates":[2172,41420]},{"type":"Point","coordinates":[2178,41423]},{"type":"Point","coordinates":[2171,41420]},{"type":"Point","coordinates":[2195,41431]},{"type":"Point","coordinates":[2235,41450]},{"type":"Point","coordinates":[2178,41425]},{"type":"Point","coordinates":[2167,41420]},{"type":"Point","coordinates":[2179,41426]},{"type":"Point","coordinates":[2179,41427]},{"type":"Point","coordinates":[2179,41427]},{"type":"Point","coordinates":[2210,41442]},{"type":"Point","coordinates":[2209,41441]},{"type":"Point","coordinates":[2178,41427]},{"type":"Point","coordinates":[2210,41442]},{"type":"Point","coordinates":[2166,41422]},{"type":"Point","coordinates":[2160,41419]},{"type":"Point","coordinates":[2178,41427]},{"type":"Point","coordinates":[2063,41376]},{"type":"Point","coordinates":[2063,41376]},{"type":"Point","coordinates":[2175,41427]},{"type":"Point","coordinates":[2187,41434]},{"type":"Point","coordinates":[2178,41430]},{"type":"Point","coordinates":[2211,41445]},{"type":"Point","coordinates":[2165,41424]},{"type":"Point","coordinates":[2178,41432]},{"type":"Point","coordinates":[2161,41424]},{"type":"Point","coordinates":[2178,41432]},{"type":"Point","coordinates":[2162,41425]},{"type":"Point","coordinates":[2179,41433]},{"type":"Point","coordinates":[2179,41433]},{"type":"Point","coordinates":[2179,41433]},{"type":"Point","coordinates":[2213,41449]},{"type":"Point","coordinates":[2179,41433]},{"type":"Point","coordinates":[2178,41433]},{"type":"Point","coordinates":[2036,41368]},{"type":"Point","coordinates":[2178,41434]},{"type":"Point","coordinates":[2148,41420]},{"type":"Point","coordinates":[2176,41433]},{"type":"Point","coordinates":[2181,41435]},{"type":"Point","coordinates":[2161,41426]},{"type":"Point","coordinates":[2157,41425]},{"type":"Point","coordinates":[2173,41433]},{"type":"Point","coordinates":[2214,41451]},{"type":"Point","coordinates":[2163,41428]},{"type":"Point","coordinates":[2213,41451]},{"type":"Point","coordinates":[2215,41452]},{"type":"Point","coordinates":[2156,41426]},{"type":"Point","coordinates":[2156,41426]},{"type":"Point","coordinates":[2180,41437]},{"type":"Point","coordinates":[2179,41438]},{"type":"Point","coordinates":[6658,43360]},{"type":"Point","coordinates":[2131,41417]},{"type":"Point","coordinates":[2173,41437]},{"type":"Point","coordinates":[2165,41433]},{"type":"Point","coordinates":[2190,41445]},{"type":"Point","coordinates":[2169,41436]},{"type":"Point","coordinates":[2118,41416]},{"type":"Point","coordinates":[2221,41463]},{"type":"Point","coordinates":[2185,41446]},{"type":"Point","coordinates":[2183,41446]},{"type":"Point","coordinates":[2182,41446]},{"type":"Point","coordinates":[2180,41445]},{"type":"Point","coordinates":[1631,41196]},{"type":"Point","coordinates":[2222,41464]},{"type":"Point","coordinates":[2181,41446]},{"type":"Point","coordinates":[2221,41465]},{"type":"Point","coordinates":[2181,41448]},{"type":"Point","coordinates":[2215,41463]},{"type":"Point","coordinates":[2028,41379]},{"type":"Point","coordinates":[2060,41394]},{"type":"Point","coordinates":[2018,41376]},{"type":"Point","coordinates":[1967,41353]},{"type":"Point","coordinates":[2157,41439]},{"type":"Point","coordinates":[2178,41449]},{"type":"Point","coordinates":[2189,41455]},{"type":"Point","coordinates":[1633,41206]},{"type":"Point","coordinates":[1702,41238]},{"type":"Point","coordinates":[2173,41457]},{"type":"Point","coordinates":[2097,41423]},{"type":"Point","coordinates":[2085,41418]},{"type":"Point","coordinates":[2226,41482]},{"type":"Point","coordinates":[2225,41482]},{"type":"Point","coordinates":[2097,41425]},{"type":"Point","coordinates":[2170,41463]},{"type":"Point","coordinates":[2226,41489]},{"type":"Point","coordinates":[1630,41219]},{"type":"Point","coordinates":[2171,41465]},{"type":"Point","coordinates":[1629,41220]},{"type":"Point","coordinates":[74531,49874]},{"type":"Point","coordinates":[74552,49872]},{"type":"Point","coordinates":[1618,41218]},{"type":"Point","coordinates":[2218,41490]},{"type":"Point","coordinates":[1756,41282]},{"type":"Point","coordinates":[2225,41496]},{"type":"Point","coordinates":[2225,41496]},{"type":"Point","coordinates":[2217,41493]},{"type":"Point","coordinates":[2507,41625]},{"type":"Point","coordinates":[2507,41625]},{"type":"Point","coordinates":[1664,41244]},{"type":"Point","coordinates":[2197,41486]},{"type":"Point","coordinates":[2197,41486]},{"type":"Point","coordinates":[2232,41503]},{"type":"Point","coordinates":[2197,41488]},{"type":"Point","coordinates":[2193,41486]},{"type":"Point","coordinates":[2197,41489]},{"type":"Point","coordinates":[64180,51564]},{"type":"Point","coordinates":[2197,41489]},{"type":"Point","coordinates":[2233,41506]},{"type":"Point","coordinates":[2196,41490]},{"type":"Point","coordinates":[1618,41227]},{"type":"Point","coordinates":[2197,41490]},{"type":"Point","coordinates":[2196,41490]},{"type":"Point","coordinates":[2193,41489]},{"type":"Point","coordinates":[2195,41490]},{"type":"Point","coordinates":[2192,41489]},{"type":"Point","coordinates":[74417,49911]},{"type":"Point","coordinates":[2207,41496]},{"type":"Point","coordinates":[2195,41491]},{"type":"Point","coordinates":[2189,41489]},{"type":"Point","coordinates":[2203,41495]},{"type":"Point","coordinates":[2086,41446]},{"type":"Point","coordinates":[1669,41262]},{"type":"Point","coordinates":[2171,41496]},{"type":"Point","coordinates":[2171,41497]},{"type":"Point","coordinates":[82392,47980]},{"type":"Point","coordinates":[74387,49935]},{"type":"Point","coordinates":[82414,47974]},{"type":"Point","coordinates":[2172,41498]},{"type":"Point","coordinates":[1670,41271]},{"type":"Point","coordinates":[84628,47330]},{"type":"Point","coordinates":[2170,41499]},{"type":"Point","coordinates":[2181,41504]},{"type":"Point","coordinates":[83402,47694]},{"type":"Point","coordinates":[2006,41429]},{"type":"Point","coordinates":[2160,41499]},{"type":"Point","coordinates":[2161,41499]},{"type":"Point","coordinates":[1603,41246]},{"type":"Point","coordinates":[1603,41247]},{"type":"Point","coordinates":[1706,41296]},{"type":"Point","coordinates":[64009,51611]},{"type":"Point","coordinates":[1649,41270]},{"type":"Point","coordinates":[1655,41276]},{"type":"Point","coordinates":[2222,41534]},{"type":"Point","coordinates":[1654,41276]},{"type":"Point","coordinates":[1616,41260]},{"type":"Point","coordinates":[1625,41264]},{"type":"Point","coordinates":[2165,41510]},{"type":"Point","coordinates":[6928,43547]},{"type":"Point","coordinates":[2173,41515]},{"type":"Point","coordinates":[2173,41516]},{"type":"Point","coordinates":[2173,41516]},{"type":"Point","coordinates":[74375,49957]},{"type":"Point","coordinates":[2235,41549]},{"type":"Point","coordinates":[82438,47990]},{"type":"Point","coordinates":[1608,41266]},{"type":"Point","coordinates":[6287,43295]},{"type":"Point","coordinates":[1622,41273]},{"type":"Point","coordinates":[2183,41529]},{"type":"Point","coordinates":[2170,41524]},{"type":"Point","coordinates":[1628,41281]},{"type":"Point","coordinates":[2210,41546]},{"type":"Point","coordinates":[1567,41257]},{"type":"Point","coordinates":[1660,41302]},{"type":"Point","coordinates":[1660,41303]},{"type":"Point","coordinates":[1565,41260]},{"type":"Point","coordinates":[2589,41726]},{"type":"Point","coordinates":[1570,41269]},{"type":"Point","coordinates":[1616,41295]},{"type":"Point","coordinates":[79217,48875]},{"type":"Point","coordinates":[1615,41298]},{"type":"Point","coordinates":[2147,41539]},{"type":"Point","coordinates":[6768,43520]},{"type":"Point","coordinates":[2070,41512]},{"type":"Point","coordinates":[6488,43424]},{"type":"Point","coordinates":[1612,41325]},{"type":"Point","coordinates":[6490,43435]},{"type":"Point","coordinates":[1634,41336]},{"type":"Point","coordinates":[1637,41341]},{"type":"Point","coordinates":[1642,41343]},{"type":"Point","coordinates":[1634,41340]},{"type":"Point","coordinates":[74671,49960]},{"type":"Point","coordinates":[1638,41344]},{"type":"Point","coordinates":[1642,41346]},{"type":"Point","coordinates":[1635,41343]},{"type":"Point","coordinates":[87980,46351]},{"type":"Point","coordinates":[1638,41345]},{"type":"Point","coordinates":[1540,41301]},{"type":"Point","coordinates":[87973,46354]},{"type":"Point","coordinates":[2146,41577]},{"type":"Point","coordinates":[1631,41343]},{"type":"Point","coordinates":[1635,41346]},{"type":"Point","coordinates":[1541,41303]},{"type":"Point","coordinates":[1638,41347]},{"type":"Point","coordinates":[1632,41345]},{"type":"Point","coordinates":[1541,41304]},{"type":"Point","coordinates":[1544,41306]},{"type":"Point","coordinates":[6482,43443]},{"type":"Point","coordinates":[1622,41342]},{"type":"Point","coordinates":[6485,43446]},{"type":"Point","coordinates":[6486,43446]},{"type":"Point","coordinates":[1635,41349]},{"type":"Point","coordinates":[64032,51692]},{"type":"Point","coordinates":[1553,41313]},{"type":"Point","coordinates":[1600,41334]},{"type":"Point","coordinates":[6484,43447]},{"type":"Point","coordinates":[1540,41307]},{"type":"Point","coordinates":[1613,41340]},{"type":"Point","coordinates":[1613,41340]},{"type":"Point","coordinates":[6485,43447]},{"type":"Point","coordinates":[1541,41308]},{"type":"Point","coordinates":[1540,41309]},{"type":"Point","coordinates":[74668,49971]},{"type":"Point","coordinates":[6486,43450]},{"type":"Point","coordinates":[6487,43451]},{"type":"Point","coordinates":[2176,41599]},{"type":"Point","coordinates":[1619,41347]},{"type":"Point","coordinates":[1541,41311]},{"type":"Point","coordinates":[1983,41512]},{"type":"Point","coordinates":[1664,41368]},{"type":"Point","coordinates":[1541,41313]},{"type":"Point","coordinates":[1663,41368]},{"type":"Point","coordinates":[6480,43450]},{"type":"Point","coordinates":[6480,43450]},{"type":"Point","coordinates":[6480,43450]},{"type":"Point","coordinates":[6486,43453]},{"type":"Point","coordinates":[1662,41368]},{"type":"Point","coordinates":[1541,41313]},{"type":"Point","coordinates":[6487,43454]},{"type":"Point","coordinates":[1659,41368]},{"type":"Point","coordinates":[1601,41342]},{"type":"Point","coordinates":[1601,41342]},{"type":"Point","coordinates":[1607,41345]},{"type":"Point","coordinates":[6483,43454]},{"type":"Point","coordinates":[1604,41344]},{"type":"Point","coordinates":[1584,41335]},{"type":"Point","coordinates":[1619,41351]},{"type":"Point","coordinates":[1602,41344]},{"type":"Point","coordinates":[1542,41317]},{"type":"Point","coordinates":[1602,41344]},{"type":"Point","coordinates":[1602,41344]},{"type":"Point","coordinates":[6486,43457]},{"type":"Point","coordinates":[2015,41533]},{"type":"Point","coordinates":[1658,41371]},{"type":"Point","coordinates":[1657,41372]},{"type":"Point","coordinates":[1618,41354]},{"type":"Point","coordinates":[6487,43459]},{"type":"Point","coordinates":[6486,43459]},{"type":"Point","coordinates":[1662,41374]},{"type":"Point","coordinates":[6486,43459]},{"type":"Point","coordinates":[1614,41353]},{"type":"Point","coordinates":[6486,43459]},{"type":"Point","coordinates":[1544,41321]},{"type":"Point","coordinates":[6487,43460]},{"type":"Point","coordinates":[1613,41354]},{"type":"Point","coordinates":[1543,41322]},{"type":"Point","coordinates":[1543,41322]},{"type":"Point","coordinates":[6486,43462]},{"type":"Point","coordinates":[1543,41322]},{"type":"Point","coordinates":[1551,41326]},{"type":"Point","coordinates":[1543,41323]},{"type":"Point","coordinates":[1543,41323]},{"type":"Point","coordinates":[6480,43460]},{"type":"Point","coordinates":[74441,50031]},{"type":"Point","coordinates":[1546,41326]},{"type":"Point","coordinates":[1615,41359]},{"type":"Point","coordinates":[63312,51791]},{"type":"Point","coordinates":[7503,43878]},{"type":"Point","coordinates":[6483,43467]},{"type":"Point","coordinates":[6466,43464]},{"type":"Point","coordinates":[7499,43882]},{"type":"Point","coordinates":[1734,41423]},{"type":"Point","coordinates":[6418,43449]},{"type":"Point","coordinates":[6483,43476]},{"type":"Point","coordinates":[2240,41660]},{"type":"Point","coordinates":[1634,41390]},{"type":"Point","coordinates":[6481,43489]},{"type":"Point","coordinates":[2270,41683]},{"type":"Point","coordinates":[7548,43922]},{"type":"Point","coordinates":[1532,41351]},{"type":"Point","coordinates":[1626,41395]},{"type":"Point","coordinates":[1628,41397]},{"type":"Point","coordinates":[1628,41397]},{"type":"Point","coordinates":[1628,41398]},{"type":"Point","coordinates":[1625,41397]},{"type":"Point","coordinates":[1625,41398]},{"type":"Point","coordinates":[1628,41401]},{"type":"Point","coordinates":[1628,41401]},{"type":"Point","coordinates":[6408,43469]},{"type":"Point","coordinates":[1627,41400]},{"type":"Point","coordinates":[1627,41400]},{"type":"Point","coordinates":[6970,43700]},{"type":"Point","coordinates":[74495,50060]},{"type":"Point","coordinates":[2228,41678]},{"type":"Point","coordinates":[2167,41655]},{"type":"Point","coordinates":[1634,41414]},{"type":"Point","coordinates":[1599,41401]},{"type":"Point","coordinates":[2187,41669]},{"type":"Point","coordinates":[6489,43521]},{"type":"Point","coordinates":[1701,41456]},{"type":"Point","coordinates":[1597,41410]},{"type":"Point","coordinates":[2186,41678]},{"type":"Point","coordinates":[2186,41679]},{"type":"Point","coordinates":[6411,43495]},{"type":"Point","coordinates":[2244,41705]},{"type":"Point","coordinates":[6410,43496]},{"type":"Point","coordinates":[6412,43496]},{"type":"Point","coordinates":[6411,43496]},{"type":"Point","coordinates":[6411,43497]},{"type":"Point","coordinates":[6411,43497]},{"type":"Point","coordinates":[1599,41415]},{"type":"Point","coordinates":[6411,43497]},{"type":"Point","coordinates":[1598,41415]},{"type":"Point","coordinates":[6411,43499]},{"type":"Point","coordinates":[1597,41417]},{"type":"Point","coordinates":[6418,43504]},{"type":"Point","coordinates":[6413,43505]},{"type":"Point","coordinates":[6412,43505]},{"type":"Point","coordinates":[1637,41440]},{"type":"Point","coordinates":[63647,51822]},{"type":"Point","coordinates":[1636,41441]},{"type":"Point","coordinates":[1636,41441]},{"type":"Point","coordinates":[6874,43695]},{"type":"Point","coordinates":[1636,41442]},{"type":"Point","coordinates":[1636,41442]},{"type":"Point","coordinates":[1636,41442]},{"type":"Point","coordinates":[7341,43885]},{"type":"Point","coordinates":[2321,41757]},{"type":"Point","coordinates":[48769,52498]},{"type":"Point","coordinates":[6868,43703]},{"type":"Point","coordinates":[1662,41466]},{"type":"Point","coordinates":[1575,41428]},{"type":"Point","coordinates":[48756,52508]},{"type":"Point","coordinates":[6832,43701]},{"type":"Point","coordinates":[6413,43531]},{"type":"Point","coordinates":[73298,50359]},{"type":"Point","coordinates":[6987,43768]},{"type":"Point","coordinates":[1562,41436]},{"type":"Point","coordinates":[6922,43748]},{"type":"Point","coordinates":[73304,50374]},{"type":"Point","coordinates":[6531,43596]},{"type":"Point","coordinates":[73292,50378]},{"type":"Point","coordinates":[1553,41448]},{"type":"Point","coordinates":[1552,41448]},{"type":"Point","coordinates":[1521,41434]},{"type":"Point","coordinates":[1643,41491]},{"type":"Point","coordinates":[1619,41487]},{"type":"Point","coordinates":[73307,50386]},{"type":"Point","coordinates":[2229,41764]},{"type":"Point","coordinates":[1552,41460]},{"type":"Point","coordinates":[1537,41455]},{"type":"Point","coordinates":[1617,41495]},{"type":"Point","coordinates":[1524,41454]},{"type":"Point","coordinates":[7550,44032]},{"type":"Point","coordinates":[1636,41508]},{"type":"Point","coordinates":[1561,41476]},{"type":"Point","coordinates":[1566,41481]},{"type":"Point","coordinates":[1566,41482]},{"type":"Point","coordinates":[2221,41782]},{"type":"Point","coordinates":[7538,44041]},{"type":"Point","coordinates":[1574,41503]},{"type":"Point","coordinates":[1617,41529]},{"type":"Point","coordinates":[73309,50429]},{"type":"Point","coordinates":[73309,50430]},{"type":"Point","coordinates":[1519,41490]},{"type":"Point","coordinates":[2250,41822]},{"type":"Point","coordinates":[1669,41561]},{"type":"Point","coordinates":[1568,41516]},{"type":"Point","coordinates":[1669,41564]},{"type":"Point","coordinates":[73275,50447]},{"type":"Point","coordinates":[1672,41568]},{"type":"Point","coordinates":[1518,41501]},{"type":"Point","coordinates":[80612,48761]},{"type":"Point","coordinates":[80611,48761]},{"type":"Point","coordinates":[80611,48761]},{"type":"Point","coordinates":[80612,48762]},{"type":"Point","coordinates":[80612,48762]},{"type":"Point","coordinates":[80611,48762]},{"type":"Point","coordinates":[63969,51901]},{"type":"Point","coordinates":[80611,48763]},{"type":"Point","coordinates":[80610,48769]},{"type":"Point","coordinates":[80610,48769]},{"type":"Point","coordinates":[1658,41577]},{"type":"Point","coordinates":[1657,41577]},{"type":"Point","coordinates":[1657,41577]},{"type":"Point","coordinates":[1658,41578]},{"type":"Point","coordinates":[6741,43767]},{"type":"Point","coordinates":[73313,50457]},{"type":"Point","coordinates":[2243,41845]},{"type":"Point","coordinates":[73313,50458]},{"type":"Point","coordinates":[73313,50458]},{"type":"Point","coordinates":[73313,50458]},{"type":"Point","coordinates":[73313,50458]},{"type":"Point","coordinates":[73313,50458]},{"type":"Point","coordinates":[6740,43769]},{"type":"Point","coordinates":[73310,50459]},{"type":"Point","coordinates":[73313,50459]},{"type":"Point","coordinates":[73316,50459]},{"type":"Point","coordinates":[73317,50460]},{"type":"Point","coordinates":[73313,50463]},{"type":"Point","coordinates":[64016,51912]},{"type":"Point","coordinates":[64015,51913]},{"type":"Point","coordinates":[2315,41886]},{"type":"Point","coordinates":[2531,41983]},{"type":"Point","coordinates":[1649,41586]},{"type":"Point","coordinates":[73321,50468]},{"type":"Point","coordinates":[1720,41621]},{"type":"Point","coordinates":[64013,51919]},{"type":"Point","coordinates":[64013,51919]},{"type":"Point","coordinates":[1739,41632]},{"type":"Point","coordinates":[1739,41632]},{"type":"Point","coordinates":[64013,51922]},{"type":"Point","coordinates":[2322,41898]},{"type":"Point","coordinates":[64010,51925]},{"type":"Point","coordinates":[2326,41906]},{"type":"Point","coordinates":[1736,41640]},{"type":"Point","coordinates":[1737,41640]},{"type":"Point","coordinates":[1736,41641]},{"type":"Point","coordinates":[64011,51932]},{"type":"Point","coordinates":[1743,41649]},{"type":"Point","coordinates":[64008,51942]},{"type":"Point","coordinates":[63551,51996]},{"type":"Point","coordinates":[1600,41593]},{"type":"Point","coordinates":[7649,44174]},{"type":"Point","coordinates":[1620,41617]},{"type":"Point","coordinates":[6852,43871]},{"type":"Point","coordinates":[63489,52030]},{"type":"Point","coordinates":[63997,51978]},{"type":"Point","coordinates":[1628,41646]},{"type":"Point","coordinates":[1634,41661]},{"type":"Point","coordinates":[1601,41648]},{"type":"Point","coordinates":[1631,41662]},{"type":"Point","coordinates":[1591,41644]},{"type":"Point","coordinates":[1592,41645]},{"type":"Point","coordinates":[1591,41649]},{"type":"Point","coordinates":[1622,41664]},{"type":"Point","coordinates":[1611,41666]},{"type":"Point","coordinates":[2264,41978]},{"type":"Point","coordinates":[6656,43861]},{"type":"Point","coordinates":[2146,41934]},{"type":"Point","coordinates":[2184,41959]},{"type":"Point","coordinates":[1547,41671]},{"type":"Point","coordinates":[82314,48460]},{"type":"Point","coordinates":[2083,41927]},{"type":"Point","coordinates":[63877,52071]},{"type":"Point","coordinates":[1675,41745]},{"type":"Point","coordinates":[1677,41749]},{"type":"Point","coordinates":[82318,48466]},{"type":"Point","coordinates":[2881,42295]},{"type":"Point","coordinates":[1667,41756]},{"type":"Point","coordinates":[1344,41629]},{"type":"Point","coordinates":[63788,52117]},{"type":"Point","coordinates":[64029,52090]},{"type":"Point","coordinates":[1500,41702]},{"type":"Point","coordinates":[1628,41771]},{"type":"Point","coordinates":[2329,42092]},{"type":"Point","coordinates":[2330,42093]},{"type":"Point","coordinates":[2327,42092]},{"type":"Point","coordinates":[2317,42090]},{"type":"Point","coordinates":[2324,42094]},{"type":"Point","coordinates":[2298,42084]},{"type":"Point","coordinates":[2622,42230]},{"type":"Point","coordinates":[63313,52192]},{"type":"Point","coordinates":[1629,41785]},{"type":"Point","coordinates":[1629,41786]},{"type":"Point","coordinates":[7606,44334]},{"type":"Point","coordinates":[2300,42092]},{"type":"Point","coordinates":[2302,42095]},{"type":"Point","coordinates":[63767,52150]},{"type":"Point","coordinates":[10552,45467]},{"type":"Point","coordinates":[2622,42241]},{"type":"Point","coordinates":[2291,42106]},{"type":"Point","coordinates":[7790,44429]},{"type":"Point","coordinates":[7791,44429]},{"type":"Point","coordinates":[7790,44431]},{"type":"Point","coordinates":[2304,42123]},{"type":"Point","coordinates":[7788,44441]},{"type":"Point","coordinates":[1609,41816]},{"type":"Point","coordinates":[1586,41807]},{"type":"Point","coordinates":[81715,48730]},{"type":"Point","coordinates":[2664,42298]},{"type":"Point","coordinates":[2664,42299]},{"type":"Point","coordinates":[63964,52172]},{"type":"Point","coordinates":[63432,52243]},{"type":"Point","coordinates":[2121,42073]},{"type":"Point","coordinates":[2372,42198]},{"type":"Point","coordinates":[73451,50720]},{"type":"Point","coordinates":[1495,41806]},{"type":"Point","coordinates":[1512,41819]},{"type":"Point","coordinates":[1504,41821]},{"type":"Point","coordinates":[1520,41831]},{"type":"Point","coordinates":[1504,41824]},{"type":"Point","coordinates":[1505,41826]},{"type":"Point","coordinates":[1506,41826]},{"type":"Point","coordinates":[1506,41827]},{"type":"Point","coordinates":[1505,41827]},{"type":"Point","coordinates":[1506,41831]},{"type":"Point","coordinates":[1508,41832]},{"type":"Point","coordinates":[7829,44522]},{"type":"Point","coordinates":[2798,42429]},{"type":"Point","coordinates":[88137,46852]},{"type":"Point","coordinates":[48636,52952]},{"type":"Point","coordinates":[1442,41842]},{"type":"Point","coordinates":[7838,44569]},{"type":"Point","coordinates":[7817,44568]},{"type":"Point","coordinates":[64073,52262]},{"type":"Point","coordinates":[7073,44279]},{"type":"Point","coordinates":[7851,44589]},{"type":"Point","coordinates":[1525,41900]},{"type":"Point","coordinates":[63704,52315]},{"type":"Point","coordinates":[1487,41896]},{"type":"Point","coordinates":[64077,52282]},{"type":"Point","coordinates":[1523,41916]},{"type":"Point","coordinates":[1497,41906]},{"type":"Point","coordinates":[1507,41911]},{"type":"Point","coordinates":[1505,41912]},{"type":"Point","coordinates":[1505,41912]},{"type":"Point","coordinates":[1464,41895]},{"type":"Point","coordinates":[1609,41968]},{"type":"Point","coordinates":[1494,41932]},{"type":"Point","coordinates":[1594,41980]},{"type":"Point","coordinates":[1591,41979]},{"type":"Point","coordinates":[1594,41981]},{"type":"Point","coordinates":[1594,41981]},{"type":"Point","coordinates":[1569,41970]},{"type":"Point","coordinates":[1591,41980]},{"type":"Point","coordinates":[1592,41985]},{"type":"Point","coordinates":[24693,49944]},{"type":"Point","coordinates":[1588,41986]},{"type":"Point","coordinates":[2358,42336]},{"type":"Point","coordinates":[1446,41926]},{"type":"Point","coordinates":[1299,41861]},{"type":"Point","coordinates":[1477,41943]},{"type":"Point","coordinates":[70809,51356]},{"type":"Point","coordinates":[65624,52152]},{"type":"Point","coordinates":[65113,52224]},{"type":"Point","coordinates":[1921,42176]},{"type":"Point","coordinates":[86151,47636]},{"type":"Point","coordinates":[64087,52366]},{"type":"Point","coordinates":[7818,44687]},{"type":"Point","coordinates":[7917,44726]},{"type":"Point","coordinates":[1625,42063]},{"type":"Point","coordinates":[1625,42063]},{"type":"Point","coordinates":[64089,52378]},{"type":"Point","coordinates":[79640,49517]},{"type":"Point","coordinates":[2054,42265]},{"type":"Point","coordinates":[1461,41998]},{"type":"Point","coordinates":[1410,41984]},{"type":"Point","coordinates":[1412,41988]},{"type":"Point","coordinates":[1409,41986]},{"type":"Point","coordinates":[1409,41987]},{"type":"Point","coordinates":[1905,42217]},{"type":"Point","coordinates":[1416,41995]},{"type":"Point","coordinates":[1416,41995]},{"type":"Point","coordinates":[1413,41994]},{"type":"Point","coordinates":[1414,41995]},{"type":"Point","coordinates":[64430,52366]},{"type":"Point","coordinates":[3280,42835]},{"type":"Point","coordinates":[1412,41999]},{"type":"Point","coordinates":[1470,42026]},{"type":"Point","coordinates":[1412,41999]},{"type":"Point","coordinates":[1412,41999]},{"type":"Point","coordinates":[1412,41999]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1410,41999]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1413,42000]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1411,42000]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1411,41999]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1411,41999]},{"type":"Point","coordinates":[1411,42000]},{"type":"Point","coordinates":[1411,41999]},{"type":"Point","coordinates":[1410,41999]},{"type":"Point","coordinates":[1412,42000]},{"type":"Point","coordinates":[1414,42001]},{"type":"Point","coordinates":[1411,42000]},{"type":"Point","coordinates":[1414,42002]},{"type":"Point","coordinates":[1407,41999]},{"type":"Point","coordinates":[1416,42004]},{"type":"Point","coordinates":[1416,42004]},{"type":"Point","coordinates":[1411,42002]},{"type":"Point","coordinates":[73396,50965]},{"type":"Point","coordinates":[1639,42117]},{"type":"Point","coordinates":[1445,42031]},{"type":"Point","coordinates":[82425,48813]},{"type":"Point","coordinates":[82425,48814]},{"type":"Point","coordinates":[1719,42159]},{"type":"Point","coordinates":[1437,42033]},{"type":"Point","coordinates":[1444,42037]},{"type":"Point","coordinates":[63622,52486]},{"type":"Point","coordinates":[1474,42057]},{"type":"Point","coordinates":[1474,42058]},{"type":"Point","coordinates":[1472,42058]},{"type":"Point","coordinates":[1472,42058]},{"type":"Point","coordinates":[1472,42059]},{"type":"Point","coordinates":[1471,42059]},{"type":"Point","coordinates":[63622,52496]},{"type":"Point","coordinates":[2383,42475]},{"type":"Point","coordinates":[1470,42063]},{"type":"Point","coordinates":[63623,52499]},{"type":"Point","coordinates":[1465,42062]},{"type":"Point","coordinates":[63622,52500]},{"type":"Point","coordinates":[63622,52501]},{"type":"Point","coordinates":[63623,52501]},{"type":"Point","coordinates":[1468,42065]},{"type":"Point","coordinates":[1467,42065]},{"type":"Point","coordinates":[1394,42032]},{"type":"Point","coordinates":[63622,52504]},{"type":"Point","coordinates":[63622,52504]},{"type":"Point","coordinates":[63629,52504]},{"type":"Point","coordinates":[1463,42067]},{"type":"Point","coordinates":[63622,52505]},{"type":"Point","coordinates":[73382,51003]},{"type":"Point","coordinates":[1476,42077]},{"type":"Point","coordinates":[63622,52510]},{"type":"Point","coordinates":[1669,42170]},{"type":"Point","coordinates":[73504,50987]},{"type":"Point","coordinates":[73504,50987]},{"type":"Point","coordinates":[73504,50987]},{"type":"Point","coordinates":[1456,42076]},{"type":"Point","coordinates":[1732,42208]},{"type":"Point","coordinates":[1756,42222]},{"type":"Point","coordinates":[1440,42087]},{"type":"Point","coordinates":[2369,42512]},{"type":"Point","coordinates":[63689,52532]},{"type":"Point","coordinates":[1396,42073]},{"type":"Point","coordinates":[1868,42288]},{"type":"Point","coordinates":[3316,42935]},{"type":"Point","coordinates":[3222,42895]},{"type":"Point","coordinates":[73367,51045]},{"type":"Point","coordinates":[1421,42089]},{"type":"Point","coordinates":[1724,42235]},{"type":"Point","coordinates":[1715,42232]},{"type":"Point","coordinates":[1741,42249]},{"type":"Point","coordinates":[1804,42278]},{"type":"Point","coordinates":[1394,42094]},{"type":"Point","coordinates":[86034,47827]},{"type":"Point","coordinates":[1730,42251]},{"type":"Point","coordinates":[63684,52561]},{"type":"Point","coordinates":[2239,42486]},{"type":"Point","coordinates":[2239,42487]},{"type":"Point","coordinates":[2238,42488]},{"type":"Point","coordinates":[1726,42259]},{"type":"Point","coordinates":[1762,42276]},{"type":"Point","coordinates":[1396,42115]},{"type":"Point","coordinates":[3378,43003]},{"type":"Point","coordinates":[1400,42118]},{"type":"Point","coordinates":[73468,51066]},{"type":"Point","coordinates":[1733,42275]},{"type":"Point","coordinates":[2160,42470]},{"type":"Point","coordinates":[1420,42139]},{"type":"Point","coordinates":[88170,47166]},{"type":"Point","coordinates":[1723,42280]},{"type":"Point","coordinates":[1397,42136]},{"type":"Point","coordinates":[1819,42330]},{"type":"Point","coordinates":[1735,42297]},{"type":"Point","coordinates":[1713,42288]},{"type":"Point","coordinates":[1400,42147]},{"type":"Point","coordinates":[8062,44976]},{"type":"Point","coordinates":[1716,42293]},{"type":"Point","coordinates":[1388,42146]},{"type":"Point","coordinates":[63635,52613]},{"type":"Point","coordinates":[86105,47858]},{"type":"Point","coordinates":[1725,42302]},{"type":"Point","coordinates":[1766,42321]},{"type":"Point","coordinates":[72225,51343]},{"type":"Point","coordinates":[1389,42160]},{"type":"Point","coordinates":[1702,42304]},{"type":"Point","coordinates":[1380,42157]},{"type":"Point","coordinates":[3390,43059]},{"type":"Point","coordinates":[2302,42578]},{"type":"Point","coordinates":[1374,42159]},{"type":"Point","coordinates":[2397,42626]},{"type":"Point","coordinates":[2397,42626]},{"type":"Point","coordinates":[47963,53283]},{"type":"Point","coordinates":[2286,42581]},{"type":"Point","coordinates":[6619,44440]},{"type":"Point","coordinates":[1776,42363]},{"type":"Point","coordinates":[53875,53313]},{"type":"Point","coordinates":[73437,51150]},{"type":"Point","coordinates":[63557,52671]},{"type":"Point","coordinates":[64499,52566]},{"type":"Point","coordinates":[1409,42210]},{"type":"Point","coordinates":[3158,42995]},{"type":"Point","coordinates":[86275,47867]},{"type":"Point","coordinates":[64503,52578]},{"type":"Point","coordinates":[6699,44503]},{"type":"Point","coordinates":[2302,42630]},{"type":"Point","coordinates":[1716,42367]},{"type":"Point","coordinates":[1733,42379]},{"type":"Point","coordinates":[1369,42216]},{"type":"Point","coordinates":[1716,42376]},{"type":"Point","coordinates":[1749,42392]},{"type":"Point","coordinates":[1749,42392]},{"type":"Point","coordinates":[1749,42392]},{"type":"Point","coordinates":[1716,42378]},{"type":"Point","coordinates":[1717,42379]},{"type":"Point","coordinates":[1855,42442]},{"type":"Point","coordinates":[2449,42709]},{"type":"Point","coordinates":[1715,42380]},{"type":"Point","coordinates":[1366,42223]},{"type":"Point","coordinates":[3140,43021]},{"type":"Point","coordinates":[1360,42224]},{"type":"Point","coordinates":[1649,42357]},{"type":"Point","coordinates":[1719,42389]},{"type":"Point","coordinates":[1362,42227]},{"type":"Point","coordinates":[82385,49059]},{"type":"Point","coordinates":[1846,42454]},{"type":"Point","coordinates":[1363,42235]},{"type":"Point","coordinates":[71595,51548]},{"type":"Point","coordinates":[1365,42239]},{"type":"Point","coordinates":[1363,42239]},{"type":"Point","coordinates":[1751,42416]},{"type":"Point","coordinates":[1363,42240]},{"type":"Point","coordinates":[6691,44543]},{"type":"Point","coordinates":[86211,47937]},{"type":"Point","coordinates":[1760,42432]},{"type":"Point","coordinates":[1776,42441]},{"type":"Point","coordinates":[1750,42430]},{"type":"Point","coordinates":[82375,49081]},{"type":"Point","coordinates":[6697,44554]},{"type":"Point","coordinates":[6697,44554]},{"type":"Point","coordinates":[6697,44554]},{"type":"Point","coordinates":[79292,49904]},{"type":"Point","coordinates":[1790,42452]},{"type":"Point","coordinates":[6705,44561]},{"type":"Point","coordinates":[1789,42454]},{"type":"Point","coordinates":[63483,52753]},{"type":"Point","coordinates":[6705,44565]},{"type":"Point","coordinates":[6705,44565]},{"type":"Point","coordinates":[6705,44565]},{"type":"Point","coordinates":[6714,44572]},{"type":"Point","coordinates":[6713,44572]},{"type":"Point","coordinates":[1413,42292]},{"type":"Point","coordinates":[6714,44575]},{"type":"Point","coordinates":[6711,44576]},{"type":"Point","coordinates":[6714,44577]},{"type":"Point","coordinates":[1374,42276]},{"type":"Point","coordinates":[6712,44577]},{"type":"Point","coordinates":[6711,44583]},{"type":"Point","coordinates":[1745,42453]},{"type":"Point","coordinates":[6704,44583]},{"type":"Point","coordinates":[6701,44584]},{"type":"Point","coordinates":[6701,44584]},{"type":"Point","coordinates":[6700,44584]},{"type":"Point","coordinates":[6704,44586]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6701,44585]},{"type":"Point","coordinates":[6710,44589]},{"type":"Point","coordinates":[6696,44584]},{"type":"Point","coordinates":[6700,44586]},{"type":"Point","coordinates":[1411,42309]},{"type":"Point","coordinates":[6697,44588]},{"type":"Point","coordinates":[1377,42296]},{"type":"Point","coordinates":[1376,42298]},{"type":"Point","coordinates":[6701,44593]},{"type":"Point","coordinates":[1573,42389]},{"type":"Point","coordinates":[1414,42319]},{"type":"Point","coordinates":[6701,44596]},{"type":"Point","coordinates":[6698,44595]},{"type":"Point","coordinates":[6694,44594]},{"type":"Point","coordinates":[6692,44595]},{"type":"Point","coordinates":[6700,44598]},{"type":"Point","coordinates":[1456,42341]},{"type":"Point","coordinates":[1377,42306]},{"type":"Point","coordinates":[1455,42342]},{"type":"Point","coordinates":[6702,44601]},{"type":"Point","coordinates":[6706,44603]},{"type":"Point","coordinates":[6692,44597]},{"type":"Point","coordinates":[1765,42484]},{"type":"Point","coordinates":[6701,44602]},{"type":"Point","coordinates":[6664,44589]},{"type":"Point","coordinates":[1926,42560]},{"type":"Point","coordinates":[64104,52724]},{"type":"Point","coordinates":[1453,42347]},{"type":"Point","coordinates":[1453,42347]},{"type":"Point","coordinates":[1456,42349]},{"type":"Point","coordinates":[6693,44604]},{"type":"Point","coordinates":[6694,44604]},{"type":"Point","coordinates":[6694,44604]},{"type":"Point","coordinates":[6697,44606]},{"type":"Point","coordinates":[6693,44604]},{"type":"Point","coordinates":[1451,42348]},{"type":"Point","coordinates":[6691,44605]},{"type":"Point","coordinates":[6698,44607]},{"type":"Point","coordinates":[6688,44603]},{"type":"Point","coordinates":[6697,44607]},{"type":"Point","coordinates":[6692,44605]},{"type":"Point","coordinates":[6706,44611]},{"type":"Point","coordinates":[3158,43113]},{"type":"Point","coordinates":[6696,44607]},{"type":"Point","coordinates":[6701,44609]},{"type":"Point","coordinates":[6706,44612]},{"type":"Point","coordinates":[1451,42349]},{"type":"Point","coordinates":[6704,44611]},{"type":"Point","coordinates":[6705,44611]},{"type":"Point","coordinates":[6704,44612]},{"type":"Point","coordinates":[6704,44612]},{"type":"Point","coordinates":[6707,44612]},{"type":"Point","coordinates":[6705,44612]},{"type":"Point","coordinates":[6705,44612]},{"type":"Point","coordinates":[6704,44612]},{"type":"Point","coordinates":[6705,44612]},{"type":"Point","coordinates":[6705,44612]},{"type":"Point","coordinates":[6704,44612]},{"type":"Point","coordinates":[6704,44612]},{"type":"Point","coordinates":[6704,44612]},{"type":"Point","coordinates":[6690,44607]},{"type":"Point","coordinates":[6704,44613]},{"type":"Point","coordinates":[6704,44613]},{"type":"Point","coordinates":[6691,44608]},{"type":"Point","coordinates":[6690,44607]},{"type":"Point","coordinates":[6704,44613]},{"type":"Point","coordinates":[6704,44613]},{"type":"Point","coordinates":[6690,44608]},{"type":"Point","coordinates":[1865,42540]},{"type":"Point","coordinates":[6689,44608]},{"type":"Point","coordinates":[6703,44614]},{"type":"Point","coordinates":[6693,44610]},{"type":"Point","coordinates":[3374,43213]},{"type":"Point","coordinates":[6690,44609]},{"type":"Point","coordinates":[1452,42356]},{"type":"Point","coordinates":[1452,42356]},{"type":"Point","coordinates":[1381,42323]},{"type":"Point","coordinates":[6686,44609]},{"type":"Point","coordinates":[63592,52792]},{"type":"Point","coordinates":[6689,44612]},{"type":"Point","coordinates":[6686,44610]},{"type":"Point","coordinates":[6684,44610]},{"type":"Point","coordinates":[6686,44611]},{"type":"Point","coordinates":[6687,44612]},{"type":"Point","coordinates":[6687,44612]},{"type":"Point","coordinates":[6685,44612]},{"type":"Point","coordinates":[6685,44613]},{"type":"Point","coordinates":[6685,44612]},{"type":"Point","coordinates":[6691,44615]},{"type":"Point","coordinates":[63966,52766]},{"type":"Point","coordinates":[63966,52766]},{"type":"Point","coordinates":[73528,51276]},{"type":"Point","coordinates":[8049,45171]},{"type":"Point","coordinates":[1787,42532]},{"type":"Point","coordinates":[6643,44625]},{"type":"Point","coordinates":[73101,51379]},{"type":"Point","coordinates":[1839,42581]},{"type":"Point","coordinates":[1838,42581]},{"type":"Point","coordinates":[1819,42578]},{"type":"Point","coordinates":[3127,43162]},{"type":"Point","coordinates":[1932,42631]},{"type":"Point","coordinates":[1802,42578]},{"type":"Point","coordinates":[1860,42605]},{"type":"Point","coordinates":[1860,42605]},{"type":"Point","coordinates":[1848,42605]},{"type":"Point","coordinates":[1863,42614]},{"type":"Point","coordinates":[1765,42569]},{"type":"Point","coordinates":[1467,42437]},{"type":"Point","coordinates":[1699,42545]},{"type":"Point","coordinates":[1825,42608]},{"type":"Point","coordinates":[1824,42608]},{"type":"Point","coordinates":[1803,42607]},{"type":"Point","coordinates":[82070,49317]},{"type":"Point","coordinates":[1516,42484]},{"type":"Point","coordinates":[1745,42589]},{"type":"Point","coordinates":[1963,42693]},{"type":"Point","coordinates":[1943,42686]},{"type":"Point","coordinates":[1963,42696]},{"type":"Point","coordinates":[1963,42697]},{"type":"Point","coordinates":[1960,42697]},{"type":"Point","coordinates":[1755,42605]},{"type":"Point","coordinates":[1914,42677]},{"type":"Point","coordinates":[1957,42698]},{"type":"Point","coordinates":[1963,42701]},{"type":"Point","coordinates":[8159,45310]},{"type":"Point","coordinates":[1961,42703]},{"type":"Point","coordinates":[1763,42614]},{"type":"Point","coordinates":[1961,42703]},{"type":"Point","coordinates":[1824,42642]},{"type":"Point","coordinates":[1763,42615]},{"type":"Point","coordinates":[1763,42616]},{"type":"Point","coordinates":[1761,42619]},{"type":"Point","coordinates":[1761,42619]},{"type":"Point","coordinates":[1761,42619]},{"type":"Point","coordinates":[1761,42619]},{"type":"Point","coordinates":[1838,42655]},{"type":"Point","coordinates":[1766,42626]},{"type":"Point","coordinates":[1948,42709]},{"type":"Point","coordinates":[1948,42709]},{"type":"Point","coordinates":[1764,42626]},{"type":"Point","coordinates":[1765,42626]},{"type":"Point","coordinates":[1702,42599]},{"type":"Point","coordinates":[1953,42713]},{"type":"Point","coordinates":[1951,42712]},{"type":"Point","coordinates":[65072,52752]},{"type":"Point","coordinates":[1700,42607]},{"type":"Point","coordinates":[1875,42687]},{"type":"Point","coordinates":[1486,42514]},{"type":"Point","coordinates":[1963,42731]},{"type":"Point","coordinates":[1960,42731]},{"type":"Point","coordinates":[1965,42734]},{"type":"Point","coordinates":[1962,42734]},{"type":"Point","coordinates":[1751,42640]},{"type":"Point","coordinates":[1919,42724]},{"type":"Point","coordinates":[1482,42528]},{"type":"Point","coordinates":[1758,42659]},{"type":"Point","coordinates":[8152,45364]},{"type":"Point","coordinates":[82274,49344]},{"type":"Point","coordinates":[1987,42781]},{"type":"Point","coordinates":[1773,42685]},{"type":"Point","coordinates":[2508,43017]},{"type":"Point","coordinates":[2508,43017]},{"type":"Point","coordinates":[1563,42592]},{"type":"Point","coordinates":[8107,45365]},{"type":"Point","coordinates":[1909,42758]},{"type":"Point","coordinates":[1802,42710]},{"type":"Point","coordinates":[1450,42551]},{"type":"Point","coordinates":[1665,42650]},{"type":"Point","coordinates":[1851,42740]},{"type":"Point","coordinates":[1850,42740]},{"type":"Point","coordinates":[1979,42801]},{"type":"Point","coordinates":[3242,43366]},{"type":"Point","coordinates":[1961,42796]},{"type":"Point","coordinates":[1852,42748]},{"type":"Point","coordinates":[2438,43012]},{"type":"Point","coordinates":[1637,42654]},{"type":"Point","coordinates":[1958,42800]},{"type":"Point","coordinates":[1958,42800]},{"type":"Point","coordinates":[1958,42800]},{"type":"Point","coordinates":[1530,42607]},{"type":"Point","coordinates":[1635,42655]},{"type":"Point","coordinates":[1634,42654]},{"type":"Point","coordinates":[1630,42653]},{"type":"Point","coordinates":[1630,42655]},{"type":"Point","coordinates":[1629,42656]},{"type":"Point","coordinates":[86017,48276]},{"type":"Point","coordinates":[63538,53010]},{"type":"Point","coordinates":[1928,42792]},{"type":"Point","coordinates":[2516,43056]},{"type":"Point","coordinates":[1975,42814]},{"type":"Point","coordinates":[2532,43065]},{"type":"Point","coordinates":[6940,44934]},{"type":"Point","coordinates":[1957,42812]},{"type":"Point","coordinates":[2520,43067]},{"type":"Point","coordinates":[1718,42707]},{"type":"Point","coordinates":[1730,42712]},{"type":"Point","coordinates":[1613,42660]},{"type":"Point","coordinates":[1718,42709]},{"type":"Point","coordinates":[1830,42760]},{"type":"Point","coordinates":[1718,42710]},{"type":"Point","coordinates":[1602,42658]},{"type":"Point","coordinates":[1602,42658]},{"type":"Point","coordinates":[2000,42839]},{"type":"Point","coordinates":[1601,42659]},{"type":"Point","coordinates":[1602,42660]},{"type":"Point","coordinates":[1719,42715]},{"type":"Point","coordinates":[1700,42708]},{"type":"Point","coordinates":[1708,42712]},{"type":"Point","coordinates":[1822,42763]},{"type":"Point","coordinates":[1718,42716]},{"type":"Point","coordinates":[1716,42716]},{"type":"Point","coordinates":[1695,42706]},{"type":"Point","coordinates":[1717,42716]},{"type":"Point","coordinates":[1634,42679]},{"type":"Point","coordinates":[1714,42717]},{"type":"Point","coordinates":[1714,42717]},{"type":"Point","coordinates":[1714,42717]},{"type":"Point","coordinates":[1719,42720]},{"type":"Point","coordinates":[1706,42715]},{"type":"Point","coordinates":[1720,42721]},{"type":"Point","coordinates":[1719,42721]},{"type":"Point","coordinates":[1718,42721]},{"type":"Point","coordinates":[1719,42722]},{"type":"Point","coordinates":[1718,42722]},{"type":"Point","coordinates":[1721,42724]},{"type":"Point","coordinates":[1722,42725]},{"type":"Point","coordinates":[1722,42725]},{"type":"Point","coordinates":[1722,42725]},{"type":"Point","coordinates":[1721,42725]},{"type":"Point","coordinates":[1721,42725]},{"type":"Point","coordinates":[1721,42725]},{"type":"Point","coordinates":[1722,42725]},{"type":"Point","coordinates":[1718,42724]},{"type":"Point","coordinates":[1582,42663]},{"type":"Point","coordinates":[8248,45475]},{"type":"Point","coordinates":[1716,42724]},{"type":"Point","coordinates":[1719,42726]},{"type":"Point","coordinates":[1696,42716]},{"type":"Point","coordinates":[1717,42726]},{"type":"Point","coordinates":[1723,42729]},{"type":"Point","coordinates":[1718,42726]},{"type":"Point","coordinates":[1716,42725]},{"type":"Point","coordinates":[1580,42665]},{"type":"Point","coordinates":[1713,42725]},{"type":"Point","coordinates":[1718,42727]},{"type":"Point","coordinates":[1713,42725]},{"type":"Point","coordinates":[80938,49779]},{"type":"Point","coordinates":[1712,42725]},{"type":"Point","coordinates":[1712,42725]},{"type":"Point","coordinates":[1716,42728]},{"type":"Point","coordinates":[2019,42864]},{"type":"Point","coordinates":[1451,42607]},{"type":"Point","coordinates":[1712,42726]},{"type":"Point","coordinates":[1712,42726]},{"type":"Point","coordinates":[1966,42841]},{"type":"Point","coordinates":[1712,42726]},{"type":"Point","coordinates":[1902,42812]},{"type":"Point","coordinates":[1712,42726]},{"type":"Point","coordinates":[1717,42729]},{"type":"Point","coordinates":[1977,42847]},{"type":"Point","coordinates":[1720,42731]},{"type":"Point","coordinates":[1711,42727]},{"type":"Point","coordinates":[1716,42730]},{"type":"Point","coordinates":[1716,42730]},{"type":"Point","coordinates":[1715,42730]},{"type":"Point","coordinates":[1716,42733]},{"type":"Point","coordinates":[1759,42753]},{"type":"Point","coordinates":[1723,42738]},{"type":"Point","coordinates":[1708,42732]},{"type":"Point","coordinates":[1658,42710]},{"type":"Point","coordinates":[1702,42730]},{"type":"Point","coordinates":[1665,42713]},{"type":"Point","coordinates":[1719,42739]},{"type":"Point","coordinates":[1571,42672]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1572,42673]},{"type":"Point","coordinates":[1571,42672]},{"type":"Point","coordinates":[1570,42673]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1570,42673]},{"type":"Point","coordinates":[1841,42796]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1584,42679]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1571,42673]},{"type":"Point","coordinates":[1570,42673]},{"type":"Point","coordinates":[1598,42686]},{"type":"Point","coordinates":[1582,42679]},{"type":"Point","coordinates":[1573,42675]},{"type":"Point","coordinates":[1572,42675]},{"type":"Point","coordinates":[1663,42716]},{"type":"Point","coordinates":[1709,42737]},{"type":"Point","coordinates":[1572,42675]},{"type":"Point","coordinates":[1573,42675]},{"type":"Point","coordinates":[1572,42675]},{"type":"Point","coordinates":[1579,42678]},{"type":"Point","coordinates":[1582,42680]},{"type":"Point","coordinates":[1573,42676]},{"type":"Point","coordinates":[1584,42681]},{"type":"Point","coordinates":[1572,42675]},{"type":"Point","coordinates":[1574,42677]},{"type":"Point","coordinates":[1573,42676]},{"type":"Point","coordinates":[1582,42680]},{"type":"Point","coordinates":[1623,42699]},{"type":"Point","coordinates":[1597,42687]},{"type":"Point","coordinates":[1660,42716]},{"type":"Point","coordinates":[1579,42679]},{"type":"Point","coordinates":[1581,42680]},{"type":"Point","coordinates":[1578,42679]},{"type":"Point","coordinates":[1581,42680]},{"type":"Point","coordinates":[80335,49952]},{"type":"Point","coordinates":[1573,42676]},{"type":"Point","coordinates":[1574,42677]},{"type":"Point","coordinates":[1581,42680]},{"type":"Point","coordinates":[1594,42686]},{"type":"Point","coordinates":[1573,42676]},{"type":"Point","coordinates":[1575,42677]},{"type":"Point","coordinates":[1581,42680]},{"type":"Point","coordinates":[1575,42677]},{"type":"Point","coordinates":[1581,42680]},{"type":"Point","coordinates":[1658,42715]},{"type":"Point","coordinates":[1581,42680]},{"type":"Point","coordinates":[1572,42676]},{"type":"Point","coordinates":[1581,42680]},{"type":"Point","coordinates":[1575,42678]},{"type":"Point","coordinates":[1576,42678]},{"type":"Point","coordinates":[1578,42679]},{"type":"Point","coordinates":[1573,42677]},{"type":"Point","coordinates":[1576,42678]},{"type":"Point","coordinates":[1576,42678]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1589,42684]},{"type":"Point","coordinates":[1570,42676]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1575,42678]},{"type":"Point","coordinates":[1575,42678]},{"type":"Point","coordinates":[1578,42680]},{"type":"Point","coordinates":[1582,42681]},{"type":"Point","coordinates":[1574,42678]},{"type":"Point","coordinates":[1576,42678]},{"type":"Point","coordinates":[1623,42700]},{"type":"Point","coordinates":[1582,42681]},{"type":"Point","coordinates":[1582,42681]},{"type":"Point","coordinates":[1578,42680]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1582,42681]},{"type":"Point","coordinates":[1573,42677]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1575,42678]},{"type":"Point","coordinates":[1580,42681]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1574,42678]},{"type":"Point","coordinates":[1576,42679]},{"type":"Point","coordinates":[1574,42678]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1574,42678]},{"type":"Point","coordinates":[1581,42681]},{"type":"Point","coordinates":[1580,42681]},{"type":"Point","coordinates":[1582,42682]},{"type":"Point","coordinates":[1588,42685]},{"type":"Point","coordinates":[1597,42689]},{"type":"Point","coordinates":[1580,42681]},{"type":"Point","coordinates":[1622,42700]},{"type":"Point","coordinates":[1580,42681]},{"type":"Point","coordinates":[1581,42682]},{"type":"Point","coordinates":[1579,42681]},{"type":"Point","coordinates":[1576,42680]},{"type":"Point","coordinates":[1600,42691]},{"type":"Point","coordinates":[1718,42745]},{"type":"Point","coordinates":[1585,42685]},{"type":"Point","coordinates":[1622,42701]},{"type":"Point","coordinates":[1608,42696]},{"type":"Point","coordinates":[1608,42696]},{"type":"Point","coordinates":[1727,42750]},{"type":"Point","coordinates":[1580,42684]},{"type":"Point","coordinates":[1661,42721]},{"type":"Point","coordinates":[1601,42694]},{"type":"Point","coordinates":[1727,42751]},{"type":"Point","coordinates":[1718,42748]},{"type":"Point","coordinates":[1613,42700]},{"type":"Point","coordinates":[1725,42752]},{"type":"Point","coordinates":[1671,42727]},{"type":"Point","coordinates":[1724,42751]},{"type":"Point","coordinates":[1668,42726]},{"type":"Point","coordinates":[1722,42751]},{"type":"Point","coordinates":[1724,42751]},{"type":"Point","coordinates":[1621,42706]},{"type":"Point","coordinates":[1725,42753]},{"type":"Point","coordinates":[1753,42766]},{"type":"Point","coordinates":[1621,42706]},{"type":"Point","coordinates":[1721,42752]},{"type":"Point","coordinates":[3009,43328]},{"type":"Point","coordinates":[1679,42734]},{"type":"Point","coordinates":[81003,49784]},{"type":"Point","coordinates":[1606,42702]},{"type":"Point","coordinates":[1674,42733]},{"type":"Point","coordinates":[80954,49799]},{"type":"Point","coordinates":[2375,43050]},{"type":"Point","coordinates":[1667,42732]},{"type":"Point","coordinates":[1719,42755]},{"type":"Point","coordinates":[1667,42732]},{"type":"Point","coordinates":[1705,42749]},{"type":"Point","coordinates":[1667,42732]},{"type":"Point","coordinates":[1615,42710]},{"type":"Point","coordinates":[1931,42854]},{"type":"Point","coordinates":[1696,42747]},{"type":"Point","coordinates":[1575,42693]},{"type":"Point","coordinates":[1618,42713]},{"type":"Point","coordinates":[1602,42706]},{"type":"Point","coordinates":[1712,42756]},{"type":"Point","coordinates":[1683,42743]},{"type":"Point","coordinates":[1758,42777]},{"type":"Point","coordinates":[1715,42759]},{"type":"Point","coordinates":[1698,42752]},{"type":"Point","coordinates":[1602,42708]},{"type":"Point","coordinates":[1678,42744]},{"type":"Point","coordinates":[1602,42709]},{"type":"Point","coordinates":[1608,42713]},{"type":"Point","coordinates":[1464,42648]},{"type":"Point","coordinates":[1671,42742]},{"type":"Point","coordinates":[1678,42746]},{"type":"Point","coordinates":[1614,42717]},{"type":"Point","coordinates":[1602,42711]},{"type":"Point","coordinates":[1672,42743]},{"type":"Point","coordinates":[1671,42743]},{"type":"Point","coordinates":[1596,42709]},{"type":"Point","coordinates":[1697,42755]},{"type":"Point","coordinates":[1606,42715]},{"type":"Point","coordinates":[1600,42712]},{"type":"Point","coordinates":[64182,53004]},{"type":"Point","coordinates":[6701,44904]},{"type":"Point","coordinates":[1691,42756]},{"type":"Point","coordinates":[6701,44905]},{"type":"Point","coordinates":[1696,42760]},{"type":"Point","coordinates":[1690,42757]},{"type":"Point","coordinates":[1671,42749]},{"type":"Point","coordinates":[1671,42749]},{"type":"Point","coordinates":[1670,42749]},{"type":"Point","coordinates":[1929,42866]},{"type":"Point","coordinates":[80958,49816]},{"type":"Point","coordinates":[1666,42748]},{"type":"Point","coordinates":[1671,42751]},{"type":"Point","coordinates":[1658,42745]},{"type":"Point","coordinates":[1670,42751]},{"type":"Point","coordinates":[1672,42752]},{"type":"Point","coordinates":[1631,42734]},{"type":"Point","coordinates":[1770,42797]},{"type":"Point","coordinates":[1672,42753]},{"type":"Point","coordinates":[1770,42797]},{"type":"Point","coordinates":[1770,42797]},{"type":"Point","coordinates":[1770,42798]},{"type":"Point","coordinates":[1770,42798]},{"type":"Point","coordinates":[1771,42798]},{"type":"Point","coordinates":[1668,42752]},{"type":"Point","coordinates":[1836,42828]},{"type":"Point","coordinates":[6685,44905]},{"type":"Point","coordinates":[1636,42738]},{"type":"Point","coordinates":[1594,42720]},{"type":"Point","coordinates":[1491,42674]},{"type":"Point","coordinates":[1915,42867]},{"type":"Point","coordinates":[1915,42867]},{"type":"Point","coordinates":[80963,49821]},{"type":"Point","coordinates":[1976,42894]},{"type":"Point","coordinates":[80958,49824]},{"type":"Point","coordinates":[64609,52968]},{"type":"Point","coordinates":[1791,42819]},{"type":"Point","coordinates":[6682,44916]},{"type":"Point","coordinates":[1958,42897]},{"type":"Point","coordinates":[1947,42893]},{"type":"Point","coordinates":[1926,42887]},{"type":"Point","coordinates":[1933,42890]},{"type":"Point","coordinates":[1610,42745]},{"type":"Point","coordinates":[1854,42855]},{"type":"Point","coordinates":[85831,48430]},{"type":"Point","coordinates":[1618,42749]},{"type":"Point","coordinates":[1931,42890]},{"type":"Point","coordinates":[1931,42890]},{"type":"Point","coordinates":[1562,42724]},{"type":"Point","coordinates":[1609,42747]},{"type":"Point","coordinates":[1579,42736]},{"type":"Point","coordinates":[1860,42863]},{"type":"Point","coordinates":[1917,42890]},{"type":"Point","coordinates":[1589,42744]},{"type":"Point","coordinates":[8209,45539]},{"type":"Point","coordinates":[1717,42805]},{"type":"Point","coordinates":[64100,53051]},{"type":"Point","coordinates":[1704,42800]},{"type":"Point","coordinates":[2998,43381]},{"type":"Point","coordinates":[2077,42973]},{"type":"Point","coordinates":[2090,42979]},{"type":"Point","coordinates":[2107,42987]},{"type":"Point","coordinates":[2076,42974]},{"type":"Point","coordinates":[2023,42952]},{"type":"Point","coordinates":[1949,42920]},{"type":"Point","coordinates":[2024,42954]},{"type":"Point","coordinates":[65139,52943]},{"type":"Point","coordinates":[80986,49857]},{"type":"Point","coordinates":[3075,43428]},{"type":"Point","coordinates":[1749,42837]},{"type":"Point","coordinates":[2069,42985]},{"type":"Point","coordinates":[1931,42926]},{"type":"Point","coordinates":[8214,45569]},{"type":"Point","coordinates":[8214,45571]},{"type":"Point","coordinates":[1590,42777]},{"type":"Point","coordinates":[8213,45574]},{"type":"Point","coordinates":[1457,42723]},{"type":"Point","coordinates":[1743,42853]},{"type":"Point","coordinates":[1627,42801]},{"type":"Point","coordinates":[3136,43475]},{"type":"Point","coordinates":[1662,42817]},{"type":"Point","coordinates":[1652,42813]},{"type":"Point","coordinates":[1669,42821]},{"type":"Point","coordinates":[1652,42813]},{"type":"Point","coordinates":[1753,42860]},{"type":"Point","coordinates":[1748,42858]},{"type":"Point","coordinates":[1748,42858]},{"type":"Point","coordinates":[1750,42860]},{"type":"Point","coordinates":[1622,42802]},{"type":"Point","coordinates":[1749,42860]},{"type":"Point","coordinates":[1664,42822]},{"type":"Point","coordinates":[1800,42884]},{"type":"Point","coordinates":[1664,42823]},{"type":"Point","coordinates":[1746,42860]},{"type":"Point","coordinates":[1799,42884]},{"type":"Point","coordinates":[1746,42860]},{"type":"Point","coordinates":[1800,42885]},{"type":"Point","coordinates":[1747,42861]},{"type":"Point","coordinates":[2369,43141]},{"type":"Point","coordinates":[1799,42885]},{"type":"Point","coordinates":[1800,42885]},{"type":"Point","coordinates":[1753,42865]},{"type":"Point","coordinates":[1741,42860]},{"type":"Point","coordinates":[1657,42824]},{"type":"Point","coordinates":[1571,42785]},{"type":"Point","coordinates":[2011,42985]},{"type":"Point","coordinates":[1748,42866]},{"type":"Point","coordinates":[1977,42970]},{"type":"Point","coordinates":[1822,42899]},{"type":"Point","coordinates":[1751,42868]},{"type":"Point","coordinates":[1571,42786]},{"type":"Point","coordinates":[1622,42810]},{"type":"Point","coordinates":[2487,43199]},{"type":"Point","coordinates":[1792,42888]},{"type":"Point","coordinates":[1621,42810]},{"type":"Point","coordinates":[1621,42811]},{"type":"Point","coordinates":[1734,42863]},{"type":"Point","coordinates":[64026,53108]},{"type":"Point","coordinates":[1621,42812]},{"type":"Point","coordinates":[1622,42813]},{"type":"Point","coordinates":[1657,42829]},{"type":"Point","coordinates":[1734,42865]},{"type":"Point","coordinates":[1734,42865]},{"type":"Point","coordinates":[2046,43006]},{"type":"Point","coordinates":[1752,42875]},{"type":"Point","coordinates":[1751,42876]},{"type":"Point","coordinates":[1622,42818]},{"type":"Point","coordinates":[1751,42878]},{"type":"Point","coordinates":[1751,42878]},{"type":"Point","coordinates":[1750,42877]},{"type":"Point","coordinates":[1750,42878]},{"type":"Point","coordinates":[1750,42878]},{"type":"Point","coordinates":[1750,42878]},{"type":"Point","coordinates":[1748,42878]},{"type":"Point","coordinates":[1749,42878]},{"type":"Point","coordinates":[1751,42879]},{"type":"Point","coordinates":[1749,42878]},{"type":"Point","coordinates":[1749,42878]},{"type":"Point","coordinates":[1620,42820]},{"type":"Point","coordinates":[2102,43039]},{"type":"Point","coordinates":[1673,42845]},{"type":"Point","coordinates":[2015,43001]},{"type":"Point","coordinates":[1979,42985]},{"type":"Point","coordinates":[1667,42844]},{"type":"Point","coordinates":[1676,42848]},{"type":"Point","coordinates":[2312,43135]},{"type":"Point","coordinates":[1672,42848]},{"type":"Point","coordinates":[1619,42824]},{"type":"Point","coordinates":[1672,42848]},{"type":"Point","coordinates":[1671,42848]},{"type":"Point","coordinates":[1617,42824]},{"type":"Point","coordinates":[1724,42873]},{"type":"Point","coordinates":[1629,42830]},{"type":"Point","coordinates":[1724,42873]},{"type":"Point","coordinates":[1618,42827]},{"type":"Point","coordinates":[1618,42828]},{"type":"Point","coordinates":[1618,42828]},{"type":"Point","coordinates":[1742,42885]},{"type":"Point","coordinates":[1619,42829]},{"type":"Point","coordinates":[1617,42828]},{"type":"Point","coordinates":[1618,42829]},{"type":"Point","coordinates":[1617,42829]},{"type":"Point","coordinates":[1488,42771]},{"type":"Point","coordinates":[1616,42831]},{"type":"Point","coordinates":[1619,42832]},{"type":"Point","coordinates":[1750,42892]},{"type":"Point","coordinates":[1653,42848]},{"type":"Point","coordinates":[1615,42831]},{"type":"Point","coordinates":[1739,42888]},{"type":"Point","coordinates":[1739,42888]},{"type":"Point","coordinates":[1619,42834]},{"type":"Point","coordinates":[1619,42834]},{"type":"Point","coordinates":[1619,42834]},{"type":"Point","coordinates":[1622,42835]},{"type":"Point","coordinates":[1681,42862]},{"type":"Point","coordinates":[1620,42835]},{"type":"Point","coordinates":[1779,42907]},{"type":"Point","coordinates":[1620,42836]},{"type":"Point","coordinates":[1615,42834]},{"type":"Point","coordinates":[1616,42835]},{"type":"Point","coordinates":[1458,42763]},{"type":"Point","coordinates":[1615,42835]},{"type":"Point","coordinates":[1612,42834]},{"type":"Point","coordinates":[1610,42833]},{"type":"Point","coordinates":[1616,42836]},{"type":"Point","coordinates":[1617,42837]},{"type":"Point","coordinates":[1611,42835]},{"type":"Point","coordinates":[1617,42838]},{"type":"Point","coordinates":[1610,42835]},{"type":"Point","coordinates":[1606,42833]},{"type":"Point","coordinates":[1608,42836]},{"type":"Point","coordinates":[1609,42836]},{"type":"Point","coordinates":[1614,42839]},{"type":"Point","coordinates":[1607,42836]},{"type":"Point","coordinates":[1613,42840]},{"type":"Point","coordinates":[1612,42839]},{"type":"Point","coordinates":[1609,42838]},{"type":"Point","coordinates":[1609,42838]},{"type":"Point","coordinates":[1748,42901]},{"type":"Point","coordinates":[1961,42998]},{"type":"Point","coordinates":[1621,42844]},{"type":"Point","coordinates":[1686,42874]},{"type":"Point","coordinates":[1616,42842]},{"type":"Point","coordinates":[1609,42839]},{"type":"Point","coordinates":[2499,43239]},{"type":"Point","coordinates":[1605,42839]},{"type":"Point","coordinates":[1612,42843]},{"type":"Point","coordinates":[2003,43020]},{"type":"Point","coordinates":[1621,42848]},{"type":"Point","coordinates":[2108,43069]},{"type":"Point","coordinates":[1684,42878]},{"type":"Point","coordinates":[1665,42870]},{"type":"Point","coordinates":[1659,42868]},{"type":"Point","coordinates":[6699,45029]},{"type":"Point","coordinates":[1683,42879]},{"type":"Point","coordinates":[1683,42880]},{"type":"Point","coordinates":[1683,42880]},{"type":"Point","coordinates":[1687,42882]},{"type":"Point","coordinates":[1584,42836]},{"type":"Point","coordinates":[1558,42824]},{"type":"Point","coordinates":[1625,42855]},{"type":"Point","coordinates":[2026,43037]},{"type":"Point","coordinates":[1864,42964]},{"type":"Point","coordinates":[1722,42900]},{"type":"Point","coordinates":[1723,42901]},{"type":"Point","coordinates":[1722,42901]},{"type":"Point","coordinates":[1724,42902]},{"type":"Point","coordinates":[1733,42906]},{"type":"Point","coordinates":[1731,42906]},{"type":"Point","coordinates":[1542,42820]},{"type":"Point","coordinates":[1733,42907]},{"type":"Point","coordinates":[1644,42867]},{"type":"Point","coordinates":[1633,42863]},{"type":"Point","coordinates":[1737,42910]},{"type":"Point","coordinates":[1689,42890]},{"type":"Point","coordinates":[1689,42890]},{"type":"Point","coordinates":[1850,42963]},{"type":"Point","coordinates":[1689,42890]},{"type":"Point","coordinates":[1613,42857]},{"type":"Point","coordinates":[2595,43298]},{"type":"Point","coordinates":[2586,43294]},{"type":"Point","coordinates":[1682,42889]},{"type":"Point","coordinates":[2591,43297]},{"type":"Point","coordinates":[2592,43298]},{"type":"Point","coordinates":[2591,43297]},{"type":"Point","coordinates":[2584,43295]},{"type":"Point","coordinates":[2591,43298]},{"type":"Point","coordinates":[2068,43064]},{"type":"Point","coordinates":[2068,43064]},{"type":"Point","coordinates":[2068,43064]},{"type":"Point","coordinates":[2591,43298]},{"type":"Point","coordinates":[2582,43294]},{"type":"Point","coordinates":[2584,43295]},{"type":"Point","coordinates":[2584,43295]},{"type":"Point","coordinates":[2584,43295]},{"type":"Point","coordinates":[2585,43296]},{"type":"Point","coordinates":[1959,43016]},{"type":"Point","coordinates":[1717,42907]},{"type":"Point","coordinates":[2587,43297]},{"type":"Point","coordinates":[2585,43297]},{"type":"Point","coordinates":[2585,43297]},{"type":"Point","coordinates":[2585,43297]},{"type":"Point","coordinates":[1643,42874]},{"type":"Point","coordinates":[2087,43075]},{"type":"Point","coordinates":[1638,42873]},{"type":"Point","coordinates":[1721,42913]},{"type":"Point","coordinates":[1729,42916]},{"type":"Point","coordinates":[1735,42921]},{"type":"Point","coordinates":[2048,43062]},{"type":"Point","coordinates":[2048,43063]},{"type":"Point","coordinates":[2048,43063]},{"type":"Point","coordinates":[2049,43063]},{"type":"Point","coordinates":[2048,43063]},{"type":"Point","coordinates":[1737,42922]},{"type":"Point","coordinates":[2049,43063]},{"type":"Point","coordinates":[2048,43063]},{"type":"Point","coordinates":[2048,43063]},{"type":"Point","coordinates":[2048,43063]},{"type":"Point","coordinates":[1736,42922]},{"type":"Point","coordinates":[1737,42923]},{"type":"Point","coordinates":[1737,42923]},{"type":"Point","coordinates":[2586,43304]},{"type":"Point","coordinates":[1870,42985]},{"type":"Point","coordinates":[2562,43295]},{"type":"Point","coordinates":[1641,42882]},{"type":"Point","coordinates":[1641,42882]},{"type":"Point","coordinates":[1614,42871]},{"type":"Point","coordinates":[2555,43294]},{"type":"Point","coordinates":[2555,43294]},{"type":"Point","coordinates":[80426,50100]},{"type":"Point","coordinates":[2583,43307]},{"type":"Point","coordinates":[2555,43294]},{"type":"Point","coordinates":[2557,43295]},{"type":"Point","coordinates":[2557,43296]},{"type":"Point","coordinates":[2557,43296]},{"type":"Point","coordinates":[2555,43294]},{"type":"Point","coordinates":[1738,42928]},{"type":"Point","coordinates":[2560,43297]},{"type":"Point","coordinates":[2559,43297]},{"type":"Point","coordinates":[2559,43297]},{"type":"Point","coordinates":[1775,42946]},{"type":"Point","coordinates":[2559,43298]},{"type":"Point","coordinates":[1733,42930]},{"type":"Point","coordinates":[1665,42899]},{"type":"Point","coordinates":[1732,42930]},{"type":"Point","coordinates":[2556,43300]},{"type":"Point","coordinates":[2556,43300]},{"type":"Point","coordinates":[80577,50065]},{"type":"Point","coordinates":[2556,43300]},{"type":"Point","coordinates":[1753,42941]},{"type":"Point","coordinates":[1696,42916]},{"type":"Point","coordinates":[1762,42946]},{"type":"Point","coordinates":[1760,42948]},{"type":"Point","coordinates":[1615,42882]},{"type":"Point","coordinates":[1668,42909]},{"type":"Point","coordinates":[2275,43182]},{"type":"Point","coordinates":[2059,43085]},{"type":"Point","coordinates":[1747,42945]},{"type":"Point","coordinates":[1747,42946]},{"type":"Point","coordinates":[1756,42951]},{"type":"Point","coordinates":[2066,43091]},{"type":"Point","coordinates":[1748,42947]},{"type":"Point","coordinates":[1757,42951]},{"type":"Point","coordinates":[1747,42947]},{"type":"Point","coordinates":[1747,42947]},{"type":"Point","coordinates":[1538,42854]},{"type":"Point","coordinates":[4069,43974]},{"type":"Point","coordinates":[81698,49778]},{"type":"Point","coordinates":[81417,49856]},{"type":"Point","coordinates":[1980,43058]},{"type":"Point","coordinates":[2094,43110]},{"type":"Point","coordinates":[1668,42918]},{"type":"Point","coordinates":[1956,43048]},{"type":"Point","coordinates":[1959,43050]},{"type":"Point","coordinates":[2278,43194]},{"type":"Point","coordinates":[1640,42907]},{"type":"Point","coordinates":[1954,43050]},{"type":"Point","coordinates":[1492,42840]},{"type":"Point","coordinates":[2016,43078]},{"type":"Point","coordinates":[2070,43104]},{"type":"Point","coordinates":[1771,42972]},{"type":"Point","coordinates":[43956,53699]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[1729,42953]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2347,43231]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[1728,42953]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2014,43082]},{"type":"Point","coordinates":[2015,43082]},{"type":"Point","coordinates":[2015,43083]},{"type":"Point","coordinates":[2014,43082]},{"type":"Point","coordinates":[2014,43082]},{"type":"Point","coordinates":[2014,43082]},{"type":"Point","coordinates":[2015,43083]},{"type":"Point","coordinates":[2015,43083]},{"type":"Point","coordinates":[2016,43083]},{"type":"Point","coordinates":[2014,43083]},{"type":"Point","coordinates":[2014,43083]},{"type":"Point","coordinates":[2014,43083]},{"type":"Point","coordinates":[2006,43082]},{"type":"Point","coordinates":[2006,43082]},{"type":"Point","coordinates":[1871,43027]},{"type":"Point","coordinates":[1778,42989]},{"type":"Point","coordinates":[1661,42937]},{"type":"Point","coordinates":[1707,42959]},{"type":"Point","coordinates":[1794,42998]},{"type":"Point","coordinates":[1857,43028]},{"type":"Point","coordinates":[2164,43166]},{"type":"Point","coordinates":[80727,50068]},{"type":"Point","coordinates":[80727,50068]},{"type":"Point","coordinates":[1775,42993]},{"type":"Point","coordinates":[1791,43000]},{"type":"Point","coordinates":[2001,43096]},{"type":"Point","coordinates":[2001,43096]},{"type":"Point","coordinates":[1815,43012]},{"type":"Point","coordinates":[1985,43091]},{"type":"Point","coordinates":[2709,43417]},{"type":"Point","coordinates":[1812,43017]},{"type":"Point","coordinates":[1704,42974]},{"type":"Point","coordinates":[1704,42974]},{"type":"Point","coordinates":[1704,42974]},{"type":"Point","coordinates":[1704,42974]},{"type":"Point","coordinates":[2061,43136]},{"type":"Point","coordinates":[1712,42979]},{"type":"Point","coordinates":[80543,50132]},{"type":"Point","coordinates":[2056,43136]},{"type":"Point","coordinates":[2045,43131]},{"type":"Point","coordinates":[2045,43132]},{"type":"Point","coordinates":[1738,42994]},{"type":"Point","coordinates":[1740,42996]},{"type":"Point","coordinates":[1740,42997]},{"type":"Point","coordinates":[1693,42978]},{"type":"Point","coordinates":[1693,42978]},{"type":"Point","coordinates":[1693,42978]},{"type":"Point","coordinates":[1989,43114]},{"type":"Point","coordinates":[1989,43114]},{"type":"Point","coordinates":[1989,43114]},{"type":"Point","coordinates":[64616,53171]},{"type":"Point","coordinates":[80535,50144]},{"type":"Point","coordinates":[1989,43119]},{"type":"Point","coordinates":[1990,43120]},{"type":"Point","coordinates":[1987,43120]},{"type":"Point","coordinates":[1987,43120]},{"type":"Point","coordinates":[1977,43116]},{"type":"Point","coordinates":[1988,43121]},{"type":"Point","coordinates":[2395,43304]},{"type":"Point","coordinates":[1987,43122]},{"type":"Point","coordinates":[1989,43122]},{"type":"Point","coordinates":[1987,43122]},{"type":"Point","coordinates":[1988,43122]},{"type":"Point","coordinates":[1988,43122]},{"type":"Point","coordinates":[1987,43122]},{"type":"Point","coordinates":[1813,43046]},{"type":"Point","coordinates":[2087,43169]},{"type":"Point","coordinates":[80533,50156]},{"type":"Point","coordinates":[80114,50267]},{"type":"Point","coordinates":[1634,42973]},{"type":"Point","coordinates":[1741,43026]},{"type":"Point","coordinates":[1742,43027]},{"type":"Point","coordinates":[1741,43027]},{"type":"Point","coordinates":[1742,43027]},{"type":"Point","coordinates":[1634,42979]},{"type":"Point","coordinates":[81218,49987]},{"type":"Point","coordinates":[1748,43038]},{"type":"Point","coordinates":[1881,43099]},{"type":"Point","coordinates":[1734,43033]},{"type":"Point","coordinates":[80436,50204]},{"type":"Point","coordinates":[2132,43215]},{"type":"Point","coordinates":[81097,50036]},{"type":"Point","coordinates":[1653,43009]},{"type":"Point","coordinates":[2469,43377]},{"type":"Point","coordinates":[1793,43077]},{"type":"Point","coordinates":[2468,43380]},{"type":"Point","coordinates":[1793,43077]},{"type":"Point","coordinates":[2469,43381]},{"type":"Point","coordinates":[2423,43362]},{"type":"Point","coordinates":[64640,53222]},{"type":"Point","coordinates":[1792,43085]},{"type":"Point","coordinates":[1863,43118]},{"type":"Point","coordinates":[1783,43082]},{"type":"Point","coordinates":[64644,53229]},{"type":"Point","coordinates":[1964,43166]},{"type":"Point","coordinates":[1556,42982]},{"type":"Point","coordinates":[2028,43198]},{"type":"Point","coordinates":[2024,43199]},{"type":"Point","coordinates":[2059,43219]},{"type":"Point","coordinates":[1641,43034]},{"type":"Point","coordinates":[1463,42962]},{"type":"Point","coordinates":[1463,42962]},{"type":"Point","coordinates":[1463,42962]},{"type":"Point","coordinates":[2403,43393]},{"type":"Point","coordinates":[2404,43397]},{"type":"Point","coordinates":[2497,43439]},{"type":"Point","coordinates":[2020,43226]},{"type":"Point","coordinates":[1897,43171]},{"type":"Point","coordinates":[8255,45841]},{"type":"Point","coordinates":[2498,43443]},{"type":"Point","coordinates":[1814,43136]},{"type":"Point","coordinates":[1699,43085]},{"type":"Point","coordinates":[2299,43355]},{"type":"Point","coordinates":[1714,43095]},{"type":"Point","coordinates":[86514,48519]},{"type":"Point","coordinates":[2127,43290]},{"type":"Point","coordinates":[1566,43040]},{"type":"Point","coordinates":[2007,43241]},{"type":"Point","coordinates":[1746,43124]},{"type":"Point","coordinates":[1745,43124]},{"type":"Point","coordinates":[1566,43046]},{"type":"Point","coordinates":[1566,43046]},{"type":"Point","coordinates":[1566,43046]},{"type":"Point","coordinates":[2362,43407]},{"type":"Point","coordinates":[2083,43283]},{"type":"Point","coordinates":[27784,51675]},{"type":"Point","coordinates":[2363,43412]},{"type":"Point","coordinates":[2363,43412]},{"type":"Point","coordinates":[71432,52280]},{"type":"Point","coordinates":[2363,43412]},{"type":"Point","coordinates":[2363,43412]},{"type":"Point","coordinates":[2362,43412]},{"type":"Point","coordinates":[2363,43413]},{"type":"Point","coordinates":[2363,43413]},{"type":"Point","coordinates":[2363,43413]},{"type":"Point","coordinates":[2364,43417]},{"type":"Point","coordinates":[2364,43417]},{"type":"Point","coordinates":[2364,43417]},{"type":"Point","coordinates":[2364,43417]},{"type":"Point","coordinates":[2364,43417]},{"type":"Point","coordinates":[2364,43417]},{"type":"Point","coordinates":[2364,43417]},{"type":"Point","coordinates":[2364,43418]},{"type":"Point","coordinates":[2364,43418]},{"type":"Point","coordinates":[2363,43420]},{"type":"Point","coordinates":[2365,43422]},{"type":"Point","coordinates":[8164,45846]},{"type":"Point","coordinates":[2230,43364]},{"type":"Point","coordinates":[2368,43433]},{"type":"Point","coordinates":[2393,43446]},{"type":"Point","coordinates":[2468,43480]},{"type":"Point","coordinates":[1664,43119]},{"type":"Point","coordinates":[2706,43587]},{"type":"Point","coordinates":[2175,43352]},{"type":"Point","coordinates":[2406,43456]},{"type":"Point","coordinates":[1715,43147]},{"type":"Point","coordinates":[2425,43467]},{"type":"Point","coordinates":[2427,43471]},{"type":"Point","coordinates":[2394,43458]},{"type":"Point","coordinates":[2427,43474]},{"type":"Point","coordinates":[2395,43463]},{"type":"Point","coordinates":[2425,43477]},{"type":"Point","coordinates":[2395,43464]},{"type":"Point","coordinates":[2402,43470]},{"type":"Point","coordinates":[2001,43298]},{"type":"Point","coordinates":[1791,43205]},{"type":"Point","coordinates":[2423,43489]},{"type":"Point","coordinates":[2001,43300]},{"type":"Point","coordinates":[1666,43152]},{"type":"Point","coordinates":[2219,43405]},{"type":"Point","coordinates":[2420,43495]},{"type":"Point","coordinates":[6700,45314]},{"type":"Point","coordinates":[1547,43110]},{"type":"Point","coordinates":[2378,43485]},{"type":"Point","coordinates":[2432,43513]},{"type":"Point","coordinates":[1437,43068]},{"type":"Point","coordinates":[1436,43069]},{"type":"Point","coordinates":[2430,43521]},{"type":"Point","coordinates":[2092,43370]},{"type":"Point","coordinates":[2429,43523]},{"type":"Point","coordinates":[87526,48294]},{"type":"Point","coordinates":[2432,43528]},{"type":"Point","coordinates":[2432,43528]},{"type":"Point","coordinates":[2431,43529]},{"type":"Point","coordinates":[2432,43529]},{"type":"Point","coordinates":[2432,43529]},{"type":"Point","coordinates":[86510,48624]},{"type":"Point","coordinates":[2433,43532]},{"type":"Point","coordinates":[2199,43428]},{"type":"Point","coordinates":[2430,43533]},{"type":"Point","coordinates":[2091,43386]},{"type":"Point","coordinates":[1628,43180]},{"type":"Point","coordinates":[1889,43299]},{"type":"Point","coordinates":[1741,43235]},{"type":"Point","coordinates":[2225,43454]},{"type":"Point","coordinates":[2224,43454]},{"type":"Point","coordinates":[2225,43455]},{"type":"Point","coordinates":[2225,43455]},{"type":"Point","coordinates":[73606,51971]},{"type":"Point","coordinates":[2225,43458]},{"type":"Point","coordinates":[2057,43383]},{"type":"Point","coordinates":[2223,43457]},{"type":"Point","coordinates":[27558,51737]},{"type":"Point","coordinates":[2225,43458]},{"type":"Point","coordinates":[2057,43385]},{"type":"Point","coordinates":[2151,43428]},{"type":"Point","coordinates":[2089,43401]},{"type":"Point","coordinates":[2058,43387]},{"type":"Point","coordinates":[2464,43573]},{"type":"Point","coordinates":[1567,43170]},{"type":"Point","coordinates":[2056,43391]},{"type":"Point","coordinates":[2056,43391]},{"type":"Point","coordinates":[2060,43395]},{"type":"Point","coordinates":[87723,48263]},{"type":"Point","coordinates":[2050,43391]},{"type":"Point","coordinates":[2050,43394]},{"type":"Point","coordinates":[2050,43394]},{"type":"Point","coordinates":[1822,43302]},{"type":"Point","coordinates":[2090,43423]},{"type":"Point","coordinates":[2108,43433]},{"type":"Point","coordinates":[1657,43234]},{"type":"Point","coordinates":[88023,48185]},{"type":"Point","coordinates":[1658,43237]},{"type":"Point","coordinates":[1841,43321]},{"type":"Point","coordinates":[1652,43237]},{"type":"Point","coordinates":[1652,43237]},{"type":"Point","coordinates":[1658,43240]},{"type":"Point","coordinates":[1813,43312]},{"type":"Point","coordinates":[2170,43472]},{"type":"Point","coordinates":[1658,43249]},{"type":"Point","coordinates":[84553,49295]},{"type":"Point","coordinates":[1506,43185]},{"type":"Point","coordinates":[1663,43257]},{"type":"Point","coordinates":[2331,43558]},{"type":"Point","coordinates":[1653,43257]},{"type":"Point","coordinates":[2327,43560]},{"type":"Point","coordinates":[1519,43201]},{"type":"Point","coordinates":[1653,43262]},{"type":"Point","coordinates":[1666,43271]},{"type":"Point","coordinates":[2165,43497]},{"type":"Point","coordinates":[1666,43276]},{"type":"Point","coordinates":[60939,53845]},{"type":"Point","coordinates":[1666,43280]},{"type":"Point","coordinates":[1667,43281]},{"type":"Point","coordinates":[1667,43281]},{"type":"Point","coordinates":[1670,43284]},{"type":"Point","coordinates":[1668,43283]},{"type":"Point","coordinates":[1696,43298]},{"type":"Point","coordinates":[1669,43288]},{"type":"Point","coordinates":[1669,43288]},{"type":"Point","coordinates":[64399,53504]},{"type":"Point","coordinates":[1669,43289]},{"type":"Point","coordinates":[1668,43288]},{"type":"Point","coordinates":[1668,43289]},{"type":"Point","coordinates":[1669,43289]},{"type":"Point","coordinates":[1700,43304]},{"type":"Point","coordinates":[1669,43290]},{"type":"Point","coordinates":[1669,43289]},{"type":"Point","coordinates":[1669,43290]},{"type":"Point","coordinates":[1669,43290]},{"type":"Point","coordinates":[64399,53505]},{"type":"Point","coordinates":[1669,43290]},{"type":"Point","coordinates":[1700,43304]},{"type":"Point","coordinates":[1699,43304]},{"type":"Point","coordinates":[1700,43304]},{"type":"Point","coordinates":[1669,43291]},{"type":"Point","coordinates":[1694,43303]},{"type":"Point","coordinates":[1669,43292]},{"type":"Point","coordinates":[1669,43292]},{"type":"Point","coordinates":[1669,43292]},{"type":"Point","coordinates":[1669,43292]},{"type":"Point","coordinates":[1701,43307]},{"type":"Point","coordinates":[1703,43308]},{"type":"Point","coordinates":[1703,43309]},{"type":"Point","coordinates":[1703,43309]},{"type":"Point","coordinates":[1669,43294]},{"type":"Point","coordinates":[1664,43292]},{"type":"Point","coordinates":[1672,43296]},{"type":"Point","coordinates":[1667,43294]},{"type":"Point","coordinates":[1701,43309]},{"type":"Point","coordinates":[1667,43294]},{"type":"Point","coordinates":[1701,43310]},{"type":"Point","coordinates":[1956,43425]},{"type":"Point","coordinates":[1956,43425]},{"type":"Point","coordinates":[1701,43310]},{"type":"Point","coordinates":[81444,50218]},{"type":"Point","coordinates":[81445,50218]},{"type":"Point","coordinates":[1688,43305]},{"type":"Point","coordinates":[1686,43305]},{"type":"Point","coordinates":[1672,43299]},{"type":"Point","coordinates":[1685,43305]},{"type":"Point","coordinates":[1670,43299]},{"type":"Point","coordinates":[1668,43299]},{"type":"Point","coordinates":[1712,43319]},{"type":"Point","coordinates":[1668,43299]},{"type":"Point","coordinates":[1683,43307]},{"type":"Point","coordinates":[1668,43303]},{"type":"Point","coordinates":[1669,43305]},{"type":"Point","coordinates":[1668,43305]},{"type":"Point","coordinates":[1668,43307]},{"type":"Point","coordinates":[1671,43309]},{"type":"Point","coordinates":[1666,43308]},{"type":"Point","coordinates":[2328,43606]},{"type":"Point","coordinates":[1669,43310]},{"type":"Point","coordinates":[1669,43311]},{"type":"Point","coordinates":[1670,43313]},{"type":"Point","coordinates":[1669,43313]},{"type":"Point","coordinates":[1696,43329]},{"type":"Point","coordinates":[2486,43684]},{"type":"Point","coordinates":[2494,43691]},{"type":"Point","coordinates":[2494,43691]},{"type":"Point","coordinates":[2497,43693]},{"type":"Point","coordinates":[2493,43692]},{"type":"Point","coordinates":[2493,43692]},{"type":"Point","coordinates":[2484,43688]},{"type":"Point","coordinates":[2496,43694]},{"type":"Point","coordinates":[2492,43692]},{"type":"Point","coordinates":[1749,43363]},{"type":"Point","coordinates":[2478,43691]},{"type":"Point","coordinates":[2308,43617]},{"type":"Point","coordinates":[2263,43598]},{"type":"Point","coordinates":[2277,43607]},{"type":"Point","coordinates":[1657,43333]},{"type":"Point","coordinates":[7034,45629]},{"type":"Point","coordinates":[1673,43345]},{"type":"Point","coordinates":[2492,43714]},{"type":"Point","coordinates":[2222,43595]},{"type":"Point","coordinates":[2493,43716]},{"type":"Point","coordinates":[2492,43719]},{"type":"Point","coordinates":[2493,43721]},{"type":"Point","coordinates":[2071,43532]},{"type":"Point","coordinates":[2494,43721]},{"type":"Point","coordinates":[2493,43721]},{"type":"Point","coordinates":[1674,43354]},{"type":"Point","coordinates":[2494,43722]},{"type":"Point","coordinates":[1672,43354]},{"type":"Point","coordinates":[2496,43726]},{"type":"Point","coordinates":[2496,43726]},{"type":"Point","coordinates":[1672,43357]},{"type":"Point","coordinates":[2498,43727]},{"type":"Point","coordinates":[2498,43727]},{"type":"Point","coordinates":[2493,43726]},{"type":"Point","coordinates":[1905,43462]},{"type":"Point","coordinates":[64343,53577]},{"type":"Point","coordinates":[80688,50482]},{"type":"Point","coordinates":[1603,43330]},{"type":"Point","coordinates":[2497,43732]},{"type":"Point","coordinates":[2492,43730]},{"type":"Point","coordinates":[2492,43730]},{"type":"Point","coordinates":[2496,43732]},{"type":"Point","coordinates":[2492,43731]},{"type":"Point","coordinates":[2492,43731]},{"type":"Point","coordinates":[2493,43733]},{"type":"Point","coordinates":[1778,43413]},{"type":"Point","coordinates":[7910,45999]},{"type":"Point","coordinates":[1609,43338]},{"type":"Point","coordinates":[1606,43338]},{"type":"Point","coordinates":[1606,43338]},{"type":"Point","coordinates":[1603,43337]},{"type":"Point","coordinates":[1609,43340]},{"type":"Point","coordinates":[1602,43337]},{"type":"Point","coordinates":[2497,43739]},{"type":"Point","coordinates":[1603,43338]},{"type":"Point","coordinates":[1778,43419]},{"type":"Point","coordinates":[1597,43339]},{"type":"Point","coordinates":[1598,43340]},{"type":"Point","coordinates":[1598,43340]},{"type":"Point","coordinates":[1698,43386]},{"type":"Point","coordinates":[1622,43353]},{"type":"Point","coordinates":[28540,52100]},{"type":"Point","coordinates":[1608,43347]},{"type":"Point","coordinates":[1620,43353]},{"type":"Point","coordinates":[1618,43352]},{"type":"Point","coordinates":[1607,43348]},{"type":"Point","coordinates":[1607,43348]},{"type":"Point","coordinates":[1606,43349]},{"type":"Point","coordinates":[1606,43349]},{"type":"Point","coordinates":[1606,43349]},{"type":"Point","coordinates":[2794,43882]},{"type":"Point","coordinates":[1603,43351]},{"type":"Point","coordinates":[1703,43396]},{"type":"Point","coordinates":[1603,43351]},{"type":"Point","coordinates":[1575,43339]},{"type":"Point","coordinates":[1620,43359]},{"type":"Point","coordinates":[1619,43359]},{"type":"Point","coordinates":[1576,43340]},{"type":"Point","coordinates":[1617,43359]},{"type":"Point","coordinates":[8138,46106]},{"type":"Point","coordinates":[1619,43360]},{"type":"Point","coordinates":[1603,43355]},{"type":"Point","coordinates":[1711,43405]},{"type":"Point","coordinates":[1640,43373]},{"type":"Point","coordinates":[1631,43374]},{"type":"Point","coordinates":[1632,43376]},{"type":"Point","coordinates":[1766,43437]},{"type":"Point","coordinates":[1632,43377]},{"type":"Point","coordinates":[1767,43438]},{"type":"Point","coordinates":[1728,43420]},{"type":"Point","coordinates":[1630,43376]},{"type":"Point","coordinates":[1629,43376]},{"type":"Point","coordinates":[1630,43377]},{"type":"Point","coordinates":[1422,43285]},{"type":"Point","coordinates":[1636,43383]},{"type":"Point","coordinates":[2492,43768]},{"type":"Point","coordinates":[1557,43350]},{"type":"Point","coordinates":[86096,48966]},{"type":"Point","coordinates":[87765,48432]},{"type":"Point","coordinates":[1649,43396]},{"type":"Point","coordinates":[1712,43424]},{"type":"Point","coordinates":[1660,43402]},{"type":"Point","coordinates":[1711,43425]},{"type":"Point","coordinates":[2074,43592]},{"type":"Point","coordinates":[1561,43361]},{"type":"Point","coordinates":[1660,43408]},{"type":"Point","coordinates":[1560,43364]},{"type":"Point","coordinates":[1559,43366]},{"type":"Point","coordinates":[1752,43454]},{"type":"Point","coordinates":[1658,43412]},{"type":"Point","coordinates":[2121,43620]},{"type":"Point","coordinates":[1528,43354]},{"type":"Point","coordinates":[1753,43456]},{"type":"Point","coordinates":[2390,43745]},{"type":"Point","coordinates":[2076,43605]},{"type":"Point","coordinates":[1655,43417]},{"type":"Point","coordinates":[1558,43373]},{"type":"Point","coordinates":[1558,43374]},{"type":"Point","coordinates":[1558,43374]},{"type":"Point","coordinates":[1661,43422]},{"type":"Point","coordinates":[1724,43452]},{"type":"Point","coordinates":[1391,43301]},{"type":"Point","coordinates":[1691,43438]},{"type":"Point","coordinates":[1711,43449]},{"type":"Point","coordinates":[1798,43490]},{"type":"Point","coordinates":[2517,43814]},{"type":"Point","coordinates":[1702,43449]},{"type":"Point","coordinates":[1696,43447]},{"type":"Point","coordinates":[48452,54386]},{"type":"Point","coordinates":[1772,43485]},{"type":"Point","coordinates":[1751,43479]},{"type":"Point","coordinates":[2203,43683]},{"type":"Point","coordinates":[1705,43462]},{"type":"Point","coordinates":[2956,44024]},{"type":"Point","coordinates":[1762,43492]},{"type":"Point","coordinates":[1714,43472]},{"type":"Point","coordinates":[1403,43331]},{"type":"Point","coordinates":[1604,43426]},{"type":"Point","coordinates":[1739,43487]},{"type":"Point","coordinates":[1442,43354]},{"type":"Point","coordinates":[1704,43477]},{"type":"Point","coordinates":[2445,43809]},{"type":"Point","coordinates":[80780,50557]},{"type":"Point","coordinates":[1731,43490]},{"type":"Point","coordinates":[2404,43793]},{"type":"Point","coordinates":[1740,43496]},{"type":"Point","coordinates":[1719,43487]},{"type":"Point","coordinates":[1727,43491]},{"type":"Point","coordinates":[1741,43498]},{"type":"Point","coordinates":[1741,43498]},{"type":"Point","coordinates":[1727,43492]},{"type":"Point","coordinates":[1741,43498]},{"type":"Point","coordinates":[1727,43492]},{"type":"Point","coordinates":[1726,43492]},{"type":"Point","coordinates":[1738,43497]},{"type":"Point","coordinates":[1726,43492]},{"type":"Point","coordinates":[1741,43499]},{"type":"Point","coordinates":[1741,43499]},{"type":"Point","coordinates":[1710,43486]},{"type":"Point","coordinates":[1736,43498]},{"type":"Point","coordinates":[1707,43486]},{"type":"Point","coordinates":[1730,43496]},{"type":"Point","coordinates":[1748,43506]},{"type":"Point","coordinates":[2065,43649]},{"type":"Point","coordinates":[2050,43643]},{"type":"Point","coordinates":[1432,43364]},{"type":"Point","coordinates":[2042,43640]},{"type":"Point","coordinates":[1717,43494]},{"type":"Point","coordinates":[1720,43497]},{"type":"Point","coordinates":[1730,43501]},{"type":"Point","coordinates":[1855,43558]},{"type":"Point","coordinates":[1720,43498]},{"type":"Point","coordinates":[1716,43498]},{"type":"Point","coordinates":[1720,43500]},{"type":"Point","coordinates":[2014,43633]},{"type":"Point","coordinates":[1720,43501]},{"type":"Point","coordinates":[2000,43632]},{"type":"Point","coordinates":[1841,43561]},{"type":"Point","coordinates":[1720,43506]},{"type":"Point","coordinates":[1738,43515]},{"type":"Point","coordinates":[2036,43649]},{"type":"Point","coordinates":[2001,43639]},{"type":"Point","coordinates":[1730,43518]},{"type":"Point","coordinates":[1827,43562]},{"type":"Point","coordinates":[2388,43814]},{"type":"Point","coordinates":[2388,43814]},{"type":"Point","coordinates":[2388,43814]},{"type":"Point","coordinates":[1858,43577]},{"type":"Point","coordinates":[2388,43814]},{"type":"Point","coordinates":[2360,43802]},{"type":"Point","coordinates":[2195,43728]},{"type":"Point","coordinates":[2001,43642]},{"type":"Point","coordinates":[2523,43875]},{"type":"Point","coordinates":[1701,43510]},{"type":"Point","coordinates":[1716,43517]},{"type":"Point","coordinates":[1718,43518]},{"type":"Point","coordinates":[1641,43484]},{"type":"Point","coordinates":[1714,43517]},{"type":"Point","coordinates":[1702,43512]},{"type":"Point","coordinates":[1707,43515]},{"type":"Point","coordinates":[1707,43515]},{"type":"Point","coordinates":[1705,43514]},{"type":"Point","coordinates":[1712,43517]},{"type":"Point","coordinates":[1702,43513]},{"type":"Point","coordinates":[1705,43514]},{"type":"Point","coordinates":[1729,43526]},{"type":"Point","coordinates":[1700,43512]},{"type":"Point","coordinates":[1704,43514]},{"type":"Point","coordinates":[1699,43512]},{"type":"Point","coordinates":[2066,43678]},{"type":"Point","coordinates":[1699,43513]},{"type":"Point","coordinates":[1698,43513]},{"type":"Point","coordinates":[1710,43519]},{"type":"Point","coordinates":[1700,43514]},{"type":"Point","coordinates":[1706,43517]},{"type":"Point","coordinates":[1699,43515]},{"type":"Point","coordinates":[1726,43527]},{"type":"Point","coordinates":[1706,43518]},{"type":"Point","coordinates":[1726,43527]},{"type":"Point","coordinates":[1723,43526]},{"type":"Point","coordinates":[2187,43735]},{"type":"Point","coordinates":[1838,43579]},{"type":"Point","coordinates":[1708,43521]},{"type":"Point","coordinates":[1699,43517]},{"type":"Point","coordinates":[1724,43529]},{"type":"Point","coordinates":[1705,43520]},{"type":"Point","coordinates":[1705,43522]},{"type":"Point","coordinates":[2065,43684]},{"type":"Point","coordinates":[1706,43523]},{"type":"Point","coordinates":[1707,43523]},{"type":"Point","coordinates":[1697,43520]},{"type":"Point","coordinates":[2181,43738]},{"type":"Point","coordinates":[1698,43521]},{"type":"Point","coordinates":[1698,43521]},{"type":"Point","coordinates":[1730,43536]},{"type":"Point","coordinates":[1698,43522]},{"type":"Point","coordinates":[1696,43521]},{"type":"Point","coordinates":[1694,43522]},{"type":"Point","coordinates":[1695,43522]},{"type":"Point","coordinates":[2067,43690]},{"type":"Point","coordinates":[1694,43523]},{"type":"Point","coordinates":[2228,43763]},{"type":"Point","coordinates":[1730,43541]},{"type":"Point","coordinates":[1997,43662]},{"type":"Point","coordinates":[1997,43662]},{"type":"Point","coordinates":[1997,43663]},{"type":"Point","coordinates":[1997,43663]},{"type":"Point","coordinates":[2066,43695]},{"type":"Point","coordinates":[2065,43695]},{"type":"Point","coordinates":[1692,43527]},{"type":"Point","coordinates":[2065,43695]},{"type":"Point","coordinates":[2064,43695]},{"type":"Point","coordinates":[1692,43527]},{"type":"Point","coordinates":[1691,43528]},{"type":"Point","coordinates":[1690,43529]},{"type":"Point","coordinates":[2064,43698]},{"type":"Point","coordinates":[1986,43664]},{"type":"Point","coordinates":[1998,43669]},{"type":"Point","coordinates":[1987,43665]},{"type":"Point","coordinates":[1990,43666]},{"type":"Point","coordinates":[1686,43533]},{"type":"Point","coordinates":[2356,43835]},{"type":"Point","coordinates":[2171,43753]},{"type":"Point","coordinates":[1987,43671]},{"type":"Point","coordinates":[2171,43755]},{"type":"Point","coordinates":[1571,43485]},{"type":"Point","coordinates":[1686,43537]},{"type":"Point","coordinates":[1684,43536]},{"type":"Point","coordinates":[1685,43538]},{"type":"Point","coordinates":[1685,43540]},{"type":"Point","coordinates":[8268,46306]},{"type":"Point","coordinates":[1685,43544]},{"type":"Point","coordinates":[1685,43544]},{"type":"Point","coordinates":[2187,43770]},{"type":"Point","coordinates":[8259,46307]},{"type":"Point","coordinates":[2001,43688]},{"type":"Point","coordinates":[1991,43685]},{"type":"Point","coordinates":[1685,43547]},{"type":"Point","coordinates":[1996,43687]},{"type":"Point","coordinates":[1521,43473]},{"type":"Point","coordinates":[1997,43688]},{"type":"Point","coordinates":[1685,43548]},{"type":"Point","coordinates":[80425,50728]},{"type":"Point","coordinates":[1999,43690]},{"type":"Point","coordinates":[1998,43690]},{"type":"Point","coordinates":[1524,43476]},{"type":"Point","coordinates":[1998,43690]},{"type":"Point","coordinates":[1998,43690]},{"type":"Point","coordinates":[1998,43690]},{"type":"Point","coordinates":[1998,43690]},{"type":"Point","coordinates":[1998,43691]},{"type":"Point","coordinates":[1997,43690]},{"type":"Point","coordinates":[1685,43550]},{"type":"Point","coordinates":[1994,43690]},{"type":"Point","coordinates":[1686,43552]},{"type":"Point","coordinates":[1997,43692]},{"type":"Point","coordinates":[1687,43553]},{"type":"Point","coordinates":[2001,43694]},{"type":"Point","coordinates":[1689,43554]},{"type":"Point","coordinates":[1690,43556]},{"type":"Point","coordinates":[1694,43560]},{"type":"Point","coordinates":[1693,43560]},{"type":"Point","coordinates":[1994,43697]},{"type":"Point","coordinates":[2132,43759]},{"type":"Point","coordinates":[2132,43759]},{"type":"Point","coordinates":[1519,43483]},{"type":"Point","coordinates":[2195,43788]},{"type":"Point","coordinates":[2060,43728]},{"type":"Point","coordinates":[1992,43698]},{"type":"Point","coordinates":[2241,43810]},{"type":"Point","coordinates":[1693,43564]},{"type":"Point","coordinates":[64283,53773]},{"type":"Point","coordinates":[2240,43811]},{"type":"Point","coordinates":[1693,43566]},{"type":"Point","coordinates":[8221,46311]},{"type":"Point","coordinates":[1693,43568]},{"type":"Point","coordinates":[1937,43678]},{"type":"Point","coordinates":[48266,54501]},{"type":"Point","coordinates":[1939,43681]},{"type":"Point","coordinates":[1354,43417]},{"type":"Point","coordinates":[1695,43574]},{"type":"Point","coordinates":[1697,43575]},{"type":"Point","coordinates":[2136,43773]},{"type":"Point","coordinates":[1931,43683]},{"type":"Point","coordinates":[1696,43577]},{"type":"Point","coordinates":[1695,43580]},{"type":"Point","coordinates":[1921,43684]},{"type":"Point","coordinates":[1921,43684]},{"type":"Point","coordinates":[1454,43477]},{"type":"Point","coordinates":[1678,43581]},{"type":"Point","coordinates":[1961,43709]},{"type":"Point","coordinates":[1695,43591]},{"type":"Point","coordinates":[1838,43656]},{"type":"Point","coordinates":[2178,43810]},{"type":"Point","coordinates":[1500,43505]},{"type":"Point","coordinates":[1694,43594]},{"type":"Point","coordinates":[1574,43540]},{"type":"Point","coordinates":[1583,43545]},{"type":"Point","coordinates":[1693,43597]},{"type":"Point","coordinates":[1497,43509]},{"type":"Point","coordinates":[1497,43509]},{"type":"Point","coordinates":[80795,50676]},{"type":"Point","coordinates":[1497,43509]},{"type":"Point","coordinates":[1693,43598]},{"type":"Point","coordinates":[1495,43509]},{"type":"Point","coordinates":[2377,43906]},{"type":"Point","coordinates":[84196,49728]},{"type":"Point","coordinates":[1493,43513]},{"type":"Point","coordinates":[2142,43806]},{"type":"Point","coordinates":[2142,43806]},{"type":"Point","coordinates":[1491,43514]},{"type":"Point","coordinates":[2277,43868]},{"type":"Point","coordinates":[1490,43514]},{"type":"Point","coordinates":[2434,43946]},{"type":"Point","coordinates":[1515,43536]},{"type":"Point","coordinates":[1696,43620]},{"type":"Point","coordinates":[2322,43902]},{"type":"Point","coordinates":[2344,43916]},{"type":"Point","coordinates":[1500,43538]},{"type":"Point","coordinates":[2150,43832]},{"type":"Point","coordinates":[2503,43993]},{"type":"Point","coordinates":[2501,43994]},{"type":"Point","coordinates":[1691,43632]},{"type":"Point","coordinates":[1512,43553]},{"type":"Point","coordinates":[8306,46411]},{"type":"Point","coordinates":[2136,43836]},{"type":"Point","coordinates":[2045,43796]},{"type":"Point","coordinates":[48119,54562]},{"type":"Point","coordinates":[8301,46414]},{"type":"Point","coordinates":[1540,43572]},{"type":"Point","coordinates":[1760,43672]},{"type":"Point","coordinates":[1563,43584]},{"type":"Point","coordinates":[6982,45898]},{"type":"Point","coordinates":[1495,43555]},{"type":"Point","coordinates":[1812,43698]},{"type":"Point","coordinates":[1496,43556]},{"type":"Point","coordinates":[1496,43556]},{"type":"Point","coordinates":[1496,43557]},{"type":"Point","coordinates":[1491,43554]},{"type":"Point","coordinates":[1518,43567]},{"type":"Point","coordinates":[87635,48703]},{"type":"Point","coordinates":[1489,43560]},{"type":"Point","coordinates":[1467,43552]},{"type":"Point","coordinates":[1484,43560]},{"type":"Point","coordinates":[2018,43802]},{"type":"Point","coordinates":[1503,43570]},{"type":"Point","coordinates":[1486,43563]},{"type":"Point","coordinates":[1488,43564]},{"type":"Point","coordinates":[1486,43566]},{"type":"Point","coordinates":[2019,43806]},{"type":"Point","coordinates":[1487,43567]},{"type":"Point","coordinates":[1488,43568]},{"type":"Point","coordinates":[1487,43567]},{"type":"Point","coordinates":[1485,43567]},{"type":"Point","coordinates":[1487,43568]},{"type":"Point","coordinates":[1485,43568]},{"type":"Point","coordinates":[1479,43567]},{"type":"Point","coordinates":[1483,43572]},{"type":"Point","coordinates":[1479,43572]},{"type":"Point","coordinates":[2573,44064]},{"type":"Point","coordinates":[1479,43576]},{"type":"Point","coordinates":[1484,43578]},{"type":"Point","coordinates":[1474,43577]},{"type":"Point","coordinates":[1474,43577]},{"type":"Point","coordinates":[2288,43947]},{"type":"Point","coordinates":[1738,43711]},{"type":"Point","coordinates":[8266,46452]},{"type":"Point","coordinates":[1566,43636]},{"type":"Point","coordinates":[1687,43694]},{"type":"Point","coordinates":[1555,43634]},{"type":"Point","coordinates":[1550,43633]},{"type":"Point","coordinates":[1554,43635]},{"type":"Point","coordinates":[1565,43642]},{"type":"Point","coordinates":[1582,43650]},{"type":"Point","coordinates":[1512,43619]},{"type":"Point","coordinates":[1750,43727]},{"type":"Point","coordinates":[1507,43617]},{"type":"Point","coordinates":[1512,43620]},{"type":"Point","coordinates":[1575,43649]},{"type":"Point","coordinates":[1755,43731]},{"type":"Point","coordinates":[1554,43640]},{"type":"Point","coordinates":[1581,43652]},{"type":"Point","coordinates":[1577,43651]},{"type":"Point","coordinates":[1902,43798]},{"type":"Point","coordinates":[1577,43651]},{"type":"Point","coordinates":[1576,43651]},{"type":"Point","coordinates":[1550,43640]},{"type":"Point","coordinates":[1550,43639]},{"type":"Point","coordinates":[1549,43639]},{"type":"Point","coordinates":[1592,43659]},{"type":"Point","coordinates":[2092,43884]},{"type":"Point","coordinates":[1717,43717]},{"type":"Point","coordinates":[1539,43636]},{"type":"Point","coordinates":[1571,43651]},{"type":"Point","coordinates":[1549,43641]},{"type":"Point","coordinates":[1595,43665]},{"type":"Point","coordinates":[1826,43771]},{"type":"Point","coordinates":[1547,43645]},{"type":"Point","coordinates":[19487,50231]},{"type":"Point","coordinates":[1499,43626]},{"type":"Point","coordinates":[1545,43648]},{"type":"Point","coordinates":[1496,43626]},{"type":"Point","coordinates":[2395,44031]},{"type":"Point","coordinates":[1494,43628]},{"type":"Point","coordinates":[1774,43757]},{"type":"Point","coordinates":[1493,43629]},{"type":"Point","coordinates":[1659,43705]},{"type":"Point","coordinates":[1492,43630]},{"type":"Point","coordinates":[1492,43630]},{"type":"Point","coordinates":[1492,43630]},{"type":"Point","coordinates":[86528,49135]},{"type":"Point","coordinates":[1617,43690]},{"type":"Point","coordinates":[1491,43636]},{"type":"Point","coordinates":[1491,43641]},{"type":"Point","coordinates":[1491,43641]},{"type":"Point","coordinates":[1491,43641]},{"type":"Point","coordinates":[1491,43641]},{"type":"Point","coordinates":[1490,43642]},{"type":"Point","coordinates":[1683,43732]},{"type":"Point","coordinates":[8244,46488]},{"type":"Point","coordinates":[70035,53130]},{"type":"Point","coordinates":[8237,46492]},{"type":"Point","coordinates":[1478,43648]},{"type":"Point","coordinates":[1623,43716]},{"type":"Point","coordinates":[1459,43643]},{"type":"Point","coordinates":[2193,43974]},{"type":"Point","coordinates":[1473,43651]},{"type":"Point","coordinates":[2061,43919]},{"type":"Point","coordinates":[1743,43776]},{"type":"Point","coordinates":[2061,43921]},{"type":"Point","coordinates":[2063,43922]},{"type":"Point","coordinates":[1689,43755]},{"type":"Point","coordinates":[1606,43718]},{"type":"Point","coordinates":[2075,43929]},{"type":"Point","coordinates":[2075,43929]},{"type":"Point","coordinates":[69961,53160]},{"type":"Point","coordinates":[1665,43746]},{"type":"Point","coordinates":[2058,43924]},{"type":"Point","coordinates":[1608,43721]},{"type":"Point","coordinates":[2075,43933]},{"type":"Point","coordinates":[2078,43934]},{"type":"Point","coordinates":[1683,43757]},{"type":"Point","coordinates":[2065,43929]},{"type":"Point","coordinates":[1356,43609]},{"type":"Point","coordinates":[2077,43935]},{"type":"Point","coordinates":[2070,43932]},{"type":"Point","coordinates":[1617,43728]},{"type":"Point","coordinates":[2077,43936]},{"type":"Point","coordinates":[2081,43938]},{"type":"Point","coordinates":[2083,43941]},{"type":"Point","coordinates":[1600,43724]},{"type":"Point","coordinates":[1693,43766]},{"type":"Point","coordinates":[1712,43776]},{"type":"Point","coordinates":[2067,43936]},{"type":"Point","coordinates":[1613,43732]},{"type":"Point","coordinates":[1597,43725]},{"type":"Point","coordinates":[2056,43933]},{"type":"Point","coordinates":[1598,43727]},{"type":"Point","coordinates":[2056,43933]},{"type":"Point","coordinates":[2056,43933]},{"type":"Point","coordinates":[2056,43934]},{"type":"Point","coordinates":[1715,43781]},{"type":"Point","coordinates":[1523,43694]},{"type":"Point","coordinates":[2056,43935]},{"type":"Point","coordinates":[1665,43759]},{"type":"Point","coordinates":[1593,43726]},{"type":"Point","coordinates":[1433,43654]},{"type":"Point","coordinates":[1621,43740]},{"type":"Point","coordinates":[1678,43767]},{"type":"Point","coordinates":[1675,43765]},{"type":"Point","coordinates":[70029,53165]},{"type":"Point","coordinates":[2078,43949]},{"type":"Point","coordinates":[1582,43728]},{"type":"Point","coordinates":[1676,43774]},{"type":"Point","coordinates":[1637,43757]},{"type":"Point","coordinates":[1630,43754]},{"type":"Point","coordinates":[2054,43946]},{"type":"Point","coordinates":[1580,43732]},{"type":"Point","coordinates":[1580,43733]},{"type":"Point","coordinates":[2078,43958]},{"type":"Point","coordinates":[1678,43779]},{"type":"Point","coordinates":[2048,43945]},{"type":"Point","coordinates":[1673,43777]},{"type":"Point","coordinates":[2063,43953]},{"type":"Point","coordinates":[2075,43960]},{"type":"Point","coordinates":[1642,43765]},{"type":"Point","coordinates":[2041,43945]},{"type":"Point","coordinates":[1624,43758]},{"type":"Point","coordinates":[1642,43767]},{"type":"Point","coordinates":[1642,43767]},{"type":"Point","coordinates":[2055,43953]},{"type":"Point","coordinates":[1665,43778]},{"type":"Point","coordinates":[1643,43770]},{"type":"Point","coordinates":[2072,43963]},{"type":"Point","coordinates":[2072,43963]},{"type":"Point","coordinates":[2072,43963]},{"type":"Point","coordinates":[1664,43780]},{"type":"Point","coordinates":[1668,43782]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1677,43786]},{"type":"Point","coordinates":[1669,43782]},{"type":"Point","coordinates":[1669,43782]},{"type":"Point","coordinates":[1667,43783]},{"type":"Point","coordinates":[1666,43782]},{"type":"Point","coordinates":[1671,43785]},{"type":"Point","coordinates":[2047,43954]},{"type":"Point","coordinates":[1649,43775]},{"type":"Point","coordinates":[1667,43784]},{"type":"Point","coordinates":[1666,43783]},{"type":"Point","coordinates":[1661,43781]},{"type":"Point","coordinates":[1658,43780]},{"type":"Point","coordinates":[1652,43778]},{"type":"Point","coordinates":[1426,43676]},{"type":"Point","coordinates":[2075,43969]},{"type":"Point","coordinates":[1667,43787]},{"type":"Point","coordinates":[2039,43954]},{"type":"Point","coordinates":[1408,43670]},{"type":"Point","coordinates":[1668,43788]},{"type":"Point","coordinates":[1622,43768]},{"type":"Point","coordinates":[1668,43789]},{"type":"Point","coordinates":[19577,50344]},{"type":"Point","coordinates":[1663,43788]},{"type":"Point","coordinates":[1585,43753]},{"type":"Point","coordinates":[1670,43792]},{"type":"Point","coordinates":[1667,43791]},{"type":"Point","coordinates":[2045,43962]},{"type":"Point","coordinates":[1664,43792]},{"type":"Point","coordinates":[1666,43793]},{"type":"Point","coordinates":[1665,43793]},{"type":"Point","coordinates":[1664,43793]},{"type":"Point","coordinates":[1666,43794]},{"type":"Point","coordinates":[1666,43794]},{"type":"Point","coordinates":[1664,43793]},{"type":"Point","coordinates":[1664,43793]},{"type":"Point","coordinates":[1663,43793]},{"type":"Point","coordinates":[1723,43820]},{"type":"Point","coordinates":[1666,43795]},{"type":"Point","coordinates":[2094,43988]},{"type":"Point","coordinates":[1662,43794]},{"type":"Point","coordinates":[1664,43795]},{"type":"Point","coordinates":[1664,43795]},{"type":"Point","coordinates":[1664,43795]},{"type":"Point","coordinates":[1664,43795]},{"type":"Point","coordinates":[1664,43795]},{"type":"Point","coordinates":[1663,43796]},{"type":"Point","coordinates":[1662,43795]},{"type":"Point","coordinates":[2057,43974]},{"type":"Point","coordinates":[1661,43795]},{"type":"Point","coordinates":[2059,43975]},{"type":"Point","coordinates":[1661,43796]},{"type":"Point","coordinates":[2061,43976]},{"type":"Point","coordinates":[1661,43797]},{"type":"Point","coordinates":[1664,43798]},{"type":"Point","coordinates":[1664,43799]},{"type":"Point","coordinates":[1663,43799]},{"type":"Point","coordinates":[1662,43799]},{"type":"Point","coordinates":[1662,43799]},{"type":"Point","coordinates":[1615,43778]},{"type":"Point","coordinates":[1663,43800]},{"type":"Point","coordinates":[1662,43800]},{"type":"Point","coordinates":[1662,43800]},{"type":"Point","coordinates":[1662,43801]},{"type":"Point","coordinates":[1654,43798]},{"type":"Point","coordinates":[1640,43792]},{"type":"Point","coordinates":[1615,43780]},{"type":"Point","coordinates":[1586,43768]},{"type":"Point","coordinates":[1661,43801]},{"type":"Point","coordinates":[1663,43803]},{"type":"Point","coordinates":[1661,43803]},{"type":"Point","coordinates":[1614,43782]},{"type":"Point","coordinates":[1668,43807]},{"type":"Point","coordinates":[2108,44005]},{"type":"Point","coordinates":[1662,43805]},{"type":"Point","coordinates":[1670,43812]},{"type":"Point","coordinates":[2106,44009]},{"type":"Point","coordinates":[1664,43810]},{"type":"Point","coordinates":[1811,43877]},{"type":"Point","coordinates":[1584,43775]},{"type":"Point","coordinates":[1629,43797]},{"type":"Point","coordinates":[1609,43790]},{"type":"Point","coordinates":[1609,43790]},{"type":"Point","coordinates":[1609,43791]},{"type":"Point","coordinates":[1610,43791]},{"type":"Point","coordinates":[1583,43780]},{"type":"Point","coordinates":[1582,43781]},{"type":"Point","coordinates":[1614,43795]},{"type":"Point","coordinates":[1684,43827]},{"type":"Point","coordinates":[1684,43827]},{"type":"Point","coordinates":[1725,43846]},{"type":"Point","coordinates":[1726,43846]},{"type":"Point","coordinates":[1694,43832]},{"type":"Point","coordinates":[2031,43985]},{"type":"Point","coordinates":[1636,43807]},{"type":"Point","coordinates":[8294,46603]},{"type":"Point","coordinates":[1463,43730]},{"type":"Point","coordinates":[1633,43807]},{"type":"Point","coordinates":[1884,43921]},{"type":"Point","coordinates":[1606,43796]},{"type":"Point","coordinates":[1474,43737]},{"type":"Point","coordinates":[1577,43786]},{"type":"Point","coordinates":[69942,53242]},{"type":"Point","coordinates":[69941,53243]},{"type":"Point","coordinates":[1611,43803]},{"type":"Point","coordinates":[1493,43752]},{"type":"Point","coordinates":[1842,43911]},{"type":"Point","coordinates":[1491,43754]},{"type":"Point","coordinates":[1529,43772]},{"type":"Point","coordinates":[2100,44032]},{"type":"Point","coordinates":[1627,43822]},{"type":"Point","coordinates":[1566,43795]},{"type":"Point","coordinates":[1760,43892]},{"type":"Point","coordinates":[1824,43926]},{"type":"Point","coordinates":[1567,43811]},{"type":"Point","coordinates":[1561,43809]},{"type":"Point","coordinates":[1905,43966]},{"type":"Point","coordinates":[2184,44105]},{"type":"Point","coordinates":[8270,46647]},{"type":"Point","coordinates":[1559,43834]},{"type":"Point","coordinates":[1832,43958]},{"type":"Point","coordinates":[2006,44036]},{"type":"Point","coordinates":[1538,43836]},{"type":"Point","coordinates":[1697,43909]},{"type":"Point","coordinates":[76151,52106]},{"type":"Point","coordinates":[1696,43910]},{"type":"Point","coordinates":[8391,46716]},{"type":"Point","coordinates":[1827,43972]},{"type":"Point","coordinates":[1429,43794]},{"type":"Point","coordinates":[1485,43821]},{"type":"Point","coordinates":[1813,43970]},{"type":"Point","coordinates":[54073,54834]},{"type":"Point","coordinates":[1561,43858]},{"type":"Point","coordinates":[1830,43982]},{"type":"Point","coordinates":[1475,43826]},{"type":"Point","coordinates":[1780,43969]},{"type":"Point","coordinates":[80572,51060]},{"type":"Point","coordinates":[1556,43872]},{"type":"Point","coordinates":[8428,46755]},{"type":"Point","coordinates":[1556,43877]},{"type":"Point","coordinates":[79511,51342]},{"type":"Point","coordinates":[2736,44411]},{"type":"Point","coordinates":[1733,43965]},{"type":"Point","coordinates":[1557,43886]},{"type":"Point","coordinates":[1871,44028]},{"type":"Point","coordinates":[80549,51087]},{"type":"Point","coordinates":[80842,51011]},{"type":"Point","coordinates":[80547,51089]},{"type":"Point","coordinates":[1557,43893]},{"type":"Point","coordinates":[2139,44165]},{"type":"Point","coordinates":[1857,44041]},{"type":"Point","coordinates":[1555,43905]},{"type":"Point","coordinates":[1861,44047]},{"type":"Point","coordinates":[1858,44050]},{"type":"Point","coordinates":[1553,43918]},{"type":"Point","coordinates":[1862,44059]},{"type":"Point","coordinates":[8427,46806]},{"type":"Point","coordinates":[1552,43931]},{"type":"Point","coordinates":[1860,44076]},{"type":"Point","coordinates":[1546,43944]},{"type":"Point","coordinates":[2472,44360]},{"type":"Point","coordinates":[1474,43918]},{"type":"Point","coordinates":[1549,43952]},{"type":"Point","coordinates":[5244,45559]},{"type":"Point","coordinates":[1474,43920]},{"type":"Point","coordinates":[1473,43921]},{"type":"Point","coordinates":[1463,43918]},{"type":"Point","coordinates":[1463,43918]},{"type":"Point","coordinates":[1462,43918]},{"type":"Point","coordinates":[1463,43919]},{"type":"Point","coordinates":[1451,43914]},{"type":"Point","coordinates":[1463,43920]},{"type":"Point","coordinates":[1450,43916]},{"type":"Point","coordinates":[1450,43918]},{"type":"Point","coordinates":[1450,43919]},{"type":"Point","coordinates":[1818,44085]},{"type":"Point","coordinates":[1859,44107]},{"type":"Point","coordinates":[1543,43965]},{"type":"Point","coordinates":[1540,43965]},{"type":"Point","coordinates":[1474,43936]},{"type":"Point","coordinates":[1942,44154]},{"type":"Point","coordinates":[8507,46893]},{"type":"Point","coordinates":[1931,44152]},{"type":"Point","coordinates":[1559,43988]},{"type":"Point","coordinates":[1527,43978]},{"type":"Point","coordinates":[19522,50576]},{"type":"Point","coordinates":[1465,43976]},{"type":"Point","coordinates":[1770,44116]},{"type":"Point","coordinates":[1771,44120]},{"type":"Point","coordinates":[1773,44125]},{"type":"Point","coordinates":[1870,44169]},{"type":"Point","coordinates":[1832,44162]},{"type":"Point","coordinates":[1511,44017]},{"type":"Point","coordinates":[76395,52240]},{"type":"Point","coordinates":[2192,44332]},{"type":"Point","coordinates":[2008,44252]},{"type":"Point","coordinates":[1521,44033]},{"type":"Point","coordinates":[1514,44031]},{"type":"Point","coordinates":[2020,44261]},{"type":"Point","coordinates":[2069,44284]},{"type":"Point","coordinates":[1755,44150]},{"type":"Point","coordinates":[1929,44229]},{"type":"Point","coordinates":[2013,44268]},{"type":"Point","coordinates":[1801,44172]},{"type":"Point","coordinates":[2797,44617]},{"type":"Point","coordinates":[84845,50050]},{"type":"Point","coordinates":[71497,53254]},{"type":"Point","coordinates":[8388,46933]},{"type":"Point","coordinates":[1907,44229]},{"type":"Point","coordinates":[1907,44231]},{"type":"Point","coordinates":[1912,44235]},{"type":"Point","coordinates":[2224,44376]},{"type":"Point","coordinates":[1849,44208]},{"type":"Point","coordinates":[1537,44070]},{"type":"Point","coordinates":[1900,44234]},{"type":"Point","coordinates":[2029,44293]},{"type":"Point","coordinates":[1903,44237]},{"type":"Point","coordinates":[19446,50642]},{"type":"Point","coordinates":[1851,44216]},{"type":"Point","coordinates":[1899,44238]},{"type":"Point","coordinates":[2010,44289]},{"type":"Point","coordinates":[2005,44289]},{"type":"Point","coordinates":[1933,44257]},{"type":"Point","coordinates":[75975,52379]},{"type":"Point","coordinates":[2107,44336]},{"type":"Point","coordinates":[1994,44286]},{"type":"Point","coordinates":[75978,52380]},{"type":"Point","coordinates":[75974,52384]},{"type":"Point","coordinates":[2395,44470]},{"type":"Point","coordinates":[2225,44395]},{"type":"Point","coordinates":[1286,43973]},{"type":"Point","coordinates":[2394,44471]},{"type":"Point","coordinates":[2814,44659]},{"type":"Point","coordinates":[2104,44347]},{"type":"Point","coordinates":[1902,44257]},{"type":"Point","coordinates":[1457,44058]},{"type":"Point","coordinates":[1916,44266]},{"type":"Point","coordinates":[2107,44355]},{"type":"Point","coordinates":[1530,44096]},{"type":"Point","coordinates":[75976,52400]},{"type":"Point","coordinates":[1753,44199]},{"type":"Point","coordinates":[1771,44208]},{"type":"Point","coordinates":[6992,46427]},{"type":"Point","coordinates":[1745,44199]},{"type":"Point","coordinates":[2108,44362]},{"type":"Point","coordinates":[1860,44251]},{"type":"Point","coordinates":[1771,44212]},{"type":"Point","coordinates":[1560,44118]},{"type":"Point","coordinates":[1912,44277]},{"type":"Point","coordinates":[1378,44037]},{"type":"Point","coordinates":[1955,44299]},{"type":"Point","coordinates":[2397,44497]},{"type":"Point","coordinates":[1528,44108]},{"type":"Point","coordinates":[82367,50822]},{"type":"Point","coordinates":[2394,44499]},{"type":"Point","coordinates":[1770,44220]},{"type":"Point","coordinates":[1775,44223]},{"type":"Point","coordinates":[1812,44239]},{"type":"Point","coordinates":[1531,44116]},{"type":"Point","coordinates":[2008,44333]},{"type":"Point","coordinates":[2010,44338]},{"type":"Point","coordinates":[2120,44387]},{"type":"Point","coordinates":[76397,52331]},{"type":"Point","coordinates":[1684,44194]},{"type":"Point","coordinates":[1585,44150]},{"type":"Point","coordinates":[2437,44533]},{"type":"Point","coordinates":[1689,44199]},{"type":"Point","coordinates":[1527,44127]},{"type":"Point","coordinates":[1855,44276]},{"type":"Point","coordinates":[88544,48949]},{"type":"Point","coordinates":[76322,52360]},{"type":"Point","coordinates":[1737,44233]},{"type":"Point","coordinates":[1798,44262]},{"type":"Point","coordinates":[1589,44171]},{"type":"Point","coordinates":[1674,44212]},{"type":"Point","coordinates":[2435,44558]},{"type":"Point","coordinates":[1808,44283]},{"type":"Point","coordinates":[1722,44250]},{"type":"Point","coordinates":[2030,44393]},{"type":"Point","coordinates":[1845,44311]},{"type":"Point","coordinates":[1822,44302]},{"type":"Point","coordinates":[1736,44264]},{"type":"Point","coordinates":[1302,44072]},{"type":"Point","coordinates":[1842,44318]},{"type":"Point","coordinates":[1760,44284]},{"type":"Point","coordinates":[1934,44364]},{"type":"Point","coordinates":[1853,44329]},{"type":"Point","coordinates":[1821,44316]},{"type":"Point","coordinates":[1821,44316]},{"type":"Point","coordinates":[1821,44316]},{"type":"Point","coordinates":[2105,44444]},{"type":"Point","coordinates":[1800,44310]},{"type":"Point","coordinates":[1799,44312]},{"type":"Point","coordinates":[1822,44323]},{"type":"Point","coordinates":[1881,44350]},{"type":"Point","coordinates":[1987,44406]},{"type":"Point","coordinates":[2106,44459]},{"type":"Point","coordinates":[1736,44300]},{"type":"Point","coordinates":[1818,44338]},{"type":"Point","coordinates":[1890,44372]},{"type":"Point","coordinates":[1725,44301]},{"type":"Point","coordinates":[1726,44302]},{"type":"Point","coordinates":[1814,44342]},{"type":"Point","coordinates":[1889,44376]},{"type":"Point","coordinates":[1896,44379]},{"type":"Point","coordinates":[1743,44311]},{"type":"Point","coordinates":[1844,44357]},{"type":"Point","coordinates":[1754,44317]},{"type":"Point","coordinates":[1748,44314]},{"type":"Point","coordinates":[1896,44381]},{"type":"Point","coordinates":[1832,44354]},{"type":"Point","coordinates":[76229,52465]},{"type":"Point","coordinates":[1753,44322]},{"type":"Point","coordinates":[1753,44322]},{"type":"Point","coordinates":[1859,44371]},{"type":"Point","coordinates":[1859,44371]},{"type":"Point","coordinates":[2342,44587]},{"type":"Point","coordinates":[1738,44317]},{"type":"Point","coordinates":[1967,44420]},{"type":"Point","coordinates":[1822,44356]},{"type":"Point","coordinates":[1738,44318]},{"type":"Point","coordinates":[1738,44318]},{"type":"Point","coordinates":[1966,44420]},{"type":"Point","coordinates":[1745,44321]},{"type":"Point","coordinates":[1840,44364]},{"type":"Point","coordinates":[1840,44364]},{"type":"Point","coordinates":[1739,44319]},{"type":"Point","coordinates":[1743,44321]},{"type":"Point","coordinates":[1739,44319]},{"type":"Point","coordinates":[1738,44319]},{"type":"Point","coordinates":[1744,44321]},{"type":"Point","coordinates":[1739,44319]},{"type":"Point","coordinates":[1738,44319]},{"type":"Point","coordinates":[1738,44319]},{"type":"Point","coordinates":[1738,44319]},{"type":"Point","coordinates":[1739,44320]},{"type":"Point","coordinates":[1739,44320]},{"type":"Point","coordinates":[1738,44320]},{"type":"Point","coordinates":[1735,44318]},{"type":"Point","coordinates":[1738,44320]},{"type":"Point","coordinates":[1738,44320]},{"type":"Point","coordinates":[1739,44320]},{"type":"Point","coordinates":[1738,44320]},{"type":"Point","coordinates":[1738,44320]},{"type":"Point","coordinates":[1889,44388]},{"type":"Point","coordinates":[1863,44376]},{"type":"Point","coordinates":[1737,44322]},{"type":"Point","coordinates":[1877,44386]},{"type":"Point","coordinates":[1879,44387]},{"type":"Point","coordinates":[1738,44326]},{"type":"Point","coordinates":[1754,44340]},{"type":"Point","coordinates":[1980,44444]},{"type":"Point","coordinates":[1504,44230]},{"type":"Point","coordinates":[1624,44288]},{"type":"Point","coordinates":[1881,44408]},{"type":"Point","coordinates":[2357,44621]},{"type":"Point","coordinates":[1934,44433]},{"type":"Point","coordinates":[1870,44405]},{"type":"Point","coordinates":[88262,49163]},{"type":"Point","coordinates":[2173,44542]},{"type":"Point","coordinates":[88262,49164]},{"type":"Point","coordinates":[1881,44416]},{"type":"Point","coordinates":[1302,44155]},{"type":"Point","coordinates":[2445,44669]},{"type":"Point","coordinates":[2158,44543]},{"type":"Point","coordinates":[1860,44410]},{"type":"Point","coordinates":[1864,44412]},{"type":"Point","coordinates":[1869,44415]},{"type":"Point","coordinates":[1864,44413]},{"type":"Point","coordinates":[1864,44413]},{"type":"Point","coordinates":[1869,44415]},{"type":"Point","coordinates":[1868,44415]},{"type":"Point","coordinates":[1863,44413]},{"type":"Point","coordinates":[1864,44413]},{"type":"Point","coordinates":[1864,44413]},{"type":"Point","coordinates":[1864,44413]},{"type":"Point","coordinates":[1864,44413]},{"type":"Point","coordinates":[1864,44413]},{"type":"Point","coordinates":[1887,44424]},{"type":"Point","coordinates":[1782,44378]},{"type":"Point","coordinates":[1783,44378]},{"type":"Point","coordinates":[1736,44357]},{"type":"Point","coordinates":[1783,44380]},{"type":"Point","coordinates":[1872,44421]},{"type":"Point","coordinates":[2106,44526]},{"type":"Point","coordinates":[2106,44526]},{"type":"Point","coordinates":[19290,50790]},{"type":"Point","coordinates":[1867,44420]},{"type":"Point","coordinates":[1771,44378]},{"type":"Point","coordinates":[1864,44420]},{"type":"Point","coordinates":[2105,44528]},{"type":"Point","coordinates":[2105,44528]},{"type":"Point","coordinates":[1863,44420]},{"type":"Point","coordinates":[2104,44528]},{"type":"Point","coordinates":[2104,44528]},{"type":"Point","coordinates":[1869,44423]},{"type":"Point","coordinates":[1651,44325]},{"type":"Point","coordinates":[2103,44529]},{"type":"Point","coordinates":[2103,44529]},{"type":"Point","coordinates":[1870,44424]},{"type":"Point","coordinates":[1869,44424]},{"type":"Point","coordinates":[1869,44424]},{"type":"Point","coordinates":[1867,44424]},{"type":"Point","coordinates":[2210,44577]},{"type":"Point","coordinates":[1870,44425]},{"type":"Point","coordinates":[1870,44425]},{"type":"Point","coordinates":[1870,44425]},{"type":"Point","coordinates":[1872,44426]},{"type":"Point","coordinates":[1872,44427]},{"type":"Point","coordinates":[1870,44426]},{"type":"Point","coordinates":[1868,44425]},{"type":"Point","coordinates":[1872,44427]},{"type":"Point","coordinates":[1872,44427]},{"type":"Point","coordinates":[1872,44427]},{"type":"Point","coordinates":[1870,44427]},{"type":"Point","coordinates":[1870,44427]},{"type":"Point","coordinates":[1873,44428]},{"type":"Point","coordinates":[1872,44428]},{"type":"Point","coordinates":[1872,44428]},{"type":"Point","coordinates":[1870,44428]},{"type":"Point","coordinates":[1871,44428]},{"type":"Point","coordinates":[1874,44430]},{"type":"Point","coordinates":[1873,44430]},{"type":"Point","coordinates":[1873,44430]},{"type":"Point","coordinates":[1870,44429]},{"type":"Point","coordinates":[1868,44428]},{"type":"Point","coordinates":[1873,44431]},{"type":"Point","coordinates":[1870,44430]},{"type":"Point","coordinates":[1869,44430]},{"type":"Point","coordinates":[1875,44433]},{"type":"Point","coordinates":[1871,44431]},{"type":"Point","coordinates":[1869,44430]},{"type":"Point","coordinates":[1869,44430]},{"type":"Point","coordinates":[1872,44431]},{"type":"Point","coordinates":[1874,44433]},{"type":"Point","coordinates":[1880,44436]},{"type":"Point","coordinates":[1869,44431]},{"type":"Point","coordinates":[1872,44433]},{"type":"Point","coordinates":[1870,44432]},{"type":"Point","coordinates":[1872,44433]},{"type":"Point","coordinates":[1872,44434]},{"type":"Point","coordinates":[1869,44433]},{"type":"Point","coordinates":[1868,44432]},{"type":"Point","coordinates":[1872,44434]},{"type":"Point","coordinates":[1872,44434]},{"type":"Point","coordinates":[1868,44433]},{"type":"Point","coordinates":[1872,44435]},{"type":"Point","coordinates":[1870,44435]},{"type":"Point","coordinates":[1875,44437]},{"type":"Point","coordinates":[73467,53102]},{"type":"Point","coordinates":[1874,44438]},{"type":"Point","coordinates":[1873,44438]},{"type":"Point","coordinates":[1873,44438]},{"type":"Point","coordinates":[1874,44440]},{"type":"Point","coordinates":[1875,44440]},{"type":"Point","coordinates":[1875,44440]},{"type":"Point","coordinates":[1873,44439]},{"type":"Point","coordinates":[1875,44440]},{"type":"Point","coordinates":[1874,44440]},{"type":"Point","coordinates":[1875,44441]},{"type":"Point","coordinates":[1873,44440]},{"type":"Point","coordinates":[1874,44440]},{"type":"Point","coordinates":[1874,44441]},{"type":"Point","coordinates":[1876,44442]},{"type":"Point","coordinates":[1874,44441]},{"type":"Point","coordinates":[1874,44441]},{"type":"Point","coordinates":[1875,44442]},{"type":"Point","coordinates":[1874,44442]},{"type":"Point","coordinates":[1896,44453]},{"type":"Point","coordinates":[1873,44443]},{"type":"Point","coordinates":[1877,44445]},{"type":"Point","coordinates":[1897,44454]},{"type":"Point","coordinates":[1873,44444]},{"type":"Point","coordinates":[1901,44456]},{"type":"Point","coordinates":[1876,44445]},{"type":"Point","coordinates":[2273,44623]},{"type":"Point","coordinates":[1878,44448]},{"type":"Point","coordinates":[19284,50812]},{"type":"Point","coordinates":[19282,50812]},{"type":"Point","coordinates":[1876,44448]},{"type":"Point","coordinates":[1875,44449]},{"type":"Point","coordinates":[1711,44376]},{"type":"Point","coordinates":[1892,44458]},{"type":"Point","coordinates":[1892,44459]},{"type":"Point","coordinates":[1891,44459]},{"type":"Point","coordinates":[2241,44616]},{"type":"Point","coordinates":[1868,44451]},{"type":"Point","coordinates":[2187,44597]},{"type":"Point","coordinates":[1478,44279]},{"type":"Point","coordinates":[1904,44473]},{"type":"Point","coordinates":[1900,44471]},{"type":"Point","coordinates":[1873,44459]},{"type":"Point","coordinates":[2303,44652]},{"type":"Point","coordinates":[2175,44596]},{"type":"Point","coordinates":[1902,44474]},{"type":"Point","coordinates":[1899,44473]},{"type":"Point","coordinates":[1896,44472]},{"type":"Point","coordinates":[1880,44467]},{"type":"Point","coordinates":[1878,44466]},{"type":"Point","coordinates":[1906,44479]},{"type":"Point","coordinates":[1893,44474]},{"type":"Point","coordinates":[19274,50828]},{"type":"Point","coordinates":[1593,44341]},{"type":"Point","coordinates":[1885,44473]},{"type":"Point","coordinates":[1885,44473]},{"type":"Point","coordinates":[2201,44615]},{"type":"Point","coordinates":[1448,44277]},{"type":"Point","coordinates":[1878,44472]},{"type":"Point","coordinates":[1896,44481]},{"type":"Point","coordinates":[2115,44580]},{"type":"Point","coordinates":[19268,50836]},{"type":"Point","coordinates":[2136,44594]},{"type":"Point","coordinates":[2155,44604]},{"type":"Point","coordinates":[1266,44206]},{"type":"Point","coordinates":[2153,44610]},{"type":"Point","coordinates":[1877,44486]},{"type":"Point","coordinates":[1842,44471]},{"type":"Point","coordinates":[2114,44594]},{"type":"Point","coordinates":[1824,44467]},{"type":"Point","coordinates":[1824,44467]},{"type":"Point","coordinates":[1827,44468]},{"type":"Point","coordinates":[1822,44467]},{"type":"Point","coordinates":[2359,44707]},{"type":"Point","coordinates":[1819,44466]},{"type":"Point","coordinates":[2207,44640]},{"type":"Point","coordinates":[1879,44493]},{"type":"Point","coordinates":[1880,44494]},{"type":"Point","coordinates":[1825,44469]},{"type":"Point","coordinates":[7341,46801]},{"type":"Point","coordinates":[1818,44468]},{"type":"Point","coordinates":[2208,44642]},{"type":"Point","coordinates":[7331,46798]},{"type":"Point","coordinates":[1890,44501]},{"type":"Point","coordinates":[1819,44470]},{"type":"Point","coordinates":[7329,46799]},{"type":"Point","coordinates":[1829,44476]},{"type":"Point","coordinates":[1877,44498]},{"type":"Point","coordinates":[7329,46801]},{"type":"Point","coordinates":[7330,46802]},{"type":"Point","coordinates":[1325,44249]},{"type":"Point","coordinates":[7330,46803]},{"type":"Point","coordinates":[7331,46803]},{"type":"Point","coordinates":[1873,44498]},{"type":"Point","coordinates":[7330,46803]},{"type":"Point","coordinates":[7332,46804]},{"type":"Point","coordinates":[1822,44476]},{"type":"Point","coordinates":[1911,44517]},{"type":"Point","coordinates":[1829,44481]},{"type":"Point","coordinates":[1821,44478]},{"type":"Point","coordinates":[1819,44477]},{"type":"Point","coordinates":[2153,44629]},{"type":"Point","coordinates":[1818,44479]},{"type":"Point","coordinates":[2125,44617]},{"type":"Point","coordinates":[1879,44508]},{"type":"Point","coordinates":[1879,44510]},{"type":"Point","coordinates":[1830,44490]},{"type":"Point","coordinates":[1903,44525]},{"type":"Point","coordinates":[1832,44494]},{"type":"Point","coordinates":[2143,44634]},{"type":"Point","coordinates":[1831,44494]},{"type":"Point","coordinates":[1887,44519]},{"type":"Point","coordinates":[1904,44527]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[2147,44637]},{"type":"Point","coordinates":[1875,44516]},{"type":"Point","coordinates":[1825,44493]},{"type":"Point","coordinates":[1980,44563]},{"type":"Point","coordinates":[2495,44792]},{"type":"Point","coordinates":[1966,44557]},{"type":"Point","coordinates":[1966,44557]},{"type":"Point","coordinates":[1893,44524]},{"type":"Point","coordinates":[1965,44557]},{"type":"Point","coordinates":[1882,44520]},{"type":"Point","coordinates":[1858,44509]},{"type":"Point","coordinates":[2141,44636]},{"type":"Point","coordinates":[2145,44639]},{"type":"Point","coordinates":[2502,44798]},{"type":"Point","coordinates":[2520,44806]},{"type":"Point","coordinates":[1905,44533]},{"type":"Point","coordinates":[2101,44622]},{"type":"Point","coordinates":[1873,44519]},{"type":"Point","coordinates":[2105,44625]},{"type":"Point","coordinates":[1899,44536]},{"type":"Point","coordinates":[1903,44539]},{"type":"Point","coordinates":[1840,44511]},{"type":"Point","coordinates":[2086,44623]},{"type":"Point","coordinates":[1837,44512]},{"type":"Point","coordinates":[2087,44624]},{"type":"Point","coordinates":[2490,44804]},{"type":"Point","coordinates":[1926,44553]},{"type":"Point","coordinates":[2089,44626]},{"type":"Point","coordinates":[1876,44531]},{"type":"Point","coordinates":[2099,44632]},{"type":"Point","coordinates":[2516,44820]},{"type":"Point","coordinates":[2516,44821]},{"type":"Point","coordinates":[1835,44518]},{"type":"Point","coordinates":[2533,44829]},{"type":"Point","coordinates":[1876,44537]},{"type":"Point","coordinates":[2509,44819]},{"type":"Point","coordinates":[1868,44534]},{"type":"Point","coordinates":[1868,44534]},{"type":"Point","coordinates":[2513,44821]},{"type":"Point","coordinates":[2511,44821]},{"type":"Point","coordinates":[2093,44636]},{"type":"Point","coordinates":[1889,44545]},{"type":"Point","coordinates":[2090,44636]},{"type":"Point","coordinates":[2499,44818]},{"type":"Point","coordinates":[2505,44821]},{"type":"Point","coordinates":[2492,44818]},{"type":"Point","coordinates":[2516,44830]},{"type":"Point","coordinates":[2494,44822]},{"type":"Point","coordinates":[2129,44661]},{"type":"Point","coordinates":[2150,44672]},{"type":"Point","coordinates":[1854,44540]},{"type":"Point","coordinates":[2492,44826]},{"type":"Point","coordinates":[2496,44829]},{"type":"Point","coordinates":[2319,44752]},{"type":"Point","coordinates":[2008,44615]},{"type":"Point","coordinates":[2497,44833]},{"type":"Point","coordinates":[2509,44840]},{"type":"Point","coordinates":[1836,44541]},{"type":"Point","coordinates":[87973,49406]},{"type":"Point","coordinates":[2004,44617]},{"type":"Point","coordinates":[2004,44617]},{"type":"Point","coordinates":[2004,44617]},{"type":"Point","coordinates":[2004,44617]},{"type":"Point","coordinates":[2004,44617]},{"type":"Point","coordinates":[2004,44617]},{"type":"Point","coordinates":[2004,44617]},{"type":"Point","coordinates":[2522,44849]},{"type":"Point","coordinates":[1846,44550]},{"type":"Point","coordinates":[2005,44622]},{"type":"Point","coordinates":[2500,44843]},{"type":"Point","coordinates":[2005,44624]},{"type":"Point","coordinates":[2005,44624]},{"type":"Point","coordinates":[1858,44558]},{"type":"Point","coordinates":[2137,44684]},{"type":"Point","coordinates":[2522,44855]},{"type":"Point","coordinates":[2651,44912]},{"type":"Point","coordinates":[1843,44553]},{"type":"Point","coordinates":[1861,44561]},{"type":"Point","coordinates":[1848,44555]},{"type":"Point","coordinates":[2545,44866]},{"type":"Point","coordinates":[1853,44558]},{"type":"Point","coordinates":[1858,44561]},{"type":"Point","coordinates":[1975,44615]},{"type":"Point","coordinates":[1845,44557]},{"type":"Point","coordinates":[1855,44561]},{"type":"Point","coordinates":[1855,44561]},{"type":"Point","coordinates":[1851,44564]},{"type":"Point","coordinates":[1846,44561]},{"type":"Point","coordinates":[1869,44573]},{"type":"Point","coordinates":[1859,44569]},{"type":"Point","coordinates":[1847,44564]},{"type":"Point","coordinates":[1963,44616]},{"type":"Point","coordinates":[2135,44693]},{"type":"Point","coordinates":[1962,44617]},{"type":"Point","coordinates":[1848,44566]},{"type":"Point","coordinates":[1855,44570]},{"type":"Point","coordinates":[1847,44567]},{"type":"Point","coordinates":[1855,44570]},{"type":"Point","coordinates":[2139,44699]},{"type":"Point","coordinates":[2511,44866]},{"type":"Point","coordinates":[1839,44566]},{"type":"Point","coordinates":[1845,44569]},{"type":"Point","coordinates":[1854,44574]},{"type":"Point","coordinates":[79015,52012]},{"type":"Point","coordinates":[1854,44575]},{"type":"Point","coordinates":[1854,44575]},{"type":"Point","coordinates":[2512,44868]},{"type":"Point","coordinates":[2512,44868]},{"type":"Point","coordinates":[1847,44572]},{"type":"Point","coordinates":[1837,44568]},{"type":"Point","coordinates":[1856,44577]},{"type":"Point","coordinates":[1854,44576]},{"type":"Point","coordinates":[1854,44576]},{"type":"Point","coordinates":[1855,44577]},{"type":"Point","coordinates":[1847,44574]},{"type":"Point","coordinates":[1868,44583]},{"type":"Point","coordinates":[1848,44575]},{"type":"Point","coordinates":[1847,44575]},{"type":"Point","coordinates":[2133,44703]},{"type":"Point","coordinates":[1852,44579]},{"type":"Point","coordinates":[1958,44627]},{"type":"Point","coordinates":[1852,44579]},{"type":"Point","coordinates":[1842,44575]},{"type":"Point","coordinates":[1848,44578]},{"type":"Point","coordinates":[1858,44582]},{"type":"Point","coordinates":[1849,44579]},{"type":"Point","coordinates":[1849,44580]},{"type":"Point","coordinates":[1848,44579]},{"type":"Point","coordinates":[1855,44582]},{"type":"Point","coordinates":[1955,44627]},{"type":"Point","coordinates":[1856,44584]},{"type":"Point","coordinates":[1849,44581]},{"type":"Point","coordinates":[1865,44588]},{"type":"Point","coordinates":[2126,44706]},{"type":"Point","coordinates":[1848,44581]},{"type":"Point","coordinates":[1836,44577]},{"type":"Point","coordinates":[1862,44589]},{"type":"Point","coordinates":[2145,44716]},{"type":"Point","coordinates":[1842,44580]},{"type":"Point","coordinates":[79016,52023]},{"type":"Point","coordinates":[1843,44581]},{"type":"Point","coordinates":[2138,44714]},{"type":"Point","coordinates":[1850,44585]},{"type":"Point","coordinates":[1848,44584]},{"type":"Point","coordinates":[2145,44717]},{"type":"Point","coordinates":[2145,44717]},{"type":"Point","coordinates":[2127,44709]},{"type":"Point","coordinates":[1850,44586]},{"type":"Point","coordinates":[1850,44586]},{"type":"Point","coordinates":[1860,44591]},{"type":"Point","coordinates":[79018,52025]},{"type":"Point","coordinates":[2131,44713]},{"type":"Point","coordinates":[1842,44584]},{"type":"Point","coordinates":[1863,44594]},{"type":"Point","coordinates":[1864,44594]},{"type":"Point","coordinates":[1844,44586]},{"type":"Point","coordinates":[1859,44593]},{"type":"Point","coordinates":[1833,44583]},{"type":"Point","coordinates":[1858,44595]},{"type":"Point","coordinates":[1978,44649]},{"type":"Point","coordinates":[1846,44590]},{"type":"Point","coordinates":[79017,52031]},{"type":"Point","coordinates":[1868,44601]},{"type":"Point","coordinates":[1831,44585]},{"type":"Point","coordinates":[1879,44608]},{"type":"Point","coordinates":[1839,44590]},{"type":"Point","coordinates":[2727,44985]},{"type":"Point","coordinates":[1867,44603]},{"type":"Point","coordinates":[1846,44594]},{"type":"Point","coordinates":[2742,44993]},{"type":"Point","coordinates":[1935,44635]},{"type":"Point","coordinates":[1848,44597]},{"type":"Point","coordinates":[1871,44609]},{"type":"Point","coordinates":[2128,44724]},{"type":"Point","coordinates":[1848,44600]},{"type":"Point","coordinates":[1829,44593]},{"type":"Point","coordinates":[1829,44594]},{"type":"Point","coordinates":[1843,44600]},{"type":"Point","coordinates":[1979,44664]},{"type":"Point","coordinates":[2103,44720]},{"type":"Point","coordinates":[1978,44665]},{"type":"Point","coordinates":[2093,44719]},{"type":"Point","coordinates":[1971,44667]},{"type":"Point","coordinates":[2022,44690]},{"type":"Point","coordinates":[1878,44627]},{"type":"Point","coordinates":[79012,52055]},{"type":"Point","coordinates":[2126,44739]},{"type":"Point","coordinates":[1903,44641]},{"type":"Point","coordinates":[1870,44627]},{"type":"Point","coordinates":[1876,44629]},{"type":"Point","coordinates":[1870,44627]},{"type":"Point","coordinates":[1822,44609]},{"type":"Point","coordinates":[1915,44651]},{"type":"Point","coordinates":[1836,44616]},{"type":"Point","coordinates":[1931,44660]},{"type":"Point","coordinates":[2117,44743]},{"type":"Point","coordinates":[2118,44745]},{"type":"Point","coordinates":[2125,44749]},{"type":"Point","coordinates":[2125,44749]},{"type":"Point","coordinates":[1749,44581]},{"type":"Point","coordinates":[1749,44581]},{"type":"Point","coordinates":[1871,44636]},{"type":"Point","coordinates":[1748,44582]},{"type":"Point","coordinates":[1747,44583]},{"type":"Point","coordinates":[2120,44750]},{"type":"Point","coordinates":[2121,44751]},{"type":"Point","coordinates":[2082,44734]},{"type":"Point","coordinates":[69429,54023]},{"type":"Point","coordinates":[2122,44754]},{"type":"Point","coordinates":[2127,44757]},{"type":"Point","coordinates":[88010,49480]},{"type":"Point","coordinates":[2126,44759]},{"type":"Point","coordinates":[76155,52745]},{"type":"Point","coordinates":[2127,44761]},{"type":"Point","coordinates":[1795,44613]},{"type":"Point","coordinates":[1840,44633]},{"type":"Point","coordinates":[2126,44761]},{"type":"Point","coordinates":[1795,44613]},{"type":"Point","coordinates":[1838,44633]},{"type":"Point","coordinates":[7393,46979]},{"type":"Point","coordinates":[2153,44780]},{"type":"Point","coordinates":[1880,44659]},{"type":"Point","coordinates":[2127,44770]},{"type":"Point","coordinates":[2139,44776]},{"type":"Point","coordinates":[2128,44771]},{"type":"Point","coordinates":[1836,44644]},{"type":"Point","coordinates":[1922,44685]},{"type":"Point","coordinates":[1922,44685]},{"type":"Point","coordinates":[2121,44776]},{"type":"Point","coordinates":[2124,44786]},{"type":"Point","coordinates":[1902,44687]},{"type":"Point","coordinates":[1809,44646]},{"type":"Point","coordinates":[2123,44789]},{"type":"Point","coordinates":[1860,44672]},{"type":"Point","coordinates":[2100,44784]},{"type":"Point","coordinates":[1856,44676]},{"type":"Point","coordinates":[1846,44674]},{"type":"Point","coordinates":[1837,44670]},{"type":"Point","coordinates":[1887,44696]},{"type":"Point","coordinates":[2098,44793]},{"type":"Point","coordinates":[1822,44670]},{"type":"Point","coordinates":[1786,44655]},{"type":"Point","coordinates":[2038,44770]},{"type":"Point","coordinates":[2102,44799]},{"type":"Point","coordinates":[2103,44800]},{"type":"Point","coordinates":[2346,44910]},{"type":"Point","coordinates":[2152,44824]},{"type":"Point","coordinates":[1773,44656]},{"type":"Point","coordinates":[1853,44696]},{"type":"Point","coordinates":[1912,44723]},{"type":"Point","coordinates":[1912,44723]},{"type":"Point","coordinates":[1625,44594]},{"type":"Point","coordinates":[1878,44709]},{"type":"Point","coordinates":[1878,44709]},{"type":"Point","coordinates":[1883,44712]},{"type":"Point","coordinates":[1912,44725]},{"type":"Point","coordinates":[1838,44693]},{"type":"Point","coordinates":[1882,44721]},{"type":"Point","coordinates":[81111,51608]},{"type":"Point","coordinates":[1696,44641]},{"type":"Point","coordinates":[1835,44711]},{"type":"Point","coordinates":[2359,44947]},{"type":"Point","coordinates":[2125,44845]},{"type":"Point","coordinates":[1996,44789]},{"type":"Point","coordinates":[87188,49839]},{"type":"Point","coordinates":[1775,44696]},{"type":"Point","coordinates":[1820,44720]},{"type":"Point","coordinates":[1824,44724]},{"type":"Point","coordinates":[1824,44725]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1824,44726]},{"type":"Point","coordinates":[1825,44726]},{"type":"Point","coordinates":[1825,44726]},{"type":"Point","coordinates":[1998,44804]},{"type":"Point","coordinates":[1857,44755]},{"type":"Point","coordinates":[1819,44739]},{"type":"Point","coordinates":[2281,44947]},{"type":"Point","coordinates":[1817,44745]},{"type":"Point","coordinates":[1827,44750]},{"type":"Point","coordinates":[1878,44774]},{"type":"Point","coordinates":[87176,49882]},{"type":"Point","coordinates":[87176,49882]},{"type":"Point","coordinates":[87177,49882]},{"type":"Point","coordinates":[69400,54162]},{"type":"Point","coordinates":[87252,49860]},{"type":"Point","coordinates":[1826,44762]},{"type":"Point","coordinates":[1812,44759]},{"type":"Point","coordinates":[2273,44978]},{"type":"Point","coordinates":[87199,49975]},{"type":"Point","coordinates":[8224,47544]},{"type":"Point","coordinates":[25133,52751]},{"type":"Point","coordinates":[87260,49971]},{"type":"Point","coordinates":[1958,44950]},{"type":"Point","coordinates":[2179,45052]},{"type":"Point","coordinates":[87252,49998]},{"type":"Point","coordinates":[2215,45078]},{"type":"Point","coordinates":[76225,53001]},{"type":"Point","coordinates":[79703,52204]},{"type":"Point","coordinates":[54416,55749]},{"type":"Point","coordinates":[79714,52206]},{"type":"Point","coordinates":[79700,52211]},{"type":"Point","coordinates":[89043,49447]},{"type":"Point","coordinates":[79736,52204]},{"type":"Point","coordinates":[89047,49451]},{"type":"Point","coordinates":[89046,49453]},{"type":"Point","coordinates":[89047,49456]},{"type":"Point","coordinates":[89061,49455]},{"type":"Point","coordinates":[2614,45309]},{"type":"Point","coordinates":[66422,54800]},{"type":"Point","coordinates":[76752,52954]},{"type":"Point","coordinates":[66430,54815]},{"type":"Point","coordinates":[28618,53609]},{"type":"Point","coordinates":[68497,54537]},{"type":"Point","coordinates":[8282,47713]},{"type":"Point","coordinates":[8282,47713]},{"type":"Point","coordinates":[8282,47713]},{"type":"Point","coordinates":[8282,47713]},{"type":"Point","coordinates":[21524,52037]},{"type":"Point","coordinates":[88925,49596]},{"type":"Point","coordinates":[2197,45233]},{"type":"Point","coordinates":[88686,49700]},{"type":"Point","coordinates":[87045,50245]},{"type":"Point","coordinates":[80951,52029]},{"type":"Point","coordinates":[87042,50251]},{"type":"Point","coordinates":[87044,50258]},{"type":"Point","coordinates":[1599,44997]},{"type":"Point","coordinates":[87045,50262]},{"type":"Point","coordinates":[78172,52747]},{"type":"Point","coordinates":[87039,50282]},{"type":"Point","coordinates":[67518,54839]},{"type":"Point","coordinates":[78312,52774]},{"type":"Point","coordinates":[67811,54808]},{"type":"Point","coordinates":[68578,54696]},{"type":"Point","coordinates":[1716,45154]},{"type":"Point","coordinates":[89282,49649]},{"type":"Point","coordinates":[88207,50016]},{"type":"Point","coordinates":[66404,55068]},{"type":"Point","coordinates":[1747,45209]},{"type":"Point","coordinates":[6128,47088]},{"type":"Point","coordinates":[87679,50204]},{"type":"Point","coordinates":[2452,45546]},{"type":"Point","coordinates":[2323,45499]},{"type":"Point","coordinates":[2323,45499]},{"type":"Point","coordinates":[2323,45501]},{"type":"Point","coordinates":[87697,50231]},{"type":"Point","coordinates":[66392,55113]},{"type":"Point","coordinates":[7487,47667]},{"type":"Point","coordinates":[7487,47667]},{"type":"Point","coordinates":[87688,50238]},{"type":"Point","coordinates":[2324,45510]},{"type":"Point","coordinates":[87687,50240]},{"type":"Point","coordinates":[3002,45818]},{"type":"Point","coordinates":[81097,52200]},{"type":"Point","coordinates":[2333,45527]},{"type":"Point","coordinates":[76596,53305]},{"type":"Point","coordinates":[81095,52209]},{"type":"Point","coordinates":[2097,45431]},{"type":"Point","coordinates":[87687,50262]},{"type":"Point","coordinates":[87687,50263]},{"type":"Point","coordinates":[87687,50266]},{"type":"Point","coordinates":[87688,50267]},{"type":"Point","coordinates":[87687,50267]},{"type":"Point","coordinates":[8438,48077]},{"type":"Point","coordinates":[1697,45278]},{"type":"Point","coordinates":[66380,55169]},{"type":"Point","coordinates":[7445,47717]},{"type":"Point","coordinates":[2336,45588]},{"type":"Point","coordinates":[7440,47744]},{"type":"Point","coordinates":[2417,45654]},{"type":"Point","coordinates":[66401,55221]},{"type":"Point","coordinates":[66419,55221]},{"type":"Point","coordinates":[80855,52362]},{"type":"Point","coordinates":[66415,55226]},{"type":"Point","coordinates":[8010,47997]},{"type":"Point","coordinates":[66397,55253]},{"type":"Point","coordinates":[88762,50026]},{"type":"Point","coordinates":[66412,55263]},{"type":"Point","coordinates":[7478,47824]},{"type":"Point","coordinates":[8164,48095]},{"type":"Point","coordinates":[66386,55280]},{"type":"Point","coordinates":[7476,47845]},{"type":"Point","coordinates":[8566,48286]},{"type":"Point","coordinates":[8566,48287]},{"type":"Point","coordinates":[8597,48303]},{"type":"Point","coordinates":[78909,52958]},{"type":"Point","coordinates":[7644,47952]},{"type":"Point","coordinates":[8111,48137]},{"type":"Point","coordinates":[78852,52999]},{"type":"Point","coordinates":[2236,45718]},{"type":"Point","coordinates":[8534,48323]},{"type":"Point","coordinates":[2383,45801]},{"type":"Point","coordinates":[7413,47926]},{"type":"Point","coordinates":[7425,47936]},{"type":"Point","coordinates":[7427,47937]},{"type":"Point","coordinates":[7423,47937]},{"type":"Point","coordinates":[7424,47938]},{"type":"Point","coordinates":[7425,47938]},{"type":"Point","coordinates":[7423,47939]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47939]},{"type":"Point","coordinates":[7425,47939]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7424,47939]},{"type":"Point","coordinates":[7424,47939]},{"type":"Point","coordinates":[7423,47939]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7424,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7424,47940]},{"type":"Point","coordinates":[7425,47940]},{"type":"Point","coordinates":[7425,47941]},{"type":"Point","coordinates":[7424,47940]},{"type":"Point","coordinates":[7425,47941]},{"type":"Point","coordinates":[7425,47941]},{"type":"Point","coordinates":[7425,47941]},{"type":"Point","coordinates":[7424,47941]},{"type":"Point","coordinates":[7424,47941]},{"type":"Point","coordinates":[7425,47941]},{"type":"Point","coordinates":[7424,47941]},{"type":"Point","coordinates":[7424,47941]},{"type":"Point","coordinates":[7424,47941]},{"type":"Point","coordinates":[7424,47941]},{"type":"Point","coordinates":[7423,47940]},{"type":"Point","coordinates":[7423,47941]},{"type":"Point","coordinates":[7423,47941]},{"type":"Point","coordinates":[7421,47941]},{"type":"Point","coordinates":[7425,47942]},{"type":"Point","coordinates":[7423,47942]},{"type":"Point","coordinates":[7422,47941]},{"type":"Point","coordinates":[7422,47941]},{"type":"Point","coordinates":[7422,47942]},{"type":"Point","coordinates":[7423,47942]},{"type":"Point","coordinates":[7417,47939]},{"type":"Point","coordinates":[7424,47943]},{"type":"Point","coordinates":[7420,47941]},{"type":"Point","coordinates":[7424,47943]},{"type":"Point","coordinates":[7423,47942]},{"type":"Point","coordinates":[7424,47943]},{"type":"Point","coordinates":[7422,47942]},{"type":"Point","coordinates":[7425,47944]},{"type":"Point","coordinates":[7421,47943]},{"type":"Point","coordinates":[7421,47943]},{"type":"Point","coordinates":[7421,47943]},{"type":"Point","coordinates":[7421,47943]},{"type":"Point","coordinates":[7419,47943]},{"type":"Point","coordinates":[7418,47943]},{"type":"Point","coordinates":[7421,47944]},{"type":"Point","coordinates":[7420,47944]},{"type":"Point","coordinates":[7421,47944]},{"type":"Point","coordinates":[7419,47944]},{"type":"Point","coordinates":[7420,47944]},{"type":"Point","coordinates":[7423,47946]},{"type":"Point","coordinates":[7415,47943]},{"type":"Point","coordinates":[7415,47943]},{"type":"Point","coordinates":[7421,47945]},{"type":"Point","coordinates":[7415,47943]},{"type":"Point","coordinates":[7415,47943]},{"type":"Point","coordinates":[7415,47943]},{"type":"Point","coordinates":[7418,47945]},{"type":"Point","coordinates":[7450,47958]},{"type":"Point","coordinates":[7763,48088]},{"type":"Point","coordinates":[7420,47954]},{"type":"Point","coordinates":[88882,50154]},{"type":"Point","coordinates":[7428,47963]},{"type":"Point","coordinates":[7434,47978]},{"type":"Point","coordinates":[7431,47977]},{"type":"Point","coordinates":[7433,47979]},{"type":"Point","coordinates":[7429,47979]},{"type":"Point","coordinates":[7428,47981]},{"type":"Point","coordinates":[2160,45785]},{"type":"Point","coordinates":[80285,52743]},{"type":"Point","coordinates":[66293,55470]},{"type":"Point","coordinates":[66302,55473]},{"type":"Point","coordinates":[66302,55473]},{"type":"Point","coordinates":[7426,48000]},{"type":"Point","coordinates":[20383,52316]},{"type":"Point","coordinates":[66316,55483]},{"type":"Point","coordinates":[6053,47469]},{"type":"Point","coordinates":[7408,48040]},{"type":"Point","coordinates":[7411,48046]},{"type":"Point","coordinates":[7410,48046]},{"type":"Point","coordinates":[20244,52327]},{"type":"Point","coordinates":[81170,52571]},{"type":"Point","coordinates":[81170,52573]},{"type":"Point","coordinates":[7417,48062]},{"type":"Point","coordinates":[7410,48061]},{"type":"Point","coordinates":[7420,48065]},{"type":"Point","coordinates":[7420,48065]},{"type":"Point","coordinates":[7419,48067]},{"type":"Point","coordinates":[2477,46018]},{"type":"Point","coordinates":[7501,48117]},{"type":"Point","coordinates":[7500,48120]},{"type":"Point","coordinates":[7504,48124]},{"type":"Point","coordinates":[2484,46033]},{"type":"Point","coordinates":[7499,48123]},{"type":"Point","coordinates":[7498,48129]},{"type":"Point","coordinates":[7499,48132]},{"type":"Point","coordinates":[7497,48131]},{"type":"Point","coordinates":[68531,55257]},{"type":"Point","coordinates":[7495,48132]},{"type":"Point","coordinates":[7532,48147]},{"type":"Point","coordinates":[56371,56463]},{"type":"Point","coordinates":[7494,48142]},{"type":"Point","coordinates":[7492,48142]},{"type":"Point","coordinates":[7503,48148]},{"type":"Point","coordinates":[7492,48146]},{"type":"Point","coordinates":[7492,48147]},{"type":"Point","coordinates":[7531,48165]},{"type":"Point","coordinates":[7534,48172]},{"type":"Point","coordinates":[7492,48157]},{"type":"Point","coordinates":[7493,48159]},{"type":"Point","coordinates":[7472,48152]},{"type":"Point","coordinates":[7472,48156]},{"type":"Point","coordinates":[7545,48197]},{"type":"Point","coordinates":[75259,54079]},{"type":"Point","coordinates":[20181,52407]},{"type":"Point","coordinates":[7505,48185]},{"type":"Point","coordinates":[7603,48225]},{"type":"Point","coordinates":[2130,45951]},{"type":"Point","coordinates":[7485,48194]},{"type":"Point","coordinates":[7523,48212]},{"type":"Point","coordinates":[20519,52523]},{"type":"Point","coordinates":[51189,56657]},{"type":"Point","coordinates":[7491,48213]},{"type":"Point","coordinates":[51191,56663]},{"type":"Point","coordinates":[8571,48648]},{"type":"Point","coordinates":[7471,48227]},{"type":"Point","coordinates":[7469,48231]},{"type":"Point","coordinates":[20420,52538]},{"type":"Point","coordinates":[56285,56607]},{"type":"Point","coordinates":[2170,46057]},{"type":"Point","coordinates":[7475,48280]},{"type":"Point","coordinates":[7571,48322]},{"type":"Point","coordinates":[20249,52538]},{"type":"Point","coordinates":[2194,46101]},{"type":"Point","coordinates":[2122,46072]},{"type":"Point","coordinates":[79081,53341]},{"type":"Point","coordinates":[20393,52613]},{"type":"Point","coordinates":[2111,46096]},{"type":"Point","coordinates":[2205,46148]},{"type":"Point","coordinates":[7636,48414]},{"type":"Point","coordinates":[7636,48415]},{"type":"Point","coordinates":[78881,53434]},{"type":"Point","coordinates":[2226,46175]},{"type":"Point","coordinates":[2057,46103]},{"type":"Point","coordinates":[78935,53438]},{"type":"Point","coordinates":[7879,48547]},{"type":"Point","coordinates":[78956,53449]},{"type":"Point","coordinates":[78938,53455]},{"type":"Point","coordinates":[78954,53454]},{"type":"Point","coordinates":[81083,52915]},{"type":"Point","coordinates":[78944,53462]},{"type":"Point","coordinates":[68172,55585]},{"type":"Point","coordinates":[7787,48529]},{"type":"Point","coordinates":[7611,48479]},{"type":"Point","coordinates":[7612,48481]},{"type":"Point","coordinates":[78127,53686]},{"type":"Point","coordinates":[68194,55616]},{"type":"Point","coordinates":[78451,53622]},{"type":"Point","coordinates":[1841,46085]},{"type":"Point","coordinates":[78971,53507]},{"type":"Point","coordinates":[7694,48548]},{"type":"Point","coordinates":[80493,53131]},{"type":"Point","coordinates":[7639,48530]},{"type":"Point","coordinates":[7257,48381]},{"type":"Point","coordinates":[1869,46119]},{"type":"Point","coordinates":[1828,46100]},{"type":"Point","coordinates":[1842,46107]},{"type":"Point","coordinates":[1823,46099]},{"type":"Point","coordinates":[1842,46109]},{"type":"Point","coordinates":[2110,46228]},{"type":"Point","coordinates":[20241,52718]},{"type":"Point","coordinates":[1822,46102]},{"type":"Point","coordinates":[1833,46107]},{"type":"Point","coordinates":[1823,46105]},{"type":"Point","coordinates":[1841,46114]},{"type":"Point","coordinates":[1841,46114]},{"type":"Point","coordinates":[88337,50831]},{"type":"Point","coordinates":[1827,46109]},{"type":"Point","coordinates":[1821,46107]},{"type":"Point","coordinates":[1824,46108]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1820,46107]},{"type":"Point","coordinates":[1824,46109]},{"type":"Point","coordinates":[1823,46109]},{"type":"Point","coordinates":[77550,53876]},{"type":"Point","coordinates":[7775,48608]},{"type":"Point","coordinates":[67943,55711]},{"type":"Point","coordinates":[67944,55711]},{"type":"Point","coordinates":[67950,55711]},{"type":"Point","coordinates":[7688,48583]},{"type":"Point","coordinates":[78994,53552]},{"type":"Point","coordinates":[65926,56002]},{"type":"Point","coordinates":[65925,56002]},{"type":"Point","coordinates":[65925,56002]},{"type":"Point","coordinates":[7799,48647]},{"type":"Point","coordinates":[7789,48644]},{"type":"Point","coordinates":[7820,48657]},{"type":"Point","coordinates":[1801,46155]},{"type":"Point","coordinates":[1801,46155]},{"type":"Point","coordinates":[1801,46155]},{"type":"Point","coordinates":[1801,46155]},{"type":"Point","coordinates":[7760,48649]},{"type":"Point","coordinates":[2337,46397]},{"type":"Point","coordinates":[2336,46397]},{"type":"Point","coordinates":[65917,56031]},{"type":"Point","coordinates":[7740,48645]},{"type":"Point","coordinates":[1851,46200]},{"type":"Point","coordinates":[1863,46210]},{"type":"Point","coordinates":[2246,46382]},{"type":"Point","coordinates":[84771,52039]},{"type":"Point","coordinates":[7664,48643]},{"type":"Point","coordinates":[7805,48700]},{"type":"Point","coordinates":[1829,46205]},{"type":"Point","coordinates":[2001,46284]},{"type":"Point","coordinates":[1769,46181]},{"type":"Point","coordinates":[2001,46285]},{"type":"Point","coordinates":[2002,46285]},{"type":"Point","coordinates":[2002,46286]},{"type":"Point","coordinates":[2002,46285]},{"type":"Point","coordinates":[1833,46211]},{"type":"Point","coordinates":[1895,46239]},{"type":"Point","coordinates":[7753,48686]},{"type":"Point","coordinates":[1836,46215]},{"type":"Point","coordinates":[78387,53772]},{"type":"Point","coordinates":[1825,46211]},{"type":"Point","coordinates":[7779,48699]},{"type":"Point","coordinates":[1866,46230]},{"type":"Point","coordinates":[1841,46219]},{"type":"Point","coordinates":[1836,46217]},{"type":"Point","coordinates":[1826,46213]},{"type":"Point","coordinates":[7778,48701]},{"type":"Point","coordinates":[2000,46292]},{"type":"Point","coordinates":[2000,46292]},{"type":"Point","coordinates":[1808,46208]},{"type":"Point","coordinates":[7772,48702]},{"type":"Point","coordinates":[2267,46414]},{"type":"Point","coordinates":[1808,46210]},{"type":"Point","coordinates":[6462,48187]},{"type":"Point","coordinates":[7907,48761]},{"type":"Point","coordinates":[1844,46233]},{"type":"Point","coordinates":[1808,46217]},{"type":"Point","coordinates":[1821,46230]},{"type":"Point","coordinates":[1821,46230]},{"type":"Point","coordinates":[7744,48707]},{"type":"Point","coordinates":[7760,48728]},{"type":"Point","coordinates":[7743,48723]},{"type":"Point","coordinates":[1892,46279]},{"type":"Point","coordinates":[53500,57036]},{"type":"Point","coordinates":[7744,48725]},{"type":"Point","coordinates":[1786,46235]},{"type":"Point","coordinates":[7739,48729]},{"type":"Point","coordinates":[7742,48730]},{"type":"Point","coordinates":[1773,46233]},{"type":"Point","coordinates":[7741,48730]},{"type":"Point","coordinates":[7739,48730]},{"type":"Point","coordinates":[7740,48731]},{"type":"Point","coordinates":[7740,48731]},{"type":"Point","coordinates":[7739,48731]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7739,48732]},{"type":"Point","coordinates":[7739,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7739,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7739,48733]},{"type":"Point","coordinates":[7738,48732]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7741,48734]},{"type":"Point","coordinates":[7739,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7739,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7740,48734]},{"type":"Point","coordinates":[7724,48728]},{"type":"Point","coordinates":[7738,48734]},{"type":"Point","coordinates":[7739,48734]},{"type":"Point","coordinates":[7738,48733]},{"type":"Point","coordinates":[7738,48734]},{"type":"Point","coordinates":[7738,48734]},{"type":"Point","coordinates":[7737,48734]},{"type":"Point","coordinates":[7740,48735]},{"type":"Point","coordinates":[7738,48734]},{"type":"Point","coordinates":[7738,48734]},{"type":"Point","coordinates":[1814,46258]},{"type":"Point","coordinates":[7739,48735]},{"type":"Point","coordinates":[7740,48735]},{"type":"Point","coordinates":[1903,46298]},{"type":"Point","coordinates":[7740,48736]},{"type":"Point","coordinates":[7738,48735]},{"type":"Point","coordinates":[7741,48736]},{"type":"Point","coordinates":[7740,48736]},{"type":"Point","coordinates":[7740,48736]},{"type":"Point","coordinates":[7737,48735]},{"type":"Point","coordinates":[7738,48735]},{"type":"Point","coordinates":[7741,48737]},{"type":"Point","coordinates":[7739,48736]},{"type":"Point","coordinates":[7738,48736]},{"type":"Point","coordinates":[52374,57067]},{"type":"Point","coordinates":[7739,48737]},{"type":"Point","coordinates":[7738,48736]},{"type":"Point","coordinates":[7741,48738]},{"type":"Point","coordinates":[7741,48739]},{"type":"Point","coordinates":[7741,48739]},{"type":"Point","coordinates":[7741,48739]},{"type":"Point","coordinates":[7741,48739]},{"type":"Point","coordinates":[7736,48739]},{"type":"Point","coordinates":[7738,48741]},{"type":"Point","coordinates":[7732,48739]},{"type":"Point","coordinates":[7732,48739]},{"type":"Point","coordinates":[7738,48743]},{"type":"Point","coordinates":[2033,46365]},{"type":"Point","coordinates":[1855,46288]},{"type":"Point","coordinates":[7751,48752]},{"type":"Point","coordinates":[77595,54022]},{"type":"Point","coordinates":[8060,48872]},{"type":"Point","coordinates":[7735,48747]},{"type":"Point","coordinates":[7750,48754]},{"type":"Point","coordinates":[7734,48750]},{"type":"Point","coordinates":[8288,48965]},{"type":"Point","coordinates":[7722,48747]},{"type":"Point","coordinates":[1734,46242]},{"type":"Point","coordinates":[7717,48751]},{"type":"Point","coordinates":[7720,48752]},{"type":"Point","coordinates":[1937,46337]},{"type":"Point","coordinates":[7734,48759]},{"type":"Point","coordinates":[1803,46281]},{"type":"Point","coordinates":[7730,48760]},{"type":"Point","coordinates":[7736,48764]},{"type":"Point","coordinates":[1825,46293]},{"type":"Point","coordinates":[7736,48765]},{"type":"Point","coordinates":[7729,48762]},{"type":"Point","coordinates":[7730,48763]},{"type":"Point","coordinates":[7735,48765]},{"type":"Point","coordinates":[7729,48763]},{"type":"Point","coordinates":[7737,48767]},{"type":"Point","coordinates":[7736,48767]},{"type":"Point","coordinates":[7736,48768]},{"type":"Point","coordinates":[78192,53903]},{"type":"Point","coordinates":[8080,48903]},{"type":"Point","coordinates":[7703,48757]},{"type":"Point","coordinates":[7699,48767]},{"type":"Point","coordinates":[7699,48768]},{"type":"Point","coordinates":[7705,48771]},{"type":"Point","coordinates":[1740,46275]},{"type":"Point","coordinates":[7705,48772]},{"type":"Point","coordinates":[7701,48771]},{"type":"Point","coordinates":[7700,48772]},{"type":"Point","coordinates":[7696,48771]},{"type":"Point","coordinates":[7699,48772]},{"type":"Point","coordinates":[7696,48772]},{"type":"Point","coordinates":[7697,48773]},{"type":"Point","coordinates":[7698,48773]},{"type":"Point","coordinates":[7696,48772]},{"type":"Point","coordinates":[7743,48792]},{"type":"Point","coordinates":[7698,48775]},{"type":"Point","coordinates":[7694,48774]},{"type":"Point","coordinates":[7698,48776]},{"type":"Point","coordinates":[7698,48776]},{"type":"Point","coordinates":[7698,48777]},{"type":"Point","coordinates":[7698,48777]},{"type":"Point","coordinates":[7696,48776]},{"type":"Point","coordinates":[7697,48776]},{"type":"Point","coordinates":[7697,48777]},{"type":"Point","coordinates":[7698,48778]},{"type":"Point","coordinates":[7696,48778]},{"type":"Point","coordinates":[7696,48778]},{"type":"Point","coordinates":[7697,48778]},{"type":"Point","coordinates":[7696,48778]},{"type":"Point","coordinates":[7696,48779]},{"type":"Point","coordinates":[7686,48775]},{"type":"Point","coordinates":[7696,48779]},{"type":"Point","coordinates":[7694,48778]},{"type":"Point","coordinates":[7694,48779]},{"type":"Point","coordinates":[7685,48775]},{"type":"Point","coordinates":[7696,48780]},{"type":"Point","coordinates":[77601,54070]},{"type":"Point","coordinates":[7703,48784]},{"type":"Point","coordinates":[7687,48778]},{"type":"Point","coordinates":[7701,48784]},{"type":"Point","coordinates":[7688,48779]},{"type":"Point","coordinates":[7725,48794]},{"type":"Point","coordinates":[7687,48779]},{"type":"Point","coordinates":[7692,48782]},{"type":"Point","coordinates":[7687,48780]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7698,48785]},{"type":"Point","coordinates":[7689,48781]},{"type":"Point","coordinates":[7687,48781]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7689,48781]},{"type":"Point","coordinates":[7689,48781]},{"type":"Point","coordinates":[7696,48784]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7701,48786]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7702,48787]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7688,48781]},{"type":"Point","coordinates":[7688,48782]},{"type":"Point","coordinates":[7688,48782]},{"type":"Point","coordinates":[7694,48784]},{"type":"Point","coordinates":[7689,48782]},{"type":"Point","coordinates":[1907,46367]},{"type":"Point","coordinates":[1904,46367]},{"type":"Point","coordinates":[7691,48785]},{"type":"Point","coordinates":[7699,48788]},{"type":"Point","coordinates":[7690,48785]},{"type":"Point","coordinates":[7699,48789]},{"type":"Point","coordinates":[7726,48801]},{"type":"Point","coordinates":[7701,48791]},{"type":"Point","coordinates":[1933,46387]},{"type":"Point","coordinates":[7727,48805]},{"type":"Point","coordinates":[7727,48805]},{"type":"Point","coordinates":[7727,48805]},{"type":"Point","coordinates":[7727,48805]},{"type":"Point","coordinates":[7684,48790]},{"type":"Point","coordinates":[79359,53660]},{"type":"Point","coordinates":[1901,46375]},{"type":"Point","coordinates":[1818,46338]},{"type":"Point","coordinates":[7696,48796]},{"type":"Point","coordinates":[67900,55925]},{"type":"Point","coordinates":[1925,46387]},{"type":"Point","coordinates":[1818,46340]},{"type":"Point","coordinates":[67899,55926]},{"type":"Point","coordinates":[67899,55927]},{"type":"Point","coordinates":[67896,55928]},{"type":"Point","coordinates":[7726,48812]},{"type":"Point","coordinates":[1930,46393]},{"type":"Point","coordinates":[7725,48814]},{"type":"Point","coordinates":[7742,48821]},{"type":"Point","coordinates":[67899,55931]},{"type":"Point","coordinates":[7735,48820]},{"type":"Point","coordinates":[7683,48800]},{"type":"Point","coordinates":[67897,55934]},{"type":"Point","coordinates":[7700,48808]},{"type":"Point","coordinates":[67897,55934]},{"type":"Point","coordinates":[7726,48819]},{"type":"Point","coordinates":[7739,48826]},{"type":"Point","coordinates":[7708,48815]},{"type":"Point","coordinates":[7710,48816]},{"type":"Point","coordinates":[1823,46356]},{"type":"Point","coordinates":[7739,48831]},{"type":"Point","coordinates":[73028,55075]},{"type":"Point","coordinates":[7661,48802]},{"type":"Point","coordinates":[7728,48830]},{"type":"Point","coordinates":[7725,48830]},{"type":"Point","coordinates":[7728,48832]},{"type":"Point","coordinates":[7691,48818]},{"type":"Point","coordinates":[7736,48836]},{"type":"Point","coordinates":[7670,48812]},{"type":"Point","coordinates":[7668,48811]},{"type":"Point","coordinates":[7668,48811]},{"type":"Point","coordinates":[1809,46361]},{"type":"Point","coordinates":[7668,48812]},{"type":"Point","coordinates":[7667,48813]},{"type":"Point","coordinates":[7688,48822]},{"type":"Point","coordinates":[7689,48823]},{"type":"Point","coordinates":[7703,48831]},{"type":"Point","coordinates":[7669,48819]},{"type":"Point","coordinates":[7669,48819]},{"type":"Point","coordinates":[7691,48831]},{"type":"Point","coordinates":[67895,55961]},{"type":"Point","coordinates":[7695,48838]},{"type":"Point","coordinates":[72709,55159]},{"type":"Point","coordinates":[7692,48840]},{"type":"Point","coordinates":[7690,48839]},{"type":"Point","coordinates":[1795,46375]},{"type":"Point","coordinates":[7698,48844]},{"type":"Point","coordinates":[72693,55170]},{"type":"Point","coordinates":[72693,55170]},{"type":"Point","coordinates":[72693,55170]},{"type":"Point","coordinates":[72693,55170]},{"type":"Point","coordinates":[72699,55169]},{"type":"Point","coordinates":[72698,55169]},{"type":"Point","coordinates":[72698,55169]},{"type":"Point","coordinates":[1817,46391]},{"type":"Point","coordinates":[7693,48849]},{"type":"Point","coordinates":[80114,53524]},{"type":"Point","coordinates":[7656,48838]},{"type":"Point","coordinates":[7691,48854]},{"type":"Point","coordinates":[8172,49054]},{"type":"Point","coordinates":[1852,46434]},{"type":"Point","coordinates":[7682,48870]},{"type":"Point","coordinates":[1852,46434]},{"type":"Point","coordinates":[1854,46436]},{"type":"Point","coordinates":[1858,46437]},{"type":"Point","coordinates":[1860,46443]},{"type":"Point","coordinates":[89443,50780]},{"type":"Point","coordinates":[1896,46501]},{"type":"Point","coordinates":[78245,54072]},{"type":"Point","coordinates":[1947,46539]},{"type":"Point","coordinates":[1934,46545]},{"type":"Point","coordinates":[78219,54090]},{"type":"Point","coordinates":[1935,46547]},{"type":"Point","coordinates":[72670,55277]},{"type":"Point","coordinates":[1735,46461]},{"type":"Point","coordinates":[1732,46463]},{"type":"Point","coordinates":[1742,46468]},{"type":"Point","coordinates":[7928,49049]},{"type":"Point","coordinates":[1752,46474]},{"type":"Point","coordinates":[1760,46478]},{"type":"Point","coordinates":[1735,46467]},{"type":"Point","coordinates":[1772,46484]},{"type":"Point","coordinates":[1737,46469]},{"type":"Point","coordinates":[1749,46475]},{"type":"Point","coordinates":[1743,46474]},{"type":"Point","coordinates":[1743,46474]},{"type":"Point","coordinates":[1735,46470]},{"type":"Point","coordinates":[1760,46484]},{"type":"Point","coordinates":[1760,46485]},{"type":"Point","coordinates":[1758,46485]},{"type":"Point","coordinates":[1760,46486]},{"type":"Point","coordinates":[1758,46485]},{"type":"Point","coordinates":[1758,46487]},{"type":"Point","coordinates":[1758,46489]},{"type":"Point","coordinates":[1738,46481]},{"type":"Point","coordinates":[1746,46487]},{"type":"Point","coordinates":[1751,46491]},{"type":"Point","coordinates":[1753,46495]},{"type":"Point","coordinates":[66582,56289]},{"type":"Point","coordinates":[1748,46493]},{"type":"Point","coordinates":[1748,46493]},{"type":"Point","coordinates":[1736,46488]},{"type":"Point","coordinates":[1754,46496]},{"type":"Point","coordinates":[1741,46491]},{"type":"Point","coordinates":[1756,46497]},{"type":"Point","coordinates":[1747,46498]},{"type":"Point","coordinates":[78101,54165]},{"type":"Point","coordinates":[1746,46511]},{"type":"Point","coordinates":[1728,46504]},{"type":"Point","coordinates":[80105,53674]},{"type":"Point","coordinates":[7230,48818]},{"type":"Point","coordinates":[1746,46514]},{"type":"Point","coordinates":[1745,46516]},{"type":"Point","coordinates":[1745,46517]},{"type":"Point","coordinates":[1745,46520]},{"type":"Point","coordinates":[1749,46522]},{"type":"Point","coordinates":[1747,46524]},{"type":"Point","coordinates":[1744,46523]},{"type":"Point","coordinates":[1747,46526]},{"type":"Point","coordinates":[1744,46526]},{"type":"Point","coordinates":[1745,46526]},{"type":"Point","coordinates":[7583,48983]},{"type":"Point","coordinates":[7829,49088]},{"type":"Point","coordinates":[8016,49164]},{"type":"Point","coordinates":[8057,49181]},{"type":"Point","coordinates":[2063,46696]},{"type":"Point","coordinates":[55322,57321]},{"type":"Point","coordinates":[2083,46720]},{"type":"Point","coordinates":[2114,46734]},{"type":"Point","coordinates":[8016,49183]},{"type":"Point","coordinates":[8016,49183]},{"type":"Point","coordinates":[8011,49185]},{"type":"Point","coordinates":[59775,57085]},{"type":"Point","coordinates":[1863,46630]},{"type":"Point","coordinates":[8008,49188]},{"type":"Point","coordinates":[8010,49189]},{"type":"Point","coordinates":[7993,49188]},{"type":"Point","coordinates":[7941,49172]},{"type":"Point","coordinates":[7543,49018]},{"type":"Point","coordinates":[8004,49200]},{"type":"Point","coordinates":[7547,49023]},{"type":"Point","coordinates":[7963,49187]},{"type":"Point","coordinates":[79693,53862]},{"type":"Point","coordinates":[78015,54272]},{"type":"Point","coordinates":[1855,46656]},{"type":"Point","coordinates":[1844,46653]},{"type":"Point","coordinates":[1844,46654]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49229]},{"type":"Point","coordinates":[8031,49230]},{"type":"Point","coordinates":[8031,49230]},{"type":"Point","coordinates":[8031,49230]},{"type":"Point","coordinates":[8655,49470]},{"type":"Point","coordinates":[8068,49248]},{"type":"Point","coordinates":[7954,49205]},{"type":"Point","coordinates":[1862,46676]},{"type":"Point","coordinates":[7978,49224]},{"type":"Point","coordinates":[1749,46630]},{"type":"Point","coordinates":[7948,49219]},{"type":"Point","coordinates":[2055,46775]},{"type":"Point","coordinates":[2077,46785]},{"type":"Point","coordinates":[2077,46785]},{"type":"Point","coordinates":[1767,46647]},{"type":"Point","coordinates":[58022,57264]},{"type":"Point","coordinates":[1772,46654]},{"type":"Point","coordinates":[1884,46709]},{"type":"Point","coordinates":[8013,49258]},{"type":"Point","coordinates":[55668,57397]},{"type":"Point","coordinates":[7658,49134]},{"type":"Point","coordinates":[2107,46825]},{"type":"Point","coordinates":[1779,46681]},{"type":"Point","coordinates":[7822,49207]},{"type":"Point","coordinates":[7822,49207]},{"type":"Point","coordinates":[7820,49206]},{"type":"Point","coordinates":[7822,49207]},{"type":"Point","coordinates":[7718,49167]},{"type":"Point","coordinates":[7823,49207]},{"type":"Point","coordinates":[7818,49207]},{"type":"Point","coordinates":[7359,49028]},{"type":"Point","coordinates":[7820,49208]},{"type":"Point","coordinates":[7821,49208]},{"type":"Point","coordinates":[7821,49209]},{"type":"Point","coordinates":[7818,49208]},{"type":"Point","coordinates":[8016,49285]},{"type":"Point","coordinates":[7818,49208]},{"type":"Point","coordinates":[7821,49211]},{"type":"Point","coordinates":[7821,49211]},{"type":"Point","coordinates":[7821,49212]},{"type":"Point","coordinates":[7821,49212]},{"type":"Point","coordinates":[7826,49219]},{"type":"Point","coordinates":[7826,49219]},{"type":"Point","coordinates":[7826,49219]},{"type":"Point","coordinates":[7825,49219]},{"type":"Point","coordinates":[7825,49219]},{"type":"Point","coordinates":[7825,49219]},{"type":"Point","coordinates":[7825,49219]},{"type":"Point","coordinates":[7826,49219]},{"type":"Point","coordinates":[7825,49219]},{"type":"Point","coordinates":[7825,49219]},{"type":"Point","coordinates":[7824,49221]},{"type":"Point","coordinates":[7824,49222]},{"type":"Point","coordinates":[1781,46702]},{"type":"Point","coordinates":[7822,49226]},{"type":"Point","coordinates":[1782,46707]},{"type":"Point","coordinates":[7821,49226]},{"type":"Point","coordinates":[1883,46754]},{"type":"Point","coordinates":[63670,56841]},{"type":"Point","coordinates":[7824,49233]},{"type":"Point","coordinates":[7812,49229]},{"type":"Point","coordinates":[7841,49241]},{"type":"Point","coordinates":[1879,46758]},{"type":"Point","coordinates":[1975,46801]},{"type":"Point","coordinates":[7824,49236]},{"type":"Point","coordinates":[7828,49239]},{"type":"Point","coordinates":[8029,49317]},{"type":"Point","coordinates":[1878,46768]},{"type":"Point","coordinates":[7807,49239]},{"type":"Point","coordinates":[1784,46731]},{"type":"Point","coordinates":[1761,46721]},{"type":"Point","coordinates":[8023,49329]},{"type":"Point","coordinates":[89434,51097]},{"type":"Point","coordinates":[1775,46730]},{"type":"Point","coordinates":[1774,46730]},{"type":"Point","coordinates":[77910,54413]},{"type":"Point","coordinates":[1777,46734]},{"type":"Point","coordinates":[1771,46732]},{"type":"Point","coordinates":[1768,46733]},{"type":"Point","coordinates":[1768,46734]},{"type":"Point","coordinates":[1765,46733]},{"type":"Point","coordinates":[1772,46737]},{"type":"Point","coordinates":[1763,46734]},{"type":"Point","coordinates":[1762,46734]},{"type":"Point","coordinates":[1768,46739]},{"type":"Point","coordinates":[7754,49254]},{"type":"Point","coordinates":[7773,49277]},{"type":"Point","coordinates":[77864,54473]},{"type":"Point","coordinates":[67942,56379]},{"type":"Point","coordinates":[79026,54221]},{"type":"Point","coordinates":[7745,49320]},{"type":"Point","coordinates":[79098,54229]},{"type":"Point","coordinates":[77836,54537]},{"type":"Point","coordinates":[7780,49345]},{"type":"Point","coordinates":[7780,49345]},{"type":"Point","coordinates":[7780,49345]},{"type":"Point","coordinates":[7780,49345]},{"type":"Point","coordinates":[55452,57581]},{"type":"Point","coordinates":[78760,54337]},{"type":"Point","coordinates":[88207,51637]},{"type":"Point","coordinates":[88193,51649]},{"type":"Point","coordinates":[61536,57232]},{"type":"Point","coordinates":[61535,57239]},{"type":"Point","coordinates":[61535,57242]},{"type":"Point","coordinates":[61536,57244]},{"type":"Point","coordinates":[61534,57245]},{"type":"Point","coordinates":[79268,54264]},{"type":"Point","coordinates":[50707,57734]},{"type":"Point","coordinates":[79635,54196]},{"type":"Point","coordinates":[58170,57537]},{"type":"Point","coordinates":[79118,54341]},{"type":"Point","coordinates":[79126,54347]},{"type":"Point","coordinates":[79128,54348]},{"type":"Point","coordinates":[79130,54353]},{"type":"Point","coordinates":[79130,54353]},{"type":"Point","coordinates":[79130,54353]},{"type":"Point","coordinates":[81378,53791]},{"type":"Point","coordinates":[55861,57705]},{"type":"Point","coordinates":[50877,57810]},{"type":"Point","coordinates":[1791,47021]},{"type":"Point","coordinates":[85164,52749]},{"type":"Point","coordinates":[50733,57839]},{"type":"Point","coordinates":[80552,54061]},{"type":"Point","coordinates":[76024,55172]},{"type":"Point","coordinates":[1737,47059]},{"type":"Point","coordinates":[1729,47064]},{"type":"Point","coordinates":[72832,55837]},{"type":"Point","coordinates":[1728,47066]},{"type":"Point","coordinates":[3986,48055]},{"type":"Point","coordinates":[54902,57874]},{"type":"Point","coordinates":[3949,48086]},{"type":"Point","coordinates":[1870,47195]},{"type":"Point","coordinates":[4093,48163]},{"type":"Point","coordinates":[63905,57259]},{"type":"Point","coordinates":[59676,57673]},{"type":"Point","coordinates":[3776,48069]},{"type":"Point","coordinates":[76062,55298]},{"type":"Point","coordinates":[64942,57180]},{"type":"Point","coordinates":[4122,48231]},{"type":"Point","coordinates":[54660,57956]},{"type":"Point","coordinates":[79233,54570]},{"type":"Point","coordinates":[7629,49674]},{"type":"Point","coordinates":[3772,48103]},{"type":"Point","coordinates":[7630,49683]},{"type":"Point","coordinates":[49385,58022]},{"type":"Point","coordinates":[60836,57639]},{"type":"Point","coordinates":[4025,48239]},{"type":"Point","coordinates":[79338,54612]},{"type":"Point","coordinates":[79338,54614]},{"type":"Point","coordinates":[79167,54665]},{"type":"Point","coordinates":[68436,56794]},{"type":"Point","coordinates":[68435,56795]},{"type":"Point","coordinates":[59885,57767]},{"type":"Point","coordinates":[59886,57767]},{"type":"Point","coordinates":[77516,55067]},{"type":"Point","coordinates":[77516,55067]},{"type":"Point","coordinates":[77513,55074]},{"type":"Point","coordinates":[77429,55132]},{"type":"Point","coordinates":[52077,58142]},{"type":"Point","coordinates":[3952,48309]},{"type":"Point","coordinates":[77437,55153]},{"type":"Point","coordinates":[77436,55154]},{"type":"Point","coordinates":[77436,55155]},{"type":"Point","coordinates":[77434,55157]},{"type":"Point","coordinates":[77434,55157]},{"type":"Point","coordinates":[1814,47410]},{"type":"Point","coordinates":[1814,47412]},{"type":"Point","coordinates":[77464,55164]},{"type":"Point","coordinates":[58248,57977]},{"type":"Point","coordinates":[69295,56781]},{"type":"Point","coordinates":[68382,56927]},{"type":"Point","coordinates":[75725,55591]},{"type":"Point","coordinates":[75722,55593]},{"type":"Point","coordinates":[1795,47459]},{"type":"Point","coordinates":[1766,47448]},{"type":"Point","coordinates":[78707,54926]},{"type":"Point","coordinates":[7725,49938]},{"type":"Point","coordinates":[77488,55229]},{"type":"Point","coordinates":[75912,55583]},{"type":"Point","coordinates":[1802,47482]},{"type":"Point","coordinates":[1816,47499]},{"type":"Point","coordinates":[77480,55245]},{"type":"Point","coordinates":[1835,47524]},{"type":"Point","coordinates":[1836,47527]},{"type":"Point","coordinates":[1836,47527]},{"type":"Point","coordinates":[1836,47527]},{"type":"Point","coordinates":[77478,55263]},{"type":"Point","coordinates":[1836,47528]},{"type":"Point","coordinates":[1836,47528]},{"type":"Point","coordinates":[7715,49980]},{"type":"Point","coordinates":[3726,48360]},{"type":"Point","coordinates":[68731,56952]},{"type":"Point","coordinates":[68738,56951]},{"type":"Point","coordinates":[72939,56231]},{"type":"Point","coordinates":[1839,47550]},{"type":"Point","coordinates":[1848,47559]},{"type":"Point","coordinates":[54204,58279]},{"type":"Point","coordinates":[1856,47575]},{"type":"Point","coordinates":[1833,47565]},{"type":"Point","coordinates":[1858,47578]},{"type":"Point","coordinates":[1860,47584]},{"type":"Point","coordinates":[1860,47585]},{"type":"Point","coordinates":[74016,56060]},{"type":"Point","coordinates":[2085,47694]},{"type":"Point","coordinates":[1818,47577]},{"type":"Point","coordinates":[3857,48467]},{"type":"Point","coordinates":[1872,47607]},{"type":"Point","coordinates":[1870,47613]},{"type":"Point","coordinates":[82439,54077]},{"type":"Point","coordinates":[1870,47615]},{"type":"Point","coordinates":[1869,47615]},{"type":"Point","coordinates":[1861,47613]},{"type":"Point","coordinates":[1867,47617]},{"type":"Point","coordinates":[1859,47614]},{"type":"Point","coordinates":[1859,47614]},{"type":"Point","coordinates":[1866,47618]},{"type":"Point","coordinates":[1866,47618]},{"type":"Point","coordinates":[1859,47615]},{"type":"Point","coordinates":[1859,47615]},{"type":"Point","coordinates":[1859,47615]},{"type":"Point","coordinates":[1868,47620]},{"type":"Point","coordinates":[1861,47618]},{"type":"Point","coordinates":[1864,47620]},{"type":"Point","coordinates":[1870,47623]},{"type":"Point","coordinates":[1866,47621]},{"type":"Point","coordinates":[1865,47621]},{"type":"Point","coordinates":[1866,47623]},{"type":"Point","coordinates":[1866,47623]},{"type":"Point","coordinates":[1871,47626]},{"type":"Point","coordinates":[1867,47625]},{"type":"Point","coordinates":[1871,47626]},{"type":"Point","coordinates":[1859,47622]},{"type":"Point","coordinates":[1870,47627]},{"type":"Point","coordinates":[1869,47627]},{"type":"Point","coordinates":[1872,47630]},{"type":"Point","coordinates":[76135,55653]},{"type":"Point","coordinates":[1860,47629]},{"type":"Point","coordinates":[2037,47709]},{"type":"Point","coordinates":[79198,54943]},{"type":"Point","coordinates":[1931,47662]},{"type":"Point","coordinates":[1999,47693]},{"type":"Point","coordinates":[1887,47647]},{"type":"Point","coordinates":[1885,47648]},{"type":"Point","coordinates":[1882,47651]},{"type":"Point","coordinates":[68543,57071]},{"type":"Point","coordinates":[1881,47651]},{"type":"Point","coordinates":[1883,47656]},{"type":"Point","coordinates":[1913,47681]},{"type":"Point","coordinates":[7675,50080]},{"type":"Point","coordinates":[7672,50080]},{"type":"Point","coordinates":[7672,50080]},{"type":"Point","coordinates":[1875,47669]},{"type":"Point","coordinates":[7669,50080]},{"type":"Point","coordinates":[7669,50080]},{"type":"Point","coordinates":[7666,50081]},{"type":"Point","coordinates":[7666,50082]},{"type":"Point","coordinates":[7667,50084]},{"type":"Point","coordinates":[7666,50083]},{"type":"Point","coordinates":[7673,50090]},{"type":"Point","coordinates":[2212,47836]},{"type":"Point","coordinates":[7680,50105]},{"type":"Point","coordinates":[7678,50106]},{"type":"Point","coordinates":[3748,48512]},{"type":"Point","coordinates":[7668,50119]},{"type":"Point","coordinates":[7667,50121]},{"type":"Point","coordinates":[7668,50122]},{"type":"Point","coordinates":[1899,47724]},{"type":"Point","coordinates":[1904,47727]},{"type":"Point","coordinates":[1894,47729]},{"type":"Point","coordinates":[6085,49506]},{"type":"Point","coordinates":[51352,58459]},{"type":"Point","coordinates":[51348,58462]},{"type":"Point","coordinates":[2041,47810]},{"type":"Point","coordinates":[51549,58472]},{"type":"Point","coordinates":[51549,58472]},{"type":"Point","coordinates":[51549,58473]},{"type":"Point","coordinates":[3808,48582]},{"type":"Point","coordinates":[54098,58440]},{"type":"Point","coordinates":[51542,58481]},{"type":"Point","coordinates":[54086,58446]},{"type":"Point","coordinates":[51534,58504]},{"type":"Point","coordinates":[51542,58506]},{"type":"Point","coordinates":[74191,56202]},{"type":"Point","coordinates":[74224,56206]},{"type":"Point","coordinates":[1970,47838]},{"type":"Point","coordinates":[79178,55108]},{"type":"Point","coordinates":[78877,55187]},{"type":"Point","coordinates":[54594,58494]},{"type":"Point","coordinates":[78714,55237]},{"type":"Point","coordinates":[2458,48075]},{"type":"Point","coordinates":[74714,56142]},{"type":"Point","coordinates":[72832,56528]},{"type":"Point","coordinates":[83730,53937]},{"type":"Point","coordinates":[1982,47897]},{"type":"Point","coordinates":[7762,50310]},{"type":"Point","coordinates":[7674,50277]},{"type":"Point","coordinates":[7762,50313]},{"type":"Point","coordinates":[7748,50309]},{"type":"Point","coordinates":[84756,53666]},{"type":"Point","coordinates":[7744,50320]},{"type":"Point","coordinates":[54798,58558]},{"type":"Point","coordinates":[69235,57201]},{"type":"Point","coordinates":[84755,53686]},{"type":"Point","coordinates":[69233,57203]},{"type":"Point","coordinates":[69232,57208]},{"type":"Point","coordinates":[69232,57210]},{"type":"Point","coordinates":[77977,55495]},{"type":"Point","coordinates":[2008,47962]},{"type":"Point","coordinates":[82382,54379]},{"type":"Point","coordinates":[82382,54379]},{"type":"Point","coordinates":[1995,47965]},{"type":"Point","coordinates":[69217,57225]},{"type":"Point","coordinates":[78031,55505]},{"type":"Point","coordinates":[1987,47977]},{"type":"Point","coordinates":[51117,58654]},{"type":"Point","coordinates":[1986,47980]},{"type":"Point","coordinates":[71536,56852]},{"type":"Point","coordinates":[82317,54419]},{"type":"Point","coordinates":[1963,47977]},{"type":"Point","coordinates":[69228,57249]},{"type":"Point","coordinates":[77996,55540]},{"type":"Point","coordinates":[2025,48021]},{"type":"Point","coordinates":[78166,55505]},{"type":"Point","coordinates":[67971,57467]},{"type":"Point","coordinates":[2267,48150]},{"type":"Point","coordinates":[56288,58588]},{"type":"Point","coordinates":[2029,48053]},{"type":"Point","coordinates":[49105,58691]},{"type":"Point","coordinates":[49105,58692]},{"type":"Point","coordinates":[2037,48057]},{"type":"Point","coordinates":[49105,58693]},{"type":"Point","coordinates":[49105,58694]},{"type":"Point","coordinates":[49105,58696]},{"type":"Point","coordinates":[2024,48059]},{"type":"Point","coordinates":[2024,48059]},{"type":"Point","coordinates":[2024,48059]},{"type":"Point","coordinates":[67955,57494]},{"type":"Point","coordinates":[49071,58715]},{"type":"Point","coordinates":[49071,58715]},{"type":"Point","coordinates":[49071,58715]},{"type":"Point","coordinates":[49073,58716]},{"type":"Point","coordinates":[49073,58716]},{"type":"Point","coordinates":[49073,58716]},{"type":"Point","coordinates":[49073,58716]},{"type":"Point","coordinates":[49073,58716]},{"type":"Point","coordinates":[49072,58717]},{"type":"Point","coordinates":[82683,54396]},{"type":"Point","coordinates":[49074,58717]},{"type":"Point","coordinates":[49095,58719]},{"type":"Point","coordinates":[49070,58720]},{"type":"Point","coordinates":[49075,58720]},{"type":"Point","coordinates":[49076,58723]},{"type":"Point","coordinates":[78423,55503]},{"type":"Point","coordinates":[49091,58730]},{"type":"Point","coordinates":[49104,58731]},{"type":"Point","coordinates":[49090,58732]},{"type":"Point","coordinates":[68935,57380]},{"type":"Point","coordinates":[49093,58736]},{"type":"Point","coordinates":[86512,53287]},{"type":"Point","coordinates":[2324,48230]},{"type":"Point","coordinates":[78935,55392]},{"type":"Point","coordinates":[7946,50554]},{"type":"Point","coordinates":[7946,50556]},{"type":"Point","coordinates":[68339,57489]},{"type":"Point","coordinates":[7910,50550]},{"type":"Point","coordinates":[7910,50550]},{"type":"Point","coordinates":[7938,50562]},{"type":"Point","coordinates":[7919,50558]},{"type":"Point","coordinates":[78593,55497]},{"type":"Point","coordinates":[71035,57064]},{"type":"Point","coordinates":[84224,54004]},{"type":"Point","coordinates":[84230,54007]},{"type":"Point","coordinates":[7897,50563]},{"type":"Point","coordinates":[7770,50516]},{"type":"Point","coordinates":[71013,57078]},{"type":"Point","coordinates":[7919,50574]},{"type":"Point","coordinates":[71342,57024]},{"type":"Point","coordinates":[7891,50574]},{"type":"Point","coordinates":[83635,54208]},{"type":"Point","coordinates":[49083,58804]},{"type":"Point","coordinates":[54025,58794]},{"type":"Point","coordinates":[68929,57461]},{"type":"Point","coordinates":[78627,55556]},{"type":"Point","coordinates":[49116,58827]},{"type":"Point","coordinates":[49127,58828]},{"type":"Point","coordinates":[7899,50622]},{"type":"Point","coordinates":[7768,50573]},{"type":"Point","coordinates":[7964,50653]},{"type":"Point","coordinates":[74335,56516]},{"type":"Point","coordinates":[2313,48328]},{"type":"Point","coordinates":[7823,50604]},{"type":"Point","coordinates":[49068,58841]},{"type":"Point","coordinates":[78584,55595]},{"type":"Point","coordinates":[78584,55595]},{"type":"Point","coordinates":[7828,50626]},{"type":"Point","coordinates":[78606,55604]},{"type":"Point","coordinates":[88806,52682]},{"type":"Point","coordinates":[54933,58827]},{"type":"Point","coordinates":[84320,54085]},{"type":"Point","coordinates":[78557,55619]},{"type":"Point","coordinates":[78557,55619]},{"type":"Point","coordinates":[2124,48286]},{"type":"Point","coordinates":[7680,50588]},{"type":"Point","coordinates":[7681,50590]},{"type":"Point","coordinates":[54871,58837]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56998]},{"type":"Point","coordinates":[72071,56999]},{"type":"Point","coordinates":[72071,56999]},{"type":"Point","coordinates":[72071,56999]},{"type":"Point","coordinates":[72070,56999]},{"type":"Point","coordinates":[72071,56999]},{"type":"Point","coordinates":[72071,56999]},{"type":"Point","coordinates":[72069,57000]},{"type":"Point","coordinates":[72069,57000]},{"type":"Point","coordinates":[7678,50596]},{"type":"Point","coordinates":[72067,57004]},{"type":"Point","coordinates":[72065,57004]},{"type":"Point","coordinates":[78606,55622]},{"type":"Point","coordinates":[78569,55632]},{"type":"Point","coordinates":[72067,57006]},{"type":"Point","coordinates":[78570,55633]},{"type":"Point","coordinates":[78570,55633]},{"type":"Point","coordinates":[78570,55633]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[72066,57007]},{"type":"Point","coordinates":[77974,55785]},{"type":"Point","coordinates":[78001,55780]},{"type":"Point","coordinates":[7676,50610]},{"type":"Point","coordinates":[77998,55783]},{"type":"Point","coordinates":[77999,55783]},{"type":"Point","coordinates":[78001,55782]},{"type":"Point","coordinates":[78002,55783]},{"type":"Point","coordinates":[78001,55783]},{"type":"Point","coordinates":[78003,55783]},{"type":"Point","coordinates":[78003,55783]},{"type":"Point","coordinates":[78003,55784]},{"type":"Point","coordinates":[78006,55783]},{"type":"Point","coordinates":[78000,55786]},{"type":"Point","coordinates":[77996,55788]},{"type":"Point","coordinates":[77996,55789]},{"type":"Point","coordinates":[77995,55790]},{"type":"Point","coordinates":[54668,58874]},{"type":"Point","coordinates":[54676,58874]},{"type":"Point","coordinates":[54678,58874]},{"type":"Point","coordinates":[54678,58874]},{"type":"Point","coordinates":[78043,55781]},{"type":"Point","coordinates":[78017,55788]},{"type":"Point","coordinates":[77992,55794]},{"type":"Point","coordinates":[78017,55790]},{"type":"Point","coordinates":[78500,55675]},{"type":"Point","coordinates":[77954,55806]},{"type":"Point","coordinates":[77957,55807]},{"type":"Point","coordinates":[57849,58741]},{"type":"Point","coordinates":[61993,58427]},{"type":"Point","coordinates":[77978,55804]},{"type":"Point","coordinates":[77994,55800]},{"type":"Point","coordinates":[69102,57539]},{"type":"Point","coordinates":[77994,55801]},{"type":"Point","coordinates":[77994,55801]},{"type":"Point","coordinates":[77950,55817]},{"type":"Point","coordinates":[2280,48407]},{"type":"Point","coordinates":[69483,57489]},{"type":"Point","coordinates":[78055,55798]},{"type":"Point","coordinates":[49060,58929]},{"type":"Point","coordinates":[77950,55826]},{"type":"Point","coordinates":[78542,55688]},{"type":"Point","coordinates":[68851,57595]},{"type":"Point","coordinates":[77945,55831]},{"type":"Point","coordinates":[78542,55690]},{"type":"Point","coordinates":[78593,55678]},{"type":"Point","coordinates":[78593,55679]},{"type":"Point","coordinates":[78597,55680]},{"type":"Point","coordinates":[69032,57573]},{"type":"Point","coordinates":[72997,56888]},{"type":"Point","coordinates":[78596,55682]},{"type":"Point","coordinates":[54771,58905]},{"type":"Point","coordinates":[78551,55695]},{"type":"Point","coordinates":[78535,55699]},{"type":"Point","coordinates":[54782,58907]},{"type":"Point","coordinates":[69820,57452]},{"type":"Point","coordinates":[78533,55704]},{"type":"Point","coordinates":[78534,55705]},{"type":"Point","coordinates":[78533,55707]},{"type":"Point","coordinates":[77941,55848]},{"type":"Point","coordinates":[78536,55708]},{"type":"Point","coordinates":[69891,57449]},{"type":"Point","coordinates":[78535,55709]},{"type":"Point","coordinates":[77932,55857]},{"type":"Point","coordinates":[68850,57622]},{"type":"Point","coordinates":[78538,55720]},{"type":"Point","coordinates":[69877,57465]},{"type":"Point","coordinates":[81853,54879]},{"type":"Point","coordinates":[69877,57467]},{"type":"Point","coordinates":[78529,55727]},{"type":"Point","coordinates":[69880,57468]},{"type":"Point","coordinates":[78529,55729]},{"type":"Point","coordinates":[78531,55728]},{"type":"Point","coordinates":[78531,55728]},{"type":"Point","coordinates":[69890,57470]},{"type":"Point","coordinates":[78283,55796]},{"type":"Point","coordinates":[69889,57485]},{"type":"Point","coordinates":[69738,57510]},{"type":"Point","coordinates":[84121,54266]},{"type":"Point","coordinates":[54695,58955]},{"type":"Point","coordinates":[82440,54748]},{"type":"Point","coordinates":[82437,54749]},{"type":"Point","coordinates":[51174,59024]},{"type":"Point","coordinates":[2117,48420]},{"type":"Point","coordinates":[69911,57503]},{"type":"Point","coordinates":[2113,48435]},{"type":"Point","coordinates":[2100,48430]},{"type":"Point","coordinates":[68832,57687]},{"type":"Point","coordinates":[2113,48437]},{"type":"Point","coordinates":[69923,57520]},{"type":"Point","coordinates":[2097,48437]},{"type":"Point","coordinates":[68825,57697]},{"type":"Point","coordinates":[70834,57372]},{"type":"Point","coordinates":[73168,56950]},{"type":"Point","coordinates":[2096,48441]},{"type":"Point","coordinates":[83946,54366]},{"type":"Point","coordinates":[54718,59003]},{"type":"Point","coordinates":[78457,55814]},{"type":"Point","coordinates":[2129,48460]},{"type":"Point","coordinates":[90205,52383]},{"type":"Point","coordinates":[84224,54289]},{"type":"Point","coordinates":[2094,48453]},{"type":"Point","coordinates":[2094,48453]},{"type":"Point","coordinates":[84208,54301]},{"type":"Point","coordinates":[68793,57720]},{"type":"Point","coordinates":[83199,54593]},{"type":"Point","coordinates":[84238,54299]},{"type":"Point","coordinates":[68831,57731]},{"type":"Point","coordinates":[73823,56855]},{"type":"Point","coordinates":[54765,59031]},{"type":"Point","coordinates":[83730,54458]},{"type":"Point","coordinates":[83848,54424]},{"type":"Point","coordinates":[2172,48509]},{"type":"Point","coordinates":[83735,54463]},{"type":"Point","coordinates":[84108,54361]},{"type":"Point","coordinates":[59157,58826]},{"type":"Point","coordinates":[2127,48505]},{"type":"Point","coordinates":[2114,48500]},{"type":"Point","coordinates":[68778,57760]},{"type":"Point","coordinates":[2184,48538]},{"type":"Point","coordinates":[54728,59056]},{"type":"Point","coordinates":[78063,55961]},{"type":"Point","coordinates":[51216,59128]},{"type":"Point","coordinates":[54602,59082]},{"type":"Point","coordinates":[78497,55886]},{"type":"Point","coordinates":[78498,55886]},{"type":"Point","coordinates":[78497,55886]},{"type":"Point","coordinates":[78497,55886]},{"type":"Point","coordinates":[78497,55887]},{"type":"Point","coordinates":[78496,55890]},{"type":"Point","coordinates":[77150,56205]},{"type":"Point","coordinates":[77151,56209]},{"type":"Point","coordinates":[7964,50959]},{"type":"Point","coordinates":[2358,48664]},{"type":"Point","coordinates":[71302,57405]},{"type":"Point","coordinates":[61508,58704]},{"type":"Point","coordinates":[71301,57408]},{"type":"Point","coordinates":[61511,58707]},{"type":"Point","coordinates":[7809,50925]},{"type":"Point","coordinates":[71306,57415]},{"type":"Point","coordinates":[78483,55961]},{"type":"Point","coordinates":[69820,57703]},{"type":"Point","coordinates":[8041,51061]},{"type":"Point","coordinates":[2243,48686]},{"type":"Point","coordinates":[2300,48711]},{"type":"Point","coordinates":[8054,51079]},{"type":"Point","coordinates":[83998,54541]},{"type":"Point","coordinates":[2192,48682]},{"type":"Point","coordinates":[84122,54509]},{"type":"Point","coordinates":[2215,48714]},{"type":"Point","coordinates":[84583,54400]},{"type":"Point","coordinates":[84014,54568]},{"type":"Point","coordinates":[84014,54568]},{"type":"Point","coordinates":[84015,54568]},{"type":"Point","coordinates":[84014,54568]},{"type":"Point","coordinates":[84016,54568]},{"type":"Point","coordinates":[84016,54568]},{"type":"Point","coordinates":[84014,54569]},{"type":"Point","coordinates":[75520,56702]},{"type":"Point","coordinates":[78511,56026]},{"type":"Point","coordinates":[84189,54528]},{"type":"Point","coordinates":[2212,48733]},{"type":"Point","coordinates":[2213,48733]},{"type":"Point","coordinates":[74153,56992]},{"type":"Point","coordinates":[2212,48737]},{"type":"Point","coordinates":[2238,48750]},{"type":"Point","coordinates":[84038,54579]},{"type":"Point","coordinates":[2262,48762]},{"type":"Point","coordinates":[2212,48744]},{"type":"Point","coordinates":[2207,48749]},{"type":"Point","coordinates":[2317,48800]},{"type":"Point","coordinates":[78744,55997]},{"type":"Point","coordinates":[83944,54631]},{"type":"Point","coordinates":[84099,54590]},{"type":"Point","coordinates":[84040,54609]},{"type":"Point","coordinates":[84103,54593]},{"type":"Point","coordinates":[84104,54593]},{"type":"Point","coordinates":[84104,54593]},{"type":"Point","coordinates":[2291,48811]},{"type":"Point","coordinates":[84062,54608]},{"type":"Point","coordinates":[2232,48794]},{"type":"Point","coordinates":[8137,51221]},{"type":"Point","coordinates":[84127,54601]},{"type":"Point","coordinates":[2510,48920]},{"type":"Point","coordinates":[2288,48823]},{"type":"Point","coordinates":[84099,54615]},{"type":"Point","coordinates":[84918,54384]},{"type":"Point","coordinates":[84490,54512]},{"type":"Point","coordinates":[2256,48825]},{"type":"Point","coordinates":[79072,55970]},{"type":"Point","coordinates":[83149,54902]},{"type":"Point","coordinates":[84072,54639]},{"type":"Point","coordinates":[87919,53464]},{"type":"Point","coordinates":[51452,59368]},{"type":"Point","coordinates":[83902,54694]},{"type":"Point","coordinates":[83907,54693]},{"type":"Point","coordinates":[83897,54700]},{"type":"Point","coordinates":[89305,53014]},{"type":"Point","coordinates":[83903,54702]},{"type":"Point","coordinates":[2271,48851]},{"type":"Point","coordinates":[2268,48851]},{"type":"Point","coordinates":[2247,48845]},{"type":"Point","coordinates":[2264,48855]},{"type":"Point","coordinates":[77308,56412]},{"type":"Point","coordinates":[2410,48923]},{"type":"Point","coordinates":[7775,51131]},{"type":"Point","coordinates":[2259,48860]},{"type":"Point","coordinates":[83880,54724]},{"type":"Point","coordinates":[84105,54662]},{"type":"Point","coordinates":[83981,54699]},{"type":"Point","coordinates":[7661,51099]},{"type":"Point","coordinates":[83884,54731]},{"type":"Point","coordinates":[83884,54732]},{"type":"Point","coordinates":[74634,57010]},{"type":"Point","coordinates":[83891,54735]},{"type":"Point","coordinates":[7683,51114]},{"type":"Point","coordinates":[83891,54736]},{"type":"Point","coordinates":[76773,56562]},{"type":"Point","coordinates":[83971,54724]},{"type":"Point","coordinates":[7646,51115]},{"type":"Point","coordinates":[7683,51130]},{"type":"Point","coordinates":[7683,51130]},{"type":"Point","coordinates":[7687,51132]},{"type":"Point","coordinates":[7684,51131]},{"type":"Point","coordinates":[7683,51131]},{"type":"Point","coordinates":[7684,51131]},{"type":"Point","coordinates":[7687,51135]},{"type":"Point","coordinates":[7686,51134]},{"type":"Point","coordinates":[7683,51133]},{"type":"Point","coordinates":[7687,51135]},{"type":"Point","coordinates":[7685,51134]},{"type":"Point","coordinates":[7682,51134]},{"type":"Point","coordinates":[7682,51134]},{"type":"Point","coordinates":[7683,51135]},{"type":"Point","coordinates":[7682,51135]},{"type":"Point","coordinates":[7687,51137]},{"type":"Point","coordinates":[7687,51137]},{"type":"Point","coordinates":[7685,51136]},{"type":"Point","coordinates":[7685,51136]},{"type":"Point","coordinates":[7683,51135]},{"type":"Point","coordinates":[7687,51137]},{"type":"Point","coordinates":[7683,51136]},{"type":"Point","coordinates":[7682,51136]},{"type":"Point","coordinates":[7683,51137]},{"type":"Point","coordinates":[7685,51138]},{"type":"Point","coordinates":[7682,51137]},{"type":"Point","coordinates":[84813,54490]},{"type":"Point","coordinates":[7674,51136]},{"type":"Point","coordinates":[7674,51137]},{"type":"Point","coordinates":[7675,51137]},{"type":"Point","coordinates":[7675,51137]},{"type":"Point","coordinates":[7681,51140]},{"type":"Point","coordinates":[7681,51140]},{"type":"Point","coordinates":[61427,58981]},{"type":"Point","coordinates":[61414,58982]},{"type":"Point","coordinates":[2301,48931]},{"type":"Point","coordinates":[7783,51194]},{"type":"Point","coordinates":[78442,56218]},{"type":"Point","coordinates":[90408,52719]},{"type":"Point","coordinates":[84688,54565]},{"type":"Point","coordinates":[84688,54565]},{"type":"Point","coordinates":[79953,55861]},{"type":"Point","coordinates":[79960,55872]},{"type":"Point","coordinates":[79949,55883]},{"type":"Point","coordinates":[75203,56980]},{"type":"Point","coordinates":[78526,56236]},{"type":"Point","coordinates":[83912,54817]},{"type":"Point","coordinates":[8006,51330]},{"type":"Point","coordinates":[7779,51251]},{"type":"Point","coordinates":[83205,55032]},{"type":"Point","coordinates":[83204,55032]},{"type":"Point","coordinates":[58583,59268]},{"type":"Point","coordinates":[83205,55033]},{"type":"Point","coordinates":[90426,52772]},{"type":"Point","coordinates":[77191,56574]},{"type":"Point","coordinates":[90428,52775]},{"type":"Point","coordinates":[84384,54707]},{"type":"Point","coordinates":[83947,54835]},{"type":"Point","coordinates":[77175,56580]},{"type":"Point","coordinates":[83878,54859]},{"type":"Point","coordinates":[83896,54855]},{"type":"Point","coordinates":[83878,54860]},{"type":"Point","coordinates":[84057,54812]},{"type":"Point","coordinates":[83898,54861]},{"type":"Point","coordinates":[83898,54861]},{"type":"Point","coordinates":[83989,54835]},{"type":"Point","coordinates":[83896,54863]},{"type":"Point","coordinates":[82381,55291]},{"type":"Point","coordinates":[83897,54872]},{"type":"Point","coordinates":[83894,54878]},{"type":"Point","coordinates":[83898,54878]},{"type":"Point","coordinates":[68014,58318]},{"type":"Point","coordinates":[84145,54819]},{"type":"Point","coordinates":[83321,55055]},{"type":"Point","coordinates":[2327,49071]},{"type":"Point","coordinates":[83327,55059]},{"type":"Point","coordinates":[2327,49073]},{"type":"Point","coordinates":[84822,54637]},{"type":"Point","coordinates":[72787,57552]},{"type":"Point","coordinates":[74559,57205]},{"type":"Point","coordinates":[83871,54921]},{"type":"Point","coordinates":[75023,57113]},{"type":"Point","coordinates":[83915,54919]},{"type":"Point","coordinates":[2253,49079]},{"type":"Point","coordinates":[2253,49079]},{"type":"Point","coordinates":[77311,56643]},{"type":"Point","coordinates":[83870,54954]},{"type":"Point","coordinates":[84089,54896]},{"type":"Point","coordinates":[84089,54896]},{"type":"Point","coordinates":[84089,54896]},{"type":"Point","coordinates":[84090,54896]},{"type":"Point","coordinates":[78447,56391]},{"type":"Point","coordinates":[78361,56415]},{"type":"Point","coordinates":[78361,56415]},{"type":"Point","coordinates":[83910,54958]},{"type":"Point","coordinates":[83930,54952]},{"type":"Point","coordinates":[52609,59621]},{"type":"Point","coordinates":[52609,59622]},{"type":"Point","coordinates":[52609,59622]},{"type":"Point","coordinates":[83924,54957]},{"type":"Point","coordinates":[52607,59625]},{"type":"Point","coordinates":[52605,59625]},{"type":"Point","coordinates":[84119,54914]},{"type":"Point","coordinates":[83830,54999]},{"type":"Point","coordinates":[83889,54983]},{"type":"Point","coordinates":[84088,54932]},{"type":"Point","coordinates":[84088,54934]},{"type":"Point","coordinates":[83984,54968]},{"type":"Point","coordinates":[52617,59658]},{"type":"Point","coordinates":[83913,54999]},{"type":"Point","coordinates":[78512,56422]},{"type":"Point","coordinates":[85202,54622]},{"type":"Point","coordinates":[89263,53332]},{"type":"Point","coordinates":[78511,56424]},{"type":"Point","coordinates":[85201,54624]},{"type":"Point","coordinates":[83941,54994]},{"type":"Point","coordinates":[89267,53332]},{"type":"Point","coordinates":[83917,55001]},{"type":"Point","coordinates":[76741,56835]},{"type":"Point","coordinates":[83946,54995]},{"type":"Point","coordinates":[89266,53336]},{"type":"Point","coordinates":[83946,54997]},{"type":"Point","coordinates":[83948,54997]},{"type":"Point","coordinates":[83948,54997]},{"type":"Point","coordinates":[83946,54998]},{"type":"Point","coordinates":[83805,55039]},{"type":"Point","coordinates":[83946,54998]},{"type":"Point","coordinates":[76778,56845]},{"type":"Point","coordinates":[83965,55029]},{"type":"Point","coordinates":[78345,56507]},{"type":"Point","coordinates":[42850,59419]},{"type":"Point","coordinates":[83975,55040]},{"type":"Point","coordinates":[82188,55543]},{"type":"Point","coordinates":[83973,55044]},{"type":"Point","coordinates":[83973,55045]},{"type":"Point","coordinates":[80035,56109]},{"type":"Point","coordinates":[83973,55045]},{"type":"Point","coordinates":[83973,55045]},{"type":"Point","coordinates":[83893,55073]},{"type":"Point","coordinates":[83977,55055]},{"type":"Point","coordinates":[83911,55074]},{"type":"Point","coordinates":[83896,55084]},{"type":"Point","coordinates":[80048,56123]},{"type":"Point","coordinates":[83919,55078]},{"type":"Point","coordinates":[84007,55054]},{"type":"Point","coordinates":[71866,57898]},{"type":"Point","coordinates":[83924,55091]},{"type":"Point","coordinates":[54716,59714]},{"type":"Point","coordinates":[83746,55146]},{"type":"Point","coordinates":[70584,58137]},{"type":"Point","coordinates":[67097,58673]},{"type":"Point","coordinates":[78507,56525]},{"type":"Point","coordinates":[84149,55035]},{"type":"Point","coordinates":[2287,49271]},{"type":"Point","coordinates":[78471,56536]},{"type":"Point","coordinates":[78504,56530]},{"type":"Point","coordinates":[84935,54809]},{"type":"Point","coordinates":[2274,49271]},{"type":"Point","coordinates":[2236,49258]},{"type":"Point","coordinates":[78508,56536]},{"type":"Point","coordinates":[78311,56607]},{"type":"Point","coordinates":[77955,56723]},{"type":"Point","coordinates":[83916,55170]},{"type":"Point","coordinates":[84511,54998]},{"type":"Point","coordinates":[54806,59785]},{"type":"Point","coordinates":[54806,59786]},{"type":"Point","coordinates":[54806,59786]},{"type":"Point","coordinates":[84566,54987]},{"type":"Point","coordinates":[7595,51537]},{"type":"Point","coordinates":[78080,56710]},{"type":"Point","coordinates":[69740,58362]},{"type":"Point","coordinates":[54804,59799]},{"type":"Point","coordinates":[69740,58362]},{"type":"Point","coordinates":[69888,58344]},{"type":"Point","coordinates":[7769,51623]},{"type":"Point","coordinates":[84475,55036]},{"type":"Point","coordinates":[77063,56962]},{"type":"Point","coordinates":[2399,49440]},{"type":"Point","coordinates":[2359,49427]},{"type":"Point","coordinates":[88218,53906]},{"type":"Point","coordinates":[70344,58331]},{"type":"Point","coordinates":[68684,58595]},{"type":"Point","coordinates":[2331,49451]},{"type":"Point","coordinates":[72621,57936]},{"type":"Point","coordinates":[83764,55308]},{"type":"Point","coordinates":[77221,56995]},{"type":"Point","coordinates":[61509,59497]},{"type":"Point","coordinates":[2331,49484]},{"type":"Point","coordinates":[2237,49448]},{"type":"Point","coordinates":[2339,49502]},{"type":"Point","coordinates":[2334,49503]},{"type":"Point","coordinates":[2333,49505]},{"type":"Point","coordinates":[2333,49505]},{"type":"Point","coordinates":[2333,49505]},{"type":"Point","coordinates":[2332,49505]},{"type":"Point","coordinates":[2332,49505]},{"type":"Point","coordinates":[2332,49505]},{"type":"Point","coordinates":[84515,55172]},{"type":"Point","coordinates":[75403,57468]},{"type":"Point","coordinates":[75403,57468]},{"type":"Point","coordinates":[78098,56868]},{"type":"Point","coordinates":[72711,58018]},{"type":"Point","coordinates":[72711,58018]},{"type":"Point","coordinates":[72711,58019]},{"type":"Point","coordinates":[85190,54991]},{"type":"Point","coordinates":[85189,54991]},{"type":"Point","coordinates":[70148,58488]},{"type":"Point","coordinates":[84665,55165]},{"type":"Point","coordinates":[84597,55190]},{"type":"Point","coordinates":[84597,55190]},{"type":"Point","coordinates":[84962,55096]},{"type":"Point","coordinates":[72707,58062]},{"type":"Point","coordinates":[75953,57410]},{"type":"Point","coordinates":[83858,55424]},{"type":"Point","coordinates":[67407,58933]},{"type":"Point","coordinates":[73038,58005]},{"type":"Point","coordinates":[84621,55207]},{"type":"Point","coordinates":[84636,55204]},{"type":"Point","coordinates":[84622,55210]},{"type":"Point","coordinates":[84614,55213]},{"type":"Point","coordinates":[84614,55213]},{"type":"Point","coordinates":[84643,55207]},{"type":"Point","coordinates":[84643,55208]},{"type":"Point","coordinates":[84644,55211]},{"type":"Point","coordinates":[84642,55212]},{"type":"Point","coordinates":[84618,55221]},{"type":"Point","coordinates":[84618,55221]},{"type":"Point","coordinates":[84615,55223]},{"type":"Point","coordinates":[71303,58339]},{"type":"Point","coordinates":[71305,58342]},{"type":"Point","coordinates":[73832,57893]},{"type":"Point","coordinates":[84509,55283]},{"type":"Point","coordinates":[76485,57342]},{"type":"Point","coordinates":[76480,57345]},{"type":"Point","coordinates":[72603,58138]},{"type":"Point","coordinates":[77593,57106]},{"type":"Point","coordinates":[85098,55135]},{"type":"Point","coordinates":[84975,55173]},{"type":"Point","coordinates":[84719,55253]},{"type":"Point","coordinates":[84974,55180]},{"type":"Point","coordinates":[70014,58623]},{"type":"Point","coordinates":[76310,57427]},{"type":"Point","coordinates":[53889,60142]},{"type":"Point","coordinates":[66220,59194]},{"type":"Point","coordinates":[66214,59196]},{"type":"Point","coordinates":[66213,59197]},{"type":"Point","coordinates":[54652,60125]},{"type":"Point","coordinates":[84424,55372]},{"type":"Point","coordinates":[84780,55275]},{"type":"Point","coordinates":[84780,55275]},{"type":"Point","coordinates":[84780,55275]},{"type":"Point","coordinates":[84706,55297]},{"type":"Point","coordinates":[84781,55275]},{"type":"Point","coordinates":[54649,60143]},{"type":"Point","coordinates":[84736,55297]},{"type":"Point","coordinates":[54273,60160]},{"type":"Point","coordinates":[84675,55328]},{"type":"Point","coordinates":[83808,55580]},{"type":"Point","coordinates":[83809,55580]},{"type":"Point","coordinates":[83810,55581]},{"type":"Point","coordinates":[84425,55404]},{"type":"Point","coordinates":[83818,55590]},{"type":"Point","coordinates":[77820,57146]},{"type":"Point","coordinates":[84966,55259]},{"type":"Point","coordinates":[54678,60179]},{"type":"Point","coordinates":[77816,57160]},{"type":"Point","coordinates":[84627,55372]},{"type":"Point","coordinates":[77817,57162]},{"type":"Point","coordinates":[77820,57166]},{"type":"Point","coordinates":[77819,57167]},{"type":"Point","coordinates":[77819,57168]},{"type":"Point","coordinates":[77819,57169]},{"type":"Point","coordinates":[77818,57172]},{"type":"Point","coordinates":[83837,55612]},{"type":"Point","coordinates":[77818,57172]},{"type":"Point","coordinates":[77818,57172]},{"type":"Point","coordinates":[77819,57176]},{"type":"Point","coordinates":[84706,55365]},{"type":"Point","coordinates":[77822,57176]},{"type":"Point","coordinates":[77819,57177]},{"type":"Point","coordinates":[77819,57177]},{"type":"Point","coordinates":[77820,57177]},{"type":"Point","coordinates":[77821,57178]},{"type":"Point","coordinates":[77820,57178]},{"type":"Point","coordinates":[77820,57178]},{"type":"Point","coordinates":[77820,57178]},{"type":"Point","coordinates":[76141,57555]},{"type":"Point","coordinates":[77819,57178]},{"type":"Point","coordinates":[77820,57178]},{"type":"Point","coordinates":[77821,57178]},{"type":"Point","coordinates":[77821,57178]},{"type":"Point","coordinates":[77819,57178]},{"type":"Point","coordinates":[77820,57178]},{"type":"Point","coordinates":[77820,57179]},{"type":"Point","coordinates":[76141,57560]},{"type":"Point","coordinates":[76117,57567]},{"type":"Point","coordinates":[77815,57190]},{"type":"Point","coordinates":[77810,57197]},{"type":"Point","coordinates":[77864,57186]},{"type":"Point","coordinates":[84811,55355]},{"type":"Point","coordinates":[77881,57184]},{"type":"Point","coordinates":[87816,54429]},{"type":"Point","coordinates":[77807,57225]},{"type":"Point","coordinates":[77912,57221]},{"type":"Point","coordinates":[85217,55292]},{"type":"Point","coordinates":[77802,57260]},{"type":"Point","coordinates":[76051,57672]},{"type":"Point","coordinates":[84686,55478]},{"type":"Point","coordinates":[84678,55496]},{"type":"Point","coordinates":[77773,57330]},{"type":"Point","coordinates":[85629,55237]},{"type":"Point","coordinates":[84535,55566]},{"type":"Point","coordinates":[84534,55569]},{"type":"Point","coordinates":[66156,59442]},{"type":"Point","coordinates":[84528,55579]},{"type":"Point","coordinates":[77709,57365]},{"type":"Point","coordinates":[84529,55582]},{"type":"Point","coordinates":[84589,55584]},{"type":"Point","coordinates":[84684,55558]},{"type":"Point","coordinates":[84578,55593]},{"type":"Point","coordinates":[7683,52185]},{"type":"Point","coordinates":[84578,55595]},{"type":"Point","coordinates":[84571,55597]},{"type":"Point","coordinates":[84573,55598]},{"type":"Point","coordinates":[85894,55206]},{"type":"Point","coordinates":[75427,57916]},{"type":"Point","coordinates":[75754,57877]},{"type":"Point","coordinates":[65138,59654]},{"type":"Point","coordinates":[84662,55649]},{"type":"Point","coordinates":[75191,58032]},{"type":"Point","coordinates":[75627,57942]},{"type":"Point","coordinates":[75670,57935]},{"type":"Point","coordinates":[75669,57938]},{"type":"Point","coordinates":[7671,52276]},{"type":"Point","coordinates":[81283,56613]},{"type":"Point","coordinates":[85110,55547]},{"type":"Point","coordinates":[85338,55484]},{"type":"Point","coordinates":[66709,59521]},{"type":"Point","coordinates":[74884,58131]},{"type":"Point","coordinates":[48209,60529]},{"type":"Point","coordinates":[85150,55556]},{"type":"Point","coordinates":[82958,56188]},{"type":"Point","coordinates":[82959,56188]},{"type":"Point","coordinates":[75258,58069]},{"type":"Point","coordinates":[70339,59003]},{"type":"Point","coordinates":[75398,58061]},{"type":"Point","coordinates":[74687,58217]},{"type":"Point","coordinates":[48298,60578]},{"type":"Point","coordinates":[80002,57011]},{"type":"Point","coordinates":[78303,57444]},{"type":"Point","coordinates":[77477,57637]},{"type":"Point","coordinates":[76934,57760]},{"type":"Point","coordinates":[84853,55705]},{"type":"Point","coordinates":[75679,58036]},{"type":"Point","coordinates":[77904,57543]},{"type":"Point","coordinates":[71364,58881]},{"type":"Point","coordinates":[61939,60148]},{"type":"Point","coordinates":[76644,57842]},{"type":"Point","coordinates":[84701,55769]},{"type":"Point","coordinates":[75413,58111]},{"type":"Point","coordinates":[79501,57192]},{"type":"Point","coordinates":[77816,57601]},{"type":"Point","coordinates":[77815,57601]},{"type":"Point","coordinates":[77775,57621]},{"type":"Point","coordinates":[75580,58112]},{"type":"Point","coordinates":[75378,58155]},{"type":"Point","coordinates":[75594,58112]},{"type":"Point","coordinates":[84285,55932]},{"type":"Point","coordinates":[75584,58115]},{"type":"Point","coordinates":[77817,57619]},{"type":"Point","coordinates":[77753,57638]},{"type":"Point","coordinates":[77788,57638]},{"type":"Point","coordinates":[77432,57722]},{"type":"Point","coordinates":[77429,57724]},{"type":"Point","coordinates":[77433,57723]},{"type":"Point","coordinates":[75121,58241]},{"type":"Point","coordinates":[74643,58345]},{"type":"Point","coordinates":[77787,57663]},{"type":"Point","coordinates":[77773,57667]},{"type":"Point","coordinates":[48238,60697]},{"type":"Point","coordinates":[77814,57661]},{"type":"Point","coordinates":[77261,57792]},{"type":"Point","coordinates":[77830,57664]},{"type":"Point","coordinates":[43620,60499]},{"type":"Point","coordinates":[78340,57554]},{"type":"Point","coordinates":[77840,57674]},{"type":"Point","coordinates":[74677,58369]},{"type":"Point","coordinates":[75739,58164]},{"type":"Point","coordinates":[76282,58049]},{"type":"Point","coordinates":[74626,58398]},{"type":"Point","coordinates":[77824,57704]},{"type":"Point","coordinates":[76918,57914]},{"type":"Point","coordinates":[84310,56015]},{"type":"Point","coordinates":[75694,58185]},{"type":"Point","coordinates":[87071,55184]},{"type":"Point","coordinates":[74929,58349]},{"type":"Point","coordinates":[75688,58193]},{"type":"Point","coordinates":[84267,56039]},{"type":"Point","coordinates":[61008,60386]},{"type":"Point","coordinates":[79160,57410]},{"type":"Point","coordinates":[76462,58038]},{"type":"Point","coordinates":[48443,60775]},{"type":"Point","coordinates":[52785,60798]},{"type":"Point","coordinates":[52785,60798]},{"type":"Point","coordinates":[76284,58080]},{"type":"Point","coordinates":[74904,58374]},{"type":"Point","coordinates":[84303,56054]},{"type":"Point","coordinates":[84274,56063]},{"type":"Point","coordinates":[84301,56056]},{"type":"Point","coordinates":[85431,55724]},{"type":"Point","coordinates":[75664,58228]},{"type":"Point","coordinates":[84279,56066]},{"type":"Point","coordinates":[67882,59626]},{"type":"Point","coordinates":[76289,58104]},{"type":"Point","coordinates":[83868,56196]},{"type":"Point","coordinates":[75075,58365]},{"type":"Point","coordinates":[75644,58255]},{"type":"Point","coordinates":[77288,57897]},{"type":"Point","coordinates":[83866,56210]},{"type":"Point","coordinates":[75281,58336]},{"type":"Point","coordinates":[75383,58315]},{"type":"Point","coordinates":[75640,58264]},{"type":"Point","coordinates":[75506,58294]},{"type":"Point","coordinates":[75600,58277]},{"type":"Point","coordinates":[75632,58270]},{"type":"Point","coordinates":[75057,58391]},{"type":"Point","coordinates":[75608,58276]},{"type":"Point","coordinates":[75589,58284]},{"type":"Point","coordinates":[75589,58284]},{"type":"Point","coordinates":[75590,58285]},{"type":"Point","coordinates":[48020,60836]},{"type":"Point","coordinates":[48019,60841]},{"type":"Point","coordinates":[52815,60888]},{"type":"Point","coordinates":[75030,58448]},{"type":"Point","coordinates":[77618,57883]},{"type":"Point","coordinates":[75046,58447]},{"type":"Point","coordinates":[75570,58344]},{"type":"Point","coordinates":[75568,58345]},{"type":"Point","coordinates":[75568,58345]},{"type":"Point","coordinates":[75566,58346]},{"type":"Point","coordinates":[2683,50636]},{"type":"Point","coordinates":[2688,50640]},{"type":"Point","coordinates":[75563,58359]},{"type":"Point","coordinates":[76751,58111]},{"type":"Point","coordinates":[77736,57888]},{"type":"Point","coordinates":[77738,57890]},{"type":"Point","coordinates":[77435,57960]},{"type":"Point","coordinates":[69288,59532]},{"type":"Point","coordinates":[48016,60907]},{"type":"Point","coordinates":[76316,58217]},{"type":"Point","coordinates":[76315,58219]},{"type":"Point","coordinates":[77340,57993]},{"type":"Point","coordinates":[77345,57995]},{"type":"Point","coordinates":[2680,50684]},{"type":"Point","coordinates":[83974,56318]},{"type":"Point","coordinates":[2731,50744]},{"type":"Point","coordinates":[77467,58032]},{"type":"Point","coordinates":[75542,58465]},{"type":"Point","coordinates":[80270,57373]},{"type":"Point","coordinates":[2695,50760]},{"type":"Point","coordinates":[75396,58503]},{"type":"Point","coordinates":[75401,58504]},{"type":"Point","coordinates":[67830,59846]},{"type":"Point","coordinates":[75503,58486]},{"type":"Point","coordinates":[2732,50783]},{"type":"Point","coordinates":[75505,58487]},{"type":"Point","coordinates":[75504,58487]},{"type":"Point","coordinates":[75504,58487]},{"type":"Point","coordinates":[75504,58487]},{"type":"Point","coordinates":[75504,58487]},{"type":"Point","coordinates":[75503,58488]},{"type":"Point","coordinates":[75505,58488]},{"type":"Point","coordinates":[75505,58488]},{"type":"Point","coordinates":[75502,58488]},{"type":"Point","coordinates":[75505,58488]},{"type":"Point","coordinates":[75500,58489]},{"type":"Point","coordinates":[75507,58488]},{"type":"Point","coordinates":[75503,58489]},{"type":"Point","coordinates":[75502,58490]},{"type":"Point","coordinates":[75503,58490]},{"type":"Point","coordinates":[75506,58491]},{"type":"Point","coordinates":[75503,58492]},{"type":"Point","coordinates":[75505,58492]},{"type":"Point","coordinates":[75504,58492]},{"type":"Point","coordinates":[77359,58085]},{"type":"Point","coordinates":[75506,58494]},{"type":"Point","coordinates":[75507,58494]},{"type":"Point","coordinates":[75498,58496]},{"type":"Point","coordinates":[75509,58497]},{"type":"Point","coordinates":[2712,50788]},{"type":"Point","coordinates":[75510,58499]},{"type":"Point","coordinates":[75510,58499]},{"type":"Point","coordinates":[75510,58499]},{"type":"Point","coordinates":[75515,58501]},{"type":"Point","coordinates":[2712,50794]},{"type":"Point","coordinates":[75511,58505]},{"type":"Point","coordinates":[75511,58505]},{"type":"Point","coordinates":[75511,58505]},{"type":"Point","coordinates":[75511,58505]},{"type":"Point","coordinates":[75511,58505]},{"type":"Point","coordinates":[75511,58505]},{"type":"Point","coordinates":[75511,58506]},{"type":"Point","coordinates":[2716,50798]},{"type":"Point","coordinates":[75509,58508]},{"type":"Point","coordinates":[75511,58509]},{"type":"Point","coordinates":[75512,58510]},{"type":"Point","coordinates":[75512,58510]},{"type":"Point","coordinates":[75515,58509]},{"type":"Point","coordinates":[75510,58510]},{"type":"Point","coordinates":[75514,58510]},{"type":"Point","coordinates":[75512,58510]},{"type":"Point","coordinates":[75513,58510]},{"type":"Point","coordinates":[40143,60550]},{"type":"Point","coordinates":[75513,58510]},{"type":"Point","coordinates":[75513,58510]},{"type":"Point","coordinates":[75512,58511]},{"type":"Point","coordinates":[75513,58511]},{"type":"Point","coordinates":[75513,58511]},{"type":"Point","coordinates":[75512,58511]},{"type":"Point","coordinates":[75514,58511]},{"type":"Point","coordinates":[75512,58511]},{"type":"Point","coordinates":[2711,50802]},{"type":"Point","coordinates":[75514,58512]},{"type":"Point","coordinates":[2707,50802]},{"type":"Point","coordinates":[2710,50806]},{"type":"Point","coordinates":[2713,50810]},{"type":"Point","coordinates":[2714,50811]},{"type":"Point","coordinates":[2717,50821]},{"type":"Point","coordinates":[2709,50818]},{"type":"Point","coordinates":[2717,50823]},{"type":"Point","coordinates":[2717,50823]},{"type":"Point","coordinates":[2706,50820]},{"type":"Point","coordinates":[2711,50823]},{"type":"Point","coordinates":[56703,60965]},{"type":"Point","coordinates":[56703,60966]},{"type":"Point","coordinates":[2707,50827]},{"type":"Point","coordinates":[2739,50849]},{"type":"Point","coordinates":[2738,50858]},{"type":"Point","coordinates":[48042,61079]},{"type":"Point","coordinates":[77438,58144]},{"type":"Point","coordinates":[2716,50862]},{"type":"Point","coordinates":[75504,58572]},{"type":"Point","coordinates":[2718,50866]},{"type":"Point","coordinates":[2724,50870]},{"type":"Point","coordinates":[2724,50870]},{"type":"Point","coordinates":[2720,50869]},{"type":"Point","coordinates":[2720,50869]},{"type":"Point","coordinates":[2720,50869]},{"type":"Point","coordinates":[2724,50871]},{"type":"Point","coordinates":[75520,58575]},{"type":"Point","coordinates":[2851,50933]},{"type":"Point","coordinates":[2732,50882]},{"type":"Point","coordinates":[2720,50877]},{"type":"Point","coordinates":[47889,61121]},{"type":"Point","coordinates":[42755,60864]},{"type":"Point","coordinates":[77513,58182]},{"type":"Point","coordinates":[76624,58389]},{"type":"Point","coordinates":[76623,58390]},{"type":"Point","coordinates":[77102,58300]},{"type":"Point","coordinates":[69641,59746]},{"type":"Point","coordinates":[75693,58624]},{"type":"Point","coordinates":[48288,61194]},{"type":"Point","coordinates":[76125,58547]},{"type":"Point","coordinates":[75813,58622]},{"type":"Point","coordinates":[68821,59914]},{"type":"Point","coordinates":[75693,58666]},{"type":"Point","coordinates":[76189,58572]},{"type":"Point","coordinates":[77240,58339]},{"type":"Point","coordinates":[76189,58573]},{"type":"Point","coordinates":[80673,57514]},{"type":"Point","coordinates":[77252,58355]},{"type":"Point","coordinates":[77252,58355]},{"type":"Point","coordinates":[77252,58356]},{"type":"Point","coordinates":[77254,58356]},{"type":"Point","coordinates":[77252,58356]},{"type":"Point","coordinates":[80666,57535]},{"type":"Point","coordinates":[77249,58361]},{"type":"Point","coordinates":[77249,58361]},{"type":"Point","coordinates":[77253,58365]},{"type":"Point","coordinates":[77256,58368]},{"type":"Point","coordinates":[7647,53066]},{"type":"Point","coordinates":[70522,59711]},{"type":"Point","coordinates":[65455,60447]},{"type":"Point","coordinates":[70523,59716]},{"type":"Point","coordinates":[70467,59743]},{"type":"Point","coordinates":[76202,58645]},{"type":"Point","coordinates":[70454,59751]},{"type":"Point","coordinates":[39984,60823]},{"type":"Point","coordinates":[80345,57680]},{"type":"Point","coordinates":[77220,58468]},{"type":"Point","coordinates":[75765,58792]},{"type":"Point","coordinates":[88238,55439]},{"type":"Point","coordinates":[77843,58332]},{"type":"Point","coordinates":[77163,58495]},{"type":"Point","coordinates":[76289,58690]},{"type":"Point","coordinates":[74473,59082]},{"type":"Point","coordinates":[84392,56644]},{"type":"Point","coordinates":[84393,56645]},{"type":"Point","coordinates":[80797,57631]},{"type":"Point","coordinates":[84392,56647]},{"type":"Point","coordinates":[84411,56644]},{"type":"Point","coordinates":[67801,60240]},{"type":"Point","coordinates":[76236,58719]},{"type":"Point","coordinates":[77219,58502]},{"type":"Point","coordinates":[77193,58518]},{"type":"Point","coordinates":[3088,51348]},{"type":"Point","coordinates":[76231,58732]},{"type":"Point","coordinates":[76230,58736]},{"type":"Point","coordinates":[75448,58910]},{"type":"Point","coordinates":[3080,51366]},{"type":"Point","coordinates":[76227,58755]},{"type":"Point","coordinates":[77070,58583]},{"type":"Point","coordinates":[71338,59745]},{"type":"Point","coordinates":[76170,58809]},{"type":"Point","coordinates":[77054,58617]},{"type":"Point","coordinates":[76177,58812]},{"type":"Point","coordinates":[61328,61068]},{"type":"Point","coordinates":[77053,58622]},{"type":"Point","coordinates":[76364,58778]},{"type":"Point","coordinates":[61325,61074]},{"type":"Point","coordinates":[3023,51409]},{"type":"Point","coordinates":[70687,59893]},{"type":"Point","coordinates":[75602,58962]},{"type":"Point","coordinates":[74546,59205]},{"type":"Point","coordinates":[77589,58560]},{"type":"Point","coordinates":[80471,57863]},{"type":"Point","coordinates":[77053,58688]},{"type":"Point","coordinates":[76447,58824]},{"type":"Point","coordinates":[76996,58706]},{"type":"Point","coordinates":[77002,58709]},{"type":"Point","coordinates":[76279,58874]},{"type":"Point","coordinates":[82403,57375]},{"type":"Point","coordinates":[77008,58722]},{"type":"Point","coordinates":[75538,59054]},{"type":"Point","coordinates":[40100,61094]},{"type":"Point","coordinates":[77005,58742]},{"type":"Point","coordinates":[76797,58810]},{"type":"Point","coordinates":[76997,58775]},{"type":"Point","coordinates":[76992,58783]},{"type":"Point","coordinates":[76990,58786]},{"type":"Point","coordinates":[77029,58779]},{"type":"Point","coordinates":[74756,59299]},{"type":"Point","coordinates":[82378,57487]},{"type":"Point","coordinates":[65305,60869]},{"type":"Point","coordinates":[65303,60873]},{"type":"Point","coordinates":[65303,60874]},{"type":"Point","coordinates":[76736,58915]},{"type":"Point","coordinates":[65307,60876]},{"type":"Point","coordinates":[82390,57523]},{"type":"Point","coordinates":[65303,60879]},{"type":"Point","coordinates":[65305,60885]},{"type":"Point","coordinates":[40914,61310]},{"type":"Point","coordinates":[76501,58995]},{"type":"Point","coordinates":[62936,61171]},{"type":"Point","coordinates":[85636,56634]},{"type":"Point","coordinates":[85636,56634]},{"type":"Point","coordinates":[85636,56634]},{"type":"Point","coordinates":[76342,59045]},{"type":"Point","coordinates":[76939,58917]},{"type":"Point","coordinates":[76938,58922]},{"type":"Point","coordinates":[80976,57954]},{"type":"Point","coordinates":[85603,56662]},{"type":"Point","coordinates":[85603,56662]},{"type":"Point","coordinates":[85607,56663]},{"type":"Point","coordinates":[76821,58963]},{"type":"Point","coordinates":[76850,58961]},{"type":"Point","coordinates":[2800,51599]},{"type":"Point","coordinates":[82293,57621]},{"type":"Point","coordinates":[81199,57914]},{"type":"Point","coordinates":[62409,61269]},{"type":"Point","coordinates":[76014,59152]},{"type":"Point","coordinates":[85615,56681]},{"type":"Point","coordinates":[76559,59040]},{"type":"Point","coordinates":[85617,56683]},{"type":"Point","coordinates":[76555,59042]},{"type":"Point","coordinates":[3081,51742]},{"type":"Point","coordinates":[76871,58980]},{"type":"Point","coordinates":[3087,51752]},{"type":"Point","coordinates":[3076,51749]},{"type":"Point","coordinates":[3075,51753]},{"type":"Point","coordinates":[62920,61248]},{"type":"Point","coordinates":[74734,59449]},{"type":"Point","coordinates":[76938,58982]},{"type":"Point","coordinates":[80571,58113]},{"type":"Point","coordinates":[76938,58983]},{"type":"Point","coordinates":[77521,58853]},{"type":"Point","coordinates":[76939,58984]},{"type":"Point","coordinates":[74720,59473]},{"type":"Point","coordinates":[80781,58077]},{"type":"Point","coordinates":[80781,58077]},{"type":"Point","coordinates":[76976,59007]},{"type":"Point","coordinates":[3057,51806]},{"type":"Point","coordinates":[78763,58649]},{"type":"Point","coordinates":[76698,59142]},{"type":"Point","coordinates":[76699,59142]},{"type":"Point","coordinates":[76752,59139]},{"type":"Point","coordinates":[76787,59137]},{"type":"Point","coordinates":[87525,56250]},{"type":"Point","coordinates":[76789,59153]},{"type":"Point","coordinates":[76880,59134]},{"type":"Point","coordinates":[82417,57776]},{"type":"Point","coordinates":[56688,61868]},{"type":"Point","coordinates":[56699,61870]},{"type":"Point","coordinates":[86421,56623]},{"type":"Point","coordinates":[82408,57792]},{"type":"Point","coordinates":[83509,57488]},{"type":"Point","coordinates":[76791,59187]},{"type":"Point","coordinates":[84365,57253]},{"type":"Point","coordinates":[86391,56652]},{"type":"Point","coordinates":[48360,62000]},{"type":"Point","coordinates":[69661,60570]},{"type":"Point","coordinates":[80957,58212]},{"type":"Point","coordinates":[84308,57295]},{"type":"Point","coordinates":[76698,59237]},{"type":"Point","coordinates":[56755,61915]},{"type":"Point","coordinates":[56752,61917]},{"type":"Point","coordinates":[76751,59232]},{"type":"Point","coordinates":[76755,59231]},{"type":"Point","coordinates":[2755,51839]},{"type":"Point","coordinates":[82444,57833]},{"type":"Point","coordinates":[74625,59692]},{"type":"Point","coordinates":[76682,59259]},{"type":"Point","coordinates":[76684,59260]},{"type":"Point","coordinates":[76684,59260]},{"type":"Point","coordinates":[76681,59261]},{"type":"Point","coordinates":[75435,59530]},{"type":"Point","coordinates":[3327,52107]},{"type":"Point","coordinates":[3006,51979]},{"type":"Point","coordinates":[58062,61890]},{"type":"Point","coordinates":[63566,61437]},{"type":"Point","coordinates":[80063,58498]},{"type":"Point","coordinates":[3356,52159]},{"type":"Point","coordinates":[56769,61983]},{"type":"Point","coordinates":[78108,59006]},{"type":"Point","coordinates":[81039,58310]},{"type":"Point","coordinates":[69822,60667]},{"type":"Point","coordinates":[69818,60674]},{"type":"Point","coordinates":[2931,52033]},{"type":"Point","coordinates":[74581,59812]},{"type":"Point","coordinates":[69819,60679]},{"type":"Point","coordinates":[69819,60680]},{"type":"Point","coordinates":[69819,60681]},{"type":"Point","coordinates":[77539,59193]},{"type":"Point","coordinates":[2933,52056]},{"type":"Point","coordinates":[77101,59299]},{"type":"Point","coordinates":[2974,52088]},{"type":"Point","coordinates":[77619,59200]},{"type":"Point","coordinates":[77618,59203]},{"type":"Point","coordinates":[87035,56657]},{"type":"Point","coordinates":[83599,57703]},{"type":"Point","coordinates":[77187,59339]},{"type":"Point","coordinates":[71212,60537]},{"type":"Point","coordinates":[71212,60537]},{"type":"Point","coordinates":[83608,57723]},{"type":"Point","coordinates":[56723,62146]},{"type":"Point","coordinates":[81119,58426]},{"type":"Point","coordinates":[77113,59398]},{"type":"Point","coordinates":[77351,59357]},{"type":"Point","coordinates":[86477,56921]},{"type":"Point","coordinates":[48233,62277]},{"type":"Point","coordinates":[86465,56937]},{"type":"Point","coordinates":[58243,62116]},{"type":"Point","coordinates":[77036,59449]},{"type":"Point","coordinates":[83475,57827]},{"type":"Point","coordinates":[83475,57827]},{"type":"Point","coordinates":[77358,59380]},{"type":"Point","coordinates":[83754,57761]},{"type":"Point","coordinates":[71163,60639]},{"type":"Point","coordinates":[83551,57852]},{"type":"Point","coordinates":[48176,62342]},{"type":"Point","coordinates":[3000,52280]},{"type":"Point","coordinates":[72261,60470]},{"type":"Point","coordinates":[48176,62344]},{"type":"Point","coordinates":[48177,62349]},{"type":"Point","coordinates":[77881,59323]},{"type":"Point","coordinates":[83561,57868]},{"type":"Point","coordinates":[70918,60724]},{"type":"Point","coordinates":[70927,60728]},{"type":"Point","coordinates":[84346,57659]},{"type":"Point","coordinates":[84378,57651]},{"type":"Point","coordinates":[48297,62380]},{"type":"Point","coordinates":[83768,57831]},{"type":"Point","coordinates":[80758,58653]},{"type":"Point","coordinates":[84386,57666]},{"type":"Point","coordinates":[84380,57669]},{"type":"Point","coordinates":[24953,59480]},{"type":"Point","coordinates":[70897,60764]},{"type":"Point","coordinates":[84382,57674]},{"type":"Point","coordinates":[84382,57675]},{"type":"Point","coordinates":[71021,60752]},{"type":"Point","coordinates":[72980,60401]},{"type":"Point","coordinates":[83421,57958]},{"type":"Point","coordinates":[86306,57113]},{"type":"Point","coordinates":[2908,52313]},{"type":"Point","coordinates":[83680,57889]},{"type":"Point","coordinates":[83267,58006]},{"type":"Point","coordinates":[83683,57889]},{"type":"Point","coordinates":[83281,58004]},{"type":"Point","coordinates":[84386,57690]},{"type":"Point","coordinates":[84386,57690]},{"type":"Point","coordinates":[83282,58004]},{"type":"Point","coordinates":[84387,57690]},{"type":"Point","coordinates":[83686,57890]},{"type":"Point","coordinates":[83674,57895]},{"type":"Point","coordinates":[83296,58002]},{"type":"Point","coordinates":[83677,57896]},{"type":"Point","coordinates":[83687,57899]},{"type":"Point","coordinates":[83687,57899]},{"type":"Point","coordinates":[83683,57901]},{"type":"Point","coordinates":[83664,57910]},{"type":"Point","coordinates":[83663,57911]},{"type":"Point","coordinates":[83676,57913]},{"type":"Point","coordinates":[83694,57910]},{"type":"Point","coordinates":[73567,60325]},{"type":"Point","coordinates":[70671,60849]},{"type":"Point","coordinates":[83441,57989]},{"type":"Point","coordinates":[77858,59418]},{"type":"Point","coordinates":[77309,59546]},{"type":"Point","coordinates":[71999,60627]},{"type":"Point","coordinates":[84590,57670]},{"type":"Point","coordinates":[84532,57694]},{"type":"Point","coordinates":[77364,59549]},{"type":"Point","coordinates":[72988,60469]},{"type":"Point","coordinates":[54476,62468]},{"type":"Point","coordinates":[48406,62486]},{"type":"Point","coordinates":[48406,62486]},{"type":"Point","coordinates":[88058,56636]},{"type":"Point","coordinates":[83855,57911]},{"type":"Point","coordinates":[76525,59758]},{"type":"Point","coordinates":[71384,60783]},{"type":"Point","coordinates":[75122,60073]},{"type":"Point","coordinates":[84582,57729]},{"type":"Point","coordinates":[72398,60612]},{"type":"Point","coordinates":[83248,58116]},{"type":"Point","coordinates":[84583,57737]},{"type":"Point","coordinates":[84583,57743]},{"type":"Point","coordinates":[83595,58028]},{"type":"Point","coordinates":[84569,57755]},{"type":"Point","coordinates":[83609,58030]},{"type":"Point","coordinates":[66324,61585]},{"type":"Point","coordinates":[84567,57757]},{"type":"Point","coordinates":[84567,57757]},{"type":"Point","coordinates":[80980,58743]},{"type":"Point","coordinates":[84561,57763]},{"type":"Point","coordinates":[83630,58032]},{"type":"Point","coordinates":[83630,58032]},{"type":"Point","coordinates":[84546,57770]},{"type":"Point","coordinates":[72967,60537]},{"type":"Point","coordinates":[77337,59644]},{"type":"Point","coordinates":[72109,60713]},{"type":"Point","coordinates":[76538,59830]},{"type":"Point","coordinates":[48329,62565]},{"type":"Point","coordinates":[72107,60716]},{"type":"Point","coordinates":[83781,58014]},{"type":"Point","coordinates":[84572,57789]},{"type":"Point","coordinates":[71980,60749]},{"type":"Point","coordinates":[71988,60753]},{"type":"Point","coordinates":[71950,60760]},{"type":"Point","coordinates":[76098,59943]},{"type":"Point","coordinates":[76605,59840]},{"type":"Point","coordinates":[72021,60762]},{"type":"Point","coordinates":[60487,62258]},{"type":"Point","coordinates":[70989,60945]},{"type":"Point","coordinates":[70990,60946]},{"type":"Point","coordinates":[64323,61891]},{"type":"Point","coordinates":[83650,58094]},{"type":"Point","coordinates":[83659,58092]},{"type":"Point","coordinates":[83646,58098]},{"type":"Point","coordinates":[83650,58100]},{"type":"Point","coordinates":[83654,58100]},{"type":"Point","coordinates":[84259,57928]},{"type":"Point","coordinates":[83660,58099]},{"type":"Point","coordinates":[83660,58099]},{"type":"Point","coordinates":[83660,58099]},{"type":"Point","coordinates":[83648,58104]},{"type":"Point","coordinates":[83654,58102]},{"type":"Point","coordinates":[75476,60115]},{"type":"Point","coordinates":[83659,58103]},{"type":"Point","coordinates":[83659,58104]},{"type":"Point","coordinates":[83659,58105]},{"type":"Point","coordinates":[83650,58108]},{"type":"Point","coordinates":[83649,58110]},{"type":"Point","coordinates":[83649,58110]},{"type":"Point","coordinates":[83666,58106]},{"type":"Point","coordinates":[83651,58111]},{"type":"Point","coordinates":[83648,58113]},{"type":"Point","coordinates":[83648,58113]},{"type":"Point","coordinates":[83656,58111]},{"type":"Point","coordinates":[83658,58111]},{"type":"Point","coordinates":[83657,58113]},{"type":"Point","coordinates":[83647,58116]},{"type":"Point","coordinates":[83647,58117]},{"type":"Point","coordinates":[83657,58115]},{"type":"Point","coordinates":[83657,58115]},{"type":"Point","coordinates":[83656,58116]},{"type":"Point","coordinates":[83654,58117]},{"type":"Point","coordinates":[83654,58117]},{"type":"Point","coordinates":[83653,58117]},{"type":"Point","coordinates":[83656,58116]},{"type":"Point","coordinates":[83657,58116]},{"type":"Point","coordinates":[83652,58118]},{"type":"Point","coordinates":[83651,58118]},{"type":"Point","coordinates":[83651,58118]},{"type":"Point","coordinates":[83658,58116]},{"type":"Point","coordinates":[83656,58117]},{"type":"Point","coordinates":[83651,58118]},{"type":"Point","coordinates":[83658,58116]},{"type":"Point","coordinates":[83656,58117]},{"type":"Point","coordinates":[83651,58118]},{"type":"Point","coordinates":[83657,58117]},{"type":"Point","coordinates":[83653,58118]},{"type":"Point","coordinates":[83651,58119]},{"type":"Point","coordinates":[83651,58119]},{"type":"Point","coordinates":[83653,58118]},{"type":"Point","coordinates":[83657,58118]},{"type":"Point","coordinates":[83655,58119]},{"type":"Point","coordinates":[75467,60133]},{"type":"Point","coordinates":[83655,58121]},{"type":"Point","coordinates":[83655,58121]},{"type":"Point","coordinates":[83655,58122]},{"type":"Point","coordinates":[83655,58122]},{"type":"Point","coordinates":[75476,60133]},{"type":"Point","coordinates":[75541,60120]},{"type":"Point","coordinates":[77049,59797]},{"type":"Point","coordinates":[84075,58012]},{"type":"Point","coordinates":[83618,58144]},{"type":"Point","coordinates":[75543,60132]},{"type":"Point","coordinates":[84027,58033]},{"type":"Point","coordinates":[83611,58152]},{"type":"Point","coordinates":[79784,59166]},{"type":"Point","coordinates":[83613,58153]},{"type":"Point","coordinates":[83601,58159]},{"type":"Point","coordinates":[83517,58186]},{"type":"Point","coordinates":[84288,57968]},{"type":"Point","coordinates":[72122,60823]},{"type":"Point","coordinates":[70759,61104]},{"type":"Point","coordinates":[77685,59744]},{"type":"Point","coordinates":[72057,60908]},{"type":"Point","coordinates":[77321,59845]},{"type":"Point","coordinates":[72383,60874]},{"type":"Point","coordinates":[76258,60111]},{"type":"Point","coordinates":[55690,62732]},{"type":"Point","coordinates":[83585,58294]},{"type":"Point","coordinates":[54337,62781]},{"type":"Point","coordinates":[76308,60120]},{"type":"Point","coordinates":[58160,62627]},{"type":"Point","coordinates":[77178,59936]},{"type":"Point","coordinates":[76731,60039]},{"type":"Point","coordinates":[84149,58161]},{"type":"Point","coordinates":[58110,62653]},{"type":"Point","coordinates":[55795,62769]},{"type":"Point","coordinates":[76722,60059]},{"type":"Point","coordinates":[77213,59950]},{"type":"Point","coordinates":[63210,62263]},{"type":"Point","coordinates":[76616,60102]},{"type":"Point","coordinates":[55550,62811]},{"type":"Point","coordinates":[72085,61016]},{"type":"Point","coordinates":[7090,54482]},{"type":"Point","coordinates":[58098,62697]},{"type":"Point","coordinates":[30334,61050]},{"type":"Point","coordinates":[76355,60186]},{"type":"Point","coordinates":[77435,59947]},{"type":"Point","coordinates":[83371,58449]},{"type":"Point","coordinates":[77275,59994]},{"type":"Point","coordinates":[76361,60200]},{"type":"Point","coordinates":[77101,60037]},{"type":"Point","coordinates":[30596,61119]},{"type":"Point","coordinates":[76357,60208]},{"type":"Point","coordinates":[30595,61121]},{"type":"Point","coordinates":[55489,62854]},{"type":"Point","coordinates":[80872,59141]},{"type":"Point","coordinates":[87986,57090]},{"type":"Point","coordinates":[72110,61082]},{"type":"Point","coordinates":[77087,60095]},{"type":"Point","coordinates":[70674,61353]},{"type":"Point","coordinates":[83823,58390]},{"type":"Point","coordinates":[65443,62119]},{"type":"Point","coordinates":[83607,58471]},{"type":"Point","coordinates":[72811,61002]},{"type":"Point","coordinates":[83893,58399]},{"type":"Point","coordinates":[82286,58845]},{"type":"Point","coordinates":[71094,61315]},{"type":"Point","coordinates":[72337,61096]},{"type":"Point","coordinates":[83498,58517]},{"type":"Point","coordinates":[84671,58185]},{"type":"Point","coordinates":[84674,58188]},{"type":"Point","coordinates":[75749,60434]},{"type":"Point","coordinates":[76272,60330]},{"type":"Point","coordinates":[76180,60351]},{"type":"Point","coordinates":[77418,60091]},{"type":"Point","coordinates":[83259,58617]},{"type":"Point","coordinates":[76279,60348]},{"type":"Point","coordinates":[76278,60355]},{"type":"Point","coordinates":[75599,60511]},{"type":"Point","coordinates":[76259,60373]},{"type":"Point","coordinates":[83953,58452]},{"type":"Point","coordinates":[80921,59276]},{"type":"Point","coordinates":[72229,61185]},{"type":"Point","coordinates":[70420,61499]},{"type":"Point","coordinates":[76265,60385]},{"type":"Point","coordinates":[76260,60386]},{"type":"Point","coordinates":[72207,61192]},{"type":"Point","coordinates":[83195,58677]},{"type":"Point","coordinates":[76088,60428]},{"type":"Point","coordinates":[80693,59359]},{"type":"Point","coordinates":[76186,60427]},{"type":"Point","coordinates":[76186,60427]},{"type":"Point","coordinates":[77102,60232]},{"type":"Point","coordinates":[83144,58725]},{"type":"Point","coordinates":[84330,58396]},{"type":"Point","coordinates":[72404,61200]},{"type":"Point","coordinates":[55628,63055]},{"type":"Point","coordinates":[76311,60430]},{"type":"Point","coordinates":[71610,61359]},{"type":"Point","coordinates":[83319,58702]},{"type":"Point","coordinates":[55616,63082]},{"type":"Point","coordinates":[71605,61376]},{"type":"Point","coordinates":[76462,60422]},{"type":"Point","coordinates":[83380,58715]},{"type":"Point","coordinates":[84047,58530]},{"type":"Point","coordinates":[71990,61340]},{"type":"Point","coordinates":[72035,61334]},{"type":"Point","coordinates":[72036,61338]},{"type":"Point","coordinates":[72279,61303]},{"type":"Point","coordinates":[72034,61353]},{"type":"Point","coordinates":[72035,61355]},{"type":"Point","coordinates":[72034,61362]},{"type":"Point","coordinates":[72034,61366]},{"type":"Point","coordinates":[55551,63152]},{"type":"Point","coordinates":[75685,60656]},{"type":"Point","coordinates":[72039,61373]},{"type":"Point","coordinates":[72161,61351]},{"type":"Point","coordinates":[83365,58782]},{"type":"Point","coordinates":[83425,58773]},{"type":"Point","coordinates":[80594,59536]},{"type":"Point","coordinates":[85441,58202]},{"type":"Point","coordinates":[73457,61132]},{"type":"Point","coordinates":[72354,61339]},{"type":"Point","coordinates":[83570,58761]},{"type":"Point","coordinates":[83386,58824]},{"type":"Point","coordinates":[83387,58824]},{"type":"Point","coordinates":[39970,62766]},{"type":"Point","coordinates":[72560,61343]},{"type":"Point","coordinates":[78690,60052]},{"type":"Point","coordinates":[70618,61691]},{"type":"Point","coordinates":[70626,61690]},{"type":"Point","coordinates":[71176,61617]},{"type":"Point","coordinates":[75430,60813]},{"type":"Point","coordinates":[52425,63338]},{"type":"Point","coordinates":[88674,57280]},{"type":"Point","coordinates":[80823,59594]},{"type":"Point","coordinates":[72030,61516]},{"type":"Point","coordinates":[84651,58558]},{"type":"Point","coordinates":[72025,61521]},{"type":"Point","coordinates":[88232,57466]},{"type":"Point","coordinates":[88229,57467]},{"type":"Point","coordinates":[88230,57467]},{"type":"Point","coordinates":[68403,62119]},{"type":"Point","coordinates":[39997,62860]},{"type":"Point","coordinates":[75338,60890]},{"type":"Point","coordinates":[72029,61540]},{"type":"Point","coordinates":[88247,57492]},{"type":"Point","coordinates":[72019,61577]},{"type":"Point","coordinates":[77070,60562]},{"type":"Point","coordinates":[77850,60385]},{"type":"Point","coordinates":[64866,62659]},{"type":"Point","coordinates":[40045,62961]},{"type":"Point","coordinates":[73455,61361]},{"type":"Point","coordinates":[77770,60491]},{"type":"Point","coordinates":[75042,61088]},{"type":"Point","coordinates":[72034,61671]},{"type":"Point","coordinates":[72034,61671]},{"type":"Point","coordinates":[73402,61420]},{"type":"Point","coordinates":[80717,59814]},{"type":"Point","coordinates":[80685,59830]},{"type":"Point","coordinates":[88242,57661]},{"type":"Point","coordinates":[68653,62281]},{"type":"Point","coordinates":[68658,62288]},{"type":"Point","coordinates":[75882,60983]},{"type":"Point","coordinates":[80807,59836]},{"type":"Point","coordinates":[88689,57551]},{"type":"Point","coordinates":[75464,61103]},{"type":"Point","coordinates":[60447,63269]},{"type":"Point","coordinates":[75149,61178]},{"type":"Point","coordinates":[63270,63035]},{"type":"Point","coordinates":[70820,62047]},{"type":"Point","coordinates":[70820,62047]},{"type":"Point","coordinates":[70811,62052]},{"type":"Point","coordinates":[70807,62055]},{"type":"Point","coordinates":[70805,62058]},{"type":"Point","coordinates":[70803,62059]},{"type":"Point","coordinates":[70803,62059]},{"type":"Point","coordinates":[70818,62065]},{"type":"Point","coordinates":[75914,61104]},{"type":"Point","coordinates":[75492,61208]},{"type":"Point","coordinates":[85589,58681]},{"type":"Point","coordinates":[85015,58856]},{"type":"Point","coordinates":[80891,59997]},{"type":"Point","coordinates":[85027,58863]},{"type":"Point","coordinates":[85034,58868]},{"type":"Point","coordinates":[80807,60030]},{"type":"Point","coordinates":[85041,58869]},{"type":"Point","coordinates":[77889,60746]},{"type":"Point","coordinates":[5938,54983]},{"type":"Point","coordinates":[5938,54985]},{"type":"Point","coordinates":[58101,63625]},{"type":"Point","coordinates":[75211,61364]},{"type":"Point","coordinates":[81215,59984]},{"type":"Point","coordinates":[88238,57942]},{"type":"Point","coordinates":[58067,63668]},{"type":"Point","coordinates":[58072,63673]},{"type":"Point","coordinates":[71862,62055]},{"type":"Point","coordinates":[76128,61289]},{"type":"Point","coordinates":[6044,55163]},{"type":"Point","coordinates":[87515,58282]},{"type":"Point","coordinates":[6042,55173]},{"type":"Point","coordinates":[73890,61764]},{"type":"Point","coordinates":[73671,61812]},{"type":"Point","coordinates":[58247,63769]},{"type":"Point","coordinates":[67510,62848]},{"type":"Point","coordinates":[84964,59102]},{"type":"Point","coordinates":[84963,59102]},{"type":"Point","coordinates":[88143,58138]},{"type":"Point","coordinates":[58349,63809]},{"type":"Point","coordinates":[70223,62481]},{"type":"Point","coordinates":[70233,62488]},{"type":"Point","coordinates":[67649,62889]},{"type":"Point","coordinates":[72804,62054]},{"type":"Point","coordinates":[58344,63844]},{"type":"Point","coordinates":[58451,63881]},{"type":"Point","coordinates":[58309,63899]},{"type":"Point","coordinates":[58323,63900]},{"type":"Point","coordinates":[70255,62566]},{"type":"Point","coordinates":[70253,62582]},{"type":"Point","coordinates":[70252,62582]},{"type":"Point","coordinates":[58237,63925]},{"type":"Point","coordinates":[75899,61527]},{"type":"Point","coordinates":[88451,58176]},{"type":"Point","coordinates":[88642,58139]},{"type":"Point","coordinates":[58449,63964]},{"type":"Point","coordinates":[88371,58251]},{"type":"Point","coordinates":[69860,62720]},{"type":"Point","coordinates":[88480,58228]},{"type":"Point","coordinates":[69824,62741]},{"type":"Point","coordinates":[70113,62695]},{"type":"Point","coordinates":[86547,58859]},{"type":"Point","coordinates":[69875,62744]},{"type":"Point","coordinates":[88554,58232]},{"type":"Point","coordinates":[88555,58232]},{"type":"Point","coordinates":[88445,58269]},{"type":"Point","coordinates":[88449,58272]},{"type":"Point","coordinates":[88452,58280]},{"type":"Point","coordinates":[70564,62653]},{"type":"Point","coordinates":[69789,62781]},{"type":"Point","coordinates":[88449,58285]},{"type":"Point","coordinates":[88449,58285]},{"type":"Point","coordinates":[88447,58289]},{"type":"Point","coordinates":[74913,61862]},{"type":"Point","coordinates":[82427,60084]},{"type":"Point","coordinates":[74926,61868]},{"type":"Point","coordinates":[88493,58307]},{"type":"Point","coordinates":[88500,58315]},{"type":"Point","coordinates":[88504,58317]},{"type":"Point","coordinates":[88499,58323]},{"type":"Point","coordinates":[88505,58322]},{"type":"Point","coordinates":[88502,58323]},{"type":"Point","coordinates":[88503,58323]},{"type":"Point","coordinates":[88466,58337]},{"type":"Point","coordinates":[88501,58329]},{"type":"Point","coordinates":[88501,58330]},{"type":"Point","coordinates":[88509,58328]},{"type":"Point","coordinates":[88502,58330]},{"type":"Point","coordinates":[88497,58334]},{"type":"Point","coordinates":[88498,58336]},{"type":"Point","coordinates":[88500,58338]},{"type":"Point","coordinates":[69815,62845]},{"type":"Point","coordinates":[88501,58339]},{"type":"Point","coordinates":[88493,58345]},{"type":"Point","coordinates":[88511,58340]},{"type":"Point","coordinates":[88499,58345]},{"type":"Point","coordinates":[88500,58346]},{"type":"Point","coordinates":[69610,62889]},{"type":"Point","coordinates":[88498,58352]},{"type":"Point","coordinates":[88514,58394]},{"type":"Point","coordinates":[79383,61014]},{"type":"Point","coordinates":[85316,59420]},{"type":"Point","coordinates":[74087,62205]},{"type":"Point","coordinates":[85351,59446]},{"type":"Point","coordinates":[85352,59474]},{"type":"Point","coordinates":[3435,54656]},{"type":"Point","coordinates":[77115,61634]},{"type":"Point","coordinates":[77090,61647]},{"type":"Point","coordinates":[77110,61647]},{"type":"Point","coordinates":[77110,61647]},{"type":"Point","coordinates":[77110,61647]},{"type":"Point","coordinates":[77110,61647]},{"type":"Point","coordinates":[77107,61654]},{"type":"Point","coordinates":[77115,61654]},{"type":"Point","coordinates":[77115,61654]},{"type":"Point","coordinates":[56993,64390]},{"type":"Point","coordinates":[74460,62225]},{"type":"Point","coordinates":[58198,64385]},{"type":"Point","coordinates":[87246,59029]},{"type":"Point","coordinates":[69851,63135]},{"type":"Point","coordinates":[82823,60350]},{"type":"Point","coordinates":[82769,60370]},{"type":"Point","coordinates":[82791,60368]},{"type":"Point","coordinates":[57401,64487]},{"type":"Point","coordinates":[82785,60381]},{"type":"Point","coordinates":[82783,60395]},{"type":"Point","coordinates":[82783,60395]},{"type":"Point","coordinates":[82737,60414]},{"type":"Point","coordinates":[82738,60414]},{"type":"Point","coordinates":[57408,64518]},{"type":"Point","coordinates":[82761,60440]},{"type":"Point","coordinates":[72570,62774]},{"type":"Point","coordinates":[88795,58666]},{"type":"Point","coordinates":[70512,63165]},{"type":"Point","coordinates":[49860,64809]},{"type":"Point","coordinates":[86739,59405]},{"type":"Point","coordinates":[60857,64433]},{"type":"Point","coordinates":[71353,63096]},{"type":"Point","coordinates":[82172,60723]},{"type":"Point","coordinates":[60856,64437]},{"type":"Point","coordinates":[71967,62998]},{"type":"Point","coordinates":[60858,64446]},{"type":"Point","coordinates":[82430,60671]},{"type":"Point","coordinates":[56188,64758]},{"type":"Point","coordinates":[69466,63460]},{"type":"Point","coordinates":[69466,63461]},{"type":"Point","coordinates":[82317,60749]},{"type":"Point","coordinates":[86838,59453]},{"type":"Point","coordinates":[86189,59675]},{"type":"Point","coordinates":[87875,59161]},{"type":"Point","coordinates":[87096,59409]},{"type":"Point","coordinates":[86695,59534]},{"type":"Point","coordinates":[82224,60820]},{"type":"Point","coordinates":[82255,60829]},{"type":"Point","coordinates":[86938,59505]},{"type":"Point","coordinates":[71749,63184]},{"type":"Point","coordinates":[86939,59506]},{"type":"Point","coordinates":[86938,59509]},{"type":"Point","coordinates":[87641,59296]},{"type":"Point","coordinates":[87641,59296]},{"type":"Point","coordinates":[87641,59296]},{"type":"Point","coordinates":[87642,59297]},{"type":"Point","coordinates":[87642,59298]},{"type":"Point","coordinates":[87642,59299]},{"type":"Point","coordinates":[57873,64818]},{"type":"Point","coordinates":[86815,59572]},{"type":"Point","coordinates":[82263,60913]},{"type":"Point","coordinates":[54439,65020]},{"type":"Point","coordinates":[87113,59537]},{"type":"Point","coordinates":[87111,59540]},{"type":"Point","coordinates":[87120,59549]},{"type":"Point","coordinates":[87175,59563]},{"type":"Point","coordinates":[82260,60993]},{"type":"Point","coordinates":[63458,64502]},{"type":"Point","coordinates":[71398,63424]},{"type":"Point","coordinates":[82253,61049]},{"type":"Point","coordinates":[82254,61051]},{"type":"Point","coordinates":[72174,63309]},{"type":"Point","coordinates":[71400,63492]},{"type":"Point","coordinates":[84269,60560]},{"type":"Point","coordinates":[41040,64902]},{"type":"Point","coordinates":[41032,64907]},{"type":"Point","coordinates":[71662,63604]},{"type":"Point","coordinates":[86825,59965]},{"type":"Point","coordinates":[41058,64975]},{"type":"Point","coordinates":[86931,59937]},{"type":"Point","coordinates":[71787,63635]},{"type":"Point","coordinates":[57013,65306]},{"type":"Point","coordinates":[87228,59909]},{"type":"Point","coordinates":[83990,60872]},{"type":"Point","coordinates":[4317,56039]},{"type":"Point","coordinates":[86883,60035]},{"type":"Point","coordinates":[87234,59929]},{"type":"Point","coordinates":[87233,59933]},{"type":"Point","coordinates":[87280,59944]},{"type":"Point","coordinates":[87270,59961]},{"type":"Point","coordinates":[87297,59955]},{"type":"Point","coordinates":[87299,59956]},{"type":"Point","coordinates":[87297,59960]},{"type":"Point","coordinates":[87287,59964]},{"type":"Point","coordinates":[61855,65071]},{"type":"Point","coordinates":[70565,63958]},{"type":"Point","coordinates":[4636,56245]},{"type":"Point","coordinates":[87099,60060]},{"type":"Point","coordinates":[73612,63446]},{"type":"Point","coordinates":[71506,63845]},{"type":"Point","coordinates":[87358,60007]},{"type":"Point","coordinates":[8474,57816]},{"type":"Point","coordinates":[86593,60293]},{"type":"Point","coordinates":[71392,63929]},{"type":"Point","coordinates":[71607,63895]},{"type":"Point","coordinates":[74358,63384]},{"type":"Point","coordinates":[74337,63398]},{"type":"Point","coordinates":[64156,64971]},{"type":"Point","coordinates":[85246,60737]},{"type":"Point","coordinates":[57491,65554]},{"type":"Point","coordinates":[71603,63964]},{"type":"Point","coordinates":[87279,60166]},{"type":"Point","coordinates":[81559,61810]},{"type":"Point","coordinates":[63207,65160]},{"type":"Point","coordinates":[54355,65734]},{"type":"Point","coordinates":[71408,64041]},{"type":"Point","coordinates":[41098,65361]},{"type":"Point","coordinates":[86637,60419]},{"type":"Point","coordinates":[50297,65830]},{"type":"Point","coordinates":[78082,62768]},{"type":"Point","coordinates":[84200,61222]},{"type":"Point","coordinates":[8200,57966]},{"type":"Point","coordinates":[71453,64133]},{"type":"Point","coordinates":[71537,64120]},{"type":"Point","coordinates":[81630,61965]},{"type":"Point","coordinates":[54780,65933]},{"type":"Point","coordinates":[54778,65936]},{"type":"Point","coordinates":[54779,65936]},{"type":"Point","coordinates":[50238,65989]},{"type":"Point","coordinates":[71735,64211]},{"type":"Point","coordinates":[54767,65958]},{"type":"Point","coordinates":[86967,60564]},{"type":"Point","coordinates":[36636,65176]},{"type":"Point","coordinates":[85784,61002]},{"type":"Point","coordinates":[85777,61012]},{"type":"Point","coordinates":[85772,61020]},{"type":"Point","coordinates":[85768,61022]},{"type":"Point","coordinates":[85762,61029]},{"type":"Point","coordinates":[85760,61029]},{"type":"Point","coordinates":[85762,61029]},{"type":"Point","coordinates":[85762,61029]},{"type":"Point","coordinates":[85760,61030]},{"type":"Point","coordinates":[85762,61030]},{"type":"Point","coordinates":[85759,61030]},{"type":"Point","coordinates":[85760,61030]},{"type":"Point","coordinates":[85761,61030]},{"type":"Point","coordinates":[85760,61031]},{"type":"Point","coordinates":[6661,57660]},{"type":"Point","coordinates":[86951,60696]},{"type":"Point","coordinates":[86952,60698]},{"type":"Point","coordinates":[74664,63836]},{"type":"Point","coordinates":[75271,63716]},{"type":"Point","coordinates":[50277,66190]},{"type":"Point","coordinates":[82927,61908]},{"type":"Point","coordinates":[82927,61908]},{"type":"Point","coordinates":[82927,61908]},{"type":"Point","coordinates":[82927,61908]},{"type":"Point","coordinates":[82926,61908]},{"type":"Point","coordinates":[82927,61908]},{"type":"Point","coordinates":[82927,61909]},{"type":"Point","coordinates":[86993,60728]},{"type":"Point","coordinates":[82928,61911]},{"type":"Point","coordinates":[83113,61861]},{"type":"Point","coordinates":[82932,61916]},{"type":"Point","coordinates":[82930,61918]},{"type":"Point","coordinates":[71568,64452]},{"type":"Point","coordinates":[82935,61920]},{"type":"Point","coordinates":[71549,64461]},{"type":"Point","coordinates":[86991,60748]},{"type":"Point","coordinates":[87019,60740]},{"type":"Point","coordinates":[71570,64461]},{"type":"Point","coordinates":[87000,60753]},{"type":"Point","coordinates":[71449,64488]},{"type":"Point","coordinates":[86948,60780]},{"type":"Point","coordinates":[86956,60780]},{"type":"Point","coordinates":[86984,60774]},{"type":"Point","coordinates":[86972,60779]},{"type":"Point","coordinates":[86990,60775]},{"type":"Point","coordinates":[86995,60778]},{"type":"Point","coordinates":[86982,60783]},{"type":"Point","coordinates":[86983,60784]},{"type":"Point","coordinates":[86987,60783]},{"type":"Point","coordinates":[86982,60785]},{"type":"Point","coordinates":[86982,60785]},{"type":"Point","coordinates":[86982,60785]},{"type":"Point","coordinates":[86972,60789]},{"type":"Point","coordinates":[86985,60785]},{"type":"Point","coordinates":[86971,60790]},{"type":"Point","coordinates":[86978,60789]},{"type":"Point","coordinates":[86986,60788]},{"type":"Point","coordinates":[86961,60797]},{"type":"Point","coordinates":[86981,60791]},{"type":"Point","coordinates":[86981,60792]},{"type":"Point","coordinates":[86988,60791]},{"type":"Point","coordinates":[86985,60793]},{"type":"Point","coordinates":[86984,60793]},{"type":"Point","coordinates":[86984,60793]},{"type":"Point","coordinates":[86989,60793]},{"type":"Point","coordinates":[86983,60800]},{"type":"Point","coordinates":[86983,60801]},{"type":"Point","coordinates":[86987,60800]},{"type":"Point","coordinates":[71542,64518]},{"type":"Point","coordinates":[71548,64519]},{"type":"Point","coordinates":[71713,64517]},{"type":"Point","coordinates":[86954,60864]},{"type":"Point","coordinates":[86955,60865]},{"type":"Point","coordinates":[86910,60880]},{"type":"Point","coordinates":[86953,60867]},{"type":"Point","coordinates":[86953,60868]},{"type":"Point","coordinates":[55014,66268]},{"type":"Point","coordinates":[86948,60869]},{"type":"Point","coordinates":[86948,60870]},{"type":"Point","coordinates":[86949,60874]},{"type":"Point","coordinates":[86950,60876]},{"type":"Point","coordinates":[86958,60874]},{"type":"Point","coordinates":[86911,60889]},{"type":"Point","coordinates":[86956,60876]},{"type":"Point","coordinates":[86911,60890]},{"type":"Point","coordinates":[71714,64551]},{"type":"Point","coordinates":[86950,60880]},{"type":"Point","coordinates":[86912,60892]},{"type":"Point","coordinates":[86955,60879]},{"type":"Point","coordinates":[86949,60881]},{"type":"Point","coordinates":[86949,60881]},{"type":"Point","coordinates":[86949,60881]},{"type":"Point","coordinates":[71729,64550]},{"type":"Point","coordinates":[86913,60893]},{"type":"Point","coordinates":[86949,60883]},{"type":"Point","coordinates":[86949,60884]},{"type":"Point","coordinates":[86954,60883]},{"type":"Point","coordinates":[86952,60885]},{"type":"Point","coordinates":[86950,60887]},{"type":"Point","coordinates":[7403,58157]},{"type":"Point","coordinates":[7406,58158]},{"type":"Point","coordinates":[7579,58226]},{"type":"Point","coordinates":[7396,58160]},{"type":"Point","coordinates":[86180,61141]},{"type":"Point","coordinates":[82451,62203]},{"type":"Point","coordinates":[5084,57268]},{"type":"Point","coordinates":[7758,58311]},{"type":"Point","coordinates":[7482,58211]},{"type":"Point","coordinates":[7559,58240]},{"type":"Point","coordinates":[82458,62214]},{"type":"Point","coordinates":[7483,58211]},{"type":"Point","coordinates":[7465,58208]},{"type":"Point","coordinates":[7481,58215]},{"type":"Point","coordinates":[7413,58193]},{"type":"Point","coordinates":[81045,62594]},{"type":"Point","coordinates":[70644,64783]},{"type":"Point","coordinates":[7401,58194]},{"type":"Point","coordinates":[86272,61140]},{"type":"Point","coordinates":[86918,60954]},{"type":"Point","coordinates":[4665,57138]},{"type":"Point","coordinates":[82016,62363]},{"type":"Point","coordinates":[4091,56908]},{"type":"Point","coordinates":[4348,57020]},{"type":"Point","coordinates":[86902,60979]},{"type":"Point","coordinates":[4502,57102]},{"type":"Point","coordinates":[86920,60995]},{"type":"Point","coordinates":[86921,60997]},{"type":"Point","coordinates":[86923,60997]},{"type":"Point","coordinates":[86922,60998]},{"type":"Point","coordinates":[7468,58276]},{"type":"Point","coordinates":[86915,61002]},{"type":"Point","coordinates":[86979,60983]},{"type":"Point","coordinates":[86928,60999]},{"type":"Point","coordinates":[86926,61000]},{"type":"Point","coordinates":[86925,61002]},{"type":"Point","coordinates":[86926,61002]},{"type":"Point","coordinates":[86927,61002]},{"type":"Point","coordinates":[86927,61002]},{"type":"Point","coordinates":[86927,61002]},{"type":"Point","coordinates":[86922,61004]},{"type":"Point","coordinates":[86927,61003]},{"type":"Point","coordinates":[7709,58374]},{"type":"Point","coordinates":[86032,61287]},{"type":"Point","coordinates":[4584,57167]},{"type":"Point","coordinates":[4178,57003]},{"type":"Point","coordinates":[86912,61026]},{"type":"Point","coordinates":[7676,58380]},{"type":"Point","coordinates":[7772,58418]},{"type":"Point","coordinates":[4476,57128]},{"type":"Point","coordinates":[6835,58081]},{"type":"Point","coordinates":[74097,64265]},{"type":"Point","coordinates":[86108,61296]},{"type":"Point","coordinates":[70700,64883]},{"type":"Point","coordinates":[4007,56960]},{"type":"Point","coordinates":[4709,57247]},{"type":"Point","coordinates":[42498,66189]},{"type":"Point","coordinates":[4078,56997]},{"type":"Point","coordinates":[7710,58427]},{"type":"Point","coordinates":[81061,62711]},{"type":"Point","coordinates":[86004,61343]},{"type":"Point","coordinates":[81079,62712]},{"type":"Point","coordinates":[78811,63278]},{"type":"Point","coordinates":[4550,57207]},{"type":"Point","coordinates":[4316,57114]},{"type":"Point","coordinates":[7462,58355]},{"type":"Point","coordinates":[86978,61063]},{"type":"Point","coordinates":[85800,61424]},{"type":"Point","coordinates":[86895,61099]},{"type":"Point","coordinates":[7859,58522]},{"type":"Point","coordinates":[4335,57148]},{"type":"Point","coordinates":[4326,57147]},{"type":"Point","coordinates":[86867,61122]},{"type":"Point","coordinates":[6818,58138]},{"type":"Point","coordinates":[4527,57234]},{"type":"Point","coordinates":[71428,64822]},{"type":"Point","coordinates":[86275,61314]},{"type":"Point","coordinates":[70958,64908]},{"type":"Point","coordinates":[86873,61136]},{"type":"Point","coordinates":[6886,58181]},{"type":"Point","coordinates":[19183,62229]},{"type":"Point","coordinates":[78868,63320]},{"type":"Point","coordinates":[7680,58491]},{"type":"Point","coordinates":[86897,61145]},{"type":"Point","coordinates":[7455,58415]},{"type":"Point","coordinates":[7451,58414]},{"type":"Point","coordinates":[7452,58416]},{"type":"Point","coordinates":[7537,58448]},{"type":"Point","coordinates":[7453,58420]},{"type":"Point","coordinates":[7452,58420]},{"type":"Point","coordinates":[7454,58421]},{"type":"Point","coordinates":[7454,58420]},{"type":"Point","coordinates":[7454,58421]},{"type":"Point","coordinates":[7454,58421]},{"type":"Point","coordinates":[7454,58421]},{"type":"Point","coordinates":[7454,58421]},{"type":"Point","coordinates":[7454,58421]},{"type":"Point","coordinates":[7454,58421]},{"type":"Point","coordinates":[7454,58422]},{"type":"Point","coordinates":[7454,58422]},{"type":"Point","coordinates":[7454,58422]},{"type":"Point","coordinates":[7454,58423]},{"type":"Point","coordinates":[7667,58503]},{"type":"Point","coordinates":[73588,64466]},{"type":"Point","coordinates":[7669,58506]},{"type":"Point","coordinates":[74708,64250]},{"type":"Point","coordinates":[7666,58506]},{"type":"Point","coordinates":[8065,58669]},{"type":"Point","coordinates":[7517,58463]},{"type":"Point","coordinates":[4612,57328]},{"type":"Point","coordinates":[42340,66289]},{"type":"Point","coordinates":[72175,64773]},{"type":"Point","coordinates":[86065,61462]},{"type":"Point","coordinates":[86065,61462]},{"type":"Point","coordinates":[76425,63943]},{"type":"Point","coordinates":[4385,57270]},{"type":"Point","coordinates":[86336,61386]},{"type":"Point","coordinates":[73931,64467]},{"type":"Point","coordinates":[4651,57392]},{"type":"Point","coordinates":[6974,58313]},{"type":"Point","coordinates":[7531,58526]},{"type":"Point","coordinates":[4479,57335]},{"type":"Point","coordinates":[86069,61489]},{"type":"Point","coordinates":[3559,56960]},{"type":"Point","coordinates":[42607,66373]},{"type":"Point","coordinates":[42223,66349]},{"type":"Point","coordinates":[73995,64478]},{"type":"Point","coordinates":[4016,57158]},{"type":"Point","coordinates":[3901,57114]},{"type":"Point","coordinates":[71015,65030]},{"type":"Point","coordinates":[4285,57280]},{"type":"Point","coordinates":[7422,58517]},{"type":"Point","coordinates":[9455,59271]},{"type":"Point","coordinates":[86266,61467]},{"type":"Point","coordinates":[4279,57295]},{"type":"Point","coordinates":[3899,57140]},{"type":"Point","coordinates":[62824,66144]},{"type":"Point","coordinates":[62823,66150]},{"type":"Point","coordinates":[4748,57496]},{"type":"Point","coordinates":[3629,57046]},{"type":"Point","coordinates":[71537,64984]},{"type":"Point","coordinates":[86266,61497]},{"type":"Point","coordinates":[86340,61482]},{"type":"Point","coordinates":[7724,58683]},{"type":"Point","coordinates":[4542,57444]},{"type":"Point","coordinates":[86241,61521]},{"type":"Point","coordinates":[7365,58557]},{"type":"Point","coordinates":[86192,61547]},{"type":"Point","coordinates":[70898,65123]},{"type":"Point","coordinates":[4386,57401]},{"type":"Point","coordinates":[81080,62976]},{"type":"Point","coordinates":[86194,61554]},{"type":"Point","coordinates":[86197,61553]},{"type":"Point","coordinates":[86197,61553]},{"type":"Point","coordinates":[86197,61554]},{"type":"Point","coordinates":[86198,61554]},{"type":"Point","coordinates":[86194,61555]},{"type":"Point","coordinates":[86195,61555]},{"type":"Point","coordinates":[86202,61553]},{"type":"Point","coordinates":[86195,61555]},{"type":"Point","coordinates":[86195,61555]},{"type":"Point","coordinates":[86195,61555]},{"type":"Point","coordinates":[86195,61555]},{"type":"Point","coordinates":[86200,61556]},{"type":"Point","coordinates":[86199,61556]},{"type":"Point","coordinates":[86199,61556]},{"type":"Point","coordinates":[86199,61556]},{"type":"Point","coordinates":[74297,64515]},{"type":"Point","coordinates":[4773,57565]},{"type":"Point","coordinates":[86200,61558]},{"type":"Point","coordinates":[86201,61558]},{"type":"Point","coordinates":[86200,61558]},{"type":"Point","coordinates":[86256,61542]},{"type":"Point","coordinates":[86201,61559]},{"type":"Point","coordinates":[86201,61559]},{"type":"Point","coordinates":[86950,61336]},{"type":"Point","coordinates":[86195,61566]},{"type":"Point","coordinates":[81087,62991]},{"type":"Point","coordinates":[86209,61566]},{"type":"Point","coordinates":[80593,63119]},{"type":"Point","coordinates":[86211,61569]},{"type":"Point","coordinates":[80651,63110]},{"type":"Point","coordinates":[86220,61574]},{"type":"Point","coordinates":[80632,63119]},{"type":"Point","coordinates":[80633,63120]},{"type":"Point","coordinates":[86279,61562]},{"type":"Point","coordinates":[4845,57623]},{"type":"Point","coordinates":[78663,63605]},{"type":"Point","coordinates":[80653,63126]},{"type":"Point","coordinates":[80636,63132]},{"type":"Point","coordinates":[71825,65022]},{"type":"Point","coordinates":[81099,63024]},{"type":"Point","coordinates":[86947,61378]},{"type":"Point","coordinates":[6880,58468]},{"type":"Point","coordinates":[3969,57311]},{"type":"Point","coordinates":[70981,65220]},{"type":"Point","coordinates":[73826,64711]},{"type":"Point","coordinates":[46067,66782]},{"type":"Point","coordinates":[86407,61616]},{"type":"Point","coordinates":[86096,61711]},{"type":"Point","coordinates":[86977,61446]},{"type":"Point","coordinates":[3878,57327]},{"type":"Point","coordinates":[46076,66806]},{"type":"Point","coordinates":[6706,58467]},{"type":"Point","coordinates":[82586,62737]},{"type":"Point","coordinates":[4104,57455]},{"type":"Point","coordinates":[86918,61500]},{"type":"Point","coordinates":[3968,57404]},{"type":"Point","coordinates":[86961,61498]},{"type":"Point","coordinates":[86986,61490]},{"type":"Point","coordinates":[86965,61498]},{"type":"Point","coordinates":[86984,61493]},{"type":"Point","coordinates":[86972,61498]},{"type":"Point","coordinates":[86974,61499]},{"type":"Point","coordinates":[4263,57537]},{"type":"Point","coordinates":[86971,61501]},{"type":"Point","coordinates":[86968,61502]},{"type":"Point","coordinates":[86968,61502]},{"type":"Point","coordinates":[86968,61502]},{"type":"Point","coordinates":[86968,61503]},{"type":"Point","coordinates":[86968,61503]},{"type":"Point","coordinates":[86968,61503]},{"type":"Point","coordinates":[86968,61503]},{"type":"Point","coordinates":[86968,61503]},{"type":"Point","coordinates":[86971,61502]},{"type":"Point","coordinates":[86968,61503]},{"type":"Point","coordinates":[86969,61503]},{"type":"Point","coordinates":[70988,65298]},{"type":"Point","coordinates":[86974,61502]},{"type":"Point","coordinates":[86971,61503]},{"type":"Point","coordinates":[86981,61501]},{"type":"Point","coordinates":[86969,61505]},{"type":"Point","coordinates":[86970,61505]},{"type":"Point","coordinates":[86991,61499]},{"type":"Point","coordinates":[4458,57623]},{"type":"Point","coordinates":[86970,61507]},{"type":"Point","coordinates":[86972,61506]},{"type":"Point","coordinates":[86971,61507]},{"type":"Point","coordinates":[86970,61510]},{"type":"Point","coordinates":[86979,61507]},{"type":"Point","coordinates":[86970,61511]},{"type":"Point","coordinates":[86993,61505]},{"type":"Point","coordinates":[86975,61512]},{"type":"Point","coordinates":[83300,62585]},{"type":"Point","coordinates":[74456,64676]},{"type":"Point","coordinates":[86974,61517]},{"type":"Point","coordinates":[86977,61519]},{"type":"Point","coordinates":[3711,57335]},{"type":"Point","coordinates":[9777,59677]},{"type":"Point","coordinates":[4127,57514]},{"type":"Point","coordinates":[4803,57796]},{"type":"Point","coordinates":[81366,63128]},{"type":"Point","coordinates":[4511,57685]},{"type":"Point","coordinates":[6276,58389]},{"type":"Point","coordinates":[87015,61535]},{"type":"Point","coordinates":[86973,61553]},{"type":"Point","coordinates":[70736,65393]},{"type":"Point","coordinates":[86971,61561]},{"type":"Point","coordinates":[83300,62637]},{"type":"Point","coordinates":[3998,57499]},{"type":"Point","coordinates":[71814,65230]},{"type":"Point","coordinates":[86681,61678]},{"type":"Point","coordinates":[55804,66956]},{"type":"Point","coordinates":[86755,61667]},{"type":"Point","coordinates":[86686,61694]},{"type":"Point","coordinates":[86687,61694]},{"type":"Point","coordinates":[86685,61697]},{"type":"Point","coordinates":[3464,57320]},{"type":"Point","coordinates":[86685,61698]},{"type":"Point","coordinates":[86684,61699]},{"type":"Point","coordinates":[86684,61699]},{"type":"Point","coordinates":[86684,61699]},{"type":"Point","coordinates":[86684,61699]},{"type":"Point","coordinates":[86684,61699]},{"type":"Point","coordinates":[86684,61700]},{"type":"Point","coordinates":[86683,61701]},{"type":"Point","coordinates":[86683,61701]},{"type":"Point","coordinates":[86679,61708]},{"type":"Point","coordinates":[86679,61709]},{"type":"Point","coordinates":[86681,61710]},{"type":"Point","coordinates":[86681,61712]},{"type":"Point","coordinates":[86677,61716]},{"type":"Point","coordinates":[86677,61717]},{"type":"Point","coordinates":[4523,57772]},{"type":"Point","coordinates":[86678,61718]},{"type":"Point","coordinates":[86673,61724]},{"type":"Point","coordinates":[71486,65347]},{"type":"Point","coordinates":[71485,65349]},{"type":"Point","coordinates":[71485,65349]},{"type":"Point","coordinates":[71485,65349]},{"type":"Point","coordinates":[71487,65349]},{"type":"Point","coordinates":[3903,57535]},{"type":"Point","coordinates":[4578,57827]},{"type":"Point","coordinates":[87034,61645]},{"type":"Point","coordinates":[73135,65079]},{"type":"Point","coordinates":[81279,63282]},{"type":"Point","coordinates":[71648,65361]},{"type":"Point","coordinates":[74304,64876]},{"type":"Point","coordinates":[73955,64947]},{"type":"Point","coordinates":[3592,57464]},{"type":"Point","coordinates":[3470,57417]},{"type":"Point","coordinates":[74508,64857]},{"type":"Point","coordinates":[3742,57572]},{"type":"Point","coordinates":[80637,63517]},{"type":"Point","coordinates":[3770,57587]},{"type":"Point","coordinates":[75017,64796]},{"type":"Point","coordinates":[3782,57595]},{"type":"Point","coordinates":[3771,57598]},{"type":"Point","coordinates":[3781,57602]},{"type":"Point","coordinates":[3775,57600]},{"type":"Point","coordinates":[80943,63454]},{"type":"Point","coordinates":[3806,57636]},{"type":"Point","coordinates":[3756,57660]},{"type":"Point","coordinates":[37647,66536]},{"type":"Point","coordinates":[4419,57979]},{"type":"Point","coordinates":[39350,66750]},{"type":"Point","coordinates":[78922,64076]},{"type":"Point","coordinates":[80896,63596]},{"type":"Point","coordinates":[74468,65047]},{"type":"Point","coordinates":[3686,57717]},{"type":"Point","coordinates":[4497,58055]},{"type":"Point","coordinates":[3470,57637]},{"type":"Point","coordinates":[3866,57811]},{"type":"Point","coordinates":[3762,57782]},{"type":"Point","coordinates":[86344,62147]},{"type":"Point","coordinates":[76320,64730]},{"type":"Point","coordinates":[71839,65615]},{"type":"Point","coordinates":[72072,65586]},{"type":"Point","coordinates":[82203,63367]},{"type":"Point","coordinates":[3516,57744]},{"type":"Point","coordinates":[46147,67354]},{"type":"Point","coordinates":[86643,62117]},{"type":"Point","coordinates":[4472,58154]},{"type":"Point","coordinates":[3620,57807]},{"type":"Point","coordinates":[86338,62223]},{"type":"Point","coordinates":[74399,65197]},{"type":"Point","coordinates":[86681,62123]},{"type":"Point","coordinates":[46150,67376]},{"type":"Point","coordinates":[3505,57783]},{"type":"Point","coordinates":[3435,57771]},{"type":"Point","coordinates":[3534,57833]},{"type":"Point","coordinates":[3694,57913]},{"type":"Point","coordinates":[74374,65289]},{"type":"Point","coordinates":[37827,66886]},{"type":"Point","coordinates":[4459,58332]},{"type":"Point","coordinates":[3739,58041]},{"type":"Point","coordinates":[3670,58026]},{"type":"Point","coordinates":[80521,64026]},{"type":"Point","coordinates":[75046,65271]},{"type":"Point","coordinates":[74798,65331]},{"type":"Point","coordinates":[9606,60340]},{"type":"Point","coordinates":[80517,64049]},{"type":"Point","coordinates":[8231,59850]},{"type":"Point","coordinates":[85838,62603]},{"type":"Point","coordinates":[4188,58279]},{"type":"Point","coordinates":[70021,66206]},{"type":"Point","coordinates":[8225,59852]},{"type":"Point","coordinates":[8225,59853]},{"type":"Point","coordinates":[8242,59861]},{"type":"Point","coordinates":[8225,59855]},{"type":"Point","coordinates":[8226,59856]},{"type":"Point","coordinates":[8226,59856]},{"type":"Point","coordinates":[8226,59856]},{"type":"Point","coordinates":[8226,59856]},{"type":"Point","coordinates":[8226,59857]},{"type":"Point","coordinates":[8226,59857]},{"type":"Point","coordinates":[8226,59857]},{"type":"Point","coordinates":[8229,59859]},{"type":"Point","coordinates":[8226,59859]},{"type":"Point","coordinates":[8226,59860]},{"type":"Point","coordinates":[8227,59861]},{"type":"Point","coordinates":[8227,59861]},{"type":"Point","coordinates":[8391,59925]},{"type":"Point","coordinates":[8227,59866]},{"type":"Point","coordinates":[3722,58106]},{"type":"Point","coordinates":[8190,59856]},{"type":"Point","coordinates":[8190,59856]},{"type":"Point","coordinates":[69960,66236]},{"type":"Point","coordinates":[69960,66236]},{"type":"Point","coordinates":[8228,59876]},{"type":"Point","coordinates":[61050,67320]},{"type":"Point","coordinates":[8227,59881]},{"type":"Point","coordinates":[8227,59881]},{"type":"Point","coordinates":[8227,59881]},{"type":"Point","coordinates":[3548,58046]},{"type":"Point","coordinates":[8227,59883]},{"type":"Point","coordinates":[8228,59885]},{"type":"Point","coordinates":[62974,67154]},{"type":"Point","coordinates":[8228,59889]},{"type":"Point","coordinates":[8228,59890]},{"type":"Point","coordinates":[8229,59893]},{"type":"Point","coordinates":[8229,59893]},{"type":"Point","coordinates":[8229,59893]},{"type":"Point","coordinates":[8228,59893]},{"type":"Point","coordinates":[8228,59893]},{"type":"Point","coordinates":[8261,59905]},{"type":"Point","coordinates":[8231,59897]},{"type":"Point","coordinates":[8229,59897]},{"type":"Point","coordinates":[85557,62737]},{"type":"Point","coordinates":[8232,59904]},{"type":"Point","coordinates":[8232,59906]},{"type":"Point","coordinates":[62964,67171]},{"type":"Point","coordinates":[8238,59909]},{"type":"Point","coordinates":[8233,59908]},{"type":"Point","coordinates":[74296,65501]},{"type":"Point","coordinates":[3494,58052]},{"type":"Point","coordinates":[8235,59914]},{"type":"Point","coordinates":[8232,59914]},{"type":"Point","coordinates":[74898,65388]},{"type":"Point","coordinates":[3710,58148]},{"type":"Point","coordinates":[8226,59919]},{"type":"Point","coordinates":[8227,59920]},{"type":"Point","coordinates":[8227,59920]},{"type":"Point","coordinates":[8227,59920]},{"type":"Point","coordinates":[8228,59920]},{"type":"Point","coordinates":[8224,59920]},{"type":"Point","coordinates":[3449,58046]},{"type":"Point","coordinates":[81335,63927]},{"type":"Point","coordinates":[80624,64112]},{"type":"Point","coordinates":[80609,64116]},{"type":"Point","coordinates":[4237,58383]},{"type":"Point","coordinates":[51376,67787]},{"type":"Point","coordinates":[80613,64120]},{"type":"Point","coordinates":[80605,64123]},{"type":"Point","coordinates":[8199,59928]},{"type":"Point","coordinates":[81357,63934]},{"type":"Point","coordinates":[80605,64128]},{"type":"Point","coordinates":[80609,64128]},{"type":"Point","coordinates":[8207,59938]},{"type":"Point","coordinates":[8206,59938]},{"type":"Point","coordinates":[81390,63931]},{"type":"Point","coordinates":[80607,64130]},{"type":"Point","coordinates":[8206,59939]},{"type":"Point","coordinates":[8203,59940]},{"type":"Point","coordinates":[8205,59940]},{"type":"Point","coordinates":[81360,63944]},{"type":"Point","coordinates":[81359,63945]},{"type":"Point","coordinates":[3496,58099]},{"type":"Point","coordinates":[80600,64145]},{"type":"Point","coordinates":[3440,58081]},{"type":"Point","coordinates":[10009,60612]},{"type":"Point","coordinates":[10009,60612]},{"type":"Point","coordinates":[10004,60614]},{"type":"Point","coordinates":[81360,63973]},{"type":"Point","coordinates":[81360,63976]},{"type":"Point","coordinates":[74758,65487]},{"type":"Point","coordinates":[74345,65578]},{"type":"Point","coordinates":[49933,67843]},{"type":"Point","coordinates":[3382,58097]},{"type":"Point","coordinates":[58755,67611]},{"type":"Point","coordinates":[52015,67853]},{"type":"Point","coordinates":[52014,67856]},{"type":"Point","coordinates":[81348,64009]},{"type":"Point","coordinates":[52154,67862]},{"type":"Point","coordinates":[51790,67873]},{"type":"Point","coordinates":[55620,67793]},{"type":"Point","coordinates":[35524,66851]},{"type":"Point","coordinates":[42615,67577]},{"type":"Point","coordinates":[3562,58206]},{"type":"Point","coordinates":[3472,58170]},{"type":"Point","coordinates":[3606,58227]},{"type":"Point","coordinates":[74511,65594]},{"type":"Point","coordinates":[3392,58149]},{"type":"Point","coordinates":[74469,65606]},{"type":"Point","coordinates":[85165,62999]},{"type":"Point","coordinates":[3702,58281]},{"type":"Point","coordinates":[74785,65545]},{"type":"Point","coordinates":[85206,62992]},{"type":"Point","coordinates":[4321,58539]},{"type":"Point","coordinates":[81915,63909]},{"type":"Point","coordinates":[71577,66154]},{"type":"Point","coordinates":[74360,65643]},{"type":"Point","coordinates":[74449,65635]},{"type":"Point","coordinates":[74450,65641]},{"type":"Point","coordinates":[74398,65652]},{"type":"Point","coordinates":[74395,65654]},{"type":"Point","coordinates":[78544,64763]},{"type":"Point","coordinates":[71944,66112]},{"type":"Point","coordinates":[39257,67341]},{"type":"Point","coordinates":[8487,60190]},{"type":"Point","coordinates":[74331,65680]},{"type":"Point","coordinates":[84894,63124]},{"type":"Point","coordinates":[74342,65683]},{"type":"Point","coordinates":[63540,67307]},{"type":"Point","coordinates":[81463,64069]},{"type":"Point","coordinates":[63542,67311]},{"type":"Point","coordinates":[78867,64712]},{"type":"Point","coordinates":[53281,67950]},{"type":"Point","coordinates":[74332,65705]},{"type":"Point","coordinates":[71975,66144]},{"type":"Point","coordinates":[74341,65708]},{"type":"Point","coordinates":[8228,60130]},{"type":"Point","coordinates":[74342,65710]},{"type":"Point","coordinates":[71988,66153]},{"type":"Point","coordinates":[74443,65722]},{"type":"Point","coordinates":[70702,66403]},{"type":"Point","coordinates":[74442,65726]},{"type":"Point","coordinates":[39288,67421]},{"type":"Point","coordinates":[74440,65729]},{"type":"Point","coordinates":[74435,65732]},{"type":"Point","coordinates":[74438,65731]},{"type":"Point","coordinates":[74438,65732]},{"type":"Point","coordinates":[74292,65762]},{"type":"Point","coordinates":[53288,68003]},{"type":"Point","coordinates":[74437,65747]},{"type":"Point","coordinates":[62861,67470]},{"type":"Point","coordinates":[55426,67974]},{"type":"Point","coordinates":[55047,67994]},{"type":"Point","coordinates":[9988,60854]},{"type":"Point","coordinates":[55237,67993]},{"type":"Point","coordinates":[82931,63796]},{"type":"Point","coordinates":[82931,63796]},{"type":"Point","coordinates":[82931,63796]},{"type":"Point","coordinates":[82931,63796]},{"type":"Point","coordinates":[82931,63796]},{"type":"Point","coordinates":[79315,64719]},{"type":"Point","coordinates":[55328,68013]},{"type":"Point","coordinates":[81614,64173]},{"type":"Point","coordinates":[50086,68089]},{"type":"Point","coordinates":[55045,68031]},{"type":"Point","coordinates":[74471,65804]},{"type":"Point","coordinates":[74471,65805]},{"type":"Point","coordinates":[46392,68001]},{"type":"Point","coordinates":[46392,68001]},{"type":"Point","coordinates":[75430,65613]},{"type":"Point","coordinates":[78892,64867]},{"type":"Point","coordinates":[53893,68091]},{"type":"Point","coordinates":[53874,68092]},{"type":"Point","coordinates":[8325,60324]},{"type":"Point","coordinates":[50128,68132]},{"type":"Point","coordinates":[85128,63254]},{"type":"Point","coordinates":[9683,60859]},{"type":"Point","coordinates":[39283,67580]},{"type":"Point","coordinates":[74408,65895]},{"type":"Point","coordinates":[74408,65895]},{"type":"Point","coordinates":[39413,67622]},{"type":"Point","coordinates":[31244,66532]},{"type":"Point","coordinates":[85025,63359]},{"type":"Point","coordinates":[55472,68140]},{"type":"Point","coordinates":[49599,68225]},{"type":"Point","coordinates":[49596,68231]},{"type":"Point","coordinates":[75321,65780]},{"type":"Point","coordinates":[55471,68167]},{"type":"Point","coordinates":[71629,66487]},{"type":"Point","coordinates":[62973,67667]},{"type":"Point","coordinates":[8541,60532]},{"type":"Point","coordinates":[74489,65971]},{"type":"Point","coordinates":[71832,66468]},{"type":"Point","coordinates":[39392,67710]},{"type":"Point","coordinates":[73636,66164]},{"type":"Point","coordinates":[69744,66842]},{"type":"Point","coordinates":[69742,66849]},{"type":"Point","coordinates":[71934,66486]},{"type":"Point","coordinates":[35993,67341]},{"type":"Point","coordinates":[74646,65997]},{"type":"Point","coordinates":[80326,64732]},{"type":"Point","coordinates":[69729,66881]},{"type":"Point","coordinates":[39164,67729]},{"type":"Point","coordinates":[74820,65975]},{"type":"Point","coordinates":[9993,61141]},{"type":"Point","coordinates":[78763,65135]},{"type":"Point","coordinates":[78754,65145]},{"type":"Point","coordinates":[74443,66097]},{"type":"Point","coordinates":[61304,67955]},{"type":"Point","coordinates":[75062,65981]},{"type":"Point","coordinates":[74405,66131]},{"type":"Point","coordinates":[75300,65977]},{"type":"Point","coordinates":[85019,63587]},{"type":"Point","coordinates":[8289,60624]},{"type":"Point","coordinates":[40837,67998]},{"type":"Point","coordinates":[8627,60772]},{"type":"Point","coordinates":[8628,60772]},{"type":"Point","coordinates":[10285,61368]},{"type":"Point","coordinates":[39420,67886]},{"type":"Point","coordinates":[78679,65275]},{"type":"Point","coordinates":[71558,66729]},{"type":"Point","coordinates":[71881,66679]},{"type":"Point","coordinates":[71639,66731]},{"type":"Point","coordinates":[8660,60824]},{"type":"Point","coordinates":[8658,60825]},{"type":"Point","coordinates":[80290,64930]},{"type":"Point","coordinates":[8106,60640]},{"type":"Point","coordinates":[8590,60818]},{"type":"Point","coordinates":[8589,60819]},{"type":"Point","coordinates":[78766,65306]},{"type":"Point","coordinates":[74781,66177]},{"type":"Point","coordinates":[85099,63691]},{"type":"Point","coordinates":[65862,67664]},{"type":"Point","coordinates":[69807,67123]},{"type":"Point","coordinates":[39364,68013]},{"type":"Point","coordinates":[39369,68014]},{"type":"Point","coordinates":[76400,65918]},{"type":"Point","coordinates":[8367,60826]},{"type":"Point","coordinates":[39353,68026]},{"type":"Point","coordinates":[39366,68027]},{"type":"Point","coordinates":[39366,68028]},{"type":"Point","coordinates":[49889,68609]},{"type":"Point","coordinates":[8911,61048]},{"type":"Point","coordinates":[59587,68343]},{"type":"Point","coordinates":[82281,64555]},{"type":"Point","coordinates":[36673,67790]},{"type":"Point","coordinates":[75183,66246]},{"type":"Point","coordinates":[60778,68291]},{"type":"Point","coordinates":[79585,65283]},{"type":"Point","coordinates":[37171,67874]},{"type":"Point","coordinates":[39473,68131]},{"type":"Point","coordinates":[59536,68413]},{"type":"Point","coordinates":[71756,66940]},{"type":"Point","coordinates":[39235,68129]},{"type":"Point","coordinates":[9046,61210]},{"type":"Point","coordinates":[39491,68169]},{"type":"Point","coordinates":[45866,68624]},{"type":"Point","coordinates":[79707,65307]},{"type":"Point","coordinates":[60850,68351]},{"type":"Point","coordinates":[59552,68452]},{"type":"Point","coordinates":[59550,68454]},{"type":"Point","coordinates":[82120,64743]},{"type":"Point","coordinates":[50203,68784]},{"type":"Point","coordinates":[36464,67884]},{"type":"Point","coordinates":[60015,68467]},{"type":"Point","coordinates":[36464,67904]},{"type":"Point","coordinates":[39348,68231]},{"type":"Point","coordinates":[39449,68270]},{"type":"Point","coordinates":[79339,65500]},{"type":"Point","coordinates":[79341,65501]},{"type":"Point","coordinates":[8119,60991]},{"type":"Point","coordinates":[79655,65447]},{"type":"Point","coordinates":[69775,67420]},{"type":"Point","coordinates":[80134,65353]},{"type":"Point","coordinates":[79645,65475]},{"type":"Point","coordinates":[79645,65475]},{"type":"Point","coordinates":[79639,65483]},{"type":"Point","coordinates":[50871,68909]},{"type":"Point","coordinates":[8884,61336]},{"type":"Point","coordinates":[8870,61333]},{"type":"Point","coordinates":[8871,61334]},{"type":"Point","coordinates":[8871,61335]},{"type":"Point","coordinates":[8870,61335]},{"type":"Point","coordinates":[8871,61335]},{"type":"Point","coordinates":[8871,61335]},{"type":"Point","coordinates":[79574,65520]},{"type":"Point","coordinates":[8832,61323]},{"type":"Point","coordinates":[8868,61337]},{"type":"Point","coordinates":[8873,61339]},{"type":"Point","coordinates":[8876,61341]},{"type":"Point","coordinates":[8876,61341]},{"type":"Point","coordinates":[8876,61341]},{"type":"Point","coordinates":[8876,61341]},{"type":"Point","coordinates":[49434,68914]},{"type":"Point","coordinates":[8870,61343]},{"type":"Point","coordinates":[8873,61345]},{"type":"Point","coordinates":[8867,61343]},{"type":"Point","coordinates":[39237,68336]},{"type":"Point","coordinates":[8870,61347]},{"type":"Point","coordinates":[8866,61346]},{"type":"Point","coordinates":[8874,61349]},{"type":"Point","coordinates":[8867,61346]},{"type":"Point","coordinates":[8867,61347]},{"type":"Point","coordinates":[8867,61347]},{"type":"Point","coordinates":[8867,61347]},{"type":"Point","coordinates":[8880,61353]},{"type":"Point","coordinates":[8836,61338]},{"type":"Point","coordinates":[8868,61350]},{"type":"Point","coordinates":[8839,61348]},{"type":"Point","coordinates":[8312,61155]},{"type":"Point","coordinates":[8841,61352]},{"type":"Point","coordinates":[8883,61371]},{"type":"Point","coordinates":[8883,61372]},{"type":"Point","coordinates":[8879,61371]},{"type":"Point","coordinates":[8878,61371]},{"type":"Point","coordinates":[8844,61363]},{"type":"Point","coordinates":[8846,61364]},{"type":"Point","coordinates":[20588,65018]},{"type":"Point","coordinates":[8844,61364]},{"type":"Point","coordinates":[8825,61358]},{"type":"Point","coordinates":[39676,68413]},{"type":"Point","coordinates":[8832,61374]},{"type":"Point","coordinates":[8862,61388]},{"type":"Point","coordinates":[8835,61381]},{"type":"Point","coordinates":[8835,61381]},{"type":"Point","coordinates":[8832,61380]},{"type":"Point","coordinates":[8837,61383]},{"type":"Point","coordinates":[8836,61383]},{"type":"Point","coordinates":[8836,61383]},{"type":"Point","coordinates":[8839,61384]},{"type":"Point","coordinates":[8880,61408]},{"type":"Point","coordinates":[79442,65622]},{"type":"Point","coordinates":[8871,61420]},{"type":"Point","coordinates":[39867,68478]},{"type":"Point","coordinates":[53881,68989]},{"type":"Point","coordinates":[8658,61367]},{"type":"Point","coordinates":[8658,61367]},{"type":"Point","coordinates":[8253,61226]},{"type":"Point","coordinates":[8082,61167]},{"type":"Point","coordinates":[50312,69037]},{"type":"Point","coordinates":[7947,61118]},{"type":"Point","coordinates":[8661,61381]},{"type":"Point","coordinates":[8833,61445]},{"type":"Point","coordinates":[8829,61452]},{"type":"Point","coordinates":[55971,68954]},{"type":"Point","coordinates":[8661,61391]},{"type":"Point","coordinates":[8660,61392]},{"type":"Point","coordinates":[8662,61393]},{"type":"Point","coordinates":[8824,61454]},{"type":"Point","coordinates":[8807,61449]},{"type":"Point","coordinates":[8807,61450]},{"type":"Point","coordinates":[8807,61450]},{"type":"Point","coordinates":[8825,61456]},{"type":"Point","coordinates":[8825,61456]},{"type":"Point","coordinates":[8824,61456]},{"type":"Point","coordinates":[8812,61455]},{"type":"Point","coordinates":[8812,61455]},{"type":"Point","coordinates":[8812,61455]},{"type":"Point","coordinates":[80282,65487]},{"type":"Point","coordinates":[8821,61459]},{"type":"Point","coordinates":[8818,61459]},{"type":"Point","coordinates":[8818,61459]},{"type":"Point","coordinates":[8818,61459]},{"type":"Point","coordinates":[8818,61460]},{"type":"Point","coordinates":[8818,61460]},{"type":"Point","coordinates":[80305,65491]},{"type":"Point","coordinates":[80303,65493]},{"type":"Point","coordinates":[8825,61473]},{"type":"Point","coordinates":[8706,61438]},{"type":"Point","coordinates":[7932,61159]},{"type":"Point","coordinates":[80285,65515]},{"type":"Point","coordinates":[8696,61461]},{"type":"Point","coordinates":[35823,68125]},{"type":"Point","coordinates":[9186,61644]},{"type":"Point","coordinates":[8696,61468]},{"type":"Point","coordinates":[8696,61468]},{"type":"Point","coordinates":[69635,67681]},{"type":"Point","coordinates":[54881,69058]},{"type":"Point","coordinates":[39387,68540]},{"type":"Point","coordinates":[41005,68691]},{"type":"Point","coordinates":[48260,69094]},{"type":"Point","coordinates":[69636,67698]},{"type":"Point","coordinates":[49017,69115]},{"type":"Point","coordinates":[40997,68703]},{"type":"Point","coordinates":[48820,69113]},{"type":"Point","coordinates":[84861,64347]},{"type":"Point","coordinates":[8081,61271]},{"type":"Point","coordinates":[8257,61342]},{"type":"Point","coordinates":[84053,64586]},{"type":"Point","coordinates":[8648,61489]},{"type":"Point","coordinates":[8104,61294]},{"type":"Point","coordinates":[8091,61294]},{"type":"Point","coordinates":[6617,60741]},{"type":"Point","coordinates":[8647,61506]},{"type":"Point","coordinates":[7990,61267]},{"type":"Point","coordinates":[6604,60751]},{"type":"Point","coordinates":[8020,61291]},{"type":"Point","coordinates":[71908,67395]},{"type":"Point","coordinates":[54245,69166]},{"type":"Point","coordinates":[40978,68775]},{"type":"Point","coordinates":[8071,61355]},{"type":"Point","coordinates":[6325,60699]},{"type":"Point","coordinates":[6377,60721]},{"type":"Point","coordinates":[40966,68803]},{"type":"Point","coordinates":[9024,61716]},{"type":"Point","coordinates":[9024,61716]},{"type":"Point","coordinates":[7481,61149]},{"type":"Point","coordinates":[48366,69216]},{"type":"Point","coordinates":[48367,69216]},{"type":"Point","coordinates":[71228,67559]},{"type":"Point","coordinates":[9017,61730]},{"type":"Point","coordinates":[9017,61730]},{"type":"Point","coordinates":[69599,67831]},{"type":"Point","coordinates":[8574,61575]},{"type":"Point","coordinates":[8044,61384]},{"type":"Point","coordinates":[71493,67543]},{"type":"Point","coordinates":[49744,69280]},{"type":"Point","coordinates":[84482,64608]},{"type":"Point","coordinates":[49733,69282]},{"type":"Point","coordinates":[49733,69282]},{"type":"Point","coordinates":[49733,69283]},{"type":"Point","coordinates":[69417,67895]},{"type":"Point","coordinates":[73651,67176]},{"type":"Point","coordinates":[36788,68454]},{"type":"Point","coordinates":[69629,67930]},{"type":"Point","coordinates":[69629,67930]},{"type":"Point","coordinates":[48941,69341]},{"type":"Point","coordinates":[69631,67932]},{"type":"Point","coordinates":[8109,61514]},{"type":"Point","coordinates":[71571,67624]},{"type":"Point","coordinates":[49033,69354]},{"type":"Point","coordinates":[8611,61703]},{"type":"Point","coordinates":[51267,69381]},{"type":"Point","coordinates":[51269,69381]},{"type":"Point","coordinates":[84770,64628]},{"type":"Point","coordinates":[20439,65427]},{"type":"Point","coordinates":[48960,69391]},{"type":"Point","coordinates":[48957,69397]},{"type":"Point","coordinates":[48957,69397]},{"type":"Point","coordinates":[73891,67254]},{"type":"Point","coordinates":[71475,67694]},{"type":"Point","coordinates":[35374,68408]},{"type":"Point","coordinates":[35385,68440]},{"type":"Point","coordinates":[35385,68441]},{"type":"Point","coordinates":[39755,68944]},{"type":"Point","coordinates":[6693,61105]},{"type":"Point","coordinates":[20464,65524]},{"type":"Point","coordinates":[69763,68059]},{"type":"Point","coordinates":[73972,67329]},{"type":"Point","coordinates":[83171,65204]},{"type":"Point","coordinates":[6543,61086]},{"type":"Point","coordinates":[69840,68063]},{"type":"Point","coordinates":[79248,66221]},{"type":"Point","coordinates":[79248,66221]},{"type":"Point","coordinates":[69530,68127]},{"type":"Point","coordinates":[69529,68128]},{"type":"Point","coordinates":[69530,68128]},{"type":"Point","coordinates":[6723,61173]},{"type":"Point","coordinates":[69529,68129]},{"type":"Point","coordinates":[69529,68129]},{"type":"Point","coordinates":[69811,68087]},{"type":"Point","coordinates":[49104,69529]},{"type":"Point","coordinates":[49096,69529]},{"type":"Point","coordinates":[69538,68136]},{"type":"Point","coordinates":[60960,69152]},{"type":"Point","coordinates":[6526,61118]},{"type":"Point","coordinates":[6512,61131]},{"type":"Point","coordinates":[50203,69578]},{"type":"Point","coordinates":[69313,68202]},{"type":"Point","coordinates":[69662,68151]},{"type":"Point","coordinates":[84595,64892]},{"type":"Point","coordinates":[83417,65233]},{"type":"Point","coordinates":[6731,61250]},{"type":"Point","coordinates":[50989,69622]},{"type":"Point","coordinates":[8902,62067]},{"type":"Point","coordinates":[6617,61222]},{"type":"Point","coordinates":[8814,62046]},{"type":"Point","coordinates":[6639,61244]},{"type":"Point","coordinates":[8817,62057]},{"type":"Point","coordinates":[8818,62060]},{"type":"Point","coordinates":[69814,68194]},{"type":"Point","coordinates":[6778,61307]},{"type":"Point","coordinates":[79886,66188]},{"type":"Point","coordinates":[52638,69650]},{"type":"Point","coordinates":[69954,68189]},{"type":"Point","coordinates":[9229,62234]},{"type":"Point","coordinates":[69823,68221]},{"type":"Point","coordinates":[56825,69550]},{"type":"Point","coordinates":[69819,68229]},{"type":"Point","coordinates":[69819,68229]},{"type":"Point","coordinates":[40335,69206]},{"type":"Point","coordinates":[39580,69144]},{"type":"Point","coordinates":[69776,68255]},{"type":"Point","coordinates":[69768,68260]},{"type":"Point","coordinates":[69768,68261]},{"type":"Point","coordinates":[69792,68264]},{"type":"Point","coordinates":[6288,61202]},{"type":"Point","coordinates":[69769,68296]},{"type":"Point","coordinates":[71210,68065]},{"type":"Point","coordinates":[49091,69738]},{"type":"Point","coordinates":[10008,62607]},{"type":"Point","coordinates":[79514,66393]},{"type":"Point","coordinates":[79514,66393]},{"type":"Point","coordinates":[79514,66393]},{"type":"Point","coordinates":[6654,61382]},{"type":"Point","coordinates":[69686,68342]},{"type":"Point","coordinates":[79505,66407]},{"type":"Point","coordinates":[69253,68412]},{"type":"Point","coordinates":[69725,68341]},{"type":"Point","coordinates":[6838,61478]},{"type":"Point","coordinates":[37823,69071]},{"type":"Point","coordinates":[37828,69074]},{"type":"Point","coordinates":[49690,69810]},{"type":"Point","coordinates":[49691,69813]},{"type":"Point","coordinates":[6614,61423]},{"type":"Point","coordinates":[69719,68388]},{"type":"Point","coordinates":[20983,66006]},{"type":"Point","coordinates":[68013,68647]},{"type":"Point","coordinates":[68013,68647]},{"type":"Point","coordinates":[83405,65462]},{"type":"Point","coordinates":[49065,69821]},{"type":"Point","coordinates":[9505,62512]},{"type":"Point","coordinates":[69719,68408]},{"type":"Point","coordinates":[20963,66018]},{"type":"Point","coordinates":[9414,62486]},{"type":"Point","coordinates":[9414,62487]},{"type":"Point","coordinates":[9489,62520]},{"type":"Point","coordinates":[69707,68427]},{"type":"Point","coordinates":[69706,68430]},{"type":"Point","coordinates":[9487,62531]},{"type":"Point","coordinates":[63842,69207]},{"type":"Point","coordinates":[9444,62529]},{"type":"Point","coordinates":[9441,62530]},{"type":"Point","coordinates":[9494,62583]},{"type":"Point","coordinates":[49617,69918]},{"type":"Point","coordinates":[49935,69932]},{"type":"Point","coordinates":[39695,69402]},{"type":"Point","coordinates":[50557,69951]},{"type":"Point","coordinates":[50557,69951]},{"type":"Point","coordinates":[50557,69951]},{"type":"Point","coordinates":[42616,69659]},{"type":"Point","coordinates":[68438,68715]},{"type":"Point","coordinates":[69833,68513]},{"type":"Point","coordinates":[6254,61443]},{"type":"Point","coordinates":[49035,69963]},{"type":"Point","coordinates":[49032,69966]},{"type":"Point","coordinates":[65508,69125]},{"type":"Point","coordinates":[49033,69977]},{"type":"Point","coordinates":[49031,69981]},{"type":"Point","coordinates":[49030,69990]},{"type":"Point","coordinates":[6127,61423]},{"type":"Point","coordinates":[65757,69118]},{"type":"Point","coordinates":[49029,69992]},{"type":"Point","coordinates":[49020,69992]},{"type":"Point","coordinates":[49022,69992]},{"type":"Point","coordinates":[49047,69995]},{"type":"Point","coordinates":[49048,69996]},{"type":"Point","coordinates":[49047,69997]},{"type":"Point","coordinates":[9990,62858]},{"type":"Point","coordinates":[49019,70000]},{"type":"Point","coordinates":[65685,69137]},{"type":"Point","coordinates":[49051,70006]},{"type":"Point","coordinates":[49019,70006]},{"type":"Point","coordinates":[49020,70008]},{"type":"Point","coordinates":[49837,70020]},{"type":"Point","coordinates":[49838,70020]},{"type":"Point","coordinates":[49841,70021]},{"type":"Point","coordinates":[49837,70021]},{"type":"Point","coordinates":[49839,70021]},{"type":"Point","coordinates":[49839,70021]},{"type":"Point","coordinates":[49839,70021]},{"type":"Point","coordinates":[49839,70021]},{"type":"Point","coordinates":[49030,70011]},{"type":"Point","coordinates":[49850,70024]},{"type":"Point","coordinates":[49024,70013]},{"type":"Point","coordinates":[49023,70013]},{"type":"Point","coordinates":[49025,70013]},{"type":"Point","coordinates":[49848,70027]},{"type":"Point","coordinates":[49845,70027]},{"type":"Point","coordinates":[9687,62770]},{"type":"Point","coordinates":[49026,70017]},{"type":"Point","coordinates":[49848,70029]},{"type":"Point","coordinates":[49844,70029]},{"type":"Point","coordinates":[49841,70029]},{"type":"Point","coordinates":[49031,70018]},{"type":"Point","coordinates":[49841,70030]},{"type":"Point","coordinates":[49847,70030]},{"type":"Point","coordinates":[49033,70018]},{"type":"Point","coordinates":[49037,70019]},{"type":"Point","coordinates":[49034,70019]},{"type":"Point","coordinates":[49038,70019]},{"type":"Point","coordinates":[49844,70032]},{"type":"Point","coordinates":[50115,70038]},{"type":"Point","coordinates":[49044,70024]},{"type":"Point","coordinates":[49045,70024]},{"type":"Point","coordinates":[49047,70025]},{"type":"Point","coordinates":[6878,61746]},{"type":"Point","coordinates":[49043,70026]},{"type":"Point","coordinates":[83823,65571]},{"type":"Point","coordinates":[50474,70056]},{"type":"Point","coordinates":[6820,61742]},{"type":"Point","coordinates":[61003,69673]},{"type":"Point","coordinates":[48903,70058]},{"type":"Point","coordinates":[49669,70074]},{"type":"Point","coordinates":[72960,68097]},{"type":"Point","coordinates":[49669,70082]},{"type":"Point","coordinates":[6525,61670]},{"type":"Point","coordinates":[69934,68633]},{"type":"Point","coordinates":[8611,62457]},{"type":"Point","coordinates":[53716,70086]},{"type":"Point","coordinates":[9245,62698]},{"type":"Point","coordinates":[39833,69589]},{"type":"Point","coordinates":[10096,63009]},{"type":"Point","coordinates":[6786,61802]},{"type":"Point","coordinates":[9140,62674]},{"type":"Point","coordinates":[48916,70112]},{"type":"Point","coordinates":[48916,70113]},{"type":"Point","coordinates":[49724,70128]},{"type":"Point","coordinates":[49724,70128]},{"type":"Point","coordinates":[49724,70128]},{"type":"Point","coordinates":[10093,63019]},{"type":"Point","coordinates":[49266,70127]},{"type":"Point","coordinates":[49267,70128]},{"type":"Point","coordinates":[48886,70124]},{"type":"Point","coordinates":[48886,70124]},{"type":"Point","coordinates":[68085,68952]},{"type":"Point","coordinates":[49240,70137]},{"type":"Point","coordinates":[49248,70140]},{"type":"Point","coordinates":[10020,63010]},{"type":"Point","coordinates":[49248,70144]},{"type":"Point","coordinates":[49270,70146]},{"type":"Point","coordinates":[9149,62707]},{"type":"Point","coordinates":[49264,70149]},{"type":"Point","coordinates":[49262,70149]},{"type":"Point","coordinates":[49263,70149]},{"type":"Point","coordinates":[49263,70150]},{"type":"Point","coordinates":[84020,65628]},{"type":"Point","coordinates":[48898,70147]},{"type":"Point","coordinates":[52218,70166]},{"type":"Point","coordinates":[48878,70154]},{"type":"Point","coordinates":[82516,66049]},{"type":"Point","coordinates":[60126,69844]},{"type":"Point","coordinates":[84041,65643]},{"type":"Point","coordinates":[82527,66056]},{"type":"Point","coordinates":[48823,70167]},{"type":"Point","coordinates":[82494,66065]},{"type":"Point","coordinates":[48878,70173]},{"type":"Point","coordinates":[49372,70181]},{"type":"Point","coordinates":[48941,70174]},{"type":"Point","coordinates":[48878,70173]},{"type":"Point","coordinates":[48941,70175]},{"type":"Point","coordinates":[48941,70175]},{"type":"Point","coordinates":[48941,70175]},{"type":"Point","coordinates":[48941,70175]},{"type":"Point","coordinates":[48880,70174]},{"type":"Point","coordinates":[50632,70195]},{"type":"Point","coordinates":[50632,70195]},{"type":"Point","coordinates":[50632,70196]},{"type":"Point","coordinates":[9263,62785]},{"type":"Point","coordinates":[6621,61808]},{"type":"Point","coordinates":[50632,70200]},{"type":"Point","coordinates":[48841,70179]},{"type":"Point","coordinates":[48841,70181]},{"type":"Point","coordinates":[49010,70188]},{"type":"Point","coordinates":[48886,70187]},{"type":"Point","coordinates":[49771,70209]},{"type":"Point","coordinates":[9080,62740]},{"type":"Point","coordinates":[48845,70198]},{"type":"Point","coordinates":[9071,62741]},{"type":"Point","coordinates":[83999,65697]},{"type":"Point","coordinates":[9059,62748]},{"type":"Point","coordinates":[49243,70221]},{"type":"Point","coordinates":[9061,62753]},{"type":"Point","coordinates":[48931,70219]},{"type":"Point","coordinates":[9065,62757]},{"type":"Point","coordinates":[37242,69433]},{"type":"Point","coordinates":[9309,62848]},{"type":"Point","coordinates":[48834,70222]},{"type":"Point","coordinates":[48834,70222]},{"type":"Point","coordinates":[48925,70228]},{"type":"Point","coordinates":[49824,70246]},{"type":"Point","coordinates":[49821,70247]},{"type":"Point","coordinates":[49173,70239]},{"type":"Point","coordinates":[6404,61784]},{"type":"Point","coordinates":[49821,70250]},{"type":"Point","coordinates":[48980,70240]},{"type":"Point","coordinates":[49830,70253]},{"type":"Point","coordinates":[8770,62671]},{"type":"Point","coordinates":[49825,70255]},{"type":"Point","coordinates":[9067,62781]},{"type":"Point","coordinates":[49825,70255]},{"type":"Point","coordinates":[9193,62827]},{"type":"Point","coordinates":[49825,70256]},{"type":"Point","coordinates":[9214,62836]},{"type":"Point","coordinates":[9223,62839]},{"type":"Point","coordinates":[49828,70258]},{"type":"Point","coordinates":[9224,62840]},{"type":"Point","coordinates":[49826,70260]},{"type":"Point","coordinates":[84113,65704]},{"type":"Point","coordinates":[49828,70260]},{"type":"Point","coordinates":[9224,62843]},{"type":"Point","coordinates":[49828,70261]},{"type":"Point","coordinates":[49828,70261]},{"type":"Point","coordinates":[49827,70261]},{"type":"Point","coordinates":[49828,70262]},{"type":"Point","coordinates":[49827,70266]},{"type":"Point","coordinates":[48925,70255]},{"type":"Point","coordinates":[8467,62579]},{"type":"Point","coordinates":[84345,65650]},{"type":"Point","coordinates":[48927,70258]},{"type":"Point","coordinates":[9113,62829]},{"type":"Point","coordinates":[49584,70285]},{"type":"Point","coordinates":[68806,68994]},{"type":"Point","coordinates":[55130,70232]},{"type":"Point","coordinates":[49579,70289]},{"type":"Point","coordinates":[49579,70289]},{"type":"Point","coordinates":[49582,70289]},{"type":"Point","coordinates":[49584,70289]},{"type":"Point","coordinates":[49584,70289]},{"type":"Point","coordinates":[49856,70298]},{"type":"Point","coordinates":[49857,70300]},{"type":"Point","coordinates":[49857,70301]},{"type":"Point","coordinates":[48794,70286]},{"type":"Point","coordinates":[48794,70286]},{"type":"Point","coordinates":[48795,70286]},{"type":"Point","coordinates":[49859,70303]},{"type":"Point","coordinates":[49859,70303]},{"type":"Point","coordinates":[49903,70304]},{"type":"Point","coordinates":[48823,70290]},{"type":"Point","coordinates":[69727,68874]},{"type":"Point","coordinates":[69726,68877]},{"type":"Point","coordinates":[49680,70312]},{"type":"Point","coordinates":[48892,70303]},{"type":"Point","coordinates":[49585,70317]},{"type":"Point","coordinates":[48892,70306]},{"type":"Point","coordinates":[48892,70307]},{"type":"Point","coordinates":[49584,70318]},{"type":"Point","coordinates":[49874,70322]},{"type":"Point","coordinates":[49551,70321]},{"type":"Point","coordinates":[84015,65797]},{"type":"Point","coordinates":[49814,70331]},{"type":"Point","coordinates":[49814,70332]},{"type":"Point","coordinates":[9245,62925]},{"type":"Point","coordinates":[48891,70319]},{"type":"Point","coordinates":[9237,62924]},{"type":"Point","coordinates":[9118,62881]},{"type":"Point","coordinates":[49741,70334]},{"type":"Point","coordinates":[49741,70334]},{"type":"Point","coordinates":[49741,70335]},{"type":"Point","coordinates":[49741,70335]},{"type":"Point","coordinates":[49740,70335]},{"type":"Point","coordinates":[9223,62924]},{"type":"Point","coordinates":[9220,62923]},{"type":"Point","coordinates":[8671,62726]},{"type":"Point","coordinates":[9237,62932]},{"type":"Point","coordinates":[49714,70342]},{"type":"Point","coordinates":[8672,62728]},{"type":"Point","coordinates":[9074,62874]},{"type":"Point","coordinates":[9074,62874]},{"type":"Point","coordinates":[9233,62934]},{"type":"Point","coordinates":[9211,62928]},{"type":"Point","coordinates":[9090,62888]},{"type":"Point","coordinates":[8658,62732]},{"type":"Point","coordinates":[49520,70348]},{"type":"Point","coordinates":[49520,70348]},{"type":"Point","coordinates":[49520,70348]},{"type":"Point","coordinates":[49520,70348]},{"type":"Point","coordinates":[49519,70349]},{"type":"Point","coordinates":[9100,62893]},{"type":"Point","coordinates":[49520,70349]},{"type":"Point","coordinates":[49521,70350]},{"type":"Point","coordinates":[49519,70350]},{"type":"Point","coordinates":[49520,70350]},{"type":"Point","coordinates":[9101,62896]},{"type":"Point","coordinates":[9117,62903]},{"type":"Point","coordinates":[9121,62906]},{"type":"Point","coordinates":[9100,62900]},{"type":"Point","coordinates":[49459,70356]},{"type":"Point","coordinates":[49462,70356]},{"type":"Point","coordinates":[49898,70362]},{"type":"Point","coordinates":[49898,70362]},{"type":"Point","coordinates":[49456,70357]},{"type":"Point","coordinates":[49455,70359]},{"type":"Point","coordinates":[48952,70350]},{"type":"Point","coordinates":[9209,62944]},{"type":"Point","coordinates":[49463,70360]},{"type":"Point","coordinates":[48758,70349]},{"type":"Point","coordinates":[82380,66284]},{"type":"Point","coordinates":[8498,62691]},{"type":"Point","coordinates":[8498,62691]},{"type":"Point","coordinates":[9104,62914]},{"type":"Point","coordinates":[9104,62914]},{"type":"Point","coordinates":[49465,70370]},{"type":"Point","coordinates":[9203,62952]},{"type":"Point","coordinates":[48838,70360]},{"type":"Point","coordinates":[49465,70371]},{"type":"Point","coordinates":[9195,62950]},{"type":"Point","coordinates":[49465,70371]},{"type":"Point","coordinates":[49465,70371]},{"type":"Point","coordinates":[9093,62917]},{"type":"Point","coordinates":[8414,62672]},{"type":"Point","coordinates":[49436,70376]},{"type":"Point","coordinates":[50440,70386]},{"type":"Point","coordinates":[48838,70366]},{"type":"Point","coordinates":[70274,68862]},{"type":"Point","coordinates":[49433,70377]},{"type":"Point","coordinates":[50440,70388]},{"type":"Point","coordinates":[49433,70378]},{"type":"Point","coordinates":[9097,62923]},{"type":"Point","coordinates":[49428,70379]},{"type":"Point","coordinates":[49428,70380]},{"type":"Point","coordinates":[49428,70380]},{"type":"Point","coordinates":[8497,62710]},{"type":"Point","coordinates":[49428,70383]},{"type":"Point","coordinates":[49363,70383]},{"type":"Point","coordinates":[49912,70391]},{"type":"Point","coordinates":[83541,65995]},{"type":"Point","coordinates":[49912,70392]},{"type":"Point","coordinates":[49912,70393]},{"type":"Point","coordinates":[49913,70393]},{"type":"Point","coordinates":[49909,70394]},{"type":"Point","coordinates":[49913,70395]},{"type":"Point","coordinates":[49907,70397]},{"type":"Point","coordinates":[49257,70388]},{"type":"Point","coordinates":[49257,70388]},{"type":"Point","coordinates":[49918,70398]},{"type":"Point","coordinates":[49912,70398]},{"type":"Point","coordinates":[9820,63197]},{"type":"Point","coordinates":[49914,70400]},{"type":"Point","coordinates":[49911,70401]},{"type":"Point","coordinates":[49911,70401]},{"type":"Point","coordinates":[49906,70402]},{"type":"Point","coordinates":[49906,70402]},{"type":"Point","coordinates":[49916,70402]},{"type":"Point","coordinates":[49335,70395]},{"type":"Point","coordinates":[49914,70403]},{"type":"Point","coordinates":[49336,70396]},{"type":"Point","coordinates":[49913,70403]},{"type":"Point","coordinates":[49913,70404]},{"type":"Point","coordinates":[49912,70404]},{"type":"Point","coordinates":[49252,70395]},{"type":"Point","coordinates":[49251,70395]},{"type":"Point","coordinates":[49912,70405]},{"type":"Point","coordinates":[49329,70399]},{"type":"Point","coordinates":[49329,70399]},{"type":"Point","coordinates":[49522,70404]},{"type":"Point","coordinates":[49920,70409]},{"type":"Point","coordinates":[49517,70405]},{"type":"Point","coordinates":[49344,70403]},{"type":"Point","coordinates":[49344,70403]},{"type":"Point","coordinates":[49926,70410]},{"type":"Point","coordinates":[49517,70406]},{"type":"Point","coordinates":[49519,70407]},{"type":"Point","coordinates":[49516,70407]},{"type":"Point","coordinates":[49925,70412]},{"type":"Point","coordinates":[49517,70408]},{"type":"Point","coordinates":[49517,70408]},{"type":"Point","coordinates":[49516,70409]},{"type":"Point","coordinates":[49516,70409]},{"type":"Point","coordinates":[49922,70414]},{"type":"Point","coordinates":[49589,70410]},{"type":"Point","coordinates":[49920,70414]},{"type":"Point","coordinates":[49518,70409]},{"type":"Point","coordinates":[49518,70410]},{"type":"Point","coordinates":[8652,62793]},{"type":"Point","coordinates":[49515,70410]},{"type":"Point","coordinates":[49521,70410]},{"type":"Point","coordinates":[49514,70411]},{"type":"Point","coordinates":[49926,70416]},{"type":"Point","coordinates":[49920,70416]},{"type":"Point","coordinates":[49521,70412]},{"type":"Point","coordinates":[49520,70412]},{"type":"Point","coordinates":[49520,70412]},{"type":"Point","coordinates":[49520,70412]},{"type":"Point","coordinates":[49516,70412]},{"type":"Point","coordinates":[49519,70413]},{"type":"Point","coordinates":[49695,70415]},{"type":"Point","coordinates":[81856,66473]},{"type":"Point","coordinates":[48905,70405]},{"type":"Point","coordinates":[49496,70416]},{"type":"Point","coordinates":[84234,65833]},{"type":"Point","coordinates":[49514,70417]},{"type":"Point","coordinates":[49514,70417]},{"type":"Point","coordinates":[49514,70418]},{"type":"Point","coordinates":[48905,70409]},{"type":"Point","coordinates":[9551,63125]},{"type":"Point","coordinates":[48904,70409]},{"type":"Point","coordinates":[49067,70414]},{"type":"Point","coordinates":[49519,70422]},{"type":"Point","coordinates":[8534,62767]},{"type":"Point","coordinates":[49516,70426]},{"type":"Point","coordinates":[49516,70426]},{"type":"Point","coordinates":[49515,70426]},{"type":"Point","coordinates":[49515,70426]},{"type":"Point","coordinates":[49516,70426]},{"type":"Point","coordinates":[49515,70426]},{"type":"Point","coordinates":[49515,70426]},{"type":"Point","coordinates":[49515,70426]},{"type":"Point","coordinates":[49515,70426]},{"type":"Point","coordinates":[49516,70427]},{"type":"Point","coordinates":[49516,70427]},{"type":"Point","coordinates":[49516,70427]},{"type":"Point","coordinates":[49516,70427]},{"type":"Point","coordinates":[49518,70428]},{"type":"Point","coordinates":[81857,66486]},{"type":"Point","coordinates":[84464,65785]},{"type":"Point","coordinates":[48907,70423]},{"type":"Point","coordinates":[84464,65786]},{"type":"Point","coordinates":[84466,65786]},{"type":"Point","coordinates":[84463,65787]},{"type":"Point","coordinates":[84419,65802]},{"type":"Point","coordinates":[84471,65788]},{"type":"Point","coordinates":[49630,70440]},{"type":"Point","coordinates":[49635,70445]},{"type":"Point","coordinates":[84438,65805]},{"type":"Point","coordinates":[49633,70451]},{"type":"Point","coordinates":[49633,70452]},{"type":"Point","coordinates":[8579,62814]},{"type":"Point","coordinates":[49636,70458]},{"type":"Point","coordinates":[84422,65821]},{"type":"Point","coordinates":[49637,70460]},{"type":"Point","coordinates":[49519,70460]},{"type":"Point","coordinates":[49634,70462]},{"type":"Point","coordinates":[80156,66948]},{"type":"Point","coordinates":[84418,65829]},{"type":"Point","coordinates":[8750,62895]},{"type":"Point","coordinates":[8572,62831]},{"type":"Point","coordinates":[8625,62854]},{"type":"Point","coordinates":[84463,65841]},{"type":"Point","coordinates":[49657,70491]},{"type":"Point","coordinates":[49657,70492]},{"type":"Point","coordinates":[84452,65848]},{"type":"Point","coordinates":[49657,70494]},{"type":"Point","coordinates":[84468,65844]},{"type":"Point","coordinates":[84451,65850]},{"type":"Point","coordinates":[49657,70496]},{"type":"Point","coordinates":[49516,70495]},{"type":"Point","coordinates":[49517,70495]},{"type":"Point","coordinates":[84214,65918]},{"type":"Point","coordinates":[49514,70495]},{"type":"Point","coordinates":[49515,70496]},{"type":"Point","coordinates":[48838,70486]},{"type":"Point","coordinates":[49058,70493]},{"type":"Point","coordinates":[49661,70506]},{"type":"Point","coordinates":[9165,63077]},{"type":"Point","coordinates":[48831,70495]},{"type":"Point","coordinates":[48832,70496]},{"type":"Point","coordinates":[48833,70497]},{"type":"Point","coordinates":[49517,70510]},{"type":"Point","coordinates":[49517,70510]},{"type":"Point","coordinates":[48832,70499]},{"type":"Point","coordinates":[48832,70499]},{"type":"Point","coordinates":[48832,70500]},{"type":"Point","coordinates":[8585,62874]},{"type":"Point","coordinates":[49662,70515]},{"type":"Point","coordinates":[49662,70516]},{"type":"Point","coordinates":[83978,66003]},{"type":"Point","coordinates":[49520,70514]},{"type":"Point","coordinates":[49521,70516]},{"type":"Point","coordinates":[49520,70516]},{"type":"Point","coordinates":[49521,70517]},{"type":"Point","coordinates":[49521,70517]},{"type":"Point","coordinates":[49521,70517]},{"type":"Point","coordinates":[49521,70518]},{"type":"Point","coordinates":[49521,70518]},{"type":"Point","coordinates":[49522,70519]},{"type":"Point","coordinates":[48933,70513]},{"type":"Point","coordinates":[49666,70527]},{"type":"Point","coordinates":[49715,70528]},{"type":"Point","coordinates":[49469,70525]},{"type":"Point","coordinates":[49666,70528]},{"type":"Point","coordinates":[49992,70532]},{"type":"Point","coordinates":[8698,62930]},{"type":"Point","coordinates":[10047,63413]},{"type":"Point","coordinates":[49669,70531]},{"type":"Point","coordinates":[10047,63415]},{"type":"Point","coordinates":[8773,62962]},{"type":"Point","coordinates":[48931,70523]},{"type":"Point","coordinates":[9820,63339]},{"type":"Point","coordinates":[9821,63341]},{"type":"Point","coordinates":[49387,70537]},{"type":"Point","coordinates":[9821,63344]},{"type":"Point","coordinates":[8483,62864]},{"type":"Point","coordinates":[49100,70534]},{"type":"Point","coordinates":[9820,63348]},{"type":"Point","coordinates":[49405,70542]},{"type":"Point","coordinates":[49390,70543]},{"type":"Point","coordinates":[49439,70545]},{"type":"Point","coordinates":[49441,70546]},{"type":"Point","coordinates":[49396,70547]},{"type":"Point","coordinates":[9824,63356]},{"type":"Point","coordinates":[49908,70554]},{"type":"Point","coordinates":[49452,70550]},{"type":"Point","coordinates":[49717,70554]},{"type":"Point","coordinates":[49451,70551]},{"type":"Point","coordinates":[49450,70551]},{"type":"Point","coordinates":[49453,70551]},{"type":"Point","coordinates":[9831,63363]},{"type":"Point","coordinates":[49454,70553]},{"type":"Point","coordinates":[49454,70553]},{"type":"Point","coordinates":[9832,63364]},{"type":"Point","coordinates":[49452,70554]},{"type":"Point","coordinates":[9876,63381]},{"type":"Point","coordinates":[8661,62957]},{"type":"Point","coordinates":[49818,70572]},{"type":"Point","coordinates":[83867,66093]},{"type":"Point","coordinates":[9529,63275]},{"type":"Point","coordinates":[49399,70573]},{"type":"Point","coordinates":[49400,70574]},{"type":"Point","coordinates":[49376,70575]},{"type":"Point","coordinates":[8768,63008]},{"type":"Point","coordinates":[49397,70577]},{"type":"Point","coordinates":[49693,70581]},{"type":"Point","coordinates":[9822,63386]},{"type":"Point","coordinates":[9812,63383]},{"type":"Point","coordinates":[49057,70573]},{"type":"Point","coordinates":[9814,63386]},{"type":"Point","coordinates":[9817,63387]},{"type":"Point","coordinates":[49019,70576]},{"type":"Point","coordinates":[49768,70590]},{"type":"Point","coordinates":[49020,70581]},{"type":"Point","coordinates":[9581,63313]},{"type":"Point","coordinates":[49416,70590]},{"type":"Point","coordinates":[9815,63396]},{"type":"Point","coordinates":[49706,70595]},{"type":"Point","coordinates":[48904,70586]},{"type":"Point","coordinates":[49765,70601]},{"type":"Point","coordinates":[49767,70603]},{"type":"Point","coordinates":[48896,70592]},{"type":"Point","coordinates":[48896,70592]},{"type":"Point","coordinates":[51363,70615]},{"type":"Point","coordinates":[10042,63490]},{"type":"Point","coordinates":[8764,63035]},{"type":"Point","coordinates":[49819,70614]},{"type":"Point","coordinates":[48890,70602]},{"type":"Point","coordinates":[9957,63468]},{"type":"Point","coordinates":[9439,63289]},{"type":"Point","coordinates":[9739,63398]},{"type":"Point","coordinates":[8482,62948]},{"type":"Point","coordinates":[49508,70621]},{"type":"Point","coordinates":[49507,70622]},{"type":"Point","coordinates":[84058,66095]},{"type":"Point","coordinates":[49429,70625]},{"type":"Point","coordinates":[9741,63406]},{"type":"Point","coordinates":[84056,66096]},{"type":"Point","coordinates":[9744,63410]},{"type":"Point","coordinates":[9752,63413]},{"type":"Point","coordinates":[9752,63413]},{"type":"Point","coordinates":[49722,70634]},{"type":"Point","coordinates":[9747,63413]},{"type":"Point","coordinates":[9747,63414]},{"type":"Point","coordinates":[49426,70631]},{"type":"Point","coordinates":[49424,70633]},{"type":"Point","coordinates":[49428,70636]},{"type":"Point","coordinates":[8436,62949]},{"type":"Point","coordinates":[49492,70641]},{"type":"Point","coordinates":[49492,70641]},{"type":"Point","coordinates":[9820,63453]},{"type":"Point","coordinates":[9820,63453]},{"type":"Point","coordinates":[83927,66153]},{"type":"Point","coordinates":[8627,63031]},{"type":"Point","coordinates":[8526,62997]},{"type":"Point","coordinates":[49863,70657]},{"type":"Point","coordinates":[49026,70650]},{"type":"Point","coordinates":[49646,70660]},{"type":"Point","coordinates":[8508,62999]},{"type":"Point","coordinates":[48897,70653]},{"type":"Point","coordinates":[49719,70671]},{"type":"Point","coordinates":[8600,63040]},{"type":"Point","coordinates":[49765,70673]},{"type":"Point","coordinates":[49737,70672]},{"type":"Point","coordinates":[8974,63177]},{"type":"Point","coordinates":[49734,70674]},{"type":"Point","coordinates":[49725,70674]},{"type":"Point","coordinates":[49726,70675]},{"type":"Point","coordinates":[49723,70675]},{"type":"Point","coordinates":[49740,70684]},{"type":"Point","coordinates":[49350,70682]},{"type":"Point","coordinates":[49997,70692]},{"type":"Point","coordinates":[9317,63320]},{"type":"Point","coordinates":[49553,70695]},{"type":"Point","coordinates":[8926,63189]},{"type":"Point","coordinates":[48901,70690]},{"type":"Point","coordinates":[9710,63470]},{"type":"Point","coordinates":[49937,70706]},{"type":"Point","coordinates":[49550,70703]},{"type":"Point","coordinates":[49550,70706]},{"type":"Point","coordinates":[49550,70707]},{"type":"Point","coordinates":[48964,70699]},{"type":"Point","coordinates":[49561,70709]},{"type":"Point","coordinates":[49547,70710]},{"type":"Point","coordinates":[8984,63221]},{"type":"Point","coordinates":[49547,70710]},{"type":"Point","coordinates":[84029,66189]},{"type":"Point","coordinates":[8498,63048]},{"type":"Point","coordinates":[9025,63241]},{"type":"Point","coordinates":[8844,63178]},{"type":"Point","coordinates":[8878,63192]},{"type":"Point","coordinates":[49708,70721]},{"type":"Point","coordinates":[8878,63193]},{"type":"Point","coordinates":[49707,70724]},{"type":"Point","coordinates":[8842,63183]},{"type":"Point","coordinates":[8842,63183]},{"type":"Point","coordinates":[49350,70725]},{"type":"Point","coordinates":[49548,70729]},{"type":"Point","coordinates":[49547,70731]},{"type":"Point","coordinates":[48899,70726]},{"type":"Point","coordinates":[50058,70743]},{"type":"Point","coordinates":[8915,63225]},{"type":"Point","coordinates":[49094,70731]},{"type":"Point","coordinates":[50059,70745]},{"type":"Point","coordinates":[8415,63047]},{"type":"Point","coordinates":[8700,63153]},{"type":"Point","coordinates":[10050,63635]},{"type":"Point","coordinates":[49547,70747]},{"type":"Point","coordinates":[8608,63123]},{"type":"Point","coordinates":[10043,63638]},{"type":"Point","coordinates":[8819,63203]},{"type":"Point","coordinates":[49630,70754]},{"type":"Point","coordinates":[49550,70755]},{"type":"Point","coordinates":[49217,70754]},{"type":"Point","coordinates":[49216,70755]},{"type":"Point","coordinates":[49216,70755]},{"type":"Point","coordinates":[9637,63506]},{"type":"Point","coordinates":[8605,63136]},{"type":"Point","coordinates":[49078,70755]},{"type":"Point","coordinates":[49215,70758]},{"type":"Point","coordinates":[49545,70765]},{"type":"Point","coordinates":[49268,70764]},{"type":"Point","coordinates":[49191,70764]},{"type":"Point","coordinates":[49543,70771]},{"type":"Point","coordinates":[49192,70766]},{"type":"Point","coordinates":[49194,70766]},{"type":"Point","coordinates":[49194,70767]},{"type":"Point","coordinates":[49214,70768]},{"type":"Point","coordinates":[49192,70768]},{"type":"Point","coordinates":[83926,66284]},{"type":"Point","coordinates":[49198,70773]},{"type":"Point","coordinates":[49186,70773]},{"type":"Point","coordinates":[49224,70774]},{"type":"Point","coordinates":[49186,70773]},{"type":"Point","coordinates":[49783,70782]},{"type":"Point","coordinates":[49216,70776]},{"type":"Point","coordinates":[48970,70773]},{"type":"Point","coordinates":[83924,66290]},{"type":"Point","coordinates":[49190,70777]},{"type":"Point","coordinates":[49199,70777]},{"type":"Point","coordinates":[49208,70778]},{"type":"Point","coordinates":[49165,70777]},{"type":"Point","coordinates":[49074,70776]},{"type":"Point","coordinates":[49192,70779]},{"type":"Point","coordinates":[48741,70771]},{"type":"Point","coordinates":[49183,70779]},{"type":"Point","coordinates":[49074,70777]},{"type":"Point","coordinates":[49794,70788]},{"type":"Point","coordinates":[49161,70780]},{"type":"Point","coordinates":[49161,70780]},{"type":"Point","coordinates":[49063,70779]},{"type":"Point","coordinates":[49227,70782]},{"type":"Point","coordinates":[49162,70781]},{"type":"Point","coordinates":[49161,70781]},{"type":"Point","coordinates":[49162,70781]},{"type":"Point","coordinates":[49161,70781]},{"type":"Point","coordinates":[49161,70781]},{"type":"Point","coordinates":[49161,70781]},{"type":"Point","coordinates":[49161,70781]},{"type":"Point","coordinates":[49216,70782]},{"type":"Point","coordinates":[49192,70782]},{"type":"Point","coordinates":[49161,70782]},{"type":"Point","coordinates":[49154,70782]},{"type":"Point","coordinates":[49191,70783]},{"type":"Point","coordinates":[49158,70783]},{"type":"Point","coordinates":[49216,70785]},{"type":"Point","coordinates":[49216,70785]},{"type":"Point","coordinates":[49182,70785]},{"type":"Point","coordinates":[49216,70786]},{"type":"Point","coordinates":[49673,70797]},{"type":"Point","coordinates":[49672,70797]},{"type":"Point","coordinates":[49673,70798]},{"type":"Point","coordinates":[49794,70800]},{"type":"Point","coordinates":[69221,69446]},{"type":"Point","coordinates":[69211,69449]},{"type":"Point","coordinates":[49799,70802]},{"type":"Point","coordinates":[8648,63191]},{"type":"Point","coordinates":[69220,69450]},{"type":"Point","coordinates":[49805,70805]},{"type":"Point","coordinates":[49807,70805]},{"type":"Point","coordinates":[49830,70806]},{"type":"Point","coordinates":[49804,70807]},{"type":"Point","coordinates":[49807,70808]},{"type":"Point","coordinates":[49800,70808]},{"type":"Point","coordinates":[9243,63412]},{"type":"Point","coordinates":[49797,70811]},{"type":"Point","coordinates":[49800,70813]},{"type":"Point","coordinates":[49810,70814]},{"type":"Point","coordinates":[49808,70816]},{"type":"Point","coordinates":[49810,70817]},{"type":"Point","coordinates":[49090,70808]},{"type":"Point","coordinates":[8584,63184]},{"type":"Point","coordinates":[49474,70815]},{"type":"Point","coordinates":[49082,70810]},{"type":"Point","coordinates":[49109,70811]},{"type":"Point","coordinates":[49804,70821]},{"type":"Point","coordinates":[49082,70812]},{"type":"Point","coordinates":[48968,70811]},{"type":"Point","coordinates":[8374,63114]},{"type":"Point","coordinates":[8430,63136]},{"type":"Point","coordinates":[49809,70828]},{"type":"Point","coordinates":[49811,70829]},{"type":"Point","coordinates":[49805,70829]},{"type":"Point","coordinates":[49806,70830]},{"type":"Point","coordinates":[49806,70830]},{"type":"Point","coordinates":[49806,70830]},{"type":"Point","coordinates":[49448,70826]},{"type":"Point","coordinates":[49449,70827]},{"type":"Point","coordinates":[49448,70828]},{"type":"Point","coordinates":[49448,70828]},{"type":"Point","coordinates":[49448,70828]},{"type":"Point","coordinates":[49446,70828]},{"type":"Point","coordinates":[49438,70828]},{"type":"Point","coordinates":[49452,70830]},{"type":"Point","coordinates":[8899,63315]},{"type":"Point","coordinates":[49453,70832]},{"type":"Point","coordinates":[49436,70833]},{"type":"Point","coordinates":[8444,63154]},{"type":"Point","coordinates":[49435,70835]},{"type":"Point","coordinates":[49434,70836]},{"type":"Point","coordinates":[49434,70837]},{"type":"Point","coordinates":[9811,63648]},{"type":"Point","coordinates":[50067,70845]},{"type":"Point","coordinates":[48807,70827]},{"type":"Point","coordinates":[49444,70839]},{"type":"Point","coordinates":[49017,70832]},{"type":"Point","coordinates":[8733,63267]},{"type":"Point","coordinates":[9812,63654]},{"type":"Point","coordinates":[49518,70846]},{"type":"Point","coordinates":[49090,70839]},{"type":"Point","coordinates":[83900,66366]},{"type":"Point","coordinates":[48771,70839]},{"type":"Point","coordinates":[49032,70848]},{"type":"Point","coordinates":[48731,70846]},{"type":"Point","coordinates":[48837,70850]},{"type":"Point","coordinates":[48837,70850]},{"type":"Point","coordinates":[49820,70872]},{"type":"Point","coordinates":[83847,66402]},{"type":"Point","coordinates":[49819,70878]},{"type":"Point","coordinates":[79882,67433]},{"type":"Point","coordinates":[9814,63687]},{"type":"Point","coordinates":[83869,66400]},{"type":"Point","coordinates":[83869,66401]},{"type":"Point","coordinates":[49812,70884]},{"type":"Point","coordinates":[83945,66385]},{"type":"Point","coordinates":[9820,63695]},{"type":"Point","coordinates":[49705,70884]},{"type":"Point","coordinates":[83809,66424]},{"type":"Point","coordinates":[9984,63754]},{"type":"Point","coordinates":[79792,67462]},{"type":"Point","coordinates":[9221,63484]},{"type":"Point","coordinates":[49050,70878]},{"type":"Point","coordinates":[49703,70894]},{"type":"Point","coordinates":[49827,70896]},{"type":"Point","coordinates":[83865,66419]},{"type":"Point","coordinates":[9213,63491]},{"type":"Point","coordinates":[83865,66422]},{"type":"Point","coordinates":[8481,63230]},{"type":"Point","coordinates":[49003,70888]},{"type":"Point","coordinates":[84123,66354]},{"type":"Point","coordinates":[49136,70895]},{"type":"Point","coordinates":[9797,63710]},{"type":"Point","coordinates":[9576,63634]},{"type":"Point","coordinates":[9790,63712]},{"type":"Point","coordinates":[48884,70899]},{"type":"Point","coordinates":[49833,70913]},{"type":"Point","coordinates":[49791,70914]},{"type":"Point","coordinates":[49404,70925]},{"type":"Point","coordinates":[83934,66435]},{"type":"Point","coordinates":[8466,63259]},{"type":"Point","coordinates":[9504,63634]},{"type":"Point","coordinates":[49050,70927]},{"type":"Point","coordinates":[48841,70923]},{"type":"Point","coordinates":[48841,70923]},{"type":"Point","coordinates":[49054,70928]},{"type":"Point","coordinates":[49721,70938]},{"type":"Point","coordinates":[49059,70930]},{"type":"Point","coordinates":[9758,63730]},{"type":"Point","coordinates":[9196,63531]},{"type":"Point","coordinates":[48849,70927]},{"type":"Point","coordinates":[48850,70928]},{"type":"Point","coordinates":[9511,63644]},{"type":"Point","coordinates":[48849,70928]},{"type":"Point","coordinates":[9511,63644]},{"type":"Point","coordinates":[49101,70932]},{"type":"Point","coordinates":[9510,63644]},{"type":"Point","coordinates":[84096,66402]},{"type":"Point","coordinates":[49401,70939]},{"type":"Point","coordinates":[9778,63742]},{"type":"Point","coordinates":[49001,70934]},{"type":"Point","coordinates":[49330,70941]},{"type":"Point","coordinates":[83923,66454]},{"type":"Point","coordinates":[9470,63637]},{"type":"Point","coordinates":[9470,63638]},{"type":"Point","coordinates":[49103,70941]},{"type":"Point","coordinates":[8617,63335]},{"type":"Point","coordinates":[9523,63660]},{"type":"Point","coordinates":[83926,66460]},{"type":"Point","coordinates":[9523,63660]},{"type":"Point","coordinates":[9469,63642]},{"type":"Point","coordinates":[9500,63655]},{"type":"Point","coordinates":[9468,63644]},{"type":"Point","coordinates":[9492,63652]},{"type":"Point","coordinates":[9468,63644]},{"type":"Point","coordinates":[9468,63644]},{"type":"Point","coordinates":[9467,63645]},{"type":"Point","coordinates":[9467,63645]},{"type":"Point","coordinates":[49441,70955]},{"type":"Point","coordinates":[8420,63269]},{"type":"Point","coordinates":[9071,63505]},{"type":"Point","coordinates":[8436,63276]},{"type":"Point","coordinates":[9500,63660]},{"type":"Point","coordinates":[48632,70943]},{"type":"Point","coordinates":[9500,63661]},{"type":"Point","coordinates":[8464,63289]},{"type":"Point","coordinates":[9720,63740]},{"type":"Point","coordinates":[9144,63538]},{"type":"Point","coordinates":[9065,63509]},{"type":"Point","coordinates":[48777,70951]},{"type":"Point","coordinates":[9628,63712]},{"type":"Point","coordinates":[9467,63655]},{"type":"Point","coordinates":[9467,63656]},{"type":"Point","coordinates":[48558,70948]},{"type":"Point","coordinates":[9838,63788]},{"type":"Point","coordinates":[49006,70958]},{"type":"Point","coordinates":[83773,66521]},{"type":"Point","coordinates":[8625,63357]},{"type":"Point","coordinates":[9630,63720]},{"type":"Point","coordinates":[9630,63720]},{"type":"Point","coordinates":[8578,63346]},{"type":"Point","coordinates":[8578,63346]},{"type":"Point","coordinates":[8579,63346]},{"type":"Point","coordinates":[8579,63347]},{"type":"Point","coordinates":[8579,63347]},{"type":"Point","coordinates":[8451,63302]},{"type":"Point","coordinates":[53776,70960]},{"type":"Point","coordinates":[48911,70968]},{"type":"Point","coordinates":[8360,63271]},{"type":"Point","coordinates":[8623,63376]},{"type":"Point","coordinates":[8625,63377]},{"type":"Point","coordinates":[8625,63378]},{"type":"Point","coordinates":[8621,63377]},{"type":"Point","coordinates":[8601,63372]},{"type":"Point","coordinates":[8625,63381]},{"type":"Point","coordinates":[8580,63369]},{"type":"Point","coordinates":[49509,70997]},{"type":"Point","coordinates":[49512,71001]},{"type":"Point","coordinates":[49494,71002]},{"type":"Point","coordinates":[49513,71003]},{"type":"Point","coordinates":[48764,70991]},{"type":"Point","coordinates":[49513,71005]},{"type":"Point","coordinates":[49093,71005]},{"type":"Point","coordinates":[49584,71021]},{"type":"Point","coordinates":[49663,71023]},{"type":"Point","coordinates":[83727,66588]},{"type":"Point","coordinates":[49663,71024]},{"type":"Point","coordinates":[9558,63746]},{"type":"Point","coordinates":[49663,71025]},{"type":"Point","coordinates":[49663,71025]},{"type":"Point","coordinates":[49876,71029]},{"type":"Point","coordinates":[49661,71027]},{"type":"Point","coordinates":[9253,63642]},{"type":"Point","coordinates":[48855,71017]},{"type":"Point","coordinates":[8905,63520]},{"type":"Point","coordinates":[49738,71032]},{"type":"Point","coordinates":[49739,71035]},{"type":"Point","coordinates":[48981,71029]},{"type":"Point","coordinates":[9227,63645]},{"type":"Point","coordinates":[49736,71041]},{"type":"Point","coordinates":[9228,63646]},{"type":"Point","coordinates":[49734,71043]},{"type":"Point","coordinates":[49746,71049]},{"type":"Point","coordinates":[9598,63792]},{"type":"Point","coordinates":[48865,71044]},{"type":"Point","coordinates":[8539,63414]},{"type":"Point","coordinates":[49798,71064]},{"type":"Point","coordinates":[49892,71067]},{"type":"Point","coordinates":[49892,71068]},{"type":"Point","coordinates":[49892,71068]},{"type":"Point","coordinates":[9774,63869]},{"type":"Point","coordinates":[49746,71070]},{"type":"Point","coordinates":[49495,71069]},{"type":"Point","coordinates":[9943,63931]},{"type":"Point","coordinates":[49750,71073]},{"type":"Point","coordinates":[49497,71071]},{"type":"Point","coordinates":[9857,63903]},{"type":"Point","coordinates":[49899,71077]},{"type":"Point","coordinates":[8939,63576]},{"type":"Point","coordinates":[49891,71081]},{"type":"Point","coordinates":[49891,71082]},{"type":"Point","coordinates":[48816,71066]},{"type":"Point","coordinates":[49656,71083]},{"type":"Point","coordinates":[9746,63873]},{"type":"Point","coordinates":[49889,71087]},{"type":"Point","coordinates":[49889,71087]},{"type":"Point","coordinates":[49889,71087]},{"type":"Point","coordinates":[48016,71053]},{"type":"Point","coordinates":[49891,71087]},{"type":"Point","coordinates":[49889,71088]},{"type":"Point","coordinates":[49894,71088]},{"type":"Point","coordinates":[8952,63594]},{"type":"Point","coordinates":[31684,69516]},{"type":"Point","coordinates":[49003,71080]},{"type":"Point","coordinates":[49655,71093]},{"type":"Point","coordinates":[49024,71088]},{"type":"Point","coordinates":[49653,71099]},{"type":"Point","coordinates":[49012,71092]},{"type":"Point","coordinates":[50091,71107]},{"type":"Point","coordinates":[50091,71107]},{"type":"Point","coordinates":[50090,71107]},{"type":"Point","coordinates":[70609,69538]},{"type":"Point","coordinates":[8697,63524]},{"type":"Point","coordinates":[68448,69872]},{"type":"Point","coordinates":[8665,63515]},{"type":"Point","coordinates":[49381,71111]},{"type":"Point","coordinates":[70603,69553]},{"type":"Point","coordinates":[49375,71117]},{"type":"Point","coordinates":[49375,71118]},{"type":"Point","coordinates":[56343,71027]},{"type":"Point","coordinates":[9736,63920]},{"type":"Point","coordinates":[9187,63726]},{"type":"Point","coordinates":[83665,66719]},{"type":"Point","coordinates":[8344,63427]},{"type":"Point","coordinates":[83683,66717]},{"type":"Point","coordinates":[83695,66721]},{"type":"Point","coordinates":[9070,63697]},{"type":"Point","coordinates":[8721,63573]},{"type":"Point","coordinates":[83695,66723]},{"type":"Point","coordinates":[49106,71143]},{"type":"Point","coordinates":[8741,63584]},{"type":"Point","coordinates":[8577,63526]},{"type":"Point","coordinates":[8579,63527]},{"type":"Point","coordinates":[49103,71145]},{"type":"Point","coordinates":[49103,71146]},{"type":"Point","coordinates":[49103,71146]},{"type":"Point","coordinates":[83661,66743]},{"type":"Point","coordinates":[49098,71151]},{"type":"Point","coordinates":[49255,71154]},{"type":"Point","coordinates":[49100,71152]},{"type":"Point","coordinates":[49101,71152]},{"type":"Point","coordinates":[8331,63445]},{"type":"Point","coordinates":[49833,71164]},{"type":"Point","coordinates":[49833,71164]},{"type":"Point","coordinates":[37980,70449]},{"type":"Point","coordinates":[49840,71166]},{"type":"Point","coordinates":[49101,71155]},{"type":"Point","coordinates":[49840,71166]},{"type":"Point","coordinates":[49101,71156]},{"type":"Point","coordinates":[49838,71168]},{"type":"Point","coordinates":[49101,71159]},{"type":"Point","coordinates":[49832,71169]},{"type":"Point","coordinates":[49142,71160]},{"type":"Point","coordinates":[49839,71170]},{"type":"Point","coordinates":[49838,71170]},{"type":"Point","coordinates":[49265,71165]},{"type":"Point","coordinates":[8299,63445]},{"type":"Point","coordinates":[47862,71137]},{"type":"Point","coordinates":[8584,63550]},{"type":"Point","coordinates":[48977,71167]},{"type":"Point","coordinates":[8584,63555]},{"type":"Point","coordinates":[8583,63555]},{"type":"Point","coordinates":[8389,63485]},{"type":"Point","coordinates":[83619,66777]},{"type":"Point","coordinates":[8918,63685]},{"type":"Point","coordinates":[9912,64039]},{"type":"Point","coordinates":[8786,63641]},{"type":"Point","coordinates":[8954,63702]},{"type":"Point","coordinates":[8582,63568]},{"type":"Point","coordinates":[68444,69957]},{"type":"Point","coordinates":[49257,71192]},{"type":"Point","coordinates":[8583,63576]},{"type":"Point","coordinates":[49267,71200]},{"type":"Point","coordinates":[8581,63583]},{"type":"Point","coordinates":[49262,71202]},{"type":"Point","coordinates":[8581,63586]},{"type":"Point","coordinates":[8581,63586]},{"type":"Point","coordinates":[8582,63587]},{"type":"Point","coordinates":[8582,63587]},{"type":"Point","coordinates":[8580,63587]},{"type":"Point","coordinates":[8581,63587]},{"type":"Point","coordinates":[9679,63981]},{"type":"Point","coordinates":[8566,63582]},{"type":"Point","coordinates":[50211,71217]},{"type":"Point","coordinates":[48890,71200]},{"type":"Point","coordinates":[8582,63589]},{"type":"Point","coordinates":[8582,63591]},{"type":"Point","coordinates":[8582,63591]},{"type":"Point","coordinates":[8578,63589]},{"type":"Point","coordinates":[49560,71213]},{"type":"Point","coordinates":[49138,71207]},{"type":"Point","coordinates":[8581,63593]},{"type":"Point","coordinates":[49561,71220]},{"type":"Point","coordinates":[83707,66795]},{"type":"Point","coordinates":[9988,64105]},{"type":"Point","coordinates":[83678,66807]},{"type":"Point","coordinates":[8610,63616]},{"type":"Point","coordinates":[48956,71221]},{"type":"Point","coordinates":[8355,63529]},{"type":"Point","coordinates":[83657,66824]},{"type":"Point","coordinates":[8607,63629]},{"type":"Point","coordinates":[8865,63728]},{"type":"Point","coordinates":[49530,71248]},{"type":"Point","coordinates":[8564,63622]},{"type":"Point","coordinates":[8580,63630]},{"type":"Point","coordinates":[8587,63633]},{"type":"Point","coordinates":[8560,63624]},{"type":"Point","coordinates":[8561,63625]},{"type":"Point","coordinates":[8587,63635]},{"type":"Point","coordinates":[8587,63635]},{"type":"Point","coordinates":[8560,63626]},{"type":"Point","coordinates":[8560,63626]},{"type":"Point","coordinates":[8560,63626]},{"type":"Point","coordinates":[8576,63632]},{"type":"Point","coordinates":[8576,63632]},{"type":"Point","coordinates":[8576,63632]},{"type":"Point","coordinates":[9015,63792]},{"type":"Point","coordinates":[8574,63633]},{"type":"Point","coordinates":[8560,63628]},{"type":"Point","coordinates":[8560,63629]},{"type":"Point","coordinates":[8574,63635]},{"type":"Point","coordinates":[8588,63640]},{"type":"Point","coordinates":[8580,63638]},{"type":"Point","coordinates":[8580,63638]},{"type":"Point","coordinates":[8580,63638]},{"type":"Point","coordinates":[8585,63641]},{"type":"Point","coordinates":[47569,71219]},{"type":"Point","coordinates":[8575,63639]},{"type":"Point","coordinates":[8577,63641]},{"type":"Point","coordinates":[8578,63641]},{"type":"Point","coordinates":[8576,63641]},{"type":"Point","coordinates":[8578,63641]},{"type":"Point","coordinates":[8576,63641]},{"type":"Point","coordinates":[8576,63641]},{"type":"Point","coordinates":[10188,64215]},{"type":"Point","coordinates":[8576,63645]},{"type":"Point","coordinates":[8969,63787]},{"type":"Point","coordinates":[8559,63641]},{"type":"Point","coordinates":[8560,63642]},{"type":"Point","coordinates":[8560,63642]},{"type":"Point","coordinates":[84055,66751]},{"type":"Point","coordinates":[49103,71266]},{"type":"Point","coordinates":[49414,71277]},{"type":"Point","coordinates":[8561,63653]},{"type":"Point","coordinates":[8597,63670]},{"type":"Point","coordinates":[49568,71286]},{"type":"Point","coordinates":[49440,71285]},{"type":"Point","coordinates":[49438,71286]},{"type":"Point","coordinates":[8711,63716]},{"type":"Point","coordinates":[8558,63662]},{"type":"Point","coordinates":[49440,71291]},{"type":"Point","coordinates":[48595,71276]},{"type":"Point","coordinates":[49437,71291]},{"type":"Point","coordinates":[48703,71278]},{"type":"Point","coordinates":[51712,71305]},{"type":"Point","coordinates":[49440,71294]},{"type":"Point","coordinates":[8593,63680]},{"type":"Point","coordinates":[48161,71270]},{"type":"Point","coordinates":[8620,63693]},{"type":"Point","coordinates":[43912,71093]},{"type":"Point","coordinates":[8897,63795]},{"type":"Point","coordinates":[51720,71311]},{"type":"Point","coordinates":[49432,71301]},{"type":"Point","coordinates":[49430,71301]},{"type":"Point","coordinates":[9939,64169]},{"type":"Point","coordinates":[8867,63790]},{"type":"Point","coordinates":[49431,71305]},{"type":"Point","coordinates":[8557,63679]},{"type":"Point","coordinates":[48158,71281]},{"type":"Point","coordinates":[8558,63681]},{"type":"Point","coordinates":[48679,71295]},{"type":"Point","coordinates":[8768,63758]},{"type":"Point","coordinates":[48679,71295]},{"type":"Point","coordinates":[8556,63683]},{"type":"Point","coordinates":[8602,63700]},{"type":"Point","coordinates":[49575,71313]},{"type":"Point","coordinates":[48150,71287]},{"type":"Point","coordinates":[8697,63737]},{"type":"Point","coordinates":[8561,63689]},{"type":"Point","coordinates":[8561,63689]},{"type":"Point","coordinates":[8562,63690]},{"type":"Point","coordinates":[8558,63689]},{"type":"Point","coordinates":[8561,63690]},{"type":"Point","coordinates":[8559,63690]},{"type":"Point","coordinates":[8682,63735]},{"type":"Point","coordinates":[8558,63690]},{"type":"Point","coordinates":[8562,63691]},{"type":"Point","coordinates":[51736,71328]},{"type":"Point","coordinates":[8559,63692]},{"type":"Point","coordinates":[8571,63696]},{"type":"Point","coordinates":[8557,63691]},{"type":"Point","coordinates":[8561,63693]},{"type":"Point","coordinates":[8562,63693]},{"type":"Point","coordinates":[8562,63693]},{"type":"Point","coordinates":[8557,63692]},{"type":"Point","coordinates":[8562,63693]},{"type":"Point","coordinates":[8562,63693]},{"type":"Point","coordinates":[51736,71329]},{"type":"Point","coordinates":[8558,63692]},{"type":"Point","coordinates":[8559,63693]},{"type":"Point","coordinates":[8562,63694]},{"type":"Point","coordinates":[8557,63692]},{"type":"Point","coordinates":[8557,63693]},{"type":"Point","coordinates":[8562,63695]},{"type":"Point","coordinates":[8562,63695]},{"type":"Point","coordinates":[8559,63694]},{"type":"Point","coordinates":[8560,63695]},{"type":"Point","coordinates":[8556,63694]},{"type":"Point","coordinates":[8562,63696]},{"type":"Point","coordinates":[8560,63696]},{"type":"Point","coordinates":[8560,63697]},{"type":"Point","coordinates":[8560,63697]},{"type":"Point","coordinates":[8561,63697]},{"type":"Point","coordinates":[8561,63697]},{"type":"Point","coordinates":[8561,63698]},{"type":"Point","coordinates":[8561,63698]},{"type":"Point","coordinates":[8557,63696]},{"type":"Point","coordinates":[8564,63699]},{"type":"Point","coordinates":[8561,63698]},{"type":"Point","coordinates":[8563,63699]},{"type":"Point","coordinates":[8563,63699]},{"type":"Point","coordinates":[8563,63699]},{"type":"Point","coordinates":[8561,63698]},{"type":"Point","coordinates":[8563,63699]},{"type":"Point","coordinates":[8556,63697]},{"type":"Point","coordinates":[8563,63699]},{"type":"Point","coordinates":[8562,63699]},{"type":"Point","coordinates":[8562,63699]},{"type":"Point","coordinates":[8563,63699]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8556,63698]},{"type":"Point","coordinates":[8561,63699]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8563,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8556,63698]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8559,63699]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8560,63699]},{"type":"Point","coordinates":[8561,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8560,63700]},{"type":"Point","coordinates":[8562,63700]},{"type":"Point","coordinates":[8560,63700]},{"type":"Point","coordinates":[8560,63700]},{"type":"Point","coordinates":[8561,63701]},{"type":"Point","coordinates":[8556,63699]},{"type":"Point","coordinates":[8561,63701]},{"type":"Point","coordinates":[8561,63701]},{"type":"Point","coordinates":[8561,63701]},{"type":"Point","coordinates":[8558,63701]},{"type":"Point","coordinates":[8560,63702]},{"type":"Point","coordinates":[8561,63702]},{"type":"Point","coordinates":[8575,63707]},{"type":"Point","coordinates":[8561,63702]},{"type":"Point","coordinates":[8574,63708]},{"type":"Point","coordinates":[8561,63704]},{"type":"Point","coordinates":[8564,63706]},{"type":"Point","coordinates":[8561,63705]},{"type":"Point","coordinates":[8564,63706]},{"type":"Point","coordinates":[8564,63706]},{"type":"Point","coordinates":[8564,63706]},{"type":"Point","coordinates":[8558,63704]},{"type":"Point","coordinates":[8564,63706]},{"type":"Point","coordinates":[8563,63706]},{"type":"Point","coordinates":[8564,63706]},{"type":"Point","coordinates":[8559,63705]},{"type":"Point","coordinates":[8558,63705]},{"type":"Point","coordinates":[8567,63708]},{"type":"Point","coordinates":[8562,63706]},{"type":"Point","coordinates":[8560,63705]},{"type":"Point","coordinates":[8563,63707]},{"type":"Point","coordinates":[8563,63707]},{"type":"Point","coordinates":[49233,71328]},{"type":"Point","coordinates":[8566,63709]},{"type":"Point","coordinates":[8564,63708]},{"type":"Point","coordinates":[8558,63706]},{"type":"Point","coordinates":[8571,63711]},{"type":"Point","coordinates":[8561,63707]},{"type":"Point","coordinates":[8557,63706]},{"type":"Point","coordinates":[8557,63706]},{"type":"Point","coordinates":[8566,63709]},{"type":"Point","coordinates":[8556,63706]},{"type":"Point","coordinates":[8556,63706]},{"type":"Point","coordinates":[8556,63706]},{"type":"Point","coordinates":[8556,63706]},{"type":"Point","coordinates":[8565,63709]},{"type":"Point","coordinates":[49270,71330]},{"type":"Point","coordinates":[8556,63706]},{"type":"Point","coordinates":[8566,63710]},{"type":"Point","coordinates":[8566,63710]},{"type":"Point","coordinates":[8559,63707]},{"type":"Point","coordinates":[8565,63710]},{"type":"Point","coordinates":[8573,63713]},{"type":"Point","coordinates":[8561,63709]},{"type":"Point","coordinates":[8578,63715]},{"type":"Point","coordinates":[8562,63709]},{"type":"Point","coordinates":[8562,63709]},{"type":"Point","coordinates":[8561,63709]},{"type":"Point","coordinates":[49354,71333]},{"type":"Point","coordinates":[8560,63709]},{"type":"Point","coordinates":[8558,63708]},{"type":"Point","coordinates":[8565,63711]},{"type":"Point","coordinates":[49266,71332]},{"type":"Point","coordinates":[8566,63712]},{"type":"Point","coordinates":[8565,63712]},{"type":"Point","coordinates":[8571,63715]},{"type":"Point","coordinates":[8565,63713]},{"type":"Point","coordinates":[49351,71335]},{"type":"Point","coordinates":[8565,63713]},{"type":"Point","coordinates":[8557,63711]},{"type":"Point","coordinates":[8565,63713]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8567,63715]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63715]},{"type":"Point","coordinates":[8564,63714]},{"type":"Point","coordinates":[8564,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8565,63714]},{"type":"Point","coordinates":[8564,63714]},{"type":"Point","coordinates":[8564,63714]},{"type":"Point","coordinates":[8564,63714]},{"type":"Point","coordinates":[8565,63715]},{"type":"Point","coordinates":[8564,63715]},{"type":"Point","coordinates":[8565,63715]},{"type":"Point","coordinates":[8564,63715]},{"type":"Point","coordinates":[8565,63715]},{"type":"Point","coordinates":[8561,63714]},{"type":"Point","coordinates":[49269,71336]},{"type":"Point","coordinates":[8561,63714]},{"type":"Point","coordinates":[8554,63712]},{"type":"Point","coordinates":[8564,63716]},{"type":"Point","coordinates":[8564,63716]},{"type":"Point","coordinates":[8564,63716]},{"type":"Point","coordinates":[8568,63717]},{"type":"Point","coordinates":[8561,63715]},{"type":"Point","coordinates":[8561,63715]},{"type":"Point","coordinates":[8564,63716]},{"type":"Point","coordinates":[8561,63715]},{"type":"Point","coordinates":[8561,63715]},{"type":"Point","coordinates":[8561,63715]},{"type":"Point","coordinates":[8563,63715]},{"type":"Point","coordinates":[8564,63716]},{"type":"Point","coordinates":[8560,63715]},{"type":"Point","coordinates":[8561,63715]},{"type":"Point","coordinates":[8575,63720]},{"type":"Point","coordinates":[8561,63716]},{"type":"Point","coordinates":[8560,63716]},{"type":"Point","coordinates":[8560,63716]},{"type":"Point","coordinates":[48755,71329]},{"type":"Point","coordinates":[8555,63714]},{"type":"Point","coordinates":[8561,63717]},{"type":"Point","coordinates":[8561,63717]},{"type":"Point","coordinates":[8561,63717]},{"type":"Point","coordinates":[8576,63723]},{"type":"Point","coordinates":[8570,63721]},{"type":"Point","coordinates":[8557,63716]},{"type":"Point","coordinates":[8557,63716]},{"type":"Point","coordinates":[72981,69370]},{"type":"Point","coordinates":[8560,63718]},{"type":"Point","coordinates":[9299,63984]},{"type":"Point","coordinates":[8555,63717]},{"type":"Point","coordinates":[8572,63724]},{"type":"Point","coordinates":[8572,63724]},{"type":"Point","coordinates":[8572,63724]},{"type":"Point","coordinates":[8561,63720]},{"type":"Point","coordinates":[8572,63724]},{"type":"Point","coordinates":[8561,63720]},{"type":"Point","coordinates":[8561,63720]},{"type":"Point","coordinates":[8561,63720]},{"type":"Point","coordinates":[8559,63720]},{"type":"Point","coordinates":[8559,63721]},{"type":"Point","coordinates":[8626,63746]},{"type":"Point","coordinates":[8557,63722]},{"type":"Point","coordinates":[9302,63990]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[8570,63728]},{"type":"Point","coordinates":[48895,71341]},{"type":"Point","coordinates":[8585,63736]},{"type":"Point","coordinates":[49240,71349]},{"type":"Point","coordinates":[8562,63729]},{"type":"Point","coordinates":[8571,63732]},{"type":"Point","coordinates":[8559,63728]},{"type":"Point","coordinates":[8563,63731]},{"type":"Point","coordinates":[8575,63737]},{"type":"Point","coordinates":[8566,63734]},{"type":"Point","coordinates":[8575,63737]},{"type":"Point","coordinates":[8566,63734]},{"type":"Point","coordinates":[8569,63735]},{"type":"Point","coordinates":[8575,63737]},{"type":"Point","coordinates":[66697,70364]},{"type":"Point","coordinates":[8576,63739]},{"type":"Point","coordinates":[8552,63730]},{"type":"Point","coordinates":[8562,63737]},{"type":"Point","coordinates":[9263,63990]},{"type":"Point","coordinates":[49470,71364]},{"type":"Point","coordinates":[8552,63736]},{"type":"Point","coordinates":[8570,63746]},{"type":"Point","coordinates":[8577,63756]},{"type":"Point","coordinates":[8577,63756]},{"type":"Point","coordinates":[8566,63753]},{"type":"Point","coordinates":[35171,70325]},{"type":"Point","coordinates":[8813,63845]},{"type":"Point","coordinates":[49492,71383]},{"type":"Point","coordinates":[48789,71372]},{"type":"Point","coordinates":[49449,71383]},{"type":"Point","coordinates":[48920,71375]},{"type":"Point","coordinates":[9457,64085]},{"type":"Point","coordinates":[74326,69161]},{"type":"Point","coordinates":[48907,71380]},{"type":"Point","coordinates":[48909,71380]},{"type":"Point","coordinates":[49448,71390]},{"type":"Point","coordinates":[48913,71381]},{"type":"Point","coordinates":[49448,71390]},{"type":"Point","coordinates":[66730,70393]},{"type":"Point","coordinates":[48911,71382]},{"type":"Point","coordinates":[8652,63808]},{"type":"Point","coordinates":[49442,71400]},{"type":"Point","coordinates":[49656,71409]},{"type":"Point","coordinates":[49657,71409]},{"type":"Point","coordinates":[49656,71409]},{"type":"Point","coordinates":[49656,71411]},{"type":"Point","coordinates":[42240,71098]},{"type":"Point","coordinates":[74314,69195]},{"type":"Point","coordinates":[8498,63774]},{"type":"Point","coordinates":[8570,63802]},{"type":"Point","coordinates":[48829,71412]},{"type":"Point","coordinates":[8596,63815]},{"type":"Point","coordinates":[68528,70184]},{"type":"Point","coordinates":[49441,71428]},{"type":"Point","coordinates":[49441,71428]},{"type":"Point","coordinates":[48666,71415]},{"type":"Point","coordinates":[49441,71428]},{"type":"Point","coordinates":[74326,69204]},{"type":"Point","coordinates":[48026,71406]},{"type":"Point","coordinates":[48025,71406]},{"type":"Point","coordinates":[48026,71408]},{"type":"Point","coordinates":[48025,71409]},{"type":"Point","coordinates":[48026,71409]},{"type":"Point","coordinates":[8574,63822]},{"type":"Point","coordinates":[74325,69214]},{"type":"Point","coordinates":[49645,71444]},{"type":"Point","coordinates":[8570,63822]},{"type":"Point","coordinates":[8573,63824]},{"type":"Point","coordinates":[74326,69216]},{"type":"Point","coordinates":[8556,63820]},{"type":"Point","coordinates":[49436,71445]},{"type":"Point","coordinates":[8864,63933]},{"type":"Point","coordinates":[8574,63829]},{"type":"Point","coordinates":[49542,71450]},{"type":"Point","coordinates":[49639,71452]},{"type":"Point","coordinates":[49635,71453]},{"type":"Point","coordinates":[9873,64298]},{"type":"Point","coordinates":[49647,71456]},{"type":"Point","coordinates":[9672,64231]},{"type":"Point","coordinates":[48685,71442]},{"type":"Point","coordinates":[66812,70452]},{"type":"Point","coordinates":[48678,71452]},{"type":"Point","coordinates":[8269,63738]},{"type":"Point","coordinates":[48680,71453]},{"type":"Point","coordinates":[48568,71452]},{"type":"Point","coordinates":[49635,71471]},{"type":"Point","coordinates":[9722,64264]},{"type":"Point","coordinates":[49421,71470]},{"type":"Point","coordinates":[48686,71458]},{"type":"Point","coordinates":[48688,71461]},{"type":"Point","coordinates":[50106,71482]},{"type":"Point","coordinates":[48687,71461]},{"type":"Point","coordinates":[49638,71479]},{"type":"Point","coordinates":[8328,63771]},{"type":"Point","coordinates":[74285,69260]},{"type":"Point","coordinates":[48571,71463]},{"type":"Point","coordinates":[8912,63984]},{"type":"Point","coordinates":[8402,63804]},{"type":"Point","coordinates":[49638,71486]},{"type":"Point","coordinates":[49639,71488]},{"type":"Point","coordinates":[6198,62983]},{"type":"Point","coordinates":[9240,64110]},{"type":"Point","coordinates":[8852,63973]},{"type":"Point","coordinates":[49278,71487]},{"type":"Point","coordinates":[42541,71195]},{"type":"Point","coordinates":[8642,63900]},{"type":"Point","coordinates":[49620,71498]},{"type":"Point","coordinates":[69335,70136]},{"type":"Point","coordinates":[6215,63003]},{"type":"Point","coordinates":[48794,71489]},{"type":"Point","coordinates":[48795,71490]},{"type":"Point","coordinates":[48795,71490]},{"type":"Point","coordinates":[8299,63785]},{"type":"Point","coordinates":[48796,71490]},{"type":"Point","coordinates":[48790,71491]},{"type":"Point","coordinates":[48789,71491]},{"type":"Point","coordinates":[66800,70497]},{"type":"Point","coordinates":[48800,71493]},{"type":"Point","coordinates":[8550,63880]},{"type":"Point","coordinates":[8550,63880]},{"type":"Point","coordinates":[8549,63880]},{"type":"Point","coordinates":[8604,63900]},{"type":"Point","coordinates":[48799,71494]},{"type":"Point","coordinates":[48799,71494]},{"type":"Point","coordinates":[48801,71495]},{"type":"Point","coordinates":[49279,71504]},{"type":"Point","coordinates":[48798,71496]},{"type":"Point","coordinates":[8554,63884]},{"type":"Point","coordinates":[6224,63015]},{"type":"Point","coordinates":[8555,63885]},{"type":"Point","coordinates":[49657,71511]},{"type":"Point","coordinates":[48796,71499]},{"type":"Point","coordinates":[48575,71495]},{"type":"Point","coordinates":[73954,69358]},{"type":"Point","coordinates":[48576,71497]},{"type":"Point","coordinates":[49559,71519]},{"type":"Point","coordinates":[48579,71503]},{"type":"Point","coordinates":[48579,71503]},{"type":"Point","coordinates":[48579,71505]},{"type":"Point","coordinates":[48579,71506]},{"type":"Point","coordinates":[48837,71513]},{"type":"Point","coordinates":[83184,67247]},{"type":"Point","coordinates":[49661,71530]},{"type":"Point","coordinates":[49662,71531]},{"type":"Point","coordinates":[8376,63842]},{"type":"Point","coordinates":[8540,63909]},{"type":"Point","coordinates":[9748,64347]},{"type":"Point","coordinates":[8591,63936]},{"type":"Point","coordinates":[48982,71540]},{"type":"Point","coordinates":[48138,71522]},{"type":"Point","coordinates":[48947,71541]},{"type":"Point","coordinates":[48988,71544]},{"type":"Point","coordinates":[48178,71531]},{"type":"Point","coordinates":[48999,71550]},{"type":"Point","coordinates":[48177,71535]},{"type":"Point","coordinates":[49506,71562]},{"type":"Point","coordinates":[49701,71567]},{"type":"Point","coordinates":[49706,71568]},{"type":"Point","coordinates":[49706,71569]},{"type":"Point","coordinates":[8720,64004]},{"type":"Point","coordinates":[49706,71569]},{"type":"Point","coordinates":[49706,71569]},{"type":"Point","coordinates":[49701,71569]},{"type":"Point","coordinates":[49700,71570]},{"type":"Point","coordinates":[49438,71569]},{"type":"Point","coordinates":[8445,63908]},{"type":"Point","coordinates":[48591,71556]},{"type":"Point","coordinates":[48510,71556]},{"type":"Point","coordinates":[49450,71573]},{"type":"Point","coordinates":[49710,71577]},{"type":"Point","coordinates":[49307,71574]},{"type":"Point","coordinates":[8484,63930]},{"type":"Point","coordinates":[6181,63070]},{"type":"Point","coordinates":[48167,71557]},{"type":"Point","coordinates":[48152,71559]},{"type":"Point","coordinates":[48168,71562]},{"type":"Point","coordinates":[9864,64444]},{"type":"Point","coordinates":[9865,64445]},{"type":"Point","coordinates":[48171,71574]},{"type":"Point","coordinates":[8348,63904]},{"type":"Point","coordinates":[6171,63089]},{"type":"Point","coordinates":[9866,64447]},{"type":"Point","coordinates":[48135,71575]},{"type":"Point","coordinates":[48171,71577]},{"type":"Point","coordinates":[49643,71606]},{"type":"Point","coordinates":[8661,64022]},{"type":"Point","coordinates":[49410,71604]},{"type":"Point","coordinates":[49683,71608]},{"type":"Point","coordinates":[9863,64452]},{"type":"Point","coordinates":[48172,71580]},{"type":"Point","coordinates":[9864,64452]},{"type":"Point","coordinates":[48996,71599]},{"type":"Point","coordinates":[49684,71609]},{"type":"Point","coordinates":[8535,63981]},{"type":"Point","coordinates":[48177,71584]},{"type":"Point","coordinates":[48146,71584]},{"type":"Point","coordinates":[48146,71584]},{"type":"Point","coordinates":[48146,71584]},{"type":"Point","coordinates":[48146,71584]},{"type":"Point","coordinates":[48146,71584]},{"type":"Point","coordinates":[48146,71584]},{"type":"Point","coordinates":[8495,63968]},{"type":"Point","coordinates":[48146,71585]},{"type":"Point","coordinates":[48146,71585]},{"type":"Point","coordinates":[49379,71610]},{"type":"Point","coordinates":[8510,63975]},{"type":"Point","coordinates":[48144,71587]},{"type":"Point","coordinates":[48162,71590]},{"type":"Point","coordinates":[48162,71591]},{"type":"Point","coordinates":[8536,63989]},{"type":"Point","coordinates":[48178,71592]},{"type":"Point","coordinates":[49923,71623]},{"type":"Point","coordinates":[48179,71593]},{"type":"Point","coordinates":[49385,71617]},{"type":"Point","coordinates":[73698,69514]},{"type":"Point","coordinates":[73701,69515]},{"type":"Point","coordinates":[8497,63981]},{"type":"Point","coordinates":[49399,71622]},{"type":"Point","coordinates":[49399,71623]},{"type":"Point","coordinates":[9879,64476]},{"type":"Point","coordinates":[49399,71623]},{"type":"Point","coordinates":[49399,71623]},{"type":"Point","coordinates":[49384,71623]},{"type":"Point","coordinates":[49654,71627]},{"type":"Point","coordinates":[51169,71637]},{"type":"Point","coordinates":[48160,71603]},{"type":"Point","coordinates":[49734,71633]},{"type":"Point","coordinates":[8661,64049]},{"type":"Point","coordinates":[49663,71636]},{"type":"Point","coordinates":[9864,64482]},{"type":"Point","coordinates":[9877,64487]},{"type":"Point","coordinates":[9877,64487]},{"type":"Point","coordinates":[48186,71611]},{"type":"Point","coordinates":[8593,64030]},{"type":"Point","coordinates":[76157,69042]},{"type":"Point","coordinates":[73865,69503]},{"type":"Point","coordinates":[9732,64441]},{"type":"Point","coordinates":[9722,64438]},{"type":"Point","coordinates":[9749,64450]},{"type":"Point","coordinates":[48121,71616]},{"type":"Point","coordinates":[9308,64295]},{"type":"Point","coordinates":[9308,64295]},{"type":"Point","coordinates":[8939,64164]},{"type":"Point","coordinates":[48122,71618]},{"type":"Point","coordinates":[9205,64261]},{"type":"Point","coordinates":[6211,63152]},{"type":"Point","coordinates":[8259,63920]},{"type":"Point","coordinates":[49584,71649]},{"type":"Point","coordinates":[73716,69541]},{"type":"Point","coordinates":[8598,64046]},{"type":"Point","coordinates":[9308,64304]},{"type":"Point","coordinates":[49360,71655]},{"type":"Point","coordinates":[48623,71644]},{"type":"Point","coordinates":[8299,63947]},{"type":"Point","coordinates":[9323,64319]},{"type":"Point","coordinates":[8852,64151]},{"type":"Point","coordinates":[8715,64106]},{"type":"Point","coordinates":[9305,64321]},{"type":"Point","coordinates":[8850,64158]},{"type":"Point","coordinates":[48180,71646]},{"type":"Point","coordinates":[9301,64320]},{"type":"Point","coordinates":[48363,71651]},{"type":"Point","coordinates":[48248,71648]},{"type":"Point","coordinates":[49585,71675]},{"type":"Point","coordinates":[49585,71675]},{"type":"Point","coordinates":[49582,71675]},{"type":"Point","coordinates":[49584,71675]},{"type":"Point","coordinates":[49582,71675]},{"type":"Point","coordinates":[49582,71675]},{"type":"Point","coordinates":[8381,63993]},{"type":"Point","coordinates":[49586,71677]},{"type":"Point","coordinates":[49586,71677]},{"type":"Point","coordinates":[49679,71680]},{"type":"Point","coordinates":[8897,64184]},{"type":"Point","coordinates":[48180,71656]},{"type":"Point","coordinates":[48176,71659]},{"type":"Point","coordinates":[9302,64336]},{"type":"Point","coordinates":[9302,64336]},{"type":"Point","coordinates":[9298,64337]},{"type":"Point","coordinates":[49713,71693]},{"type":"Point","coordinates":[8627,64098]},{"type":"Point","coordinates":[9451,64395]},{"type":"Point","coordinates":[49684,71694]},{"type":"Point","coordinates":[9299,64341]},{"type":"Point","coordinates":[9297,64340]},{"type":"Point","coordinates":[9296,64340]},{"type":"Point","coordinates":[8336,63994]},{"type":"Point","coordinates":[9299,64341]},{"type":"Point","coordinates":[8257,63965]},{"type":"Point","coordinates":[9296,64340]},{"type":"Point","coordinates":[9298,64342]},{"type":"Point","coordinates":[9298,64342]},{"type":"Point","coordinates":[9296,64341]},{"type":"Point","coordinates":[49684,71696]},{"type":"Point","coordinates":[9295,64341]},{"type":"Point","coordinates":[48204,71669]},{"type":"Point","coordinates":[9296,64342]},{"type":"Point","coordinates":[73901,69553]},{"type":"Point","coordinates":[49472,71697]},{"type":"Point","coordinates":[48346,71676]},{"type":"Point","coordinates":[48206,71672]},{"type":"Point","coordinates":[49795,71704]},{"type":"Point","coordinates":[49795,71704]},{"type":"Point","coordinates":[9476,64413]},{"type":"Point","coordinates":[49684,71704]},{"type":"Point","coordinates":[49685,71705]},{"type":"Point","coordinates":[48182,71677]},{"type":"Point","coordinates":[48206,71680]},{"type":"Point","coordinates":[8745,64155]},{"type":"Point","coordinates":[49655,71707]},{"type":"Point","coordinates":[9477,64418]},{"type":"Point","coordinates":[49734,71709]},{"type":"Point","coordinates":[48114,71684]},{"type":"Point","coordinates":[9752,64522]},{"type":"Point","coordinates":[48202,71687]},{"type":"Point","coordinates":[8657,64134]},{"type":"Point","coordinates":[9478,64432]},{"type":"Point","coordinates":[9485,64435]},{"type":"Point","coordinates":[48199,71696]},{"type":"Point","coordinates":[9760,64534]},{"type":"Point","coordinates":[8843,64209]},{"type":"Point","coordinates":[8579,64115]},{"type":"Point","coordinates":[8907,64235]},{"type":"Point","coordinates":[8907,64236]},{"type":"Point","coordinates":[8907,64236]},{"type":"Point","coordinates":[8907,64236]},{"type":"Point","coordinates":[8907,64236]},{"type":"Point","coordinates":[8907,64236]},{"type":"Point","coordinates":[8907,64236]},{"type":"Point","coordinates":[8907,64236]},{"type":"Point","coordinates":[8899,64234]},{"type":"Point","coordinates":[8907,64237]},{"type":"Point","coordinates":[8907,64238]},{"type":"Point","coordinates":[48715,71718]},{"type":"Point","coordinates":[47664,71692]},{"type":"Point","coordinates":[49032,71725]},{"type":"Point","coordinates":[49775,71738]},{"type":"Point","coordinates":[49776,71738]},{"type":"Point","coordinates":[49775,71738]},{"type":"Point","coordinates":[8571,64123]},{"type":"Point","coordinates":[8234,64003]},{"type":"Point","coordinates":[49689,71740]},{"type":"Point","coordinates":[48183,71713]},{"type":"Point","coordinates":[8897,64245]},{"type":"Point","coordinates":[48183,71719]},{"type":"Point","coordinates":[48183,71719]},{"type":"Point","coordinates":[48623,71730]},{"type":"Point","coordinates":[48624,71730]},{"type":"Point","coordinates":[48182,71720]},{"type":"Point","coordinates":[48624,71731]},{"type":"Point","coordinates":[48222,71724]},{"type":"Point","coordinates":[8586,64145]},{"type":"Point","coordinates":[48139,71727]},{"type":"Point","coordinates":[8995,64296]},{"type":"Point","coordinates":[49539,71755]},{"type":"Point","coordinates":[8517,64125]},{"type":"Point","coordinates":[71684,70014]},{"type":"Point","coordinates":[49538,71758]},{"type":"Point","coordinates":[49538,71759]},{"type":"Point","coordinates":[49538,71759]},{"type":"Point","coordinates":[49537,71760]},{"type":"Point","coordinates":[49536,71760]},{"type":"Point","coordinates":[49537,71761]},{"type":"Point","coordinates":[49536,71761]},{"type":"Point","coordinates":[8536,64137]},{"type":"Point","coordinates":[9766,64578]},{"type":"Point","coordinates":[48136,71737]},{"type":"Point","coordinates":[8535,64140]},{"type":"Point","coordinates":[71683,70022]},{"type":"Point","coordinates":[48248,71741]},{"type":"Point","coordinates":[49726,71768]},{"type":"Point","coordinates":[49727,71769]},{"type":"Point","coordinates":[49536,71767]},{"type":"Point","coordinates":[49727,71769]},{"type":"Point","coordinates":[68706,70499]},{"type":"Point","coordinates":[8414,64101]},{"type":"Point","coordinates":[49536,71770]},{"type":"Point","coordinates":[71683,70030]},{"type":"Point","coordinates":[48886,71762]},{"type":"Point","coordinates":[8301,64064]},{"type":"Point","coordinates":[49583,71775]},{"type":"Point","coordinates":[8718,64219]},{"type":"Point","coordinates":[81772,67874]},{"type":"Point","coordinates":[48533,71763]},{"type":"Point","coordinates":[49684,71784]},{"type":"Point","coordinates":[8362,64099]},{"type":"Point","coordinates":[8574,64177]},{"type":"Point","coordinates":[82159,67785]},{"type":"Point","coordinates":[48201,71767]},{"type":"Point","coordinates":[49641,71794]},{"type":"Point","coordinates":[48660,71791]},{"type":"Point","coordinates":[49513,71806]},{"type":"Point","coordinates":[47708,71769]},{"type":"Point","coordinates":[8927,64328]},{"type":"Point","coordinates":[48873,71805]},{"type":"Point","coordinates":[49002,71807]},{"type":"Point","coordinates":[48305,71795]},{"type":"Point","coordinates":[47711,71781]},{"type":"Point","coordinates":[48885,71810]},{"type":"Point","coordinates":[48216,71796]},{"type":"Point","coordinates":[49981,71827]},{"type":"Point","coordinates":[48297,71799]},{"type":"Point","coordinates":[48142,71796]},{"type":"Point","coordinates":[48867,71813]},{"type":"Point","coordinates":[48215,71801]},{"type":"Point","coordinates":[47536,71784]},{"type":"Point","coordinates":[48899,71817]},{"type":"Point","coordinates":[49164,71822]},{"type":"Point","coordinates":[48176,71802]},{"type":"Point","coordinates":[48297,71807]},{"type":"Point","coordinates":[49606,71831]},{"type":"Point","coordinates":[48866,71820]},{"type":"Point","coordinates":[48885,71822]},{"type":"Point","coordinates":[48914,71823]},{"type":"Point","coordinates":[48899,71823]},{"type":"Point","coordinates":[48906,71823]},{"type":"Point","coordinates":[48900,71823]},{"type":"Point","coordinates":[48993,71825]},{"type":"Point","coordinates":[48296,71811]},{"type":"Point","coordinates":[48296,71811]},{"type":"Point","coordinates":[48870,71823]},{"type":"Point","coordinates":[48870,71824]},{"type":"Point","coordinates":[48900,71825]},{"type":"Point","coordinates":[48891,71825]},{"type":"Point","coordinates":[48866,71825]},{"type":"Point","coordinates":[48930,71826]},{"type":"Point","coordinates":[48910,71826]},{"type":"Point","coordinates":[48910,71826]},{"type":"Point","coordinates":[48298,71813]},{"type":"Point","coordinates":[48298,71813]},{"type":"Point","coordinates":[48899,71826]},{"type":"Point","coordinates":[48296,71813]},{"type":"Point","coordinates":[48892,71826]},{"type":"Point","coordinates":[83000,67612]},{"type":"Point","coordinates":[48931,71830]},{"type":"Point","coordinates":[48903,71830]},{"type":"Point","coordinates":[48907,71831]},{"type":"Point","coordinates":[48932,71832]},{"type":"Point","coordinates":[48929,71832]},{"type":"Point","coordinates":[48932,71832]},{"type":"Point","coordinates":[48903,71832]},{"type":"Point","coordinates":[48902,71832]},{"type":"Point","coordinates":[48922,71834]},{"type":"Point","coordinates":[48922,71835]},{"type":"Point","coordinates":[48932,71837]},{"type":"Point","coordinates":[48932,71837]},{"type":"Point","coordinates":[48924,71837]},{"type":"Point","coordinates":[48299,71824]},{"type":"Point","coordinates":[48928,71838]},{"type":"Point","coordinates":[48954,71839]},{"type":"Point","coordinates":[48932,71839]},{"type":"Point","coordinates":[49376,71847]},{"type":"Point","coordinates":[48930,71839]},{"type":"Point","coordinates":[48931,71840]},{"type":"Point","coordinates":[48930,71840]},{"type":"Point","coordinates":[48931,71840]},{"type":"Point","coordinates":[48730,71837]},{"type":"Point","coordinates":[48930,71840]},{"type":"Point","coordinates":[48900,71842]},{"type":"Point","coordinates":[48734,71839]},{"type":"Point","coordinates":[48899,71842]},{"type":"Point","coordinates":[48902,71843]},{"type":"Point","coordinates":[49169,71848]},{"type":"Point","coordinates":[48294,71831]},{"type":"Point","coordinates":[48950,71844]},{"type":"Point","coordinates":[48905,71844]},{"type":"Point","coordinates":[48729,71841]},{"type":"Point","coordinates":[48946,71846]},{"type":"Point","coordinates":[49620,71858]},{"type":"Point","coordinates":[9350,64529]},{"type":"Point","coordinates":[68680,70593]},{"type":"Point","coordinates":[48899,71852]},{"type":"Point","coordinates":[8909,64376]},{"type":"Point","coordinates":[48866,71853]},{"type":"Point","coordinates":[48867,71853]},{"type":"Point","coordinates":[48870,71853]},{"type":"Point","coordinates":[48882,71854]},{"type":"Point","coordinates":[48894,71854]},{"type":"Point","coordinates":[49180,71859]},{"type":"Point","coordinates":[48899,71856]},{"type":"Point","coordinates":[49973,71871]},{"type":"Point","coordinates":[9131,64460]},{"type":"Point","coordinates":[48959,71859]},{"type":"Point","coordinates":[83516,67504]},{"type":"Point","coordinates":[48897,71859]},{"type":"Point","coordinates":[8552,64255]},{"type":"Point","coordinates":[48900,71860]},{"type":"Point","coordinates":[49732,71873]},{"type":"Point","coordinates":[48355,71850]},{"type":"Point","coordinates":[48874,71861]},{"type":"Point","coordinates":[48887,71862]},{"type":"Point","coordinates":[48878,71861]},{"type":"Point","coordinates":[48890,71862]},{"type":"Point","coordinates":[48877,71862]},{"type":"Point","coordinates":[48962,71864]},{"type":"Point","coordinates":[49742,71879]},{"type":"Point","coordinates":[48878,71868]},{"type":"Point","coordinates":[48878,71869]},{"type":"Point","coordinates":[48878,71870]},{"type":"Point","coordinates":[49087,71874]},{"type":"Point","coordinates":[48878,71871]},{"type":"Point","coordinates":[48878,71871]},{"type":"Point","coordinates":[48135,71859]},{"type":"Point","coordinates":[48134,71859]},{"type":"Point","coordinates":[48135,71860]},{"type":"Point","coordinates":[48878,71877]},{"type":"Point","coordinates":[8564,64282]},{"type":"Point","coordinates":[48364,71873]},{"type":"Point","coordinates":[8847,64386]},{"type":"Point","coordinates":[71640,70163]},{"type":"Point","coordinates":[83546,67530]},{"type":"Point","coordinates":[48377,71881]},{"type":"Point","coordinates":[8627,64314]},{"type":"Point","coordinates":[48377,71881]},{"type":"Point","coordinates":[48377,71881]},{"type":"Point","coordinates":[48377,71882]},{"type":"Point","coordinates":[48912,71895]},{"type":"Point","coordinates":[8616,64316]},{"type":"Point","coordinates":[8851,64402]},{"type":"Point","coordinates":[48375,71888]},{"type":"Point","coordinates":[48377,71890]},{"type":"Point","coordinates":[49456,71912]},{"type":"Point","coordinates":[48617,71899]},{"type":"Point","coordinates":[47391,71874]},{"type":"Point","coordinates":[8833,64410]},{"type":"Point","coordinates":[50793,71935]},{"type":"Point","coordinates":[48750,71913]},{"type":"Point","coordinates":[9309,64587]},{"type":"Point","coordinates":[9069,64502]},{"type":"Point","coordinates":[48815,71920]},{"type":"Point","coordinates":[49486,71933]},{"type":"Point","coordinates":[48179,71913]},{"type":"Point","coordinates":[48174,71917]},{"type":"Point","coordinates":[48358,71927]},{"type":"Point","coordinates":[48283,71925]},{"type":"Point","coordinates":[71629,70219]},{"type":"Point","coordinates":[48583,71935]},{"type":"Point","coordinates":[48567,71936]},{"type":"Point","coordinates":[8499,64322]},{"type":"Point","coordinates":[49476,71956]},{"type":"Point","coordinates":[8809,64441]},{"type":"Point","coordinates":[48850,71952]},{"type":"Point","coordinates":[49729,71966]},{"type":"Point","coordinates":[48854,71952]},{"type":"Point","coordinates":[8596,64368]},{"type":"Point","coordinates":[49920,71974]},{"type":"Point","coordinates":[48853,71960]},{"type":"Point","coordinates":[48853,71960]},{"type":"Point","coordinates":[48862,71963]},{"type":"Point","coordinates":[48851,71964]},{"type":"Point","coordinates":[48853,71964]},{"type":"Point","coordinates":[49739,71979]},{"type":"Point","coordinates":[48851,71966]},{"type":"Point","coordinates":[48852,71967]},{"type":"Point","coordinates":[48609,71964]},{"type":"Point","coordinates":[48609,71964]},{"type":"Point","coordinates":[49475,71979]},{"type":"Point","coordinates":[48851,71969]},{"type":"Point","coordinates":[49741,71985]},{"type":"Point","coordinates":[48556,71966]},{"type":"Point","coordinates":[48851,71972]},{"type":"Point","coordinates":[48851,71973]},{"type":"Point","coordinates":[49440,71983]},{"type":"Point","coordinates":[49436,71983]},{"type":"Point","coordinates":[48611,71970]},{"type":"Point","coordinates":[48591,71972]},{"type":"Point","coordinates":[48801,71977]},{"type":"Point","coordinates":[49126,71983]},{"type":"Point","coordinates":[48584,71975]},{"type":"Point","coordinates":[48563,71975]},{"type":"Point","coordinates":[48562,71976]},{"type":"Point","coordinates":[50199,72000]},{"type":"Point","coordinates":[49932,71998]},{"type":"Point","coordinates":[48581,71978]},{"type":"Point","coordinates":[48584,71978]},{"type":"Point","coordinates":[49464,71998]},{"type":"Point","coordinates":[48733,71986]},{"type":"Point","coordinates":[48582,71987]},{"type":"Point","coordinates":[8584,64404]},{"type":"Point","coordinates":[47497,71960]},{"type":"Point","coordinates":[48586,71989]},{"type":"Point","coordinates":[42296,71691]},{"type":"Point","coordinates":[9633,64782]},{"type":"Point","coordinates":[48177,71983]},{"type":"Point","coordinates":[48576,71992]},{"type":"Point","coordinates":[48327,71987]},{"type":"Point","coordinates":[47493,71965]},{"type":"Point","coordinates":[9376,64694]},{"type":"Point","coordinates":[8508,64384]},{"type":"Point","coordinates":[9441,64719]},{"type":"Point","coordinates":[9441,64719]},{"type":"Point","coordinates":[48380,71991]},{"type":"Point","coordinates":[48581,71996]},{"type":"Point","coordinates":[9441,64720]},{"type":"Point","coordinates":[48573,71997]},{"type":"Point","coordinates":[9441,64720]},{"type":"Point","coordinates":[9368,64695]},{"type":"Point","coordinates":[9368,64695]},{"type":"Point","coordinates":[76299,69393]},{"type":"Point","coordinates":[47498,71970]},{"type":"Point","coordinates":[48577,71999]},{"type":"Point","coordinates":[9367,64697]},{"type":"Point","coordinates":[48806,72005]},{"type":"Point","coordinates":[50551,72031]},{"type":"Point","coordinates":[48865,72011]},{"type":"Point","coordinates":[8668,64455]},{"type":"Point","coordinates":[8668,64456]},{"type":"Point","coordinates":[48406,72006]},{"type":"Point","coordinates":[48411,72008]},{"type":"Point","coordinates":[47819,71995]},{"type":"Point","coordinates":[48401,72010]},{"type":"Point","coordinates":[48796,72018]},{"type":"Point","coordinates":[48784,72018]},{"type":"Point","coordinates":[48796,72019]},{"type":"Point","coordinates":[48410,72011]},{"type":"Point","coordinates":[48792,72019]},{"type":"Point","coordinates":[48797,72020]},{"type":"Point","coordinates":[49657,72034]},{"type":"Point","coordinates":[83051,67797]},{"type":"Point","coordinates":[48796,72021]},{"type":"Point","coordinates":[48797,72021]},{"type":"Point","coordinates":[48407,72013]},{"type":"Point","coordinates":[50230,72041]},{"type":"Point","coordinates":[48797,72021]},{"type":"Point","coordinates":[48797,72022]},{"type":"Point","coordinates":[48797,72022]},{"type":"Point","coordinates":[48797,72022]},{"type":"Point","coordinates":[48406,72014]},{"type":"Point","coordinates":[48409,72015]},{"type":"Point","coordinates":[48408,72015]},{"type":"Point","coordinates":[8956,64570]},{"type":"Point","coordinates":[48407,72016]},{"type":"Point","coordinates":[71623,70308]},{"type":"Point","coordinates":[48406,72019]},{"type":"Point","coordinates":[48406,72021]},{"type":"Point","coordinates":[48406,72023]},{"type":"Point","coordinates":[83059,67806]},{"type":"Point","coordinates":[49650,72049]},{"type":"Point","coordinates":[48099,72026]},{"type":"Point","coordinates":[54853,72010]},{"type":"Point","coordinates":[48819,72044]},{"type":"Point","coordinates":[48897,72045]},{"type":"Point","coordinates":[48540,72038]},{"type":"Point","coordinates":[48538,72039]},{"type":"Point","coordinates":[8648,64483]},{"type":"Point","coordinates":[48849,72050]},{"type":"Point","coordinates":[48536,72045]},{"type":"Point","coordinates":[48844,72051]},{"type":"Point","coordinates":[48849,72051]},{"type":"Point","coordinates":[49969,72068]},{"type":"Point","coordinates":[49966,72068]},{"type":"Point","coordinates":[48849,72052]},{"type":"Point","coordinates":[49966,72069]},{"type":"Point","coordinates":[49965,72069]},{"type":"Point","coordinates":[48884,72055]},{"type":"Point","coordinates":[48844,72055]},{"type":"Point","coordinates":[48907,72057]},{"type":"Point","coordinates":[49381,72065]},{"type":"Point","coordinates":[48843,72056]},{"type":"Point","coordinates":[8654,64494]},{"type":"Point","coordinates":[48840,72057]},{"type":"Point","coordinates":[8658,64496]},{"type":"Point","coordinates":[35422,71053]},{"type":"Point","coordinates":[8669,64503]},{"type":"Point","coordinates":[48246,72049]},{"type":"Point","coordinates":[48246,72049]},{"type":"Point","coordinates":[49641,72079]},{"type":"Point","coordinates":[48318,72056]},{"type":"Point","coordinates":[48318,72056]},{"type":"Point","coordinates":[50012,72085]},{"type":"Point","coordinates":[48897,72070]},{"type":"Point","coordinates":[48242,72058]},{"type":"Point","coordinates":[48897,72073]},{"type":"Point","coordinates":[48897,72074]},{"type":"Point","coordinates":[48897,72074]},{"type":"Point","coordinates":[48898,72074]},{"type":"Point","coordinates":[48898,72074]},{"type":"Point","coordinates":[48898,72075]},{"type":"Point","coordinates":[48897,72079]},{"type":"Point","coordinates":[48323,72067]},{"type":"Point","coordinates":[68753,70814]},{"type":"Point","coordinates":[48403,72069]},{"type":"Point","coordinates":[8788,64565]},{"type":"Point","coordinates":[48925,72081]},{"type":"Point","coordinates":[48327,72069]},{"type":"Point","coordinates":[9503,64822]},{"type":"Point","coordinates":[48325,72071]},{"type":"Point","coordinates":[8618,64511]},{"type":"Point","coordinates":[49015,72091]},{"type":"Point","coordinates":[49578,72100]},{"type":"Point","coordinates":[8667,64534]},{"type":"Point","coordinates":[48389,72081]},{"type":"Point","coordinates":[49279,72102]},{"type":"Point","coordinates":[83284,67809]},{"type":"Point","coordinates":[8457,64477]},{"type":"Point","coordinates":[8462,64483]},{"type":"Point","coordinates":[8637,64554]},{"type":"Point","coordinates":[8637,64554]},{"type":"Point","coordinates":[41965,71793]},{"type":"Point","coordinates":[9430,64840]},{"type":"Point","coordinates":[9425,64839]},{"type":"Point","coordinates":[9424,64839]},{"type":"Point","coordinates":[48531,72118]},{"type":"Point","coordinates":[48530,72119]},{"type":"Point","coordinates":[48530,72120]},{"type":"Point","coordinates":[48782,72127]},{"type":"Point","coordinates":[48530,72125]},{"type":"Point","coordinates":[48383,72125]},{"type":"Point","coordinates":[49798,72156]},{"type":"Point","coordinates":[48783,72140]},{"type":"Point","coordinates":[41946,71815]},{"type":"Point","coordinates":[48338,72135]},{"type":"Point","coordinates":[48365,72140]},{"type":"Point","coordinates":[8373,64494]},{"type":"Point","coordinates":[49392,72168]},{"type":"Point","coordinates":[49725,72172]},{"type":"Point","coordinates":[49731,72176]},{"type":"Point","coordinates":[49397,72172]},{"type":"Point","coordinates":[49730,72181]},{"type":"Point","coordinates":[49730,72181]},{"type":"Point","coordinates":[8645,64607]},{"type":"Point","coordinates":[48343,72160]},{"type":"Point","coordinates":[49727,72187]},{"type":"Point","coordinates":[71580,70464]},{"type":"Point","coordinates":[83214,67910]},{"type":"Point","coordinates":[48802,72176]},{"type":"Point","coordinates":[48357,72168]},{"type":"Point","coordinates":[9306,64853]},{"type":"Point","coordinates":[49839,72198]},{"type":"Point","coordinates":[71689,70459]},{"type":"Point","coordinates":[48215,72182]},{"type":"Point","coordinates":[49496,72207]},{"type":"Point","coordinates":[8865,64717]},{"type":"Point","coordinates":[48224,72190]},{"type":"Point","coordinates":[8926,64743]},{"type":"Point","coordinates":[55728,72143]},{"type":"Point","coordinates":[48216,72194]},{"type":"Point","coordinates":[47906,72187]},{"type":"Point","coordinates":[54893,72175]},{"type":"Point","coordinates":[48357,72205]},{"type":"Point","coordinates":[71591,70503]},{"type":"Point","coordinates":[48744,72213]},{"type":"Point","coordinates":[48208,72202]},{"type":"Point","coordinates":[41975,71889]},{"type":"Point","coordinates":[48367,72212]},{"type":"Point","coordinates":[48210,72210]},{"type":"Point","coordinates":[48377,72215]},{"type":"Point","coordinates":[48366,72216]},{"type":"Point","coordinates":[48368,72218]},{"type":"Point","coordinates":[48369,72219]},{"type":"Point","coordinates":[9360,64930]},{"type":"Point","coordinates":[48511,72229]},{"type":"Point","coordinates":[48513,72230]},{"type":"Point","coordinates":[9363,64933]},{"type":"Point","coordinates":[48372,72228]},{"type":"Point","coordinates":[48374,72229]},{"type":"Point","coordinates":[71445,70553]},{"type":"Point","coordinates":[49584,72255]},{"type":"Point","coordinates":[48523,72238]},{"type":"Point","coordinates":[48514,72238]},{"type":"Point","coordinates":[48514,72239]},{"type":"Point","coordinates":[48374,72240]},{"type":"Point","coordinates":[54964,72215]},{"type":"Point","coordinates":[48184,72239]},{"type":"Point","coordinates":[48517,72247]},{"type":"Point","coordinates":[58812,72036]},{"type":"Point","coordinates":[48385,72249]},{"type":"Point","coordinates":[48515,72252]},{"type":"Point","coordinates":[49534,72270]},{"type":"Point","coordinates":[48503,72254]},{"type":"Point","coordinates":[48837,72262]},{"type":"Point","coordinates":[58814,72042]},{"type":"Point","coordinates":[9287,64932]},{"type":"Point","coordinates":[9287,64932]},{"type":"Point","coordinates":[48169,72249]},{"type":"Point","coordinates":[48173,72251]},{"type":"Point","coordinates":[9336,64953]},{"type":"Point","coordinates":[48518,72260]},{"type":"Point","coordinates":[48180,72252]},{"type":"Point","coordinates":[48171,72252]},{"type":"Point","coordinates":[48171,72252]},{"type":"Point","coordinates":[48171,72253]},{"type":"Point","coordinates":[48171,72253]},{"type":"Point","coordinates":[48168,72253]},{"type":"Point","coordinates":[48166,72253]},{"type":"Point","coordinates":[67129,71236]},{"type":"Point","coordinates":[67132,71236]},{"type":"Point","coordinates":[67132,71238]},{"type":"Point","coordinates":[48253,72263]},{"type":"Point","coordinates":[49266,72284]},{"type":"Point","coordinates":[8457,64653]},{"type":"Point","coordinates":[8460,64654]},{"type":"Point","coordinates":[8886,64808]},{"type":"Point","coordinates":[48529,72275]},{"type":"Point","coordinates":[48150,72269]},{"type":"Point","coordinates":[48683,72282]},{"type":"Point","coordinates":[8453,64656]},{"type":"Point","coordinates":[48683,72282]},{"type":"Point","coordinates":[49267,72294]},{"type":"Point","coordinates":[8455,64660]},{"type":"Point","coordinates":[8455,64660]},{"type":"Point","coordinates":[8456,64660]},{"type":"Point","coordinates":[48791,72288]},{"type":"Point","coordinates":[8455,64661]},{"type":"Point","coordinates":[8455,64660]},{"type":"Point","coordinates":[8455,64661]},{"type":"Point","coordinates":[8456,64661]},{"type":"Point","coordinates":[8456,64661]},{"type":"Point","coordinates":[8455,64661]},{"type":"Point","coordinates":[8455,64662]},{"type":"Point","coordinates":[48789,72291]},{"type":"Point","coordinates":[8455,64663]},{"type":"Point","coordinates":[8455,64664]},{"type":"Point","coordinates":[8454,64664]},{"type":"Point","coordinates":[8454,64665]},{"type":"Point","coordinates":[8454,64665]},{"type":"Point","coordinates":[8454,64665]},{"type":"Point","coordinates":[48448,72286]},{"type":"Point","coordinates":[48256,72282]},{"type":"Point","coordinates":[48256,72284]},{"type":"Point","coordinates":[48258,72285]},{"type":"Point","coordinates":[48255,72285]},{"type":"Point","coordinates":[48257,72286]},{"type":"Point","coordinates":[49308,72307]},{"type":"Point","coordinates":[48850,72300]},{"type":"Point","coordinates":[48199,72287]},{"type":"Point","coordinates":[48261,72290]},{"type":"Point","coordinates":[48256,72291]},{"type":"Point","coordinates":[48765,72305]},{"type":"Point","coordinates":[48758,72307]},{"type":"Point","coordinates":[54900,72273]},{"type":"Point","coordinates":[48970,72316]},{"type":"Point","coordinates":[48685,72312]},{"type":"Point","coordinates":[48685,72313]},{"type":"Point","coordinates":[48683,72313]},{"type":"Point","coordinates":[66945,71307]},{"type":"Point","coordinates":[49289,72327]},{"type":"Point","coordinates":[48224,72306]},{"type":"Point","coordinates":[54911,72284]},{"type":"Point","coordinates":[48687,72318]},{"type":"Point","coordinates":[72439,70461]},{"type":"Point","coordinates":[48224,72308]},{"type":"Point","coordinates":[48224,72308]},{"type":"Point","coordinates":[48683,72320]},{"type":"Point","coordinates":[48229,72310]},{"type":"Point","coordinates":[48234,72312]},{"type":"Point","coordinates":[54907,72290]},{"type":"Point","coordinates":[48229,72313]},{"type":"Point","coordinates":[48680,72324]},{"type":"Point","coordinates":[48686,72324]},{"type":"Point","coordinates":[48202,72314]},{"type":"Point","coordinates":[49303,72336]},{"type":"Point","coordinates":[8882,64856]},{"type":"Point","coordinates":[49860,72345]},{"type":"Point","coordinates":[48683,72328]},{"type":"Point","coordinates":[72432,70474]},{"type":"Point","coordinates":[48681,72329]},{"type":"Point","coordinates":[48681,72330]},{"type":"Point","coordinates":[48681,72330]},{"type":"Point","coordinates":[48680,72330]},{"type":"Point","coordinates":[48165,72319]},{"type":"Point","coordinates":[48680,72331]},{"type":"Point","coordinates":[50167,72355]},{"type":"Point","coordinates":[71464,70646]},{"type":"Point","coordinates":[9243,64995]},{"type":"Point","coordinates":[48154,72327]},{"type":"Point","coordinates":[9433,65070]},{"type":"Point","coordinates":[66844,71348]},{"type":"Point","coordinates":[9499,65111]},{"type":"Point","coordinates":[9500,65112]},{"type":"Point","coordinates":[48973,72367]},{"type":"Point","coordinates":[48606,72360]},{"type":"Point","coordinates":[48273,72355]},{"type":"Point","coordinates":[9501,65119]},{"type":"Point","coordinates":[9340,65064]},{"type":"Point","coordinates":[9340,65064]},{"type":"Point","coordinates":[8742,64851]},{"type":"Point","coordinates":[9344,65066]},{"type":"Point","coordinates":[49226,72381]},{"type":"Point","coordinates":[9348,65069]},{"type":"Point","coordinates":[49308,72383]},{"type":"Point","coordinates":[48403,72366]},{"type":"Point","coordinates":[48952,72379]},{"type":"Point","coordinates":[49319,72392]},{"type":"Point","coordinates":[8644,64827]},{"type":"Point","coordinates":[72655,70497]},{"type":"Point","coordinates":[48229,72382]},{"type":"Point","coordinates":[9579,65180]},{"type":"Point","coordinates":[9177,65043]},{"type":"Point","coordinates":[48675,72407]},{"type":"Point","coordinates":[49204,72417]},{"type":"Point","coordinates":[8205,64696]},{"type":"Point","coordinates":[9241,65071]},{"type":"Point","coordinates":[49205,72422]},{"type":"Point","coordinates":[9205,65067]},{"type":"Point","coordinates":[48987,72430]},{"type":"Point","coordinates":[48987,72430]},{"type":"Point","coordinates":[48796,72431]},{"type":"Point","coordinates":[9618,65223]},{"type":"Point","coordinates":[9128,65052]},{"type":"Point","coordinates":[49087,72440]},{"type":"Point","coordinates":[49197,72443]},{"type":"Point","coordinates":[8189,64715]},{"type":"Point","coordinates":[9212,65086]},{"type":"Point","coordinates":[8761,64925]},{"type":"Point","coordinates":[9212,65087]},{"type":"Point","coordinates":[9212,65087]},{"type":"Point","coordinates":[9213,65088]},{"type":"Point","coordinates":[9213,65089]},{"type":"Point","coordinates":[9212,65092]},{"type":"Point","coordinates":[9212,65092]},{"type":"Point","coordinates":[9211,65092]},{"type":"Point","coordinates":[48233,72434]},{"type":"Point","coordinates":[49053,72451]},{"type":"Point","coordinates":[52250,72465]},{"type":"Point","coordinates":[48169,72433]},{"type":"Point","coordinates":[48070,72432]},{"type":"Point","coordinates":[82082,68488]},{"type":"Point","coordinates":[9138,65073]},{"type":"Point","coordinates":[9206,65102]},{"type":"Point","coordinates":[68754,71194]},{"type":"Point","coordinates":[52251,72474]},{"type":"Point","coordinates":[9206,65102]},{"type":"Point","coordinates":[9210,65108]},{"type":"Point","coordinates":[52253,72480]},{"type":"Point","coordinates":[48147,72458]},{"type":"Point","coordinates":[48143,72460]},{"type":"Point","coordinates":[49161,72483]},{"type":"Point","coordinates":[49169,72484]},{"type":"Point","coordinates":[9213,65127]},{"type":"Point","coordinates":[9216,65133]},{"type":"Point","coordinates":[9155,65112]},{"type":"Point","coordinates":[9216,65136]},{"type":"Point","coordinates":[9215,65140]},{"type":"Point","coordinates":[9215,65141]},{"type":"Point","coordinates":[9215,65141]},{"type":"Point","coordinates":[48265,72482]},{"type":"Point","coordinates":[48913,72496]},{"type":"Point","coordinates":[48054,72478]},{"type":"Point","coordinates":[49180,72502]},{"type":"Point","coordinates":[9212,65146]},{"type":"Point","coordinates":[9212,65146]},{"type":"Point","coordinates":[9213,65147]},{"type":"Point","coordinates":[9212,65147]},{"type":"Point","coordinates":[9212,65147]},{"type":"Point","coordinates":[9214,65150]},{"type":"Point","coordinates":[9214,65151]},{"type":"Point","coordinates":[49483,72517]},{"type":"Point","coordinates":[9213,65156]},{"type":"Point","coordinates":[9213,65157]},{"type":"Point","coordinates":[48075,72496]},{"type":"Point","coordinates":[49181,72519]},{"type":"Point","coordinates":[49190,72522]},{"type":"Point","coordinates":[49189,72523]},{"type":"Point","coordinates":[49137,72523]},{"type":"Point","coordinates":[49190,72527]},{"type":"Point","coordinates":[49189,72527]},{"type":"Point","coordinates":[49189,72527]},{"type":"Point","coordinates":[8772,65013]},{"type":"Point","coordinates":[72464,70661]},{"type":"Point","coordinates":[49134,72530]},{"type":"Point","coordinates":[49153,72533]},{"type":"Point","coordinates":[9298,65209]},{"type":"Point","coordinates":[72826,70602]},{"type":"Point","coordinates":[9213,65181]},{"type":"Point","coordinates":[72458,70671]},{"type":"Point","coordinates":[9211,65182]},{"type":"Point","coordinates":[9211,65184]},{"type":"Point","coordinates":[72460,70675]},{"type":"Point","coordinates":[9296,65225]},{"type":"Point","coordinates":[9296,65226]},{"type":"Point","coordinates":[9296,65226]},{"type":"Point","coordinates":[9295,65226]},{"type":"Point","coordinates":[9292,65226]},{"type":"Point","coordinates":[48225,72537]},{"type":"Point","coordinates":[49136,72556]},{"type":"Point","coordinates":[9291,65230]},{"type":"Point","coordinates":[78609,69441]},{"type":"Point","coordinates":[49293,72562]},{"type":"Point","coordinates":[9286,65232]},{"type":"Point","coordinates":[9126,65175]},{"type":"Point","coordinates":[66991,71541]},{"type":"Point","coordinates":[66986,71543]},{"type":"Point","coordinates":[9282,65236]},{"type":"Point","coordinates":[9278,65236]},{"type":"Point","coordinates":[9264,65232]},{"type":"Point","coordinates":[9277,65237]},{"type":"Point","coordinates":[9276,65237]},{"type":"Point","coordinates":[9268,65236]},{"type":"Point","coordinates":[9275,65239]},{"type":"Point","coordinates":[48105,72550]},{"type":"Point","coordinates":[9207,65216]},{"type":"Point","coordinates":[9207,65217]},{"type":"Point","coordinates":[9207,65218]},{"type":"Point","coordinates":[48162,72561]},{"type":"Point","coordinates":[48852,72577]},{"type":"Point","coordinates":[9200,65234]},{"type":"Point","coordinates":[9200,65234]},{"type":"Point","coordinates":[9200,65234]},{"type":"Point","coordinates":[72457,70728]},{"type":"Point","coordinates":[9199,65237]},{"type":"Point","coordinates":[9198,65236]},{"type":"Point","coordinates":[9198,65238]},{"type":"Point","coordinates":[9198,65238]},{"type":"Point","coordinates":[72455,70732]},{"type":"Point","coordinates":[59154,72351]},{"type":"Point","coordinates":[72455,70733]},{"type":"Point","coordinates":[9185,65235]},{"type":"Point","coordinates":[72458,70734]},{"type":"Point","coordinates":[9195,65241]},{"type":"Point","coordinates":[48919,72608]},{"type":"Point","coordinates":[48930,72611]},{"type":"Point","coordinates":[48934,72616]},{"type":"Point","coordinates":[48934,72617]},{"type":"Point","coordinates":[48934,72617]},{"type":"Point","coordinates":[48934,72617]},{"type":"Point","coordinates":[72433,70759]},{"type":"Point","coordinates":[48930,72618]},{"type":"Point","coordinates":[48934,72618]},{"type":"Point","coordinates":[48928,72618]},{"type":"Point","coordinates":[48935,72619]},{"type":"Point","coordinates":[48924,72618]},{"type":"Point","coordinates":[48924,72618]},{"type":"Point","coordinates":[48924,72619]},{"type":"Point","coordinates":[48930,72619]},{"type":"Point","coordinates":[48921,72619]},{"type":"Point","coordinates":[9150,65248]},{"type":"Point","coordinates":[48923,72620]},{"type":"Point","coordinates":[48934,72621]},{"type":"Point","coordinates":[48927,72621]},{"type":"Point","coordinates":[48927,72621]},{"type":"Point","coordinates":[48934,72621]},{"type":"Point","coordinates":[48927,72621]},{"type":"Point","coordinates":[48935,72621]},{"type":"Point","coordinates":[48930,72621]},{"type":"Point","coordinates":[48922,72621]},{"type":"Point","coordinates":[48927,72621]},{"type":"Point","coordinates":[48928,72622]},{"type":"Point","coordinates":[48925,72622]},{"type":"Point","coordinates":[48925,72622]},{"type":"Point","coordinates":[48924,72622]},{"type":"Point","coordinates":[48925,72622]},{"type":"Point","coordinates":[48922,72622]},{"type":"Point","coordinates":[48932,72623]},{"type":"Point","coordinates":[48923,72623]},{"type":"Point","coordinates":[48923,72623]},{"type":"Point","coordinates":[48931,72623]},{"type":"Point","coordinates":[48931,72623]},{"type":"Point","coordinates":[48931,72623]},{"type":"Point","coordinates":[48930,72623]},{"type":"Point","coordinates":[72336,70782]},{"type":"Point","coordinates":[48923,72624]},{"type":"Point","coordinates":[48922,72627]},{"type":"Point","coordinates":[48922,72628]},{"type":"Point","coordinates":[48920,72628]},{"type":"Point","coordinates":[48923,72631]},{"type":"Point","coordinates":[48922,72631]},{"type":"Point","coordinates":[72473,70767]},{"type":"Point","coordinates":[72326,70797]},{"type":"Point","coordinates":[48924,72636]},{"type":"Point","coordinates":[48924,72636]},{"type":"Point","coordinates":[48923,72642]},{"type":"Point","coordinates":[48435,72635]},{"type":"Point","coordinates":[9167,65295]},{"type":"Point","coordinates":[77581,69785]},{"type":"Point","coordinates":[9114,65284]},{"type":"Point","coordinates":[48881,72668]},{"type":"Point","coordinates":[8630,65113]},{"type":"Point","coordinates":[71530,70972]},{"type":"Point","coordinates":[83122,68441]},{"type":"Point","coordinates":[48851,72690]},{"type":"Point","coordinates":[48862,72694]},{"type":"Point","coordinates":[48862,72694]},{"type":"Point","coordinates":[70560,71162]},{"type":"Point","coordinates":[49585,72714]},{"type":"Point","coordinates":[49585,72721]},{"type":"Point","coordinates":[74652,70471]},{"type":"Point","coordinates":[66932,71743]},{"type":"Point","coordinates":[48609,72762]},{"type":"Point","coordinates":[72486,70901]},{"type":"Point","coordinates":[54541,72745]},{"type":"Point","coordinates":[73676,70689]},{"type":"Point","coordinates":[72483,70909]},{"type":"Point","coordinates":[72480,70914]},{"type":"Point","coordinates":[72469,70916]},{"type":"Point","coordinates":[70447,71261]},{"type":"Point","coordinates":[74399,70569]},{"type":"Point","coordinates":[8651,65250]},{"type":"Point","coordinates":[74179,70620]},{"type":"Point","coordinates":[74179,70621]},{"type":"Point","coordinates":[43623,72593]},{"type":"Point","coordinates":[74184,70629]},{"type":"Point","coordinates":[53738,72809]},{"type":"Point","coordinates":[48389,72822]},{"type":"Point","coordinates":[48391,72824]},{"type":"Point","coordinates":[48393,72832]},{"type":"Point","coordinates":[48393,72832]},{"type":"Point","coordinates":[48469,72834]},{"type":"Point","coordinates":[48403,72839]},{"type":"Point","coordinates":[48400,72840]},{"type":"Point","coordinates":[48476,72842]},{"type":"Point","coordinates":[48473,72844]},{"type":"Point","coordinates":[48524,72846]},{"type":"Point","coordinates":[48473,72846]},{"type":"Point","coordinates":[53728,72849]},{"type":"Point","coordinates":[48519,72848]},{"type":"Point","coordinates":[48472,72849]},{"type":"Point","coordinates":[53728,72853]},{"type":"Point","coordinates":[70470,71341]},{"type":"Point","coordinates":[78606,69759]},{"type":"Point","coordinates":[53674,72864]},{"type":"Point","coordinates":[53676,72868]},{"type":"Point","coordinates":[35654,71898]},{"type":"Point","coordinates":[34905,71819]},{"type":"Point","coordinates":[48438,72888]},{"type":"Point","coordinates":[53678,72898]},{"type":"Point","coordinates":[67820,71779]},{"type":"Point","coordinates":[69434,71563]},{"type":"Point","coordinates":[48460,72922]},{"type":"Point","coordinates":[70552,71395]},{"type":"Point","coordinates":[70555,71399]},{"type":"Point","coordinates":[72245,71136]},{"type":"Point","coordinates":[47664,72951]},{"type":"Point","coordinates":[53690,72979]},{"type":"Point","coordinates":[72324,71154]},{"type":"Point","coordinates":[72315,71204]},{"type":"Point","coordinates":[72302,71210]},{"type":"Point","coordinates":[70488,71524]},{"type":"Point","coordinates":[81223,69324]},{"type":"Point","coordinates":[50449,73089]},{"type":"Point","coordinates":[52578,73091]},{"type":"Point","coordinates":[20863,69288]},{"type":"Point","coordinates":[48476,73097]},{"type":"Point","coordinates":[48354,73105]},{"type":"Point","coordinates":[48352,73105]},{"type":"Point","coordinates":[48354,73105]},{"type":"Point","coordinates":[72206,71315]},{"type":"Point","coordinates":[64422,72437]},{"type":"Point","coordinates":[43609,72931]},{"type":"Point","coordinates":[81356,69387]},{"type":"Point","coordinates":[55880,73101]},{"type":"Point","coordinates":[55875,73103]},{"type":"Point","coordinates":[35741,72218]},{"type":"Point","coordinates":[34351,72038]},{"type":"Point","coordinates":[43590,72976]},{"type":"Point","coordinates":[36661,72352]},{"type":"Point","coordinates":[43494,72982]},{"type":"Point","coordinates":[47773,73191]},{"type":"Point","coordinates":[63021,72663]},{"type":"Point","coordinates":[81421,69441]},{"type":"Point","coordinates":[36683,72385]},{"type":"Point","coordinates":[80821,69596]},{"type":"Point","coordinates":[43485,73011]},{"type":"Point","coordinates":[49191,73250]},{"type":"Point","coordinates":[35086,72200]},{"type":"Point","coordinates":[79958,69841]},{"type":"Point","coordinates":[21016,69517]},{"type":"Point","coordinates":[70964,71676]},{"type":"Point","coordinates":[53784,73276]},{"type":"Point","coordinates":[81512,69477]},{"type":"Point","coordinates":[48579,73286]},{"type":"Point","coordinates":[48579,73286]},{"type":"Point","coordinates":[48578,73286]},{"type":"Point","coordinates":[66327,72375]},{"type":"Point","coordinates":[38092,72630]},{"type":"Point","coordinates":[21114,69595]},{"type":"Point","coordinates":[42489,73036]},{"type":"Point","coordinates":[79964,69911]},{"type":"Point","coordinates":[79963,69912]},{"type":"Point","coordinates":[48458,73329]},{"type":"Point","coordinates":[20835,69554]},{"type":"Point","coordinates":[49393,73375]},{"type":"Point","coordinates":[20504,69494]},{"type":"Point","coordinates":[49425,73386]},{"type":"Point","coordinates":[64274,72701]},{"type":"Point","coordinates":[49422,73418]},{"type":"Point","coordinates":[39568,72876]},{"type":"Point","coordinates":[41333,73034]},{"type":"Point","coordinates":[38761,72804]},{"type":"Point","coordinates":[37375,72659]},{"type":"Point","coordinates":[70993,71817]},{"type":"Point","coordinates":[43573,73211]},{"type":"Point","coordinates":[43574,73211]},{"type":"Point","coordinates":[64247,72750]},{"type":"Point","coordinates":[53485,73440]},{"type":"Point","coordinates":[79143,70246]},{"type":"Point","coordinates":[71118,71854]},{"type":"Point","coordinates":[73913,71362]},{"type":"Point","coordinates":[20904,69719]},{"type":"Point","coordinates":[51426,73539]},{"type":"Point","coordinates":[73631,71452]},{"type":"Point","coordinates":[60615,73190]},{"type":"Point","coordinates":[20577,69711]},{"type":"Point","coordinates":[47754,73553]},{"type":"Point","coordinates":[47754,73555]},{"type":"Point","coordinates":[62754,73052]},{"type":"Point","coordinates":[21366,69925]},{"type":"Point","coordinates":[21369,69926]},{"type":"Point","coordinates":[70822,72011]},{"type":"Point","coordinates":[71061,71975]},{"type":"Point","coordinates":[21370,69931]},{"type":"Point","coordinates":[21368,69930]},{"type":"Point","coordinates":[21347,69930]},{"type":"Point","coordinates":[21171,69893]},{"type":"Point","coordinates":[21391,69953]},{"type":"Point","coordinates":[21035,69866]},{"type":"Point","coordinates":[21398,69958]},{"type":"Point","coordinates":[48209,73601]},{"type":"Point","coordinates":[49825,73630]},{"type":"Point","coordinates":[21163,69906]},{"type":"Point","coordinates":[49827,73633]},{"type":"Point","coordinates":[49828,73637]},{"type":"Point","coordinates":[21347,69969]},{"type":"Point","coordinates":[21345,69970]},{"type":"Point","coordinates":[63051,73076]},{"type":"Point","coordinates":[21333,69971]},{"type":"Point","coordinates":[48531,73637]},{"type":"Point","coordinates":[74029,71508]},{"type":"Point","coordinates":[21122,69929]},{"type":"Point","coordinates":[21125,69930]},{"type":"Point","coordinates":[21122,69929]},{"type":"Point","coordinates":[49886,73670]},{"type":"Point","coordinates":[21124,69938]},{"type":"Point","coordinates":[74033,71516]},{"type":"Point","coordinates":[21322,70003]},{"type":"Point","coordinates":[52273,73695]},{"type":"Point","coordinates":[21121,69956]},{"type":"Point","coordinates":[21121,69956]},{"type":"Point","coordinates":[21119,69956]},{"type":"Point","coordinates":[21119,69957]},{"type":"Point","coordinates":[21118,69958]},{"type":"Point","coordinates":[49059,73688]},{"type":"Point","coordinates":[49094,73693]},{"type":"Point","coordinates":[21118,69972]},{"type":"Point","coordinates":[81637,69897]},{"type":"Point","coordinates":[81637,69897]},{"type":"Point","coordinates":[81636,69899]},{"type":"Point","coordinates":[60726,73389]},{"type":"Point","coordinates":[52595,73765]},{"type":"Point","coordinates":[64081,73085]},{"type":"Point","coordinates":[71291,72109]},{"type":"Point","coordinates":[64665,73053]},{"type":"Point","coordinates":[20918,70068]},{"type":"Point","coordinates":[20918,70071]},{"type":"Point","coordinates":[20930,70079]},{"type":"Point","coordinates":[47977,73830]},{"type":"Point","coordinates":[37365,73121]},{"type":"Point","coordinates":[81959,69974]},{"type":"Point","coordinates":[39978,73399]},{"type":"Point","coordinates":[21413,70263]},{"type":"Point","coordinates":[52603,73934]},{"type":"Point","coordinates":[21398,70270]},{"type":"Point","coordinates":[47453,73889]},{"type":"Point","coordinates":[53712,73926]},{"type":"Point","coordinates":[21374,70286]},{"type":"Point","coordinates":[46862,73888]},{"type":"Point","coordinates":[82083,70003]},{"type":"Point","coordinates":[20372,70050]},{"type":"Point","coordinates":[40456,73512]},{"type":"Point","coordinates":[46665,73906]},{"type":"Point","coordinates":[46662,73911]},{"type":"Point","coordinates":[21289,70300]},{"type":"Point","coordinates":[23719,70882]},{"type":"Point","coordinates":[43242,73753]},{"type":"Point","coordinates":[46667,73934]},{"type":"Point","coordinates":[46667,73934]},{"type":"Point","coordinates":[46668,73936]},{"type":"Point","coordinates":[46667,73936]},{"type":"Point","coordinates":[20722,70179]},{"type":"Point","coordinates":[46550,73945]},{"type":"Point","coordinates":[21402,70367]},{"type":"Point","coordinates":[20802,70225]},{"type":"Point","coordinates":[21419,70382]},{"type":"Point","coordinates":[21422,70388]},{"type":"Point","coordinates":[21390,70384]},{"type":"Point","coordinates":[21390,70384]},{"type":"Point","coordinates":[46675,73975]},{"type":"Point","coordinates":[37691,73310]},{"type":"Point","coordinates":[46683,73977]},{"type":"Point","coordinates":[46615,73977]},{"type":"Point","coordinates":[46637,73982]},{"type":"Point","coordinates":[21338,70394]},{"type":"Point","coordinates":[20847,70272]},{"type":"Point","coordinates":[52466,74074]},{"type":"Point","coordinates":[46682,74005]},{"type":"Point","coordinates":[46680,74005]},{"type":"Point","coordinates":[46681,74006]},{"type":"Point","coordinates":[46677,74009]},{"type":"Point","coordinates":[21323,70405]},{"type":"Point","coordinates":[21324,70407]},{"type":"Point","coordinates":[46665,74014]},{"type":"Point","coordinates":[46665,74015]},{"type":"Point","coordinates":[21334,70419]},{"type":"Point","coordinates":[82136,70129]},{"type":"Point","coordinates":[21338,70425]},{"type":"Point","coordinates":[81407,70319]},{"type":"Point","coordinates":[52772,74102]},{"type":"Point","coordinates":[21256,70418]},{"type":"Point","coordinates":[46630,74040]},{"type":"Point","coordinates":[64887,73363]},{"type":"Point","coordinates":[21284,70452]},{"type":"Point","coordinates":[38784,73566]},{"type":"Point","coordinates":[21294,70507]},{"type":"Point","coordinates":[21256,70499]},{"type":"Point","coordinates":[21300,70515]},{"type":"Point","coordinates":[21255,70504]},{"type":"Point","coordinates":[21257,70507]},{"type":"Point","coordinates":[36025,73285]},{"type":"Point","coordinates":[36025,73285]},{"type":"Point","coordinates":[21268,70560]},{"type":"Point","coordinates":[21237,70581]},{"type":"Point","coordinates":[22026,70786]},{"type":"Point","coordinates":[79772,70945]},{"type":"Point","coordinates":[21463,70688]},{"type":"Point","coordinates":[21320,70696]},{"type":"Point","coordinates":[53586,74383]},{"type":"Point","coordinates":[21534,70796]},{"type":"Point","coordinates":[33004,73104]},{"type":"Point","coordinates":[21730,70963]},{"type":"Point","coordinates":[59184,74288]},{"type":"Point","coordinates":[59197,74305]},{"type":"Point","coordinates":[71227,72918]},{"type":"Point","coordinates":[81477,70841]},{"type":"Point","coordinates":[65992,73743]},{"type":"Point","coordinates":[79486,71363]},{"type":"Point","coordinates":[73483,72629]},{"type":"Point","coordinates":[35574,73694]},{"type":"Point","coordinates":[21368,71062]},{"type":"Point","coordinates":[21761,71171]},{"type":"Point","coordinates":[72629,72872]},{"type":"Point","coordinates":[39717,74238]},{"type":"Point","coordinates":[38767,74153]},{"type":"Point","coordinates":[72630,72886]},{"type":"Point","coordinates":[38764,74159]},{"type":"Point","coordinates":[38765,74159]},{"type":"Point","coordinates":[38764,74163]},{"type":"Point","coordinates":[38762,74165]},{"type":"Point","coordinates":[38763,74166]},{"type":"Point","coordinates":[72666,72915]},{"type":"Point","coordinates":[74743,72528]},{"type":"Point","coordinates":[73417,72863]},{"type":"Point","coordinates":[72643,73008]},{"type":"Point","coordinates":[73415,72884]},{"type":"Point","coordinates":[60874,74597]},{"type":"Point","coordinates":[39086,74438]},{"type":"Point","coordinates":[81572,71220]},{"type":"Point","coordinates":[38645,74417]},{"type":"Point","coordinates":[38645,74417]},{"type":"Point","coordinates":[38654,74419]},{"type":"Point","coordinates":[20717,71302]},{"type":"Point","coordinates":[52691,75135]},{"type":"Point","coordinates":[78897,71978]},{"type":"Point","coordinates":[80780,71595]},{"type":"Point","coordinates":[79068,72023]},{"type":"Point","coordinates":[41644,74868]},{"type":"Point","coordinates":[79071,72031]},{"type":"Point","coordinates":[45891,75145]},{"type":"Point","coordinates":[79080,72064]},{"type":"Point","coordinates":[71477,73602]},{"type":"Point","coordinates":[33106,73986]},{"type":"Point","coordinates":[24270,72390]},{"type":"Point","coordinates":[71535,73667]},{"type":"Point","coordinates":[24252,72407]},{"type":"Point","coordinates":[80517,71880]},{"type":"Point","coordinates":[21180,71734]},{"type":"Point","coordinates":[36772,74611]},{"type":"Point","coordinates":[36771,74611]},{"type":"Point","coordinates":[30313,73732]},{"type":"Point","coordinates":[71647,73869]},{"type":"Point","coordinates":[21772,72102]},{"type":"Point","coordinates":[71645,73957]},{"type":"Point","coordinates":[20985,71952]},{"type":"Point","coordinates":[20984,71953]},{"type":"Point","coordinates":[71710,73974]},{"type":"Point","coordinates":[20995,71959]},{"type":"Point","coordinates":[20969,71955]},{"type":"Point","coordinates":[20511,71844]},{"type":"Point","coordinates":[20511,71844]},{"type":"Point","coordinates":[36849,74900]},{"type":"Point","coordinates":[71858,73986]},{"type":"Point","coordinates":[71862,73986]},{"type":"Point","coordinates":[71862,73986]},{"type":"Point","coordinates":[50464,75767]},{"type":"Point","coordinates":[52457,75769]},{"type":"Point","coordinates":[37039,74963]},{"type":"Point","coordinates":[70412,74264]},{"type":"Point","coordinates":[53878,75787]},{"type":"Point","coordinates":[20829,72028]},{"type":"Point","coordinates":[20841,72059]},{"type":"Point","coordinates":[37195,75052]},{"type":"Point","coordinates":[20840,72065]},{"type":"Point","coordinates":[20842,72066]},{"type":"Point","coordinates":[20842,72066]},{"type":"Point","coordinates":[20842,72066]},{"type":"Point","coordinates":[20842,72066]},{"type":"Point","coordinates":[57139,75711]},{"type":"Point","coordinates":[20843,72072]},{"type":"Point","coordinates":[20846,72074]},{"type":"Point","coordinates":[20845,72074]},{"type":"Point","coordinates":[20846,72077]},{"type":"Point","coordinates":[20841,72076]},{"type":"Point","coordinates":[20843,72093]},{"type":"Point","coordinates":[40128,75422]},{"type":"Point","coordinates":[65254,75140]},{"type":"Point","coordinates":[20621,72151]},{"type":"Point","coordinates":[65168,75195]},{"type":"Point","coordinates":[66117,75152]},{"type":"Point","coordinates":[20644,72273]},{"type":"Point","coordinates":[66371,75160]},{"type":"Point","coordinates":[37194,75315]},{"type":"Point","coordinates":[20652,72282]},{"type":"Point","coordinates":[65131,75330]},{"type":"Point","coordinates":[20409,72237]},{"type":"Point","coordinates":[37009,75323]},{"type":"Point","coordinates":[58399,75931]},{"type":"Point","coordinates":[66129,75228]},{"type":"Point","coordinates":[20622,72353]},{"type":"Point","coordinates":[20619,72353]},{"type":"Point","coordinates":[20612,72359]},{"type":"Point","coordinates":[37033,75391]},{"type":"Point","coordinates":[43852,75990]},{"type":"Point","coordinates":[37091,75434]},{"type":"Point","coordinates":[37159,75463]},{"type":"Point","coordinates":[37138,75466]},{"type":"Point","coordinates":[58452,76085]},{"type":"Point","coordinates":[37149,75502]},{"type":"Point","coordinates":[37173,75527]},{"type":"Point","coordinates":[37170,75535]},{"type":"Point","coordinates":[37173,75538]},{"type":"Point","coordinates":[46542,76259]},{"type":"Point","coordinates":[37174,75549]},{"type":"Point","coordinates":[37174,75549]},{"type":"Point","coordinates":[37163,75549]},{"type":"Point","coordinates":[37171,75555]},{"type":"Point","coordinates":[53943,76331]},{"type":"Point","coordinates":[64822,75599]},{"type":"Point","coordinates":[37172,75564]},{"type":"Point","coordinates":[53937,76334]},{"type":"Point","coordinates":[53941,76338]},{"type":"Point","coordinates":[53940,76338]},{"type":"Point","coordinates":[53941,76338]},{"type":"Point","coordinates":[53940,76338]},{"type":"Point","coordinates":[53940,76338]},{"type":"Point","coordinates":[53941,76339]},{"type":"Point","coordinates":[53941,76339]},{"type":"Point","coordinates":[53938,76339]},{"type":"Point","coordinates":[37177,75581]},{"type":"Point","coordinates":[53938,76356]},{"type":"Point","coordinates":[53938,76357]},{"type":"Point","coordinates":[37178,75602]},{"type":"Point","coordinates":[37178,75605]},{"type":"Point","coordinates":[76527,73763]},{"type":"Point","coordinates":[37176,75606]},{"type":"Point","coordinates":[46676,76324]},{"type":"Point","coordinates":[37177,75606]},{"type":"Point","coordinates":[37176,75607]},{"type":"Point","coordinates":[54897,76399]},{"type":"Point","coordinates":[37096,75651]},{"type":"Point","coordinates":[53920,76443]},{"type":"Point","coordinates":[36844,75637]},{"type":"Point","coordinates":[53933,76460]},{"type":"Point","coordinates":[65309,75708]},{"type":"Point","coordinates":[60182,76225]},{"type":"Point","coordinates":[60626,76203]},{"type":"Point","coordinates":[19429,72428]},{"type":"Point","coordinates":[71540,74885]},{"type":"Point","coordinates":[37156,75800]},{"type":"Point","coordinates":[77350,73840]},{"type":"Point","coordinates":[70583,75115]},{"type":"Point","coordinates":[48883,76646]},{"type":"Point","coordinates":[48804,76694]},{"type":"Point","coordinates":[77028,73996]},{"type":"Point","coordinates":[63801,76093]},{"type":"Point","coordinates":[63799,76097]},{"type":"Point","coordinates":[78279,73763]},{"type":"Point","coordinates":[78303,73783]},{"type":"Point","coordinates":[57125,76662]},{"type":"Point","coordinates":[46368,76728]},{"type":"Point","coordinates":[58478,76621]},{"type":"Point","coordinates":[37661,76097]},{"type":"Point","coordinates":[57202,76706]},{"type":"Point","coordinates":[53701,76837]},{"type":"Point","coordinates":[53720,76850]},{"type":"Point","coordinates":[37483,76116]},{"type":"Point","coordinates":[37483,76118]},{"type":"Point","coordinates":[65114,76110]},{"type":"Point","coordinates":[76735,74230]},{"type":"Point","coordinates":[36998,76101]},{"type":"Point","coordinates":[57297,76787]},{"type":"Point","coordinates":[37425,76171]},{"type":"Point","coordinates":[37425,76172]},{"type":"Point","coordinates":[37424,76172]},{"type":"Point","coordinates":[57341,76804]},{"type":"Point","coordinates":[57336,76804]},{"type":"Point","coordinates":[56977,76842]},{"type":"Point","coordinates":[65846,76126]},{"type":"Point","coordinates":[70239,75519]},{"type":"Point","coordinates":[19930,73014]},{"type":"Point","coordinates":[19930,73014]},{"type":"Point","coordinates":[19930,73014]},{"type":"Point","coordinates":[57384,76867]},{"type":"Point","coordinates":[21799,73552]},{"type":"Point","coordinates":[22611,73747]},{"type":"Point","coordinates":[20181,73155]},{"type":"Point","coordinates":[58177,76917]},{"type":"Point","coordinates":[20022,73154]},{"type":"Point","coordinates":[20002,73179]},{"type":"Point","coordinates":[20000,73199]},{"type":"Point","coordinates":[19998,73199]},{"type":"Point","coordinates":[19997,73200]},{"type":"Point","coordinates":[20068,73222]},{"type":"Point","coordinates":[19997,73208]},{"type":"Point","coordinates":[64822,76486]},{"type":"Point","coordinates":[64523,76526]},{"type":"Point","coordinates":[72461,75467]},{"type":"Point","coordinates":[20173,73401]},{"type":"Point","coordinates":[77493,74506]},{"type":"Point","coordinates":[61641,76901]},{"type":"Point","coordinates":[71865,75601]},{"type":"Point","coordinates":[51538,77361]},{"type":"Point","coordinates":[79450,74114]},{"type":"Point","coordinates":[60600,77047]},{"type":"Point","coordinates":[54711,77384]},{"type":"Point","coordinates":[60576,77083]},{"type":"Point","coordinates":[65168,76644]},{"type":"Point","coordinates":[65169,76665]},{"type":"Point","coordinates":[71989,75708]},{"type":"Point","coordinates":[60592,77125]},{"type":"Point","coordinates":[64066,76809]},{"type":"Point","coordinates":[37643,76758]},{"type":"Point","coordinates":[65510,76689]},{"type":"Point","coordinates":[52266,77543]},{"type":"Point","coordinates":[66776,76557]},{"type":"Point","coordinates":[64999,76773]},{"type":"Point","coordinates":[65011,76814]},{"type":"Point","coordinates":[53428,77603]},{"type":"Point","coordinates":[53425,77609]},{"type":"Point","coordinates":[53368,77622]},{"type":"Point","coordinates":[73136,75671]},{"type":"Point","coordinates":[76075,75160]},{"type":"Point","coordinates":[64674,76966]},{"type":"Point","coordinates":[54677,77670]},{"type":"Point","coordinates":[45743,77638]},{"type":"Point","coordinates":[45747,77639]},{"type":"Point","coordinates":[54280,77729]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54296,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54296,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54296,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77731]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54294,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54294,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54294,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54294,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54294,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54294,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54296,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77732]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54294,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77733]},{"type":"Point","coordinates":[54295,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54295,77734]},{"type":"Point","coordinates":[54295,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54294,77734]},{"type":"Point","coordinates":[54293,77735]},{"type":"Point","coordinates":[54293,77737]},{"type":"Point","coordinates":[54293,77737]},{"type":"Point","coordinates":[54292,77738]},{"type":"Point","coordinates":[54291,77741]},{"type":"Point","coordinates":[54290,77742]},{"type":"Point","coordinates":[54290,77743]},{"type":"Point","coordinates":[54290,77744]},{"type":"Point","coordinates":[54289,77745]},{"type":"Point","coordinates":[54289,77745]},{"type":"Point","coordinates":[54289,77745]},{"type":"Point","coordinates":[54289,77745]},{"type":"Point","coordinates":[54289,77745]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[45768,77668]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[54288,77746]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[54288,77746]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[54289,77746]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54288,77747]},{"type":"Point","coordinates":[54289,77747]},{"type":"Point","coordinates":[54288,77747]},{"type":"Point","coordinates":[54288,77747]},{"type":"Point","coordinates":[54288,77747]},{"type":"Point","coordinates":[54288,77747]},{"type":"Point","coordinates":[54288,77747]},{"type":"Point","coordinates":[54288,77748]},{"type":"Point","coordinates":[58170,77613]},{"type":"Point","coordinates":[55437,77755]},{"type":"Point","coordinates":[74892,75535]},{"type":"Point","coordinates":[74891,75536]},{"type":"Point","coordinates":[49259,77827]},{"type":"Point","coordinates":[49261,77842]},{"type":"Point","coordinates":[75374,75466]},{"type":"Point","coordinates":[64231,77166]},{"type":"Point","coordinates":[55454,77805]},{"type":"Point","coordinates":[79325,74641]},{"type":"Point","coordinates":[56162,77785]},{"type":"Point","coordinates":[58143,77748]},{"type":"Point","coordinates":[73682,75894]},{"type":"Point","coordinates":[72882,76074]},{"type":"Point","coordinates":[62228,77521]},{"type":"Point","coordinates":[74919,75742]},{"type":"Point","coordinates":[74957,75747]},{"type":"Point","coordinates":[76831,75445]},{"type":"Point","coordinates":[76831,75446]},{"type":"Point","coordinates":[75034,75841]},{"type":"Point","coordinates":[70337,76676]},{"type":"Point","coordinates":[70337,76676]},{"type":"Point","coordinates":[80791,74587]},{"type":"Point","coordinates":[70341,76684]},{"type":"Point","coordinates":[70341,76684]},{"type":"Point","coordinates":[70341,76684]},{"type":"Point","coordinates":[58432,77975]},{"type":"Point","coordinates":[48567,78205]},{"type":"Point","coordinates":[70381,76731]},{"type":"Point","coordinates":[67926,77095]},{"type":"Point","coordinates":[66815,77247]},{"type":"Point","coordinates":[70362,76755]},{"type":"Point","coordinates":[79544,74967]},{"type":"Point","coordinates":[55676,78189]},{"type":"Point","coordinates":[58374,78067]},{"type":"Point","coordinates":[55970,78252]},{"type":"Point","coordinates":[71459,76671]},{"type":"Point","coordinates":[55437,78284]},{"type":"Point","coordinates":[55420,78295]},{"type":"Point","coordinates":[47622,78337]},{"type":"Point","coordinates":[71425,76731]},{"type":"Point","coordinates":[71478,76731]},{"type":"Point","coordinates":[70672,76888]},{"type":"Point","coordinates":[55862,78364]},{"type":"Point","coordinates":[70682,76914]},{"type":"Point","coordinates":[65530,77641]},{"type":"Point","coordinates":[65531,77641]},{"type":"Point","coordinates":[79454,75214]},{"type":"Point","coordinates":[65077,77700]},{"type":"Point","coordinates":[50989,78490]},{"type":"Point","coordinates":[54964,78447]},{"type":"Point","coordinates":[54956,78449]},{"type":"Point","coordinates":[65964,77616]},{"type":"Point","coordinates":[56378,78407]},{"type":"Point","coordinates":[54738,78479]},{"type":"Point","coordinates":[54738,78480]},{"type":"Point","coordinates":[54741,78480]},{"type":"Point","coordinates":[54756,78483]},{"type":"Point","coordinates":[54749,78483]},{"type":"Point","coordinates":[54981,78477]},{"type":"Point","coordinates":[81229,74844]},{"type":"Point","coordinates":[54714,78492]},{"type":"Point","coordinates":[54981,78489]},{"type":"Point","coordinates":[54740,78499]},{"type":"Point","coordinates":[54740,78499]},{"type":"Point","coordinates":[54746,78504]},{"type":"Point","coordinates":[55026,78499]},{"type":"Point","coordinates":[54977,78505]},{"type":"Point","coordinates":[54719,78513]},{"type":"Point","coordinates":[54728,78515]},{"type":"Point","coordinates":[54728,78515]},{"type":"Point","coordinates":[55269,78510]},{"type":"Point","coordinates":[54749,78528]},{"type":"Point","coordinates":[65655,77734]},{"type":"Point","coordinates":[54525,78553]},{"type":"Point","coordinates":[56929,78466]},{"type":"Point","coordinates":[54507,78574]},{"type":"Point","coordinates":[54623,78581]},{"type":"Point","coordinates":[54716,78599]},{"type":"Point","coordinates":[54912,78601]},{"type":"Point","coordinates":[54915,78607]},{"type":"Point","coordinates":[68366,77476]},{"type":"Point","coordinates":[58144,78486]},{"type":"Point","coordinates":[65962,77795]},{"type":"Point","coordinates":[57590,78542]},{"type":"Point","coordinates":[73621,76655]},{"type":"Point","coordinates":[57597,78543]},{"type":"Point","coordinates":[57598,78543]},{"type":"Point","coordinates":[68344,77510]},{"type":"Point","coordinates":[68344,77510]},{"type":"Point","coordinates":[68343,77514]},{"type":"Point","coordinates":[68343,77517]},{"type":"Point","coordinates":[68332,77519]},{"type":"Point","coordinates":[68364,77515]},{"type":"Point","coordinates":[70508,77200]},{"type":"Point","coordinates":[68346,77525]},{"type":"Point","coordinates":[68348,77527]},{"type":"Point","coordinates":[47995,78690]},{"type":"Point","coordinates":[47995,78691]},{"type":"Point","coordinates":[68341,77533]},{"type":"Point","coordinates":[68341,77533]},{"type":"Point","coordinates":[47998,78694]},{"type":"Point","coordinates":[70474,77233]},{"type":"Point","coordinates":[49579,78791]},{"type":"Point","coordinates":[68357,77600]},{"type":"Point","coordinates":[58147,78619]},{"type":"Point","coordinates":[57043,78734]},{"type":"Point","coordinates":[54332,78843]},{"type":"Point","coordinates":[57058,78746]},{"type":"Point","coordinates":[54303,78848]},{"type":"Point","coordinates":[57155,78781]},{"type":"Point","coordinates":[70375,77431]},{"type":"Point","coordinates":[55640,78862]},{"type":"Point","coordinates":[57175,78801]},{"type":"Point","coordinates":[80617,75410]},{"type":"Point","coordinates":[57142,78825]},{"type":"Point","coordinates":[52028,78969]},{"type":"Point","coordinates":[55397,78920]},{"type":"Point","coordinates":[70254,77516]},{"type":"Point","coordinates":[65923,78124]},{"type":"Point","coordinates":[57267,78879]},{"type":"Point","coordinates":[52705,79030]},{"type":"Point","coordinates":[55707,78963]},{"type":"Point","coordinates":[52708,79039]},{"type":"Point","coordinates":[55411,78979]},{"type":"Point","coordinates":[64816,78302]},{"type":"Point","coordinates":[80430,75576]},{"type":"Point","coordinates":[55481,78996]},{"type":"Point","coordinates":[65837,78204]},{"type":"Point","coordinates":[64814,78332]},{"type":"Point","coordinates":[76083,76563]},{"type":"Point","coordinates":[66516,78135]},{"type":"Point","coordinates":[81221,75420]},{"type":"Point","coordinates":[70449,77602]},{"type":"Point","coordinates":[55463,79039]},{"type":"Point","coordinates":[76113,76593]},{"type":"Point","coordinates":[81233,75441]},{"type":"Point","coordinates":[55585,79110]},{"type":"Point","coordinates":[60810,78826]},{"type":"Point","coordinates":[70400,77706]},{"type":"Point","coordinates":[76096,76694]},{"type":"Point","coordinates":[65110,78471]},{"type":"Point","coordinates":[55501,79187]},{"type":"Point","coordinates":[65108,78482]},{"type":"Point","coordinates":[54819,79222]},{"type":"Point","coordinates":[55602,79211]},{"type":"Point","coordinates":[37448,78534]},{"type":"Point","coordinates":[60770,78923]},{"type":"Point","coordinates":[63608,78673]},{"type":"Point","coordinates":[81250,75622]},{"type":"Point","coordinates":[68481,78110]},{"type":"Point","coordinates":[70125,77880]},{"type":"Point","coordinates":[70118,77884]},{"type":"Point","coordinates":[65654,78492]},{"type":"Point","coordinates":[70114,77886]},{"type":"Point","coordinates":[65654,78493]},{"type":"Point","coordinates":[55654,79278]},{"type":"Point","coordinates":[65662,78509]},{"type":"Point","coordinates":[65664,78510]},{"type":"Point","coordinates":[81264,75710]},{"type":"Point","coordinates":[69919,77975]},{"type":"Point","coordinates":[81009,75776]},{"type":"Point","coordinates":[46922,79334]},{"type":"Point","coordinates":[62737,78875]},{"type":"Point","coordinates":[70743,77880]},{"type":"Point","coordinates":[81004,75810]},{"type":"Point","coordinates":[48452,79409]},{"type":"Point","coordinates":[48452,79409]},{"type":"Point","coordinates":[48452,79410]},{"type":"Point","coordinates":[81239,75758]},{"type":"Point","coordinates":[55630,79365]},{"type":"Point","coordinates":[64829,78694]},{"type":"Point","coordinates":[79350,76253]},{"type":"Point","coordinates":[49617,79481]},{"type":"Point","coordinates":[69908,78065]},{"type":"Point","coordinates":[48400,79467]},{"type":"Point","coordinates":[69957,78065]},{"type":"Point","coordinates":[55719,79435]},{"type":"Point","coordinates":[66221,78601]},{"type":"Point","coordinates":[79751,76215]},{"type":"Point","coordinates":[65685,78696]},{"type":"Point","coordinates":[62807,79005]},{"type":"Point","coordinates":[49452,79557]},{"type":"Point","coordinates":[49452,79557]},{"type":"Point","coordinates":[66588,78606]},{"type":"Point","coordinates":[58856,79331]},{"type":"Point","coordinates":[62821,79026]},{"type":"Point","coordinates":[44432,79400]},{"type":"Point","coordinates":[52108,79601]},{"type":"Point","coordinates":[69436,78263]},{"type":"Point","coordinates":[72035,77866]},{"type":"Point","coordinates":[70453,78130]},{"type":"Point","coordinates":[51869,79647]},{"type":"Point","coordinates":[81218,75977]},{"type":"Point","coordinates":[51863,79657]},{"type":"Point","coordinates":[70684,78113]},{"type":"Point","coordinates":[70237,78187]},{"type":"Point","coordinates":[74690,77431]},{"type":"Point","coordinates":[73517,77651]},{"type":"Point","coordinates":[52336,79678]},{"type":"Point","coordinates":[70757,78142]},{"type":"Point","coordinates":[70699,78154]},{"type":"Point","coordinates":[74219,77560]},{"type":"Point","coordinates":[65855,78852]},{"type":"Point","coordinates":[74044,77605]},{"type":"Point","coordinates":[52229,79730]},{"type":"Point","coordinates":[65652,78884]},{"type":"Point","coordinates":[80828,76161]},{"type":"Point","coordinates":[73281,77764]},{"type":"Point","coordinates":[76013,77258]},{"type":"Point","coordinates":[66406,78826]},{"type":"Point","coordinates":[67935,78640]},{"type":"Point","coordinates":[74095,77647]},{"type":"Point","coordinates":[67940,78642]},{"type":"Point","coordinates":[67908,78651]},{"type":"Point","coordinates":[72217,78001]},{"type":"Point","coordinates":[79973,76437]},{"type":"Point","coordinates":[79973,76439]},{"type":"Point","coordinates":[79844,76475]},{"type":"Point","coordinates":[79845,76476]},{"type":"Point","coordinates":[79835,76483]},{"type":"Point","coordinates":[70636,78292]},{"type":"Point","coordinates":[70781,78269]},{"type":"Point","coordinates":[70783,78271]},{"type":"Point","coordinates":[70783,78272]},{"type":"Point","coordinates":[79852,76491]},{"type":"Point","coordinates":[75725,77397]},{"type":"Point","coordinates":[71609,78191]},{"type":"Point","coordinates":[48250,79858]},{"type":"Point","coordinates":[70224,78423]},{"type":"Point","coordinates":[68068,78749]},{"type":"Point","coordinates":[48392,79883]},{"type":"Point","coordinates":[47563,79871]},{"type":"Point","coordinates":[47563,79871]},{"type":"Point","coordinates":[47563,79872]},{"type":"Point","coordinates":[47563,79872]},{"type":"Point","coordinates":[47563,79872]},{"type":"Point","coordinates":[79804,76591]},{"type":"Point","coordinates":[70079,78476]},{"type":"Point","coordinates":[70089,78474]},{"type":"Point","coordinates":[75663,77490]},{"type":"Point","coordinates":[73814,77850]},{"type":"Point","coordinates":[62455,79417]},{"type":"Point","coordinates":[72025,78169]},{"type":"Point","coordinates":[70083,78484]},{"type":"Point","coordinates":[70086,78484]},{"type":"Point","coordinates":[70086,78485]},{"type":"Point","coordinates":[70084,78485]},{"type":"Point","coordinates":[49359,79929]},{"type":"Point","coordinates":[72024,78180]},{"type":"Point","coordinates":[48249,79912]},{"type":"Point","coordinates":[72047,78186]},{"type":"Point","coordinates":[48210,79925]},{"type":"Point","coordinates":[62998,79394]},{"type":"Point","coordinates":[67429,78890]},{"type":"Point","coordinates":[72044,78196]},{"type":"Point","coordinates":[67430,78893]},{"type":"Point","coordinates":[48211,79932]},{"type":"Point","coordinates":[48211,79932]},{"type":"Point","coordinates":[70081,78521]},{"type":"Point","coordinates":[54873,79920]},{"type":"Point","coordinates":[51978,79980]},{"type":"Point","coordinates":[51978,79980]},{"type":"Point","coordinates":[70081,78532]},{"type":"Point","coordinates":[64107,79305]},{"type":"Point","coordinates":[71939,78242]},{"type":"Point","coordinates":[48522,79965]},{"type":"Point","coordinates":[71940,78243]},{"type":"Point","coordinates":[66011,79102]},{"type":"Point","coordinates":[47385,79938]},{"type":"Point","coordinates":[71938,78247]},{"type":"Point","coordinates":[75622,77569]},{"type":"Point","coordinates":[47728,79958]},{"type":"Point","coordinates":[47396,79953]},{"type":"Point","coordinates":[70739,78464]},{"type":"Point","coordinates":[47742,79978]},{"type":"Point","coordinates":[70559,78502]},{"type":"Point","coordinates":[47737,79981]},{"type":"Point","coordinates":[47744,79983]},{"type":"Point","coordinates":[47742,79986]},{"type":"Point","coordinates":[47739,79989]},{"type":"Point","coordinates":[71319,78391]},{"type":"Point","coordinates":[65598,79198]},{"type":"Point","coordinates":[74177,77902]},{"type":"Point","coordinates":[66005,79160]},{"type":"Point","coordinates":[65632,79208]},{"type":"Point","coordinates":[74301,77885]},{"type":"Point","coordinates":[65632,79210]},{"type":"Point","coordinates":[50382,80066]},{"type":"Point","coordinates":[62642,79537]},{"type":"Point","coordinates":[70957,78487]},{"type":"Point","coordinates":[50380,80079]},{"type":"Point","coordinates":[70119,78629]},{"type":"Point","coordinates":[71482,78418]},{"type":"Point","coordinates":[65467,79266]},{"type":"Point","coordinates":[70052,78650]},{"type":"Point","coordinates":[65440,79271]},{"type":"Point","coordinates":[68069,78950]},{"type":"Point","coordinates":[65430,79286]},{"type":"Point","coordinates":[65434,79287]},{"type":"Point","coordinates":[47594,80064]},{"type":"Point","coordinates":[69593,78739]},{"type":"Point","coordinates":[65423,79292]},{"type":"Point","coordinates":[50535,80129]},{"type":"Point","coordinates":[75609,77713]},{"type":"Point","coordinates":[70000,78708]},{"type":"Point","coordinates":[47752,80103]},{"type":"Point","coordinates":[65983,79263]},{"type":"Point","coordinates":[65913,79272]},{"type":"Point","coordinates":[49326,80141]},{"type":"Point","coordinates":[53222,80138]},{"type":"Point","coordinates":[53929,80127]},{"type":"Point","coordinates":[47696,80111]},{"type":"Point","coordinates":[56913,80032]},{"type":"Point","coordinates":[47686,80117]},{"type":"Point","coordinates":[71366,78514]},{"type":"Point","coordinates":[70300,78692]},{"type":"Point","coordinates":[47658,80128]},{"type":"Point","coordinates":[47658,80133]},{"type":"Point","coordinates":[47677,80135]},{"type":"Point","coordinates":[74227,78027]},{"type":"Point","coordinates":[70864,78618]},{"type":"Point","coordinates":[63246,79605]},{"type":"Point","coordinates":[67997,79058]},{"type":"Point","coordinates":[65692,79354]},{"type":"Point","coordinates":[74078,78082]},{"type":"Point","coordinates":[75922,77733]},{"type":"Point","coordinates":[48889,80209]},{"type":"Point","coordinates":[48095,80208]},{"type":"Point","coordinates":[68280,79069]},{"type":"Point","coordinates":[56812,80127]},{"type":"Point","coordinates":[55682,80177]},{"type":"Point","coordinates":[65589,79418]},{"type":"Point","coordinates":[72022,78503]},{"type":"Point","coordinates":[56917,80142]},{"type":"Point","coordinates":[50513,80284]},{"type":"Point","coordinates":[53905,80263]},{"type":"Point","coordinates":[72891,78382]},{"type":"Point","coordinates":[50525,80293]},{"type":"Point","coordinates":[52135,80294]},{"type":"Point","coordinates":[69678,78914]},{"type":"Point","coordinates":[74035,78188]},{"type":"Point","coordinates":[54602,80261]},{"type":"Point","coordinates":[54601,80262]},{"type":"Point","coordinates":[75324,77942]},{"type":"Point","coordinates":[74361,78129]},{"type":"Point","coordinates":[54600,80263]},{"type":"Point","coordinates":[54600,80263]},{"type":"Point","coordinates":[54601,80263]},{"type":"Point","coordinates":[54599,80264]},{"type":"Point","coordinates":[54598,80265]},{"type":"Point","coordinates":[54601,80270]},{"type":"Point","coordinates":[71451,78652]},{"type":"Point","coordinates":[54598,80271]},{"type":"Point","coordinates":[54600,80279]},{"type":"Point","coordinates":[54586,80281]},{"type":"Point","coordinates":[69699,78942]},{"type":"Point","coordinates":[71451,78668]},{"type":"Point","coordinates":[50500,80336]},{"type":"Point","coordinates":[50500,80336]},{"type":"Point","coordinates":[65821,79473]},{"type":"Point","coordinates":[65821,79473]},{"type":"Point","coordinates":[69785,78940]},{"type":"Point","coordinates":[74368,78163]},{"type":"Point","coordinates":[54594,80299]},{"type":"Point","coordinates":[65822,79481]},{"type":"Point","coordinates":[65822,79485]},{"type":"Point","coordinates":[65822,79485]},{"type":"Point","coordinates":[65820,79486]},{"type":"Point","coordinates":[65825,79486]},{"type":"Point","coordinates":[65822,79487]},{"type":"Point","coordinates":[50583,80361]},{"type":"Point","coordinates":[71094,78755]},{"type":"Point","coordinates":[71042,78766]},{"type":"Point","coordinates":[74278,78203]},{"type":"Point","coordinates":[49445,80357]},{"type":"Point","coordinates":[49446,80358]},{"type":"Point","coordinates":[49445,80358]},{"type":"Point","coordinates":[70262,78896]},{"type":"Point","coordinates":[74231,78221]},{"type":"Point","coordinates":[65846,79510]},{"type":"Point","coordinates":[75685,77948]},{"type":"Point","coordinates":[74150,78249]},{"type":"Point","coordinates":[50459,80388]},{"type":"Point","coordinates":[74288,78225]},{"type":"Point","coordinates":[73589,78369]},{"type":"Point","coordinates":[50499,80413]},{"type":"Point","coordinates":[74268,78254]},{"type":"Point","coordinates":[54619,80370]},{"type":"Point","coordinates":[54618,80370]},{"type":"Point","coordinates":[54621,80371]},{"type":"Point","coordinates":[74173,78274]},{"type":"Point","coordinates":[54620,80373]},{"type":"Point","coordinates":[71102,78813]},{"type":"Point","coordinates":[52064,80423]},{"type":"Point","coordinates":[54530,80382]},{"type":"Point","coordinates":[54530,80382]},{"type":"Point","coordinates":[54530,80382]},{"type":"Point","coordinates":[54530,80382]},{"type":"Point","coordinates":[54531,80382]},{"type":"Point","coordinates":[54530,80382]},{"type":"Point","coordinates":[54530,80382]},{"type":"Point","coordinates":[54530,80382]},{"type":"Point","coordinates":[74254,78269]},{"type":"Point","coordinates":[54615,80381]},{"type":"Point","coordinates":[54532,80384]},{"type":"Point","coordinates":[54564,80383]},{"type":"Point","coordinates":[54531,80384]},{"type":"Point","coordinates":[54532,80386]},{"type":"Point","coordinates":[74064,78314]},{"type":"Point","coordinates":[70713,78905]},{"type":"Point","coordinates":[74333,78283]},{"type":"Point","coordinates":[74110,78326]},{"type":"Point","coordinates":[74322,78287]},{"type":"Point","coordinates":[74377,78282]},{"type":"Point","coordinates":[50402,80466]},{"type":"Point","coordinates":[57210,80321]},{"type":"Point","coordinates":[75403,78089]},{"type":"Point","coordinates":[61215,80065]},{"type":"Point","coordinates":[66502,79524]},{"type":"Point","coordinates":[66502,79525]},{"type":"Point","coordinates":[61218,80069]},{"type":"Point","coordinates":[57442,80319]},{"type":"Point","coordinates":[66485,79531]},{"type":"Point","coordinates":[74051,78363]},{"type":"Point","coordinates":[74203,78337]},{"type":"Point","coordinates":[71017,78895]},{"type":"Point","coordinates":[67490,79413]},{"type":"Point","coordinates":[66489,79542]},{"type":"Point","coordinates":[66489,79542]},{"type":"Point","coordinates":[66489,79542]},{"type":"Point","coordinates":[66490,79542]},{"type":"Point","coordinates":[74357,78316]},{"type":"Point","coordinates":[54786,80449]},{"type":"Point","coordinates":[74094,78381]},{"type":"Point","coordinates":[69365,79172]},{"type":"Point","coordinates":[61414,80092]},{"type":"Point","coordinates":[71002,78925]},{"type":"Point","coordinates":[74105,78388]},{"type":"Point","coordinates":[47801,80474]},{"type":"Point","coordinates":[65794,79655]},{"type":"Point","coordinates":[47801,80477]},{"type":"Point","coordinates":[51686,80524]},{"type":"Point","coordinates":[47802,80479]},{"type":"Point","coordinates":[47801,80480]},{"type":"Point","coordinates":[74106,78395]},{"type":"Point","coordinates":[74148,78393]},{"type":"Point","coordinates":[69357,79194]},{"type":"Point","coordinates":[74107,78402]},{"type":"Point","coordinates":[70791,78982]},{"type":"Point","coordinates":[63767,79900]},{"type":"Point","coordinates":[57026,80415]},{"type":"Point","coordinates":[74153,78415]},{"type":"Point","coordinates":[54465,80514]},{"type":"Point","coordinates":[50349,80558]},{"type":"Point","coordinates":[54459,80518]},{"type":"Point","coordinates":[54445,80518]},{"type":"Point","coordinates":[54447,80519]},{"type":"Point","coordinates":[54459,80519]},{"type":"Point","coordinates":[74369,78382]},{"type":"Point","coordinates":[47700,80515]},{"type":"Point","coordinates":[54465,80520]},{"type":"Point","coordinates":[54468,80521]},{"type":"Point","coordinates":[54465,80527]},{"type":"Point","coordinates":[54467,80527]},{"type":"Point","coordinates":[68018,79432]},{"type":"Point","coordinates":[74386,78397]},{"type":"Point","coordinates":[70722,79036]},{"type":"Point","coordinates":[65511,79763]},{"type":"Point","coordinates":[74040,78479]},{"type":"Point","coordinates":[75335,78236]},{"type":"Point","coordinates":[74191,78458]},{"type":"Point","coordinates":[75468,78218]},{"type":"Point","coordinates":[72362,78792]},{"type":"Point","coordinates":[47703,80563]},{"type":"Point","coordinates":[61382,80192]},{"type":"Point","coordinates":[74144,78479]},{"type":"Point","coordinates":[63305,80023]},{"type":"Point","coordinates":[75490,78237]},{"type":"Point","coordinates":[71072,79035]},{"type":"Point","coordinates":[47739,80593]},{"type":"Point","coordinates":[51848,80639]},{"type":"Point","coordinates":[75515,78243]},{"type":"Point","coordinates":[75515,78244]},{"type":"Point","coordinates":[75515,78244]},{"type":"Point","coordinates":[75515,78245]},{"type":"Point","coordinates":[75515,78245]},{"type":"Point","coordinates":[75513,78246]},{"type":"Point","coordinates":[75513,78246]},{"type":"Point","coordinates":[75513,78247]},{"type":"Point","coordinates":[75513,78247]},{"type":"Point","coordinates":[75512,78247]},{"type":"Point","coordinates":[75512,78247]},{"type":"Point","coordinates":[75512,78247]},{"type":"Point","coordinates":[75513,78249]},{"type":"Point","coordinates":[75509,78250]},{"type":"Point","coordinates":[75510,78251]},{"type":"Point","coordinates":[75510,78251]},{"type":"Point","coordinates":[75510,78251]},{"type":"Point","coordinates":[75509,78252]},{"type":"Point","coordinates":[75510,78252]},{"type":"Point","coordinates":[75509,78252]},{"type":"Point","coordinates":[75511,78251]},{"type":"Point","coordinates":[66070,79755]},{"type":"Point","coordinates":[47639,80605]},{"type":"Point","coordinates":[70801,79103]},{"type":"Point","coordinates":[54757,80612]},{"type":"Point","coordinates":[74203,78515]},{"type":"Point","coordinates":[74282,78501]},{"type":"Point","coordinates":[74354,78491]},{"type":"Point","coordinates":[74364,78491]},{"type":"Point","coordinates":[63309,80078]},{"type":"Point","coordinates":[74160,78534]},{"type":"Point","coordinates":[74077,78556]},{"type":"Point","coordinates":[74150,78544]},{"type":"Point","coordinates":[47683,80637]},{"type":"Point","coordinates":[74382,78504]},{"type":"Point","coordinates":[47683,80638]},{"type":"Point","coordinates":[66279,79765]},{"type":"Point","coordinates":[47639,80639]},{"type":"Point","coordinates":[63301,80095]},{"type":"Point","coordinates":[47666,80643]},{"type":"Point","coordinates":[47752,80646]},{"type":"Point","coordinates":[63302,80097]},{"type":"Point","coordinates":[69909,79272]},{"type":"Point","coordinates":[47644,80647]},{"type":"Point","coordinates":[47643,80647]},{"type":"Point","coordinates":[74203,78549]},{"type":"Point","coordinates":[63295,80103]},{"type":"Point","coordinates":[45266,80559]},{"type":"Point","coordinates":[63295,80104]},{"type":"Point","coordinates":[56922,80565]},{"type":"Point","coordinates":[47636,80649]},{"type":"Point","coordinates":[70550,79180]},{"type":"Point","coordinates":[63269,80108]},{"type":"Point","coordinates":[70904,79124]},{"type":"Point","coordinates":[63304,80106]},{"type":"Point","coordinates":[63296,80106]},{"type":"Point","coordinates":[63304,80108]},{"type":"Point","coordinates":[63736,80066]},{"type":"Point","coordinates":[63306,80109]},{"type":"Point","coordinates":[74340,78532]},{"type":"Point","coordinates":[63308,80111]},{"type":"Point","coordinates":[47712,80660]},{"type":"Point","coordinates":[63722,80072]},{"type":"Point","coordinates":[74056,78588]},{"type":"Point","coordinates":[63722,80073]},{"type":"Point","coordinates":[63721,80073]},{"type":"Point","coordinates":[63722,80073]},{"type":"Point","coordinates":[50553,80709]},{"type":"Point","coordinates":[47699,80662]},{"type":"Point","coordinates":[63721,80073]},{"type":"Point","coordinates":[63722,80073]},{"type":"Point","coordinates":[63721,80073]},{"type":"Point","coordinates":[70194,79246]},{"type":"Point","coordinates":[45276,80572]},{"type":"Point","coordinates":[63721,80075]},{"type":"Point","coordinates":[63721,80075]},{"type":"Point","coordinates":[74216,78561]},{"type":"Point","coordinates":[47497,80660]},{"type":"Point","coordinates":[63725,80078]},{"type":"Point","coordinates":[63717,80081]},{"type":"Point","coordinates":[74167,78576]},{"type":"Point","coordinates":[63716,80082]},{"type":"Point","coordinates":[74203,78570]},{"type":"Point","coordinates":[57420,80562]},{"type":"Point","coordinates":[47644,80673]},{"type":"Point","coordinates":[47461,80668]},{"type":"Point","coordinates":[47644,80674]},{"type":"Point","coordinates":[63718,80087]},{"type":"Point","coordinates":[63718,80089]},{"type":"Point","coordinates":[71034,79129]},{"type":"Point","coordinates":[75170,78394]},{"type":"Point","coordinates":[74295,78563]},{"type":"Point","coordinates":[74122,78601]},{"type":"Point","coordinates":[57746,80563]},{"type":"Point","coordinates":[47620,80690]},{"type":"Point","coordinates":[64344,80041]},{"type":"Point","coordinates":[47620,80698]},{"type":"Point","coordinates":[74346,78579]},{"type":"Point","coordinates":[71060,79159]},{"type":"Point","coordinates":[71058,79162]},{"type":"Point","coordinates":[74249,78607]},{"type":"Point","coordinates":[63417,80168]},{"type":"Point","coordinates":[47648,80725]},{"type":"Point","coordinates":[74308,78610]},{"type":"Point","coordinates":[70751,79230]},{"type":"Point","coordinates":[61219,80374]},{"type":"Point","coordinates":[66555,79829]},{"type":"Point","coordinates":[81111,77159]},{"type":"Point","coordinates":[71014,79207]},{"type":"Point","coordinates":[61503,80371]},{"type":"Point","coordinates":[74338,78630]},{"type":"Point","coordinates":[73135,78858]},{"type":"Point","coordinates":[54530,80766]},{"type":"Point","coordinates":[74123,78683]},{"type":"Point","coordinates":[74435,78631]},{"type":"Point","coordinates":[54613,80779]},{"type":"Point","coordinates":[54596,80780]},{"type":"Point","coordinates":[81245,77158]},{"type":"Point","coordinates":[81244,77162]},{"type":"Point","coordinates":[53177,80818]},{"type":"Point","coordinates":[81243,77167]},{"type":"Point","coordinates":[81243,77167]},{"type":"Point","coordinates":[74080,78712]},{"type":"Point","coordinates":[54620,80789]},{"type":"Point","coordinates":[81243,77169]},{"type":"Point","coordinates":[52101,80836]},{"type":"Point","coordinates":[52101,80836]},{"type":"Point","coordinates":[54626,80792]},{"type":"Point","coordinates":[54625,80796]},{"type":"Point","coordinates":[48737,80823]},{"type":"Point","coordinates":[75406,78470]},{"type":"Point","coordinates":[54602,80808]},{"type":"Point","coordinates":[71024,79263]},{"type":"Point","coordinates":[74227,78706]},{"type":"Point","coordinates":[74340,78689]},{"type":"Point","coordinates":[54599,80817]},{"type":"Point","coordinates":[54599,80817]},{"type":"Point","coordinates":[74257,78710]},{"type":"Point","coordinates":[63272,80276]},{"type":"Point","coordinates":[74237,78716]},{"type":"Point","coordinates":[47459,80820]},{"type":"Point","coordinates":[69715,79485]},{"type":"Point","coordinates":[47462,80822]},{"type":"Point","coordinates":[47788,80832]},{"type":"Point","coordinates":[69711,79490]},{"type":"Point","coordinates":[47461,80825]},{"type":"Point","coordinates":[54769,80835]},{"type":"Point","coordinates":[53007,80879]},{"type":"Point","coordinates":[70070,79450]},{"type":"Point","coordinates":[74059,78775]},{"type":"Point","coordinates":[70698,79362]},{"type":"Point","coordinates":[69702,79517]},{"type":"Point","coordinates":[74204,78759]},{"type":"Point","coordinates":[54520,80864]},{"type":"Point","coordinates":[74085,78789]},{"type":"Point","coordinates":[69709,79525]},{"type":"Point","coordinates":[71081,79312]},{"type":"Point","coordinates":[74089,78790]},{"type":"Point","coordinates":[47483,80865]},{"type":"Point","coordinates":[47483,80866]},{"type":"Point","coordinates":[66875,79924]},{"type":"Point","coordinates":[81202,77263]},{"type":"Point","coordinates":[47483,80868]},{"type":"Point","coordinates":[47410,80868]},{"type":"Point","coordinates":[69537,79560]},{"type":"Point","coordinates":[74387,78743]},{"type":"Point","coordinates":[75908,78447]},{"type":"Point","coordinates":[66457,79989]},{"type":"Point","coordinates":[66457,79989]},{"type":"Point","coordinates":[46882,80861]},{"type":"Point","coordinates":[66453,79991]},{"type":"Point","coordinates":[66455,79991]},{"type":"Point","coordinates":[66458,79991]},{"type":"Point","coordinates":[66449,79993]},{"type":"Point","coordinates":[66452,79994]},{"type":"Point","coordinates":[66458,79993]},{"type":"Point","coordinates":[66456,79995]},{"type":"Point","coordinates":[66456,79995]},{"type":"Point","coordinates":[66456,79995]},{"type":"Point","coordinates":[53012,80929]},{"type":"Point","coordinates":[70771,79389]},{"type":"Point","coordinates":[74122,78818]},{"type":"Point","coordinates":[57287,80800]},{"type":"Point","coordinates":[54812,80899]},{"type":"Point","coordinates":[66460,80011]},{"type":"Point","coordinates":[66932,79953]},{"type":"Point","coordinates":[74183,78815]},{"type":"Point","coordinates":[70997,79380]},{"type":"Point","coordinates":[66959,79968]},{"type":"Point","coordinates":[74127,78846]},{"type":"Point","coordinates":[66928,79977]},{"type":"Point","coordinates":[54790,80930]},{"type":"Point","coordinates":[66926,79983]},{"type":"Point","coordinates":[75525,78586]},{"type":"Point","coordinates":[75525,78586]},{"type":"Point","coordinates":[74254,78832]},{"type":"Point","coordinates":[66930,79988]},{"type":"Point","coordinates":[81411,77286]},{"type":"Point","coordinates":[74043,78880]},{"type":"Point","coordinates":[75006,78698]},{"type":"Point","coordinates":[61544,80563]},{"type":"Point","coordinates":[70947,79422]},{"type":"Point","coordinates":[75499,78609]},{"type":"Point","coordinates":[67484,79932]},{"type":"Point","coordinates":[66929,80005]},{"type":"Point","coordinates":[66927,80008]},{"type":"Point","coordinates":[75550,78606]},{"type":"Point","coordinates":[66926,80009]},{"type":"Point","coordinates":[75486,78623]},{"type":"Point","coordinates":[75490,78622]},{"type":"Point","coordinates":[66923,80019]},{"type":"Point","coordinates":[54525,80976]},{"type":"Point","coordinates":[70070,79581]},{"type":"Point","coordinates":[74165,78887]},{"type":"Point","coordinates":[74336,78858]},{"type":"Point","coordinates":[71073,79429]},{"type":"Point","coordinates":[75754,78585]},{"type":"Point","coordinates":[61497,80603]},{"type":"Point","coordinates":[70401,79539]},{"type":"Point","coordinates":[80900,77454]},{"type":"Point","coordinates":[74098,78919]},{"type":"Point","coordinates":[68170,79881]},{"type":"Point","coordinates":[74249,78899]},{"type":"Point","coordinates":[75798,78606]},{"type":"Point","coordinates":[74291,78904]},{"type":"Point","coordinates":[70742,79526]},{"type":"Point","coordinates":[70878,79506]},{"type":"Point","coordinates":[70183,79620]},{"type":"Point","coordinates":[70899,79509]},{"type":"Point","coordinates":[47578,81033]},{"type":"Point","coordinates":[74120,78959]},{"type":"Point","coordinates":[47823,81045]},{"type":"Point","coordinates":[66319,80168]},{"type":"Point","coordinates":[72243,79301]},{"type":"Point","coordinates":[81418,77388]},{"type":"Point","coordinates":[63573,80479]},{"type":"Point","coordinates":[61230,80694]},{"type":"Point","coordinates":[75649,78681]},{"type":"Point","coordinates":[74083,78984]},{"type":"Point","coordinates":[74242,78956]},{"type":"Point","coordinates":[47618,81060]},{"type":"Point","coordinates":[69980,79683]},{"type":"Point","coordinates":[66488,80170]},{"type":"Point","coordinates":[66488,80170]},{"type":"Point","coordinates":[47422,81062]},{"type":"Point","coordinates":[70154,79663]},{"type":"Point","coordinates":[47652,81071]},{"type":"Point","coordinates":[61347,80706]},{"type":"Point","coordinates":[47639,81075]},{"type":"Point","coordinates":[70132,79673]},{"type":"Point","coordinates":[80987,77522]},{"type":"Point","coordinates":[59642,80837]},{"type":"Point","coordinates":[70176,79670]},{"type":"Point","coordinates":[68298,79946]},{"type":"Point","coordinates":[66253,80213]},{"type":"Point","coordinates":[80401,77670]},{"type":"Point","coordinates":[66256,80216]},{"type":"Point","coordinates":[74276,78976]},{"type":"Point","coordinates":[47652,81086]},{"type":"Point","coordinates":[80457,77663]},{"type":"Point","coordinates":[66256,80220]},{"type":"Point","coordinates":[66255,80221]},{"type":"Point","coordinates":[77813,78279]},{"type":"Point","coordinates":[66186,80253]},{"type":"Point","coordinates":[49034,81151]},{"type":"Point","coordinates":[60221,80840]},{"type":"Point","coordinates":[54806,81121]},{"type":"Point","coordinates":[51997,81174]},{"type":"Point","coordinates":[66337,80251]},{"type":"Point","coordinates":[77842,78300]},{"type":"Point","coordinates":[51791,81184]},{"type":"Point","coordinates":[61160,80783]},{"type":"Point","coordinates":[61163,80784]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[49020,81180]},{"type":"Point","coordinates":[53175,81183]},{"type":"Point","coordinates":[49019,81182]},{"type":"Point","coordinates":[66506,80255]},{"type":"Point","coordinates":[62326,80708]},{"type":"Point","coordinates":[50984,81214]},{"type":"Point","coordinates":[66529,80262]},{"type":"Point","coordinates":[47447,81160]},{"type":"Point","coordinates":[66521,80265]},{"type":"Point","coordinates":[66510,80266]},{"type":"Point","coordinates":[75569,78813]},{"type":"Point","coordinates":[69025,79939]},{"type":"Point","coordinates":[71384,79577]},{"type":"Point","coordinates":[66506,80284]},{"type":"Point","coordinates":[71626,79548]},{"type":"Point","coordinates":[71390,79589]},{"type":"Point","coordinates":[71390,79589]},{"type":"Point","coordinates":[69067,79948]},{"type":"Point","coordinates":[66508,80294]},{"type":"Point","coordinates":[54791,81193]},{"type":"Point","coordinates":[71411,79591]},{"type":"Point","coordinates":[71389,79599]},{"type":"Point","coordinates":[71391,79599]},{"type":"Point","coordinates":[71392,79600]},{"type":"Point","coordinates":[71397,79599]},{"type":"Point","coordinates":[61364,80835]},{"type":"Point","coordinates":[69057,79965]},{"type":"Point","coordinates":[69606,79887]},{"type":"Point","coordinates":[47435,81207]},{"type":"Point","coordinates":[77680,78420]},{"type":"Point","coordinates":[71566,79584]},{"type":"Point","coordinates":[47433,81211]},{"type":"Point","coordinates":[69642,79895]},{"type":"Point","coordinates":[69645,79895]},{"type":"Point","coordinates":[69637,79898]},{"type":"Point","coordinates":[54820,81231]},{"type":"Point","coordinates":[81484,77561]},{"type":"Point","coordinates":[54821,81234]},{"type":"Point","coordinates":[54828,81241]},{"type":"Point","coordinates":[51782,81295]},{"type":"Point","coordinates":[71534,79622]},{"type":"Point","coordinates":[71710,79596]},{"type":"Point","coordinates":[54828,81249]},{"type":"Point","coordinates":[47420,81247]},{"type":"Point","coordinates":[81197,77651]},{"type":"Point","coordinates":[54833,81251]},{"type":"Point","coordinates":[47534,81258]},{"type":"Point","coordinates":[63609,80689]},{"type":"Point","coordinates":[75528,78915]},{"type":"Point","coordinates":[75528,78915]},{"type":"Point","coordinates":[75528,78916]},{"type":"Point","coordinates":[75529,78917]},{"type":"Point","coordinates":[75589,78907]},{"type":"Point","coordinates":[54835,81264]},{"type":"Point","coordinates":[54837,81265]},{"type":"Point","coordinates":[69298,79993]},{"type":"Point","coordinates":[69298,79994]},{"type":"Point","coordinates":[47412,81265]},{"type":"Point","coordinates":[47412,81265]},{"type":"Point","coordinates":[47646,81272]},{"type":"Point","coordinates":[54837,81270]},{"type":"Point","coordinates":[54837,81270]},{"type":"Point","coordinates":[75544,78926]},{"type":"Point","coordinates":[52811,81318]},{"type":"Point","coordinates":[48134,81292]},{"type":"Point","coordinates":[54836,81277]},{"type":"Point","coordinates":[51784,81330]},{"type":"Point","coordinates":[61033,80942]},{"type":"Point","coordinates":[81221,77681]},{"type":"Point","coordinates":[62726,80801]},{"type":"Point","coordinates":[81221,77683]},{"type":"Point","coordinates":[47684,81293]},{"type":"Point","coordinates":[61610,80904]},{"type":"Point","coordinates":[75430,78965]},{"type":"Point","coordinates":[61609,80907]},{"type":"Point","coordinates":[48270,81314]},{"type":"Point","coordinates":[71737,79642]},{"type":"Point","coordinates":[54829,81300]},{"type":"Point","coordinates":[54937,81323]},{"type":"Point","coordinates":[75573,78975]},{"type":"Point","coordinates":[68495,80180]},{"type":"Point","coordinates":[75364,79027]},{"type":"Point","coordinates":[52974,81385]},{"type":"Point","coordinates":[52357,81394]},{"type":"Point","coordinates":[75561,79004]},{"type":"Point","coordinates":[71865,79688]},{"type":"Point","coordinates":[71853,79691]},{"type":"Point","coordinates":[53401,81409]},{"type":"Point","coordinates":[56143,81333]},{"type":"Point","coordinates":[72791,79549]},{"type":"Point","coordinates":[71772,79724]},{"type":"Point","coordinates":[69356,80105]},{"type":"Point","coordinates":[59702,81153]},{"type":"Point","coordinates":[71890,79718]},{"type":"Point","coordinates":[75412,79081]},{"type":"Point","coordinates":[75412,79081]},{"type":"Point","coordinates":[54557,81412]},{"type":"Point","coordinates":[47476,81410]},{"type":"Point","coordinates":[71824,79743]},{"type":"Point","coordinates":[46447,81384]},{"type":"Point","coordinates":[47460,81421]},{"type":"Point","coordinates":[75247,79138]},{"type":"Point","coordinates":[75422,79104]},{"type":"Point","coordinates":[75633,79066]},{"type":"Point","coordinates":[47553,81439]},{"type":"Point","coordinates":[45274,81356]},{"type":"Point","coordinates":[47544,81444]},{"type":"Point","coordinates":[48323,81473]},{"type":"Point","coordinates":[47612,81456]},{"type":"Point","coordinates":[49812,81503]},{"type":"Point","coordinates":[71901,79775]},{"type":"Point","coordinates":[71899,79777]},{"type":"Point","coordinates":[71903,79777]},{"type":"Point","coordinates":[57064,81372]},{"type":"Point","coordinates":[47711,81465]},{"type":"Point","coordinates":[71904,79778]},{"type":"Point","coordinates":[71903,79783]},{"type":"Point","coordinates":[71901,79784]},{"type":"Point","coordinates":[47579,81477]},{"type":"Point","coordinates":[51312,81531]},{"type":"Point","coordinates":[71901,79796]},{"type":"Point","coordinates":[71904,79799]},{"type":"Point","coordinates":[80886,77963]},{"type":"Point","coordinates":[80889,77967]},{"type":"Point","coordinates":[47509,81491]},{"type":"Point","coordinates":[47499,81494]},{"type":"Point","coordinates":[47530,81496]},{"type":"Point","coordinates":[80669,78027]},{"type":"Point","coordinates":[47533,81499]},{"type":"Point","coordinates":[47534,81499]},{"type":"Point","coordinates":[52579,81544]},{"type":"Point","coordinates":[52579,81545]},{"type":"Point","coordinates":[47586,81507]},{"type":"Point","coordinates":[68654,80329]},{"type":"Point","coordinates":[47537,81511]},{"type":"Point","coordinates":[47539,81514]},{"type":"Point","coordinates":[47539,81514]},{"type":"Point","coordinates":[47537,81515]},{"type":"Point","coordinates":[47537,81515]},{"type":"Point","coordinates":[47538,81515]},{"type":"Point","coordinates":[47538,81516]},{"type":"Point","coordinates":[47476,81515]},{"type":"Point","coordinates":[81552,77834]},{"type":"Point","coordinates":[47538,81519]},{"type":"Point","coordinates":[47526,81520]},{"type":"Point","coordinates":[47606,81526]},{"type":"Point","coordinates":[47538,81525]},{"type":"Point","coordinates":[75825,79123]},{"type":"Point","coordinates":[47538,81528]},{"type":"Point","coordinates":[47537,81529]},{"type":"Point","coordinates":[47537,81529]},{"type":"Point","coordinates":[47536,81531]},{"type":"Point","coordinates":[75653,79162]},{"type":"Point","coordinates":[47399,81528]},{"type":"Point","coordinates":[63853,80936]},{"type":"Point","coordinates":[47499,81535]},{"type":"Point","coordinates":[63836,80945]},{"type":"Point","coordinates":[47537,81545]},{"type":"Point","coordinates":[51814,81603]},{"type":"Point","coordinates":[79304,78412]},{"type":"Point","coordinates":[74102,79495]},{"type":"Point","coordinates":[47452,81565]},{"type":"Point","coordinates":[68554,80402]},{"type":"Point","coordinates":[72223,79837]},{"type":"Point","coordinates":[47668,81583]},{"type":"Point","coordinates":[81300,77958]},{"type":"Point","coordinates":[74399,79454]},{"type":"Point","coordinates":[68569,80413]},{"type":"Point","coordinates":[68544,80421]},{"type":"Point","coordinates":[47491,81588]},{"type":"Point","coordinates":[47661,81596]},{"type":"Point","coordinates":[51794,81644]},{"type":"Point","coordinates":[48307,81614]},{"type":"Point","coordinates":[47478,81594]},{"type":"Point","coordinates":[51823,81648]},{"type":"Point","coordinates":[68516,80439]},{"type":"Point","coordinates":[47468,81599]},{"type":"Point","coordinates":[68533,80439]},{"type":"Point","coordinates":[68533,80439]},{"type":"Point","coordinates":[81294,77985]},{"type":"Point","coordinates":[47469,81605]},{"type":"Point","coordinates":[47461,81608]},{"type":"Point","coordinates":[47509,81610]},{"type":"Point","coordinates":[47466,81609]},{"type":"Point","coordinates":[81295,77992]},{"type":"Point","coordinates":[81296,77992]},{"type":"Point","coordinates":[47446,81613]},{"type":"Point","coordinates":[47507,81615]},{"type":"Point","coordinates":[47526,81620]},{"type":"Point","coordinates":[81412,77973]},{"type":"Point","coordinates":[47523,81628]},{"type":"Point","coordinates":[47522,81630]},{"type":"Point","coordinates":[47517,81631]},{"type":"Point","coordinates":[47431,81631]},{"type":"Point","coordinates":[47485,81635]},{"type":"Point","coordinates":[81305,78015]},{"type":"Point","coordinates":[67629,80601]},{"type":"Point","coordinates":[67629,80603]},{"type":"Point","coordinates":[67669,80598]},{"type":"Point","coordinates":[51874,81695]},{"type":"Point","coordinates":[47484,81643]},{"type":"Point","coordinates":[51881,81696]},{"type":"Point","coordinates":[48103,81664]},{"type":"Point","coordinates":[67641,80608]},{"type":"Point","coordinates":[51874,81700]},{"type":"Point","coordinates":[54978,81645]},{"type":"Point","coordinates":[67673,80608]},{"type":"Point","coordinates":[48688,81682]},{"type":"Point","coordinates":[67673,80610]},{"type":"Point","coordinates":[67671,80615]},{"type":"Point","coordinates":[47405,81656]},{"type":"Point","coordinates":[47555,81674]},{"type":"Point","coordinates":[47543,81674]},{"type":"Point","coordinates":[47575,81676]},{"type":"Point","coordinates":[80953,78141]},{"type":"Point","coordinates":[47463,81679]},{"type":"Point","coordinates":[79595,78466]},{"type":"Point","coordinates":[47511,81691]},{"type":"Point","coordinates":[47858,81703]},{"type":"Point","coordinates":[51239,81749]},{"type":"Point","coordinates":[47382,81694]},{"type":"Point","coordinates":[47612,81702]},{"type":"Point","coordinates":[47609,81704]},{"type":"Point","coordinates":[45071,81607]},{"type":"Point","coordinates":[47608,81706]},{"type":"Point","coordinates":[46927,81695]},{"type":"Point","coordinates":[52236,81765]},{"type":"Point","coordinates":[47726,81724]},{"type":"Point","coordinates":[47725,81725]},{"type":"Point","coordinates":[47596,81726]},{"type":"Point","coordinates":[47262,81716]},{"type":"Point","coordinates":[47603,81733]},{"type":"Point","coordinates":[48224,81763]},{"type":"Point","coordinates":[80921,78224]},{"type":"Point","coordinates":[80896,78230]},{"type":"Point","coordinates":[50949,81805]},{"type":"Point","coordinates":[45033,81662]},{"type":"Point","coordinates":[80896,78244]},{"type":"Point","coordinates":[52195,81816]},{"type":"Point","coordinates":[47451,81765]},{"type":"Point","coordinates":[52174,81832]},{"type":"Point","coordinates":[79519,78589]},{"type":"Point","coordinates":[52696,81854]},{"type":"Point","coordinates":[52696,81855]},{"type":"Point","coordinates":[48028,81829]},{"type":"Point","coordinates":[47609,81822]},{"type":"Point","coordinates":[52698,81864]},{"type":"Point","coordinates":[48183,81852]},{"type":"Point","coordinates":[51127,81896]},{"type":"Point","coordinates":[80601,78400]},{"type":"Point","coordinates":[80604,78424]},{"type":"Point","coordinates":[73694,79887]},{"type":"Point","coordinates":[73695,79888]},{"type":"Point","coordinates":[73703,79915]},{"type":"Point","coordinates":[47433,81912]},{"type":"Point","coordinates":[47434,81912]},{"type":"Point","coordinates":[52208,81967]},{"type":"Point","coordinates":[47630,81923]},{"type":"Point","coordinates":[80826,78423]},{"type":"Point","coordinates":[54009,81963]},{"type":"Point","coordinates":[52027,81994]},{"type":"Point","coordinates":[47493,81979]},{"type":"Point","coordinates":[52227,82059]},{"type":"Point","coordinates":[47325,82013]},{"type":"Point","coordinates":[55941,82005]},{"type":"Point","coordinates":[52167,82104]},{"type":"Point","coordinates":[51754,82128]},{"type":"Point","coordinates":[80572,78645]},{"type":"Point","coordinates":[54465,82098]},{"type":"Point","coordinates":[80556,78655]},{"type":"Point","coordinates":[52888,82137]},{"type":"Point","coordinates":[48307,82122]},{"type":"Point","coordinates":[80582,78662]},{"type":"Point","coordinates":[80588,78660]},{"type":"Point","coordinates":[81241,78510]},{"type":"Point","coordinates":[80927,78588]},{"type":"Point","coordinates":[81253,78528]},{"type":"Point","coordinates":[74506,79989]},{"type":"Point","coordinates":[75601,79785]},{"type":"Point","coordinates":[80513,78715]},{"type":"Point","coordinates":[81278,78530]},{"type":"Point","coordinates":[81282,78532]},{"type":"Point","coordinates":[81284,78533]},{"type":"Point","coordinates":[81255,78542]},{"type":"Point","coordinates":[81280,78536]},{"type":"Point","coordinates":[80582,78706]},{"type":"Point","coordinates":[81297,78533]},{"type":"Point","coordinates":[81287,78538]},{"type":"Point","coordinates":[81324,78529]},{"type":"Point","coordinates":[81281,78540]},{"type":"Point","coordinates":[81282,78541]},{"type":"Point","coordinates":[80581,78717]},{"type":"Point","coordinates":[48360,82181]},{"type":"Point","coordinates":[81276,78551]},{"type":"Point","coordinates":[80578,78720]},{"type":"Point","coordinates":[80576,78721]},{"type":"Point","coordinates":[80577,78721]},{"type":"Point","coordinates":[81264,78555]},{"type":"Point","coordinates":[48358,82183]},{"type":"Point","coordinates":[81255,78562]},{"type":"Point","coordinates":[81257,78562]},{"type":"Point","coordinates":[81160,78587]},{"type":"Point","coordinates":[80566,78732]},{"type":"Point","coordinates":[80565,78733]},{"type":"Point","coordinates":[80565,78735]},{"type":"Point","coordinates":[51902,82243]},{"type":"Point","coordinates":[80545,78761]},{"type":"Point","coordinates":[48385,82219]},{"type":"Point","coordinates":[48504,82230]},{"type":"Point","coordinates":[52233,82272]},{"type":"Point","coordinates":[55207,82217]},{"type":"Point","coordinates":[48489,82257]},{"type":"Point","coordinates":[78680,79240]},{"type":"Point","coordinates":[52398,82291]},{"type":"Point","coordinates":[79321,79099]},{"type":"Point","coordinates":[52416,82308]},{"type":"Point","coordinates":[55608,82236]},{"type":"Point","coordinates":[52416,82321]},{"type":"Point","coordinates":[52393,82326]},{"type":"Point","coordinates":[48720,82314]},{"type":"Point","coordinates":[46084,82236]},{"type":"Point","coordinates":[55080,82279]},{"type":"Point","coordinates":[80801,78796]},{"type":"Point","coordinates":[75871,79884]},{"type":"Point","coordinates":[78091,79427]},{"type":"Point","coordinates":[74054,80249]},{"type":"Point","coordinates":[81391,78679]},{"type":"Point","coordinates":[52462,82369]},{"type":"Point","coordinates":[81378,78691]},{"type":"Point","coordinates":[52463,82371]},{"type":"Point","coordinates":[52814,82382]},{"type":"Point","coordinates":[74408,80220]},{"type":"Point","coordinates":[80689,78888]},{"type":"Point","coordinates":[52810,82401]},{"type":"Point","coordinates":[51706,82413]},{"type":"Point","coordinates":[80695,78898]},{"type":"Point","coordinates":[80696,78910]},{"type":"Point","coordinates":[74112,80336]},{"type":"Point","coordinates":[80696,78938]},{"type":"Point","coordinates":[74110,80343]},{"type":"Point","coordinates":[48722,82454]},{"type":"Point","coordinates":[52515,82473]},{"type":"Point","coordinates":[74063,80402]},{"type":"Point","coordinates":[74236,80375]},{"type":"Point","coordinates":[73256,80578]},{"type":"Point","coordinates":[74163,80422]},{"type":"Point","coordinates":[52583,82562]},{"type":"Point","coordinates":[52623,82563]},{"type":"Point","coordinates":[47912,82533]},{"type":"Point","coordinates":[52655,82569]},{"type":"Point","coordinates":[52628,82574]},{"type":"Point","coordinates":[52651,82575]},{"type":"Point","coordinates":[52706,82577]},{"type":"Point","coordinates":[52653,82578]},{"type":"Point","coordinates":[52637,82584]},{"type":"Point","coordinates":[52638,82585]},{"type":"Point","coordinates":[52638,82586]},{"type":"Point","coordinates":[52638,82587]},{"type":"Point","coordinates":[78589,79566]},{"type":"Point","coordinates":[52637,82588]},{"type":"Point","coordinates":[48764,82575]},{"type":"Point","coordinates":[54220,82567]},{"type":"Point","coordinates":[48761,82591]},{"type":"Point","coordinates":[75387,80255]},{"type":"Point","coordinates":[75387,80256]},{"type":"Point","coordinates":[81611,78885]},{"type":"Point","coordinates":[48743,82611]},{"type":"Point","coordinates":[52198,82641]},{"type":"Point","coordinates":[52192,82643]},{"type":"Point","coordinates":[75252,80328]},{"type":"Point","coordinates":[75252,80330]},{"type":"Point","coordinates":[48744,82645]},{"type":"Point","coordinates":[52161,82668]},{"type":"Point","coordinates":[75234,80343]},{"type":"Point","coordinates":[75247,80347]},{"type":"Point","coordinates":[81294,79026]},{"type":"Point","coordinates":[46763,82619]},{"type":"Point","coordinates":[77531,79914]},{"type":"Point","coordinates":[51877,82712]},{"type":"Point","coordinates":[51884,82718]},{"type":"Point","coordinates":[51884,82719]},{"type":"Point","coordinates":[51884,82719]},{"type":"Point","coordinates":[51884,82720]},{"type":"Point","coordinates":[52060,82734]},{"type":"Point","coordinates":[52033,82738]},{"type":"Point","coordinates":[80526,79267]},{"type":"Point","coordinates":[52023,82762]},{"type":"Point","coordinates":[52021,82766]},{"type":"Point","coordinates":[52021,82766]},{"type":"Point","coordinates":[48782,82750]},{"type":"Point","coordinates":[52018,82770]},{"type":"Point","coordinates":[52021,82770]},{"type":"Point","coordinates":[52017,82782]},{"type":"Point","coordinates":[52006,82782]},{"type":"Point","coordinates":[80482,79322]},{"type":"Point","coordinates":[52020,82784]},{"type":"Point","coordinates":[81588,79062]},{"type":"Point","coordinates":[52001,82798]},{"type":"Point","coordinates":[52001,82799]},{"type":"Point","coordinates":[63626,82186]},{"type":"Point","coordinates":[51980,82811]},{"type":"Point","coordinates":[51952,82813]},{"type":"Point","coordinates":[63619,82195]},{"type":"Point","coordinates":[51950,82815]},{"type":"Point","coordinates":[51951,82818]},{"type":"Point","coordinates":[52612,82823]},{"type":"Point","coordinates":[63638,82210]},{"type":"Point","coordinates":[52916,82822]},{"type":"Point","coordinates":[51960,82834]},{"type":"Point","coordinates":[51961,82836]},{"type":"Point","coordinates":[52914,82834]},{"type":"Point","coordinates":[48740,82827]},{"type":"Point","coordinates":[51885,82858]},{"type":"Point","coordinates":[51941,82858]},{"type":"Point","coordinates":[50229,82857]},{"type":"Point","coordinates":[78483,79857]},{"type":"Point","coordinates":[51901,82861]},{"type":"Point","coordinates":[63618,82244]},{"type":"Point","coordinates":[51893,82868]},{"type":"Point","coordinates":[81377,79217]},{"type":"Point","coordinates":[51884,82897]},{"type":"Point","coordinates":[51906,82923]},{"type":"Point","coordinates":[52773,82935]},{"type":"Point","coordinates":[51510,82952]},{"type":"Point","coordinates":[52807,82951]},{"type":"Point","coordinates":[44648,82806]},{"type":"Point","coordinates":[80642,79488]},{"type":"Point","coordinates":[52940,82986]},{"type":"Point","coordinates":[79248,79837]},{"type":"Point","coordinates":[79229,79848]},{"type":"Point","coordinates":[52923,83013]},{"type":"Point","coordinates":[52924,83014]},{"type":"Point","coordinates":[47185,82970]},{"type":"Point","coordinates":[78797,79962]},{"type":"Point","coordinates":[63714,82421]},{"type":"Point","coordinates":[75398,80699]},{"type":"Point","coordinates":[52934,83052]},{"type":"Point","coordinates":[52865,83086]},{"type":"Point","coordinates":[74173,80974]},{"type":"Point","coordinates":[81470,79404]},{"type":"Point","coordinates":[48293,83073]},{"type":"Point","coordinates":[79603,79861]},{"type":"Point","coordinates":[74603,80914]},{"type":"Point","coordinates":[47096,83064]},{"type":"Point","coordinates":[47097,83064]},{"type":"Point","coordinates":[47094,83065]},{"type":"Point","coordinates":[52230,83147]},{"type":"Point","coordinates":[81917,79343]},{"type":"Point","coordinates":[52229,83149]},{"type":"Point","coordinates":[47104,83088]},{"type":"Point","coordinates":[47104,83089]},{"type":"Point","coordinates":[52225,83152]},{"type":"Point","coordinates":[52225,83152]},{"type":"Point","coordinates":[45945,83063]},{"type":"Point","coordinates":[52920,83221]},{"type":"Point","coordinates":[80537,79797]},{"type":"Point","coordinates":[48382,83258]},{"type":"Point","coordinates":[51987,83291]},{"type":"Point","coordinates":[80535,79830]},{"type":"Point","coordinates":[80542,79829]},{"type":"Point","coordinates":[80556,79831]},{"type":"Point","coordinates":[74637,81108]},{"type":"Point","coordinates":[52541,83313]},{"type":"Point","coordinates":[52381,83318]},{"type":"Point","coordinates":[52381,83318]},{"type":"Point","coordinates":[80558,79848]},{"type":"Point","coordinates":[52383,83322]},{"type":"Point","coordinates":[52383,83322]},{"type":"Point","coordinates":[52384,83323]},{"type":"Point","coordinates":[52383,83323]},{"type":"Point","coordinates":[80554,79858]},{"type":"Point","coordinates":[80355,79907]},{"type":"Point","coordinates":[80559,79865]},{"type":"Point","coordinates":[80363,79915]},{"type":"Point","coordinates":[80542,79886]},{"type":"Point","coordinates":[51933,83356]},{"type":"Point","coordinates":[51940,83362]},{"type":"Point","coordinates":[51926,83369]},{"type":"Point","coordinates":[51926,83369]},{"type":"Point","coordinates":[50924,83374]},{"type":"Point","coordinates":[50932,83374]},{"type":"Point","coordinates":[50934,83376]},{"type":"Point","coordinates":[53957,83345]},{"type":"Point","coordinates":[81701,79624]},{"type":"Point","coordinates":[54553,83335]},{"type":"Point","coordinates":[51005,83386]},{"type":"Point","coordinates":[51878,83396]},{"type":"Point","coordinates":[52130,83395]},{"type":"Point","coordinates":[52478,83396]},{"type":"Point","coordinates":[53829,83389]},{"type":"Point","coordinates":[74764,81182]},{"type":"Point","coordinates":[81497,79718]},{"type":"Point","coordinates":[52426,83427]},{"type":"Point","coordinates":[52406,83446]},{"type":"Point","coordinates":[78557,80449]},{"type":"Point","coordinates":[52424,83462]},{"type":"Point","coordinates":[51962,83472]},{"type":"Point","coordinates":[53357,83460]},{"type":"Point","coordinates":[53357,83461]},{"type":"Point","coordinates":[53356,83461]},{"type":"Point","coordinates":[53355,83462]},{"type":"Point","coordinates":[52498,83489]},{"type":"Point","coordinates":[52444,83505]},{"type":"Point","coordinates":[52470,83506]},{"type":"Point","coordinates":[79476,80292]},{"type":"Point","coordinates":[53333,83500]},{"type":"Point","coordinates":[52453,83514]},{"type":"Point","coordinates":[51950,83521]},{"type":"Point","coordinates":[52279,83519]},{"type":"Point","coordinates":[52751,83515]},{"type":"Point","coordinates":[52751,83515]},{"type":"Point","coordinates":[52750,83515]},{"type":"Point","coordinates":[52750,83515]},{"type":"Point","coordinates":[81526,79820]},{"type":"Point","coordinates":[52479,83522]},{"type":"Point","coordinates":[80736,80014]},{"type":"Point","coordinates":[52475,83524]},{"type":"Point","coordinates":[51936,83559]},{"type":"Point","coordinates":[79735,80289]},{"type":"Point","coordinates":[52069,83571]},{"type":"Point","coordinates":[51918,83575]},{"type":"Point","coordinates":[52317,83579]},{"type":"Point","coordinates":[52299,83582]},{"type":"Point","coordinates":[52046,83585]},{"type":"Point","coordinates":[52314,83583]},{"type":"Point","coordinates":[52316,83584]},{"type":"Point","coordinates":[52311,83584]},{"type":"Point","coordinates":[52306,83585]},{"type":"Point","coordinates":[52310,83586]},{"type":"Point","coordinates":[52309,83587]},{"type":"Point","coordinates":[52312,83588]},{"type":"Point","coordinates":[52309,83590]},{"type":"Point","coordinates":[52308,83590]},{"type":"Point","coordinates":[52307,83591]},{"type":"Point","coordinates":[52310,83591]},{"type":"Point","coordinates":[52023,83594]},{"type":"Point","coordinates":[79537,80363]},{"type":"Point","coordinates":[80494,80140]},{"type":"Point","coordinates":[80496,80139]},{"type":"Point","coordinates":[52057,83595]},{"type":"Point","coordinates":[52310,83593]},{"type":"Point","coordinates":[52427,83594]},{"type":"Point","coordinates":[52426,83595]},{"type":"Point","coordinates":[52427,83595]},{"type":"Point","coordinates":[52316,83597]},{"type":"Point","coordinates":[52310,83597]},{"type":"Point","coordinates":[52426,83596]},{"type":"Point","coordinates":[51992,83601]},{"type":"Point","coordinates":[52078,83601]},{"type":"Point","coordinates":[52306,83602]},{"type":"Point","coordinates":[52401,83601]},{"type":"Point","coordinates":[51992,83605]},{"type":"Point","coordinates":[51992,83605]},{"type":"Point","coordinates":[51991,83605]},{"type":"Point","coordinates":[51983,83606]},{"type":"Point","coordinates":[52402,83604]},{"type":"Point","coordinates":[51979,83608]},{"type":"Point","coordinates":[52318,83622]},{"type":"Point","coordinates":[53156,83630]},{"type":"Point","coordinates":[52122,83643]},{"type":"Point","coordinates":[52194,83643]},{"type":"Point","coordinates":[79551,80426]},{"type":"Point","coordinates":[52714,83663]},{"type":"Point","coordinates":[79034,80554]},{"type":"Point","coordinates":[79038,80556]},{"type":"Point","coordinates":[79522,80447]},{"type":"Point","coordinates":[52574,83674]},{"type":"Point","coordinates":[79533,80451]},{"type":"Point","coordinates":[52573,83676]},{"type":"Point","coordinates":[79034,80568]},{"type":"Point","coordinates":[51661,83688]},{"type":"Point","coordinates":[79033,80571]},{"type":"Point","coordinates":[79034,80571]},{"type":"Point","coordinates":[79033,80572]},{"type":"Point","coordinates":[51745,83692]},{"type":"Point","coordinates":[74075,81588]},{"type":"Point","coordinates":[51743,83696]},{"type":"Point","coordinates":[51591,83708]},{"type":"Point","coordinates":[79506,80486]},{"type":"Point","coordinates":[80035,80367]},{"type":"Point","coordinates":[51953,83731]},{"type":"Point","coordinates":[51953,83732]},{"type":"Point","coordinates":[51674,83735]},{"type":"Point","coordinates":[52007,83734]},{"type":"Point","coordinates":[52649,83733]},{"type":"Point","coordinates":[81558,80040]},{"type":"Point","coordinates":[79676,80498]},{"type":"Point","coordinates":[81971,79953]},{"type":"Point","coordinates":[51938,83767]},{"type":"Point","coordinates":[52545,83767]},{"type":"Point","coordinates":[80600,80296]},{"type":"Point","coordinates":[52417,83784]},{"type":"Point","coordinates":[52407,83784]},{"type":"Point","coordinates":[52417,83784]},{"type":"Point","coordinates":[52416,83786]},{"type":"Point","coordinates":[52456,83794]},{"type":"Point","coordinates":[46668,83722]},{"type":"Point","coordinates":[79549,80567]},{"type":"Point","coordinates":[52454,83798]},{"type":"Point","coordinates":[46672,83726]},{"type":"Point","coordinates":[52437,83802]},{"type":"Point","coordinates":[52306,83804]},{"type":"Point","coordinates":[52452,83815]},{"type":"Point","coordinates":[79675,80559]},{"type":"Point","coordinates":[52707,83819]},{"type":"Point","coordinates":[52348,83836]},{"type":"Point","coordinates":[52312,83841]},{"type":"Point","coordinates":[52312,83843]},{"type":"Point","coordinates":[52313,83843]},{"type":"Point","coordinates":[52311,83845]},{"type":"Point","coordinates":[81613,80134]},{"type":"Point","coordinates":[79663,80599]},{"type":"Point","coordinates":[80536,80395]},{"type":"Point","coordinates":[80536,80396]},{"type":"Point","coordinates":[52315,83858]},{"type":"Point","coordinates":[51995,83861]},{"type":"Point","coordinates":[52293,83876]},{"type":"Point","coordinates":[80485,80429]},{"type":"Point","coordinates":[45588,83764]},{"type":"Point","coordinates":[45593,83779]},{"type":"Point","coordinates":[80489,80451]},{"type":"Point","coordinates":[80489,80451]},{"type":"Point","coordinates":[80489,80452]},{"type":"Point","coordinates":[80511,80450]},{"type":"Point","coordinates":[52705,83902]},{"type":"Point","coordinates":[79767,80632]},{"type":"Point","coordinates":[52310,83914]},{"type":"Point","coordinates":[52301,83917]},{"type":"Point","coordinates":[73753,81884]},{"type":"Point","coordinates":[52296,83925]},{"type":"Point","coordinates":[52296,83925]},{"type":"Point","coordinates":[80497,80487]},{"type":"Point","coordinates":[80498,80493]},{"type":"Point","coordinates":[52635,83946]},{"type":"Point","coordinates":[82059,80124]},{"type":"Point","coordinates":[52323,83953]},{"type":"Point","coordinates":[82050,80133]},{"type":"Point","coordinates":[79681,80702]},{"type":"Point","coordinates":[82065,80131]},{"type":"Point","coordinates":[79681,80705]},{"type":"Point","coordinates":[79681,80705]},{"type":"Point","coordinates":[79982,80636]},{"type":"Point","coordinates":[79680,80706]},{"type":"Point","coordinates":[79680,80707]},{"type":"Point","coordinates":[79687,80706]},{"type":"Point","coordinates":[79879,80662]},{"type":"Point","coordinates":[51866,83971]},{"type":"Point","coordinates":[79847,80679]},{"type":"Point","coordinates":[79845,80681]},{"type":"Point","coordinates":[52641,83982]},{"type":"Point","coordinates":[51291,83990]},{"type":"Point","coordinates":[52323,83989]},{"type":"Point","coordinates":[80610,80516]},{"type":"Point","coordinates":[79942,80681]},{"type":"Point","coordinates":[79843,80706]},{"type":"Point","coordinates":[79930,80687]},{"type":"Point","coordinates":[79743,80732]},{"type":"Point","coordinates":[79940,80688]},{"type":"Point","coordinates":[79936,80690]},{"type":"Point","coordinates":[79936,80690]},{"type":"Point","coordinates":[79936,80690]},{"type":"Point","coordinates":[82054,80183]},{"type":"Point","coordinates":[79808,80725]},{"type":"Point","coordinates":[81026,80437]},{"type":"Point","coordinates":[79940,80695]},{"type":"Point","coordinates":[47794,83976]},{"type":"Point","coordinates":[79935,80700]},{"type":"Point","coordinates":[79941,80704]},{"type":"Point","coordinates":[79868,80725]},{"type":"Point","coordinates":[79920,80733]},{"type":"Point","coordinates":[79705,80784]},{"type":"Point","coordinates":[80565,80584]},{"type":"Point","coordinates":[73981,81981]},{"type":"Point","coordinates":[79782,80782]},{"type":"Point","coordinates":[79860,80780]},{"type":"Point","coordinates":[51881,84086]},{"type":"Point","coordinates":[51882,84087]},{"type":"Point","coordinates":[51883,84088]},{"type":"Point","coordinates":[51874,84089]},{"type":"Point","coordinates":[51881,84089]},{"type":"Point","coordinates":[51881,84089]},{"type":"Point","coordinates":[51883,84089]},{"type":"Point","coordinates":[79756,80815]},{"type":"Point","coordinates":[79756,80815]},{"type":"Point","coordinates":[51874,84095]},{"type":"Point","coordinates":[79756,80819]},{"type":"Point","coordinates":[79757,80819]},{"type":"Point","coordinates":[79751,80821]},{"type":"Point","coordinates":[79755,80820]},{"type":"Point","coordinates":[79756,80820]},{"type":"Point","coordinates":[79756,80821]},{"type":"Point","coordinates":[79753,80822]},{"type":"Point","coordinates":[79752,80822]},{"type":"Point","coordinates":[79756,80821]},{"type":"Point","coordinates":[79753,80822]},{"type":"Point","coordinates":[79751,80825]},{"type":"Point","coordinates":[79752,80825]},{"type":"Point","coordinates":[79751,80830]},{"type":"Point","coordinates":[79749,80834]},{"type":"Point","coordinates":[79748,80838]},{"type":"Point","coordinates":[79854,80819]},{"type":"Point","coordinates":[79870,80822]},{"type":"Point","coordinates":[79874,80828]},{"type":"Point","coordinates":[79884,80827]},{"type":"Point","coordinates":[79878,80829]},{"type":"Point","coordinates":[79877,80830]},{"type":"Point","coordinates":[79876,80833]},{"type":"Point","coordinates":[79846,80863]},{"type":"Point","coordinates":[79286,80992]},{"type":"Point","coordinates":[79848,80865]},{"type":"Point","coordinates":[52739,84169]},{"type":"Point","coordinates":[53085,84168]},{"type":"Point","coordinates":[53087,84171]},{"type":"Point","coordinates":[80477,80763]},{"type":"Point","coordinates":[79612,80977]},{"type":"Point","coordinates":[34490,83128]},{"type":"Point","coordinates":[34860,83181]},{"type":"Point","coordinates":[80232,80854]},{"type":"Point","coordinates":[53111,84237]},{"type":"Point","coordinates":[81009,80682]},{"type":"Point","coordinates":[53115,84246]},{"type":"Point","coordinates":[52982,84252]},{"type":"Point","coordinates":[52982,84255]},{"type":"Point","coordinates":[52956,84256]},{"type":"Point","coordinates":[35096,83240]},{"type":"Point","coordinates":[52511,84264]},{"type":"Point","coordinates":[52954,84262]},{"type":"Point","coordinates":[52946,84265]},{"type":"Point","coordinates":[52946,84270]},{"type":"Point","coordinates":[53033,84271]},{"type":"Point","coordinates":[52943,84274]},{"type":"Point","coordinates":[52941,84276]},{"type":"Point","coordinates":[34922,83247]},{"type":"Point","coordinates":[79271,81143]},{"type":"Point","coordinates":[79272,81143]},{"type":"Point","coordinates":[34869,83251]},{"type":"Point","coordinates":[79272,81149]},{"type":"Point","coordinates":[79262,81151]},{"type":"Point","coordinates":[45734,84203]},{"type":"Point","coordinates":[35139,83300]},{"type":"Point","coordinates":[45451,84197]},{"type":"Point","coordinates":[45735,84210]},{"type":"Point","coordinates":[46984,84272]},{"type":"Point","coordinates":[54544,84297]},{"type":"Point","coordinates":[52775,84333]},{"type":"Point","coordinates":[45714,84226]},{"type":"Point","coordinates":[81260,80712]},{"type":"Point","coordinates":[52386,84342]},{"type":"Point","coordinates":[79452,81142]},{"type":"Point","coordinates":[80147,80990]},{"type":"Point","coordinates":[80147,80990]},{"type":"Point","coordinates":[80147,80991]},{"type":"Point","coordinates":[80136,80994]},{"type":"Point","coordinates":[53002,84350]},{"type":"Point","coordinates":[80151,80996]},{"type":"Point","coordinates":[80151,80996]},{"type":"Point","coordinates":[78575,81356]},{"type":"Point","coordinates":[53012,84361]},{"type":"Point","coordinates":[34809,83307]},{"type":"Point","coordinates":[80145,81008]},{"type":"Point","coordinates":[54548,84336]},{"type":"Point","coordinates":[54548,84336]},{"type":"Point","coordinates":[35049,83349]},{"type":"Point","coordinates":[35092,83360]},{"type":"Point","coordinates":[78611,81372]},{"type":"Point","coordinates":[79273,81232]},{"type":"Point","coordinates":[79273,81232]},{"type":"Point","coordinates":[52146,84399]},{"type":"Point","coordinates":[52143,84400]},{"type":"Point","coordinates":[45620,84283]},{"type":"Point","coordinates":[52682,84401]},{"type":"Point","coordinates":[34656,83350]},{"type":"Point","coordinates":[52712,84436]},{"type":"Point","coordinates":[52851,84449]},{"type":"Point","coordinates":[53097,84452]},{"type":"Point","coordinates":[79949,81146]},{"type":"Point","coordinates":[34950,83421]},{"type":"Point","coordinates":[79944,81154]},{"type":"Point","coordinates":[35094,83444]},{"type":"Point","coordinates":[34995,83432]},{"type":"Point","coordinates":[51614,84487]},{"type":"Point","coordinates":[53085,84487]},{"type":"Point","coordinates":[53085,84488]},{"type":"Point","coordinates":[34816,83440]},{"type":"Point","coordinates":[51582,84515]},{"type":"Point","coordinates":[79962,81194]},{"type":"Point","coordinates":[79978,81196]},{"type":"Point","coordinates":[51580,84524]},{"type":"Point","coordinates":[79962,81207]},{"type":"Point","coordinates":[79951,81221]},{"type":"Point","coordinates":[34776,83471]},{"type":"Point","coordinates":[79297,81373]},{"type":"Point","coordinates":[47400,84503]},{"type":"Point","coordinates":[35097,83530]},{"type":"Point","coordinates":[53447,84550]},{"type":"Point","coordinates":[46046,84467]},{"type":"Point","coordinates":[45768,84461]},{"type":"Point","coordinates":[78555,81618]},{"type":"Point","coordinates":[52498,84624]},{"type":"Point","coordinates":[52497,84625]},{"type":"Point","coordinates":[81647,80916]},{"type":"Point","coordinates":[47099,84576]},{"type":"Point","coordinates":[79879,81340]},{"type":"Point","coordinates":[82157,80807]},{"type":"Point","coordinates":[34668,83580]},{"type":"Point","coordinates":[79911,81370]},{"type":"Point","coordinates":[45928,84574]},{"type":"Point","coordinates":[79407,81503]},{"type":"Point","coordinates":[79948,81381]},{"type":"Point","coordinates":[81049,81137]},{"type":"Point","coordinates":[81087,81134]},{"type":"Point","coordinates":[45613,84608]},{"type":"Point","coordinates":[45979,84666]},{"type":"Point","coordinates":[47916,84734]},{"type":"Point","coordinates":[52211,84781]},{"type":"Point","coordinates":[45939,84678]},{"type":"Point","coordinates":[45939,84679]},{"type":"Point","coordinates":[34938,83789]},{"type":"Point","coordinates":[34835,83777]},{"type":"Point","coordinates":[52796,84841]},{"type":"Point","coordinates":[52794,84844]},{"type":"Point","coordinates":[34915,83821]},{"type":"Point","coordinates":[46498,84790]},{"type":"Point","coordinates":[78570,81902]},{"type":"Point","coordinates":[52760,84904]},{"type":"Point","coordinates":[34980,83900]},{"type":"Point","coordinates":[34724,83884]},{"type":"Point","coordinates":[46052,84872]},{"type":"Point","coordinates":[46031,84887]},{"type":"Point","coordinates":[53497,84976]},{"type":"Point","coordinates":[46023,84906]},{"type":"Point","coordinates":[46045,84910]},{"type":"Point","coordinates":[45889,84925]},{"type":"Point","coordinates":[35725,84087]},{"type":"Point","coordinates":[45889,84927]},{"type":"Point","coordinates":[45887,84928]},{"type":"Point","coordinates":[45884,84930]},{"type":"Point","coordinates":[35894,84128]},{"type":"Point","coordinates":[35791,84127]},{"type":"Point","coordinates":[78429,82119]},{"type":"Point","coordinates":[51992,85091]},{"type":"Point","coordinates":[53179,85081]},{"type":"Point","coordinates":[78440,82127]},{"type":"Point","coordinates":[51979,85104]},{"type":"Point","coordinates":[51947,85106]},{"type":"Point","coordinates":[51947,85106]},{"type":"Point","coordinates":[52593,85103]},{"type":"Point","coordinates":[51955,85112]},{"type":"Point","coordinates":[51977,85131]},{"type":"Point","coordinates":[78422,82168]},{"type":"Point","coordinates":[35714,84231]},{"type":"Point","coordinates":[36155,84297]},{"type":"Point","coordinates":[45949,85104]},{"type":"Point","coordinates":[45954,85108]},{"type":"Point","coordinates":[45954,85108]},{"type":"Point","coordinates":[82545,81306]},{"type":"Point","coordinates":[52665,85239]},{"type":"Point","coordinates":[53109,85241]},{"type":"Point","coordinates":[81578,81561]},{"type":"Point","coordinates":[35961,84345]},{"type":"Point","coordinates":[49636,85314]},{"type":"Point","coordinates":[79539,82108]},{"type":"Point","coordinates":[81070,81756]},{"type":"Point","coordinates":[81059,81762]},{"type":"Point","coordinates":[81069,81783]},{"type":"Point","coordinates":[81069,81783]},{"type":"Point","coordinates":[81119,81774]},{"type":"Point","coordinates":[81114,81775]},{"type":"Point","coordinates":[36096,84486]},{"type":"Point","coordinates":[53746,85366]},{"type":"Point","coordinates":[53746,85366]},{"type":"Point","coordinates":[53710,85381]},{"type":"Point","coordinates":[78441,82457]},{"type":"Point","coordinates":[81220,81960]},{"type":"Point","coordinates":[35700,84621]},{"type":"Point","coordinates":[80512,82151]},{"type":"Point","coordinates":[81390,81959]},{"type":"Point","coordinates":[35867,84750]},{"type":"Point","coordinates":[81073,82141]},{"type":"Point","coordinates":[46903,85650]},{"type":"Point","coordinates":[80276,82342]},{"type":"Point","coordinates":[82010,81950]},{"type":"Point","coordinates":[80635,82300]},{"type":"Point","coordinates":[81229,82160]},{"type":"Point","coordinates":[80572,82322]},{"type":"Point","coordinates":[80604,82328]},{"type":"Point","coordinates":[78550,82809]},{"type":"Point","coordinates":[80980,82338]},{"type":"Point","coordinates":[35990,84975]},{"type":"Point","coordinates":[81806,82149]},{"type":"Point","coordinates":[81125,82325]},{"type":"Point","coordinates":[52219,85904]},{"type":"Point","coordinates":[52218,85904]},{"type":"Point","coordinates":[52219,85904]},{"type":"Point","coordinates":[52205,85915]},{"type":"Point","coordinates":[52209,85916]},{"type":"Point","coordinates":[82751,81972]},{"type":"Point","coordinates":[79656,82743]},{"type":"Point","coordinates":[80932,82457]},{"type":"Point","coordinates":[36014,85093]},{"type":"Point","coordinates":[79525,82819]},{"type":"Point","coordinates":[80175,82745]},{"type":"Point","coordinates":[51974,86131]},{"type":"Point","coordinates":[51974,86132]},{"type":"Point","coordinates":[35642,85225]},{"type":"Point","coordinates":[79769,82940]},{"type":"Point","coordinates":[79798,82944]},{"type":"Point","coordinates":[79152,83111]},{"type":"Point","coordinates":[81547,82589]},{"type":"Point","coordinates":[45671,86170]},{"type":"Point","coordinates":[36064,85419]},{"type":"Point","coordinates":[80261,82998]},{"type":"Point","coordinates":[79877,83101]},{"type":"Point","coordinates":[80097,83058]},{"type":"Point","coordinates":[36165,85509]},{"type":"Point","coordinates":[35999,85530]},{"type":"Point","coordinates":[52247,86515]},{"type":"Point","coordinates":[36280,85668]},{"type":"Point","coordinates":[52232,86648]},{"type":"Point","coordinates":[50005,86718]},{"type":"Point","coordinates":[52335,86744]},{"type":"Point","coordinates":[79450,83569]},{"type":"Point","coordinates":[79798,83564]},{"type":"Point","coordinates":[79716,83588]},{"type":"Point","coordinates":[51703,86837]},{"type":"Point","coordinates":[79441,83727]},{"type":"Point","coordinates":[52026,86910]},{"type":"Point","coordinates":[79537,83728]},{"type":"Point","coordinates":[49820,86979]},{"type":"Point","coordinates":[79543,83799]},{"type":"Point","coordinates":[81939,83239]},{"type":"Point","coordinates":[79711,83770]},{"type":"Point","coordinates":[82631,83093]},{"type":"Point","coordinates":[81569,83368]},{"type":"Point","coordinates":[81803,83328]},{"type":"Point","coordinates":[52135,87080]},{"type":"Point","coordinates":[82532,83264]},{"type":"Point","coordinates":[48971,87212]},{"type":"Point","coordinates":[79580,84113]},{"type":"Point","coordinates":[79626,84117]},{"type":"Point","coordinates":[79874,84068]},{"type":"Point","coordinates":[80077,84039]},{"type":"Point","coordinates":[83333,83248]},{"type":"Point","coordinates":[79781,84134]},{"type":"Point","coordinates":[81985,83611]},{"type":"Point","coordinates":[79536,84231]},{"type":"Point","coordinates":[48970,87451]},{"type":"Point","coordinates":[80002,84174]},{"type":"Point","coordinates":[81934,83799]},{"type":"Point","coordinates":[79788,84312]},{"type":"Point","coordinates":[82267,83737]},{"type":"Point","coordinates":[79963,84339]},{"type":"Point","coordinates":[79808,84376]},{"type":"Point","coordinates":[82313,83779]},{"type":"Point","coordinates":[81981,83897]},{"type":"Point","coordinates":[81949,83907]},{"type":"Point","coordinates":[81958,83916]},{"type":"Point","coordinates":[79988,84386]},{"type":"Point","coordinates":[81916,83933]},{"type":"Point","coordinates":[48641,87666]},{"type":"Point","coordinates":[81855,84040]},{"type":"Point","coordinates":[82715,83834]},{"type":"Point","coordinates":[82506,83893]},{"type":"Point","coordinates":[82721,83851]},{"type":"Point","coordinates":[80685,84351]},{"type":"Point","coordinates":[82373,83953]},{"type":"Point","coordinates":[79776,84607]},{"type":"Point","coordinates":[48199,87853]},{"type":"Point","coordinates":[48214,87861]},{"type":"Point","coordinates":[82492,84025]},{"type":"Point","coordinates":[83576,83749]},{"type":"Point","coordinates":[83575,83749]},{"type":"Point","coordinates":[81483,84274]},{"type":"Point","coordinates":[83576,83751]},{"type":"Point","coordinates":[83572,83752]},{"type":"Point","coordinates":[83536,83778]},{"type":"Point","coordinates":[79643,84733]},{"type":"Point","coordinates":[82310,84105]},{"type":"Point","coordinates":[80136,84655]},{"type":"Point","coordinates":[80136,84656]},{"type":"Point","coordinates":[80408,84602]},{"type":"Point","coordinates":[79718,84799]},{"type":"Point","coordinates":[79718,84799]},{"type":"Point","coordinates":[82654,84106]},{"type":"Point","coordinates":[82653,84109]},{"type":"Point","coordinates":[82625,84122]},{"type":"Point","coordinates":[82568,84145]},{"type":"Point","coordinates":[82421,84184]},{"type":"Point","coordinates":[82565,84149]},{"type":"Point","coordinates":[82591,84165]},{"type":"Point","coordinates":[82588,84166]},{"type":"Point","coordinates":[82588,84166]},{"type":"Point","coordinates":[82588,84166]},{"type":"Point","coordinates":[82589,84166]},{"type":"Point","coordinates":[82589,84166]},{"type":"Point","coordinates":[82586,84169]},{"type":"Point","coordinates":[82586,84170]},{"type":"Point","coordinates":[82587,84170]},{"type":"Point","coordinates":[82587,84171]},{"type":"Point","coordinates":[82591,84171]},{"type":"Point","coordinates":[82587,84172]},{"type":"Point","coordinates":[82587,84173]},{"type":"Point","coordinates":[82591,84172]},{"type":"Point","coordinates":[82587,84173]},{"type":"Point","coordinates":[82587,84173]},{"type":"Point","coordinates":[82591,84172]},{"type":"Point","coordinates":[82586,84173]},{"type":"Point","coordinates":[82588,84173]},{"type":"Point","coordinates":[82592,84172]},{"type":"Point","coordinates":[82587,84174]},{"type":"Point","coordinates":[82590,84173]},{"type":"Point","coordinates":[82590,84173]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82590,84174]},{"type":"Point","coordinates":[82591,84174]},{"type":"Point","coordinates":[82591,84174]},{"type":"Point","coordinates":[82594,84174]},{"type":"Point","coordinates":[82582,84179]},{"type":"Point","coordinates":[82602,84174]},{"type":"Point","coordinates":[82581,84180]},{"type":"Point","coordinates":[82582,84180]},{"type":"Point","coordinates":[80098,84778]},{"type":"Point","coordinates":[80094,84779]},{"type":"Point","coordinates":[82583,84180]},{"type":"Point","coordinates":[82584,84181]},{"type":"Point","coordinates":[82584,84181]},{"type":"Point","coordinates":[82596,84180]},{"type":"Point","coordinates":[80094,84783]},{"type":"Point","coordinates":[82601,84183]},{"type":"Point","coordinates":[80336,84735]},{"type":"Point","coordinates":[82604,84196]},{"type":"Point","coordinates":[82261,84293]},{"type":"Point","coordinates":[82672,84207]},{"type":"Point","coordinates":[82319,84300]},{"type":"Point","coordinates":[82246,84332]},{"type":"Point","coordinates":[82245,84334]},{"type":"Point","coordinates":[80947,84667]},{"type":"Point","coordinates":[80084,84890]},{"type":"Point","coordinates":[83013,84190]},{"type":"Point","coordinates":[81660,84562]},{"type":"Point","coordinates":[81661,84563]},{"type":"Point","coordinates":[81661,84563]},{"type":"Point","coordinates":[81661,84564]},{"type":"Point","coordinates":[81661,84565]},{"type":"Point","coordinates":[81661,84565]},{"type":"Point","coordinates":[81661,84569]},{"type":"Point","coordinates":[81656,84586]},{"type":"Point","coordinates":[79571,85075]},{"type":"Point","coordinates":[81659,84585]},{"type":"Point","coordinates":[81666,84584]},{"type":"Point","coordinates":[81664,84585]},{"type":"Point","coordinates":[81667,84584]},{"type":"Point","coordinates":[83409,84160]},{"type":"Point","coordinates":[83411,84160]},{"type":"Point","coordinates":[80331,84976]},{"type":"Point","coordinates":[80331,84980]},{"type":"Point","coordinates":[83448,84218]},{"type":"Point","coordinates":[83449,84229]},{"type":"Point","coordinates":[82800,84398]},{"type":"Point","coordinates":[79886,85106]},{"type":"Point","coordinates":[82820,84401]},{"type":"Point","coordinates":[80532,85002]},{"type":"Point","coordinates":[83684,84232]},{"type":"Point","coordinates":[80060,85139]},{"type":"Point","coordinates":[82022,84693]},{"type":"Point","coordinates":[81614,84795]},{"type":"Point","coordinates":[82771,84521]},{"type":"Point","coordinates":[79882,85226]},{"type":"Point","coordinates":[82775,84547]},{"type":"Point","coordinates":[82029,84741]},{"type":"Point","coordinates":[82784,84553]},{"type":"Point","coordinates":[82786,84553]},{"type":"Point","coordinates":[82806,84553]},{"type":"Point","coordinates":[82802,84555]},{"type":"Point","coordinates":[82817,84558]},{"type":"Point","coordinates":[82820,84559]},{"type":"Point","coordinates":[82820,84560]},{"type":"Point","coordinates":[82824,84560]},{"type":"Point","coordinates":[82822,84570]},{"type":"Point","coordinates":[82828,84569]},{"type":"Point","coordinates":[82816,84580]},{"type":"Point","coordinates":[82823,84581]},{"type":"Point","coordinates":[82805,84588]},{"type":"Point","coordinates":[82085,84783]},{"type":"Point","coordinates":[79765,85354]},{"type":"Point","coordinates":[81484,85010]},{"type":"Point","coordinates":[81917,84934]},{"type":"Point","coordinates":[81516,85040]},{"type":"Point","coordinates":[81922,84949]},{"type":"Point","coordinates":[81915,84965]},{"type":"Point","coordinates":[80116,85392]},{"type":"Point","coordinates":[83931,84598]},{"type":"Point","coordinates":[83522,84714]},{"type":"Point","coordinates":[83777,84661]},{"type":"Point","coordinates":[82681,85011]},{"type":"Point","coordinates":[79842,85695]},{"type":"Point","coordinates":[83912,84722]},{"type":"Point","coordinates":[82617,85074]},{"type":"Point","coordinates":[83701,84834]},{"type":"Point","coordinates":[81532,85398]},{"type":"Point","coordinates":[82663,85126]},{"type":"Point","coordinates":[82665,85130]},{"type":"Point","coordinates":[83923,84815]},{"type":"Point","coordinates":[82862,85094]},{"type":"Point","coordinates":[80495,85674]},{"type":"Point","coordinates":[82651,85171]},{"type":"Point","coordinates":[80141,85797]},{"type":"Point","coordinates":[82663,85201]},{"type":"Point","coordinates":[82084,85381]},{"type":"Point","coordinates":[83928,84935]},{"type":"Point","coordinates":[80915,85694]},{"type":"Point","coordinates":[80909,85760]},{"type":"Point","coordinates":[80951,85767]},{"type":"Point","coordinates":[83726,85081]},{"type":"Point","coordinates":[80876,85792]},{"type":"Point","coordinates":[80131,86066]},{"type":"Point","coordinates":[80395,86023]},{"type":"Point","coordinates":[82575,85501]},{"type":"Point","coordinates":[79667,86202]},{"type":"Point","coordinates":[79660,86220]},{"type":"Point","coordinates":[82553,85534]},{"type":"Point","coordinates":[80099,86163]},{"type":"Point","coordinates":[82395,85640]},{"type":"Point","coordinates":[80132,86195]},{"type":"Point","coordinates":[80451,86125]},{"type":"Point","coordinates":[80443,86136]},{"type":"Point","coordinates":[80426,86144]},{"type":"Point","coordinates":[80183,86209]},{"type":"Point","coordinates":[80055,86275]},{"type":"Point","coordinates":[80315,86239]},{"type":"Point","coordinates":[80107,86301]},{"type":"Point","coordinates":[80266,86277]},{"type":"Point","coordinates":[82140,85858]},{"type":"Point","coordinates":[79760,86423]},{"type":"Point","coordinates":[80234,86315]},{"type":"Point","coordinates":[82148,85894]},{"type":"Point","coordinates":[81405,86125]},{"type":"Point","coordinates":[82184,85938]},{"type":"Point","coordinates":[81529,86128]},{"type":"Point","coordinates":[82212,85973]},{"type":"Point","coordinates":[80310,86441]},{"type":"Point","coordinates":[46926,89726]},{"type":"Point","coordinates":[82167,86013]},{"type":"Point","coordinates":[84020,85544]},{"type":"Point","coordinates":[80073,86546]},{"type":"Point","coordinates":[80552,86437]},{"type":"Point","coordinates":[79867,86612]},{"type":"Point","coordinates":[79650,86674]},{"type":"Point","coordinates":[79874,86626]},{"type":"Point","coordinates":[79862,86630]},{"type":"Point","coordinates":[80237,86546]},{"type":"Point","coordinates":[80558,86473]},{"type":"Point","coordinates":[79977,86608]},{"type":"Point","coordinates":[79878,86633]},{"type":"Point","coordinates":[79855,86648]},{"type":"Point","coordinates":[79658,86705]},{"type":"Point","coordinates":[80287,86561]},{"type":"Point","coordinates":[79661,86705]},{"type":"Point","coordinates":[79659,86706]},{"type":"Point","coordinates":[80288,86567]},{"type":"Point","coordinates":[79662,86714]},{"type":"Point","coordinates":[79666,86720]},{"type":"Point","coordinates":[82282,86102]},{"type":"Point","coordinates":[82278,86104]},{"type":"Point","coordinates":[82278,86106]},{"type":"Point","coordinates":[82277,86106]},{"type":"Point","coordinates":[82024,86168]},{"type":"Point","coordinates":[82279,86117]},{"type":"Point","coordinates":[82286,86124]},{"type":"Point","coordinates":[83251,85886]},{"type":"Point","coordinates":[82278,86136]},{"type":"Point","coordinates":[83103,85934]},{"type":"Point","coordinates":[80285,86625]},{"type":"Point","coordinates":[79817,86756]},{"type":"Point","coordinates":[82813,86040]},{"type":"Point","coordinates":[81321,86419]},{"type":"Point","coordinates":[80136,86715]},{"type":"Point","coordinates":[80159,86722]},{"type":"Point","coordinates":[79571,86865]},{"type":"Point","coordinates":[80131,86742]},{"type":"Point","coordinates":[80140,86741]},{"type":"Point","coordinates":[79568,86873]},{"type":"Point","coordinates":[80318,86703]},{"type":"Point","coordinates":[80138,86746]},{"type":"Point","coordinates":[82333,86226]},{"type":"Point","coordinates":[80138,86749]},{"type":"Point","coordinates":[80139,86749]},{"type":"Point","coordinates":[80139,86749]},{"type":"Point","coordinates":[80138,86749]},{"type":"Point","coordinates":[80139,86749]},{"type":"Point","coordinates":[80139,86749]},{"type":"Point","coordinates":[80139,86749]},{"type":"Point","coordinates":[80138,86750]},{"type":"Point","coordinates":[80138,86750]},{"type":"Point","coordinates":[80138,86752]},{"type":"Point","coordinates":[80138,86752]},{"type":"Point","coordinates":[83918,85830]},{"type":"Point","coordinates":[79586,86891]},{"type":"Point","coordinates":[79440,86939]},{"type":"Point","coordinates":[81665,86436]},{"type":"Point","coordinates":[83294,86039]},{"type":"Point","coordinates":[81346,86521]},{"type":"Point","coordinates":[80331,86764]},{"type":"Point","coordinates":[81704,86443]},{"type":"Point","coordinates":[80350,86767]},{"type":"Point","coordinates":[80288,86783]},{"type":"Point","coordinates":[80280,86785]},{"type":"Point","coordinates":[80286,86784]},{"type":"Point","coordinates":[80286,86784]},{"type":"Point","coordinates":[80283,86786]},{"type":"Point","coordinates":[80282,86786]},{"type":"Point","coordinates":[80281,86787]},{"type":"Point","coordinates":[80286,86786]},{"type":"Point","coordinates":[80286,86786]},{"type":"Point","coordinates":[80279,86788]},{"type":"Point","coordinates":[80279,86788]},{"type":"Point","coordinates":[80279,86788]},{"type":"Point","coordinates":[80279,86788]},{"type":"Point","coordinates":[80279,86788]},{"type":"Point","coordinates":[80279,86788]},{"type":"Point","coordinates":[80279,86788]},{"type":"Point","coordinates":[80276,86789]},{"type":"Point","coordinates":[80280,86789]},{"type":"Point","coordinates":[80286,86788]},{"type":"Point","coordinates":[80280,86790]},{"type":"Point","coordinates":[80283,86789]},{"type":"Point","coordinates":[80285,86789]},{"type":"Point","coordinates":[80279,86791]},{"type":"Point","coordinates":[80293,86787]},{"type":"Point","coordinates":[80279,86791]},{"type":"Point","coordinates":[80279,86791]},{"type":"Point","coordinates":[80274,86792]},{"type":"Point","coordinates":[80279,86791]},{"type":"Point","coordinates":[80279,86791]},{"type":"Point","coordinates":[80290,86790]},{"type":"Point","coordinates":[80282,86792]},{"type":"Point","coordinates":[80289,86791]},{"type":"Point","coordinates":[80289,86792]},{"type":"Point","coordinates":[80281,86794]},{"type":"Point","coordinates":[80280,86794]},{"type":"Point","coordinates":[80287,86793]},{"type":"Point","coordinates":[80286,86793]},{"type":"Point","coordinates":[80287,86793]},{"type":"Point","coordinates":[80279,86795]},{"type":"Point","coordinates":[80285,86794]},{"type":"Point","coordinates":[80287,86794]},{"type":"Point","coordinates":[80278,86797]},{"type":"Point","coordinates":[80287,86795]},{"type":"Point","coordinates":[80286,86795]},{"type":"Point","coordinates":[80279,86797]},{"type":"Point","coordinates":[80285,86797]},{"type":"Point","coordinates":[80285,86797]},{"type":"Point","coordinates":[80285,86797]},{"type":"Point","coordinates":[80285,86797]},{"type":"Point","coordinates":[80283,86800]},{"type":"Point","coordinates":[80283,86800]},{"type":"Point","coordinates":[80287,86800]},{"type":"Point","coordinates":[80268,86805]},{"type":"Point","coordinates":[80274,86805]},{"type":"Point","coordinates":[80287,86802]},{"type":"Point","coordinates":[80272,86807]},{"type":"Point","coordinates":[82325,86318]},{"type":"Point","coordinates":[80291,86806]},{"type":"Point","coordinates":[80229,86828]},{"type":"Point","coordinates":[81020,86643]},{"type":"Point","coordinates":[82108,86384]},{"type":"Point","coordinates":[83155,86168]},{"type":"Point","coordinates":[81567,86575]},{"type":"Point","coordinates":[81549,86600]},{"type":"Point","coordinates":[80234,86924]},{"type":"Point","coordinates":[79438,87144]},{"type":"Point","coordinates":[81154,86753]},{"type":"Point","coordinates":[80206,86993]},{"type":"Point","coordinates":[80490,86929]},{"type":"Point","coordinates":[82224,86515]},{"type":"Point","coordinates":[80203,86997]},{"type":"Point","coordinates":[80203,86998]},{"type":"Point","coordinates":[79929,87063]},{"type":"Point","coordinates":[80274,87000]},{"type":"Point","coordinates":[84059,86103]},{"type":"Point","coordinates":[79746,87168]},{"type":"Point","coordinates":[81379,86837]},{"type":"Point","coordinates":[81390,86837]},{"type":"Point","coordinates":[81390,86837]},{"type":"Point","coordinates":[81962,86707]},{"type":"Point","coordinates":[80036,87169]},{"type":"Point","coordinates":[80038,87169]},{"type":"Point","coordinates":[81408,86851]},{"type":"Point","coordinates":[84141,86168]},{"type":"Point","coordinates":[81373,86877]},{"type":"Point","coordinates":[82193,86686]},{"type":"Point","coordinates":[79550,87338]},{"type":"Point","coordinates":[80496,87185]},{"type":"Point","coordinates":[80684,87169]},{"type":"Point","coordinates":[79437,87472]},{"type":"Point","coordinates":[79490,87497]},{"type":"Point","coordinates":[82025,86905]},{"type":"Point","coordinates":[82025,86905]},{"type":"Point","coordinates":[79498,87501]},{"type":"Point","coordinates":[81285,87090]},{"type":"Point","coordinates":[81279,87093]},{"type":"Point","coordinates":[84088,86398]},{"type":"Point","coordinates":[81278,87111]},{"type":"Point","coordinates":[81270,87116]},{"type":"Point","coordinates":[79492,87529]},{"type":"Point","coordinates":[82965,86713]},{"type":"Point","coordinates":[81368,87196]},{"type":"Point","coordinates":[81527,87164]},{"type":"Point","coordinates":[84218,86503]},{"type":"Point","coordinates":[80632,87425]},{"type":"Point","coordinates":[79441,87700]},{"type":"Point","coordinates":[79341,87739]},{"type":"Point","coordinates":[79428,87748]},{"type":"Point","coordinates":[79390,87761]},{"type":"Point","coordinates":[79418,87788]},{"type":"Point","coordinates":[82235,87139]},{"type":"Point","coordinates":[82235,87139]},{"type":"Point","coordinates":[80855,87474]},{"type":"Point","coordinates":[80439,87585]},{"type":"Point","coordinates":[80561,87576]},{"type":"Point","coordinates":[80516,87641]},{"type":"Point","coordinates":[80522,87640]},{"type":"Point","coordinates":[80519,87644]},{"type":"Point","coordinates":[80519,87644]},{"type":"Point","coordinates":[80519,87645]},{"type":"Point","coordinates":[79373,87908]},{"type":"Point","coordinates":[84279,86725]},{"type":"Point","coordinates":[82158,87264]},{"type":"Point","coordinates":[79789,87831]},{"type":"Point","coordinates":[82318,87246]},{"type":"Point","coordinates":[80587,87671]},{"type":"Point","coordinates":[82173,87294]},{"type":"Point","coordinates":[82017,87339]},{"type":"Point","coordinates":[82011,87340]},{"type":"Point","coordinates":[82020,87338]},{"type":"Point","coordinates":[80548,87691]},{"type":"Point","coordinates":[80551,87692]},{"type":"Point","coordinates":[80552,87697]},{"type":"Point","coordinates":[82068,87369]},{"type":"Point","coordinates":[80456,87764]},{"type":"Point","coordinates":[82266,87345]},{"type":"Point","coordinates":[82252,87353]},{"type":"Point","coordinates":[82252,87353]},{"type":"Point","coordinates":[80683,87806]},{"type":"Point","coordinates":[82329,87429]},{"type":"Point","coordinates":[82331,87429]},{"type":"Point","coordinates":[79674,88066]},{"type":"Point","coordinates":[79625,88082]},{"type":"Point","coordinates":[79829,88065]},{"type":"Point","coordinates":[79827,88082]},{"type":"Point","coordinates":[84383,86990]},{"type":"Point","coordinates":[79574,88232]},{"type":"Point","coordinates":[79787,88227]},{"type":"Point","coordinates":[79811,88242]},{"type":"Point","coordinates":[79813,88246]},{"type":"Point","coordinates":[79811,88249]},{"type":"Point","coordinates":[82059,87728]},{"type":"Point","coordinates":[80513,88132]},{"type":"Point","coordinates":[82424,87679]},{"type":"Point","coordinates":[79750,88322]},{"type":"Point","coordinates":[80553,88198]},{"type":"Point","coordinates":[79639,88429]},{"type":"Point","coordinates":[79665,88490]},{"type":"Point","coordinates":[80408,88326]},{"type":"Point","coordinates":[80363,88339]},{"type":"Point","coordinates":[80385,88367]},{"type":"Point","coordinates":[80138,88440]},{"type":"Point","coordinates":[82165,87972]},{"type":"Point","coordinates":[48614,91721]},{"type":"Point","coordinates":[48610,91734]},{"type":"Point","coordinates":[48589,91796]},{"type":"Point","coordinates":[81643,88219]},{"type":"Point","coordinates":[80804,88446]},{"type":"Point","coordinates":[81118,88420]},{"type":"Point","coordinates":[81088,88511]},{"type":"Point","coordinates":[83283,87977]},{"type":"Point","coordinates":[82276,88280]},{"type":"Point","coordinates":[84814,87665]},{"type":"Point","coordinates":[80107,88838]},{"type":"Point","coordinates":[80108,88839]},{"type":"Point","coordinates":[80107,88854]},{"type":"Point","coordinates":[79677,89009]},{"type":"Point","coordinates":[85050,87697]},{"type":"Point","coordinates":[80306,88882]},{"type":"Point","coordinates":[79918,88976]},{"type":"Point","coordinates":[81116,88715]},{"type":"Point","coordinates":[82517,88379]},{"type":"Point","coordinates":[82515,88383]},{"type":"Point","coordinates":[80415,88892]},{"type":"Point","coordinates":[80972,88786]},{"type":"Point","coordinates":[79861,89058]},{"type":"Point","coordinates":[80500,88926]},{"type":"Point","coordinates":[80511,88929]},{"type":"Point","coordinates":[80634,88908]},{"type":"Point","coordinates":[82351,88510]},{"type":"Point","coordinates":[79830,89121]},{"type":"Point","coordinates":[79837,89120]},{"type":"Point","coordinates":[80072,89097]},{"type":"Point","coordinates":[48407,92402]},{"type":"Point","coordinates":[48405,92407]},{"type":"Point","coordinates":[48404,92409]},{"type":"Point","coordinates":[82254,88658]},{"type":"Point","coordinates":[48405,92414]},{"type":"Point","coordinates":[82273,88659]},{"type":"Point","coordinates":[82273,88659]},{"type":"Point","coordinates":[82273,88659]},{"type":"Point","coordinates":[82243,88667]},{"type":"Point","coordinates":[82301,88664]},{"type":"Point","coordinates":[48383,92487]},{"type":"Point","coordinates":[48368,92548]},{"type":"Point","coordinates":[80435,89245]},{"type":"Point","coordinates":[80275,89318]},{"type":"Point","coordinates":[80356,89314]},{"type":"Point","coordinates":[80490,89287]},{"type":"Point","coordinates":[80350,89384]},{"type":"Point","coordinates":[80362,89431]},{"type":"Point","coordinates":[80426,89456]},{"type":"Point","coordinates":[80442,89518]},{"type":"Point","coordinates":[80303,89597]},{"type":"Point","coordinates":[80299,89599]},{"type":"Point","coordinates":[80303,89598]},{"type":"Point","coordinates":[80303,89598]},{"type":"Point","coordinates":[80773,89573]},{"type":"Point","coordinates":[80411,89661]},{"type":"Point","coordinates":[80411,89672]},{"type":"Point","coordinates":[80263,89731]},{"type":"Point","coordinates":[80797,89641]},{"type":"Point","coordinates":[82586,89256]},{"type":"Point","coordinates":[80351,89793]},{"type":"Point","coordinates":[80345,89795]},{"type":"Point","coordinates":[80352,89794]},{"type":"Point","coordinates":[80347,89799]},{"type":"Point","coordinates":[80270,89866]},{"type":"Point","coordinates":[80240,89874]},{"type":"Point","coordinates":[80280,89882]},{"type":"Point","coordinates":[83037,89325]},{"type":"Point","coordinates":[80696,89933]},{"type":"Point","coordinates":[80696,89935]},{"type":"Point","coordinates":[80363,90035]},{"type":"Point","coordinates":[80332,90067]},{"type":"Point","coordinates":[85272,88854]},{"type":"Point","coordinates":[80317,90158]},{"type":"Point","coordinates":[80318,90163]},{"type":"Point","coordinates":[80318,90164]},{"type":"Point","coordinates":[80320,90164]},{"type":"Point","coordinates":[80391,90165]},{"type":"Point","coordinates":[80827,90107]},{"type":"Point","coordinates":[80827,90107]},{"type":"Point","coordinates":[82810,89635]},{"type":"Point","coordinates":[80364,90227]},{"type":"Point","coordinates":[82779,89656]},{"type":"Point","coordinates":[80354,90249]},{"type":"Point","coordinates":[80405,90254]},{"type":"Point","coordinates":[85182,89140]},{"type":"Point","coordinates":[84727,89337]},{"type":"Point","coordinates":[84578,89397]},{"type":"Point","coordinates":[84583,89399]},{"type":"Point","coordinates":[84577,89401]},{"type":"Point","coordinates":[80654,90387]},{"type":"Point","coordinates":[80517,90464]},{"type":"Point","coordinates":[80513,90466]},{"type":"Point","coordinates":[80513,90467]},{"type":"Point","coordinates":[80744,90433]},{"type":"Point","coordinates":[80734,90453]},{"type":"Point","coordinates":[85114,89396]},{"type":"Point","coordinates":[82772,90014]},{"type":"Point","coordinates":[80494,90689]},{"type":"Point","coordinates":[80496,90703]},{"type":"Point","coordinates":[82757,90201]},{"type":"Point","coordinates":[85489,89522]},{"type":"Point","coordinates":[82935,90215]},{"type":"Point","coordinates":[80550,90794]},{"type":"Point","coordinates":[80608,90819]},{"type":"Point","coordinates":[81270,90696]},{"type":"Point","coordinates":[80858,90811]},{"type":"Point","coordinates":[85397,89677]},{"type":"Point","coordinates":[81519,90700]},{"type":"Point","coordinates":[84428,89998]},{"type":"Point","coordinates":[80652,90959]},{"type":"Point","coordinates":[80652,90959]},{"type":"Point","coordinates":[85393,89794]},{"type":"Point","coordinates":[81701,90734]},{"type":"Point","coordinates":[81701,90734]},{"type":"Point","coordinates":[85585,89798]},{"type":"Point","coordinates":[85730,89802]},{"type":"Point","coordinates":[85592,89842]},{"type":"Point","coordinates":[85624,89860]},{"type":"Point","coordinates":[85329,89940]},{"type":"Point","coordinates":[85366,90016]},{"type":"Point","coordinates":[80940,91168]},{"type":"Point","coordinates":[82316,90886]},{"type":"Point","coordinates":[80853,91311]},{"type":"Point","coordinates":[85387,90193]},{"type":"Point","coordinates":[85474,90280]},{"type":"Point","coordinates":[85454,90333]},{"type":"Point","coordinates":[85453,90429]},{"type":"Point","coordinates":[82760,91357]},{"type":"Point","coordinates":[81779,91651]},{"type":"Point","coordinates":[82311,91565]},{"type":"Point","coordinates":[82304,91568]},{"type":"Point","coordinates":[82139,91821]},{"type":"Point","coordinates":[82226,91851]},{"type":"Point","coordinates":[81861,92046]},{"type":"Point","coordinates":[81746,92130]},{"type":"Point","coordinates":[81122,92303]},{"type":"Point","coordinates":[82423,92004]},{"type":"Point","coordinates":[81746,92211]},{"type":"Point","coordinates":[85829,91186]},{"type":"Point","coordinates":[81988,92217]},{"type":"Point","coordinates":[81988,92218]},{"type":"Point","coordinates":[81987,92219]},{"type":"Point","coordinates":[81985,92223]},{"type":"Point","coordinates":[81984,92225]},{"type":"Point","coordinates":[81983,92227]},{"type":"Point","coordinates":[81987,92228]},{"type":"Point","coordinates":[81987,92228]},{"type":"Point","coordinates":[81986,92230]},{"type":"Point","coordinates":[81982,92234]},{"type":"Point","coordinates":[81982,92234]},{"type":"Point","coordinates":[81983,92234]},{"type":"Point","coordinates":[81795,92308]},{"type":"Point","coordinates":[82134,92329]},{"type":"Point","coordinates":[81889,92431]},{"type":"Point","coordinates":[82642,92378]},{"type":"Point","coordinates":[82636,92390]},{"type":"Point","coordinates":[82639,92418]},{"type":"Point","coordinates":[82637,92418]},{"type":"Point","coordinates":[83409,92231]},{"type":"Point","coordinates":[82125,92621]},{"type":"Point","coordinates":[82432,92551]},{"type":"Point","coordinates":[82630,92521]},{"type":"Point","coordinates":[81566,92804]},{"type":"Point","coordinates":[81383,92896]},{"type":"Point","coordinates":[81440,92892]},{"type":"Point","coordinates":[82154,92735]},{"type":"Point","coordinates":[45579,96480]},{"type":"Point","coordinates":[82402,92850]},{"type":"Point","coordinates":[82523,92855]},{"type":"Point","coordinates":[82533,92857]},{"type":"Point","coordinates":[82519,92871]},{"type":"Point","coordinates":[82513,92877]},{"type":"Point","coordinates":[85738,92152]},{"type":"Point","coordinates":[45601,96671]},{"type":"Point","coordinates":[82239,93080]},{"type":"Point","coordinates":[82356,93080]},{"type":"Point","coordinates":[82505,93095]},{"type":"Point","coordinates":[82499,93097]},{"type":"Point","coordinates":[82500,93097]},{"type":"Point","coordinates":[82079,93225]},{"type":"Point","coordinates":[83867,92817]},{"type":"Point","coordinates":[45889,96890]},{"type":"Point","coordinates":[83349,93341]},{"type":"Point","coordinates":[84105,93155]},{"type":"Point","coordinates":[83238,93407]},{"type":"Point","coordinates":[83240,93412]},{"type":"Point","coordinates":[47515,97332]},{"type":"Point","coordinates":[47515,97334]},{"type":"Point","coordinates":[47515,97334]},{"type":"Point","coordinates":[47513,97335]},{"type":"Point","coordinates":[47513,97338]},{"type":"Point","coordinates":[47514,97338]},{"type":"Point","coordinates":[47514,97339]},{"type":"Point","coordinates":[47510,97341]},{"type":"Point","coordinates":[82235,93675]},{"type":"Point","coordinates":[84091,93220]},{"type":"Point","coordinates":[46032,97324]},{"type":"Point","coordinates":[82161,93770]},{"type":"Point","coordinates":[46010,97455]},{"type":"Point","coordinates":[83010,93662]},{"type":"Point","coordinates":[85816,92957]},{"type":"Point","coordinates":[82806,93766]},{"type":"Point","coordinates":[46201,97544]},{"type":"Point","coordinates":[82723,93818]},{"type":"Point","coordinates":[82252,93960]},{"type":"Point","coordinates":[82828,93822]},{"type":"Point","coordinates":[82261,93966]},{"type":"Point","coordinates":[48322,97666]},{"type":"Point","coordinates":[83388,93706]},{"type":"Point","coordinates":[46473,97699]},{"type":"Point","coordinates":[82402,94045]},{"type":"Point","coordinates":[85442,93289]},{"type":"Point","coordinates":[46302,97769]},{"type":"Point","coordinates":[83121,93952]},{"type":"Point","coordinates":[81927,94272]},{"type":"Point","coordinates":[82793,94152]},{"type":"Point","coordinates":[82734,94182]},{"type":"Point","coordinates":[83088,94141]},{"type":"Point","coordinates":[83045,94183]},{"type":"Point","coordinates":[83224,94157]},{"type":"Point","coordinates":[83301,94202]},{"type":"Point","coordinates":[83142,94242]},{"type":"Point","coordinates":[83181,94234]},{"type":"Point","coordinates":[83181,94234]},{"type":"Point","coordinates":[82981,94411]},{"type":"Point","coordinates":[82981,94412]},{"type":"Point","coordinates":[82751,94536]},{"type":"Point","coordinates":[83237,94453]},{"type":"Point","coordinates":[83686,94408]},{"type":"Point","coordinates":[83324,94578]},{"type":"Point","coordinates":[83441,94586]},{"type":"Point","coordinates":[83172,94658]},{"type":"Point","coordinates":[83702,94538]},{"type":"Point","coordinates":[83702,94539]},{"type":"Point","coordinates":[83704,94539]},{"type":"Point","coordinates":[83705,94540]},{"type":"Point","coordinates":[82984,94736]},{"type":"Point","coordinates":[83269,94668]},{"type":"Point","coordinates":[83891,94528]},{"type":"Point","coordinates":[83507,94731]},{"type":"Point","coordinates":[83385,94787]},{"type":"Point","coordinates":[82863,94978]},{"type":"Point","coordinates":[85374,94404]},{"type":"Point","coordinates":[83842,94812]},{"type":"Point","coordinates":[85807,94380]},{"type":"Point","coordinates":[85236,94544]},{"type":"Point","coordinates":[85666,94474]},{"type":"Point","coordinates":[85925,94594]},{"type":"Point","coordinates":[85628,94700]},{"type":"Point","coordinates":[84366,95035]},{"type":"Point","coordinates":[85927,94701]},{"type":"Point","coordinates":[85928,94701]},{"type":"Point","coordinates":[85491,94845]},{"type":"Point","coordinates":[85841,94833]},{"type":"Point","coordinates":[85514,94926]},{"type":"Point","coordinates":[85514,94926]},{"type":"Point","coordinates":[85593,94962]},{"type":"Point","coordinates":[85485,95030]},{"type":"Point","coordinates":[85131,95271]},{"type":"Point","coordinates":[85748,95183]},{"type":"Point","coordinates":[85476,95279]},{"type":"Point","coordinates":[85467,95292]},{"type":"Point","coordinates":[85659,95258]},{"type":"Point","coordinates":[85885,95218]},{"type":"Point","coordinates":[85713,95369]},{"type":"Point","coordinates":[85689,95385]},{"type":"Point","coordinates":[85714,95397]},{"type":"Point","coordinates":[85176,95539]},{"type":"Point","coordinates":[84656,95691]},{"type":"Point","coordinates":[84627,95831]},{"type":"Point","coordinates":[85386,95674]},{"type":"Point","coordinates":[85521,95899]},{"type":"Point","coordinates":[85922,95985]},{"type":"Point","coordinates":[84982,96396]},{"type":"Point","coordinates":[85936,96257]},{"type":"Point","coordinates":[85651,96559]},{"type":"Point","coordinates":[85357,96735]},{"type":"Point","coordinates":[85906,97003]},{"type":"Point","coordinates":[85606,97116]},{"type":"Point","coordinates":[85359,97522]},{"type":"Point","coordinates":[83510,98727]},{"type":"Point","coordinates":[83216,99403]},{"type":"Point","coordinates":[83355,99708]},{"type":"Point","coordinates":[82769,99876]},{"type":"Point","coordinates":[83236,99999]},{"type":"Point","coordinates":[22829,86201]},{"type":"Point","coordinates":[22578,86456]},{"type":"Point","coordinates":[22735,86504]},{"type":"Point","coordinates":[22662,86682]},{"type":"Point","coordinates":[23051,86903]},{"type":"Point","coordinates":[22573,86915]},{"type":"Point","coordinates":[22901,86937]},{"type":"Point","coordinates":[22870,86960]},{"type":"Point","coordinates":[22522,86961]},{"type":"Point","coordinates":[22906,86975]},{"type":"Point","coordinates":[22446,86973]},{"type":"Point","coordinates":[22495,86987]},{"type":"Point","coordinates":[22637,86993]},{"type":"Point","coordinates":[22419,87000]},{"type":"Point","coordinates":[22677,87023]},{"type":"Point","coordinates":[22378,87024]},{"type":"Point","coordinates":[22338,87039]},{"type":"Point","coordinates":[22513,87059]},{"type":"Point","coordinates":[22315,87061]},{"type":"Point","coordinates":[22274,87071]},{"type":"Point","coordinates":[22343,87087]},{"type":"Point","coordinates":[22374,87102]},{"type":"Point","coordinates":[22119,87103]},{"type":"Point","coordinates":[22251,87137]},{"type":"Point","coordinates":[22496,87157]},{"type":"Point","coordinates":[22264,87156]},{"type":"Point","coordinates":[22383,87162]},{"type":"Point","coordinates":[22457,87178]},{"type":"Point","coordinates":[22123,87175]},{"type":"Point","coordinates":[22124,87179]},{"type":"Point","coordinates":[22132,87194]},{"type":"Point","coordinates":[23012,87241]},{"type":"Point","coordinates":[22345,87239]},{"type":"Point","coordinates":[22395,87246]},{"type":"Point","coordinates":[22195,87288]},{"type":"Point","coordinates":[22420,87295]},{"type":"Point","coordinates":[22465,87300]},{"type":"Point","coordinates":[22261,87302]},{"type":"Point","coordinates":[23131,87319]},{"type":"Point","coordinates":[22550,87318]},{"type":"Point","coordinates":[22130,87324]},{"type":"Point","coordinates":[22208,87328]},{"type":"Point","coordinates":[22525,87333]},{"type":"Point","coordinates":[22229,87340]},{"type":"Point","coordinates":[22987,87359]},{"type":"Point","coordinates":[22197,87362]},{"type":"Point","coordinates":[22449,87370]},{"type":"Point","coordinates":[22370,87378]},{"type":"Point","coordinates":[22302,87377]},{"type":"Point","coordinates":[22260,87382]},{"type":"Point","coordinates":[22136,87382]},{"type":"Point","coordinates":[22277,87403]},{"type":"Point","coordinates":[22398,87412]},{"type":"Point","coordinates":[22604,87420]},{"type":"Point","coordinates":[22472,87425]},{"type":"Point","coordinates":[22496,87426]},{"type":"Point","coordinates":[22121,87421]},{"type":"Point","coordinates":[22211,87446]},{"type":"Point","coordinates":[22351,87457]},{"type":"Point","coordinates":[22341,87461]},{"type":"Point","coordinates":[22800,87471]},{"type":"Point","coordinates":[22262,87466]},{"type":"Point","coordinates":[22170,87466]},{"type":"Point","coordinates":[22450,87474]},{"type":"Point","coordinates":[22287,87480]},{"type":"Point","coordinates":[22195,87484]},{"type":"Point","coordinates":[22114,87496]},{"type":"Point","coordinates":[22347,87510]},{"type":"Point","coordinates":[22516,87513]},{"type":"Point","coordinates":[22823,87523]},{"type":"Point","coordinates":[23071,87537]},{"type":"Point","coordinates":[22251,87529]},{"type":"Point","coordinates":[22625,87536]},{"type":"Point","coordinates":[22488,87534]},{"type":"Point","coordinates":[22153,87531]},{"type":"Point","coordinates":[22436,87542]},{"type":"Point","coordinates":[22341,87553]},{"type":"Point","coordinates":[22473,87591]},{"type":"Point","coordinates":[22230,87590]},{"type":"Point","coordinates":[22204,87593]},{"type":"Point","coordinates":[22188,87606]},{"type":"Point","coordinates":[22218,87609]},{"type":"Point","coordinates":[22922,87646]},{"type":"Point","coordinates":[22201,87639]},{"type":"Point","coordinates":[22149,87650]},{"type":"Point","coordinates":[22525,87671]},{"type":"Point","coordinates":[22196,87666]},{"type":"Point","coordinates":[22417,87673]},{"type":"Point","coordinates":[22391,87675]},{"type":"Point","coordinates":[22195,87677]},{"type":"Point","coordinates":[22429,87695]},{"type":"Point","coordinates":[22441,87701]},{"type":"Point","coordinates":[22201,87703]},{"type":"Point","coordinates":[22690,87713]},{"type":"Point","coordinates":[22726,87735]},{"type":"Point","coordinates":[22383,87864]},{"type":"Point","coordinates":[23388,87952]},{"type":"Point","coordinates":[22745,88067]},{"type":"Point","coordinates":[22633,88099]},{"type":"Point","coordinates":[22633,88099]},{"type":"Point","coordinates":[22634,88099]},{"type":"Point","coordinates":[22635,88100]},{"type":"Point","coordinates":[22634,88100]},{"type":"Point","coordinates":[22635,88102]},{"type":"Point","coordinates":[22765,88121]},{"type":"Point","coordinates":[22596,88123]},{"type":"Point","coordinates":[23443,88148]},{"type":"Point","coordinates":[22961,88231]},{"type":"Point","coordinates":[22914,88291]},{"type":"Point","coordinates":[22908,88357]},{"type":"Point","coordinates":[22770,88411]},{"type":"Point","coordinates":[26618,88618]},{"type":"Point","coordinates":[25928,88807]},{"type":"Point","coordinates":[25856,88860]},{"type":"Point","coordinates":[25959,88877]},{"type":"Point","coordinates":[25973,88953]},{"type":"Point","coordinates":[26091,89035]},{"type":"Point","coordinates":[26042,89062]},{"type":"Point","coordinates":[26052,89161]},{"type":"Point","coordinates":[26165,89164]},{"type":"Point","coordinates":[26104,89290]},{"type":"Point","coordinates":[25858,89294]},{"type":"Point","coordinates":[25949,89306]},{"type":"Point","coordinates":[26464,89316]},{"type":"Point","coordinates":[25927,89332]},{"type":"Point","coordinates":[25984,89336]},{"type":"Point","coordinates":[26046,89373]},{"type":"Point","coordinates":[26288,89380]},{"type":"Point","coordinates":[26430,89388]},{"type":"Point","coordinates":[25889,89386]},{"type":"Point","coordinates":[26422,89392]},{"type":"Point","coordinates":[26007,89400]},{"type":"Point","coordinates":[26321,89402]},{"type":"Point","coordinates":[26047,89423]},{"type":"Point","coordinates":[26198,89426]},{"type":"Point","coordinates":[26320,89436]},{"type":"Point","coordinates":[25542,89433]},{"type":"Point","coordinates":[25883,89459]},{"type":"Point","coordinates":[26614,89485]},{"type":"Point","coordinates":[25365,89489]},{"type":"Point","coordinates":[26454,89499]},{"type":"Point","coordinates":[26176,89501]},{"type":"Point","coordinates":[26359,89505]},{"type":"Point","coordinates":[26662,89520]},{"type":"Point","coordinates":[26241,89519]},{"type":"Point","coordinates":[26554,89527]},{"type":"Point","coordinates":[26063,89525]},{"type":"Point","coordinates":[25582,89526]},{"type":"Point","coordinates":[25830,89529]},{"type":"Point","coordinates":[26019,89542]},{"type":"Point","coordinates":[25762,89563]},{"type":"Point","coordinates":[26086,89572]},{"type":"Point","coordinates":[26085,89574]},{"type":"Point","coordinates":[26499,89579]},{"type":"Point","coordinates":[25834,89581]},{"type":"Point","coordinates":[26407,89589]},{"type":"Point","coordinates":[26293,89589]},{"type":"Point","coordinates":[26594,89591]},{"type":"Point","coordinates":[25796,89588]},{"type":"Point","coordinates":[26210,89596]},{"type":"Point","coordinates":[26152,89597]},{"type":"Point","coordinates":[26467,89602]},{"type":"Point","coordinates":[26031,89614]},{"type":"Point","coordinates":[26077,89622]},{"type":"Point","coordinates":[26077,89622]},{"type":"Point","coordinates":[25364,89618]},{"type":"Point","coordinates":[26076,89623]},{"type":"Point","coordinates":[26076,89623]},{"type":"Point","coordinates":[26076,89623]},{"type":"Point","coordinates":[26076,89623]},{"type":"Point","coordinates":[26076,89624]},{"type":"Point","coordinates":[26414,89627]},{"type":"Point","coordinates":[25720,89632]},{"type":"Point","coordinates":[25699,89649]},{"type":"Point","coordinates":[26511,89657]},{"type":"Point","coordinates":[26469,89666]},{"type":"Point","coordinates":[26396,89669]},{"type":"Point","coordinates":[25367,89669]},{"type":"Point","coordinates":[26402,89677]},{"type":"Point","coordinates":[25942,89682]},{"type":"Point","coordinates":[26374,89691]},{"type":"Point","coordinates":[25861,89692]},{"type":"Point","coordinates":[26539,89701]},{"type":"Point","coordinates":[26513,89709]},{"type":"Point","coordinates":[26190,89709]},{"type":"Point","coordinates":[25717,89721]},{"type":"Point","coordinates":[25816,89724]},{"type":"Point","coordinates":[25736,89748]},{"type":"Point","coordinates":[26623,89755]},{"type":"Point","coordinates":[25840,89753]},{"type":"Point","coordinates":[26211,89761]},{"type":"Point","coordinates":[26557,89768]},{"type":"Point","coordinates":[26618,89769]},{"type":"Point","coordinates":[25778,89774]},{"type":"Point","coordinates":[26190,89788]},{"type":"Point","coordinates":[26502,89818]},{"type":"Point","coordinates":[26402,89821]},{"type":"Point","coordinates":[26614,89831]},{"type":"Point","coordinates":[26243,89845]},{"type":"Point","coordinates":[25950,89866]},{"type":"Point","coordinates":[26605,89878]},{"type":"Point","coordinates":[26316,89878]},{"type":"Point","coordinates":[25727,89877]},{"type":"Point","coordinates":[26507,89883]},{"type":"Point","coordinates":[26100,89894]},{"type":"Point","coordinates":[25815,89900]},{"type":"Point","coordinates":[26425,89922]},{"type":"Point","coordinates":[25959,89923]},{"type":"Point","coordinates":[26617,89934]},{"type":"Point","coordinates":[26501,89934]},{"type":"Point","coordinates":[26052,89933]},{"type":"Point","coordinates":[26397,89940]},{"type":"Point","coordinates":[26543,89942]},{"type":"Point","coordinates":[25829,89946]},{"type":"Point","coordinates":[26577,89960]},{"type":"Point","coordinates":[25975,89977]},{"type":"Point","coordinates":[26503,89982]},{"type":"Point","coordinates":[26705,89985]},{"type":"Point","coordinates":[26464,90009]},{"type":"Point","coordinates":[26526,90021]},{"type":"Point","coordinates":[25766,90025]},{"type":"Point","coordinates":[25777,90044]},{"type":"Point","coordinates":[25595,90048]},{"type":"Point","coordinates":[25711,90051]},{"type":"Point","coordinates":[25774,90053]},{"type":"Point","coordinates":[26182,90059]},{"type":"Point","coordinates":[26491,90066]},{"type":"Point","coordinates":[26989,90078]},{"type":"Point","coordinates":[26439,90084]},{"type":"Point","coordinates":[26581,90108]},{"type":"Point","coordinates":[26748,90112]},{"type":"Point","coordinates":[26560,90118]},{"type":"Point","coordinates":[26736,90124]},{"type":"Point","coordinates":[26484,90126]},{"type":"Point","coordinates":[26855,90134]},{"type":"Point","coordinates":[26357,90134]},{"type":"Point","coordinates":[26682,90143]},{"type":"Point","coordinates":[26822,90150]},{"type":"Point","coordinates":[26931,90153]},{"type":"Point","coordinates":[26571,90153]},{"type":"Point","coordinates":[26349,90159]},{"type":"Point","coordinates":[26794,90170]},{"type":"Point","coordinates":[26568,90171]},{"type":"Point","coordinates":[26990,90186]},{"type":"Point","coordinates":[26257,90188]},{"type":"Point","coordinates":[26623,90191]},{"type":"Point","coordinates":[26752,90196]},{"type":"Point","coordinates":[26766,90200]},{"type":"Point","coordinates":[26977,90201]},{"type":"Point","coordinates":[26952,90203]},{"type":"Point","coordinates":[26951,90204]},{"type":"Point","coordinates":[26796,90207]},{"type":"Point","coordinates":[26988,90214]},{"type":"Point","coordinates":[26956,90217]},{"type":"Point","coordinates":[26697,90231]},{"type":"Point","coordinates":[26701,90232]},{"type":"Point","coordinates":[26952,90246]},{"type":"Point","coordinates":[26854,90260]},{"type":"Point","coordinates":[26410,90259]},{"type":"Point","coordinates":[26719,90262]},{"type":"Point","coordinates":[26290,90261]},{"type":"Point","coordinates":[26486,90265]},{"type":"Point","coordinates":[26214,90263]},{"type":"Point","coordinates":[26607,90272]},{"type":"Point","coordinates":[26635,90273]},{"type":"Point","coordinates":[26870,90285]},{"type":"Point","coordinates":[26705,90289]},{"type":"Point","coordinates":[26941,90291]},{"type":"Point","coordinates":[26970,90295]},{"type":"Point","coordinates":[26206,90292]},{"type":"Point","coordinates":[26877,90299]},{"type":"Point","coordinates":[26399,90297]},{"type":"Point","coordinates":[26708,90305]},{"type":"Point","coordinates":[26658,90306]},{"type":"Point","coordinates":[26461,90308]},{"type":"Point","coordinates":[26959,90321]},{"type":"Point","coordinates":[26959,90327]},{"type":"Point","coordinates":[26632,90333]},{"type":"Point","coordinates":[26501,90333]},{"type":"Point","coordinates":[27045,90346]},{"type":"Point","coordinates":[26773,90357]},{"type":"Point","coordinates":[26637,90358]},{"type":"Point","coordinates":[26365,90366]},{"type":"Point","coordinates":[26226,90366]},{"type":"Point","coordinates":[26734,90369]},{"type":"Point","coordinates":[26539,90375]},{"type":"Point","coordinates":[26700,90377]},{"type":"Point","coordinates":[26650,90379]},{"type":"Point","coordinates":[26962,90386]},{"type":"Point","coordinates":[26178,90392]},{"type":"Point","coordinates":[26336,90395]},{"type":"Point","coordinates":[26602,90401]},{"type":"Point","coordinates":[26425,90400]},{"type":"Point","coordinates":[26583,90403]},{"type":"Point","coordinates":[26813,90417]},{"type":"Point","coordinates":[26563,90418]},{"type":"Point","coordinates":[26959,90420]},{"type":"Point","coordinates":[26959,90420]},{"type":"Point","coordinates":[26220,90418]},{"type":"Point","coordinates":[26958,90424]},{"type":"Point","coordinates":[26958,90424]},{"type":"Point","coordinates":[26956,90434]},{"type":"Point","coordinates":[26458,90433]},{"type":"Point","coordinates":[26470,90438]},{"type":"Point","coordinates":[26574,90441]},{"type":"Point","coordinates":[26957,90444]},{"type":"Point","coordinates":[26957,90445]},{"type":"Point","coordinates":[26881,90466]},{"type":"Point","coordinates":[26768,90473]},{"type":"Point","coordinates":[26356,90479]},{"type":"Point","coordinates":[26766,90485]},{"type":"Point","coordinates":[26538,90486]},{"type":"Point","coordinates":[26379,90494]},{"type":"Point","coordinates":[26623,90499]},{"type":"Point","coordinates":[27064,90511]},{"type":"Point","coordinates":[26590,90510]},{"type":"Point","coordinates":[26750,90523]},{"type":"Point","coordinates":[26189,90520]},{"type":"Point","coordinates":[26691,90523]},{"type":"Point","coordinates":[27071,90527]},{"type":"Point","coordinates":[26623,90528]},{"type":"Point","coordinates":[26288,90534]},{"type":"Point","coordinates":[26742,90537]},{"type":"Point","coordinates":[26940,90544]},{"type":"Point","coordinates":[27019,90545]},{"type":"Point","coordinates":[26569,90549]},{"type":"Point","coordinates":[26212,90551]},{"type":"Point","coordinates":[26690,90568]},{"type":"Point","coordinates":[26815,90570]},{"type":"Point","coordinates":[26794,90593]},{"type":"Point","coordinates":[26826,90597]},{"type":"Point","coordinates":[26595,90599]},{"type":"Point","coordinates":[26668,90599]},{"type":"Point","coordinates":[26172,90600]},{"type":"Point","coordinates":[26669,90606]},{"type":"Point","coordinates":[26280,90606]},{"type":"Point","coordinates":[26802,90621]},{"type":"Point","coordinates":[26717,90621]},{"type":"Point","coordinates":[26269,90621]},{"type":"Point","coordinates":[26578,90622]},{"type":"Point","coordinates":[26774,90628]},{"type":"Point","coordinates":[26752,90630]},{"type":"Point","coordinates":[27061,90633]},{"type":"Point","coordinates":[26470,90658]},{"type":"Point","coordinates":[26861,90665]},{"type":"Point","coordinates":[27026,90689]},{"type":"Point","coordinates":[26819,90690]},{"type":"Point","coordinates":[26431,90693]},{"type":"Point","coordinates":[27005,90699]},{"type":"Point","coordinates":[26833,90705]},{"type":"Point","coordinates":[26345,90712]},{"type":"Point","coordinates":[26500,90716]},{"type":"Point","coordinates":[26375,90720]},{"type":"Point","coordinates":[26395,90723]},{"type":"Point","coordinates":[26570,90732]},{"type":"Point","coordinates":[26597,90733]},{"type":"Point","coordinates":[26672,90734]},{"type":"Point","coordinates":[26873,90741]},{"type":"Point","coordinates":[26470,90748]},{"type":"Point","coordinates":[27023,90759]},{"type":"Point","coordinates":[26917,90763]},{"type":"Point","coordinates":[26491,90765]},{"type":"Point","coordinates":[26840,90773]},{"type":"Point","coordinates":[26378,90774]},{"type":"Point","coordinates":[26948,90782]},{"type":"Point","coordinates":[26947,90790]},{"type":"Point","coordinates":[26992,90810]},{"type":"Point","coordinates":[26950,90813]},{"type":"Point","coordinates":[26641,90813]},{"type":"Point","coordinates":[26805,90816]},{"type":"Point","coordinates":[26501,90817]},{"type":"Point","coordinates":[26208,90821]},{"type":"Point","coordinates":[26290,90825]},{"type":"Point","coordinates":[28803,91390]},{"type":"Point","coordinates":[28164,91537]},{"type":"Point","coordinates":[29233,91582]},{"type":"Point","coordinates":[29761,91670]},{"type":"Point","coordinates":[29288,91685]},{"type":"Point","coordinates":[29898,91705]},{"type":"Point","coordinates":[30085,91777]},{"type":"Point","coordinates":[30214,91792]},{"type":"Point","coordinates":[29769,91795]},{"type":"Point","coordinates":[29143,91820]},{"type":"Point","coordinates":[28696,91824]},{"type":"Point","coordinates":[29625,91877]},{"type":"Point","coordinates":[30636,91875]},{"type":"Point","coordinates":[30118,91891]},{"type":"Point","coordinates":[30221,91907]},{"type":"Point","coordinates":[29510,91919]},{"type":"Point","coordinates":[30163,91938]},{"type":"Point","coordinates":[29460,92046]},{"type":"Point","coordinates":[29725,92050]},{"type":"Point","coordinates":[29490,92054]},{"type":"Point","coordinates":[29474,92055]},{"type":"Point","coordinates":[30250,92056]},{"type":"Point","coordinates":[29372,92113]},{"type":"Point","coordinates":[29234,92125]},{"type":"Point","coordinates":[29243,92133]},{"type":"Point","coordinates":[29566,92265]},{"type":"Point","coordinates":[29394,92280]},{"type":"Point","coordinates":[29625,92296]},{"type":"Point","coordinates":[29841,92368]},{"type":"Point","coordinates":[30047,92370]},{"type":"Point","coordinates":[29889,92378]},{"type":"Point","coordinates":[29962,92381]},{"type":"Point","coordinates":[30031,92382]},{"type":"Point","coordinates":[30108,92383]},{"type":"Point","coordinates":[29949,92384]},{"type":"Point","coordinates":[30191,92388]},{"type":"Point","coordinates":[29936,92394]},{"type":"Point","coordinates":[30204,92398]},{"type":"Point","coordinates":[29813,92401]},{"type":"Point","coordinates":[30033,92404]},{"type":"Point","coordinates":[30047,92410]},{"type":"Point","coordinates":[29885,92411]},{"type":"Point","coordinates":[30187,92411]},{"type":"Point","coordinates":[30096,92412]},{"type":"Point","coordinates":[30170,92412]},{"type":"Point","coordinates":[29907,92418]},{"type":"Point","coordinates":[29957,92418]},{"type":"Point","coordinates":[30060,92419]},{"type":"Point","coordinates":[29978,92421]},{"type":"Point","coordinates":[30696,92420]},{"type":"Point","coordinates":[30060,92427]},{"type":"Point","coordinates":[30310,92427]},{"type":"Point","coordinates":[30393,92433]},{"type":"Point","coordinates":[30146,92435]},{"type":"Point","coordinates":[29931,92444]},{"type":"Point","coordinates":[30174,92448]},{"type":"Point","coordinates":[30061,92450]},{"type":"Point","coordinates":[30198,92451]},{"type":"Point","coordinates":[30162,92452]},{"type":"Point","coordinates":[29820,92455]},{"type":"Point","coordinates":[30224,92454]},{"type":"Point","coordinates":[30153,92455]},{"type":"Point","coordinates":[30147,92456]},{"type":"Point","coordinates":[30025,92458]},{"type":"Point","coordinates":[30238,92457]},{"type":"Point","coordinates":[30628,92457]},{"type":"Point","coordinates":[30109,92462]},{"type":"Point","coordinates":[29819,92469]},{"type":"Point","coordinates":[30057,92469]},{"type":"Point","coordinates":[30124,92470]},{"type":"Point","coordinates":[30205,92471]},{"type":"Point","coordinates":[30057,92474]},{"type":"Point","coordinates":[29905,92476]},{"type":"Point","coordinates":[29968,92476]},{"type":"Point","coordinates":[29960,92477]},{"type":"Point","coordinates":[30023,92484]},{"type":"Point","coordinates":[29994,92484]},{"type":"Point","coordinates":[30199,92485]},{"type":"Point","coordinates":[29897,92490]},{"type":"Point","coordinates":[30110,92490]},{"type":"Point","coordinates":[29871,92493]},{"type":"Point","coordinates":[30132,92493]},{"type":"Point","coordinates":[30177,92494]},{"type":"Point","coordinates":[29927,92497]},{"type":"Point","coordinates":[30065,92497]},{"type":"Point","coordinates":[29932,92499]},{"type":"Point","coordinates":[29967,92501]},{"type":"Point","coordinates":[29816,92502]},{"type":"Point","coordinates":[29879,92502]},{"type":"Point","coordinates":[29859,92503]},{"type":"Point","coordinates":[30095,92503]},{"type":"Point","coordinates":[30036,92505]},{"type":"Point","coordinates":[29976,92507]},{"type":"Point","coordinates":[29892,92508]},{"type":"Point","coordinates":[30119,92510]},{"type":"Point","coordinates":[29832,92521]},{"type":"Point","coordinates":[30234,92519]},{"type":"Point","coordinates":[30065,92522]},{"type":"Point","coordinates":[29817,92524]},{"type":"Point","coordinates":[30037,92525]},{"type":"Point","coordinates":[29862,92531]},{"type":"Point","coordinates":[30104,92531]},{"type":"Point","coordinates":[29913,92533]},{"type":"Point","coordinates":[29854,92537]},{"type":"Point","coordinates":[30250,92537]},{"type":"Point","coordinates":[30102,92539]},{"type":"Point","coordinates":[30173,92542]},{"type":"Point","coordinates":[30085,92543]},{"type":"Point","coordinates":[29903,92545]},{"type":"Point","coordinates":[30593,92542]},{"type":"Point","coordinates":[30141,92547]},{"type":"Point","coordinates":[30106,92551]},{"type":"Point","coordinates":[29909,92552]},{"type":"Point","coordinates":[29922,92556]},{"type":"Point","coordinates":[29892,92560]},{"type":"Point","coordinates":[29812,92567]},{"type":"Point","coordinates":[30122,92566]},{"type":"Point","coordinates":[30131,92567]},{"type":"Point","coordinates":[29843,92570]},{"type":"Point","coordinates":[30103,92574]},{"type":"Point","coordinates":[29899,92579]},{"type":"Point","coordinates":[29964,92580]},{"type":"Point","coordinates":[30693,92577]},{"type":"Point","coordinates":[30429,92579]},{"type":"Point","coordinates":[30029,92584]},{"type":"Point","coordinates":[30073,92585]},{"type":"Point","coordinates":[30081,92586]},{"type":"Point","coordinates":[29885,92595]},{"type":"Point","coordinates":[29810,92597]},{"type":"Point","coordinates":[29808,92597]},{"type":"Point","coordinates":[29903,92601]},{"type":"Point","coordinates":[30254,92600]},{"type":"Point","coordinates":[30180,92601]},{"type":"Point","coordinates":[30219,92606]},{"type":"Point","coordinates":[30130,92607]},{"type":"Point","coordinates":[29961,92609]},{"type":"Point","coordinates":[30626,92608]},{"type":"Point","coordinates":[29867,92614]},{"type":"Point","coordinates":[30124,92615]},{"type":"Point","coordinates":[30198,92617]},{"type":"Point","coordinates":[30224,92617]},{"type":"Point","coordinates":[30623,92616]},{"type":"Point","coordinates":[30197,92623]},{"type":"Point","coordinates":[30394,92629]},{"type":"Point","coordinates":[30153,92631]},{"type":"Point","coordinates":[30145,92642]},{"type":"Point","coordinates":[30186,92642]},{"type":"Point","coordinates":[30325,92652]},{"type":"Point","coordinates":[29813,92656]},{"type":"Point","coordinates":[29942,92656]},{"type":"Point","coordinates":[30327,92678]},{"type":"Point","coordinates":[30260,92679]},{"type":"Point","coordinates":[29858,92684]},{"type":"Point","coordinates":[29973,92694]},{"type":"Point","coordinates":[30038,92696]},{"type":"Point","coordinates":[30205,92696]},{"type":"Point","coordinates":[30112,92698]},{"type":"Point","coordinates":[29815,92702]},{"type":"Point","coordinates":[30187,92703]},{"type":"Point","coordinates":[30156,92704]},{"type":"Point","coordinates":[29897,92719]},{"type":"Point","coordinates":[29926,92718]},{"type":"Point","coordinates":[30161,92718]},{"type":"Point","coordinates":[30331,92717]},{"type":"Point","coordinates":[30112,92724]},{"type":"Point","coordinates":[30674,92722]},{"type":"Point","coordinates":[30088,92728]},{"type":"Point","coordinates":[29992,92729]},{"type":"Point","coordinates":[30269,92736]},{"type":"Point","coordinates":[29862,92738]},{"type":"Point","coordinates":[29813,92739]},{"type":"Point","coordinates":[29903,92740]},{"type":"Point","coordinates":[30251,92741]},{"type":"Point","coordinates":[30566,92742]},{"type":"Point","coordinates":[29892,92746]},{"type":"Point","coordinates":[30223,92745]},{"type":"Point","coordinates":[30192,92752]},{"type":"Point","coordinates":[30082,92753]},{"type":"Point","coordinates":[30055,92755]},{"type":"Point","coordinates":[30149,92755]},{"type":"Point","coordinates":[30455,92756]},{"type":"Point","coordinates":[30014,92759]},{"type":"Point","coordinates":[30022,92765]},{"type":"Point","coordinates":[30187,92772]},{"type":"Point","coordinates":[30239,92772]},{"type":"Point","coordinates":[29818,92777]},{"type":"Point","coordinates":[30211,92778]},{"type":"Point","coordinates":[30021,92796]},{"type":"Point","coordinates":[30378,92795]},{"type":"Point","coordinates":[30432,92795]},{"type":"Point","coordinates":[30173,92796]},{"type":"Point","coordinates":[29811,92798]},{"type":"Point","coordinates":[30202,92813]},{"type":"Point","coordinates":[30233,92815]},{"type":"Point","coordinates":[29991,92822]},{"type":"Point","coordinates":[30375,92822]},{"type":"Point","coordinates":[29595,92828]},{"type":"Point","coordinates":[29876,92828]},{"type":"Point","coordinates":[30257,92831]},{"type":"Point","coordinates":[29911,92837]},{"type":"Point","coordinates":[30185,92836]},{"type":"Point","coordinates":[30109,92840]},{"type":"Point","coordinates":[30197,92843]},{"type":"Point","coordinates":[29870,92854]},{"type":"Point","coordinates":[29954,92854]},{"type":"Point","coordinates":[30465,92860]},{"type":"Point","coordinates":[30596,92862]},{"type":"Point","coordinates":[29938,92867]},{"type":"Point","coordinates":[30598,92867]},{"type":"Point","coordinates":[30598,92867]},{"type":"Point","coordinates":[30598,92867]},{"type":"Point","coordinates":[30598,92868]},{"type":"Point","coordinates":[30212,92870]},{"type":"Point","coordinates":[30165,92873]},{"type":"Point","coordinates":[30244,92876]},{"type":"Point","coordinates":[29894,92878]},{"type":"Point","coordinates":[29872,92882]},{"type":"Point","coordinates":[30181,92892]},{"type":"Point","coordinates":[30088,92896]},{"type":"Point","coordinates":[30031,92897]},{"type":"Point","coordinates":[30114,92899]},{"type":"Point","coordinates":[30155,92899]},{"type":"Point","coordinates":[30142,92907]},{"type":"Point","coordinates":[30134,92911]},{"type":"Point","coordinates":[30037,92912]},{"type":"Point","coordinates":[30524,92913]},{"type":"Point","coordinates":[30081,92915]},{"type":"Point","coordinates":[30256,92921]},{"type":"Point","coordinates":[29899,92925]},{"type":"Point","coordinates":[29920,92926]},{"type":"Point","coordinates":[30323,92926]},{"type":"Point","coordinates":[29863,92930]},{"type":"Point","coordinates":[30028,92930]},{"type":"Point","coordinates":[30233,92931]},{"type":"Point","coordinates":[30038,92933]},{"type":"Point","coordinates":[29860,92935]},{"type":"Point","coordinates":[29807,92935]},{"type":"Point","coordinates":[30080,92935]},{"type":"Point","coordinates":[29821,92940]},{"type":"Point","coordinates":[30087,92940]},{"type":"Point","coordinates":[30129,92943]},{"type":"Point","coordinates":[30147,92944]},{"type":"Point","coordinates":[30259,92945]},{"type":"Point","coordinates":[30261,92949]},{"type":"Point","coordinates":[29952,92956]},{"type":"Point","coordinates":[30174,92955]},{"type":"Point","coordinates":[30394,92956]},{"type":"Point","coordinates":[29888,92960]},{"type":"Point","coordinates":[29955,92970]},{"type":"Point","coordinates":[30048,92972]},{"type":"Point","coordinates":[30097,92972]},{"type":"Point","coordinates":[30632,92970]},{"type":"Point","coordinates":[30016,92976]},{"type":"Point","coordinates":[30119,92979]},{"type":"Point","coordinates":[29893,92983]},{"type":"Point","coordinates":[30103,92983]},{"type":"Point","coordinates":[29956,92984]},{"type":"Point","coordinates":[30532,92990]},{"type":"Point","coordinates":[30199,92999]},{"type":"Point","coordinates":[29970,93000]},{"type":"Point","coordinates":[29812,93008]},{"type":"Point","coordinates":[30241,93010]},{"type":"Point","coordinates":[29734,93014]},{"type":"Point","coordinates":[30246,93016]},{"type":"Point","coordinates":[30137,93021]},{"type":"Point","coordinates":[30250,93027]},{"type":"Point","coordinates":[30259,93029]},{"type":"Point","coordinates":[30171,93030]},{"type":"Point","coordinates":[30320,93040]},{"type":"Point","coordinates":[30130,93044]},{"type":"Point","coordinates":[30672,93043]},{"type":"Point","coordinates":[30262,93049]},{"type":"Point","coordinates":[30195,93051]},{"type":"Point","coordinates":[30228,93052]},{"type":"Point","coordinates":[30217,93053]},{"type":"Point","coordinates":[29948,93055]},{"type":"Point","coordinates":[29956,93067]},{"type":"Point","coordinates":[30189,93069]},{"type":"Point","coordinates":[29902,93074]},{"type":"Point","coordinates":[29869,93075]},{"type":"Point","coordinates":[30372,93075]},{"type":"Point","coordinates":[29974,93078]},{"type":"Point","coordinates":[30089,93080]},{"type":"Point","coordinates":[29964,93083]},{"type":"Point","coordinates":[29919,93086]},{"type":"Point","coordinates":[30360,93085]},{"type":"Point","coordinates":[30250,93086]},{"type":"Point","coordinates":[30127,93093]},{"type":"Point","coordinates":[30619,93096]},{"type":"Point","coordinates":[29949,93104]},{"type":"Point","coordinates":[29809,93105]},{"type":"Point","coordinates":[29838,93107]},{"type":"Point","coordinates":[29929,93107]},{"type":"Point","coordinates":[29853,93108]},{"type":"Point","coordinates":[30230,93108]},{"type":"Point","coordinates":[29852,93126]},{"type":"Point","coordinates":[30226,93128]},{"type":"Point","coordinates":[30074,93130]},{"type":"Point","coordinates":[30062,93132]},{"type":"Point","coordinates":[30204,93132]},{"type":"Point","coordinates":[30103,93135]},{"type":"Point","coordinates":[29607,93567]},{"type":"Point","coordinates":[31743,94678]},{"type":"Point","coordinates":[31629,95047]},{"type":"Point","coordinates":[31924,95147]},{"type":"Point","coordinates":[31409,95205]},{"type":"Point","coordinates":[32005,95284]},{"type":"Point","coordinates":[31230,95390]},{"type":"Point","coordinates":[32305,95519]},{"type":"Point","coordinates":[31237,95602]},{"type":"Point","coordinates":[31927,95607]},{"type":"Point","coordinates":[32040,95670]},{"type":"Point","coordinates":[30819,95694]},{"type":"Point","coordinates":[31209,95830]},{"type":"Point","coordinates":[31078,95936]},{"type":"Point","coordinates":[32168,95936]},{"type":"Point","coordinates":[31513,95952]},{"type":"Point","coordinates":[32162,95985]},{"type":"Point","coordinates":[32788,96071]},{"type":"Point","coordinates":[31705,96215]},{"type":"Point","coordinates":[32052,96272]},{"type":"Point","coordinates":[30792,96290]},{"type":"Point","coordinates":[32086,96295]},{"type":"Point","coordinates":[32909,96320]},{"type":"Point","coordinates":[31816,96367]},{"type":"Point","coordinates":[30761,96390]},{"type":"Point","coordinates":[32241,96390]},{"type":"Point","coordinates":[31717,96402]},{"type":"Point","coordinates":[31145,96412]},{"type":"Point","coordinates":[31933,96435]},{"type":"Point","coordinates":[30644,96467]},{"type":"Point","coordinates":[32142,96455]},{"type":"Point","coordinates":[30854,96592]},{"type":"Point","coordinates":[30854,96592]},{"type":"Point","coordinates":[30854,96592]},{"type":"Point","coordinates":[31584,96658]},{"type":"Point","coordinates":[32319,96693]},{"type":"Point","coordinates":[30865,96730]},{"type":"Point","coordinates":[30589,96740]},{"type":"Point","coordinates":[32373,96726]},{"type":"Point","coordinates":[30799,96755]},{"type":"Point","coordinates":[31826,96750]},{"type":"Point","coordinates":[30927,96763]},{"type":"Point","coordinates":[32017,96766]},{"type":"Point","coordinates":[31998,96773]},{"type":"Point","coordinates":[30709,96810]},{"type":"Point","coordinates":[30706,96813]},{"type":"Point","coordinates":[31792,96815]},{"type":"Point","coordinates":[30350,96850]},{"type":"Point","coordinates":[32444,96843]},{"type":"Point","coordinates":[32079,96868]},{"type":"Point","coordinates":[30844,96911]},{"type":"Point","coordinates":[30844,96911]},{"type":"Point","coordinates":[31991,96903]},{"type":"Point","coordinates":[30968,96914]},{"type":"Point","coordinates":[30346,96926]},{"type":"Point","coordinates":[30774,96940]},{"type":"Point","coordinates":[30774,96940]},{"type":"Point","coordinates":[32222,96930]},{"type":"Point","coordinates":[32887,96951]},{"type":"Point","coordinates":[32392,96984]},{"type":"Point","coordinates":[32396,97019]},{"type":"Point","coordinates":[32407,97071]},{"type":"Point","coordinates":[32312,97074]},{"type":"Point","coordinates":[30862,97099]},{"type":"Point","coordinates":[32184,97095]},{"type":"Point","coordinates":[33008,97088]},{"type":"Point","coordinates":[32377,97098]},{"type":"Point","coordinates":[32445,97099]},{"type":"Point","coordinates":[32816,97103]},{"type":"Point","coordinates":[32104,97132]},{"type":"Point","coordinates":[30891,97155]},{"type":"Point","coordinates":[30890,97155]},{"type":"Point","coordinates":[32533,97180]},{"type":"Point","coordinates":[31494,97200]},{"type":"Point","coordinates":[31494,97200]},{"type":"Point","coordinates":[32104,97198]},{"type":"Point","coordinates":[32988,97196]},{"type":"Point","coordinates":[32988,97196]},{"type":"Point","coordinates":[30887,97235]},{"type":"Point","coordinates":[32280,97253]},{"type":"Point","coordinates":[32396,97280]},{"type":"Point","coordinates":[32241,97282]},{"type":"Point","coordinates":[32484,97291]},{"type":"Point","coordinates":[32327,97293]},{"type":"Point","coordinates":[30913,97315]},{"type":"Point","coordinates":[30909,97327]},{"type":"Point","coordinates":[30909,97328]},{"type":"Point","coordinates":[32385,97317]},{"type":"Point","coordinates":[32166,97328]},{"type":"Point","coordinates":[32185,97408]},{"type":"Point","coordinates":[30963,97435]},{"type":"Point","coordinates":[32462,97431]},{"type":"Point","coordinates":[30976,97463]},{"type":"Point","coordinates":[32107,97467]},{"type":"Point","coordinates":[30908,97481]},{"type":"Point","coordinates":[30969,97540]},{"type":"Point","coordinates":[32373,97529]},{"type":"Point","coordinates":[32360,97549]},{"type":"Point","coordinates":[32529,97554]},{"type":"Point","coordinates":[32451,97569]},{"type":"Point","coordinates":[32263,97596]},{"type":"Point","coordinates":[32500,97595]},{"type":"Point","coordinates":[30990,97619]},{"type":"Point","coordinates":[32755,97605]},{"type":"Point","coordinates":[31023,97627]},{"type":"Point","coordinates":[32490,97632]},{"type":"Point","coordinates":[32185,97653]},{"type":"Point","coordinates":[32332,97657]},{"type":"Point","coordinates":[31078,97686]},{"type":"Point","coordinates":[32271,97690]},{"type":"Point","coordinates":[32232,97717]},{"type":"Point","coordinates":[31996,98090]},{"type":"Point","coordinates":[31035,98461]},{"type":"Point","coordinates":[31133,98877]},{"type":"Point","coordinates":[31621,99033]},{"type":"Point","coordinates":[31508,99105]}]}},"arcs":[]} \ No newline at end of file diff --git a/frontend/public/gridded-world-test.json b/frontend/public/gridded-world-test.json new file mode 100644 index 00000000..e69de29b diff --git a/frontend/public/gridded-world.json b/frontend/public/gridded-world.json new file mode 100644 index 00000000..f111056b --- /dev/null +++ b/frontend/public/gridded-world.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc289fadd54de46d4bce96e4977c2d1a96cf98b2da0fa0017fe4b7cd03a40e0a +size 286186280 diff --git a/frontend/public/railroads-topo.json b/frontend/public/railroads-topo.json index 5814c9e4..add89891 100644 --- a/frontend/public/railroads-topo.json +++ b/frontend/public/railroads-topo.json @@ -1 +1 @@ -{"type":"Topology","bbox":[23.447448777333022,14.508117029941332,945.1962423765581,596.614598202052],"transform":{"scale":[0.00921758011179337,0.005821123022951336],"translate":[23.447448777333022,14.508117029941332]},"objects":{"overlay":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0]},{"type":"LineString","arcs":[1]},{"type":"LineString","arcs":[2]},{"type":"LineString","arcs":[3]},{"type":"LineString","arcs":[4]},{"type":"LineString","arcs":[5]},{"type":"LineString","arcs":[6]},{"type":"LineString","arcs":[7]},{"type":"LineString","arcs":[8]},{"type":"LineString","arcs":[9]},{"type":"LineString","arcs":[10]},{"type":"LineString","arcs":[11]},{"type":"LineString","arcs":[12]},{"type":"LineString","arcs":[13]},{"type":"LineString","arcs":[14]},{"type":"LineString","arcs":[15]},{"type":"LineString","arcs":[16]},{"type":"LineString","arcs":[17]},{"type":"LineString","arcs":[18]},{"type":"LineString","arcs":[19]},{"type":"LineString","arcs":[20]},{"type":"LineString","arcs":[21]},{"type":"LineString","arcs":[22]},{"type":"LineString","arcs":[23]},{"type":"LineString","arcs":[24]},{"type":"LineString","arcs":[25]},{"type":"LineString","arcs":[26]},{"type":"LineString","arcs":[27]},{"type":"LineString","arcs":[28]},{"type":"LineString","arcs":[29]},{"type":"LineString","arcs":[30]},{"type":"LineString","arcs":[31]},{"type":"LineString","arcs":[32]},{"type":"LineString","arcs":[33]},{"type":"LineString","arcs":[34]},{"type":"LineString","arcs":[35]},{"type":"LineString","arcs":[36]},{"type":"LineString","arcs":[37]},{"type":"LineString","arcs":[38]},{"type":"LineString","arcs":[39]},{"type":"LineString","arcs":[40]},{"type":"LineString","arcs":[41]},{"type":"LineString","arcs":[42]},{"type":"LineString","arcs":[43]},{"type":"LineString","arcs":[44]},{"type":"LineString","arcs":[45]},{"type":"LineString","arcs":[46]},{"type":"LineString","arcs":[47]},{"type":"LineString","arcs":[48]},{"type":"LineString","arcs":[49]},{"type":"LineString","arcs":[50]},{"type":"LineString","arcs":[51]},{"type":"LineString","arcs":[52]},{"type":"LineString","arcs":[53]},{"type":"LineString","arcs":[54]},{"type":"LineString","arcs":[55]},{"type":"LineString","arcs":[56]},{"type":"LineString","arcs":[57]},{"type":"LineString","arcs":[58]},{"type":"LineString","arcs":[59]},{"type":"LineString","arcs":[60]},{"type":"LineString","arcs":[61]},{"type":"LineString","arcs":[62]},{"type":"LineString","arcs":[63]},{"type":"LineString","arcs":[64]},{"type":"LineString","arcs":[65]},{"type":"LineString","arcs":[66]},{"type":"LineString","arcs":[67]},{"type":"LineString","arcs":[68]},{"type":"LineString","arcs":[69]},{"type":"LineString","arcs":[70]},{"type":"LineString","arcs":[71]},{"type":"LineString","arcs":[72]},{"type":"LineString","arcs":[73]},{"type":"LineString","arcs":[74]},{"type":"LineString","arcs":[75]},{"type":"LineString","arcs":[76]},{"type":"LineString","arcs":[77]},{"type":"LineString","arcs":[78]},{"type":"LineString","arcs":[79]},{"type":"LineString","arcs":[80]},{"type":"LineString","arcs":[81]},{"type":"LineString","arcs":[82]},{"type":"LineString","arcs":[83]},{"type":"LineString","arcs":[84]},{"type":"LineString","arcs":[85]},{"type":"LineString","arcs":[86]},{"type":"LineString","arcs":[87]},{"type":"LineString","arcs":[88]},{"type":"LineString","arcs":[89]},{"type":"LineString","arcs":[90]},{"type":"LineString","arcs":[91]},{"type":"LineString","arcs":[92]},{"type":"LineString","arcs":[93]},{"type":"LineString","arcs":[94]},{"type":"LineString","arcs":[95]},{"type":"LineString","arcs":[96]},{"type":"LineString","arcs":[97]},{"type":"LineString","arcs":[98]},{"type":"LineString","arcs":[99]},{"type":"LineString","arcs":[100]},{"type":"LineString","arcs":[101]},{"type":"LineString","arcs":[102]},{"type":"LineString","arcs":[103]},{"type":"LineString","arcs":[104]},{"type":"LineString","arcs":[105]},{"type":"LineString","arcs":[106]},{"type":"LineString","arcs":[107]},{"type":"LineString","arcs":[108]},{"type":"LineString","arcs":[109]},{"type":"LineString","arcs":[110]},{"type":"LineString","arcs":[111]},{"type":"LineString","arcs":[112]},{"type":"LineString","arcs":[113]},{"type":"LineString","arcs":[114]},{"type":"LineString","arcs":[115]},{"type":"LineString","arcs":[116]},{"type":"LineString","arcs":[117]},{"type":"LineString","arcs":[118]},{"type":"LineString","arcs":[119]},{"type":"LineString","arcs":[120]},{"type":"LineString","arcs":[121]},{"type":"LineString","arcs":[122]},{"type":"LineString","arcs":[123]},{"type":"LineString","arcs":[124]},{"type":"LineString","arcs":[125]},{"type":"LineString","arcs":[126]},{"type":"LineString","arcs":[127]},{"type":"LineString","arcs":[128]},{"type":"LineString","arcs":[129]},{"type":"LineString","arcs":[130]},{"type":"LineString","arcs":[131]},{"type":"LineString","arcs":[132]},{"type":"LineString","arcs":[133]},{"type":"LineString","arcs":[134]},{"type":"LineString","arcs":[135]},{"type":"LineString","arcs":[136]},{"type":"LineString","arcs":[137]},{"type":"LineString","arcs":[138]},{"type":"LineString","arcs":[139]},{"type":"LineString","arcs":[140]},{"type":"LineString","arcs":[141]},{"type":"LineString","arcs":[142]},{"type":"LineString","arcs":[143]},{"type":"LineString","arcs":[144]},{"type":"LineString","arcs":[145]},{"type":"LineString","arcs":[146]},{"type":"LineString","arcs":[147]},{"type":"LineString","arcs":[148]},{"type":"LineString","arcs":[149]},{"type":"LineString","arcs":[150]},{"type":"LineString","arcs":[151]},{"type":"LineString","arcs":[152]},{"type":"LineString","arcs":[153]},{"type":"LineString","arcs":[154]},{"type":"LineString","arcs":[155]},{"type":"LineString","arcs":[156]},{"type":"LineString","arcs":[157]},{"type":"LineString","arcs":[158]},{"type":"LineString","arcs":[159]},{"type":"LineString","arcs":[160]},{"type":"LineString","arcs":[161]},{"type":"LineString","arcs":[162]},{"type":"LineString","arcs":[163]},{"type":"LineString","arcs":[164]},{"type":"LineString","arcs":[165]},{"type":"LineString","arcs":[166]},{"type":"LineString","arcs":[167]},{"type":"LineString","arcs":[168]},{"type":"LineString","arcs":[169]},{"type":"LineString","arcs":[170]},{"type":"LineString","arcs":[171]},{"type":"LineString","arcs":[172]},{"type":"LineString","arcs":[173]},{"type":"LineString","arcs":[174]},{"type":"LineString","arcs":[175]},{"type":"LineString","arcs":[176]},{"type":"LineString","arcs":[177]},{"type":"LineString","arcs":[178]},{"type":"LineString","arcs":[179]},{"type":"LineString","arcs":[180]},{"type":"LineString","arcs":[181]},{"type":"LineString","arcs":[182]},{"type":"LineString","arcs":[183]},{"type":"LineString","arcs":[184]},{"type":"LineString","arcs":[185]},{"type":"LineString","arcs":[186]},{"type":"LineString","arcs":[187]},{"type":"LineString","arcs":[188]},{"type":"LineString","arcs":[189]},{"type":"LineString","arcs":[190]},{"type":"LineString","arcs":[191]},{"type":"LineString","arcs":[192]},{"type":"LineString","arcs":[193]},{"type":"LineString","arcs":[194]},{"type":"LineString","arcs":[195]},{"type":"LineString","arcs":[196]},{"type":"LineString","arcs":[197]},{"type":"LineString","arcs":[198]},{"type":"LineString","arcs":[199]},{"type":"LineString","arcs":[200]},{"type":"LineString","arcs":[201]},{"type":"LineString","arcs":[202]},{"type":"LineString","arcs":[203]},{"type":"LineString","arcs":[204]},{"type":"LineString","arcs":[205]},{"type":"LineString","arcs":[206]},{"type":"LineString","arcs":[207]},{"type":"LineString","arcs":[208]},{"type":"LineString","arcs":[209]},{"type":"LineString","arcs":[210]},{"type":"LineString","arcs":[211]},{"type":"LineString","arcs":[212]},{"type":"LineString","arcs":[213]},{"type":"LineString","arcs":[214]},{"type":"LineString","arcs":[215]},{"type":"LineString","arcs":[216]},{"type":"LineString","arcs":[217]},{"type":"LineString","arcs":[218]},{"type":"LineString","arcs":[219]},{"type":"LineString","arcs":[220]},{"type":"LineString","arcs":[221]},{"type":"LineString","arcs":[222]},{"type":"LineString","arcs":[223]},{"type":"LineString","arcs":[224]},{"type":"LineString","arcs":[225]},{"type":"LineString","arcs":[226]},{"type":"LineString","arcs":[227]},{"type":"LineString","arcs":[228]},{"type":"LineString","arcs":[229]},{"type":"LineString","arcs":[230]},{"type":"LineString","arcs":[231]},{"type":"LineString","arcs":[232]},{"type":"LineString","arcs":[233]},{"type":"LineString","arcs":[234]},{"type":"LineString","arcs":[235]},{"type":"LineString","arcs":[236]},{"type":"LineString","arcs":[237]},{"type":"LineString","arcs":[238]},{"type":"LineString","arcs":[239]},{"type":"LineString","arcs":[240]},{"type":"LineString","arcs":[241]},{"type":"LineString","arcs":[242]},{"type":"LineString","arcs":[243]},{"type":"LineString","arcs":[244]},{"type":"LineString","arcs":[245]},{"type":"LineString","arcs":[246]},{"type":"LineString","arcs":[247]},{"type":"LineString","arcs":[248]},{"type":"LineString","arcs":[249]},{"type":"LineString","arcs":[250]},{"type":"LineString","arcs":[251]},{"type":"LineString","arcs":[252]},{"type":"LineString","arcs":[253]},{"type":"LineString","arcs":[254]},{"type":"LineString","arcs":[255]},{"type":"LineString","arcs":[256]},{"type":"LineString","arcs":[257]},{"type":"LineString","arcs":[258]},{"type":"LineString","arcs":[259]},{"type":"LineString","arcs":[260]},{"type":"LineString","arcs":[261]},{"type":"LineString","arcs":[262]},{"type":"LineString","arcs":[263]},{"type":"LineString","arcs":[264]},{"type":"LineString","arcs":[265]},{"type":"LineString","arcs":[266]},{"type":"LineString","arcs":[267]},{"type":"LineString","arcs":[268]},{"type":"LineString","arcs":[269]},{"type":"LineString","arcs":[270]},{"type":"LineString","arcs":[271]},{"type":"LineString","arcs":[272]},{"type":"LineString","arcs":[273]},{"type":"LineString","arcs":[274]},{"type":"LineString","arcs":[275]},{"type":"LineString","arcs":[276]},{"type":"LineString","arcs":[277]},{"type":"LineString","arcs":[278]},{"type":"LineString","arcs":[279]},{"type":"LineString","arcs":[280]},{"type":"LineString","arcs":[281]},{"type":"LineString","arcs":[282]},{"type":"LineString","arcs":[283]},{"type":"LineString","arcs":[284]},{"type":"LineString","arcs":[285]},{"type":"LineString","arcs":[286]},{"type":"LineString","arcs":[287]},{"type":"LineString","arcs":[288]},{"type":"LineString","arcs":[289,290]},{"type":"LineString","arcs":[291]},{"type":"LineString","arcs":[292]},{"type":"LineString","arcs":[293]},{"type":"LineString","arcs":[294]},{"type":"LineString","arcs":[295]},{"type":"LineString","arcs":[296]},{"type":"LineString","arcs":[297]},{"type":"LineString","arcs":[298]},{"type":"LineString","arcs":[299]},{"type":"LineString","arcs":[300]},{"type":"LineString","arcs":[301]},{"type":"LineString","arcs":[302]},{"type":"LineString","arcs":[303]},{"type":"LineString","arcs":[304]},{"type":"LineString","arcs":[305]},{"type":"LineString","arcs":[306]},{"type":"LineString","arcs":[307]},{"type":"LineString","arcs":[308]},{"type":"LineString","arcs":[309]},{"type":"LineString","arcs":[310]},{"type":"LineString","arcs":[311]},{"type":"LineString","arcs":[312]},{"type":"LineString","arcs":[313]},{"type":"LineString","arcs":[314]},{"type":"LineString","arcs":[315]},{"type":"LineString","arcs":[316]},{"type":"LineString","arcs":[317]},{"type":"LineString","arcs":[318]},{"type":"LineString","arcs":[319]},{"type":"LineString","arcs":[320]},{"type":"LineString","arcs":[321]},{"type":"LineString","arcs":[322]},{"type":"LineString","arcs":[323]},{"type":"LineString","arcs":[324]},{"type":"LineString","arcs":[325]},{"type":"LineString","arcs":[326]},{"type":"LineString","arcs":[327]},{"type":"LineString","arcs":[328]},{"type":"LineString","arcs":[329]},{"type":"LineString","arcs":[330]},{"type":"LineString","arcs":[331]},{"type":"LineString","arcs":[332]},{"type":"LineString","arcs":[333]},{"type":"LineString","arcs":[334]},{"type":"LineString","arcs":[335]},{"type":"LineString","arcs":[336]},{"type":"LineString","arcs":[337]},{"type":"LineString","arcs":[338]},{"type":"LineString","arcs":[339]},{"type":"LineString","arcs":[340]},{"type":"LineString","arcs":[341]},{"type":"LineString","arcs":[342]},{"type":"LineString","arcs":[343]},{"type":"LineString","arcs":[344]},{"type":"LineString","arcs":[345]},{"type":"LineString","arcs":[346]},{"type":"LineString","arcs":[347]},{"type":"LineString","arcs":[348]},{"type":"LineString","arcs":[349]},{"type":"LineString","arcs":[350]},{"type":"LineString","arcs":[351]},{"type":"LineString","arcs":[352]},{"type":"LineString","arcs":[353]},{"type":"LineString","arcs":[354]},{"type":"LineString","arcs":[355]},{"type":"LineString","arcs":[356]},{"type":"LineString","arcs":[357]},{"type":"LineString","arcs":[358]},{"type":"LineString","arcs":[359]},{"type":"LineString","arcs":[360]},{"type":"LineString","arcs":[361]},{"type":"LineString","arcs":[362,363]},{"type":"LineString","arcs":[364]},{"type":"LineString","arcs":[365]},{"type":"LineString","arcs":[366]},{"type":"LineString","arcs":[367]},{"type":"LineString","arcs":[368]},{"type":"LineString","arcs":[369]},{"type":"LineString","arcs":[370]},{"type":"LineString","arcs":[371]},{"type":"LineString","arcs":[372]},{"type":"LineString","arcs":[373]},{"type":"LineString","arcs":[374]},{"type":"LineString","arcs":[375]},{"type":"LineString","arcs":[376]},{"type":"LineString","arcs":[377]},{"type":"LineString","arcs":[378]},{"type":"LineString","arcs":[379]},{"type":"LineString","arcs":[380]},{"type":"LineString","arcs":[381]},{"type":"LineString","arcs":[382]},{"type":"LineString","arcs":[383]},{"type":"LineString","arcs":[384]},{"type":"LineString","arcs":[385]},{"type":"LineString","arcs":[386]},{"type":"LineString","arcs":[387]},{"type":"LineString","arcs":[388]},{"type":"LineString","arcs":[389]},{"type":"LineString","arcs":[390]},{"type":"LineString","arcs":[391]},{"type":"LineString","arcs":[392]},{"type":"LineString","arcs":[393]},{"type":"LineString","arcs":[394]},{"type":"LineString","arcs":[395]},{"type":"LineString","arcs":[396]},{"type":"LineString","arcs":[397]},{"type":"LineString","arcs":[398]},{"type":"LineString","arcs":[399]},{"type":"LineString","arcs":[400]},{"type":"LineString","arcs":[401]},{"type":"LineString","arcs":[402]},{"type":"LineString","arcs":[403]},{"type":"LineString","arcs":[404]},{"type":"LineString","arcs":[405]},{"type":"LineString","arcs":[406]},{"type":"LineString","arcs":[407]},{"type":"LineString","arcs":[408]},{"type":"LineString","arcs":[409]},{"type":"LineString","arcs":[410]},{"type":"LineString","arcs":[411]},{"type":"LineString","arcs":[412,413]},{"type":"LineString","arcs":[414]},{"type":"LineString","arcs":[415]},{"type":"LineString","arcs":[416]},{"type":"LineString","arcs":[417]},{"type":"LineString","arcs":[418]},{"type":"LineString","arcs":[419]},{"type":"LineString","arcs":[420]},{"type":"LineString","arcs":[421]},{"type":"LineString","arcs":[422]},{"type":"LineString","arcs":[423]},{"type":"LineString","arcs":[424]},{"type":"LineString","arcs":[425]},{"type":"LineString","arcs":[426]},{"type":"LineString","arcs":[427]},{"type":"LineString","arcs":[428]},{"type":"LineString","arcs":[429]},{"type":"LineString","arcs":[430]},{"type":"LineString","arcs":[431]},{"type":"LineString","arcs":[432]},{"type":"LineString","arcs":[433]},{"type":"LineString","arcs":[434]},{"type":"LineString","arcs":[435]},{"type":"LineString","arcs":[436]},{"type":"LineString","arcs":[437]},{"type":"LineString","arcs":[438]},{"type":"LineString","arcs":[439]},{"type":"LineString","arcs":[440]},{"type":"LineString","arcs":[441]},{"type":"LineString","arcs":[442]},{"type":"LineString","arcs":[443]},{"type":"LineString","arcs":[444]},{"type":"LineString","arcs":[445]},{"type":"LineString","arcs":[446]},{"type":"LineString","arcs":[447]},{"type":"LineString","arcs":[448]},{"type":"LineString","arcs":[449]},{"type":"LineString","arcs":[450]},{"type":"LineString","arcs":[451]},{"type":"LineString","arcs":[452]},{"type":"LineString","arcs":[453]},{"type":"LineString","arcs":[454]},{"type":"LineString","arcs":[455]},{"type":"LineString","arcs":[456]},{"type":"LineString","arcs":[457]},{"type":"LineString","arcs":[458]},{"type":"LineString","arcs":[459]},{"type":"LineString","arcs":[460]},{"type":"LineString","arcs":[461]},{"type":"LineString","arcs":[462]},{"type":"LineString","arcs":[463]},{"type":"LineString","arcs":[464]},{"type":"LineString","arcs":[465]},{"type":"LineString","arcs":[466]},{"type":"LineString","arcs":[467]},{"type":"LineString","arcs":[468]},{"type":"LineString","arcs":[469]},{"type":"LineString","arcs":[470]},{"type":"LineString","arcs":[471]},{"type":"LineString","arcs":[472]},{"type":"LineString","arcs":[473]},{"type":"LineString","arcs":[474]},{"type":"LineString","arcs":[475]},{"type":"LineString","arcs":[476]},{"type":"LineString","arcs":[477]},{"type":"LineString","arcs":[478]},{"type":"LineString","arcs":[479]},{"type":"LineString","arcs":[480]},{"type":"LineString","arcs":[481]},{"type":"LineString","arcs":[482]},{"type":"LineString","arcs":[483]},{"type":"LineString","arcs":[484]},{"type":"LineString","arcs":[485]},{"type":"LineString","arcs":[486]},{"type":"LineString","arcs":[487]},{"type":"LineString","arcs":[488]},{"type":"LineString","arcs":[489]},{"type":"LineString","arcs":[490]},{"type":"LineString","arcs":[491]},{"type":"LineString","arcs":[492]},{"type":"LineString","arcs":[493]},{"type":"LineString","arcs":[494]},{"type":"LineString","arcs":[495]},{"type":"LineString","arcs":[496]},{"type":"LineString","arcs":[497]},{"type":"LineString","arcs":[498]},{"type":"LineString","arcs":[499]},{"type":"LineString","arcs":[500]},{"type":"LineString","arcs":[501]},{"type":"LineString","arcs":[502]},{"type":"LineString","arcs":[503]},{"type":"LineString","arcs":[504]},{"type":"LineString","arcs":[505]},{"type":"LineString","arcs":[506]},{"type":"LineString","arcs":[507]},{"type":"LineString","arcs":[508]},{"type":"LineString","arcs":[509]},{"type":"LineString","arcs":[510]},{"type":"LineString","arcs":[511]},{"type":"LineString","arcs":[512]},{"type":"LineString","arcs":[513]},{"type":"LineString","arcs":[514]},{"type":"LineString","arcs":[515]},{"type":"LineString","arcs":[516]},{"type":"LineString","arcs":[517]},{"type":"LineString","arcs":[518]},{"type":"LineString","arcs":[519]},{"type":"LineString","arcs":[520]},{"type":"LineString","arcs":[521]},{"type":"LineString","arcs":[522]},{"type":"LineString","arcs":[523]},{"type":"LineString","arcs":[524]},{"type":"LineString","arcs":[525]},{"type":"LineString","arcs":[526]},{"type":"LineString","arcs":[527]},{"type":"LineString","arcs":[528]},{"type":"LineString","arcs":[529]},{"type":"LineString","arcs":[530]},{"type":"LineString","arcs":[531]},{"type":"LineString","arcs":[532]},{"type":"LineString","arcs":[533]},{"type":"LineString","arcs":[534]},{"type":"LineString","arcs":[535]},{"type":"LineString","arcs":[536]},{"type":"LineString","arcs":[537]},{"type":"LineString","arcs":[538]},{"type":"LineString","arcs":[539]},{"type":"LineString","arcs":[540]},{"type":"LineString","arcs":[541]},{"type":"LineString","arcs":[542]},{"type":"LineString","arcs":[543]},{"type":"LineString","arcs":[544]},{"type":"LineString","arcs":[545]},{"type":"LineString","arcs":[546]},{"type":"LineString","arcs":[547]},{"type":"LineString","arcs":[548]},{"type":"LineString","arcs":[549]},{"type":"LineString","arcs":[550]},{"type":"LineString","arcs":[551]},{"type":"LineString","arcs":[552]},{"type":"LineString","arcs":[553]},{"type":"LineString","arcs":[554]},{"type":"LineString","arcs":[555]},{"type":"LineString","arcs":[556]},{"type":"LineString","arcs":[557]},{"type":"LineString","arcs":[558]},{"type":"LineString","arcs":[559]},{"type":"LineString","arcs":[560]},{"type":"LineString","arcs":[561]},{"type":"LineString","arcs":[562]},{"type":"LineString","arcs":[563]},{"type":"LineString","arcs":[564]},{"type":"LineString","arcs":[565]},{"type":"LineString","arcs":[566]},{"type":"LineString","arcs":[567]},{"type":"LineString","arcs":[568]},{"type":"LineString","arcs":[569]},{"type":"LineString","arcs":[570]},{"type":"LineString","arcs":[571]},{"type":"LineString","arcs":[572]},{"type":"LineString","arcs":[573]},{"type":"LineString","arcs":[574]},{"type":"LineString","arcs":[575]},{"type":"LineString","arcs":[576]},{"type":"LineString","arcs":[577]},{"type":"LineString","arcs":[578]},{"type":"LineString","arcs":[579]},{"type":"LineString","arcs":[580]},{"type":"LineString","arcs":[581]},{"type":"LineString","arcs":[582]},{"type":"LineString","arcs":[583]},{"type":"LineString","arcs":[584]},{"type":"LineString","arcs":[585]},{"type":"LineString","arcs":[586]},{"type":"LineString","arcs":[587]},{"type":"LineString","arcs":[588]},{"type":"LineString","arcs":[589]},{"type":"LineString","arcs":[590]},{"type":"LineString","arcs":[591]},{"type":"LineString","arcs":[592]},{"type":"LineString","arcs":[593]},{"type":"LineString","arcs":[594]},{"type":"LineString","arcs":[595]},{"type":"LineString","arcs":[596]},{"type":"LineString","arcs":[597]},{"type":"LineString","arcs":[598]},{"type":"LineString","arcs":[599]},{"type":"LineString","arcs":[600]},{"type":"LineString","arcs":[601]},{"type":"LineString","arcs":[602]},{"type":"LineString","arcs":[603]},{"type":"LineString","arcs":[604]},{"type":"LineString","arcs":[605]},{"type":"LineString","arcs":[606]},{"type":"LineString","arcs":[607]},{"type":"LineString","arcs":[608]},{"type":"LineString","arcs":[609]},{"type":"LineString","arcs":[610]},{"type":"LineString","arcs":[611]},{"type":"LineString","arcs":[612]},{"type":"LineString","arcs":[613]},{"type":"LineString","arcs":[614]},{"type":"LineString","arcs":[615]},{"type":"LineString","arcs":[616]},{"type":"LineString","arcs":[617,618]},{"type":"LineString","arcs":[619]},{"type":"LineString","arcs":[620]},{"type":"LineString","arcs":[621]},{"type":"LineString","arcs":[622]},{"type":"LineString","arcs":[623]},{"type":"LineString","arcs":[624]},{"type":"LineString","arcs":[625]},{"type":"LineString","arcs":[626]},{"type":"LineString","arcs":[627]},{"type":"LineString","arcs":[628]},{"type":"LineString","arcs":[629]},{"type":"LineString","arcs":[630]},{"type":"LineString","arcs":[631]},{"type":"LineString","arcs":[632]},{"type":"LineString","arcs":[633]},{"type":"LineString","arcs":[634]},{"type":"LineString","arcs":[635]},{"type":"LineString","arcs":[636]},{"type":"LineString","arcs":[637]},{"type":"LineString","arcs":[638]},{"type":"LineString","arcs":[639]},{"type":"LineString","arcs":[640]},{"type":"LineString","arcs":[641]},{"type":"LineString","arcs":[642]},{"type":"LineString","arcs":[643]},{"type":"LineString","arcs":[644]},{"type":"LineString","arcs":[645]},{"type":"LineString","arcs":[646]},{"type":"LineString","arcs":[647]},{"type":"LineString","arcs":[648]},{"type":"LineString","arcs":[649]},{"type":"LineString","arcs":[650]},{"type":"LineString","arcs":[651]},{"type":"LineString","arcs":[652]},{"type":"LineString","arcs":[653]},{"type":"LineString","arcs":[654]},{"type":"LineString","arcs":[655]},{"type":"LineString","arcs":[656]},{"type":"LineString","arcs":[657]},{"type":"LineString","arcs":[658]},{"type":"LineString","arcs":[659]},{"type":"LineString","arcs":[660]},{"type":"LineString","arcs":[661]},{"type":"LineString","arcs":[662]},{"type":"LineString","arcs":[663]},{"type":"LineString","arcs":[664]},{"type":"LineString","arcs":[665]},{"type":"LineString","arcs":[666]},{"type":"LineString","arcs":[667]},{"type":"LineString","arcs":[668]},{"type":"LineString","arcs":[669]},{"type":"LineString","arcs":[670]},{"type":"LineString","arcs":[671]},{"type":"LineString","arcs":[672]},{"type":"LineString","arcs":[673]},{"type":"LineString","arcs":[674]},{"type":"LineString","arcs":[675]},{"type":"LineString","arcs":[676]},{"type":"LineString","arcs":[677]},{"type":"LineString","arcs":[678]},{"type":"LineString","arcs":[679]},{"type":"LineString","arcs":[680,681]},{"type":"LineString","arcs":[682]},{"type":"LineString","arcs":[683]},{"type":"LineString","arcs":[684]},{"type":"LineString","arcs":[685]},{"type":"LineString","arcs":[686]},{"type":"LineString","arcs":[687]},{"type":"LineString","arcs":[688]},{"type":"LineString","arcs":[689]},{"type":"LineString","arcs":[690]},{"type":"LineString","arcs":[691]},{"type":"LineString","arcs":[692]},{"type":"LineString","arcs":[693]},{"type":"LineString","arcs":[694]},{"type":"LineString","arcs":[695]},{"type":"LineString","arcs":[696]},{"type":"LineString","arcs":[697]},{"type":"LineString","arcs":[698]},{"type":"LineString","arcs":[699]},{"type":"LineString","arcs":[700]},{"type":"LineString","arcs":[701]},{"type":"LineString","arcs":[702]},{"type":"LineString","arcs":[703]},{"type":"LineString","arcs":[704]},{"type":"LineString","arcs":[705]},{"type":"LineString","arcs":[706]},{"type":"LineString","arcs":[707]},{"type":"LineString","arcs":[708]},{"type":"LineString","arcs":[709]},{"type":"LineString","arcs":[710]},{"type":"LineString","arcs":[711]},{"type":"LineString","arcs":[712]},{"type":"LineString","arcs":[713]},{"type":"LineString","arcs":[714]},{"type":"LineString","arcs":[715]},{"type":"LineString","arcs":[716]},{"type":"LineString","arcs":[717]},{"type":"LineString","arcs":[718]},{"type":"LineString","arcs":[719]},{"type":"LineString","arcs":[720]},{"type":"LineString","arcs":[721]},{"type":"LineString","arcs":[722]},{"type":"LineString","arcs":[723]},{"type":"LineString","arcs":[724]},{"type":"LineString","arcs":[725]},{"type":"LineString","arcs":[726]},{"type":"LineString","arcs":[727]},{"type":"LineString","arcs":[728]},{"type":"LineString","arcs":[729]},{"type":"LineString","arcs":[730]},{"type":"LineString","arcs":[731]},{"type":"LineString","arcs":[732]},{"type":"LineString","arcs":[733]},{"type":"LineString","arcs":[734]},{"type":"LineString","arcs":[735]},{"type":"LineString","arcs":[736]},{"type":"LineString","arcs":[737]},{"type":"LineString","arcs":[738]},{"type":"LineString","arcs":[739]},{"type":"LineString","arcs":[740]},{"type":"LineString","arcs":[741,742]},{"type":"LineString","arcs":[743]},{"type":"LineString","arcs":[744]},{"type":"LineString","arcs":[745]},{"type":"LineString","arcs":[746]},{"type":"LineString","arcs":[747]},{"type":"LineString","arcs":[748]},{"type":"LineString","arcs":[749]},{"type":"LineString","arcs":[750]},{"type":"LineString","arcs":[751]},{"type":"LineString","arcs":[752]},{"type":"LineString","arcs":[753]},{"type":"LineString","arcs":[754]},{"type":"LineString","arcs":[755]},{"type":"LineString","arcs":[756]},{"type":"LineString","arcs":[757]}]}},"arcs":[[[10256,85993],[-176,-115],[-327,480],[-39,524],[210,1026],[-267,617],[-25,397],[-126,331],[92,1184],[297,113],[-269,487],[103,235],[319,222]],[[10055,91500],[113,58]],[[10048,91494],[-136,422],[-20,599]],[[16013,91447],[-54,226]],[[95932,5690],[0,0]],[[99999,11348],[-218,247],[-294,-48],[-287,-235],[-285,123],[-88,322],[-284,477]],[[8537,4064],[-454,746],[-95,442],[113,743]],[[97918,5818],[-456,-384],[-160,5],[-92,371],[-253,97],[-31,303],[140,834],[245,239],[193,674],[144,114],[497,1037],[179,185],[133,545]],[[97504,13324],[231,84],[350,-328],[458,-846]],[[7984,6668],[130,-667]],[[94611,13919],[94,90],[227,-461],[179,52],[338,-279],[303,-57],[376,-199],[255,412],[317,-29],[301,173],[503,-297]],[[25399,6181],[219,419],[-376,907],[109,365],[167,202]],[[49652,9709],[2,-56]],[[49558,9651],[94,58]],[[7622,6685],[-85,-173],[-500,826],[-256,204],[-66,311]],[[7541,4752],[-133,273],[-40,436],[-338,511],[-540,435],[-38,282],[-469,109],[110,403],[29,464],[226,145],[104,473]],[[15528,4603],[202,510],[72,1187],[-108,373],[309,296],[175,432],[23,655],[-58,356],[-139,57]],[[52478,9669],[205,515],[473,239],[457,92]],[[16004,8469],[-126,-158],[-633,405],[-215,45],[-230,-217],[-450,394],[-290,-2],[-462,-225],[-558,-578],[-358,235],[-171,-17],[-312,248],[-402,-69],[-253,-175],[60,-382],[-420,-263],[-38,-236],[-377,-817],[78,-406],[-365,-345],[-504,95],[-407,-154],[-55,-556],[-235,-355],[-624,-227],[-156,-290],[36,-355]],[[15576,9148],[211,-140],[217,-539]],[[41254,9909],[183,528],[571,879],[177,195],[366,627],[202,107]],[[25518,8074],[619,296],[321,55],[629,-135],[864,214],[231,-45],[512,272],[674,166],[329,-78],[587,256],[611,474],[324,122],[418,406],[566,142],[538,-218],[741,603],[526,718],[394,197],[239,266],[432,196],[974,-137],[220,120],[585,-92],[833,169],[161,-46],[235,497]],[[38081,12492],[236,120],[226,-286],[448,-322],[203,-318],[423,-89],[235,-284],[500,32],[291,274],[1133,32],[403,428],[434,244],[140,-78]],[[25959,12177],[-170,-285],[-430,-409],[78,-455],[-152,-507],[-127,-874],[447,-834],[-87,-739]],[[49571,13919],[-565,-11],[-146,66],[-395,-392],[-273,-148],[-1405,-499],[-547,-640],[-385,-88],[-400,-233],[-649,-155],[-505,6],[-959,315],[-303,-15],[-286,120]],[[20170,11022],[210,315],[638,282],[232,818],[-50,380],[-143,166]],[[20170,11022],[-165,69],[-200,-144],[-195,273],[137,438],[199,251],[142,689],[195,-42],[287,244],[251,-227],[236,410]],[[60006,14969],[-387,41],[-626,198],[-154,-190],[-228,88],[-377,-298],[-233,314]],[[15576,9148],[-282,50],[-158,274],[-689,156],[-205,158],[-212,498],[-194,168],[-189,-78],[-350,367],[-269,618],[-217,154],[-136,440],[-204,369],[-141,839]],[[7984,6668],[246,-95],[323,227],[276,551],[399,261],[173,-150],[371,495],[216,73],[385,341],[150,667],[-32,909],[-272,680],[521,1571],[278,373],[417,39],[226,-117],[669,668]],[[49652,9709],[572,556],[744,1925],[484,1800],[35,932]],[[49571,13919],[252,-61],[368,430],[326,50],[82,227],[274,221],[393,0],[221,136]],[[56941,15495],[53,51]],[[56770,15547],[171,-52]],[[56770,15547],[171,-52]],[[57187,15637],[414,-462],[400,-53]],[[56522,15636],[248,-89]],[[56994,15546],[138,174]],[[56994,15546],[138,174]],[[57132,15720],[55,-83]],[[57132,15720],[55,-83]],[[6167,12524],[373,364],[334,216],[500,-114],[242,-157],[191,140],[316,1],[328,236],[261,459],[390,10],[568,-128],[198,303],[436,49],[97,-132],[764,-53],[183,-248],[359,226],[451,72],[245,-252],[-73,-355]],[[55738,16425],[170,-256],[243,-64],[371,-469]],[[51487,14922],[338,287],[322,383],[270,-147],[938,100],[150,399],[1351,239],[390,-138],[492,380]],[[11942,14335],[480,-334],[277,-305],[45,-520],[643,-662],[92,-332],[239,-208],[371,142],[322,-951],[-85,-429],[68,-269],[401,-661],[396,-276],[385,-382]],[[9009,14041],[610,-105],[222,258],[246,111],[775,-217],[641,182],[439,65]],[[24371,15277],[1,42]],[[38081,12492],[59,603],[-149,427],[-279,475],[-279,826],[-192,320],[-305,206],[-89,542]],[[21057,12983],[258,360],[149,-7],[250,605],[269,133],[161,255],[271,75],[302,289],[279,585],[195,144]],[[23191,15422],[265,-132],[205,152],[310,-367],[283,-53],[117,255]],[[71210,17397],[-95,668],[-344,537],[-317,199],[-257,24]],[[57190,17728],[67,-421],[-83,-889],[-492,-524],[-160,-258]],[[65772,18421],[217,-178],[142,238],[441,-87],[738,314],[399,25],[817,-110],[292,-184],[522,-151],[406,4],[451,533]],[[64145,17493],[374,513],[123,346],[492,-52],[369,246],[269,-125]],[[55738,16425],[224,80],[548,625],[254,688],[259,-160],[167,70]],[[93033,22236],[169,-1255],[-21,-776],[-100,-478],[95,-487],[-72,-933],[-618,-513],[-40,-424],[-541,-160]],[[90661,17677],[325,441],[165,707],[54,725],[283,256],[447,84],[233,178],[-7,674],[-105,123],[68,450],[306,412],[329,166],[274,343]],[[42753,12245],[164,109],[236,434],[381,305],[784,446],[585,526],[883,949],[1451,1494],[327,408],[355,212],[234,408]],[[51487,14922],[59,1309],[107,1525],[70,255]],[[43007,12252],[763,624],[859,782],[688,408],[274,270],[274,93],[868,618],[1006,1043],[1375,884],[1043,918],[-842,-225],[-996,-153],[-166,22]],[[36847,15891],[-135,737],[-432,384],[-220,12]],[[58001,15122],[181,146],[254,862],[192,112],[110,370],[3,398],[-744,1016],[-102,455],[181,116]],[[50271,17911],[624,106],[128,-284],[473,94],[227,184]],[[57190,17728],[232,260],[-36,261],[174,67],[43,304]],[[40027,17235],[-267,131],[-379,-159],[-430,16],[-257,-265],[-408,53],[-393,-151],[-289,-293],[-174,54],[-304,-180],[-279,-550]],[[58076,18597],[-9,143]],[[57603,18620],[255,283],[209,-163]],[[40017,17227],[195,103],[465,-210],[300,195],[420,-62],[151,357],[376,-14],[1065,149],[592,258],[241,-82],[336,72],[259,-130],[991,-56],[585,-230],[523,-58],[384,67],[343,-91],[910,41]],[[62826,17297],[213,506],[200,-98],[226,423],[397,450],[115,-11],[230,442],[175,653],[393,208],[222,-39]],[[23191,15422],[29,299],[-342,1063],[-20,369],[325,261]],[[23183,17414],[117,4]],[[66803,20843],[102,-346],[796,-360],[138,75],[306,-248],[206,14],[361,-202],[451,-421],[466,-327],[568,-203]],[[65772,18421],[150,101],[190,473],[163,133],[516,1339],[12,376]],[[66803,20843],[7,51]],[[51723,18011],[352,468],[64,268],[473,684],[341,232]],[[66803,20843],[-51,224]],[[66752,21067],[-24,-1]],[[66728,21066],[-53,-385],[-155,-34],[-419,-531],[-318,-160],[-786,-125]],[[66752,21067],[-24,-1]],[[53541,19893],[52,93]],[[52963,19652],[290,217],[340,117]],[[53593,19986],[391,113],[602,-163],[643,-646],[384,-114],[441,-250],[439,-425],[259,-79],[349,217],[502,-19]],[[36060,17024],[-355,-62],[-447,929],[-192,83],[-338,515],[-195,183],[-190,-39],[-279,255],[-306,-130],[-609,-5],[-479,-231]],[[4340,18231],[-55,-416],[49,-401],[215,-293],[195,-1077],[161,-259],[208,-89],[80,-256],[86,-759],[372,-544],[294,-181],[300,-340],[-143,-346],[61,-260]],[[66728,21066],[-504,223],[-173,213]],[[65281,21782],[314,-193],[456,-87]],[[64997,19831],[284,1951]],[[90425,17779],[-6,367],[-125,474],[185,522],[43,366],[130,179],[17,401],[110,356],[-32,528],[77,673],[238,678],[107,886],[65,131],[-53,749],[-342,1368]],[[95983,26249],[-81,-581],[-234,-64],[67,-980],[-64,-144],[112,-480],[-28,-837],[258,-855],[237,-201],[95,-537],[213,-616],[-63,-470],[43,-455],[-110,-113],[-75,-883],[92,-435],[136,-173],[36,-544],[105,-209],[136,-638],[336,-459],[132,-699],[230,-400],[391,-26],[304,-116],[230,-859],[-159,-1362],[221,-879]],[[49571,13919],[-4,521],[83,864],[175,840],[184,1141],[188,605]],[[50889,21144],[-937,-125],[-82,-281],[-873,-1424],[-487,-953],[-357,-825]],[[90786,25616],[53,-159]],[[90786,25616],[53,-159]],[[29710,19988],[228,-86],[726,-540],[186,-20]],[[25931,12208],[132,260],[270,-109],[238,166],[64,349],[241,363],[231,-22],[448,320],[290,729],[205,28],[159,234],[48,500],[-60,484],[198,1031],[241,400],[335,297],[393,485],[26,480],[134,3],[26,465],[267,609],[17,296],[-124,412]],[[29710,19988],[-115,53]],[[4340,18231],[14,555],[-176,379],[-213,12],[-264,296],[3,165]],[[90798,25827],[-12,-211]],[[24393,15339],[431,257],[487,1562],[74,320],[-246,645],[-11,367],[498,883],[200,273],[568,72],[383,-182],[232,152],[559,-419],[128,29],[173,361],[221,161],[507,69],[73,163],[376,264],[391,-265],[158,-10]],[[2040,19887],[2,-312],[145,-365],[246,-280],[68,-608],[354,-718],[234,-99],[299,214],[-59,184],[435,29],[576,299]],[[90777,26093],[21,-266]],[[90777,26093],[21,-266]],[[90730,26440],[47,-347]],[[66051,21502],[-90,957],[45,966]],[[58076,18597],[120,-224],[92,401],[96,-7],[352,1171],[-34,211],[380,1078],[47,413],[283,196],[227,375],[294,852]],[[59933,23063],[890,-352],[1079,-223],[384,60],[694,-631],[618,7],[1236,-132],[447,-10]],[[51723,18011],[46,648],[177,447],[206,236],[79,278],[298,554],[144,643],[28,497],[-116,456],[-35,800]],[[50889,21144],[366,10],[315,218],[303,631],[677,567]],[[91266,27355],[-55,-289],[-481,-626]],[[88592,18521],[-174,321],[-489,276],[-32,940],[-315,472],[-232,885],[-361,1024],[-180,309],[-174,946],[-42,625],[80,578],[-222,527],[81,257],[87,1021],[62,159]],[[86681,26861],[218,88],[608,-276],[405,-819],[197,210],[524,259],[390,-255],[723,326],[329,-341],[461,181],[194,206]],[[93338,25830],[-260,-325],[-62,-430],[109,-269],[-48,-811],[115,-453],[-239,-1008],[80,-298]],[[95983,26249],[-574,666],[-139,-112],[-281,345],[-173,-9],[-242,375],[-372,-43],[-201,476]],[[94001,27947],[-300,92],[-123,237]],[[93578,28276],[-456,-49],[-109,-191],[-485,-262],[-215,-456],[-257,200],[-110,385],[-229,-157],[-84,270],[-367,-661]],[[47142,23415],[-360,85],[-599,-42],[-332,-284],[-795,-52],[-189,-140],[-820,-33],[-149,-114],[-225,-825],[-354,-395],[-472,-391],[-245,-63],[-507,123],[-442,-67],[-453,-294],[-636,-29],[-380,-110],[-414,-425],[-257,-116],[-349,-490],[-361,-113],[-520,-396],[-443,27],[-227,-98],[-119,-249],[-715,-603],[-172,-20],[-310,-892],[-237,-385]],[[59933,23063],[672,1354],[296,455]],[[58067,18740],[-236,379],[-334,337],[-777,1663],[-242,340],[-221,1550],[-77,1452]],[[53593,19986],[260,579],[438,771],[149,640],[223,433],[-27,254],[315,747],[362,404],[266,-7],[211,388],[390,266]],[[9009,14041],[47,465],[-84,245],[-338,225],[-305,874],[51,916],[-513,991],[-69,269],[79,565],[-90,349],[-269,451],[-69,392],[-378,420],[-199,722],[-300,670],[-363,372],[-161,377]],[[4340,18231],[274,98],[56,521],[254,540],[627,729],[-45,259],[257,289],[173,355],[-31,376],[167,495],[-24,451]],[[47142,23415],[487,27],[587,266],[296,250],[909,64],[299,78],[372,318],[320,-90],[267,-286]],[[56276,24958],[617,-405],[416,62],[147,-104],[597,43],[201,239],[248,-34],[781,350],[972,-241],[646,4]],[[56180,24461],[96,497]],[[50889,21144],[371,965],[590,1167],[276,657],[438,436],[536,328]],[[52550,22570],[77,205],[455,522],[401,305],[532,289],[382,48],[737,452],[142,261],[509,281],[491,25]],[[56276,24958],[45,132]],[[56553,25245],[466,-252],[97,126]],[[56321,25090],[232,155]],[[53100,24697],[718,-117],[567,247],[379,-8],[514,89],[632,380],[411,-198]],[[32413,23781],[-542,-194],[-196,-834],[132,-751],[-5,-650],[-164,-776],[-489,-209],[-129,-163],[-20,-490],[-141,-345]],[[56553,25245],[163,392]],[[60901,24872],[761,1142],[739,231]],[[86681,26861],[-411,102],[-332,284],[-548,-3],[-109,168],[-286,-21],[-384,123],[-475,-140],[-564,445],[-317,461],[-176,64],[-673,505]],[[82406,28849],[-232,210]],[[81612,28234],[214,-76],[348,901]],[[81947,28945],[227,114]],[[3705,19620],[21,357],[-76,477],[-167,366],[-124,533],[-179,186],[169,384],[-289,231],[-174,-62],[-293,254],[287,668],[-144,91],[-31,576],[145,409],[464,170]],[[65281,21782],[11,533],[91,477],[-139,1777],[92,1487],[-187,830],[-313,232],[-124,364]],[[62433,26213],[237,261],[287,7],[438,364],[894,355],[219,250],[204,32]],[[68520,26815],[378,1163]],[[68400,27948],[498,30]],[[11942,14335],[209,694],[702,279],[528,119],[49,787],[-140,-214],[-178,135],[61,358],[509,115],[221,1026],[-76,372],[-262,478],[203,1059],[387,480],[150,762],[122,322],[221,39],[-9,355],[269,163],[151,456],[-30,183],[-305,511],[-94,356],[67,308],[341,449],[74,399],[187,382]],[[93427,31403],[85,-443],[-28,-1018],[78,-375],[2,-607],[75,-163],[-61,-521]],[[93425,31469],[2,-66]],[[93427,31403],[129,154],[220,-52],[759,-423],[276,-319],[215,35],[425,-419],[267,-420],[93,-856],[-151,-683],[263,-363],[121,-992],[-61,-816]],[[57124,25049],[318,-50],[446,100],[471,-21],[548,151],[459,399],[246,52],[657,677],[260,558],[-1,760],[872,867]],[[47140,27407],[-58,-1690],[60,-2302]],[[15299,24708],[47,-98],[545,232],[20,362],[162,834]],[[15299,24708],[159,394],[402,505],[213,431]],[[61000,28675],[400,-133]],[[53100,24697],[-137,216],[-695,810],[12,324],[-443,1247],[-393,762]],[[6048,22344],[-2,121],[-368,1381],[-45,527],[-198,599],[114,515],[-162,297],[-7,585]],[[47140,27407],[649,364],[378,34],[577,-228],[680,-132],[496,377],[972,449],[93,-203],[459,-12]],[[75731,30415],[-400,117],[-518,-202],[-629,-45],[-233,82],[-463,390]],[[71195,23222],[9,645],[-155,204],[44,517],[203,180],[129,422],[405,464],[249,85],[170,291],[430,1015],[28,784],[61,320],[183,309],[45,441],[-70,321],[56,328],[480,751],[26,458]],[[61000,28675],[-87,-24],[-848,564],[-125,253]],[[56716,25637],[682,1056],[471,326],[177,270],[390,212],[187,580],[375,516],[395,230],[547,641]],[[61000,28675],[634,402],[236,419],[708,478],[134,166],[457,152]],[[87953,30813],[-416,-433],[-271,237],[-362,73],[-65,196],[-277,224],[-287,19],[-325,-254],[-230,190],[-153,-148],[-253,259],[-483,-431],[-227,26],[-175,-149],[-192,-452],[-335,-241],[-240,-26],[-270,-538],[-157,-648],[-829,132]],[[5820,27560],[-115,-428],[-158,-103],[-167,-660]],[[91471,33680],[-33,357]],[[82174,29059],[22,438],[-410,914],[-329,485],[-207,594],[-262,418],[-518,495],[-152,233]],[[80225,32645],[93,-9]],[[91842,34239],[427,-1211],[620,-641],[71,-219],[302,-292],[165,-473]],[[91842,34239],[39,-997],[-84,-571],[-216,-497],[-96,-514],[2,-571],[-261,-1934],[149,-728],[-109,-1072]],[[69397,28047],[35,566],[199,600],[39,506],[-80,150],[63,643],[180,174],[91,920]],[[91630,34320],[-159,-640]],[[91438,34037],[192,283]],[[91759,34431],[83,-192]],[[91630,34320],[129,111]],[[73488,30757],[-106,231],[-294,209],[-692,727],[-256,160]],[[64712,27482],[-101,782],[205,949],[124,893],[436,1015],[44,442]],[[61400,28542],[566,29],[402,175],[268,225],[150,280],[237,184],[258,37],[462,462],[115,246],[725,970],[424,358],[413,55]],[[66237,27487],[-147,214],[-88,717],[76,615],[-72,870],[-154,727],[66,906],[-266,69]],[[65652,31605],[-232,-42]],[[72140,32084],[-262,-117],[-282,159],[-583,51],[-321,-282],[-207,25],[-390,-149],[-171,-165]],[[51444,28056],[-192,522],[-309,512],[-334,1212]],[[80318,32636],[215,704],[144,60]],[[91494,34882],[265,-451]],[[65420,31563],[25,250]],[[63169,30292],[582,391],[173,245],[330,133],[222,345],[365,304],[604,103]],[[3846,28737],[172,-300],[221,-84],[49,-293],[242,-57],[80,139],[131,-642],[639,-1131]],[[3304,24270],[139,263],[39,445],[229,546],[79,514],[-58,99],[91,509],[176,313],[-288,531],[-108,889],[243,358]],[[81098,33184],[330,-109],[-44,-212],[160,-421],[260,-165],[126,-293],[205,-118],[136,144],[316,-294],[198,104],[119,313],[307,-234]],[[69924,31606],[-206,47],[-483,707]],[[68864,30753],[91,662],[280,945]],[[72140,32084],[167,73],[641,-27],[229,140],[655,738],[629,-7],[180,219]],[[73488,30757],[112,212],[61,648],[566,426],[477,720],[-1,467]],[[74641,33220],[62,10]],[[50229,30881],[251,-132],[129,-447]],[[74764,33265],[-61,-35]],[[23183,17414],[-164,671],[-159,243],[85,757],[-134,208],[-82,494],[78,728],[-219,336],[-121,658],[-36,800],[246,511],[531,403],[101,850],[-165,575],[-66,802],[-29,1183],[83,817],[-255,505],[-372,406],[-228,685],[-204,428]],[[80318,32636],[-542,671],[-727,652]],[[74242,33463],[399,-243]],[[91438,34037],[-149,79],[-247,-168],[-223,362],[-308,-137],[-241,376],[-179,449],[-400,423]],[[81098,33184],[376,294],[473,-247],[349,506],[87,-178],[362,239],[201,266],[93,388],[-68,193],[825,-615]],[[16073,26038],[242,299],[347,890],[228,335],[543,-16],[111,336],[978,289],[326,286],[677,214],[332,430],[731,617],[991,25],[245,-239],[249,-30]],[[29595,20041],[26,367],[-205,546],[-202,336],[39,509],[112,518],[195,549],[25,504],[365,196],[263,-26],[45,1027],[107,412],[65,867],[196,359],[-84,484],[-575,835],[77,508],[-229,541],[144,808],[-39,314],[314,199],[402,-60],[134,219],[321,215]],[[74274,33791],[429,-561]],[[74242,33463],[32,328]],[[91494,34882],[-282,173],[-174,338],[-306,355],[-349,48],[-41,-133],[-344,-133],[-146,110],[-161,-219]],[[7080,29935],[-240,-220],[-307,61],[-270,-495],[-211,-218],[-140,-756],[23,-512],[-115,-235]],[[89691,35421],[-258,330],[-173,75],[-200,-374],[-356,-164],[-165,-281],[88,-292],[-431,-733],[93,-300],[106,-773],[-280,-615],[26,-490],[-122,-328],[-76,-652]],[[72140,32084],[-512,453],[-401,842],[-189,608]],[[71038,33987],[932,188],[142,-159],[596,-84],[406,-408],[212,-104],[559,189],[357,-146]],[[22073,29474],[83,424],[401,114],[16,682]],[[70341,34138],[436,-227],[261,76]],[[22573,30694],[-7,768]],[[79049,33959],[-352,384],[-374,278],[-515,890],[-98,277]],[[47140,27407],[-430,-114],[-218,-164],[-1322,-125],[-624,-13],[-216,499],[-414,-218],[-531,396],[-551,516],[-727,164],[-532,-25],[-454,393],[-466,-200],[-253,84],[-166,-252],[-342,71],[-567,-328],[-510,0],[115,366],[-141,381],[-72,735],[-113,100],[-83,766],[142,574],[-20,684],[-168,355],[270,772]],[[77710,35788],[-276,157]],[[74703,33230],[-119,999],[-252,462],[-240,774],[-5,529]],[[74335,36159],[-248,-165]],[[91494,34882],[-323,747],[-176,681],[-335,978],[-587,915]],[[59940,29468],[53,252],[1,814],[109,645],[219,249],[18,235],[-155,523],[45,693],[157,620],[188,245],[514,256],[143,598],[286,322]],[[79049,33959],[94,87],[300,788],[137,1074],[133,635],[-55,368]],[[77710,35788],[55,259],[412,635],[293,258]],[[77434,35945],[-630,212],[-645,512],[-496,-212],[-168,-192],[-574,39],[-586,-145]],[[78470,36940],[471,-268],[514,-40],[203,279]],[[66136,35733],[-414,-1629],[-387,-836],[-86,-599],[196,-856]],[[64048,33580],[281,438],[280,161],[701,842],[826,712]],[[83796,34030],[90,401],[345,373],[182,6],[161,-289],[299,-207],[143,89],[196,461],[186,228],[797,-617],[248,-43],[-81,188],[176,336],[48,467],[150,197],[-7,805],[-143,415],[84,538],[-66,287],[163,81],[175,403],[259,228]],[[90073,38203],[-231,-239],[-261,55],[-936,725],[-423,-229],[-1021,-138]],[[70341,34138],[-226,107],[-567,969],[-227,656],[-224,395],[-653,113]],[[69235,32360],[49,844],[106,779],[-102,612],[-267,79],[-269,527],[-136,769],[-172,408]],[[87201,38377],[202,281]],[[79658,36911],[434,347],[176,547]],[[85043,38056],[182,-211],[209,-480],[185,-175],[143,213],[403,-208],[87,300],[182,-36],[49,289],[205,122],[95,308],[247,189],[265,397],[108,-106]],[[47140,27407],[162,807],[309,1087],[106,159],[209,805],[66,1804],[405,376],[631,1005],[282,-55],[561,552],[388,213],[190,218],[211,505],[188,-25],[140,-547]],[[66239,36346],[331,17]],[[66136,35733],[103,613]],[[70341,34138],[-37,615],[74,994],[-41,463],[-527,518]],[[66076,36369],[163,-23]],[[66076,36369],[-1235,-501],[-174,-172],[-732,-495],[-381,146],[-418,-80],[-364,-252],[-460,-568],[-538,70],[-256,403]],[[66570,36363],[6,92]],[[68444,36378],[-214,356]],[[90073,38203],[-371,763],[-105,368]],[[69810,36728],[-480,167],[-626,-216]],[[66576,36455],[-273,178]],[[71861,37263],[2108,-1175],[118,-94]],[[71861,37263],[198,-389],[192,-185],[910,-1274],[858,-1491],[255,-133]],[[76252,37955],[210,-161],[184,73],[504,-106],[340,169],[404,14],[224,-876],[352,-128]],[[77434,35945],[-120,378],[-614,1040],[-448,592]],[[71861,37263],[-618,73],[-697,6],[-610,-428],[-126,-186]],[[71773,37701],[88,-438]],[[66576,36455],[119,730]],[[66786,37256],[257,-1]],[[66695,37185],[91,71]],[[68230,36734],[-635,661]],[[67043,37255],[552,140]],[[71773,37701],[-781,-96],[-1058,-26],[-820,17],[-1112,-39],[-407,-162]],[[3310,34148],[-149,-1305],[187,-232],[-222,-455],[113,-700],[246,-287],[-73,-896],[245,-304],[236,-451],[-177,-530],[130,-251]],[[80268,37805],[80,390],[146,34],[139,449],[404,344],[204,-25],[146,185]],[[81387,39182],[203,155],[370,60],[408,-197],[107,-305],[329,120],[119,-170],[187,190],[126,-280],[274,-115],[132,-471],[269,-216],[70,-401],[184,-217],[426,272],[56,219],[396,230]],[[88698,40288],[348,-265],[112,-272],[439,-417]],[[87403,38658],[224,2],[159,341],[160,70],[752,1217]],[[56716,25637],[-257,573],[-13,949],[-120,269],[91,918],[-198,802],[-118,1100],[215,475],[132,483],[27,449],[-43,744],[24,2370],[-203,298],[-61,556],[19,1109]],[[56154,36731],[57,1]],[[65981,37767],[4,-258],[356,-577],[-38,-299]],[[66695,37185],[-355,609],[-359,-27]],[[56211,36732],[762,-55],[676,181],[415,232],[375,-53],[269,85],[672,-294],[302,-31],[533,196],[259,0],[454,216],[889,28],[479,-293],[417,186],[331,-92],[253,-220],[255,-17],[474,-342],[411,-115],[367,13],[1059,150],[213,-138]],[[65969,37921],[12,-154]],[[75919,39010],[132,-574],[201,-481]],[[75917,39013],[2,-3]],[[80268,37805],[-171,-141],[-284,221],[-144,-175],[-258,148],[-151,-183],[-429,89],[-114,333],[-507,375],[-193,-145],[-505,109],[-209,543],[-348,318],[-404,-127],[-453,-343],[-179,183]],[[75917,39013],[-742,13],[-300,56]],[[74335,36159],[-27,122],[290,1670],[42,457],[235,674]],[[71426,38773],[237,-56],[110,-1016]],[[22573,30694],[228,68],[146,-615],[414,503],[222,77],[16,252],[203,389],[35,484],[352,1129],[235,-48],[78,510],[-168,863],[478,193],[302,3],[48,293],[492,18],[139,190],[192,584]],[[5426,35124],[168,-434],[-242,-336],[52,-419],[123,-5],[85,-423],[1,-469],[-194,-537],[-100,-616],[40,-208],[273,-74],[105,-264],[-42,-1686],[134,-1268],[-9,-825]],[[11831,33819],[182,-146],[285,439],[218,-124],[220,857],[361,765]],[[75917,39013],[-331,626],[-333,298]],[[74875,39082],[378,855]],[[22586,31463],[140,539],[-90,430],[-29,1187],[-198,212],[-75,406],[84,599],[-104,1286]],[[22314,36122],[-612,-181],[-304,32],[-237,-113],[-749,-145],[-303,-274],[-878,-527],[-491,-425],[-516,347],[-108,304],[-231,115],[-292,-506],[-313,80],[-54,154],[-358,-60]],[[13088,35624],[203,108],[143,-169],[270,20],[119,439],[371,73],[431,-433],[277,41],[616,-570],[333,42],[125,-111],[744,-261],[148,120]],[[51647,38614],[256,-631],[288,-379],[219,-529],[625,-497],[362,-88],[199,171],[540,150],[845,-97],[307,-105],[866,122]],[[51511,38618],[136,-4]],[[22314,36122],[359,290],[98,309],[327,111],[159,519],[524,-406],[364,-620],[264,478],[285,-290],[192,-533],[287,-47],[228,-298],[584,-48]],[[50797,34970],[264,919],[284,731],[51,755],[114,366],[-2,887],[-282,56],[-122,308],[-488,184]],[[50574,39130],[42,46]],[[75253,39937],[-373,96],[-526,488],[-179,538],[-283,298],[-414,211]],[[22314,36122],[-32,434],[185,642],[-142,673]],[[22325,37871],[-482,33],[-95,96]],[[16868,34923],[-4,698],[155,397],[374,593],[385,-498],[267,-140],[-104,237],[180,543],[20,326],[189,-82],[1803,580],[337,-405],[510,628],[768,200]],[[66303,36633],[-672,362],[-641,467],[-915,488],[-230,342],[-384,398],[-835,646],[-151,300],[-309,349],[-281,574]],[[65969,37921],[-388,930],[-592,567],[-288,122],[-130,405],[-531,251],[-248,206],[-499,65],[-509,148],[-652,19],[-247,-75]],[[88698,40288],[-494,1033],[-265,310],[-151,-56],[-95,245]],[[81387,39182],[-9,221],[174,91],[-50,274],[129,81],[137,547],[187,5],[275,243],[66,323],[334,174],[198,-464],[383,367],[325,-250],[121,25],[-19,685]],[[83638,41504],[135,112],[101,360],[411,-15],[204,-534],[140,25],[136,-335],[387,284],[78,414],[225,277],[252,88],[395,-59],[287,335],[531,182],[331,497],[59,432]],[[3710,37846],[343,-1365],[-104,-241],[436,-514],[8,-302],[433,-547],[600,247]],[[3310,34148],[148,1055],[175,345],[-14,1881],[91,417]],[[61885,40559],[-277,256]],[[51578,39985],[250,-259],[19,-254],[-200,-858]],[[75253,39937],[106,726],[156,260],[121,526],[34,895]],[[51405,40087],[173,-102]],[[50616,39176],[321,521],[178,57],[290,333]],[[31091,30268],[389,195],[436,556],[531,142],[294,196],[198,604],[822,-23],[716,247],[188,396],[73,371],[325,318],[177,303],[62,659],[132,406],[-144,97],[94,507],[-51,506],[132,279],[78,677],[-342,307],[-244,71],[-275,238],[-56,354],[168,665],[84,563],[231,20],[152,186]],[[56449,40716],[88,-293],[28,-698],[-359,-793],[-339,-371],[-45,-386],[151,-97],[1,-1075],[180,-272]],[[68397,41864],[275,-362],[79,-388],[517,-713],[205,-112],[329,32],[623,-460],[449,-256],[215,-444],[337,-388]],[[81473,43353],[217,-233],[269,-55],[139,127],[161,-462],[390,126],[389,-574],[340,283],[54,-454],[206,-607]],[[25985,35587],[415,-76],[371,492],[440,122],[746,-291],[258,-8],[233,699],[281,-233],[957,-105],[252,-84],[523,-21],[371,-103],[1002,-11],[689,-341],[462,122],[347,489],[-3,246],[275,290],[283,805],[-24,900],[178,682],[461,33],[187,-127],[349,319]],[[68324,42004],[73,-140]],[[56449,40716],[535,124],[254,-259],[156,9],[251,-262],[386,160],[136,160],[304,39],[602,-141],[164,120],[698,172],[305,359],[376,-86],[215,-208],[510,-107],[267,19]],[[51578,39985],[77,620]],[[51700,40792],[-34,-147]],[[51700,40792],[330,-170],[218,197],[117,-72],[698,119],[330,273],[747,-465],[398,-94],[469,134],[265,-130],[356,18],[346,145],[391,-150],[84,119]],[[35261,39108],[336,-172],[382,35],[317,239],[305,43],[69,-141],[431,-227],[210,76],[333,322],[795,-83],[282,215],[595,80],[307,266],[281,568]],[[50616,39176],[-323,-169],[-470,-24],[-567,139],[-845,357],[-928,1160],[-316,341]],[[47166,40976],[1,4]],[[47167,40980],[-11,11]],[[47156,40991],[10,-15]],[[73478,41568],[-21,1022],[91,334],[41,613],[284,-205],[300,-541],[736,10],[334,-351],[427,-106]],[[5426,35124],[252,608],[123,92],[149,457],[285,-132],[585,433],[168,-478],[-55,-119],[33,-705],[424,12],[500,-343],[54,-421],[178,-356],[346,-391],[88,145],[525,-320],[606,-209],[297,53],[116,-151],[390,254],[580,-50],[249,235],[516,64],[-227,219],[-180,-96],[-130,150],[-164,525],[-410,194],[-96,201],[-103,824],[-212,393],[-617,463],[-206,411],[-293,270],[-87,525],[-473,337],[-292,-390],[-190,149],[-383,-154],[-350,55],[-366,-172],[-172,108],[-126,453],[-363,158],[-343,-200],[-237,46],[-247,-157],[-354,271],[-127,-145],[-228,340],[-166,464],[-494,172],[-196,339]],[[3710,37846],[237,611],[56,1098]],[[50197,41603],[481,-676],[419,-782],[308,-58]],[[67114,43136],[292,-532],[230,-89],[688,-511]],[[67114,43136],[-39,-714],[-118,-290],[-88,-807],[-136,-757],[-4,-517],[96,-1268],[-53,-723],[14,-804]],[[47167,40980],[153,185],[544,155],[209,-64],[493,52],[89,-77],[726,-6],[272,512],[544,-134]],[[3046,39911],[-38,-866],[-96,-362],[-234,-1675],[382,-1903],[250,-957]],[[3182,39939],[5,1]],[[3187,39940],[412,32]],[[3599,39972],[404,-417]],[[46293,41674],[324,-170],[539,-513]],[[39904,40329],[237,-257],[339,-154],[741,-105],[486,47],[603,-91],[607,118],[331,334],[412,251],[283,337],[888,773],[992,237],[470,-145]],[[73478,41568],[-261,55],[-400,265],[-772,311],[-286,-5],[-693,206],[-233,352],[-168,78],[-62,499],[-739,840]],[[69646,44245],[218,-76]],[[69646,44245],[-1117,-761],[-93,-389],[-112,-1091]],[[46293,41674],[821,642]],[[67114,43136],[-286,402],[-480,159],[-416,246]],[[66786,37256],[-109,812],[-245,1261],[35,546],[-120,1217],[-228,1727],[-145,448],[-42,676]],[[209,29441],[-209,686],[175,254],[44,446],[200,353],[-27,430],[157,177],[112,494],[220,507],[-101,693],[131,322],[-21,773],[-313,422],[180,521],[30,363],[-53,942],[139,252],[-50,1046],[172,546],[-33,321],[208,1319],[122,293],[-40,545]],[[37293,42969],[196,-244],[47,-287],[515,-711],[239,-565],[639,-489],[726,-314],[249,-30]],[[67777,45442],[202,-206],[356,-140],[821,-675],[490,-176]],[[67777,45442],[-194,-682],[-32,-648],[-156,-220],[-4,-471],[-277,-285]],[[67777,45442],[-72,143]],[[87169,43817],[-455,179],[-267,288],[-488,1022],[-310,371],[-113,897]],[[73181,46502],[-52,-264]],[[52279,44619],[-424,-909],[-153,-1245],[43,-410],[-87,-288],[-16,-807],[58,-168]],[[50197,41603],[187,1105],[145,224],[297,26],[382,451],[139,650],[276,101],[656,459]],[[76280,46978],[86,-63]],[[73129,46238],[100,-134],[439,-135],[142,334],[321,-132],[457,140],[150,293],[407,-24],[246,-133],[239,39],[123,229],[224,28],[117,256],[186,-21]],[[3477,42694],[89,-649],[52,-841],[-19,-1232]],[[37293,42969],[205,45],[530,383],[2152,525],[296,328],[321,-158],[272,33],[335,-271],[1183,-371],[327,161],[794,-260],[876,72],[286,193],[154,-370],[378,-365],[647,-127],[583,-529],[501,71]],[[73102,47104],[79,-602]],[[87310,43567],[-221,474],[-218,1010],[-35,551],[-98,223],[62,726],[142,206],[122,443],[-196,357],[19,669],[83,432],[185,333]],[[35038,39386],[-157,653],[-101,1036],[-133,78],[-39,1233],[-97,505],[-260,468],[193,181],[63,442],[166,316]],[[34673,44298],[81,16]],[[70626,47300],[335,-161],[572,-442],[197,-273],[335,-4],[102,220],[195,-81],[422,-472],[194,216],[151,-65]],[[69864,44169],[147,701],[223,673],[263,457],[129,1300]],[[34754,44314],[-5,197]],[[34673,44298],[-492,-274],[-27,-225],[-187,-108],[-730,39],[-118,-119],[-91,-669],[-220,-120],[-874,74],[-362,580],[-203,-240],[-202,31],[-230,323],[-18,355],[-152,392]],[[77082,48195],[-1,69]],[[76366,46915],[152,593],[263,123],[300,633]],[[77081,48264],[-98,53],[-120,-324],[-421,-315],[-162,-700]],[[52279,44619],[327,-113],[302,98],[208,475],[440,114],[108,700],[-261,414]],[[67705,45585],[-484,296],[-161,341],[-729,675],[-730,569]],[[65932,43943],[-91,931],[4,831],[-249,1474],[5,287]],[[65601,47466],[0,6]],[[53144,46490],[259,-183]],[[1678,42790],[-181,-316],[40,-794],[245,-183],[189,236],[281,-762],[197,-126],[518,-725],[215,-181]],[[89377,50389],[-372,-542],[-384,-315],[-168,-258],[-807,-265],[-491,-18]],[[87155,48991],[17,526],[141,301],[24,485]],[[56202,47244],[318,-523],[661,-874],[201,-510],[268,-334],[185,-391],[205,-115],[183,-373],[674,-1021],[357,-191],[917,-969],[254,78],[517,-585],[666,-621]],[[84909,47621],[-314,666],[-185,689],[-322,684],[-183,628],[28,159]],[[70626,47300],[-287,432],[-333,318],[-219,76],[-207,272],[-286,12],[-193,291],[-481,-52],[-357,119],[-617,-12]],[[67705,45585],[92,886],[49,1323],[-183,590],[-17,372]],[[30767,44337],[428,112],[252,-228],[187,-3],[339,423],[-53,442],[101,459],[-83,613]],[[82499,49281],[-170,241],[-237,-251],[-276,362],[-405,-51],[-463,619],[-355,37],[-81,-448],[-320,-133],[-65,-794],[-218,-219],[-214,152],[-210,-190],[-381,-16],[-345,-525],[-347,-26],[-57,-211],[-737,320],[-226,-41],[-311,157]],[[89597,39334],[-240,555],[-13,618],[63,264],[422,779],[-32,244],[96,818],[34,914],[155,440],[58,559],[-24,656],[309,832],[16,287],[-366,2553],[-162,294],[-57,1477],[-128,487],[-357,411],[-297,32],[-1619,-1373],[-118,122]],[[30767,44337],[-350,332],[-355,-83],[-76,-238],[-859,100],[-168,109],[-233,397],[-423,282],[-220,666],[-357,29],[-508,-694],[-201,276],[-190,18],[-410,558],[-271,139],[-282,-294],[-243,-24],[-234,187],[-824,-767],[-7,-633],[-134,-627],[-184,-372],[-193,-164],[-265,-575],[-9,-477],[-91,-478],[-221,-339],[-228,-68],[-518,-398],[7,-281],[-182,-374],[17,-467],[-390,-730],[26,-599],[133,-376],[1,-501]],[[85804,50805],[-329,436],[-479,-220],[-118,-306]],[[54246,48221],[168,-216],[71,-329],[200,-241],[300,-787],[250,-219],[191,-684],[136,-287],[150,-683],[232,-229],[-31,-240],[29,-972],[124,-973],[240,-382],[139,-387],[55,-644],[-51,-232]],[[53403,46307],[17,388],[215,445],[126,627],[254,144],[231,310]],[[54387,48249],[256,-77],[197,-247],[338,-25],[397,-309],[627,-347]],[[54387,48249],[-48,-3]],[[54339,48246],[-93,-25]],[[52279,44619],[92,750],[-2,488],[169,25],[255,532],[355,86],[10,415],[292,409],[100,397],[310,428],[386,72]],[[71469,49888],[155,-573],[271,-469],[215,-69],[71,-403],[160,1],[555,-681],[206,-590]],[[65932,43943],[-1284,615],[-319,786],[-436,938],[-247,642],[-141,565],[-402,983],[-375,583]],[[62728,49055],[-226,-686],[37,-266],[282,-526],[383,-1196],[30,-580],[140,-735],[462,-1296],[99,-669],[313,-588],[262,-271],[418,-793],[168,-723],[240,-701],[470,-1011],[144,-635],[19,-458]],[[71469,49888],[-367,106]],[[70626,47300],[87,539],[273,499],[115,870],[1,786]],[[67646,48756],[-184,-53],[-367,134],[-571,-14],[-635,252],[-635,330],[-438,47]],[[65601,47472],[-23,398],[-197,532],[-565,1050]],[[53756,48496],[424,-124],[66,-151]],[[73102,47104],[162,1010],[-22,271],[135,419],[45,516],[-117,406],[192,660]],[[73497,50386],[-288,-243],[-695,-226],[-237,-231],[-187,252],[-621,-50]],[[74135,50490],[-210,-687],[-126,-802],[-236,-580],[53,-534],[-88,-326],[-257,-189],[-19,-629],[-71,-241]],[[54295,48589],[44,-343]],[[74135,50490],[-451,9],[-187,-113]],[[62728,49055],[-131,456]],[[62597,49511],[-237,-255],[-229,-83],[-201,-239],[-330,57],[-274,318],[-344,-166],[-499,2],[-364,-299],[-255,-701],[-688,-378],[-678,-237],[-263,-364],[-66,-308],[-425,-37],[-589,205],[-324,-158],[-379,516],[-250,-140]],[[51955,48347],[373,-67],[498,104],[330,350],[600,-238]],[[65601,47472],[-586,205],[-441,552],[-356,41],[-274,161],[-192,449],[-213,201],[-907,533]],[[62597,49511],[35,103]],[[64816,49452],[-246,395]],[[62526,49709],[106,-95]],[[64570,49847],[-120,-45],[-1533,230],[-187,-135],[-98,-283]],[[83933,50447],[-52,127],[-596,314],[-550,-39],[-165,396],[-436,95],[-76,413],[-289,286],[-332,59]],[[77081,48264],[70,522],[-70,427],[362,570],[-20,202],[194,368],[193,153],[120,377],[312,347],[280,-36],[254,281],[244,83],[125,-166],[237,222],[220,-32],[340,529],[764,-656],[52,189],[237,-73],[283,481],[159,46]],[[48437,49284],[521,-297],[348,-29],[601,-353],[294,-469],[357,-257],[309,106],[455,-94],[377,349],[256,107]],[[61508,50342],[199,-69],[331,-335],[488,-229]],[[54387,48249],[86,134],[128,822],[160,340],[557,235],[651,-245],[457,-13],[242,185],[403,135],[179,-80],[904,286],[495,-41],[330,343],[236,-176],[269,-394],[452,11],[336,-117],[358,329],[217,20],[162,187],[499,132]],[[34749,44511],[988,27],[234,449],[199,132],[144,343],[264,1003],[97,222],[478,222],[487,742],[236,698],[661,515],[526,-81],[240,54],[395,-137],[1098,-71],[551,-422],[366,-209],[1042,-233],[584,118],[352,294],[231,-47],[548,462],[235,320],[499,304],[301,14],[620,-320],[1235,834],[434,-43],[643,-417]],[[49689,49992],[460,-555],[377,-161],[628,-924],[445,49],[356,-54]],[[53633,50379],[84,-254],[345,-540],[136,-756],[97,-240]],[[53633,50379],[112,-590],[-5,-772]],[[53633,50379],[-4,13]],[[34749,44511],[-230,960],[30,316],[168,159],[-88,517],[-6,608],[197,1043],[132,343],[-18,742],[45,331],[-95,692],[154,227]],[[32519,48908],[296,459],[143,393],[259,-71],[231,-482],[234,81],[408,422],[187,-4],[453,638],[308,105]],[[51199,51085],[548,15],[465,-444],[174,-373],[486,-231],[724,-762],[144,-273]],[[53740,49017],[16,-521]],[[49366,52021],[289,-1238],[34,-791]],[[48931,52447],[258,-377],[177,-49]],[[47770,52426],[160,-303],[391,-977],[450,-48],[328,-274],[590,-832]],[[47770,52426],[960,153],[201,-132]],[[83933,50447],[-114,644],[-61,982],[17,358],[-80,680],[175,485],[-130,732],[-336,332],[1,469],[-99,217],[-76,623]],[[47609,52579],[161,-153]],[[36969,51911],[-527,-598],[-400,-128],[-304,-553],[-398,-288],[-302,105]],[[48437,49284],[58,229],[-140,779],[-185,183],[-381,-45],[-203,154],[-1570,-30],[-450,-151],[-355,33],[-758,-346],[-139,-248],[-301,76],[-777,-68],[-550,154],[-650,402],[-37,1682],[27,253]],[[85334,56554],[-288,-675],[-244,-48],[-148,-301],[-437,28],[-155,120],[-362,3],[-470,288]],[[53629,50392],[57,518],[201,413],[182,898],[-117,418],[79,450],[-17,401]],[[36969,51911],[145,7],[416,-293],[726,159],[284,-56],[723,20],[704,207],[758,326],[438,285],[339,-270],[302,-83],[222,128]],[[87337,50303],[108,557],[8,511],[-79,1099],[83,365],[-94,455],[57,438],[-98,655],[-90,1005],[-158,1045],[-592,756]],[[85334,56554],[181,-35],[357,144],[610,526]],[[42026,52341],[448,386],[549,323],[799,230],[580,-301],[654,-235],[969,-107],[179,-83],[293,120],[933,21],[179,-116]],[[54170,54170],[84,-1313],[-79,-405],[8,-1286],[-43,-174],[21,-1382],[141,-573],[-7,-448]],[[54170,54170],[-51,-570],[-105,-110]],[[48941,53881],[407,-1322],[18,-538]],[[48941,53881],[-197,-859],[187,-575]],[[81437,52098],[-23,134],[-309,95],[-249,407],[-634,875],[-215,-15],[-453,350],[-305,16],[-321,208],[-417,503],[9,480],[-346,1132],[-782,625],[-146,209],[-366,-121],[-184,-250],[-346,371]],[[83230,55969],[-240,465],[-392,541],[-511,858]],[[56737,55668],[464,-174],[398,-321],[125,-1096],[296,-759],[420,-371],[16,-166],[254,-233],[324,-103],[158,269],[225,54],[564,-490],[500,-282],[636,-1159],[350,-282],[41,-213]],[[56735,55668],[2,0]],[[54170,54170],[232,309],[238,48],[271,283],[357,221],[458,16],[445,250],[297,330],[267,41]],[[35041,54584],[182,-258],[248,-74],[220,-621],[238,-303],[140,-356],[196,-167],[704,-894]],[[35038,50449],[30,231],[-126,1033],[-301,529],[-20,615],[-94,437],[183,485],[127,625],[204,180]],[[74135,50490],[-135,496],[111,190],[-31,1314],[219,461],[79,393],[201,205],[179,519],[-83,442],[-56,896],[293,580],[-35,377],[-221,806],[62,407],[-72,436]],[[76350,57117],[-142,202],[-457,377],[-224,48],[-276,463]],[[75251,58207],[-429,-460],[-176,265]],[[71102,49994],[-78,217],[140,815],[-58,802],[-198,675],[64,1257],[128,412],[-179,478],[-271,3],[-521,321],[-123,281],[-144,925],[348,1347],[-449,491]],[[67646,48756],[22,665],[-83,449],[-34,642],[109,912],[-163,413],[136,304],[50,596],[211,863],[-17,594],[86,359],[-3,621],[73,818],[471,412],[421,531],[422,281],[391,641],[23,161]],[[3496,42688],[461,963],[49,731],[204,675],[362,770],[262,153],[171,542],[330,1364],[191,475],[-36,877],[50,660],[-76,651],[287,1592],[-5,539],[-78,699],[240,720],[396,165]],[[64570,49847],[-118,1527],[7,515],[118,1532],[-67,585],[144,360],[-37,698],[88,631],[266,177],[117,365],[-25,328],[95,730],[252,452]],[[74019,58615],[241,-203],[147,-312],[239,-88]],[[74019,58615],[-40,-375],[-169,-109],[-82,-499],[44,-479],[145,-308],[-31,-312],[149,-330],[-150,-1167],[-246,-461],[-257,-1388],[-316,-554],[14,-935],[101,-394],[221,-218],[95,-700]],[[82087,57833],[-636,-185],[-195,25],[-160,277],[-311,166],[-366,-77],[-432,101],[-174,-64],[-166,214],[-375,114],[-168,181],[-422,112],[-646,483]],[[76350,57117],[309,794],[219,205],[271,62],[80,-126],[313,-13],[226,375],[-20,312],[288,454]],[[82087,57833],[-178,431],[-17,284],[124,615],[-390,529]],[[54660,57056],[215,-287],[520,6],[108,84],[586,-362],[179,-331],[467,-498]],[[54660,57056],[-203,-565],[-244,-1005],[-191,-526],[148,-790]],[[69695,58554],[66,-536]],[[35041,54584],[-205,290],[-6,298],[149,708],[-26,156]],[[1858,44440],[106,432],[396,781],[69,331],[-166,463],[-339,-123],[-90,413],[43,349],[139,220],[355,1026],[208,210],[102,475],[-3,360],[329,836],[58,728],[112,110],[58,462],[-189,782],[117,471],[-145,362],[-119,-19],[65,390],[-97,1235],[43,370],[-139,-25]],[[85334,56554],[-118,314],[-338,428],[-145,507],[-71,967],[-117,204],[-425,1315],[-177,292]],[[83943,60581],[-6,14]],[[85097,60898],[400,-1520],[325,-653],[251,-957],[409,-579]],[[85068,60887],[29,11]],[[83937,60595],[861,268],[272,33]],[[53536,57851],[123,-890],[245,-311],[38,-227],[-195,-459],[37,-772],[-14,-1111],[244,-591]],[[85097,60898],[2521,939],[176,150]],[[79483,61335],[-33,10]],[[78036,59180],[116,105],[98,718],[253,555],[363,22],[291,560],[293,205]],[[81626,59692],[-189,122],[-371,24],[-338,-123],[-238,317],[-209,558],[-348,413],[-410,358]],[[84809,61980],[280,-1073]],[[79523,61361],[-73,-16]],[[65410,57747],[136,142],[140,1070],[-78,741],[83,347]],[[62526,49709],[-187,455],[-176,718],[-9,405],[-348,582],[-185,618],[223,641],[22,718],[-123,292],[74,810],[-18,788],[249,412],[153,78],[251,588],[-178,736],[-39,511],[-142,686],[-722,1047]],[[61371,59794],[-8,15]],[[56737,55668],[532,263],[407,-67],[286,229],[309,22],[852,-301],[209,460],[-4,337],[283,727],[187,126],[166,492],[117,31],[178,487],[-15,414],[214,252],[465,126],[242,384],[198,159]],[[83943,60581],[-417,-110],[-203,-253],[-358,-16],[-735,277],[-372,401],[-136,343],[-207,108],[-453,620]],[[81626,59692],[-35,665],[-107,459],[-251,399],[-171,736]],[[53629,50392],[-220,1008],[10,297],[-242,416],[-60,275],[31,1439],[-172,478],[-55,881],[261,773],[64,478],[65,1109],[-143,442],[-222,45],[-297,301],[-392,929]],[[52257,59263],[-228,-471],[9,-414],[114,-641],[-9,-881],[117,-389],[-275,-302],[-3,-628],[216,-879],[-202,-487],[76,-350],[10,-820],[116,-636],[204,-353],[456,-249],[329,-612],[41,-210],[280,-260],[125,-302]],[[79450,61345],[-258,78],[-498,347]],[[78694,61770],[-26,26]],[[6304,54264],[556,532],[24,472],[126,348],[243,-35],[113,351],[159,5],[230,484],[846,425],[366,26],[189,208],[343,147],[239,279]],[[65691,60047],[97,382],[-17,487]],[[81062,61951],[-463,601]],[[80599,62552],[-374,-477],[-89,-350],[-203,-219],[-410,-145]],[[10039,57779],[-226,-13],[-75,-260]],[[10039,57779],[74,-131],[323,-47],[575,-264],[331,198],[234,-36],[251,150],[283,353],[342,-5],[315,-325],[134,-472],[298,-107],[234,-274],[36,-296],[-105,-604],[248,-789],[165,-231],[-29,-414],[129,-329],[274,-331],[166,-423],[217,95],[253,-254],[55,-472],[471,-491],[45,-678],[122,-462],[334,-389],[145,-847],[-190,-854],[68,-289],[315,8],[96,360],[361,11],[150,-455],[126,-34],[390,-436],[276,-39],[534,-227],[808,-908],[342,-600],[125,-913],[96,-327],[229,-229],[343,-1146],[405,-684],[266,-301],[375,-746],[167,-173],[134,-868],[-106,-128],[-166,-951],[58,-757],[369,-991],[218,-227]],[[74019,58615],[-250,341],[-323,685],[-367,1403],[-162,735],[75,429]],[[72992,62208],[210,27],[509,-510],[238,-946],[151,-260],[382,-1285],[365,-546],[404,-481]],[[47609,52579],[-270,381],[-959,709],[-175,250],[-1145,118],[-613,103],[-410,173],[-563,356],[-436,411],[-234,-99],[-447,387],[-239,420],[-700,673],[-1373,1592],[-1442,1471]],[[35041,54584],[543,496],[28,116],[565,355],[-5,363],[-116,81],[190,354],[122,460],[559,671],[528,322],[7,335],[196,146],[945,1241]],[[53545,57850],[-385,391],[-316,1316],[-124,1126]],[[52257,59263],[117,259],[346,1161]],[[52245,59259],[-301,485],[-460,137],[-196,282],[24,498]],[[72713,62660],[279,-452]],[[72713,62660],[-306,-104],[-684,614]],[[71723,63170],[-196,-968],[-175,-103],[-225,-467],[-427,-678],[-212,-564],[-3,-517],[-86,-393],[-704,-926]],[[7568,56078],[-102,336],[61,712],[-54,1120],[-304,196],[-598,-229],[246,1114]],[[6817,59327],[-524,-415],[2,-129],[-432,-287],[-289,27],[-174,191],[-242,-89],[-190,-724],[-561,-554],[-513,-249],[-222,-233],[-562,-257],[-277,-41],[-57,-293],[-203,-288],[169,-437],[67,-421]],[[81062,61951],[188,547],[172,737],[117,158],[219,-25],[70,596],[-108,440]],[[83937,60595],[-73,345],[-326,568],[-70,272],[-395,535],[-658,1127],[-349,412],[-242,574],[-104,-24]],[[81720,64404],[-58,233]],[[81662,64637],[-109,-376],[-186,-287],[-338,-222],[-250,-804],[-180,-396]],[[10039,57779],[882,479],[150,517],[405,131],[187,492],[615,446],[382,148],[928,-1272],[263,90],[255,-69],[422,1002],[638,59],[333,-651],[232,-828],[544,-723],[187,231],[242,-292],[426,-201],[428,307],[420,660],[323,258],[651,-109],[-4,270],[292,-48],[219,472]],[[63350,63239],[337,-174],[184,-295],[201,-112],[228,-440],[293,-300],[235,-525],[863,-1346]],[[63350,63239],[433,-934],[330,-609],[234,-881],[194,-383],[21,-714],[221,-312],[121,-608],[506,-1051]],[[6817,59327],[99,370],[-27,385]],[[61371,59794],[326,370],[147,377],[268,188],[228,361],[254,638],[355,674],[139,623],[248,308]],[[63350,63239],[37,115]],[[63336,63333],[51,21]],[[54660,57056],[-35,546],[-139,226],[-34,536],[76,481],[-7,455],[-216,831],[30,485],[-108,259],[-9,373],[-233,320],[-4,279],[-177,438],[49,268]],[[9738,57506],[-250,92],[-368,358],[-113,369],[3,718],[-141,302],[-349,156],[-28,266],[255,849]],[[48941,53881],[252,883],[428,959],[-54,179],[-56,1328],[-182,500],[-165,866],[-2,352],[-211,419],[-207,613],[-72,424],[-3,645],[-123,342],[23,288],[-104,473],[0,464]],[[48465,62616],[172,-59],[220,-333],[165,-47],[231,-499],[489,96],[44,-133],[268,61],[688,-420],[431,-580],[139,-41]],[[71723,63170],[-347,829],[-161,-48],[-266,307],[-360,-479],[-199,-54],[-173,298],[-539,437]],[[69678,64460],[-117,-675],[191,-665],[46,-609],[-98,-323],[-16,-554],[210,-1208],[0,-570],[-216,-848],[17,-454]],[[6889,60082],[356,164],[202,-28],[171,178],[146,-103],[439,144],[276,425],[144,41],[124,-287]],[[69528,64658],[150,-198]],[[66518,63803],[168,202],[416,129],[270,184],[562,147],[208,-53],[686,50],[549,242],[151,-46]],[[74049,65583],[114,-626],[-37,-1083],[-160,-554],[17,-1539],[99,-371],[224,-447],[-26,-264],[294,-658],[509,-736],[158,-675],[10,-423]],[[72992,62208],[243,412],[51,466],[243,219],[168,476],[-58,621],[94,510],[4,465],[312,206]],[[48941,53881],[-419,890],[-178,193],[-282,538],[-519,-106],[-474,300],[-359,590],[-304,793],[-187,184],[-347,731],[-140,422],[-223,194],[-893,-1],[-534,461],[-199,94],[-231,609],[-583,426],[-114,260],[-282,290],[-146,386],[-356,416],[-1404,1077],[-885,446]],[[38603,59524],[89,135],[304,1207],[-97,615],[145,284],[281,154],[154,439],[-1,275],[404,441]],[[34951,56011],[-80,629],[51,424],[-193,634],[-241,1197],[-27,351],[-371,797],[-176,30],[-201,293],[-271,190],[-295,1080],[-511,-109],[-298,-197],[-165,-520],[-116,-6],[-322,379],[-472,-250],[-261,-273],[-554,994],[-122,398],[-16,483],[-205,405]],[[53853,62553],[184,116],[182,478],[42,325],[-94,278],[109,403],[-30,417]],[[61363,59809],[-564,1792],[-458,1104],[-192,611],[-551,887],[-280,659],[-250,232]],[[53853,62553],[238,42],[149,190],[420,-179],[144,79],[275,-228],[790,-136],[78,287],[727,-63],[824,809],[217,23],[321,332],[303,-42],[242,183],[88,781],[204,76],[195,387]],[[58932,65247],[136,-153]],[[78694,61770],[-173,270],[-327,142],[-283,523],[-214,30],[-994,808],[-249,529],[-334,292],[-299,792],[-722,1433],[-76,261]],[[80599,62552],[-271,426],[-211,67],[-424,497],[-13,357],[-178,393],[-370,397],[-226,-77],[-480,419],[-513,-43],[-306,386],[-436,176],[-175,243],[-327,108],[-627,-55],[-286,233],[-137,280],[-395,394],[-201,97]],[[19459,59148],[27,98],[565,196],[235,183],[262,-136],[295,59],[538,347],[442,531],[740,646],[421,208],[267,257],[438,-260],[339,-23],[289,-284],[828,-550],[379,-142],[357,-547],[606,-99],[485,282],[308,414],[355,183],[106,171],[161,898],[413,347],[370,132],[260,-65],[254,638],[166,191],[9,277],[308,266],[186,-305],[237,-121]],[[39882,63074],[-276,875]],[[75023,66850],[-51,73]],[[74049,65583],[178,128],[249,536],[496,676]],[[51858,64671],[398,394],[229,37],[395,-315],[406,-194],[294,0],[486,-148],[180,125]],[[30105,62940],[-169,928]],[[38603,59524],[-108,95],[-643,955],[-1040,1306],[-28,521],[-246,254],[-827,136],[-539,196],[-271,-47],[-741,389],[-166,237],[-702,531],[-170,351],[-131,49]],[[32991,64497],[-648,-329],[-240,243],[-176,-275],[-383,317],[-196,-112],[-747,550],[-414,-372],[-251,-651]],[[59544,67243],[-250,-548],[-236,-1171],[-126,-277]],[[59649,67261],[430,-782],[268,-231],[586,-1055],[173,-582],[1175,-813],[653,-335],[237,-224],[165,94]],[[59649,67261],[-105,-18]],[[70577,68563],[144,-304],[70,-557],[403,-633],[201,-421],[340,-464],[189,-384],[456,-1428],[132,-595],[-35,-416],[236,-701]],[[39606,63949],[-346,99],[-567,452],[-236,280],[-463,375],[-614,800]],[[37380,65955],[-89,35],[-1522,-319],[-143,-97],[-389,2],[-340,-226],[-147,419],[-752,-410],[-103,121],[-198,-398],[-312,151],[-394,-736]],[[8747,60616],[250,463],[258,300],[583,214],[242,192],[650,1038],[208,509],[259,128],[305,768],[176,140],[209,568]],[[74972,66923],[-254,-118],[-184,88],[-412,409],[-424,19],[-256,205],[-607,42],[-206,303],[-182,-37],[-142,184],[-224,-59],[-309,246],[-399,93],[-156,212],[-255,17],[-247,212]],[[70577,68563],[138,176]],[[70220,68814],[357,-251]],[[70220,68814],[70,-705],[-153,-913],[62,-363],[-244,-778],[-390,-1086],[-37,-311]],[[63387,63354],[227,171],[512,648],[468,270],[373,565],[284,65],[892,1258],[252,757],[393,553],[230,144],[316,-4],[517,-257],[433,195],[219,-118],[283,172],[108,218],[377,-96],[299,274],[69,260],[294,386],[287,-1]],[[39606,63949],[150,1538],[204,360],[87,1253]],[[6889,60082],[272,206],[197,444],[210,94],[-140,547],[338,509],[-123,455],[454,761],[107,410],[147,1086],[-16,526],[-133,223],[104,357]],[[19459,59148],[-326,-237],[-353,138],[132,1007],[-125,183],[-348,93],[-397,1676],[-446,-65],[-53,347],[132,526],[-29,851]],[[74972,66923],[104,321],[515,891],[168,417],[185,24],[234,264],[168,531],[512,987]],[[76868,70525],[-10,-167]],[[11887,64936],[-78,872],[-251,781]],[[82017,71745],[202,-594],[135,-1007],[104,-394],[239,-227],[625,-314],[316,-64],[388,-233],[198,-473],[-101,-284],[-70,-843],[39,-217],[203,-2788],[-160,-1248],[484,-148],[190,-931]],[[82017,71745],[-180,-868],[-162,-2133],[48,-1345],[-41,-1290],[-72,-782],[52,-690]],[[11558,66589],[-208,-180],[-391,-86],[-280,139],[-394,-198],[-121,565],[-335,-80],[-49,-287],[-296,274]],[[51835,64734],[-172,595],[-49,535],[-196,716],[-279,694],[-160,614],[-510,1147]],[[51205,60462],[184,405],[-86,491],[45,339],[150,85],[12,883],[-282,407],[-175,420],[-226,280],[-198,595],[-167,267],[-300,708],[-35,286],[-351,253],[-34,486],[250,1173],[-54,302],[98,541],[383,165],[50,487]],[[82151,72076],[-134,-331]],[[11611,67158],[-53,-569]],[[82151,72076],[-449,-106],[-241,183],[-834,49],[-178,80],[-395,-74],[-517,4],[-289,-248],[-116,-271],[-657,-555],[-213,111],[-462,-172],[-590,-494],[-175,-228],[-177,3]],[[14407,67974],[453,-366],[188,-17],[1398,-689],[118,-17],[424,-603],[413,-190],[1468,27]],[[11887,64936],[261,324],[639,1092],[405,833],[200,50],[38,373],[367,159],[156,-188],[189,357],[265,38]],[[47620,69859],[-121,-696],[78,-691],[-123,-246],[-34,-711],[180,-506],[17,-1700],[-52,-194],[106,-782],[-22,-1174],[-75,-363],[-59,-992],[310,-1089],[27,-1026],[-24,-816],[173,-1220],[307,-851],[253,-937],[190,-313],[31,-764],[159,-907]],[[39882,63074],[581,124],[995,720],[877,782],[206,584],[87,720],[166,361],[391,258],[309,26],[991,491],[244,402],[296,15],[288,482],[471,380],[373,148],[383,6],[635,522],[132,373],[313,391]],[[55500,70548],[217,-230],[143,-374],[283,-94],[413,-273],[390,-673],[260,-207],[210,-838],[490,-1086],[199,-62],[258,-632],[263,-219],[306,-613]],[[54246,64570],[53,182],[-39,622],[244,166],[524,117],[-59,375],[-167,74],[-48,420],[67,599],[-46,369],[184,183],[-105,158],[-121,654],[27,376],[127,210],[313,217],[19,330],[200,394],[-6,546],[87,-14]],[[59544,67243],[-185,488],[-191,753],[-1194,1190],[-55,298],[-653,725],[-346,27],[-504,202],[-245,-212],[-494,-8],[-177,-158]],[[18869,66119],[193,45],[622,1005],[201,506],[-87,447],[21,396],[-62,700]],[[14407,67974],[710,-1],[207,97],[393,-137],[933,-25],[857,-74],[312,-229],[109,77],[476,-153],[330,125],[642,939],[381,625]],[[73306,71790],[348,176],[243,-12],[461,556],[274,196],[430,164],[151,-138],[380,152],[340,525],[43,-370],[247,-459],[221,-1056],[132,-114],[201,-475],[91,-410]],[[70715,68739],[242,305],[211,561],[299,513],[385,217],[78,349],[759,506],[368,306],[225,313]],[[80829,74463],[193,-340],[983,-1404],[332,-571],[-186,-72]],[[80829,74463],[-263,-289],[-998,-386],[-448,-277],[-358,-446],[-333,-175],[-272,10],[-256,-347],[-244,-526],[-340,-202],[-201,-823],[-248,-477]],[[80790,74573],[39,-110]],[[71475,73103],[-34,-605],[-248,-306],[-148,-340],[-525,-652],[-157,-311],[49,-669],[-202,-277],[-129,-706],[-415,884],[-244,261],[-229,57],[-442,-132],[-7,688],[-362,737],[-208,88],[-525,821],[-83,393],[-381,520],[-308,-26],[-375,334]],[[48465,62616],[102,203],[2,492],[158,537],[0,568],[251,567],[197,1040],[265,842],[-187,892],[57,582],[-42,576],[-216,536],[173,427],[-118,484],[-15,572],[-221,565],[-60,642],[-119,522]],[[47620,69859],[230,260],[689,1733],[153,811]],[[29936,63868],[-464,1663],[10,1284],[-72,355],[-210,354],[2,549],[-183,554],[4,600],[-72,550],[2,860],[-204,908]],[[50469,69035],[-7,376],[-111,605],[-192,70],[-184,371],[-240,1665],[-179,886]],[[20744,71515],[-277,-819],[-249,-487],[-186,-541],[-275,-450]],[[49905,73250],[-183,-254],[-166,12]],[[59543,74065],[439,-650],[163,-421],[243,-985],[281,-544],[82,-909],[91,-499],[-23,-364],[113,-167],[-190,-552],[-35,-482],[-278,-631],[-638,-589],[-142,-11]],[[49556,73008],[-549,-8],[-256,295],[-59,-632]],[[63490,74440],[84,111]],[[59543,74065],[391,-131],[994,73],[466,111],[491,400],[202,-88],[597,35],[466,-217],[340,192]],[[63574,74551],[209,119],[192,-290],[369,-100],[280,-190],[290,-56],[595,196],[415,-6],[335,-107],[243,-255]],[[55500,70548],[-24,1162],[167,892],[60,891],[151,390],[255,319]],[[56109,74202],[9,8]],[[56118,74210],[1318,-142],[1124,-24],[652,100],[331,-79]],[[66502,73862],[-94,633],[-88,89],[-70,655]],[[54102,74260],[-231,-23],[-520,-291],[-282,-27],[-580,-314],[-369,0],[-837,-198],[-730,11],[-648,-168]],[[54102,74260],[616,-114],[261,-193],[204,155],[569,214],[199,221],[158,-341]],[[37380,65955],[598,739],[495,855],[1248,1924],[616,1045],[223,486],[-78,272],[168,187],[388,693],[48,318],[337,663],[240,91],[239,379],[305,73],[237,242]],[[56118,74210],[157,684],[-8,526]],[[48704,73736],[50,-434],[-343,272],[-271,-42],[-431,-457],[-178,-54],[-310,312],[-477,635],[-673,15],[-165,296],[-241,157],[-559,41],[-241,216],[-821,-220],[-405,-208],[-606,-87],[-401,-373],[-188,117]],[[78345,77961],[1570,-1558],[533,-1051],[342,-779]],[[78287,78019],[58,-58]],[[78287,78019],[-275,-660],[-396,-1513],[-544,-1107],[-175,-451],[-179,-959],[47,-491],[240,-1022],[-3,-490],[-132,-417],[-2,-384]],[[81318,78464],[-207,-468],[-270,-375],[-115,-719],[-11,-663],[75,-1666]],[[81256,78540],[62,-76]],[[81256,78540],[-761,164],[-500,-143],[-348,-534],[-246,-246],[-1056,180]],[[78287,78019],[-318,252],[-342,128],[-422,42],[-915,-152],[-412,69],[-275,-59],[-139,-174],[-1123,-700],[-644,-212]],[[81625,79098],[-307,-634]],[[81625,79098],[95,72]],[[28775,71551],[114,264],[-7,338],[286,536],[126,842],[172,517],[-8,759],[152,299]],[[29610,75106],[-169,-65],[-490,-952],[-472,-675],[-382,-396],[-459,-335],[-205,-24],[-1509,107],[-497,-686],[-239,-144],[-483,361],[-396,-208],[-916,-579],[-330,122],[-507,1078],[-394,288],[-253,-143]],[[32991,64497],[-211,200],[-541,842],[-171,745],[-44,575],[-347,344],[-158,974],[-407,489],[-112,669],[-32,1109],[166,630],[-257,1445],[-2,261],[-735,1629],[-394,790]],[[29746,75199],[-17,23]],[[29610,75106],[119,116]],[[81625,79098],[-463,210]],[[81162,79308],[94,-768]],[[29687,75305],[42,-83]],[[20744,71515],[-95,341],[-83,1150],[-199,408],[-76,637],[108,912]],[[63574,74551],[106,402],[197,242],[97,381],[601,431],[194,510],[242,384],[524,1185]],[[66253,75219],[-23,348],[-220,590],[-139,73],[-80,638],[-194,541],[31,519],[-93,158]],[[54102,74260],[-165,364],[-512,725],[-119,507],[-199,378],[-390,314],[-437,690]],[[73787,78923],[-32,-648],[35,-556],[-145,-658],[-418,-156],[46,-311],[-238,-254],[-194,-380],[-207,-753],[-190,-163],[-121,211],[-404,-341],[-270,-853],[-206,-851]],[[71443,73210],[-41,239],[-338,928],[-58,1032],[-342,1254],[-180,126],[-198,586],[2,656],[-96,249],[-335,455]],[[21906,72870],[138,1023],[73,1129],[328,446]],[[45243,77211],[-408,-3],[-286,-145],[-187,-429],[-352,-505],[-257,-560],[-225,-760],[-279,-311],[-322,-203],[-268,-306],[-215,-67]],[[81162,79308],[-630,342],[-236,321],[-568,211],[-340,-57],[-517,-279],[-296,-233],[-523,-182],[-994,26],[-479,406],[-442,64],[-440,-446],[-265,-83],[-145,-229],[-790,-41],[-388,-221],[-322,16]],[[48704,73736],[100,699],[133,203],[63,671],[144,930],[152,325],[-89,1312]],[[59543,74065],[110,646],[-23,755],[-249,642],[-256,455],[-104,506],[-23,493],[77,191],[-166,265],[23,827]],[[56267,75420],[440,151],[23,252],[367,634],[368,333],[204,739],[257,389],[438,378],[26,130],[542,419]],[[49905,73250],[-1,874],[-186,491],[622,1025],[327,381],[169,739],[-25,581],[331,1477]],[[31651,77591],[-159,-132],[-506,5],[-283,-572],[-402,-566],[-305,-812],[-250,-315]],[[51151,78858],[-9,-40]],[[51151,78858],[-9,-40]],[[51153,78869],[-2,-11]],[[52280,77238],[-513,802],[-364,338],[-240,502]],[[51163,78880],[-10,-11]],[[51163,78880],[-7,3]],[[51156,78883],[-3,-14]],[[69857,78735],[-145,453],[10,484],[122,690],[232,606],[71,-360],[260,-506],[598,-475],[320,-169],[656,-99],[628,66],[254,-297],[286,-118],[638,-87]],[[42444,73922],[-521,193],[-161,265],[-439,21],[-533,177],[-300,-65],[-303,112],[-201,379],[-477,279],[-909,439],[-373,415],[-205,355],[-289,-75],[-487,372],[-385,190],[-1129,437],[-476,259],[-398,479],[-293,162],[-214,312],[-525,-137],[-934,39],[-1077,-747],[-164,-192]],[[49196,77894],[-207,229],[-131,1086],[-153,588]],[[48704,73736],[-69,504],[27,1042],[-54,294],[-486,607],[5,429],[169,716],[147,226],[47,461],[148,616],[-7,496],[74,670]],[[48705,79797],[-324,48],[-507,-300],[-482,-107],[-85,222],[-370,34],[-458,-526],[-304,-719],[-107,-439],[-365,-472],[-65,-203],[-372,-135]],[[51156,78883],[-229,633],[-815,1147]],[[50112,80663],[-146,-416],[-193,-822],[-130,-281],[-118,-986],[-285,-135],[-39,-171]],[[58932,78845],[227,748],[526,564],[171,431],[260,347],[408,95],[319,492]],[[50112,80663],[-201,481],[-229,207]],[[49682,81351],[-168,-616],[-319,-6],[-323,-414],[-167,-518]],[[56932,82183],[449,-281],[455,-34],[271,79],[541,-14],[940,-201],[152,-86],[655,53],[448,-177]],[[56932,82183],[-17,-525],[60,-333],[197,-362],[66,-587],[-8,-995],[-326,-713],[-145,-856],[-366,-279],[-103,-475],[21,-380],[-90,-491],[46,-767]],[[48533,81820],[-97,-654],[90,-579],[113,-259],[66,-531]],[[48533,81820],[233,-3],[575,-208],[341,-258]],[[64181,83492],[503,-395],[332,-433],[598,-616],[743,-481],[354,-59],[568,105],[283,-339],[429,-370],[227,-591],[20,-436],[116,-206],[446,-270],[275,-501],[578,-229],[204,64]],[[65535,78086],[-155,265],[-130,1069],[-45,80],[-504,2257],[-75,535],[-227,755],[-218,445]],[[63887,83555],[294,-63]],[[63703,83541],[184,14]],[[63490,74440],[-342,1601],[63,773],[-118,688],[29,988],[57,386],[-84,969],[52,1179],[290,1214],[-119,679],[66,300],[319,324]],[[63703,83541],[-100,44],[-465,-374],[-419,5],[-386,-510],[-226,-457],[-397,-363],[9,-99]],[[63887,83555],[0,258],[-380,-14]],[[63507,83799],[-420,-353],[-617,207],[-321,-416],[-432,-305],[-232,-718],[-400,-191],[-242,-501]],[[52256,83488],[-275,-880],[-187,-877],[-150,-179],[-361,-694],[-68,-1835],[-52,-143]],[[52256,83488],[-356,-288],[-130,-408],[-749,-523],[-162,-284],[-148,-602],[-225,45],[-184,-261],[-190,-504]],[[56932,82183],[-892,1051],[-531,532]],[[48970,84031],[-292,-226],[35,-499],[-119,-564],[-61,-922]],[[55509,83766],[446,-125],[353,-2],[6,-311],[169,-53],[317,-348],[1076,109],[647,-5],[156,142],[356,28],[316,-238],[560,-28],[149,85],[297,613],[371,453],[186,98],[439,738],[219,121],[180,-133],[214,55],[746,-521],[322,45],[473,-690]],[[52860,84723],[-208,-2299],[-9,-826],[112,-379],[-15,-418],[72,-648],[-233,-791],[38,-405],[-67,-1032],[-235,-316],[-35,-371]],[[52860,84723],[-270,-134],[-334,-1101]],[[47322,84375],[250,-1067],[178,-390],[-6,-309],[141,-500],[648,-289]],[[47322,84375],[664,54],[373,-276],[354,164],[271,-368]],[[55509,83766],[-870,219],[-763,-145],[-459,671],[-531,403]],[[52886,84914],[107,-311],[217,-1055],[269,-817],[206,-1012],[-15,-399],[246,-963],[-3,-614],[258,-1202],[83,-642],[-13,-394],[580,-949],[255,-150],[575,-136],[220,-1103],[247,-957]],[[52860,84723],[26,191]],[[51152,84911],[-25,-181],[-502,-1191],[-187,-745],[-264,-579],[-251,-321],[-241,-543]],[[51152,84911],[-559,-360],[-415,-191],[-650,73],[-558,-402]],[[52925,85237],[-39,-323]],[[81720,79170],[36,602],[-93,320],[406,839],[-72,973],[407,709],[232,687],[247,278],[135,741],[71,787],[-38,753],[115,724],[-163,415],[-234,105],[-88,572],[-339,282]],[[81684,88321],[658,-364]],[[81493,85298],[60,-466],[-75,-534],[-290,-490],[119,-162],[-100,-375],[-51,-1086],[-230,-755],[236,-2122]],[[33575,84568],[364,-190],[178,-350],[167,-99],[128,-391],[98,-953],[-46,-286],[408,-319],[36,-166]],[[52925,85237],[-474,303],[-108,-44],[-474,299]],[[51869,85795],[-515,-234],[-135,-233],[-67,-417]],[[81101,88632],[583,-311]],[[46065,86268],[57,-294],[229,-422],[501,-423],[470,-754]],[[51869,85795],[-616,100],[-470,-201],[-318,-467],[-707,-4],[-119,162],[-808,-54],[-278,-199],[-187,118],[-468,-90],[-394,219],[-179,343],[-289,-163],[-449,170],[-284,381],[-238,158]],[[42047,86970],[-453,-453],[-193,-394],[-438,70],[-162,-188],[-158,-551],[-108,-132],[-82,-455],[-203,-337],[-643,-420],[-372,-602],[-184,39],[-377,-409],[-408,-51],[-518,-378],[-155,122],[-256,-126],[-400,254],[-259,-159],[-270,-386],[-522,-84],[-132,-153],[-35,-450],[-209,-228],[-142,138],[-216,-84],[-244,261]],[[34908,81814],[-36,39],[-727,-525],[-910,-1548],[-271,-735],[-221,-31],[-172,-274],[-482,-501],[-438,-648]],[[46065,86268],[-207,282],[-282,18],[-280,217],[-290,-474],[-640,72],[-492,-4],[-544,337],[-509,-122],[-429,154],[-345,222]],[[86582,92040],[-154,-742],[-692,-1629],[-355,-1089],[-579,-1332],[-322,-849],[-372,-1255],[-121,-782],[-626,-1492],[-430,-534],[-120,-391],[-217,-1158],[-157,-492],[-351,-426],[-366,-699]],[[82342,87957],[372,604],[154,483],[502,824],[319,70],[609,477],[342,179],[160,-71],[1382,1141],[400,376]],[[42047,86970],[-40,910],[-276,915]],[[46065,86268],[-301,422],[-355,256],[-407,836],[-141,467],[-275,1516],[-333,908],[-233,1116],[-27,847],[-207,849]],[[86582,92040],[55,1320],[-74,138],[-29,969],[75,566],[-79,642]],[[47711,98738],[-272,-553],[70,-974],[-26,-2432],[-147,-1065],[377,-961],[160,-165],[211,-535],[693,-1358],[600,-982],[87,-252],[749,-838],[1258,-255],[61,-287],[446,-249],[456,-96],[358,-474],[472,-860],[-157,-92],[-182,-1073]],[[47724,98742],[365,69],[107,319],[-3,681],[-68,118]],[[48137,99946],[-41,53]],[[1858,44440],[-220,-256],[-251,-539],[-224,-684]],[[79994,39919],[-250,153],[-346,-63],[-499,-287],[-557,451],[-172,338],[-441,180],[-75,355],[-452,416],[-357,214],[-379,370],[-667,279]],[[75799,42325],[73,867],[139,491],[-2,802],[314,848],[-198,415],[238,849],[3,318]],[[75799,42325],[-129,19]],[[74335,36159],[-214,64],[-142,347],[-531,1997],[-64,1103]],[[73384,39670],[-458,-197],[-414,-31],[-1086,-669]],[[73384,39670],[-125,800],[219,1098]],[[20691,6062],[-242,-839]],[[20691,6062],[806,1330],[159,92],[327,-221],[179,114],[207,440],[106,572],[104,36],[353,-294],[296,-452],[336,-267]],[[73427,39695],[968,-370],[480,-243]],[[73427,39695],[-43,-25]],[[8537,4064],[122,-125],[-19,-331],[-184,-488],[76,-399],[233,-475],[-204,-785],[76,-348],[-278,-1113]],[[16034,8488],[622,-63],[519,-431],[172,-384],[471,-694],[0,-410]],[[17818,6506],[305,154],[249,1050],[355,343],[245,91],[34,712],[426,1031],[297,177],[376,441],[65,517]],[[17818,6506],[-57,-191],[237,-261],[301,-794],[315,53],[293,1160],[313,-63],[174,411],[422,300],[-25,427],[419,-115],[266,-311],[-12,-734],[227,-326]],[[38596,32397],[160,365],[-606,481]],[[38150,33243],[-351,-1100],[-3,-368],[-327,-503],[82,-554],[-240,-557],[-273,-1441],[-164,-138],[-267,-543],[-425,-603],[-498,-476],[-604,-140],[-315,-273],[-252,-88],[-473,-934],[-105,-398],[-142,-56],[-70,-325],[-266,56],[-106,283],[-277,-162],[-88,-336],[-241,-457],[-251,46],[-81,-395]],[[38150,33243],[125,410],[-43,335],[202,473],[300,456],[297,915],[814,254],[229,7],[354,178],[591,131],[447,-107],[646,44],[446,-92],[316,78],[270,301],[205,-6],[496,356],[560,1089],[268,782],[605,645],[516,694],[269,495],[591,56],[512,239]],[[35038,39386],[147,252],[-18,584],[109,522],[60,813],[-39,839],[-149,483],[-118,1105],[-96,200]],[[34934,44184],[-180,130]],[[37293,42969],[-741,-39],[-135,174],[-605,53],[-320,221],[-558,806]],[[65652,31605],[-1,142],[312,369],[138,866],[-7,507],[83,1244],[177,913],[96,243]],[[66450,35889],[120,474]],[[68397,41864],[62,-423],[-149,-1285],[-540,-316],[-518,-1146],[-157,-682],[-40,-607]],[[67055,37405],[-12,-150]],[[67055,37405],[531,252],[712,426],[374,312],[611,155],[308,9],[333,180],[653,144],[849,-110]],[[66239,36346],[64,287]],[[66136,35733],[314,156]],[[1858,44440],[16,-600],[-223,-962],[27,-88]],[[1163,42961],[90,-655]],[[6530,8317],[-175,504],[-81,666],[-75,1475],[-4,787],[-66,381],[38,394]],[[6163,13010],[704,426],[803,-211],[355,77],[464,343],[92,371],[260,-74],[168,99]],[[7984,6668],[-103,343],[-259,-326]],[[6715,7853],[-185,464]],[[6452,8283],[78,34]],[[10048,91494],[7,6]],[[24371,15277],[27,-215],[-179,-231],[0,-444],[345,-476],[13,-299],[388,-701],[422,-522],[182,-91],[267,112],[95,-202]],[[20744,71515],[34,239],[692,879],[350,33],[86,204]],[[17646,63667],[229,92],[135,488],[452,1030],[164,231],[243,611]],[[30859,19369],[512,-126],[598,-320],[138,-377],[305,-116],[259,74]],[[40818,9089],[436,820]],[[48125,99929],[-225,-832],[-176,-353]],[[52720,60683],[98,482],[-82,595],[-210,623],[1,355],[-196,590],[-297,392],[-122,357],[-77,657]],[[54660,57056],[-356,-21],[-759,815]],[[49366,52021],[702,-622],[261,-390],[870,76]],[[50197,17890],[59,14],[-36,911],[245,1076],[-62,410],[167,102],[319,741]],[[63169,30292],[35,431],[165,705],[-52,750]],[[63317,32178],[289,213],[41,275],[460,492],[-59,422]],[[68898,27978],[499,69]],[[68704,36679],[-474,55]],[[73282,71809],[-496,320],[-76,351],[-294,182],[-275,299],[-215,62],[-325,-107],[-126,187]],[[71475,73103],[-32,107]],[[74963,66956],[-178,247],[-36,454],[-238,367],[-189,706],[84,423],[-258,249],[-41,379],[-356,915],[-343,527],[-102,567]],[[61719,81787],[-160,6],[-411,-349],[-305,78]],[[86530,95675],[-57,376],[-305,805],[19,314]],[[81684,88321],[-205,-804],[47,-237],[-147,-369],[26,-773],[88,-840]],[[87337,50303],[-314,20],[-751,683],[-260,-230],[-208,29]],[[84878,50715],[-334,-255],[-313,213],[-298,-226]],[[80677,33400],[421,-216]],[[85536,46574],[-11,300],[-323,830],[-167,80],[-126,-163]],[[87693,41820],[-309,1012],[12,530],[-86,205]],[[83211,31899],[221,225],[-66,367],[443,895],[-13,644]],[[84909,47621],[-537,-59],[-404,72],[-521,-167],[-79,332],[-157,145],[-168,394],[-243,154],[-301,789]],[[91471,33680],[-287,-636],[-42,-488],[58,-437],[-85,-248],[-346,-44],[-353,176],[-173,379],[-439,-24],[-241,-336],[-160,-505],[-85,-556],[-336,-159],[-438,-469],[-245,302],[29,250],[-375,-72]],[[94001,27947],[-201,-389],[-289,-347],[-112,-562],[67,-418],[-128,-401]],[[98457,9838],[20,129],[-285,532],[-133,585],[18,287],[-146,440],[-175,213],[-252,1300]],[[50988,34311],[182,-1103],[26,-1090],[-214,-399],[-168,-934],[-110,-75],[-95,-408]]]} +{"type":"Topology","bbox":[23.447448777333022,14.508117029941332,945.1962423765581,596.614598202052],"transform":{"scale":[0.00921758011179337,0.005821123022951336],"translate":[23.447448777333022,14.508117029941332]},"objects":{"overlay":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0]},{"type":"LineString","arcs":[1]},{"type":"LineString","arcs":[2]},{"type":"LineString","arcs":[3]},{"type":"LineString","arcs":[4]},{"type":"LineString","arcs":[5]},{"type":"LineString","arcs":[6]},{"type":"LineString","arcs":[7]},{"type":"LineString","arcs":[8]},{"type":"LineString","arcs":[9]},{"type":"LineString","arcs":[10]},{"type":"LineString","arcs":[11]},{"type":"LineString","arcs":[12]},{"type":"LineString","arcs":[13]},{"type":"LineString","arcs":[14]},{"type":"LineString","arcs":[15]},{"type":"LineString","arcs":[16]},{"type":"LineString","arcs":[17]},{"type":"LineString","arcs":[18]},{"type":"LineString","arcs":[19]},{"type":"LineString","arcs":[20]},{"type":"LineString","arcs":[21]},{"type":"LineString","arcs":[22]},{"type":"LineString","arcs":[23]},{"type":"LineString","arcs":[24]},{"type":"LineString","arcs":[25]},{"type":"LineString","arcs":[26]},{"type":"LineString","arcs":[27]},{"type":"LineString","arcs":[28]},{"type":"LineString","arcs":[29]},{"type":"LineString","arcs":[30]},{"type":"LineString","arcs":[31]},{"type":"LineString","arcs":[32]},{"type":"LineString","arcs":[33]},{"type":"LineString","arcs":[34]},{"type":"LineString","arcs":[35]},{"type":"LineString","arcs":[36]},{"type":"LineString","arcs":[37]},{"type":"LineString","arcs":[38]},{"type":"LineString","arcs":[39]},{"type":"LineString","arcs":[40]},{"type":"LineString","arcs":[41]},{"type":"LineString","arcs":[42]},{"type":"LineString","arcs":[43]},{"type":"LineString","arcs":[44]},{"type":"LineString","arcs":[45]},{"type":"LineString","arcs":[46]},{"type":"LineString","arcs":[47]},{"type":"LineString","arcs":[48]},{"type":"LineString","arcs":[49]},{"type":"LineString","arcs":[50]},{"type":"LineString","arcs":[51]},{"type":"LineString","arcs":[52]},{"type":"LineString","arcs":[53]},{"type":"LineString","arcs":[54]},{"type":"LineString","arcs":[55]},{"type":"LineString","arcs":[56]},{"type":"LineString","arcs":[57]},{"type":"LineString","arcs":[58]},{"type":"LineString","arcs":[59]},{"type":"LineString","arcs":[60]},{"type":"LineString","arcs":[61]},{"type":"LineString","arcs":[62]},{"type":"LineString","arcs":[63]},{"type":"LineString","arcs":[64]},{"type":"LineString","arcs":[65]},{"type":"LineString","arcs":[66]},{"type":"LineString","arcs":[67]},{"type":"LineString","arcs":[68]},{"type":"LineString","arcs":[69]},{"type":"LineString","arcs":[70]},{"type":"LineString","arcs":[71]},{"type":"LineString","arcs":[72]},{"type":"LineString","arcs":[73]},{"type":"LineString","arcs":[74]},{"type":"LineString","arcs":[75]},{"type":"LineString","arcs":[76]},{"type":"LineString","arcs":[77]},{"type":"LineString","arcs":[78]},{"type":"LineString","arcs":[79]},{"type":"LineString","arcs":[80]},{"type":"LineString","arcs":[81]},{"type":"LineString","arcs":[82]},{"type":"LineString","arcs":[83]},{"type":"LineString","arcs":[84]},{"type":"LineString","arcs":[85]},{"type":"LineString","arcs":[86]},{"type":"LineString","arcs":[87]},{"type":"LineString","arcs":[88]},{"type":"LineString","arcs":[89]},{"type":"LineString","arcs":[90]},{"type":"LineString","arcs":[91]},{"type":"LineString","arcs":[92]},{"type":"LineString","arcs":[93]},{"type":"LineString","arcs":[94]},{"type":"LineString","arcs":[95]},{"type":"LineString","arcs":[96]},{"type":"LineString","arcs":[97]},{"type":"LineString","arcs":[98]},{"type":"LineString","arcs":[99]},{"type":"LineString","arcs":[100]},{"type":"LineString","arcs":[101]},{"type":"LineString","arcs":[102]},{"type":"LineString","arcs":[103]},{"type":"LineString","arcs":[104]},{"type":"LineString","arcs":[105]},{"type":"LineString","arcs":[106]},{"type":"LineString","arcs":[107]},{"type":"LineString","arcs":[108]},{"type":"LineString","arcs":[109]},{"type":"LineString","arcs":[110]},{"type":"LineString","arcs":[111]},{"type":"LineString","arcs":[112]},{"type":"LineString","arcs":[113]},{"type":"LineString","arcs":[114]},{"type":"LineString","arcs":[115]},{"type":"LineString","arcs":[116]},{"type":"LineString","arcs":[117]},{"type":"LineString","arcs":[118]},{"type":"LineString","arcs":[119]},{"type":"LineString","arcs":[120]},{"type":"LineString","arcs":[121]},{"type":"LineString","arcs":[122]},{"type":"LineString","arcs":[123]},{"type":"LineString","arcs":[124]},{"type":"LineString","arcs":[125]},{"type":"LineString","arcs":[126]},{"type":"LineString","arcs":[127]},{"type":"LineString","arcs":[128]},{"type":"LineString","arcs":[129]},{"type":"LineString","arcs":[130]},{"type":"LineString","arcs":[131]},{"type":"LineString","arcs":[132]},{"type":"LineString","arcs":[133]},{"type":"LineString","arcs":[134]},{"type":"LineString","arcs":[135]},{"type":"LineString","arcs":[136]},{"type":"LineString","arcs":[137]},{"type":"LineString","arcs":[138]},{"type":"LineString","arcs":[139]},{"type":"LineString","arcs":[140]},{"type":"LineString","arcs":[141]},{"type":"LineString","arcs":[142]},{"type":"LineString","arcs":[143]},{"type":"LineString","arcs":[144]},{"type":"LineString","arcs":[145]},{"type":"LineString","arcs":[146]},{"type":"LineString","arcs":[147]},{"type":"LineString","arcs":[148]},{"type":"LineString","arcs":[149]},{"type":"LineString","arcs":[150]},{"type":"LineString","arcs":[151]},{"type":"LineString","arcs":[152]},{"type":"LineString","arcs":[153]},{"type":"LineString","arcs":[154]},{"type":"LineString","arcs":[155]},{"type":"LineString","arcs":[156]},{"type":"LineString","arcs":[157]},{"type":"LineString","arcs":[158]},{"type":"LineString","arcs":[159]},{"type":"LineString","arcs":[160]},{"type":"LineString","arcs":[161]},{"type":"LineString","arcs":[162]},{"type":"LineString","arcs":[163]},{"type":"LineString","arcs":[164]},{"type":"LineString","arcs":[165]},{"type":"LineString","arcs":[166]},{"type":"LineString","arcs":[167]},{"type":"LineString","arcs":[168]},{"type":"LineString","arcs":[169]},{"type":"LineString","arcs":[170]},{"type":"LineString","arcs":[171]},{"type":"LineString","arcs":[172]},{"type":"LineString","arcs":[173]},{"type":"LineString","arcs":[174]},{"type":"LineString","arcs":[175]},{"type":"LineString","arcs":[176]},{"type":"LineString","arcs":[177]},{"type":"LineString","arcs":[178]},{"type":"LineString","arcs":[179]},{"type":"LineString","arcs":[180]},{"type":"LineString","arcs":[181]},{"type":"LineString","arcs":[182]},{"type":"LineString","arcs":[183]},{"type":"LineString","arcs":[184]},{"type":"LineString","arcs":[185]},{"type":"LineString","arcs":[186]},{"type":"LineString","arcs":[187]},{"type":"LineString","arcs":[188]},{"type":"LineString","arcs":[189]},{"type":"LineString","arcs":[190]},{"type":"LineString","arcs":[191]},{"type":"LineString","arcs":[192]},{"type":"LineString","arcs":[193]},{"type":"LineString","arcs":[194]},{"type":"LineString","arcs":[195]},{"type":"LineString","arcs":[196]},{"type":"LineString","arcs":[197]},{"type":"LineString","arcs":[198]},{"type":"LineString","arcs":[199]},{"type":"LineString","arcs":[200]},{"type":"LineString","arcs":[201]},{"type":"LineString","arcs":[202]},{"type":"LineString","arcs":[203]},{"type":"LineString","arcs":[204]},{"type":"LineString","arcs":[205]},{"type":"LineString","arcs":[206]},{"type":"LineString","arcs":[207]},{"type":"LineString","arcs":[208]},{"type":"LineString","arcs":[209]},{"type":"LineString","arcs":[210]},{"type":"LineString","arcs":[211]},{"type":"LineString","arcs":[212]},{"type":"LineString","arcs":[213]},{"type":"LineString","arcs":[214]},{"type":"LineString","arcs":[215]},{"type":"LineString","arcs":[216]},{"type":"LineString","arcs":[217]},{"type":"LineString","arcs":[218]},{"type":"LineString","arcs":[219]},{"type":"LineString","arcs":[220]},{"type":"LineString","arcs":[221]},{"type":"LineString","arcs":[222]},{"type":"LineString","arcs":[223]},{"type":"LineString","arcs":[224]},{"type":"LineString","arcs":[225]},{"type":"LineString","arcs":[226]},{"type":"LineString","arcs":[227]},{"type":"LineString","arcs":[228]},{"type":"LineString","arcs":[229]},{"type":"LineString","arcs":[230]},{"type":"LineString","arcs":[231]},{"type":"LineString","arcs":[232]},{"type":"LineString","arcs":[233]},{"type":"LineString","arcs":[234]},{"type":"LineString","arcs":[235]},{"type":"LineString","arcs":[236]},{"type":"LineString","arcs":[237]},{"type":"LineString","arcs":[238]},{"type":"LineString","arcs":[239]},{"type":"LineString","arcs":[240]},{"type":"LineString","arcs":[241]},{"type":"LineString","arcs":[242]},{"type":"LineString","arcs":[243]},{"type":"LineString","arcs":[244]},{"type":"LineString","arcs":[245]},{"type":"LineString","arcs":[246]},{"type":"LineString","arcs":[247]},{"type":"LineString","arcs":[248]},{"type":"LineString","arcs":[249]},{"type":"LineString","arcs":[250]},{"type":"LineString","arcs":[251]},{"type":"LineString","arcs":[252]},{"type":"LineString","arcs":[253]},{"type":"LineString","arcs":[254]},{"type":"LineString","arcs":[255]},{"type":"LineString","arcs":[256]},{"type":"LineString","arcs":[257]},{"type":"LineString","arcs":[258]},{"type":"LineString","arcs":[259]},{"type":"LineString","arcs":[260]},{"type":"LineString","arcs":[261]},{"type":"LineString","arcs":[262]},{"type":"LineString","arcs":[263]},{"type":"LineString","arcs":[264]},{"type":"LineString","arcs":[265]},{"type":"LineString","arcs":[266]},{"type":"LineString","arcs":[267]},{"type":"LineString","arcs":[268]},{"type":"LineString","arcs":[269]},{"type":"LineString","arcs":[270]},{"type":"LineString","arcs":[271]},{"type":"LineString","arcs":[272]},{"type":"LineString","arcs":[273]},{"type":"LineString","arcs":[274]},{"type":"LineString","arcs":[275]},{"type":"LineString","arcs":[276]},{"type":"LineString","arcs":[277]},{"type":"LineString","arcs":[278]},{"type":"LineString","arcs":[279]},{"type":"LineString","arcs":[280]},{"type":"LineString","arcs":[281]},{"type":"LineString","arcs":[282]},{"type":"LineString","arcs":[283]},{"type":"LineString","arcs":[284]},{"type":"LineString","arcs":[285]},{"type":"LineString","arcs":[286]},{"type":"LineString","arcs":[287]},{"type":"LineString","arcs":[288]},{"type":"LineString","arcs":[289,290]},{"type":"LineString","arcs":[291]},{"type":"LineString","arcs":[292]},{"type":"LineString","arcs":[293]},{"type":"LineString","arcs":[294]},{"type":"LineString","arcs":[295]},{"type":"LineString","arcs":[296]},{"type":"LineString","arcs":[297]},{"type":"LineString","arcs":[298]},{"type":"LineString","arcs":[299]},{"type":"LineString","arcs":[300]},{"type":"LineString","arcs":[301]},{"type":"LineString","arcs":[302]},{"type":"LineString","arcs":[303]},{"type":"LineString","arcs":[304]},{"type":"LineString","arcs":[305]},{"type":"LineString","arcs":[306]},{"type":"LineString","arcs":[307]},{"type":"LineString","arcs":[308]},{"type":"LineString","arcs":[309]},{"type":"LineString","arcs":[310]},{"type":"LineString","arcs":[311]},{"type":"LineString","arcs":[312]},{"type":"LineString","arcs":[313]},{"type":"LineString","arcs":[314]},{"type":"LineString","arcs":[315]},{"type":"LineString","arcs":[316]},{"type":"LineString","arcs":[317]},{"type":"LineString","arcs":[318]},{"type":"LineString","arcs":[319]},{"type":"LineString","arcs":[320]},{"type":"LineString","arcs":[321]},{"type":"LineString","arcs":[322]},{"type":"LineString","arcs":[323]},{"type":"LineString","arcs":[324]},{"type":"LineString","arcs":[325]},{"type":"LineString","arcs":[326]},{"type":"LineString","arcs":[327]},{"type":"LineString","arcs":[328]},{"type":"LineString","arcs":[329]},{"type":"LineString","arcs":[330]},{"type":"LineString","arcs":[331]},{"type":"LineString","arcs":[332]},{"type":"LineString","arcs":[333]},{"type":"LineString","arcs":[334]},{"type":"LineString","arcs":[335]},{"type":"LineString","arcs":[336]},{"type":"LineString","arcs":[337]},{"type":"LineString","arcs":[338]},{"type":"LineString","arcs":[339]},{"type":"LineString","arcs":[340]},{"type":"LineString","arcs":[341]},{"type":"LineString","arcs":[342]},{"type":"LineString","arcs":[343]},{"type":"LineString","arcs":[344]},{"type":"LineString","arcs":[345]},{"type":"LineString","arcs":[346]},{"type":"LineString","arcs":[347]},{"type":"LineString","arcs":[348]},{"type":"LineString","arcs":[349]},{"type":"LineString","arcs":[350]},{"type":"LineString","arcs":[351]},{"type":"LineString","arcs":[352]},{"type":"LineString","arcs":[353]},{"type":"LineString","arcs":[354]},{"type":"LineString","arcs":[355]},{"type":"LineString","arcs":[356]},{"type":"LineString","arcs":[357]},{"type":"LineString","arcs":[358]},{"type":"LineString","arcs":[359]},{"type":"LineString","arcs":[360]},{"type":"LineString","arcs":[361]},{"type":"LineString","arcs":[362,363]},{"type":"LineString","arcs":[364]},{"type":"LineString","arcs":[365]},{"type":"LineString","arcs":[366]},{"type":"LineString","arcs":[367]},{"type":"LineString","arcs":[368]},{"type":"LineString","arcs":[369]},{"type":"LineString","arcs":[370]},{"type":"LineString","arcs":[371]},{"type":"LineString","arcs":[372]},{"type":"LineString","arcs":[373]},{"type":"LineString","arcs":[374]},{"type":"LineString","arcs":[375]},{"type":"LineString","arcs":[376]},{"type":"LineString","arcs":[377]},{"type":"LineString","arcs":[378]},{"type":"LineString","arcs":[379]},{"type":"LineString","arcs":[380]},{"type":"LineString","arcs":[381]},{"type":"LineString","arcs":[382]},{"type":"LineString","arcs":[383]},{"type":"LineString","arcs":[384]},{"type":"LineString","arcs":[385]},{"type":"LineString","arcs":[386]},{"type":"LineString","arcs":[387]},{"type":"LineString","arcs":[388]},{"type":"LineString","arcs":[389]},{"type":"LineString","arcs":[390]},{"type":"LineString","arcs":[391]},{"type":"LineString","arcs":[392]},{"type":"LineString","arcs":[393]},{"type":"LineString","arcs":[394]},{"type":"LineString","arcs":[395]},{"type":"LineString","arcs":[396]},{"type":"LineString","arcs":[397]},{"type":"LineString","arcs":[398]},{"type":"LineString","arcs":[399]},{"type":"LineString","arcs":[400]},{"type":"LineString","arcs":[401]},{"type":"LineString","arcs":[402]},{"type":"LineString","arcs":[403]},{"type":"LineString","arcs":[404]},{"type":"LineString","arcs":[405]},{"type":"LineString","arcs":[406]},{"type":"LineString","arcs":[407]},{"type":"LineString","arcs":[408]},{"type":"LineString","arcs":[409]},{"type":"LineString","arcs":[410]},{"type":"LineString","arcs":[411]},{"type":"LineString","arcs":[412,413]},{"type":"LineString","arcs":[414]},{"type":"LineString","arcs":[415]},{"type":"LineString","arcs":[416]},{"type":"LineString","arcs":[417]},{"type":"LineString","arcs":[418]},{"type":"LineString","arcs":[419]},{"type":"LineString","arcs":[420]},{"type":"LineString","arcs":[421]},{"type":"LineString","arcs":[422]},{"type":"LineString","arcs":[423]},{"type":"LineString","arcs":[424]},{"type":"LineString","arcs":[425]},{"type":"LineString","arcs":[426]},{"type":"LineString","arcs":[427]},{"type":"LineString","arcs":[428]},{"type":"LineString","arcs":[429]},{"type":"LineString","arcs":[430]},{"type":"LineString","arcs":[431]},{"type":"LineString","arcs":[432]},{"type":"LineString","arcs":[433]},{"type":"LineString","arcs":[434]},{"type":"LineString","arcs":[435]},{"type":"LineString","arcs":[436]},{"type":"LineString","arcs":[437]},{"type":"LineString","arcs":[438]},{"type":"LineString","arcs":[439]},{"type":"LineString","arcs":[440]},{"type":"LineString","arcs":[441]},{"type":"LineString","arcs":[442]},{"type":"LineString","arcs":[443]},{"type":"LineString","arcs":[444]},{"type":"LineString","arcs":[445]},{"type":"LineString","arcs":[446]},{"type":"LineString","arcs":[447]},{"type":"LineString","arcs":[448]},{"type":"LineString","arcs":[449]},{"type":"LineString","arcs":[450]},{"type":"LineString","arcs":[451]},{"type":"LineString","arcs":[452]},{"type":"LineString","arcs":[453]},{"type":"LineString","arcs":[454]},{"type":"LineString","arcs":[455]},{"type":"LineString","arcs":[456]},{"type":"LineString","arcs":[457]},{"type":"LineString","arcs":[458]},{"type":"LineString","arcs":[459]},{"type":"LineString","arcs":[460]},{"type":"LineString","arcs":[461]},{"type":"LineString","arcs":[462]},{"type":"LineString","arcs":[463]},{"type":"LineString","arcs":[464]},{"type":"LineString","arcs":[465]},{"type":"LineString","arcs":[466]},{"type":"LineString","arcs":[467]},{"type":"LineString","arcs":[468]},{"type":"LineString","arcs":[469]},{"type":"LineString","arcs":[470]},{"type":"LineString","arcs":[471]},{"type":"LineString","arcs":[472]},{"type":"LineString","arcs":[473]},{"type":"LineString","arcs":[474]},{"type":"LineString","arcs":[475]},{"type":"LineString","arcs":[476]},{"type":"LineString","arcs":[477]},{"type":"LineString","arcs":[478]},{"type":"LineString","arcs":[479]},{"type":"LineString","arcs":[480]},{"type":"LineString","arcs":[481]},{"type":"LineString","arcs":[482]},{"type":"LineString","arcs":[483]},{"type":"LineString","arcs":[484]},{"type":"LineString","arcs":[485]},{"type":"LineString","arcs":[486]},{"type":"LineString","arcs":[487]},{"type":"LineString","arcs":[488]},{"type":"LineString","arcs":[489]},{"type":"LineString","arcs":[490]},{"type":"LineString","arcs":[491]},{"type":"LineString","arcs":[492]},{"type":"LineString","arcs":[493]},{"type":"LineString","arcs":[494]},{"type":"LineString","arcs":[495]},{"type":"LineString","arcs":[496]},{"type":"LineString","arcs":[497]},{"type":"LineString","arcs":[498]},{"type":"LineString","arcs":[499]},{"type":"LineString","arcs":[500]},{"type":"LineString","arcs":[501]},{"type":"LineString","arcs":[502]},{"type":"LineString","arcs":[503]},{"type":"LineString","arcs":[504]},{"type":"LineString","arcs":[505]},{"type":"LineString","arcs":[506]},{"type":"LineString","arcs":[507]},{"type":"LineString","arcs":[508]},{"type":"LineString","arcs":[509]},{"type":"LineString","arcs":[510]},{"type":"LineString","arcs":[511]},{"type":"LineString","arcs":[512]},{"type":"LineString","arcs":[513]},{"type":"LineString","arcs":[514]},{"type":"LineString","arcs":[515]},{"type":"LineString","arcs":[516]},{"type":"LineString","arcs":[517]},{"type":"LineString","arcs":[518]},{"type":"LineString","arcs":[519]},{"type":"LineString","arcs":[520]},{"type":"LineString","arcs":[521]},{"type":"LineString","arcs":[522]},{"type":"LineString","arcs":[523]},{"type":"LineString","arcs":[524]},{"type":"LineString","arcs":[525]},{"type":"LineString","arcs":[526]},{"type":"LineString","arcs":[527]},{"type":"LineString","arcs":[528]},{"type":"LineString","arcs":[529]},{"type":"LineString","arcs":[530]},{"type":"LineString","arcs":[531]},{"type":"LineString","arcs":[532]},{"type":"LineString","arcs":[533]},{"type":"LineString","arcs":[534]},{"type":"LineString","arcs":[535]},{"type":"LineString","arcs":[536]},{"type":"LineString","arcs":[537]},{"type":"LineString","arcs":[538]},{"type":"LineString","arcs":[539]},{"type":"LineString","arcs":[540]},{"type":"LineString","arcs":[541]},{"type":"LineString","arcs":[542]},{"type":"LineString","arcs":[543]},{"type":"LineString","arcs":[544]},{"type":"LineString","arcs":[545]},{"type":"LineString","arcs":[546]},{"type":"LineString","arcs":[547]},{"type":"LineString","arcs":[548]},{"type":"LineString","arcs":[549]},{"type":"LineString","arcs":[550]},{"type":"LineString","arcs":[551]},{"type":"LineString","arcs":[552]},{"type":"LineString","arcs":[553]},{"type":"LineString","arcs":[554]},{"type":"LineString","arcs":[555]},{"type":"LineString","arcs":[556]},{"type":"LineString","arcs":[557]},{"type":"LineString","arcs":[558]},{"type":"LineString","arcs":[559]},{"type":"LineString","arcs":[560]},{"type":"LineString","arcs":[561]},{"type":"LineString","arcs":[562]},{"type":"LineString","arcs":[563]},{"type":"LineString","arcs":[564]},{"type":"LineString","arcs":[565]},{"type":"LineString","arcs":[566]},{"type":"LineString","arcs":[567]},{"type":"LineString","arcs":[568]},{"type":"LineString","arcs":[569]},{"type":"LineString","arcs":[570]},{"type":"LineString","arcs":[571]},{"type":"LineString","arcs":[572]},{"type":"LineString","arcs":[573]},{"type":"LineString","arcs":[574]},{"type":"LineString","arcs":[575]},{"type":"LineString","arcs":[576]},{"type":"LineString","arcs":[577]},{"type":"LineString","arcs":[578]},{"type":"LineString","arcs":[579]},{"type":"LineString","arcs":[580]},{"type":"LineString","arcs":[581]},{"type":"LineString","arcs":[582]},{"type":"LineString","arcs":[583]},{"type":"LineString","arcs":[584]},{"type":"LineString","arcs":[585]},{"type":"LineString","arcs":[586]},{"type":"LineString","arcs":[587]},{"type":"LineString","arcs":[588]},{"type":"LineString","arcs":[589]},{"type":"LineString","arcs":[590]},{"type":"LineString","arcs":[591]},{"type":"LineString","arcs":[592]},{"type":"LineString","arcs":[593]},{"type":"LineString","arcs":[594]},{"type":"LineString","arcs":[595]},{"type":"LineString","arcs":[596]},{"type":"LineString","arcs":[597]},{"type":"LineString","arcs":[598]},{"type":"LineString","arcs":[599]},{"type":"LineString","arcs":[600]},{"type":"LineString","arcs":[601]},{"type":"LineString","arcs":[602]},{"type":"LineString","arcs":[603]},{"type":"LineString","arcs":[604]},{"type":"LineString","arcs":[605]},{"type":"LineString","arcs":[606]},{"type":"LineString","arcs":[607]},{"type":"LineString","arcs":[608]},{"type":"LineString","arcs":[609]},{"type":"LineString","arcs":[610]},{"type":"LineString","arcs":[611]},{"type":"LineString","arcs":[612]},{"type":"LineString","arcs":[613]},{"type":"LineString","arcs":[614]},{"type":"LineString","arcs":[615]},{"type":"LineString","arcs":[616]},{"type":"LineString","arcs":[617,618]},{"type":"LineString","arcs":[619]},{"type":"LineString","arcs":[620]},{"type":"LineString","arcs":[621]},{"type":"LineString","arcs":[622]},{"type":"LineString","arcs":[623]},{"type":"LineString","arcs":[624]},{"type":"LineString","arcs":[625]},{"type":"LineString","arcs":[626]},{"type":"LineString","arcs":[627]},{"type":"LineString","arcs":[628]},{"type":"LineString","arcs":[629]},{"type":"LineString","arcs":[630]},{"type":"LineString","arcs":[631]},{"type":"LineString","arcs":[632]},{"type":"LineString","arcs":[633]},{"type":"LineString","arcs":[634]},{"type":"LineString","arcs":[635]},{"type":"LineString","arcs":[636]},{"type":"LineString","arcs":[637]},{"type":"LineString","arcs":[638]},{"type":"LineString","arcs":[639]},{"type":"LineString","arcs":[640]},{"type":"LineString","arcs":[641]},{"type":"LineString","arcs":[642]},{"type":"LineString","arcs":[643]},{"type":"LineString","arcs":[644]},{"type":"LineString","arcs":[645]},{"type":"LineString","arcs":[646]},{"type":"LineString","arcs":[647]},{"type":"LineString","arcs":[648]},{"type":"LineString","arcs":[649]},{"type":"LineString","arcs":[650]},{"type":"LineString","arcs":[651]},{"type":"LineString","arcs":[652]},{"type":"LineString","arcs":[653]},{"type":"LineString","arcs":[654]},{"type":"LineString","arcs":[655]},{"type":"LineString","arcs":[656]},{"type":"LineString","arcs":[657]},{"type":"LineString","arcs":[658]},{"type":"LineString","arcs":[659]},{"type":"LineString","arcs":[660]},{"type":"LineString","arcs":[661]},{"type":"LineString","arcs":[662]},{"type":"LineString","arcs":[663]},{"type":"LineString","arcs":[664]},{"type":"LineString","arcs":[665]},{"type":"LineString","arcs":[666]},{"type":"LineString","arcs":[667]},{"type":"LineString","arcs":[668]},{"type":"LineString","arcs":[669]},{"type":"LineString","arcs":[670]},{"type":"LineString","arcs":[671]},{"type":"LineString","arcs":[672]},{"type":"LineString","arcs":[673]},{"type":"LineString","arcs":[674]},{"type":"LineString","arcs":[675]},{"type":"LineString","arcs":[676]},{"type":"LineString","arcs":[677]},{"type":"LineString","arcs":[678]},{"type":"LineString","arcs":[679]},{"type":"LineString","arcs":[680,681]},{"type":"LineString","arcs":[682]},{"type":"LineString","arcs":[683]},{"type":"LineString","arcs":[684]},{"type":"LineString","arcs":[685]},{"type":"LineString","arcs":[686]},{"type":"LineString","arcs":[687]},{"type":"LineString","arcs":[688]},{"type":"LineString","arcs":[689]},{"type":"LineString","arcs":[690]},{"type":"LineString","arcs":[691]},{"type":"LineString","arcs":[692]},{"type":"LineString","arcs":[693]},{"type":"LineString","arcs":[694]},{"type":"LineString","arcs":[695]},{"type":"LineString","arcs":[696]},{"type":"LineString","arcs":[697]},{"type":"LineString","arcs":[698]},{"type":"LineString","arcs":[699]},{"type":"LineString","arcs":[700]},{"type":"LineString","arcs":[701]},{"type":"LineString","arcs":[702]},{"type":"LineString","arcs":[703]},{"type":"LineString","arcs":[704]},{"type":"LineString","arcs":[705]},{"type":"LineString","arcs":[706]},{"type":"LineString","arcs":[707]},{"type":"LineString","arcs":[708]},{"type":"LineString","arcs":[709]},{"type":"LineString","arcs":[710]},{"type":"LineString","arcs":[711]},{"type":"LineString","arcs":[712]},{"type":"LineString","arcs":[713]},{"type":"LineString","arcs":[714]},{"type":"LineString","arcs":[715]},{"type":"LineString","arcs":[716]},{"type":"LineString","arcs":[717]},{"type":"LineString","arcs":[718]},{"type":"LineString","arcs":[719]},{"type":"LineString","arcs":[720]},{"type":"LineString","arcs":[721]},{"type":"LineString","arcs":[722]},{"type":"LineString","arcs":[723]},{"type":"LineString","arcs":[724]},{"type":"LineString","arcs":[725]},{"type":"LineString","arcs":[726]},{"type":"LineString","arcs":[727]},{"type":"LineString","arcs":[728]},{"type":"LineString","arcs":[729]},{"type":"LineString","arcs":[730]},{"type":"LineString","arcs":[731]},{"type":"LineString","arcs":[732]},{"type":"LineString","arcs":[733]},{"type":"LineString","arcs":[734]},{"type":"LineString","arcs":[735]},{"type":"LineString","arcs":[736]},{"type":"LineString","arcs":[737]},{"type":"LineString","arcs":[738]},{"type":"LineString","arcs":[739]},{"type":"LineString","arcs":[740]},{"type":"LineString","arcs":[741,742]},{"type":"LineString","arcs":[743]},{"type":"LineString","arcs":[744]},{"type":"LineString","arcs":[745]},{"type":"LineString","arcs":[746]},{"type":"LineString","arcs":[747]},{"type":"LineString","arcs":[748]},{"type":"LineString","arcs":[749]},{"type":"LineString","arcs":[750]},{"type":"LineString","arcs":[751]},{"type":"LineString","arcs":[752]},{"type":"LineString","arcs":[753]},{"type":"LineString","arcs":[754]},{"type":"LineString","arcs":[755]},{"type":"LineString","arcs":[756]},{"type":"LineString","arcs":[757]}]}},"arcs":[[[10256,85993],[-176,-115],[-327,480],[-39,524],[210,1026],[-267,617],[-25,397],[-126,331],[92,1184],[297,113],[-269,487],[103,235],[319,222]],[[10055,91500],[113,58]],[[10048,91494],[-136,422],[-20,599]],[[16013,91447],[-54,226]],[[95932,5690],[0,0]],[[99999,11348],[-218,247],[-294,-48],[-287,-235],[-285,123],[-88,322],[-284,477]],[[8537,4064],[-454,746],[-95,442],[113,743]],[[97918,5818],[-456,-384],[-160,5],[-92,371],[-253,97],[-31,303],[140,834],[245,239],[193,674],[144,114],[497,1037],[179,185],[133,545]],[[97504,13324],[231,84],[350,-328],[458,-846]],[[7984,6668],[130,-667]],[[94611,13919],[94,90],[227,-461],[179,52],[338,-279],[303,-57],[376,-199],[255,412],[317,-29],[301,173],[503,-297]],[[25399,6181],[219,419],[-376,907],[109,365],[167,202]],[[49652,9709],[2,-56]],[[49558,9651],[94,58]],[[7622,6685],[-85,-173],[-500,826],[-256,204],[-66,311]],[[7541,4752],[-133,273],[-40,436],[-338,511],[-540,435],[-38,282],[-469,109],[110,403],[29,464],[226,145],[104,473]],[[15528,4603],[202,510],[72,1187],[-108,373],[309,296],[175,432],[23,655],[-58,356],[-139,57]],[[52478,9669],[205,515],[473,239],[457,92]],[[16004,8469],[-126,-158],[-633,405],[-215,45],[-230,-217],[-450,394],[-290,-2],[-462,-225],[-558,-578],[-358,235],[-171,-17],[-312,248],[-402,-69],[-253,-175],[60,-382],[-420,-263],[-38,-236],[-377,-817],[78,-406],[-365,-345],[-504,95],[-407,-154],[-55,-556],[-235,-355],[-624,-227],[-156,-290],[36,-355]],[[15576,9148],[211,-140],[217,-539]],[[41254,9909],[183,528],[571,879],[177,195],[366,627],[202,107]],[[25518,8074],[619,296],[321,55],[629,-135],[864,214],[231,-45],[512,272],[674,166],[329,-78],[587,256],[611,474],[324,122],[418,406],[566,142],[538,-218],[741,603],[526,718],[394,197],[239,266],[432,196],[974,-137],[220,120],[585,-92],[833,169],[161,-46],[235,497]],[[38081,12492],[236,120],[226,-286],[448,-322],[203,-318],[423,-89],[235,-284],[500,32],[291,274],[1133,32],[403,428],[434,244],[140,-78]],[[25959,12177],[-170,-285],[-430,-409],[78,-455],[-152,-507],[-127,-874],[447,-834],[-87,-739]],[[49571,13919],[-565,-11],[-146,66],[-395,-392],[-273,-148],[-1405,-499],[-547,-640],[-385,-88],[-400,-233],[-649,-155],[-505,6],[-959,315],[-303,-15],[-286,120]],[[20170,11022],[210,315],[638,282],[232,818],[-50,380],[-143,166]],[[20170,11022],[-165,69],[-200,-144],[-195,273],[137,438],[199,251],[142,689],[195,-42],[287,244],[251,-227],[236,410]],[[60006,14969],[-387,41],[-626,198],[-154,-190],[-228,88],[-377,-298],[-233,314]],[[15576,9148],[-282,50],[-158,274],[-689,156],[-205,158],[-212,498],[-194,168],[-189,-78],[-350,367],[-269,618],[-217,154],[-136,440],[-204,369],[-141,839]],[[7984,6668],[246,-95],[323,227],[276,551],[399,261],[173,-150],[371,495],[216,73],[385,341],[150,667],[-32,909],[-272,680],[521,1571],[278,373],[417,39],[226,-117],[669,668]],[[49652,9709],[572,556],[744,1925],[484,1800],[35,932]],[[49571,13919],[252,-61],[368,430],[326,50],[82,227],[274,221],[393,0],[221,136]],[[56941,15495],[53,51]],[[56770,15547],[171,-52]],[[56770,15547],[171,-52]],[[57187,15637],[414,-462],[400,-53]],[[56522,15636],[248,-89]],[[56994,15546],[138,174]],[[56994,15546],[138,174]],[[57132,15720],[55,-83]],[[57132,15720],[55,-83]],[[6167,12524],[373,364],[334,216],[500,-114],[242,-157],[191,140],[316,1],[328,236],[261,459],[390,10],[568,-128],[198,303],[436,49],[97,-132],[764,-53],[183,-248],[359,226],[451,72],[245,-252],[-73,-355]],[[55738,16425],[170,-256],[243,-64],[371,-469]],[[51487,14922],[338,287],[322,383],[270,-147],[938,100],[150,399],[1351,239],[390,-138],[492,380]],[[11942,14335],[480,-334],[277,-305],[45,-520],[643,-662],[92,-332],[239,-208],[371,142],[322,-951],[-85,-429],[68,-269],[401,-661],[396,-276],[385,-382]],[[9009,14041],[610,-105],[222,258],[246,111],[775,-217],[641,182],[439,65]],[[24371,15277],[1,42]],[[38081,12492],[59,603],[-149,427],[-279,475],[-279,826],[-192,320],[-305,206],[-89,542]],[[21057,12983],[258,360],[149,-7],[250,605],[269,133],[161,255],[271,75],[302,289],[279,585],[195,144]],[[23191,15422],[265,-132],[205,152],[310,-367],[283,-53],[117,255]],[[71210,17397],[-95,668],[-344,537],[-317,199],[-257,24]],[[57190,17728],[67,-421],[-83,-889],[-492,-524],[-160,-258]],[[65772,18421],[217,-178],[142,238],[441,-87],[738,314],[399,25],[817,-110],[292,-184],[522,-151],[406,4],[451,533]],[[64145,17493],[374,513],[123,346],[492,-52],[369,246],[269,-125]],[[55738,16425],[224,80],[548,625],[254,688],[259,-160],[167,70]],[[93033,22236],[169,-1255],[-21,-776],[-100,-478],[95,-487],[-72,-933],[-618,-513],[-40,-424],[-541,-160]],[[90661,17677],[325,441],[165,707],[54,725],[283,256],[447,84],[233,178],[-7,674],[-105,123],[68,450],[306,412],[329,166],[274,343]],[[42753,12245],[164,109],[236,434],[381,305],[784,446],[585,526],[883,949],[1451,1494],[327,408],[355,212],[234,408]],[[51487,14922],[59,1309],[107,1525],[70,255]],[[43007,12252],[763,624],[859,782],[688,408],[274,270],[274,93],[868,618],[1006,1043],[1375,884],[1043,918],[-842,-225],[-996,-153],[-166,22]],[[36847,15891],[-135,737],[-432,384],[-220,12]],[[58001,15122],[181,146],[254,862],[192,112],[110,370],[3,398],[-744,1016],[-102,455],[181,116]],[[50271,17911],[624,106],[128,-284],[473,94],[227,184]],[[57190,17728],[232,260],[-36,261],[174,67],[43,304]],[[40027,17235],[-267,131],[-379,-159],[-430,16],[-257,-265],[-408,53],[-393,-151],[-289,-293],[-174,54],[-304,-180],[-279,-550]],[[58076,18597],[-9,143]],[[57603,18620],[255,283],[209,-163]],[[40017,17227],[195,103],[465,-210],[300,195],[420,-62],[151,357],[376,-14],[1065,149],[592,258],[241,-82],[336,72],[259,-130],[991,-56],[585,-230],[523,-58],[384,67],[343,-91],[910,41]],[[62826,17297],[213,506],[200,-98],[226,423],[397,450],[115,-11],[230,442],[175,653],[393,208],[222,-39]],[[23191,15422],[29,299],[-342,1063],[-20,369],[325,261]],[[23183,17414],[117,4]],[[66803,20843],[102,-346],[796,-360],[138,75],[306,-248],[206,14],[361,-202],[451,-421],[466,-327],[568,-203]],[[65772,18421],[150,101],[190,473],[163,133],[516,1339],[12,376]],[[66803,20843],[7,51]],[[51723,18011],[352,468],[64,268],[473,684],[341,232]],[[66803,20843],[-51,224]],[[66752,21067],[-24,-1]],[[66728,21066],[-53,-385],[-155,-34],[-419,-531],[-318,-160],[-786,-125]],[[66752,21067],[-24,-1]],[[53541,19893],[52,93]],[[52963,19652],[290,217],[340,117]],[[53593,19986],[391,113],[602,-163],[643,-646],[384,-114],[441,-250],[439,-425],[259,-79],[349,217],[502,-19]],[[36060,17024],[-355,-62],[-447,929],[-192,83],[-338,515],[-195,183],[-190,-39],[-279,255],[-306,-130],[-609,-5],[-479,-231]],[[4340,18231],[-55,-416],[49,-401],[215,-293],[195,-1077],[161,-259],[208,-89],[80,-256],[86,-759],[372,-544],[294,-181],[300,-340],[-143,-346],[61,-260]],[[66728,21066],[-504,223],[-173,213]],[[65281,21782],[314,-193],[456,-87]],[[64997,19831],[284,1951]],[[90425,17779],[-6,367],[-125,474],[185,522],[43,366],[130,179],[17,401],[110,356],[-32,528],[77,673],[238,678],[107,886],[65,131],[-53,749],[-342,1368]],[[95983,26249],[-81,-581],[-234,-64],[67,-980],[-64,-144],[112,-480],[-28,-837],[258,-855],[237,-201],[95,-537],[213,-616],[-63,-470],[43,-455],[-110,-113],[-75,-883],[92,-435],[136,-173],[36,-544],[105,-209],[136,-638],[336,-459],[132,-699],[230,-400],[391,-26],[304,-116],[230,-859],[-159,-1362],[221,-879]],[[49571,13919],[-4,521],[83,864],[175,840],[184,1141],[188,605]],[[50889,21144],[-937,-125],[-82,-281],[-873,-1424],[-487,-953],[-357,-825]],[[90786,25616],[53,-159]],[[90786,25616],[53,-159]],[[29710,19988],[228,-86],[726,-540],[186,-20]],[[25931,12208],[132,260],[270,-109],[238,166],[64,349],[241,363],[231,-22],[448,320],[290,729],[205,28],[159,234],[48,500],[-60,484],[198,1031],[241,400],[335,297],[393,485],[26,480],[134,3],[26,465],[267,609],[17,296],[-124,412]],[[29710,19988],[-115,53]],[[4340,18231],[14,555],[-176,379],[-213,12],[-264,296],[3,165]],[[90798,25827],[-12,-211]],[[24393,15339],[431,257],[487,1562],[74,320],[-246,645],[-11,367],[498,883],[200,273],[568,72],[383,-182],[232,152],[559,-419],[128,29],[173,361],[221,161],[507,69],[73,163],[376,264],[391,-265],[158,-10]],[[2040,19887],[2,-312],[145,-365],[246,-280],[68,-608],[354,-718],[234,-99],[299,214],[-59,184],[435,29],[576,299]],[[90777,26093],[21,-266]],[[90777,26093],[21,-266]],[[90730,26440],[47,-347]],[[66051,21502],[-90,957],[45,966]],[[58076,18597],[120,-224],[92,401],[96,-7],[352,1171],[-34,211],[380,1078],[47,413],[283,196],[227,375],[294,852]],[[59933,23063],[890,-352],[1079,-223],[384,60],[694,-631],[618,7],[1236,-132],[447,-10]],[[51723,18011],[46,648],[177,447],[206,236],[79,278],[298,554],[144,643],[28,497],[-116,456],[-35,800]],[[50889,21144],[366,10],[315,218],[303,631],[677,567]],[[91266,27355],[-55,-289],[-481,-626]],[[88592,18521],[-174,321],[-489,276],[-32,940],[-315,472],[-232,885],[-361,1024],[-180,309],[-174,946],[-42,625],[80,578],[-222,527],[81,257],[87,1021],[62,159]],[[86681,26861],[218,88],[608,-276],[405,-819],[197,210],[524,259],[390,-255],[723,326],[329,-341],[461,181],[194,206]],[[93338,25830],[-260,-325],[-62,-430],[109,-269],[-48,-811],[115,-453],[-239,-1008],[80,-298]],[[95983,26249],[-574,666],[-139,-112],[-281,345],[-173,-9],[-242,375],[-372,-43],[-201,476]],[[94001,27947],[-300,92],[-123,237]],[[93578,28276],[-456,-49],[-109,-191],[-485,-262],[-215,-456],[-257,200],[-110,385],[-229,-157],[-84,270],[-367,-661]],[[47142,23415],[-360,85],[-599,-42],[-332,-284],[-795,-52],[-189,-140],[-820,-33],[-149,-114],[-225,-825],[-354,-395],[-472,-391],[-245,-63],[-507,123],[-442,-67],[-453,-294],[-636,-29],[-380,-110],[-414,-425],[-257,-116],[-349,-490],[-361,-113],[-520,-396],[-443,27],[-227,-98],[-119,-249],[-715,-603],[-172,-20],[-310,-892],[-237,-385]],[[59933,23063],[672,1354],[296,455]],[[58067,18740],[-236,379],[-334,337],[-777,1663],[-242,340],[-221,1550],[-77,1452]],[[53593,19986],[260,579],[438,771],[149,640],[223,433],[-27,254],[315,747],[362,404],[266,-7],[211,388],[390,266]],[[9009,14041],[47,465],[-84,245],[-338,225],[-305,874],[51,916],[-513,991],[-69,269],[79,565],[-90,349],[-269,451],[-69,392],[-378,420],[-199,722],[-300,670],[-363,372],[-161,377]],[[4340,18231],[274,98],[56,521],[254,540],[627,729],[-45,259],[257,289],[173,355],[-31,376],[167,495],[-24,451]],[[47142,23415],[487,27],[587,266],[296,250],[909,64],[299,78],[372,318],[320,-90],[267,-286]],[[56276,24958],[617,-405],[416,62],[147,-104],[597,43],[201,239],[248,-34],[781,350],[972,-241],[646,4]],[[56180,24461],[96,497]],[[50889,21144],[371,965],[590,1167],[276,657],[438,436],[536,328]],[[52550,22570],[77,205],[455,522],[401,305],[532,289],[382,48],[737,452],[142,261],[509,281],[491,25]],[[56276,24958],[45,132]],[[56553,25245],[466,-252],[97,126]],[[56321,25090],[232,155]],[[53100,24697],[718,-117],[567,247],[379,-8],[514,89],[632,380],[411,-198]],[[32413,23781],[-542,-194],[-196,-834],[132,-751],[-5,-650],[-164,-776],[-489,-209],[-129,-163],[-20,-490],[-141,-345]],[[56553,25245],[163,392]],[[60901,24872],[761,1142],[739,231]],[[86681,26861],[-411,102],[-332,284],[-548,-3],[-109,168],[-286,-21],[-384,123],[-475,-140],[-564,445],[-317,461],[-176,64],[-673,505]],[[82406,28849],[-232,210]],[[81612,28234],[214,-76],[348,901]],[[81947,28945],[227,114]],[[3705,19620],[21,357],[-76,477],[-167,366],[-124,533],[-179,186],[169,384],[-289,231],[-174,-62],[-293,254],[287,668],[-144,91],[-31,576],[145,409],[464,170]],[[65281,21782],[11,533],[91,477],[-139,1777],[92,1487],[-187,830],[-313,232],[-124,364]],[[62433,26213],[237,261],[287,7],[438,364],[894,355],[219,250],[204,32]],[[68520,26815],[378,1163]],[[68400,27948],[498,30]],[[11942,14335],[209,694],[702,279],[528,119],[49,787],[-140,-214],[-178,135],[61,358],[509,115],[221,1026],[-76,372],[-262,478],[203,1059],[387,480],[150,762],[122,322],[221,39],[-9,355],[269,163],[151,456],[-30,183],[-305,511],[-94,356],[67,308],[341,449],[74,399],[187,382]],[[93427,31403],[85,-443],[-28,-1018],[78,-375],[2,-607],[75,-163],[-61,-521]],[[93425,31469],[2,-66]],[[93427,31403],[129,154],[220,-52],[759,-423],[276,-319],[215,35],[425,-419],[267,-420],[93,-856],[-151,-683],[263,-363],[121,-992],[-61,-816]],[[57124,25049],[318,-50],[446,100],[471,-21],[548,151],[459,399],[246,52],[657,677],[260,558],[-1,760],[872,867]],[[47140,27407],[-58,-1690],[60,-2302]],[[15299,24708],[47,-98],[545,232],[20,362],[162,834]],[[15299,24708],[159,394],[402,505],[213,431]],[[61000,28675],[400,-133]],[[53100,24697],[-137,216],[-695,810],[12,324],[-443,1247],[-393,762]],[[6048,22344],[-2,121],[-368,1381],[-45,527],[-198,599],[114,515],[-162,297],[-7,585]],[[47140,27407],[649,364],[378,34],[577,-228],[680,-132],[496,377],[972,449],[93,-203],[459,-12]],[[75731,30415],[-400,117],[-518,-202],[-629,-45],[-233,82],[-463,390]],[[71195,23222],[9,645],[-155,204],[44,517],[203,180],[129,422],[405,464],[249,85],[170,291],[430,1015],[28,784],[61,320],[183,309],[45,441],[-70,321],[56,328],[480,751],[26,458]],[[61000,28675],[-87,-24],[-848,564],[-125,253]],[[56716,25637],[682,1056],[471,326],[177,270],[390,212],[187,580],[375,516],[395,230],[547,641]],[[61000,28675],[634,402],[236,419],[708,478],[134,166],[457,152]],[[87953,30813],[-416,-433],[-271,237],[-362,73],[-65,196],[-277,224],[-287,19],[-325,-254],[-230,190],[-153,-148],[-253,259],[-483,-431],[-227,26],[-175,-149],[-192,-452],[-335,-241],[-240,-26],[-270,-538],[-157,-648],[-829,132]],[[5820,27560],[-115,-428],[-158,-103],[-167,-660]],[[91471,33680],[-33,357]],[[82174,29059],[22,438],[-410,914],[-329,485],[-207,594],[-262,418],[-518,495],[-152,233]],[[80225,32645],[93,-9]],[[91842,34239],[427,-1211],[620,-641],[71,-219],[302,-292],[165,-473]],[[91842,34239],[39,-997],[-84,-571],[-216,-497],[-96,-514],[2,-571],[-261,-1934],[149,-728],[-109,-1072]],[[69397,28047],[35,566],[199,600],[39,506],[-80,150],[63,643],[180,174],[91,920]],[[91630,34320],[-159,-640]],[[91438,34037],[192,283]],[[91759,34431],[83,-192]],[[91630,34320],[129,111]],[[73488,30757],[-106,231],[-294,209],[-692,727],[-256,160]],[[64712,27482],[-101,782],[205,949],[124,893],[436,1015],[44,442]],[[61400,28542],[566,29],[402,175],[268,225],[150,280],[237,184],[258,37],[462,462],[115,246],[725,970],[424,358],[413,55]],[[66237,27487],[-147,214],[-88,717],[76,615],[-72,870],[-154,727],[66,906],[-266,69]],[[65652,31605],[-232,-42]],[[72140,32084],[-262,-117],[-282,159],[-583,51],[-321,-282],[-207,25],[-390,-149],[-171,-165]],[[51444,28056],[-192,522],[-309,512],[-334,1212]],[[80318,32636],[215,704],[144,60]],[[91494,34882],[265,-451]],[[65420,31563],[25,250]],[[63169,30292],[582,391],[173,245],[330,133],[222,345],[365,304],[604,103]],[[3846,28737],[172,-300],[221,-84],[49,-293],[242,-57],[80,139],[131,-642],[639,-1131]],[[3304,24270],[139,263],[39,445],[229,546],[79,514],[-58,99],[91,509],[176,313],[-288,531],[-108,889],[243,358]],[[81098,33184],[330,-109],[-44,-212],[160,-421],[260,-165],[126,-293],[205,-118],[136,144],[316,-294],[198,104],[119,313],[307,-234]],[[69924,31606],[-206,47],[-483,707]],[[68864,30753],[91,662],[280,945]],[[72140,32084],[167,73],[641,-27],[229,140],[655,738],[629,-7],[180,219]],[[73488,30757],[112,212],[61,648],[566,426],[477,720],[-1,467]],[[74641,33220],[62,10]],[[50229,30881],[251,-132],[129,-447]],[[74764,33265],[-61,-35]],[[23183,17414],[-164,671],[-159,243],[85,757],[-134,208],[-82,494],[78,728],[-219,336],[-121,658],[-36,800],[246,511],[531,403],[101,850],[-165,575],[-66,802],[-29,1183],[83,817],[-255,505],[-372,406],[-228,685],[-204,428]],[[80318,32636],[-542,671],[-727,652]],[[74242,33463],[399,-243]],[[91438,34037],[-149,79],[-247,-168],[-223,362],[-308,-137],[-241,376],[-179,449],[-400,423]],[[81098,33184],[376,294],[473,-247],[349,506],[87,-178],[362,239],[201,266],[93,388],[-68,193],[825,-615]],[[16073,26038],[242,299],[347,890],[228,335],[543,-16],[111,336],[978,289],[326,286],[677,214],[332,430],[731,617],[991,25],[245,-239],[249,-30]],[[29595,20041],[26,367],[-205,546],[-202,336],[39,509],[112,518],[195,549],[25,504],[365,196],[263,-26],[45,1027],[107,412],[65,867],[196,359],[-84,484],[-575,835],[77,508],[-229,541],[144,808],[-39,314],[314,199],[402,-60],[134,219],[321,215]],[[74274,33791],[429,-561]],[[74242,33463],[32,328]],[[91494,34882],[-282,173],[-174,338],[-306,355],[-349,48],[-41,-133],[-344,-133],[-146,110],[-161,-219]],[[7080,29935],[-240,-220],[-307,61],[-270,-495],[-211,-218],[-140,-756],[23,-512],[-115,-235]],[[89691,35421],[-258,330],[-173,75],[-200,-374],[-356,-164],[-165,-281],[88,-292],[-431,-733],[93,-300],[106,-773],[-280,-615],[26,-490],[-122,-328],[-76,-652]],[[72140,32084],[-512,453],[-401,842],[-189,608]],[[71038,33987],[932,188],[142,-159],[596,-84],[406,-408],[212,-104],[559,189],[357,-146]],[[22073,29474],[83,424],[401,114],[16,682]],[[70341,34138],[436,-227],[261,76]],[[22573,30694],[-7,768]],[[79049,33959],[-352,384],[-374,278],[-515,890],[-98,277]],[[47140,27407],[-430,-114],[-218,-164],[-1322,-125],[-624,-13],[-216,499],[-414,-218],[-531,396],[-551,516],[-727,164],[-532,-25],[-454,393],[-466,-200],[-253,84],[-166,-252],[-342,71],[-567,-328],[-510,0],[115,366],[-141,381],[-72,735],[-113,100],[-83,766],[142,574],[-20,684],[-168,355],[270,772]],[[77710,35788],[-276,157]],[[74703,33230],[-119,999],[-252,462],[-240,774],[-5,529]],[[74335,36159],[-248,-165]],[[91494,34882],[-323,747],[-176,681],[-335,978],[-587,915]],[[59940,29468],[53,252],[1,814],[109,645],[219,249],[18,235],[-155,523],[45,693],[157,620],[188,245],[514,256],[143,598],[286,322]],[[79049,33959],[94,87],[300,788],[137,1074],[133,635],[-55,368]],[[77710,35788],[55,259],[412,635],[293,258]],[[77434,35945],[-630,212],[-645,512],[-496,-212],[-168,-192],[-574,39],[-586,-145]],[[78470,36940],[471,-268],[514,-40],[203,279]],[[66136,35733],[-414,-1629],[-387,-836],[-86,-599],[196,-856]],[[64048,33580],[281,438],[280,161],[701,842],[826,712]],[[83796,34030],[90,401],[345,373],[182,6],[161,-289],[299,-207],[143,89],[196,461],[186,228],[797,-617],[248,-43],[-81,188],[176,336],[48,467],[150,197],[-7,805],[-143,415],[84,538],[-66,287],[163,81],[175,403],[259,228]],[[90073,38203],[-231,-239],[-261,55],[-936,725],[-423,-229],[-1021,-138]],[[70341,34138],[-226,107],[-567,969],[-227,656],[-224,395],[-653,113]],[[69235,32360],[49,844],[106,779],[-102,612],[-267,79],[-269,527],[-136,769],[-172,408]],[[87201,38377],[202,281]],[[79658,36911],[434,347],[176,547]],[[85043,38056],[182,-211],[209,-480],[185,-175],[143,213],[403,-208],[87,300],[182,-36],[49,289],[205,122],[95,308],[247,189],[265,397],[108,-106]],[[47140,27407],[162,807],[309,1087],[106,159],[209,805],[66,1804],[405,376],[631,1005],[282,-55],[561,552],[388,213],[190,218],[211,505],[188,-25],[140,-547]],[[66239,36346],[331,17]],[[66136,35733],[103,613]],[[70341,34138],[-37,615],[74,994],[-41,463],[-527,518]],[[66076,36369],[163,-23]],[[66076,36369],[-1235,-501],[-174,-172],[-732,-495],[-381,146],[-418,-80],[-364,-252],[-460,-568],[-538,70],[-256,403]],[[66570,36363],[6,92]],[[68444,36378],[-214,356]],[[90073,38203],[-371,763],[-105,368]],[[69810,36728],[-480,167],[-626,-216]],[[66576,36455],[-273,178]],[[71861,37263],[2108,-1175],[118,-94]],[[71861,37263],[198,-389],[192,-185],[910,-1274],[858,-1491],[255,-133]],[[76252,37955],[210,-161],[184,73],[504,-106],[340,169],[404,14],[224,-876],[352,-128]],[[77434,35945],[-120,378],[-614,1040],[-448,592]],[[71861,37263],[-618,73],[-697,6],[-610,-428],[-126,-186]],[[71773,37701],[88,-438]],[[66576,36455],[119,730]],[[66786,37256],[257,-1]],[[66695,37185],[91,71]],[[68230,36734],[-635,661]],[[67043,37255],[552,140]],[[71773,37701],[-781,-96],[-1058,-26],[-820,17],[-1112,-39],[-407,-162]],[[3310,34148],[-149,-1305],[187,-232],[-222,-455],[113,-700],[246,-287],[-73,-896],[245,-304],[236,-451],[-177,-530],[130,-251]],[[80268,37805],[80,390],[146,34],[139,449],[404,344],[204,-25],[146,185]],[[81387,39182],[203,155],[370,60],[408,-197],[107,-305],[329,120],[119,-170],[187,190],[126,-280],[274,-115],[132,-471],[269,-216],[70,-401],[184,-217],[426,272],[56,219],[396,230]],[[88698,40288],[348,-265],[112,-272],[439,-417]],[[87403,38658],[224,2],[159,341],[160,70],[752,1217]],[[56716,25637],[-257,573],[-13,949],[-120,269],[91,918],[-198,802],[-118,1100],[215,475],[132,483],[27,449],[-43,744],[24,2370],[-203,298],[-61,556],[19,1109]],[[56154,36731],[57,1]],[[65981,37767],[4,-258],[356,-577],[-38,-299]],[[66695,37185],[-355,609],[-359,-27]],[[56211,36732],[762,-55],[676,181],[415,232],[375,-53],[269,85],[672,-294],[302,-31],[533,196],[259,0],[454,216],[889,28],[479,-293],[417,186],[331,-92],[253,-220],[255,-17],[474,-342],[411,-115],[367,13],[1059,150],[213,-138]],[[65969,37921],[12,-154]],[[75919,39010],[132,-574],[201,-481]],[[75917,39013],[2,-3]],[[80268,37805],[-171,-141],[-284,221],[-144,-175],[-258,148],[-151,-183],[-429,89],[-114,333],[-507,375],[-193,-145],[-505,109],[-209,543],[-348,318],[-404,-127],[-453,-343],[-179,183]],[[75917,39013],[-742,13],[-300,56]],[[74335,36159],[-27,122],[290,1670],[42,457],[235,674]],[[71426,38773],[237,-56],[110,-1016]],[[22573,30694],[228,68],[146,-615],[414,503],[222,77],[16,252],[203,389],[35,484],[352,1129],[235,-48],[78,510],[-168,863],[478,193],[302,3],[48,293],[492,18],[139,190],[192,584]],[[5426,35124],[168,-434],[-242,-336],[52,-419],[123,-5],[85,-423],[1,-469],[-194,-537],[-100,-616],[40,-208],[273,-74],[105,-264],[-42,-1686],[134,-1268],[-9,-825]],[[11831,33819],[182,-146],[285,439],[218,-124],[220,857],[361,765]],[[75917,39013],[-331,626],[-333,298]],[[74875,39082],[378,855]],[[22586,31463],[140,539],[-90,430],[-29,1187],[-198,212],[-75,406],[84,599],[-104,1286]],[[22314,36122],[-612,-181],[-304,32],[-237,-113],[-749,-145],[-303,-274],[-878,-527],[-491,-425],[-516,347],[-108,304],[-231,115],[-292,-506],[-313,80],[-54,154],[-358,-60]],[[13088,35624],[203,108],[143,-169],[270,20],[119,439],[371,73],[431,-433],[277,41],[616,-570],[333,42],[125,-111],[744,-261],[148,120]],[[51647,38614],[256,-631],[288,-379],[219,-529],[625,-497],[362,-88],[199,171],[540,150],[845,-97],[307,-105],[866,122]],[[51511,38618],[136,-4]],[[22314,36122],[359,290],[98,309],[327,111],[159,519],[524,-406],[364,-620],[264,478],[285,-290],[192,-533],[287,-47],[228,-298],[584,-48]],[[50797,34970],[264,919],[284,731],[51,755],[114,366],[-2,887],[-282,56],[-122,308],[-488,184]],[[50574,39130],[42,46]],[[75253,39937],[-373,96],[-526,488],[-179,538],[-283,298],[-414,211]],[[22314,36122],[-32,434],[185,642],[-142,673]],[[22325,37871],[-482,33],[-95,96]],[[16868,34923],[-4,698],[155,397],[374,593],[385,-498],[267,-140],[-104,237],[180,543],[20,326],[189,-82],[1803,580],[337,-405],[510,628],[768,200]],[[66303,36633],[-672,362],[-641,467],[-915,488],[-230,342],[-384,398],[-835,646],[-151,300],[-309,349],[-281,574]],[[65969,37921],[-388,930],[-592,567],[-288,122],[-130,405],[-531,251],[-248,206],[-499,65],[-509,148],[-652,19],[-247,-75]],[[88698,40288],[-494,1033],[-265,310],[-151,-56],[-95,245]],[[81387,39182],[-9,221],[174,91],[-50,274],[129,81],[137,547],[187,5],[275,243],[66,323],[334,174],[198,-464],[383,367],[325,-250],[121,25],[-19,685]],[[83638,41504],[135,112],[101,360],[411,-15],[204,-534],[140,25],[136,-335],[387,284],[78,414],[225,277],[252,88],[395,-59],[287,335],[531,182],[331,497],[59,432]],[[3710,37846],[343,-1365],[-104,-241],[436,-514],[8,-302],[433,-547],[600,247]],[[3310,34148],[148,1055],[175,345],[-14,1881],[91,417]],[[61885,40559],[-277,256]],[[51578,39985],[250,-259],[19,-254],[-200,-858]],[[75253,39937],[106,726],[156,260],[121,526],[34,895]],[[51405,40087],[173,-102]],[[50616,39176],[321,521],[178,57],[290,333]],[[31091,30268],[389,195],[436,556],[531,142],[294,196],[198,604],[822,-23],[716,247],[188,396],[73,371],[325,318],[177,303],[62,659],[132,406],[-144,97],[94,507],[-51,506],[132,279],[78,677],[-342,307],[-244,71],[-275,238],[-56,354],[168,665],[84,563],[231,20],[152,186]],[[56449,40716],[88,-293],[28,-698],[-359,-793],[-339,-371],[-45,-386],[151,-97],[1,-1075],[180,-272]],[[68397,41864],[275,-362],[79,-388],[517,-713],[205,-112],[329,32],[623,-460],[449,-256],[215,-444],[337,-388]],[[81473,43353],[217,-233],[269,-55],[139,127],[161,-462],[390,126],[389,-574],[340,283],[54,-454],[206,-607]],[[25985,35587],[415,-76],[371,492],[440,122],[746,-291],[258,-8],[233,699],[281,-233],[957,-105],[252,-84],[523,-21],[371,-103],[1002,-11],[689,-341],[462,122],[347,489],[-3,246],[275,290],[283,805],[-24,900],[178,682],[461,33],[187,-127],[349,319]],[[68324,42004],[73,-140]],[[56449,40716],[535,124],[254,-259],[156,9],[251,-262],[386,160],[136,160],[304,39],[602,-141],[164,120],[698,172],[305,359],[376,-86],[215,-208],[510,-107],[267,19]],[[51578,39985],[77,620]],[[51700,40792],[-34,-147]],[[51700,40792],[330,-170],[218,197],[117,-72],[698,119],[330,273],[747,-465],[398,-94],[469,134],[265,-130],[356,18],[346,145],[391,-150],[84,119]],[[35261,39108],[336,-172],[382,35],[317,239],[305,43],[69,-141],[431,-227],[210,76],[333,322],[795,-83],[282,215],[595,80],[307,266],[281,568]],[[50616,39176],[-323,-169],[-470,-24],[-567,139],[-845,357],[-928,1160],[-316,341]],[[47166,40976],[1,4]],[[47167,40980],[-11,11]],[[47156,40991],[10,-15]],[[73478,41568],[-21,1022],[91,334],[41,613],[284,-205],[300,-541],[736,10],[334,-351],[427,-106]],[[5426,35124],[252,608],[123,92],[149,457],[285,-132],[585,433],[168,-478],[-55,-119],[33,-705],[424,12],[500,-343],[54,-421],[178,-356],[346,-391],[88,145],[525,-320],[606,-209],[297,53],[116,-151],[390,254],[580,-50],[249,235],[516,64],[-227,219],[-180,-96],[-130,150],[-164,525],[-410,194],[-96,201],[-103,824],[-212,393],[-617,463],[-206,411],[-293,270],[-87,525],[-473,337],[-292,-390],[-190,149],[-383,-154],[-350,55],[-366,-172],[-172,108],[-126,453],[-363,158],[-343,-200],[-237,46],[-247,-157],[-354,271],[-127,-145],[-228,340],[-166,464],[-494,172],[-196,339]],[[3710,37846],[237,611],[56,1098]],[[50197,41603],[481,-676],[419,-782],[308,-58]],[[67114,43136],[292,-532],[230,-89],[688,-511]],[[67114,43136],[-39,-714],[-118,-290],[-88,-807],[-136,-757],[-4,-517],[96,-1268],[-53,-723],[14,-804]],[[47167,40980],[153,185],[544,155],[209,-64],[493,52],[89,-77],[726,-6],[272,512],[544,-134]],[[3046,39911],[-38,-866],[-96,-362],[-234,-1675],[382,-1903],[250,-957]],[[3182,39939],[5,1]],[[3187,39940],[412,32]],[[3599,39972],[404,-417]],[[46293,41674],[324,-170],[539,-513]],[[39904,40329],[237,-257],[339,-154],[741,-105],[486,47],[603,-91],[607,118],[331,334],[412,251],[283,337],[888,773],[992,237],[470,-145]],[[73478,41568],[-261,55],[-400,265],[-772,311],[-286,-5],[-693,206],[-233,352],[-168,78],[-62,499],[-739,840]],[[69646,44245],[218,-76]],[[69646,44245],[-1117,-761],[-93,-389],[-112,-1091]],[[46293,41674],[821,642]],[[67114,43136],[-286,402],[-480,159],[-416,246]],[[66786,37256],[-109,812],[-245,1261],[35,546],[-120,1217],[-228,1727],[-145,448],[-42,676]],[[209,29441],[-209,686],[175,254],[44,446],[200,353],[-27,430],[157,177],[112,494],[220,507],[-101,693],[131,322],[-21,773],[-313,422],[180,521],[30,363],[-53,942],[139,252],[-50,1046],[172,546],[-33,321],[208,1319],[122,293],[-40,545]],[[37293,42969],[196,-244],[47,-287],[515,-711],[239,-565],[639,-489],[726,-314],[249,-30]],[[67777,45442],[202,-206],[356,-140],[821,-675],[490,-176]],[[67777,45442],[-194,-682],[-32,-648],[-156,-220],[-4,-471],[-277,-285]],[[67777,45442],[-72,143]],[[87169,43817],[-455,179],[-267,288],[-488,1022],[-310,371],[-113,897]],[[73181,46502],[-52,-264]],[[52279,44619],[-424,-909],[-153,-1245],[43,-410],[-87,-288],[-16,-807],[58,-168]],[[50197,41603],[187,1105],[145,224],[297,26],[382,451],[139,650],[276,101],[656,459]],[[76280,46978],[86,-63]],[[73129,46238],[100,-134],[439,-135],[142,334],[321,-132],[457,140],[150,293],[407,-24],[246,-133],[239,39],[123,229],[224,28],[117,256],[186,-21]],[[3477,42694],[89,-649],[52,-841],[-19,-1232]],[[37293,42969],[205,45],[530,383],[2152,525],[296,328],[321,-158],[272,33],[335,-271],[1183,-371],[327,161],[794,-260],[876,72],[286,193],[154,-370],[378,-365],[647,-127],[583,-529],[501,71]],[[73102,47104],[79,-602]],[[87310,43567],[-221,474],[-218,1010],[-35,551],[-98,223],[62,726],[142,206],[122,443],[-196,357],[19,669],[83,432],[185,333]],[[35038,39386],[-157,653],[-101,1036],[-133,78],[-39,1233],[-97,505],[-260,468],[193,181],[63,442],[166,316]],[[34673,44298],[81,16]],[[70626,47300],[335,-161],[572,-442],[197,-273],[335,-4],[102,220],[195,-81],[422,-472],[194,216],[151,-65]],[[69864,44169],[147,701],[223,673],[263,457],[129,1300]],[[34754,44314],[-5,197]],[[34673,44298],[-492,-274],[-27,-225],[-187,-108],[-730,39],[-118,-119],[-91,-669],[-220,-120],[-874,74],[-362,580],[-203,-240],[-202,31],[-230,323],[-18,355],[-152,392]],[[77082,48195],[-1,69]],[[76366,46915],[152,593],[263,123],[300,633]],[[77081,48264],[-98,53],[-120,-324],[-421,-315],[-162,-700]],[[52279,44619],[327,-113],[302,98],[208,475],[440,114],[108,700],[-261,414]],[[67705,45585],[-484,296],[-161,341],[-729,675],[-730,569]],[[65932,43943],[-91,931],[4,831],[-249,1474],[5,287]],[[65601,47466],[0,6]],[[53144,46490],[259,-183]],[[1678,42790],[-181,-316],[40,-794],[245,-183],[189,236],[281,-762],[197,-126],[518,-725],[215,-181]],[[89377,50389],[-372,-542],[-384,-315],[-168,-258],[-807,-265],[-491,-18]],[[87155,48991],[17,526],[141,301],[24,485]],[[56202,47244],[318,-523],[661,-874],[201,-510],[268,-334],[185,-391],[205,-115],[183,-373],[674,-1021],[357,-191],[917,-969],[254,78],[517,-585],[666,-621]],[[84909,47621],[-314,666],[-185,689],[-322,684],[-183,628],[28,159]],[[70626,47300],[-287,432],[-333,318],[-219,76],[-207,272],[-286,12],[-193,291],[-481,-52],[-357,119],[-617,-12]],[[67705,45585],[92,886],[49,1323],[-183,590],[-17,372]],[[30767,44337],[428,112],[252,-228],[187,-3],[339,423],[-53,442],[101,459],[-83,613]],[[82499,49281],[-170,241],[-237,-251],[-276,362],[-405,-51],[-463,619],[-355,37],[-81,-448],[-320,-133],[-65,-794],[-218,-219],[-214,152],[-210,-190],[-381,-16],[-345,-525],[-347,-26],[-57,-211],[-737,320],[-226,-41],[-311,157]],[[89597,39334],[-240,555],[-13,618],[63,264],[422,779],[-32,244],[96,818],[34,914],[155,440],[58,559],[-24,656],[309,832],[16,287],[-366,2553],[-162,294],[-57,1477],[-128,487],[-357,411],[-297,32],[-1619,-1373],[-118,122]],[[30767,44337],[-350,332],[-355,-83],[-76,-238],[-859,100],[-168,109],[-233,397],[-423,282],[-220,666],[-357,29],[-508,-694],[-201,276],[-190,18],[-410,558],[-271,139],[-282,-294],[-243,-24],[-234,187],[-824,-767],[-7,-633],[-134,-627],[-184,-372],[-193,-164],[-265,-575],[-9,-477],[-91,-478],[-221,-339],[-228,-68],[-518,-398],[7,-281],[-182,-374],[17,-467],[-390,-730],[26,-599],[133,-376],[1,-501]],[[85804,50805],[-329,436],[-479,-220],[-118,-306]],[[54246,48221],[168,-216],[71,-329],[200,-241],[300,-787],[250,-219],[191,-684],[136,-287],[150,-683],[232,-229],[-31,-240],[29,-972],[124,-973],[240,-382],[139,-387],[55,-644],[-51,-232]],[[53403,46307],[17,388],[215,445],[126,627],[254,144],[231,310]],[[54387,48249],[256,-77],[197,-247],[338,-25],[397,-309],[627,-347]],[[54387,48249],[-48,-3]],[[54339,48246],[-93,-25]],[[52279,44619],[92,750],[-2,488],[169,25],[255,532],[355,86],[10,415],[292,409],[100,397],[310,428],[386,72]],[[71469,49888],[155,-573],[271,-469],[215,-69],[71,-403],[160,1],[555,-681],[206,-590]],[[65932,43943],[-1284,615],[-319,786],[-436,938],[-247,642],[-141,565],[-402,983],[-375,583]],[[62728,49055],[-226,-686],[37,-266],[282,-526],[383,-1196],[30,-580],[140,-735],[462,-1296],[99,-669],[313,-588],[262,-271],[418,-793],[168,-723],[240,-701],[470,-1011],[144,-635],[19,-458]],[[71469,49888],[-367,106]],[[70626,47300],[87,539],[273,499],[115,870],[1,786]],[[67646,48756],[-184,-53],[-367,134],[-571,-14],[-635,252],[-635,330],[-438,47]],[[65601,47472],[-23,398],[-197,532],[-565,1050]],[[53756,48496],[424,-124],[66,-151]],[[73102,47104],[162,1010],[-22,271],[135,419],[45,516],[-117,406],[192,660]],[[73497,50386],[-288,-243],[-695,-226],[-237,-231],[-187,252],[-621,-50]],[[74135,50490],[-210,-687],[-126,-802],[-236,-580],[53,-534],[-88,-326],[-257,-189],[-19,-629],[-71,-241]],[[54295,48589],[44,-343]],[[74135,50490],[-451,9],[-187,-113]],[[62728,49055],[-131,456]],[[62597,49511],[-237,-255],[-229,-83],[-201,-239],[-330,57],[-274,318],[-344,-166],[-499,2],[-364,-299],[-255,-701],[-688,-378],[-678,-237],[-263,-364],[-66,-308],[-425,-37],[-589,205],[-324,-158],[-379,516],[-250,-140]],[[51955,48347],[373,-67],[498,104],[330,350],[600,-238]],[[65601,47472],[-586,205],[-441,552],[-356,41],[-274,161],[-192,449],[-213,201],[-907,533]],[[62597,49511],[35,103]],[[64816,49452],[-246,395]],[[62526,49709],[106,-95]],[[64570,49847],[-120,-45],[-1533,230],[-187,-135],[-98,-283]],[[83933,50447],[-52,127],[-596,314],[-550,-39],[-165,396],[-436,95],[-76,413],[-289,286],[-332,59]],[[77081,48264],[70,522],[-70,427],[362,570],[-20,202],[194,368],[193,153],[120,377],[312,347],[280,-36],[254,281],[244,83],[125,-166],[237,222],[220,-32],[340,529],[764,-656],[52,189],[237,-73],[283,481],[159,46]],[[48437,49284],[521,-297],[348,-29],[601,-353],[294,-469],[357,-257],[309,106],[455,-94],[377,349],[256,107]],[[61508,50342],[199,-69],[331,-335],[488,-229]],[[54387,48249],[86,134],[128,822],[160,340],[557,235],[651,-245],[457,-13],[242,185],[403,135],[179,-80],[904,286],[495,-41],[330,343],[236,-176],[269,-394],[452,11],[336,-117],[358,329],[217,20],[162,187],[499,132]],[[34749,44511],[988,27],[234,449],[199,132],[144,343],[264,1003],[97,222],[478,222],[487,742],[236,698],[661,515],[526,-81],[240,54],[395,-137],[1098,-71],[551,-422],[366,-209],[1042,-233],[584,118],[352,294],[231,-47],[548,462],[235,320],[499,304],[301,14],[620,-320],[1235,834],[434,-43],[643,-417]],[[49689,49992],[460,-555],[377,-161],[628,-924],[445,49],[356,-54]],[[53633,50379],[84,-254],[345,-540],[136,-756],[97,-240]],[[53633,50379],[112,-590],[-5,-772]],[[53633,50379],[-4,13]],[[34749,44511],[-230,960],[30,316],[168,159],[-88,517],[-6,608],[197,1043],[132,343],[-18,742],[45,331],[-95,692],[154,227]],[[32519,48908],[296,459],[143,393],[259,-71],[231,-482],[234,81],[408,422],[187,-4],[453,638],[308,105]],[[51199,51085],[548,15],[465,-444],[174,-373],[486,-231],[724,-762],[144,-273]],[[53740,49017],[16,-521]],[[49366,52021],[289,-1238],[34,-791]],[[48931,52447],[258,-377],[177,-49]],[[47770,52426],[160,-303],[391,-977],[450,-48],[328,-274],[590,-832]],[[47770,52426],[960,153],[201,-132]],[[83933,50447],[-114,644],[-61,982],[17,358],[-80,680],[175,485],[-130,732],[-336,332],[1,469],[-99,217],[-76,623]],[[47609,52579],[161,-153]],[[36969,51911],[-527,-598],[-400,-128],[-304,-553],[-398,-288],[-302,105]],[[48437,49284],[58,229],[-140,779],[-185,183],[-381,-45],[-203,154],[-1570,-30],[-450,-151],[-355,33],[-758,-346],[-139,-248],[-301,76],[-777,-68],[-550,154],[-650,402],[-37,1682],[27,253]],[[85334,56554],[-288,-675],[-244,-48],[-148,-301],[-437,28],[-155,120],[-362,3],[-470,288]],[[53629,50392],[57,518],[201,413],[182,898],[-117,418],[79,450],[-17,401]],[[36969,51911],[145,7],[416,-293],[726,159],[284,-56],[723,20],[704,207],[758,326],[438,285],[339,-270],[302,-83],[222,128]],[[87337,50303],[108,557],[8,511],[-79,1099],[83,365],[-94,455],[57,438],[-98,655],[-90,1005],[-158,1045],[-592,756]],[[85334,56554],[181,-35],[357,144],[610,526]],[[42026,52341],[448,386],[549,323],[799,230],[580,-301],[654,-235],[969,-107],[179,-83],[293,120],[933,21],[179,-116]],[[54170,54170],[84,-1313],[-79,-405],[8,-1286],[-43,-174],[21,-1382],[141,-573],[-7,-448]],[[54170,54170],[-51,-570],[-105,-110]],[[48941,53881],[407,-1322],[18,-538]],[[48941,53881],[-197,-859],[187,-575]],[[81437,52098],[-23,134],[-309,95],[-249,407],[-634,875],[-215,-15],[-453,350],[-305,16],[-321,208],[-417,503],[9,480],[-346,1132],[-782,625],[-146,209],[-366,-121],[-184,-250],[-346,371]],[[83230,55969],[-240,465],[-392,541],[-511,858]],[[56737,55668],[464,-174],[398,-321],[125,-1096],[296,-759],[420,-371],[16,-166],[254,-233],[324,-103],[158,269],[225,54],[564,-490],[500,-282],[636,-1159],[350,-282],[41,-213]],[[56735,55668],[2,0]],[[54170,54170],[232,309],[238,48],[271,283],[357,221],[458,16],[445,250],[297,330],[267,41]],[[35041,54584],[182,-258],[248,-74],[220,-621],[238,-303],[140,-356],[196,-167],[704,-894]],[[35038,50449],[30,231],[-126,1033],[-301,529],[-20,615],[-94,437],[183,485],[127,625],[204,180]],[[74135,50490],[-135,496],[111,190],[-31,1314],[219,461],[79,393],[201,205],[179,519],[-83,442],[-56,896],[293,580],[-35,377],[-221,806],[62,407],[-72,436]],[[76350,57117],[-142,202],[-457,377],[-224,48],[-276,463]],[[75251,58207],[-429,-460],[-176,265]],[[71102,49994],[-78,217],[140,815],[-58,802],[-198,675],[64,1257],[128,412],[-179,478],[-271,3],[-521,321],[-123,281],[-144,925],[348,1347],[-449,491]],[[67646,48756],[22,665],[-83,449],[-34,642],[109,912],[-163,413],[136,304],[50,596],[211,863],[-17,594],[86,359],[-3,621],[73,818],[471,412],[421,531],[422,281],[391,641],[23,161]],[[3496,42688],[461,963],[49,731],[204,675],[362,770],[262,153],[171,542],[330,1364],[191,475],[-36,877],[50,660],[-76,651],[287,1592],[-5,539],[-78,699],[240,720],[396,165]],[[64570,49847],[-118,1527],[7,515],[118,1532],[-67,585],[144,360],[-37,698],[88,631],[266,177],[117,365],[-25,328],[95,730],[252,452]],[[74019,58615],[241,-203],[147,-312],[239,-88]],[[74019,58615],[-40,-375],[-169,-109],[-82,-499],[44,-479],[145,-308],[-31,-312],[149,-330],[-150,-1167],[-246,-461],[-257,-1388],[-316,-554],[14,-935],[101,-394],[221,-218],[95,-700]],[[82087,57833],[-636,-185],[-195,25],[-160,277],[-311,166],[-366,-77],[-432,101],[-174,-64],[-166,214],[-375,114],[-168,181],[-422,112],[-646,483]],[[76350,57117],[309,794],[219,205],[271,62],[80,-126],[313,-13],[226,375],[-20,312],[288,454]],[[82087,57833],[-178,431],[-17,284],[124,615],[-390,529]],[[54660,57056],[215,-287],[520,6],[108,84],[586,-362],[179,-331],[467,-498]],[[54660,57056],[-203,-565],[-244,-1005],[-191,-526],[148,-790]],[[69695,58554],[66,-536]],[[35041,54584],[-205,290],[-6,298],[149,708],[-26,156]],[[1858,44440],[106,432],[396,781],[69,331],[-166,463],[-339,-123],[-90,413],[43,349],[139,220],[355,1026],[208,210],[102,475],[-3,360],[329,836],[58,728],[112,110],[58,462],[-189,782],[117,471],[-145,362],[-119,-19],[65,390],[-97,1235],[43,370],[-139,-25]],[[85334,56554],[-118,314],[-338,428],[-145,507],[-71,967],[-117,204],[-425,1315],[-177,292]],[[83943,60581],[-6,14]],[[85097,60898],[400,-1520],[325,-653],[251,-957],[409,-579]],[[85068,60887],[29,11]],[[83937,60595],[861,268],[272,33]],[[53536,57851],[123,-890],[245,-311],[38,-227],[-195,-459],[37,-772],[-14,-1111],[244,-591]],[[85097,60898],[2521,939],[176,150]],[[79483,61335],[-33,10]],[[78036,59180],[116,105],[98,718],[253,555],[363,22],[291,560],[293,205]],[[81626,59692],[-189,122],[-371,24],[-338,-123],[-238,317],[-209,558],[-348,413],[-410,358]],[[84809,61980],[280,-1073]],[[79523,61361],[-73,-16]],[[65410,57747],[136,142],[140,1070],[-78,741],[83,347]],[[62526,49709],[-187,455],[-176,718],[-9,405],[-348,582],[-185,618],[223,641],[22,718],[-123,292],[74,810],[-18,788],[249,412],[153,78],[251,588],[-178,736],[-39,511],[-142,686],[-722,1047]],[[61371,59794],[-8,15]],[[56737,55668],[532,263],[407,-67],[286,229],[309,22],[852,-301],[209,460],[-4,337],[283,727],[187,126],[166,492],[117,31],[178,487],[-15,414],[214,252],[465,126],[242,384],[198,159]],[[83943,60581],[-417,-110],[-203,-253],[-358,-16],[-735,277],[-372,401],[-136,343],[-207,108],[-453,620]],[[81626,59692],[-35,665],[-107,459],[-251,399],[-171,736]],[[53629,50392],[-220,1008],[10,297],[-242,416],[-60,275],[31,1439],[-172,478],[-55,881],[261,773],[64,478],[65,1109],[-143,442],[-222,45],[-297,301],[-392,929]],[[52257,59263],[-228,-471],[9,-414],[114,-641],[-9,-881],[117,-389],[-275,-302],[-3,-628],[216,-879],[-202,-487],[76,-350],[10,-820],[116,-636],[204,-353],[456,-249],[329,-612],[41,-210],[280,-260],[125,-302]],[[79450,61345],[-258,78],[-498,347]],[[78694,61770],[-26,26]],[[6304,54264],[556,532],[24,472],[126,348],[243,-35],[113,351],[159,5],[230,484],[846,425],[366,26],[189,208],[343,147],[239,279]],[[65691,60047],[97,382],[-17,487]],[[81062,61951],[-463,601]],[[80599,62552],[-374,-477],[-89,-350],[-203,-219],[-410,-145]],[[10039,57779],[-226,-13],[-75,-260]],[[10039,57779],[74,-131],[323,-47],[575,-264],[331,198],[234,-36],[251,150],[283,353],[342,-5],[315,-325],[134,-472],[298,-107],[234,-274],[36,-296],[-105,-604],[248,-789],[165,-231],[-29,-414],[129,-329],[274,-331],[166,-423],[217,95],[253,-254],[55,-472],[471,-491],[45,-678],[122,-462],[334,-389],[145,-847],[-190,-854],[68,-289],[315,8],[96,360],[361,11],[150,-455],[126,-34],[390,-436],[276,-39],[534,-227],[808,-908],[342,-600],[125,-913],[96,-327],[229,-229],[343,-1146],[405,-684],[266,-301],[375,-746],[167,-173],[134,-868],[-106,-128],[-166,-951],[58,-757],[369,-991],[218,-227]],[[74019,58615],[-250,341],[-323,685],[-367,1403],[-162,735],[75,429]],[[72992,62208],[210,27],[509,-510],[238,-946],[151,-260],[382,-1285],[365,-546],[404,-481]],[[47609,52579],[-270,381],[-959,709],[-175,250],[-1145,118],[-613,103],[-410,173],[-563,356],[-436,411],[-234,-99],[-447,387],[-239,420],[-700,673],[-1373,1592],[-1442,1471]],[[35041,54584],[543,496],[28,116],[565,355],[-5,363],[-116,81],[190,354],[122,460],[559,671],[528,322],[7,335],[196,146],[945,1241]],[[53545,57850],[-385,391],[-316,1316],[-124,1126]],[[52257,59263],[117,259],[346,1161]],[[52245,59259],[-301,485],[-460,137],[-196,282],[24,498]],[[72713,62660],[279,-452]],[[72713,62660],[-306,-104],[-684,614]],[[71723,63170],[-196,-968],[-175,-103],[-225,-467],[-427,-678],[-212,-564],[-3,-517],[-86,-393],[-704,-926]],[[7568,56078],[-102,336],[61,712],[-54,1120],[-304,196],[-598,-229],[246,1114]],[[6817,59327],[-524,-415],[2,-129],[-432,-287],[-289,27],[-174,191],[-242,-89],[-190,-724],[-561,-554],[-513,-249],[-222,-233],[-562,-257],[-277,-41],[-57,-293],[-203,-288],[169,-437],[67,-421]],[[81062,61951],[188,547],[172,737],[117,158],[219,-25],[70,596],[-108,440]],[[83937,60595],[-73,345],[-326,568],[-70,272],[-395,535],[-658,1127],[-349,412],[-242,574],[-104,-24]],[[81720,64404],[-58,233]],[[81662,64637],[-109,-376],[-186,-287],[-338,-222],[-250,-804],[-180,-396]],[[10039,57779],[882,479],[150,517],[405,131],[187,492],[615,446],[382,148],[928,-1272],[263,90],[255,-69],[422,1002],[638,59],[333,-651],[232,-828],[544,-723],[187,231],[242,-292],[426,-201],[428,307],[420,660],[323,258],[651,-109],[-4,270],[292,-48],[219,472]],[[63350,63239],[337,-174],[184,-295],[201,-112],[228,-440],[293,-300],[235,-525],[863,-1346]],[[63350,63239],[433,-934],[330,-609],[234,-881],[194,-383],[21,-714],[221,-312],[121,-608],[506,-1051]],[[6817,59327],[99,370],[-27,385]],[[61371,59794],[326,370],[147,377],[268,188],[228,361],[254,638],[355,674],[139,623],[248,308]],[[63350,63239],[37,115]],[[63336,63333],[51,21]],[[54660,57056],[-35,546],[-139,226],[-34,536],[76,481],[-7,455],[-216,831],[30,485],[-108,259],[-9,373],[-233,320],[-4,279],[-177,438],[49,268]],[[9738,57506],[-250,92],[-368,358],[-113,369],[3,718],[-141,302],[-349,156],[-28,266],[255,849]],[[48941,53881],[252,883],[428,959],[-54,179],[-56,1328],[-182,500],[-165,866],[-2,352],[-211,419],[-207,613],[-72,424],[-3,645],[-123,342],[23,288],[-104,473],[0,464]],[[48465,62616],[172,-59],[220,-333],[165,-47],[231,-499],[489,96],[44,-133],[268,61],[688,-420],[431,-580],[139,-41]],[[71723,63170],[-347,829],[-161,-48],[-266,307],[-360,-479],[-199,-54],[-173,298],[-539,437]],[[69678,64460],[-117,-675],[191,-665],[46,-609],[-98,-323],[-16,-554],[210,-1208],[0,-570],[-216,-848],[17,-454]],[[6889,60082],[356,164],[202,-28],[171,178],[146,-103],[439,144],[276,425],[144,41],[124,-287]],[[69528,64658],[150,-198]],[[66518,63803],[168,202],[416,129],[270,184],[562,147],[208,-53],[686,50],[549,242],[151,-46]],[[74049,65583],[114,-626],[-37,-1083],[-160,-554],[17,-1539],[99,-371],[224,-447],[-26,-264],[294,-658],[509,-736],[158,-675],[10,-423]],[[72992,62208],[243,412],[51,466],[243,219],[168,476],[-58,621],[94,510],[4,465],[312,206]],[[48941,53881],[-419,890],[-178,193],[-282,538],[-519,-106],[-474,300],[-359,590],[-304,793],[-187,184],[-347,731],[-140,422],[-223,194],[-893,-1],[-534,461],[-199,94],[-231,609],[-583,426],[-114,260],[-282,290],[-146,386],[-356,416],[-1404,1077],[-885,446]],[[38603,59524],[89,135],[304,1207],[-97,615],[145,284],[281,154],[154,439],[-1,275],[404,441]],[[34951,56011],[-80,629],[51,424],[-193,634],[-241,1197],[-27,351],[-371,797],[-176,30],[-201,293],[-271,190],[-295,1080],[-511,-109],[-298,-197],[-165,-520],[-116,-6],[-322,379],[-472,-250],[-261,-273],[-554,994],[-122,398],[-16,483],[-205,405]],[[53853,62553],[184,116],[182,478],[42,325],[-94,278],[109,403],[-30,417]],[[61363,59809],[-564,1792],[-458,1104],[-192,611],[-551,887],[-280,659],[-250,232]],[[53853,62553],[238,42],[149,190],[420,-179],[144,79],[275,-228],[790,-136],[78,287],[727,-63],[824,809],[217,23],[321,332],[303,-42],[242,183],[88,781],[204,76],[195,387]],[[58932,65247],[136,-153]],[[78694,61770],[-173,270],[-327,142],[-283,523],[-214,30],[-994,808],[-249,529],[-334,292],[-299,792],[-722,1433],[-76,261]],[[80599,62552],[-271,426],[-211,67],[-424,497],[-13,357],[-178,393],[-370,397],[-226,-77],[-480,419],[-513,-43],[-306,386],[-436,176],[-175,243],[-327,108],[-627,-55],[-286,233],[-137,280],[-395,394],[-201,97]],[[19459,59148],[27,98],[565,196],[235,183],[262,-136],[295,59],[538,347],[442,531],[740,646],[421,208],[267,257],[438,-260],[339,-23],[289,-284],[828,-550],[379,-142],[357,-547],[606,-99],[485,282],[308,414],[355,183],[106,171],[161,898],[413,347],[370,132],[260,-65],[254,638],[166,191],[9,277],[308,266],[186,-305],[237,-121]],[[39882,63074],[-276,875]],[[75023,66850],[-51,73]],[[74049,65583],[178,128],[249,536],[496,676]],[[51858,64671],[398,394],[229,37],[395,-315],[406,-194],[294,0],[486,-148],[180,125]],[[30105,62940],[-169,928]],[[38603,59524],[-108,95],[-643,955],[-1040,1306],[-28,521],[-246,254],[-827,136],[-539,196],[-271,-47],[-741,389],[-166,237],[-702,531],[-170,351],[-131,49]],[[32991,64497],[-648,-329],[-240,243],[-176,-275],[-383,317],[-196,-112],[-747,550],[-414,-372],[-251,-651]],[[59544,67243],[-250,-548],[-236,-1171],[-126,-277]],[[59649,67261],[430,-782],[268,-231],[586,-1055],[173,-582],[1175,-813],[653,-335],[237,-224],[165,94]],[[59649,67261],[-105,-18]],[[70577,68563],[144,-304],[70,-557],[403,-633],[201,-421],[340,-464],[189,-384],[456,-1428],[132,-595],[-35,-416],[236,-701]],[[39606,63949],[-346,99],[-567,452],[-236,280],[-463,375],[-614,800]],[[37380,65955],[-89,35],[-1522,-319],[-143,-97],[-389,2],[-340,-226],[-147,419],[-752,-410],[-103,121],[-198,-398],[-312,151],[-394,-736]],[[8747,60616],[250,463],[258,300],[583,214],[242,192],[650,1038],[208,509],[259,128],[305,768],[176,140],[209,568]],[[74972,66923],[-254,-118],[-184,88],[-412,409],[-424,19],[-256,205],[-607,42],[-206,303],[-182,-37],[-142,184],[-224,-59],[-309,246],[-399,93],[-156,212],[-255,17],[-247,212]],[[70577,68563],[138,176]],[[70220,68814],[357,-251]],[[70220,68814],[70,-705],[-153,-913],[62,-363],[-244,-778],[-390,-1086],[-37,-311]],[[63387,63354],[227,171],[512,648],[468,270],[373,565],[284,65],[892,1258],[252,757],[393,553],[230,144],[316,-4],[517,-257],[433,195],[219,-118],[283,172],[108,218],[377,-96],[299,274],[69,260],[294,386],[287,-1]],[[39606,63949],[150,1538],[204,360],[87,1253]],[[6889,60082],[272,206],[197,444],[210,94],[-140,547],[338,509],[-123,455],[454,761],[107,410],[147,1086],[-16,526],[-133,223],[104,357]],[[19459,59148],[-326,-237],[-353,138],[132,1007],[-125,183],[-348,93],[-397,1676],[-446,-65],[-53,347],[132,526],[-29,851]],[[74972,66923],[104,321],[515,891],[168,417],[185,24],[234,264],[168,531],[512,987]],[[76868,70525],[-10,-167]],[[11887,64936],[-78,872],[-251,781]],[[82017,71745],[202,-594],[135,-1007],[104,-394],[239,-227],[625,-314],[316,-64],[388,-233],[198,-473],[-101,-284],[-70,-843],[39,-217],[203,-2788],[-160,-1248],[484,-148],[190,-931]],[[82017,71745],[-180,-868],[-162,-2133],[48,-1345],[-41,-1290],[-72,-782],[52,-690]],[[11558,66589],[-208,-180],[-391,-86],[-280,139],[-394,-198],[-121,565],[-335,-80],[-49,-287],[-296,274]],[[51835,64734],[-172,595],[-49,535],[-196,716],[-279,694],[-160,614],[-510,1147]],[[51205,60462],[184,405],[-86,491],[45,339],[150,85],[12,883],[-282,407],[-175,420],[-226,280],[-198,595],[-167,267],[-300,708],[-35,286],[-351,253],[-34,486],[250,1173],[-54,302],[98,541],[383,165],[50,487]],[[82151,72076],[-134,-331]],[[11611,67158],[-53,-569]],[[82151,72076],[-449,-106],[-241,183],[-834,49],[-178,80],[-395,-74],[-517,4],[-289,-248],[-116,-271],[-657,-555],[-213,111],[-462,-172],[-590,-494],[-175,-228],[-177,3]],[[14407,67974],[453,-366],[188,-17],[1398,-689],[118,-17],[424,-603],[413,-190],[1468,27]],[[11887,64936],[261,324],[639,1092],[405,833],[200,50],[38,373],[367,159],[156,-188],[189,357],[265,38]],[[47620,69859],[-121,-696],[78,-691],[-123,-246],[-34,-711],[180,-506],[17,-1700],[-52,-194],[106,-782],[-22,-1174],[-75,-363],[-59,-992],[310,-1089],[27,-1026],[-24,-816],[173,-1220],[307,-851],[253,-937],[190,-313],[31,-764],[159,-907]],[[39882,63074],[581,124],[995,720],[877,782],[206,584],[87,720],[166,361],[391,258],[309,26],[991,491],[244,402],[296,15],[288,482],[471,380],[373,148],[383,6],[635,522],[132,373],[313,391]],[[55500,70548],[217,-230],[143,-374],[283,-94],[413,-273],[390,-673],[260,-207],[210,-838],[490,-1086],[199,-62],[258,-632],[263,-219],[306,-613]],[[54246,64570],[53,182],[-39,622],[244,166],[524,117],[-59,375],[-167,74],[-48,420],[67,599],[-46,369],[184,183],[-105,158],[-121,654],[27,376],[127,210],[313,217],[19,330],[200,394],[-6,546],[87,-14]],[[59544,67243],[-185,488],[-191,753],[-1194,1190],[-55,298],[-653,725],[-346,27],[-504,202],[-245,-212],[-494,-8],[-177,-158]],[[18869,66119],[193,45],[622,1005],[201,506],[-87,447],[21,396],[-62,700]],[[14407,67974],[710,-1],[207,97],[393,-137],[933,-25],[857,-74],[312,-229],[109,77],[476,-153],[330,125],[642,939],[381,625]],[[73306,71790],[348,176],[243,-12],[461,556],[274,196],[430,164],[151,-138],[380,152],[340,525],[43,-370],[247,-459],[221,-1056],[132,-114],[201,-475],[91,-410]],[[70715,68739],[242,305],[211,561],[299,513],[385,217],[78,349],[759,506],[368,306],[225,313]],[[80829,74463],[193,-340],[983,-1404],[332,-571],[-186,-72]],[[80829,74463],[-263,-289],[-998,-386],[-448,-277],[-358,-446],[-333,-175],[-272,10],[-256,-347],[-244,-526],[-340,-202],[-201,-823],[-248,-477]],[[80790,74573],[39,-110]],[[71475,73103],[-34,-605],[-248,-306],[-148,-340],[-525,-652],[-157,-311],[49,-669],[-202,-277],[-129,-706],[-415,884],[-244,261],[-229,57],[-442,-132],[-7,688],[-362,737],[-208,88],[-525,821],[-83,393],[-381,520],[-308,-26],[-375,334]],[[48465,62616],[102,203],[2,492],[158,537],[0,568],[251,567],[197,1040],[265,842],[-187,892],[57,582],[-42,576],[-216,536],[173,427],[-118,484],[-15,572],[-221,565],[-60,642],[-119,522]],[[47620,69859],[230,260],[689,1733],[153,811]],[[29936,63868],[-464,1663],[10,1284],[-72,355],[-210,354],[2,549],[-183,554],[4,600],[-72,550],[2,860],[-204,908]],[[50469,69035],[-7,376],[-111,605],[-192,70],[-184,371],[-240,1665],[-179,886]],[[20744,71515],[-277,-819],[-249,-487],[-186,-541],[-275,-450]],[[49905,73250],[-183,-254],[-166,12]],[[59543,74065],[439,-650],[163,-421],[243,-985],[281,-544],[82,-909],[91,-499],[-23,-364],[113,-167],[-190,-552],[-35,-482],[-278,-631],[-638,-589],[-142,-11]],[[49556,73008],[-549,-8],[-256,295],[-59,-632]],[[63490,74440],[84,111]],[[59543,74065],[391,-131],[994,73],[466,111],[491,400],[202,-88],[597,35],[466,-217],[340,192]],[[63574,74551],[209,119],[192,-290],[369,-100],[280,-190],[290,-56],[595,196],[415,-6],[335,-107],[243,-255]],[[55500,70548],[-24,1162],[167,892],[60,891],[151,390],[255,319]],[[56109,74202],[9,8]],[[56118,74210],[1318,-142],[1124,-24],[652,100],[331,-79]],[[66502,73862],[-94,633],[-88,89],[-70,655]],[[54102,74260],[-231,-23],[-520,-291],[-282,-27],[-580,-314],[-369,0],[-837,-198],[-730,11],[-648,-168]],[[54102,74260],[616,-114],[261,-193],[204,155],[569,214],[199,221],[158,-341]],[[37380,65955],[598,739],[495,855],[1248,1924],[616,1045],[223,486],[-78,272],[168,187],[388,693],[48,318],[337,663],[240,91],[239,379],[305,73],[237,242]],[[56118,74210],[157,684],[-8,526]],[[48704,73736],[50,-434],[-343,272],[-271,-42],[-431,-457],[-178,-54],[-310,312],[-477,635],[-673,15],[-165,296],[-241,157],[-559,41],[-241,216],[-821,-220],[-405,-208],[-606,-87],[-401,-373],[-188,117]],[[78345,77961],[1570,-1558],[533,-1051],[342,-779]],[[78287,78019],[58,-58]],[[78287,78019],[-275,-660],[-396,-1513],[-544,-1107],[-175,-451],[-179,-959],[47,-491],[240,-1022],[-3,-490],[-132,-417],[-2,-384]],[[81318,78464],[-207,-468],[-270,-375],[-115,-719],[-11,-663],[75,-1666]],[[81256,78540],[62,-76]],[[81256,78540],[-761,164],[-500,-143],[-348,-534],[-246,-246],[-1056,180]],[[78287,78019],[-318,252],[-342,128],[-422,42],[-915,-152],[-412,69],[-275,-59],[-139,-174],[-1123,-700],[-644,-212]],[[81625,79098],[-307,-634]],[[81625,79098],[95,72]],[[28775,71551],[114,264],[-7,338],[286,536],[126,842],[172,517],[-8,759],[152,299]],[[29610,75106],[-169,-65],[-490,-952],[-472,-675],[-382,-396],[-459,-335],[-205,-24],[-1509,107],[-497,-686],[-239,-144],[-483,361],[-396,-208],[-916,-579],[-330,122],[-507,1078],[-394,288],[-253,-143]],[[32991,64497],[-211,200],[-541,842],[-171,745],[-44,575],[-347,344],[-158,974],[-407,489],[-112,669],[-32,1109],[166,630],[-257,1445],[-2,261],[-735,1629],[-394,790]],[[29746,75199],[-17,23]],[[29610,75106],[119,116]],[[81625,79098],[-463,210]],[[81162,79308],[94,-768]],[[29687,75305],[42,-83]],[[20744,71515],[-95,341],[-83,1150],[-199,408],[-76,637],[108,912]],[[63574,74551],[106,402],[197,242],[97,381],[601,431],[194,510],[242,384],[524,1185]],[[66253,75219],[-23,348],[-220,590],[-139,73],[-80,638],[-194,541],[31,519],[-93,158]],[[54102,74260],[-165,364],[-512,725],[-119,507],[-199,378],[-390,314],[-437,690]],[[73787,78923],[-32,-648],[35,-556],[-145,-658],[-418,-156],[46,-311],[-238,-254],[-194,-380],[-207,-753],[-190,-163],[-121,211],[-404,-341],[-270,-853],[-206,-851]],[[71443,73210],[-41,239],[-338,928],[-58,1032],[-342,1254],[-180,126],[-198,586],[2,656],[-96,249],[-335,455]],[[21906,72870],[138,1023],[73,1129],[328,446]],[[45243,77211],[-408,-3],[-286,-145],[-187,-429],[-352,-505],[-257,-560],[-225,-760],[-279,-311],[-322,-203],[-268,-306],[-215,-67]],[[81162,79308],[-630,342],[-236,321],[-568,211],[-340,-57],[-517,-279],[-296,-233],[-523,-182],[-994,26],[-479,406],[-442,64],[-440,-446],[-265,-83],[-145,-229],[-790,-41],[-388,-221],[-322,16]],[[48704,73736],[100,699],[133,203],[63,671],[144,930],[152,325],[-89,1312]],[[59543,74065],[110,646],[-23,755],[-249,642],[-256,455],[-104,506],[-23,493],[77,191],[-166,265],[23,827]],[[56267,75420],[440,151],[23,252],[367,634],[368,333],[204,739],[257,389],[438,378],[26,130],[542,419]],[[49905,73250],[-1,874],[-186,491],[622,1025],[327,381],[169,739],[-25,581],[331,1477]],[[31651,77591],[-159,-132],[-506,5],[-283,-572],[-402,-566],[-305,-812],[-250,-315]],[[51151,78858],[-9,-40]],[[51151,78858],[-9,-40]],[[51153,78869],[-2,-11]],[[52280,77238],[-513,802],[-364,338],[-240,502]],[[51163,78880],[-10,-11]],[[51163,78880],[-7,3]],[[51156,78883],[-3,-14]],[[69857,78735],[-145,453],[10,484],[122,690],[232,606],[71,-360],[260,-506],[598,-475],[320,-169],[656,-99],[628,66],[254,-297],[286,-118],[638,-87]],[[42444,73922],[-521,193],[-161,265],[-439,21],[-533,177],[-300,-65],[-303,112],[-201,379],[-477,279],[-909,439],[-373,415],[-205,355],[-289,-75],[-487,372],[-385,190],[-1129,437],[-476,259],[-398,479],[-293,162],[-214,312],[-525,-137],[-934,39],[-1077,-747],[-164,-192]],[[49196,77894],[-207,229],[-131,1086],[-153,588]],[[48704,73736],[-69,504],[27,1042],[-54,294],[-486,607],[5,429],[169,716],[147,226],[47,461],[148,616],[-7,496],[74,670]],[[48705,79797],[-324,48],[-507,-300],[-482,-107],[-85,222],[-370,34],[-458,-526],[-304,-719],[-107,-439],[-365,-472],[-65,-203],[-372,-135]],[[51156,78883],[-229,633],[-815,1147]],[[50112,80663],[-146,-416],[-193,-822],[-130,-281],[-118,-986],[-285,-135],[-39,-171]],[[58932,78845],[227,748],[526,564],[171,431],[260,347],[408,95],[319,492]],[[50112,80663],[-201,481],[-229,207]],[[49682,81351],[-168,-616],[-319,-6],[-323,-414],[-167,-518]],[[56932,82183],[449,-281],[455,-34],[271,79],[541,-14],[940,-201],[152,-86],[655,53],[448,-177]],[[56932,82183],[-17,-525],[60,-333],[197,-362],[66,-587],[-8,-995],[-326,-713],[-145,-856],[-366,-279],[-103,-475],[21,-380],[-90,-491],[46,-767]],[[48533,81820],[-97,-654],[90,-579],[113,-259],[66,-531]],[[48533,81820],[233,-3],[575,-208],[341,-258]],[[64181,83492],[503,-395],[332,-433],[598,-616],[743,-481],[354,-59],[568,105],[283,-339],[429,-370],[227,-591],[20,-436],[116,-206],[446,-270],[275,-501],[578,-229],[204,64]],[[65535,78086],[-155,265],[-130,1069],[-45,80],[-504,2257],[-75,535],[-227,755],[-218,445]],[[63887,83555],[294,-63]],[[63703,83541],[184,14]],[[63490,74440],[-342,1601],[63,773],[-118,688],[29,988],[57,386],[-84,969],[52,1179],[290,1214],[-119,679],[66,300],[319,324]],[[63703,83541],[-100,44],[-465,-374],[-419,5],[-386,-510],[-226,-457],[-397,-363],[9,-99]],[[63887,83555],[0,258],[-380,-14]],[[63507,83799],[-420,-353],[-617,207],[-321,-416],[-432,-305],[-232,-718],[-400,-191],[-242,-501]],[[52256,83488],[-275,-880],[-187,-877],[-150,-179],[-361,-694],[-68,-1835],[-52,-143]],[[52256,83488],[-356,-288],[-130,-408],[-749,-523],[-162,-284],[-148,-602],[-225,45],[-184,-261],[-190,-504]],[[56932,82183],[-892,1051],[-531,532]],[[48970,84031],[-292,-226],[35,-499],[-119,-564],[-61,-922]],[[55509,83766],[446,-125],[353,-2],[6,-311],[169,-53],[317,-348],[1076,109],[647,-5],[156,142],[356,28],[316,-238],[560,-28],[149,85],[297,613],[371,453],[186,98],[439,738],[219,121],[180,-133],[214,55],[746,-521],[322,45],[473,-690]],[[52860,84723],[-208,-2299],[-9,-826],[112,-379],[-15,-418],[72,-648],[-233,-791],[38,-405],[-67,-1032],[-235,-316],[-35,-371]],[[52860,84723],[-270,-134],[-334,-1101]],[[47322,84375],[250,-1067],[178,-390],[-6,-309],[141,-500],[648,-289]],[[47322,84375],[664,54],[373,-276],[354,164],[271,-368]],[[55509,83766],[-870,219],[-763,-145],[-459,671],[-531,403]],[[52886,84914],[107,-311],[217,-1055],[269,-817],[206,-1012],[-15,-399],[246,-963],[-3,-614],[258,-1202],[83,-642],[-13,-394],[580,-949],[255,-150],[575,-136],[220,-1103],[247,-957]],[[52860,84723],[26,191]],[[51152,84911],[-25,-181],[-502,-1191],[-187,-745],[-264,-579],[-251,-321],[-241,-543]],[[51152,84911],[-559,-360],[-415,-191],[-650,73],[-558,-402]],[[52925,85237],[-39,-323]],[[81720,79170],[36,602],[-93,320],[406,839],[-72,973],[407,709],[232,687],[247,278],[135,741],[71,787],[-38,753],[115,724],[-163,415],[-234,105],[-88,572],[-339,282]],[[81684,88321],[658,-364]],[[81493,85298],[60,-466],[-75,-534],[-290,-490],[119,-162],[-100,-375],[-51,-1086],[-230,-755],[236,-2122]],[[33575,84568],[364,-190],[178,-350],[167,-99],[128,-391],[98,-953],[-46,-286],[408,-319],[36,-166]],[[52925,85237],[-474,303],[-108,-44],[-474,299]],[[51869,85795],[-515,-234],[-135,-233],[-67,-417]],[[81101,88632],[583,-311]],[[46065,86268],[57,-294],[229,-422],[501,-423],[470,-754]],[[51869,85795],[-616,100],[-470,-201],[-318,-467],[-707,-4],[-119,162],[-808,-54],[-278,-199],[-187,118],[-468,-90],[-394,219],[-179,343],[-289,-163],[-449,170],[-284,381],[-238,158]],[[42047,86970],[-453,-453],[-193,-394],[-438,70],[-162,-188],[-158,-551],[-108,-132],[-82,-455],[-203,-337],[-643,-420],[-372,-602],[-184,39],[-377,-409],[-408,-51],[-518,-378],[-155,122],[-256,-126],[-400,254],[-259,-159],[-270,-386],[-522,-84],[-132,-153],[-35,-450],[-209,-228],[-142,138],[-216,-84],[-244,261]],[[34908,81814],[-36,39],[-727,-525],[-910,-1548],[-271,-735],[-221,-31],[-172,-274],[-482,-501],[-438,-648]],[[46065,86268],[-207,282],[-282,18],[-280,217],[-290,-474],[-640,72],[-492,-4],[-544,337],[-509,-122],[-429,154],[-345,222]],[[86582,92040],[-154,-742],[-692,-1629],[-355,-1089],[-579,-1332],[-322,-849],[-372,-1255],[-121,-782],[-626,-1492],[-430,-534],[-120,-391],[-217,-1158],[-157,-492],[-351,-426],[-366,-699]],[[82342,87957],[372,604],[154,483],[502,824],[319,70],[609,477],[342,179],[160,-71],[1382,1141],[400,376]],[[42047,86970],[-40,910],[-276,915]],[[46065,86268],[-301,422],[-355,256],[-407,836],[-141,467],[-275,1516],[-333,908],[-233,1116],[-27,847],[-207,849]],[[86582,92040],[55,1320],[-74,138],[-29,969],[75,566],[-79,642]],[[47711,98738],[-272,-553],[70,-974],[-26,-2432],[-147,-1065],[377,-961],[160,-165],[211,-535],[693,-1358],[600,-982],[87,-252],[749,-838],[1258,-255],[61,-287],[446,-249],[456,-96],[358,-474],[472,-860],[-157,-92],[-182,-1073]],[[47724,98742],[365,69],[107,319],[-3,681],[-68,118]],[[48137,99946],[-41,53]],[[1858,44440],[-220,-256],[-251,-539],[-224,-684]],[[79994,39919],[-250,153],[-346,-63],[-499,-287],[-557,451],[-172,338],[-441,180],[-75,355],[-452,416],[-357,214],[-379,370],[-667,279]],[[75799,42325],[73,867],[139,491],[-2,802],[314,848],[-198,415],[238,849],[3,318]],[[75799,42325],[-129,19]],[[74335,36159],[-214,64],[-142,347],[-531,1997],[-64,1103]],[[73384,39670],[-458,-197],[-414,-31],[-1086,-669]],[[73384,39670],[-125,800],[219,1098]],[[20691,6062],[-242,-839]],[[20691,6062],[806,1330],[159,92],[327,-221],[179,114],[207,440],[106,572],[104,36],[353,-294],[296,-452],[336,-267]],[[73427,39695],[968,-370],[480,-243]],[[73427,39695],[-43,-25]],[[8537,4064],[122,-125],[-19,-331],[-184,-488],[76,-399],[233,-475],[-204,-785],[76,-348],[-278,-1113]],[[16034,8488],[622,-63],[519,-431],[172,-384],[471,-694],[0,-410]],[[17818,6506],[305,154],[249,1050],[355,343],[245,91],[34,712],[426,1031],[297,177],[376,441],[65,517]],[[17818,6506],[-57,-191],[237,-261],[301,-794],[315,53],[293,1160],[313,-63],[174,411],[422,300],[-25,427],[419,-115],[266,-311],[-12,-734],[227,-326]],[[38596,32397],[160,365],[-606,481]],[[38150,33243],[-351,-1100],[-3,-368],[-327,-503],[82,-554],[-240,-557],[-273,-1441],[-164,-138],[-267,-543],[-425,-603],[-498,-476],[-604,-140],[-315,-273],[-252,-88],[-473,-934],[-105,-398],[-142,-56],[-70,-325],[-266,56],[-106,283],[-277,-162],[-88,-336],[-241,-457],[-251,46],[-81,-395]],[[38150,33243],[125,410],[-43,335],[202,473],[300,456],[297,915],[814,254],[229,7],[354,178],[591,131],[447,-107],[646,44],[446,-92],[316,78],[270,301],[205,-6],[496,356],[560,1089],[268,782],[605,645],[516,694],[269,495],[591,56],[512,239]],[[35038,39386],[147,252],[-18,584],[109,522],[60,813],[-39,839],[-149,483],[-118,1105],[-96,200]],[[34934,44184],[-180,130]],[[37293,42969],[-741,-39],[-135,174],[-605,53],[-320,221],[-558,806]],[[65652,31605],[-1,142],[312,369],[138,866],[-7,507],[83,1244],[177,913],[96,243]],[[66450,35889],[120,474]],[[68397,41864],[62,-423],[-149,-1285],[-540,-316],[-518,-1146],[-157,-682],[-40,-607]],[[67055,37405],[-12,-150]],[[67055,37405],[531,252],[712,426],[374,312],[611,155],[308,9],[333,180],[653,144],[849,-110]],[[66239,36346],[64,287]],[[66136,35733],[314,156]],[[1858,44440],[16,-600],[-223,-962],[27,-88]],[[1163,42961],[90,-655]],[[6530,8317],[-175,504],[-81,666],[-75,1475],[-4,787],[-66,381],[38,394]],[[6163,13010],[704,426],[803,-211],[355,77],[464,343],[92,371],[260,-74],[168,99]],[[7984,6668],[-103,343],[-259,-326]],[[6715,7853],[-185,464]],[[6452,8283],[78,34]],[[10048,91494],[7,6]],[[24371,15277],[27,-215],[-179,-231],[0,-444],[345,-476],[13,-299],[388,-701],[422,-522],[182,-91],[267,112],[95,-202]],[[20744,71515],[34,239],[692,879],[350,33],[86,204]],[[17646,63667],[229,92],[135,488],[452,1030],[164,231],[243,611]],[[30859,19369],[512,-126],[598,-320],[138,-377],[305,-116],[259,74]],[[40818,9089],[436,820]],[[48125,99929],[-225,-832],[-176,-353]],[[52720,60683],[98,482],[-82,595],[-210,623],[1,355],[-196,590],[-297,392],[-122,357],[-77,657]],[[54660,57056],[-356,-21],[-759,815]],[[49366,52021],[702,-622],[261,-390],[870,76]],[[50197,17890],[59,14],[-36,911],[245,1076],[-62,410],[167,102],[319,741]],[[63169,30292],[35,431],[165,705],[-52,750]],[[63317,32178],[289,213],[41,275],[460,492],[-59,422]],[[68898,27978],[499,69]],[[68704,36679],[-474,55]],[[73282,71809],[-496,320],[-76,351],[-294,182],[-275,299],[-215,62],[-325,-107],[-126,187]],[[71475,73103],[-32,107]],[[74963,66956],[-178,247],[-36,454],[-238,367],[-189,706],[84,423],[-258,249],[-41,379],[-356,915],[-343,527],[-102,567]],[[61719,81787],[-160,6],[-411,-349],[-305,78]],[[86530,95675],[-57,376],[-305,805],[19,314]],[[81684,88321],[-205,-804],[47,-237],[-147,-369],[26,-773],[88,-840]],[[87337,50303],[-314,20],[-751,683],[-260,-230],[-208,29]],[[84878,50715],[-334,-255],[-313,213],[-298,-226]],[[80677,33400],[421,-216]],[[85536,46574],[-11,300],[-323,830],[-167,80],[-126,-163]],[[87693,41820],[-309,1012],[12,530],[-86,205]],[[83211,31899],[221,225],[-66,367],[443,895],[-13,644]],[[84909,47621],[-537,-59],[-404,72],[-521,-167],[-79,332],[-157,145],[-168,394],[-243,154],[-301,789]],[[91471,33680],[-287,-636],[-42,-488],[58,-437],[-85,-248],[-346,-44],[-353,176],[-173,379],[-439,-24],[-241,-336],[-160,-505],[-85,-556],[-336,-159],[-438,-469],[-245,302],[29,250],[-375,-72]],[[94001,27947],[-201,-389],[-289,-347],[-112,-562],[67,-418],[-128,-401]],[[98457,9838],[20,129],[-285,532],[-133,585],[18,287],[-146,440],[-175,213],[-252,1300]],[[50988,34311],[182,-1103],[26,-1090],[-214,-399],[-168,-934],[-110,-75],[-95,-408]]]} \ No newline at end of file diff --git a/frontend/public/roads-topo.json b/frontend/public/roads-topo.json index c46c3d6c..87eeff74 100644 --- a/frontend/public/roads-topo.json +++ b/frontend/public/roads-topo.json @@ -1 +1 @@ -{"type":"Topology","bbox":[20.626504711788698,15.840076312439805,954.4867259419966,604.5536487118817],"transform":{"scale":[0.009338695599258071,0.005887194595940378],"translate":[20.626504711788698,15.840076312439805]},"objects":{"overlay":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2],"properties":{"scalerank":8}},{"type":"MultiLineString","arcs":[[3],[4]],"properties":{"scalerank":6}},{"type":"LineString","arcs":[5],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7],"properties":{"scalerank":7}},{"type":"LineString","arcs":[8],"properties":{"scalerank":3}},{"type":"LineString","arcs":[9],"properties":{"scalerank":6}},{"type":"MultiLineString","arcs":[[10],[11]],"properties":{"scalerank":8}},{"type":"LineString","arcs":[12],"properties":{"scalerank":8}},{"type":"LineString","arcs":[13],"properties":{"scalerank":6}},{"type":"LineString","arcs":[14],"properties":{"scalerank":6}},{"type":"LineString","arcs":[15],"properties":{"scalerank":4}},{"type":"LineString","arcs":[16],"properties":{"scalerank":4}},{"type":"LineString","arcs":[17],"properties":{"scalerank":7}},{"type":"LineString","arcs":[18],"properties":{"scalerank":7}},{"type":"LineString","arcs":[19],"properties":{"scalerank":3}},{"type":"LineString","arcs":[20],"properties":{"scalerank":8}},{"type":"LineString","arcs":[21],"properties":{"scalerank":6}},{"type":"LineString","arcs":[22],"properties":{"scalerank":5}},{"type":"LineString","arcs":[23],"properties":{"scalerank":3}},{"type":"LineString","arcs":[24],"properties":{"scalerank":3}},{"type":"LineString","arcs":[25],"properties":{"scalerank":3}},{"type":"LineString","arcs":[26],"properties":{"scalerank":7}},{"type":"LineString","arcs":[27],"properties":{"scalerank":6}},{"type":"LineString","arcs":[28],"properties":{"scalerank":8}},{"type":"LineString","arcs":[29],"properties":{"scalerank":7}},{"type":"LineString","arcs":[30],"properties":{"scalerank":7}},{"type":"LineString","arcs":[31],"properties":{"scalerank":7}},{"type":"LineString","arcs":[32],"properties":{"scalerank":8}},{"type":"LineString","arcs":[33],"properties":{"scalerank":6}},{"type":"LineString","arcs":[34],"properties":{"scalerank":7}},{"type":"LineString","arcs":[35],"properties":{"scalerank":5}},{"type":"LineString","arcs":[36],"properties":{"scalerank":5}},{"type":"LineString","arcs":[37],"properties":{"scalerank":7}},{"type":"LineString","arcs":[38],"properties":{"scalerank":4}},{"type":"LineString","arcs":[39],"properties":{"scalerank":4}},{"type":"LineString","arcs":[40],"properties":{"scalerank":3}},{"type":"LineString","arcs":[41],"properties":{"scalerank":7}},{"type":"LineString","arcs":[42],"properties":{"scalerank":5}},{"type":"LineString","arcs":[43],"properties":{"scalerank":3}},{"type":"LineString","arcs":[44],"properties":{"scalerank":3}},{"type":"LineString","arcs":[45],"properties":{"scalerank":6}},{"type":"LineString","arcs":[46],"properties":{"scalerank":7}},{"type":"LineString","arcs":[47],"properties":{"scalerank":3}},{"type":"LineString","arcs":[48],"properties":{"scalerank":4}},{"type":"LineString","arcs":[49],"properties":{"scalerank":3}},{"type":"LineString","arcs":[50],"properties":{"scalerank":5}},{"type":"LineString","arcs":[51],"properties":{"scalerank":3}},{"type":"LineString","arcs":[52],"properties":{"scalerank":5}},{"type":"LineString","arcs":[53],"properties":{"scalerank":5}},{"type":"LineString","arcs":[54],"properties":{"scalerank":7}},{"type":"LineString","arcs":[55],"properties":{"scalerank":3}},{"type":"LineString","arcs":[56],"properties":{"scalerank":4}},{"type":"LineString","arcs":[57],"properties":{"scalerank":6}},{"type":"LineString","arcs":[58],"properties":{"scalerank":5}},{"type":"LineString","arcs":[59],"properties":{"scalerank":5}},{"type":"LineString","arcs":[60],"properties":{"scalerank":7}},{"type":"LineString","arcs":[61],"properties":{"scalerank":7}},{"type":"LineString","arcs":[62],"properties":{"scalerank":6}},{"type":"LineString","arcs":[63],"properties":{"scalerank":8}},{"type":"LineString","arcs":[64],"properties":{"scalerank":4}},{"type":"LineString","arcs":[65],"properties":{"scalerank":5}},{"type":"LineString","arcs":[66],"properties":{"scalerank":6}},{"type":"LineString","arcs":[67],"properties":{"scalerank":3}},{"type":"LineString","arcs":[68],"properties":{"scalerank":3}},{"type":"LineString","arcs":[69],"properties":{"scalerank":3}},{"type":"LineString","arcs":[70],"properties":{"scalerank":4}},{"type":"LineString","arcs":[71],"properties":{"scalerank":6}},{"type":"LineString","arcs":[72],"properties":{"scalerank":7}},{"type":"LineString","arcs":[73],"properties":{"scalerank":3}},{"type":"LineString","arcs":[74],"properties":{"scalerank":3}},{"type":"LineString","arcs":[75],"properties":{"scalerank":3}},{"type":"LineString","arcs":[76],"properties":{"scalerank":6}},{"type":"LineString","arcs":[77],"properties":{"scalerank":4}},{"type":"LineString","arcs":[78],"properties":{"scalerank":7}},{"type":"LineString","arcs":[79],"properties":{"scalerank":6}},{"type":"LineString","arcs":[80],"properties":{"scalerank":6}},{"type":"LineString","arcs":[81],"properties":{"scalerank":6}},{"type":"LineString","arcs":[82],"properties":{"scalerank":4}},{"type":"LineString","arcs":[83],"properties":{"scalerank":5}},{"type":"LineString","arcs":[84],"properties":{"scalerank":5}},{"type":"LineString","arcs":[85],"properties":{"scalerank":8}},{"type":"LineString","arcs":[86],"properties":{"scalerank":8}},{"type":"LineString","arcs":[87],"properties":{"scalerank":3}},{"type":"LineString","arcs":[88],"properties":{"scalerank":3}},{"type":"LineString","arcs":[89],"properties":{"scalerank":7}},{"type":"LineString","arcs":[90],"properties":{"scalerank":8}},{"type":"LineString","arcs":[91],"properties":{"scalerank":6}},{"type":"LineString","arcs":[92],"properties":{"scalerank":6}},{"type":"LineString","arcs":[93],"properties":{"scalerank":7}},{"type":"LineString","arcs":[94],"properties":{"scalerank":6}},{"type":"LineString","arcs":[95],"properties":{"scalerank":6}},{"type":"LineString","arcs":[96],"properties":{"scalerank":4}},{"type":"LineString","arcs":[97],"properties":{"scalerank":7}},{"type":"LineString","arcs":[98],"properties":{"scalerank":7}},{"type":"LineString","arcs":[99],"properties":{"scalerank":6}},{"type":"LineString","arcs":[100],"properties":{"scalerank":6}},{"type":"LineString","arcs":[101],"properties":{"scalerank":3}},{"type":"LineString","arcs":[102],"properties":{"scalerank":7}},{"type":"LineString","arcs":[103],"properties":{"scalerank":8}},{"type":"LineString","arcs":[104],"properties":{"scalerank":7}},{"type":"LineString","arcs":[105],"properties":{"scalerank":4}},{"type":"LineString","arcs":[106],"properties":{"scalerank":8}},{"type":"LineString","arcs":[107],"properties":{"scalerank":7}},{"type":"LineString","arcs":[108],"properties":{"scalerank":6}},{"type":"LineString","arcs":[109],"properties":{"scalerank":8}},{"type":"LineString","arcs":[110],"properties":{"scalerank":6}},{"type":"MultiLineString","arcs":[[111],[112]],"properties":{"scalerank":7}},{"type":"LineString","arcs":[113],"properties":{"scalerank":3}},{"type":"LineString","arcs":[114],"properties":{"scalerank":8}},{"type":"LineString","arcs":[115],"properties":{"scalerank":6}},{"type":"LineString","arcs":[116],"properties":{"scalerank":3}},{"type":"LineString","arcs":[117],"properties":{"scalerank":6}},{"type":"LineString","arcs":[118],"properties":{"scalerank":8}},{"type":"LineString","arcs":[119],"properties":{"scalerank":7}},{"type":"LineString","arcs":[120],"properties":{"scalerank":3}},{"type":"LineString","arcs":[121],"properties":{"scalerank":8}},{"type":"LineString","arcs":[122],"properties":{"scalerank":7}},{"type":"LineString","arcs":[123],"properties":{"scalerank":8}},{"type":"LineString","arcs":[124],"properties":{"scalerank":8}},{"type":"LineString","arcs":[125],"properties":{"scalerank":3}},{"type":"LineString","arcs":[126],"properties":{"scalerank":3}},{"type":"LineString","arcs":[127],"properties":{"scalerank":3}},{"type":"LineString","arcs":[128],"properties":{"scalerank":6}},{"type":"LineString","arcs":[129],"properties":{"scalerank":8}},{"type":"LineString","arcs":[130],"properties":{"scalerank":8}},{"type":"LineString","arcs":[131],"properties":{"scalerank":6}},{"type":"LineString","arcs":[132],"properties":{"scalerank":6}},{"type":"LineString","arcs":[133],"properties":{"scalerank":7}},{"type":"LineString","arcs":[134],"properties":{"scalerank":7}},{"type":"LineString","arcs":[135],"properties":{"scalerank":6}},{"type":"LineString","arcs":[136],"properties":{"scalerank":6}},{"type":"LineString","arcs":[137],"properties":{"scalerank":5}},{"type":"LineString","arcs":[138],"properties":{"scalerank":7}},{"type":"LineString","arcs":[139],"properties":{"scalerank":4}},{"type":"LineString","arcs":[140],"properties":{"scalerank":7}},{"type":"LineString","arcs":[141],"properties":{"scalerank":7}},{"type":"LineString","arcs":[142],"properties":{"scalerank":6}},{"type":"LineString","arcs":[143],"properties":{"scalerank":7}},{"type":"LineString","arcs":[144],"properties":{"scalerank":7}},{"type":"LineString","arcs":[145],"properties":{"scalerank":3}},{"type":"LineString","arcs":[146],"properties":{"scalerank":6}},{"type":"LineString","arcs":[147],"properties":{"scalerank":8}},{"type":"LineString","arcs":[148],"properties":{"scalerank":7}},{"type":"LineString","arcs":[149],"properties":{"scalerank":3}},{"type":"LineString","arcs":[150],"properties":{"scalerank":3}},{"type":"LineString","arcs":[151],"properties":{"scalerank":3}},{"type":"LineString","arcs":[152],"properties":{"scalerank":3}},{"type":"LineString","arcs":[153],"properties":{"scalerank":8}},{"type":"LineString","arcs":[154],"properties":{"scalerank":4}},{"type":"LineString","arcs":[155],"properties":{"scalerank":3}},{"type":"LineString","arcs":[156],"properties":{"scalerank":3}},{"type":"LineString","arcs":[157],"properties":{"scalerank":7}},{"type":"LineString","arcs":[158],"properties":{"scalerank":3}},{"type":"LineString","arcs":[159],"properties":{"scalerank":3}},{"type":"LineString","arcs":[160],"properties":{"scalerank":3}},{"type":"LineString","arcs":[161],"properties":{"scalerank":7}},{"type":"LineString","arcs":[162],"properties":{"scalerank":8}},{"type":"LineString","arcs":[163],"properties":{"scalerank":3}},{"type":"LineString","arcs":[164],"properties":{"scalerank":7}},{"type":"LineString","arcs":[165],"properties":{"scalerank":3}},{"type":"LineString","arcs":[166],"properties":{"scalerank":3}},{"type":"LineString","arcs":[167],"properties":{"scalerank":5}},{"type":"LineString","arcs":[168],"properties":{"scalerank":6}},{"type":"LineString","arcs":[169],"properties":{"scalerank":3}},{"type":"LineString","arcs":[170],"properties":{"scalerank":5}},{"type":"LineString","arcs":[171],"properties":{"scalerank":5}},{"type":"LineString","arcs":[172],"properties":{"scalerank":4}},{"type":"LineString","arcs":[173],"properties":{"scalerank":6}},{"type":"LineString","arcs":[174],"properties":{"scalerank":6}},{"type":"LineString","arcs":[175],"properties":{"scalerank":5}},{"type":"LineString","arcs":[176],"properties":{"scalerank":3}},{"type":"LineString","arcs":[177],"properties":{"scalerank":5}},{"type":"LineString","arcs":[178],"properties":{"scalerank":5}},{"type":"LineString","arcs":[179],"properties":{"scalerank":8}},{"type":"LineString","arcs":[180],"properties":{"scalerank":3}},{"type":"LineString","arcs":[181],"properties":{"scalerank":3}},{"type":"LineString","arcs":[182],"properties":{"scalerank":8}},{"type":"LineString","arcs":[183],"properties":{"scalerank":6}},{"type":"LineString","arcs":[184],"properties":{"scalerank":6}},{"type":"LineString","arcs":[185],"properties":{"scalerank":6}},{"type":"LineString","arcs":[186],"properties":{"scalerank":3}},{"type":"LineString","arcs":[187],"properties":{"scalerank":7}},{"type":"LineString","arcs":[188],"properties":{"scalerank":3}},{"type":"LineString","arcs":[189],"properties":{"scalerank":7}},{"type":"LineString","arcs":[190],"properties":{"scalerank":3}},{"type":"LineString","arcs":[191],"properties":{"scalerank":5}},{"type":"LineString","arcs":[192],"properties":{"scalerank":8}},{"type":"LineString","arcs":[193],"properties":{"scalerank":5}},{"type":"LineString","arcs":[194],"properties":{"scalerank":3}},{"type":"LineString","arcs":[195],"properties":{"scalerank":8}},{"type":"LineString","arcs":[196],"properties":{"scalerank":5}},{"type":"LineString","arcs":[197],"properties":{"scalerank":5}},{"type":"LineString","arcs":[198],"properties":{"scalerank":8}},{"type":"LineString","arcs":[199],"properties":{"scalerank":5}},{"type":"LineString","arcs":[200],"properties":{"scalerank":8}},{"type":"LineString","arcs":[201],"properties":{"scalerank":8}},{"type":"LineString","arcs":[202],"properties":{"scalerank":8}},{"type":"LineString","arcs":[203],"properties":{"scalerank":3}},{"type":"LineString","arcs":[204],"properties":{"scalerank":3}},{"type":"LineString","arcs":[205],"properties":{"scalerank":6}},{"type":"LineString","arcs":[206],"properties":{"scalerank":4}},{"type":"LineString","arcs":[207],"properties":{"scalerank":8}},{"type":"LineString","arcs":[208],"properties":{"scalerank":4}},{"type":"LineString","arcs":[209],"properties":{"scalerank":7}},{"type":"LineString","arcs":[210],"properties":{"scalerank":8}},{"type":"LineString","arcs":[211],"properties":{"scalerank":6}},{"type":"LineString","arcs":[212],"properties":{"scalerank":7}},{"type":"LineString","arcs":[213],"properties":{"scalerank":7}},{"type":"LineString","arcs":[214],"properties":{"scalerank":6}},{"type":"LineString","arcs":[215],"properties":{"scalerank":6}},{"type":"LineString","arcs":[216],"properties":{"scalerank":6}},{"type":"LineString","arcs":[217],"properties":{"scalerank":7}},{"type":"LineString","arcs":[218],"properties":{"scalerank":5}},{"type":"MultiLineString","arcs":[[219],[220]],"properties":{"scalerank":5}},{"type":"LineString","arcs":[221],"properties":{"scalerank":3}},{"type":"LineString","arcs":[222],"properties":{"scalerank":8}},{"type":"LineString","arcs":[223],"properties":{"scalerank":3}},{"type":"LineString","arcs":[224],"properties":{"scalerank":5}},{"type":"LineString","arcs":[225,226],"properties":{"scalerank":7}},{"type":"LineString","arcs":[227],"properties":{"scalerank":3}},{"type":"LineString","arcs":[228],"properties":{"scalerank":4}},{"type":"LineString","arcs":[229],"properties":{"scalerank":6}},{"type":"LineString","arcs":[230],"properties":{"scalerank":3}},{"type":"LineString","arcs":[231],"properties":{"scalerank":7}},{"type":"LineString","arcs":[232],"properties":{"scalerank":3}},{"type":"LineString","arcs":[233],"properties":{"scalerank":8}},{"type":"LineString","arcs":[234],"properties":{"scalerank":8}},{"type":"LineString","arcs":[235],"properties":{"scalerank":8}},{"type":"LineString","arcs":[236],"properties":{"scalerank":8}},{"type":"LineString","arcs":[237],"properties":{"scalerank":4}},{"type":"LineString","arcs":[238],"properties":{"scalerank":3}},{"type":"LineString","arcs":[239],"properties":{"scalerank":3}},{"type":"LineString","arcs":[240],"properties":{"scalerank":3}},{"type":"LineString","arcs":[241],"properties":{"scalerank":7}},{"type":"LineString","arcs":[242],"properties":{"scalerank":6}},{"type":"LineString","arcs":[243],"properties":{"scalerank":6}},{"type":"LineString","arcs":[244,245],"properties":{"scalerank":6}},{"type":"LineString","arcs":[246],"properties":{"scalerank":8}},{"type":"LineString","arcs":[247],"properties":{"scalerank":8}},{"type":"LineString","arcs":[248],"properties":{"scalerank":7}},{"type":"LineString","arcs":[249],"properties":{"scalerank":5}},{"type":"LineString","arcs":[250],"properties":{"scalerank":3}},{"type":"LineString","arcs":[251],"properties":{"scalerank":6}},{"type":"LineString","arcs":[252],"properties":{"scalerank":6}},{"type":"LineString","arcs":[253],"properties":{"scalerank":3}},{"type":"LineString","arcs":[254],"properties":{"scalerank":6}},{"type":"LineString","arcs":[255],"properties":{"scalerank":6}},{"type":"LineString","arcs":[256],"properties":{"scalerank":8}},{"type":"LineString","arcs":[257],"properties":{"scalerank":7}},{"type":"LineString","arcs":[258],"properties":{"scalerank":7}},{"type":"LineString","arcs":[259],"properties":{"scalerank":7}},{"type":"LineString","arcs":[260],"properties":{"scalerank":7}},{"type":"LineString","arcs":[261],"properties":{"scalerank":8}},{"type":"LineString","arcs":[262],"properties":{"scalerank":3}},{"type":"LineString","arcs":[263],"properties":{"scalerank":3}},{"type":"LineString","arcs":[264],"properties":{"scalerank":7}},{"type":"LineString","arcs":[265],"properties":{"scalerank":3}},{"type":"LineString","arcs":[266],"properties":{"scalerank":3}},{"type":"LineString","arcs":[267],"properties":{"scalerank":7}},{"type":"LineString","arcs":[268],"properties":{"scalerank":7}},{"type":"LineString","arcs":[269],"properties":{"scalerank":3}},{"type":"LineString","arcs":[270],"properties":{"scalerank":6}},{"type":"LineString","arcs":[271],"properties":{"scalerank":4}},{"type":"LineString","arcs":[272],"properties":{"scalerank":6}},{"type":"LineString","arcs":[273],"properties":{"scalerank":4}},{"type":"LineString","arcs":[274],"properties":{"scalerank":6}},{"type":"LineString","arcs":[275],"properties":{"scalerank":6}},{"type":"LineString","arcs":[276],"properties":{"scalerank":4}},{"type":"LineString","arcs":[277],"properties":{"scalerank":6}},{"type":"LineString","arcs":[278],"properties":{"scalerank":6}},{"type":"LineString","arcs":[279],"properties":{"scalerank":6}},{"type":"LineString","arcs":[280],"properties":{"scalerank":6}},{"type":"LineString","arcs":[281],"properties":{"scalerank":6}},{"type":"LineString","arcs":[282],"properties":{"scalerank":7}},{"type":"LineString","arcs":[283],"properties":{"scalerank":5}},{"type":"LineString","arcs":[284],"properties":{"scalerank":7}},{"type":"LineString","arcs":[285],"properties":{"scalerank":7}},{"type":"LineString","arcs":[286],"properties":{"scalerank":7}},{"type":"LineString","arcs":[287],"properties":{"scalerank":6}},{"type":"LineString","arcs":[288],"properties":{"scalerank":8}},{"type":"LineString","arcs":[289],"properties":{"scalerank":4}},{"type":"LineString","arcs":[290],"properties":{"scalerank":8}},{"type":"LineString","arcs":[291],"properties":{"scalerank":6}},{"type":"LineString","arcs":[292],"properties":{"scalerank":6}},{"type":"LineString","arcs":[293],"properties":{"scalerank":6}},{"type":"LineString","arcs":[294],"properties":{"scalerank":6}},{"type":"LineString","arcs":[295],"properties":{"scalerank":6}},{"type":"LineString","arcs":[296],"properties":{"scalerank":8}},{"type":"LineString","arcs":[297],"properties":{"scalerank":7}},{"type":"LineString","arcs":[298],"properties":{"scalerank":3}},{"type":"LineString","arcs":[299],"properties":{"scalerank":7}},{"type":"LineString","arcs":[300],"properties":{"scalerank":7}},{"type":"LineString","arcs":[301],"properties":{"scalerank":8}},{"type":"LineString","arcs":[302],"properties":{"scalerank":6}},{"type":"LineString","arcs":[303],"properties":{"scalerank":3}},{"type":"LineString","arcs":[304],"properties":{"scalerank":7}},{"type":"LineString","arcs":[305],"properties":{"scalerank":7}},{"type":"LineString","arcs":[306],"properties":{"scalerank":8}},{"type":"LineString","arcs":[307],"properties":{"scalerank":6}},{"type":"LineString","arcs":[308],"properties":{"scalerank":5}},{"type":"LineString","arcs":[309],"properties":{"scalerank":8}},{"type":"LineString","arcs":[310],"properties":{"scalerank":7}},{"type":"LineString","arcs":[311],"properties":{"scalerank":7}},{"type":"LineString","arcs":[312],"properties":{"scalerank":6}},{"type":"LineString","arcs":[313],"properties":{"scalerank":3}},{"type":"LineString","arcs":[314],"properties":{"scalerank":6}},{"type":"LineString","arcs":[315],"properties":{"scalerank":3}},{"type":"LineString","arcs":[316],"properties":{"scalerank":3}},{"type":"LineString","arcs":[317],"properties":{"scalerank":3}},{"type":"LineString","arcs":[318],"properties":{"scalerank":6}},{"type":"LineString","arcs":[319],"properties":{"scalerank":6}},{"type":"LineString","arcs":[320],"properties":{"scalerank":6}},{"type":"LineString","arcs":[321],"properties":{"scalerank":7}},{"type":"LineString","arcs":[322],"properties":{"scalerank":7}},{"type":"LineString","arcs":[323],"properties":{"scalerank":7}},{"type":"LineString","arcs":[324],"properties":{"scalerank":6}},{"type":"LineString","arcs":[325],"properties":{"scalerank":6}},{"type":"LineString","arcs":[326],"properties":{"scalerank":6}},{"type":"LineString","arcs":[327],"properties":{"scalerank":3}},{"type":"LineString","arcs":[328],"properties":{"scalerank":4}},{"type":"LineString","arcs":[329],"properties":{"scalerank":4}},{"type":"LineString","arcs":[330],"properties":{"scalerank":4}},{"type":"LineString","arcs":[331],"properties":{"scalerank":6}},{"type":"LineString","arcs":[332],"properties":{"scalerank":3}},{"type":"LineString","arcs":[333],"properties":{"scalerank":3}},{"type":"LineString","arcs":[334],"properties":{"scalerank":3}},{"type":"LineString","arcs":[335],"properties":{"scalerank":5}},{"type":"LineString","arcs":[336],"properties":{"scalerank":7}},{"type":"LineString","arcs":[337],"properties":{"scalerank":3}},{"type":"LineString","arcs":[338],"properties":{"scalerank":4}},{"type":"LineString","arcs":[339],"properties":{"scalerank":8}},{"type":"LineString","arcs":[340],"properties":{"scalerank":3}},{"type":"LineString","arcs":[341],"properties":{"scalerank":3}},{"type":"LineString","arcs":[342],"properties":{"scalerank":8}},{"type":"LineString","arcs":[343],"properties":{"scalerank":7}},{"type":"LineString","arcs":[344],"properties":{"scalerank":8}},{"type":"LineString","arcs":[345],"properties":{"scalerank":8}},{"type":"LineString","arcs":[346],"properties":{"scalerank":3}},{"type":"LineString","arcs":[347],"properties":{"scalerank":3}},{"type":"LineString","arcs":[348],"properties":{"scalerank":3}},{"type":"LineString","arcs":[349],"properties":{"scalerank":6}},{"type":"LineString","arcs":[350],"properties":{"scalerank":8}},{"type":"LineString","arcs":[351],"properties":{"scalerank":4}},{"type":"LineString","arcs":[352],"properties":{"scalerank":7}},{"type":"LineString","arcs":[353],"properties":{"scalerank":4}},{"type":"LineString","arcs":[354],"properties":{"scalerank":8}},{"type":"LineString","arcs":[355],"properties":{"scalerank":8}},{"type":"LineString","arcs":[356],"properties":{"scalerank":7}},{"type":"LineString","arcs":[357],"properties":{"scalerank":6}},{"type":"LineString","arcs":[358],"properties":{"scalerank":6}},{"type":"LineString","arcs":[359],"properties":{"scalerank":7}},{"type":"LineString","arcs":[360],"properties":{"scalerank":8}},{"type":"LineString","arcs":[361],"properties":{"scalerank":8}},{"type":"LineString","arcs":[362],"properties":{"scalerank":3}},{"type":"LineString","arcs":[363],"properties":{"scalerank":3}},{"type":"LineString","arcs":[364],"properties":{"scalerank":6}},{"type":"LineString","arcs":[365],"properties":{"scalerank":7}},{"type":"LineString","arcs":[366],"properties":{"scalerank":7}},{"type":"LineString","arcs":[367],"properties":{"scalerank":8}},{"type":"MultiLineString","arcs":[[368],[369]],"properties":{"scalerank":3}},{"type":"LineString","arcs":[370],"properties":{"scalerank":7}},{"type":"LineString","arcs":[371],"properties":{"scalerank":3}},{"type":"LineString","arcs":[372],"properties":{"scalerank":3}},{"type":"LineString","arcs":[373],"properties":{"scalerank":3}},{"type":"LineString","arcs":[374],"properties":{"scalerank":3}},{"type":"LineString","arcs":[375],"properties":{"scalerank":4}},{"type":"LineString","arcs":[376],"properties":{"scalerank":7}},{"type":"LineString","arcs":[377],"properties":{"scalerank":7}},{"type":"LineString","arcs":[378],"properties":{"scalerank":8}},{"type":"LineString","arcs":[379],"properties":{"scalerank":4}},{"type":"LineString","arcs":[380],"properties":{"scalerank":8}},{"type":"LineString","arcs":[381],"properties":{"scalerank":6}},{"type":"LineString","arcs":[382],"properties":{"scalerank":6}},{"type":"LineString","arcs":[383],"properties":{"scalerank":6}},{"type":"LineString","arcs":[384],"properties":{"scalerank":6}},{"type":"LineString","arcs":[385],"properties":{"scalerank":7}},{"type":"LineString","arcs":[386],"properties":{"scalerank":6}},{"type":"LineString","arcs":[387],"properties":{"scalerank":3}},{"type":"LineString","arcs":[388],"properties":{"scalerank":6}},{"type":"LineString","arcs":[389],"properties":{"scalerank":7}},{"type":"LineString","arcs":[390],"properties":{"scalerank":3}},{"type":"LineString","arcs":[391],"properties":{"scalerank":7}},{"type":"LineString","arcs":[392],"properties":{"scalerank":3}},{"type":"LineString","arcs":[393],"properties":{"scalerank":7}},{"type":"LineString","arcs":[394],"properties":{"scalerank":8}},{"type":"LineString","arcs":[395],"properties":{"scalerank":6}},{"type":"LineString","arcs":[396],"properties":{"scalerank":6}},{"type":"LineString","arcs":[397],"properties":{"scalerank":8}},{"type":"LineString","arcs":[398,399],"properties":{"scalerank":3}},{"type":"LineString","arcs":[400],"properties":{"scalerank":7}},{"type":"LineString","arcs":[401],"properties":{"scalerank":8}},{"type":"LineString","arcs":[402],"properties":{"scalerank":8}},{"type":"LineString","arcs":[403],"properties":{"scalerank":4}},{"type":"LineString","arcs":[404],"properties":{"scalerank":6}},{"type":"LineString","arcs":[405],"properties":{"scalerank":6}},{"type":"LineString","arcs":[406],"properties":{"scalerank":6}},{"type":"LineString","arcs":[407],"properties":{"scalerank":4}},{"type":"LineString","arcs":[408],"properties":{"scalerank":4}},{"type":"LineString","arcs":[409],"properties":{"scalerank":8}},{"type":"LineString","arcs":[410],"properties":{"scalerank":7}},{"type":"LineString","arcs":[411],"properties":{"scalerank":8}},{"type":"LineString","arcs":[412],"properties":{"scalerank":3}},{"type":"LineString","arcs":[413],"properties":{"scalerank":3}},{"type":"LineString","arcs":[414],"properties":{"scalerank":6}},{"type":"LineString","arcs":[415],"properties":{"scalerank":6}},{"type":"LineString","arcs":[416],"properties":{"scalerank":7}},{"type":"LineString","arcs":[417],"properties":{"scalerank":6}},{"type":"LineString","arcs":[418],"properties":{"scalerank":7}},{"type":"LineString","arcs":[419],"properties":{"scalerank":7}},{"type":"LineString","arcs":[420],"properties":{"scalerank":3}},{"type":"LineString","arcs":[421],"properties":{"scalerank":3}},{"type":"LineString","arcs":[422],"properties":{"scalerank":4}},{"type":"LineString","arcs":[423],"properties":{"scalerank":4}},{"type":"LineString","arcs":[424],"properties":{"scalerank":4}},{"type":"LineString","arcs":[425],"properties":{"scalerank":4}},{"type":"LineString","arcs":[426],"properties":{"scalerank":4}},{"type":"LineString","arcs":[427],"properties":{"scalerank":4}},{"type":"LineString","arcs":[428],"properties":{"scalerank":7}},{"type":"LineString","arcs":[429],"properties":{"scalerank":8}},{"type":"LineString","arcs":[430],"properties":{"scalerank":8}},{"type":"LineString","arcs":[431],"properties":{"scalerank":7}},{"type":"LineString","arcs":[432],"properties":{"scalerank":3}},{"type":"LineString","arcs":[433],"properties":{"scalerank":3}},{"type":"LineString","arcs":[434],"properties":{"scalerank":3}},{"type":"LineString","arcs":[435],"properties":{"scalerank":8}},{"type":"MultiLineString","arcs":[[436],[437]],"properties":{"scalerank":3}},{"type":"LineString","arcs":[438],"properties":{"scalerank":6}},{"type":"LineString","arcs":[439],"properties":{"scalerank":6}},{"type":"LineString","arcs":[440],"properties":{"scalerank":7}},{"type":"LineString","arcs":[441],"properties":{"scalerank":7}},{"type":"LineString","arcs":[442],"properties":{"scalerank":7}},{"type":"LineString","arcs":[443],"properties":{"scalerank":7}},{"type":"LineString","arcs":[444],"properties":{"scalerank":3}},{"type":"LineString","arcs":[445],"properties":{"scalerank":6}},{"type":"LineString","arcs":[446],"properties":{"scalerank":8}},{"type":"LineString","arcs":[447],"properties":{"scalerank":7}},{"type":"LineString","arcs":[448],"properties":{"scalerank":8}},{"type":"MultiLineString","arcs":[[449],[450]],"properties":{"scalerank":3}},{"type":"LineString","arcs":[451],"properties":{"scalerank":3}},{"type":"LineString","arcs":[452],"properties":{"scalerank":3}},{"type":"LineString","arcs":[453],"properties":{"scalerank":6}},{"type":"LineString","arcs":[454],"properties":{"scalerank":6}},{"type":"LineString","arcs":[455],"properties":{"scalerank":6}},{"type":"LineString","arcs":[456],"properties":{"scalerank":8}},{"type":"LineString","arcs":[457],"properties":{"scalerank":7}},{"type":"LineString","arcs":[458],"properties":{"scalerank":3}},{"type":"LineString","arcs":[459],"properties":{"scalerank":3}},{"type":"LineString","arcs":[460],"properties":{"scalerank":3}},{"type":"LineString","arcs":[461],"properties":{"scalerank":3}},{"type":"LineString","arcs":[462],"properties":{"scalerank":6}},{"type":"LineString","arcs":[463],"properties":{"scalerank":6}},{"type":"LineString","arcs":[464],"properties":{"scalerank":6}},{"type":"LineString","arcs":[465],"properties":{"scalerank":7}},{"type":"LineString","arcs":[466],"properties":{"scalerank":6}},{"type":"LineString","arcs":[467],"properties":{"scalerank":7}},{"type":"LineString","arcs":[468],"properties":{"scalerank":6}},{"type":"LineString","arcs":[469],"properties":{"scalerank":6}},{"type":"LineString","arcs":[470],"properties":{"scalerank":7}},{"type":"LineString","arcs":[471],"properties":{"scalerank":7}},{"type":"LineString","arcs":[472],"properties":{"scalerank":3}},{"type":"LineString","arcs":[473],"properties":{"scalerank":3}},{"type":"LineString","arcs":[474],"properties":{"scalerank":7}},{"type":"LineString","arcs":[475],"properties":{"scalerank":8}},{"type":"LineString","arcs":[476],"properties":{"scalerank":8}},{"type":"LineString","arcs":[477],"properties":{"scalerank":8}},{"type":"LineString","arcs":[478],"properties":{"scalerank":6}},{"type":"LineString","arcs":[479],"properties":{"scalerank":6}},{"type":"LineString","arcs":[480],"properties":{"scalerank":6}},{"type":"LineString","arcs":[481],"properties":{"scalerank":7}},{"type":"LineString","arcs":[482],"properties":{"scalerank":6}},{"type":"LineString","arcs":[483],"properties":{"scalerank":6}},{"type":"LineString","arcs":[484],"properties":{"scalerank":3}},{"type":"LineString","arcs":[485],"properties":{"scalerank":8}},{"type":"LineString","arcs":[486],"properties":{"scalerank":3}},{"type":"LineString","arcs":[487],"properties":{"scalerank":3}},{"type":"LineString","arcs":[488],"properties":{"scalerank":3}},{"type":"LineString","arcs":[489],"properties":{"scalerank":3}},{"type":"LineString","arcs":[490],"properties":{"scalerank":3}},{"type":"LineString","arcs":[491],"properties":{"scalerank":7}},{"type":"LineString","arcs":[492],"properties":{"scalerank":7}},{"type":"LineString","arcs":[493],"properties":{"scalerank":7}},{"type":"LineString","arcs":[494],"properties":{"scalerank":3}},{"type":"LineString","arcs":[495],"properties":{"scalerank":7}},{"type":"LineString","arcs":[496],"properties":{"scalerank":3}},{"type":"LineString","arcs":[497],"properties":{"scalerank":6}},{"type":"LineString","arcs":[498],"properties":{"scalerank":3}},{"type":"LineString","arcs":[499],"properties":{"scalerank":3}},{"type":"LineString","arcs":[500],"properties":{"scalerank":6}},{"type":"LineString","arcs":[501],"properties":{"scalerank":6}},{"type":"LineString","arcs":[502],"properties":{"scalerank":4}},{"type":"LineString","arcs":[503],"properties":{"scalerank":3}},{"type":"LineString","arcs":[504],"properties":{"scalerank":3}},{"type":"LineString","arcs":[505],"properties":{"scalerank":3}},{"type":"LineString","arcs":[506],"properties":{"scalerank":6}},{"type":"LineString","arcs":[507],"properties":{"scalerank":3}},{"type":"LineString","arcs":[508],"properties":{"scalerank":7}},{"type":"LineString","arcs":[509],"properties":{"scalerank":3}},{"type":"LineString","arcs":[510],"properties":{"scalerank":4}},{"type":"LineString","arcs":[511],"properties":{"scalerank":3}},{"type":"LineString","arcs":[512],"properties":{"scalerank":6}},{"type":"LineString","arcs":[513],"properties":{"scalerank":8}},{"type":"LineString","arcs":[514],"properties":{"scalerank":3}},{"type":"LineString","arcs":[515],"properties":{"scalerank":6}},{"type":"LineString","arcs":[516],"properties":{"scalerank":6}},{"type":"LineString","arcs":[517],"properties":{"scalerank":6}},{"type":"LineString","arcs":[518],"properties":{"scalerank":8}},{"type":"LineString","arcs":[519],"properties":{"scalerank":3}},{"type":"LineString","arcs":[520],"properties":{"scalerank":3}},{"type":"LineString","arcs":[521],"properties":{"scalerank":3}},{"type":"LineString","arcs":[522],"properties":{"scalerank":7}},{"type":"LineString","arcs":[523],"properties":{"scalerank":6}},{"type":"LineString","arcs":[524],"properties":{"scalerank":6}},{"type":"LineString","arcs":[525],"properties":{"scalerank":6}},{"type":"LineString","arcs":[526],"properties":{"scalerank":6}},{"type":"LineString","arcs":[527],"properties":{"scalerank":4}},{"type":"LineString","arcs":[528],"properties":{"scalerank":6}},{"type":"LineString","arcs":[529],"properties":{"scalerank":6}},{"type":"LineString","arcs":[530],"properties":{"scalerank":7}},{"type":"LineString","arcs":[531],"properties":{"scalerank":6}},{"type":"LineString","arcs":[532],"properties":{"scalerank":8}},{"type":"LineString","arcs":[533],"properties":{"scalerank":7}},{"type":"LineString","arcs":[534],"properties":{"scalerank":3}},{"type":"LineString","arcs":[535],"properties":{"scalerank":8}},{"type":"LineString","arcs":[536],"properties":{"scalerank":8}},{"type":"LineString","arcs":[537],"properties":{"scalerank":7}},{"type":"LineString","arcs":[538],"properties":{"scalerank":7}},{"type":"LineString","arcs":[539],"properties":{"scalerank":7}},{"type":"LineString","arcs":[540],"properties":{"scalerank":3}},{"type":"LineString","arcs":[541],"properties":{"scalerank":6}},{"type":"LineString","arcs":[542],"properties":{"scalerank":3}},{"type":"LineString","arcs":[543],"properties":{"scalerank":3}},{"type":"LineString","arcs":[544],"properties":{"scalerank":3}},{"type":"LineString","arcs":[545],"properties":{"scalerank":3}},{"type":"LineString","arcs":[546],"properties":{"scalerank":7}},{"type":"LineString","arcs":[547],"properties":{"scalerank":8}},{"type":"LineString","arcs":[548],"properties":{"scalerank":7}},{"type":"LineString","arcs":[549],"properties":{"scalerank":7}},{"type":"LineString","arcs":[550],"properties":{"scalerank":7}},{"type":"LineString","arcs":[551],"properties":{"scalerank":7}},{"type":"LineString","arcs":[552],"properties":{"scalerank":8}},{"type":"LineString","arcs":[553],"properties":{"scalerank":8}},{"type":"LineString","arcs":[554],"properties":{"scalerank":3}},{"type":"LineString","arcs":[555],"properties":{"scalerank":3}},{"type":"LineString","arcs":[556],"properties":{"scalerank":6}},{"type":"LineString","arcs":[557],"properties":{"scalerank":3}},{"type":"LineString","arcs":[558],"properties":{"scalerank":3}},{"type":"LineString","arcs":[559],"properties":{"scalerank":6}},{"type":"LineString","arcs":[560],"properties":{"scalerank":3}},{"type":"LineString","arcs":[561],"properties":{"scalerank":6}},{"type":"LineString","arcs":[562],"properties":{"scalerank":6}},{"type":"LineString","arcs":[563],"properties":{"scalerank":7}},{"type":"LineString","arcs":[564],"properties":{"scalerank":3}},{"type":"LineString","arcs":[565],"properties":{"scalerank":7}},{"type":"LineString","arcs":[566],"properties":{"scalerank":7}},{"type":"LineString","arcs":[567],"properties":{"scalerank":7}},{"type":"LineString","arcs":[568],"properties":{"scalerank":7}},{"type":"LineString","arcs":[569],"properties":{"scalerank":7}},{"type":"LineString","arcs":[570],"properties":{"scalerank":6}},{"type":"LineString","arcs":[571],"properties":{"scalerank":7}},{"type":"LineString","arcs":[572],"properties":{"scalerank":6}},{"type":"LineString","arcs":[573],"properties":{"scalerank":6}},{"type":"LineString","arcs":[574],"properties":{"scalerank":6}},{"type":"LineString","arcs":[575],"properties":{"scalerank":6}},{"type":"LineString","arcs":[576],"properties":{"scalerank":6}},{"type":"LineString","arcs":[577],"properties":{"scalerank":6}},{"type":"LineString","arcs":[578],"properties":{"scalerank":6}},{"type":"LineString","arcs":[579],"properties":{"scalerank":6}},{"type":"LineString","arcs":[580],"properties":{"scalerank":7}},{"type":"LineString","arcs":[581],"properties":{"scalerank":3}},{"type":"LineString","arcs":[582],"properties":{"scalerank":3}},{"type":"LineString","arcs":[583],"properties":{"scalerank":6}},{"type":"LineString","arcs":[584],"properties":{"scalerank":6}},{"type":"LineString","arcs":[585],"properties":{"scalerank":3}},{"type":"LineString","arcs":[586],"properties":{"scalerank":3}},{"type":"LineString","arcs":[587],"properties":{"scalerank":6}},{"type":"LineString","arcs":[588],"properties":{"scalerank":3}},{"type":"LineString","arcs":[589],"properties":{"scalerank":7}},{"type":"LineString","arcs":[590],"properties":{"scalerank":7}},{"type":"LineString","arcs":[591],"properties":{"scalerank":7}},{"type":"LineString","arcs":[592],"properties":{"scalerank":3}},{"type":"LineString","arcs":[593],"properties":{"scalerank":3}},{"type":"LineString","arcs":[594],"properties":{"scalerank":3}},{"type":"LineString","arcs":[595],"properties":{"scalerank":7}},{"type":"LineString","arcs":[596],"properties":{"scalerank":7}},{"type":"LineString","arcs":[597],"properties":{"scalerank":7}},{"type":"LineString","arcs":[598],"properties":{"scalerank":7}},{"type":"LineString","arcs":[599],"properties":{"scalerank":7}},{"type":"LineString","arcs":[600],"properties":{"scalerank":7}},{"type":"LineString","arcs":[601],"properties":{"scalerank":4}},{"type":"LineString","arcs":[602],"properties":{"scalerank":7}},{"type":"LineString","arcs":[603],"properties":{"scalerank":7}},{"type":"LineString","arcs":[604],"properties":{"scalerank":7}},{"type":"LineString","arcs":[605],"properties":{"scalerank":7}},{"type":"LineString","arcs":[606],"properties":{"scalerank":7}},{"type":"LineString","arcs":[607],"properties":{"scalerank":7}},{"type":"LineString","arcs":[608],"properties":{"scalerank":7}},{"type":"LineString","arcs":[609],"properties":{"scalerank":7}},{"type":"LineString","arcs":[610],"properties":{"scalerank":3}},{"type":"LineString","arcs":[611],"properties":{"scalerank":3}},{"type":"LineString","arcs":[612],"properties":{"scalerank":7}},{"type":"LineString","arcs":[613],"properties":{"scalerank":7}},{"type":"LineString","arcs":[614],"properties":{"scalerank":6}},{"type":"LineString","arcs":[615],"properties":{"scalerank":5}},{"type":"LineString","arcs":[616],"properties":{"scalerank":5}},{"type":"LineString","arcs":[617],"properties":{"scalerank":5}},{"type":"LineString","arcs":[618],"properties":{"scalerank":3}},{"type":"LineString","arcs":[619],"properties":{"scalerank":5}},{"type":"LineString","arcs":[620],"properties":{"scalerank":7}},{"type":"LineString","arcs":[621],"properties":{"scalerank":7}},{"type":"LineString","arcs":[622],"properties":{"scalerank":7}},{"type":"LineString","arcs":[623],"properties":{"scalerank":3}},{"type":"LineString","arcs":[624],"properties":{"scalerank":6}},{"type":"LineString","arcs":[625],"properties":{"scalerank":3}},{"type":"LineString","arcs":[626],"properties":{"scalerank":6}},{"type":"LineString","arcs":[627],"properties":{"scalerank":7}},{"type":"LineString","arcs":[628],"properties":{"scalerank":6}},{"type":"LineString","arcs":[629],"properties":{"scalerank":3}},{"type":"LineString","arcs":[630],"properties":{"scalerank":6}},{"type":"LineString","arcs":[631],"properties":{"scalerank":7}},{"type":"LineString","arcs":[632],"properties":{"scalerank":7}},{"type":"LineString","arcs":[633],"properties":{"scalerank":3}},{"type":"LineString","arcs":[634],"properties":{"scalerank":6}},{"type":"LineString","arcs":[635],"properties":{"scalerank":6}},{"type":"LineString","arcs":[636],"properties":{"scalerank":8}},{"type":"LineString","arcs":[637],"properties":{"scalerank":7}},{"type":"LineString","arcs":[638],"properties":{"scalerank":7}},{"type":"LineString","arcs":[639],"properties":{"scalerank":6}},{"type":"LineString","arcs":[640],"properties":{"scalerank":7}},{"type":"LineString","arcs":[641],"properties":{"scalerank":3}},{"type":"LineString","arcs":[642],"properties":{"scalerank":7}},{"type":"LineString","arcs":[643],"properties":{"scalerank":3}},{"type":"LineString","arcs":[644],"properties":{"scalerank":8}},{"type":"LineString","arcs":[645],"properties":{"scalerank":3}},{"type":"LineString","arcs":[646],"properties":{"scalerank":6}},{"type":"LineString","arcs":[647],"properties":{"scalerank":6}},{"type":"LineString","arcs":[648],"properties":{"scalerank":3}},{"type":"LineString","arcs":[649],"properties":{"scalerank":6}},{"type":"LineString","arcs":[650],"properties":{"scalerank":3}},{"type":"LineString","arcs":[651],"properties":{"scalerank":4}},{"type":"LineString","arcs":[652],"properties":{"scalerank":6}},{"type":"LineString","arcs":[653],"properties":{"scalerank":6}},{"type":"LineString","arcs":[654],"properties":{"scalerank":7}},{"type":"LineString","arcs":[655],"properties":{"scalerank":7}},{"type":"LineString","arcs":[656],"properties":{"scalerank":7}},{"type":"LineString","arcs":[657],"properties":{"scalerank":6}},{"type":"LineString","arcs":[658],"properties":{"scalerank":6}},{"type":"LineString","arcs":[659],"properties":{"scalerank":3}},{"type":"LineString","arcs":[660],"properties":{"scalerank":4}},{"type":"LineString","arcs":[661],"properties":{"scalerank":3}},{"type":"LineString","arcs":[662],"properties":{"scalerank":8}},{"type":"LineString","arcs":[663],"properties":{"scalerank":8}},{"type":"LineString","arcs":[664],"properties":{"scalerank":7}},{"type":"LineString","arcs":[665],"properties":{"scalerank":8}},{"type":"LineString","arcs":[666],"properties":{"scalerank":3}},{"type":"LineString","arcs":[667],"properties":{"scalerank":8}},{"type":"LineString","arcs":[668],"properties":{"scalerank":6}},{"type":"LineString","arcs":[669],"properties":{"scalerank":3}},{"type":"LineString","arcs":[670],"properties":{"scalerank":7}},{"type":"LineString","arcs":[671],"properties":{"scalerank":3}},{"type":"LineString","arcs":[672],"properties":{"scalerank":6}},{"type":"LineString","arcs":[673],"properties":{"scalerank":7}},{"type":"LineString","arcs":[674],"properties":{"scalerank":7}},{"type":"LineString","arcs":[675],"properties":{"scalerank":3}},{"type":"LineString","arcs":[676],"properties":{"scalerank":7}},{"type":"LineString","arcs":[677],"properties":{"scalerank":4}},{"type":"LineString","arcs":[678],"properties":{"scalerank":5}},{"type":"LineString","arcs":[679],"properties":{"scalerank":5}},{"type":"LineString","arcs":[680],"properties":{"scalerank":3}},{"type":"LineString","arcs":[681],"properties":{"scalerank":8}},{"type":"LineString","arcs":[682],"properties":{"scalerank":6}},{"type":"LineString","arcs":[683],"properties":{"scalerank":5}},{"type":"LineString","arcs":[684],"properties":{"scalerank":4}},{"type":"LineString","arcs":[685],"properties":{"scalerank":3}},{"type":"LineString","arcs":[686],"properties":{"scalerank":7}},{"type":"LineString","arcs":[687],"properties":{"scalerank":6}},{"type":"LineString","arcs":[688],"properties":{"scalerank":8}},{"type":"LineString","arcs":[689],"properties":{"scalerank":8}},{"type":"LineString","arcs":[690],"properties":{"scalerank":8}},{"type":"LineString","arcs":[691],"properties":{"scalerank":3}},{"type":"LineString","arcs":[692],"properties":{"scalerank":6}},{"type":"LineString","arcs":[693],"properties":{"scalerank":6}},{"type":"LineString","arcs":[694],"properties":{"scalerank":5}},{"type":"LineString","arcs":[695],"properties":{"scalerank":8}},{"type":"LineString","arcs":[696],"properties":{"scalerank":8}},{"type":"LineString","arcs":[697],"properties":{"scalerank":7}},{"type":"LineString","arcs":[698],"properties":{"scalerank":8}},{"type":"LineString","arcs":[699],"properties":{"scalerank":8}},{"type":"LineString","arcs":[700],"properties":{"scalerank":4}},{"type":"LineString","arcs":[701],"properties":{"scalerank":6}},{"type":"LineString","arcs":[702],"properties":{"scalerank":3}},{"type":"LineString","arcs":[703],"properties":{"scalerank":3}},{"type":"LineString","arcs":[704],"properties":{"scalerank":3}},{"type":"LineString","arcs":[705],"properties":{"scalerank":7}},{"type":"LineString","arcs":[706],"properties":{"scalerank":4}},{"type":"LineString","arcs":[707],"properties":{"scalerank":3}},{"type":"LineString","arcs":[708],"properties":{"scalerank":4}},{"type":"LineString","arcs":[709],"properties":{"scalerank":7}},{"type":"LineString","arcs":[710],"properties":{"scalerank":8}},{"type":"LineString","arcs":[711],"properties":{"scalerank":7}},{"type":"LineString","arcs":[712],"properties":{"scalerank":8}},{"type":"LineString","arcs":[713],"properties":{"scalerank":3}},{"type":"LineString","arcs":[714],"properties":{"scalerank":4}},{"type":"LineString","arcs":[715],"properties":{"scalerank":3}},{"type":"LineString","arcs":[716],"properties":{"scalerank":7}},{"type":"LineString","arcs":[717],"properties":{"scalerank":3}},{"type":"LineString","arcs":[718],"properties":{"scalerank":4}},{"type":"LineString","arcs":[719],"properties":{"scalerank":4}},{"type":"LineString","arcs":[720],"properties":{"scalerank":3}},{"type":"LineString","arcs":[721],"properties":{"scalerank":3}},{"type":"LineString","arcs":[722],"properties":{"scalerank":4}},{"type":"LineString","arcs":[723],"properties":{"scalerank":8}},{"type":"LineString","arcs":[724],"properties":{"scalerank":8}},{"type":"LineString","arcs":[725],"properties":{"scalerank":7}},{"type":"LineString","arcs":[726],"properties":{"scalerank":3}},{"type":"LineString","arcs":[727],"properties":{"scalerank":8}},{"type":"LineString","arcs":[728],"properties":{"scalerank":4}},{"type":"LineString","arcs":[729],"properties":{"scalerank":4}},{"type":"LineString","arcs":[730],"properties":{"scalerank":3}},{"type":"LineString","arcs":[731],"properties":{"scalerank":4}},{"type":"LineString","arcs":[732],"properties":{"scalerank":4}},{"type":"LineString","arcs":[733],"properties":{"scalerank":8}},{"type":"LineString","arcs":[734],"properties":{"scalerank":4}},{"type":"LineString","arcs":[735],"properties":{"scalerank":8}},{"type":"LineString","arcs":[736],"properties":{"scalerank":7}},{"type":"LineString","arcs":[737],"properties":{"scalerank":3}},{"type":"LineString","arcs":[738],"properties":{"scalerank":3}},{"type":"LineString","arcs":[739],"properties":{"scalerank":3}},{"type":"LineString","arcs":[740],"properties":{"scalerank":3}},{"type":"LineString","arcs":[741],"properties":{"scalerank":4}},{"type":"LineString","arcs":[742],"properties":{"scalerank":4}},{"type":"LineString","arcs":[743],"properties":{"scalerank":8}},{"type":"LineString","arcs":[744],"properties":{"scalerank":3}},{"type":"LineString","arcs":[745],"properties":{"scalerank":8}},{"type":"LineString","arcs":[746],"properties":{"scalerank":3}},{"type":"LineString","arcs":[747],"properties":{"scalerank":3}},{"type":"LineString","arcs":[748],"properties":{"scalerank":3}},{"type":"LineString","arcs":[749],"properties":{"scalerank":4}},{"type":"LineString","arcs":[750],"properties":{"scalerank":7}},{"type":"LineString","arcs":[751],"properties":{"scalerank":7}},{"type":"LineString","arcs":[752],"properties":{"scalerank":7}},{"type":"LineString","arcs":[753],"properties":{"scalerank":4}},{"type":"LineString","arcs":[754],"properties":{"scalerank":7}},{"type":"LineString","arcs":[755],"properties":{"scalerank":3}},{"type":"LineString","arcs":[756],"properties":{"scalerank":8}},{"type":"LineString","arcs":[757],"properties":{"scalerank":6}},{"type":"LineString","arcs":[758],"properties":{"scalerank":3}},{"type":"LineString","arcs":[759,760],"properties":{"scalerank":3}},{"type":"LineString","arcs":[761],"properties":{"scalerank":8}},{"type":"LineString","arcs":[762],"properties":{"scalerank":3}},{"type":"LineString","arcs":[763],"properties":{"scalerank":3}},{"type":"LineString","arcs":[764],"properties":{"scalerank":8}},{"type":"LineString","arcs":[765],"properties":{"scalerank":6}},{"type":"LineString","arcs":[766],"properties":{"scalerank":3}},{"type":"LineString","arcs":[767],"properties":{"scalerank":3}},{"type":"LineString","arcs":[768],"properties":{"scalerank":7}},{"type":"LineString","arcs":[769],"properties":{"scalerank":6}},{"type":"LineString","arcs":[770],"properties":{"scalerank":7}},{"type":"LineString","arcs":[771],"properties":{"scalerank":6}},{"type":"MultiLineString","arcs":[[772],[773],[774]],"properties":{"scalerank":5}},{"type":"LineString","arcs":[775],"properties":{"scalerank":6}},{"type":"LineString","arcs":[776],"properties":{"scalerank":8}},{"type":"LineString","arcs":[777],"properties":{"scalerank":6}},{"type":"LineString","arcs":[778],"properties":{"scalerank":6}},{"type":"LineString","arcs":[779],"properties":{"scalerank":3}},{"type":"LineString","arcs":[780],"properties":{"scalerank":4}},{"type":"LineString","arcs":[781],"properties":{"scalerank":4}},{"type":"LineString","arcs":[782],"properties":{"scalerank":7}},{"type":"LineString","arcs":[783],"properties":{"scalerank":8}},{"type":"LineString","arcs":[784],"properties":{"scalerank":4}},{"type":"LineString","arcs":[785],"properties":{"scalerank":4}},{"type":"LineString","arcs":[786],"properties":{"scalerank":3}},{"type":"LineString","arcs":[787],"properties":{"scalerank":3}},{"type":"LineString","arcs":[788],"properties":{"scalerank":6}},{"type":"LineString","arcs":[789],"properties":{"scalerank":7}},{"type":"LineString","arcs":[790],"properties":{"scalerank":7}},{"type":"LineString","arcs":[791],"properties":{"scalerank":3}},{"type":"LineString","arcs":[792],"properties":{"scalerank":3}},{"type":"LineString","arcs":[793,794],"properties":{"scalerank":3}},{"type":"MultiLineString","arcs":[[795],[796]],"properties":{"scalerank":6}},{"type":"LineString","arcs":[797],"properties":{"scalerank":3}},{"type":"LineString","arcs":[798],"properties":{"scalerank":6}},{"type":"LineString","arcs":[799],"properties":{"scalerank":4}},{"type":"LineString","arcs":[800],"properties":{"scalerank":6}},{"type":"LineString","arcs":[801],"properties":{"scalerank":7}},{"type":"LineString","arcs":[802],"properties":{"scalerank":4}},{"type":"LineString","arcs":[803],"properties":{"scalerank":3}},{"type":"LineString","arcs":[804],"properties":{"scalerank":6}},{"type":"LineString","arcs":[805],"properties":{"scalerank":6}},{"type":"LineString","arcs":[806],"properties":{"scalerank":6}},{"type":"LineString","arcs":[807],"properties":{"scalerank":3}},{"type":"LineString","arcs":[808],"properties":{"scalerank":7}},{"type":"LineString","arcs":[809],"properties":{"scalerank":3}},{"type":"LineString","arcs":[810],"properties":{"scalerank":3}},{"type":"LineString","arcs":[811],"properties":{"scalerank":3}},{"type":"LineString","arcs":[812],"properties":{"scalerank":5}},{"type":"LineString","arcs":[813],"properties":{"scalerank":4}},{"type":"LineString","arcs":[814],"properties":{"scalerank":3}},{"type":"LineString","arcs":[815],"properties":{"scalerank":3}},{"type":"LineString","arcs":[816],"properties":{"scalerank":3}},{"type":"LineString","arcs":[817],"properties":{"scalerank":6}},{"type":"LineString","arcs":[818],"properties":{"scalerank":5}},{"type":"LineString","arcs":[819],"properties":{"scalerank":4}},{"type":"LineString","arcs":[820],"properties":{"scalerank":4}},{"type":"LineString","arcs":[821],"properties":{"scalerank":7}},{"type":"LineString","arcs":[822],"properties":{"scalerank":3}},{"type":"LineString","arcs":[823],"properties":{"scalerank":8}},{"type":"LineString","arcs":[824],"properties":{"scalerank":3}},{"type":"LineString","arcs":[825],"properties":{"scalerank":6}},{"type":"LineString","arcs":[826],"properties":{"scalerank":8}},{"type":"LineString","arcs":[827],"properties":{"scalerank":8}},{"type":"LineString","arcs":[828],"properties":{"scalerank":3}},{"type":"LineString","arcs":[829],"properties":{"scalerank":6}},{"type":"LineString","arcs":[830],"properties":{"scalerank":3}},{"type":"LineString","arcs":[831],"properties":{"scalerank":8}},{"type":"LineString","arcs":[832],"properties":{"scalerank":4}},{"type":"LineString","arcs":[833],"properties":{"scalerank":6}},{"type":"LineString","arcs":[834],"properties":{"scalerank":7}},{"type":"LineString","arcs":[835],"properties":{"scalerank":7}},{"type":"LineString","arcs":[836],"properties":{"scalerank":8}},{"type":"LineString","arcs":[837],"properties":{"scalerank":3}},{"type":"LineString","arcs":[838],"properties":{"scalerank":3}},{"type":"LineString","arcs":[839],"properties":{"scalerank":8}},{"type":"LineString","arcs":[840],"properties":{"scalerank":3}},{"type":"LineString","arcs":[841],"properties":{"scalerank":6}},{"type":"LineString","arcs":[842],"properties":{"scalerank":6}},{"type":"LineString","arcs":[843],"properties":{"scalerank":6}},{"type":"LineString","arcs":[844],"properties":{"scalerank":7}},{"type":"LineString","arcs":[845,846],"properties":{"scalerank":3}},{"type":"LineString","arcs":[847],"properties":{"scalerank":6}},{"type":"LineString","arcs":[848],"properties":{"scalerank":3}},{"type":"LineString","arcs":[849],"properties":{"scalerank":6}},{"type":"LineString","arcs":[850],"properties":{"scalerank":7}},{"type":"LineString","arcs":[851,852],"properties":{"scalerank":3}},{"type":"LineString","arcs":[853],"properties":{"scalerank":3}},{"type":"LineString","arcs":[854],"properties":{"scalerank":8}},{"type":"LineString","arcs":[855],"properties":{"scalerank":5}},{"type":"LineString","arcs":[856],"properties":{"scalerank":4}},{"type":"LineString","arcs":[857],"properties":{"scalerank":7}},{"type":"LineString","arcs":[858],"properties":{"scalerank":3}},{"type":"LineString","arcs":[859],"properties":{"scalerank":7}},{"type":"LineString","arcs":[860],"properties":{"scalerank":4}},{"type":"LineString","arcs":[861],"properties":{"scalerank":7}},{"type":"LineString","arcs":[862],"properties":{"scalerank":6}},{"type":"LineString","arcs":[863],"properties":{"scalerank":3}},{"type":"LineString","arcs":[864],"properties":{"scalerank":4}},{"type":"LineString","arcs":[865],"properties":{"scalerank":5}},{"type":"LineString","arcs":[866],"properties":{"scalerank":8}},{"type":"LineString","arcs":[867],"properties":{"scalerank":8}},{"type":"LineString","arcs":[868],"properties":{"scalerank":7}},{"type":"LineString","arcs":[869],"properties":{"scalerank":6}},{"type":"LineString","arcs":[870],"properties":{"scalerank":7}},{"type":"LineString","arcs":[871],"properties":{"scalerank":7}},{"type":"LineString","arcs":[872],"properties":{"scalerank":6}},{"type":"LineString","arcs":[873],"properties":{"scalerank":7}},{"type":"LineString","arcs":[874],"properties":{"scalerank":3}},{"type":"LineString","arcs":[875],"properties":{"scalerank":4}},{"type":"LineString","arcs":[876],"properties":{"scalerank":6}},{"type":"LineString","arcs":[877],"properties":{"scalerank":3}},{"type":"LineString","arcs":[878],"properties":{"scalerank":8}},{"type":"LineString","arcs":[879],"properties":{"scalerank":6}},{"type":"LineString","arcs":[880],"properties":{"scalerank":8}},{"type":"LineString","arcs":[881],"properties":{"scalerank":3}},{"type":"LineString","arcs":[882],"properties":{"scalerank":4}},{"type":"LineString","arcs":[883],"properties":{"scalerank":7}},{"type":"LineString","arcs":[884],"properties":{"scalerank":6}},{"type":"LineString","arcs":[885],"properties":{"scalerank":6}},{"type":"LineString","arcs":[886],"properties":{"scalerank":6}},{"type":"LineString","arcs":[887],"properties":{"scalerank":8}},{"type":"LineString","arcs":[888],"properties":{"scalerank":4}},{"type":"LineString","arcs":[889],"properties":{"scalerank":5}},{"type":"LineString","arcs":[890],"properties":{"scalerank":3}},{"type":"LineString","arcs":[891],"properties":{"scalerank":5}},{"type":"LineString","arcs":[892],"properties":{"scalerank":4}},{"type":"LineString","arcs":[893],"properties":{"scalerank":4}},{"type":"MultiLineString","arcs":[[894],[895]],"properties":{"scalerank":6}},{"type":"LineString","arcs":[896],"properties":{"scalerank":3}},{"type":"LineString","arcs":[897],"properties":{"scalerank":8}},{"type":"LineString","arcs":[898],"properties":{"scalerank":8}},{"type":"LineString","arcs":[899],"properties":{"scalerank":7}},{"type":"LineString","arcs":[900],"properties":{"scalerank":7}},{"type":"LineString","arcs":[901],"properties":{"scalerank":6}},{"type":"LineString","arcs":[902],"properties":{"scalerank":5}},{"type":"LineString","arcs":[903],"properties":{"scalerank":3}},{"type":"LineString","arcs":[904,905],"properties":{"scalerank":8}},{"type":"LineString","arcs":[906],"properties":{"scalerank":4}},{"type":"MultiLineString","arcs":[[907],[908],[909],[910]],"properties":{"scalerank":5}},{"type":"LineString","arcs":[911],"properties":{"scalerank":8}},{"type":"LineString","arcs":[912],"properties":{"scalerank":3}},{"type":"LineString","arcs":[913],"properties":{"scalerank":6}},{"type":"LineString","arcs":[914],"properties":{"scalerank":4}},{"type":"LineString","arcs":[915],"properties":{"scalerank":6}},{"type":"LineString","arcs":[916],"properties":{"scalerank":3}},{"type":"LineString","arcs":[917],"properties":{"scalerank":8}},{"type":"LineString","arcs":[918],"properties":{"scalerank":3}},{"type":"LineString","arcs":[919],"properties":{"scalerank":6}},{"type":"LineString","arcs":[920],"properties":{"scalerank":7}},{"type":"LineString","arcs":[921],"properties":{"scalerank":7}},{"type":"LineString","arcs":[922],"properties":{"scalerank":5}},{"type":"LineString","arcs":[923],"properties":{"scalerank":4}},{"type":"LineString","arcs":[924],"properties":{"scalerank":7}},{"type":"LineString","arcs":[925],"properties":{"scalerank":5}},{"type":"LineString","arcs":[926],"properties":{"scalerank":3}},{"type":"LineString","arcs":[927],"properties":{"scalerank":7}},{"type":"LineString","arcs":[928],"properties":{"scalerank":7}},{"type":"LineString","arcs":[929],"properties":{"scalerank":5}},{"type":"LineString","arcs":[930],"properties":{"scalerank":8}},{"type":"LineString","arcs":[931],"properties":{"scalerank":6}},{"type":"LineString","arcs":[932],"properties":{"scalerank":4}},{"type":"LineString","arcs":[933],"properties":{"scalerank":7}},{"type":"MultiLineString","arcs":[[934],[935]],"properties":{"scalerank":4}},{"type":"LineString","arcs":[936],"properties":{"scalerank":6}},{"type":"LineString","arcs":[937],"properties":{"scalerank":7}},{"type":"LineString","arcs":[938],"properties":{"scalerank":3}},{"type":"LineString","arcs":[939],"properties":{"scalerank":3}},{"type":"LineString","arcs":[940],"properties":{"scalerank":5}},{"type":"LineString","arcs":[941],"properties":{"scalerank":5}},{"type":"LineString","arcs":[942],"properties":{"scalerank":3}},{"type":"MultiLineString","arcs":[[943],[944]],"properties":{"scalerank":7}},{"type":"LineString","arcs":[945],"properties":{"scalerank":3}},{"type":"LineString","arcs":[946],"properties":{"scalerank":4}},{"type":"LineString","arcs":[947],"properties":{"scalerank":3}},{"type":"LineString","arcs":[948],"properties":{"scalerank":3}},{"type":"LineString","arcs":[949],"properties":{"scalerank":3}},{"type":"LineString","arcs":[950],"properties":{"scalerank":4}},{"type":"LineString","arcs":[951],"properties":{"scalerank":7}},{"type":"LineString","arcs":[952],"properties":{"scalerank":4}},{"type":"LineString","arcs":[953],"properties":{"scalerank":4}},{"type":"LineString","arcs":[954],"properties":{"scalerank":3}},{"type":"LineString","arcs":[955],"properties":{"scalerank":7}},{"type":"LineString","arcs":[956],"properties":{"scalerank":5}},{"type":"LineString","arcs":[957],"properties":{"scalerank":6}},{"type":"LineString","arcs":[958],"properties":{"scalerank":3}},{"type":"LineString","arcs":[959],"properties":{"scalerank":7}},{"type":"LineString","arcs":[960],"properties":{"scalerank":6}},{"type":"LineString","arcs":[961],"properties":{"scalerank":7}},{"type":"LineString","arcs":[962],"properties":{"scalerank":7}},{"type":"LineString","arcs":[963],"properties":{"scalerank":8}},{"type":"LineString","arcs":[964],"properties":{"scalerank":3}},{"type":"LineString","arcs":[965],"properties":{"scalerank":3}},{"type":"LineString","arcs":[966],"properties":{"scalerank":5}},{"type":"LineString","arcs":[967],"properties":{"scalerank":8}},{"type":"LineString","arcs":[968],"properties":{"scalerank":6}},{"type":"LineString","arcs":[969],"properties":{"scalerank":3}},{"type":"LineString","arcs":[970],"properties":{"scalerank":3}},{"type":"LineString","arcs":[971],"properties":{"scalerank":4}},{"type":"LineString","arcs":[972],"properties":{"scalerank":6}},{"type":"LineString","arcs":[973],"properties":{"scalerank":4}},{"type":"LineString","arcs":[974],"properties":{"scalerank":8}},{"type":"LineString","arcs":[975],"properties":{"scalerank":4}},{"type":"LineString","arcs":[976],"properties":{"scalerank":3}},{"type":"LineString","arcs":[977],"properties":{"scalerank":4}},{"type":"LineString","arcs":[978],"properties":{"scalerank":4}},{"type":"LineString","arcs":[979],"properties":{"scalerank":3}},{"type":"LineString","arcs":[980],"properties":{"scalerank":4}},{"type":"MultiLineString","arcs":[[981],[982]],"properties":{"scalerank":4}},{"type":"LineString","arcs":[983],"properties":{"scalerank":5}},{"type":"LineString","arcs":[984],"properties":{"scalerank":3}},{"type":"LineString","arcs":[985],"properties":{"scalerank":4}},{"type":"LineString","arcs":[986],"properties":{"scalerank":6}},{"type":"LineString","arcs":[987],"properties":{"scalerank":6}},{"type":"LineString","arcs":[988],"properties":{"scalerank":7}},{"type":"LineString","arcs":[989],"properties":{"scalerank":4}},{"type":"LineString","arcs":[990],"properties":{"scalerank":4}},{"type":"LineString","arcs":[991],"properties":{"scalerank":3}},{"type":"LineString","arcs":[992],"properties":{"scalerank":4}},{"type":"LineString","arcs":[993],"properties":{"scalerank":8}},{"type":"LineString","arcs":[994],"properties":{"scalerank":6}},{"type":"LineString","arcs":[995],"properties":{"scalerank":6}},{"type":"LineString","arcs":[996],"properties":{"scalerank":4}},{"type":"LineString","arcs":[997],"properties":{"scalerank":7}},{"type":"LineString","arcs":[998],"properties":{"scalerank":8}},{"type":"LineString","arcs":[999],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1000],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1001],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1002],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1003],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1004],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1005],"properties":{"scalerank":3}},{"type":"MultiLineString","arcs":[[1006],[1007]],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1008],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1009],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1010],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1011,1012],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1013],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1014],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1015],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1016],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1017],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1018],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1019],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1020],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1021],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1022],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1023],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1024],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1025],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1026],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1027],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1028],"properties":{"scalerank":3}},{"type":"MultiLineString","arcs":[[1029],[1030]],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1031],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1032],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1033],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1034],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1035],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1036],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1037],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1038],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1039],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1040],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1041],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1042],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1043],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1044],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1045],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1046],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1047],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1048],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1049],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1050],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1051],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1052],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1053],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1054],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1055],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1056],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1057],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1058],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1059],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1060],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1061],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1062],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1063],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1064],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1065],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1066],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1067],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1068],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1069],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1070],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1071],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1072],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1073],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1074],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1075],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1076],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1077],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1078],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1079],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1080],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1081],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1082],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1083],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1084],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1085],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1086],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1087],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1088],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1089],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1090],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1091],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1092],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1093],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1094],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1095],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1096],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1097],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1098],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1099],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1100],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1101],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1102],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1103],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1104],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1105],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1106],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1107],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1108],"properties":{"scalerank":4}},{"type":"MultiLineString","arcs":[[1109],[1110]],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1111],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1112],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1113],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1114],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1115],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1116],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1117],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1118],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1119],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1120],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1121],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1122],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1123],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1124],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1125],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1126],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1127],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1128],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1129],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1130],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1131],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1132],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1133],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1134],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1135],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1136],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1137],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1138],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1139],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1140],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1141],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1142],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1143],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1144],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1145],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1146],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1147],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1148],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1149],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1150],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1151],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1152],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1153],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1154],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1155],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1156],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1157],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1158],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1159],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1160],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1161],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1162],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1163],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1164],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1165],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1166],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1167],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1168],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1169],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1170],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1171],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1172],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1173],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1174],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1175],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1176],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1177],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1178],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1179],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1180],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1181],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1182],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1183],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1184],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1185],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1186],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1187],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1188],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1189],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1190],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1191],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1192],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1193],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1194],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1195],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1196],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1197],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1198],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1199],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1200],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1201],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1202],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1203],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1204],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1205],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1206],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1207],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1208],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1209],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1210],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1211],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1212],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1213],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1214],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1215],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1216],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1217],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1218],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1219],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1220],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1221],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1222],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1223],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1224],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1225],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1226],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1227],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1228],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1229],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1230],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1231],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1232],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1233],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1234],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1235],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1236],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1237],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1238],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1239],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1240],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1241],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1242],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1243],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1244],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1245],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1246],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1247],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1248],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1249],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1250],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1251],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1252],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1253],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1254],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1255],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1256],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1257],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1258],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1259],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1260],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1261],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1262],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1263],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1264],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1265],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1266],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1267],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1268],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1269],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1270],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1271],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1272],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1273],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1274],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1275],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1276],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1277],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1278],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1279],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1280],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1281],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1282],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1283,1284],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1285],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1286],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1287],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1288],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1289],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1290],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1291],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1292],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1293],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1294],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1295],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1296],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1297],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1298],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1299],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1300],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1301],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1302],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1303],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1304],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1305],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1306],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1307],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1308],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1309],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1310],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1311],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1312],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1313],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1314],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1315],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1316],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1317],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1318],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1319],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1320],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1321],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1322],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1323],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1324],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1325],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1326],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1327],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1328],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1329],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1330],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1331],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1332],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1333],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1334],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1335],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1336],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1337],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1338],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1339],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1340],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1341],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1342,1343],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1344],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1345],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1346],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1347],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1348],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1349],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1350],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1351],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1352],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1353],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1354],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1355],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1356],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1357],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1358],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1359],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1360],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1361],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1362],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1363],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1364],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1365],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1366],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1367],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1368],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1369],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1370],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1371],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1372],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1373],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1374],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1375],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1376],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1377],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1378],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1379],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1380],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1381],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1382],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1383],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1384],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1385],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1386],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1387],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1388],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1389],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1390],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1391],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1392],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1393],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1394],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1395],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1396],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1397],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1398],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1399],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1400],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1401],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1402],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1403],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1404],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1405],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1406],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1407],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1408],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1409],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1410],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1411],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1412],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1413],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1414],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1415],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1416],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1417],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1418],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1419],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1420],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1421],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1422],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1423],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1424],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1425],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1426],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1427],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1428],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1429],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1430],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1431],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1432],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1433],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1434],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1435],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1436],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1437],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1438],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1439],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1440],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1441],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1442],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1443],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1444],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1445],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1446],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1447],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1448],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1449],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1450],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1451],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1452],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1453],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1454],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1455],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1456],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1457],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1458],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1459],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1460],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1461],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1462],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1463],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1464,1465],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1466],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1467],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1468],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1469],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1470],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1471],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1472],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1473],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1474],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1475],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1476],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1477],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1478],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1479],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1480],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1481],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1482],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1483],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1484],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1485],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1486],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1487],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1488],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1489],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1490],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1491],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1492],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1493],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1494],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1495],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1496],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1497],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1498],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1499],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1500],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1501],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1502],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1503],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1504],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1505,1506],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1507],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1508],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1509],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1510],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1511],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1512],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1513],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1514],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1515],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1516],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1517],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1518],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1519],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1520],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1521],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1522],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1523],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1524],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1525],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1526],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1527],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1528],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1529],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1530],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1531],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1532],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1533],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1534],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1535],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1536],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1537],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1538],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1539],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1540],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1541],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1542,1543],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1544],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1545],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1546],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1547],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1548],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1549],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1550],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1551],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1552],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1553],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1554],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1555],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1556],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1557],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1558],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1559],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1560],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1561],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1562],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1563],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1564],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1565],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1566],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1567],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1568],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1569],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1570],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1571],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1572],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1573],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1574],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1575],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1576],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1577],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1578],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1579],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1580],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1581],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1582],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1583],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1584],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1585],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1586],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1587],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1588],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1589],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1590],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1591],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1592],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1593],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1594],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1595],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1596],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1597],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1598],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1599],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1600],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1601],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1602,1603],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1604],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1605],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1606],"properties":{"scalerank":7}},{"type":"MultiLineString","arcs":[[1607],[1608],[1609]],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1610],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1611],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1612],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1613],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1614],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1615],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1616],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1617],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1618],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1619],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1620],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1621],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1622],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1623],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1624],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1625],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1626],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1627],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1628],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1629],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1630],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1631],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1632],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1633],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1634],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1635],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1636],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1637],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1638],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1639],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1640],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1641],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1642],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1643],"properties":{"scalerank":3}},{"type":"MultiLineString","arcs":[[1644],[1645]],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1646],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1647],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1648],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1649],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1650],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1651],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1652],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1653],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1654],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1655],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1656],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1657],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1658],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1659],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1660],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1661],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1662],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1663],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1664],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1665],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1666],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1667],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1668],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1669],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1670],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1671],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1672],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1673],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1674],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1675],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1676],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1677],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1678],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1679],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1680],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1681],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1682],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1683],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1684],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1685],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1686],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1687],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1688],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1689],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1690],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1691],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1692],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1693],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1694],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1695],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1696],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1697],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1698],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1699],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1700],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1701],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1702],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1703],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1704],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1705],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1706],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1707],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1708],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1709],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1710],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1711],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1712],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1713],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1714],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1715],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1716],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1717],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1718],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1719],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1720],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1721],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1722],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1723],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1724],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1725],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1726],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1727],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1728],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1729],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1730],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1731],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1732],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1733],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1734],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1735],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1736],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1737],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1738],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1739],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1740],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1741],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1742],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1743],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1744],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1745],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1746,1747],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1748],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1749],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1750],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1751,1752],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1753],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1754],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1755],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1756],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1757],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1758],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1759],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1760],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1761],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1762],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1763],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1764],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1765],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1766],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1767],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1768],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1769],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1770],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1771],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1772],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1773],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1774],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1775],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1776],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1777],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1778],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1779],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1780],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1781],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1782],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1783],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1784],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1785],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1786],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1787],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1788],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1789],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1790],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1791],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1792],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1793],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1794],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1795],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1796],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1797],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1798],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1799],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1800],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1801],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1802],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1803],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1804],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1805],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1806],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1807],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1808],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1809],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1810],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1811],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1812],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1813],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1814],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1815],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1816],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1817],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1818],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1819],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1820],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1821],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1822],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1823],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1824],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1825],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1826],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1827],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1828],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1829],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1830],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1831],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1832],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1833],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1834],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1835],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1836],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1837],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1838],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1839],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1840],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1841],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1842],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1843],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1844,1845],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1846],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1847],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1848],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1849],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1850],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1851],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1852],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1853],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1854],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1855],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1856],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1857],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1858],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1859],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1860],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1861],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1862],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1863],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1864],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1865],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1866],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1867],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1868],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1869],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1870],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1871],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1872],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1873],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1874],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1875],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1876],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1877],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1878],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1879],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1880],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1881],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1882],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1883],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1884],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1885],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1886],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1887],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1888],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1889],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1890],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1891],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1892],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1893],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1894],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1895],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1896],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1897],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1898],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1899],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1900],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1901],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1902],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1903],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1904],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1905],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1906],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1907],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1908],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1909],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1910],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1911],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1912],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1913],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1914],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1915],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1916],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1917],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1918],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1919],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1920],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1921],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1922],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1923],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1924],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1925],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1926],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1927],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1928],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1929],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1930],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1931],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1932],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1933],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1934],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1935],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1936],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1937],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1938],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1939],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1940],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1941],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1942],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1943],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1944],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1945],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1946],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1947],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1948],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1949],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1950],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1951],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1952],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1953],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1954],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1955],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1956],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1957],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1958],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1959],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1960],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1961],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1962],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1963],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1964],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1965],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1966],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1967],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1968],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1969],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1970],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1971],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1972],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1973],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1974],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1975],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1976],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1977],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1978],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1979],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1980],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1981],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1982],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1983],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1984],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1985],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1986],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1987],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1988],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1989],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1990],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1991],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1992],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1993],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1994],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1995],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1996],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1997],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1998],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1999],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2000],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2001],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2002],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2003],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2004],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2005],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2006],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2007],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2008],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2009],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2010],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2011],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2012],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2013],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2014],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2015],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2016],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2017],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2018],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2019],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2020,2021],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2022],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2023],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2024],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2025],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2026],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2027],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2028],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2029],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2030],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2031],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2032],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2033],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2034],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2035],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2036],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2037],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2038],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2039],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2040],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2041],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2042],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2043],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2044],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2045],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2046],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2047],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2048],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2049],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2050],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2051],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2052],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2053],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2054],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2055],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2056],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2057],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2058],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2059],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2060],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2061],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2062],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2063],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2064],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2065],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2066],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2067],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2068],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2069],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2070],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2071],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2072],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2073],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2074],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2075],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2076],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2077],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2078],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2079],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2080],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2081],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2082],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2083],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2084],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2085],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2086],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2087],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2088],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2089],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2090],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2091],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2092],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2093],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2094],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2095],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2096],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2097],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2098],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2099],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2100],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2101],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2102],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2103],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2104],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2105],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2106],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2107],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2108],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2109],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2110],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2111],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2112],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2113],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2114],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2115],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2116],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2117],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2118],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2119],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2120],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2121],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2122],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2123],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2124],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2125],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2126],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2127],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2128],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2129],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2130],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2131],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2132],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2133],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2134],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2135],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2136],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2137],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2138],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2139],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2140],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2141],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2142],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2143],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2144],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2145],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2146],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2147],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2148],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2149],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2150],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2151],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2152],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2153],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2154],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2155],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2156],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2157],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2158],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2159],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2160],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2161],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2162],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2163],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2164],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2165],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2166],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2167],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2168],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2169],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2170],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2171],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2172],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2173],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2174],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2175],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2176],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2177],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2178],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2179],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2180],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2181],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2182],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2183],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2184],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2185],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2186],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2187],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2188],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2189],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2190],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2191],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2192],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2193],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2194],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2195],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2196],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2197],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2198],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2199],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2200],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2201],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2202],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2203],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2204],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2205],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2206],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2207],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2208],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2209],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2210],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2211],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2212],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2213],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2214],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2215],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2216],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2217],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2218],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2219],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2220],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2221],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2222],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2223],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2224],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2225],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2226],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2227],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2228],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2229],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2230,2231],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2232],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2233],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2234],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2235],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2236],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2237],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2238],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2239],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2240],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2241],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2242],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2243],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2244],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2245],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2246],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2247],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2248],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2249],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2250],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2251],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2252],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2253],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2254],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2255],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2256],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2257],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2258],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2259],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2260],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2261],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2262],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2263],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2264],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2265],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2266],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2267],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2268],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2269],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2270],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2271],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2272],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2273],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2274],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2275],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2276,2277],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2278],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2279],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2280],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2281],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2282],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2283],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2284],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2285],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2286],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2287],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2288],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2289],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2290],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2291],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2292],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2293],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2294],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2295],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2296],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2297],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2298],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2299],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2300],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2301],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2302],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2303],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2304],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2305],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2306],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2307],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2308],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2309],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2310],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2311],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2312],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2313],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2314],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2315],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2316],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2317],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2318],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2319],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2320],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2321],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2322],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2323],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2324],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2325],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2326],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2327],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2328],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2329],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2330],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2331],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2332],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2333],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2334],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2335],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2336],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2337],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2338],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2339],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2340],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2341],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2342],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2343],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2344],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2345],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2346],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2347],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2348],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2349],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2350],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2351],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2352],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2353],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2354],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2355],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2356],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2357],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2358],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2359],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2360],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2361],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2362],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2363],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2364],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2365],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2366],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2367],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2368],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2369],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2370],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2371],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2372],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2373],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2374],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2375],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2376],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2377],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2378],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2379],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2380],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2381],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2382],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2383],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2384],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2385],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2386],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2387],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2388],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2389],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2390],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2391],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2392],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2393],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2394],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2395],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2396],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2397],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2398],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2399],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2400],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2401],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2402],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2403],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2404],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2405],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2406],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2407],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2408],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2409],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2410],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2411],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2412],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2413],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2414],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2415],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2416],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2417],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2418],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2419],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2420],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2421],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2422],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2423],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2424],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2425],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2426],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2427,2428],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2429],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2430],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2431],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2432],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2433],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2434],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2435],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2436],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2437],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2438],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2439],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2440,2441],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2442],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2443],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2444],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2445],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2446],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2447],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2448],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2449],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2450],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2451],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2452],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2453],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2454],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2455,2456],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2457],"properties":{"scalerank":3}},{"type":"MultiLineString","arcs":[[2458],[2459]],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2460],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2461],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2462],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2463],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2464],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2465],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2466],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2467],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2468],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2469],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2470],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2471],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2472],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2473],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2474],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2475],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2476],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2477],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2478],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2479],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2480],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2481],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2482],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2483],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2484,2485],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2486,2487],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2488],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2489],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2490],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2491],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2492],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2493],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2494],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2495],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2496],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2497],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2498],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2499],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2500],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2501],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2502],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2503],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2504],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2505],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2506],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2507],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2508],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2509],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2510],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2511],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2512],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2513],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2514],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2515],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2516],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2517],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2518],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2519],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2520],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2521],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2522],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2523],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2524],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2525],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2526],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2527],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2528],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2529],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2530],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2531],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2532],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2533],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2534],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2535],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2536],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2537],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2538],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2539],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2540],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2541],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2542],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2543],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2544],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2545],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2546],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2547],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2548],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2549],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2550,2551],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2552],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2553],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2554],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2555],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2556],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2557],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2558],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2559],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2560],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2561],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2562],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2563],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2564],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2565],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2566],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2567],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2568],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2569],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2570],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2571],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2572],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2573],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2574],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2575],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2576],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2577],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2578],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2579],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2580],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2581],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2582],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2583],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2584],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2585],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2586],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2587],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2588],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2589],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2590],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2591],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2592],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2593],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2594],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2595],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2596],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2597],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2598],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2599],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2600],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2601],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2602],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2603],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2604],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2605],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2606],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2607],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2608],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2609],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2610],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2611],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2612],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2613],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2614],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2615],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2616],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2617],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2618],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2619,2620],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2621],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2622],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2623],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2624],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2625],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2626],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2627],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2628],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2629,2630],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2631],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2632],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2633],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2634],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2635],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2636],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2637],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2638],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2639],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2640],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2641],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2642],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2643],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2644],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2645],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2646],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2647],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2648],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2649],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2650],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2651],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2652],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2653],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2654],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2655],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2656],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2657],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2658],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2659],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2660],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2661],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2662],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2663],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2664],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2665],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2666],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2667],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2668],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2669],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2670],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2671],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2672],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2673],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2674],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2675],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2676],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2677],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2678],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2679],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2680],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2681],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2682],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2683],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2684],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2685],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2686],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2687],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2688],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2689],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2690],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2691],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2692],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2693],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2694],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2695],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2696],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2697],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2698],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2699],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2700],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2701],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2702],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2703],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2704],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2705],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2706],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2707],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2708],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2709],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2710,2711],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2712],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2713],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2714],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2715],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2716],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2717],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2718],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2719,2720],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2721],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2722],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2723],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2724],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2725],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2726],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2727],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2728],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2729],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2730],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2731],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2732,2733],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2734],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2735],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2736],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2737,2738],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2739],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2740],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2741,2742],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2743],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2744],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2745],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2746],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2747],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2748],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2749],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2750],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2751],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2752],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2753],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2754],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2755],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2756],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2757],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2758],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2759],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2760],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2761],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2762],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2763],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2764],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2765],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2766],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2767],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2768],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2769],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2770],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2771],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2772,2773],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2774],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2775],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2776],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2777],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2778],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2779],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2780],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2781],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2782],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2783],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2784,2785],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2786],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2787],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2788],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2789],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2790],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2791],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2792],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2793],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2794],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2795],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2796],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2797],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2798],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2799],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2800],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2801],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2802],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2803],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2804],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2805],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2806],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2807],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2808,2809],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2810],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2811],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2812],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2813],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2814],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2815],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2816],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2817],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2818],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2819],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2820],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2821],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2822],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2823,2824],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2825],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2826],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2827],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2828],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2829],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2830],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2831],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2832],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2833],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2834],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2835],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2836],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2837],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2838],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2839],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2840],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2841],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2842],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2843],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2844],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2845],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2846],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2847],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2848],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2849],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2850],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2851],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2852],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2853],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2854],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2855],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2856],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2857],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2858],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2859],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2860],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2861],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2862],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2863],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2864],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2865],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2866],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2867],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2868],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2869],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2870],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2871],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2872],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2873],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2874],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2875],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2876],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2877],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2878],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2879],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2880],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2881],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2882],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2883,2884],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2885],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2886],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2887],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2888],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2889],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2890],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2891],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2892],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2893],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2894],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2895],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2896],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2897],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2898],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2899],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2900],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2901,2902],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2903],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2904],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2905],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2906],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2907],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2908],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2909],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2910,2911],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2912],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2913],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2914],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2915],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2916],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2917],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2918],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2919],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2920],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2921],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2922],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2923],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2924],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2925],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2926],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2927,2928],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2929],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2930,2931],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2932],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2933],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2934],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2935],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2936],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2937],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2938],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2939],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2940],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2941],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2942],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2943],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2944],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2945],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2946],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2947],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2948],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2949],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2950],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2951],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2952],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2953],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2954],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2955],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2956],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2957],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2958],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2959],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2960],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2961],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2962],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2963],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2964],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2965],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2966],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2967],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2968],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2969,2970,2971,2972],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2973],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2974],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2975],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2976,2977],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2978],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2979],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2980],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2981],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2982],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2983],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2984],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2985],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2986],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2987],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2988],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2989],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2990],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2991],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2992],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2993],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2994],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2995],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2996],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2997,2998],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2999],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3000],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3001],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3002],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3003],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3004],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3005],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3006],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3007,3008],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3009],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3010],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3011],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3012],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3013],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3014],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3015],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3016],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3017],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3018],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3019],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3020,3021],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3022],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3023],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3024,3025,3026],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3027],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3028],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3029],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3030],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3031],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3032],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3033],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3034],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3035],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3036],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3037],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3038],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3039],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3040],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3041],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3042],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3043],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3044],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3045],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3046],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3047],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3048],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3049],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3050],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3051],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3052],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3053],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3054],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3055],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3056],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3057],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3058],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3059],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3060],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3061],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3062],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3063],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3064],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3065],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3066],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3067],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3068],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3069,3070],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3071],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3072],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3073],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3074],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3075],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3076],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3077],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3078],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3079],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3080],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3081],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3082],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3083],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3084],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3085],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3086],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3087],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3088],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3089],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3090],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3091],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3092],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3093],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3094],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3095],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3096],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3097],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3098],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3099],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3100],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3101],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3102],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3103],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3104],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3105],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3106],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3107],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3108],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3109],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3110],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3111],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3112],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3113],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3114],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3115],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3116],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3117],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3118],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3119],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3120],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3121],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3122],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3123],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3124],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3125],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3126],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3127],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3128],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3129],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3130],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3131],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3132],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3133],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3134],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3135],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3136],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3137],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3138],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3139],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3140],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3141],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3142],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3143],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3144],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3145],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3146],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3147],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3148],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3149],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3150],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3151],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3152],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3153],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3154],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3155],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3156],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3157],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3158],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3159],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3160],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3161],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3162],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3163],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3164],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3165],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3166],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3167],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3168],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3169],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3170],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3171],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3172],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3173],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3174],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3175],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3176],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3177],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3178],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3179],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3180],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3181],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3182],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3183],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3184],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3185],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3186],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3187],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3188],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3189],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3190],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3191],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3192],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3193],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3194],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3195],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3196],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3197],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3198],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3199],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3200],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3201],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3202],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3203],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3204],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3205],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3206],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3207],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3208,3209],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3210],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3211],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3212],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3213],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3214],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3215],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3216],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3217],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3218],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3219],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3220],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3221],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3222],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3223],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3224],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3225,3226,3227],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3228],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3229],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3230],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3231],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3232],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3233],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3234],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3235],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3236],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3237],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3238],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3239],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3240],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3241],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3242],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3243],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3244],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3245],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3246],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3247],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3248],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3249],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3250],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3251,3252],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3253],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3254],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3255],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3256],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3257],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3258],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3259],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3260],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3261],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3262],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3263],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3264],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3265],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3266],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3267],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3268],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3269],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3270],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3271],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3272],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3273],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3274],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3275],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3276],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3277],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3278],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3279],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3280],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3281],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3282],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3283],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3284],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3285],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3286],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3287],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3288],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3289],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3290],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3291],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3292],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3293],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3294],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3295],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3296],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3297],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3298],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3299],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3300],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3301],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3302],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3303],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3304],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3305],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3306],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3307],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3308],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3309],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3310],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3311],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3312],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3313],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3314],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3315],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3316],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3317],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3318],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3319],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3320],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3321],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3322],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3323],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3324],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3325],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3326],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3327],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3328],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3329],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3330],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3331],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3332],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3333],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3334],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3335],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3336],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3337],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3338],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3339],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3340],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3341],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3342],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3343],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3344],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3345],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3346],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3347],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3348],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3349],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3350],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3351],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3352],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3353],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3354],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3355],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3356],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3357],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3358],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3359],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3360],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3361],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3362],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3363],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3364],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3365],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3366],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3367],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3368],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3369,3370],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3371],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3372],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3373],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3374],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3375],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3376],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3377],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3378],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3379],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3380],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3381],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3382],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3383],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3384],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3385],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3386],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3387],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3388],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3389],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3390],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3391],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3392],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3393],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3394],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3395],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3396],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3397],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3398],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3399],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3400],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3401],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3402],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3403],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3404],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3405],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3406],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3407],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3408],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3409],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3410],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3411],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3412],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3413],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3414],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3415],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3416],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3417,3418],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3419],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3420],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3421],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3422],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3423],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3424],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3425],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3426],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3427],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3428],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3429],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3430],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3431],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3432],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3433],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3434],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3435],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3436],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3437],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3438],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3439],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3440],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3441,3442],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3443],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3444],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3445,3446],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3447],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3448],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3449],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3450,3451,3452],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3453],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3454],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3455],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3456],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3457],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3458],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3459],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3460],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3461],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3462],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3463],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3464],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3465,3466],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3467],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3468],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3469],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3470],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3471],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3472],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3473],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3474],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3475],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3476],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3477],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3478],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3479],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3480],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3481],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3482,3483],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3484],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3485],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3486],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3487],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3488],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3489],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3490],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3491],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3492],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3493],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3494],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3495],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3496],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3497],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3498],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3499],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3500],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3501],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3502],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3503],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3504,3505],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3506],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3507],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3508],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3509],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3510],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3511],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3512],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3513],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3514],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3515],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3516],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3517],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3518],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3519],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3520],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3521,3522],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3523],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3524],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3525],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3526],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3527],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3528],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3529],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3530],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3531],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3532],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3533],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3534],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3535],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3536],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3537],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3538],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3539],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3540],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3541],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3542],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3543],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3544],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3545],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3546],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3547],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3548],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3549],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3550],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3551],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3552],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3553],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3554],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3555],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3556],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3557],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3558],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3559],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3560],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3561],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3562],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3563],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3564],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3565],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3566],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3567],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3568],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3569],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3570],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3571],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3572],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3573],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3574],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3575],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3576],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3577],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3578],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3579],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3580],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3581],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3582],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3583],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3584],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3585],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3586],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3587],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3588],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3589],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3590],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3591],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3592],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3593],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3594],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3595],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3596],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3597],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3598],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3599],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3600],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3601],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3602],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3603],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3604],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3605],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3606],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3607],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3608],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3609],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3610],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3611],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3612],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3613],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3614],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3615],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3616,3617],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3618],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3619],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3620],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3621],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3622],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3623],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3624],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3625],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3626],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3627],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3628],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3629],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3630],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3631],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3632],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3633],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3634],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3635],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3636,3637],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3638],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3639],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3640,3641],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3642],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3643],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3644],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3645],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3646],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3647],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3648],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3649],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3650],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3651],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3652],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3653],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3654],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3655],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3656],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3657],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3658],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3659],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3660],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3661],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3662],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3663],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3664],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3665],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3666],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3667],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3668],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3669],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3670],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3671],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3672],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3673],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3674],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3675],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3676],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3677],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3678],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3679],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3680],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3681],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3682],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3683],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3684],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3685],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3686],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3687],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3688],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3689],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3690],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3691],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3692],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3693],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3694],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3695],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3696],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3697],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3698],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3699],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3700,3701],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3702],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3703],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3704],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3705],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3706],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3707],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3708],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3709],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3710],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3711],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3712],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3713],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3714],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3715],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3716],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3717],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3718],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3719],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3720],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3721],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3722],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3723],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3724],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3725],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3726],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3727],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3728],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3729],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3730],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3731],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3732],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3733],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3734],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3735],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3736],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3737],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3738],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3739],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3740],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3741],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3742],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3743],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3744],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3745],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3746],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3747,3748],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3749],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3750],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3751],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3752],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3753],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3754],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3755],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3756],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3757],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3758],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3759],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3760],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3761],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3762],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3763],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3764],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3765],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3766],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3767],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3768],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3769],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3770],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3771],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3772],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3773],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3774],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3775],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3776],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3777],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3778],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3779],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3780],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3781],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3782],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3783],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3784],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3785],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3786],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3787],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3788],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3789],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3790],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3791],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3792],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3793],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3794],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3795],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3796],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3797],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3798],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3799],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3800],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3801],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3802],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3803],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3804],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3805],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3806],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3807],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3808],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3809],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3810,3811],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3812],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3813],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3814],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3815],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3816],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3817],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3818],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3819],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3820],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3821],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3822],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3823],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3824],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3825,3826],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3827],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3828],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3829],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3830],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3831],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3832],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3833],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3834],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3835],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3836],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3837],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3838],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3839],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3840],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3841],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3842,3843],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3844],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3845],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3846],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3847],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3848],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3849,3850,3851],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3852],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3853],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3854],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3855],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3856,3857],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3858],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3859],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3860,3861],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3862],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3863],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3864],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3865],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3866],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3867],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3868],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3869],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3870],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3871],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3872],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3873,3874,3875],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3876],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3877],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3878],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3879],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3880],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3881],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3882],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3883],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3884],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3885],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3886],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3887],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3888],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3889],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3890],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3891],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3892],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3893],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3894],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3895],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3896],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3897],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3898],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3899],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3900],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3901],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3902],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3903],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3904],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3905],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3906],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3907],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3908],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3909],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3910],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3911],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3912],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3913],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3914],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3915],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3916],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3917],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3918],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3919],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3920],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3921],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3922],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3923,3924],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3925],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3926],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3927],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3928],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3929],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3930],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3931],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3932],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3933],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3934],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3935],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3936],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3937],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3938],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3939],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3940],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3941],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3942],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3943],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3944],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3945],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3946],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3947],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3948],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3949],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3950],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3951],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3952],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3953,3954],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3955],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3956],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3957],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3958],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3959],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3960],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3961],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3962],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3963],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3964],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3965],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3966],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3967],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3968],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3969],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3970],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3971],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3972],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3973],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3974],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3975],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3976,3977,3978],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3979],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3980],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3981],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3982],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3983],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3984],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3985],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3986],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3987],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3988],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3989],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3990],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3991],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3992],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3993],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3994],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3995],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3996],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3997],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3998],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3999],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4000],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4001],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4002],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4003],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4004,4005],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4006],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4007],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4008],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4009],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4010,4011,4012],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4013],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4014],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4015],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4016],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4017],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4018],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4019],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4020],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4021],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4022],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4023],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4024],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4025],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4026],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4027],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4028,4029],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4030],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4031],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4032],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4033],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4034],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4035],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4036],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4037],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4038],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4039],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4040],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4041],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4042],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4043],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4044],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4045],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4046,4047],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4048],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4049],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4050],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4051],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4052],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4053],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4054],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4055],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4056],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4057],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4058],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4059],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4060],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4061],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4062],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4063],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4064],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4065],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4066],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4067],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4068],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4069],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4070],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4071],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4072],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4073],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4074],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4075],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4076],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4077],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4078],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4079,4080],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4081],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4082],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4083],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4084],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4085],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4086],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4087],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4088],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4089,4090],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4091],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4092],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4093],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4094],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4095],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4096],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4097,4098],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4099],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4100],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4101],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4102],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4103],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4104,4105],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4106],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4107],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4108],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4109],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4110],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4111],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4112],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4113],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4114],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4115],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4116],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4117],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4118],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4119],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4120],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4121],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4122],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4123],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4124],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4125],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4126],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4127],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4128],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4129],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4130,4131],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4132],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4133],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4134],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4135],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4136],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4137],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4138],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4139],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4140],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4141],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4142],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4143],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4144],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4145],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4146],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4147],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4148],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4149],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4150],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4151],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4152],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4153],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4154],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4155],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4156],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4157],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4158],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4159],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4160],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4161],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4162],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4163],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4164,4165],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4166],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4167],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4168],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4169],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4170],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4171],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4172],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4173],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4174],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4175],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4176],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4177],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4178],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4179],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4180],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4181],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4182],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4183],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4184],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4185],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4186],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4187],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4188],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4189],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4190],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4191],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4192],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4193],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4194],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4195],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4196],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4197],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4198],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4199],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4200],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4201,4202,4203],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4204,4205],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4206],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4207],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4208],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4209],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4210],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4211],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4212],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4213],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4214],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4215],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4216],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4217],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4218],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4219],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4220],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4221],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4222],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4223],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4224],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4225],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4226],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4227],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4228],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4229],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4230],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4231],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4232],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4233],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4234],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4235],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4236],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4237],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4238],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4239],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4240],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4241],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4242],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4243],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4244],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4245],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4246],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4247,4248,4249],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4250],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4251],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4252],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4253],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4254],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4255],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4256],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4257],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4258],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4259],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4260],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4261],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4262],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4263],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4264],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4265],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4266],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4267],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4268],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4269],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4270],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4271,4272],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4273],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4274],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4275],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4276],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4277],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4278],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4279],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4280],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4281],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4282,4283],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4284],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4285],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4286],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4287],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4288],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4289],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4290],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4291],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4292],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4293],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4294],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4295],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4296],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4297],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4298],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4299],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4300],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4301],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4302],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4303],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4304],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4305],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4306],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4307],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4308],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4309],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4310],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4311],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4312],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4313],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4314],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4315],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4316],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4317],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4318],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4319],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4320],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4321,4322],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4323],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4324],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4325],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4326],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4327],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4328],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4329],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4330],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4331],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4332],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4333,4334],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4335],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4336],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4337],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4338],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4339,4340],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4341],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4342],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4343],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4344],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4345],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4346],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4347,4348],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4349],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4350],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4351],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4352,4353],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4354],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4355],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4356],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4357],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4358],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4359],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4360],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4361],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4362],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4363],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4364],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4365],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4366,4367],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4368],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4369],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4370],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4371],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4372],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4373,4374],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4375],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4376],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4377],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4378],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4379],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4380],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4381],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4382],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4383],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4384],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4385],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4386],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4387],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4388],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4389],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4390],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4391],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4392],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4393],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4394],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4395],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4396],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4397],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4398],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4399],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4400],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4401],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4402],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4403,4404],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4405],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4406],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4407],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4408],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4409],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4410],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4411],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4412],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4413],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4414],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4415],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4416],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4417],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4418],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4419],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4420],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4421],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4422],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4423],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4424],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4425],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4426],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4427],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4428],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4429],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4430],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4431],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4432],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4433],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4434],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4435],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4436],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4437],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4438],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4439],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4440],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4441],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4442],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4443],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4444],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4445],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4446],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4447],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4448],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4449],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4450],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4451],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4452],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4453],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4454],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4455],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4456,4457],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4458],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4459],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4460],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4461],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4462],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4463],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4464],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4465],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4466],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4467],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4468],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4469],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4470],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4471,4472],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4473],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4474],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4475],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4476],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4477],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4478],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4479],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4480],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4481],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4482],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4483],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4484],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4485,4486],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4487],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4488],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4489],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4490],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4491],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4492],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4493],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4494],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4495],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4496],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4497],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4498],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4499],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4500],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4501],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4502],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4503],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4504],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4505],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4506],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4507],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4508],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4509],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4510],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4511],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4512,4513],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4514],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4515],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4516],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4517,4518],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4519],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4520],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4521,4522],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4523],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4524,4525],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4526],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4527],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4528],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4529],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4530],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4531],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4532],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4533,4534],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4535,4536],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4537],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4538],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4539],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4540],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4541],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4542],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4543],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4544],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4545],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4546],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4547],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4548],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4549],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4550],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4551],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4552],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4553],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4554],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4555],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4556],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4557],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4558],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4559],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4560],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4561],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4562],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4563],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4564],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4565],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4566],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4567],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4568],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4569],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4570],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4571],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4572],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4573],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4574],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4575],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4576],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4577],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4578],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4579],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4580],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4581],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4582,4583],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4584],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4585,4586],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4587],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4588],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4589],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4590],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4591],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4592],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4593],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4594],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4595,4596],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4597],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4598],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4599],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4600],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4601],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4602],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4603],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4604],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4605],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4606],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4607],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4608],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4609],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4610],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4611],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4612],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4613],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4614,4615],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4616],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4617],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4618],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4619],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4620],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4621],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4622],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4623],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4624],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4625],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4626],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4627],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4628],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4629],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4630],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4631],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4632],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4633],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4634],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4635],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4636],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4637],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4638],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4639],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4640],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4641],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4642],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4643],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4644],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4645],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4646],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4647],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4648],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4649],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4650],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4651],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4652],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4653],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4654],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4655],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4656],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4657],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4658],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4659],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4660],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4661],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4662],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4663],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4664],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4665],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4666],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4667],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4668],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4669],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4670],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4671],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4672],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4673],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4674],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4675],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4676],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4677],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4677],"properties":{"scalerank":7}},{"type":"LineString","arcs":[-4678],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4678],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4679],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4680],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4681],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4682],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4683],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4684],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4685],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4686],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4687],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4688],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4689],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4690],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4691],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4692],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4693],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4694],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4695],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4696],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4697],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4698],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4699],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4700],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4701],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4702],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4703],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4704],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4705],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4706],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4707],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4708],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4709],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4710],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4711],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4712],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4713],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4714],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4715],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4716],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4717],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4718],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4719],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4720],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4721],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4722],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4723],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4724],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4725],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4726],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4727],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4728],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4729],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4730],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4731],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4732],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4733],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4734],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4735],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4736],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4737],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4738],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4739],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4740],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4741],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4742],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4743],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4744],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4745],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4746],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4747],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4748],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4749],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4750],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4751],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4752],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4753],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4754],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4755],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4756],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4757],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4758],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4759],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4760,4761],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4762],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4763],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4764],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4765],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4766],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4767],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4768],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4769],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4770],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4771],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4772],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4773],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4774],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4775],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4776],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4777],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4778],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4779],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4780],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4781],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4782],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4783],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4784],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4785],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4786],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4787],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4788],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4789],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4790],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4791],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4792],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4793,4794],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4795],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4796],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4797],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4798],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4799],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4800],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4801],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4802],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4803],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4804],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4805],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4806],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4807],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4808],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4809],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4810],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4811],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4812],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4813],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4814],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4815],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4816],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4817],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4818],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4819],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4820],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4821],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4822],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4823],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4824],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4825],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4826],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4827],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4828],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4829],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4830],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4831],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4832],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4833],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4834],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4835],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4836],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4837],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4838],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4839],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4840],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4841],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4842],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4843],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4844],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4845],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4846],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4847],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4848],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4849],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4850],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4851],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4852],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4853],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4854],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4855],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4856],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4857],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4858],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4859],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4860],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4861],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4862],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4863],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4864],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4865],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4866],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4867],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4868],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4869],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4870],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4871],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4872],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4873],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4874],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4875],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4876,4877],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4878],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4879],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4880],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4881],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4882],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4883,4884],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4885],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4886],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4887],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4888],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4889],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4890],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4891],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4892],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4893],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4894],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4895],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4896],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4897],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4898],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4899],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4900],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4901],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4902],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4903],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4904],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4905],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4906,4907],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4908],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4909],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4910],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4911],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4912],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4913],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4914],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4915],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4916],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4917],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4918],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4919],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4920],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4921,4922],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4923],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4924],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4925],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4926],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4927],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4928],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4929],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4930],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4931],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4932],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4933],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4934],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4935],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4936],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4937],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4938],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4939],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4940],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4941],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4942],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4943],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4944],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4945],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4946],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4947],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4948],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4949],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4950],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4951,4952],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4953],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4954],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4955],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4956],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4957],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4958],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4959],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4960],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4961],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4962],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4963],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4964],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4965],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4966],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4967],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4968],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4969],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4970],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4971],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4972],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4973],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4974],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4975],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4976,4977],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4978],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4979],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4980],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4981],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4982],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4983],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4984],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4985],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4986],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4987],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4988],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4989],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4990],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4991],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4992],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4993],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4994],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4995],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4996],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4997],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4998],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4999,5000],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5001],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5002],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5003],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5004],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5005],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5006],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5007],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5008],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5009],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5010],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5011],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5012],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5013],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5014],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5015],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5016],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5017],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5018],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5019],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5020],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5021],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5022],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5023],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5024],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5025],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5026],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5027],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5028],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5029],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5030],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5031],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5032],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5033],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5034],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5035],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5036],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5037],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5038],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5039],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5040],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5041],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5042],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5043],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5044],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5045],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5046],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5047],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5048],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5049],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5050],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5051],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5052],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5053],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5054],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5055,5056],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5057],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5058],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5059],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5060],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5061],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5062],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5063,5064],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5065],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5066],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5067],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5068],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5069],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5070],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5071],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5072],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5073],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5074],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5075],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5076],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5077],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5078],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5079],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5080],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5081],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5082],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5083],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5084],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5085],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5086],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5087],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5088],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5089,5090],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5091],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5092],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5093],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5094],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5095],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5096],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5097],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5098],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5099],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5100],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5101],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5102],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5103],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5104],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5105],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5106],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5107],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5108],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5109],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5110],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5111],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5112],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5113],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5114],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5115],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5116],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5117],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5118],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5119],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5120],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5121],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5122,5123],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5124],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5125],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5126],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5127],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5128],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5129],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5130],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5131],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5132],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5133],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5134],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5135],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5136],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5137],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5138],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5139],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5140],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5141],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5142],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5143],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5144],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5145],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5146],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5147],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5148],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5149],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5150],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5151],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5152],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5153],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5154],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5155],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5156],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5157],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5158],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5159],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5160],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5161],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5162],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5163],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5164,5165],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5166],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5167],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5168],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5169],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5170],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5171],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5172],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5173],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5174],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5175],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5176],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5177],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5178],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5179],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5180],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5181],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5182],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5183],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5184],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5185],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5186],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5187],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5188],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5189],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5190],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5191],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5192],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5193],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5194],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5195],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5196],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5197],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5198],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5199],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5200],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5201],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5202],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5203],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5204],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5205],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5206],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5207],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5208],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5209],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5210],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5211],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5212],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5213],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5214],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5215],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5216],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5217],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5218],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5219,5220],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5221],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5222],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5223],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5224],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5225],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5226],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5227],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5228],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5229],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5230],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5231],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5232,5233,5234,5235,5236],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5237],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5238],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5239],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5240],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5241],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5242],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5243],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5244],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5245],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5246],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5247],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5248,5249],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5250],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5251],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5252],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5253],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5254],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5255],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5256],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5257,5258],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5259],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5260],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5261],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5262],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5263],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5264],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5265],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5266],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5267],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5268],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5269],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5270],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5271],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5272],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5273],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5274],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5275],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5276],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5277],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5278],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5279],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5280],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5281],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5282],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5283],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5284],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5285],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5286],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5287],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5288],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5289],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5290],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5291],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5292],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5293],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5294],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5295],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5296],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5297],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5298],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5299],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5300],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5301],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5302],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5303],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5304,5305],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5306],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5307],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5308],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5309],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5310],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5311],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5312],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5313],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5314],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5315],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5316],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5317],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5318],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5319],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5320],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5321],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5322],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5323],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5324],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5325],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5326],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5327],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5328],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5329],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5330],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5331],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5332],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5333],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5334],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5335],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5336],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5337],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5338],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5339],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5340],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5341],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5342],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5343],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5344],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5345],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5346],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5347],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5348],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5349],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5350],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5351],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5352],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5353],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5354],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5355],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5356],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5357],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5358],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5359],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5360],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5361],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5362],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5363],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5364],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5365],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5366],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5367],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5368,5369],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5370],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5371],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5372,5373],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5374],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5375],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5376],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5377],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5378],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5379],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5380],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5381],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5382],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5383],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5384],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5385],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5386],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5387],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5388],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5389],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5390],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5391],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5392],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5393],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5394],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5395],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5396],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5397],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5398],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5399],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5400],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5401],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5402],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5403],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5404],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5405],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5406],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5407],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5408],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5409],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5410],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5411],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5412],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5413,5414],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5415],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5416],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5417],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5418],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5419],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5420],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5421],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5422],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5423],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5424],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5425],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5426],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5427],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5428],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5429],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5430],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5431],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5432],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5433],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5434,5435],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5436],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5437,5438],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5439],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5440],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5441],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5442],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5443],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5444],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5445],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5446,5447,5448],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5449],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5450],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5451],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5452],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5453],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5454],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5455],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5456],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5457],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5458],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5459],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5460],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5461],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5462],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5463],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5464],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5465],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5466],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5467],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5468],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5469],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5470],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5471],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5472],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5473],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5474],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5475],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5476],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5477],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5478],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5479],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5480],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5481],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5482],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5483],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5484],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5485],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5486],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5487],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5488],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5489,5490,5491],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5492],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5493],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5494],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5495],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5496],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5497],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5498],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5499],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5500,5501,5502],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5503],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5504],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5505],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5506],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5507],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5508],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5509],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5510],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5511],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5512],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5513],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5514],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5515],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5516,5517],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5518],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5519],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5520],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5521],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5522],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5523],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5524],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5525],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5526],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5527],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5528],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5529],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5530],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5531],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5532],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5533],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5534],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5535],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5536],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5537],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5538],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5539],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5540],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5541],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5542],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5543],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5544],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5545],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5546],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5547],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5548],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5549],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5550],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5551],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5552],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5553],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5554],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5555],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5556],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5557],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5558],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5559],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5560],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5561],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5562],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5563],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5564],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5565],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5566],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5567],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5568,5569],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5570],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5571],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5572],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5573],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5574],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5575],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5576],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5577],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5578],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5579],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5580],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5581],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5582],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5583],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5584],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5585],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5586],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5587],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5588],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5589],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5590],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5591],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5592,5593],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5594,5595],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5596],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5597,5598],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5599],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5600],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5601],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5602,5603],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5604],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5605],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5606],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5607],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5608],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5609],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5610],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5611],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5612],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5613],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5614],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5615],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5616],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5617],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5618],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5619],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5620],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5621,5622],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5623],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5624],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5625],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5626],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5627],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5628],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5629],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5630],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5631],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5632],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5633],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5634],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5635],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5636],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5637],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5638],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5639],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5640],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5641],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5642],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5643],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5644],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5645],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5646],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5647],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5648],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5649],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5650],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5651],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5652],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5653],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5654],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5655],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5656],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5657],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5658],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5659],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5660],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5661],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5662],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5663],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5664],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5665],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5666],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5667],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5668],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5669],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5670],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5671],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5672],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5673,5674],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5675],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5676],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5677],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5678],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5679],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5680],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5681],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5682],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5683],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5684],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5685],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5686],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5687],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5688],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5689],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5690],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5691],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5692],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5693],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5694],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5695],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5696],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5697],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5698],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5699],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5700],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5701,5702],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5703],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5704],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5705],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5706],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5707],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5708,5709],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5710],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5711],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5712],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5713],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5714],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5715],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5716],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5717],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5718],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5719],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5720],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5721],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5722],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5723,5724],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5725],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5726],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5727],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5728],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5729],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5730],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5731],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5732],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5733],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5734],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5735],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5736],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5737],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5738],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5739],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5740],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5741],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5742],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5743],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5744],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5745],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5746],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5747],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5748],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5749],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5750],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5751],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5752,5753],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5754],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5755],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5756],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5757],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5758],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5759],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5760],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5761],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5762],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5763],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5764],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5765,5766],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5767],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5768],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5769],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5770],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5771],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5772],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5773],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5774],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5775],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5776],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5777],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5778],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5779],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5780],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5781],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5782],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5783],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5784],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5785],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5786],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5787],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5788],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5789],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5790,5791],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5792],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5793],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5794],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5795],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5796],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5797],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5798],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5799],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5800],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5801],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5802],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5803],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5804],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5805],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5806],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5807],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5808],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5809],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5810],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5811],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5812],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5813],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5814],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5815],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5816],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5817],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5818],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5819],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5820],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5821],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5822],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5823],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5824],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5825],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5826],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5827,5828],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5829],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5830],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5831],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5832],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5833],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5834],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5835],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5836,5837],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5838],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5839],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5840],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5841],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5842],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5843],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5844],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5845],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5846],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5847],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5848],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5849],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5850],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5851],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5852],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5853],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5854],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5855],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5856],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5857],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5858],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5859],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5860],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5861],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5862],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5863],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5864],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5865],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5866],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5867],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5868],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5869],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5870],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5871],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5872],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5873],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5874],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5875],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5876],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5877],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5878],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5879],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5880],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5881],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5882],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5883],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5884],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5885],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5886],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5887],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5888],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5889],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5890],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5891],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5892],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5893],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5894],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5895],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5896],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5897],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5898],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5899],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5900],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5901],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5902],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5903],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5904],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5905],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5906],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5907],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5908],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5909],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5910,5911],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5912],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5913],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5914],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5915],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5916],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5917],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5918],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5919],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5920],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5921],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5922],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5923],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5924],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5925],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5926],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5927],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5928],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5929],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5930],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5931,5932],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5933],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5934],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5935],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5936],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5937],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5938],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5939],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5940],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5941],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5942],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5943],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5944],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5945],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5946],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5947],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5948],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5949],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5950],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5951],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5952],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5953],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5954],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5955],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5956],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5957],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5958],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5959],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5960],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5961],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5962],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5963],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5964],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5965],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5966],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5967],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5968],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5969],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5970],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5971],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5972],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5973],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5974],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5975],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5976],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5977],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5978],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5979],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5980],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5981],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5982,5983,5984],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5985],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5986,5987],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5988,5989],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5990],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5991],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5992],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5993],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5994],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5995],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5996],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5997],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5998],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5999],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6000],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6001],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6002],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6003],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6004],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6005],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6006],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6007],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6008],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6009],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6010],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6011],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6012],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6013],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6014],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6015],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6016],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6017],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6018],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6019],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6020],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6021],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6022],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6023],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6024],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6025],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6026],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6027],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6028],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6029],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6030],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6031],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6032],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6033],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6034],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6035],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6036],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6037],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6038],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6039],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6040],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6041],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6042],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6043],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6044],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6045],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6046],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6047],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6048,6049],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6050],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6051],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6052],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6053,6054,6055],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6056],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6057],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6058],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6059],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6060],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6061],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6062],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6063],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6064],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6065],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6066],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6067,6068],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6069],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6070],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6071],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6072],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6073],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6074],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6075],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6076],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6077],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6078],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6079],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6080],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6081],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6082],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6083],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6084],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6085],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6086],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6087],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6088],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6089],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6090],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6091],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6092],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6093],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6094],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6095],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6096],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6097],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6098],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6099],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6100],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6101],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6102],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6103],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6104],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6105],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6106],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6107],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6108],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6109],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6110],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6111],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6112,6113],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6114],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6115],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6116],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6117],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6118],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6119],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6120],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6121],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6122],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6123],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6124],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6125],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6126],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6127],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6128],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6129],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6130],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6131],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6132],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6133],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6134],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6135],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6136],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6137],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6138],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6139],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6140],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6141],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6142],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6143],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6144],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6145],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6146],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6147],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6148],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6149],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6150],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6151,6152],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6153],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6154],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6155],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6156],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6157],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6158],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6159],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6160],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6161],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6162],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6163],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6164],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6165],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6166],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6167],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6168],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6169],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6170],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6171],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6172],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6173],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6174],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6175],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6176],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6177],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6178],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6179],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6180],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6181],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6182],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6183],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6184,6185],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6186],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6187],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6188],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6189],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6190,6191],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6192],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6193],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6194],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6195],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6196],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6197],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6198],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6199],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6200],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6201],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6202],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6203],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6204],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6205],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6206],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6207],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6208],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6209],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6210],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6211],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6212],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6213],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6214],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6215],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6216],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6217],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6218],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6219],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6220],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6221],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6222],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6223],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6224],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6225],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6226],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6227],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6228],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6229],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6230],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6231],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6232],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6233],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6234],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6235],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6236],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6237],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6238],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6239],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6240],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6241],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6242],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6243],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6244],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6245],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6246],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6247],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6248],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6249],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6250],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6251],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6252],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6253],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6254],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6255],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6256],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6257],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6258,6259],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6260],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6261],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6262],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6263],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6264],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6265],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6266],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6267],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6268],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6269],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6270],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6271],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6272],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6273],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6274],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6275],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6276],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6277],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6278],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6279],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6280],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6281],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6282],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6283],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6284],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6285],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6286],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6287],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6288],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6289],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6290],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6291],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6292],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6293],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6294],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6295],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6296],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6297],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6298],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6299],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6300],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6301],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6302],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6303],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6304],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6305],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6306],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6307],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6308],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6309],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6310],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6311],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6312],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6313,6314],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6315],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6316],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6317],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6318],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6319],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6320],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6321],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6322],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6323],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6324],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6325],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6326],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6327],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6328],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6329],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6330],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6331],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6332],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6333],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6334],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6335],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6336],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6337],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6338],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6339],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6340],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6341],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6342],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6343,6344],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6345],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6346],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6347],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6348],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6349],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6350],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6351],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6352],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6353],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6354],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6355],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6356],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6357],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6358],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6359],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6360],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6361],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6362],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6363],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6364],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6365],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6366],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6367],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6368,6369,6370,6371,6372],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6373],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6374],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6375],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6376],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6377],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6378],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6379],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6380],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6381],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6382],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6383],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6384],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6385],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6386],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6387],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6388],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6389],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6390],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6391],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6392],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6393],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6394],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6395,6396],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6397],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6398],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6399],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6400,6401],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6402,6403],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6404],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6405],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6406],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6407],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6408],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6409],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6410],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6411],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6412],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6413],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6414],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6415],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6416],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6417],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6418],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6419,6420],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6421],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6422],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6423],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6424],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6425],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6426],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6427],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6428],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6429],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6430],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6431],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6432],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6433],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6434,6435],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6436],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6437],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6438],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6439],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6440],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6441],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6442],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6443],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6444],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6445],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6446],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6447],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6448],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6449],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6450],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6451],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6452],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6453],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6454],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6455],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6456],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6457],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6458],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6459],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6460],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6461],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6462],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6463],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6464],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6465],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6466,6467],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6468],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6469],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6470],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6471],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6472],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6473],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6474],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6475],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6476],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6477],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6478],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6479],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6480],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6481],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6482],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6483],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6484],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6485],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6486],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6487],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6488],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6489],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6490],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6491],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6492],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6493],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6494],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6495],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6496],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6497],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6498],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6499],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6500],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6501],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6502],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6503],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6504],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6505],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6506],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6507],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6508],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6509],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6510],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6511],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6512],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6513],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6514],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6515],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6516],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6517],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6518],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6519],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6520],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6521],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6522],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6523],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6524],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6525],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6526],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6527],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6528],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6529],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6530],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6531],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6532],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6533],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6534],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6535],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6536],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6537],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6538],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6539],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6540],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6541],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6542],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6543],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6544],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6545],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6546],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6547],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6548],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6549],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6550],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6551],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6552],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6553],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6554,6555,6556],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6557],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6558,6559],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6560],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6561],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6562],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6563],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6564],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6565],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6566],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6567],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6568],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6569],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6570],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6571],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6572],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6573],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6574],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6575],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6576],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6577],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6578],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6579],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6580],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6581],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6582],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6583],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6584],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6585],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6586],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6587],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6588],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6589],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6590],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6591],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6592,6593],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6594],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6595],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6596],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6597],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6598,6599],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6600,6601],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6602],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6603],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6604],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6605],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6606],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6607],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6608],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6609],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6610],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6611],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6612],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6613],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6614],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6615],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6616],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6617],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6618],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6619],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6620],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6621],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6622,6623],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6624],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6625],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6626],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6627],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6628],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6629],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6630],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6631],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6632],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6633],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6634],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6635],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6636],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6637],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6638],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6639,6640],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6641],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6642],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6643],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6644],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6645],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6646],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6647],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6648],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6649],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6650],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6651],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6652],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6653],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6654],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6655],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6656],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6657],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6658],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6659],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6660],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6661,6662,6663],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6664],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6665],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6666,6667],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6668],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6669],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6670],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6671],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6672],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6673],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6674],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6675,6676],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6677],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6678],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6679],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6680],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6681],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6682],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6683],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6684],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6685],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6686],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6687],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6688],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6689],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6690],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6691],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6692],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6693],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6694],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6695],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6696],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6697],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6698],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6699],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6700],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6701],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6702],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6703],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6704],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6705],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6706],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6707],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6708],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6709],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6710],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6711],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6712],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6713],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6714],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6715],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6716],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6717],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6718],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6719],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6720],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6721],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6722],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6723],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6724],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6725],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6726],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6727],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6728],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6729],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6730],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6731],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6732],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6733],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6734],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6735],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6736],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6737],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6738],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6739],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6740],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6741],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6742],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6743,6744],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6745],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6746],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6747],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6748],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6749],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6750],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6751],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6752],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6753],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6754],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6755],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6756],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6757],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6758],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6759],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6760],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6761],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6762],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6763],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6764],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6765],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6766],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6767],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6768],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6769],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6770],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6771],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6772],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6773],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6774],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6775],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6776],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6777],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6778],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6779],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6780],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6781],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6782],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6783],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6784],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6785],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6786],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6787],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6788],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6789,6790],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6791],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6792],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6793],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6794],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6795],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6796],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6797,6798],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6799],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6800],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6801],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6802],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6803],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6804],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6805],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6806],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6807],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6808],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6809],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6810],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6811],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6812],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6813],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6814],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6815],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6816],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6817],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6818],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6819],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6820],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6821],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6822],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6823],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6824],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6825],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6826],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6827],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6828],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6829],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6830],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6831],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6832],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6833],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6834],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6835],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6836],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6837],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6838],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6839],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6840],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6841],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6842],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6843],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6844],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6845],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6846],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6847],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6848],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6849],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6850],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6851],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6852],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6853],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6854],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6855],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6856],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6857],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6858],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6859],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6860],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6861],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6862],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6863],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6864],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6865],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6866],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6867],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6868],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6869],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6870],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6871],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6872],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6873],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6874],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6875],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6876],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6877],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6878],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6879],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6880],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6881],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6882],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6883],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6884],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6885],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6886],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6887],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6888],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6889],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6890],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6891],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6892],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6893],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6894],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6895],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6896],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6897],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6898],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6899],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6900],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6901],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6902],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6903],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6904],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6905,6906],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6907],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6908],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6909],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6910,6911],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6912],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6913],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6914],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6915],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6916],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6917],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6918,6919,6920],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6921],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6922],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6923],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6924],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6925],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6926],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6927],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6928],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6929],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6930],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6931],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6932],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6933,6934],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6935],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6936],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6937],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6938],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6939],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6940],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6941],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6942],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6943],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6944],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6945],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6946,6947],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6948],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6949],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6950],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6951,6952,6953,6954],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6955],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6956],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6957],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6958],"properties":{"scalerank":8}},{"type":"LineString","arcs":[-6958],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6959],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6960],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6961],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6962],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6963],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6964,6965],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6966],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6967],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6968],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6969],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6970],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6971],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6972],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6973],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6974],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6959],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6975],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6976],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6977],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6978],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6979],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6980],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6981],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6982],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6983],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6984],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6985],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6986],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6987],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6988],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6989],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6990],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6991],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6992],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6993],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6994],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6995],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6996],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6997],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6998],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6999],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7000],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7001],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7002],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7003],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7004],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7005],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7006],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7007],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7008],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7009],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7010],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7011],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7012],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7013],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7014],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7015],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7016],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7017],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7018],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7019],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7020],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7021],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7022],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7023],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7024],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7025],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7026],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7027],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7028],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7029],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7030],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7031],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7032],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7033],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7034],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7035],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7036],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7037],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7038],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7039],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7040],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7041],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7042],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7043,7044,7045],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7046],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7047],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7048],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7049],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7050],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7051],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7052],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7053],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7054],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7055],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7056],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7057],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7058],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7059],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7060],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7061],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7062],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7063],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7064],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7065,7066],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7067],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7068],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7069],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7070],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7071,7072,7073],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7074],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7075],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7076],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7077],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7078],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7079],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7080],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7081],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7082],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7083],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7084],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7085],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7086],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7087],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7088],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7089],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7090],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7091],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7092],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7093],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7094],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7095],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7096],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7097,7098],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7099],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7100],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7101],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7102],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7103],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7104],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7105],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7106],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7107],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7108],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7109],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7110],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7111],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7112],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7113],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7114],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7115],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7116],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7117],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7118],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7119],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7120],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7121],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7122],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7123],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7124],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7125],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7126],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7127],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7128],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7129],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7130],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7131],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7132],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7133,7134],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7135],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7136],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7137],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7138],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7139],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7140],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7141],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7142],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7143],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7144],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7145],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7146],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7147],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7148],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7149],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7150],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7151],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7152],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7153],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7154],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7155],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7156],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7157],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7158],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7159],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7160],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7161],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7162],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7163],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7164],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7165],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7166],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7167],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7168],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7169],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7170],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7171],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7172],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7173],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7174],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7175],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7176],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7177],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7178],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7179],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7180,7181],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7182],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7183],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7184],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7185],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7186],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7187],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7188],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7189],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7190],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7191],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7192],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7193],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7194],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7195],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7196],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7197],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7198],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7199],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7200],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7201],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7202],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7203],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7204],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7205],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7206],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7207,7208],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7209],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7210],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7211],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7212],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7213],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7214],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7215],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7216,7217],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7218],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7219],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7220],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7221],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7222],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7223],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7224],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7225],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7226],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7227],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7228],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7229],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7230],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7231],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7232],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7233],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7234],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7235],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7236],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7237],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7238],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7239],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7240],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7241],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7242],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7243],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7244],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7245],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7246],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7247],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7248],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7249],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7250],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7251],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7252],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7253],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7254],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7255],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7256],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7257],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7258],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7259],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7260],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7261],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7262],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7263],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7264],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7265],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7266],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7267],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7268],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7269],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7270],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7271],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7272],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7273],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7274],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7275],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7276],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7277],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7278],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7279,7280],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7281],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7282],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7283],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7284],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7285],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7286],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7287],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7288],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7289,7290],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7291],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7292,7293],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7294],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7295],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7296],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7297],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7298],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7299],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7300],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7301],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7302],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7303],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7304],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7305],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7306],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7307],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7308],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7309],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7310],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7311],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7312],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7313],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7314],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7315],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7316],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7317],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7318],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7319],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7320],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7321],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7322],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7323],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7324],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7325],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7326,7327],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7328],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7329],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7330],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7331],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7332],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7333],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7334],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7335],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7336,7337],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7338,7339],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7340],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7341],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7342],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7343],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7344],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7345],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7346],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7347],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7348],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7349],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7350],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7351],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7352],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7353],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7354],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7355],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7356],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7357],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7358],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7359],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7360],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7361],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7362],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7363],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7364,7365],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7366],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7367],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7368,7369],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7370],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7371],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7372],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7373],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7374],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7375],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7376],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7377],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7378],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7379],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7380],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7381],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7382],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7383],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7384],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7385],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7386],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7387],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7388],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7389],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7390],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7391],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7392],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7393],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7394],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7395],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7396],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7397],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7398],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7399],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7400],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7401],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7402],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7403],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7404],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7405],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7406],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7407],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7408,7409],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7410],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7411],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7412],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7413],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7414],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7415],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7416],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7417],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7418],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7419],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7420],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7421],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7422],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7423],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7424],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7425],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7426],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7427],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7428],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7429],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7430],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7431],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7432],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7433],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7434],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7435],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7436],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7437],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7438],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7439,7440],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7441],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7442],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7443],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7444],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7445],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7446],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7447],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7448],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7449],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7450],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7451],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7452],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7453],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7454],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7455],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7456],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7457],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7458],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7459],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7460],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7461],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7462],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7463],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7464],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7465],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7466],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7467],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7468],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7469],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7470],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7471],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7472],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7473],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7474],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7475],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7476],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7477],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7478],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7479],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7480],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7481],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7482],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7483],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7484],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7485],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7486],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7487],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7488],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7489],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7490],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7491,7492],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7493],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7494],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7495],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7496],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7497],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7498,7499,7500],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7501,7502],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7503],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7504],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7505],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7506],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7507],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7508],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7509],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7510],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7511],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7512],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7513],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7514],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7515],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7516],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7517],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7518],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7519],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7520],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7521],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7522],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7523],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7524],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7525],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7526],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7527],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7528,7529],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7530],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7531],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7532],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7533],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7534],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7535],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7536],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7537],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7538],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7539],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7540],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7541],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7542],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7543],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7544],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7545],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7546],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7547],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7548],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7549],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7550],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7551],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7552],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7553],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7554],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7555],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7556],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7557],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7558],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7559],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7560],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7561],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7562],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7563],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7564],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7565],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7566],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7567],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7568],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7569],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7570],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7571],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7572],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7573],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7574],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7575],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7576],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7577],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7578],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7579],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7580],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7581],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7582],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7583],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7584],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7585],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7586],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7587],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7588],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7589],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7590,7591],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7592],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7593],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7594],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7595],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7596],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7597],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7598],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7599],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7600],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7601],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7602],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7603],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7604],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7605],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7606],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7607],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7608],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7609],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7610],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7611],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7612],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7613],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7614],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7615,7616],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7617],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7618],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7619],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7620],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7621],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7622],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7623],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7624],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7625],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7626],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7627],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7628],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7629],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7630],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7631],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7632],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7633],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7634],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7635],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7636],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7637],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7638],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7639],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7640],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7641],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7642],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7643,7644],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7645],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7646],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7647],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7648],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7649],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7650],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7651],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7652],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7653],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7654],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7655],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7656],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7657],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7658],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7659],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7660],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7661],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7662],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7663],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7664,7665,7666],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7667],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7668],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7669],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7670],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7671],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7672],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7673],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7674],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7675],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7676],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7677],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7678],"properties":{"scalerank":7}}]}},"arcs":[[[43140,32860],[-55,70],[-68,1654],[13,709],[-98,1079],[96,1168],[-40,693],[-475,834],[-53,368]],[[68084,58298],[102,223],[406,489],[629,-185],[449,-259]],[[65475,26964],[268,-24]],[[90435,40401],[115,-708]],[[90553,39691],[109,-441]],[[36154,32299],[200,-708],[22,-558],[300,-1045],[113,-943],[84,-1203],[132,-771],[142,-149]],[[37150,26922],[239,-176],[375,-531],[-2,-364]],[[7293,29194],[-256,-101],[-302,61],[-237,227],[60,375],[-157,296],[-369,94],[-176,211],[-132,-204],[-345,256],[-228,27],[-404,285],[-179,-156],[-536,483],[-335,102]],[[3542,20860],[308,-1244],[248,-325],[90,-379],[223,-43],[203,-368],[109,-467],[-19,-310]],[[42081,11541],[-396,-111],[-825,-83],[-151,77],[-647,-198],[-1366,-177],[-38,633],[-187,96]],[[12075,31504],[-460,-206],[-349,-339],[-188,-654],[-148,-848],[-5,-577],[-271,200],[-338,-305],[-191,92],[-344,-330],[-29,-303]],[[9753,28227],[-282,-203],[-3,-147],[-433,-418],[-72,-272],[-431,-364],[-263,-101],[-151,-209]],[[11120,22405],[129,57],[240,655],[304,145],[-43,613],[398,567],[297,797],[275,995]],[[5726,11982],[-334,-819],[-132,-34],[-242,-575],[-399,-239],[-59,-175]],[[4002,12984],[264,-363],[93,-327],[2,-775],[-70,-131],[147,-433]],[[2130,24894],[-170,313],[-304,108],[-411,-36]],[[1132,27044],[75,-13],[37,-603],[-35,-588],[36,-561]],[[14983,22309],[-116,365],[7,436],[-133,628],[119,221],[-77,435],[-381,574]],[[11906,33160],[234,-849],[26,-482],[-91,-325]],[[31058,35241],[-390,-87],[-262,92],[-692,74],[-142,81],[-549,44],[-728,-214],[-341,-250],[-54,70],[-839,345],[-952,-252]],[[25055,34080],[78,-451],[346,-19],[245,-227],[134,-275],[-33,-321],[92,-775],[206,-449],[23,-478],[173,-885],[-22,-720],[-75,-453],[-366,-319],[-219,-516],[-310,-213]],[[24338,32121],[96,106],[22,722],[-155,671],[618,195],[146,288]],[[22187,28785],[-462,1],[-489,539],[-300,215],[-756,25]],[[20173,29570],[-648,-282],[-712,-197],[-258,-328]],[[22095,33485],[-125,-390],[-203,-118],[-83,-255],[-332,-401],[-181,-106],[-294,-892],[-237,-547],[-300,-910],[-174,-318]],[[18390,36241],[1256,424],[512,93],[319,-231],[173,289],[254,147],[280,346],[368,87],[270,-296],[412,139]],[[8929,44309],[392,-331],[104,95],[588,116]],[[53775,77635],[-193,951],[-13,752],[-226,642],[-45,779],[-275,762]],[[52074,67428],[60,471]],[[46038,55584],[-76,1626],[-406,8],[-12,615],[-80,314],[-42,761],[664,1254],[240,24],[273,787],[46,326]],[[46552,61350],[-102,665],[216,413],[19,744],[-207,127],[-91,1171]],[[52303,60683],[-121,298],[-143,765]],[[56406,55142],[90,1849],[-55,272],[73,308]],[[68681,52887],[156,594],[230,467],[260,298],[170,360]],[[59772,43701],[-38,537],[64,408],[911,276],[1122,-157],[140,-203],[904,-106]],[[64963,46722],[-4,374],[-646,1230],[77,1434],[78,269]],[[64460,52605],[69,-659],[-40,-361],[46,-1178],[-23,-438]],[[54211,49423],[28,479],[5,1690],[-50,231],[106,632]],[[78169,47122],[258,-514],[271,-381],[988,-462],[90,-290],[-39,-599],[388,-841],[19,-382],[147,-634]],[[77681,40870],[292,-297],[1122,-316]],[[91268,32561],[361,-360],[664,-910]],[[92723,29433],[108,416],[267,360],[330,257]],[[83140,37651],[32,794],[-56,607],[51,129]],[[83699,39289],[-379,5],[-153,-113]],[[86203,43232],[-164,700],[-238,1301],[78,712],[209,872],[124,726],[10,451]],[[89977,41997],[173,-803]],[[89452,37988],[2,622],[211,423],[73,473],[188,363],[376,454],[130,29]],[[92714,29618],[-185,796],[-211,555],[-52,354]],[[93490,30448],[-179,246],[-813,267],[-192,347]],[[86812,29759],[-122,-572],[-219,-380],[-181,-497],[-184,-206]],[[86806,29692],[369,-299],[287,-127],[36,-364],[430,-441],[133,-385],[277,-285],[404,-739],[135,-8],[768,-801],[86,-142]],[[86960,29777],[354,865],[218,918],[13,562],[150,155]],[[84166,35361],[9,231],[-189,299],[-242,4],[-101,187]],[[93515,22082],[-141,-602],[-344,-1135],[-84,-833],[-85,-229]],[[95056,23302],[-191,-113],[-542,1],[-250,425]],[[92025,21817],[-199,-503],[-259,-90],[-155,-610],[-78,-925],[-350,-269],[-782,-108]],[[96439,27593],[-151,-313],[-340,-362],[-166,-480],[-537,-280]],[[93869,25573],[-851,106],[-172,153],[-189,-125],[-129,170],[-243,-105]],[[84128,29655],[484,581]],[[92142,21839],[60,-891],[91,-349],[-113,-1501],[7,-418]],[[61287,18469],[204,-295],[414,-231],[640,186]],[[66358,19906],[-49,-959],[-384,-432],[-286,-582]],[[68251,30158],[94,-70]],[[65391,31375],[2854,-1216]],[[70569,24450],[221,438],[43,289],[186,255],[284,-15],[179,161],[442,927]],[[84614,30229],[278,186],[318,-234],[91,308]],[[70748,33381],[469,7],[503,-164]],[[83324,27278],[-681,284],[-326,194],[-926,389]],[[80894,30067],[-191,369],[-650,955]],[[80882,30071],[101,-83],[216,-603],[228,-360],[-4,-252]],[[85330,57085],[270,463],[306,204],[289,613],[224,173],[253,624],[53,403],[197,696],[97,746]],[[76968,43677],[-375,-452],[-556,-276],[-129,-421],[-325,-514],[-237,-84],[-168,-215]],[[80753,72249],[327,22]],[[83505,84892],[311,724],[71,509],[214,310],[202,569],[162,748],[320,517],[20,231]],[[57406,81808],[672,-76],[402,44],[453,-115],[533,-54]],[[55028,82601],[2,-147],[265,-136],[485,70],[394,-277],[654,-269],[578,-34]],[[58531,77509],[376,-212],[365,-474],[119,-258]],[[83172,62312],[-375,40],[-334,198],[-631,37],[-321,151],[-248,535],[-196,77]],[[75831,59206],[-458,500],[-139,403],[-469,423],[-80,241],[-297,392],[-278,21]],[[74142,66108],[-275,18],[-321,265],[-380,71],[-271,178],[-359,86],[-262,168],[-414,100],[-344,208]],[[84684,65157],[149,-192],[351,-1340]],[[86787,61126],[-151,266],[-58,368],[-243,361],[-526,451],[-54,174]],[[80572,56627],[79,1184],[125,891]],[[82779,57399],[197,858]],[[82970,59382],[690,577],[206,-65],[123,158],[470,298]],[[86489,51431],[140,52],[313,-195],[498,-144],[308,135],[483,-474]],[[79484,51169],[-113,55]],[[77722,54109],[23,323],[-282,631],[-13,188]],[[77581,54272],[-753,1099],[-129,42],[-295,393],[-701,717],[-108,255]],[[67061,45133],[79,368],[-12,748],[40,700],[-106,1182]],[[67141,50990],[174,-194],[-87,-775]],[[67140,51452],[258,167],[515,-96],[163,64],[605,1300]],[[63545,55567],[-168,133],[-512,108],[-637,266],[-404,-63]],[[61700,55846],[-182,51],[-276,-314],[-140,-8],[-295,-408],[-281,416],[-618,-202],[-333,120],[-359,-35],[-284,107]],[[65610,65397],[1,1305],[212,1063],[52,711]],[[77937,61027],[-110,-220],[6,-356],[-156,-544],[50,-284]],[[69035,62965],[108,641]],[[57651,44840],[9,649],[148,809],[150,552],[41,897],[52,146]],[[64083,58556],[216,-397],[-13,-446],[100,-174]],[[65636,65421],[79,-1146],[97,-622],[48,-777]],[[65874,62603],[-291,-1013],[-89,-714],[-272,-333],[-132,-404]],[[69291,55699],[-212,881],[0,611]],[[63489,58519],[-231,-341]],[[56503,57551],[72,794],[406,569],[101,312],[245,89],[237,474],[122,0],[182,374],[72,469],[98,123],[37,424],[125,391],[26,802],[-59,517]],[[73860,52897],[-500,37],[-287,110],[-170,237]],[[72880,42447],[-26,-410],[-119,-412],[55,-977],[-85,-875],[118,-847],[112,-199]],[[56359,47971],[-42,915],[-65,374],[-1,670],[-159,798],[322,1270]],[[59655,44826],[243,-73]],[[70728,27368],[1150,671],[297,-40]],[[61463,12768],[224,102]],[[69313,27382],[173,30],[316,-191],[435,117],[200,-64]],[[36748,35357],[315,123],[290,328]],[[36463,35020],[287,336]],[[31058,35241],[821,382],[405,-37],[189,365],[467,542],[173,429],[360,419],[256,96],[24,173],[274,220],[66,411],[371,295],[608,3]],[[36776,45967],[-299,321],[-523,106],[-403,399],[-279,-12],[-507,694],[-133,-20]],[[48759,70448],[233,294],[116,467],[222,382]],[[58506,64415],[-780,708],[-483,829],[-286,588],[-128,573],[-387,679],[-544,772],[-393,318],[-451,514]],[[53830,76606],[-6,-1177],[-231,-863]],[[49747,64462],[-274,489],[-96,431],[-614,29]],[[49564,71662],[267,-1063],[97,-531],[-50,-735],[20,-654]],[[41435,80282],[-633,-393],[-439,-205],[-467,66],[-561,-307],[-305,105],[-224,-190],[-410,-525],[-481,-104],[-412,70],[-189,-62]],[[41951,76923],[-148,-337],[-479,-616],[-169,-316],[-360,-339],[-470,-566],[-402,-804],[-17,-318]],[[37159,64994],[560,801],[514,888],[888,1444],[213,284]],[[46826,72712],[-66,658],[-131,702],[230,869],[114,206],[-205,685],[-139,1468],[4,940],[-39,496]],[[48816,76842],[304,153],[110,177],[84,868],[187,150],[147,694],[207,512]],[[50027,84064],[-810,-16]],[[47282,97069],[-68,-414],[43,-716],[-39,-2122],[22,-319],[-150,-977],[531,-1464]],[[47338,97475],[-56,-406]],[[49059,87590],[161,-291],[1312,-1231],[303,-447],[232,-568],[360,-295]],[[50023,84064],[-654,-892],[-515,-88],[-183,-379],[-235,-233],[-288,-46],[-245,-268],[-457,-146]],[[7970,18375],[364,246],[175,-134],[451,135],[541,-697],[280,-78],[365,441],[273,-41],[450,569],[646,402]],[[6661,17231],[-329,-29],[-116,-135],[-388,-106],[-398,-217],[-171,-574],[-28,-460],[-168,-71]],[[3812,24277],[101,-269],[275,-63],[340,470],[463,181],[217,-113],[348,1197]],[[7244,38563],[331,-61],[200,-275],[508,-195],[322,-19],[322,-187]],[[11260,44534],[-108,190],[-114,1075],[16,1412],[314,957],[166,301],[70,357],[-129,647],[368,807],[730,687],[255,-59],[181,165],[436,125],[310,565],[200,652]],[[1698,46655],[-113,343],[-12,626],[73,320],[215,410],[83,513],[142,272],[16,455],[126,339]],[[50408,34377],[111,61],[575,-32],[829,44],[714,-28]],[[64186,54615],[-30,309]],[[55018,82669],[128,-4],[288,486],[-16,469],[83,178]],[[537,30446],[-203,-415],[-36,-449],[85,-339],[340,-422],[-8,-236]],[[7200,38734],[-337,30],[-85,461],[-219,420],[-639,16],[-390,-185],[-196,44],[-269,-128],[-264,168],[-479,-107],[-479,164],[-80,-63]],[[5227,42954],[173,270],[603,193],[218,186],[135,306],[269,-316],[190,257],[286,-171],[251,93],[87,-189],[260,54]],[[9203,38100],[155,53],[49,332],[381,681],[797,189],[219,-244],[162,-384],[505,-196],[364,576],[401,41],[173,131],[230,456],[291,-189],[843,17],[315,-134],[188,167],[63,733],[459,23],[614,457],[296,-172],[157,182],[254,647],[58,-9]],[[11271,44552],[-386,-459],[-191,-76],[-253,254],[-426,-74]],[[8687,46357],[162,-258],[-33,-1653],[113,-137]],[[19431,67823],[469,682],[241,758],[450,973],[34,343]],[[37632,71622],[-925,-133],[-55,115],[-506,-68],[-404,287],[-481,242],[-568,6],[-334,326]],[[37601,25009],[44,-566],[511,-566],[39,-358],[90,-1856],[320,-846],[34,-1457]],[[58297,49385],[-212,561],[-183,269],[-268,49],[-103,811],[-302,612],[-314,151],[-118,189],[-383,-29]],[[52736,61617],[275,-85],[247,164],[272,8],[306,304],[292,-189],[42,-163]],[[76048,69299],[-129,-232],[-622,-634],[-376,-1045],[-202,-374],[-300,-274],[-65,-578]],[[85470,90091],[176,425],[80,538]],[[84805,88500],[185,673],[475,916]],[[81188,86737],[310,648],[253,-128],[292,4],[64,470],[360,1052],[388,847],[60,767],[103,392],[292,277],[218,-48],[77,277],[365,-45],[438,217]],[[81920,84774],[-256,41],[-1005,-957]],[[81371,70436],[147,-187],[151,-1176],[73,-230]],[[81219,71154],[152,-718]],[[79258,75000],[-378,-83],[-267,53],[-741,-135],[-324,-146],[-756,-84]],[[77430,76936],[-236,-728],[-340,-1467],[-62,-136]],[[78781,78802],[-388,-578],[-285,-195],[-540,-763],[-138,-330]],[[71389,61606],[162,-96],[310,245]],[[99422,12618],[70,-357]],[[99037,10957],[-206,192],[-226,642]],[[93765,23000],[-263,75],[-198,-280],[-642,-438],[-349,-663],[-176,154]],[[91196,24095],[-88,352],[-38,590],[35,658],[63,142]],[[87467,25686],[-434,262],[-1164,322]],[[91040,27426],[-288,-237]],[[83324,27278],[-60,992],[-122,181],[115,452],[259,339],[212,-11],[340,401]],[[87633,29821],[316,221],[253,-200],[394,12],[219,101],[187,258],[105,529],[570,277],[193,400]],[[79439,32411],[-292,344],[-452,275]],[[79439,32411],[-59,159],[38,1200],[200,1020],[94,824]],[[78273,35926],[196,-152],[209,117],[182,281],[109,588]],[[79712,35614],[605,-143],[200,48],[423,-226],[444,-91],[1213,-89],[277,199]],[[86083,37322],[-222,-211],[-186,-2],[23,-228],[-358,-389],[-287,161],[-129,-173],[-267,138],[-240,-709]],[[80114,43052],[-724,161],[-252,166],[-463,117],[-119,126],[-414,122],[-111,-96]],[[81516,41240],[-223,-7],[-480,179],[-98,363]],[[79729,52345],[-736,559],[-68,140],[-665,447],[-430,579],[-108,39]],[[85411,51713],[-59,733]],[[85352,52446],[-311,843],[-259,186],[-243,649],[-222,751],[-588,-65]],[[83139,52904],[441,-104],[388,-571],[596,142],[362,-375],[287,-79],[231,-379]],[[86506,52093],[-17,-662]],[[86490,51410],[194,-715],[-46,-1123]],[[83112,49830],[293,-131],[367,-37],[340,230],[417,-281],[322,63],[161,240],[397,204],[483,-244],[598,-428]],[[81608,50253],[142,256],[258,-481],[599,136],[322,-49],[171,-213]],[[83963,46967],[-268,745],[-149,167],[-56,359],[-334,962],[45,275],[-89,355]],[[80964,48746],[128,-157],[344,58],[263,-263],[286,-17],[99,-260],[178,-84],[292,159]],[[82554,48182],[-123,522],[-356,764],[-279,371],[-188,414]],[[16134,41478],[-248,161],[-437,949],[-251,297],[-238,19],[-446,502],[-141,8],[-580,365],[-249,-140],[-252,232],[-409,731],[-115,36],[-876,-114],[-118,118],[-494,-107]],[[83324,27278],[245,-42],[321,166],[844,-180],[355,-459],[375,-337],[405,-156]],[[91176,25751],[-41,286],[120,675],[51,708]],[[93488,27275],[-271,-85],[-735,414]],[[85157,33625],[204,162],[382,-27],[-14,686]],[[82112,31784],[-60,792],[195,1322],[-71,75],[110,620],[-94,508]],[[83921,40310],[-346,145],[-127,169],[-277,-98],[-339,374],[-552,-54],[-402,94],[-359,292]],[[78695,33030],[-325,494]],[[81412,28783],[95,472],[180,393],[269,1284],[-73,323]],[[84128,29655],[-497,169],[-119,256],[-485,300],[-196,395],[-250,-7],[-177,505],[-384,182]],[[82020,31455],[-134,-208]],[[82020,31455],[92,329]],[[81886,31247],[-166,289],[-187,26],[-191,-185],[-117,137],[-402,134],[-291,-35],[-498,261]],[[82874,35312],[339,394],[438,376]],[[75284,45150],[-324,83],[-453,533],[-469,-5],[-449,-249],[-641,-83]],[[75284,45150],[185,1180]],[[78396,33504],[-210,259],[-261,86],[-635,847],[20,302],[-94,399]],[[66997,36796],[577,-181],[511,-588],[393,-90]],[[69557,33709],[450,-167],[355,-16],[399,-263]],[[72829,30137],[561,-185],[428,51],[421,-78],[142,63],[345,-199],[201,36]],[[72149,27984],[574,-77],[401,-776],[16,-532],[140,-328],[556,-372]],[[70194,20021],[170,284],[228,1514],[-141,621],[67,493],[-23,572],[74,945]],[[72938,23430],[-263,-524],[-83,-334],[-25,-846],[-126,-325],[-216,-178],[-206,2],[-287,-407],[-434,-135],[-197,-352],[-483,-47],[-419,-325]],[[70569,24450],[-98,261],[-17,504],[187,2020]],[[70194,20021],[-76,169],[80,949],[-296,392]],[[69892,21560],[-278,-10],[-196,305]],[[69418,21855],[-104,295],[8,1179],[-185,700],[-190,81],[-36,303],[-707,140],[-74,1267],[-246,357],[99,410],[39,749]],[[69372,27398],[57,809],[66,252],[44,1014],[-96,477],[-16,476],[-108,364]],[[69467,26098],[-80,338],[-15,962]],[[69904,21558],[199,994],[-20,267],[-247,518],[-135,747],[-245,543],[-51,300],[97,1070],[-35,101]],[[67798,27386],[83,547],[60,984],[131,425],[194,340],[85,422]],[[69331,30958],[-158,358],[-341,363],[-285,562],[-65,329],[-34,858],[-162,582],[24,382]],[[67775,35791],[214,-338],[113,-655],[208,-406]],[[67800,35787],[-223,407],[-407,387],[-436,186]],[[73430,35224],[28,409]],[[74307,38367],[-316,-375],[-268,-128],[-226,47],[-32,-191]],[[76712,35846],[85,655],[-119,499],[-312,347],[-190,371],[-359,513]],[[76802,36520],[339,-450]],[[79502,37147],[21,378],[272,790],[239,211]],[[80034,38526],[78,11]],[[83195,39173],[-601,148],[-127,366],[-240,-47]],[[86678,39390],[-182,-948],[-380,-786]],[[77268,58424],[182,-41],[387,-348],[489,-209],[537,-387],[382,-167],[720,-89],[621,-553]],[[81641,56425],[162,-23],[532,-718],[146,-424]],[[81645,55225],[73,727],[-71,471]],[[81649,56409],[-71,73],[-330,901],[-38,503],[-184,219],[-118,502],[-129,94]],[[76368,50526],[-85,333],[-352,753],[-281,129],[-188,389]],[[76314,47542],[44,379],[-55,456],[66,258],[-48,537],[-246,498],[147,650],[146,206]],[[76368,50526],[179,288],[412,405],[114,295],[302,-220]],[[77375,51294],[352,389],[351,266],[69,195],[284,8],[341,-240],[367,-548],[233,-133]],[[80002,52297],[250,634],[260,386]],[[72733,70744],[-420,494],[-235,366],[-399,150],[-665,509]],[[73439,68982],[-253,413],[-175,466]],[[73011,69861],[-278,883]],[[67495,53736],[-515,154],[-382,364],[-313,150]],[[65833,54843],[442,-444]],[[67577,55705],[-649,-736],[-635,-545]],[[65304,42579],[-29,112]],[[65275,42691],[46,787],[66,93],[10,941],[-51,711],[-217,787],[-69,490]],[[68354,47879],[-852,264],[-384,-67]],[[68354,47879],[111,-10],[426,-468]],[[66986,45069],[92,-156],[51,-848],[188,-265],[-107,-1402]],[[62961,44203],[106,-146],[832,-114],[371,-382],[186,-348],[299,-138],[239,-355],[281,-29]],[[58574,64134],[427,-108],[632,-44],[674,-233],[220,-213],[878,-540],[596,-500],[548,-207]],[[61604,57547],[-266,91],[-299,439],[-140,32],[-7,921]],[[61838,56036],[-148,711],[-86,800]],[[73976,57885],[-288,159],[-372,-180],[-184,137],[-372,2],[-139,-178],[-490,-271],[-217,-321],[-639,93],[-230,155],[-457,-187],[-480,25],[-993,342]],[[88171,57208],[-71,-88],[-434,69],[-284,-151]],[[83665,67662],[279,-459],[162,-578],[277,-330],[139,-743],[175,-399]],[[65082,60113],[8,-401],[166,-439],[-152,-544],[-9,-541],[-169,-712],[-53,-698]],[[59390,44001],[15,621],[235,218]],[[56414,51998],[-505,-11],[-128,214],[-495,-21],[-281,179],[-542,-44],[-163,140]],[[52249,52143],[-10,622],[-132,264],[23,703],[-213,1117],[9,689],[-657,131]],[[68225,69409],[-13,-181],[-415,-179],[-285,6],[-432,-395],[-235,4],[-204,-285]],[[59114,72977],[-57,388],[82,1253],[-211,539],[-321,565],[-116,666],[40,1121]],[[61692,50580],[13,-990],[317,-707]],[[63545,55567],[-54,-1254],[-331,-1143],[-302,-490],[-272,-663],[-502,-648],[-392,-789]],[[61682,50581],[-121,370],[-98,666],[182,457],[331,1059],[23,438],[-241,584],[-43,898],[60,448],[-101,266],[150,244]],[[56404,54662],[507,-254],[144,-278],[116,-621],[216,-289],[333,-634],[395,-92],[378,-213],[267,-369],[301,-115],[882,-708],[278,-368],[620,-1188],[484,-104],[318,-163]],[[55487,37587],[487,-217],[320,19],[1381,-75],[371,-77],[380,49],[562,-60]],[[56327,24735],[-66,275],[-199,76],[-260,469]],[[58336,22840],[241,438],[351,1013],[39,373]],[[60795,28138],[564,404],[148,275],[426,475],[77,302],[417,192],[102,184]],[[62958,31366],[-279,294]],[[65475,26971],[-2,297],[-129,463],[119,1623],[-153,560],[5,1066],[54,608]],[[62378,24468],[217,30],[176,195],[1165,43],[381,288],[211,370],[341,305]],[[64869,25699],[158,141],[300,525],[148,606]],[[64179,26644],[-14,446],[-133,387],[-10,473]],[[64022,27950],[21,287],[273,539],[32,461],[175,619],[340,604]],[[64814,25107],[17,550]],[[64831,25657],[-252,781]],[[64579,26438],[-400,206]],[[61963,23264],[53,424],[-15,633]],[[62054,24570],[324,-102]],[[61966,24277],[88,293]],[[58967,24664],[633,-70],[91,-75],[1661,-138],[614,-104]],[[62537,30017],[28,-569],[-92,-1284],[-127,-545],[-26,-1309],[-327,-1182],[61,-558]],[[59466,41744],[-233,-429],[-28,-2248],[-63,-1488],[-154,-353]],[[59449,42346],[17,-602]],[[59391,44041],[-64,-1178],[-128,-444],[250,-73]],[[59466,41744],[19,-401],[217,-91],[352,-717]],[[46849,20730],[-105,-746],[-173,-796],[25,-1860]],[[50451,34579],[252,1086],[235,695],[3,459],[112,694],[191,432],[44,330]],[[51269,38073],[-307,7]],[[55440,34480],[547,-30],[241,124],[237,-194],[778,-116]],[[52651,34638],[566,-3],[69,106],[674,-29],[190,-187],[482,-69],[217,47]],[[57628,34322],[319,-87],[1454,-49]],[[57243,34264],[394,58]],[[58988,37226],[-109,-1261],[-105,-404],[-550,-805],[-433,-471]],[[57696,34318],[-209,-338],[-124,-680],[-79,-69],[-69,-852],[-271,-456],[-80,-292],[-1,-478],[-141,8],[-7,-343],[-171,-11],[-62,-481]],[[55355,25319],[200,-210]],[[54034,22638],[247,106],[269,474],[356,215],[387,420],[241,393]],[[55355,25319],[-94,460],[-426,546],[-143,334],[-37,559],[-128,393],[96,152]],[[55250,16025],[105,-237],[382,-197],[61,-129],[402,-160],[40,-301],[565,-164]],[[54034,22638],[208,-113],[-27,-555],[-267,-694],[-25,-929],[-51,-379],[268,-556]],[[43140,32860],[85,34],[246,543],[347,396],[730,128],[212,-95],[849,14],[391,390],[390,159]],[[48045,48389],[545,-176],[449,-71],[176,-153],[729,-260],[724,-56],[704,48],[266,128]],[[65875,68476],[-250,43]],[[65624,68513],[-495,-29],[-320,-105],[-210,77],[-299,378],[-638,-94]],[[65860,62876],[131,152],[932,414]],[[69768,62987],[157,-45],[314,268],[169,264],[398,-215],[234,-433],[282,-991]],[[73976,57885],[-158,344],[-312,966],[-473,1103],[-88,438]],[[66923,63442],[339,97],[285,-46],[19,-342],[324,-309],[545,131],[625,8]],[[70921,65682],[-211,-772],[-330,-373],[8,-517],[-188,-10],[-284,-769],[-210,-149]],[[75337,63749],[298,-537],[158,-700],[233,-573],[-108,-372],[15,-650]],[[72762,80344],[134,-23],[-2,350],[443,395],[343,639],[433,131],[605,-349],[443,-563],[308,-161],[-38,-728]],[[78781,78802],[386,1],[594,-142],[446,-300],[794,-277]],[[79760,85374],[-60,-999],[-99,-437],[-227,-461],[20,-525],[-118,-109],[-618,-1376],[-338,-7],[-390,-193],[-829,-1481]],[[82646,82247],[-216,460],[-172,955]],[[83462,84767],[-157,-846],[-198,-728],[-249,-695],[-191,-304]],[[75608,78541],[750,-42]],[[75431,80035],[440,-343],[256,-51],[169,141],[392,-19],[173,100],[240,-77]],[[66255,75396],[369,-376],[441,-57],[761,216],[222,-10],[544,484],[90,196],[202,5],[379,269],[437,-99]],[[69700,76024],[185,-103],[438,88],[904,369],[630,-354],[566,86],[142,124],[456,-60]],[[66702,76439],[296,576],[213,713],[150,924],[185,263]],[[66259,75396],[443,1043]],[[66019,72895],[76,1192],[-47,431],[211,878]],[[62501,76406],[555,-126],[196,48],[168,-192],[291,-76],[168,-186],[296,43],[204,-96]],[[64379,75821],[238,-207],[288,42],[441,-172],[534,-2],[379,-86]],[[61318,80966],[149,96],[288,660],[488,186],[547,98]],[[62946,73502],[-147,539],[-226,1120],[-89,1267]],[[62939,73522],[-344,-270],[-780,24],[-121,98]],[[61393,73501],[-481,-271]],[[61393,73501],[301,-127]],[[59466,81607],[154,419],[66,431],[163,231],[586,514],[157,237],[456,293],[666,-61],[63,230],[334,199],[151,-80],[161,-444],[477,-812]],[[58167,62889],[17,574],[122,370],[268,301]],[[54547,61564],[298,-157],[746,28],[541,187],[169,324],[351,159],[217,247],[387,48],[269,276],[301,3],[341,210]],[[54405,61636],[-224,26]],[[54559,57936],[141,543],[-78,793],[56,188],[-37,1656],[-37,312]],[[51493,64044],[-178,601],[-255,628],[-384,1159],[-98,486],[-226,376],[-322,760]],[[53143,70603],[425,-453],[185,-91],[206,-356],[298,-303],[753,59]],[[55712,73146],[-15,922],[277,434],[130,365],[340,510],[547,661],[118,338],[251,411],[408,295],[155,206],[573,398]],[[57428,81806],[224,-803],[229,-649],[229,-1141],[193,-548],[39,-641],[154,-338]],[[43690,91271],[45,-18],[497,-2729],[248,-1558],[139,-447],[489,-672],[514,-405]],[[41435,80282],[269,81],[549,510],[862,-324],[446,605],[123,322],[680,730],[659,583],[471,1054],[131,497]],[[52629,57437],[-193,955],[-93,1203],[-79,589]],[[52039,61746],[-118,487],[0,310],[-180,461],[-135,837],[-117,163]],[[47299,63362],[-87,1732],[17,2955]],[[47215,68049],[219,1099]],[[48796,68784],[-64,970],[23,681]],[[48763,65411],[97,434],[-42,512],[34,507],[-43,1543]],[[48183,61956],[33,892],[203,599],[122,914],[132,313],[94,704]],[[49063,58097],[195,585]],[[49258,58682],[-221,171]],[[48623,53344],[-67,2013]],[[48551,55506],[567,-36]],[[48556,55357],[-17,351]],[[47977,55883],[90,-322],[484,-55]],[[47489,58052],[-42,-204],[44,-823],[135,-37],[351,-1105]],[[43470,52561],[562,-404],[586,-208],[826,-1241],[460,-397]],[[41871,51569],[308,187],[69,222],[340,87],[882,496]],[[43463,52567],[287,154],[265,402],[266,233]],[[39417,63013],[-455,123],[-448,345],[-286,342],[-512,423],[-621,794]],[[50962,38080],[-314,309],[-750,28],[-539,-102],[-713,94],[-551,472],[-625,858],[-679,690]],[[46323,32311],[261,-163],[44,-423],[348,75],[15,-948],[-98,-11],[-54,-607],[10,-612]],[[32850,31428],[85,-1231],[-84,-353],[71,-759],[-154,-467],[-234,-454],[93,-544],[-24,-566],[70,-636],[-49,-421],[26,-543]],[[34803,32485],[-340,-459],[-637,-393],[-646,-196],[-330,-9]],[[38616,32355],[-191,45],[-365,402],[-252,157],[-526,-310],[-440,77]],[[36191,34699],[-380,-508],[-396,-98],[-392,91]],[[37353,35808],[324,332],[284,29],[4,359],[166,270],[231,-40]],[[36463,35020],[-155,561],[-54,629],[48,379],[-266,789],[-641,396],[-272,380]],[[35072,38539],[431,-113],[681,144],[273,-65]],[[36453,38566],[168,-65],[627,-20]],[[38362,36758],[1266,1251],[364,261],[106,417],[152,144],[500,217],[-3,169]],[[42460,39435],[-292,-145],[-518,-71],[-491,125],[-423,-108]],[[37248,38481],[382,-60],[566,238],[240,353],[795,90],[664,396]],[[39895,39498],[676,-237],[164,2]],[[42460,39435],[232,38],[621,499],[435,409],[359,436],[351,312],[1055,194],[651,-157],[475,-378],[130,19]],[[38012,40810],[456,-515],[566,-233],[337,-234],[255,-27],[295,-328]],[[40060,41280],[156,158],[572,48],[203,195],[19,245],[659,316],[525,544],[395,160]],[[42649,42964],[209,-139],[953,-183],[675,90],[415,-577],[764,-175],[339,-248],[740,33]],[[46744,41765],[-45,1051],[-221,25],[-5,1047]],[[34537,43519],[325,-318],[452,-694],[510,-172],[559,-262],[317,-53],[419,74],[150,-62],[528,-612],[202,-612]],[[46473,43888],[-104,881],[-396,2],[-25,702],[178,116],[-54,1762],[-286,7],[10,1008]],[[39533,51043],[-634,-223],[-292,-25]],[[41855,51459],[-336,-21],[-411,161],[-540,-35],[-328,-126],[-456,-336],[-251,-59]],[[45885,53143],[491,-59],[402,97],[415,-114],[1052,59],[381,-59]],[[44274,53356],[341,-129],[1260,-77]],[[45880,53238],[162,764],[131,283],[21,1299],[-156,0]],[[34879,49480],[123,153],[458,166],[220,316],[602,338],[436,450],[145,65],[263,-245],[548,-143],[749,66]],[[34947,55026],[-81,437],[-346,1043],[-63,574],[-191,786],[-42,442],[-380,575],[-136,48],[-184,338],[-326,269],[-292,960],[-362,-17],[-369,-337],[-143,-478],[-226,98]],[[30097,52764],[114,646],[179,203],[64,290],[-53,358],[415,170],[-20,914],[95,418],[-1,448],[-114,239],[186,433],[286,240],[187,446],[179,106]],[[29388,65243],[-266,6],[-274,-452],[-448,153],[-829,-434],[-202,-482],[-415,-308],[-496,-109],[-156,-142],[-1126,467]],[[29388,65243],[-8,542],[-219,516],[-334,427],[-412,1097],[18,648],[-129,253],[-71,713],[33,413],[191,477],[375,225],[125,680],[224,590]],[[17312,15427],[-335,378],[-77,699],[-128,580],[-142,355],[-13,1202],[-46,272]],[[18571,28734],[-159,-338],[-265,-296],[-203,-504],[-242,-290],[-795,-369],[-202,-748]],[[21264,25732],[196,-172],[147,-401],[431,33],[147,-102],[216,129],[520,116]],[[21217,25715],[337,542],[197,145],[689,1299]],[[25880,26095],[-425,677],[-178,616],[50,591]],[[37241,11598],[-444,-165],[-410,179],[-553,-198],[-231,-10]],[[37281,8345],[-15,795],[175,357],[-8,351],[-147,751],[-38,913]],[[42081,11541],[388,440]],[[42469,11981],[-60,2196],[191,509],[151,739],[234,426],[166,120],[7,1342]],[[6124,96299],[429,-29],[275,-106],[208,-244],[486,-969],[603,-702],[356,-80],[237,114],[357,-221]],[[9983,90664],[-181,100],[-432,26],[-300,925],[115,208]],[[10426,84542],[159,-317],[508,-331],[381,-367],[122,-329]],[[49324,13389],[1,-239],[-156,-414],[18,-2300],[-72,-372],[-4,-879]],[[49429,13384],[417,498],[339,196],[488,-9],[169,193],[480,299],[373,391],[708,-33],[506,171]],[[52997,15308],[332,186],[380,24],[1210,201],[319,307]],[[55238,15993],[495,464],[519,674],[136,247],[647,24]],[[55339,10861],[56,282],[220,288],[378,95],[268,895],[57,701],[241,465],[90,706],[139,59],[17,485]],[[53307,10411],[-325,-79],[-266,-240],[-324,-148],[-123,-184]],[[55280,11055],[-560,82],[-73,-335],[-410,-46],[-280,-130],[-155,-208],[-481,-7]],[[98605,11791],[-310,-857],[-136,-179],[-221,-1563]],[[97189,13202],[227,-701],[324,-90],[237,-247],[628,-373]],[[97938,9192],[-390,153],[-189,328],[-186,1093],[43,259],[-38,779],[42,838],[-39,570]],[[97319,14804],[62,-218],[-200,-1374]],[[99496,12238],[274,187],[218,453],[-214,310],[204,419],[-63,221],[-468,343],[-100,371],[-200,70],[-282,354],[100,211],[-258,342],[-259,-108],[-326,148]],[[96242,18930],[106,-355],[303,-500],[329,-283],[284,-117],[-27,-232],[82,-730],[-85,-157],[246,-869],[642,-128]],[[92874,18008],[-123,231],[-584,435]],[[94004,12301],[191,200],[143,416],[285,194],[367,630],[89,572],[289,463],[84,352],[353,534]],[[95798,15711],[-92,299],[-257,345],[-265,97],[-86,310],[-221,90],[-141,333],[-522,366],[-70,356],[-238,172]],[[93906,18079],[-132,-6],[-470,372],[-335,-220],[-117,-201]],[[90202,19312],[-22,-482],[55,-719],[-198,-703],[15,-303]],[[89433,17407],[161,938],[-29,515],[141,871],[-43,486],[60,336],[-165,822],[-22,1031],[231,459],[55,511],[122,375]],[[70597,17548],[-242,497],[-21,307],[-242,699],[60,480]],[[65455,23297],[-343,276],[-113,850],[-216,170],[31,514]],[[64520,20449],[43,189],[489,81],[474,276],[283,-67],[163,-192],[254,-71]],[[66224,20632],[-31,280],[-176,281],[-184,874],[-347,930],[-45,302]],[[66227,20692],[136,-746]],[[66358,19906],[160,117],[861,-169],[400,-381],[192,-52],[77,-396],[721,-97],[216,-112],[725,312],[265,375],[179,61]],[[70597,17548],[-486,73],[-795,302],[-123,123],[-712,86],[-492,-71],[-880,145],[-384,-275],[-314,35],[-263,-188],[-541,160]],[[63383,11841],[148,-272],[-238,-37],[-709,698],[-708,453],[-203,195]],[[61673,12878],[443,58],[16,351],[173,107],[303,-201],[634,-856],[141,-496]],[[21493,66086],[573,522],[224,102],[370,539],[37,213],[261,361],[58,374],[303,527],[304,179],[348,337],[304,-54],[300,263],[145,392]],[[32830,77538],[-460,-238],[-853,-658],[-336,121],[-302,-312],[-213,-596],[-378,-550],[-277,-766]],[[43590,92172],[2,-393],[105,-481]],[[42162,11655],[-106,-362],[-460,-489],[-205,-312],[-131,-471],[9,-450],[-249,-32],[-23,-334]],[[29884,14565],[312,33],[309,212],[651,127],[307,169],[667,-413],[353,-134],[282,-282],[341,-186],[799,43],[829,308],[243,40],[332,-394]],[[31953,23193],[196,63],[188,393],[15,448],[129,854],[169,503]],[[31715,20591],[67,377],[-3,863],[-90,435],[105,674],[167,254]],[[28375,29198],[223,-81],[625,866],[417,-606],[242,-12]],[[28375,29198],[78,886],[390,1143],[200,29],[418,664],[1054,529],[249,496]],[[27217,40392],[52,141],[758,143],[240,-297],[785,-560],[95,87],[323,-105],[596,287],[202,-50],[135,169],[471,122],[346,-51],[132,526],[416,102],[222,630],[-47,359],[78,265],[457,153],[306,-152],[84,374],[162,88],[105,560],[-118,334],[242,53]],[[30097,52764],[516,-1042],[388,-434],[475,104],[214,417],[148,39],[465,513],[505,75],[373,216],[247,-478],[196,-166],[262,339],[558,-263]],[[22396,39863],[270,393],[505,493],[214,61],[309,878],[-4,335],[162,437],[282,117],[306,683],[63,507],[-28,875],[90,193]],[[24963,52996],[32,165],[-91,668],[196,939],[-246,129],[-42,871],[-91,593],[-86,1284],[94,178],[-29,1194],[139,771]],[[25354,45212],[-380,-54],[-251,-333],[-158,10]],[[28816,47780],[132,666],[2,654],[129,632],[-175,415],[94,284],[-334,609],[-59,757],[-189,651]],[[28467,52655],[-71,-211]],[[25101,53035],[-35,-172],[124,-511],[-59,-574],[165,-85],[194,-659],[37,-599],[314,-564],[24,-336]],[[27791,54305],[-255,90],[-278,-187],[-256,-13],[-257,-238]],[[24946,59766],[189,-221],[407,-156]],[[25527,59399],[300,-445],[372,-124]],[[23245,60583],[173,-212],[415,-32],[412,-259],[169,-3],[321,-267],[211,-44]],[[26199,58830],[287,47],[502,500],[555,359],[220,861],[263,392],[414,40],[77,205],[701,317],[305,-155],[432,-70],[146,-158],[200,90]],[[26444,19183],[-215,814],[-397,471],[-99,334],[277,700],[-26,258]],[[25949,23856],[77,-233],[223,48],[59,-264],[479,481],[275,-111],[262,244],[550,92],[360,-88],[536,71],[252,210],[498,194],[187,-137],[515,106]],[[31821,9846],[102,20],[260,-309],[336,-2],[413,186],[75,147],[473,187],[133,178],[211,645]],[[28857,14244],[-34,-182],[204,-519],[486,-242],[469,82]],[[34674,17803],[415,248],[167,-134],[1615,323],[121,145],[465,165],[522,451],[660,359]],[[36531,15580],[193,-126],[601,547],[219,84],[248,260],[463,-32],[541,322],[347,23]],[[36561,15564],[-262,517],[-846,700],[-421,597],[-334,368]],[[34718,17703],[-169,307],[-255,213],[-375,104],[-1004,-103],[-644,-139],[-162,319],[-314,20],[-1061,558],[-241,46],[-307,280]],[[16705,26189],[-159,-218],[-502,-1469],[-12,-280],[-267,-160]],[[23928,31607],[-56,-643],[-293,-772],[-423,-139],[-345,64],[-334,-152]],[[24786,28375],[-119,1183],[88,520],[-59,1001],[-404,498],[-364,30]],[[23928,31607],[107,464],[303,50]],[[23086,26717],[563,-333],[360,333],[139,384],[173,120],[67,289],[203,339],[154,625]],[[25327,27979],[-180,378],[-361,18]],[[25880,26095],[542,199],[350,490],[65,328],[147,95],[756,1002],[207,413],[431,570]],[[30320,26425],[-90,219],[-351,375],[33,420],[-142,351],[22,791],[65,176],[7,605]],[[30224,24449],[131,108],[-59,617],[180,368],[14,280],[-170,603]],[[29540,22400],[60,459],[147,4],[240,571],[-5,235],[240,800]],[[29300,20247],[-188,939],[57,344],[345,675],[26,195]],[[29503,19791],[520,-382]],[[26439,19196],[263,-221],[281,156],[173,-222],[415,-200],[474,604],[426,191],[426,439],[606,-152]],[[16446,12994],[-311,26]],[[16453,12989],[353,-94],[546,319],[92,223],[206,1306]],[[20218,13550],[-252,376],[-669,72],[-552,359],[-79,301],[-162,-39],[-220,309],[-389,-205],[-254,-24]],[[17645,14714],[-42,601],[-291,112]],[[21426,7177],[167,72],[355,-101],[156,-215],[323,400],[159,702],[330,-105],[359,-495],[304,-222],[116,47]],[[34443,7556],[-183,1292],[-253,662],[-167,1391]],[[33814,10876],[291,158],[517,509],[494,16],[487,-155]],[[28255,6686],[151,350],[138,581],[169,234],[265,650]],[[25416,7796],[185,198],[834,244],[770,-181],[424,131],[704,102],[609,203]],[[28942,8493],[315,52],[173,-95],[509,140],[315,182],[336,573],[843,403],[378,123]],[[24451,14982],[64,-1011],[-155,-387],[406,-559],[146,-49],[346,-563],[346,-415],[300,-232]],[[24451,14982],[-767,-82],[-219,-210],[-350,193]],[[23127,16894],[-188,-290],[258,-1426],[-76,-293]],[[23127,16894],[-230,907],[32,382],[-168,1047],[55,641],[-393,570],[-80,250],[101,907],[262,652],[358,263]],[[23071,22528],[142,516],[-22,430],[-179,966],[-22,908]],[[22440,27701],[-142,329],[-167,726]],[[24565,44835],[-165,145],[-697,124],[-288,-86],[-756,48],[-340,132],[-188,-262],[-30,-281],[-529,-360],[-496,442],[-189,429],[-236,279],[-333,-72],[-172,-185],[-120,90]],[[19320,50517],[162,229],[110,532],[512,86],[491,-442],[11,243],[559,340],[315,645]],[[21480,52150],[-132,486],[-332,741],[179,965],[160,590],[-32,546]],[[17838,50233],[307,15],[87,-167],[412,387],[533,-233],[143,282]],[[14740,52372],[120,-237],[437,-344],[454,-464],[312,-116],[290,109],[862,-522],[212,22],[86,-215]],[[14744,52346],[-61,-413],[132,-419],[107,-2041],[-138,-438],[-93,-1223],[464,-188],[439,78],[115,154],[331,56],[282,-594],[49,-502],[-199,-772],[57,-677],[-17,-584],[82,-809],[404,-1112],[-92,-374]],[[14754,52376],[-303,309]],[[14549,53986],[297,-113],[180,326],[204,1138],[365,1627],[168,450]],[[14572,58551],[111,434],[539,64],[222,-241],[34,-395],[163,-707],[131,-303]],[[15763,57414],[154,-36],[567,384]],[[18886,58200],[52,851],[-189,359],[-101,1397]],[[17837,62854],[113,381],[550,1227],[387,516]],[[13545,66599],[71,125],[782,311],[452,-47],[410,55],[473,-208],[1633,-69]],[[14297,58203],[-563,26],[-713,-101],[-417,125],[-296,-44],[-271,-180],[-299,-5],[-518,-280],[-99,-172],[-432,-337],[-632,-388],[-117,-139]],[[10001,56598],[416,168],[864,-389],[223,14],[400,-450],[403,-326],[673,-189],[259,99],[180,-506]],[[16484,57762],[687,100],[533,-229],[346,-52],[518,483],[334,152]],[[8948,65681],[351,186]],[[7851,60904],[101,245],[-31,404],[288,783],[152,615]],[[8361,62951],[196,-5],[107,280],[177,119]],[[8361,62951],[73,925],[127,756]],[[2286,43807],[285,1115],[-2,707],[-307,370],[-60,402],[330,1006],[110,215],[159,657],[20,373],[159,131],[25,368],[133,350],[72,632],[129,195],[30,802]],[[17144,8355],[-264,-162],[-420,150],[-353,-80]],[[13633,1803],[2,880],[-104,348],[-285,493],[39,412],[-278,463],[-193,93],[-48,645],[-388,41],[-39,457],[-214,303]],[[14240,9611],[-298,359],[-260,531],[-335,234],[-177,432],[-238,141],[-70,392]],[[16027,8227],[-725,634],[-210,278],[-521,221],[-331,251]],[[16162,12934],[-79,95]],[[16083,13029],[-355,-73],[-122,-167],[-467,-328],[-107,15],[-278,-431],[-154,93],[2,453],[-232,346],[-195,2],[-47,415],[-309,213],[-657,-128],[-363,-189]],[[11778,19335],[-264,-90],[188,-313],[-122,-504],[418,-1059],[204,-741],[13,-637],[139,-559],[200,64],[169,-306],[29,-402]],[[14449,22077],[-45,-334],[-154,-269],[-117,-511],[-561,-482],[-393,-264],[-6,-334],[-431,-805],[-273,27],[-177,229],[-384,65],[-137,-95]],[[11903,33159],[-396,220],[-324,600],[-399,204],[-243,984],[-465,600],[-283,170],[-258,435]],[[16926,34360],[-574,-117],[-252,131],[-111,205],[-433,-20],[-170,254],[-508,388],[-255,-80],[-393,169],[-234,-281],[-360,-77],[-326,168],[-155,-124],[-499,-1307],[-280,-198],[-165,-400],[-312,93]],[[8443,37288],[663,-679],[429,-237]],[[9203,38100],[-113,714],[0,494],[-172,407],[-103,489],[32,575],[-100,414],[185,614],[265,4],[422,230],[141,269],[-1,909],[213,448],[47,552]],[[1440,28890],[246,391],[59,302],[314,352],[497,224],[-12,339],[312,207],[196,-23],[262,464],[216,14]],[[631,32833],[-245,250],[-35,837],[-227,844],[30,967],[-147,720],[321,1005]],[[332,37472],[180,698],[176,279],[91,634],[223,216],[-79,379],[171,1106],[156,345],[158,94]],[[2375,42401],[17,471],[-147,250]],[[2245,43122],[41,685]],[[1090,35551],[200,136],[99,327],[173,87],[186,586],[407,347],[372,35],[38,-214],[368,-116]],[[8075,26773],[-32,760],[-306,814],[-33,279],[-229,484],[-182,84]],[[7970,18375],[45,-593],[250,-733],[249,-387],[234,-198],[1,-840],[-70,-1092],[232,-857],[-42,-240]],[[8118,26513],[220,-752],[217,-293],[53,-263],[232,-447],[254,-327],[238,-1015],[142,-234],[347,-213],[422,-496],[88,-200]],[[5612,25474],[199,389],[506,-339],[302,-372],[225,90],[487,662],[171,532],[287,260],[286,77]],[[7636,19121],[-381,713],[-170,456],[-497,682],[-235,531],[-213,653],[-296,1463],[-155,358],[-64,559]],[[12752,14788],[150,71],[157,364],[197,21],[110,764],[234,385],[205,118],[59,648],[-15,614],[122,445],[-73,578],[201,405],[215,217],[225,784],[5,477],[192,860],[206,556]],[[11198,22325],[558,259],[473,-434],[228,-24],[488,322],[320,-53],[139,196],[328,-258],[299,-50],[418,-206]],[[16571,18913],[163,76],[127,304],[-94,1079],[-13,805],[-332,794],[6,366],[-220,385],[-38,234],[-350,726],[-55,380]],[[20824,17459],[-42,546],[-159,551],[111,355],[-83,765],[-330,1129],[-27,299],[-397,377],[-98,380],[230,624],[0,349],[349,1110],[217,455],[264,324],[149,870]],[[21072,13346],[-102,763],[-322,1445],[-62,485],[94,553],[190,459],[-46,408]],[[21235,12852],[-158,495]],[[23127,14880],[-215,-346],[-374,-345],[-147,-293],[-331,-23],[-298,-203],[-110,-339],[-220,-331],[-165,5]],[[21350,7822],[89,568],[-1,575],[-301,279],[167,153],[153,541],[-142,1305],[-153,129],[154,569],[-227,683]],[[21080,12601],[181,402]],[[18813,9920],[486,453],[176,316],[192,110],[439,820],[62,393],[446,255],[224,-100],[242,434]],[[17135,8420],[214,334],[189,79],[219,348],[413,149],[244,327],[424,272]],[[14240,9611],[-892,-193],[-1028,-558],[-430,-65],[-206,185],[-106,321],[-629,-445],[-194,-60]],[[15593,2668],[-49,559],[-7,976],[288,380],[-9,793],[172,370],[-56,340],[106,638],[99,221],[78,553],[-27,371]],[[18475,4068],[-183,-422],[23,-391]],[[18904,3573],[-120,506],[-309,-11]],[[16412,91489],[272,446],[186,-63]],[[16415,91505],[128,533]],[[16542,92048],[-219,148]],[[8816,94500],[70,-70]],[[8752,94366],[144,543]],[[9630,77553],[152,138],[-84,500],[88,485],[-69,389],[0,596],[-183,179],[86,293],[-131,726],[43,201],[-275,1178],[-18,447]],[[9239,82685],[229,592],[520,668]],[[12464,86437],[390,308],[327,424]],[[12319,86450],[-294,942],[-130,-2],[-352,642]],[[12321,86449],[-308,29],[-158,-354],[-151,19],[-499,-422]],[[11548,88031],[-86,-248],[-67,-817],[-177,-434],[-9,-802]],[[10106,89205],[-229,79],[-169,-294],[-3,-438],[-85,-180],[-19,-587],[483,-997],[5,-382],[-207,-724],[44,-518]],[[10206,90254],[135,45]],[[9987,90665],[34,-328],[189,-86],[-285,-220],[-102,-270]],[[10088,91727],[130,146],[542,-534],[301,-1218]],[[12461,86440],[82,-1026],[226,-251],[170,60]],[[16870,91872],[323,562],[222,669]],[[17823,93713],[307,83],[-130,326],[419,665],[282,131]],[[18709,94926],[334,138],[244,475]],[[16541,92039],[108,283],[301,1137],[148,-10],[106,-253],[211,-93]],[[15652,90641],[446,75]],[[16152,89348],[85,119],[-126,697],[-10,573]],[[8710,3897],[147,176],[190,498],[341,82],[276,355],[212,471],[305,118],[196,-143],[239,40],[263,229],[-61,524],[160,301]],[[6758,6715],[-90,-195],[76,-1109],[182,-352],[414,-529],[325,-1205]],[[7665,3325],[-299,-422],[-513,-399],[-267,81],[-222,-195],[-140,85],[-223,-217],[-545,-229],[-130,41]],[[5326,2070],[-118,518],[123,519],[-235,101],[-79,796],[118,-19],[321,433],[224,164],[-151,616],[-135,254],[96,172],[-161,577],[175,209]],[[5013,8354],[21,-686],[145,-251],[215,68],[142,-525],[-33,-544]],[[4877,9022],[-149,-372],[299,-274]],[[4909,9317],[-194,60],[-155,763]],[[2694,18224],[-4,-522],[125,-256],[128,-633],[351,-1452],[159,-519]],[[1360,21353],[296,-764],[151,-560],[371,-361]],[[2933,36739],[285,-69],[60,286],[574,275]],[[3711,39482],[5,-383],[-350,-182],[-242,-760]],[[2951,36712],[22,-615],[98,-792],[308,-1560],[110,-877]],[[4278,38979],[-69,-72],[113,-498],[-322,-846]],[[3852,37231],[41,-753],[176,-1087],[-265,-825],[-156,-645],[-47,-954],[-112,-99]],[[7020,37140],[409,27]],[[4278,38979],[437,-407],[382,-761],[308,-156],[231,-259],[684,69],[226,171],[224,-145],[108,93],[147,-449]],[[7118,36071],[137,-579],[-163,-681],[-336,-509],[-232,-928],[315,208],[216,-50],[216,-817],[-87,-706],[-194,-646],[164,-553],[-26,-234],[121,-710],[46,-664]],[[10360,84759],[273,162],[127,467],[297,69],[152,273]],[[3664,98014],[28,266],[-713,290],[-397,10],[-191,109],[-430,-92],[-39,215]],[[4034,97856],[-102,-340]],[[4034,97856],[-471,157]],[[12319,86450],[142,-10]],[[11512,88299],[31,-267]],[[10106,89205],[258,-287],[409,-104],[129,-236],[305,-203],[305,-76]],[[5059,97480],[-155,-69],[-473,90],[-149,295],[-248,60]],[[5059,97480],[-34,46]],[[9166,91966],[-154,-307],[4,-276],[175,-913],[324,-498],[299,-215]],[[9166,91966],[22,-18]],[[6074,96338],[50,-39]],[[6124,96299],[126,210],[-353,621],[-437,346],[-401,4]],[[11513,88297],[152,399],[60,441],[-94,375],[-185,241],[-176,-71]],[[11267,89687],[-113,61],[-93,373]],[[11061,90121],[-471,168],[-246,5]],[[10088,91727],[-16,-474]],[[11568,90404],[-408,-80],[-99,-203]],[[9153,93924],[687,-1140],[196,-434],[52,-623]],[[9166,91966],[-171,319],[-6,269],[195,1121],[-31,249]],[[8886,94430],[267,-506]],[[16870,91872],[-157,-130]],[[98016,9154],[-78,38]],[[8713,3918],[-216,477]],[[18503,4856],[-28,-788]],[[99422,12618],[-642,-421],[-175,-406]],[[18503,4856],[211,59],[103,407]],[[8475,5386],[104,-734],[-82,-257]],[[8402,5643],[73,-257]],[[8397,5655],[5,-12]],[[8252,5238],[92,-588],[153,-255]],[[8245,5753],[152,-98]],[[7669,6246],[-37,-390],[63,-429],[-55,-502],[197,-526]],[[7790,6488],[-121,-242]],[[17010,6430],[320,229],[301,-282],[199,9]],[[7790,6488],[219,2],[236,-737]],[[11596,6552],[101,-453],[232,-241],[197,88]],[[7718,6705],[72,-217]],[[6758,6715],[-409,-212],[-206,62]],[[7718,6705],[483,183]],[[10972,6546],[405,458],[216,-447]],[[7718,6705],[-210,133],[-564,46]],[[6764,6683],[150,250]],[[20572,4464],[-50,456],[229,681],[354,726],[152,682],[169,168]],[[23239,5278],[-178,452],[-7,671],[157,645],[419,74],[65,140]],[[25485,5916],[83,639],[-152,1241]],[[23695,7260],[394,-218],[638,84],[192,281],[497,389]],[[21426,7177],[-76,645]],[[97387,14870],[275,-115],[398,-454],[369,-29],[321,-358],[437,-710],[48,-375],[187,-211]],[[97307,14774],[80,96]],[[16188,7869],[104,-112],[161,-1038],[557,-289]],[[18817,5322],[197,765],[387,109],[106,407],[-12,355],[139,980],[355,-53],[110,232],[565,119],[175,-215],[223,90],[99,-233],[189,-56]],[[11601,6560],[299,14],[82,191],[479,291],[574,86],[362,-90],[692,-58],[302,123],[285,587],[748,185],[116,132],[487,206]],[[40997,9205],[6,-397]],[[40566,8761],[-15,409],[446,35]],[[16073,8237],[-46,-10]],[[16188,7869],[-81,394]],[[16107,8263],[-34,-26]],[[17829,6474],[-415,1146],[-245,472],[-14,206]],[[98122,15559],[-219,-134],[-288,-438],[-228,-117]],[[6673,8675],[-90,-486],[47,-499],[317,-805]],[[10972,6546],[-169,300],[99,441],[-279,261],[-62,387],[155,844]],[[8924,5867],[455,644],[193,-13],[150,652],[308,484],[189,12],[241,626],[287,520]],[[55332,10755],[7,106]],[[55339,10861],[-83,228],[-191,81]],[[4872,9305],[-4,-267]],[[6670,8674],[500,368],[468,59],[87,240],[149,-58],[533,251],[186,-77],[271,-325],[167,322],[176,-75],[255,165],[337,34],[356,-166],[147,179]],[[10543,10058],[-110,-12],[-125,-453]],[[44568,9334],[21,902],[-39,1137],[79,211]],[[37978,11713],[-338,-126],[-399,11]],[[38471,11778],[-493,-65]],[[95992,17828],[-59,-504],[86,-430],[1,-467],[243,-620],[62,-453],[151,-174],[602,-47],[229,-359]],[[10740,10975],[-202,-491],[6,-419]],[[25416,7796],[-154,604],[-48,727],[230,963],[6,769],[153,667]],[[25603,11526],[-289,-8],[-413,-387],[-331,-1040],[-133,-1108],[-159,-313],[-46,-700],[-537,-710]],[[63383,11841],[548,1121],[573,1332]],[[28862,8494],[-492,776],[-373,697],[-396,119],[-210,506],[-329,289],[-531,76],[-197,179],[-338,613]],[[25904,11766],[92,-17]],[[25603,11526],[301,240]],[[49324,13389],[111,-25]],[[49324,13389],[-681,-8],[-364,-96],[-231,-213],[-293,-3],[-1158,-219],[-697,-845],[-445,-111],[-586,-294],[-240,-16]],[[6483,11926],[-12,-645],[-123,-614],[96,-1110],[229,-882]],[[96173,18968],[69,-38]],[[95865,19077],[59,-151],[68,-1098]],[[95865,19077],[308,-109]],[[91710,16520],[-94,336],[19,615],[224,449],[295,330],[13,424]],[[92175,18685],[-8,-11]],[[6483,11926],[-101,351]],[[12862,11700],[-196,446],[3,290]],[[12389,12663],[-216,-444],[-285,-162],[-303,64],[-704,-847],[-144,-300]],[[92436,18890],[-124,-303],[-137,98]],[[6483,11926],[60,529]],[[6382,12277],[-85,365]],[[4909,9317],[271,247],[205,0],[316,434],[531,317],[61,118],[29,724],[-190,371],[-46,404],[211,710]],[[5726,11982],[388,604],[183,56]],[[6543,12455],[-37,206]],[[6506,12661],[-3,19]],[[6297,12642],[206,38]],[[16110,12792],[-162,-496],[-14,-593],[-139,-624],[112,-281],[-26,-399],[149,-642],[74,-1291],[-31,-229]],[[16110,12792],[187,-118],[-56,-574],[79,-621],[464,-784],[-133,-504],[190,-703],[-147,-421],[148,-131],[313,-638]],[[16162,12934],[-52,-142]],[[29982,13383],[84,-96],[74,-561],[157,-389],[-22,-454],[171,-185],[265,-72],[422,-548],[259,-583],[468,-708]],[[63383,11841],[-1,612],[-95,2685],[75,579],[71,38]],[[6297,12642],[-211,482]],[[52909,15090],[39,-180],[479,-668],[322,-367],[929,-1483],[223,-678],[173,-180],[-9,-364]],[[12801,13237],[19,-261],[-151,-540]],[[6503,12680],[-121,530],[-104,113],[-192,-199]],[[35309,14088],[1005,-786],[84,-107],[832,114],[429,140],[55,-119]],[[35309,14088],[190,-725],[54,-859],[-25,-872],[75,-228]],[[10736,10980],[-99,380],[-363,367],[-430,794],[-218,177],[-172,675]],[[21071,13373],[-492,-254],[-190,56],[-178,386]],[[52909,15090],[88,218]],[[12390,12677],[-154,517],[-203,312]],[[95992,17828],[-97,301],[-557,735],[-6,595],[162,640],[-3,309]],[[95491,20408],[78,-62],[111,-824],[185,-445]],[[8868,13428],[-101,-272],[-494,-430],[-511,-106],[-173,131],[-530,118]],[[8872,13437],[117,-110],[286,150],[168,-74]],[[12038,13515],[249,147],[304,-142],[213,-282]],[[12032,13513],[-162,411]],[[9444,13397],[385,-108],[313,332],[382,13],[369,-173],[505,53],[475,390]],[[70623,16984],[-26,564]],[[25996,11749],[482,554],[159,565],[538,241],[392,478],[130,355],[371,148],[59,182],[263,162],[373,-191]],[[29884,14565],[98,-1182]],[[28763,14243],[364,15],[757,307]],[[36515,15511],[-146,-82],[-801,-959],[-259,-382]],[[11870,13924],[461,389],[421,475]],[[56805,14837],[158,636],[72,1929]],[[61527,12668],[-194,326],[-298,284],[-863,555],[-414,430],[-651,1001],[-433,893],[-222,230],[-325,544],[-327,381]],[[16453,12989],[-7,429],[228,18],[11,462],[242,132],[85,207],[72,873],[228,317]],[[57586,17621],[-135,195]],[[57035,17402],[283,183],[121,219]],[[92137,21848],[-57,16]],[[92025,21817],[55,47]],[[5063,15639],[232,-731],[152,-677],[468,-677],[171,-430]],[[49709,17360],[-159,-569],[-212,-1381],[-14,-2021]],[[39143,16658],[15,-1461],[75,-292],[-98,-125],[27,-497],[-15,-1108],[-589,-80],[31,-949],[-118,-368]],[[49709,17360],[150,9]],[[5063,15639],[-213,-127],[-219,219],[-166,-15],[-97,-333],[-131,30],[-530,-603],[-255,39]],[[57445,17817],[-308,99],[-112,167]],[[46596,17328],[-49,-336],[-577,-1880],[-852,-68],[3,-725],[-1034,-1019],[-672,-423],[-284,-115],[-343,-315],[-319,-466]],[[49714,17560],[-5,-200]],[[49714,17560],[139,9]],[[46596,17328],[597,-2],[705,-95],[422,13],[114,183],[1098,10],[182,123]],[[57580,17621],[401,654]],[[61287,18469],[-413,95]],[[60874,18564],[-20,8]],[[70145,19518],[16,105]],[[92025,21817],[-354,377],[-239,33],[-104,-222],[-273,336]],[[91055,22341],[-343,-676],[-115,-578],[-177,-505],[-146,-179],[-98,-556],[26,-535]],[[43966,17354],[191,-100],[1145,-7],[109,53],[647,-38],[538,66]],[[43158,17313],[808,41]],[[85558,21586],[12,23]],[[43158,17313],[-292,-144],[-1541,-133],[-1109,-155],[-349,-119],[-724,-104]],[[70161,19623],[14,226]],[[70175,19849],[19,172]],[[90532,22627],[258,-217],[283,28]],[[95054,23701],[2,-399]],[[66358,19906],[9,53]],[[24451,14982],[82,231],[-262,681],[-230,371],[-289,-207],[-35,343],[-320,670]],[[23127,16894],[270,177]],[[93941,23413],[-176,-413]],[[61287,18469],[314,302],[454,79],[113,189],[445,117],[432,332],[367,177],[618,-31],[75,420]],[[52997,15308],[-12,739],[-59,128],[-386,99],[-3,500],[145,437],[-95,595],[44,193],[6,967],[-63,127]],[[49859,17369],[1104,81],[434,273],[262,372],[59,247],[251,385],[67,-61],[538,427]],[[54140,19412],[353,-471],[492,-245],[138,-286],[581,-45],[570,-294],[751,12]],[[64105,20054],[83,197],[332,198]],[[52574,19093],[407,281],[424,111],[735,-73]],[[94552,24368],[-479,-753]],[[89999,23883],[197,-6],[166,-990],[170,-260]],[[95051,23737],[-274,284],[-109,618]],[[94668,24639],[-116,-271]],[[95097,25078],[34,-43]],[[95131,25035],[-93,-546],[16,-788]],[[68906,20343],[274,672],[237,827]],[[94904,25202],[193,-124]],[[95088,25667],[-150,-467],[-270,-561]],[[38639,19360],[73,-65],[65,-1083],[280,20],[86,-1574]],[[94668,24639],[-300,420],[-159,387]],[[23397,17071],[36,235],[552,334],[387,111],[184,-100],[314,69],[373,369],[603,973],[210,-70],[384,197]],[[30023,19409],[163,-101]],[[30023,19409],[49,-233],[123,-1409],[-90,-1521],[34,-692],[-190,-552],[-65,-437]],[[94209,25446],[-340,127]],[[7642,18922],[328,-547]],[[7642,18922],[-19,-217],[-277,-677],[-172,-626],[-513,-171]],[[92285,25370],[0,402]],[[92181,23801],[77,580],[-82,484],[108,498]],[[92146,21830],[-94,274],[151,1279],[-27,406]],[[2234,19576],[62,-554],[236,-715],[162,-83]],[[7642,18922],[-6,199]],[[61811,22052],[308,-335],[242,-26],[351,114],[848,-53],[5,-329],[818,-158],[161,134],[208,-95],[-105,-644]],[[60854,18572],[77,334],[53,704],[228,205],[310,35],[233,304],[-16,819],[53,900]],[[94748,25951],[-54,-528],[210,-221]],[[95097,25078],[-7,639]],[[49714,17560],[7,1367],[-27,2131]],[[44178,22383],[-366,-26],[-547,-308],[-50,-285],[-262,-503],[-571,-470],[-1070,-192],[-813,-68],[-314,-302],[-245,-27],[-353,-408],[-404,-161],[-277,-227],[-267,-46]],[[11758,19507],[13,-203]],[[95070,26338],[175,-180]],[[95070,26338],[-158,-59],[-164,-328]],[[43966,17354],[-50,1158],[8,849],[161,700],[163,259],[-10,494]],[[94741,25937],[-451,499]],[[94209,25446],[-70,579],[151,411]],[[29503,19791],[-229,518]],[[52899,21875],[119,-711],[4,-662],[-296,-329],[-152,-1080]],[[49853,17569],[220,15],[43,188],[346,516],[455,1450],[348,601],[136,347],[807,764],[359,9],[332,416]],[[31715,20591],[-200,-679],[-446,-107],[-105,-136],[-525,-154],[-253,-207]],[[90092,26352],[92,-297]],[[90184,26055],[-205,-899],[60,-272],[-7,-903],[-88,-230]],[[89915,26204],[-179,-99]],[[89731,26101],[-5,-186]],[[94290,26436],[-451,473]],[[93869,25573],[-78,652],[99,298]],[[94919,27127],[151,-789]],[[94290,26436],[120,298],[257,325],[252,68]],[[58398,22822],[441,-26],[329,-179],[932,-313],[114,-110],[1179,-213],[417,57]],[[57981,18275],[341,23],[197,146],[387,-89],[482,102],[229,-280],[337,-103],[365,402],[408,-5],[127,101]],[[52899,21875],[223,210],[749,250],[163,303]],[[61792,21873],[4,462],[111,183],[56,746]],[[94919,27127],[442,113],[670,369]],[[96031,27609],[403,-14]],[[93488,27275],[351,-366]],[[56836,22955],[842,-11],[720,-122]],[[89732,25937],[-428,-231],[-239,26],[-144,267],[-265,20],[-154,-234],[-211,-27],[-444,152]],[[85570,21609],[253,477],[9,594],[-114,534],[-25,572],[37,908],[112,952],[98,428],[-71,196]],[[90294,27003],[-62,-455]],[[93906,27535],[-67,-626]],[[94838,27678],[81,-551]],[[4704,17724],[44,-392],[315,-1693]],[[90283,26972],[335,67],[134,150]],[[44238,20814],[-60,1569]],[[93488,27275],[-62,429]],[[92482,27604],[-227,-1500],[30,-332]],[[94819,27992],[11,-11]],[[94819,27992],[19,-314]],[[56242,23449],[206,-373],[388,-121]],[[57025,18083],[-413,831],[-131,408],[-21,509],[-195,946],[-32,610],[9,2062]],[[3542,20860],[-127,116],[-381,3],[-244,242],[-612,-526],[-74,-760],[74,-267]],[[92482,27604],[-345,102],[-662,-289],[-211,19]],[[94830,27981],[314,62],[184,188]],[[46823,22810],[20,-2100]],[[26030,21629],[-27,95]],[[44231,22722],[-53,-339]],[[46719,22806],[-344,38],[-1071,-36],[-1073,-86]],[[92482,27604],[218,80],[72,270]],[[26003,21724],[391,259],[238,64],[225,244],[245,-464],[241,-31],[91,285],[334,240],[388,-129],[39,-268],[320,-423],[181,-690],[197,-301],[381,-201]],[[49694,21058],[-47,487],[-210,565],[-5,837],[-107,480]],[[49325,23427],[-346,-94],[-732,-31],[-254,-101],[-7,-168],[-583,-200],[-684,-27]],[[96925,27827],[40,228],[499,934]],[[16571,18913],[-213,36],[-17,392],[-122,225],[-179,694],[-343,-72],[-176,385],[-219,129],[-238,534],[67,313],[-177,529]],[[14954,22078],[-12,17]],[[14942,22095],[-4,5]],[[14938,22100],[13,67]],[[14442,22060],[318,142],[178,-102]],[[14951,22167],[32,142]],[[10331,22273],[-533,-139],[-230,-365],[-221,-76],[-178,-428],[-445,-685],[-702,-729],[-174,-596],[-212,-134]],[[11198,22325],[131,-600],[177,-297],[89,-533],[-51,-850],[214,-538]],[[11120,22405],[78,-80]],[[24114,25035],[244,-229],[67,-792],[327,-874],[48,-409],[156,-191],[317,230],[309,58]],[[56242,23449],[-121,1286]],[[56121,24735],[571,-77]],[[26003,21724],[-106,218],[-92,928],[-223,-42]],[[92772,27954],[15,314],[-179,474],[72,354]],[[11120,22405],[-231,214],[-558,-346]],[[58967,24664],[-69,314],[105,301]],[[55762,24993],[182,-8]],[[55944,24985],[177,-250]],[[56692,24658],[405,65],[587,-2],[683,75],[636,483]],[[37601,25009],[-325,-561],[-339,-437],[-445,-749],[-661,-641],[-597,-670],[-194,-320],[-292,-134],[-323,-295],[-603,-175],[-478,-359],[-427,-42],[-411,289],[-328,-27],[-463,-297]],[[93775,29504],[227,-315],[54,-580],[-132,-587],[-18,-487]],[[94386,29658],[139,-316],[21,-504],[229,-276],[44,-570]],[[92691,29064],[528,484],[556,-44]],[[92680,29096],[34,522]],[[49319,25089],[633,9],[1,-161],[388,-17]],[[49319,25089],[6,-1662]],[[80869,27202],[54,580],[353,582]],[[25582,22828],[47,235],[-78,538],[389,218]],[[81276,28364],[-86,66]],[[93732,30204],[479,-189],[175,-357]],[[93732,30204],[90,-287],[-47,-413]],[[52899,21875],[20,769],[-107,283],[-1,1292],[-50,102],[35,1206]],[[52796,25527],[51,12]],[[50341,24920],[1252,2],[261,495],[350,97],[592,13]],[[70437,27274],[204,-39]],[[94965,30491],[-33,-768]],[[95179,29159],[-66,147],[-148,1185]],[[70641,27235],[87,133]],[[52847,25539],[923,182],[456,-87],[110,-104],[869,-71],[150,-140]],[[81276,28364],[136,419]],[[93732,30204],[-304,262]],[[68022,27336],[753,-78],[11,161],[527,-37]],[[15765,24062],[-398,-186],[-109,-293],[-111,-831],[-164,-443]],[[65472,26971],[-203,96],[-533,-232],[-316,41],[-243,-212]],[[68022,27336],[-301,49]],[[67721,27385],[-961,-175],[-1013,-263]],[[86812,29759],[241,48]],[[71924,26505],[104,1192],[147,302]],[[93787,31066],[175,-705]],[[90868,30673],[-189,-1149],[-50,-868],[91,-602],[32,-865]],[[1249,25274],[108,-441],[-76,-502],[-148,-347],[39,-869],[106,-597],[115,-275],[28,-473],[-61,-417]],[[92680,29096],[-213,203],[-174,825],[-222,46],[-247,637],[-280,94],[-282,226]],[[37546,25716],[55,-707]],[[37222,25511],[324,205]],[[90868,30673],[-516,298]],[[90352,30971],[-89,-514],[-94,-1087],[34,-179],[88,-2187]],[[91262,31127],[-239,-492],[-155,38]],[[3138,23578],[-228,12],[-355,205],[-425,1099]],[[37546,25716],[216,135]],[[85926,30463],[276,-319],[251,-2],[359,-376]],[[85300,30483],[145,186],[308,-25],[166,-165]],[[44073,26353],[42,-1970],[36,2],[27,-1231],[53,-432]],[[46792,26657],[26,-1254],[-34,-450],[39,-2143]],[[46704,26660],[-270,-18],[-200,-198],[-308,-82],[-1589,-85],[-264,76]],[[24114,25035],[-186,46],[-251,404]],[[22921,25335],[703,245]],[[90902,31485],[-34,-812]],[[90352,30971],[-311,184],[-171,264]],[[59003,25279],[326,565],[323,693],[933,988],[126,547],[84,66]],[[46704,26660],[88,-3]],[[46792,26657],[78,379]],[[49753,27269],[38,-1047],[-109,-343],[-363,-790]],[[84751,30970],[36,448],[147,379],[7,528]],[[84751,30970],[3,5]],[[84749,30963],[2,7]],[[84696,30320],[-71,270],[126,380]],[[49753,27269],[-584,-3],[1,-114],[-736,-130],[-1564,14]],[[90352,30971],[53,208],[-33,609]],[[90372,31788],[-274,-65],[-228,-304]],[[32650,25454],[165,367],[516,428],[427,-42],[198,215],[561,-293],[511,7],[607,221],[549,-28],[233,-101],[364,-360],[165,-314],[276,-43]],[[25940,23819],[-32,482],[-134,279],[-95,595],[23,550],[171,382]],[[3817,24356],[248,640],[44,399]],[[70728,27368],[24,774],[170,299],[42,487],[137,136],[98,476]],[[55907,28054],[-119,-740],[-26,-2321]],[[55944,24985],[269,315],[97,814],[215,674],[293,360],[132,389],[162,199],[121,518]],[[30363,26393],[294,-23],[545,154],[386,-278],[49,-201],[480,204],[96,-76],[11,-607],[426,-112]],[[92126,31676],[295,712]],[[89353,31967],[517,-548]],[[89338,31973],[15,-6]],[[54623,27763],[441,246],[431,144],[412,-99]],[[91225,32251],[-32,-813],[69,-311]],[[55907,28054],[-6,155]],[[16768,26114],[394,-454],[650,253],[192,-89],[1191,389]],[[55901,28209],[599,-2],[283,92],[450,-45]],[[91220,32350],[5,-99]],[[16705,26189],[63,-75]],[[57233,28254],[25,186],[211,102]],[[72175,27999],[231,963],[188,301],[142,993]],[[14402,24968],[-183,735],[-11,299],[-164,-107],[-270,214],[-385,-23],[-669,148]],[[59310,28784],[563,-134],[376,-281],[404,-56],[142,-175]],[[57469,28542],[269,-50],[580,62],[345,-112],[92,128],[313,-50],[241,243]],[[90902,31485],[156,822],[-8,205]],[[90726,32473],[-113,-220],[-76,-534]],[[91050,32512],[-17,20]],[[90726,32473],[307,59]],[[91249,32589],[39,-133]],[[91249,32589],[-29,-239]],[[91249,32589],[-199,-77]],[[4028,28115],[178,-306],[164,-3],[174,-356],[266,-106],[-21,-212],[466,-787]],[[5256,26347],[338,-734]],[[90726,32473],[-81,45]],[[72829,30137],[-83,113]],[[90645,32518],[-227,-6]],[[90418,32512],[-46,-724]],[[90418,32512],[-2,29]],[[37762,25851],[359,275],[197,786],[256,455]],[[23677,25485],[-55,230],[-536,1002]],[[72746,30250],[32,129]],[[23086,26717],[-36,45]],[[22988,25367],[97,1131],[-35,264]],[[92655,33013],[841,-772]],[[87695,32277],[569,141],[315,-208],[504,-62],[255,-175]],[[8075,26773],[43,-260]],[[90416,32541],[-43,390]],[[92375,33268],[280,-255]],[[90645,32518],[17,701]],[[90373,32931],[289,288]],[[52658,29006],[636,-368],[562,-53],[93,-352],[674,-470]],[[52847,25539],[15,865],[-216,37],[-15,517],[27,2048]],[[79994,31502],[-194,340]],[[87695,32277],[-133,374]],[[80034,31874],[-234,-32]],[[52649,29120],[9,-114]],[[91033,32532],[32,577],[-60,251]],[[43624,28620],[-66,-952],[53,-890],[462,-425]],[[23050,26762],[-396,540],[-214,399]],[[56478,29667],[334,-25],[395,-802],[262,-298]],[[69319,30790],[12,168]],[[71368,31189],[33,-7]],[[71199,29540],[169,1649]],[[43624,28620],[-545,-27],[-169,81]],[[55901,28209],[-92,1449]],[[71401,31182],[193,92],[370,-310],[386,-552],[396,-162]],[[55809,29658],[275,75],[394,-66]],[[90373,32931],[-123,45],[-148,678]],[[42910,28674],[-617,-158],[-393,229],[-977,-104],[-511,-355],[-94,-279],[-260,-316],[-285,-186],[-1199,-138]],[[90968,33812],[-56,110]],[[93056,32368],[-247,355],[-575,329],[-285,227],[-422,155],[-189,212]],[[69331,30958],[171,17],[234,257],[708,-134],[338,46],[172,144],[414,-99]],[[79800,31842],[-361,569]],[[71401,31182],[99,524]],[[90662,33219],[-99,210],[-31,496]],[[90223,33678],[309,247]],[[92375,33268],[-395,298],[-549,322]],[[88885,33830],[773,-153],[273,-127],[171,104]],[[87730,33688],[661,-196],[162,206],[187,-73],[145,205]],[[87493,32844],[-28,389],[265,455]],[[52870,29917],[664,-155],[1195,33],[656,-38],[424,-99]],[[52649,29120],[224,339],[-3,458]],[[90532,33925],[-38,208]],[[90912,33922],[-418,211]],[[51858,29935],[1012,-18]],[[51858,29935],[468,-676],[323,-139]],[[56482,30326],[-4,-659]],[[4107,25387],[-76,351],[16,519],[-260,556],[151,370],[41,875]],[[72778,30379],[-24,806],[91,850]],[[71500,31706],[797,-28],[548,357]],[[46849,29622],[-11,-619],[32,-1967]],[[43624,28620],[349,106],[418,14],[616,219],[437,402],[764,85],[241,126],[400,50]],[[90938,34336],[-3,22]],[[55770,30359],[39,-701]],[[90697,34426],[238,-68]],[[90455,34382],[240,36]],[[84934,32320],[21,675],[144,174],[58,456]],[[49766,30030],[-23,-410],[57,-1001],[-55,20],[8,-1370]],[[51858,29935],[-1131,-11],[-80,141],[-270,11]],[[50377,30076],[-466,-11]],[[49911,30065],[-145,-35]],[[87730,33688],[-556,279]],[[87493,32844],[-291,610],[-28,513]],[[46849,29622],[1017,57],[129,118],[866,16],[594,246],[311,-29]],[[64853,30441],[265,417],[42,515]],[[74927,29825],[-14,289],[-301,666],[-228,302],[-75,1036],[-184,258]],[[72778,30379],[229,258],[259,462],[415,95],[73,311],[213,226],[27,232]],[[73771,32052],[354,324]],[[74249,32472],[-124,-96]],[[52870,29917],[-9,531]],[[62958,31366],[539,-109],[182,80],[412,-70],[195,90],[874,16]],[[62537,30017],[86,503],[335,846]],[[65178,31586],[-18,-213]],[[65369,31588],[-191,-2]],[[18754,27641],[423,-1414]],[[89816,34645],[338,-165],[340,-347]],[[90102,33654],[-171,748],[-115,243]],[[717,28592],[45,-817],[149,-316]],[[914,27460],[217,-410]],[[74125,32376],[-170,343]],[[90496,34881],[-79,-227],[77,-521]],[[90421,34881],[75,0]],[[90421,34881],[-342,70],[-263,-306]],[[90496,34881],[28,170],[349,301],[170,353],[12,370]],[[88803,34910],[445,-26],[568,-239]],[[72845,32035],[94,837]],[[87174,33967],[-384,288],[-214,-59],[-567,373],[-309,-141]],[[73065,33152],[539,-140],[351,-293]],[[72830,32962],[235,190]],[[12539,29280],[13,-1172],[-57,-671],[225,-1203]],[[71720,33224],[532,-186],[578,-76]],[[71500,31706],[114,473],[106,1045]],[[71190,31575],[-231,824],[-195,348],[-3,516]],[[87730,33688],[154,250],[14,741],[331,777]],[[88229,35456],[5,12]],[[88229,35456],[244,-1],[330,-545]],[[22477,29965],[-6,-664],[-238,-134],[-46,-382]],[[85700,34428],[-202,-45],[-294,246],[-548,63],[-462,639],[-110,-7]],[[69331,30958],[197,2282],[68,537]],[[90421,34881],[-108,379],[-42,653],[-131,408]],[[91055,36075],[-556,261],[-359,-15]],[[82874,35312],[614,166],[336,-335],[260,181]],[[65444,33402],[-86,-1205],[11,-609]],[[65178,31586],[-387,382],[-396,902],[-782,614]],[[62958,31366],[62,276],[252,134],[186,552],[113,587],[42,569]],[[69596,33777],[2,339]],[[38360,31643],[21,-706],[-260,-882],[-130,-151],[21,-557],[-170,-143],[-55,-836],[116,-363],[144,-69]],[[63613,33484],[-21,145]],[[89965,36772],[175,-451]],[[89786,36754],[179,18]],[[32850,31428],[-540,-549],[-145,-256],[-443,-115],[-476,-272],[-205,-276],[-394,-83],[-506,-398],[-259,-114]],[[42910,28674],[42,515],[-152,661],[40,1067],[101,1],[110,1208]],[[68310,34392],[117,-181],[546,-144],[572,-355]],[[16926,34360],[289,-459],[71,-356],[173,-254],[35,-1165],[91,-116],[288,-974],[24,-439],[240,-330],[165,-1267],[200,63],[76,-361]],[[73955,32719],[-119,406],[40,250],[-173,513],[-204,1063]],[[88234,35468],[-691,224],[-388,449],[-567,485]],[[87174,33967],[85,606],[-183,442],[-191,146],[-267,655],[92,156],[-122,654]],[[73226,35083],[-3,-537],[-158,-1394]],[[88977,37062],[375,-361],[434,53]],[[88234,35468],[244,330],[499,1264]],[[79077,35863],[635,-249]],[[61538,32045],[-63,266],[-340,687],[-308,109],[-126,444],[-2,391]],[[3697,31150],[-167,10]],[[73499,34951],[-69,273]],[[73430,35224],[-204,-141]],[[60656,33946],[-24,9]],[[60632,33955],[-40,17]],[[43051,32126],[6,499]],[[78804,36030],[273,-167]],[[78396,33504],[157,479],[170,1849],[81,198]],[[38623,32397],[-4,-453],[-259,-301]],[[38700,32406],[-77,-9]],[[76712,35846],[4,-363],[500,-86]],[[12075,31504],[192,-1134],[183,-438],[89,-652]],[[77216,35397],[83,600]],[[43057,32625],[83,235]],[[76712,35846],[436,195],[151,-44]],[[63592,33629],[94,955]],[[60592,33972],[-185,205],[-404,34],[-249,-134],[-366,96]],[[78804,36030],[-270,233]],[[77299,35997],[925,-120],[310,386]],[[73502,35672],[7,5]],[[70761,33263],[-1,876],[127,587],[3,678]],[[36154,32299],[-345,-137],[-140,68],[-419,-69],[-323,316],[-124,8]],[[63589,34703],[97,-119]],[[88977,37062],[-67,363],[441,336]],[[70890,35404],[-2,96]],[[63248,34513],[156,212],[185,-22]],[[70870,35510],[18,-10]],[[63248,34513],[-581,78],[-87,-146],[-341,9],[-108,-117],[-476,41],[-259,201],[-410,-508],[-330,-125]],[[89420,37854],[151,-68],[394,-1014]],[[89351,37761],[69,93]],[[36842,32726],[-224,17],[-464,-444]],[[78534,36263],[204,248]],[[89420,37854],[14,57]],[[43057,32625],[-439,-318],[-141,83],[-819,-171],[-88,73],[-650,-74],[-204,324],[-229,119],[-439,-45],[-267,255],[-507,134],[-369,-514],[-205,-85]],[[89434,37911],[18,77]],[[73509,35677],[698,396],[611,140],[411,10],[493,-159],[394,-309],[596,91]],[[73455,35641],[47,31]],[[69598,34116],[37,678],[-46,842]],[[71247,35847],[835,-11],[943,-243],[430,48]],[[70888,35500],[359,347]],[[22095,33485],[73,-206],[73,-903],[-24,-301],[114,-1022],[158,-538],[-12,-550]],[[86044,37651],[570,-179],[647,-360],[746,155],[416,189],[554,-394]],[[70870,35510],[-373,-20],[-913,208]],[[69589,35636],[-5,62]],[[65687,35310],[-243,-1908]],[[65687,35310],[-322,-186],[-471,14],[-835,-497],[-373,-57]],[[78738,36511],[446,384]],[[86588,36626],[-548,689],[-156,-19],[-307,450]],[[55440,34480],[-3,-384],[329,-950],[64,-764],[-61,-643],[1,-1380]],[[78534,36263],[-835,210],[-341,261]],[[77299,35997],[59,737]],[[85577,37746],[186,51],[281,-146]],[[54849,34503],[591,-23]],[[32850,31428],[-318,344],[-312,466],[-330,138],[-439,-27],[-242,443],[-445,153]],[[52861,30448],[5,262],[-207,71],[-60,1871],[38,1770]],[[83140,37651],[258,-1067],[245,-502]],[[69584,35698],[-1106,239]],[[50321,34376],[-627,-1144],[-9,-593],[48,-968],[-17,-862],[50,-779]],[[65687,35310],[348,250],[88,279]],[[52637,34422],[14,216]],[[65573,35921],[114,-611]],[[50451,34579],[-130,-203]],[[68478,35937],[12,235],[171,156]],[[79712,35614],[148,672],[94,946],[98,405]],[[79184,36895],[541,351],[327,391]],[[46391,34409],[42,-1520],[-94,-85],[-16,-493]],[[3530,31160],[16,743],[-84,524],[27,441]],[[88789,38850],[311,-295],[334,-644]],[[88734,38835],[55,15]],[[63589,34703],[57,1230]],[[65573,35921],[100,223]],[[88536,38903],[198,-68]],[[65754,36248],[369,-409]],[[65754,36248],[-81,-104]],[[90662,39250],[18,-450],[312,-871],[32,-525],[-67,-592],[98,-737]],[[89452,37988],[128,259],[794,685],[288,318]],[[63646,35933],[616,-67],[572,348],[584,-144],[155,-149]],[[90662,39250],[240,120]],[[77358,36734],[311,1030]],[[88536,38903],[-231,266]],[[66123,35839],[16,282],[233,461]],[[35023,34184],[-43,-271],[101,-742],[-110,-491],[-168,-195]],[[46399,34450],[333,472],[797,-51],[588,18],[490,-48],[556,-217],[5,-168],[832,-22],[451,145]],[[66997,36796],[-211,45]],[[66372,36582],[414,259]],[[60870,36356],[-183,-503],[-111,-1273],[16,-608]],[[73465,37680],[-39,-707],[29,-645],[-59,-526],[59,-161]],[[66491,36978],[295,-137]],[[66389,36952],[102,26]],[[65996,36946],[393,6]],[[65996,36946],[92,-202],[-334,-496]],[[36217,34723],[108,-425],[-81,-566],[12,-654],[-103,-272],[1,-507]],[[68694,37421],[-96,-351],[63,-742]],[[66770,37222],[16,-381]],[[66770,37222],[366,-40],[1107,196],[451,43]],[[75817,38231],[684,-227],[692,-165],[214,99],[262,-174]],[[83683,39275],[85,-163],[310,-156],[316,-302],[178,-324],[1005,-584]],[[75817,38231],[-488,83]],[[36197,34706],[266,314]],[[80052,37637],[409,178],[442,681],[38,352],[173,247]],[[70870,35510],[-55,553],[48,656],[-8,674],[-99,514]],[[75329,38314],[-447,10],[-62,-82],[-483,98]],[[65996,36946],[-799,419]],[[65197,37365],[26,-586],[450,-635]],[[70756,37907],[-278,57],[-556,-112],[-467,-293],[-190,45],[-571,-183]],[[88745,40234],[-87,-198],[-122,-1133]],[[71053,38125],[382,153]],[[82227,39640],[-61,-196],[95,-507],[299,-842],[-38,-332],[102,-125],[233,89],[283,-76]],[[81114,39095],[453,313],[143,-116],[517,348]],[[31058,35241],[-248,-712],[-145,-1060],[99,-524]],[[85577,37746],[-536,790],[-218,584],[-103,892]],[[60918,37426],[361,14]],[[60918,37426],[-48,-1070]],[[25055,34080],[429,36],[143,-74],[173,205],[309,897]],[[58988,37226],[441,95],[859,5],[630,100]],[[80123,38549],[-27,652],[-130,335]],[[74337,38340],[-1330,284],[-72,103]],[[72935,38727],[434,-674],[96,-373]],[[71435,38278],[414,349],[495,-28],[54,112],[537,16]],[[79966,39536],[106,82]],[[81114,39095],[-497,589],[-371,-133],[-174,67]],[[61339,37617],[109,-31],[266,-580],[477,-372],[271,16]],[[61279,37440],[60,177]],[[89071,40799],[-326,-565]],[[83683,39275],[61,154],[-50,489],[214,335]],[[87685,39688],[-92,282],[-282,363],[-160,364]],[[86861,40524],[-167,-781],[-16,-353]],[[83908,40253],[13,57]],[[65197,37365],[-438,476],[-1091,186]],[[63646,35933],[52,697],[-82,260],[52,1137]],[[84720,40012],[-45,461]],[[84675,40473],[-118,-136],[-383,117],[-245,-132]],[[84675,40473],[-181,186],[-185,889],[-50,737],[-85,445],[-148,306]],[[61353,37973],[-14,-356]],[[63668,38027],[-298,27],[-216,-111],[-837,158],[-259,-95],[-338,40],[-367,-73]],[[79095,40257],[181,28],[429,-365],[261,-384]],[[22095,33485],[200,472],[-85,1653]],[[25055,34080],[-298,1265],[-192,341]],[[87151,40697],[-53,321]],[[55487,37587],[-35,-1402],[-12,-1705]],[[87098,41018],[-30,99]],[[26109,35144],[-543,479],[-685,182],[-316,-119]],[[24565,35686],[-187,118],[-409,7]],[[55465,37763],[22,-176]],[[78738,36511],[97,919],[323,477]],[[87049,41206],[-54,39]],[[86737,41029],[-264,138],[-775,-132],[-272,38]],[[84675,40473],[242,-33],[405,596],[104,37]],[[55115,37844],[350,-81]],[[38700,32406],[57,634],[-72,1275],[190,2],[-11,904],[-530,864],[-67,229],[95,444]],[[16926,34360],[332,71],[377,250],[323,719],[147,190],[171,555],[114,96]],[[89970,41999],[-66,169]],[[89071,40799],[301,926],[287,315],[245,128]],[[87967,41909],[-273,118]],[[52997,38252],[1271,-9],[732,-300],[115,-99]],[[52651,34638],[2,458],[322,-25],[132,240],[29,1327],[-91,2],[-4,674],[85,572],[-101,346]],[[51878,38266],[1119,-14]],[[77669,37764],[-147,863],[95,311],[-117,562],[181,1370]],[[23969,35811],[-329,449],[-491,427]],[[23149,36687],[-149,-422],[-217,25],[-209,-438],[-270,-52],[-94,-190]],[[80072,39618],[144,866],[499,1291]],[[51298,38268],[580,-2]],[[89904,42168],[151,99],[80,304]],[[87509,41959],[-357,214]],[[87191,42140],[-220,-646],[24,-249]],[[7118,36071],[30,486],[256,412]],[[90135,42571],[17,50]],[[75817,38231],[-268,831],[-339,669],[-151,544],[-34,764]],[[74919,41042],[-113,-521],[-119,-1234],[-81,-337],[-220,-219],[-49,-391]],[[85426,41073],[222,302],[481,929]],[[22210,35610],[-14,277],[164,776],[-126,576]],[[61423,39751],[-70,-1778]],[[87156,42172],[-107,145],[-376,150],[-91,147]],[[86766,41771],[-184,843]],[[86582,42614],[-132,77]],[[22234,37239],[65,209]],[[86069,42909],[381,-218]],[[51878,38266],[-65,263],[-376,582]],[[51288,38275],[16,351],[133,485]],[[23149,36687],[50,539],[-244,341]],[[86450,42691],[-247,541]],[[22955,37567],[-376,-188],[-280,69]],[[35123,38154],[-46,-1186],[248,-1020],[-228,-535],[-74,-1229]],[[7427,37159],[190,161],[282,-117],[441,-19],[103,104]],[[51437,39111],[-88,122]],[[51292,39247],[57,-14]],[[90268,43445],[-133,54]],[[75025,41039],[43,605]],[[88350,43300],[-227,-1319],[-156,-72]],[[75178,41715],[327,-140],[867,-156],[535,-200],[184,-146],[590,-203]],[[75178,41715],[-110,-71]],[[37353,35808],[-63,1230],[25,321],[-67,1122]],[[89331,43531],[-220,-1092],[-8,-537],[-75,-472],[43,-631]],[[88349,43390],[1,-90]],[[35072,38539],[51,-385]],[[75011,41663],[-25,230]],[[60054,40535],[207,-146],[423,-50],[163,-312],[407,-50],[169,-226]],[[90135,43499],[-257,208],[-242,-5],[-214,171]],[[89422,43873],[-91,-342]],[[89422,43873],[-274,-188],[-798,-288]],[[84026,43036],[397,252],[919,118]],[[85342,43406],[228,-9],[128,-219],[371,-269]],[[63022,41009],[-282,-356],[-496,-408],[-785,-281],[-36,-213]],[[9203,38100],[80,-602],[252,-1126]],[[8952,37869],[-296,-414],[-213,-167]],[[34657,41244],[73,-1319],[342,-1386]],[[80291,43019],[71,-602],[353,-642]],[[80291,43019],[-177,33]],[[78031,43648],[80,-628],[-137,-841],[-237,-489],[-56,-820]],[[63022,41009],[573,-3],[278,232]],[[63873,41238],[-1,115]],[[75068,41644],[-520,10],[-302,214],[-424,109],[-89,175],[-368,89],[-223,161]],[[72880,42440],[18,439]],[[7404,36969],[11,715],[-169,225],[-46,825]],[[46791,40429],[30,-714],[-141,-444],[12,-735],[-158,-324],[14,-1969],[-166,-264],[9,-1570]],[[73142,42402],[-773,254],[-619,111]],[[66491,36978],[76,1215],[119,1101],[49,915],[114,146],[50,759],[81,476],[193,176],[37,632]],[[49216,40850],[513,-20],[175,-247],[298,-18],[358,-422],[86,-310],[259,-323],[72,-338],[315,75]],[[77902,43632],[129,16]],[[55465,37763],[569,-38],[258,218],[217,380],[322,207],[580,636],[222,47],[30,1775],[-175,10],[-15,575]],[[48213,40834],[1003,16]],[[66690,42513],[520,-115]],[[89422,43873],[-176,359],[-15,600],[323,172],[55,230]],[[68694,37421],[175,1097],[210,773],[220,3304],[-39,230]],[[46771,40841],[1442,-7]],[[46791,40429],[-20,412]],[[69459,42962],[58,-247],[729,-546],[32,-468],[-87,-1574],[309,-1012],[-13,-222],[163,-838],[106,-148]],[[69260,42825],[199,137]],[[65304,42579],[137,-384],[206,-1497],[32,-838],[246,-1028],[-80,-491],[142,-744],[9,-651]],[[63900,41600],[489,348],[195,261],[624,254],[96,116]],[[65304,42579],[212,67],[824,-138],[350,5]],[[76968,43677],[255,8],[234,293],[240,-338],[205,-8]],[[54915,41759],[148,-322],[63,-698],[-11,-2895]],[[22231,37266],[-71,946],[-64,264],[252,423],[128,725],[-80,239]],[[66770,37222],[194,1774],[489,1230],[383,640],[225,596],[175,184],[465,903],[363,593]],[[4278,38979],[-515,575]],[[71750,42767],[-305,-25],[-936,189],[-115,116],[-579,127],[-320,142]],[[69459,42962],[58,343]],[[67210,42398],[726,108],[609,591],[214,7],[312,248]],[[63230,42698],[165,-25],[505,-1073]],[[63022,41009],[106,1267],[102,422]],[[69495,43316],[-168,89]],[[69064,43142],[263,263]],[[53025,38232],[-66,351],[33,2591],[-98,9],[-12,628]],[[51349,39233],[72,67],[71,1005],[-34,1000],[280,484]],[[48205,41563],[861,-68],[9,-445],[141,-200]],[[48213,40834],[-8,729]],[[22955,37567],[70,504],[-5,484],[150,360],[57,453],[240,410],[636,139],[926,451],[313,-103],[177,-368],[414,90],[261,-76],[189,-414],[214,341],[152,62],[271,394],[197,98]],[[22152,40326],[244,-463]],[[37999,40808],[260,18],[112,-143],[269,24],[918,474],[502,99]],[[48205,41563],[-448,41],[-142,145],[-829,-37],[-42,53]],[[46771,40841],[-27,924]],[[1481,40440],[-23,-643],[-116,-321],[84,-630],[-177,-651],[47,-295],[-156,-368],[7,-686],[-76,-134],[-53,-595],[74,-543]],[[1092,35574],[-120,-317],[35,-639],[-91,-339],[-20,-1003],[-265,-443]],[[631,32833],[-72,-486],[171,-658],[6,-238],[-158,-590],[-40,-400]],[[7346,40522],[-40,-636],[-203,-592],[97,-560]],[[3763,39554],[-74,-123],[-436,-23],[-612,521],[-159,302],[-352,291]],[[1494,40481],[281,-245],[355,286]],[[2130,40522],[-59,255]],[[75284,45150],[75,-501],[-56,-227],[57,-469],[-95,-225],[-5,-851],[-220,-920]],[[2071,40777],[-3,34]],[[69537,43517],[120,247],[767,827],[159,231],[295,124],[430,59],[587,-34]],[[62961,44203],[-22,-431],[296,-803],[-5,-271]],[[71895,44971],[226,189]],[[59772,43701],[-218,314]],[[59554,44015],[-158,-28]],[[74983,41901],[-202,323],[-474,565],[-538,759],[-812,783],[-368,1012]],[[72886,43423],[-119,347],[-61,726],[-81,138],[-104,633],[-77,63]],[[72121,45160],[63,-32]],[[72184,45128],[260,202]],[[62875,44456],[86,-253]],[[42460,39435],[-10,1229],[205,543],[-48,524],[-18,1215]],[[42589,42946],[60,18]],[[1423,41306],[60,-872]],[[72589,45343],[-76,212]],[[72444,45330],[43,175]],[[83960,46968],[162,-392],[260,-1074],[209,-400],[240,-107],[305,-527],[-24,-661],[275,-387]],[[83039,46864],[138,-575],[-25,-364],[167,-515],[184,-851],[50,-565],[327,-907],[146,-51]],[[2068,40811],[-229,415]],[[72513,45555],[-27,114]],[[72483,45499],[41,26]],[[67061,45133],[709,-240],[297,-344],[163,-25],[425,-297],[518,-654],[156,-39]],[[67061,45133],[-220,11]],[[83960,46968],[-600,78],[-321,-182]],[[1539,41753],[-101,-278]],[[52882,41811],[36,661],[274,42],[-10,1554],[54,458]],[[51738,41789],[322,1119],[553,885],[549,599]],[[48205,41563],[12,1898],[-73,552]],[[16181,41478],[284,-660],[254,-1594],[318,-719],[-35,-520],[-150,-778],[-165,-590],[-78,-962],[216,-502],[101,-793]],[[57473,41573],[-69,599],[24,1194],[185,402],[38,1072]],[[42693,43732],[-44,-768]],[[86222,47994],[-723,-312],[-562,-641],[-676,-190],[-301,117]],[[72486,45669],[-159,268],[59,472]],[[17592,42669],[-225,-130],[-288,-461],[-208,321],[-265,89]],[[2375,42401],[-272,-93]],[[2103,42308],[-90,-342],[-224,-360]],[[57651,44840],[382,-23],[648,276],[365,15],[119,-117],[475,-151]],[[78167,47129],[2,-7]],[[78031,43648],[-18,757],[-222,525],[-64,330],[92,415],[129,140],[135,1102],[84,212]],[[86222,47994],[209,190],[207,-45]],[[3066,42530],[-349,15],[-342,-144]],[[35248,41317],[-75,295],[-246,309],[-21,852],[-162,525]],[[34528,43510],[9,9]],[[70095,46503],[398,-245],[315,-314],[191,-61],[576,100],[173,-93],[179,-313]],[[69327,43412],[35,232],[434,1266],[48,1065],[232,396]],[[34516,43543],[21,-24]],[[34528,43510],[-12,33]],[[34516,43543],[146,-1851],[-5,-448]],[[3711,39482],[-101,1232],[32,1198],[38,311],[-92,317]],[[3468,42610],[-402,-80]],[[3763,39554],[185,1390],[-142,927],[-17,756]],[[54410,44977],[208,-851],[-2,-391],[145,-404],[37,-838],[117,-734]],[[54410,44977],[405,55],[691,-39],[82,-138],[805,-69],[229,56],[893,-48],[136,46]],[[53353,45017],[455,-57],[602,17]],[[53162,44392],[159,247],[32,378]],[[53353,45017],[-148,10]],[[22152,40326],[-690,-49],[-163,847],[-240,195],[-230,519],[-474,547],[-238,-39],[-359,207],[-529,452],[-371,181],[-214,-311],[-392,-96],[-238,87],[-422,-197]],[[34408,43893],[108,-350]],[[82554,48182],[208,-484],[277,-834]],[[33259,43570],[417,101],[197,207],[535,15]],[[75465,46324],[122,77],[225,534],[252,139],[238,436]],[[76314,47542],[293,-94],[394,-282],[272,-29],[383,-193],[246,263],[265,-78]],[[66841,45144],[-303,83],[-1256,1177],[-203,94]],[[65079,46498],[-116,224]],[[88667,49501],[-409,-286],[-153,-288],[-532,-647],[-329,-217],[-606,76]],[[88796,49699],[-129,-198]],[[31768,43903],[322,-26],[212,512],[186,-451],[433,-199],[191,58],[147,-227]],[[89261,48845],[-183,490],[-7,403]],[[68884,47083],[791,-163],[252,-334],[163,-68]],[[68891,47401],[-120,-1074],[-86,-380],[94,-783],[375,-787],[175,-843]],[[89071,49738],[-275,-39]],[[2091,43833],[195,-26]],[[2091,43833],[-243,-185],[-162,-389]],[[1686,43259],[-213,-503],[-98,-775],[164,-228]],[[86642,49599],[29,-499],[-144,-609],[111,-352]],[[86490,49446],[152,153]],[[89374,49906],[-404,150]],[[88796,49699],[174,357]],[[7722,44162],[-65,-778],[17,-990],[-131,-393],[-207,-249],[77,-485],[-69,-202],[2,-543]],[[27659,45014],[-77,25],[-477,-587],[-255,115]],[[31768,43903],[-457,-496],[-217,172],[-466,-52],[-308,269],[-530,-121],[-626,74],[-333,145],[-329,362],[-338,857],[-505,-99]],[[88748,50496],[231,-216],[-9,-224]],[[69020,48243],[-18,-547],[-111,-295]],[[69020,48243],[-541,-152],[-125,-212]],[[79162,49415],[671,-408],[342,-547],[556,423],[233,-137]],[[78989,48885],[173,530]],[[26850,44567],[-117,-5],[-174,303],[-444,535],[-576,-234],[-185,46]],[[34537,43519],[442,384],[513,67],[551,246],[128,200],[397,1375],[208,176]],[[88644,50413],[-413,392]],[[36776,45967],[234,57]],[[20026,45278],[81,-485],[543,-755],[399,-885],[256,-328],[105,-492],[175,-200],[204,-589],[172,-207],[1,-384],[190,-627]],[[37010,46024],[1318,58],[1022,126],[523,-108]],[[53801,47237],[248,-466],[263,-1014],[98,-780]],[[53801,47237],[-137,-179],[-105,-424],[-180,-307],[-26,-1310]],[[69020,48243],[418,368],[806,389]],[[72792,49327],[-273,-1677],[21,-324],[-154,-917]],[[53801,47237],[-20,311]],[[64963,46722],[-708,560],[-267,4],[-398,445],[-533,410],[-511,196]],[[62875,44456],[85,1941],[-179,608],[25,445],[-205,488],[-55,399]],[[70244,49000],[110,117]],[[53720,47563],[61,-15]],[[70076,46371],[110,409],[-7,477],[110,409],[153,1483]],[[72930,49436],[-138,-109]],[[88748,50496],[34,803]],[[53721,47651],[60,-103]],[[73526,49558],[205,-212],[1020,-748],[89,-318],[288,-232],[452,-125],[243,-217],[491,-164]],[[70503,49173],[640,-622],[386,-1083],[421,-344],[436,-715]],[[70442,49149],[10,94]],[[70354,49117],[94,65]],[[72990,49527],[-60,-91]],[[72792,49327],[-173,-144],[-386,12],[-421,173],[-686,-121],[-531,12],[-148,-83]],[[42041,46839],[29,-924],[266,-121],[371,-316],[43,-1505],[-57,-241]],[[39873,46100],[1213,116],[154,-122],[519,45],[282,700]],[[59640,44840],[17,561],[232,414],[164,488],[334,311],[143,482],[-16,502],[308,718]],[[58051,47893],[919,40],[132,86],[453,7],[754,245],[134,-72],[379,117]],[[73526,49558],[-536,-31]],[[26086,90235],[-305,217]],[[56359,47971],[-778,-88],[-1164,-68],[-455,-89],[-181,-178]],[[58051,47893],[-416,-9],[-130,149],[-669,57],[-477,-119]],[[48144,44013],[-6,540],[-98,748],[-37,2148]],[[26228,90289],[-142,-54]],[[26228,90289],[-4,47]],[[61068,48640],[-246,-324]],[[51638,47849],[185,-1]],[[53205,45027],[-528,-167],[-255,-213],[-809,33]],[[52554,47969],[688,-426]],[[51823,47848],[731,121]],[[62546,48337],[-11,129],[-416,401]],[[62051,48880],[68,-13]],[[62022,48883],[29,-3]],[[62022,48883],[-94,-235],[-389,-173]],[[61539,48475],[-205,-157],[-512,-2]],[[26351,90416],[-123,-127]],[[61068,48640],[77,142],[396,113],[481,-12]],[[26086,90235],[-184,-692],[206,-391],[228,566],[165,586]],[[26351,90416],[150,-112]],[[85444,51538],[392,-484],[212,-402],[209,-575],[144,-589],[89,-42]],[[26501,90304],[115,-252]],[[76236,50358],[-191,110],[-426,-296]],[[73526,49558],[225,152],[295,452],[242,-91],[365,307],[272,25],[167,-158],[491,17],[36,-90]],[[85444,51538],[-33,175]],[[86489,51431],[-231,-156],[-296,2],[-21,165],[-268,212],[-262,59]],[[79512,51120],[82,-396],[-227,-781]],[[7707,44107],[181,808],[518,730],[15,416],[274,244]],[[79482,51217],[30,-97]],[[26351,90416],[213,287]],[[34408,43893],[166,147],[93,394],[-2,848],[-92,359],[59,369],[-38,374],[64,355],[-75,668]],[[67277,50007],[364,-147],[798,-113],[301,-196],[1187,-260],[317,-291]],[[62119,48867],[773,253],[422,369],[271,119],[485,-21],[405,170]],[[48003,47449],[42,940]],[[67082,50056],[-128,-634],[58,-1250],[106,-96]],[[67082,50056],[195,-49]],[[66256,49966],[510,168],[316,-78]],[[1734,45015],[252,105],[129,527],[-69,453],[-179,426],[-167,158]],[[42041,46839],[122,321],[428,34],[502,138],[250,261],[337,17],[1110,480],[214,181],[792,95]],[[45796,48366],[734,100],[524,13],[301,-111],[690,21]],[[64530,50015],[1125,-140],[601,91]],[[64530,50015],[-55,-258]],[[27659,45014],[166,362],[319,939],[160,251],[241,35],[129,762],[142,417]],[[54211,49423],[-200,-400],[-139,-511],[-91,-964]],[[32060,46468],[169,885],[-49,828]],[[80002,52297],[274,-296],[108,-329],[492,-244],[732,-1175]],[[52497,49599],[68,-244],[334,-296],[401,-494],[421,-914]],[[52554,47969],[-63,224],[6,1406]],[[88782,51299],[124,497],[302,307],[-171,374],[-194,148],[-128,491],[-259,264]],[[79482,51217],[90,128],[-53,485],[210,515]],[[67141,50990],[-59,-934]],[[79729,52345],[273,-48]],[[72734,49604],[-216,41],[-418,480],[-446,388],[-325,99],[-212,344],[-313,130],[-373,288]],[[70431,51374],[202,-599],[-46,-1005],[-135,-527]],[[67126,51081],[15,-91]],[[83112,49830],[-12,72]],[[83100,49902],[50,652],[-240,575],[-16,678],[150,650],[-45,384],[140,63]],[[67102,51240],[24,-159]],[[28816,47780],[251,-12],[177,226],[387,285],[378,-289],[155,43],[543,-179],[780,738],[247,-521],[406,124]],[[82928,53128],[211,-224]],[[67102,51240],[38,212]],[[50674,50235],[62,-68],[893,13],[376,-151],[492,-430]],[[50674,50235],[340,-763],[300,-811],[509,-813]],[[34583,47407],[215,629],[119,784],[-38,660]],[[33485,48543],[179,28],[827,682],[394,241]],[[48063,50343],[16,-1547],[-34,-407]],[[45796,48366],[-54,964],[127,378],[35,603]],[[45904,50311],[490,89],[570,23],[165,-109],[934,29]],[[72990,49527],[289,904],[57,608],[24,1037],[275,559],[225,262]],[[80512,53317],[148,352]],[[74848,52598],[-277,237],[-364,156],[-347,-94]],[[86210,54387],[301,-2337]],[[80487,53706],[25,-389]],[[25865,49528],[67,-1569],[-104,-494],[76,-113],[-180,-641],[-242,-459],[-143,-743],[15,-297]],[[70431,51374],[-614,918],[-436,384],[-700,211]],[[25865,49528],[251,104],[571,527],[202,876],[119,216],[129,614]],[[36865,46013],[420,690],[555,1057],[399,344],[184,48]],[[38423,50646],[199,29],[-8,189]],[[77722,54109],[-141,163]],[[17838,50233],[295,-380],[243,-466],[87,-428],[276,-353],[156,-422],[424,-284],[515,-981],[-6,-907],[156,-354],[42,-380]],[[52249,52143],[-9,-568],[301,-510],[-44,-1466]],[[42041,46839],[30,253],[-50,1275],[-120,680],[-38,1357],[10,996]],[[83708,54809],[-180,-11],[-979,389]],[[82549,55187],[-9,-203],[165,-717],[-20,-214],[243,-925]],[[82549,55187],[-68,73]],[[41873,51400],[-4,142]],[[70431,51374],[-37,380],[18,1207],[-101,642],[-240,332]],[[81645,55225],[204,-109],[632,144]],[[80875,54004],[267,470],[347,381],[156,370]],[[53752,52449],[548,6]],[[52249,52143],[442,1],[440,230],[621,75]],[[86210,54387],[-211,50],[-866,1120],[-289,-170],[-199,155]],[[83708,54809],[364,274],[75,198],[157,-94],[341,355]],[[84645,55542],[14,147]],[[68681,52887],[-557,519],[-629,330]],[[67140,51452],[112,405],[131,904],[-1,380],[113,595]],[[49513,52211],[666,-959],[495,-1017]],[[72903,53281],[-457,80],[-524,307],[-273,-107],[-622,464],[-488,83],[-97,105],[-371,-278]],[[84659,55689],[286,-29],[39,188]],[[17513,50605],[325,-372]],[[49505,52542],[8,-331]],[[49505,52542],[944,50],[330,-120],[624,14],[161,-163],[685,-180]],[[73860,52897],[62,396],[-79,956],[204,790]],[[69497,54606],[97,-375],[477,-296]],[[85619,56395],[273,-323],[147,-567],[32,-477],[139,-641]],[[85584,56446],[33,-44]],[[85039,56024],[511,226],[131,229]],[[65137,54381],[1,-197],[-232,-656],[-131,-161],[-138,-464],[-177,-298]],[[34879,49480],[-156,758],[-334,697],[-50,611],[105,538]],[[48626,53067],[-32,-541],[22,-960],[-556,-987],[3,-236]],[[88401,53460],[-439,349],[-139,665],[155,1076]],[[65197,54645],[-60,-264]],[[85689,56484],[204,0],[520,338],[431,197],[538,19]],[[88225,57197],[-54,11]],[[64186,54615],[46,-310],[-39,-1012],[267,-688]],[[48623,53344],[124,-220],[542,-416],[224,-497]],[[48626,53067],[-3,277]],[[65197,54645],[303,186],[332,-2]],[[45904,50311],[12,1110],[-36,1817]],[[85586,56432],[-323,556]],[[85330,57085],[-266,-704],[-76,-534]],[[67495,53736],[-23,227],[36,1236]],[[82627,56859],[-141,-1237],[-5,-362]],[[80586,56630],[350,-411],[278,-497],[431,-497]],[[80586,56630],[-88,-1544],[-54,-267],[43,-1113]],[[27137,51865],[423,191],[232,-96],[592,468]],[[64186,54615],[77,378]],[[69497,54606],[-47,470],[-159,623]],[[3369,43233],[225,633],[38,1249],[292,1216],[200,1203],[217,573],[226,1037]],[[4567,49144],[142,749],[257,608],[158,559],[176,971]],[[3374,51125],[606,177],[305,-188],[412,679],[603,238]],[[56414,51998],[212,896],[-59,551],[-22,954],[-141,263]],[[65197,54645],[-239,178],[-113,447],[-275,141]],[[64263,54993],[307,418]],[[67577,55705],[-69,-506]],[[26764,52774],[123,-410],[250,-499]],[[28441,52643],[483,82],[289,-223],[63,216],[321,190],[500,-144]],[[82627,56859],[152,540]],[[77450,55251],[123,265],[-33,349],[-337,766],[24,233]],[[67825,55920],[-248,-215]],[[64156,54924],[-197,462],[-414,181]],[[25926,53274],[-556,-342],[-299,130],[-117,-81]],[[3789,42627],[613,1906],[434,608],[820,2447]],[[5656,47588],[453,1430],[79,505]],[[6188,49523],[80,464],[-50,426],[-105,1998]],[[5300,52031],[143,120],[670,260]],[[65832,54829],[-16,423],[-305,391],[-213,121]],[[65197,54645],[-12,591],[113,528]],[[26764,52774],[-68,368],[73,765]],[[56406,55142],[-2,-480]],[[14135,53018],[-145,-47],[-35,-556]],[[56406,55142],[522,-38],[279,-204],[362,224],[881,-216],[194,150],[288,515]],[[75595,56778],[-449,428],[-448,-17]],[[74698,57189],[-153,208]],[[74047,55039],[-317,703],[193,554],[398,486],[94,492],[130,123]],[[56404,54662],[-183,15],[-319,244],[-259,38],[-464,423],[-897,-6],[-245,182]],[[54300,52455],[68,1026],[-10,1535],[-308,156],[-13,386]],[[76393,58038],[117,438],[154,150]],[[76369,57845],[18,201]],[[75595,56778],[208,358],[203,100],[54,349],[305,254]],[[54037,55558],[-262,162]],[[64856,56773],[257,-674],[185,-335]],[[64570,55411],[79,892],[207,470]],[[6113,52411],[26,282],[174,479],[-12,322]],[[49505,52542],[10,541],[-265,-4],[-75,1337],[37,487],[-94,567]],[[34444,52084],[407,1436],[-42,917],[130,622]],[[68974,57289],[-238,-296],[-645,-616],[-266,-457]],[[14549,53986],[-266,-534],[-13,-356],[-135,-78]],[[74545,57397],[-569,488]],[[80779,58701],[-3,1]],[[49118,55470],[5,250]],[[41669,55234],[297,-301],[160,-332],[329,-293],[409,23],[252,-327],[730,-479],[435,-169]],[[41869,51542],[4,494],[-81,2376],[-89,175],[-34,647]],[[38614,50864],[-28,1324],[-67,467],[-62,1795],[140,619]],[[64656,57108],[200,-335]],[[77332,57461],[-64,963]],[[68997,57618],[-23,-329]],[[41669,55234],[-141,110]],[[41669,55234],[59,126]],[[80779,58701],[-3,206]],[[69115,57661],[-118,-43]],[[77268,58424],[-601,202]],[[82976,58257],[-6,1125]],[[64386,57539],[149,-423],[121,-8]],[[80776,58907],[-75,491]],[[59757,57368],[-56,-287],[-247,-293],[-354,-191],[-135,-546],[-33,-478]],[[80776,58702],[-793,199],[-295,483]],[[82970,59382],[-205,104],[-621,-87],[-592,279],[-298,-292],[-280,-434],[-198,-45]],[[77766,59375],[-287,-439],[-211,-512]],[[6301,53494],[-30,1303]],[[5300,52031],[140,509],[365,849],[466,1408]],[[13419,55019],[145,-525],[428,-633],[143,-843]],[[76055,59385],[258,-123],[203,-392]],[[78245,59626],[-89,-177],[-390,-74]],[[85077,57709],[-192,537],[-78,530],[-179,264],[-10,1018],[-159,292]],[[85263,56988],[-184,714]],[[63545,55567],[33,850],[-107,567],[-125,311],[-96,917]],[[24954,52981],[-119,-62],[-328,409],[-530,271],[-483,21],[-257,410],[-406,297],[-407,193],[-331,381],[-160,370],[-610,207]],[[7813,55173],[520,-846],[68,-432],[327,-794],[69,-939],[-10,-1502],[95,-1311],[-187,-821],[108,-744],[-22,-627],[-94,-800]],[[6301,53494],[246,89],[527,600],[233,521],[253,283],[222,-6],[31,192]],[[77730,59622],[36,-247]],[[53775,55720],[-433,462],[-143,590],[-307,249],[-263,416]],[[54037,55558],[131,335],[42,573],[-71,509],[108,355],[211,305]],[[7813,55173],[-6,116]],[[88171,57208],[-233,287],[1,730],[-372,688],[62,531],[-610,1563]],[[63489,58519],[385,141],[209,-104]],[[87019,61007],[-232,119]],[[54458,57635],[101,301]],[[79688,59384],[-606,536],[-435,492]],[[78647,60412],[-140,-383],[-262,-403]],[[38597,55069],[-25,1040],[60,13],[428,926]],[[41528,55344],[-765,928],[-814,859]],[[41728,55360],[85,1015],[14,935]],[[63250,58212],[11,283],[-219,517]],[[34939,55059],[265,417],[485,229],[354,-28],[82,363],[526,657],[552,285],[110,176]],[[60892,59030],[-314,-204],[-64,-313],[-294,-308],[-360,-196],[-103,-641]],[[49123,55720],[-75,1586],[15,791]],[[48569,58067],[494,30]],[[48539,55708],[-31,1614],[61,745]],[[84718,61545],[-18,-125],[504,-290],[526,-44],[591,-148],[466,188]],[[47455,58051],[1114,16]],[[51269,55669],[-23,568],[21,2311]],[[39949,57131],[-594,604]],[[39060,57048],[295,687]],[[75933,60917],[-60,-669],[213,-576],[-31,-287]],[[7807,55289],[270,219],[753,307],[524,537],[643,273]],[[9940,56708],[57,-83]],[[65082,60113],[1127,-757],[206,-27],[217,-211],[653,-109],[296,-422],[412,-276],[257,-31],[217,-290],[196,39],[334,-411]],[[32623,56550],[177,198],[217,-14],[190,-282],[12,-351],[181,123],[253,-111],[272,251],[769,-722],[179,-368]],[[14297,58203],[-108,-276],[79,-683],[-9,-1167],[80,-657],[-52,-299],[102,-580],[160,-555]],[[83977,62179],[480,-238],[261,-396]],[[51169,59000],[412,-21],[316,-501],[255,-219],[477,-822]],[[51267,58548],[-98,452]],[[51146,59061],[23,-61]],[[74110,61186],[-252,-5],[-273,-274],[-154,111],[-398,-122],[-88,-160]],[[50431,58768],[-914,19],[-259,-105]],[[51105,59190],[41,-129]],[[83172,62312],[573,-192],[232,59]],[[84459,60350],[-407,548],[-331,681],[-439,511],[-110,222]],[[79074,62106],[-368,-1325],[-59,-369]],[[39355,57735],[-820,869]],[[37307,57143],[193,193],[426,652],[527,702]],[[78167,61377],[608,629],[299,100]],[[51098,59588],[7,-398]],[[72945,60736],[-288,339],[-287,507]],[[72395,61652],[-25,-70]],[[69115,57661],[113,335],[215,238],[414,627],[354,825],[326,285],[840,1610]],[[72370,61582],[-206,-24],[-201,178]],[[7807,55289],[-218,1360],[24,668],[-277,-42],[-410,150],[-192,308]],[[6271,54797],[19,834],[133,239],[-22,235],[207,872],[62,662],[64,94]],[[71963,61736],[-44,63]],[[71861,61755],[58,44]],[[71322,61835],[120,-265]],[[51146,59061],[517,384],[285,458],[316,281]],[[60892,59030],[-476,1527],[7,324]],[[78106,61091],[-307,329],[-42,303],[-293,454],[-358,359],[-246,129]],[[85755,62746],[-563,890]],[[83977,62179],[462,357],[218,465],[535,635]],[[26769,53907],[-191,1146],[-85,1522],[62,477],[-53,377],[-180,112],[-136,877],[30,374]],[[21323,55478],[-110,703],[-279,736],[-259,1095],[58,275],[-139,409]],[[80701,59398],[-88,439],[54,294],[-66,557],[180,931],[81,1114],[205,617]],[[63042,59012],[-91,510],[-530,1853],[-65,80]],[[60892,59030],[275,321],[257,567],[160,-8],[285,563],[16,438],[180,78],[291,466]],[[3374,51125],[-131,441],[83,517],[-129,393]],[[3197,52476],[-100,216],[343,1128],[-40,326],[172,678],[184,244],[-168,593]],[[3588,55661],[560,452],[266,74],[521,460],[251,552],[167,184]],[[5353,57383],[197,335],[169,81],[345,425],[371,47],[280,149]],[[52264,60184],[39,499]],[[68997,57618],[55,277],[-148,2112],[92,556],[85,1615]],[[14297,58203],[158,29],[117,319]],[[6734,57733],[156,774]],[[6890,58507],[-175,-87]],[[31614,57675],[15,702],[119,468],[-14,615]],[[80753,63573],[314,-223]],[[80753,63573],[-291,-351],[-459,-242],[-456,-373],[-473,-501]],[[71770,62823],[-14,-351],[163,-673]],[[31734,59460],[72,304]],[[6890,58507],[461,186]],[[38535,58604],[-159,152],[-695,1046],[-324,375]],[[64083,58556],[-155,254],[49,259],[-105,539],[-143,246],[-185,839],[-486,903],[-193,560]],[[65082,60113],[-761,576],[-34,241],[-712,910],[-433,464],[-277,-148]],[[31911,98720],[-223,202],[-383,3],[-156,-145],[-170,-660],[-130,-720],[-128,-420],[-1,-440],[229,-509],[739,-406],[587,294],[437,789],[98,353],[-150,482],[-543,767],[-202,396]],[[62356,61455],[193,834]],[[51105,59190],[-182,371],[-173,108],[-326,478],[-690,439],[-449,150],[-423,283],[-535,137]],[[48569,58067],[-72,1613],[-142,666],[-28,810]],[[54405,61636],[199,-208]],[[69081,62178],[-21,803]],[[62549,62289],[241,118]],[[62865,62156],[7,264]],[[62790,62407],[82,13]],[[69706,63092],[62,-105]],[[52264,60184],[209,423],[1,351],[262,659]],[[48251,61363],[76,-207]],[[65860,62876],[14,-273]],[[52736,61617],[-697,129]],[[7699,58909],[-382,605]],[[6890,58507],[336,710]],[[7226,59217],[91,297]],[[9940,56708],[-460,534],[-92,271],[-502,836],[-146,78],[80,535]],[[7951,59257],[989,371]],[[47320,61512],[-54,-866],[126,-807],[61,-1052],[2,-736]],[[47320,61512],[-125,-125],[-550,-88]],[[46645,61299],[-93,51]],[[8776,59862],[164,-234]],[[51098,59588],[11,1047],[105,399],[-30,810]],[[52039,61746],[-855,98]],[[48251,61363],[-24,276]],[[63664,62811],[386,196],[610,-55],[551,-112],[200,71],[449,-35]],[[48019,61681],[-444,-161],[-255,-8]],[[62872,62420],[69,520]],[[62712,62963],[160,-543]],[[69155,63584],[551,-492]],[[7317,59514],[185,409]],[[23242,60582],[-257,-253],[-424,-212],[-309,-342],[-872,-506],[-420,-396],[-357,-168],[-182,116]],[[48227,61639],[468,349],[1585,28],[351,-153],[553,-19]],[[48227,61639],[-44,317]],[[8313,60140],[210,-41],[253,-237]],[[7502,59923],[281,160],[256,-5]],[[7231,60113],[86,-599]],[[6715,58420],[-52,174],[134,648],[-37,242],[193,358],[278,271]],[[31734,59460],[-636,362],[-527,485],[-168,331],[-150,571]],[[76860,62665],[-616,746],[-590,926],[-683,547]],[[75340,63776],[-201,490],[-168,618]],[[41827,57310],[-11,764],[272,684],[210,212],[139,457],[172,121],[-62,259],[33,868],[226,1023],[-41,626]],[[46552,61350],[-615,-46],[-512,71],[-439,140],[-188,179],[-583,143],[-267,457],[-334,94],[-361,-24]],[[43253,62364],[-488,-40]],[[37357,60177],[-772,997],[-74,255],[-423,319],[-116,182]],[[39467,59151],[27,785],[-34,686],[221,712],[-47,882]],[[37269,61995],[618,-267],[398,64],[834,366],[515,58]],[[39634,62216],[276,26]],[[7502,59923],[294,698],[55,283]],[[7330,60191],[199,421],[322,292]],[[42765,62324],[-1026,-10],[-127,105],[-635,-154],[-762,-122],[-305,99]],[[82143,66038],[97,-708],[302,-667],[145,-463],[240,-1062],[245,-826]],[[82143,66038],[-478,-518],[-569,-1009],[-290,-651],[-53,-287]],[[31806,59764],[-79,266],[157,1017],[206,902]],[[30301,61258],[237,212],[279,-155],[536,526],[737,108]],[[35972,61930],[407,-43],[316,337],[574,-229]],[[80753,63573],[-392,589],[-520,1034],[-318,288],[-372,470]],[[58574,64134],[529,-1068],[335,-510],[242,-503],[189,-102],[190,-393],[277,-305],[87,-372]],[[39634,62216],[-219,513]],[[47829,62518],[-322,425],[-208,419]],[[47320,61512],[17,507],[-87,882],[49,461]],[[34031,62531],[359,-246],[517,-152],[149,41],[428,-172],[165,62],[323,-134]],[[32090,61949],[1731,403],[210,179]],[[79151,65954],[-182,206],[-787,79]],[[74354,65897],[532,-771],[85,-242]],[[74354,65897],[-535,-957],[-223,9],[-124,-215],[29,-351],[-161,-106],[-223,-420],[-29,-491],[-208,-566],[-48,-507],[-103,-280],[-334,-361]],[[58574,64134],[-68,281]],[[70921,65682],[145,-295],[12,-287],[461,-1361],[231,-916]],[[76245,64943],[568,136],[266,282],[378,-22],[430,326],[295,574]],[[74354,65897],[-10,138]],[[51184,61844],[171,1559],[138,641]],[[74344,66035],[10,127]],[[74142,66108],[212,54]],[[8883,61640],[96,-491],[-111,-1070]],[[8313,60140],[92,497],[261,351],[211,671]],[[65636,65421],[-189,-99],[-681,-874],[-76,-214],[-236,-41],[-322,-336],[-118,-244],[-508,-305],[-634,-888]],[[65636,65421],[380,-20],[665,159]],[[74651,66193],[255,-11],[480,284],[380,-92],[500,134],[339,10],[499,-183],[707,96],[371,-192]],[[66681,65560],[242,110],[178,287]],[[83564,67723],[34,-50]],[[83564,67723],[-353,-663],[-610,-514],[-458,-508]],[[47299,63362],[-228,397],[-564,560]],[[16484,57762],[25,317],[-79,485],[46,1180],[292,739],[264,290],[249,1018],[549,1061]],[[23291,63131],[-85,-736],[72,-508],[-46,-1308]],[[34031,62531],[-291,337],[-374,250],[-442,570]],[[32840,63689],[84,-1]],[[32090,61949],[101,627],[188,789],[312,328],[149,-4]],[[8940,59628],[188,54],[320,598]],[[9448,60280],[881,470],[582,952]],[[10911,61702],[426,304],[514,235],[734,77],[690,609],[733,226]],[[14008,63153],[762,17]],[[17830,62852],[-335,1],[-611,-128],[-766,262],[-282,259],[-679,42]],[[14770,63170],[387,118]],[[70921,65682],[208,26],[128,250],[122,820],[128,80],[9,344]],[[8933,61941],[-126,356],[-29,459],[63,589]],[[23291,63131],[383,-19],[517,194],[430,431],[107,214]],[[25176,63942],[-448,9]],[[58506,64415],[31,559],[110,270],[94,588],[137,329],[299,169]],[[81742,68843],[3,-294],[172,-378],[100,-626],[18,-694],[108,-813]],[[42765,62324],[45,834],[11,1677],[-95,567]],[[39910,62242],[270,100],[597,473],[309,182],[951,882],[174,506],[127,712],[388,305]],[[81742,68843],[247,66],[304,-624],[239,-212],[254,-5],[449,-283],[329,-62]],[[70921,65682],[-545,957],[-170,142],[-150,397],[-366,545]],[[69690,67723],[152,64],[515,-393],[304,-70],[512,38],[343,-160]],[[69544,67847],[146,-124]],[[69544,67847],[-72,-1235],[-100,-256],[-217,-2772]],[[69498,67854],[46,-7]],[[69524,67640],[-743,-477],[-83,-218],[-293,-235],[-570,-210],[-384,60],[-181,-124],[-169,-479]],[[30241,61187],[-310,915],[-162,664],[-15,398],[-271,969],[-112,571],[18,526]],[[20421,58821],[-123,782],[118,695],[-871,815],[-328,541],[-34,183]],[[8341,64623],[267,6]],[[24728,63951],[112,196],[-55,505],[59,401],[215,231]],[[18860,65128],[-341,-59]],[[18519,65069],[-368,-170],[-306,100]],[[15157,63288],[883,485],[1006,657],[799,569]],[[74195,66661],[-229,397],[-226,559],[-87,715],[-214,650]],[[42726,65402],[529,401],[532,304],[525,213],[246,284]],[[76102,69437],[-54,-138]],[[66641,68379],[-251,-56],[-207,155],[-308,-2]],[[46507,64319],[-134,171],[30,500],[-72,207],[-18,883],[-206,674]],[[18867,65140],[230,394]],[[51493,64044],[160,951],[-69,250],[94,350],[-10,493],[258,646],[151,680]],[[20043,65778],[-946,-244]],[[62941,62940],[115,733],[23,484],[166,1018],[-8,920],[218,1268],[21,424],[186,953]],[[11280,64161],[234,432],[197,86],[35,356],[-83,661]],[[8549,65608],[-75,-13]],[[8561,64632],[-5,799],[95,200]],[[21493,66086],[101,-84],[83,-491],[280,-266],[218,-574],[307,-328],[116,-265],[476,-507],[217,-440]],[[11663,65696],[138,45]],[[8656,65646],[292,35]],[[46078,67521],[-546,-173],[-671,-620],[-303,-124]],[[79870,70577],[147,-641]],[[69498,67854],[-129,128],[-159,566],[-201,409],[-260,302],[-524,150]],[[8605,64628],[171,89],[358,-205],[657,389],[53,398],[289,183],[327,360],[187,-288],[598,2],[418,140]],[[76048,69299],[256,171],[113,336],[427,290],[465,219],[933,87],[1283,18],[345,157]],[[60396,68800],[-6,-317],[-149,-326],[-94,-681],[-213,-491],[-662,-587],[-111,7]],[[46078,67521],[43,164]],[[46121,67685],[44,69]],[[20043,65778],[253,537],[464,16],[599,-354],[134,109]],[[11798,65740],[31,450]],[[46165,67754],[263,58],[247,225]],[[81219,71154],[-532,-366],[-341,-39],[-476,-172]],[[47267,68064],[-592,-27]],[[81219,71154],[292,-38]],[[61461,69267],[392,-230],[470,-63],[221,-271],[1118,37]],[[61461,69267],[77,-527],[170,-534],[-106,-1342],[112,-381],[290,-404],[330,-2309],[378,-807]],[[11801,65741],[426,133],[357,384],[358,46],[172,-82],[417,235],[14,142]],[[17845,64999],[-204,1003],[-49,500],[-226,264]],[[14770,63170],[-164,1343],[-258,792],[-48,452],[-435,928],[-320,-86]],[[54405,61636],[-143,625],[205,359],[99,591],[223,-6],[70,693],[123,185],[-57,407],[-232,142],[-15,432],[-199,148],[-208,518],[157,435],[66,673],[-41,331],[270,-1],[111,786],[13,546],[206,559]],[[50030,68047],[9,337],[-141,295]],[[60604,69634],[-208,-834]],[[60892,69746],[200,-408],[369,-71]],[[49898,68679],[-515,-47],[-587,152]],[[48786,68777],[10,7]],[[48809,68407],[-23,370]],[[47267,68064],[423,101],[390,388],[273,175],[433,49]],[[46121,67685],[-828,549],[-175,187],[-298,93]],[[44558,66604],[279,1614],[-17,296]],[[76102,69437],[-115,-24],[-411,240],[-125,256],[-270,-81],[-213,225],[-592,210],[-4,415],[-303,186],[-510,142]],[[73551,70982],[-182,-983],[92,-478],[-22,-539]],[[60604,69634],[91,195]],[[60213,69799],[391,-165]],[[60396,68800],[-83,135],[-100,864]],[[60695,69829],[197,-83]],[[55054,69396],[-3,7]],[[55053,69059],[-2,344]],[[55010,69459],[41,-56]],[[39415,62729],[17,684],[229,1307],[0,446],[88,698],[-95,471],[-170,193],[-60,386],[-18,1356]],[[42726,65402],[-109,337],[-83,1317],[-44,91],[-82,1135],[27,279]],[[55056,69511],[-46,-52]],[[55080,69537],[-24,-26]],[[39418,68487],[320,-320],[724,80],[654,-32],[126,186],[747,147],[446,13]],[[39418,68487],[-84,-76]],[[13545,66599],[-115,375],[-307,6],[-61,255]],[[37104,65068],[-284,-81],[3,386],[-206,313],[-824,973],[-163,324],[-819,676],[-510,227],[-293,345]],[[32924,63688],[362,943],[213,865],[435,971],[21,1032],[53,732]],[[72733,70744],[356,153],[388,444]],[[73570,71385],[-93,-44]],[[46675,68037],[168,188],[151,403],[440,520]],[[39418,68487],[-40,138]],[[73664,71503],[-113,-521]],[[73664,71503],[-94,-118]],[[19097,65534],[-41,283],[406,1577],[-31,429]],[[17366,66766],[397,255],[334,312],[1334,490]],[[34008,68231],[-23,294]],[[81066,72417],[27,-755],[126,-508]],[[55080,69537],[575,61],[102,232],[356,-75],[382,58],[241,312],[467,45],[121,115],[453,10],[729,362],[409,-214],[650,23],[35,-380],[323,-266],[290,-21]],[[60695,69829],[-6,486],[113,565]],[[60004,70934],[117,-346],[92,-789]],[[52134,67899],[-126,810],[697,721],[230,408],[208,765]],[[32840,63689],[-599,821],[-327,659],[-212,637],[-227,437],[-57,648],[-83,258],[-366,440],[-124,637],[3,752],[57,301]],[[71014,72263],[-191,31]],[[69544,67847],[108,457],[-5,658],[222,744],[258,575],[389,1156],[330,712],[-23,145]],[[33985,68525],[-863,-25],[-306,110],[-464,-397],[-194,-44],[-560,452],[-174,446],[-211,-62],[-308,274]],[[55080,69537],[300,637],[-19,731]],[[66594,72432],[318,-567],[138,-430],[703,-1271],[267,-591],[205,-164]],[[70823,72294],[-343,258],[-507,59],[-416,-166],[-177,-338],[-629,66],[-578,-46],[-160,-127],[-567,355],[-410,-13],[-444,192]],[[66592,72534],[-82,3]],[[66510,72537],[84,-105]],[[30905,69279],[53,808]],[[66137,72746],[373,-209]],[[65875,68476],[65,539],[245,828],[-10,596],[250,617],[-61,1115],[-248,375],[21,200]],[[66137,72746],[-163,162]],[[65974,72908],[-98,39]],[[81066,72417],[-43,1010],[43,439],[-158,1037]],[[53143,70603],[-1143,114],[-63,109],[-981,-32]],[[74025,71892],[103,140],[201,897],[315,373],[194,481]],[[49515,72070],[-11,47]],[[49758,72053],[-208,72]],[[49550,72125],[-35,-55]],[[76792,74605],[0,-298],[-488,-1058],[-133,-488],[-58,-1107],[-83,-363],[-49,-1164],[121,-690]],[[59167,72974],[4,-1]],[[59105,73018],[16,-614],[191,-498],[327,-70],[365,-902]],[[75559,74369],[466,8],[666,283],[101,-55]],[[47434,69148],[483,1247],[205,385]],[[60802,70880],[26,712],[66,197],[24,740],[92,437],[-98,264]],[[43194,71877],[235,-774],[399,-1809],[226,-74],[458,-325],[308,-381]],[[42435,68561],[162,1084],[-64,643],[238,1196],[423,393]],[[60912,73230],[-3,14]],[[59171,72973],[590,95],[472,12],[676,164]],[[80753,72249],[-784,1099],[-105,432],[-606,1220]],[[79314,75015],[-56,-15]],[[61461,69267],[16,552],[81,330],[-91,318],[136,467],[-160,486],[-53,524],[156,222],[157,661],[-9,547]],[[49504,72117],[-202,173],[-521,-130],[-340,154]],[[48441,72314],[24,-821],[301,-1051]],[[39378,68625],[58,580],[-54,1324],[-346,1160]],[[63662,68740],[-34,956],[-307,1185],[-143,399],[-4,979],[-119,490],[-45,760]],[[39334,68411],[-585,617],[-324,959],[-763,1031],[-30,604]],[[65876,72947],[-122,-33],[-921,154],[-305,108],[-187,-53],[-701,323],[-630,63]],[[79314,75015],[234,95],[962,-485],[398,278]],[[62939,73522],[71,-13]],[[37632,71622],[810,162],[594,-95]],[[24720,69841],[100,280],[458,826],[-9,113]],[[56005,72964],[243,-156],[384,-71],[267,96],[1331,24],[937,117]],[[55383,71131],[94,710],[31,652],[204,653]],[[55010,69459],[-156,449],[10,512],[-73,373],[-364,442],[26,1076],[51,437],[-37,465]],[[24732,71393],[436,-368],[101,35]],[[54467,73213],[283,-15],[487,153]],[[46826,72712],[244,-288],[603,-244],[432,117]],[[46165,67754],[-31,160],[85,1029],[-24,377],[183,580],[157,276],[219,149],[167,363],[22,675],[-106,542],[-11,807]],[[55712,73146],[-270,218],[-205,-13]],[[24523,71401],[209,-8]],[[30958,70087],[-446,311],[-567,1114],[-297,70],[-463,242]],[[49860,72433],[480,30],[110,-75],[693,346],[698,476],[527,123]],[[54467,73213],[-347,50],[-611,195]],[[25059,65284],[195,29],[-33,211],[161,341],[-200,766],[68,974],[156,699],[420,796],[45,390],[268,205],[188,-124],[201,61],[9,545],[643,1472],[-13,126]],[[53509,73458],[-566,-11],[-575,-114]],[[55113,73651],[124,-300]],[[25269,71060],[612,814],[1286,-99]],[[20650,70585],[436,796],[520,353],[263,36]],[[21869,71770],[415,-78],[295,-467],[249,-200],[295,-401],[333,43],[1067,734]],[[29181,71830],[93,390]],[[27167,71775],[326,-10],[411,275],[515,57],[546,-42],[296,149]],[[43194,71877],[-7,141],[250,1026]],[[33985,68525],[92,419],[-8,1453],[42,134],[-32,827],[-65,342],[107,374],[258,414]],[[41944,73082],[294,-119],[478,-7],[538,171],[183,-83]],[[39418,68487],[346,567],[386,866],[651,995],[93,385],[245,594],[309,490],[219,475],[277,223]],[[80908,74903],[-123,349],[-29,496],[130,675],[-25,230],[150,655],[-6,242]],[[79314,75015],[506,670],[281,470],[111,327]],[[43437,73044],[285,200],[820,282],[736,58],[504,-388],[451,-102],[593,-382]],[[73477,71341],[-280,654],[32,651],[160,472],[-65,892],[-181,330],[11,1060],[-133,774]],[[73021,76174],[-316,-323],[-601,-977],[-103,-409],[-321,-236],[-108,-658],[-287,-974],[-271,-334]],[[53613,74485],[-166,-353],[-14,-511],[76,-163]],[[53613,74485],[548,82],[443,-106],[334,-629],[175,-181]],[[53593,74566],[20,-81]],[[39906,73627],[-67,-411],[-791,-1451],[-12,-76]],[[41944,73082],[-380,126],[-514,6],[-571,282],[-573,131]],[[73760,76493],[-581,-185],[-158,-134]],[[79258,75000],[-120,231],[-1660,1661]],[[29261,72204],[224,987],[-1,467],[125,374]],[[24732,71393],[1,401],[-222,325],[-130,915]],[[30958,70087],[-202,1266],[-287,892],[-478,1082],[-260,239],[-50,566]],[[76124,77004],[-332,-745],[-153,-145],[-143,-392],[82,-842],[-19,-511]],[[76169,77158],[-45,-154]],[[77478,76892],[-501,248],[-547,86],[-261,-68]],[[49504,72117],[-69,276],[3,807],[-98,403],[-7,592],[-80,288],[-376,438]],[[48877,74921],[-207,-1249],[-235,-685],[6,-673]],[[76124,77004],[-364,94],[-215,-100],[-356,185],[-661,-177],[-768,-513]],[[34379,72488],[196,391],[66,421],[-13,653],[489,1380],[280,218],[282,960]],[[52629,75295],[612,-218],[352,-511]],[[52629,75295],[-106,-732],[25,-700],[-180,-530]],[[73021,76174],[43,918]],[[27167,71775],[-58,694],[78,191],[95,1130]],[[80212,76482],[315,508],[350,914],[127,98]],[[81001,78084],[3,-82]],[[81559,78186],[54,-13]],[[60274,76249],[22,-338],[285,-379],[254,-780],[74,-1508]],[[29609,74032],[29,93]],[[29638,74125],[91,29]],[[76339,77766],[-170,-608]],[[81217,78297],[310,-103]],[[81217,78297],[-216,-213]],[[20650,70585],[-152,765],[13,371],[-240,593],[-56,626],[120,540],[19,393]],[[65876,72947],[-165,640],[-90,665],[-227,566],[-23,448],[-478,1085],[-38,523]],[[64855,76874],[-265,-476],[-211,-577]],[[64379,75821],[-338,-698],[-364,-515],[-550,-652],[-117,-447]],[[60274,76249],[272,248]],[[60546,76497],[83,115]],[[60629,76612],[180,-202],[793,359],[465,-256],[434,-107]],[[34379,72488],[-235,642],[-392,702],[-419,203],[-297,247],[-58,302],[-150,113],[-461,31],[-353,-88],[-714,-357],[-267,-192],[-223,71],[-359,-107],[-722,99]],[[39906,73627],[-1021,711],[-814,792]],[[37632,71622],[-15,505],[179,1328],[275,1675]],[[73064,77092],[171,571],[-47,359]],[[24381,73034],[-270,483],[-503,662],[-151,-89],[-263,416]],[[23194,74506],[-351,-162],[-184,-328],[-159,-3],[-167,-270],[-55,-489],[57,-265],[-196,-447],[-89,-470],[-181,-302]],[[23187,74552],[7,-46]],[[76358,78499],[-19,-733]],[[76358,78499],[586,49],[268,-77],[769,208],[287,-82],[513,205]],[[73188,78022],[451,47],[382,241],[447,-16],[406,248],[544,138],[190,-139]],[[48836,76675],[54,-1109],[-13,-645]],[[58496,77686],[35,-177]],[[50968,77287],[473,-531],[406,-708],[320,-378],[462,-375]],[[49550,72125],[232,952],[-2,498],[115,351],[237,352],[90,492],[34,659],[470,695],[106,706],[136,457]],[[53775,77635],[-496,-562],[-218,-466],[-150,-643],[-282,-669]],[[77101,79786],[-561,-939],[-205,-93],[23,-255]],[[41949,76886],[123,-38],[236,-998],[-9,-445],[76,-634],[303,-282],[166,-487],[269,-211],[286,-527],[38,-220]],[[35679,76511],[331,-229],[924,-301],[975,-822],[162,-29]],[[62501,76406],[28,1263],[-10,889]],[[69430,79597],[-339,-187],[-310,-23],[-168,-144],[-916,-124]],[[69651,79456],[582,-667],[458,-240],[333,-33],[331,-161],[283,156],[341,-77],[291,-272],[918,-140]],[[67697,79119],[-173,164]],[[67524,79283],[7,-573],[174,-394],[553,-358],[693,-873],[713,-1069]],[[69664,76016],[427,-963],[185,-732],[223,-562],[30,-255],[294,-1210]],[[60629,76612],[6,457],[90,457],[133,239],[52,385],[-138,556]],[[75431,80035],[24,-680],[205,-338],[-52,-476]],[[69430,79597],[129,-33]],[[70762,79805],[1049,-1],[661,529],[290,11]],[[69430,79597],[53,356]],[[72762,80344],[381,-620],[83,-1006],[-38,-696]],[[34442,77556],[532,-718],[577,-364],[128,37]],[[34442,77556],[-236,96],[-572,-133],[-804,19]],[[48070,78875],[291,-369],[234,-815],[241,-1016]],[[48070,78875],[-620,-352],[-266,5],[-400,215],[-190,-7]],[[67524,79283],[-379,615],[-431,324],[-354,70],[-552,-48],[-267,132]],[[64855,76874],[333,986],[33,414],[162,546],[62,955],[96,601]],[[64855,76874],[77,503],[-337,1888],[-287,1120]],[[81217,78297],[267,511],[6,290],[207,383],[279,853],[332,609],[374,1261],[-36,43]],[[49855,79396],[95,-274],[553,-775],[181,-550],[284,-510]],[[36771,78582],[-648,-898],[-444,-1173]],[[36771,78582],[-159,1],[-1636,-653],[-131,3],[-403,-377]],[[62519,78558],[-13,1157],[120,789]],[[49884,79504],[-29,-108]],[[62626,80504],[478,-45],[377,165]],[[38239,77807],[-143,-203],[-82,-446],[20,-894],[71,-491],[-34,-643]],[[37314,78737],[-543,-155]],[[64461,80993],[677,-450],[403,-167]],[[64308,80385],[-93,634]],[[63481,80624],[573,392],[161,3]],[[64215,81019],[246,-26]],[[60772,78706],[-50,736],[227,177],[34,273],[268,690],[4,336]],[[61318,80966],[254,-242],[377,-133],[677,-87]],[[61255,80918],[63,48]],[[61255,80918],[-393,-137],[-1396,826]],[[59466,81607],[-144,-789],[34,-654],[-345,-609],[-57,-365],[-434,-666],[-24,-838]],[[41949,76886],[-10,585],[-165,566],[-5,282],[-249,962],[-85,1001]],[[62790,82006],[-42,-258],[114,-467],[-53,-344],[-183,-433]],[[49884,79504],[-426,525],[-454,322],[-719,281],[-688,204]],[[47597,80836],[-2,-470],[211,-806],[264,-685]],[[78781,78802],[113,157],[338,818],[225,775],[496,854],[238,567],[127,498],[67,599],[274,788]],[[63481,80624],[-103,2031]],[[34343,80573],[-441,-343],[-868,-1523],[-172,-659],[-32,-510]],[[64215,81019],[-47,274],[-325,718],[-252,375]],[[83713,84865],[120,-38]],[[83663,84892],[50,-27]],[[83505,84892],[158,0]],[[83505,84892],[-43,-125]],[[47446,82012],[175,-686],[-24,-490]],[[83462,84767],[-1067,254],[-144,103]],[[82251,85124],[-132,80]],[[82119,85204],[131,-478]],[[37710,81597],[-81,-398],[57,-410],[-87,-433],[-126,-115],[-67,-364],[-635,-1295]],[[37710,81597],[-156,-110],[-191,113],[-1214,-441],[-352,-43],[-205,-214],[-196,-438]],[[52432,83606],[-74,-247],[-119,-1614],[-75,-495],[-64,-979],[-852,-1365],[-129,-591],[14,-363],[-165,-665]],[[50962,82514],[69,-764],[-83,-462],[-438,-686],[-101,-343],[-256,-283],[-269,-472]],[[52432,83606],[19,127]],[[52495,83773],[446,-19],[595,-218],[966,-22],[526,-913]],[[52495,83773],[46,-409],[203,-1014],[279,-829]],[[52451,83733],[44,40]],[[52459,83874],[36,-101]],[[52030,83734],[-1226,33],[-781,297]],[[81188,86737],[107,-228],[264,-157],[265,-347],[178,-448]],[[34343,80573],[-113,395],[-202,363],[-474,1279],[-58,590],[-82,144]],[[81188,86737],[-736,495]],[[80659,83858],[-49,761],[-159,428],[-115,674],[28,466],[-123,473],[211,572]],[[51431,84751],[495,-323],[269,-491],[264,-63]],[[80013,87480],[439,-248]],[[47446,82012],[-313,1143],[-353,638],[-594,657]],[[45898,84340],[160,-976],[-20,-979],[104,-391],[-76,-278],[310,-1008],[35,-582],[83,-252],[-23,-672],[123,-466]],[[79816,87774],[197,-294]],[[53423,85534],[-290,-424],[-264,-592],[-410,-644]],[[45879,84944],[-45,52]],[[40737,84654],[392,-2047],[162,-510],[125,-836],[-114,-439],[133,-540]],[[40737,84654],[-254,-102],[-115,-639],[-115,-285],[-374,-100],[-105,-264],[-557,-286],[-147,-283],[-256,-18],[-268,-241],[-245,-361],[-505,-180],[-86,-298]],[[53611,85630],[-74,-12]],[[49217,84048],[-663,-26],[-287,135],[-649,30],[-662,181],[-183,202],[-701,383]],[[45834,84996],[46,109]],[[84805,88500],[-194,-287],[-221,37],[-179,-230],[-335,39],[-571,-982],[-304,-430],[-343,-299],[-111,-432],[-296,-792]],[[40737,84654],[10,249]],[[79821,88244],[-5,-470]],[[40747,84903],[386,-83],[367,269],[893,473],[709,114],[429,-355],[482,21],[772,-113],[205,30],[513,-166]],[[80452,87232],[-20,1109],[-236,545]],[[80196,88886],[-251,37],[-116,-196],[-8,-483]],[[48989,87476],[36,-1497],[60,-729],[99,-587],[33,-615]],[[49059,87590],[-70,-114]],[[85500,91101],[226,-47]],[[85468,90082],[80,851],[-48,168]],[[41580,87505],[-85,-508],[-185,-369],[-89,-850],[-228,-594],[-246,-281]],[[41502,87633],[78,-128]],[[49786,88228],[-189,5],[-538,-643]],[[81436,90981],[-294,-415],[-498,68],[-197,-406],[-94,-913],[-157,-429]],[[81469,91088],[-33,-107]],[[84407,91468],[79,-276],[469,-122],[124,122],[421,-91]],[[48989,87476],[-380,360],[-513,156],[-679,971],[-241,260],[-388,7]],[[45880,85105],[152,361],[-91,645],[-15,889],[288,546],[234,958],[340,726]],[[46583,89236],[205,-6]],[[84407,91468],[66,421],[619,989],[102,377]],[[85726,91054],[-3,507],[111,865],[-21,901]],[[85640,93339],[173,-12]],[[85640,93339],[45,-637],[-185,-1601]],[[85411,93296],[229,43]],[[85736,93919],[-96,-580]],[[85813,93327],[45,493],[-82,149]],[[85776,93969],[-40,-50]],[[47604,90916],[856,-1647],[422,-686],[13,-768],[164,-225]],[[47604,90916],[-98,-302],[-373,-665],[-126,-371],[-219,-348]],[[83599,93579],[661,-183],[566,-45]],[[82519,93894],[-138,-27],[-236,-1105],[-95,-837],[-422,-485],[-159,-352]],[[47621,91057],[-17,-141]],[[48338,90841],[-220,408]],[[85776,93969],[67,520]],[[85545,94575],[298,-86]],[[85736,93919],[-267,84],[76,572]],[[85464,94623],[81,-48]],[[43690,91271],[-328,-1675],[0,-601],[-530,-714],[-139,-364],[-330,-35],[-783,-377]],[[85464,94623],[5,46],[-966,250],[-217,-233],[-568,28],[-658,-105],[-291,-124],[-503,-449],[253,-142]],[[43590,92172],[548,-276],[914,-661],[154,-206],[316,-113],[205,-365],[369,-432],[487,-883]],[[85676,96836],[-126,-235],[-161,-715]],[[82828,99999],[597,-578],[503,-90],[637,-508],[476,-502],[365,-577],[333,-757],[-63,-151]],[[43590,92172],[118,1252],[-58,583],[374,726],[278,301],[66,1054],[148,406],[532,272],[553,409],[342,127]],[[46328,97370],[77,-330],[128,-1822],[-88,-1008],[27,-837],[155,-1893],[-44,-2244]],[[46174,97443],[-231,-141]],[[46328,97370],[-154,73]],[[47338,97475],[-287,78],[-723,-183]],[[45915,97606],[94,110]],[[63915,41233],[-83,-552],[-205,-2440],[41,-214]],[[65197,37365],[41,665],[-254,642],[-530,1075],[-98,729],[-334,731],[-149,31]],[[9814,89757],[331,-399],[-39,-153]],[[16102,90729],[310,760]],[[18701,94918],[8,8]],[[94918,30483],[-679,-179],[-273,62]],[[93966,30366],[114,163]],[[85452,21278],[106,308]],[[95056,23302],[8,-289],[177,-564],[26,-988],[224,-1053]],[[95328,28231],[346,76],[285,-346],[72,-352]],[[91431,33888],[-213,139],[-108,278],[-167,-15]],[[90938,34336],[-26,-414]],[[91249,32589],[7,192],[-206,630]],[[87068,41117],[-19,89]],[[90150,41194],[73,-26]],[[90152,42621],[96,548]],[[1539,41753],[250,-147]],[[89609,45234],[41,567],[-66,424],[-154,288],[-265,1715],[96,617]],[[88456,53380],[-55,80]],[[88270,57169],[-45,28]],[[84667,65135],[75,33]],[[83598,67673],[67,-11]],[[69559,79564],[92,-108]],[[69483,79953],[67,145]],[[69550,80098],[580,-281],[473,-129],[159,117]],[[81527,78194],[32,-8]],[[53537,85618],[-114,-84]],[[83966,84800],[-133,27]],[[48118,91249],[-189,96],[-308,-288]],[[17809,93644],[14,69]],[[17796,93510],[13,134]],[[17415,93103],[228,12],[153,395]],[[53307,10411],[78,-55]],[[55323,10749],[9,6]],[[70620,16978],[3,6]],[[29629,74258],[9,-133]],[[46096,97819],[78,-376]],[[47808,98675],[-108,-725],[-362,-475]],[[78647,60412],[-538,671]],[[93426,27704],[-49,298],[-264,538],[-432,542]],[[58337,22860],[-17,-582],[-163,-892],[-16,-1090],[48,-398],[-89,-1297],[-119,-326]],[[42469,11981],[270,-96],[479,20],[410,-207],[303,16],[146,-161],[552,31]],[[17379,66777],[-348,927],[-161,1137],[187,293],[14,297],[-378,1396]],[[86696,42459],[7,502],[-506,273]],[[86651,41667],[243,-534],[178,-31]],[[86539,49376],[-226,-1272]],[[85913,47815],[-125,191],[229,734],[426,81]],[[86127,42842],[-64,-110],[-410,5],[-308,-434]],[[86476,40421],[221,362]],[[86826,40583],[138,348],[-7,326]],[[88563,49459],[-80,193],[103,780],[167,55]],[[88982,50072],[-339,327]],[[86987,41337],[299,-246]],[[86862,40529],[-165,254]],[[86697,40783],[47,282],[243,272]],[[75001,41911],[202,17],[118,-272]],[[73237,42376],[17,296],[-157,147],[6,394],[-216,186]],[[72804,44838],[152,195],[-51,561],[-520,194]],[[72635,45694],[-103,-197]],[[72259,45045],[491,-67]],[[69075,43382],[44,363],[368,-61],[47,-178]],[[69260,42832],[-201,60]],[[70250,48992],[267,-148]],[[70668,48886],[227,123],[15,453],[-338,274]],[[70643,49040],[-84,361],[-253,77],[13,-355]],[[72930,49436],[-196,168]],[[72734,49604],[200,145],[-30,-260]],[[86051,47979],[7,218],[238,359]],[[86367,41166],[-14,280],[299,205]],[[84220,42173],[-46,420]],[[84365,55539],[197,-385],[136,-74],[359,149],[39,332]],[[82261,54964],[9,217],[202,212],[241,-272],[-69,-193],[-391,24]],[[81128,63328],[-55,492],[-204,147]],[[78179,61343],[-259,179],[-64,-152]],[[80733,59317],[277,159],[246,-548],[-272,-560]],[[77332,57461],[-5,-210]],[[77328,57264],[-101,-400]],[[74477,57445],[221,-256]],[[77329,58260],[156,94]],[[81496,71113],[-200,-420]],[[81185,71462],[354,7],[-36,-358]],[[79012,66129],[91,258],[181,5],[11,-595]],[[83385,67785],[-17,-323],[148,-88],[236,237]],[[87172,60665],[-366,263]],[[86057,55397],[175,221],[325,-113],[152,132],[319,4],[232,-307],[386,-18],[331,232]],[[89199,52113],[278,-418],[156,-19],[276,514],[216,549],[150,-114],[379,768]],[[80804,78138],[82,469],[441,-68]],[[81904,84793],[-131,286],[88,532]],[[81861,85611],[384,-242],[301,-74],[55,-328]],[[85655,94996],[-95,-425]],[[85403,93310],[49,-728],[232,-50]],[[74172,65579],[333,-133],[159,600],[-48,234],[-230,296],[-194,86]],[[74133,66123],[47,-532]],[[74351,65456],[15,-268],[423,-1056]],[[74478,66402],[176,502]],[[69862,67499],[-81,616],[-371,477],[-225,13]],[[74142,66108],[53,553]],[[75728,68903],[169,332],[115,445]],[[73929,65143],[65,-657],[182,-620],[-58,-206]],[[76324,64768],[19,234],[-213,11]],[[76130,65013],[203,-260]],[[63095,82323],[502,42]],[[52335,83112],[-237,29],[-70,174]],[[45633,85441],[-121,-151],[38,-440],[158,-221]],[[45628,84338],[510,-6],[53,129]],[[46007,85411],[25,-641]],[[52259,73328],[109,880],[220,-22],[190,-346],[366,-389]],[[47383,81088],[61,166],[-51,877]],[[47618,80950],[204,214],[-5,489],[-160,640],[-145,257],[-191,-133]],[[49848,72416],[-439,245],[-338,-187],[-396,101],[-339,-7],[-231,-253]],[[49316,71650],[-83,881]],[[48952,71927],[-1,559]],[[50943,59534],[389,27],[77,-102],[0,-472]],[[56031,54868],[375,274]],[[47751,61647],[87,-545],[496,40]],[[48616,61959],[-429,10]],[[48037,61932],[-21,-251]],[[58353,63925],[-76,147],[-34,569]],[[62863,62177],[161,-510],[410,-9],[178,340],[52,813]],[[68841,57730],[-19,-323],[246,-234],[145,473]],[[66067,36706],[126,-444]],[[65546,34071],[264,749],[98,636]],[[69104,31443],[532,-92],[110,-114]],[[73450,32473],[97,586]],[[72937,32859],[524,-388]],[[55514,24273],[15,871]],[[55555,25109],[207,-116]],[[49911,30065],[11,263],[-183,112]],[[55486,37553],[-363,14],[11,369]],[[50962,39186],[138,-371],[258,-27]],[[60687,37447],[217,534],[452,-8]],[[73757,32014],[555,-148]],[[73881,32959],[-106,-915]],[[76672,37036],[680,-266]],[[76042,35779],[233,-328],[400,-129],[602,-568]],[[71199,31654],[302,106]],[[70558,38636],[381,-232],[120,-220],[-75,-414],[-154,-33]],[[80034,38526],[-210,56],[-634,364]],[[81136,28124],[275,57],[21,589]],[[85806,37501],[238,150]],[[88616,38813],[321,-720],[270,-254],[442,-1008],[29,-330]],[[90220,33638],[53,-151],[352,-159]],[[91048,33416],[199,62],[185,409]],[[88968,38054],[-81,-649]],[[89673,36490],[55,-415],[152,-55],[98,360]],[[82760,27519],[435,-627]],[[83366,27059],[-39,218]],[[83354,27063],[97,-271],[-79,-198]],[[87457,24986],[94,381],[-84,319]],[[85968,26608],[113,-231],[-31,-299],[-324,-131]],[[86218,37560],[-135,-238]],[[94915,27429],[-229,96],[-82,299],[195,491]],[[94770,28571],[151,536],[260,24],[42,-486],[158,-332]],[[95131,25035],[65,-223],[308,-328],[155,-46]],[[93043,32387],[292,-360],[314,-829],[145,-107]],[[96752,26175],[156,-90],[343,520],[61,470]],[[92863,19275],[-155,-317],[-272,-68]],[[93739,22997],[10,-227],[-197,-349],[-39,-332]],[[94707,24302],[-124,136]],[[94468,24947],[-171,-47],[-208,-407],[-36,-577],[-103,-486]],[[87850,25909],[-383,-223]],[[87538,32090],[22,586]],[[90232,26548],[-140,-196]],[[90184,26055],[148,40],[-100,453]],[[85209,30168],[55,-458],[325,-657],[12,-245],[315,-152],[183,-544]],[[61548,48451],[51,-130],[954,22]],[[53469,48157],[393,-36],[54,-117],[-4,-1013],[-411,-31],[-173,314],[82,870],[59,26]],[[53429,46529],[17,500]],[[53246,44519],[-3,520],[114,140]],[[53862,48188],[308,-89],[17,-338]],[[48867,53079],[-209,-336],[-176,71],[-30,405],[151,132]],[[29604,74775],[184,32],[214,-281]],[[38090,75111],[136,-450],[337,-295],[313,31]],[[39406,68270],[87,373],[-277,0],[-13,-278],[203,-95]],[[34655,44249],[130,-117],[18,-357]],[[34396,42188],[-315,514]],[[33788,37602],[-35,354],[125,474],[427,990],[77,724],[179,359],[-47,1038],[-74,16],[-50,657]],[[34066,42727],[194,207],[242,627]],[[34670,44565],[-440,-82],[-107,-534]],[[22368,36495],[-134,203],[-88,513]],[[19326,64530],[33,275],[-151,1087]],[[19737,65693],[-139,-469],[-530,111]],[[18988,65286],[13,-414],[143,-412]],[[14572,58551],[-221,983],[-159,1071],[264,798],[-163,458],[-83,867],[-118,66],[-51,383]],[[6995,60017],[231,-800]],[[7954,59281],[252,813]],[[7901,59421],[-209,282],[-58,276]],[[7332,60194],[329,134]],[[13945,52398],[-77,-25],[-73,555],[61,413],[195,111]],[[6041,57656],[757,283]],[[6790,57900],[502,544],[53,215]],[[8819,58961],[-346,449],[-151,692]],[[7529,59206],[128,158],[752,235]],[[8804,64436],[-67,576]],[[8464,63921],[271,42]],[[2121,42808],[-431,467]],[[2375,42401],[-94,-863]],[[2316,41174],[-249,-279]],[[1850,41626],[423,-84]],[[3994,37559],[-282,1524]],[[3774,42634],[-198,-85]],[[4561,49155],[568,234],[300,-30]],[[6204,49558],[503,199],[505,-272]],[[5432,49345],[324,-1710]],[[1430,40874],[401,343]],[[2103,42386],[-325,128],[-287,236]],[[1885,43671],[77,449],[402,108]],[[3120,38142],[-126,407],[-196,1282]],[[2104,42323],[29,553],[102,242]],[[715,28585],[152,207],[201,-151],[196,306],[180,-48]],[[4079,28573],[-100,-515]],[[3530,31160],[164,-439],[53,-369],[-118,-495],[490,-1014],[-43,-272]],[[1131,27050],[66,-497]],[[5625,24536],[43,361],[-75,723]],[[3540,20853],[19,584],[-98,130],[105,420],[-134,373],[-187,24],[-137,561],[33,634],[265,257],[340,186],[71,334]],[[4610,17722],[13,-120]],[[4468,17705],[47,-167],[200,128]],[[4515,17552],[30,-651],[-90,-259],[219,-940]],[[2178,19668],[54,-86]],[[4724,17754],[230,184],[541,-137],[258,222],[324,-112],[376,162],[164,-471],[51,-375]],[[3453,14842],[105,-692],[313,-676],[132,-497]],[[4437,10961],[-64,-149],[189,-650]],[[6115,12579],[7,352]],[[7063,12864],[-557,-203]],[[12573,12398],[-183,279]],[[12669,12436],[-202,-170],[-289,-39]],[[8176,6345],[160,-551]],[[8475,5386],[-223,-155]],[[8288,5046],[205,136]],[[8262,5125],[-91,564]],[[8073,6367],[196,39],[591,-455],[35,-95]],[[7626,3355],[286,-345]],[[10755,8796],[147,598],[-112,367],[-247,297]],[[8761,1067],[48,-281],[-102,-198],[-112,-588]],[[8713,3918],[125,-853],[-114,-548],[154,-991],[-112,-485]],[[8781,2150],[-357,-272],[-130,120],[-37,314],[-238,319],[71,260]],[[31953,45261],[-52,521],[160,720]],[[31768,43903],[197,707],[-8,644]],[[38416,48165],[-44,1113],[84,23],[-33,1345]],[[8877,61659],[56,282]],[[16606,42488],[-193,-26],[-232,-984]],[[32140,48195],[257,36],[386,689],[121,6],[583,-376]],[[58051,47893],[94,379],[18,702],[134,411]],[[34871,43772],[69,-248],[156,23]],[[19895,55249],[241,340],[326,-132],[65,298],[310,178],[307,388]],[[19516,58243],[25,-808],[186,-861],[129,-1315],[39,-10]],[[2875,17250],[277,-62],[556,349],[228,-172],[151,169],[496,232],[141,-12]],[[62563,17445],[552,-963],[62,-282],[233,-403]],[[90092,26352],[-177,-148]],[[86131,42324],[376,-93]],[[86197,43234],[-128,-325]],[[86069,42909],[-11,-159]],[[8841,63345],[-71,527],[-107,245],[-58,511]],[[63872,41353],[28,247]],[[57945,13295],[18,218],[326,329],[65,368],[285,32],[172,186],[41,383],[200,524]],[[5352,57369],[115,678],[279,387],[802,352],[236,568]],[[1369,42048],[-163,503],[96,177],[22,474],[-122,542],[290,1093],[249,139]],[[3228,53048],[-79,818],[154,351],[-144,400],[8,360],[171,601],[265,96]],[[1969,44139],[-97,544],[-138,332]],[[7231,60113],[99,78]],[[8873,60081],[595,234]],[[6696,58940],[423,90]],[[7119,59030],[410,176]],[[8409,59599],[366,260],[93,220]],[[8868,60079],[5,2]],[[7351,58693],[348,216]],[[7699,58909],[226,133],[26,215]],[[8820,58962],[144,425],[-24,241]],[[7029,59004],[-153,1036]],[[6876,60040],[119,-23]],[[6798,57939],[-83,453]],[[5429,49359],[775,199]],[[7341,48439],[-407,-354],[-305,32],[-970,-512]],[[2091,43833],[-122,306]],[[1947,43383],[-62,288]],[[2282,43399],[-335,-16]],[[1839,41226],[-50,380]],[[2281,41538],[35,-364]],[[3124,38157],[-4,-15]],[[3120,38142],[-159,-1032],[-10,-398]],[[3066,42530],[303,703]],[[3480,42622],[-108,607]],[[3588,42540],[-120,70]],[[3789,42627],[558,217],[272,193],[251,-153],[357,70]],[[4000,37563],[-148,-332]],[[4874,9055],[148,-201],[-9,-500]],[[8245,5753],[7,-515]],[[8171,5689],[72,63]],[[8111,6757],[65,-412]],[[8493,5182],[162,-75]],[[10928,61708],[115,522],[-65,502],[74,352]],[[11052,63084],[228,1077]],[[18886,64989],[-19,151]],[[18927,64334],[-41,655]],[[18519,65069],[175,-731],[242,-3]],[[19055,65851],[301,81],[321,-45],[60,-194]],[[18936,64335],[390,195]],[[19183,61837],[1,287],[-145,433],[-91,940],[-21,837]],[[30011,74539],[-282,-385]],[[24839,59788],[258,968],[-114,786],[-228,760],[-196,399],[79,1074]],[[18902,58216],[418,104],[378,-62],[447,230],[276,333]],[[14451,52685],[-316,333]],[[14051,53452],[315,213]],[[14434,52674],[-31,-162],[-458,-114]],[[18599,51082],[169,543],[463,190],[257,-209],[61,-395]],[[9203,38100],[-251,-231]],[[8472,5385],[452,482]],[[18504,4741],[-245,607],[-354,616],[-75,422]],[[17830,6386],[-1,88]],[[21023,25598],[-6,52]],[[21017,25650],[247,82]],[[19195,26213],[417,223],[690,-128],[347,-499],[368,-159]],[[22206,37745],[201,-42],[36,-217]],[[22146,37211],[-49,381],[109,153]],[[34657,41244],[591,73]],[[34999,43907],[-108,675],[-221,-17]],[[34123,43949],[170,-339],[395,87]],[[34882,43167],[137,491],[-20,249]],[[34290,43013],[280,-80]],[[34570,42933],[312,234]],[[34631,42223],[-235,-35]],[[48251,61363],[-232,318]],[[49334,71597],[243,3],[217,211],[54,605]],[[48105,72315],[2,-170],[346,-273]],[[48453,71872],[389,53],[262,-69],[212,-206]],[[49330,71591],[69,424],[105,102]],[[52451,83733],[-421,1]],[[52604,83166],[-269,-54]],[[52905,83756],[-91,-549],[-210,-41]],[[52812,84395],[93,-639]],[[52085,84182],[171,270],[556,-57]],[[52033,83723],[52,459]],[[52028,83315],[5,408]],[[46186,84450],[-307,494]],[[46008,85385],[-375,56]],[[45503,85093],[300,15]],[[45879,84944],[19,-604]],[[46072,84953],[-192,152]],[[45625,84340],[209,656]],[[45622,85442],[212,-446]],[[62900,82781],[195,-458]],[[62900,82764],[268,-149],[209,36]],[[63591,82386],[-3,295]],[[63098,82312],[-311,-297]],[[67546,78915],[145,205]],[[81327,78539],[-6,-492],[-172,-453],[-124,-72]],[[80833,77791],[-29,347]],[[81014,77525],[-181,266]],[[81005,77550],[-1,452]],[[82099,84378],[-216,93],[21,322]],[[82601,84967],[-115,-515],[27,-453],[-235,-328]],[[82250,84726],[-330,48]],[[85194,93255],[217,41]],[[85653,94994],[190,-505]],[[82002,85557],[117,-353]],[[82258,83662],[-56,576],[48,488]],[[72939,32872],[-109,90]],[[73994,31963],[131,413]],[[71467,31516],[-277,59]],[[86767,41774],[289,120]],[[86652,41651],[115,123]],[[86507,42231],[189,228]],[[86058,42750],[72,-439]],[[86497,42234],[154,-567]],[[86995,41245],[-229,526]],[[86996,41018],[-259,11]],[[87151,40697],[-290,-173]],[[86637,48132],[-403,-397]],[[86234,47735],[-321,80]],[[90102,33654],[121,24]],[[90625,33328],[427,91]],[[91050,33411],[-102,396]],[[91338,33646],[-373,167]],[[89975,36381],[3,-1]],[[89978,36380],[177,-64]],[[89678,36501],[297,-120]],[[97310,27048],[-42,312],[-334,295],[-234,75],[-261,-137]],[[93890,26523],[-51,386]],[[87053,29807],[580,14]],[[63664,62811],[-403,-187],[-465,-55],[-5,-128]],[[6143,6565],[-639,-155]],[[8101,2887],[-196,151]],[[10062,91240],[3,-538],[-78,-37]],[[9926,85164],[434,-405]],[[9988,83945],[179,21],[89,380],[140,85],[16,353]],[[7212,49485],[244,-159],[58,-464],[-173,-423]],[[5943,58059],[98,-403]],[[8511,64325],[293,111]],[[8737,65012],[-168,120]],[[2228,49933],[87,650],[189,214],[129,566],[222,332],[65,370],[255,436]],[[18648,60807],[255,-60],[128,302],[-85,196],[223,561]],[[18175,50256],[424,826]],[[18578,28702],[176,-1061]],[[26764,52774],[-637,285],[-201,215]],[[28460,52743],[-98,811],[-190,451]],[[28172,54005],[-381,300]],[[35396,80464],[-116,-98],[-634,402],[-303,-195]],[[37314,78737],[136,-281],[549,-512],[240,-137]],[[39355,57735],[38,72],[74,1344]],[[31614,57675],[211,-413],[192,-36],[606,-676]],[[38047,27936],[54,107],[343,-173],[130,-503]],[[37714,13330],[-117,-170],[-112,-669],[-197,-367],[-40,-612]],[[52269,9760],[-169,-427],[-157,-45]],[[55534,24246],[243,237],[-15,510]],[[55514,24273],[293,-241],[137,316],[198,71]],[[56142,24419],[167,-9],[18,325]],[[55532,25176],[257,116]],[[55614,38067],[50,-569]],[[55134,37936],[223,175],[257,-44]],[[51613,44680],[-23,1710],[53,371],[-5,1088]],[[54011,46958],[-108,-203],[-337,-80]],[[54187,47761],[-176,-803]],[[51169,59000],[-246,95],[-290,-109],[-202,-218]],[[53242,47543],[478,20]],[[48183,61956],[-149,-24],[-77,457],[-128,129]],[[46107,66754],[-94,305],[65,462]],[[52432,83606],[-157,42],[-506,-673],[-807,-461]],[[53775,77635],[-39,-355],[94,-674]],[[55847,73628],[-391,-252]],[[55456,73376],[119,-676],[370,50],[60,232]],[[48105,72297],[319,-64]],[[48122,70780],[111,768],[191,685]],[[49515,72070],[49,-408]],[[50956,70794],[-312,491],[-886,768]],[[55712,73146],[293,-182]],[[48001,91366],[69,234],[295,217],[81,234]],[[59391,76565],[336,-264],[278,62],[269,-114]],[[55161,69301],[-7,321],[-244,-14],[17,-363],[234,56]],[[55361,70905],[22,226]],[[57800,17312],[-221,289]],[[56635,13909],[605,-169],[432,-327],[273,-118]],[[63701,17818],[363,-50],[354,67],[242,168],[278,-4],[571,-288],[101,220]],[[63410,15797],[281,-736],[195,-365],[618,-402]],[[62545,18129],[212,221],[595,-225],[349,-307]],[[62546,18137],[17,-692]],[[62605,19170],[-59,-1033]],[[65333,35572],[40,-754],[-56,-314]],[[62462,36650],[381,-295],[346,-85],[457,-337]],[[65623,37098],[-163,-450],[-127,-1076]],[[62679,31660],[-213,199],[-509,-41],[-419,227]],[[62270,48310],[55,356]],[[62325,48666],[-333,728],[-186,-25]],[[61806,49369],[-251,-198],[-16,-696]],[[61539,48475],[9,-24]],[[61643,49266],[379,-383]],[[63588,82681],[-212,-27]],[[79821,88244],[-268,-75],[-78,-1174],[74,-954],[211,-667]],[[73664,71503],[361,389]],[[74838,73783],[500,481],[221,105]],[[73559,71006],[-160,241]],[[74354,66162],[297,31]],[[74344,66035],[288,-94]],[[74632,65941],[530,-422],[547,119],[244,-479],[177,-146]],[[76130,65013],[115,-70]],[[78129,61090],[50,253]],[[77919,61059],[210,31]],[[77856,61370],[57,-310]],[[76055,59385],[-224,-179]],[[76516,58870],[151,-244]],[[69670,58566],[45,-701],[168,-455]],[[75477,52113],[-339,433],[-290,52]],[[70572,49736],[-325,133]],[[72385,45788],[-396,-127],[-72,-136],[153,-396]],[[72184,45128],[223,-363],[397,73]],[[73011,42755],[-88,94]],[[73142,42402],[-131,353]],[[72923,42849],[-37,574]],[[69060,42885],[15,497]],[[69517,43312],[20,205]],[[69059,42892],[-130,1]],[[70756,37907],[297,218]],[[75027,41035],[-105,7]],[[75321,41656],[-161,-585],[-133,-36]],[[74922,41042],[-186,128],[75,434]],[[74811,41604],[190,307]],[[73547,33059],[169,799]],[[73461,32471],[356,-76]],[[72845,32035],[574,34]],[[73419,32069],[352,-17]],[[73419,32079],[31,394]],[[72656,29834],[121,-32],[52,335]],[[71137,31301],[62,353]],[[68351,30104],[233,581],[735,105]],[[73836,25899],[289,147],[142,287],[213,848],[58,510],[150,605],[93,699],[155,509],[-6,320]],[[71924,26505],[246,-307],[334,-55],[139,-164],[38,-611],[273,-430],[37,-211],[-53,-1297]],[[80053,31391],[-59,111]],[[81391,28145],[-100,235]],[[83200,26566],[4,324],[152,192]],[[79179,38962],[69,448],[-153,847]],[[79158,37907],[-119,291],[143,360],[-3,404]],[[80112,38537],[647,-207]],[[80052,37637],[-21,622],[92,290]],[[78121,47202],[308,573]],[[78541,47900],[291,578]],[[79367,49943],[-22,-300],[-183,-228]],[[78832,48478],[135,117],[22,290]],[[78429,47775],[112,125]],[[80872,54008],[-204,118],[-164,-132]],[[80660,53669],[215,335]],[[84663,55695],[-196,246]],[[80763,58343],[-196,241],[41,550],[125,183]],[[82272,84754],[11,361]],[[84818,88469],[204,438],[169,575],[304,688]],[[85480,93969],[-77,-659]],[[85684,92532],[161,-35]],[[85389,95886],[264,-892]],[[82519,93894],[891,-217],[189,-98]],[[84826,93351],[368,-96]],[[87978,55550],[-85,651],[77,334],[162,175],[138,459]],[[86296,48556],[277,-155]],[[87694,42027],[-185,-68]],[[87286,41091],[-132,-395]],[[88305,39169],[-258,60],[-189,226]],[[87858,39455],[-173,233]],[[90248,43169],[20,276]],[[87098,41018],[-102,0]],[[90223,41168],[212,-767]],[[87562,32651],[-69,193]],[[84417,35909],[-243,102],[-179,-123]],[[86106,28104],[-40,-1088],[-197,-746]],[[91264,27436],[-224,-10]],[[89904,26174],[-172,-237]],[[91055,22341],[76,247],[65,1507]],[[95805,15662],[321,487]],[[95079,25671],[-338,266]],[[95090,25717],[155,441]],[[94073,23615],[-132,-202]],[[80001,87501],[-65,-326],[14,-515],[-80,-751],[100,-215],[-122,-955],[-120,-144]],[[81308,86494],[100,425],[-254,103],[-94,-106]],[[47603,80950],[-220,138]],[[49115,72019],[48,-532],[347,-251],[200,45],[300,302],[21,192]],[[49791,70706],[-536,377],[-236,337],[-26,469]],[[1438,41475],[-15,-169]],[[8039,60078],[167,16]],[[8206,60094],[107,46]],[[8725,65003],[117,632]],[[72675,70722],[87,-103]],[[72443,71124],[175,-340]],[[70364,68413],[119,-550],[162,-347],[-76,-612],[40,-456],[-159,-271],[-262,-52]],[[70147,66091],[-219,-134]],[[66660,66841],[331,-155],[279,-241]],[[72766,70624],[134,-135],[153,-459],[-47,-237]],[[72134,72787],[-26,-468],[81,-387],[-82,-219]],[[72107,71713],[215,-212],[121,-377]],[[71122,74633],[198,-370],[373,-68],[129,-196],[265,42],[138,-286],[-90,-957]],[[70801,76260],[-58,-426],[424,-691]],[[70364,76980],[-445,57],[-161,274],[-153,-64]],[[70364,76980],[236,-159],[138,-487]],[[70741,73316],[83,-520],[-28,-438]],[[69966,75914],[175,-137],[45,-681],[324,-1197],[231,-583]],[[70095,70414],[312,352],[127,894]],[[70095,70414],[-228,-332],[-83,-319],[3,-490],[-77,-221]],[[71600,67152],[387,-172],[192,-366],[241,-131]],[[71211,72080],[368,-189],[345,29],[183,-207]],[[67963,79227],[321,37],[102,259],[232,-50],[340,126]],[[68050,79801],[14,316]],[[68064,80117],[-14,-316]],[[68064,80117],[181,34],[773,-103]],[[70937,72073],[127,-27]],[[69253,77624],[-164,-690]],[[67367,64380],[854,-91],[264,-73],[398,-479]],[[68883,63737],[-1,-70]],[[69007,63870],[-124,-133]],[[69995,64680],[157,-218],[232,33]],[[70856,72098],[81,-25]],[[70937,72073],[78,-170]],[[69881,67515],[52,-95]],[[69356,65328],[-64,-259]],[[69233,64933],[-226,-1063]],[[69033,63603],[-20,-779]],[[70611,71904],[-77,-244]],[[68550,66720],[391,158],[141,189]],[[71064,72046],[147,34]],[[67442,79679],[110,-420]],[[67963,79227],[65,391]],[[67480,70691],[81,93]],[[67562,62989],[-29,-626]],[[67588,63084],[-15,-103]],[[72199,71447],[126,48]],[[70959,68065],[273,-454]],[[70777,69127],[78,-707]],[[68726,72779],[266,-120],[418,-458]],[[66920,65671],[167,111]],[[68192,74093],[202,-179],[-25,-450],[357,-685]],[[68054,74211],[138,-118]],[[69788,67081],[-30,-334],[151,-758]],[[68042,75009],[-25,218]],[[67561,70790],[0,-6]],[[71015,71903],[67,-192]],[[70985,71156],[-80,-196],[35,-1107],[-163,-726]],[[69928,65957],[-49,-360],[166,-499],[-38,-373]],[[67087,65782],[497,-15],[337,93],[214,-310],[252,68],[289,-293],[776,-41]],[[70092,65265],[310,295],[443,73]],[[69647,65295],[361,-34]],[[71354,65746],[549,110],[124,-203],[256,37]],[[69253,77624],[-25,50]],[[69228,77674],[12,39]],[[71167,75143],[0,-46]],[[71121,74715],[1,-82]],[[72135,72798],[-1,-11]],[[68186,78327],[313,-496],[185,-137],[544,-20]],[[67963,79175],[179,-59],[53,-222]],[[70805,72298],[-75,-151]],[[71231,76179],[-64,-1036]],[[71206,77427],[-1,-883],[42,-129]],[[71122,74633],[-153,-697],[25,-1081],[-116,-557]],[[71110,65595],[398,-628],[265,176],[428,71]],[[68070,69166],[-84,-804],[-161,-834],[-323,-19],[46,-309],[-74,-637],[-204,-118]],[[67270,66445],[-184,-639],[149,-405],[250,-401],[17,-277]],[[67728,72076],[-21,-451],[-107,-119],[-39,-716]],[[68051,74497],[-122,-699],[-89,-1574],[-72,-153]],[[67804,75860],[213,-633]],[[67634,78970],[-32,-129]],[[67832,62788],[18,-470]],[[72283,68183],[-30,-169],[-528,-895]],[[72731,70741],[-53,-230],[-225,-246],[114,-457],[-31,-351],[128,-303],[-72,-331],[-294,-549]],[[72325,71495],[269,127],[837,-349]],[[71301,72747],[176,157],[393,114],[265,-220]],[[69054,70112],[321,232],[73,198],[739,1098],[424,264]],[[72368,72781],[164,198],[398,134],[419,373]],[[71419,75823],[155,-101],[301,48],[160,200]],[[67603,78980],[107,130]],[[67253,78857],[294,252]],[[67638,79120],[27,25]],[[66869,78559],[186,208]],[[71232,67611],[276,-396]],[[70855,68420],[104,-355]],[[69622,67713],[166,-632]],[[72285,68218],[-2,-35]],[[72286,68224],[-1,-6]],[[69836,64110],[-114,-969]],[[70007,64725],[-12,-45]],[[69995,64680],[-159,-570]],[[69718,62978],[-20,-890]],[[70364,68413],[142,140],[271,574]],[[71082,71711],[-97,-555]],[[71064,72046],[-49,-143]],[[70845,65633],[509,113]],[[70008,65261],[84,4]],[[70777,69127],[422,543],[276,257],[238,58],[905,799]],[[69632,67980],[332,484],[400,-51]],[[69253,77624],[352,-377]],[[71167,75097],[-46,-382]],[[68987,63686],[46,-83]],[[70730,72147],[-119,-243]],[[68195,78894],[-9,-567]],[[71247,76415],[41,-227]],[[71288,76188],[-57,-9]],[[71067,65766],[43,-171]],[[67502,64723],[-14,-260],[171,-677],[-65,-481]],[[67602,78841],[70,-677],[-25,-994],[-99,-1002],[256,-308]],[[68042,75009],[9,-512]],[[72298,68274],[-12,-50]],[[71041,72207],[23,-161]],[[68103,69161],[301,650],[359,65],[291,236]],[[70611,71904],[70,-98]],[[72134,72787],[234,-6]],[[71288,76188],[131,-365]],[[67547,79109],[91,11]],[[67055,78767],[198,90]],[[67564,78898],[110,194]],[[14840,61223],[19,515],[82,179],[251,83],[489,1082],[130,163]],[[23146,74490],[22,-246],[-129,-602],[60,-1267],[-239,-137],[-178,-1078]],[[23336,70463],[76,140]],[[18727,67422],[81,-725],[209,-662],[66,-17]],[[14833,57160],[381,-53],[461,178]],[[18720,60571],[125,-37]],[[19575,60374],[271,-375],[257,-49]],[[21802,71782],[-105,1222]],[[21851,71759],[64,45]],[[20717,62571],[348,-64]],[[21564,62551],[402,-76],[142,-276],[189,187],[425,209],[483,591]],[[21201,62354],[127,85]],[[23251,60601],[6,-40]],[[19241,66602],[35,-326]],[[20123,67233],[182,-905]],[[20838,69218],[-225,-521],[-488,-1452]],[[17373,66783],[90,-10]],[[17790,65216],[19,-225]],[[19279,66276],[39,-395]],[[19277,66264],[-1,12]],[[20604,63054],[61,-208]],[[17707,62611],[34,-616]],[[23737,53614],[19,-596],[223,-487]],[[19711,56779],[435,430],[193,529],[-62,590],[178,407]],[[23251,60601],[366,298],[247,369],[312,747],[163,78],[165,331],[169,62]],[[24305,68112],[-120,-232],[-15,-337],[184,-773],[-56,-358],[143,-103],[-92,-266],[325,-350],[197,-583]],[[23351,70332],[-1,-1201],[53,-380]],[[23704,68984],[294,-138],[240,18],[159,-409]],[[26023,53304],[64,202]],[[21030,53216],[141,-570],[-104,-93],[-391,380],[-380,-303],[-388,-165],[66,-371],[-475,-509],[18,-220]],[[20585,70321],[49,13]],[[21065,62507],[136,-153]],[[21328,62439],[236,112]],[[20634,70334],[198,-813],[6,-303]],[[19381,65315],[345,-384],[184,-5],[231,-292],[149,-944],[270,-236],[44,-400]],[[20665,62846],[52,-275]],[[17741,61995],[133,-33]],[[24397,68455],[-92,-343]],[[23290,70587],[61,-255]],[[20649,70490],[103,149]],[[58939,68692],[87,-35]],[[59025,68646],[31,9]],[[56681,70117],[-194,90],[-232,370],[-7,528]],[[57597,68731],[196,198],[662,113],[229,-328],[255,-22]],[[59549,68546],[504,-222],[100,207],[241,28]],[[59007,68745],[49,-90]],[[59056,68655],[493,-109]],[[55079,66872],[164,465],[200,208],[74,334],[168,28],[260,698]],[[54429,66177],[459,10],[212,522]],[[57428,65719],[32,109]],[[57419,68845],[55,61]],[[54266,62259],[-45,-63]],[[54726,59053],[4,-128]],[[57514,68793],[-22,-753],[-142,-928]],[[59437,60430],[205,-96]],[[58747,61589],[117,-113]],[[54222,61981],[293,260],[269,79],[492,-75],[1236,78],[187,207]],[[58223,62279],[100,-245],[424,-445]],[[59093,60699],[344,-269]],[[58904,61421],[51,-195]],[[58955,61226],[124,-160],[14,-367]],[[56962,66551],[-239,-651],[239,-447]],[[57350,67112],[-350,-325]],[[56968,65301],[131,-279],[-150,-226],[-12,-470],[-107,-134],[-40,-579],[-201,-305],[107,-307],[3,-471]],[[56699,62530],[88,-592],[-49,-428],[144,-426],[-99,-449],[36,-263],[-225,-286],[73,-457],[68,-1028]],[[60395,65984],[-17,-80]],[[54651,58189],[119,2]],[[59918,64044],[19,946]],[[59888,64052],[-1,-157]],[[59076,66243],[35,549],[-87,105],[127,1148],[-125,403],[-14,495],[-531,1049],[-237,183],[-331,88]],[[60161,67514],[174,-205],[60,-1325]],[[60378,65904],[-373,-23],[-30,-806]],[[59940,65095],[-3,-105]],[[59937,64990],[-819,29],[-330,-693],[-87,-24]],[[57883,70108],[212,-331],[122,-471],[-18,-1300]],[[57749,71044],[191,-515],[-24,-161]],[[58309,67860],[-21,-1881],[96,-831],[141,-184]],[[59839,61955],[-64,-653],[-88,-220],[27,-456],[-87,-477],[174,-345],[-10,-337],[-143,-426],[13,-647]],[[54929,64489],[571,178],[376,543],[240,-21],[737,164]],[[57107,65422],[331,227]],[[57462,65648],[337,307],[874,23],[206,155]],[[53907,58907],[134,-21]],[[54736,58913],[292,-61],[396,253],[441,-92],[405,-297],[92,-347]],[[54445,58893],[290,3]],[[60929,58946],[662,-75],[533,62]],[[59601,70093],[-123,-497],[82,-737],[-43,-700],[-97,-679],[46,-625],[-217,-485]],[[59507,70964],[59,-497]],[[61866,64988],[-36,-20]],[[62375,57598],[-65,484],[-125,12],[-351,726],[-200,851],[-108,68]],[[61710,64776],[-480,36],[-296,-150],[-205,-367],[-126,-787],[292,-1374]],[[60895,62134],[70,-908],[274,-1165],[185,-144]],[[54181,64621],[509,224]],[[58217,58014],[214,-118],[581,-90],[291,160],[91,250],[267,178]],[[59661,58394],[208,-330]],[[53979,59638],[205,152],[246,-146],[204,-279]],[[54770,58191],[115,-294],[318,-267],[304,408],[335,91]],[[55845,58135],[517,234]],[[58169,62951],[380,12],[248,-121],[372,132]],[[59839,61955],[1029,181]],[[60895,62134],[1221,-195],[319,261],[80,-60]],[[60868,62136],[24,-2]],[[57000,66787],[-38,-236]],[[54730,67185],[349,-307],[129,-342],[308,-179],[304,-17],[191,-293],[434,-390],[537,-357]],[[57134,65287],[239,-204],[343,63]],[[59888,64052],[30,-8]],[[54168,67137],[290,44]],[[54735,58896],[1,17]],[[57491,68841],[23,-48]],[[56881,71077],[-170,-851],[46,-408],[257,-273],[460,-639]],[[58309,67860],[370,-325],[35,-630],[290,-663]],[[57597,68731],[35,-153]],[[59154,66284],[154,-400],[298,-410],[202,-120],[637,-1013],[273,-11],[202,-365],[541,-23],[377,-394],[322,-571]],[[62157,62977],[-14,-552]],[[57841,69995],[-253,-375],[-93,-709]],[[61526,59739],[-5,123]],[[58111,58178],[106,-164]],[[54041,58886],[404,7]],[[61710,64776],[108,199]],[[61818,64975],[12,-7]],[[56362,58369],[223,-16]],[[54198,61953],[24,28]],[[58911,66201],[251,146]],[[56982,65300],[26,-59]],[[57474,68906],[123,-175]],[[57632,68578],[338,-361]],[[57973,68216],[336,-356]],[[57913,70263],[-30,-155]],[[57916,70368],[-3,-105]],[[56853,65353],[-2,58]],[[54672,59154],[54,-37]],[[60945,59067],[19,-118]],[[57008,65241],[126,46]],[[57134,65287],[-27,135]],[[57107,65422],[-145,31]],[[56962,65453],[-111,-42]],[[58521,64319],[-259,-42]],[[9574,46999],[374,497],[106,-122]],[[10404,48451],[184,-172]],[[10054,47374],[350,1077]],[[10404,48451],[306,1262],[117,304]],[[7963,29368],[-40,926],[115,581]],[[8853,47135],[327,357],[394,-493]],[[2841,46172],[28,-458],[-165,-66]],[[1166,38822],[181,71]],[[3068,35336],[356,171]],[[3376,35746],[593,232]],[[11930,53083],[151,-61],[99,-448],[157,-125]],[[2205,46456],[-145,-438]],[[8805,50728],[425,-433]],[[4617,50209],[112,-242],[220,-1346]],[[7468,29121],[344,47],[224,230],[245,-13]],[[5930,53157],[38,-362],[-60,-461]],[[5852,53648],[69,-434]],[[1290,42857],[202,-66]],[[1921,41599],[-125,-62]],[[731,38669],[225,-156],[189,203],[221,683]],[[1471,39841],[287,118]],[[1491,38972],[86,-22],[178,396],[37,592],[126,33]],[[1918,39971],[148,24]],[[1724,40282],[34,-323]],[[1758,39959],[27,-18]],[[11941,55906],[17,-327],[-92,-846],[-153,-350],[-11,-664],[208,-297],[20,-339]],[[11931,52983],[-3,-674],[-153,-333],[92,-646]],[[107,35287],[320,309],[199,598],[121,555],[297,302],[96,257]],[[2128,45547],[156,-53],[230,271]],[[8880,49525],[253,358],[97,412]],[[5773,50247],[182,-311],[277,105]],[[6230,50028],[402,147]],[[6430,55910],[263,12],[947,379]],[[4550,49004],[399,-383]],[[4949,48621],[173,-571],[235,-1364]],[[2540,45945],[155,31]],[[2468,37134],[12,423],[87,33],[128,898],[551,347]],[[5444,54313],[827,344]],[[1641,37042],[61,640],[127,215]],[[4622,47158],[90,140],[872,352]],[[9230,50295],[14,226],[188,302],[205,-181],[198,252],[374,22],[277,-706],[358,-169],[211,415],[1,393],[603,825],[168,53]],[[3028,49055],[382,-108],[207,40],[405,651],[262,-125]],[[3449,48969],[-181,-425],[58,-181],[-186,-814],[-128,-302],[-105,-925],[-111,-344]],[[2599,30223],[157,-297],[174,-83],[293,-446],[43,-392],[190,-409],[-219,-402],[-25,-943],[604,-496]],[[2016,31036],[22,-335],[151,46],[358,-209]],[[1974,31217],[48,-136]],[[3244,34509],[317,159]],[[3561,34668],[296,228]],[[4403,48372],[222,-1231],[-90,-465],[-242,-420],[47,-389]],[[4577,50103],[-284,-574],[257,-525]],[[4577,50103],[137,543],[176,1219],[153,422],[129,928]],[[5172,53215],[82,494],[190,604]],[[5444,54313],[-125,327],[-162,61],[0,288],[149,790],[-72,241],[200,229],[-114,237],[-110,579]],[[1549,43301],[124,370]],[[1673,43671],[230,767]],[[363,29923],[267,427],[339,113],[178,255],[140,-122],[205,474],[219,206],[274,-60],[178,216]],[[2223,31478],[273,350],[577,457],[25,223],[371,276]],[[2168,31434],[53,37]],[[4176,51097],[359,-74],[404,-610],[35,-201],[370,-522],[67,-285]],[[5908,52334],[64,-442],[-7,-543],[-240,-1325],[112,-699],[-53,-117],[139,-779]],[[5921,53214],[9,-57]],[[3561,34668],[6,142],[-345,1840]],[[5921,53214],[205,81]],[[5172,53215],[226,-275],[532,217]],[[11397,60201],[545,237],[414,328],[158,-90],[472,409],[221,-88],[359,32],[191,174],[294,-19],[218,-233],[188,5],[383,267]],[[6288,53149],[100,-757],[129,-405],[198,-1096]],[[9625,61155],[324,406],[140,477],[299,-4],[137,-486]],[[1620,43133],[-71,168]],[[1714,45001],[-84,-956],[94,-146]],[[1536,28895],[-12,-625],[201,-541],[243,-103],[123,-251],[79,-780],[452,-720],[213,-124],[315,510],[69,-144],[371,-28],[268,292],[152,-51]],[[6378,53520],[-37,-207]],[[8548,65378],[-113,-480]],[[6691,58861],[82,-52]],[[7137,60050],[67,-451],[221,-407],[50,-440]],[[7360,60701],[110,-883],[92,-205]],[[7771,61092],[29,-216]],[[10877,61692],[-363,-149],[-246,-400],[18,-172],[-220,-380]],[[3345,54249],[84,-434]],[[7136,60056],[1,-6]],[[11799,65737],[87,-782]],[[1486,39018],[5,-46]],[[2464,45827],[76,118]],[[6112,47341],[125,20]],[[1641,37042],[-166,-380]],[[2115,40102],[13,-157]],[[6126,53295],[191,75]],[[10296,60232],[456,-246],[645,215]],[[10211,60672],[85,-440]],[[6297,50043],[69,-435]],[[6742,50716],[-71,-520]],[[11971,66197],[31,-73]],[[8980,60872],[645,283]],[[8299,62816],[261,-90]],[[5826,46997],[57,-355],[320,-849],[115,-68],[84,-584],[114,-284],[-116,-197],[54,-633],[-129,-160]],[[7875,61631],[-416,-786]],[[6767,59905],[369,151]],[[7136,60056],[49,162]],[[5071,42984],[152,-238]],[[4062,41363],[210,-145]],[[5722,57225],[182,-49],[543,151],[165,-79]],[[7841,57403],[479,267],[248,449],[158,446]],[[4803,45080],[274,114],[301,-140],[263,-349],[213,52]],[[5843,44716],[202,-555],[344,38],[124,-118]],[[4166,35594],[-100,-201]],[[2595,45232],[305,351]],[[2094,46051],[162,-25]],[[7054,58898],[29,-67]],[[5050,37237],[278,-105],[282,204],[214,12]],[[3935,37254],[188,-201],[280,50],[99,163],[413,154]],[[4916,37414],[2,7]],[[2040,39390],[-161,-635],[-107,-170],[26,-642],[133,-121],[10,-510]],[[3488,32871],[287,-348],[411,-4],[508,223],[197,14],[118,468],[220,95],[106,-153],[503,185],[385,-209],[287,235]],[[2933,41826],[99,43]],[[3032,41869],[273,174],[355,-63]],[[5229,31620],[436,333],[324,927],[251,263]],[[4727,38135],[206,-629]],[[5089,39421],[-119,-363],[-193,-209],[-69,-277]],[[5053,39551],[36,-112]],[[5854,44757],[-11,-41]],[[1941,37312],[64,-370]],[[1756,46590],[309,137]],[[3946,37241],[102,-884],[137,-375]],[[4166,35594],[910,-1317],[552,98],[-31,403],[177,99],[240,409],[110,389],[336,-82],[546,364]],[[7006,35957],[114,107]],[[8846,63304],[481,498],[273,-112],[274,233],[257,-155],[399,19],[344,248],[399,135]],[[11698,65704],[79,198]],[[4903,40890],[512,-200],[126,-218],[314,23],[478,-452],[261,107],[96,-219],[143,82],[187,-260]],[[4272,41218],[236,-339],[369,-78]],[[3801,41878],[147,-136],[114,-379]],[[5229,31620],[-150,-1103],[44,-884],[-269,-535],[-472,-150],[-292,-270]],[[8918,58277],[80,-537],[-29,-1078],[6,-1685],[49,-955],[-201,-826],[-86,-146]],[[7459,60845],[39,-75]],[[7459,60845],[-274,-627]],[[7169,60122],[49,25]],[[1386,41908],[47,-275]],[[2887,41570],[47,250]],[[2068,40740],[52,-569]],[[6724,59333],[-43,426],[86,146]],[[2120,40171],[-5,-69]],[[8827,65585],[7,-45]],[[7601,57068],[167,69],[73,266]],[[4340,45867],[286,-7],[530,220]],[[2900,45583],[48,-118],[502,-188],[186,267]],[[2093,39765],[-53,-375]],[[2115,40102],[-49,-107]],[[3636,45544],[704,323]],[[4708,38572],[19,-437]],[[2156,46603],[44,-119]],[[8682,65486],[152,54]],[[10549,65703],[173,-130]],[[8682,65486],[145,99]],[[5896,47704],[121,121]],[[7498,60770],[75,-91]],[[7004,60054],[-1,42]],[[3779,39407],[74,8]],[[2874,41443],[13,127]],[[2317,41329],[61,-160]],[[2208,44126],[-51,-505]],[[5808,47663],[304,-322]],[[6931,60104],[62,-162]],[[1433,41633],[20,-63]],[[7023,59023],[297,-240]],[[3205,39451],[140,-596]],[[1330,38988],[156,30]],[[2066,39995],[17,-77]],[[5286,57442],[436,-217]],[[1971,41882],[-50,-283]],[[8538,64941],[65,-321]],[[2040,46100],[54,-49]],[[8488,64816],[161,-501]],[[6721,50851],[43,17]],[[7083,58831],[144,-411]],[[4928,37462],[122,-225]],[[4214,56407],[67,-75]],[[7326,60187],[413,142]],[[1475,36662],[84,-367]],[[1562,36297],[-1,-43]],[[2083,39918],[10,-153]],[[5164,57340],[46,-275]],[[2304,41184],[207,-35],[383,248]],[[3660,41980],[139,-7]],[[5791,47326],[35,-329]],[[6824,60099],[69,15]],[[4933,37506],[-5,-44]],[[7573,60679],[124,-151],[85,-451]],[[6715,50891],[27,-175]],[[8915,64636],[108,-193]],[[2065,46727],[91,-124]],[[4185,35982],[-19,-388]],[[7557,60619],[47,143]],[[6665,59096],[103,27]],[[8565,65456],[117,30]],[[8827,65585],[3,25]],[[8791,64788],[93,63]],[[8499,64844],[273,-39]],[[6975,59446],[142,96]],[[6944,59429],[31,17]],[[7117,59542],[165,74]],[[6758,59352],[134,69]],[[6892,59421],[52,8]],[[2236,40936],[97,-640]],[[2081,40685],[156,246]],[[8622,65536],[39,-206],[-103,-721]],[[1799,41738],[35,-81]],[[7745,60618],[158,-252]],[[8834,65540],[-93,-514]],[[7827,60797],[92,-163]],[[2894,41397],[15,-53]],[[7604,60762],[312,562]],[[8443,64907],[62,-13]],[[2248,41020],[-12,-84]],[[34044,42486],[18,260]],[[33648,41185],[43,24]],[[33524,41147],[153,66]],[[35208,41265],[1,-116]],[[39273,49411],[467,36]],[[38451,49292],[294,191],[500,-69]],[[33691,41209],[315,599],[134,120],[-96,558]],[[35025,53721],[202,4],[284,215],[198,278],[287,-143],[223,76],[326,-192],[497,57],[17,-226],[851,102],[115,-390],[1055,116],[510,-285]],[[32809,42187],[279,-620],[10,-571],[650,228],[286,-177],[474,178]],[[39763,39712],[-24,-78]],[[39218,50175],[44,-1168],[-29,-183]],[[39233,48824],[25,-802]],[[39176,50975],[42,-800]],[[27928,45182],[251,-77]],[[34663,45185],[-192,-198],[-85,-316]],[[35170,40635],[-76,-577],[19,-750],[78,-298]],[[34290,44516],[0,-228]],[[34527,40773],[155,23]],[[30153,43838],[131,528],[354,277]],[[30638,44643],[234,401],[57,297]],[[34610,47649],[70,16]],[[34709,47658],[33,-475],[-78,-251]],[[27714,45249],[229,-111]],[[35220,41384],[-11,-235]],[[35209,41149],[-39,-514]],[[38146,40441],[37,-835],[56,-203]],[[30029,40036],[151,-287],[-168,-1630]],[[29308,43768],[14,-284],[-248,-460],[36,-1224],[166,-60],[187,-678]],[[29463,41062],[150,-398],[190,14],[4,-339],[171,-318]],[[38047,40638],[99,-197]],[[34821,53937],[204,-216]],[[32188,47096],[259,-121],[2,-204],[281,-375],[584,-45],[271,160],[111,251],[311,107]],[[31849,51193],[103,-1317],[351,-175],[58,-359],[-250,-849],[76,-245]],[[31941,54157],[2,-386],[172,-854],[183,-555]],[[32492,46714],[30,-1171],[651,-834],[356,279],[341,-402]],[[31805,51841],[44,-648]],[[37202,42126],[435,293],[144,216],[864,148],[61,124],[555,113],[243,143],[474,89]],[[35581,41576],[298,287],[265,48],[204,202]],[[35865,52212],[256,-246],[676,-957]],[[35025,53721],[254,-269],[189,-575],[317,-395],[80,-270]],[[38449,44679],[758,72],[87,-148],[251,15]],[[39545,44618],[5,-168]],[[39550,44450],[379,15]],[[35915,44126],[38,-88],[750,101]],[[36703,44139],[1140,136],[603,404]],[[39550,44450],[94,-1005],[9,-1024],[-76,-620],[80,-1308],[109,6],[-3,-787]],[[39470,46172],[75,-1554]],[[39395,47162],[40,-964]],[[39227,48030],[21,-697],[147,-171]],[[34543,40512],[136,56]],[[34007,46869],[213,-172],[124,410],[239,298]],[[33870,44586],[181,-352]],[[34508,41225],[972,196],[101,155]],[[91374,32590],[274,-308],[171,-383],[208,-175]],[[92730,28678],[-56,-355]],[[92676,28232],[-14,-192]],[[92533,30622],[-6,296]],[[92027,29691],[447,-350]],[[91888,30534],[-34,-256],[160,-529]],[[92027,31724],[51,-122]],[[92674,28323],[2,-91]],[[92712,29020],[18,-342]],[[91831,30831],[372,208]],[[92891,29745],[117,1],[106,-330],[262,-441]],[[93808,30166],[-262,-289]],[[93968,30173],[239,-26],[159,-209]],[[92291,29019],[66,-2]],[[92357,29017],[-47,-741]],[[91520,30616],[-26,-659],[231,-352],[185,-455],[267,-152]],[[91372,28546],[286,33],[514,409]],[[93045,28827],[228,-134],[253,-390],[308,-84],[79,-284],[181,-45]],[[92182,28996],[109,23]],[[92357,29017],[300,42]],[[91118,28925],[242,-386]],[[93028,28846],[348,129]],[[94032,28414],[144,-72]],[[93533,28845],[475,-463]],[[91470,30307],[-217,-329],[157,-628],[-54,-893]],[[91691,31919],[-204,-806]],[[91545,30690],[-25,-74]],[[92203,31039],[234,-55]],[[92832,29780],[59,-35]],[[92602,29925],[47,-635]],[[94008,28382],[24,32]],[[93530,29931],[-144,-343]],[[91647,32013],[347,-540],[256,-165],[53,-272],[236,-452],[93,-521]],[[91323,32513],[-7,-194],[331,-306]],[[92100,31671],[104,-626],[-63,-891],[-127,-405]],[[92027,29691],[-164,-540],[41,-375]],[[93376,28975],[157,-130]],[[92644,28867],[190,68]],[[92809,28981],[219,-135]],[[92641,29994],[-287,29]],[[89141,42532],[393,-6]],[[88598,40826],[155,-184],[53,-316]],[[88861,42313],[255,79]],[[88573,38751],[-214,-217]],[[88608,40816],[199,117]],[[88807,40933],[240,-119]],[[88455,40024],[54,-411]],[[89270,43095],[275,-590],[347,-337]],[[88575,39161],[106,-429]],[[88682,38535],[-32,-274]],[[88641,38895],[-27,-51]],[[88509,39613],[-108,-338]],[[88327,39294],[277,-274]],[[88634,38760],[183,-456]],[[86408,42771],[10,-80]],[[86405,42701],[4,29]],[[86375,42420],[43,271]],[[86336,42741],[-1,18]],[[86418,42691],[95,-126]],[[86405,42701],[13,-10]],[[86408,42771],[1,53]],[[86359,42745],[50,-15]],[[86336,42741],[23,4]],[[86511,42792],[-41,310]],[[79060,79207],[-15,-166]],[[78820,81822],[39,-538],[-92,-178],[-102,-1060]],[[78328,78653],[15,-622]],[[78524,80066],[-231,-1196]],[[78266,77908],[-161,-326]],[[81872,86488],[183,-660],[252,-213]],[[77114,79814],[-245,-1095],[28,-303]],[[76887,78412],[-73,-695]],[[79722,82010],[-221,-573],[-199,-298],[-46,-735]],[[69136,80037],[69,-10]],[[80290,89046],[230,-563],[-15,-709]],[[80595,85437],[86,-996],[89,-393],[-64,-794]],[[80055,86328],[-99,-378],[64,-299]],[[80149,85151],[112,-822],[-464,-993],[9,-612],[-102,-704]],[[79261,80397],[-106,-1008],[-95,-182]],[[83931,89327],[-63,-1104],[-496,-1153],[-311,-1020]],[[75660,78701],[674,-466],[497,177],[307,-128],[286,21],[869,489]],[[73591,77965],[244,72],[739,-10],[186,337]],[[71664,78409],[409,-109],[392,-311],[333,18]],[[72856,77980],[580,-127]],[[70762,78404],[415,27],[428,-64]],[[69774,79090],[304,-161],[510,-457]],[[69465,79913],[106,-276],[-95,-189]],[[69261,79752],[-201,-220],[250,-25]],[[68958,79599],[75,-58]],[[82602,88940],[319,-160],[478,223],[126,-113],[364,448]],[[81662,87915],[495,-50]],[[69205,80027],[135,-2]],[[69018,80048],[118,-11]],[[83392,84372],[397,9]],[[83747,84857],[42,-476]],[[75508,78807],[49,-10]],[[79021,79058],[118,-26]],[[79912,80936],[145,123],[346,-22]],[[80953,80779],[290,-110]],[[80181,83208],[257,-549]],[[81409,80605],[187,-313],[289,-725]],[[80638,79262],[261,-499],[15,-570]],[[79299,81099],[557,-150]],[[82748,82752],[272,-86]],[[84092,86037],[72,-65]],[[79506,86608],[146,-33]],[[79462,87400],[314,-133],[302,71]],[[79460,87592],[149,-10]],[[85507,90117],[154,-41]],[[85173,90275],[492,403]],[[72782,80310],[5,-378],[-148,-561]],[[70736,79795],[74,-371],[131,-125],[-204,-595],[-15,-293]],[[84164,85972],[-259,-1155]],[[80941,76919],[291,-53],[85,-237]],[[83020,82666],[26,-30]],[[83055,82628],[64,-33]],[[78293,78870],[35,-217]],[[82307,85615],[-70,-884]],[[81026,77903],[2,-368]],[[69459,79914],[-121,-301]],[[80228,89112],[62,-66]],[[80505,87774],[-115,-507]],[[80093,89177],[26,-5]],[[80706,83254],[-30,-179]],[[85894,94459],[119,21]],[[80251,89883],[-126,-313],[-20,-482]],[[80020,85651],[129,-500]],[[80172,87090],[100,204]],[[80172,87090],[-117,-762]],[[85779,93946],[-39,-621],[-238,-2220]],[[79060,79207],[-9,-167]],[[81054,78101],[195,46]],[[81249,78147],[346,-90]],[[73436,77853],[155,112]],[[74760,78364],[328,94],[243,308],[329,-65]],[[70588,78472],[174,-68]],[[69310,79507],[200,-267],[264,-150]],[[69261,79752],[204,161]],[[79121,79036],[18,-4]],[[78293,78794],[49,24]],[[82239,82710],[361,-445]],[[69340,80025],[133,-84]],[[82182,81122],[152,-79]],[[79121,79036],[419,400],[680,286],[163,516],[261,241],[163,-67],[445,185]],[[81412,79345],[-131,-68]],[[80660,79491],[449,-160]],[[81412,79345],[280,136]],[[81121,79363],[160,-86]],[[80231,79696],[188,-160]],[[81446,80760],[334,402],[384,-59]],[[81491,82451],[366,-101],[538,-465]],[[80647,82453],[368,94],[472,-96]],[[80643,85223],[132,-217],[416,-185]],[[80531,89425],[307,104],[827,426]],[[81791,89994],[1534,-380],[76,-124],[488,-152]],[[83987,89301],[291,-342],[44,-179],[246,-99],[244,-250]],[[82807,91481],[565,-169],[205,7]],[[82218,91820],[330,-74]],[[80588,77226],[353,-307]],[[85860,91352],[-57,-502]],[[84419,86831],[-1,-6]],[[82112,82468],[-253,-293],[-198,-850],[-350,-375],[135,-190]],[[81801,89482],[-38,-611]],[[82396,83615],[-112,-54]],[[82658,85755],[343,281],[496,107],[377,-44]],[[85571,94290],[151,134]],[[77097,79766],[153,84],[314,-253],[188,-22],[216,233],[175,-38],[339,328],[425,-76],[349,382]],[[79816,82093],[171,263]],[[80390,87267],[186,-449],[116,-474]],[[80388,78289],[76,-677],[124,-386]],[[75231,80332],[209,-122]],[[75214,80893],[24,-557]],[[71629,79797],[104,-772],[-65,-500]],[[71605,78367],[-316,-570],[-83,-370]],[[79256,80404],[5,-7]],[[84484,91192],[1,-447]],[[84483,90734],[23,-70]],[[79030,78841],[1,-455],[-185,-658],[-5,-227]],[[81148,86434],[-218,-285],[-292,-211]],[[80181,85190],[-32,-39]],[[80149,85151],[-289,-440]],[[80595,85437],[-40,-194]],[[83949,89502],[197,-4],[213,276],[151,478],[-4,412]],[[80506,79515],[154,-24]],[[80419,79536],[81,-19]],[[79856,80949],[56,-13]],[[79912,80936],[254,-595]],[[82803,91482],[4,-1]],[[81268,84878],[-77,-57]],[[82395,81885],[266,-172]],[[80435,82625],[212,-172]],[[82300,84646],[463,-156],[147,80],[474,-190]],[[81268,84878],[455,-74]],[[80555,85243],[88,-20]],[[80469,87457],[512,-101],[225,115],[293,-75]],[[84720,87589],[-818,195],[-282,-131]],[[79609,87582],[391,-99]],[[81665,89955],[126,39]],[[80211,89435],[320,-10]],[[81951,92104],[267,-284]],[[82548,91746],[255,-264]],[[85803,90850],[-81,-634],[-178,-527],[-365,-489]],[[85890,94524],[23,-799],[-53,-2373]],[[85179,89200],[-201,-499],[-48,-423],[-210,-689]],[[84720,87589],[-301,-758]],[[84418,86825],[-771,-1930],[-190,-720],[-233,-669],[73,-199]],[[83297,83307],[-149,-458],[-495,-1151],[-468,-577]],[[82182,81122],[-18,-19]],[[82164,81103],[-26,-303],[-340,-1544],[-538,-761],[-199,-384]],[[81418,91142],[186,-200],[-36,-385],[146,-405],[87,-670]],[[81763,88871],[-106,-422],[16,-421],[-126,-678],[165,-388],[-20,-378],[180,-96]],[[82284,83561],[-51,-908],[-121,-185]],[[82237,84731],[-3,-63]],[[82234,84668],[66,-22]],[[82300,84646],[-28,-249],[124,-782]],[[81446,80760],[-164,-153],[-10,-464],[-240,-951],[-102,-1061]],[[80106,89064],[-47,-116]],[[81998,85580],[353,24],[307,151]],[[79987,82356],[347,217]],[[78820,81822],[377,-37],[619,308]],[[75557,78797],[505,46],[271,-84]],[[75557,78797],[-333,-650]],[[75224,78147],[52,-266]],[[69338,79613],[-206,-527],[17,-1064],[91,-309]],[[80251,89883],[-123,-569]],[[80119,89172],[109,-60]],[[80692,86344],[-54,-406]],[[80429,82592],[-74,-559]],[[80355,82033],[64,-271],[-11,-703],[-239,-695],[197,-2070]],[[75673,78827],[-71,-300],[144,-698]],[[71668,78525],[-4,-116]],[[80128,89314],[0,-590],[282,-633],[-103,-695]],[[82172,93358],[-58,-477],[-160,-286],[-44,-435],[-329,-761],[-226,-364],[-388,-216],[-356,64],[-339,-768],[-21,-232]],[[82172,93358],[85,650],[237,249]],[[81096,83878],[526,-120],[175,440],[177,62],[260,408]],[[80355,82033],[-190,-428],[-261,-301],[-38,-212]],[[79866,81092],[-26,-320],[-159,-208],[-420,-167]],[[79051,79040],[-21,-199]],[[83874,86099],[218,-62]],[[78946,79098],[175,-62]],[[71605,78367],[59,42]],[[82656,82146],[113,-180]],[[81222,86841],[473,-188]],[[79789,87960],[320,-241]],[[83889,89338],[42,-11]],[[83931,89327],[18,175]],[[81222,86841],[-74,-407]],[[80638,85938],[-43,-501]],[[80555,85243],[-374,-53]],[[79832,84683],[-105,-87]],[[79860,84711],[-28,-28]],[[80106,87726],[105,-250],[260,39]],[[85396,95886],[194,-357],[-180,-1335],[174,-358]],[[80997,77934],[133,201]],[[81249,78147],[-8,-115]],[[85838,94382],[156,-48]],[[73939,75457],[17,-154]],[[75217,72507],[-21,-1]],[[76014,77257],[120,-257]],[[72843,62450],[446,-177]],[[79213,74831],[-152,-94]],[[76583,71318],[-284,-566],[6,-328]],[[76684,71385],[197,-510]],[[77409,74693],[-81,-548],[-61,-1009],[59,-147],[-369,-704],[-288,-675],[-13,-220]],[[74340,66038],[143,-28],[285,-519],[428,-454]],[[75299,63781],[-10,-537],[85,-240],[-48,-406],[-290,-187]],[[78105,77582],[-4,-599],[-80,-771],[-80,-274]],[[77941,75938],[-350,-29],[-144,-442],[-4,-740]],[[81107,74511],[-2,-567]],[[81105,73944],[-68,-475],[50,-609],[-158,-436],[66,-444]],[[80816,76476],[-185,-984],[-21,-352],[274,-247]],[[75431,74402],[133,-9]],[[78562,72583],[121,-308],[-2,-363],[-224,-499],[-63,-775]],[[78368,73403],[61,-504],[131,-304]],[[78168,74166],[177,-430],[23,-333]],[[77496,76775],[318,-500],[43,-295]],[[77941,75938],[281,-937]],[[78532,67310],[-20,-418],[83,-394],[-51,-528],[187,-442]],[[78434,68855],[-21,415],[127,632],[9,502],[-155,234]],[[76814,77717],[128,-545]],[[75965,69045],[-114,-421],[-418,-868],[-404,-188],[-243,-706],[-161,-120]],[[74469,65673],[521,-1034]],[[80981,74560],[81,260]],[[73844,70596],[179,-507],[7,-474],[-97,-367],[-107,-803],[-186,-742]],[[73640,67703],[-314,-473],[-238,-161]],[[73558,71040],[165,-550],[-16,-622],[-256,-495]],[[73956,75303],[97,-286],[69,-1027]],[[74371,76192],[-95,-262],[-316,-401]],[[74441,76207],[-43,-32]],[[77161,66157],[644,379],[74,189]],[[76262,66280],[237,-74],[196,134],[298,-234],[168,51]],[[75414,66467],[402,-164],[397,81]],[[75196,72506],[-53,4]],[[74276,72626],[92,-93],[319,224],[427,-194]],[[75266,72574],[239,331],[674,-154]],[[75143,72510],[123,64]],[[76393,64601],[131,-263],[96,-782],[295,-99],[169,-272],[189,-35]],[[73006,69793],[86,-494],[175,-195]],[[73735,68076],[-251,380],[-34,409],[-177,197]],[[76885,74612],[203,-475],[229,-200]],[[77275,73479],[317,-314],[232,-50]],[[78459,68662],[142,14]],[[76267,70963],[-208,-138]],[[76033,70778],[-239,-109],[-340,-533],[-81,-468],[-164,-295],[15,-201],[-212,-402]],[[74989,68634],[487,60],[217,313],[420,311]],[[73379,62601],[211,66],[159,-183],[154,64]],[[78203,66429],[161,139],[410,-47],[84,-137]],[[72420,66483],[373,103],[387,-194],[301,-9],[349,-347]],[[77772,70109],[164,-124],[360,72],[758,-454],[779,139]],[[77702,70160],[-490,48],[-288,-166],[-143,-244],[-524,-510]],[[81828,71140],[237,45]],[[72864,62732],[145,-377]],[[72529,64425],[208,-67],[17,236]],[[74963,66195],[-2,-286],[140,-748]],[[74633,67506],[228,-226]],[[81283,70684],[-193,-544],[-75,-16],[-426,-664]],[[73640,67703],[357,-132]],[[80857,76273],[253,214]],[[75619,70518],[254,-198],[102,-260]],[[73997,67571],[311,-264]],[[73092,66969],[128,-199],[42,-370]],[[74001,66939],[50,616]],[[74308,67307],[54,-707]],[[77644,68446],[432,-266],[122,-379],[296,-377]],[[75281,70586],[16,8]],[[74562,70570],[379,60]],[[75297,70594],[322,-76]],[[75281,70586],[-340,44]],[[74363,70695],[146,-139]],[[73987,71852],[-59,536],[188,1184],[6,418]],[[79281,74991],[-68,-160]],[[76305,70424],[-26,-275]],[[76662,71389],[-79,-71]],[[76662,71389],[22,-4]],[[81107,74511],[-6,160]],[[74990,64639],[41,27]],[[74754,77091],[-313,-884]],[[73040,67125],[48,-56]],[[75114,72563],[14,-9]],[[76358,64760],[35,-159]],[[76583,71318],[-316,-355]],[[76684,71385],[273,246],[309,-37]],[[75012,68770],[-23,-136]],[[74011,65364],[-419,-317],[-191,-508]],[[73295,64477],[-19,-90]],[[74989,68634],[-265,-421]],[[78858,66384],[303,-82]],[[81444,71184],[384,-44]],[[74089,63600],[63,-35]],[[77329,67356],[178,-191],[251,14],[123,-431]],[[77299,64170],[-87,-98]],[[77318,67365],[-178,267],[-129,560],[-123,21]],[[75992,70237],[287,-88]],[[75610,74348],[73,-102]],[[74398,76175],[9,-2]],[[76170,69236],[695,-1007]],[[74686,63424],[314,400],[237,-31]],[[74152,63565],[528,-140]],[[73527,63579],[218,-199],[252,10]],[[73087,63539],[442,63]],[[75385,74685],[46,-283]],[[75603,74367],[7,-19]],[[77299,64170],[412,-10]],[[76618,64512],[336,-79],[258,-361]],[[74407,76173],[390,-121],[178,-162],[294,-664],[116,-541]],[[74146,76734],[4,-198],[221,-344]],[[78542,68163],[-48,-739]],[[78967,73321],[102,-316],[-70,-1247],[6,-545],[-77,-1276],[-154,-170],[-156,-907],[-69,-758]],[[72620,65402],[-43,-92]],[[78944,73794],[-30,-332]],[[76135,62652],[242,-322]],[[76285,68627],[145,-744],[63,-803],[-263,-577]],[[76262,66280],[-22,-915]],[[75582,64191],[-190,-336]],[[74963,71116],[47,-465]],[[75357,73699],[-214,-599],[0,-590]],[[75063,72194],[-99,-244],[2,-368]],[[74733,69415],[-101,-781],[92,-421]],[[74966,63187],[-49,-547],[119,-229]],[[75036,62411],[-27,-510],[-151,-291]],[[74848,61635],[-250,-407]],[[75417,74218],[14,184]],[[75417,74218],[-11,-220]],[[78222,75001],[-58,-915]],[[78434,68855],[9,-576],[99,-116]],[[77266,71594],[-478,-833],[-468,-1048],[-37,-267]],[[78914,73462],[-248,-517],[-90,-342]],[[80345,72788],[-422,-426],[-62,-1215]],[[80136,73300],[208,231]],[[79662,69361],[-167,-371],[40,-361],[-196,-915]],[[79275,67588],[-148,-833],[76,-457]],[[80879,74380],[102,180]],[[73451,69373],[-180,-253],[-76,-826],[-147,-108]],[[72326,63678],[-91,-13],[107,-434],[-36,-549],[49,-389],[-66,-263]],[[72723,66166],[-161,-649]],[[72678,64573],[-78,-611],[-120,-95]],[[74398,76175],[-27,17]],[[77879,66725],[257,-228]],[[72562,65517],[58,-115]],[[72620,65402],[285,-17]],[[72283,65690],[330,-217]],[[73689,65765],[141,271]],[[76179,72751],[633,-96],[233,-208],[231,-43],[584,-367]],[[77860,72037],[12,-73]],[[77872,71964],[230,-372],[632,-399],[274,-5],[415,372],[204,-305],[279,-118],[702,-46],[149,-247]],[[80757,70844],[34,-62]],[[80108,76171],[-83,-547],[68,-2144],[45,-192]],[[80057,69859],[103,-1016]],[[80176,68693],[7,-342],[201,-371]],[[76134,77000],[113,-629],[126,-370]],[[76357,75649],[437,-819],[4,-217]],[[77772,70109],[133,-608],[529,-646]],[[77904,71899],[-244,-1344],[42,-395]],[[77824,73115],[36,-1078]],[[79093,72824],[891,360]],[[78283,64869],[-308,580],[-288,71]],[[73401,64539],[139,-863],[-94,-859],[-104,-343]],[[72201,65214],[402,-429]],[[73294,61476],[3,866]],[[78841,77501],[215,-346],[-224,-463],[-107,-635],[-401,-471],[-102,-585]],[[78164,74086],[-26,-263],[-314,-708]],[[77646,70038],[-472,-448],[-291,-1148]],[[76813,68123],[-213,-574],[-106,-101]],[[77708,70158],[-18,-36]],[[73342,62474],[-45,-132]],[[74858,61610],[-10,25]],[[73830,66036],[197,-102],[277,105]],[[77702,70160],[70,-51]],[[80288,70237],[246,151],[120,346],[137,48]],[[80058,70029],[230,208]],[[73403,73558],[336,230],[189,-76],[139,207],[174,-80],[616,-36]],[[75010,70651],[-3,1]],[[75683,74246],[86,-250],[49,-582],[184,-486],[194,-87]],[[75020,65137],[176,-100]],[[73851,63085],[-17,-266]],[[74149,63682],[-298,-597]],[[73834,62819],[69,-271]],[[74160,66523],[-169,-108],[-161,-379]],[[76358,64760],[260,-248]],[[73903,62548],[229,-771],[267,-134],[446,-13]],[[76240,65365],[33,-288]],[[76014,77257],[-5,-214]],[[79111,74913],[-50,-176]],[[79061,74737],[-14,-534],[-103,-409]],[[78494,67424],[210,-435],[155,-101],[302,-586]],[[78914,73462],[53,-141]],[[76279,70149],[-86,-228]],[[76150,69287],[135,-660]],[[76230,66503],[32,-223]],[[76223,64871],[-177,-132],[-197,-375],[-267,-173]],[[75299,63781],[93,74]],[[80884,74893],[188,95],[29,-317]],[[76135,62652],[-176,-168]],[[74785,64072],[181,-885]],[[75143,72510],[-80,-316]],[[74966,71582],[-3,-466]],[[75007,70652],[-92,-513],[80,-186],[-262,-538]],[[74692,67956],[-44,-412],[-228,-791]],[[74724,68213],[-15,-79]],[[78560,72595],[2,-7]],[[77266,71594],[155,264],[325,0],[466,347],[364,398]],[[79861,71147],[14,-770]],[[79662,69361],[171,381]],[[79833,69742],[163,225]],[[80344,73531],[292,375]],[[80636,73906],[243,474]],[[72577,65310],[46,-663]],[[72289,62030],[-69,-344]],[[75276,77881],[-238,-187],[-205,-508]],[[73039,67113],[-84,541],[93,532]],[[73039,67113],[-181,-376],[-135,-571]],[[72480,63867],[-154,-189]],[[78136,66497],[67,-68]],[[72905,65385],[218,223],[289,5],[277,152]],[[80160,68843],[16,-150]],[[75196,65037],[403,99],[188,-133],[378,109]],[[76409,75837],[-50,-194]],[[75746,77829],[268,-572]],[[76373,76001],[36,-164]],[[75406,73998],[-49,-299]],[[78576,72603],[517,221]],[[79984,73184],[91,37]],[[76193,69921],[-82,-328]],[[73401,64539],[-106,-62]],[[72721,64595],[286,11],[288,-129]],[[76883,68442],[-70,-319]],[[76286,64834],[-108,-287],[-242,-1308]],[[75936,63239],[-150,-426]],[[77690,70122],[-44,-84]],[[79339,67714],[-64,-126]],[[74858,65181],[162,-44]],[[81513,71096],[21,-128]],[[74709,68134],[-10,-50]],[[74699,68084],[-7,-128]],[[73621,71098],[188,-239],[35,-263]],[[72664,64587],[19,-15]],[[72623,64647],[41,-60]],[[72683,64572],[38,23]],[[26214,90347],[331,-67],[52,-183]],[[22019,28724],[180,344]],[[22188,29042],[-43,-118]],[[16562,26025],[72,190]],[[14875,23092],[331,425]],[[16633,26238],[117,193]],[[18466,29054],[437,259],[52,241],[404,64],[335,-82]],[[17737,27345],[114,107],[55,751],[-59,425],[452,373]],[[16634,26215],[-1,23]],[[19765,29434],[109,-116]],[[19694,29536],[71,-102]],[[16019,24130],[-63,-69]],[[15956,24061],[-64,-140]],[[17848,27434],[1036,273],[468,-393],[384,-785]],[[23617,32748],[63,-237],[60,-819],[197,-108]],[[22903,32566],[-124,-474],[-58,-728],[-182,-520],[-59,-375]],[[16019,24130],[-15,108]],[[15837,24104],[119,-43]],[[65652,35302],[-130,-763],[-116,-119]],[[66072,36333],[265,-2]],[[65032,34639],[384,269]],[[64281,33559],[-8,367],[505,530]],[[66501,44540],[301,-54]],[[65021,35321],[372,213]],[[63746,34479],[628,86],[191,500],[269,228]],[[65661,35522],[101,761]],[[65384,34313],[-87,-885]],[[64738,53622],[-43,-426]],[[64738,53622],[181,486],[180,153]],[[64194,53522],[-152,-315]],[[63515,37456],[11,185],[1149,-208],[66,-96],[463,-106]],[[65401,37269],[252,567],[137,-24]],[[62819,36259],[292,265],[7,214],[389,550],[8,168]],[[61566,35383],[231,70],[579,-129],[248,346],[9,324],[183,254]],[[62768,44558],[-18,-365],[132,-154]],[[61527,47589],[301,106]],[[61836,47700],[166,153]],[[59586,44003],[447,-35]],[[62226,47784],[-120,1]],[[65357,33845],[197,32]],[[63592,45115],[-271,-465],[-369,-385]],[[62152,47967],[-144,-237]],[[65090,35714],[3,-623]],[[65395,34410],[247,-33]],[[65378,34803],[416,-51]],[[65580,36057],[-68,-818]],[[65487,34730],[-81,-310]],[[65768,36393],[304,-60]],[[64778,34456],[254,183]],[[66360,42528],[140,-19]],[[63805,41232],[15,202]],[[63540,34538],[206,-59]],[[63255,34518],[134,-4]],[[65406,34420],[-22,-107]],[[65470,42619],[38,-694]],[[65099,54261],[51,-6]],[[65792,36844],[529,-74],[5,87]],[[66421,41831],[-71,-422],[-99,-1410]],[[65679,50984],[333,-539],[213,-583]],[[66225,49862],[349,-631],[153,-611],[-110,-2397],[19,-149],[-135,-1534]],[[64089,43781],[-192,-205],[-380,-207],[-171,-558]],[[61373,43572],[1221,532]],[[65316,51982],[456,-76],[308,159]],[[62562,49430],[31,201]],[[63723,53301],[168,-94],[313,40]],[[63523,53912],[129,-8]],[[63545,52113],[254,-57]],[[62953,49809],[474,-39],[463,53]],[[63985,49859],[429,-14]],[[62593,49631],[220,140]],[[62819,36259],[231,-555],[12,-460],[363,-513]],[[63148,39081],[-77,-510]],[[62956,39923],[82,-504]],[[63994,45694],[-402,-579]],[[64167,54838],[-153,-280],[-353,-369],[88,-628],[-194,-708],[-10,-740]],[[63545,52113],[-432,-245],[-383,-386],[-135,-528],[-456,-934]],[[62451,36520],[-1,-6]],[[65957,36198],[-29,-422]],[[65928,35765],[-25,-346]],[[59796,44545],[-210,-542]],[[62465,36664],[-14,-144]],[[62594,44104],[237,109]],[[62955,44206],[-88,4]],[[64791,33494],[215,287]],[[62011,42381],[579,-94]],[[61782,42362],[229,19]],[[59597,42215],[438,-134]],[[60104,42082],[453,-4],[321,-237]],[[60977,41849],[208,-13],[162,364],[432,34]],[[62590,42287],[3401,-449],[430,-7]],[[66421,41831],[79,678]],[[63154,40589],[173,-2]],[[66534,43123],[-33,1417]],[[62631,49032],[53,-81]],[[63327,40587],[755,-168]],[[62721,40898],[156,-279]],[[64362,40379],[1339,-212],[11,-59],[777,-148]],[[62002,47853],[-32,-329],[-396,-907],[-57,-874],[94,-306]],[[61566,36418],[179,-105],[225,175],[265,43]],[[62413,36582],[93,48],[2193,-283]],[[62298,36600],[115,-18]],[[64702,36404],[286,104]],[[64998,36495],[165,415],[214,275],[650,-6]],[[66027,37179],[376,-6]],[[65125,36339],[271,-234]],[[61417,39754],[292,-535],[17,-205],[371,-31],[25,-317],[253,-247],[42,-237]],[[62933,38086],[300,-528],[12,-153],[838,-289],[457,-336],[202,-14],[256,-271]],[[64998,36495],[91,-123]],[[64089,43898],[94,1]],[[64276,43981],[176,90],[1968,-255],[340,-66]],[[64026,47305],[22,56]],[[66077,35348],[-185,-143],[-34,-264]],[[64695,53196],[406,-948],[212,-266]],[[65429,49469],[-89,-537],[-31,-603]],[[65309,48329],[-130,-7]],[[65179,48322],[-29,-586],[-98,-571],[-21,-540]],[[65478,51687],[168,-628],[-130,-1606]],[[65917,39608],[-50,-839]],[[65877,38709],[-113,-1337],[53,-164]],[[65867,38769],[10,-60]],[[62684,48951],[338,-135],[1032,-108]],[[64054,48708],[215,-48]],[[64374,48624],[456,-66],[349,-236]],[[65309,48329],[362,-93],[363,-229],[753,-73]],[[64042,53207],[-138,-2510],[-14,-874]],[[63890,49823],[100,-227]],[[64136,43968],[-15,-219]],[[64040,49141],[14,-433]],[[64053,48691],[27,-528],[-31,-796]],[[64026,47305],[-64,-1217],[82,-394],[-21,-581]],[[64049,47367],[-1,-6]],[[64046,47362],[3,5]],[[63948,41530],[-20,-306]],[[65917,39608],[450,-80],[122,432]],[[62816,36248],[3,11]],[[60319,45796],[221,-304],[79,-298],[132,-17],[63,-291]],[[62417,38182],[516,-96]],[[61531,44483],[-231,-106],[-35,-347],[108,-458]],[[61373,43572],[-309,-531],[-87,-1192]],[[60977,41849],[-109,-130]],[[60857,40032],[87,-560],[-22,-1197]],[[60931,37995],[-34,-264]],[[63805,52055],[186,131],[161,-94],[499,6],[668,-117]],[[62019,47851],[133,116]],[[62194,49035],[368,395]],[[62450,36514],[366,-266]],[[62861,40504],[95,-581]],[[62135,48324],[17,-357]],[[62147,49920],[-153,-452]],[[66011,36890],[-54,-692]],[[62880,44057],[61,-252]],[[61685,44807],[3,471],[-77,159]],[[62016,47852],[-14,1]],[[65006,33781],[200,806],[465,566]],[[60035,42081],[69,1]],[[66500,42509],[34,614]],[[62924,40649],[230,-60]],[[64082,40419],[280,-40]],[[62877,40619],[47,30]],[[66489,39960],[70,19]],[[62235,36531],[63,69]],[[65089,36372],[36,-33]],[[63950,43955],[139,-57]],[[64183,43899],[93,82]],[[66154,35762],[-16,-137]],[[65817,37208],[-49,-815]],[[65313,51982],[165,-295]],[[65516,49453],[-87,16]],[[64699,36347],[3,57]],[[64269,48660],[105,-36]],[[63990,49596],[50,-455]],[[64023,45113],[64,-836]],[[64097,44142],[39,-174]],[[64121,43749],[-60,-1101],[-113,-1118]],[[61671,44534],[-140,-51]],[[60868,41719],[-17,-1395]],[[60922,38275],[9,-280]],[[62009,47881],[7,-29]],[[62285,48344],[-99,-649]],[[63071,38571],[-4,-104]],[[65386,34743],[-2,379]],[[62669,40566],[175,-322]],[[60836,37986],[65,-238]],[[64834,35293],[187,28]],[[66787,47934],[236,31]],[[64087,44277],[-125,-364]],[[61685,44807],[-14,-273]],[[65384,35122],[23,381]],[[65407,35503],[259,309],[456,-86]],[[65680,35368],[-56,19]],[[65391,35593],[16,-90]],[[62669,40566],[122,429],[169,-29]],[[61018,37708],[41,171]],[[67758,41140],[-36,-100]],[[66802,44486],[170,157],[21,365]],[[67236,39899],[-88,-1633],[-86,7],[-33,-509],[-287,-319],[-223,-9]],[[67446,39920],[62,726]],[[67508,40646],[23,341]],[[70036,45677],[-105,-176]],[[70037,45700],[94,1423],[131,265],[43,466]],[[69506,43186],[586,-772],[844,-149],[144,-196],[616,-119]],[[69128,42892],[-389,-1269],[-217,-24],[-274,-687],[-97,-452]],[[68140,40468],[-98,-32],[-87,-570]],[[69532,43498],[1123,368],[41,69]],[[70696,43935],[453,469],[353,18],[319,520]],[[69975,40259],[230,-11]],[[70757,37899],[-101,-537]],[[70656,37362],[-212,-675]],[[70276,41540],[287,-50]],[[66480,51071],[658,-266]],[[67138,50805],[172,-25]],[[68046,36233],[105,-134]],[[69931,45501],[-90,-55],[-177,-719],[-97,-112],[-233,-880]],[[71657,42812],[93,-29]],[[70621,43112],[936,-258]],[[69674,43375],[923,-253]],[[66877,45124],[1063,-607],[1019,-808]],[[66849,40364],[372,535],[501,141]],[[67722,41040],[876,1359]],[[69457,38460],[20,-763],[-41,-764]],[[69636,39365],[-128,-230],[-51,-675]],[[69885,39912],[-238,-549]],[[69973,40201],[-88,-289]],[[70621,43112],[25,-204]],[[70634,44479],[23,-549],[-60,-808]],[[70655,44826],[-21,-347]],[[67775,41143],[44,-270],[-71,-987]],[[68748,45836],[72,76]],[[70152,45452],[360,-396]],[[68820,45912],[398,-47],[58,-179],[597,-87]],[[68311,45512],[322,231]],[[67089,47938],[400,-391],[59,-289],[337,-868]],[[68325,45241],[128,-8],[383,-388]],[[69873,45599],[164,101]],[[70078,41516],[-105,-1315]],[[70140,42061],[-51,-225]],[[70036,45677],[116,-225]],[[69301,36051],[631,-4],[1317,-204]],[[70186,38907],[309,220],[745,-159]],[[71241,38980],[240,-92]],[[68105,50938],[-17,-903],[69,-238],[16,-955],[45,-416],[-185,-1854],[-148,-182]],[[67885,46390],[426,-878]],[[68311,45512],[12,-300],[-390,-1634],[-69,-954]],[[67853,42486],[-59,-972]],[[66559,39979],[878,-110],[526,-5],[302,-123],[345,-19]],[[71069,38017],[317,-363]],[[71826,43811],[-234,-220],[9,-968],[-250,-1171],[-91,-1165],[14,-296]],[[71274,39991],[-38,-1086]],[[70833,38265],[-34,-280]],[[66403,37173],[79,6]],[[70037,45700],[-1,-23]],[[70687,37917],[-257,-386],[-368,-350],[-163,-392]],[[69700,36824],[-285,-489]],[[71507,39228],[-242,-259]],[[69210,40716],[1018,-185]],[[68610,39722],[-221,-409],[-225,-706],[-24,-434]],[[68140,38173],[-95,-1001]],[[67819,36513],[-167,-295]],[[70624,41379],[-11,-121],[-347,62]],[[70840,42002],[-168,-298]],[[69063,40407],[-290,-613]],[[69158,40473],[-95,-66]],[[71534,42694],[-67,-198],[-413,-252]],[[71054,42244],[-214,-242]],[[68045,37172],[-46,-168]],[[66760,43750],[553,55],[1542,-237]],[[67523,36851],[-23,-475]],[[70987,46986],[-8,-432],[175,-664]],[[70655,44826],[8,104]],[[70663,44930],[272,321],[187,627]],[[67748,39886],[-129,-1632]],[[67619,38254],[-86,-1335]],[[67775,41143],[-5,18]],[[71033,47235],[-16,-20]],[[66897,36757],[5,128],[621,-34]],[[67523,36851],[10,68]],[[67533,36919],[349,-54],[50,150],[442,41],[2123,-379],[110,15]],[[70607,36692],[700,-105]],[[68046,36233],[442,-65]],[[70646,42908],[41,-95],[-38,-1046]],[[70512,45056],[151,-126]],[[68633,45743],[74,70]],[[67046,44907],[-72,-668],[55,-153],[-58,-634],[-93,-261],[-46,-864],[144,-768]],[[70291,41953],[381,-249]],[[68836,44845],[111,-678],[176,-409]],[[70089,41836],[-11,-320]],[[70151,42211],[-11,-150]],[[67641,36214],[405,19]],[[67864,42624],[-11,-138]],[[67794,41514],[-24,-353]],[[68105,50938],[7,11]],[[68773,39794],[252,-175]],[[69105,39658],[-8,-74]],[[69097,39584],[186,-166],[297,-26],[768,-549],[108,-411],[157,-139]],[[69025,39619],[72,-35]],[[71236,38905],[-403,-640]],[[69415,36335],[-204,-211]],[[70672,41704],[-48,-325]],[[67888,36870],[-69,-357]],[[68610,39722],[163,72]],[[68855,43568],[135,-28]],[[68990,43540],[109,-23]],[[70597,43122],[24,-10]],[[71012,47022],[-25,-36]],[[71017,47215],[-5,-193]],[[67023,47965],[50,45]],[[58803,36180],[245,-320]],[[55998,34469],[-10,-365]],[[55988,34104],[105,-86]],[[61465,36515],[101,-97]],[[61566,35383],[-54,133]],[[61512,35516],[-257,-266],[-213,-561],[-247,-315]],[[60795,34374],[-191,-285]],[[51931,34450],[-6,-1913],[-140,-22],[-2,-823]],[[51746,31693],[0,-1216]],[[52196,36142],[-73,-168],[-2,-505]],[[52121,35469],[1,-470],[-142,-190],[-1,-359]],[[52224,40555],[-25,-1505]],[[52229,41798],[-5,-1243]],[[52298,36814],[-43,-545]],[[52318,38207],[-20,-1393]],[[52234,38940],[85,-292],[-1,-441]],[[58542,36959],[420,191],[192,213]],[[57324,37100],[554,-16],[291,-204],[305,61]],[[56382,37394],[375,-100],[222,-174],[275,-16]],[[56093,34018],[-37,-2149]],[[56053,31724],[-50,-1145]],[[55952,36718],[-34,-1926],[80,-323]],[[55956,36926],[-4,-208]],[[55998,30580],[-49,-213]],[[60910,37712],[404,-334],[-49,-507]],[[61265,36871],[200,-356]],[[61558,36413],[-46,-897]],[[56293,38805],[-219,-118],[-91,-281],[-392,-314]],[[58759,36235],[44,-55]],[[59048,35860],[43,-3]],[[52258,36240],[-62,-98]],[[55352,37655],[188,-8]],[[59154,37363],[108,67]],[[55439,37361],[-4,-227]],[[50450,34608],[73,-487]],[[51508,31126],[149,-649]],[[60616,33914],[-104,-223],[-642,-96],[-16,-492],[-98,-335],[-172,-73],[-179,-624]],[[59502,42228],[78,-35]],[[59580,42193],[17,22]],[[57205,39007],[-38,-823],[130,-7],[85,-395],[-58,-682]],[[58542,36959],[-6,-435],[223,-289]],[[58474,36941],[6,313]],[[54068,41805],[194,-180],[103,-375],[-14,-912],[45,-344]],[[54608,40016],[106,-1241],[-59,-2651]],[[54288,34273],[-43,-2735],[8,-660],[226,-13],[-6,-440]],[[54513,36105],[-11,-905],[-139,4],[-8,-672]],[[57630,32346],[917,-55],[242,-139],[86,-319],[361,83],[161,161],[235,-175]],[[50191,31221],[171,19],[1,400],[445,54]],[[50808,31694],[1810,-4]],[[52627,31829],[3,86],[773,-14],[318,161],[807,-23],[832,-123],[382,-161]],[[56985,32007],[604,-47]],[[59632,31902],[3,0]],[[58242,36201],[-51,-844],[-281,0],[3,-499],[-227,-531]],[[59580,42193],[-78,-145]],[[53202,36022],[348,-1],[74,109],[1031,-6]],[[56671,36125],[578,45]],[[57249,36170],[42,84],[951,-53]],[[55942,36161],[517,-31]],[[59271,36308],[727,53],[432,190],[446,-22]],[[51676,40059],[802,11]],[[51472,40170],[-111,1]],[[52546,40069],[265,170],[1125,-17],[139,-277],[403,75],[652,-22]],[[55181,39985],[536,-16]],[[55717,39969],[374,94],[749,-106],[736,-41]],[[58384,39911],[114,-2]],[[58903,31796],[-496,-342],[95,-395],[-142,-836]],[[57254,37104],[70,-4]],[[58474,36941],[68,18]],[[59971,40440],[-56,-147],[-84,-1168]],[[59831,39125],[-30,-597]],[[57249,36170],[-17,-725],[195,-12],[10,-853],[82,-255]],[[57617,33321],[16,-836]],[[57633,33993],[-6,-255]],[[57632,31882],[-17,-1431],[-127,-166]],[[57254,37104],[4,-877]],[[55648,41716],[43,-182],[-17,-1022],[51,-531]],[[55717,39969],[-71,-990],[-114,-1],[2,-384]],[[56056,31869],[-3,-139]],[[60891,37714],[6,17]],[[50809,33119],[-1,-1425]],[[50808,31636],[-35,-1158]],[[55956,36926],[503,-796]],[[50830,33114],[226,-510]],[[51161,32378],[140,-214],[61,-366]],[[51448,31694],[60,-568]],[[57576,39916],[133,3]],[[55782,31748],[271,-18]],[[60083,34704],[155,-66],[331,-389]],[[59117,36285],[-26,-428]],[[59091,35857],[451,-168],[157,-541]],[[59772,34938],[191,-149]],[[54355,34532],[-67,-259]],[[55742,31755],[40,-7]],[[56606,31784],[250,-19],[64,141]],[[57630,32346],[-6,-133]],[[50384,34398],[1,-17]],[[54655,36124],[536,4]],[[55474,36175],[468,-14]],[[58908,36294],[363,14]],[[58242,36201],[421,-34]],[[60932,36594],[533,-79]],[[53127,35995],[75,27]],[[52478,40070],[68,-1]],[[51448,40002],[228,57]],[[57718,39942],[63,37]],[[58498,39909],[574,105]],[[59631,40461],[-78,-238],[-284,-194]],[[57980,39978],[404,-67]],[[59801,38528],[193,-411],[326,-341],[535,-18]],[[57637,34138],[-4,-145]],[[57627,33738],[-10,-417]],[[57633,32485],[-3,-139]],[[55534,38594],[-32,-475]],[[55632,37510],[324,-584]],[[55502,38119],[-54,-346]],[[50523,34121],[225,-753]],[[56419,38880],[-126,-75]],[[51161,32378],[-105,226]],[[59965,34789],[118,-85]],[[59699,35148],[73,-210]],[[50748,33374],[61,-255]],[[57781,39979],[199,-1]],[[55798,31910],[258,-41]],[[56056,31869],[550,-85]],[[57624,32213],[8,-331]],[[50453,34561],[6,0]],[[60876,36529],[56,65]],[[58663,36167],[245,127]],[[56459,36130],[212,-5]],[[55191,36128],[283,47]],[[60056,40543],[-425,-82]],[[59269,40029],[-197,-15]],[[50459,34561],[64,-440]],[[50443,34555],[10,6]],[[41836,53170],[584,52]],[[39740,49447],[692,127],[347,-73],[2000,160],[336,77]],[[49150,55428],[342,-7],[144,-120],[984,-3],[86,117],[556,64]],[[51699,54343],[641,54],[1256,-3]],[[48451,54640],[458,9],[91,113],[644,16],[2,-274],[401,-141],[995,-111],[246,232],[20,344],[264,34]],[[53594,53888],[166,-10]],[[51675,54867],[240,-7]],[[46168,54558],[138,87],[907,93],[5,-169],[1216,94]],[[41802,54304],[575,57]],[[42862,54327],[600,47]],[[43490,54720],[1254,88],[11,-337],[1393,86]],[[39590,53333],[549,-372],[782,79],[106,68],[809,62]],[[51920,55564],[927,-28]],[[52876,55582],[673,41]],[[44967,44842],[14,-901],[-70,-56]],[[44840,51629],[46,-1320],[-8,-931],[46,-1832],[64,-1271],[41,-96],[-32,-1335]],[[44749,54476],[55,-1988],[-116,-12],[-37,-497]],[[52135,47609],[297,84],[197,247],[185,-421]],[[50550,47135],[343,-22],[497,477],[198,11]],[[49713,46784],[278,201]],[[46120,45855],[639,-8],[450,168],[191,256],[317,214],[754,21],[323,-51]],[[48794,46455],[781,77],[-1,233]],[[41443,46111],[135,-105],[597,114],[601,46],[488,146],[735,-2],[715,-190],[1003,-139],[396,100]],[[39788,55206],[480,-431],[605,-230],[276,-489],[400,-402],[1300,-656],[346,-238],[287,-91]],[[48062,50364],[1235,56]],[[52877,55728],[-1,-146]],[[52876,55582],[-115,-609],[-238,3]],[[52523,54976],[-9,-1355],[31,-536],[174,-55],[-26,-1512],[-139,-10],[-16,-442]],[[52365,47688],[40,-466],[-16,-966],[303,-469]],[[52692,45787],[75,-24]],[[53170,46978],[-30,-320],[-246,-164],[-165,-504],[10,-221]],[[51866,44063],[128,185],[3,1105],[316,78],[93,313],[286,43]],[[51915,54918],[608,58]],[[50113,47708],[-15,-431]],[[47444,51737],[-5,169],[280,270],[300,113],[286,322]],[[52814,47519],[767,-43]],[[51747,47600],[388,9]],[[49991,46985],[91,263],[468,-113]],[[51588,47601],[39,-1]],[[53185,47484],[-15,-506]],[[51707,48304],[-4,-314]],[[46035,50309],[106,-263],[799,-1062],[227,-550]],[[43462,54374],[28,346]],[[53549,55623],[227,64]],[[51849,55739],[11,-134]],[[52540,50839],[259,-510],[289,-301]],[[49574,46765],[139,19]],[[43462,54374],[-17,-409],[37,-1296]],[[43986,45517],[-74,-226],[35,-1464]],[[43761,50591],[26,-1349],[61,-1580]],[[43695,52468],[59,-1836]],[[43754,50632],[7,-41]],[[43884,47641],[65,-881],[37,-1243]],[[43476,55476],[14,-756]],[[41879,44406],[405,-25],[2231,156],[444,305],[146,14]],[[39929,44465],[1018,64]],[[41414,44472],[465,-66]],[[40947,44529],[467,-57]],[[45105,44856],[851,-74],[1408,57],[512,-94],[1476,33],[142,-114]],[[49889,44675],[1730,6]],[[39801,47938],[358,-134],[519,15],[362,-328],[432,-282],[674,-78]],[[53559,55471],[73,150]],[[48753,51347],[124,-201],[212,4],[564,-399],[293,-462],[722,-47]],[[44651,51979],[680,-109],[1194,55],[75,-108],[624,23]],[[47444,51737],[77,-62],[1082,59]],[[48615,51577],[138,-230]],[[49297,50420],[75,-1186]],[[53593,53707],[-9,-995]],[[53607,55365],[-12,-1367]],[[53607,55365],[-66,351]],[[51673,54128],[112,-64],[0,-1001],[-169,-453],[16,-2438]],[[51260,55741],[-3,-384],[306,-332],[9,-163]],[[51572,54862],[103,5]],[[51675,54867],[24,-524]],[[51511,44681],[-20,-616]],[[51693,49863],[23,-1065]],[[51703,47990],[44,-390]],[[49369,49234],[12,-477],[141,-201],[-13,-611]],[[49505,52547],[-12,-931],[-184,-794],[-12,-402]],[[49713,46784],[11,-1041]],[[49724,45743],[5,-483],[191,32],[8,-617]],[[49509,47945],[-7,-384],[-122,-473]],[[49380,47088],[2,-320],[192,-3]],[[49889,44675],[25,-622]],[[51673,54128],[26,215]],[[53339,48615],[-1,-116]],[[53324,48953],[15,-338]],[[51630,47600],[117,0]],[[49494,44664],[395,11]],[[47224,51840],[220,-103]],[[53595,53998],[-2,-291]],[[53584,52712],[-2,-186]],[[53582,52526],[3,-93]],[[52661,48179],[329,-87]],[[52990,48092],[429,56]],[[51716,48798],[-9,-494]],[[51707,48304],[-37,-343]],[[53088,50028],[224,-481],[12,-594]],[[53475,47519],[-6,-41]],[[53594,50309],[-19,-971],[22,-1019],[-70,-295]],[[53558,51677],[58,-891],[-22,-477]],[[53584,52381],[-26,-704]],[[51632,50154],[61,-291]],[[47973,50496],[88,-15]],[[73374,50704],[-153,-533]],[[69313,55733],[-47,-577],[77,-515],[132,-378]],[[67371,53173],[-11,54]],[[67360,53227],[-447,-142],[111,-1043],[0,-573]],[[67360,53227],[-15,288],[136,279],[-67,488],[69,814],[358,387]],[[68165,55873],[-324,-390]],[[71168,47738],[560,-769],[338,-134],[146,-303],[104,-529]],[[70688,48736],[138,-299],[363,-275]],[[71189,48162],[-21,-412]],[[75468,53672],[-166,-252],[-69,-813],[-127,109],[-243,-78],[-217,314],[-185,-490],[-255,-294],[-27,-194],[-337,-401],[-283,-84],[-185,-785]],[[75865,54004],[-372,-108],[-40,-197]],[[72840,48903],[459,-101]],[[72732,48941],[108,-38]],[[73922,49381],[324,298],[188,-80],[331,101],[189,201],[207,-97],[67,-220],[319,584],[206,49]],[[73304,48818],[269,275],[304,121],[45,167]],[[72732,48941],[-151,340],[-93,-70],[-86,368]],[[72743,48787],[363,-528]],[[73312,47626],[502,-112],[159,-378]],[[73134,48172],[178,-546]],[[66359,54048],[-106,-587]],[[66334,54349],[25,-301]],[[70474,54116],[226,-115],[347,87],[-38,-374],[146,-441],[44,-394],[255,-274],[100,-369],[-75,-402],[77,-131]],[[71556,51703],[519,-247],[43,-190]],[[72124,51265],[164,-452]],[[72287,50796],[387,-636],[27,-316]],[[72605,45795],[393,316],[52,231]],[[73998,47054],[-71,-32]],[[72300,50858],[-17,-114]],[[69963,55143],[-159,-85],[-338,-718]],[[70652,49076],[36,-340]],[[72857,49568],[-81,-90]],[[72876,49594],[215,269]],[[70505,49177],[418,-8]],[[72420,49634],[28,0]],[[70269,51535],[107,-106]],[[72732,48941],[11,-154]],[[72701,49844],[143,-256]],[[75510,52014],[-479,-1225],[-291,-356]],[[66079,52059],[362,-31]],[[68606,55071],[-22,-32]],[[68647,55024],[40,-12]],[[75468,53672],[608,-554],[312,-415],[-25,-188]],[[76363,52515],[269,-237]],[[74784,54285],[669,-586]],[[72097,53883],[-26,-470],[156,-468],[3,-358],[133,-218],[93,-873]],[[72153,55290],[-241,-723],[185,-684]],[[72145,49047],[-101,-795],[48,-648],[-63,-199]],[[72029,47405],[2,-393]],[[75844,52211],[125,-92],[394,396]],[[75844,52211],[-204,15]],[[70377,49293],[7,-142]],[[71113,50833],[294,141],[289,329],[422,-37]],[[72124,51265],[278,-40]],[[72719,51628],[0,-41]],[[72719,51587],[648,614]],[[73430,52229],[-63,-28]],[[72719,51587],[116,-280],[-180,-300],[68,-311]],[[73402,55160],[-202,-1151],[-278,-392],[-49,-717],[-118,-570],[-36,-702]],[[72830,49778],[14,-190]],[[73224,48817],[-118,-558]],[[73106,48259],[12,-647],[-229,-688],[29,-246],[-129,-614]],[[69926,55599],[43,-492],[265,-383],[240,-684],[57,-525],[147,-604],[-31,-1077],[127,-69],[270,-656],[46,-277]],[[71099,50830],[-24,-458],[-170,-433]],[[71168,47750],[0,-12]],[[72096,49115],[-203,-525],[-314,-24],[-158,-610],[-253,-206]],[[71168,47738],[-138,-502]],[[68753,55767],[-113,-707],[-400,-1482],[-172,-279],[-74,-480],[67,-407],[-85,-619],[19,-312]],[[65186,54752],[76,-149]],[[65262,54603],[-20,-44]],[[75753,50217],[68,-209],[254,-238]],[[65262,54603],[121,61]],[[64396,55109],[65,-346],[283,-161],[153,69]],[[65446,54709],[240,-270],[-35,-334],[85,-256],[248,-102],[269,-286]],[[66253,53461],[223,-550],[-82,-316],[79,-501],[382,-274],[301,-580],[381,-31],[413,284],[153,-110]],[[68641,50886],[464,249],[242,219],[195,-523],[343,-80]],[[69888,50756],[206,-169]],[[70154,50244],[99,-380]],[[72179,49082],[54,112]],[[65239,54548],[3,11]],[[68186,51143],[143,-232]],[[71090,50832],[23,1]],[[74054,46984],[5,-18]],[[65949,56734],[2,-432]],[[65551,54906],[164,8],[549,723],[596,-314],[86,-163]],[[69417,54354],[58,-91]],[[72844,49588],[13,-20]],[[73224,48817],[75,-15]],[[73299,48802],[284,-485],[110,-438],[232,-253],[129,-642]],[[72118,51266],[6,-1]],[[68078,55886],[558,-855]],[[65951,56302],[169,-139],[141,-526]],[[76744,50925],[290,-554],[152,59],[-29,-293]],[[77157,50137],[-8,-16]],[[72456,51496],[8,-165]],[[72464,51331],[-87,-324]],[[72377,51007],[-87,-171],[-65,-597],[-163,-550],[83,-642]],[[70861,49795],[-257,-459]],[[72464,51331],[255,256]],[[70371,49335],[6,-42]],[[68131,51279],[-19,-330]],[[74863,54861],[-85,-610],[-274,-407],[-110,75],[-146,-299],[-332,-56]],[[72723,50696],[107,-918]],[[73237,48919],[-13,-102]],[[72789,46064],[-141,-330]],[[70905,49939],[-44,-144]],[[70390,51462],[-296,-875]],[[69475,54263],[92,-50]],[[72145,49047],[34,35]],[[75453,53699],[15,-27]],[[64897,54671],[342,-123]],[[70094,50587],[60,-343]],[[70253,49864],[118,-529]],[[72233,49194],[169,385]],[[65383,54664],[63,45]],[[68103,51383],[28,-104]],[[68329,50911],[155,-129],[157,104]],[[68161,51205],[25,-62]],[[65446,54709],[53,92]],[[72402,49579],[6,10]],[[65951,56302],[-3,-560],[-165,-346]],[[65499,54801],[52,105]],[[66946,55160],[426,-77],[178,179],[58,-149],[706,107],[270,-181]],[[72857,49568],[380,-649]],[[68584,55039],[103,-27]],[[68687,55012],[116,11],[386,-305],[174,-262]],[[69363,54456],[54,-102]],[[58806,79949],[-106,-503],[-122,-160],[65,-547]],[[59053,80095],[266,260]],[[56537,72734],[-251,-1166],[-17,-295]],[[59856,80475],[-550,-969],[-332,-690],[-322,-223]],[[64068,81966],[127,-117],[178,-551],[118,-41]],[[58130,81803],[208,184],[374,-126]],[[64017,82740],[240,79]],[[63590,82379],[357,183],[70,178]],[[59203,82691],[397,112],[308,-235]],[[63618,82618],[159,193],[-82,320],[142,453],[379,297],[450,686],[408,111],[126,263]],[[59229,82724],[24,-539],[227,-436]],[[58806,79949],[247,146]],[[57028,81848],[-1,-46]],[[61190,80750],[464,-159]],[[63480,80626],[-13,-184]],[[62704,82099],[88,-106]],[[62696,80504],[-13,-91]],[[56269,71273],[-21,-168]],[[55718,73063],[819,-329]],[[56573,72698],[61,-38]],[[63694,82224],[374,-258]],[[57005,81837],[54,3]],[[58712,81861],[30,-31]],[[58111,81804],[19,-1]],[[56617,81855],[38,-2]],[[62026,83205],[537,294]],[[62026,83205],[-260,-116],[-256,-602],[50,-397],[-141,-168]],[[55846,81632],[202,-83],[371,-448],[479,-310]],[[60296,75912],[-133,-425],[-124,-60]],[[59738,73483],[-369,-96],[-269,-359]],[[58643,78739],[9,-146]],[[57986,75176],[-27,-537],[-120,-596]],[[57814,73905],[-3,-278],[156,-687]],[[57902,71807],[38,868]],[[57749,71044],[143,294],[10,469]],[[58412,77231],[-227,-1012],[-52,-773],[-83,-181]],[[56980,81480],[-74,-279],[-49,-1627]],[[56789,78374],[-311,-761],[-163,-896],[-340,-229],[-150,-370],[56,-356],[-74,-802]],[[57697,80856],[733,-35],[643,-178]],[[56898,80791],[496,-58],[314,87]],[[56100,79907],[212,-367],[447,-48]],[[59082,80642],[378,-146],[533,-31]],[[59993,80465],[649,-36]],[[59438,71758],[69,-794]],[[56573,74940],[314,189],[404,733],[122,86],[197,482],[340,318],[278,401],[184,82]],[[56573,74911],[-179,-768],[-429,-678]],[[57057,72078],[39,-205]],[[56718,72598],[120,-237]],[[56915,71290],[-34,-213]],[[55237,73370],[64,-2]],[[58050,75265],[56,-78]],[[58106,75187],[396,365],[151,31],[264,470],[196,75],[257,406]],[[55210,75196],[493,-64],[83,-165]],[[57226,75703],[151,4],[349,-343],[265,-113]],[[56598,74974],[-109,45],[-186,-299],[-460,204]],[[58103,75187],[3,0]],[[61419,81922],[-184,-164],[-200,-671],[82,-550]],[[59738,73483],[25,-401]],[[60039,75427],[-9,-718],[-114,-235],[-178,-991]],[[58424,77751],[-4,-168]],[[58507,77873],[-42,-73]],[[57839,74043],[-25,-138]],[[57966,72911],[-26,-236]],[[57991,75251],[-5,-75]],[[57027,81802],[-47,-322]],[[56857,79574],[-98,-82]],[[56759,79492],[30,-1118]],[[55813,74925],[-202,-154],[-71,-276],[9,-672],[95,-612]],[[60642,80429],[362,186],[113,-78]],[[59413,71865],[25,-107]],[[58652,78593],[-145,-720]],[[55965,73465],[-189,-381]],[[58465,77800],[-32,-44]],[[56642,72648],[76,-50]],[[56838,72361],[219,-283]],[[57096,71873],[-181,-583]],[[57967,72940],[-1,-29]],[[56634,72660],[8,-12]],[[58050,75265],[-59,-14]],[[55786,74967],[27,-42]],[[55813,74925],[30,-1]],[[58531,77432],[-119,-201]],[[56774,81882],[269,109],[24,-191]],[[55517,73308],[134,-393],[294,58]],[[97619,7887],[-180,-909]],[[97061,5553],[273,228],[17,375],[145,452],[-13,270]],[[97600,11406],[-220,-557],[-108,-489],[138,-871],[587,-294]],[[95700,15974],[-192,-190],[-69,-641]],[[96286,16982],[36,-395],[148,-253],[103,-540],[357,-339],[380,-513]],[[97483,6878],[79,-8]],[[98273,15959],[94,172]],[[94965,21524],[259,224]],[[95939,5699],[184,960],[271,459],[81,375],[359,740],[248,1106],[-71,460],[58,603],[107,232]],[[95327,21102],[-363,182]],[[94620,18872],[180,-486]],[[94621,19094],[-8,-231]],[[95735,18839],[17,5]],[[95784,15546],[-58,-262],[70,-338],[220,-291],[59,-675]],[[94346,14859],[256,140],[126,-115],[219,442]],[[93530,16330],[-12,-306],[173,34],[102,-450],[133,128]],[[96677,7846],[332,-373],[251,-121]],[[97258,7341],[181,-363]],[[96022,17450],[414,53],[633,-144],[181,338]],[[95752,18844],[181,153]],[[95712,18819],[-311,-246]],[[94304,20273],[299,-177],[286,165],[191,-84],[145,130],[365,-53]],[[95353,19452],[-200,-602],[-353,-464]],[[94800,18386],[-153,-526],[-412,-26]],[[93653,16929],[224,359],[323,250]],[[95099,16283],[-14,-719],[-113,-184]],[[94346,14859],[-149,-329],[-414,-322],[-184,32]],[[98367,16131],[163,242],[56,-358],[-132,-167],[-181,111]],[[98273,15959],[-146,-372]],[[96440,16895],[180,44],[91,-198],[298,-89],[173,-188]],[[96286,16982],[154,-87]],[[94963,22262],[77,-255],[-75,-483]],[[94965,21524],[-80,-86]],[[95380,18588],[-197,-711],[19,-716]],[[93926,15736],[204,-83],[202,194],[606,190],[161,246]],[[95099,16283],[49,141]],[[94965,21524],[-1,-240]],[[95077,16784],[114,358]],[[96075,13980],[242,-177],[357,-435],[292,207],[73,-293],[209,-127]],[[95735,18839],[-23,-20]],[[97439,6978],[44,-100]],[[97454,14261],[-78,-662],[-127,-391],[17,-411],[268,-836],[5,-454],[211,-720],[156,-321],[-115,-697],[140,-519]],[[95308,20288],[-22,-657],[57,-169]],[[94676,21954],[209,-516]],[[94885,21438],[46,-494],[238,-253],[119,-382]],[[94158,19508],[222,-353],[241,-61]],[[94621,19094],[123,198],[381,236],[104,255],[370,461]],[[95392,18583],[51,-371],[289,-668],[265,-83],[289,-479]],[[95365,18829],[27,-246]],[[95379,20882],[88,39]],[[86482,40438],[414,483]],[[89316,43912],[29,-146]],[[84786,40317],[201,483],[382,207]],[[86822,43742],[-11,-169]],[[87153,41686],[-144,-487]],[[86601,42537],[372,337]],[[85320,40998],[101,10]],[[84747,40275],[140,176]],[[85504,39844],[614,255]],[[87244,42363],[-64,277],[124,755]],[[88010,45325],[-224,-514]],[[85755,40630],[271,9],[686,217]],[[85869,41709],[28,-477],[260,-1116]],[[87643,44710],[77,-115]],[[88010,45325],[24,93]],[[86131,40089],[-188,-456]],[[86516,42564],[28,-359],[316,-975]],[[87024,40897],[232,-612],[39,-435]],[[87324,39746],[160,-351],[337,-386]],[[89762,44627],[285,-821]],[[85287,41619],[34,-384]],[[81728,42658],[200,-995],[-112,-223],[170,-496]],[[82251,40874],[17,-141]],[[82939,40741],[24,-208]],[[82597,41738],[248,-858]],[[87610,39252],[-11,-169]],[[87828,39613],[-232,-315]],[[85485,40869],[270,-239]],[[84963,41524],[5,-25]],[[81882,40849],[104,95]],[[88637,42080],[224,233]],[[88163,42003],[403,36]],[[81713,42491],[265,26]],[[86297,43970],[292,-473],[-91,-470]],[[86118,40099],[361,340]],[[87340,41981],[-187,-295]],[[87244,42363],[33,-249]],[[86554,43603],[113,53]],[[86667,43656],[96,58]],[[87762,44777],[-155,-103]],[[87607,44674],[-390,-318]],[[87786,44811],[-24,-34]],[[87720,44595],[48,-230],[-447,-732],[-17,-238]],[[87304,43395],[-176,-453]],[[88566,42039],[71,41]],[[87217,44356],[-395,-614]],[[86822,43742],[-59,-28]],[[86801,43423],[-240,-552]],[[86860,41230],[62,-175]],[[87295,39850],[29,-104]],[[89562,45006],[200,-379]],[[85465,40888],[-123,-513],[164,-585]],[[86354,42391],[148,-606]],[[87948,41915],[72,-101]],[[88020,41814],[146,-133],[112,-371],[83,-903],[94,-383]],[[86700,44791],[99,-103],[-144,-678],[146,-587]],[[86801,43423],[184,-506],[-29,-572]],[[87759,39773],[296,-410],[272,-69]],[[87091,40928],[266,-587],[402,-568]],[[86906,40947],[118,-50]],[[86427,41133],[84,62],[406,-180]],[[87227,42143],[40,46]],[[87128,42942],[-365,-36]],[[85421,41008],[44,-120]],[[85506,39790],[3,-19]],[[84968,41499],[353,-264]],[[86502,41785],[89,-676]],[[85321,41235],[107,-188]],[[86929,41457],[-109,-202]],[[86515,43093],[-45,9]],[[85993,41990],[71,-40]],[[36782,28134],[49,12]],[[32936,31412],[762,105],[96,162]],[[35619,26364],[77,-331],[219,-466],[216,-50],[161,406],[307,84]],[[32334,23836],[162,512],[190,319],[268,106]],[[32954,24773],[192,-65],[179,-387],[166,-76],[271,168],[319,-74],[258,135],[306,1333],[-18,282]],[[28631,24051],[138,-57],[138,-483]],[[29213,23303],[274,47],[299,-281]],[[32954,24773],[-78,405],[-177,340]],[[31673,35537],[164,-175],[630,-344],[409,135],[321,375],[82,358]],[[33683,36618],[116,608],[-17,353]],[[35191,39010],[-31,-226]],[[28907,23511],[306,-208]],[[33279,35886],[210,222],[194,510]],[[35160,38784],[-2,-246]],[[29802,27736],[-369,-514],[-40,-621],[-255,-404],[-318,-681],[95,-213],[-237,-775],[2,-408]],[[32826,31492],[34,-99]],[[28869,30509],[443,-445]],[[30066,35285],[-90,398],[-86,1159],[167,905],[-45,372]],[[35619,26364],[406,530],[713,1228],[129,35],[192,369]],[[27345,35184],[18,-295],[-165,-342],[21,-517],[-81,-247],[-40,-935],[46,-241],[-152,-1295],[-114,-664],[-204,-551],[-371,-181]],[[27186,35348],[-46,617],[160,968],[-208,312],[-317,198]],[[25372,21682],[-33,307]],[[28647,30678],[222,-169]],[[92316,27789],[255,-60]],[[91280,27304],[322,233],[263,-132],[283,277]],[[92148,27682],[169,95]],[[92650,27561],[347,-211],[226,106],[284,-128],[366,-444],[344,-748]],[[92665,28039],[-28,-192]],[[95150,25418],[40,-185]],[[93920,26529],[834,-510]],[[94760,26017],[261,-184]],[[94986,26425],[-21,-153]],[[92558,27747],[-56,-163]],[[95666,28281],[124,19]],[[95241,25205],[36,-225]],[[95276,24830],[-31,-65]],[[95162,27011],[39,-17]],[[95265,24961],[11,-131]],[[94566,26776],[334,-435],[55,-233]],[[94743,24529],[534,451]],[[95201,26994],[137,-286]],[[95158,27181],[4,-170]],[[94551,27299],[15,-523]],[[95462,26655],[-85,-421]],[[94442,25538],[261,40]],[[91175,25871],[323,-49],[101,176],[663,-47]],[[91058,25874],[94,113]],[[95920,26831],[-413,-207],[-169,84]],[[96878,27713],[551,-316]],[[96330,28242],[35,141],[278,-495],[233,-174]],[[91256,26860],[143,-121]],[[91434,26683],[75,-136],[522,58],[368,368],[166,-294],[245,243],[371,-72],[222,143],[477,-441]],[[93220,25630],[7,-583]],[[94217,26136],[587,-396],[158,35]],[[95113,24749],[7,-879]],[[94930,25650],[-2,-41]],[[92317,27777],[-1,12]],[[91124,27018],[126,-108]],[[91041,26979],[78,41]],[[92534,27302],[273,-295],[-57,-731],[108,-457]],[[92317,27777],[4,-235],[170,-145]],[[92310,28276],[6,-487]],[[95010,25748],[-80,-98]],[[94928,25609],[-145,-305]],[[94934,27918],[389,-483]],[[95328,27433],[227,-103]],[[95555,27330],[3,-1]],[[95558,27329],[249,-197]],[[94087,26970],[-145,-192]],[[94358,25543],[84,-5]],[[96290,27621],[44,240]],[[92491,27397],[43,-95]],[[94962,25775],[75,-14]],[[95057,25698],[-47,50]],[[95082,25652],[28,-96]],[[93942,26778],[-59,-120]],[[94138,27116],[-51,-146]],[[95409,27519],[187,136],[134,671]],[[94399,27374],[-261,-258]],[[94703,25578],[217,29]],[[95410,28282],[-21,-1211],[-228,-774]],[[96334,27861],[-4,381]],[[95807,27132],[173,-225]],[[95080,25658],[2,-6]],[[94742,25370],[-265,-416]],[[92635,27818],[-77,-71]],[[92555,27658],[-64,-261]],[[95134,25617],[6,-26]],[[93870,26526],[307,-463]],[[92585,27748],[60,-251]],[[65394,31303],[-189,32]],[[57229,25534],[239,268],[483,27],[619,252],[328,-82],[155,87],[310,-111]],[[56623,25504],[495,42]],[[59897,25867],[159,588],[-6,562]],[[59023,25175],[332,153],[118,233],[339,319]],[[62846,32094],[141,484],[480,166]],[[63557,32785],[70,201],[370,-3],[275,437]],[[64747,27538],[-243,142],[12,289],[-108,443]],[[64762,27560],[375,-102],[158,-184],[223,-14]],[[64302,28547],[-73,-513],[-130,-366]],[[65300,33428],[-83,-670]],[[65217,32758],[-75,-752]],[[64789,29745],[-101,-672],[-300,-385]],[[63343,32014],[-292,39],[-113,-330]],[[63506,33640],[-47,-1064],[-55,-284]],[[65560,32607],[103,-14]],[[65188,30616],[144,-19]],[[65188,30616],[21,497]],[[65288,32504],[283,14]],[[65495,28506],[72,-22]],[[65116,28529],[284,2]],[[65545,33406],[28,-1144]],[[64815,32770],[218,-668],[109,-96]],[[65196,31912],[139,-374]],[[65567,28484],[-185,-282]],[[65602,27115],[149,-172]],[[65767,24464],[190,-154]],[[64560,33146],[452,35],[538,-66]],[[61819,26520],[460,-333]],[[65124,25557],[5,-47]],[[65039,25574],[85,-17]],[[65129,25510],[37,-272],[231,-414],[370,-360]],[[65477,27127],[125,-12]],[[58678,25004],[152,185],[193,-14]],[[60742,28206],[-61,-185]],[[58120,24917],[70,-46]],[[63467,32744],[90,41]],[[65518,27260],[88,-70]],[[64408,28412],[-94,314]],[[64868,31426],[337,-91]],[[65142,32006],[54,-94]],[[65274,31232],[-158,-281]],[[65196,31912],[-33,-264]],[[62903,31344],[-34,-449]],[[62938,31723],[-20,-270]],[[61224,25572],[2,52]],[[62494,33370],[336,4],[46,-174],[534,-252],[40,164]],[[60712,33842],[301,-74],[2,-157],[365,-64],[581,12],[400,-198]],[[61117,25409],[-177,-255],[-48,-313],[-63,-2271],[-55,-577],[-124,-110],[-81,-413],[-15,-668],[-251,-853],[-229,-469],[23,-347],[-318,-393],[-94,-555]],[[61788,26465],[-275,-192],[-333,21],[-21,-553]],[[62040,29417],[-156,-430],[21,-362],[-61,-1737]],[[62775,27598],[357,105],[559,-107],[327,24]],[[60694,28031],[1652,-177],[286,-83],[140,-178]],[[64723,26828],[149,-1034]],[[65013,27968],[-251,-408]],[[64747,27538],[-23,-704]],[[65187,28536],[-48,-516]],[[57118,25546],[111,-12]],[[59363,25975],[464,-108],[617,120]],[[60449,25987],[227,-21],[156,-188],[327,-37]],[[61159,25741],[263,-148],[577,92],[241,234]],[[62361,25906],[313,168]],[[63121,31616],[183,-45],[473,352]],[[62047,30206],[-32,-566]],[[62174,30802],[-85,-200]],[[63778,31946],[162,393],[344,33],[59,388]],[[63778,31946],[-1,-18]],[[64780,33484],[11,10]],[[61095,30776],[78,312],[476,174],[417,-83],[438,249]],[[59516,29152],[600,344],[-41,415],[148,324],[185,30],[311,384],[267,27]],[[64747,27538],[15,22]],[[59635,31902],[368,324],[557,-188]],[[60561,32067],[380,23],[545,-75]],[[63777,31928],[0,-5]],[[62761,21790],[-22,-759],[-220,-610],[-24,-418],[71,-447]],[[62862,24675],[-95,-724],[81,-136],[-42,-1094],[-101,-191],[31,-731]],[[63666,26115],[-68,-721]],[[63378,25188],[-239,-87],[-200,-423]],[[59320,28160],[-103,-461],[167,-314],[-149,-608],[146,-144],[-18,-658]],[[59411,28992],[1,-69]],[[59411,28917],[0,-87]],[[60731,33474],[-199,-290],[-46,-547],[94,-415],[-215,-1060],[-64,-870]],[[59411,28992],[58,88]],[[59370,28920],[35,32]],[[57340,24574],[-30,-610],[176,-11],[-18,-432],[186,-340],[4,-237]],[[57229,25534],[124,-401],[-13,-559]],[[57104,26165],[14,-619]],[[58180,20949],[318,-385],[183,26],[304,-633],[72,-668],[355,-253],[-3,-633]],[[57698,22924],[193,-520],[36,-562],[205,-694]],[[60444,25987],[5,0]],[[65228,31064],[132,203]],[[63450,33112],[39,-5]],[[61828,26687],[-9,-167]],[[61819,26520],[-31,-55]],[[61117,25409],[107,163]],[[61844,26888],[0,-76]],[[61843,26801],[-15,-114]],[[58463,24858],[239,-75]],[[63489,33107],[85,-4]],[[65285,29917],[-98,-1381]],[[65013,27968],[120,42]],[[61844,26812],[-1,-11]],[[62674,26074],[142,222],[573,496]],[[62240,25919],[121,-13]],[[64028,27514],[-148,-155],[-62,-358]],[[62174,30802],[294,276],[88,258]],[[63035,31585],[86,31]],[[62089,30602],[-42,-396]],[[60986,30676],[109,100]],[[62504,31428],[48,-5]],[[64314,28726],[-205,49],[-197,309]],[[63714,29775],[121,-438]],[[63423,30309],[211,-327]],[[63708,26875],[-20,-478]],[[63598,25394],[-220,-206]],[[63818,27001],[-14,-27]],[[59469,29080],[37,84]],[[59506,29164],[10,-12]],[[62827,31962],[19,132]],[[62361,33361],[133,9]],[[65113,30899],[115,165]],[[65400,28531],[95,-25]],[[58702,24783],[312,11],[438,-214]],[[65007,25607],[32,-33]],[[63804,26974],[367,-98]],[[63389,26792],[319,83]],[[64343,32760],[433,603],[4,121]],[[62556,31336],[-4,87]],[[62552,31423],[128,224]],[[62773,31637],[54,325]],[[63835,29337],[29,-161]],[[63864,29176],[48,-92]],[[62932,31225],[491,-916]],[[63634,29982],[80,-207]],[[62773,31637],[208,-70]],[[65284,31336],[-10,-104]],[[64171,26876],[116,-73]],[[63804,26974],[-96,-99]],[[64860,30468],[-71,-723]],[[63688,26397],[-22,-282]],[[62918,31453],[-15,-109]],[[59475,28698],[-155,-538]],[[65428,31438],[-23,-130]],[[76578,47336],[-67,45]],[[83391,42975],[214,-111]],[[80472,44080],[62,-400],[221,-272]],[[78476,45368],[-67,388],[191,818],[-410,477]],[[76511,47381],[75,-53]],[[82771,43042],[247,-48],[243,155],[130,-174]],[[79196,49171],[-67,-213]],[[77690,47159],[276,82]],[[77433,48750],[111,109]],[[77433,48750],[-188,-145],[-161,-786],[31,-165],[-448,-244]],[[84436,41153],[244,328]],[[84446,41049],[-331,-492],[-239,96]],[[84727,41775],[168,7]],[[84436,41153],[10,-104]],[[80755,43408],[-72,-594],[153,-360],[22,-472],[-109,-260]],[[80749,41722],[18,-559]],[[77688,45042],[-11,-27]],[[81236,43827],[-21,-272],[206,-9],[346,-486],[-39,-402]],[[80047,50517],[332,-468],[230,-845],[-75,-275],[95,-579],[-30,-264],[155,-542],[218,-300],[79,-310],[-137,-666],[156,-207]],[[81070,46061],[-62,-119],[11,-752],[187,-700]],[[81205,44166],[-26,-76]],[[82857,42184],[-75,181],[-9,866],[-78,288],[-226,165],[-158,713],[-39,702],[-233,550]],[[82597,41738],[-22,332]],[[81057,45062],[349,566],[165,-80],[105,284]],[[80986,44142],[26,-314],[-257,-420]],[[79628,41459],[-103,-562],[-218,-244],[-159,106]],[[79628,41459],[143,81],[288,573],[376,71],[-55,227]],[[80380,42411],[189,345]],[[80620,42730],[61,72]],[[79230,38040],[80,73]],[[81205,44166],[96,27]],[[81486,44171],[251,55],[75,-198],[307,257],[-112,534],[210,166],[281,-115],[118,286]],[[77777,45474],[491,-143],[208,37]],[[78476,45368],[168,30],[404,-184],[290,-556],[427,-617],[337,54]],[[77670,45034],[7,-19]],[[84641,42139],[52,-313]],[[77387,46237],[-94,-425],[-220,-142]],[[77387,46237],[-30,284],[296,188],[35,251]],[[80263,43038],[401,-396],[711,-87],[77,114],[261,-178]],[[81978,42517],[597,-447]],[[82575,42070],[277,121],[193,-168],[430,187],[257,-170]],[[77149,50121],[725,-5],[253,264],[45,295],[265,142],[259,-74],[379,178],[196,316]],[[79297,51207],[76,10]],[[77072,49804],[-313,-505],[39,-138],[-207,-223],[-235,-553],[23,-193]],[[83815,41399],[106,-1032]],[[78441,47755],[89,-110],[445,273],[396,-111],[87,214],[362,315],[105,-181],[241,333]],[[84680,41481],[47,223]],[[77073,45670],[-70,-55]],[[77794,47653],[298,-402]],[[77803,47874],[-9,-221]],[[77149,50121],[-113,-238],[412,-296]],[[77448,49587],[115,-250],[-27,-470],[258,-244],[-12,-638]],[[77782,47985],[21,-111]],[[79183,48338],[13,-157],[364,-545],[87,-294],[-39,-502],[146,-810],[-100,-227]],[[79129,48958],[50,-460]],[[79399,51129],[57,-250]],[[77688,45042],[59,21]],[[81206,44490],[17,-282]],[[79148,40759],[-14,-103]],[[80307,44076],[752,106],[180,-356]],[[80102,44095],[205,-19]],[[81301,44193],[185,-22]],[[84693,41826],[34,-122]],[[84727,41704],[219,-175]],[[79456,50879],[479,-215]],[[79285,51316],[88,-99]],[[79179,48498],[4,-160]],[[79096,49025],[33,-67]],[[79134,40656],[29,-461]],[[79217,38020],[13,20]],[[77003,45615],[-13,-14]],[[76508,47352],[17,61]],[[71761,33337],[27,1]],[[73589,31375],[25,47]],[[71639,27861],[70,156]],[[71856,33488],[-72,-161]],[[71735,33243],[15,96]],[[73551,31336],[38,39]],[[73589,31375],[47,83]],[[73311,31094],[257,355]],[[70980,28951],[105,-20]],[[69299,30783],[-68,-413]],[[73686,31547],[341,658]],[[73600,32168],[750,-145]],[[72557,28476],[-241,-523]],[[73697,31194],[-51,-434],[-122,-272]],[[69485,30926],[35,-449]],[[74064,31383],[325,-88]],[[72824,31617],[229,-83]],[[73053,31534],[46,-56]],[[73241,33098],[177,-207],[451,-236]],[[73568,31449],[74,113]],[[68667,31747],[173,-87]],[[73686,31547],[-21,-36]],[[71459,31462],[159,-177]],[[69732,33566],[76,45]],[[68134,34510],[155,-60]],[[69399,26038],[1024,1240]],[[68915,25448],[411,411],[59,164]],[[68182,24864],[461,486],[235,99]],[[70748,25529],[18,-33]],[[74003,28291],[171,-43]],[[71965,30364],[427,-91]],[[69487,30961],[212,-8]],[[69833,31040],[330,-106],[322,-304],[1475,-265]],[[70105,22661],[228,108],[385,-26],[8,108],[471,2],[30,-175],[589,-175],[21,-150]],[[71837,22353],[762,-170]],[[70362,33319],[-71,-86]],[[70291,33233],[-190,-1156],[-286,-49],[-168,-559]],[[69112,30023],[-82,-44]],[[68878,25449],[37,-1]],[[69138,32723],[-441,-771]],[[72073,28708],[412,-48],[1518,-369]],[[74174,28248],[499,-153]],[[69528,29153],[578,-121],[95,64],[790,-147]],[[71085,28931],[826,-190]],[[68339,30100],[691,-121]],[[69112,30023],[333,-57]],[[74188,32293],[-66,-577]],[[74062,30682],[-166,-713],[-111,-1104]],[[73624,27369],[-32,-344],[162,-175],[-72,-918]],[[73785,28865],[-161,-1496]],[[71491,25472],[586,-123]],[[72077,25349],[643,-122]],[[69522,25929],[264,-100],[-20,-281],[729,-117],[253,98]],[[70766,25496],[229,-79]],[[71491,25472],[-103,20]],[[68087,19008],[-112,-924]],[[69882,33183],[409,50]],[[69138,32723],[223,213],[517,190]],[[68671,35613],[496,63],[229,-178],[822,-120],[487,-626],[635,-253],[342,-398],[393,-54],[530,-193],[465,-615]],[[67801,35781],[696,-140]],[[72023,35397],[-81,-1283]],[[71942,34114],[-82,-603]],[[64003,19625],[-183,-432],[-71,-655],[-129,-566],[99,-191]],[[71942,34114],[440,434],[687,294],[124,-37]],[[65446,23282],[-43,-1453],[96,-835]],[[72392,30273],[316,-76]],[[69699,30953],[134,87]],[[69647,31469],[-162,-543]],[[71911,28741],[162,-33]],[[74061,30951],[1,-269]],[[74122,31716],[-19,-224]],[[68497,35641],[174,-28]],[[73816,33129],[-158,-1541],[28,-41]],[[73420,32083],[180,85]],[[74103,31492],[-42,-541]],[[73647,31403],[417,-20]],[[71790,28006],[-81,11]],[[71860,33511],[-5,-309]],[[73816,33129],[41,14]],[[70402,33511],[-15,-184]],[[72325,28587],[-87,-233]],[[8617,4736],[7,336]],[[8723,2474],[142,158]],[[8185,6845],[236,195],[99,-123],[197,272],[306,105],[119,647],[-114,527]],[[9028,8468],[523,-171],[273,29],[167,784],[173,323]],[[8537,6925],[46,-813],[-204,-388]],[[8849,9110],[179,-642]],[[8799,1992],[275,-96],[699,263],[156,259],[256,40],[532,-531],[286,16],[213,250],[133,777],[264,-255],[251,105],[333,633],[24,452],[425,33],[404,322]],[[8661,4661],[167,-526],[126,-994]],[[8956,3142],[-92,-522],[108,-687]],[[6160,6613],[115,694],[356,339]],[[8874,13408],[-1,-149]],[[8168,5998],[65,83]],[[8824,510],[77,-427]],[[7642,9112],[182,-318],[88,-408],[-133,-210],[-50,-374],[70,-392],[-63,-380],[104,-507]],[[14845,12167],[109,-90],[-13,-458],[337,-406]],[[12868,9018],[-29,-59]],[[12811,8913],[-206,-561],[47,-773],[149,-295],[235,-154]],[[12965,11291],[58,-504],[-171,-339],[149,-857],[-133,-567]],[[15278,11213],[153,74],[363,-210]],[[5060,8614],[142,302],[324,34],[151,808],[285,20],[398,376]],[[10253,7743],[322,53]],[[11607,6557],[221,-464],[245,41],[172,-296]],[[13631,13785],[100,-229]],[[12839,8959],[-28,-46]],[[8243,5311],[-95,-13]],[[6364,10306],[-73,-100]],[[8573,4722],[154,-115]],[[7840,6523],[2,-142]],[[56531,25446],[92,58]],[[51555,27782],[-12,-850],[-72,-138],[-3,-1865]],[[51831,29944],[0,-920]],[[51831,29024],[-21,-185],[-243,-230],[-12,-827]],[[51728,30477],[-1,-238]],[[55949,30367],[-175,-426]],[[56171,24511],[443,-138]],[[55839,24308],[-4,-1333]],[[55834,22970],[21,-659]],[[56235,24248],[-51,159]],[[55940,24234],[32,73]],[[55774,29941],[30,-221]],[[56888,29504],[387,-22]],[[58056,29618],[161,-324],[317,-265],[154,163],[485,-25],[141,-271]],[[57439,29553],[512,-15]],[[54220,19422],[498,12],[64,188]],[[53549,16747],[-160,-346]],[[52009,25462],[40,-439],[607,-699]],[[54427,22368],[149,-247],[887,-725],[234,-114]],[[55708,21201],[559,-419]],[[53011,23418],[373,-272],[62,-157],[351,-90]],[[51541,26799],[4,-317],[147,-255],[209,-804]],[[50585,28533],[355,-554],[16,-173],[308,-682],[173,-238]],[[53992,18808],[-148,-697],[-224,-470]],[[53389,16401],[29,-911]],[[53619,17583],[-70,-836]],[[51657,30477],[70,-238]],[[50345,23548],[662,-14],[516,57],[344,-89],[501,509],[344,191],[897,-139],[32,103],[632,213],[590,-20],[485,334]],[[50336,27502],[565,-3],[109,116],[973,-3],[44,57],[841,-63],[221,-171],[476,-184],[256,0],[239,230],[178,-51],[261,356]],[[54241,27430],[18,-1]],[[55095,20329],[-182,-166],[-131,-541]],[[54782,19622],[122,-212],[61,-617]],[[54473,30425],[-10,-556],[-138,-418],[-29,-1069],[94,-448]],[[56011,28200],[368,1087],[-1,359]],[[50290,21583],[0,-6]],[[57467,28538],[226,212],[184,335],[-6,273],[203,276],[37,392],[249,197]],[[50981,18625],[103,-345],[250,-270],[30,-361],[-93,-339],[-40,-1421],[-52,-109],[-70,-2061],[-85,-708],[-176,-315],[-275,-949],[-690,-1802],[-57,-615]],[[50903,19527],[78,-891]],[[51272,22433],[-3,63]],[[51269,22496],[51,-173],[-1,-1019],[-195,-500],[-35,-794]],[[51468,24929],[121,-6],[-503,-1009],[176,-190],[7,-1228]],[[51727,30239],[104,-284]],[[56689,26073],[-139,1],[-9,-415]],[[57976,26886],[-376,-207],[-118,-276],[-304,-202]],[[57297,28085],[40,-1061],[238,-419]],[[57488,30285],[-49,-732]],[[57275,29482],[-29,-560]],[[57277,29481],[159,72]],[[57107,26171],[-3,-6]],[[50116,13903],[-29,-595],[-241,-968],[-153,-961],[-50,-976],[-90,-354],[-391,-730]],[[49880,17452],[-76,-747],[-51,-1061],[26,-1207],[342,-425]],[[50783,24641],[-156,-336],[-1,-536],[-240,-215],[10,-1665],[-106,-306]],[[50290,21577],[0,-1478],[-160,-272],[-7,-265],[-228,-669],[-56,-1166]],[[50773,30478],[-25,-1152],[-163,-764],[41,-1035]],[[50621,27516],[24,-1710]],[[50645,25800],[137,-196],[1,-963]],[[54174,22497],[253,-129]],[[53797,22899],[377,-385]],[[52827,23894],[184,-476]],[[54072,19426],[-109,-307],[29,-311]],[[56201,24735],[64,239]],[[54970,23323],[316,114],[280,352]],[[56438,25300],[93,146]],[[58619,28062],[452,233],[131,268]],[[59308,28775],[6,121]],[[59314,28896],[56,24]],[[55099,21566],[-4,-1237]],[[55577,24181],[6,-399]],[[55294,23472],[-64,-1012]],[[55199,22305],[-77,-515]],[[56531,25446],[10,213]],[[57178,26201],[-489,-128]],[[58619,28062],[-230,-394],[-279,-317],[-134,-465]],[[57246,28922],[51,-837]],[[49839,17727],[1,-276]],[[55566,23789],[288,264]],[[56265,24974],[173,326]],[[55348,24693],[131,6]],[[55599,25127],[-22,-946]],[[55230,22460],[-31,-155]],[[55122,21790],[-23,-224]],[[55574,25018],[-35,88]],[[55491,25120],[48,-14]],[[56129,24738],[83,556]],[[55574,25018],[15,-12]],[[55479,24699],[324,-61]],[[55835,24700],[266,51]],[[82093,52814],[-142,-203]],[[83765,49633],[-101,-426],[43,-231]],[[80165,53775],[373,-502],[317,6],[644,-1674],[-69,-353],[455,-689],[-21,-514],[244,-392],[160,81],[486,-762],[-62,-296],[71,-428],[127,-71],[44,-355],[268,-77],[281,-796],[74,-602],[387,-894],[37,-437],[190,-596],[-53,-327],[245,-387],[-103,-336]],[[88219,46796],[-47,-597]],[[88213,47124],[-149,311],[144,137],[-7,282]],[[83605,42864],[236,-52],[87,329]],[[85416,47934],[323,149]],[[80434,52917],[238,-362],[392,-244],[326,-582],[49,-721],[294,-422]],[[83378,46971],[30,-819],[304,-573],[-61,-444],[38,-337],[171,21],[27,-458],[150,-560],[229,-453],[-22,-177]],[[76065,53960],[-200,44]],[[85357,48402],[59,-468]],[[85416,47934],[-95,-309],[-70,-767]],[[85239,46832],[-10,-488],[-80,-65],[-318,-1319]],[[84831,44913],[-238,-118],[-271,-451]],[[77000,54252],[389,-183],[248,161]],[[82029,52950],[64,-136]],[[86261,48538],[35,374],[296,-51],[172,159]],[[88201,47854],[-117,311]],[[88201,46885],[12,239]],[[87381,47979],[122,-182]],[[87679,47716],[159,-141]],[[87503,47797],[118,-80]],[[87988,47383],[-136,27]],[[82093,52814],[111,-59]],[[86235,48119],[-134,-95],[-362,59]],[[85862,45537],[0,-225]],[[86017,44272],[27,-127]],[[80222,52063],[73,-431],[284,-232]],[[80992,51297],[434,-710]],[[82495,48262],[320,-545],[92,-434]],[[85827,45145],[52,49]],[[76770,53111],[11,-2]],[[85850,47824],[335,221]],[[84095,46791],[136,108]],[[86185,48045],[50,56]],[[86191,48447],[74,-130]],[[80195,50715],[79,3]],[[81499,50543],[225,-13]],[[88802,49942],[21,-262]],[[84298,42758],[-77,-374]],[[88221,50782],[184,-149]],[[87694,48531],[-138,-210],[-477,-13],[-320,-183],[-346,98]],[[86164,48366],[127,-122]],[[85231,42158],[-280,-197],[-56,-179]],[[86126,43775],[30,-86]],[[86297,43513],[85,-140]],[[88753,50749],[139,-308]],[[84189,42329],[2,-36]],[[84195,42327],[2,-30]],[[88074,51531],[203,-589]],[[84651,52255],[-234,-351],[44,-498]],[[84583,50577],[35,-821]],[[84494,49621],[-39,-480],[-117,-326]],[[84338,48815],[193,-454],[94,-526],[12,-826]],[[84655,46944],[-28,-649]],[[84724,45881],[-31,-542],[127,-305]],[[85298,43554],[17,-1273]],[[84691,52616],[-84,-289]],[[85346,42123],[-59,-504]],[[86452,45648],[-308,-200],[-288,138]],[[84789,43267],[-113,-392]],[[79703,53862],[-136,-396],[56,-291],[-90,-401],[146,-384]],[[80014,50590],[33,-73]],[[81743,50106],[-5,-524],[96,-587],[-38,-504]],[[81796,48491],[-31,-103]],[[81428,48633],[281,-1210],[23,-503],[119,-694],[188,-577]],[[76500,53447],[42,15]],[[81676,45832],[298,183],[40,208],[437,191],[225,-87],[313,431]],[[82987,46764],[69,51]],[[87675,51690],[22,-541]],[[87738,51076],[53,-343],[286,-896]],[[88152,49872],[49,79]],[[85414,43453],[161,-151]],[[86103,42934],[135,-132]],[[85891,43090],[29,-27]],[[86348,47609],[-68,-1284]],[[82616,45156],[265,249],[384,126]],[[83805,45646],[204,123]],[[84645,46379],[402,275],[340,423],[383,173],[281,440]],[[84250,46053],[377,242]],[[84298,42758],[209,-247],[43,-226]],[[84946,41529],[17,-5]],[[84594,42177],[47,-38]],[[88261,46235],[66,43]],[[87894,46136],[278,63]],[[86579,49381],[1390,1163],[283,68]],[[86190,42918],[60,5]],[[84701,42873],[309,30]],[[84189,42329],[19,42]],[[85069,42896],[218,-79]],[[83732,42040],[92,31]],[[84145,42289],[46,10]],[[84191,42293],[6,4]],[[83853,51973],[-184,-302],[-48,-299],[78,-413],[-290,-425],[-101,-427]],[[82641,49055],[-129,-94],[115,-499]],[[82989,49542],[-252,-225],[-96,-262]],[[84191,42293],[-3,-46]],[[78157,53673],[343,265],[220,-82],[254,91],[260,-181],[449,-105]],[[80423,52919],[253,100],[411,-172],[241,178]],[[87697,51149],[41,-73]],[[89228,49674],[167,235]],[[82627,48462],[128,-77],[633,588],[219,-134],[193,210],[304,-201]],[[84338,48815],[406,92],[426,-490],[187,-15]],[[86126,43775],[-206,-409],[8,-258]],[[88341,49364],[-71,-142]],[[86058,46674],[187,-468]],[[88325,49417],[16,-53]],[[85366,42259],[549,384],[275,275]],[[86190,42918],[205,196]],[[84238,42285],[254,-12]],[[84597,42342],[213,47]],[[86382,43373],[6,-489]],[[86156,43689],[141,-176]],[[88967,49946],[113,-150]],[[88277,50942],[13,-63]],[[84637,47009],[18,-65]],[[84627,46295],[97,-414]],[[85366,42259],[-20,-136]],[[84461,51406],[131,-530]],[[84586,50576],[-3,1]],[[88746,50496],[26,-228],[-357,-114],[-123,-245]],[[88292,49909],[132,-358]],[[88424,49551],[-83,-187]],[[88341,49364],[-25,-348],[-232,-874],[-242,-271],[-18,-470],[-631,-928]],[[87193,46473],[-349,-577],[-392,-248]],[[85125,44248],[296,513],[406,384]],[[85064,43887],[-129,-517]],[[84221,42384],[108,211],[347,280]],[[78040,53730],[-328,-394],[61,-249]],[[77841,53006],[471,-529],[122,-276]],[[83495,44630],[195,2],[168,-197],[407,-39],[234,-360],[256,130],[309,-279]],[[85112,43831],[-42,13]],[[79935,50664],[79,-74]],[[81941,51510],[-221,-395],[-40,-379]],[[81951,52611],[64,-466],[-43,-561]],[[82084,53354],[60,-335]],[[76979,54415],[26,-141],[-381,15],[-176,-513],[94,-314]],[[76542,53462],[250,-362]],[[76781,53109],[20,-328],[-132,-499]],[[88424,49551],[249,-53]],[[88201,49951],[91,-42]],[[85575,43302],[316,-212]],[[86336,42765],[-98,37]],[[85920,43063],[183,-129]],[[86256,47940],[92,-331]],[[86280,46325],[-35,-119]],[[86245,46206],[270,-768],[70,-515],[115,-132]],[[83265,45531],[156,233],[237,-223],[147,105]],[[86051,47690],[134,355]],[[84009,45769],[241,284]],[[84244,43171],[54,-413]],[[84550,42285],[44,-108]],[[83967,52248],[202,-556],[292,-286]],[[84586,50576],[530,-744],[79,-368],[292,-373],[459,-272],[245,-372]],[[86331,48142],[54,-213],[287,-357],[138,-531],[287,-276],[96,-292]],[[87196,46341],[97,-174],[601,-31]],[[88172,46199],[89,36]],[[80701,50790],[119,22]],[[80014,50590],[181,125]],[[80274,50718],[427,72]],[[86250,42923],[96,-126]],[[85287,42817],[604,273]],[[85010,42903],[59,-7]],[[83824,42071],[321,218]],[[84676,42875],[25,-2]],[[84003,52817],[-150,-844]],[[83308,50107],[-103,-372]],[[84188,42247],[-321,-407],[-52,-441]],[[74897,54842],[434,-237],[335,-318],[84,100],[402,-499],[228,-120],[120,-321]],[[79683,53661],[267,-44],[473,-698]],[[81328,53025],[286,266],[415,-341]],[[82204,52755],[551,161],[175,211]],[[76792,53100],[338,-117],[244,132]],[[77374,53115],[245,325],[93,-98]],[[82517,48434],[110,28]],[[89080,49796],[148,-122]],[[85357,48402],[439,73],[368,-109]],[[84104,48848],[234,-33]],[[88077,49837],[75,35]],[[83023,49716],[-34,-174]],[[89135,51181],[-127,-463]],[[89008,50718],[-58,-213]],[[85671,43106],[-66,-685]],[[84810,42389],[166,-152],[339,44]],[[84492,42273],[105,69]],[[84592,50876],[-6,-300]],[[84618,49756],[-124,-135]],[[85315,42281],[51,-22]],[[85121,44024],[-75,-244]],[[77773,53087],[68,-81]],[[81680,50736],[53,-150]],[[81972,51584],[-31,-74]],[[82144,53019],[-115,-69]],[[82029,52950],[-78,-339]],[[83292,48865],[-54,192],[29,613]],[[79143,51345],[142,-29]],[[80820,50812],[34,416],[106,90]],[[80195,50715],[79,3]],[[86346,42797],[5,-7]],[[83112,49814],[-89,-98]],[[82204,52755],[-60,264]],[[86202,48135],[23,-138]],[[88889,50419],[-77,-266]],[[88811,49832],[-90,-77]],[[81733,50586],[-146,-255]],[[65845,66507],[349,85],[332,272],[134,-23]],[[62493,71191],[132,-361],[-25,-421],[189,-379],[-60,-610],[86,-659]],[[62697,68668],[-173,-681],[3,-460],[-87,-410],[-187,-268]],[[62503,71370],[-416,-310],[10,-483],[139,-181]],[[63085,72911],[211,-938],[38,-875],[388,-1394],[-38,-484],[88,-1015],[-244,-498],[-232,-832],[-131,-1249],[30,-445],[-112,-559],[-109,-1328],[-70,-343]],[[64491,81257],[224,-267]],[[61109,69548],[-6,-377]],[[66777,80407],[-151,-641],[-199,-1517]],[[64898,77257],[35,-189]],[[65289,65649],[373,-133]],[[66098,69438],[117,-980]],[[62253,66849],[-267,-598]],[[61866,64988],[257,268]],[[62506,71382],[-3,-12]],[[62503,71370],[-10,-179]],[[61921,69025],[187,-337],[-57,-652],[89,-932],[113,-255]],[[62019,66080],[611,-337],[590,-157]],[[61728,76794],[101,344],[355,-25],[354,275]],[[63033,73288],[404,-226],[165,-533],[235,-205],[181,-344],[90,-405],[292,-485],[185,-142],[508,-924]],[[65077,69869],[138,-92],[219,-432],[77,-801]],[[64074,65304],[195,112],[668,175],[227,-120],[125,178]],[[65093,70024],[-16,-155]],[[65027,77295],[240,106],[361,5],[459,322],[271,512],[244,22],[267,297]],[[62236,70396],[69,389],[188,406]],[[66331,68362],[-5,-588],[-121,-543],[-272,-211],[-102,-866],[-154,-92]],[[62880,73198],[-325,-1072],[-49,-744]],[[62236,70396],[-6,-348],[-195,-284],[-114,-739]],[[63220,65586],[412,-218],[269,-51]],[[64715,80990],[461,-63],[441,-322],[535,-225],[569,98],[225,-388]],[[62538,77648],[79,-53],[574,339],[152,-15]],[[63343,77925],[131,-216],[814,-495],[568,-207]],[[63901,65317],[173,-13]],[[64027,65326],[19,-118]],[[61986,66251],[27,-252]],[[64929,77335],[98,-40]],[[65972,80488],[-17,-224]],[[52188,43851],[320,43],[206,-148]],[[56301,55450],[22,715],[-92,371],[243,47]],[[56474,56589],[333,187],[226,327],[329,128],[707,-168],[138,84],[296,-187],[345,18],[253,-459]],[[59118,56517],[110,-112],[726,57],[315,296],[294,-134],[514,178],[207,-210],[409,-31]],[[53760,53878],[273,-117],[722,2],[22,390],[457,-4],[10,-129],[283,13],[-1,285],[464,63],[205,288]],[[53312,44811],[29,279],[330,318],[113,242],[-30,670]],[[57154,48044],[137,-275],[506,99]],[[53250,45080],[-483,683]],[[52226,42414],[52,622]],[[52229,41798],[14,564]],[[61929,48140],[-235,180]],[[54387,45006],[25,1424],[-32,158]],[[54184,56166],[-142,-642]],[[61428,48875],[52,432],[235,316]],[[61189,50091],[357,-679]],[[56195,54669],[5,244]],[[56200,54913],[-24,129]],[[56306,55089],[-5,361]],[[53754,46320],[0,302]],[[61855,56085],[41,90]],[[61896,56175],[192,-42]],[[61694,48320],[-66,565]],[[61896,56175],[-94,125]],[[54060,46830],[320,-242]],[[54164,48485],[22,750]],[[63451,53896],[72,16]],[[63102,53589],[53,18]],[[59423,51522],[299,228],[293,-174],[245,16],[117,200],[476,-34],[133,-122],[293,265],[316,88]],[[59136,51106],[159,82],[128,334]],[[55323,50258],[37,86]],[[61945,53029],[343,153],[307,-24],[507,431]],[[57446,41848],[205,-29],[223,271],[945,-21],[286,212],[326,51]],[[53807,43178],[542,-195],[336,59]],[[51758,42511],[468,-97]],[[52243,42362],[665,-32]],[[53224,42702],[326,17],[6,377],[251,93]],[[55566,42429],[210,-236],[579,-101],[557,12],[517,-139]],[[54761,42970],[354,-70],[57,-200],[386,-282]],[[53788,55716],[-12,-29]],[[53833,43881],[0,227],[-215,11],[-274,622]],[[54068,41805],[-55,1286]],[[53807,43178],[26,703]],[[53802,47505],[310,10],[96,-125],[604,58],[262,-201]],[[55148,47162],[604,-122],[39,-502]],[[55806,46462],[463,-114],[144,-204],[507,62],[264,-119],[496,18],[270,-202],[533,-28],[533,-543],[43,-242]],[[59432,44946],[-6,-197]],[[62124,58933],[128,5],[438,-806],[145,-9]],[[58645,49678],[91,-71],[535,179],[284,-149],[217,373],[628,-300],[303,33]],[[56284,48984],[627,51],[278,131],[635,80]],[[58784,47205],[63,-150]],[[58846,47049],[391,-27],[-5,-454],[153,-6],[268,-282],[364,-22],[302,-462]],[[52243,42362],[-17,52]],[[63965,55327],[212,-24],[105,-233]],[[53783,56391],[448,-81],[270,-316],[728,11],[300,-150],[457,-717]],[[56200,54913],[60,-2]],[[63219,53630],[230,220],[-20,218]],[[63523,56740],[-58,65]],[[62595,57145],[181,-42],[20,-229],[669,-69]],[[62459,57298],[130,-176]],[[58645,49678],[-9,163],[201,453],[-59,551],[50,160],[291,84],[38,563],[-61,650],[-100,171],[22,1227],[-404,1302]],[[55648,41716],[-90,702]],[[55558,42418],[46,126],[-69,1043],[120,420],[-7,1094],[141,180],[17,1181]],[[54685,43042],[60,-71]],[[56085,53405],[85,311],[99,909]],[[55360,50344],[-5,594],[272,1107],[20,383],[338,824]],[[54159,48293],[5,192]],[[54225,49403],[1002,853],[96,2]],[[53755,46739],[-6,180]],[[55074,47247],[74,-85]],[[62835,58123],[417,33]],[[58435,49505],[210,173]],[[54184,48293],[748,186],[222,266],[211,4]],[[55368,48749],[668,25],[248,210]],[[57824,49246],[298,110]],[[58716,48118],[73,-325],[-5,-588]],[[58473,48798],[117,-264]],[[55986,55138],[214,-225]],[[61929,48140],[80,-259]],[[55985,53252],[100,153]],[[53754,46622],[1,117]],[[55791,46538],[15,-76]],[[58122,49356],[174,-5]],[[58296,49351],[139,154]],[[54102,48173],[82,120]],[[58252,49517],[44,-166]],[[58296,49351],[177,-553]],[[58590,48534],[126,-416]],[[54315,54999],[44,377]],[[61747,48897],[-16,-569]],[[25675,18857],[7,-68]],[[34561,18024],[155,-177]],[[29422,17302],[431,-47],[224,-312]],[[30129,16896],[689,-112],[624,-344],[308,55],[374,280],[555,862],[476,596]],[[25133,16223],[551,113],[284,-38],[223,-200]],[[26191,16098],[46,-483],[88,-47]],[[26325,15568],[276,-153],[580,665],[397,310],[382,89]],[[24845,17710],[-296,324],[-106,369],[108,590],[-158,816],[57,319],[-64,1130],[130,525],[177,152],[169,-126],[135,286],[219,155]],[[24539,13346],[-23,-890],[-263,-635],[-82,-418],[272,-472],[193,-672]],[[26675,19001],[-187,-716],[-124,-922],[33,-486],[-65,-476],[-141,-303]],[[26325,15568],[68,-786],[233,105],[128,-381],[-110,-341],[-83,-612],[-117,-419],[112,-546]],[[21454,13011],[335,-51],[378,217],[164,-366],[360,-87],[325,472],[615,110],[289,-234],[406,-604],[274,-303],[316,-577],[405,-66]],[[29978,19458],[-175,-136],[-112,-552],[-201,-484],[-68,-984]],[[27960,16479],[180,88],[357,431],[275,184],[650,120]],[[24474,14988],[321,203],[163,340],[175,692]],[[27521,18737],[24,-419],[212,-799],[104,-732],[99,-308]],[[25372,21682],[-12,-295],[-189,-311],[-9,-721],[160,-199],[-98,-714],[149,-201],[63,-410]],[[25216,22250],[123,-261]],[[28013,16486],[88,-131],[131,-904],[22,-755],[60,-270]],[[32075,7456],[-22,581],[-103,375],[155,54],[28,332],[-100,619],[-223,432]],[[25133,16223],[71,566],[-264,450],[-95,471]],[[25193,22706],[23,-456]],[[25436,18831],[239,26]],[[48219,40580],[-18,145]],[[51855,43830],[333,21]],[[45043,37125],[0,-819],[-234,-548],[20,-1897]],[[44949,41194],[-10,-268],[61,-1979]],[[44995,38918],[48,-1793]],[[44922,43374],[5,-1187]],[[44911,43885],[6,-395]],[[43947,43827],[13,-1367],[50,-759],[111,-487],[184,-378]],[[42477,39304],[680,454],[528,584],[485,427],[367,192],[680,224],[273,15]],[[45559,41186],[942,-485],[279,-274]],[[46790,40527],[222,66],[1169,-14]],[[51866,44063],[-21,-558],[-418,-16]],[[50865,38062],[-144,-546],[-7,-987],[-58,-325],[-378,-809]],[[45490,41200],[69,-14]],[[49703,40632],[111,72]],[[49682,40894],[63,0]],[[49822,40831],[301,-293]],[[51151,38829],[-24,-180]],[[38239,39403],[135,-549]],[[38780,35210],[906,275],[90,-43],[463,246],[631,132],[354,-141],[467,71],[551,-17],[327,79],[215,249],[164,1]],[[42988,36054],[511,363],[250,273],[480,1019],[252,702],[333,246],[181,261]],[[45000,38947],[486,578],[67,213],[344,302],[460,15],[426,216]],[[49070,41529],[215,103],[170,-126],[377,6]],[[50209,39261],[382,8]],[[44180,42649],[275,244],[289,470],[178,11]],[[44922,43374],[-5,116]],[[44917,43490],[732,38],[387,71],[1275,52],[6,-227],[877,27]],[[48219,43452],[751,23],[188,-166],[485,-108],[39,-180],[377,16],[366,-398],[1333,-128]],[[44927,42187],[22,-993]],[[45000,38947],[-5,-29]],[[49294,36207],[89,1],[460,616],[6,622],[112,210]],[[50591,39153],[0,116]],[[46737,34903],[315,517],[332,192],[228,350],[474,189],[1208,56]],[[38374,38854],[153,29]],[[39978,43252],[168,204],[366,-28],[395,72],[7,-122],[337,-243],[628,-155],[263,-194]],[[50015,40898],[1268,5]],[[51283,40903],[2,-738]],[[51285,40165],[76,6]],[[49830,40884],[98,13]],[[38528,38866],[-38,-290],[49,-1462],[-194,-296]],[[49797,40895],[25,-64]],[[51413,43047],[-34,-1017]],[[51491,44065],[-44,-99],[-34,-919]],[[51283,41345],[0,-442]],[[51208,39015],[-57,-186]],[[51285,40165],[-33,-354]],[[50257,35215],[92,-492]],[[50278,35395],[-21,-180]],[[51379,42030],[-3,-215]],[[50213,37844],[5,-563],[71,-325],[-11,-1561]],[[49914,44053],[-47,-536],[-121,-13],[2,-482]],[[49991,39369],[218,-108]],[[50209,39261],[13,-842]],[[48212,40510],[8,-1063],[418,-42],[5,-563]],[[48578,34562],[12,-974],[62,-677]],[[48566,35856],[12,-1294]],[[38514,39004],[14,-138]],[[50696,39270],[258,82]],[[50222,38326],[94,320],[275,507]],[[49961,37656],[252,188]],[[50141,38418],[81,-92]],[[49928,40897],[87,1]],[[49745,40894],[52,1]],[[50349,34723],[-2,-128]],[[51376,41815],[-93,-470]],[[51252,39811],[-11,-82]],[[49748,43022],[12,-773],[69,-17],[4,-872],[-72,-425]],[[50347,34595],[37,-197]],[[50222,38419],[-9,-575]],[[49948,40571],[43,-1202]],[[48647,38447],[-172,-155],[13,-1283],[69,-242],[9,-911]],[[48643,38842],[3,-291]],[[51208,39015],[6,-17]],[[51241,39729],[-35,-429]],[[51206,39166],[2,-151]],[[49761,40935],[-18,-58]],[[50344,34549],[99,6]],[[49814,40704],[16,180]],[[8539,29442],[-26,278],[327,707],[30,426],[265,531],[-93,837]],[[7934,35314],[-56,-556],[-105,-229],[107,-118],[-17,-698],[168,-483],[297,-60],[259,-346],[99,64]],[[9042,32221],[-51,429],[110,248],[-248,326]],[[8044,35887],[-110,-573]],[[11154,47527],[-277,462],[-289,290]],[[12337,52449],[254,-80]],[[8358,36384],[6,-303],[258,-1402],[121,-390],[143,-1027],[-199,-361],[16,-204],[-232,-801],[-203,-207],[-230,-814]],[[7486,37180],[384,-1165],[174,-128]],[[12514,50927],[-28,425],[117,664],[-25,319],[207,408]],[[13415,53417],[393,105],[251,-31]],[[12027,50444],[-160,886]],[[8044,35887],[314,497]],[[8374,37152],[-16,-768]],[[14148,53081],[448,-449]],[[14481,53817],[-264,-720]],[[14354,53646],[66,-3]],[[12785,52743],[324,602],[306,72]],[[14253,56947],[309,193],[237,-44]],[[7020,39753],[69,-429]],[[8834,40107],[-222,-518],[-419,45],[87,-553],[-32,-690],[185,-598],[-2,-529]],[[14018,52659],[101,347]],[[7384,37367],[4,-449]],[[7223,37974],[194,-294]],[[13807,52851],[175,111]],[[93430,16696],[-4,455],[-90,194],[208,312]],[[93954,23105],[-438,-608]],[[93516,22497],[-128,-426],[145,-108]],[[92642,16167],[488,-790],[-111,-394]],[[92158,21745],[508,-201],[105,250],[216,96],[36,320],[164,5],[329,282]],[[95113,22816],[28,-60]],[[95144,22869],[-28,-48]],[[94184,24453],[103,-469]],[[94091,24450],[93,3]],[[92613,24465],[42,-11]],[[92655,24454],[454,-101],[130,61]],[[93841,24350],[244,97]],[[93248,24422],[343,38],[94,-111]],[[93820,24173],[137,-410]],[[93313,21415],[217,-223]],[[94141,21714],[-369,-384],[-78,117]],[[94593,22055],[-452,-341]],[[94731,24018],[28,-450],[-105,-231],[-10,-1154]],[[94485,21454],[-130,-412],[-438,-724],[-110,-313],[144,-474]],[[93781,19226],[-195,-361],[34,-678]],[[93573,18165],[-29,-508]],[[93440,16697],[90,-367]],[[93558,20923],[138,-518],[230,-79]],[[93525,21147],[33,-224]],[[94070,20522],[234,-249]],[[92765,16528],[356,-36],[319,205]],[[93440,16697],[215,231]],[[93954,23105],[76,-445]],[[94030,22660],[-43,-174],[154,-772]],[[92637,24324],[471,-832]],[[92203,24785],[410,-320]],[[92613,24465],[-3,-89]],[[93533,21963],[101,-293]],[[94622,22001],[54,-47]],[[94409,22631],[200,-493]],[[93227,25047],[-80,-356],[101,-269]],[[93248,24422],[-97,-930]],[[93204,23333],[59,-204],[238,-63]],[[93694,21447],[-248,-483],[-194,135]],[[92876,18063],[48,-408],[-292,-505],[131,-687],[-121,-296]],[[92885,19249],[187,-359],[-179,-338],[0,-454]],[[94014,23481],[-60,-376]],[[93949,19532],[211,-25]],[[92725,18975],[494,-123],[303,609],[310,-221],[117,292]],[[92308,19672],[124,-75],[188,-675]],[[94030,22660],[334,-57],[200,106],[427,-44]],[[93863,22670],[167,-10]],[[93685,24349],[135,-176]],[[94605,22014],[-120,-560]],[[94991,22665],[-119,-184]],[[94829,22356],[-185,-173]],[[94644,22183],[-35,-45]],[[93108,23492],[43,0]],[[92610,24376],[27,-52]],[[94609,22138],[-4,-124]],[[94605,22014],[17,-13]],[[95113,22816],[-122,-151]],[[93151,23492],[53,-159]],[[93634,21670],[60,-223]],[[93741,22823],[122,-153]],[[90827,33739],[23,-277]],[[90755,39168],[-9,-492]],[[90318,33248],[-36,-166],[165,-526]],[[89973,34144],[121,-492]],[[90094,33652],[2,-25]],[[89419,37669],[230,329],[224,141],[235,369]],[[89014,38276],[42,117],[450,115],[212,-27]],[[89781,38565],[560,539]],[[89087,34147],[147,-225],[178,55]],[[90911,33367],[16,-567]],[[90699,33954],[67,17]],[[89837,36298],[68,-192]],[[88918,38381],[96,-105]],[[89966,36412],[-53,-34]],[[89718,38481],[63,84]],[[90341,39104],[141,50]],[[90514,33480],[263,-38]],[[89821,32882],[-138,-165],[-319,-742]],[[89341,34754],[-254,-607]],[[89837,36298],[-142,-539],[-145,-145]],[[88817,38834],[120,422],[456,371],[451,-11]],[[90774,36803],[113,-155]],[[89723,37662],[558,-195],[372,-410],[112,-256]],[[90315,37425],[543,285],[134,213]],[[89521,32967],[369,-701]],[[90108,38508],[62,-375],[-147,-811],[-24,-659]],[[89806,34520],[-197,-453],[-23,-355]],[[89863,36050],[86,-282],[-14,-758]],[[89550,33653],[-156,-426],[50,-351],[-196,-198],[-62,-454]],[[88959,38778],[487,174],[171,-18],[650,310],[215,-90]],[[90857,39381],[19,29]],[[88867,33838],[220,309]],[[90962,36829],[-110,-556]],[[89811,33583],[-88,-219]],[[90731,33375],[-208,-650],[-106,-146]],[[90578,35449],[-262,-351]],[[90109,33062],[-288,-180]],[[90318,33248],[-209,-186]],[[89527,35312],[-186,-558]],[[90774,36803],[448,121]],[[90887,36648],[113,-95]],[[89443,37601],[280,61]],[[89339,37930],[85,-322]],[[89905,36106],[300,-848],[275,-537],[128,-524]],[[90802,33892],[25,-153]],[[90850,33462],[44,-76]],[[89424,37608],[312,-654],[259,-379]],[[89995,36575],[213,-537],[53,-837]],[[89014,38276],[67,-29]],[[89818,34582],[-12,-62]],[[89550,35614],[-15,-322],[353,-491]],[[90352,33367],[-34,-119]],[[89935,35010],[-46,-126]],[[89993,36545],[-27,-133]],[[89999,36663],[-4,-88]],[[89409,34801],[479,53],[188,-56],[184,-395],[297,-247]],[[88804,34795],[132,49]],[[89349,37575],[75,33]],[[90482,39154],[233,154]],[[90830,33458],[20,4]],[[90852,36273],[-228,-554],[-138,-1018]],[[89410,35837],[13,-11]],[[88801,34796],[3,-1]],[[88960,38194],[54,82]],[[90607,34358],[19,17]],[[90648,34068],[240,-161]],[[90699,33900],[128,-400]],[[90911,33367],[-2,-578]],[[90262,34092],[72,51]],[[89723,33364],[-134,-309]],[[91109,36046],[-35,-375],[-243,114],[-253,-336]],[[90082,33877],[180,215]],[[90334,34143],[24,27]],[[90514,33480],[312,272]],[[90608,34197],[4,-109]],[[90612,34088],[190,-196]],[[89843,36361],[62,-255]],[[89423,35826],[127,-212]],[[89539,33693],[11,-40]],[[90557,34156],[55,-68]],[[90564,34374],[43,-16]],[[88817,38834],[267,-588],[255,-316]],[[89339,37930],[86,-55]],[[89387,37746],[-42,-176]],[[92188,18658],[-75,-858],[-333,-180],[-284,-445],[45,-298]],[[91306,22007],[9,-427]],[[91075,18398],[-6,-373],[168,-233],[-21,-611],[209,-251]],[[90997,19441],[5,-323],[126,-652]],[[91618,22874],[-304,-11],[-195,-275]],[[91906,23392],[-180,-436],[-88,6]],[[92178,23618],[-260,-219]],[[90197,18357],[396,36]],[[91425,16930],[116,-53]],[[91315,21580],[280,-320]],[[91918,23399],[-12,-7]],[[92194,16312],[443,-143]],[[90310,19122],[251,-182],[32,-547]],[[90593,18393],[171,-145],[386,239],[117,-70],[335,145],[290,259]],[[89758,17470],[307,35]],[[90964,25314],[371,-240],[398,17],[221,-189],[223,25]],[[91304,19659],[138,28],[602,-1078],[143,56]],[[89616,17370],[157,124],[102,1184],[278,113]],[[91493,19804],[148,138],[219,-53],[68,-326],[380,109]],[[91541,16877],[100,-118]],[[90272,19030],[115,104]],[[22156,40337],[267,-442],[97,85]],[[21257,42904],[35,1024],[291,273]],[[21371,44457],[187,-257]],[[22422,39082],[-188,-304]],[[22464,39417],[-26,-148]],[[22303,35508],[-60,-570],[90,-505]],[[22438,39269],[-16,-187]],[[22239,37035],[27,237],[-97,864]],[[22449,45184],[226,-549],[305,-435],[3,-194],[283,-375],[324,-761],[165,-589]],[[18205,50158],[-33,-294]],[[22440,39811],[80,169]],[[21742,43447],[-123,-776],[294,-1236]],[[23979,52531],[660,-445],[-1,-177],[351,-265],[139,102]],[[22475,39320],[62,-273],[479,-523]],[[23707,41721],[195,-269],[89,-337],[382,-365],[347,-503]],[[26413,39498],[38,-355],[126,-171],[-60,-372],[95,-108],[163,-1049]],[[20444,42332],[121,28],[170,974],[230,-32]],[[21581,44301],[2,-100]],[[22760,33552],[309,-30],[205,-322],[120,-369],[105,198],[118,-281]],[[19315,50458],[205,-321],[602,-1575],[-78,-393],[63,-332],[238,-654],[265,-246],[83,-1519]],[[21583,44201],[159,-754]],[[21742,43447],[215,4],[448,-1079],[153,-201],[69,-360],[-100,-1045],[139,-365]],[[22535,40019],[-71,-602]],[[22812,33113],[91,-547]],[[22455,39503],[20,-183]],[[22333,34433],[125,-20],[-11,-309],[313,-552]],[[22266,34415],[67,18]],[[22760,33552],[52,-439]],[[22190,36975],[147,-574]],[[22230,37322],[21,-7]],[[51930,83213],[348,-383],[594,56],[160,-100]],[[46278,97788],[-134,-33]],[[51576,84051],[618,-96]],[[47367,81030],[-19,-53]],[[47348,80977],[-22,-220]],[[29601,74248],[-1,-29]],[[48302,73778],[-22,5]],[[44542,68859],[108,708],[41,1215],[249,251],[142,645],[147,240],[22,1207],[-211,372],[45,199],[-35,1012],[83,265],[-6,510],[-100,551]],[[44217,78271],[270,-315],[532,-123],[428,310],[540,-87],[188,72]],[[43265,79013],[844,-349],[96,-266]],[[40397,78909],[434,42],[385,245],[326,26]],[[41555,79206],[419,-61],[803,102],[379,-212],[101,41]],[[38455,78894],[271,-233],[205,159],[627,152],[246,-110],[593,52]],[[53742,68592],[124,822],[-199,700]],[[46278,97788],[338,98],[405,-21],[554,267],[213,360]],[[44570,66601],[21,-272],[-111,-785]],[[44271,75965],[-104,643],[-41,1577]],[[48821,70502],[-240,923],[-26,597],[-99,131]],[[44365,79760],[-457,-32],[-235,310],[-138,397],[-282,196]],[[40952,83533],[556,-326],[93,-559],[240,-155],[446,26],[206,-292],[211,-488],[209,-200],[90,-450],[236,-407]],[[42578,70460],[322,63],[212,-235],[411,142],[588,-63],[1316,81],[366,-24],[94,311],[717,-232],[159,-139]],[[40262,70054],[350,-45],[735,271],[359,28],[181,-293],[168,123],[386,34],[97,117]],[[38455,69918],[417,102],[964,93],[426,-53]],[[38489,56995],[-49,1680]],[[36822,78618],[-41,476],[-132,622],[-15,595],[-602,727],[-35,147]],[[55060,69555],[-440,292],[-363,149],[-121,-107],[-238,388]],[[53898,70277],[-149,247],[-441,15],[-165,90],[-433,-87],[-431,133]],[[48404,73641],[-213,204]],[[49110,85033],[-105,50]],[[49005,85083],[-313,415],[-288,650]],[[48303,86474],[18,150],[-161,912],[9,684],[119,687]],[[48390,89335],[-102,-428]],[[43436,74038],[-391,665],[-50,263],[38,907]],[[43004,75905],[32,912],[119,777],[37,1102],[104,556],[-74,1094],[17,336]],[[43360,80955],[-15,629],[-105,421],[128,175],[-43,852],[78,265],[-207,350],[21,803],[-123,1261],[-183,570],[32,1378]],[[42939,87665],[-68,652]],[[46688,77094],[379,54],[236,140],[497,61],[411,-71]],[[45821,77106],[861,-12]],[[49009,76571],[1257,-193],[271,175]],[[50571,76577],[203,-353],[305,174],[459,127]],[[51894,76095],[240,68],[561,-296],[176,73],[614,-409],[730,-115],[176,82]],[[48116,84742],[550,352],[339,-11]],[[51507,84593],[95,-64]],[[49129,85021],[520,-154],[649,-397],[603,244],[603,-121]],[[47643,97894],[424,74],[218,-110],[273,46]],[[38336,68301],[618,111]],[[48544,71152],[210,172]],[[53310,83946],[-82,30]],[[53449,83500],[-58,283]],[[53161,84341],[24,270]],[[53347,83819],[-37,127]],[[41347,61040],[35,3]],[[52478,73965],[-288,640],[-57,354]],[[45198,84167],[167,59],[256,542]],[[45402,85144],[-12,-392],[90,-256]],[[48466,71417],[207,-152]],[[48437,72987],[-137,322],[-28,381]],[[53391,83783],[-44,36]],[[49674,80806],[335,-389],[250,-96]],[[48780,90451],[-161,382],[-261,46]],[[29546,73621],[383,96],[132,326],[-66,460]],[[51930,83213],[-62,127],[-7,1038],[228,281]],[[52387,84881],[784,485]],[[41382,61043],[-1,29]],[[54498,83511],[336,-4],[520,-236]],[[51776,84580],[12,-156]],[[51788,84424],[-212,-373]],[[45808,67482],[283,99]],[[48270,72282],[-83,62]],[[48836,75000],[-11,277]],[[50537,76553],[34,24]],[[48667,77022],[165,-274]],[[48211,77278],[329,-154]],[[48034,84717],[82,25]],[[51602,84529],[186,-105]],[[51788,84424],[294,-59],[245,-239]],[[44570,68837],[311,348],[169,14],[361,441],[228,86],[357,434],[546,33]],[[55300,82298],[546,-666]],[[29590,74193],[4,30]],[[48659,71902],[245,-372]],[[49009,76571],[392,-705],[405,-615]],[[46625,91485],[75,-55]],[[45524,90919],[420,334],[343,151]],[[47059,75156],[236,8],[411,278],[280,928],[461,393]],[[46952,75159],[107,-3]],[[55552,83040],[-73,164]],[[47811,81522],[401,-25],[347,417],[356,238],[523,129]],[[53303,80126],[411,44],[297,-209],[426,-109],[197,-219],[316,-96],[369,-266],[232,96],[549,540]],[[48914,87764],[-108,-117]],[[51621,74551],[340,334],[488,210],[163,189]],[[51033,73880],[337,428]],[[39100,71843],[612,-190],[673,67],[393,173],[546,144],[304,-98],[1121,25],[998,64],[84,-59],[337,258],[454,-184],[695,53],[388,180],[184,-73]],[[45889,72203],[251,74],[579,-314],[255,3]],[[47505,89583],[425,844]],[[46680,86359],[313,661]],[[47160,87399],[12,357],[145,919]],[[48055,84810],[320,716],[29,622]],[[45821,77106],[2,197],[376,895],[387,420],[165,358],[374,440],[88,414],[26,676]],[[47758,84186],[261,490]],[[47582,82133],[15,1466],[49,474]],[[44210,78317],[7,-46]],[[48334,78744],[179,438],[367,411],[205,-14]],[[52016,80113],[290,44],[435,-161],[263,-270],[176,298]],[[50374,80200],[391,-737],[373,-92],[226,-209]],[[49171,79708],[132,441]],[[53667,70114],[79,747],[-40,279]],[[53204,70680],[70,1883],[-5,516],[-236,230]],[[40752,84924],[-67,133]],[[48887,73083],[390,389]],[[52192,77019],[52,792],[445,463],[170,455],[349,260],[369,28],[369,241]],[[50209,74867],[83,145],[940,373],[292,451],[265,127]],[[51894,76095],[100,497],[173,247]],[[53946,79258],[472,572]],[[45116,81699],[97,178],[266,29],[602,-222]],[[43728,81544],[1108,31],[240,70]],[[46142,82015],[792,46],[278,-135]],[[44992,76055],[-51,258],[-325,678],[-66,477],[-339,803]],[[47415,73412],[-592,450],[-129,280]],[[47941,70314],[329,-38],[480,91]],[[46807,70470],[518,110],[208,-208],[314,-26]],[[49091,70368],[374,57]],[[50361,70666],[480,72]],[[36884,69447],[328,114],[114,205]],[[38661,59445],[129,538],[-58,337],[117,362],[-10,518],[-345,633],[37,325],[-75,1535],[154,302],[8,664],[-72,1500],[-43,176],[-68,1471],[-85,235],[-57,843],[164,988]],[[41567,87506],[519,-641],[288,-147],[725,53],[334,-117],[246,101],[478,4],[142,-229],[338,-57]],[[54739,75309],[-348,189]],[[54520,74406],[14,197]],[[41485,61045],[338,-205],[328,-493],[380,-291]],[[42608,59537],[32,-120],[706,-550]],[[40592,67026],[491,83],[370,-144],[635,84],[170,112],[252,-115]],[[40313,68129],[93,-1021]],[[41820,77015],[-294,284],[-227,58],[-312,536],[-420,52],[-176,141],[-984,-506],[-556,-36],[-299,265],[-309,21]],[[35849,79696],[-233,232],[-236,515],[-252,31]],[[36470,78548],[-267,560],[-354,588]],[[46324,74736],[-266,511],[-307,195]],[[44262,75964],[-396,-51],[-533,-224],[-300,184]],[[44662,76085],[-391,-120]],[[45064,76007],[-72,48]],[[48191,73845],[-485,213],[-497,443],[-178,23],[-394,-274]],[[48618,73524],[-214,117]],[[49056,73312],[-150,119]],[[50042,68407],[254,484],[17,435],[324,443],[219,847],[-15,122]],[[53802,77763],[274,174],[270,340],[103,662],[-54,1088],[90,234],[-1,792]],[[50919,70831],[479,748],[273,266],[435,571],[66,387],[150,335]],[[54717,81520],[187,444]],[[37729,65773],[830,68],[127,182],[1115,128]],[[42525,67047],[452,-259],[442,384],[608,89],[373,-379],[114,-296]],[[44863,66727],[114,-302]],[[49071,78903],[27,607],[73,198]],[[49171,79708],[-107,218],[-52,1304],[116,481],[72,994],[94,584],[-89,206],[4,801]],[[48861,77454],[34,486],[190,668],[-14,295]],[[48303,86474],[101,-326]],[[54386,72990],[94,-2]],[[52844,72883],[727,289]],[[54590,73043],[276,148]],[[53903,73165],[401,-91]],[[52242,68703],[372,1],[286,188],[759,207],[568,317]],[[36848,70094],[475,-329],[1132,159]],[[50269,68815],[291,100],[499,-33],[435,57],[432,-222]],[[50020,68726],[249,89]],[[43433,74044],[30,361],[182,464],[227,262],[399,834]],[[45064,76007],[288,239],[469,860]],[[51888,76078],[6,17]],[[54739,75309],[471,-113]],[[38661,59445],[798,123]],[[46366,85242],[288,74],[162,403],[148,85],[503,-174],[326,101],[216,230],[294,513]],[[44742,80369],[90,484],[272,834]],[[43159,77936],[434,-19],[533,268]],[[45110,81693],[-130,709],[36,418]],[[44210,78317],[-5,81]],[[44205,78398],[135,487],[-46,426],[79,490],[176,252]],[[47646,84073],[112,113]],[[53650,82648],[557,126],[182,-51]],[[52628,83737],[28,-70]],[[52656,83667],[179,-181]],[[54739,75373],[246,1503],[6,231],[232,513],[72,779]],[[55314,78884],[-33,307],[66,507],[166,502],[-147,912]],[[51312,74401],[189,23]],[[52387,84881],[-106,1233]],[[52281,86114],[-8,444]],[[51501,74285],[137,-209],[440,-67],[485,-201]],[[49806,75251],[394,-477],[738,-188],[374,-185]],[[52273,86558],[147,160]],[[48960,72656],[-25,486]],[[46700,91430],[612,-170],[229,53]],[[47547,91364],[287,14]],[[46287,91404],[338,81]],[[55597,82888],[217,-452]],[[50510,72957],[176,546],[347,377]],[[51498,74424],[123,127]],[[46974,71966],[462,201]],[[47408,89115],[97,468]],[[47317,88675],[65,180]],[[47930,90427],[399,463]],[[46993,87020],[167,379]],[[46021,85424],[285,276],[374,659]],[[47579,81908],[3,225]],[[47638,81632],[-62,241]],[[47239,80506],[109,471]],[[48019,84676],[36,134]],[[53180,80024],[123,102]],[[48245,78644],[89,100]],[[53706,71140],[16,852],[-82,680],[113,716]],[[53123,70432],[81,248]],[[53033,73309],[-416,301],[-54,198]],[[46324,97373],[-46,415]],[[52167,76839],[25,180]],[[51789,75963],[59,103]],[[49495,73782],[512,261]],[[47617,81586],[194,-64]],[[49623,82318],[427,-163],[234,181],[678,112]],[[49438,82281],[185,37]],[[46694,74142],[-57,108]],[[48156,72471],[-278,369],[-85,288],[-378,284]],[[48750,70367],[84,2]],[[49465,70425],[36,1]],[[47847,70346],[94,-32]],[[48834,70369],[257,-1]],[[49501,70426],[356,10],[504,230]],[[54391,75498],[-115,177]],[[54480,72988],[40,1418]],[[54520,74406],[14,197]],[[54534,74603],[205,706]],[[39830,62109],[249,-128]],[[40079,61981],[0,0]],[[40079,61981],[447,-227],[810,-657],[149,-52]],[[40406,67108],[40,-95]],[[40446,67013],[146,13]],[[43033,75873],[-288,409],[-389,228],[-284,332]],[[48906,73431],[-288,93]],[[44992,76055],[-330,30]],[[45751,75442],[-242,99],[-445,466]],[[46637,74250],[-126,59],[-187,427]],[[50841,70738],[-9,46]],[[54484,81053],[233,467]],[[50832,70784],[87,47]],[[39801,66151],[502,343],[143,519]],[[48791,76932],[70,522]],[[54480,72988],[110,55]],[[47436,72167],[243,19]],[[50363,72296],[161,1],[1130,249],[374,-20],[573,296],[243,61]],[[53571,73172],[332,-7]],[[54304,73074],[82,-84]],[[51926,68717],[316,-14]],[[43482,73415],[-46,623]],[[48832,76748],[177,-177]],[[44549,80053],[193,316]],[[41966,77171],[692,251],[172,400],[329,114]],[[38442,58687],[219,758]],[[46064,85109],[302,133]],[[48380,86355],[227,218],[326,702]],[[44126,78185],[84,132]],[[53129,83200],[311,-490],[210,-62]],[[54389,82723],[648,-157]],[[55814,82436],[38,4]],[[55295,78399],[19,485]],[[54739,75309],[0,64]],[[55366,81112],[-450,529],[-12,323]],[[48754,71324],[150,206]],[[53160,84075],[1,266]],[[53256,83855],[-90,215]],[[45480,84496],[316,-205],[341,37],[67,164]],[[52642,83985],[518,90]],[[52449,83906],[-62,975]],[[41820,77015],[138,120]],[[47968,91490],[372,336]],[[48447,76763],[299,336]],[[51576,84051],[15,-329]],[[48340,91826],[137,203]],[[49546,72178],[472,463],[492,316]],[[47382,88855],[26,260]],[[47576,81873],[3,35]],[[49277,73472],[218,310]],[[48660,72540],[227,543]],[[48441,72199],[159,258]],[[47212,81926],[237,76]],[[49436,72402],[-280,523],[-100,387]],[[42072,76842],[-252,173]],[[54993,82348],[39,109]],[[54904,81964],[89,384]],[[50046,68169],[-96,92],[-68,551],[-3,632],[68,239],[-276,1690],[-110,248],[-48,446]],[[48847,76835],[-24,-76]],[[43476,72905],[-67,384],[79,132]],[[48540,77124],[127,-102]],[[52835,83544],[294,-344]],[[64301,60467],[41,-69]],[[74940,57074],[612,-81],[124,-132],[183,255]],[[75859,57116],[696,48]],[[74369,57278],[-218,-197],[-105,-629]],[[74003,55059],[142,576],[-64,224]],[[69087,62095],[-341,-660]],[[68966,57780],[-132,435],[102,417],[123,1155],[113,549]],[[69172,60336],[-239,819],[-181,238]],[[68752,61393],[-6,42]],[[68752,61393],[-114,-1478]],[[68792,59302],[102,-740]],[[69032,57665],[272,857],[-5,1619],[-127,195]],[[77846,55416],[275,-194],[215,102]],[[76008,57096],[381,-453],[254,-520]],[[75465,58202],[494,-362],[80,-411]],[[74582,57376],[356,320]],[[68720,56234],[-227,-65],[-328,-296]],[[69322,58957],[181,691],[278,476],[320,118],[201,282]],[[70322,60562],[256,530],[-29,93]],[[75305,57626],[115,-1],[439,-509]],[[74571,58216],[367,-520]],[[74938,57696],[312,-65]],[[66268,60054],[1004,-70],[152,200],[234,37],[178,-194],[120,94],[317,-263],[367,-43]],[[68673,59729],[240,-66]],[[67798,56447],[181,-26]],[[69664,61503],[-327,-1035],[-147,-76]],[[64636,57117],[-81,120],[-11,468],[138,345]],[[64874,59153],[-34,-357]],[[69971,57282],[210,398],[213,-6],[162,289],[335,148],[251,-108],[630,89],[212,-202],[618,-48],[101,139],[410,175]],[[70470,58696],[388,403],[146,22]],[[65293,60030],[547,-1321],[73,-62]],[[63147,62310],[149,-324],[311,-324],[185,-422],[251,-231],[220,-485]],[[67979,56421],[94,-78]],[[74369,57278],[144,0]],[[73920,56225],[161,-366]],[[68638,59915],[35,-186]],[[74515,58257],[62,-36]],[[68969,57540],[-78,-35]],[[69415,58090],[408,624]],[[75250,57631],[55,-5]],[[65710,59921],[453,187],[105,-54]],[[65503,59888],[52,-18]],[[64934,59444],[-60,-291]],[[65091,59717],[-118,-266]],[[64840,58796],[-108,-244],[-50,-502]],[[63245,62096],[123,-7]],[[69852,58756],[441,57],[177,-117]],[[65162,60291],[131,-261]],[[64955,60327],[162,-48]],[[67248,57267],[540,-375]],[[67286,61160],[-110,-352],[71,-208],[-171,-117],[78,-1213],[-73,-211],[94,-352],[-110,-469],[183,-971]],[[67533,62363],[-205,-450],[70,-325],[-111,-422]],[[67788,56892],[-3,-303]],[[67789,56559],[9,-112]],[[71743,56318],[201,-294],[73,-475],[136,-259]],[[69735,61405],[193,-259],[119,-493],[255,-129]],[[70322,60562],[83,-131]],[[70772,59610],[233,-302]],[[73472,57595],[273,-346]],[[75669,56223],[119,-90]],[[75786,56116],[238,-233],[183,154]],[[74970,56517],[204,-401],[431,-413]],[[76107,55454],[144,-225]],[[72119,61312],[-3,-286],[-207,-244],[-5,-502],[607,-1842],[40,-411],[-114,-202]],[[72408,57678],[-75,-390],[173,-1144],[-71,-573],[-303,-278]],[[74745,59289],[-162,-260],[-172,63],[-51,-230],[75,-384]],[[74435,58478],[94,-189]],[[74535,57919],[-1,-6]],[[67798,56447],[48,-124]],[[69613,61453],[51,50]],[[78227,55797],[-387,-186]],[[69698,62088],[-34,-585]],[[69683,61436],[-41,-379],[103,-513],[64,-805]],[[69823,58714],[11,-510],[108,-912]],[[69838,58858],[1,-117]],[[69945,57292],[33,-579],[-83,-553]],[[75395,55648],[-279,-270]],[[72199,61561],[21,125]],[[73502,57554],[-161,-373],[-229,-278],[-52,-307],[210,-690],[-38,-198],[170,-548]],[[73038,58369],[124,-339]],[[73363,57810],[109,-215]],[[72824,58942],[31,-140]],[[72437,60213],[56,-326]],[[69560,56687],[354,-554],[12,-534]],[[77651,55308],[66,-109]],[[65388,58847],[347,-184],[144,70]],[[67745,56291],[-50,-121]],[[69084,56903],[-351,-548],[20,-588]],[[70302,60524],[20,38]],[[69823,58714],[16,27]],[[74031,59027],[404,-549]],[[73620,60062],[37,-365],[202,-367]],[[73294,61476],[26,-684],[236,-331],[54,-344]],[[77971,54305],[509,191],[182,527]],[[67850,62318],[278,-629],[92,-755]],[[68800,57022],[-54,-652]],[[75661,58566],[-161,-84],[-35,-280]],[[64154,61859],[71,-8]],[[66336,61661],[473,-267]],[[63368,62089],[231,-48]],[[64811,61644],[226,108]],[[65204,61796],[452,126]],[[66048,61680],[163,8]],[[67289,61160],[171,-106],[533,129],[98,167],[570,45]],[[69683,61436],[52,-31]],[[69735,61405],[373,337],[159,-61]],[[69550,61434],[63,19]],[[66866,61346],[421,-180]],[[66548,59230],[-100,-968],[-95,-308],[-342,-417]],[[65989,57505],[-40,-771]],[[65913,58647],[495,-198],[333,55],[180,-235]],[[67891,58133],[487,-270],[262,89],[147,-174]],[[67127,58194],[108,-97],[558,-2]],[[71004,59121],[6,-1]],[[63705,62869],[-141,-183],[-371,-189]],[[64337,60533],[5,-135]],[[66323,57059],[332,-324],[181,-36],[207,-356]],[[64342,60398],[592,-954]],[[62965,62334],[182,-24]],[[62840,62387],[122,17]],[[64973,59451],[490,-736],[269,-588]],[[65978,57629],[33,-92]],[[67435,56394],[358,-69]],[[67938,56070],[140,-184]],[[71493,57445],[44,-201]],[[71555,57036],[194,-479],[-6,-239]],[[74016,57419],[153,181]],[[70405,60431],[94,-190]],[[70627,59869],[145,-259]],[[71005,59308],[-1,-187]],[[73745,57249],[120,76]],[[73903,57359],[110,60]],[[75305,57626],[-114,-422]],[[71010,59120],[205,-100],[407,-697],[-47,-243]],[[74732,57187],[669,-567],[268,-397]],[[76207,56037],[356,145],[222,-102],[420,-517],[228,-140]],[[76251,55229],[590,-595],[284,-58],[457,-275]],[[75395,55648],[210,55]],[[75605,55703],[502,-249]],[[74669,57212],[301,-695]],[[72408,57678],[29,147]],[[74529,58289],[6,-370]],[[74534,57913],[13,-430]],[[77840,55611],[6,-195]],[[77846,55416],[-129,-217]],[[69838,58858],[-29,881]],[[69664,61503],[19,-67]],[[74893,54872],[-30,-11]],[[75116,55378],[-219,-536]],[[75773,56477],[19,-333],[-92,-461]],[[73162,58030],[201,-220]],[[72493,59887],[331,-945]],[[72399,60425],[38,-212]],[[73472,57595],[30,-41]],[[72855,58802],[183,-433]],[[68673,59729],[119,-427]],[[73840,57899],[253,460],[422,-102]],[[65913,58647],[-34,86]],[[67695,56170],[-59,-214]],[[73859,59330],[172,-303]],[[73620,60062],[-10,55]],[[64053,58629],[63,431],[468,774],[462,302]],[[77777,54356],[194,-51]],[[68220,60934],[-13,-377],[245,-795],[221,-33]],[[75465,58202],[-156,-325],[-4,-251]],[[70267,61681],[244,-402],[119,-32],[70,-333],[230,-231]],[[72887,60950],[408,-18]],[[68661,61395],[44,145],[465,-123],[158,-124],[222,141]],[[63599,62041],[555,-182]],[[64225,61851],[321,-334],[265,127]],[[66809,61394],[57,-48]],[[66211,61688],[125,-27]],[[65037,61752],[167,44]],[[66011,57537],[-22,-32]],[[67793,58095],[98,38]],[[66921,58269],[206,-75]],[[62962,62404],[3,-70]],[[67043,56343],[392,51]],[[67846,56323],[92,-253]],[[66011,57537],[312,-478]],[[65732,58127],[246,-498]],[[64934,59444],[39,7]],[[71097,60923],[77,221]],[[71560,57954],[-67,-509]],[[72145,61518],[-28,-229],[282,-864]],[[76972,54564],[7,-149]],[[77526,55413],[125,-105]],[[74222,57683],[92,198],[220,32]],[[49694,27270],[155,60]],[[47637,32373],[-35,-2700]],[[37624,25822],[-226,445],[100,228]],[[37782,26184],[318,-81]],[[37854,28607],[448,55],[-144,-360],[2,-261]],[[38044,27911],[61,-491],[-321,-708],[-57,-419]],[[38139,30065],[129,-327],[99,-574],[142,-279],[107,-1246]],[[47359,32027],[2,273],[406,77],[391,191],[51,158],[439,11]],[[46980,31793],[81,229],[298,5]],[[48652,32882],[56,-27]],[[49324,23449],[471,364],[258,15],[292,-280]],[[42255,26728],[1349,48]],[[40305,28031],[586,152],[489,-312],[713,35],[104,-78],[53,-1095]],[[49805,27329],[467,5],[64,163]],[[37059,28526],[122,167],[652,-78]],[[38511,27707],[105,-68]],[[36968,30285],[200,97],[355,-64],[95,-429],[413,75]],[[49720,31239],[471,-18]],[[37597,25059],[111,-61],[614,130],[57,-155],[933,-976],[124,-73],[1351,145],[365,-79],[509,54],[258,191],[742,12],[496,-446],[246,94],[398,508],[319,-18]],[[49177,25084],[38,1]],[[44153,24388],[412,-141],[668,46],[706,119],[-11,531],[752,35],[104,91],[412,-58],[660,86],[1040,34],[75,-51]],[[48649,32662],[-31,-957],[10,-1250],[57,-16],[18,-1956],[451,10],[12,-1232]],[[48652,32911],[-5,-29]],[[49167,27129],[9,-1219],[39,-825]],[[49215,25085],[94,-166]],[[47275,28261],[309,185]],[[47542,29676],[36,-143],[6,-1087]],[[47275,28261],[11,-1110]],[[48708,32855],[371,2],[307,341],[331,34]],[[38668,27541],[-52,98]],[[48971,25080],[206,4]],[[49215,25085],[90,2]],[[38668,27541],[29,-130]],[[48647,32882],[2,-220]],[[83263,60665],[52,-49]],[[83318,60615],[40,-11]],[[80326,61104],[-95,-141]],[[79724,65693],[58,-249],[6,-670],[99,-418],[376,-427],[213,-82]],[[82068,67669],[30,-566],[141,-1012],[66,-94],[-137,-446],[250,-695],[-100,-809]],[[82323,63628],[-35,-880],[36,-204]],[[83266,60664],[186,-110],[133,-296]],[[83036,61099],[227,-434]],[[82351,62484],[228,-302]],[[82579,62182],[159,-573],[264,-407]],[[83315,60616],[3,-1]],[[83153,66778],[30,-379],[119,-208]],[[82099,67678],[274,-230],[273,-6],[407,-537]],[[81801,68794],[-10,-220],[235,-348],[43,-540]],[[83341,66104],[193,-312],[322,-82],[44,-294]],[[83900,65416],[171,76],[238,-255]],[[81112,64393],[532,658],[312,549],[295,194],[745,720],[286,353]],[[78744,63742],[274,217],[438,66]],[[77304,61060],[136,422],[-51,469],[61,350]],[[77039,60356],[265,704]],[[79915,64273],[492,502],[137,-116],[206,395],[336,75],[348,317]],[[79457,64037],[200,-1],[258,237]],[[82744,69595],[-106,-131],[-273,136],[-253,-170]],[[81869,68466],[-143,-316],[-62,-618],[74,-172],[-110,-1029],[-141,-722]],[[80956,63375],[-39,-2473],[-127,-426]],[[78466,64587],[16,-415],[196,-556]],[[78731,65528],[-50,-405],[-228,-510]],[[78762,60907],[-115,368],[183,292],[-2,552],[-89,268],[68,671]],[[78775,60376],[201,-871]],[[79440,66289],[490,64],[198,-130],[407,511]],[[80546,66755],[208,841]],[[81395,68521],[211,939]],[[80746,67615],[583,553],[66,353]],[[77273,63150],[5,-178],[272,-353]],[[82351,63550],[63,-411],[640,-1173]],[[81184,68035],[103,-314],[18,-562],[-126,-738]],[[81198,68054],[-114,651],[116,575]],[[81555,64833],[220,-286],[11,-303],[-207,-599],[-56,-868]],[[81501,65258],[39,-327]],[[81664,60981],[112,-477]],[[81590,61342],[69,-354]],[[82587,63252],[556,-774]],[[82378,63578],[209,-326]],[[79714,62900],[150,211],[257,-22],[191,194],[289,81]],[[79021,62291],[49,-23]],[[79070,62268],[334,390],[310,242]],[[78258,62352],[305,-176],[294,60]],[[81771,69929],[231,-130],[146,-266]],[[85657,62924],[-249,-470],[-490,-331]],[[82934,60319],[346,229]],[[82318,64047],[12,-327]],[[85050,64244],[361,-871]],[[83053,66905],[100,-127]],[[82112,69430],[-113,-534]],[[80790,60476],[-126,-333]],[[78678,63616],[-65,-149]],[[81512,70158],[389,25],[379,161],[-110,257]],[[79346,66065],[94,224]],[[83949,61749],[186,337],[-37,158]],[[81540,64931],[15,-98]],[[78857,62236],[164,55]],[[79387,65087],[86,-379],[-68,-330],[52,-341]],[[79458,64013],[67,-820]],[[79645,62811],[46,-428]],[[79627,62998],[19,-175]],[[79627,62998],[-102,195]],[[79621,61936],[229,-332],[295,-237],[123,-272]],[[79070,62268],[431,-268]],[[80338,61043],[141,-624],[144,-272]],[[77712,64166],[426,-355],[108,-242],[335,-159]],[[79501,62000],[98,18]],[[81875,60390],[319,-79],[411,79]],[[81196,60755],[350,-214],[230,-37]],[[80626,60811],[292,97]],[[80326,61104],[12,-61]],[[80338,61043],[233,-247]],[[83496,62222],[-148,247]],[[80476,63847],[325,-81]],[[82151,61672],[121,-286],[332,-359],[264,-454]],[[81612,62519],[155,-335],[384,-512]],[[82934,60319],[-95,-322]],[[80894,63667],[25,-24]],[[80801,63766],[47,-47]],[[76377,62330],[157,-22],[74,-250]],[[77833,61140],[84,-101]],[[83002,61202],[34,-103]],[[81534,70968],[-11,-302]],[[79448,61137],[156,527],[87,719]],[[78186,62850],[252,317]],[[78074,62605],[112,245]],[[79456,64025],[1,12]],[[77547,62514],[42,8]],[[80856,63952],[49,-235]],[[80644,60124],[-12,-208]],[[81468,65537],[2,-65]],[[80922,63701],[75,-37]],[[78736,63198],[71,-140]],[[78794,60453],[-19,-77]],[[78453,64613],[13,-26]],[[79367,65356],[20,-269]],[[79387,65087],[-167,-172],[-288,-513],[-12,-296],[-242,-490]],[[78678,63616],[-97,-206]],[[78581,63410],[-143,-243]],[[78438,63167],[18,-63]],[[78446,62931],[-104,-452],[-329,-576],[-44,-547],[-194,-361],[32,-307]],[[77541,62480],[5,22]],[[77589,62522],[20,-11]],[[80384,67980],[71,-82]],[[81452,65559],[62,-16]],[[80342,61118],[-109,-44],[-57,-485],[58,-262],[-127,-345],[7,-478]],[[81477,70272],[-119,-673],[-333,-498],[-116,-1356],[10,-519]],[[80956,67135],[7,-701],[-74,-1661]],[[80899,63624],[13,-203],[-235,-1052]],[[80437,61653],[-11,-109]],[[80630,62204],[-58,-132]],[[83484,63416],[595,-118],[57,-139],[346,209],[399,-102]],[[80924,63659],[30,-25]],[[78466,64587],[685,-237],[101,-211],[638,-377],[586,85]],[[78283,64869],[170,-256]],[[83345,62505],[-89,-347]],[[83036,61099],[-168,-526]],[[82888,60396],[-204,-363]],[[83015,61800],[-13,-598]],[[84051,65003],[-300,-259],[-362,-125],[-241,136]],[[81819,62971],[-118,-352]],[[81134,60730],[-35,-139]],[[81659,62512],[-69,-1170]],[[81590,61342],[-198,-108],[-171,-356]],[[82991,64597],[-329,-176]],[[81985,63204],[-166,-233]],[[81470,65472],[31,-214]],[[81776,60504],[99,-114]],[[81875,60390],[-69,-153]],[[84885,63224],[7,-397]],[[84892,62827],[221,-488],[-5,-330]],[[84897,63250],[-22,449],[-164,412],[-109,709],[24,323]],[[80885,63639],[39,20]],[[80954,63634],[129,103]],[[82222,63507],[101,121]],[[77675,62573],[176,-216],[223,248]],[[80905,63717],[17,-16]],[[77450,62301],[91,179]],[[77239,62054],[124,178]],[[76608,62058],[27,35]],[[80268,66130],[-217,-323],[-327,-114]],[[80268,66130],[486,163],[563,105],[183,147],[117,-106],[461,105]],[[82605,60390],[267,58]],[[80918,60908],[216,-178]],[[81519,62643],[93,-124]],[[79285,66132],[249,-364],[190,-75]],[[82868,60573],[20,-177]],[[82888,60396],[46,-77]],[[77534,61267],[299,-127]],[[77135,61860],[28,6]],[[82330,63720],[-7,-92]],[[84309,65237],[317,-94]],[[83302,66191],[39,-87]],[[81523,70666],[-42,-354]],[[78568,60207],[151,117]],[[78960,60508],[319,270],[169,359]],[[78781,60380],[179,128]],[[78710,63309],[26,-111]],[[79268,65983],[99,-627]],[[78456,63104],[-10,-173]],[[78054,61166],[120,207]],[[80455,67898],[287,-270],[177,-402]],[[80919,67226],[68,-246]],[[80987,66980],[213,-770]],[[81200,66210],[98,-489],[154,-162]],[[81514,65543],[201,60],[510,-149]],[[82961,63575],[13,-21]],[[80889,64773],[11,-685]],[[80426,61544],[-84,-426]],[[80572,62072],[-135,-419]],[[80677,62369],[-47,-165]],[[80114,59504],[35,-191]],[[82974,63554],[430,-93]],[[82413,63616],[548,-41]],[[83410,63460],[74,-44]],[[83341,66104],[4,-731],[-132,-100],[49,-760],[162,-168],[70,-1009],[-149,-831]],[[83381,67387],[-69,-158],[-78,-838],[68,-200]],[[83256,62158],[-241,-358]],[[81221,60878],[-87,-148]],[[82680,64333],[-350,-613]],[[83148,64755],[-157,-158]],[[82222,63507],[-237,-303]],[[81099,60591],[-63,-443],[-155,-460]],[[81669,62575],[-10,-63]],[[84309,65237],[-258,-234]],[[81523,62777],[-4,-134]],[[81737,63675],[477,-166]],[[81083,63737],[105,85],[549,-147]],[[77363,62232],[87,69]],[[76835,61915],[294,-59],[110,198]],[[76635,62093],[197,-178]],[[77609,62511],[66,62]],[[82170,70601],[24,-247]],[[85461,63282],[-223,-407],[-346,-48]],[[84892,62827],[-233,167]],[[80848,63719],[27,-30]],[[80875,63689],[19,-22]],[[77163,61866],[371,-599]],[[82378,63578],[35,38]],[[82214,63509],[164,69]],[[78594,60448],[225,-236]],[[80773,63603],[112,36]],[[78719,60324],[62,56]],[[31034,58355],[188,85]],[[30198,61197],[72,-256]],[[36415,73814],[39,-739],[149,-435],[43,-1041]],[[25678,58167],[176,185],[329,59]],[[31222,58440],[128,-37]],[[31350,58403],[260,21]],[[33997,68798],[-155,-93],[21,-358],[131,-121]],[[31457,57685],[167,-434],[93,-523],[256,-39],[11,-606],[-91,-811],[72,-655],[-24,-460]],[[29397,65747],[289,175],[452,121],[287,-8],[165,309],[351,334],[215,77],[185,404],[526,459],[297,129],[303,578]],[[33973,68532],[666,-12],[877,164],[742,687],[626,76]],[[34468,57029],[435,278],[1116,151],[465,1],[932,-469],[174,-184]],[[32943,63697],[1038,756],[281,-70],[478,43],[387,222],[338,-19],[250,126],[862,184]],[[29617,63823],[772,80],[791,-519],[240,122],[364,-331],[606,220]],[[26087,53506],[32,166],[601,347]],[[28202,54560],[570,-5]],[[30962,69826],[448,-8],[361,251],[450,65],[1030,454],[126,123],[288,-75],[550,78],[280,220],[280,-55],[423,68],[110,-120],[589,-285],[347,49]],[[36318,70455],[530,-361]],[[33397,62278],[-31,-571],[-280,-1035],[-64,-577]],[[34757,64440],[14,-412],[-472,-877],[-220,-661]],[[36646,71599],[-402,-1008]],[[36577,64939],[280,69]],[[30463,60472],[-177,-224],[-102,-475],[-251,-285],[-146,-624],[-13,-1471],[-240,-45],[-142,-249],[-805,-681],[-151,58],[-463,-1523],[87,-398]],[[27668,54405],[286,169],[248,-14]],[[36244,70591],[74,-136]],[[30163,60945],[153,57]],[[44525,64059],[-82,-173]],[[53640,67271],[-2,-354],[-148,-956],[181,-26],[121,-398],[-110,-387],[226,-632]],[[53742,68592],[-75,-323],[-199,-95],[1,-331]],[[51869,67243],[1,-738],[59,-174],[323,-328],[289,-648],[-141,-236],[618,-404],[-14,-249],[145,-20],[78,-356],[197,-434]],[[43576,58847],[31,-1884]],[[43969,62101],[-43,-898],[20,-453],[-144,-1062],[15,-814]],[[44443,63886],[-244,-73],[22,-795],[-265,-394],[0,-349]],[[44513,64599],[9,-540]],[[44480,65544],[33,-800]],[[49801,62637],[-25,1691]],[[49804,61957],[21,-1395]],[[38485,56219],[4,776]],[[45578,57872],[211,21],[181,212],[357,21]],[[38821,56005],[812,-592],[155,-207]],[[53229,56269],[-375,-52],[23,-489]],[[47410,63289],[237,-91],[209,-262]],[[47974,62376],[-3,238]],[[48835,61593],[221,-66],[902,19],[355,84],[219,245]],[[41107,55836],[633,53]],[[41748,55721],[845,65],[406,88],[116,171],[375,107]],[[43626,56225],[366,23],[182,-157],[865,107],[336,186],[608,28]],[[46018,56414],[552,23],[-2,512],[932,33]],[[51340,59842],[210,92],[202,383],[68,325]],[[49864,64573],[-10,1469],[-88,435]],[[47289,60756],[809,693]],[[43956,62275],[13,-174]],[[44513,64744],[0,-145]],[[49801,62637],[-1,-483]],[[45471,57855],[107,17]],[[53790,63346],[25,-227]],[[47357,63258],[53,31]],[[47971,62614],[-115,322]],[[48328,61571],[507,22]],[[51340,59528],[0,314]],[[46667,61293],[70,72]],[[51538,63963],[39,-186]],[[53543,67784],[29,-88]],[[48845,66091],[-3,500]],[[48840,66840],[2,-249]],[[48189,61114],[31,-174]],[[48883,65430],[-10,98]],[[49418,59673],[207,2]],[[46399,60148],[466,24],[485,-65]],[[49864,64573],[410,480],[317,118]],[[47350,60107],[525,91],[94,-108],[432,-18]],[[49855,59678],[286,-67],[614,62]],[[49107,59668],[311,5]],[[48671,59816],[109,-155],[292,6]],[[49283,63711],[14,140],[387,493]],[[47402,65602],[713,20]],[[51116,56701],[-352,-59],[-222,110],[-32,279]],[[51697,57584],[137,-623],[15,-1222]],[[51683,57921],[14,-337]],[[49155,62012],[-48,-2344]],[[49107,59668],[-35,-1]],[[49072,59667],[2,-308]],[[49043,58846],[-4,-1547]],[[49258,66662],[-104,-2],[72,-574],[-27,-813],[12,-1418],[72,-144]],[[49283,63711],[22,-1220]],[[49258,66662],[194,61],[121,286]],[[45126,65672],[-131,615]],[[45203,65240],[-17,92]],[[45245,64777],[40,-521],[-126,-228],[-82,-480],[17,-831],[180,-590],[53,-1056],[9,-1809],[40,-434],[-447,-413],[-66,-161]],[[44558,57754],[-207,-221],[-159,-353]],[[42386,56901],[1458,77],[348,202]],[[46584,60969],[388,131],[5,285]],[[49305,62491],[438,58],[539,586],[351,43]],[[51863,63944],[166,190],[242,-281],[572,-158],[452,-7],[288,-87],[298,290]],[[50644,63649],[283,239],[145,-145],[327,-36]],[[53766,62562],[430,-220]],[[43607,56963],[19,-738]],[[43490,56152],[-14,-676]],[[40561,56510],[377,45],[153,241],[1295,105]],[[44558,57754],[913,101]],[[37590,56806],[479,-149],[452,-469],[300,-183]],[[54181,64621],[-336,-125],[22,-483],[-77,-667]],[[53707,62564],[-151,-73],[-109,-509],[12,-274],[251,-528],[92,-811]],[[53491,58771],[8,-1472],[-193,-357],[-116,-15],[39,-658]],[[53802,60369],[-30,-342],[108,-317],[25,-803]],[[49093,56963],[364,-53],[917,126]],[[45436,58895],[14,-250],[658,31],[201,-161],[80,-503],[377,15]],[[43346,58867],[780,-9],[1309,72]],[[47671,56970],[860,-77]],[[48947,56931],[95,31]],[[51246,56794],[611,114],[439,-3],[296,275]],[[52753,57132],[329,41],[102,-310]],[[53190,56816],[311,-314],[282,-111]],[[43855,64589],[412,141]],[[43197,64489],[658,100]],[[44445,64740],[68,4]],[[47246,63220],[111,38]],[[51195,61150],[580,-2],[45,-506]],[[51820,60642],[429,-67]],[[53212,59899],[214,-173],[242,47],[311,-135]],[[38821,56005],[1668,166],[59,291]],[[43490,56152],[136,73]],[[53280,56169],[27,-233],[234,-220]],[[44977,66425],[18,-138]],[[44995,66287],[797,96],[210,236],[631,83],[1259,41],[287,-51]],[[49188,66997],[385,12]],[[49573,67009],[117,396],[344,-2]],[[50312,67411],[344,2],[424,-116],[944,3]],[[52171,67409],[286,-137],[653,189]],[[53924,67206],[244,-69]],[[50872,65874],[-184,-279],[-97,-436],[37,-848],[17,-1726],[236,-435],[-3,-314]],[[48401,60072],[270,-256]],[[49625,59675],[230,3]],[[46404,65003],[815,29]],[[53110,67461],[462,235]],[[52072,67421],[99,-12]],[[53790,63346],[25,-227]],[[51246,56794],[-130,-93]],[[51449,58207],[234,-286]],[[49155,62012],[150,479]],[[45203,65240],[42,-463]],[[44863,58254],[-305,-500]],[[45186,65332],[-60,340]],[[51399,63707],[464,237]],[[53731,62563],[35,-1]],[[51604,58998],[915,-66]],[[53905,58907],[2,0]],[[53815,63119],[-84,-556]],[[53731,62563],[-24,1]],[[53905,58907],[-286,-57]],[[52557,58926],[-38,6]],[[52592,57180],[161,-48]],[[50374,57036],[139,-5]],[[49042,56962],[51,1]],[[48531,56893],[416,38]],[[46766,58027],[692,24]],[[52249,60575],[604,-170],[258,-237],[101,-269]],[[44513,64744],[1390,58]],[[46080,64844],[305,42]],[[44267,64730],[178,10]],[[46698,63154],[387,-44],[161,110]],[[54012,61905],[186,48]],[[53277,56221],[3,-52]],[[53229,56269],[48,-48]],[[53572,67696],[68,-425]],[[53640,67271],[284,-65]],[[50034,67403],[278,8]],[[48813,66840],[375,157]],[[48179,66692],[611,19]],[[50898,59632],[113,-290]],[[53619,58850],[-189,-95],[-557,33],[-316,138]],[[51392,59243],[57,-1036]],[[49864,64573],[-88,-245]],[[45903,64802],[177,42]],[[48154,61421],[35,-307]],[[48193,61684],[-39,-263]],[[42481,11686],[-84,227]],[[49207,12838],[-313,-532],[-128,-1145],[10,-1105]],[[49334,13560],[72,-56]],[[45838,9975],[595,47],[15,115],[1813,70],[239,-158],[276,7]],[[43005,9682],[1032,81],[66,62]],[[41267,9732],[1271,132]],[[44103,9825],[445,31]],[[38823,8904],[537,124],[1186,137]],[[45967,15096],[29,-1990],[-137,-8],[-63,-398],[102,-743],[12,-1352],[-71,-3],[0,-656],[-162,-237],[-574,18],[-217,151],[-321,-21]],[[48776,10056],[349,13]],[[42511,10689],[27,-825]],[[42538,9864],[234,20],[30,-219],[203,17]],[[43005,9682],[22,-677]],[[42500,11019],[11,-330]],[[42496,11133],[4,-114]],[[38699,11061],[124,-2157]],[[38823,8904],[-286,-37],[-7,-349]],[[79406,32183],[14,-22]],[[82590,37633],[-17,-273]],[[79643,37537],[-119,-157]],[[80036,38211],[-146,-121]],[[87137,30197],[118,458],[30,1189]],[[89197,37521],[66,-196]],[[80042,39659],[39,-417],[175,-472],[3,-266]],[[80258,38239],[-215,-614],[-113,-642],[-357,-1265],[-16,-202]],[[79557,35516],[-34,-1251],[-61,-249]],[[79716,32924],[4,-243],[-241,-400],[12,-197]],[[78773,32932],[152,-104],[1034,-1354]],[[88638,33711],[114,-278]],[[87897,34540],[271,-343],[288,-208]],[[85736,36448],[745,-456],[500,-487],[311,-508],[446,-539],[108,136]],[[87235,38153],[256,271],[31,447]],[[79138,36456],[236,-8]],[[86884,37201],[362,81],[319,225],[425,40],[346,304],[150,-99]],[[86360,37338],[431,-201]],[[78864,33809],[424,324]],[[79060,35700],[497,-155]],[[79557,35516],[183,-214],[47,-307],[416,-266]],[[88225,36836],[6,-454]],[[88468,37841],[330,-222],[271,-5]],[[87236,32972],[-103,-126]],[[79834,38064],[-115,-435]],[[89710,36850],[80,-225]],[[87846,34594],[51,-54]],[[82167,34052],[280,-76],[538,-520],[313,668],[373,123],[368,-468],[113,42],[232,543],[214,117]],[[79937,39563],[-415,-880],[6,-786],[102,-168]],[[80816,40471],[162,-86]],[[79594,40856],[207,-267],[170,156],[217,-123]],[[80328,40591],[302,54]],[[80313,38390],[63,-165]],[[81275,35966],[158,-458],[192,-279]],[[81073,36736],[175,-344],[19,-424]],[[88356,38534],[-417,-238],[-241,-322]],[[80489,38943],[-149,-278]],[[80881,39834],[-21,-225]],[[88845,33977],[32,-112]],[[86542,35159],[83,-22]],[[86280,35198],[-32,-138],[-376,63]],[[86939,35127],[-207,34]],[[86542,35159],[-186,91]],[[88796,34798],[49,-821]],[[89112,36092],[-242,-862],[-22,-379]],[[89207,36708],[-36,-119]],[[89250,36829],[-23,-57]],[[89276,37803],[-20,-648]],[[85943,39633],[-282,-225]],[[89060,37552],[97,-154]],[[88981,37675],[79,-123]],[[85847,35167],[31,-194],[294,-327],[752,-713],[-47,-293],[390,-560],[154,-320]],[[85950,37530],[-82,-400],[-165,-24]],[[85546,37743],[308,-134]],[[87508,32653],[105,-286]],[[87504,32726],[4,-73]],[[85758,37604],[8,-3]],[[85810,35268],[37,-101]],[[80767,41163],[196,-449]],[[81809,37101],[-17,-249]],[[81792,36852],[75,-127],[37,-572]],[[81195,38744],[142,-405]],[[81904,36153],[247,-354],[84,-468]],[[81191,38810],[-1,-59]],[[81189,38746],[6,-2]],[[85588,34273],[-158,-453],[-77,24]],[[80188,40622],[47,-6]],[[89178,36182],[229,-332]],[[88866,37006],[113,-438]],[[88984,36441],[122,-192]],[[88964,36519],[20,-78]],[[87421,32760],[33,25]],[[89186,32224],[-13,-55]],[[88725,33615],[374,-877],[79,-535]],[[82290,40254],[121,-342],[-174,-198]],[[82573,37360],[-9,-222],[-212,-216],[-19,-745],[253,-393],[-85,-235],[-266,-218]],[[82235,35331],[-22,-147]],[[82268,40733],[75,-263]],[[80759,38327],[311,68]],[[83899,37272],[274,236],[31,-205],[406,-711]],[[81370,38317],[259,-231]],[[83132,37645],[284,-215],[180,-433],[227,245]],[[81715,38038],[310,-112]],[[85664,33702],[327,-397],[257,-802],[-203,-912]],[[84638,34759],[-85,-104]],[[82960,40534],[158,-981]],[[85967,31392],[-147,-509]],[[87599,39083],[-77,-212]],[[87235,38153],[-90,-296]],[[87576,36814],[112,-228]],[[87670,36241],[136,-296]],[[87896,35760],[234,-110]],[[80622,38548],[272,197]],[[79310,38113],[439,280],[128,178]],[[84213,39337],[211,48],[322,-241],[565,-10],[269,175],[305,-221],[437,-438]],[[81820,38894],[846,460],[501,-105]],[[81003,38774],[128,-24]],[[83686,39225],[209,-128],[195,124]],[[83441,39197],[191,73]],[[87282,37959],[583,-6]],[[89404,35851],[-1,-6]],[[80449,34821],[702,383],[204,25]],[[79544,33965],[128,278],[544,453]],[[78936,34508],[148,-21],[204,-354]],[[80228,34705],[221,116]],[[81250,40541],[365,253]],[[80054,39668],[471,286]],[[80688,39981],[407,502]],[[81685,40774],[197,75]],[[85735,37623],[23,-19]],[[80008,36656],[205,75]],[[80376,36734],[210,25]],[[80355,36721],[3,0]],[[79551,36530],[248,-30]],[[81038,36823],[209,107],[379,442]],[[82019,37331],[275,240],[251,57]],[[86400,37259],[631,-618],[566,35]],[[87604,36668],[88,-54]],[[79111,36198],[256,181]],[[83886,40123],[48,-399],[191,-93],[63,-807],[101,-433],[-97,-291],[-37,-580]],[[84621,36541],[175,-292],[545,-623],[429,-262]],[[78871,32907],[71,187],[774,-170]],[[79716,32924],[-66,324]],[[79716,32924],[222,-19],[162,-239],[564,-167],[167,295],[95,-74]],[[79288,34133],[213,-127]],[[79506,33763],[141,-515]],[[81302,32714],[200,415],[110,-162],[304,219],[210,-315],[167,22],[194,-464],[243,-149],[443,209],[535,-353],[237,140],[377,-159],[190,-219],[113,135],[303,-357],[454,-116],[203,87],[348,-262],[370,97],[156,309],[402,37],[205,216],[219,-200]],[[81190,32687],[55,-40]],[[87492,32070],[88,119]],[[87864,31621],[149,-123],[320,77],[112,365],[404,59],[324,170]],[[89173,32169],[160,-260]],[[81223,32471],[-68,-405]],[[80412,34507],[115,69],[283,-338],[90,-379],[-63,-418],[191,-396],[20,-336]],[[80203,34729],[25,-24]],[[80259,34661],[45,-65]],[[81190,38751],[-1,-5]],[[80630,40645],[186,-174]],[[88718,35987],[-254,-519]],[[88964,36519],[-109,-176]],[[80860,39609],[-32,-186],[-339,-480]],[[81021,40320],[-140,-486]],[[86625,35137],[107,24]],[[86356,35250],[-76,-52]],[[87634,36331],[-139,-476],[-232,-308],[-184,68],[-140,-488]],[[89171,36589],[-19,-291]],[[89256,37155],[-6,-326]],[[80548,38403],[74,145]],[[89366,37235],[157,-443]],[[89257,37327],[107,-85]],[[88911,37777],[70,-102]],[[88364,38282],[461,-386]],[[85792,35321],[18,-53]],[[85705,36927],[77,-274],[-114,-325],[163,-658],[-38,-147]],[[85937,37605],[13,-75]],[[87117,33298],[14,1]],[[81715,38038],[49,-528]],[[81129,40208],[128,-472],[-14,-297]],[[81135,39062],[56,-252]],[[81243,39439],[-20,-112]],[[85848,35155],[-202,-385],[20,-209]],[[85710,38687],[130,-724]],[[85634,34370],[-46,-97]],[[88650,38261],[-24,-93]],[[88626,38168],[-124,-261]],[[88782,37238],[84,-232]],[[88979,36568],[-15,-49]],[[82048,37902],[217,26],[359,-293]],[[81070,38395],[300,-78]],[[86000,37348],[7,33]],[[83823,37242],[76,30]],[[81629,38086],[86,-48]],[[84942,34005],[188,-107]],[[84026,35411],[54,-82]],[[88130,35650],[133,-177]],[[86377,38466],[115,-49]],[[84090,39221],[123,116]],[[81528,38710],[292,184]],[[81238,38732],[290,-22]],[[80894,38745],[109,29]],[[87865,37953],[14,1]],[[82678,35267],[188,139]],[[86175,37428],[117,-56]],[[80525,39954],[95,-2]],[[81615,40794],[70,-20]],[[81095,40483],[155,58]],[[87825,36682],[368,124]],[[86360,37338],[40,-79]],[[80586,36759],[373,50]],[[79802,36505],[61,7]],[[81050,36849],[-12,-26]],[[85770,35364],[22,-43]],[[87285,31844],[207,226]],[[79501,34006],[5,-243]],[[80926,32720],[46,-7]],[[81074,32678],[94,15]],[[81243,32678],[59,36]],[[80304,34596],[108,-89]],[[80228,34705],[31,-44]],[[81245,32647],[-4,-16]],[[81241,32631],[-18,-160]],[[86045,31591],[-78,-199]],[[79524,37380],[-140,-864]],[[89403,35845],[7,-8]],[[88796,34798],[5,-2]],[[88958,38195],[-33,-48]],[[80376,38225],[138,-31],[210,-648],[86,-483],[149,-254]],[[80311,38396],[2,-6]],[[86205,37566],[130,-54],[351,235],[425,109]],[[87412,33066],[-176,-94]],[[88855,36343],[-137,-356]],[[89188,37072],[-167,-406]],[[88703,35075],[-40,-426],[-157,-665]],[[82303,38354],[160,60]],[[79367,36379],[-181,-577]],[[80041,35516],[119,-651]],[[82343,40470],[-53,-216]],[[87708,32293],[156,-672]],[[86791,37137],[93,64]],[[84501,36720],[99,-214]],[[89523,36792],[120,-293],[185,-121]],[[89182,37413],[75,-86]],[[88825,37896],[86,-119]],[[87821,39009],[70,-363],[473,-364]],[[87613,32367],[-28,-168]],[[85793,35523],[-1,-202]],[[85937,37605],[-83,4]],[[81764,37510],[45,-409]],[[81135,39062],[88,265]],[[81004,40526],[125,-318]],[[89790,36625],[-5,-195]],[[85840,37963],[97,-358]],[[85666,34561],[-32,-191]],[[85509,39771],[159,-395],[42,-689]],[[80258,38422],[-23,-59]],[[89106,36249],[72,-67]],[[88502,37907],[-39,-326],[319,-343]],[[87454,32785],[50,-59]],[[88456,33989],[50,-5]],[[88506,33984],[106,-276]],[[88166,35441],[373,-481],[257,-162]],[[82025,37926],[23,-24]],[[85820,30883],[-74,-231]],[[84553,34655],[45,-174]],[[84598,34481],[344,-476]],[[85130,33898],[128,-41]],[[83118,39553],[42,-367]],[[87687,36658],[-59,-87]],[[87806,35945],[90,-185]],[[80296,38412],[-10,8]],[[87879,37954],[585,-403]],[[86492,38417],[619,-561]],[[87111,37856],[69,-5]],[[87180,37851],[102,108]],[[86322,38650],[55,-184]],[[83422,39268],[19,-71]],[[81131,38750],[107,-18]],[[86292,37372],[68,-34]],[[80359,36726],[-1,-5]],[[80355,36721],[4,5]],[[80620,39952],[68,29]],[[81011,40506],[84,-23]],[[88193,36806],[178,-56]],[[88371,36750],[290,328]],[[88661,37078],[99,186]],[[87687,36658],[138,24]],[[87180,37851],[396,-1037]],[[87576,36814],[94,-573]],[[81626,37372],[175,98],[218,-139]],[[80959,36809],[122,2]],[[80213,36731],[142,-10]],[[79863,36512],[145,144]],[[79367,36379],[187,151]],[[80358,36721],[18,13]],[[81168,32693],[75,-15]],[[80972,32713],[102,-35]],[[80258,38422],[28,-2]],[[80290,38431],[-4,-11]],[[87839,37284],[-78,-580]],[[80123,38564],[131,-23],[4,-302]],[[80258,38239],[-191,-302]],[[87980,32936],[224,279],[55,278]],[[87786,32456],[194,480]],[[80320,38453],[-12,-62]],[[88751,37219],[234,-4],[172,183]],[[89157,37398],[25,15]],[[89182,37413],[15,108]],[[89197,37521],[36,71]],[[5434,11859],[146,441]],[[5631,12323],[-12,-5]],[[5580,12300],[39,18]],[[5811,12413],[-52,-31]],[[5697,12354],[-51,-24]],[[5766,12386],[-7,-4]],[[8495,12946],[250,478],[124,30]],[[5607,22088],[-139,426]],[[5468,22514],[-97,342]],[[3667,20700],[117,54],[193,-272],[284,5],[179,234],[291,-65],[200,326],[164,3],[179,346],[354,87],[-21,670]],[[5607,22088],[493,250]],[[6397,13126],[390,74]],[[6345,13240],[-7,285],[-231,632],[-332,298]],[[5352,14459],[425,-2]],[[6976,20457],[38,629],[226,314],[142,427],[-45,185],[84,708],[339,205],[89,427],[-143,396],[-22,572],[291,273],[91,446],[274,336],[20,326]],[[4330,23234],[426,-204],[177,-522],[132,-13],[286,304],[139,399],[122,723],[22,425]],[[3908,24000],[97,-136],[130,-665],[188,32]],[[6091,12650],[-280,-237]],[[5646,12330],[-15,-7]],[[5759,12382],[-62,-28]],[[5415,14379],[151,-272],[414,-470],[157,-84],[189,-340],[-12,-503]],[[13849,17728],[-92,374],[138,745]],[[12075,13511],[-21,300],[98,342]],[[4995,14377],[302,104]],[[6308,12917],[96,158]],[[5390,13316],[-189,128]],[[12829,14774],[329,-158],[371,-290],[102,-541]],[[7365,18048],[312,106],[289,226]],[[3830,13481],[304,37],[486,219],[294,-60],[273,-233]],[[5262,13431],[214,-51]],[[5592,15074],[468,508],[371,186],[56,224],[153,-76],[269,306],[16,241],[-200,499],[71,236]],[[12767,14767],[37,-3]],[[12767,14767],[-18,17]],[[4712,18008],[368,537],[290,662],[-21,99],[372,336],[227,499],[222,250],[208,1065]],[[4349,11965],[424,51],[134,-303],[502,-22],[29,176],[295,120]],[[4564,17734],[35,16]],[[5677,13227],[-201,153]],[[11494,13605],[218,-126],[334,15]],[[6103,12877],[-426,350]],[[5187,13444],[75,-13]],[[5379,14633],[213,441]],[[86933,62254],[84,-114]],[[86867,62262],[66,-8]],[[87041,60985],[149,108]],[[86261,56667],[-51,-1109]],[[75939,58918],[276,-83],[228,232],[248,468],[223,-90],[182,-563],[131,-23],[258,-423],[-26,-352],[269,-520],[164,151],[206,-554],[249,-246],[238,-879],[396,-595],[178,-67],[201,-591],[365,-402],[247,-45],[193,-561]],[[84697,60239],[1087,451],[215,403],[105,406],[275,656],[488,107]],[[84662,60172],[283,-164],[330,-61]],[[85219,59958],[-224,-295]],[[80514,56761],[816,166]],[[84909,58164],[589,-493],[350,-459],[359,-244]],[[86374,56716],[128,-276],[351,-209]],[[87315,55553],[31,-253]],[[87256,54748],[547,-310]],[[86943,55924],[313,-269]],[[82082,53850],[258,-330]],[[83615,58415],[-88,-171],[42,-566],[293,-336]],[[83685,59800],[-89,-1286]],[[83620,60107],[35,-116]],[[83585,60258],[35,-151]],[[77039,60356],[-65,-261]],[[82051,53976],[39,37]],[[78795,58949],[222,329],[-41,227]],[[77102,57560],[-273,-456],[-274,60]],[[77179,59556],[-187,-134],[-103,-494],[-350,-146]],[[86418,54043],[190,-835],[-62,-692]],[[81737,54951],[1,-602],[313,-373]],[[78636,55365],[-300,-41]],[[85358,54175],[-36,-303],[165,-943],[-68,-104]],[[84973,55230],[202,-373],[149,-618]],[[86297,54394],[524,10],[64,134]],[[86916,54523],[222,280],[118,-55]],[[76655,60288],[304,-161],[198,-489]],[[77179,59556],[262,-329],[194,50],[293,-590]],[[75936,60214],[326,376],[263,-326],[130,24]],[[82342,53514],[70,-114]],[[87130,56921],[161,-365],[28,-897]],[[87695,58805],[603,64]],[[86543,58304],[183,50],[540,-66]],[[84995,59663],[-149,-329],[-39,-497]],[[85275,59947],[208,81]],[[86418,58513],[125,-209]],[[86929,61244],[86,-68]],[[87346,55300],[-83,-501]],[[87256,55655],[59,-102]],[[84137,55048],[105,-119]],[[78450,57732],[-131,-164]],[[77287,57841],[-185,-281]],[[86067,55288],[187,168]],[[86254,55456],[44,-55]],[[86298,55401],[95,142]],[[87429,55511],[0,-100]],[[81741,56242],[436,-518]],[[82214,55661],[146,-187]],[[81183,57914],[36,-516]],[[80957,58585],[247,-494]],[[80818,58832],[130,-221]],[[86298,55401],[65,-684],[-45,-252],[100,-422]],[[86202,55590],[52,-134]],[[84930,55320],[43,-90]],[[82319,55208],[150,-171]],[[87033,61419],[-104,-175]],[[80748,59074],[-87,-207]],[[77157,59638],[22,-82]],[[81327,58160],[723,-739],[134,-301]],[[82277,56912],[302,-312]],[[82839,59997],[172,-572],[321,-241],[184,-500]],[[85109,53196],[276,-408]],[[87494,52146],[2,59]],[[74745,59289],[310,640],[184,155]],[[87960,53711],[-81,-265],[-11,-619],[-108,-173],[33,-414]],[[87793,52240],[281,-709]],[[86853,56231],[90,-307]],[[83904,56869],[-73,-759]],[[84684,53689],[7,-1073]],[[81721,55186],[241,-560],[568,-408],[54,-180]],[[85385,52788],[34,37]],[[85419,52825],[387,-63],[224,-247],[516,1]],[[86546,52516],[295,97],[120,-268],[456,-157]],[[83917,53486],[503,115],[370,-115]],[[82625,53843],[254,-147],[230,31],[92,-198],[550,-2],[154,-103]],[[87927,51953],[351,-102],[648,-60]],[[87523,52166],[270,74]],[[77336,57301],[94,-321],[134,-24]],[[74598,61228],[-70,-167]],[[77564,56956],[534,-82],[202,-236],[-73,-841]],[[80101,54533],[-96,-252],[-304,-254],[2,-165]],[[80381,54780],[-280,-247]],[[82469,55037],[-336,-682]],[[78594,58802],[-151,-987]],[[78870,55785],[12,-56]],[[78885,55546],[-36,-38]],[[87266,58288],[-113,-202],[-98,-650],[63,-417]],[[86943,55924],[8,-251],[-152,-290],[86,-845]],[[86999,56979],[-146,-748]],[[86906,54538],[79,-108],[-76,-439],[126,-751],[333,-716],[47,-329]],[[87494,52146],[181,-456]],[[87988,55535],[302,51],[787,-530],[151,396],[248,90],[219,-133],[339,-382],[88,-523],[271,-146],[-134,-852]],[[82584,54038],[41,-195]],[[82559,56145],[-382,-421]],[[80131,59018],[-7,-193]],[[79115,56290],[-245,-505]],[[78849,55508],[-15,-38]],[[78834,55470],[-198,-105]],[[84686,57064],[-70,-659],[146,-232]],[[84515,58591],[164,-290],[26,-509],[108,-197],[-144,-449]],[[83723,59765],[180,-564],[239,-356]],[[86503,60019],[-133,-397],[-382,-701],[-135,-409]],[[84669,57146],[-631,-19],[-142,-143]],[[85763,58367],[-146,-323],[-506,-666]],[[78636,55365],[29,-343]],[[83762,56821],[-403,-466]],[[87024,62125],[56,-265]],[[75910,59035],[23,-257],[-272,-212]],[[84257,54830],[-44,-153]],[[83936,53232],[67,-415]],[[82387,59447],[-150,-909],[-125,-161],[-184,-676],[-410,-310],[-154,-396]],[[82684,60033],[-233,-550]],[[80787,59376],[-39,-302]],[[81479,59598],[-58,-703],[42,-376],[-259,-428]],[[81806,60237],[-256,-557]],[[81072,56146],[-425,-1292],[-15,-580],[103,-250]],[[81306,56839],[-208,-664]],[[81741,56242],[832,354],[346,-307]],[[77928,58687],[681,112]],[[81072,56146],[612,117]],[[82919,56289],[785,-172]],[[89310,53654],[224,-146],[472,96],[253,-98]],[[90294,53434],[88,-227],[214,40]],[[81364,56995],[-58,-156]],[[89013,58484],[156,-33],[28,-270],[197,30],[319,-610]],[[85344,61274],[-86,-430],[107,-226],[70,-718],[193,-104],[189,-724],[36,-560]],[[85108,62009],[196,-352],[38,-377]],[[85774,58228],[-69,-559],[-238,-994]],[[77477,58350],[451,337]],[[78609,58799],[22,77]],[[82184,57120],[93,-208]],[[87417,52188],[106,-22]],[[84890,55432],[40,-112]],[[84930,55320],[14,-489],[100,-633],[21,-628]],[[83883,57530],[11,-439]],[[83516,58684],[99,-269]],[[83738,58174],[78,-182]],[[85998,57841],[201,-421]],[[86209,57008],[-2,-40]],[[86207,56968],[33,-147]],[[87017,60868],[-2,308]],[[83831,56110],[128,-337],[76,-578],[102,-147]],[[83655,59961],[30,-161]],[[83905,53424],[12,62]],[[87960,53711],[118,-56]],[[82133,54355],[-49,-1001]],[[78845,55467],[299,-155]],[[78882,55729],[3,-183]],[[87602,58840],[-336,-552]],[[86930,60995],[93,-28]],[[81204,58091],[-21,-177]],[[82177,55724],[37,-63]],[[85899,56013],[298,-392]],[[84635,58987],[93,-493],[127,-179]],[[80149,59313],[-18,-295]],[[79630,57218],[-355,-525],[-160,-403]],[[84762,56173],[84,-379]],[[84142,58845],[373,-254]],[[83685,59800],[37,-40]],[[84669,57146],[17,-82]],[[85111,57378],[-425,-314]],[[87080,61860],[-47,-441]],[[86828,60908],[-209,-398],[-116,-491]],[[83896,56984],[-134,-163]],[[83070,55964],[-454,-601]],[[79800,55492],[-198,79],[-458,-259]],[[78834,55470],[11,-3]],[[75902,59260],[24,-211]],[[84213,54677],[-60,-526],[-236,-665]],[[83905,53424],[31,-192]],[[80881,59688],[14,-192]],[[80735,54024],[31,-97]],[[84945,55499],[288,-127]],[[87867,54423],[446,-49],[240,-309]],[[83962,56038],[603,-204]],[[90259,53506],[35,-72]],[[84347,54964],[414,429]],[[88240,57257],[573,1197],[200,30]],[[84577,60403],[208,448],[368,337]],[[79126,58993],[585,76]],[[79711,59069],[170,-25]],[[84605,58594],[-192,-447]],[[88548,54066],[422,-257],[111,76],[229,-231]],[[83883,57530],[-67,462]],[[84065,57131],[-161,-209]],[[82056,55456],[-308,-124]],[[85065,53570],[41,-402]],[[83894,57091],[152,-658],[206,-147],[409,-598]],[[83615,58415],[123,-241]],[[86199,57420],[10,-412]],[[86240,56821],[134,-105]],[[87263,54799],[-7,-51]],[[84137,55048],[7,-227]],[[80447,54881],[-66,-101]],[[85455,55188],[566,114]],[[86872,61025],[58,-30]],[[82214,55661],[-155,-177]],[[80124,58825],[-238,-1176],[-239,-353]],[[84679,58537],[10,-103]],[[83359,56355],[-36,-190],[-253,-201]],[[81480,55367],[-448,-59],[-411,124],[-419,-64],[-402,124]],[[85795,58434],[-32,-67]],[[85853,58512],[-58,-78]],[[83704,56117],[258,-79]],[[84292,54820],[55,144]],[[85763,58367],[11,-139]],[[79711,59069],[170,-25]],[[79881,59044],[24,0]],[[78142,59425],[540,-355],[444,-77]],[[78631,58876],[148,153]],[[84672,58108],[237,56]],[[81480,55367],[300,-238],[284,-18]],[[83592,59855],[350,73],[325,398],[299,86]],[[80513,53945],[374,69]],[[77111,34827],[381,-540],[105,-261]],[[76890,35109],[221,-282]],[[77111,34827],[588,-204]],[[77649,33948],[219,-231],[309,-155],[337,-451],[259,-179]],[[77443,36873],[1695,-417]],[[73876,37163],[-89,-1200]],[[73985,38002],[-95,-807]],[[71814,42788],[280,281],[644,-142]],[[75028,40416],[157,54],[267,-247],[365,-476]],[[74313,40682],[492,-340]],[[72053,41689],[660,-327],[703,11],[342,-58],[359,-228]],[[71696,41950],[326,-85]],[[72683,44737],[301,-634]],[[72984,44103],[157,-324]],[[73391,43131],[255,-433],[579,-589],[230,-571],[30,-459],[323,-703]],[[76480,37027],[196,-392],[-16,-778],[199,-529]],[[74816,40339],[95,-149],[47,-515],[191,-406],[117,-50],[377,-842]],[[77699,34623],[98,-118],[1016,-260],[-39,-413],[90,-23]],[[75347,35933],[270,-126]],[[75832,35681],[440,-437],[491,-5]],[[75079,35776],[204,118]],[[78717,35759],[327,-26]],[[71966,35566],[-35,323]],[[71799,36294],[132,-405]],[[76999,35106],[2,0]],[[76248,35954],[-32,-168]],[[76895,35131],[106,-25]],[[74805,40342],[223,74]],[[73141,43779],[250,-648]],[[76172,37616],[130,-259]],[[77796,35381],[145,-7]],[[75617,35807],[215,-126]],[[78989,35895],[71,-195]],[[75134,38562],[-27,235],[-448,432],[-386,-128],[-536,113],[-407,-261],[-559,95]],[[73890,37160],[392,-599]],[[73543,37661],[347,-466]],[[75817,39747],[-94,-184]],[[75673,39163],[7,-377]],[[77521,35954],[661,741]],[[78183,36701],[273,302]],[[76791,40468],[161,-120],[34,-255]],[[75359,41465],[321,-178],[181,-246]],[[73876,37163],[14,-3]],[[74267,40633],[331,-1349],[22,-416],[178,-490],[5,-576],[249,-2049]],[[75134,38562],[336,-181]],[[72405,38728],[332,303]],[[74256,40635],[-116,-532],[-436,-894]],[[73660,41851],[315,-429],[142,-335]],[[72587,44005],[47,-190]],[[72367,44382],[82,-68]],[[78791,37535],[-255,-441]],[[74282,36561],[-11,-197]],[[76866,41279],[-168,-554],[41,-239]],[[78049,43042],[-73,-371],[-319,-81],[-422,-246],[-131,-322],[-43,-513],[-196,-212]],[[72771,39048],[-2,-23]],[[79066,37817],[-196,-1479]],[[77236,44685],[238,-680]],[[76809,47083],[4,-453],[189,-103],[-132,-698],[211,-1049]],[[76558,47276],[247,-168]],[[72737,39031],[32,-6]],[[72733,45307],[183,-176],[223,196],[273,-142],[151,-218],[612,-185],[777,-422],[114,-283],[271,-77]],[[76923,43870],[188,479]],[[77236,44685],[434,349]],[[72458,45308],[-118,-915],[39,-224],[-237,-359],[-120,-1945]],[[72030,41494],[50,-366],[-199,-2544]],[[71881,38584],[-117,-1277]],[[71804,37218],[-55,-867],[50,-57]],[[72033,35529],[-10,-132]],[[77788,37723],[416,126],[603,-318],[157,213]],[[74819,41694],[325,-135]],[[77790,37746],[-2,-23]],[[75369,36485],[672,-253]],[[74835,36481],[99,31]],[[73311,35647],[630,406]],[[71966,35566],[67,-37]],[[72033,35529],[1225,-263],[35,232]],[[71249,35843],[706,-275]],[[73682,43928],[691,-513]],[[74373,43415],[867,-433]],[[75243,42981],[397,-258],[199,-314],[842,-752],[183,-372]],[[77626,40674],[877,-1023]],[[78589,39458],[75,-118]],[[71881,38584],[96,-141],[315,-68],[433,-425],[350,-82],[232,-206],[195,36],[751,-416],[125,85],[409,-89],[407,103],[1191,-255]],[[71481,38888],[315,-118],[-8,-145]],[[73890,37195],[-14,-32]],[[71386,37654],[661,-571]],[[72671,36410],[336,-86],[217,-319]],[[73390,35578],[58,-311]],[[76724,38051],[718,403],[58,145]],[[75299,36348],[-13,162],[550,949],[103,323],[350,30],[258,169]],[[78559,39513],[80,186],[477,508]],[[77927,39218],[613,329]],[[75079,35776],[187,445]],[[72449,45310],[-137,-367]],[[72223,44697],[-119,-464],[-278,-422]],[[77387,34941],[363,-137],[1186,-296]],[[72713,39774],[396,-85],[70,255],[233,158]],[[71507,39228],[275,159],[485,463]],[[75817,39747],[340,-130],[242,226],[422,-88],[154,158]],[[77547,39740],[264,-458]],[[74117,41087],[97,-396]],[[73519,42067],[177,-18]],[[78897,36201],[214,-3]],[[76905,35182],[325,27]],[[72396,45601],[69,-84]],[[72545,45496],[134,-55]],[[75419,44135],[339,142],[360,-228],[198,138],[378,7]],[[72548,45496],[154,134]],[[73015,46038],[145,481],[261,89],[260,-105],[173,100],[194,341],[196,42],[242,-332],[480,286],[199,-102],[212,-468]],[[74411,36251],[178,-214],[348,-206]],[[75052,35753],[27,23]],[[73527,36475],[744,-111]],[[74271,36364],[10,-102]],[[72668,36480],[30,100],[579,-124],[128,67]],[[71307,36587],[948,-200],[242,133]],[[73944,46396],[132,-1382],[282,-1572]],[[74373,43415],[601,-1731]],[[77277,38371],[169,-452]],[[77019,38803],[255,-431]],[[75234,41345],[167,-412],[397,-530],[309,-240],[104,-735],[306,-106],[287,-274]],[[76801,39043],[213,-238]],[[78015,37225],[521,-131]],[[78536,37094],[18,-99]],[[78867,36256],[3,82]],[[78870,36338],[-264,432],[-6,219]],[[74059,46966],[2,-7]],[[73944,46396],[-178,-210],[-128,-537],[-72,-724],[7,-429],[107,-515],[-74,-501],[-214,-642],[122,-529]],[[73583,41585],[20,-608],[-61,-269],[-4,-655],[165,-820],[-132,-664],[-56,-680]],[[75680,38786],[-37,-409]],[[75723,39563],[-50,-400]],[[76986,40093],[-11,-180]],[[76128,40974],[211,-60],[452,-446]],[[75861,41041],[205,-41]],[[71987,39939],[206,-75]],[[76055,44986],[265,-383],[148,-46],[226,-363]],[[75323,45131],[480,64],[227,-174]],[[73551,41838],[109,13]],[[72449,44314],[138,-309]],[[78456,37003],[98,-8]],[[77081,44780],[73,-94]],[[76496,47337],[62,-61]],[[72634,43815],[125,-124]],[[76903,43781],[20,89]],[[72022,41865],[8,-371]],[[73941,36053],[531,308],[363,120]],[[74934,36512],[205,31]],[[73293,35498],[18,149]],[[78503,39651],[86,-193]],[[78664,39340],[108,-52]],[[76385,37126],[95,-99]],[[76480,37027],[194,19]],[[77406,36888],[37,-15]],[[72047,37083],[68,-119]],[[72142,36936],[499,-520]],[[72641,36416],[27,64]],[[73224,36005],[14,-185]],[[72641,36416],[30,-6]],[[75266,36221],[33,127]],[[77811,39282],[71,-71]],[[72312,44943],[-11,-74]],[[77291,34970],[96,-29]],[[72329,39838],[272,-83]],[[77111,44349],[43,337]],[[73412,40102],[46,119]],[[73185,42962],[151,75]],[[76212,45162],[232,347]],[[75578,44435],[368,376]],[[76975,39913],[572,-173]],[[73463,42090],[56,-23]],[[73696,42049],[1123,-355]],[[77941,35374],[106,-3],[357,333]],[[77748,35393],[48,-12]],[[71936,45430],[96,-105],[364,276]],[[76694,44194],[208,-425]],[[72770,45675],[245,363]],[[76184,47131],[211,288],[101,-82]],[[73405,36523],[122,-48]],[[78554,36995],[46,-6]],[[77724,37574],[291,-349]],[[73874,46651],[70,-255]],[[77154,44686],[82,-1]],[[72379,44391],[333,-11]],[[76066,41000],[62,-26]],[[72193,39864],[74,-14]],[[74912,41005],[78,576]],[[77543,34086],[106,-138]],[[75139,36543],[230,-58]],[[76041,36232],[207,-278]],[[78772,39288],[238,-314],[219,20]],[[74331,43482],[3,6]],[[77374,36895],[32,-7]],[[73238,35820],[45,-80]],[[72115,36964],[27,-28]],[[77613,38936],[269,275]],[[77882,39211],[45,7]],[[72301,44869],[-78,-172]],[[76880,43557],[21,195]],[[72267,39850],[62,-12]],[[72601,39755],[112,19]],[[73458,40221],[510,411],[291,-3],[485,512]],[[76444,45509],[546,92]],[[75946,44811],[266,351]],[[75359,44060],[60,75]],[[74334,43488],[192,47],[786,430]],[[73336,43037],[222,-81],[433,175],[340,351]],[[72738,42927],[254,-74],[193,109]],[[75423,44140],[155,295]],[[77217,35335],[121,118],[410,-60]],[[72679,45441],[54,-134]],[[72465,45517],[43,10]],[[76902,43769],[-1,-17]],[[75419,44135],[4,5]],[[76496,47337],[12,15]],[[75377,46370],[72,-45]],[[76763,35239],[62,-38]],[[77636,37607],[88,-33]],[[73514,42309],[-36,-233],[105,-491]],[[77249,36885],[125,10]],[[73683,35768],[-146,-613]],[[77227,35627],[294,327]],[[76865,35256],[78,-42]],[[74918,41614],[280,-231]],[[77246,36791],[-145,-335],[-125,-992],[-92,-301]],[[90722,31701],[82,-43]],[[91706,33342],[542,-472]],[[92248,32870],[128,-62]],[[91500,33372],[165,-206]],[[91803,33041],[275,-327],[170,156]],[[91725,33119],[78,-78]],[[91027,31622],[215,-511]],[[90270,29281],[-34,-195],[70,-909],[-21,-875],[-64,-774]],[[91032,33388],[333,-747]],[[83395,28150],[156,81]],[[83551,28231],[305,-261],[-6,-204]],[[90432,32526],[271,-424]],[[90804,31658],[322,-26]],[[90996,33073],[-16,-597],[-84,-392]],[[89979,24826],[0,-327],[113,-400],[-46,-227]],[[89698,23170],[-77,-459],[-128,-46],[92,-321],[31,-1308]],[[89564,20961],[93,-273],[38,-1762],[-72,-353]],[[90927,32800],[-125,-598],[-110,-102],[-86,-451]],[[90444,30916],[43,-398],[-54,-349]],[[90413,29997],[-116,-589]],[[91365,34003],[82,94]],[[91466,34210],[-19,-113]],[[91734,33600],[-46,-449]],[[91993,33716],[-67,-477]],[[90012,27935],[230,141]],[[91665,33166],[60,-47]],[[92376,32808],[148,-345]],[[86792,25978],[52,-154]],[[92265,32995],[307,102]],[[85313,25496],[-158,-303]],[[91823,34092],[191,-145]],[[92014,33947],[268,-217]],[[90239,26265],[-17,-363],[-175,-440],[-68,-636]],[[90250,26433],[6,-91]],[[90433,30133],[-20,-136]],[[80875,27521],[1059,-680]],[[85601,28958],[-337,-310],[-140,-303],[-186,-123]],[[90317,26134],[434,-339],[307,79]],[[88003,26473],[-75,-608]],[[86815,29654],[125,-743],[206,-255],[136,-534],[-7,-502],[-86,-486],[98,-254],[90,-655],[-16,-391]],[[81938,26834],[496,-225],[382,125],[472,-21]],[[84033,26331],[667,-120],[254,-254],[109,-284],[-55,-455],[333,-288],[220,4]],[[85569,24931],[193,-59]],[[87312,24480],[-213,-174],[-41,-294],[-252,-617],[-231,-127],[-337,-351],[-329,-112]],[[85161,30210],[-84,-672],[-224,-496],[-178,-759]],[[84675,28283],[-109,-657]],[[84566,27626],[-165,-1312]],[[83660,29178],[-227,-615],[-38,-413]],[[88047,28115],[9,-597],[-71,-539]],[[92376,32808],[236,-122],[346,-375],[228,-49],[252,-460],[226,-636],[120,-91]],[[85876,21858],[1,-148]],[[91012,34177],[93,-58]],[[93581,32206],[533,-563],[381,-522]],[[87312,24480],[125,-999],[345,-532],[202,40],[37,-263],[414,-376]],[[88435,22350],[266,205],[397,-75],[302,410],[298,280]],[[88455,28624],[-202,-344]],[[88253,28280],[-118,-220]],[[90189,29312],[-215,-153],[-206,154],[-257,-423],[-120,85],[-270,-122],[-159,207],[-270,-372],[-237,-64]],[[88038,26954],[-35,-481]],[[88435,22350],[-41,-430]],[[86389,22380],[210,-251],[420,-787],[193,204],[223,15],[271,-678],[472,101]],[[88178,20984],[171,-139]],[[88349,20845],[225,-119],[120,-324]],[[85860,22798],[49,7]],[[85909,22805],[243,-344]],[[86152,22461],[61,-21]],[[86213,22440],[176,-60]],[[88349,20845],[-13,-381],[147,-143],[-190,-500],[-50,-610],[-133,-674]],[[88125,18532],[-102,-532]],[[88394,21920],[-168,-128],[-119,-378],[71,-430]],[[89357,25660],[-40,-271],[-201,-259],[89,-556],[-261,-450],[24,-336]],[[88746,23650],[-153,-348],[166,-774]],[[83217,28807],[-191,-343]],[[83019,28466],[-26,-228]],[[87330,18301],[502,-165],[278,401]],[[85877,21710],[-12,-321],[106,-409],[29,-678],[382,-919],[294,-476],[362,-271]],[[85860,22680],[16,-822]],[[83974,30747],[457,52],[204,-225]],[[83251,30982],[115,-171],[288,-100],[320,36]],[[82380,31398],[374,189],[117,-295],[340,-345]],[[85292,26934],[85,-240],[248,-101]],[[82993,28238],[-117,30],[-463,-509]],[[90323,26084],[154,-136],[156,-375],[331,-259]],[[89955,26009],[230,80]],[[89297,20444],[-146,203],[-154,-108]],[[88996,20533],[-32,-53]],[[89564,20961],[-203,-197],[-36,-241]],[[88746,23650],[222,138]],[[88694,20402],[270,78]],[[84938,28222],[-140,-79],[-89,-498]],[[89325,20523],[-28,-79]],[[89297,20444],[-17,-309],[99,-435],[273,-342]],[[90450,26763],[-162,-260]],[[90193,26431],[52,40]],[[87279,19183],[248,-149]],[[90794,29740],[83,-73]],[[87058,19629],[-1,-5]],[[85860,22798],[446,-1402],[151,-289],[68,-390],[254,-699],[279,-389]],[[87057,19624],[222,-441]],[[88157,18502],[80,-284],[388,-228],[231,97],[334,-417],[396,-288]],[[87527,19034],[213,-278],[417,-254]],[[89586,17382],[30,-12]],[[86982,26713],[160,-133]],[[81919,28290],[1243,-440],[831,-124]],[[81523,28813],[141,-425]],[[85259,27111],[287,-136],[459,60],[485,-319]],[[84052,27720],[516,-100]],[[84626,27542],[240,-208],[70,-230],[271,48]],[[90472,26797],[569,182]],[[87318,26496],[211,62],[259,-127],[746,36]],[[89215,26438],[267,-152],[336,12],[375,133]],[[81406,28947],[863,-248],[257,47],[449,-195],[334,-422],[86,21]],[[89352,31890],[277,-1000],[117,-711],[209,-196],[221,-684]],[[90877,29667],[221,-442],[20,-300]],[[90487,30166],[307,-426]],[[89789,30152],[422,255],[222,-274]],[[89333,31915],[19,-25]],[[90907,31488],[194,-431],[150,38]],[[90733,31721],[121,-195]],[[90441,31705],[109,19]],[[90606,31649],[116,52]],[[81294,27954],[-119,-172],[-197,34]],[[81155,32066],[-5,-859],[125,-124],[-12,-675],[90,-279],[-78,-490],[134,-664]],[[81361,28582],[-29,-439]],[[90428,29783],[-31,-501],[125,-1043],[-69,-94],[38,-1058]],[[90717,31691],[-48,-883]],[[89847,23429],[-149,-259]],[[89616,21036],[-52,-75]],[[90464,31034],[-20,-118]],[[90606,31649],[14,-89]],[[83622,26526],[411,-195]],[[87504,25202],[-192,-722]],[[91105,34119],[133,-104]],[[91444,33949],[263,-64],[259,-219]],[[92288,32968],[88,-160]],[[86844,25824],[142,-298]],[[87038,18636],[267,-321]],[[85259,27111],[33,-177]],[[84709,27645],[-83,-103]],[[91060,32231],[59,-333]],[[85207,27152],[52,-41]],[[88534,26467],[339,85],[342,-114]],[[87142,26580],[176,-84]],[[84626,27542],[-58,78]],[[83993,27726],[59,-6]],[[81664,28388],[255,-98]],[[86490,26716],[492,-3]],[[90854,31526],[45,-35]],[[90373,31790],[68,-85]],[[81332,28143],[-38,-189]],[[90669,30808],[-157,-568]],[[90487,30166],[-59,-383]],[[90491,27087],[-19,-290]],[[90472,26797],[-22,-34]],[[90582,31419],[-118,-385]],[[90620,31560],[-38,-141]],[[90433,30169],[0,-36]],[[91795,34037],[28,55]],[[90433,30169],[54,-3]],[[80879,27603],[-22,0]],[[90626,34375],[47,36]],[[91206,33537],[-40,-80]],[[80846,27859],[-18,-677]],[[92134,32986],[-1,-227]],[[83288,26713],[334,-187]],[[81856,29039],[-48,-92]],[[86986,25526],[42,-104]],[[91012,34177],[-44,-55]],[[81808,28947],[-178,-296],[-198,-18]],[[90620,34813],[53,-402]],[[85933,26070],[-282,-154],[-323,-348]],[[87056,25484],[116,-77],[293,206]],[[85625,26593],[161,-107]],[[85762,26465],[10,-104]],[[89910,26073],[45,-64]],[[92282,33730],[-87,-385],[177,-74]],[[92194,33339],[-37,-219]],[[91391,33653],[172,-197],[232,581]],[[91795,34037],[-59,94]],[[91874,34060],[-4,-10]],[[91119,31898],[81,-204]],[[90297,29408],[-27,-127]],[[90203,29181],[40,-9]],[[90176,29299],[27,-118]],[[90550,31724],[56,-75]],[[90733,31721],[-11,-20]],[[90896,32084],[-163,-363]],[[90512,30240],[-25,-74]],[[90936,34230],[123,-548]],[[90227,29345],[-34,-29]],[[91344,34070],[-138,-533]],[[90084,26341],[233,67],[192,637]],[[90958,33398],[184,14],[60,-363]],[[81335,28078],[105,-231]],[[94900,29067],[-86,-600]],[[94562,27486],[-22,-51]],[[94817,27931],[4,-109]],[[94833,28147],[-21,-76]],[[94829,28407],[19,-158]],[[94814,28467],[13,-23]],[[95022,28163],[82,56]],[[95104,28219],[122,459]],[[94601,27404],[-49,-46]],[[94552,27358],[-4,-58]],[[94526,29332],[422,-98]],[[94369,29942],[51,57]],[[94420,29999],[29,6]],[[94921,27972],[-47,-329]],[[94366,29938],[3,4]],[[94094,27890],[188,-89],[524,135]],[[94874,27956],[60,-38]],[[94176,28342],[298,-303],[163,-20]],[[95011,28144],[11,19]],[[95011,28144],[-32,-107]],[[94940,29471],[-40,-404]],[[94449,30005],[404,-347],[26,-131]],[[94623,27551],[183,367]],[[94397,27375],[184,121]],[[94340,29883],[80,116]],[[94647,28045],[161,-86]],[[94879,29527],[61,-56]],[[42469,12028],[27,-895]],[[77123,54935],[-151,-371]],[[94761,25908],[382,-186],[-9,-105]],[[95100,25740],[-198,-534]],[[2311,41181],[-63,-161]],[[95922,5719],[29,-146],[302,-142],[-24,-264],[315,-60],[517,446]],[[97061,5553],[-37,755],[221,745],[18,328],[356,506]],[[97619,7887],[87,234],[217,1085]],[[94230,25417],[128,126]],[[61623,57569],[204,-129],[440,-13],[183,152],[9,-281]],[[60489,58464],[459,-346]],[[17874,61962],[280,-629],[214,-111],[278,-471]],[[28772,54555],[415,314],[487,-259],[226,-46],[113,-506],[415,222]],[[91358,28456],[-150,-515],[60,-453]],[[76830,51176],[-82,271],[-79,835]],[[62566,19556],[30,-349]],[[36736,30033],[232,252]],[[38412,48156],[434,-155],[248,56],[368,-136],[339,17]],[[42837,64523],[360,-34]],[[28071,54557],[-1,-417]]]} +{"type":"Topology","bbox":[20.626504711788698,15.840076312439805,954.4867259419966,604.5536487118817],"transform":{"scale":[0.009338695599258071,0.005887194595940378],"translate":[20.626504711788698,15.840076312439805]},"objects":{"overlay":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2],"properties":{"scalerank":8}},{"type":"MultiLineString","arcs":[[3],[4]],"properties":{"scalerank":6}},{"type":"LineString","arcs":[5],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7],"properties":{"scalerank":7}},{"type":"LineString","arcs":[8],"properties":{"scalerank":3}},{"type":"LineString","arcs":[9],"properties":{"scalerank":6}},{"type":"MultiLineString","arcs":[[10],[11]],"properties":{"scalerank":8}},{"type":"LineString","arcs":[12],"properties":{"scalerank":8}},{"type":"LineString","arcs":[13],"properties":{"scalerank":6}},{"type":"LineString","arcs":[14],"properties":{"scalerank":6}},{"type":"LineString","arcs":[15],"properties":{"scalerank":4}},{"type":"LineString","arcs":[16],"properties":{"scalerank":4}},{"type":"LineString","arcs":[17],"properties":{"scalerank":7}},{"type":"LineString","arcs":[18],"properties":{"scalerank":7}},{"type":"LineString","arcs":[19],"properties":{"scalerank":3}},{"type":"LineString","arcs":[20],"properties":{"scalerank":8}},{"type":"LineString","arcs":[21],"properties":{"scalerank":6}},{"type":"LineString","arcs":[22],"properties":{"scalerank":5}},{"type":"LineString","arcs":[23],"properties":{"scalerank":3}},{"type":"LineString","arcs":[24],"properties":{"scalerank":3}},{"type":"LineString","arcs":[25],"properties":{"scalerank":3}},{"type":"LineString","arcs":[26],"properties":{"scalerank":7}},{"type":"LineString","arcs":[27],"properties":{"scalerank":6}},{"type":"LineString","arcs":[28],"properties":{"scalerank":8}},{"type":"LineString","arcs":[29],"properties":{"scalerank":7}},{"type":"LineString","arcs":[30],"properties":{"scalerank":7}},{"type":"LineString","arcs":[31],"properties":{"scalerank":7}},{"type":"LineString","arcs":[32],"properties":{"scalerank":8}},{"type":"LineString","arcs":[33],"properties":{"scalerank":6}},{"type":"LineString","arcs":[34],"properties":{"scalerank":7}},{"type":"LineString","arcs":[35],"properties":{"scalerank":5}},{"type":"LineString","arcs":[36],"properties":{"scalerank":5}},{"type":"LineString","arcs":[37],"properties":{"scalerank":7}},{"type":"LineString","arcs":[38],"properties":{"scalerank":4}},{"type":"LineString","arcs":[39],"properties":{"scalerank":4}},{"type":"LineString","arcs":[40],"properties":{"scalerank":3}},{"type":"LineString","arcs":[41],"properties":{"scalerank":7}},{"type":"LineString","arcs":[42],"properties":{"scalerank":5}},{"type":"LineString","arcs":[43],"properties":{"scalerank":3}},{"type":"LineString","arcs":[44],"properties":{"scalerank":3}},{"type":"LineString","arcs":[45],"properties":{"scalerank":6}},{"type":"LineString","arcs":[46],"properties":{"scalerank":7}},{"type":"LineString","arcs":[47],"properties":{"scalerank":3}},{"type":"LineString","arcs":[48],"properties":{"scalerank":4}},{"type":"LineString","arcs":[49],"properties":{"scalerank":3}},{"type":"LineString","arcs":[50],"properties":{"scalerank":5}},{"type":"LineString","arcs":[51],"properties":{"scalerank":3}},{"type":"LineString","arcs":[52],"properties":{"scalerank":5}},{"type":"LineString","arcs":[53],"properties":{"scalerank":5}},{"type":"LineString","arcs":[54],"properties":{"scalerank":7}},{"type":"LineString","arcs":[55],"properties":{"scalerank":3}},{"type":"LineString","arcs":[56],"properties":{"scalerank":4}},{"type":"LineString","arcs":[57],"properties":{"scalerank":6}},{"type":"LineString","arcs":[58],"properties":{"scalerank":5}},{"type":"LineString","arcs":[59],"properties":{"scalerank":5}},{"type":"LineString","arcs":[60],"properties":{"scalerank":7}},{"type":"LineString","arcs":[61],"properties":{"scalerank":7}},{"type":"LineString","arcs":[62],"properties":{"scalerank":6}},{"type":"LineString","arcs":[63],"properties":{"scalerank":8}},{"type":"LineString","arcs":[64],"properties":{"scalerank":4}},{"type":"LineString","arcs":[65],"properties":{"scalerank":5}},{"type":"LineString","arcs":[66],"properties":{"scalerank":6}},{"type":"LineString","arcs":[67],"properties":{"scalerank":3}},{"type":"LineString","arcs":[68],"properties":{"scalerank":3}},{"type":"LineString","arcs":[69],"properties":{"scalerank":3}},{"type":"LineString","arcs":[70],"properties":{"scalerank":4}},{"type":"LineString","arcs":[71],"properties":{"scalerank":6}},{"type":"LineString","arcs":[72],"properties":{"scalerank":7}},{"type":"LineString","arcs":[73],"properties":{"scalerank":3}},{"type":"LineString","arcs":[74],"properties":{"scalerank":3}},{"type":"LineString","arcs":[75],"properties":{"scalerank":3}},{"type":"LineString","arcs":[76],"properties":{"scalerank":6}},{"type":"LineString","arcs":[77],"properties":{"scalerank":4}},{"type":"LineString","arcs":[78],"properties":{"scalerank":7}},{"type":"LineString","arcs":[79],"properties":{"scalerank":6}},{"type":"LineString","arcs":[80],"properties":{"scalerank":6}},{"type":"LineString","arcs":[81],"properties":{"scalerank":6}},{"type":"LineString","arcs":[82],"properties":{"scalerank":4}},{"type":"LineString","arcs":[83],"properties":{"scalerank":5}},{"type":"LineString","arcs":[84],"properties":{"scalerank":5}},{"type":"LineString","arcs":[85],"properties":{"scalerank":8}},{"type":"LineString","arcs":[86],"properties":{"scalerank":8}},{"type":"LineString","arcs":[87],"properties":{"scalerank":3}},{"type":"LineString","arcs":[88],"properties":{"scalerank":3}},{"type":"LineString","arcs":[89],"properties":{"scalerank":7}},{"type":"LineString","arcs":[90],"properties":{"scalerank":8}},{"type":"LineString","arcs":[91],"properties":{"scalerank":6}},{"type":"LineString","arcs":[92],"properties":{"scalerank":6}},{"type":"LineString","arcs":[93],"properties":{"scalerank":7}},{"type":"LineString","arcs":[94],"properties":{"scalerank":6}},{"type":"LineString","arcs":[95],"properties":{"scalerank":6}},{"type":"LineString","arcs":[96],"properties":{"scalerank":4}},{"type":"LineString","arcs":[97],"properties":{"scalerank":7}},{"type":"LineString","arcs":[98],"properties":{"scalerank":7}},{"type":"LineString","arcs":[99],"properties":{"scalerank":6}},{"type":"LineString","arcs":[100],"properties":{"scalerank":6}},{"type":"LineString","arcs":[101],"properties":{"scalerank":3}},{"type":"LineString","arcs":[102],"properties":{"scalerank":7}},{"type":"LineString","arcs":[103],"properties":{"scalerank":8}},{"type":"LineString","arcs":[104],"properties":{"scalerank":7}},{"type":"LineString","arcs":[105],"properties":{"scalerank":4}},{"type":"LineString","arcs":[106],"properties":{"scalerank":8}},{"type":"LineString","arcs":[107],"properties":{"scalerank":7}},{"type":"LineString","arcs":[108],"properties":{"scalerank":6}},{"type":"LineString","arcs":[109],"properties":{"scalerank":8}},{"type":"LineString","arcs":[110],"properties":{"scalerank":6}},{"type":"MultiLineString","arcs":[[111],[112]],"properties":{"scalerank":7}},{"type":"LineString","arcs":[113],"properties":{"scalerank":3}},{"type":"LineString","arcs":[114],"properties":{"scalerank":8}},{"type":"LineString","arcs":[115],"properties":{"scalerank":6}},{"type":"LineString","arcs":[116],"properties":{"scalerank":3}},{"type":"LineString","arcs":[117],"properties":{"scalerank":6}},{"type":"LineString","arcs":[118],"properties":{"scalerank":8}},{"type":"LineString","arcs":[119],"properties":{"scalerank":7}},{"type":"LineString","arcs":[120],"properties":{"scalerank":3}},{"type":"LineString","arcs":[121],"properties":{"scalerank":8}},{"type":"LineString","arcs":[122],"properties":{"scalerank":7}},{"type":"LineString","arcs":[123],"properties":{"scalerank":8}},{"type":"LineString","arcs":[124],"properties":{"scalerank":8}},{"type":"LineString","arcs":[125],"properties":{"scalerank":3}},{"type":"LineString","arcs":[126],"properties":{"scalerank":3}},{"type":"LineString","arcs":[127],"properties":{"scalerank":3}},{"type":"LineString","arcs":[128],"properties":{"scalerank":6}},{"type":"LineString","arcs":[129],"properties":{"scalerank":8}},{"type":"LineString","arcs":[130],"properties":{"scalerank":8}},{"type":"LineString","arcs":[131],"properties":{"scalerank":6}},{"type":"LineString","arcs":[132],"properties":{"scalerank":6}},{"type":"LineString","arcs":[133],"properties":{"scalerank":7}},{"type":"LineString","arcs":[134],"properties":{"scalerank":7}},{"type":"LineString","arcs":[135],"properties":{"scalerank":6}},{"type":"LineString","arcs":[136],"properties":{"scalerank":6}},{"type":"LineString","arcs":[137],"properties":{"scalerank":5}},{"type":"LineString","arcs":[138],"properties":{"scalerank":7}},{"type":"LineString","arcs":[139],"properties":{"scalerank":4}},{"type":"LineString","arcs":[140],"properties":{"scalerank":7}},{"type":"LineString","arcs":[141],"properties":{"scalerank":7}},{"type":"LineString","arcs":[142],"properties":{"scalerank":6}},{"type":"LineString","arcs":[143],"properties":{"scalerank":7}},{"type":"LineString","arcs":[144],"properties":{"scalerank":7}},{"type":"LineString","arcs":[145],"properties":{"scalerank":3}},{"type":"LineString","arcs":[146],"properties":{"scalerank":6}},{"type":"LineString","arcs":[147],"properties":{"scalerank":8}},{"type":"LineString","arcs":[148],"properties":{"scalerank":7}},{"type":"LineString","arcs":[149],"properties":{"scalerank":3}},{"type":"LineString","arcs":[150],"properties":{"scalerank":3}},{"type":"LineString","arcs":[151],"properties":{"scalerank":3}},{"type":"LineString","arcs":[152],"properties":{"scalerank":3}},{"type":"LineString","arcs":[153],"properties":{"scalerank":8}},{"type":"LineString","arcs":[154],"properties":{"scalerank":4}},{"type":"LineString","arcs":[155],"properties":{"scalerank":3}},{"type":"LineString","arcs":[156],"properties":{"scalerank":3}},{"type":"LineString","arcs":[157],"properties":{"scalerank":7}},{"type":"LineString","arcs":[158],"properties":{"scalerank":3}},{"type":"LineString","arcs":[159],"properties":{"scalerank":3}},{"type":"LineString","arcs":[160],"properties":{"scalerank":3}},{"type":"LineString","arcs":[161],"properties":{"scalerank":7}},{"type":"LineString","arcs":[162],"properties":{"scalerank":8}},{"type":"LineString","arcs":[163],"properties":{"scalerank":3}},{"type":"LineString","arcs":[164],"properties":{"scalerank":7}},{"type":"LineString","arcs":[165],"properties":{"scalerank":3}},{"type":"LineString","arcs":[166],"properties":{"scalerank":3}},{"type":"LineString","arcs":[167],"properties":{"scalerank":5}},{"type":"LineString","arcs":[168],"properties":{"scalerank":6}},{"type":"LineString","arcs":[169],"properties":{"scalerank":3}},{"type":"LineString","arcs":[170],"properties":{"scalerank":5}},{"type":"LineString","arcs":[171],"properties":{"scalerank":5}},{"type":"LineString","arcs":[172],"properties":{"scalerank":4}},{"type":"LineString","arcs":[173],"properties":{"scalerank":6}},{"type":"LineString","arcs":[174],"properties":{"scalerank":6}},{"type":"LineString","arcs":[175],"properties":{"scalerank":5}},{"type":"LineString","arcs":[176],"properties":{"scalerank":3}},{"type":"LineString","arcs":[177],"properties":{"scalerank":5}},{"type":"LineString","arcs":[178],"properties":{"scalerank":5}},{"type":"LineString","arcs":[179],"properties":{"scalerank":8}},{"type":"LineString","arcs":[180],"properties":{"scalerank":3}},{"type":"LineString","arcs":[181],"properties":{"scalerank":3}},{"type":"LineString","arcs":[182],"properties":{"scalerank":8}},{"type":"LineString","arcs":[183],"properties":{"scalerank":6}},{"type":"LineString","arcs":[184],"properties":{"scalerank":6}},{"type":"LineString","arcs":[185],"properties":{"scalerank":6}},{"type":"LineString","arcs":[186],"properties":{"scalerank":3}},{"type":"LineString","arcs":[187],"properties":{"scalerank":7}},{"type":"LineString","arcs":[188],"properties":{"scalerank":3}},{"type":"LineString","arcs":[189],"properties":{"scalerank":7}},{"type":"LineString","arcs":[190],"properties":{"scalerank":3}},{"type":"LineString","arcs":[191],"properties":{"scalerank":5}},{"type":"LineString","arcs":[192],"properties":{"scalerank":8}},{"type":"LineString","arcs":[193],"properties":{"scalerank":5}},{"type":"LineString","arcs":[194],"properties":{"scalerank":3}},{"type":"LineString","arcs":[195],"properties":{"scalerank":8}},{"type":"LineString","arcs":[196],"properties":{"scalerank":5}},{"type":"LineString","arcs":[197],"properties":{"scalerank":5}},{"type":"LineString","arcs":[198],"properties":{"scalerank":8}},{"type":"LineString","arcs":[199],"properties":{"scalerank":5}},{"type":"LineString","arcs":[200],"properties":{"scalerank":8}},{"type":"LineString","arcs":[201],"properties":{"scalerank":8}},{"type":"LineString","arcs":[202],"properties":{"scalerank":8}},{"type":"LineString","arcs":[203],"properties":{"scalerank":3}},{"type":"LineString","arcs":[204],"properties":{"scalerank":3}},{"type":"LineString","arcs":[205],"properties":{"scalerank":6}},{"type":"LineString","arcs":[206],"properties":{"scalerank":4}},{"type":"LineString","arcs":[207],"properties":{"scalerank":8}},{"type":"LineString","arcs":[208],"properties":{"scalerank":4}},{"type":"LineString","arcs":[209],"properties":{"scalerank":7}},{"type":"LineString","arcs":[210],"properties":{"scalerank":8}},{"type":"LineString","arcs":[211],"properties":{"scalerank":6}},{"type":"LineString","arcs":[212],"properties":{"scalerank":7}},{"type":"LineString","arcs":[213],"properties":{"scalerank":7}},{"type":"LineString","arcs":[214],"properties":{"scalerank":6}},{"type":"LineString","arcs":[215],"properties":{"scalerank":6}},{"type":"LineString","arcs":[216],"properties":{"scalerank":6}},{"type":"LineString","arcs":[217],"properties":{"scalerank":7}},{"type":"LineString","arcs":[218],"properties":{"scalerank":5}},{"type":"MultiLineString","arcs":[[219],[220]],"properties":{"scalerank":5}},{"type":"LineString","arcs":[221],"properties":{"scalerank":3}},{"type":"LineString","arcs":[222],"properties":{"scalerank":8}},{"type":"LineString","arcs":[223],"properties":{"scalerank":3}},{"type":"LineString","arcs":[224],"properties":{"scalerank":5}},{"type":"LineString","arcs":[225,226],"properties":{"scalerank":7}},{"type":"LineString","arcs":[227],"properties":{"scalerank":3}},{"type":"LineString","arcs":[228],"properties":{"scalerank":4}},{"type":"LineString","arcs":[229],"properties":{"scalerank":6}},{"type":"LineString","arcs":[230],"properties":{"scalerank":3}},{"type":"LineString","arcs":[231],"properties":{"scalerank":7}},{"type":"LineString","arcs":[232],"properties":{"scalerank":3}},{"type":"LineString","arcs":[233],"properties":{"scalerank":8}},{"type":"LineString","arcs":[234],"properties":{"scalerank":8}},{"type":"LineString","arcs":[235],"properties":{"scalerank":8}},{"type":"LineString","arcs":[236],"properties":{"scalerank":8}},{"type":"LineString","arcs":[237],"properties":{"scalerank":4}},{"type":"LineString","arcs":[238],"properties":{"scalerank":3}},{"type":"LineString","arcs":[239],"properties":{"scalerank":3}},{"type":"LineString","arcs":[240],"properties":{"scalerank":3}},{"type":"LineString","arcs":[241],"properties":{"scalerank":7}},{"type":"LineString","arcs":[242],"properties":{"scalerank":6}},{"type":"LineString","arcs":[243],"properties":{"scalerank":6}},{"type":"LineString","arcs":[244,245],"properties":{"scalerank":6}},{"type":"LineString","arcs":[246],"properties":{"scalerank":8}},{"type":"LineString","arcs":[247],"properties":{"scalerank":8}},{"type":"LineString","arcs":[248],"properties":{"scalerank":7}},{"type":"LineString","arcs":[249],"properties":{"scalerank":5}},{"type":"LineString","arcs":[250],"properties":{"scalerank":3}},{"type":"LineString","arcs":[251],"properties":{"scalerank":6}},{"type":"LineString","arcs":[252],"properties":{"scalerank":6}},{"type":"LineString","arcs":[253],"properties":{"scalerank":3}},{"type":"LineString","arcs":[254],"properties":{"scalerank":6}},{"type":"LineString","arcs":[255],"properties":{"scalerank":6}},{"type":"LineString","arcs":[256],"properties":{"scalerank":8}},{"type":"LineString","arcs":[257],"properties":{"scalerank":7}},{"type":"LineString","arcs":[258],"properties":{"scalerank":7}},{"type":"LineString","arcs":[259],"properties":{"scalerank":7}},{"type":"LineString","arcs":[260],"properties":{"scalerank":7}},{"type":"LineString","arcs":[261],"properties":{"scalerank":8}},{"type":"LineString","arcs":[262],"properties":{"scalerank":3}},{"type":"LineString","arcs":[263],"properties":{"scalerank":3}},{"type":"LineString","arcs":[264],"properties":{"scalerank":7}},{"type":"LineString","arcs":[265],"properties":{"scalerank":3}},{"type":"LineString","arcs":[266],"properties":{"scalerank":3}},{"type":"LineString","arcs":[267],"properties":{"scalerank":7}},{"type":"LineString","arcs":[268],"properties":{"scalerank":7}},{"type":"LineString","arcs":[269],"properties":{"scalerank":3}},{"type":"LineString","arcs":[270],"properties":{"scalerank":6}},{"type":"LineString","arcs":[271],"properties":{"scalerank":4}},{"type":"LineString","arcs":[272],"properties":{"scalerank":6}},{"type":"LineString","arcs":[273],"properties":{"scalerank":4}},{"type":"LineString","arcs":[274],"properties":{"scalerank":6}},{"type":"LineString","arcs":[275],"properties":{"scalerank":6}},{"type":"LineString","arcs":[276],"properties":{"scalerank":4}},{"type":"LineString","arcs":[277],"properties":{"scalerank":6}},{"type":"LineString","arcs":[278],"properties":{"scalerank":6}},{"type":"LineString","arcs":[279],"properties":{"scalerank":6}},{"type":"LineString","arcs":[280],"properties":{"scalerank":6}},{"type":"LineString","arcs":[281],"properties":{"scalerank":6}},{"type":"LineString","arcs":[282],"properties":{"scalerank":7}},{"type":"LineString","arcs":[283],"properties":{"scalerank":5}},{"type":"LineString","arcs":[284],"properties":{"scalerank":7}},{"type":"LineString","arcs":[285],"properties":{"scalerank":7}},{"type":"LineString","arcs":[286],"properties":{"scalerank":7}},{"type":"LineString","arcs":[287],"properties":{"scalerank":6}},{"type":"LineString","arcs":[288],"properties":{"scalerank":8}},{"type":"LineString","arcs":[289],"properties":{"scalerank":4}},{"type":"LineString","arcs":[290],"properties":{"scalerank":8}},{"type":"LineString","arcs":[291],"properties":{"scalerank":6}},{"type":"LineString","arcs":[292],"properties":{"scalerank":6}},{"type":"LineString","arcs":[293],"properties":{"scalerank":6}},{"type":"LineString","arcs":[294],"properties":{"scalerank":6}},{"type":"LineString","arcs":[295],"properties":{"scalerank":6}},{"type":"LineString","arcs":[296],"properties":{"scalerank":8}},{"type":"LineString","arcs":[297],"properties":{"scalerank":7}},{"type":"LineString","arcs":[298],"properties":{"scalerank":3}},{"type":"LineString","arcs":[299],"properties":{"scalerank":7}},{"type":"LineString","arcs":[300],"properties":{"scalerank":7}},{"type":"LineString","arcs":[301],"properties":{"scalerank":8}},{"type":"LineString","arcs":[302],"properties":{"scalerank":6}},{"type":"LineString","arcs":[303],"properties":{"scalerank":3}},{"type":"LineString","arcs":[304],"properties":{"scalerank":7}},{"type":"LineString","arcs":[305],"properties":{"scalerank":7}},{"type":"LineString","arcs":[306],"properties":{"scalerank":8}},{"type":"LineString","arcs":[307],"properties":{"scalerank":6}},{"type":"LineString","arcs":[308],"properties":{"scalerank":5}},{"type":"LineString","arcs":[309],"properties":{"scalerank":8}},{"type":"LineString","arcs":[310],"properties":{"scalerank":7}},{"type":"LineString","arcs":[311],"properties":{"scalerank":7}},{"type":"LineString","arcs":[312],"properties":{"scalerank":6}},{"type":"LineString","arcs":[313],"properties":{"scalerank":3}},{"type":"LineString","arcs":[314],"properties":{"scalerank":6}},{"type":"LineString","arcs":[315],"properties":{"scalerank":3}},{"type":"LineString","arcs":[316],"properties":{"scalerank":3}},{"type":"LineString","arcs":[317],"properties":{"scalerank":3}},{"type":"LineString","arcs":[318],"properties":{"scalerank":6}},{"type":"LineString","arcs":[319],"properties":{"scalerank":6}},{"type":"LineString","arcs":[320],"properties":{"scalerank":6}},{"type":"LineString","arcs":[321],"properties":{"scalerank":7}},{"type":"LineString","arcs":[322],"properties":{"scalerank":7}},{"type":"LineString","arcs":[323],"properties":{"scalerank":7}},{"type":"LineString","arcs":[324],"properties":{"scalerank":6}},{"type":"LineString","arcs":[325],"properties":{"scalerank":6}},{"type":"LineString","arcs":[326],"properties":{"scalerank":6}},{"type":"LineString","arcs":[327],"properties":{"scalerank":3}},{"type":"LineString","arcs":[328],"properties":{"scalerank":4}},{"type":"LineString","arcs":[329],"properties":{"scalerank":4}},{"type":"LineString","arcs":[330],"properties":{"scalerank":4}},{"type":"LineString","arcs":[331],"properties":{"scalerank":6}},{"type":"LineString","arcs":[332],"properties":{"scalerank":3}},{"type":"LineString","arcs":[333],"properties":{"scalerank":3}},{"type":"LineString","arcs":[334],"properties":{"scalerank":3}},{"type":"LineString","arcs":[335],"properties":{"scalerank":5}},{"type":"LineString","arcs":[336],"properties":{"scalerank":7}},{"type":"LineString","arcs":[337],"properties":{"scalerank":3}},{"type":"LineString","arcs":[338],"properties":{"scalerank":4}},{"type":"LineString","arcs":[339],"properties":{"scalerank":8}},{"type":"LineString","arcs":[340],"properties":{"scalerank":3}},{"type":"LineString","arcs":[341],"properties":{"scalerank":3}},{"type":"LineString","arcs":[342],"properties":{"scalerank":8}},{"type":"LineString","arcs":[343],"properties":{"scalerank":7}},{"type":"LineString","arcs":[344],"properties":{"scalerank":8}},{"type":"LineString","arcs":[345],"properties":{"scalerank":8}},{"type":"LineString","arcs":[346],"properties":{"scalerank":3}},{"type":"LineString","arcs":[347],"properties":{"scalerank":3}},{"type":"LineString","arcs":[348],"properties":{"scalerank":3}},{"type":"LineString","arcs":[349],"properties":{"scalerank":6}},{"type":"LineString","arcs":[350],"properties":{"scalerank":8}},{"type":"LineString","arcs":[351],"properties":{"scalerank":4}},{"type":"LineString","arcs":[352],"properties":{"scalerank":7}},{"type":"LineString","arcs":[353],"properties":{"scalerank":4}},{"type":"LineString","arcs":[354],"properties":{"scalerank":8}},{"type":"LineString","arcs":[355],"properties":{"scalerank":8}},{"type":"LineString","arcs":[356],"properties":{"scalerank":7}},{"type":"LineString","arcs":[357],"properties":{"scalerank":6}},{"type":"LineString","arcs":[358],"properties":{"scalerank":6}},{"type":"LineString","arcs":[359],"properties":{"scalerank":7}},{"type":"LineString","arcs":[360],"properties":{"scalerank":8}},{"type":"LineString","arcs":[361],"properties":{"scalerank":8}},{"type":"LineString","arcs":[362],"properties":{"scalerank":3}},{"type":"LineString","arcs":[363],"properties":{"scalerank":3}},{"type":"LineString","arcs":[364],"properties":{"scalerank":6}},{"type":"LineString","arcs":[365],"properties":{"scalerank":7}},{"type":"LineString","arcs":[366],"properties":{"scalerank":7}},{"type":"LineString","arcs":[367],"properties":{"scalerank":8}},{"type":"MultiLineString","arcs":[[368],[369]],"properties":{"scalerank":3}},{"type":"LineString","arcs":[370],"properties":{"scalerank":7}},{"type":"LineString","arcs":[371],"properties":{"scalerank":3}},{"type":"LineString","arcs":[372],"properties":{"scalerank":3}},{"type":"LineString","arcs":[373],"properties":{"scalerank":3}},{"type":"LineString","arcs":[374],"properties":{"scalerank":3}},{"type":"LineString","arcs":[375],"properties":{"scalerank":4}},{"type":"LineString","arcs":[376],"properties":{"scalerank":7}},{"type":"LineString","arcs":[377],"properties":{"scalerank":7}},{"type":"LineString","arcs":[378],"properties":{"scalerank":8}},{"type":"LineString","arcs":[379],"properties":{"scalerank":4}},{"type":"LineString","arcs":[380],"properties":{"scalerank":8}},{"type":"LineString","arcs":[381],"properties":{"scalerank":6}},{"type":"LineString","arcs":[382],"properties":{"scalerank":6}},{"type":"LineString","arcs":[383],"properties":{"scalerank":6}},{"type":"LineString","arcs":[384],"properties":{"scalerank":6}},{"type":"LineString","arcs":[385],"properties":{"scalerank":7}},{"type":"LineString","arcs":[386],"properties":{"scalerank":6}},{"type":"LineString","arcs":[387],"properties":{"scalerank":3}},{"type":"LineString","arcs":[388],"properties":{"scalerank":6}},{"type":"LineString","arcs":[389],"properties":{"scalerank":7}},{"type":"LineString","arcs":[390],"properties":{"scalerank":3}},{"type":"LineString","arcs":[391],"properties":{"scalerank":7}},{"type":"LineString","arcs":[392],"properties":{"scalerank":3}},{"type":"LineString","arcs":[393],"properties":{"scalerank":7}},{"type":"LineString","arcs":[394],"properties":{"scalerank":8}},{"type":"LineString","arcs":[395],"properties":{"scalerank":6}},{"type":"LineString","arcs":[396],"properties":{"scalerank":6}},{"type":"LineString","arcs":[397],"properties":{"scalerank":8}},{"type":"LineString","arcs":[398,399],"properties":{"scalerank":3}},{"type":"LineString","arcs":[400],"properties":{"scalerank":7}},{"type":"LineString","arcs":[401],"properties":{"scalerank":8}},{"type":"LineString","arcs":[402],"properties":{"scalerank":8}},{"type":"LineString","arcs":[403],"properties":{"scalerank":4}},{"type":"LineString","arcs":[404],"properties":{"scalerank":6}},{"type":"LineString","arcs":[405],"properties":{"scalerank":6}},{"type":"LineString","arcs":[406],"properties":{"scalerank":6}},{"type":"LineString","arcs":[407],"properties":{"scalerank":4}},{"type":"LineString","arcs":[408],"properties":{"scalerank":4}},{"type":"LineString","arcs":[409],"properties":{"scalerank":8}},{"type":"LineString","arcs":[410],"properties":{"scalerank":7}},{"type":"LineString","arcs":[411],"properties":{"scalerank":8}},{"type":"LineString","arcs":[412],"properties":{"scalerank":3}},{"type":"LineString","arcs":[413],"properties":{"scalerank":3}},{"type":"LineString","arcs":[414],"properties":{"scalerank":6}},{"type":"LineString","arcs":[415],"properties":{"scalerank":6}},{"type":"LineString","arcs":[416],"properties":{"scalerank":7}},{"type":"LineString","arcs":[417],"properties":{"scalerank":6}},{"type":"LineString","arcs":[418],"properties":{"scalerank":7}},{"type":"LineString","arcs":[419],"properties":{"scalerank":7}},{"type":"LineString","arcs":[420],"properties":{"scalerank":3}},{"type":"LineString","arcs":[421],"properties":{"scalerank":3}},{"type":"LineString","arcs":[422],"properties":{"scalerank":4}},{"type":"LineString","arcs":[423],"properties":{"scalerank":4}},{"type":"LineString","arcs":[424],"properties":{"scalerank":4}},{"type":"LineString","arcs":[425],"properties":{"scalerank":4}},{"type":"LineString","arcs":[426],"properties":{"scalerank":4}},{"type":"LineString","arcs":[427],"properties":{"scalerank":4}},{"type":"LineString","arcs":[428],"properties":{"scalerank":7}},{"type":"LineString","arcs":[429],"properties":{"scalerank":8}},{"type":"LineString","arcs":[430],"properties":{"scalerank":8}},{"type":"LineString","arcs":[431],"properties":{"scalerank":7}},{"type":"LineString","arcs":[432],"properties":{"scalerank":3}},{"type":"LineString","arcs":[433],"properties":{"scalerank":3}},{"type":"LineString","arcs":[434],"properties":{"scalerank":3}},{"type":"LineString","arcs":[435],"properties":{"scalerank":8}},{"type":"MultiLineString","arcs":[[436],[437]],"properties":{"scalerank":3}},{"type":"LineString","arcs":[438],"properties":{"scalerank":6}},{"type":"LineString","arcs":[439],"properties":{"scalerank":6}},{"type":"LineString","arcs":[440],"properties":{"scalerank":7}},{"type":"LineString","arcs":[441],"properties":{"scalerank":7}},{"type":"LineString","arcs":[442],"properties":{"scalerank":7}},{"type":"LineString","arcs":[443],"properties":{"scalerank":7}},{"type":"LineString","arcs":[444],"properties":{"scalerank":3}},{"type":"LineString","arcs":[445],"properties":{"scalerank":6}},{"type":"LineString","arcs":[446],"properties":{"scalerank":8}},{"type":"LineString","arcs":[447],"properties":{"scalerank":7}},{"type":"LineString","arcs":[448],"properties":{"scalerank":8}},{"type":"MultiLineString","arcs":[[449],[450]],"properties":{"scalerank":3}},{"type":"LineString","arcs":[451],"properties":{"scalerank":3}},{"type":"LineString","arcs":[452],"properties":{"scalerank":3}},{"type":"LineString","arcs":[453],"properties":{"scalerank":6}},{"type":"LineString","arcs":[454],"properties":{"scalerank":6}},{"type":"LineString","arcs":[455],"properties":{"scalerank":6}},{"type":"LineString","arcs":[456],"properties":{"scalerank":8}},{"type":"LineString","arcs":[457],"properties":{"scalerank":7}},{"type":"LineString","arcs":[458],"properties":{"scalerank":3}},{"type":"LineString","arcs":[459],"properties":{"scalerank":3}},{"type":"LineString","arcs":[460],"properties":{"scalerank":3}},{"type":"LineString","arcs":[461],"properties":{"scalerank":3}},{"type":"LineString","arcs":[462],"properties":{"scalerank":6}},{"type":"LineString","arcs":[463],"properties":{"scalerank":6}},{"type":"LineString","arcs":[464],"properties":{"scalerank":6}},{"type":"LineString","arcs":[465],"properties":{"scalerank":7}},{"type":"LineString","arcs":[466],"properties":{"scalerank":6}},{"type":"LineString","arcs":[467],"properties":{"scalerank":7}},{"type":"LineString","arcs":[468],"properties":{"scalerank":6}},{"type":"LineString","arcs":[469],"properties":{"scalerank":6}},{"type":"LineString","arcs":[470],"properties":{"scalerank":7}},{"type":"LineString","arcs":[471],"properties":{"scalerank":7}},{"type":"LineString","arcs":[472],"properties":{"scalerank":3}},{"type":"LineString","arcs":[473],"properties":{"scalerank":3}},{"type":"LineString","arcs":[474],"properties":{"scalerank":7}},{"type":"LineString","arcs":[475],"properties":{"scalerank":8}},{"type":"LineString","arcs":[476],"properties":{"scalerank":8}},{"type":"LineString","arcs":[477],"properties":{"scalerank":8}},{"type":"LineString","arcs":[478],"properties":{"scalerank":6}},{"type":"LineString","arcs":[479],"properties":{"scalerank":6}},{"type":"LineString","arcs":[480],"properties":{"scalerank":6}},{"type":"LineString","arcs":[481],"properties":{"scalerank":7}},{"type":"LineString","arcs":[482],"properties":{"scalerank":6}},{"type":"LineString","arcs":[483],"properties":{"scalerank":6}},{"type":"LineString","arcs":[484],"properties":{"scalerank":3}},{"type":"LineString","arcs":[485],"properties":{"scalerank":8}},{"type":"LineString","arcs":[486],"properties":{"scalerank":3}},{"type":"LineString","arcs":[487],"properties":{"scalerank":3}},{"type":"LineString","arcs":[488],"properties":{"scalerank":3}},{"type":"LineString","arcs":[489],"properties":{"scalerank":3}},{"type":"LineString","arcs":[490],"properties":{"scalerank":3}},{"type":"LineString","arcs":[491],"properties":{"scalerank":7}},{"type":"LineString","arcs":[492],"properties":{"scalerank":7}},{"type":"LineString","arcs":[493],"properties":{"scalerank":7}},{"type":"LineString","arcs":[494],"properties":{"scalerank":3}},{"type":"LineString","arcs":[495],"properties":{"scalerank":7}},{"type":"LineString","arcs":[496],"properties":{"scalerank":3}},{"type":"LineString","arcs":[497],"properties":{"scalerank":6}},{"type":"LineString","arcs":[498],"properties":{"scalerank":3}},{"type":"LineString","arcs":[499],"properties":{"scalerank":3}},{"type":"LineString","arcs":[500],"properties":{"scalerank":6}},{"type":"LineString","arcs":[501],"properties":{"scalerank":6}},{"type":"LineString","arcs":[502],"properties":{"scalerank":4}},{"type":"LineString","arcs":[503],"properties":{"scalerank":3}},{"type":"LineString","arcs":[504],"properties":{"scalerank":3}},{"type":"LineString","arcs":[505],"properties":{"scalerank":3}},{"type":"LineString","arcs":[506],"properties":{"scalerank":6}},{"type":"LineString","arcs":[507],"properties":{"scalerank":3}},{"type":"LineString","arcs":[508],"properties":{"scalerank":7}},{"type":"LineString","arcs":[509],"properties":{"scalerank":3}},{"type":"LineString","arcs":[510],"properties":{"scalerank":4}},{"type":"LineString","arcs":[511],"properties":{"scalerank":3}},{"type":"LineString","arcs":[512],"properties":{"scalerank":6}},{"type":"LineString","arcs":[513],"properties":{"scalerank":8}},{"type":"LineString","arcs":[514],"properties":{"scalerank":3}},{"type":"LineString","arcs":[515],"properties":{"scalerank":6}},{"type":"LineString","arcs":[516],"properties":{"scalerank":6}},{"type":"LineString","arcs":[517],"properties":{"scalerank":6}},{"type":"LineString","arcs":[518],"properties":{"scalerank":8}},{"type":"LineString","arcs":[519],"properties":{"scalerank":3}},{"type":"LineString","arcs":[520],"properties":{"scalerank":3}},{"type":"LineString","arcs":[521],"properties":{"scalerank":3}},{"type":"LineString","arcs":[522],"properties":{"scalerank":7}},{"type":"LineString","arcs":[523],"properties":{"scalerank":6}},{"type":"LineString","arcs":[524],"properties":{"scalerank":6}},{"type":"LineString","arcs":[525],"properties":{"scalerank":6}},{"type":"LineString","arcs":[526],"properties":{"scalerank":6}},{"type":"LineString","arcs":[527],"properties":{"scalerank":4}},{"type":"LineString","arcs":[528],"properties":{"scalerank":6}},{"type":"LineString","arcs":[529],"properties":{"scalerank":6}},{"type":"LineString","arcs":[530],"properties":{"scalerank":7}},{"type":"LineString","arcs":[531],"properties":{"scalerank":6}},{"type":"LineString","arcs":[532],"properties":{"scalerank":8}},{"type":"LineString","arcs":[533],"properties":{"scalerank":7}},{"type":"LineString","arcs":[534],"properties":{"scalerank":3}},{"type":"LineString","arcs":[535],"properties":{"scalerank":8}},{"type":"LineString","arcs":[536],"properties":{"scalerank":8}},{"type":"LineString","arcs":[537],"properties":{"scalerank":7}},{"type":"LineString","arcs":[538],"properties":{"scalerank":7}},{"type":"LineString","arcs":[539],"properties":{"scalerank":7}},{"type":"LineString","arcs":[540],"properties":{"scalerank":3}},{"type":"LineString","arcs":[541],"properties":{"scalerank":6}},{"type":"LineString","arcs":[542],"properties":{"scalerank":3}},{"type":"LineString","arcs":[543],"properties":{"scalerank":3}},{"type":"LineString","arcs":[544],"properties":{"scalerank":3}},{"type":"LineString","arcs":[545],"properties":{"scalerank":3}},{"type":"LineString","arcs":[546],"properties":{"scalerank":7}},{"type":"LineString","arcs":[547],"properties":{"scalerank":8}},{"type":"LineString","arcs":[548],"properties":{"scalerank":7}},{"type":"LineString","arcs":[549],"properties":{"scalerank":7}},{"type":"LineString","arcs":[550],"properties":{"scalerank":7}},{"type":"LineString","arcs":[551],"properties":{"scalerank":7}},{"type":"LineString","arcs":[552],"properties":{"scalerank":8}},{"type":"LineString","arcs":[553],"properties":{"scalerank":8}},{"type":"LineString","arcs":[554],"properties":{"scalerank":3}},{"type":"LineString","arcs":[555],"properties":{"scalerank":3}},{"type":"LineString","arcs":[556],"properties":{"scalerank":6}},{"type":"LineString","arcs":[557],"properties":{"scalerank":3}},{"type":"LineString","arcs":[558],"properties":{"scalerank":3}},{"type":"LineString","arcs":[559],"properties":{"scalerank":6}},{"type":"LineString","arcs":[560],"properties":{"scalerank":3}},{"type":"LineString","arcs":[561],"properties":{"scalerank":6}},{"type":"LineString","arcs":[562],"properties":{"scalerank":6}},{"type":"LineString","arcs":[563],"properties":{"scalerank":7}},{"type":"LineString","arcs":[564],"properties":{"scalerank":3}},{"type":"LineString","arcs":[565],"properties":{"scalerank":7}},{"type":"LineString","arcs":[566],"properties":{"scalerank":7}},{"type":"LineString","arcs":[567],"properties":{"scalerank":7}},{"type":"LineString","arcs":[568],"properties":{"scalerank":7}},{"type":"LineString","arcs":[569],"properties":{"scalerank":7}},{"type":"LineString","arcs":[570],"properties":{"scalerank":6}},{"type":"LineString","arcs":[571],"properties":{"scalerank":7}},{"type":"LineString","arcs":[572],"properties":{"scalerank":6}},{"type":"LineString","arcs":[573],"properties":{"scalerank":6}},{"type":"LineString","arcs":[574],"properties":{"scalerank":6}},{"type":"LineString","arcs":[575],"properties":{"scalerank":6}},{"type":"LineString","arcs":[576],"properties":{"scalerank":6}},{"type":"LineString","arcs":[577],"properties":{"scalerank":6}},{"type":"LineString","arcs":[578],"properties":{"scalerank":6}},{"type":"LineString","arcs":[579],"properties":{"scalerank":6}},{"type":"LineString","arcs":[580],"properties":{"scalerank":7}},{"type":"LineString","arcs":[581],"properties":{"scalerank":3}},{"type":"LineString","arcs":[582],"properties":{"scalerank":3}},{"type":"LineString","arcs":[583],"properties":{"scalerank":6}},{"type":"LineString","arcs":[584],"properties":{"scalerank":6}},{"type":"LineString","arcs":[585],"properties":{"scalerank":3}},{"type":"LineString","arcs":[586],"properties":{"scalerank":3}},{"type":"LineString","arcs":[587],"properties":{"scalerank":6}},{"type":"LineString","arcs":[588],"properties":{"scalerank":3}},{"type":"LineString","arcs":[589],"properties":{"scalerank":7}},{"type":"LineString","arcs":[590],"properties":{"scalerank":7}},{"type":"LineString","arcs":[591],"properties":{"scalerank":7}},{"type":"LineString","arcs":[592],"properties":{"scalerank":3}},{"type":"LineString","arcs":[593],"properties":{"scalerank":3}},{"type":"LineString","arcs":[594],"properties":{"scalerank":3}},{"type":"LineString","arcs":[595],"properties":{"scalerank":7}},{"type":"LineString","arcs":[596],"properties":{"scalerank":7}},{"type":"LineString","arcs":[597],"properties":{"scalerank":7}},{"type":"LineString","arcs":[598],"properties":{"scalerank":7}},{"type":"LineString","arcs":[599],"properties":{"scalerank":7}},{"type":"LineString","arcs":[600],"properties":{"scalerank":7}},{"type":"LineString","arcs":[601],"properties":{"scalerank":4}},{"type":"LineString","arcs":[602],"properties":{"scalerank":7}},{"type":"LineString","arcs":[603],"properties":{"scalerank":7}},{"type":"LineString","arcs":[604],"properties":{"scalerank":7}},{"type":"LineString","arcs":[605],"properties":{"scalerank":7}},{"type":"LineString","arcs":[606],"properties":{"scalerank":7}},{"type":"LineString","arcs":[607],"properties":{"scalerank":7}},{"type":"LineString","arcs":[608],"properties":{"scalerank":7}},{"type":"LineString","arcs":[609],"properties":{"scalerank":7}},{"type":"LineString","arcs":[610],"properties":{"scalerank":3}},{"type":"LineString","arcs":[611],"properties":{"scalerank":3}},{"type":"LineString","arcs":[612],"properties":{"scalerank":7}},{"type":"LineString","arcs":[613],"properties":{"scalerank":7}},{"type":"LineString","arcs":[614],"properties":{"scalerank":6}},{"type":"LineString","arcs":[615],"properties":{"scalerank":5}},{"type":"LineString","arcs":[616],"properties":{"scalerank":5}},{"type":"LineString","arcs":[617],"properties":{"scalerank":5}},{"type":"LineString","arcs":[618],"properties":{"scalerank":3}},{"type":"LineString","arcs":[619],"properties":{"scalerank":5}},{"type":"LineString","arcs":[620],"properties":{"scalerank":7}},{"type":"LineString","arcs":[621],"properties":{"scalerank":7}},{"type":"LineString","arcs":[622],"properties":{"scalerank":7}},{"type":"LineString","arcs":[623],"properties":{"scalerank":3}},{"type":"LineString","arcs":[624],"properties":{"scalerank":6}},{"type":"LineString","arcs":[625],"properties":{"scalerank":3}},{"type":"LineString","arcs":[626],"properties":{"scalerank":6}},{"type":"LineString","arcs":[627],"properties":{"scalerank":7}},{"type":"LineString","arcs":[628],"properties":{"scalerank":6}},{"type":"LineString","arcs":[629],"properties":{"scalerank":3}},{"type":"LineString","arcs":[630],"properties":{"scalerank":6}},{"type":"LineString","arcs":[631],"properties":{"scalerank":7}},{"type":"LineString","arcs":[632],"properties":{"scalerank":7}},{"type":"LineString","arcs":[633],"properties":{"scalerank":3}},{"type":"LineString","arcs":[634],"properties":{"scalerank":6}},{"type":"LineString","arcs":[635],"properties":{"scalerank":6}},{"type":"LineString","arcs":[636],"properties":{"scalerank":8}},{"type":"LineString","arcs":[637],"properties":{"scalerank":7}},{"type":"LineString","arcs":[638],"properties":{"scalerank":7}},{"type":"LineString","arcs":[639],"properties":{"scalerank":6}},{"type":"LineString","arcs":[640],"properties":{"scalerank":7}},{"type":"LineString","arcs":[641],"properties":{"scalerank":3}},{"type":"LineString","arcs":[642],"properties":{"scalerank":7}},{"type":"LineString","arcs":[643],"properties":{"scalerank":3}},{"type":"LineString","arcs":[644],"properties":{"scalerank":8}},{"type":"LineString","arcs":[645],"properties":{"scalerank":3}},{"type":"LineString","arcs":[646],"properties":{"scalerank":6}},{"type":"LineString","arcs":[647],"properties":{"scalerank":6}},{"type":"LineString","arcs":[648],"properties":{"scalerank":3}},{"type":"LineString","arcs":[649],"properties":{"scalerank":6}},{"type":"LineString","arcs":[650],"properties":{"scalerank":3}},{"type":"LineString","arcs":[651],"properties":{"scalerank":4}},{"type":"LineString","arcs":[652],"properties":{"scalerank":6}},{"type":"LineString","arcs":[653],"properties":{"scalerank":6}},{"type":"LineString","arcs":[654],"properties":{"scalerank":7}},{"type":"LineString","arcs":[655],"properties":{"scalerank":7}},{"type":"LineString","arcs":[656],"properties":{"scalerank":7}},{"type":"LineString","arcs":[657],"properties":{"scalerank":6}},{"type":"LineString","arcs":[658],"properties":{"scalerank":6}},{"type":"LineString","arcs":[659],"properties":{"scalerank":3}},{"type":"LineString","arcs":[660],"properties":{"scalerank":4}},{"type":"LineString","arcs":[661],"properties":{"scalerank":3}},{"type":"LineString","arcs":[662],"properties":{"scalerank":8}},{"type":"LineString","arcs":[663],"properties":{"scalerank":8}},{"type":"LineString","arcs":[664],"properties":{"scalerank":7}},{"type":"LineString","arcs":[665],"properties":{"scalerank":8}},{"type":"LineString","arcs":[666],"properties":{"scalerank":3}},{"type":"LineString","arcs":[667],"properties":{"scalerank":8}},{"type":"LineString","arcs":[668],"properties":{"scalerank":6}},{"type":"LineString","arcs":[669],"properties":{"scalerank":3}},{"type":"LineString","arcs":[670],"properties":{"scalerank":7}},{"type":"LineString","arcs":[671],"properties":{"scalerank":3}},{"type":"LineString","arcs":[672],"properties":{"scalerank":6}},{"type":"LineString","arcs":[673],"properties":{"scalerank":7}},{"type":"LineString","arcs":[674],"properties":{"scalerank":7}},{"type":"LineString","arcs":[675],"properties":{"scalerank":3}},{"type":"LineString","arcs":[676],"properties":{"scalerank":7}},{"type":"LineString","arcs":[677],"properties":{"scalerank":4}},{"type":"LineString","arcs":[678],"properties":{"scalerank":5}},{"type":"LineString","arcs":[679],"properties":{"scalerank":5}},{"type":"LineString","arcs":[680],"properties":{"scalerank":3}},{"type":"LineString","arcs":[681],"properties":{"scalerank":8}},{"type":"LineString","arcs":[682],"properties":{"scalerank":6}},{"type":"LineString","arcs":[683],"properties":{"scalerank":5}},{"type":"LineString","arcs":[684],"properties":{"scalerank":4}},{"type":"LineString","arcs":[685],"properties":{"scalerank":3}},{"type":"LineString","arcs":[686],"properties":{"scalerank":7}},{"type":"LineString","arcs":[687],"properties":{"scalerank":6}},{"type":"LineString","arcs":[688],"properties":{"scalerank":8}},{"type":"LineString","arcs":[689],"properties":{"scalerank":8}},{"type":"LineString","arcs":[690],"properties":{"scalerank":8}},{"type":"LineString","arcs":[691],"properties":{"scalerank":3}},{"type":"LineString","arcs":[692],"properties":{"scalerank":6}},{"type":"LineString","arcs":[693],"properties":{"scalerank":6}},{"type":"LineString","arcs":[694],"properties":{"scalerank":5}},{"type":"LineString","arcs":[695],"properties":{"scalerank":8}},{"type":"LineString","arcs":[696],"properties":{"scalerank":8}},{"type":"LineString","arcs":[697],"properties":{"scalerank":7}},{"type":"LineString","arcs":[698],"properties":{"scalerank":8}},{"type":"LineString","arcs":[699],"properties":{"scalerank":8}},{"type":"LineString","arcs":[700],"properties":{"scalerank":4}},{"type":"LineString","arcs":[701],"properties":{"scalerank":6}},{"type":"LineString","arcs":[702],"properties":{"scalerank":3}},{"type":"LineString","arcs":[703],"properties":{"scalerank":3}},{"type":"LineString","arcs":[704],"properties":{"scalerank":3}},{"type":"LineString","arcs":[705],"properties":{"scalerank":7}},{"type":"LineString","arcs":[706],"properties":{"scalerank":4}},{"type":"LineString","arcs":[707],"properties":{"scalerank":3}},{"type":"LineString","arcs":[708],"properties":{"scalerank":4}},{"type":"LineString","arcs":[709],"properties":{"scalerank":7}},{"type":"LineString","arcs":[710],"properties":{"scalerank":8}},{"type":"LineString","arcs":[711],"properties":{"scalerank":7}},{"type":"LineString","arcs":[712],"properties":{"scalerank":8}},{"type":"LineString","arcs":[713],"properties":{"scalerank":3}},{"type":"LineString","arcs":[714],"properties":{"scalerank":4}},{"type":"LineString","arcs":[715],"properties":{"scalerank":3}},{"type":"LineString","arcs":[716],"properties":{"scalerank":7}},{"type":"LineString","arcs":[717],"properties":{"scalerank":3}},{"type":"LineString","arcs":[718],"properties":{"scalerank":4}},{"type":"LineString","arcs":[719],"properties":{"scalerank":4}},{"type":"LineString","arcs":[720],"properties":{"scalerank":3}},{"type":"LineString","arcs":[721],"properties":{"scalerank":3}},{"type":"LineString","arcs":[722],"properties":{"scalerank":4}},{"type":"LineString","arcs":[723],"properties":{"scalerank":8}},{"type":"LineString","arcs":[724],"properties":{"scalerank":8}},{"type":"LineString","arcs":[725],"properties":{"scalerank":7}},{"type":"LineString","arcs":[726],"properties":{"scalerank":3}},{"type":"LineString","arcs":[727],"properties":{"scalerank":8}},{"type":"LineString","arcs":[728],"properties":{"scalerank":4}},{"type":"LineString","arcs":[729],"properties":{"scalerank":4}},{"type":"LineString","arcs":[730],"properties":{"scalerank":3}},{"type":"LineString","arcs":[731],"properties":{"scalerank":4}},{"type":"LineString","arcs":[732],"properties":{"scalerank":4}},{"type":"LineString","arcs":[733],"properties":{"scalerank":8}},{"type":"LineString","arcs":[734],"properties":{"scalerank":4}},{"type":"LineString","arcs":[735],"properties":{"scalerank":8}},{"type":"LineString","arcs":[736],"properties":{"scalerank":7}},{"type":"LineString","arcs":[737],"properties":{"scalerank":3}},{"type":"LineString","arcs":[738],"properties":{"scalerank":3}},{"type":"LineString","arcs":[739],"properties":{"scalerank":3}},{"type":"LineString","arcs":[740],"properties":{"scalerank":3}},{"type":"LineString","arcs":[741],"properties":{"scalerank":4}},{"type":"LineString","arcs":[742],"properties":{"scalerank":4}},{"type":"LineString","arcs":[743],"properties":{"scalerank":8}},{"type":"LineString","arcs":[744],"properties":{"scalerank":3}},{"type":"LineString","arcs":[745],"properties":{"scalerank":8}},{"type":"LineString","arcs":[746],"properties":{"scalerank":3}},{"type":"LineString","arcs":[747],"properties":{"scalerank":3}},{"type":"LineString","arcs":[748],"properties":{"scalerank":3}},{"type":"LineString","arcs":[749],"properties":{"scalerank":4}},{"type":"LineString","arcs":[750],"properties":{"scalerank":7}},{"type":"LineString","arcs":[751],"properties":{"scalerank":7}},{"type":"LineString","arcs":[752],"properties":{"scalerank":7}},{"type":"LineString","arcs":[753],"properties":{"scalerank":4}},{"type":"LineString","arcs":[754],"properties":{"scalerank":7}},{"type":"LineString","arcs":[755],"properties":{"scalerank":3}},{"type":"LineString","arcs":[756],"properties":{"scalerank":8}},{"type":"LineString","arcs":[757],"properties":{"scalerank":6}},{"type":"LineString","arcs":[758],"properties":{"scalerank":3}},{"type":"LineString","arcs":[759,760],"properties":{"scalerank":3}},{"type":"LineString","arcs":[761],"properties":{"scalerank":8}},{"type":"LineString","arcs":[762],"properties":{"scalerank":3}},{"type":"LineString","arcs":[763],"properties":{"scalerank":3}},{"type":"LineString","arcs":[764],"properties":{"scalerank":8}},{"type":"LineString","arcs":[765],"properties":{"scalerank":6}},{"type":"LineString","arcs":[766],"properties":{"scalerank":3}},{"type":"LineString","arcs":[767],"properties":{"scalerank":3}},{"type":"LineString","arcs":[768],"properties":{"scalerank":7}},{"type":"LineString","arcs":[769],"properties":{"scalerank":6}},{"type":"LineString","arcs":[770],"properties":{"scalerank":7}},{"type":"LineString","arcs":[771],"properties":{"scalerank":6}},{"type":"MultiLineString","arcs":[[772],[773],[774]],"properties":{"scalerank":5}},{"type":"LineString","arcs":[775],"properties":{"scalerank":6}},{"type":"LineString","arcs":[776],"properties":{"scalerank":8}},{"type":"LineString","arcs":[777],"properties":{"scalerank":6}},{"type":"LineString","arcs":[778],"properties":{"scalerank":6}},{"type":"LineString","arcs":[779],"properties":{"scalerank":3}},{"type":"LineString","arcs":[780],"properties":{"scalerank":4}},{"type":"LineString","arcs":[781],"properties":{"scalerank":4}},{"type":"LineString","arcs":[782],"properties":{"scalerank":7}},{"type":"LineString","arcs":[783],"properties":{"scalerank":8}},{"type":"LineString","arcs":[784],"properties":{"scalerank":4}},{"type":"LineString","arcs":[785],"properties":{"scalerank":4}},{"type":"LineString","arcs":[786],"properties":{"scalerank":3}},{"type":"LineString","arcs":[787],"properties":{"scalerank":3}},{"type":"LineString","arcs":[788],"properties":{"scalerank":6}},{"type":"LineString","arcs":[789],"properties":{"scalerank":7}},{"type":"LineString","arcs":[790],"properties":{"scalerank":7}},{"type":"LineString","arcs":[791],"properties":{"scalerank":3}},{"type":"LineString","arcs":[792],"properties":{"scalerank":3}},{"type":"LineString","arcs":[793,794],"properties":{"scalerank":3}},{"type":"MultiLineString","arcs":[[795],[796]],"properties":{"scalerank":6}},{"type":"LineString","arcs":[797],"properties":{"scalerank":3}},{"type":"LineString","arcs":[798],"properties":{"scalerank":6}},{"type":"LineString","arcs":[799],"properties":{"scalerank":4}},{"type":"LineString","arcs":[800],"properties":{"scalerank":6}},{"type":"LineString","arcs":[801],"properties":{"scalerank":7}},{"type":"LineString","arcs":[802],"properties":{"scalerank":4}},{"type":"LineString","arcs":[803],"properties":{"scalerank":3}},{"type":"LineString","arcs":[804],"properties":{"scalerank":6}},{"type":"LineString","arcs":[805],"properties":{"scalerank":6}},{"type":"LineString","arcs":[806],"properties":{"scalerank":6}},{"type":"LineString","arcs":[807],"properties":{"scalerank":3}},{"type":"LineString","arcs":[808],"properties":{"scalerank":7}},{"type":"LineString","arcs":[809],"properties":{"scalerank":3}},{"type":"LineString","arcs":[810],"properties":{"scalerank":3}},{"type":"LineString","arcs":[811],"properties":{"scalerank":3}},{"type":"LineString","arcs":[812],"properties":{"scalerank":5}},{"type":"LineString","arcs":[813],"properties":{"scalerank":4}},{"type":"LineString","arcs":[814],"properties":{"scalerank":3}},{"type":"LineString","arcs":[815],"properties":{"scalerank":3}},{"type":"LineString","arcs":[816],"properties":{"scalerank":3}},{"type":"LineString","arcs":[817],"properties":{"scalerank":6}},{"type":"LineString","arcs":[818],"properties":{"scalerank":5}},{"type":"LineString","arcs":[819],"properties":{"scalerank":4}},{"type":"LineString","arcs":[820],"properties":{"scalerank":4}},{"type":"LineString","arcs":[821],"properties":{"scalerank":7}},{"type":"LineString","arcs":[822],"properties":{"scalerank":3}},{"type":"LineString","arcs":[823],"properties":{"scalerank":8}},{"type":"LineString","arcs":[824],"properties":{"scalerank":3}},{"type":"LineString","arcs":[825],"properties":{"scalerank":6}},{"type":"LineString","arcs":[826],"properties":{"scalerank":8}},{"type":"LineString","arcs":[827],"properties":{"scalerank":8}},{"type":"LineString","arcs":[828],"properties":{"scalerank":3}},{"type":"LineString","arcs":[829],"properties":{"scalerank":6}},{"type":"LineString","arcs":[830],"properties":{"scalerank":3}},{"type":"LineString","arcs":[831],"properties":{"scalerank":8}},{"type":"LineString","arcs":[832],"properties":{"scalerank":4}},{"type":"LineString","arcs":[833],"properties":{"scalerank":6}},{"type":"LineString","arcs":[834],"properties":{"scalerank":7}},{"type":"LineString","arcs":[835],"properties":{"scalerank":7}},{"type":"LineString","arcs":[836],"properties":{"scalerank":8}},{"type":"LineString","arcs":[837],"properties":{"scalerank":3}},{"type":"LineString","arcs":[838],"properties":{"scalerank":3}},{"type":"LineString","arcs":[839],"properties":{"scalerank":8}},{"type":"LineString","arcs":[840],"properties":{"scalerank":3}},{"type":"LineString","arcs":[841],"properties":{"scalerank":6}},{"type":"LineString","arcs":[842],"properties":{"scalerank":6}},{"type":"LineString","arcs":[843],"properties":{"scalerank":6}},{"type":"LineString","arcs":[844],"properties":{"scalerank":7}},{"type":"LineString","arcs":[845,846],"properties":{"scalerank":3}},{"type":"LineString","arcs":[847],"properties":{"scalerank":6}},{"type":"LineString","arcs":[848],"properties":{"scalerank":3}},{"type":"LineString","arcs":[849],"properties":{"scalerank":6}},{"type":"LineString","arcs":[850],"properties":{"scalerank":7}},{"type":"LineString","arcs":[851,852],"properties":{"scalerank":3}},{"type":"LineString","arcs":[853],"properties":{"scalerank":3}},{"type":"LineString","arcs":[854],"properties":{"scalerank":8}},{"type":"LineString","arcs":[855],"properties":{"scalerank":5}},{"type":"LineString","arcs":[856],"properties":{"scalerank":4}},{"type":"LineString","arcs":[857],"properties":{"scalerank":7}},{"type":"LineString","arcs":[858],"properties":{"scalerank":3}},{"type":"LineString","arcs":[859],"properties":{"scalerank":7}},{"type":"LineString","arcs":[860],"properties":{"scalerank":4}},{"type":"LineString","arcs":[861],"properties":{"scalerank":7}},{"type":"LineString","arcs":[862],"properties":{"scalerank":6}},{"type":"LineString","arcs":[863],"properties":{"scalerank":3}},{"type":"LineString","arcs":[864],"properties":{"scalerank":4}},{"type":"LineString","arcs":[865],"properties":{"scalerank":5}},{"type":"LineString","arcs":[866],"properties":{"scalerank":8}},{"type":"LineString","arcs":[867],"properties":{"scalerank":8}},{"type":"LineString","arcs":[868],"properties":{"scalerank":7}},{"type":"LineString","arcs":[869],"properties":{"scalerank":6}},{"type":"LineString","arcs":[870],"properties":{"scalerank":7}},{"type":"LineString","arcs":[871],"properties":{"scalerank":7}},{"type":"LineString","arcs":[872],"properties":{"scalerank":6}},{"type":"LineString","arcs":[873],"properties":{"scalerank":7}},{"type":"LineString","arcs":[874],"properties":{"scalerank":3}},{"type":"LineString","arcs":[875],"properties":{"scalerank":4}},{"type":"LineString","arcs":[876],"properties":{"scalerank":6}},{"type":"LineString","arcs":[877],"properties":{"scalerank":3}},{"type":"LineString","arcs":[878],"properties":{"scalerank":8}},{"type":"LineString","arcs":[879],"properties":{"scalerank":6}},{"type":"LineString","arcs":[880],"properties":{"scalerank":8}},{"type":"LineString","arcs":[881],"properties":{"scalerank":3}},{"type":"LineString","arcs":[882],"properties":{"scalerank":4}},{"type":"LineString","arcs":[883],"properties":{"scalerank":7}},{"type":"LineString","arcs":[884],"properties":{"scalerank":6}},{"type":"LineString","arcs":[885],"properties":{"scalerank":6}},{"type":"LineString","arcs":[886],"properties":{"scalerank":6}},{"type":"LineString","arcs":[887],"properties":{"scalerank":8}},{"type":"LineString","arcs":[888],"properties":{"scalerank":4}},{"type":"LineString","arcs":[889],"properties":{"scalerank":5}},{"type":"LineString","arcs":[890],"properties":{"scalerank":3}},{"type":"LineString","arcs":[891],"properties":{"scalerank":5}},{"type":"LineString","arcs":[892],"properties":{"scalerank":4}},{"type":"LineString","arcs":[893],"properties":{"scalerank":4}},{"type":"MultiLineString","arcs":[[894],[895]],"properties":{"scalerank":6}},{"type":"LineString","arcs":[896],"properties":{"scalerank":3}},{"type":"LineString","arcs":[897],"properties":{"scalerank":8}},{"type":"LineString","arcs":[898],"properties":{"scalerank":8}},{"type":"LineString","arcs":[899],"properties":{"scalerank":7}},{"type":"LineString","arcs":[900],"properties":{"scalerank":7}},{"type":"LineString","arcs":[901],"properties":{"scalerank":6}},{"type":"LineString","arcs":[902],"properties":{"scalerank":5}},{"type":"LineString","arcs":[903],"properties":{"scalerank":3}},{"type":"LineString","arcs":[904,905],"properties":{"scalerank":8}},{"type":"LineString","arcs":[906],"properties":{"scalerank":4}},{"type":"MultiLineString","arcs":[[907],[908],[909],[910]],"properties":{"scalerank":5}},{"type":"LineString","arcs":[911],"properties":{"scalerank":8}},{"type":"LineString","arcs":[912],"properties":{"scalerank":3}},{"type":"LineString","arcs":[913],"properties":{"scalerank":6}},{"type":"LineString","arcs":[914],"properties":{"scalerank":4}},{"type":"LineString","arcs":[915],"properties":{"scalerank":6}},{"type":"LineString","arcs":[916],"properties":{"scalerank":3}},{"type":"LineString","arcs":[917],"properties":{"scalerank":8}},{"type":"LineString","arcs":[918],"properties":{"scalerank":3}},{"type":"LineString","arcs":[919],"properties":{"scalerank":6}},{"type":"LineString","arcs":[920],"properties":{"scalerank":7}},{"type":"LineString","arcs":[921],"properties":{"scalerank":7}},{"type":"LineString","arcs":[922],"properties":{"scalerank":5}},{"type":"LineString","arcs":[923],"properties":{"scalerank":4}},{"type":"LineString","arcs":[924],"properties":{"scalerank":7}},{"type":"LineString","arcs":[925],"properties":{"scalerank":5}},{"type":"LineString","arcs":[926],"properties":{"scalerank":3}},{"type":"LineString","arcs":[927],"properties":{"scalerank":7}},{"type":"LineString","arcs":[928],"properties":{"scalerank":7}},{"type":"LineString","arcs":[929],"properties":{"scalerank":5}},{"type":"LineString","arcs":[930],"properties":{"scalerank":8}},{"type":"LineString","arcs":[931],"properties":{"scalerank":6}},{"type":"LineString","arcs":[932],"properties":{"scalerank":4}},{"type":"LineString","arcs":[933],"properties":{"scalerank":7}},{"type":"MultiLineString","arcs":[[934],[935]],"properties":{"scalerank":4}},{"type":"LineString","arcs":[936],"properties":{"scalerank":6}},{"type":"LineString","arcs":[937],"properties":{"scalerank":7}},{"type":"LineString","arcs":[938],"properties":{"scalerank":3}},{"type":"LineString","arcs":[939],"properties":{"scalerank":3}},{"type":"LineString","arcs":[940],"properties":{"scalerank":5}},{"type":"LineString","arcs":[941],"properties":{"scalerank":5}},{"type":"LineString","arcs":[942],"properties":{"scalerank":3}},{"type":"MultiLineString","arcs":[[943],[944]],"properties":{"scalerank":7}},{"type":"LineString","arcs":[945],"properties":{"scalerank":3}},{"type":"LineString","arcs":[946],"properties":{"scalerank":4}},{"type":"LineString","arcs":[947],"properties":{"scalerank":3}},{"type":"LineString","arcs":[948],"properties":{"scalerank":3}},{"type":"LineString","arcs":[949],"properties":{"scalerank":3}},{"type":"LineString","arcs":[950],"properties":{"scalerank":4}},{"type":"LineString","arcs":[951],"properties":{"scalerank":7}},{"type":"LineString","arcs":[952],"properties":{"scalerank":4}},{"type":"LineString","arcs":[953],"properties":{"scalerank":4}},{"type":"LineString","arcs":[954],"properties":{"scalerank":3}},{"type":"LineString","arcs":[955],"properties":{"scalerank":7}},{"type":"LineString","arcs":[956],"properties":{"scalerank":5}},{"type":"LineString","arcs":[957],"properties":{"scalerank":6}},{"type":"LineString","arcs":[958],"properties":{"scalerank":3}},{"type":"LineString","arcs":[959],"properties":{"scalerank":7}},{"type":"LineString","arcs":[960],"properties":{"scalerank":6}},{"type":"LineString","arcs":[961],"properties":{"scalerank":7}},{"type":"LineString","arcs":[962],"properties":{"scalerank":7}},{"type":"LineString","arcs":[963],"properties":{"scalerank":8}},{"type":"LineString","arcs":[964],"properties":{"scalerank":3}},{"type":"LineString","arcs":[965],"properties":{"scalerank":3}},{"type":"LineString","arcs":[966],"properties":{"scalerank":5}},{"type":"LineString","arcs":[967],"properties":{"scalerank":8}},{"type":"LineString","arcs":[968],"properties":{"scalerank":6}},{"type":"LineString","arcs":[969],"properties":{"scalerank":3}},{"type":"LineString","arcs":[970],"properties":{"scalerank":3}},{"type":"LineString","arcs":[971],"properties":{"scalerank":4}},{"type":"LineString","arcs":[972],"properties":{"scalerank":6}},{"type":"LineString","arcs":[973],"properties":{"scalerank":4}},{"type":"LineString","arcs":[974],"properties":{"scalerank":8}},{"type":"LineString","arcs":[975],"properties":{"scalerank":4}},{"type":"LineString","arcs":[976],"properties":{"scalerank":3}},{"type":"LineString","arcs":[977],"properties":{"scalerank":4}},{"type":"LineString","arcs":[978],"properties":{"scalerank":4}},{"type":"LineString","arcs":[979],"properties":{"scalerank":3}},{"type":"LineString","arcs":[980],"properties":{"scalerank":4}},{"type":"MultiLineString","arcs":[[981],[982]],"properties":{"scalerank":4}},{"type":"LineString","arcs":[983],"properties":{"scalerank":5}},{"type":"LineString","arcs":[984],"properties":{"scalerank":3}},{"type":"LineString","arcs":[985],"properties":{"scalerank":4}},{"type":"LineString","arcs":[986],"properties":{"scalerank":6}},{"type":"LineString","arcs":[987],"properties":{"scalerank":6}},{"type":"LineString","arcs":[988],"properties":{"scalerank":7}},{"type":"LineString","arcs":[989],"properties":{"scalerank":4}},{"type":"LineString","arcs":[990],"properties":{"scalerank":4}},{"type":"LineString","arcs":[991],"properties":{"scalerank":3}},{"type":"LineString","arcs":[992],"properties":{"scalerank":4}},{"type":"LineString","arcs":[993],"properties":{"scalerank":8}},{"type":"LineString","arcs":[994],"properties":{"scalerank":6}},{"type":"LineString","arcs":[995],"properties":{"scalerank":6}},{"type":"LineString","arcs":[996],"properties":{"scalerank":4}},{"type":"LineString","arcs":[997],"properties":{"scalerank":7}},{"type":"LineString","arcs":[998],"properties":{"scalerank":8}},{"type":"LineString","arcs":[999],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1000],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1001],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1002],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1003],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1004],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1005],"properties":{"scalerank":3}},{"type":"MultiLineString","arcs":[[1006],[1007]],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1008],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1009],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1010],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1011,1012],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1013],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1014],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1015],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1016],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1017],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1018],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1019],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1020],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1021],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1022],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1023],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1024],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1025],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1026],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1027],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1028],"properties":{"scalerank":3}},{"type":"MultiLineString","arcs":[[1029],[1030]],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1031],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1032],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1033],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1034],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1035],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1036],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1037],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1038],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1039],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1040],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1041],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1042],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1043],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1044],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1045],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1046],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1047],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1048],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1049],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1050],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1051],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1052],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1053],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1054],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1055],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1056],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1057],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1058],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1059],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1060],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1061],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1062],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1063],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1064],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1065],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1066],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1067],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1068],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1069],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1070],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1071],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1072],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1073],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1074],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1075],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1076],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1077],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1078],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1079],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1080],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1081],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1082],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1083],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1084],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1085],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1086],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1087],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1088],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1089],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1090],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1091],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1092],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1093],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1094],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1095],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1096],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1097],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1098],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1099],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1100],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1101],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1102],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1103],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1104],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1105],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1106],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1107],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1108],"properties":{"scalerank":4}},{"type":"MultiLineString","arcs":[[1109],[1110]],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1111],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1112],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1113],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1114],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1115],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1116],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1117],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1118],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1119],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1120],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1121],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1122],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1123],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1124],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1125],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1126],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1127],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1128],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1129],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1130],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1131],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1132],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1133],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1134],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1135],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1136],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1137],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1138],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1139],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1140],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1141],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1142],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1143],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1144],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1145],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1146],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1147],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1148],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1149],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1150],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1151],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1152],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1153],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1154],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1155],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1156],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1157],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1158],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1159],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1160],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1161],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1162],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1163],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1164],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1165],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1166],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1167],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1168],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1169],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1170],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1171],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1172],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1173],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1174],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1175],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1176],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1177],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1178],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1179],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1180],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1181],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1182],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1183],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1184],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1185],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1186],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1187],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1188],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1189],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1190],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1191],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1192],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1193],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1194],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1195],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1196],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1197],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1198],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1199],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1200],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1201],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1202],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1203],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1204],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1205],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1206],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1207],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1208],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1209],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1210],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1211],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1212],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1213],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1214],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1215],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1216],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1217],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1218],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1219],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1220],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1221],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1222],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1223],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1224],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1225],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1226],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1227],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1228],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1229],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1230],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1231],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1232],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1233],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1234],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1235],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1236],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1237],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1238],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1239],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1240],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1241],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1242],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1243],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1244],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1245],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1246],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1247],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1248],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1249],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1250],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1251],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1252],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1253],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1254],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1255],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1256],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1257],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1258],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1259],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1260],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1261],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1262],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1263],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1264],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1265],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1266],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1267],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1268],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1269],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1270],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1271],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1272],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1273],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1274],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1275],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1276],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1277],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1278],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1279],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1280],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1281],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1282],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1283,1284],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1285],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1286],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1287],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1288],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1289],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1290],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1291],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1292],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1293],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1294],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1295],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1296],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1297],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1298],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1299],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1300],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1301],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1302],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1303],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1304],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1305],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1306],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1307],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1308],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1309],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1310],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1311],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1312],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1313],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1314],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1315],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1316],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1317],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1318],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1319],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1320],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1321],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1322],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1323],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1324],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1325],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1326],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1327],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1328],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1329],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1330],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1331],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1332],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1333],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1334],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1335],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1336],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1337],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1338],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1339],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1340],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1341],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1342,1343],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1344],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1345],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1346],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1347],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1348],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1349],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1350],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1351],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1352],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1353],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1354],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1355],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1356],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1357],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1358],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1359],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1360],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1361],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1362],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1363],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1364],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1365],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1366],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1367],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1368],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1369],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1370],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1371],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1372],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1373],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1374],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1375],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1376],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1377],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1378],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1379],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1380],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1381],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1382],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1383],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1384],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1385],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1386],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1387],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1388],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1389],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1390],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1391],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1392],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1393],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1394],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1395],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1396],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1397],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1398],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1399],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1400],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1401],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1402],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1403],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1404],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1405],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1406],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1407],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1408],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1409],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1410],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1411],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1412],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1413],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1414],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1415],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1416],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1417],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1418],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1419],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1420],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1421],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1422],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1423],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1424],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1425],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1426],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1427],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1428],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1429],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1430],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1431],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1432],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1433],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1434],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1435],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1436],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1437],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1438],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1439],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1440],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1441],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1442],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1443],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1444],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1445],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1446],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1447],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1448],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1449],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1450],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1451],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1452],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1453],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1454],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1455],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1456],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1457],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1458],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1459],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1460],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1461],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1462],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1463],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1464,1465],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1466],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1467],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1468],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1469],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1470],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1471],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1472],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1473],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1474],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1475],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1476],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1477],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1478],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1479],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1480],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1481],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1482],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1483],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1484],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1485],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1486],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1487],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1488],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1489],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1490],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1491],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1492],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1493],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1494],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1495],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1496],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1497],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1498],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1499],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1500],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1501],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1502],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1503],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1504],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1505,1506],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1507],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1508],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1509],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1510],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1511],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1512],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1513],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1514],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1515],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1516],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1517],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1518],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1519],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1520],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1521],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1522],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1523],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1524],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1525],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1526],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1527],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1528],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1529],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1530],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1531],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1532],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1533],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1534],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1535],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1536],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1537],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1538],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1539],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1540],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1541],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1542,1543],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1544],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1545],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1546],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1547],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1548],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1549],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1550],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1551],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1552],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1553],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1554],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1555],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1556],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1557],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1558],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1559],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1560],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1561],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1562],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1563],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1564],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1565],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1566],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1567],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1568],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1569],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1570],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1571],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1572],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1573],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1574],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1575],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1576],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1577],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1578],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1579],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1580],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1581],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1582],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1583],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1584],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1585],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1586],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1587],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1588],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1589],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1590],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1591],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1592],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1593],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1594],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1595],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1596],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1597],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1598],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1599],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1600],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1601],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1602,1603],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1604],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1605],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1606],"properties":{"scalerank":7}},{"type":"MultiLineString","arcs":[[1607],[1608],[1609]],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1610],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1611],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1612],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1613],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1614],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1615],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1616],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1617],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1618],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1619],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1620],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1621],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1622],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1623],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1624],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1625],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1626],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1627],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1628],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1629],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1630],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1631],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1632],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1633],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1634],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1635],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1636],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1637],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1638],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1639],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1640],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1641],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1642],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1643],"properties":{"scalerank":3}},{"type":"MultiLineString","arcs":[[1644],[1645]],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1646],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1647],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1648],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1649],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1650],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1651],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1652],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1653],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1654],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1655],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1656],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1657],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1658],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1659],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1660],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1661],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1662],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1663],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1664],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1665],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1666],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1667],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1668],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1669],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1670],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1671],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1672],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1673],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1674],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1675],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1676],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1677],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1678],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1679],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1680],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1681],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1682],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1683],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1684],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1685],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1686],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1687],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1688],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1689],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1690],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1691],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1692],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1693],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1694],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1695],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1696],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1697],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1698],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1699],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1700],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1701],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1702],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1703],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1704],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1705],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1706],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1707],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1708],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1709],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1710],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1711],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1712],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1713],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1714],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1715],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1716],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1717],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1718],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1719],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1720],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1721],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1722],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1723],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1724],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1725],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1726],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1727],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1728],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1729],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1730],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1731],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1732],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1733],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1734],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1735],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1736],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1737],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1738],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1739],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1740],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1741],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1742],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1743],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1744],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1745],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1746,1747],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1748],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1749],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1750],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1751,1752],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1753],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1754],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1755],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1756],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1757],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1758],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1759],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1760],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1761],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1762],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1763],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1764],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1765],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1766],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1767],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1768],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1769],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1770],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1771],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1772],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1773],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1774],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1775],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1776],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1777],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1778],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1779],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1780],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1781],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1782],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1783],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1784],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1785],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1786],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1787],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1788],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1789],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1790],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1791],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1792],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1793],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1794],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1795],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1796],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1797],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1798],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1799],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1800],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1801],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1802],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1803],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1804],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1805],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1806],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1807],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1808],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1809],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1810],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1811],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1812],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1813],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1814],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1815],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1816],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1817],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1818],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1819],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1820],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1821],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1822],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1823],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1824],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1825],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1826],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1827],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1828],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1829],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1830],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1831],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1832],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1833],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1834],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1835],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1836],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1837],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1838],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1839],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1840],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1841],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1842],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1843],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1844,1845],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1846],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1847],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1848],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1849],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1850],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1851],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1852],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1853],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1854],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1855],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1856],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1857],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1858],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1859],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1860],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1861],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1862],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1863],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1864],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1865],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1866],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1867],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1868],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1869],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1870],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1871],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1872],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1873],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1874],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1875],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1876],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1877],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1878],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1879],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1880],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1881],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1882],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1883],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1884],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1885],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1886],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1887],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1888],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1889],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1890],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1891],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1892],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1893],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1894],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1895],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1896],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1897],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1898],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1899],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1900],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1901],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1902],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1903],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1904],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1905],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1906],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1907],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1908],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1909],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1910],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1911],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1912],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1913],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1914],"properties":{"scalerank":5}},{"type":"LineString","arcs":[1915],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1916],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1917],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1918],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1919],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1920],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1921],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1922],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1923],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1924],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1925],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1926],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1927],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1928],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1929],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1930],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1931],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1932],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1933],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1934],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1935],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1936],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1937],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1938],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1939],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1940],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1941],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1942],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1943],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1944],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1945],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1946],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1947],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1948],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1949],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1950],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1951],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1952],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1953],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1954],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1955],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1956],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1957],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1958],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1959],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1960],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1961],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1962],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1963],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1964],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1965],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1966],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1967],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1968],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1969],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1970],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1971],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1972],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1973],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1974],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1975],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1976],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1977],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1978],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1979],"properties":{"scalerank":4}},{"type":"LineString","arcs":[1980],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1981],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1982],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1983],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1984],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1985],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1986],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1987],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1988],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1989],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1990],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1991],"properties":{"scalerank":7}},{"type":"LineString","arcs":[1992],"properties":{"scalerank":3}},{"type":"LineString","arcs":[1993],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1994],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1995],"properties":{"scalerank":6}},{"type":"LineString","arcs":[1996],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1997],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1998],"properties":{"scalerank":8}},{"type":"LineString","arcs":[1999],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2000],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2001],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2002],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2003],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2004],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2005],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2006],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2007],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2008],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2009],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2010],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2011],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2012],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2013],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2014],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2015],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2016],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2017],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2018],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2019],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2020,2021],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2022],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2023],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2024],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2025],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2026],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2027],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2028],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2029],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2030],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2031],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2032],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2033],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2034],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2035],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2036],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2037],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2038],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2039],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2040],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2041],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2042],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2043],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2044],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2045],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2046],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2047],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2048],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2049],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2050],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2051],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2052],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2053],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2054],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2055],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2056],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2057],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2058],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2059],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2060],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2061],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2062],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2063],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2064],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2065],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2066],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2067],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2068],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2069],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2070],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2071],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2072],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2073],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2074],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2075],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2076],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2077],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2078],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2079],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2080],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2081],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2082],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2083],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2084],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2085],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2086],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2087],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2088],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2089],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2090],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2091],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2092],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2093],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2094],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2095],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2096],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2097],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2098],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2099],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2100],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2101],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2102],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2103],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2104],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2105],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2106],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2107],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2108],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2109],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2110],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2111],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2112],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2113],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2114],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2115],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2116],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2117],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2118],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2119],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2120],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2121],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2122],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2123],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2124],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2125],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2126],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2127],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2128],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2129],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2130],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2131],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2132],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2133],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2134],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2135],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2136],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2137],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2138],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2139],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2140],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2141],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2142],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2143],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2144],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2145],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2146],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2147],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2148],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2149],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2150],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2151],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2152],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2153],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2154],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2155],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2156],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2157],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2158],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2159],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2160],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2161],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2162],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2163],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2164],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2165],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2166],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2167],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2168],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2169],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2170],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2171],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2172],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2173],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2174],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2175],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2176],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2177],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2178],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2179],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2180],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2181],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2182],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2183],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2184],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2185],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2186],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2187],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2188],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2189],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2190],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2191],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2192],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2193],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2194],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2195],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2196],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2197],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2198],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2199],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2200],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2201],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2202],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2203],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2204],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2205],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2206],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2207],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2208],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2209],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2210],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2211],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2212],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2213],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2214],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2215],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2216],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2217],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2218],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2219],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2220],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2221],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2222],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2223],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2224],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2225],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2226],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2227],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2228],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2229],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2230,2231],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2232],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2233],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2234],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2235],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2236],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2237],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2238],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2239],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2240],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2241],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2242],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2243],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2244],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2245],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2246],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2247],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2248],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2249],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2250],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2251],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2252],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2253],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2254],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2255],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2256],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2257],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2258],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2259],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2260],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2261],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2262],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2263],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2264],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2265],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2266],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2267],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2268],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2269],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2270],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2271],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2272],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2273],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2274],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2275],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2276,2277],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2278],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2279],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2280],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2281],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2282],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2283],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2284],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2285],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2286],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2287],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2288],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2289],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2290],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2291],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2292],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2293],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2294],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2295],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2296],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2297],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2298],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2299],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2300],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2301],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2302],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2303],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2304],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2305],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2306],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2307],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2308],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2309],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2310],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2311],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2312],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2313],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2314],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2315],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2316],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2317],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2318],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2319],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2320],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2321],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2322],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2323],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2324],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2325],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2326],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2327],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2328],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2329],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2330],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2331],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2332],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2333],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2334],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2335],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2336],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2337],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2338],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2339],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2340],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2341],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2342],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2343],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2344],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2345],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2346],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2347],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2348],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2349],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2350],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2351],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2352],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2353],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2354],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2355],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2356],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2357],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2358],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2359],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2360],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2361],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2362],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2363],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2364],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2365],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2366],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2367],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2368],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2369],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2370],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2371],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2372],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2373],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2374],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2375],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2376],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2377],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2378],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2379],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2380],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2381],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2382],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2383],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2384],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2385],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2386],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2387],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2388],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2389],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2390],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2391],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2392],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2393],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2394],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2395],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2396],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2397],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2398],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2399],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2400],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2401],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2402],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2403],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2404],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2405],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2406],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2407],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2408],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2409],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2410],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2411],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2412],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2413],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2414],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2415],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2416],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2417],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2418],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2419],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2420],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2421],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2422],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2423],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2424],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2425],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2426],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2427,2428],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2429],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2430],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2431],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2432],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2433],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2434],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2435],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2436],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2437],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2438],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2439],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2440,2441],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2442],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2443],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2444],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2445],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2446],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2447],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2448],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2449],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2450],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2451],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2452],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2453],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2454],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2455,2456],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2457],"properties":{"scalerank":3}},{"type":"MultiLineString","arcs":[[2458],[2459]],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2460],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2461],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2462],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2463],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2464],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2465],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2466],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2467],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2468],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2469],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2470],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2471],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2472],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2473],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2474],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2475],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2476],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2477],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2478],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2479],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2480],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2481],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2482],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2483],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2484,2485],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2486,2487],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2488],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2489],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2490],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2491],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2492],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2493],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2494],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2495],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2496],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2497],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2498],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2499],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2500],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2501],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2502],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2503],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2504],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2505],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2506],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2507],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2508],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2509],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2510],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2511],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2512],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2513],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2514],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2515],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2516],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2517],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2518],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2519],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2520],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2521],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2522],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2523],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2524],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2525],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2526],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2527],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2528],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2529],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2530],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2531],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2532],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2533],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2534],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2535],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2536],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2537],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2538],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2539],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2540],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2541],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2542],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2543],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2544],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2545],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2546],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2547],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2548],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2549],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2550,2551],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2552],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2553],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2554],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2555],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2556],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2557],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2558],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2559],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2560],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2561],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2562],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2563],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2564],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2565],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2566],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2567],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2568],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2569],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2570],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2571],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2572],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2573],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2574],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2575],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2576],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2577],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2578],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2579],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2580],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2581],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2582],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2583],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2584],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2585],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2586],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2587],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2588],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2589],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2590],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2591],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2592],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2593],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2594],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2595],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2596],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2597],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2598],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2599],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2600],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2601],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2602],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2603],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2604],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2605],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2606],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2607],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2608],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2609],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2610],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2611],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2612],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2613],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2614],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2615],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2616],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2617],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2618],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2619,2620],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2621],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2622],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2623],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2624],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2625],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2626],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2627],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2628],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2629,2630],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2631],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2632],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2633],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2634],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2635],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2636],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2637],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2638],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2639],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2640],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2641],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2642],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2643],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2644],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2645],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2646],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2647],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2648],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2649],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2650],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2651],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2652],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2653],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2654],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2655],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2656],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2657],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2658],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2659],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2660],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2661],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2662],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2663],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2664],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2665],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2666],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2667],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2668],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2669],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2670],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2671],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2672],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2673],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2674],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2675],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2676],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2677],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2678],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2679],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2680],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2681],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2682],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2683],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2684],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2685],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2686],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2687],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2688],"properties":{"scalerank":5}},{"type":"LineString","arcs":[2689],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2690],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2691],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2692],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2693],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2694],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2695],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2696],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2697],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2698],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2699],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2700],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2701],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2702],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2703],"properties":{"scalerank":3}},{"type":"LineString","arcs":[2704],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2705],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2706],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2707],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2708],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2709],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2710,2711],"properties":{"scalerank":4}},{"type":"LineString","arcs":[2712],"properties":{"scalerank":6}},{"type":"LineString","arcs":[2713],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2714],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2715],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2716],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2717],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2718],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2719,2720],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2721],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2722],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2723],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2724],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2725],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2726],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2727],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2728],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2729],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2730],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2731],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2732,2733],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2734],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2735],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2736],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2737,2738],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2739],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2740],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2741,2742],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2743],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2744],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2745],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2746],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2747],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2748],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2749],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2750],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2751],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2752],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2753],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2754],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2755],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2756],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2757],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2758],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2759],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2760],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2761],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2762],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2763],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2764],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2765],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2766],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2767],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2768],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2769],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2770],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2771],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2772,2773],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2774],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2775],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2776],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2777],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2778],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2779],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2780],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2781],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2782],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2783],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2784,2785],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2786],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2787],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2788],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2789],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2790],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2791],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2792],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2793],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2794],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2795],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2796],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2797],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2798],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2799],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2800],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2801],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2802],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2803],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2804],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2805],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2806],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2807],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2808,2809],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2810],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2811],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2812],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2813],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2814],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2815],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2816],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2817],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2818],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2819],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2820],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2821],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2822],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2823,2824],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2825],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2826],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2827],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2828],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2829],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2830],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2831],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2832],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2833],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2834],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2835],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2836],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2837],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2838],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2839],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2840],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2841],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2842],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2843],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2844],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2845],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2846],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2847],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2848],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2849],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2850],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2851],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2852],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2853],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2854],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2855],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2856],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2857],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2858],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2859],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2860],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2861],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2862],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2863],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2864],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2865],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2866],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2867],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2868],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2869],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2870],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2871],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2872],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2873],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2874],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2875],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2876],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2877],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2878],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2879],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2880],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2881],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2882],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2883,2884],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2885],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2886],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2887],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2888],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2889],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2890],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2891],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2892],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2893],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2894],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2895],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2896],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2897],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2898],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2899],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2900],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2901,2902],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2903],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2904],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2905],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2906],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2907],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2908],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2909],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2910,2911],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2912],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2913],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2914],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2915],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2916],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2917],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2918],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2919],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2920],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2921],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2922],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2923],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2924],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2925],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2926],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2927,2928],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2929],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2930,2931],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2932],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2933],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2934],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2935],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2936],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2937],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2938],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2939],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2940],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2941],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2942],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2943],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2944],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2945],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2946],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2947],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2948],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2949],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2950],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2951],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2952],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2953],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2954],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2955],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2956],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2957],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2958],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2959],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2960],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2961],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2962],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2963],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2964],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2965],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2966],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2967],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2968],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2969,2970,2971,2972],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2973],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2974],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2975],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2976,2977],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2978],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2979],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2980],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2981],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2982],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2983],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2984],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2985],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2986],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2987],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2988],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2989],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2990],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2991],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2992],"properties":{"scalerank":8}},{"type":"LineString","arcs":[2993],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2994],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2995],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2996],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2997,2998],"properties":{"scalerank":7}},{"type":"LineString","arcs":[2999],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3000],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3001],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3002],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3003],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3004],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3005],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3006],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3007,3008],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3009],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3010],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3011],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3012],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3013],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3014],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3015],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3016],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3017],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3018],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3019],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3020,3021],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3022],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3023],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3024,3025,3026],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3027],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3028],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3029],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3030],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3031],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3032],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3033],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3034],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3035],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3036],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3037],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3038],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3039],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3040],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3041],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3042],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3043],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3044],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3045],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3046],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3047],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3048],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3049],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3050],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3051],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3052],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3053],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3054],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3055],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3056],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3057],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3058],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3059],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3060],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3061],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3062],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3063],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3064],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3065],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3066],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3067],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3068],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3069,3070],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3071],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3072],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3073],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3074],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3075],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3076],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3077],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3078],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3079],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3080],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3081],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3082],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3083],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3084],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3085],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3086],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3087],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3088],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3089],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3090],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3091],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3092],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3093],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3094],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3095],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3096],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3097],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3098],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3099],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3100],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3101],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3102],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3103],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3104],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3105],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3106],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3107],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3108],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3109],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3110],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3111],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3112],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3113],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3114],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3115],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3116],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3117],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3118],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3119],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3120],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3121],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3122],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3123],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3124],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3125],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3126],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3127],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3128],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3129],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3130],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3131],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3132],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3133],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3134],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3135],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3136],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3137],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3138],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3139],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3140],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3141],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3142],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3143],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3144],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3145],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3146],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3147],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3148],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3149],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3150],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3151],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3152],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3153],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3154],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3155],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3156],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3157],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3158],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3159],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3160],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3161],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3162],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3163],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3164],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3165],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3166],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3167],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3168],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3169],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3170],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3171],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3172],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3173],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3174],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3175],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3176],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3177],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3178],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3179],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3180],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3181],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3182],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3183],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3184],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3185],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3186],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3187],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3188],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3189],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3190],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3191],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3192],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3193],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3194],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3195],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3196],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3197],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3198],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3199],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3200],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3201],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3202],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3203],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3204],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3205],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3206],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3207],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3208,3209],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3210],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3211],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3212],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3213],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3214],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3215],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3216],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3217],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3218],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3219],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3220],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3221],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3222],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3223],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3224],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3225,3226,3227],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3228],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3229],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3230],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3231],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3232],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3233],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3234],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3235],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3236],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3237],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3238],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3239],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3240],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3241],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3242],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3243],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3244],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3245],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3246],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3247],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3248],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3249],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3250],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3251,3252],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3253],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3254],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3255],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3256],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3257],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3258],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3259],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3260],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3261],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3262],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3263],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3264],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3265],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3266],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3267],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3268],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3269],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3270],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3271],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3272],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3273],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3274],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3275],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3276],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3277],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3278],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3279],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3280],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3281],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3282],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3283],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3284],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3285],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3286],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3287],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3288],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3289],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3290],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3291],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3292],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3293],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3294],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3295],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3296],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3297],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3298],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3299],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3300],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3301],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3302],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3303],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3304],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3305],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3306],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3307],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3308],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3309],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3310],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3311],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3312],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3313],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3314],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3315],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3316],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3317],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3318],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3319],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3320],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3321],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3322],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3323],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3324],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3325],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3326],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3327],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3328],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3329],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3330],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3331],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3332],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3333],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3334],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3335],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3336],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3337],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3338],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3339],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3340],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3341],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3342],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3343],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3344],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3345],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3346],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3347],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3348],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3349],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3350],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3351],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3352],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3353],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3354],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3355],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3356],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3357],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3358],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3359],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3360],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3361],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3362],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3363],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3364],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3365],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3366],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3367],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3368],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3369,3370],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3371],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3372],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3373],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3374],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3375],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3376],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3377],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3378],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3379],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3380],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3381],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3382],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3383],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3384],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3385],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3386],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3387],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3388],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3389],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3390],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3391],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3392],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3393],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3394],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3395],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3396],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3397],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3398],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3399],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3400],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3401],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3402],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3403],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3404],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3405],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3406],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3407],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3408],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3409],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3410],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3411],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3412],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3413],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3414],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3415],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3416],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3417,3418],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3419],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3420],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3421],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3422],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3423],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3424],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3425],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3426],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3427],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3428],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3429],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3430],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3431],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3432],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3433],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3434],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3435],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3436],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3437],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3438],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3439],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3440],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3441,3442],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3443],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3444],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3445,3446],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3447],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3448],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3449],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3450,3451,3452],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3453],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3454],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3455],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3456],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3457],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3458],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3459],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3460],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3461],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3462],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3463],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3464],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3465,3466],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3467],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3468],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3469],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3470],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3471],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3472],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3473],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3474],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3475],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3476],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3477],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3478],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3479],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3480],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3481],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3482,3483],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3484],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3485],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3486],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3487],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3488],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3489],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3490],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3491],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3492],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3493],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3494],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3495],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3496],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3497],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3498],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3499],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3500],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3501],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3502],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3503],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3504,3505],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3506],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3507],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3508],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3509],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3510],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3511],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3512],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3513],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3514],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3515],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3516],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3517],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3518],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3519],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3520],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3521,3522],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3523],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3524],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3525],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3526],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3527],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3528],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3529],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3530],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3531],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3532],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3533],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3534],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3535],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3536],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3537],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3538],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3539],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3540],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3541],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3542],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3543],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3544],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3545],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3546],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3547],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3548],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3549],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3550],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3551],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3552],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3553],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3554],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3555],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3556],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3557],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3558],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3559],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3560],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3561],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3562],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3563],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3564],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3565],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3566],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3567],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3568],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3569],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3570],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3571],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3572],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3573],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3574],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3575],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3576],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3577],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3578],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3579],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3580],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3581],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3582],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3583],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3584],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3585],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3586],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3587],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3588],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3589],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3590],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3591],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3592],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3593],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3594],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3595],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3596],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3597],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3598],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3599],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3600],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3601],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3602],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3603],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3604],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3605],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3606],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3607],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3608],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3609],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3610],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3611],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3612],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3613],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3614],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3615],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3616,3617],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3618],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3619],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3620],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3621],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3622],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3623],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3624],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3625],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3626],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3627],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3628],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3629],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3630],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3631],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3632],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3633],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3634],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3635],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3636,3637],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3638],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3639],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3640,3641],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3642],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3643],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3644],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3645],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3646],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3647],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3648],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3649],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3650],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3651],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3652],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3653],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3654],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3655],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3656],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3657],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3658],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3659],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3660],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3661],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3662],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3663],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3664],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3665],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3666],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3667],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3668],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3669],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3670],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3671],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3672],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3673],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3674],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3675],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3676],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3677],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3678],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3679],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3680],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3681],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3682],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3683],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3684],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3685],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3686],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3687],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3688],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3689],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3690],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3691],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3692],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3693],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3694],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3695],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3696],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3697],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3698],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3699],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3700,3701],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3702],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3703],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3704],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3705],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3706],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3707],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3708],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3709],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3710],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3711],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3712],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3713],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3714],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3715],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3716],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3717],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3718],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3719],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3720],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3721],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3722],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3723],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3724],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3725],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3726],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3727],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3728],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3729],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3730],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3731],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3732],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3733],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3734],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3735],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3736],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3737],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3738],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3739],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3740],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3741],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3742],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3743],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3744],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3745],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3746],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3747,3748],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3749],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3750],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3751],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3752],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3753],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3754],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3755],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3756],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3757],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3758],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3759],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3760],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3761],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3762],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3763],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3764],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3765],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3766],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3767],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3768],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3769],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3770],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3771],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3772],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3773],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3774],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3775],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3776],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3777],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3778],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3779],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3780],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3781],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3782],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3783],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3784],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3785],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3786],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3787],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3788],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3789],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3790],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3791],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3792],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3793],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3794],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3795],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3796],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3797],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3798],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3799],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3800],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3801],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3802],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3803],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3804],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3805],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3806],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3807],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3808],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3809],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3810,3811],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3812],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3813],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3814],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3815],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3816],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3817],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3818],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3819],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3820],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3821],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3822],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3823],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3824],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3825,3826],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3827],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3828],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3829],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3830],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3831],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3832],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3833],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3834],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3835],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3836],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3837],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3838],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3839],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3840],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3841],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3842,3843],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3844],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3845],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3846],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3847],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3848],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3849,3850,3851],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3852],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3853],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3854],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3855],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3856,3857],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3858],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3859],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3860,3861],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3862],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3863],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3864],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3865],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3866],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3867],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3868],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3869],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3870],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3871],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3872],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3873,3874,3875],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3876],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3877],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3878],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3879],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3880],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3881],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3882],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3883],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3884],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3885],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3886],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3887],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3888],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3889],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3890],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3891],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3892],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3893],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3894],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3895],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3896],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3897],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3898],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3899],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3900],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3901],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3902],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3903],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3904],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3905],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3906],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3907],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3908],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3909],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3910],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3911],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3912],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3913],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3914],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3915],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3916],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3917],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3918],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3919],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3920],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3921],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3922],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3923,3924],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3925],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3926],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3927],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3928],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3929],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3930],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3931],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3932],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3933],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3934],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3935],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3936],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3937],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3938],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3939],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3940],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3941],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3942],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3943],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3944],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3945],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3946],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3947],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3948],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3949],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3950],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3951],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3952],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3953,3954],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3955],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3956],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3957],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3958],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3959],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3960],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3961],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3962],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3963],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3964],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3965],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3966],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3967],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3968],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3969],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3970],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3971],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3972],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3973],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3974],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3975],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3976,3977,3978],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3979],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3980],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3981],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3982],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3983],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3984],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3985],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3986],"properties":{"scalerank":8}},{"type":"LineString","arcs":[3987],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3988],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3989],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3990],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3991],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3992],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3993],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3994],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3995],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3996],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3997],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3998],"properties":{"scalerank":7}},{"type":"LineString","arcs":[3999],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4000],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4001],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4002],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4003],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4004,4005],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4006],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4007],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4008],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4009],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4010,4011,4012],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4013],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4014],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4015],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4016],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4017],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4018],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4019],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4020],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4021],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4022],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4023],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4024],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4025],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4026],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4027],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4028,4029],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4030],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4031],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4032],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4033],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4034],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4035],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4036],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4037],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4038],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4039],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4040],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4041],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4042],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4043],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4044],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4045],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4046,4047],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4048],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4049],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4050],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4051],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4052],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4053],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4054],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4055],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4056],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4057],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4058],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4059],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4060],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4061],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4062],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4063],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4064],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4065],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4066],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4067],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4068],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4069],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4070],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4071],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4072],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4073],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4074],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4075],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4076],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4077],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4078],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4079,4080],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4081],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4082],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4083],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4084],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4085],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4086],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4087],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4088],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4089,4090],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4091],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4092],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4093],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4094],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4095],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4096],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4097,4098],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4099],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4100],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4101],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4102],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4103],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4104,4105],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4106],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4107],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4108],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4109],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4110],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4111],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4112],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4113],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4114],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4115],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4116],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4117],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4118],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4119],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4120],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4121],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4122],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4123],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4124],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4125],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4126],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4127],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4128],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4129],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4130,4131],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4132],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4133],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4134],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4135],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4136],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4137],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4138],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4139],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4140],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4141],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4142],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4143],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4144],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4145],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4146],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4147],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4148],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4149],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4150],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4151],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4152],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4153],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4154],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4155],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4156],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4157],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4158],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4159],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4160],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4161],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4162],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4163],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4164,4165],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4166],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4167],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4168],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4169],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4170],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4171],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4172],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4173],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4174],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4175],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4176],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4177],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4178],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4179],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4180],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4181],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4182],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4183],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4184],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4185],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4186],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4187],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4188],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4189],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4190],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4191],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4192],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4193],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4194],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4195],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4196],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4197],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4198],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4199],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4200],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4201,4202,4203],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4204,4205],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4206],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4207],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4208],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4209],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4210],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4211],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4212],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4213],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4214],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4215],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4216],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4217],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4218],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4219],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4220],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4221],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4222],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4223],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4224],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4225],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4226],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4227],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4228],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4229],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4230],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4231],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4232],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4233],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4234],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4235],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4236],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4237],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4238],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4239],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4240],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4241],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4242],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4243],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4244],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4245],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4246],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4247,4248,4249],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4250],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4251],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4252],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4253],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4254],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4255],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4256],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4257],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4258],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4259],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4260],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4261],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4262],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4263],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4264],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4265],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4266],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4267],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4268],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4269],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4270],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4271,4272],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4273],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4274],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4275],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4276],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4277],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4278],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4279],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4280],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4281],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4282,4283],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4284],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4285],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4286],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4287],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4288],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4289],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4290],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4291],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4292],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4293],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4294],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4295],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4296],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4297],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4298],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4299],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4300],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4301],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4302],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4303],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4304],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4305],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4306],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4307],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4308],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4309],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4310],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4311],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4312],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4313],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4314],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4315],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4316],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4317],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4318],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4319],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4320],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4321,4322],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4323],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4324],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4325],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4326],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4327],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4328],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4329],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4330],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4331],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4332],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4333,4334],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4335],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4336],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4337],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4338],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4339,4340],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4341],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4342],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4343],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4344],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4345],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4346],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4347,4348],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4349],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4350],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4351],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4352,4353],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4354],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4355],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4356],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4357],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4358],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4359],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4360],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4361],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4362],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4363],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4364],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4365],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4366,4367],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4368],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4369],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4370],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4371],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4372],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4373,4374],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4375],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4376],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4377],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4378],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4379],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4380],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4381],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4382],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4383],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4384],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4385],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4386],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4387],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4388],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4389],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4390],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4391],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4392],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4393],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4394],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4395],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4396],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4397],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4398],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4399],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4400],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4401],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4402],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4403,4404],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4405],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4406],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4407],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4408],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4409],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4410],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4411],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4412],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4413],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4414],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4415],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4416],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4417],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4418],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4419],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4420],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4421],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4422],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4423],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4424],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4425],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4426],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4427],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4428],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4429],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4430],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4431],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4432],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4433],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4434],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4435],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4436],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4437],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4438],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4439],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4440],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4441],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4442],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4443],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4444],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4445],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4446],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4447],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4448],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4449],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4450],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4451],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4452],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4453],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4454],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4455],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4456,4457],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4458],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4459],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4460],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4461],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4462],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4463],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4464],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4465],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4466],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4467],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4468],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4469],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4470],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4471,4472],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4473],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4474],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4475],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4476],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4477],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4478],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4479],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4480],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4481],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4482],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4483],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4484],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4485,4486],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4487],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4488],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4489],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4490],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4491],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4492],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4493],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4494],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4495],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4496],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4497],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4498],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4499],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4500],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4501],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4502],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4503],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4504],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4505],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4506],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4507],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4508],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4509],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4510],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4511],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4512,4513],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4514],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4515],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4516],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4517,4518],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4519],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4520],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4521,4522],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4523],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4524,4525],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4526],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4527],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4528],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4529],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4530],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4531],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4532],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4533,4534],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4535,4536],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4537],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4538],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4539],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4540],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4541],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4542],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4543],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4544],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4545],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4546],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4547],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4548],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4549],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4550],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4551],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4552],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4553],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4554],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4555],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4556],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4557],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4558],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4559],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4560],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4561],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4562],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4563],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4564],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4565],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4566],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4567],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4568],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4569],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4570],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4571],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4572],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4573],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4574],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4575],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4576],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4577],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4578],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4579],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4580],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4581],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4582,4583],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4584],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4585,4586],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4587],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4588],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4589],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4590],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4591],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4592],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4593],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4594],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4595,4596],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4597],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4598],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4599],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4600],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4601],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4602],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4603],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4604],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4605],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4606],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4607],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4608],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4609],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4610],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4611],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4612],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4613],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4614,4615],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4616],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4617],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4618],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4619],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4620],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4621],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4622],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4623],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4624],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4625],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4626],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4627],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4628],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4629],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4630],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4631],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4632],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4633],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4634],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4635],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4636],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4637],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4638],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4639],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4640],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4641],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4642],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4643],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4644],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4645],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4646],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4647],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4648],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4649],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4650],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4651],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4652],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4653],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4654],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4655],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4656],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4657],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4658],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4659],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4660],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4661],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4662],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4663],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4664],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4665],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4666],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4667],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4668],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4669],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4670],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4671],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4672],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4673],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4674],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4675],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4676],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4677],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4677],"properties":{"scalerank":7}},{"type":"LineString","arcs":[-4678],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4678],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4679],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4680],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4681],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4682],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4683],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4684],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4685],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4686],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4687],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4688],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4689],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4690],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4691],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4692],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4693],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4694],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4695],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4696],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4697],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4698],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4699],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4700],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4701],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4702],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4703],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4704],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4705],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4706],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4707],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4708],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4709],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4710],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4711],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4712],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4713],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4714],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4715],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4716],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4717],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4718],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4719],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4720],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4721],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4722],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4723],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4724],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4725],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4726],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4727],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4728],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4729],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4730],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4731],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4732],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4733],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4734],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4735],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4736],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4737],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4738],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4739],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4740],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4741],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4742],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4743],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4744],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4745],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4746],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4747],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4748],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4749],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4750],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4751],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4752],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4753],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4754],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4755],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4756],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4757],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4758],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4759],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4760,4761],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4762],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4763],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4764],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4765],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4766],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4767],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4768],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4769],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4770],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4771],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4772],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4773],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4774],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4775],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4776],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4777],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4778],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4779],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4780],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4781],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4782],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4783],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4784],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4785],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4786],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4787],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4788],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4789],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4790],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4791],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4792],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4793,4794],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4795],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4796],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4797],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4798],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4799],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4800],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4801],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4802],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4803],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4804],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4805],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4806],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4807],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4808],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4809],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4810],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4811],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4812],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4813],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4814],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4815],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4816],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4817],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4818],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4819],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4820],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4821],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4822],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4823],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4824],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4825],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4826],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4827],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4828],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4829],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4830],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4831],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4832],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4833],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4834],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4835],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4836],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4837],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4838],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4839],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4840],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4841],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4842],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4843],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4844],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4845],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4846],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4847],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4848],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4849],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4850],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4851],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4852],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4853],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4854],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4855],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4856],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4857],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4858],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4859],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4860],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4861],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4862],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4863],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4864],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4865],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4866],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4867],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4868],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4869],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4870],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4871],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4872],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4873],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4874],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4875],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4876,4877],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4878],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4879],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4880],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4881],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4882],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4883,4884],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4885],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4886],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4887],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4888],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4889],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4890],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4891],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4892],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4893],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4894],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4895],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4896],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4897],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4898],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4899],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4900],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4901],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4902],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4903],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4904],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4905],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4906,4907],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4908],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4909],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4910],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4911],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4912],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4913],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4914],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4915],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4916],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4917],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4918],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4919],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4920],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4921,4922],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4923],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4924],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4925],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4926],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4927],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4928],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4929],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4930],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4931],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4932],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4933],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4934],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4935],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4936],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4937],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4938],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4939],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4940],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4941],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4942],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4943],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4944],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4945],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4946],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4947],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4948],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4949],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4950],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4951,4952],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4953],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4954],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4955],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4956],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4957],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4958],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4959],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4960],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4961],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4962],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4963],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4964],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4965],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4966],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4967],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4968],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4969],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4970],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4971],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4972],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4973],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4974],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4975],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4976,4977],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4978],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4979],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4980],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4981],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4982],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4983],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4984],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4985],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4986],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4987],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4988],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4989],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4990],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4991],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4992],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4993],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4994],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4995],"properties":{"scalerank":7}},{"type":"LineString","arcs":[4996],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4997],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4998],"properties":{"scalerank":8}},{"type":"LineString","arcs":[4999,5000],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5001],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5002],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5003],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5004],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5005],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5006],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5007],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5008],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5009],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5010],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5011],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5012],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5013],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5014],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5015],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5016],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5017],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5018],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5019],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5020],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5021],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5022],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5023],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5024],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5025],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5026],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5027],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5028],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5029],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5030],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5031],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5032],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5033],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5034],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5035],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5036],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5037],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5038],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5039],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5040],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5041],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5042],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5043],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5044],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5045],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5046],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5047],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5048],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5049],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5050],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5051],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5052],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5053],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5054],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5055,5056],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5057],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5058],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5059],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5060],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5061],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5062],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5063,5064],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5065],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5066],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5067],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5068],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5069],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5070],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5071],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5072],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5073],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5074],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5075],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5076],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5077],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5078],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5079],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5080],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5081],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5082],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5083],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5084],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5085],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5086],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5087],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5088],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5089,5090],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5091],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5092],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5093],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5094],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5095],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5096],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5097],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5098],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5099],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5100],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5101],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5102],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5103],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5104],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5105],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5106],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5107],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5108],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5109],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5110],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5111],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5112],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5113],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5114],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5115],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5116],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5117],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5118],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5119],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5120],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5121],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5122,5123],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5124],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5125],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5126],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5127],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5128],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5129],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5130],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5131],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5132],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5133],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5134],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5135],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5136],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5137],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5138],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5139],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5140],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5141],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5142],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5143],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5144],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5145],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5146],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5147],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5148],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5149],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5150],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5151],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5152],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5153],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5154],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5155],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5156],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5157],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5158],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5159],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5160],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5161],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5162],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5163],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5164,5165],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5166],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5167],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5168],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5169],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5170],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5171],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5172],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5173],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5174],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5175],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5176],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5177],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5178],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5179],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5180],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5181],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5182],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5183],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5184],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5185],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5186],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5187],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5188],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5189],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5190],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5191],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5192],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5193],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5194],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5195],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5196],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5197],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5198],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5199],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5200],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5201],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5202],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5203],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5204],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5205],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5206],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5207],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5208],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5209],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5210],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5211],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5212],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5213],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5214],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5215],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5216],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5217],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5218],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5219,5220],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5221],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5222],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5223],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5224],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5225],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5226],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5227],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5228],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5229],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5230],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5231],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5232,5233,5234,5235,5236],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5237],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5238],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5239],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5240],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5241],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5242],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5243],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5244],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5245],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5246],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5247],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5248,5249],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5250],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5251],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5252],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5253],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5254],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5255],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5256],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5257,5258],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5259],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5260],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5261],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5262],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5263],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5264],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5265],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5266],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5267],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5268],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5269],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5270],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5271],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5272],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5273],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5274],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5275],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5276],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5277],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5278],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5279],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5280],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5281],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5282],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5283],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5284],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5285],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5286],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5287],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5288],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5289],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5290],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5291],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5292],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5293],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5294],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5295],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5296],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5297],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5298],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5299],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5300],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5301],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5302],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5303],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5304,5305],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5306],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5307],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5308],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5309],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5310],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5311],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5312],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5313],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5314],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5315],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5316],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5317],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5318],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5319],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5320],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5321],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5322],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5323],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5324],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5325],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5326],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5327],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5328],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5329],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5330],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5331],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5332],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5333],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5334],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5335],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5336],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5337],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5338],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5339],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5340],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5341],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5342],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5343],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5344],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5345],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5346],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5347],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5348],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5349],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5350],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5351],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5352],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5353],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5354],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5355],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5356],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5357],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5358],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5359],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5360],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5361],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5362],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5363],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5364],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5365],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5366],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5367],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5368,5369],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5370],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5371],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5372,5373],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5374],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5375],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5376],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5377],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5378],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5379],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5380],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5381],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5382],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5383],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5384],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5385],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5386],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5387],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5388],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5389],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5390],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5391],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5392],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5393],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5394],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5395],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5396],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5397],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5398],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5399],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5400],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5401],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5402],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5403],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5404],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5405],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5406],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5407],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5408],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5409],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5410],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5411],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5412],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5413,5414],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5415],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5416],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5417],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5418],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5419],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5420],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5421],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5422],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5423],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5424],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5425],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5426],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5427],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5428],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5429],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5430],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5431],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5432],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5433],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5434,5435],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5436],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5437,5438],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5439],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5440],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5441],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5442],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5443],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5444],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5445],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5446,5447,5448],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5449],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5450],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5451],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5452],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5453],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5454],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5455],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5456],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5457],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5458],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5459],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5460],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5461],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5462],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5463],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5464],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5465],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5466],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5467],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5468],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5469],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5470],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5471],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5472],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5473],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5474],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5475],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5476],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5477],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5478],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5479],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5480],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5481],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5482],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5483],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5484],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5485],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5486],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5487],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5488],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5489,5490,5491],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5492],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5493],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5494],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5495],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5496],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5497],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5498],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5499],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5500,5501,5502],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5503],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5504],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5505],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5506],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5507],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5508],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5509],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5510],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5511],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5512],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5513],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5514],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5515],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5516,5517],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5518],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5519],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5520],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5521],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5522],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5523],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5524],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5525],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5526],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5527],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5528],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5529],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5530],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5531],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5532],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5533],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5534],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5535],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5536],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5537],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5538],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5539],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5540],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5541],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5542],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5543],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5544],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5545],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5546],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5547],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5548],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5549],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5550],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5551],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5552],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5553],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5554],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5555],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5556],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5557],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5558],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5559],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5560],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5561],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5562],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5563],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5564],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5565],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5566],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5567],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5568,5569],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5570],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5571],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5572],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5573],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5574],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5575],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5576],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5577],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5578],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5579],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5580],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5581],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5582],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5583],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5584],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5585],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5586],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5587],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5588],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5589],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5590],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5591],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5592,5593],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5594,5595],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5596],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5597,5598],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5599],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5600],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5601],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5602,5603],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5604],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5605],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5606],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5607],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5608],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5609],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5610],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5611],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5612],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5613],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5614],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5615],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5616],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5617],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5618],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5619],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5620],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5621,5622],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5623],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5624],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5625],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5626],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5627],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5628],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5629],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5630],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5631],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5632],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5633],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5634],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5635],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5636],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5637],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5638],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5639],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5640],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5641],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5642],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5643],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5644],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5645],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5646],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5647],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5648],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5649],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5650],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5651],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5652],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5653],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5654],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5655],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5656],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5657],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5658],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5659],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5660],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5661],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5662],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5663],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5664],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5665],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5666],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5667],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5668],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5669],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5670],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5671],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5672],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5673,5674],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5675],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5676],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5677],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5678],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5679],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5680],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5681],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5682],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5683],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5684],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5685],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5686],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5687],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5688],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5689],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5690],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5691],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5692],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5693],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5694],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5695],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5696],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5697],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5698],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5699],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5700],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5701,5702],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5703],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5704],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5705],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5706],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5707],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5708,5709],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5710],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5711],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5712],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5713],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5714],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5715],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5716],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5717],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5718],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5719],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5720],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5721],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5722],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5723,5724],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5725],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5726],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5727],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5728],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5729],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5730],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5731],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5732],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5733],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5734],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5735],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5736],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5737],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5738],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5739],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5740],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5741],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5742],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5743],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5744],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5745],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5746],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5747],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5748],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5749],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5750],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5751],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5752,5753],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5754],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5755],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5756],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5757],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5758],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5759],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5760],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5761],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5762],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5763],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5764],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5765,5766],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5767],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5768],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5769],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5770],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5771],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5772],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5773],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5774],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5775],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5776],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5777],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5778],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5779],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5780],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5781],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5782],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5783],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5784],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5785],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5786],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5787],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5788],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5789],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5790,5791],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5792],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5793],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5794],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5795],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5796],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5797],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5798],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5799],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5800],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5801],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5802],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5803],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5804],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5805],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5806],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5807],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5808],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5809],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5810],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5811],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5812],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5813],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5814],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5815],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5816],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5817],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5818],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5819],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5820],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5821],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5822],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5823],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5824],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5825],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5826],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5827,5828],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5829],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5830],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5831],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5832],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5833],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5834],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5835],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5836,5837],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5838],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5839],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5840],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5841],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5842],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5843],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5844],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5845],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5846],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5847],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5848],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5849],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5850],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5851],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5852],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5853],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5854],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5855],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5856],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5857],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5858],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5859],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5860],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5861],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5862],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5863],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5864],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5865],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5866],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5867],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5868],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5869],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5870],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5871],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5872],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5873],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5874],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5875],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5876],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5877],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5878],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5879],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5880],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5881],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5882],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5883],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5884],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5885],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5886],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5887],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5888],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5889],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5890],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5891],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5892],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5893],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5894],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5895],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5896],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5897],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5898],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5899],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5900],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5901],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5902],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5903],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5904],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5905],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5906],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5907],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5908],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5909],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5910,5911],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5912],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5913],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5914],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5915],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5916],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5917],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5918],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5919],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5920],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5921],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5922],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5923],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5924],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5925],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5926],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5927],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5928],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5929],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5930],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5931,5932],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5933],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5934],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5935],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5936],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5937],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5938],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5939],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5940],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5941],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5942],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5943],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5944],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5945],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5946],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5947],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5948],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5949],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5950],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5951],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5952],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5953],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5954],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5955],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5956],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5957],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5958],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5959],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5960],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5961],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5962],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5963],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5964],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5965],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5966],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5967],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5968],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5969],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5970],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5971],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5972],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5973],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5974],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5975],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5976],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5977],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5978],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5979],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5980],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5981],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5982,5983,5984],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5985],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5986,5987],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5988,5989],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5990],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5991],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5992],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5993],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5994],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5995],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5996],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5997],"properties":{"scalerank":8}},{"type":"LineString","arcs":[5998],"properties":{"scalerank":7}},{"type":"LineString","arcs":[5999],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6000],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6001],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6002],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6003],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6004],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6005],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6006],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6007],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6008],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6009],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6010],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6011],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6012],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6013],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6014],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6015],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6016],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6017],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6018],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6019],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6020],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6021],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6022],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6023],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6024],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6025],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6026],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6027],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6028],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6029],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6030],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6031],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6032],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6033],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6034],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6035],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6036],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6037],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6038],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6039],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6040],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6041],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6042],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6043],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6044],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6045],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6046],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6047],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6048,6049],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6050],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6051],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6052],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6053,6054,6055],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6056],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6057],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6058],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6059],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6060],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6061],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6062],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6063],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6064],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6065],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6066],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6067,6068],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6069],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6070],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6071],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6072],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6073],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6074],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6075],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6076],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6077],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6078],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6079],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6080],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6081],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6082],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6083],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6084],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6085],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6086],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6087],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6088],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6089],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6090],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6091],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6092],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6093],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6094],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6095],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6096],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6097],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6098],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6099],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6100],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6101],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6102],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6103],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6104],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6105],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6106],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6107],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6108],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6109],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6110],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6111],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6112,6113],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6114],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6115],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6116],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6117],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6118],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6119],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6120],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6121],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6122],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6123],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6124],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6125],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6126],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6127],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6128],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6129],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6130],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6131],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6132],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6133],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6134],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6135],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6136],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6137],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6138],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6139],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6140],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6141],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6142],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6143],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6144],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6145],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6146],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6147],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6148],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6149],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6150],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6151,6152],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6153],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6154],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6155],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6156],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6157],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6158],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6159],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6160],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6161],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6162],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6163],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6164],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6165],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6166],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6167],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6168],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6169],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6170],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6171],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6172],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6173],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6174],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6175],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6176],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6177],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6178],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6179],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6180],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6181],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6182],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6183],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6184,6185],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6186],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6187],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6188],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6189],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6190,6191],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6192],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6193],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6194],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6195],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6196],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6197],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6198],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6199],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6200],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6201],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6202],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6203],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6204],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6205],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6206],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6207],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6208],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6209],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6210],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6211],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6212],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6213],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6214],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6215],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6216],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6217],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6218],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6219],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6220],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6221],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6222],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6223],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6224],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6225],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6226],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6227],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6228],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6229],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6230],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6231],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6232],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6233],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6234],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6235],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6236],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6237],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6238],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6239],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6240],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6241],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6242],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6243],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6244],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6245],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6246],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6247],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6248],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6249],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6250],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6251],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6252],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6253],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6254],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6255],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6256],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6257],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6258,6259],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6260],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6261],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6262],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6263],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6264],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6265],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6266],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6267],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6268],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6269],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6270],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6271],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6272],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6273],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6274],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6275],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6276],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6277],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6278],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6279],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6280],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6281],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6282],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6283],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6284],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6285],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6286],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6287],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6288],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6289],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6290],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6291],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6292],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6293],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6294],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6295],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6296],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6297],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6298],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6299],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6300],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6301],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6302],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6303],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6304],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6305],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6306],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6307],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6308],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6309],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6310],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6311],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6312],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6313,6314],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6315],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6316],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6317],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6318],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6319],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6320],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6321],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6322],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6323],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6324],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6325],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6326],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6327],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6328],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6329],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6330],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6331],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6332],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6333],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6334],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6335],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6336],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6337],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6338],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6339],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6340],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6341],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6342],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6343,6344],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6345],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6346],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6347],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6348],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6349],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6350],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6351],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6352],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6353],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6354],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6355],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6356],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6357],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6358],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6359],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6360],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6361],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6362],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6363],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6364],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6365],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6366],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6367],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6368,6369,6370,6371,6372],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6373],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6374],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6375],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6376],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6377],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6378],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6379],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6380],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6381],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6382],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6383],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6384],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6385],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6386],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6387],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6388],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6389],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6390],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6391],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6392],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6393],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6394],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6395,6396],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6397],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6398],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6399],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6400,6401],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6402,6403],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6404],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6405],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6406],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6407],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6408],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6409],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6410],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6411],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6412],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6413],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6414],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6415],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6416],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6417],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6418],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6419,6420],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6421],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6422],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6423],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6424],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6425],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6426],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6427],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6428],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6429],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6430],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6431],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6432],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6433],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6434,6435],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6436],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6437],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6438],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6439],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6440],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6441],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6442],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6443],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6444],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6445],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6446],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6447],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6448],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6449],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6450],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6451],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6452],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6453],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6454],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6455],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6456],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6457],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6458],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6459],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6460],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6461],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6462],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6463],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6464],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6465],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6466,6467],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6468],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6469],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6470],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6471],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6472],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6473],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6474],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6475],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6476],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6477],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6478],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6479],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6480],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6481],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6482],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6483],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6484],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6485],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6486],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6487],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6488],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6489],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6490],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6491],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6492],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6493],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6494],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6495],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6496],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6497],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6498],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6499],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6500],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6501],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6502],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6503],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6504],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6505],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6506],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6507],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6508],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6509],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6510],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6511],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6512],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6513],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6514],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6515],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6516],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6517],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6518],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6519],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6520],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6521],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6522],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6523],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6524],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6525],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6526],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6527],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6528],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6529],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6530],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6531],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6532],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6533],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6534],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6535],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6536],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6537],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6538],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6539],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6540],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6541],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6542],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6543],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6544],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6545],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6546],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6547],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6548],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6549],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6550],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6551],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6552],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6553],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6554,6555,6556],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6557],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6558,6559],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6560],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6561],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6562],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6563],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6564],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6565],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6566],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6567],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6568],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6569],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6570],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6571],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6572],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6573],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6574],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6575],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6576],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6577],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6578],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6579],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6580],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6581],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6582],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6583],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6584],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6585],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6586],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6587],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6588],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6589],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6590],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6591],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6592,6593],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6594],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6595],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6596],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6597],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6598,6599],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6600,6601],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6602],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6603],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6604],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6605],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6606],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6607],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6608],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6609],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6610],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6611],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6612],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6613],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6614],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6615],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6616],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6617],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6618],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6619],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6620],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6621],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6622,6623],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6624],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6625],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6626],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6627],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6628],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6629],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6630],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6631],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6632],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6633],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6634],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6635],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6636],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6637],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6638],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6639,6640],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6641],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6642],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6643],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6644],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6645],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6646],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6647],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6648],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6649],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6650],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6651],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6652],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6653],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6654],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6655],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6656],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6657],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6658],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6659],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6660],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6661,6662,6663],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6664],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6665],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6666,6667],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6668],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6669],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6670],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6671],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6672],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6673],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6674],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6675,6676],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6677],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6678],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6679],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6680],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6681],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6682],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6683],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6684],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6685],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6686],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6687],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6688],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6689],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6690],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6691],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6692],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6693],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6694],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6695],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6696],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6697],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6698],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6699],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6700],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6701],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6702],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6703],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6704],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6705],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6706],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6707],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6708],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6709],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6710],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6711],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6712],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6713],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6714],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6715],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6716],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6717],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6718],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6719],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6720],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6721],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6722],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6723],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6724],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6725],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6726],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6727],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6728],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6729],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6730],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6731],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6732],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6733],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6734],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6735],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6736],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6737],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6738],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6739],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6740],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6741],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6742],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6743,6744],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6745],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6746],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6747],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6748],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6749],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6750],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6751],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6752],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6753],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6754],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6755],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6756],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6757],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6758],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6759],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6760],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6761],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6762],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6763],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6764],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6765],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6766],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6767],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6768],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6769],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6770],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6771],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6772],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6773],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6774],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6775],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6776],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6777],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6778],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6779],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6780],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6781],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6782],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6783],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6784],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6785],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6786],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6787],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6788],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6789,6790],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6791],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6792],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6793],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6794],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6795],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6796],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6797,6798],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6799],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6800],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6801],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6802],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6803],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6804],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6805],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6806],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6807],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6808],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6809],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6810],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6811],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6812],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6813],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6814],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6815],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6816],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6817],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6818],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6819],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6820],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6821],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6822],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6823],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6824],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6825],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6826],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6827],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6828],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6829],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6830],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6831],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6832],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6833],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6834],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6835],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6836],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6837],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6838],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6839],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6840],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6841],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6842],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6843],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6844],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6845],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6846],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6847],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6848],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6849],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6850],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6851],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6852],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6853],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6854],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6855],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6856],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6857],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6858],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6859],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6860],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6861],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6862],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6863],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6864],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6865],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6866],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6867],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6868],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6869],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6870],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6871],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6872],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6873],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6874],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6875],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6876],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6877],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6878],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6879],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6880],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6881],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6882],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6883],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6884],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6885],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6886],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6887],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6888],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6889],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6890],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6891],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6892],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6893],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6894],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6895],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6896],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6897],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6898],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6899],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6900],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6901],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6902],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6903],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6904],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6905,6906],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6907],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6908],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6909],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6910,6911],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6912],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6913],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6914],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6915],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6916],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6917],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6918,6919,6920],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6921],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6922],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6923],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6924],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6925],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6926],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6927],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6928],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6929],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6930],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6931],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6932],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6933,6934],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6935],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6936],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6937],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6938],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6939],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6940],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6941],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6942],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6943],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6944],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6945],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6946,6947],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6948],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6949],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6950],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6951,6952,6953,6954],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6955],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6956],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6957],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6958],"properties":{"scalerank":8}},{"type":"LineString","arcs":[-6958],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6959],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6960],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6961],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6962],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6963],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6964,6965],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6966],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6967],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6968],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6969],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6970],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6971],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6972],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6973],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6974],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6959],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6975],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6976],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6977],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6978],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6979],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6980],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6981],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6982],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6983],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6984],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6985],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6986],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6987],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6988],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6989],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6990],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6991],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6992],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6993],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6994],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6995],"properties":{"scalerank":7}},{"type":"LineString","arcs":[6996],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6997],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6998],"properties":{"scalerank":8}},{"type":"LineString","arcs":[6999],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7000],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7001],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7002],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7003],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7004],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7005],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7006],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7007],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7008],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7009],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7010],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7011],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7012],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7013],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7014],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7015],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7016],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7017],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7018],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7019],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7020],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7021],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7022],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7023],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7024],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7025],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7026],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7027],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7028],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7029],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7030],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7031],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7032],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7033],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7034],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7035],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7036],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7037],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7038],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7039],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7040],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7041],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7042],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7043,7044,7045],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7046],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7047],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7048],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7049],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7050],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7051],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7052],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7053],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7054],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7055],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7056],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7057],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7058],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7059],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7060],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7061],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7062],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7063],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7064],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7065,7066],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7067],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7068],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7069],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7070],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7071,7072,7073],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7074],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7075],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7076],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7077],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7078],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7079],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7080],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7081],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7082],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7083],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7084],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7085],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7086],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7087],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7088],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7089],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7090],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7091],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7092],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7093],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7094],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7095],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7096],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7097,7098],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7099],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7100],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7101],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7102],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7103],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7104],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7105],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7106],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7107],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7108],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7109],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7110],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7111],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7112],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7113],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7114],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7115],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7116],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7117],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7118],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7119],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7120],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7121],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7122],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7123],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7124],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7125],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7126],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7127],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7128],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7129],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7130],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7131],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7132],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7133,7134],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7135],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7136],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7137],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7138],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7139],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7140],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7141],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7142],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7143],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7144],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7145],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7146],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7147],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7148],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7149],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7150],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7151],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7152],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7153],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7154],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7155],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7156],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7157],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7158],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7159],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7160],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7161],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7162],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7163],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7164],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7165],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7166],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7167],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7168],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7169],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7170],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7171],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7172],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7173],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7174],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7175],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7176],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7177],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7178],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7179],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7180,7181],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7182],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7183],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7184],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7185],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7186],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7187],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7188],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7189],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7190],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7191],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7192],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7193],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7194],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7195],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7196],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7197],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7198],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7199],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7200],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7201],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7202],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7203],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7204],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7205],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7206],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7207,7208],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7209],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7210],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7211],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7212],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7213],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7214],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7215],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7216,7217],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7218],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7219],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7220],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7221],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7222],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7223],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7224],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7225],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7226],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7227],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7228],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7229],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7230],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7231],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7232],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7233],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7234],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7235],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7236],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7237],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7238],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7239],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7240],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7241],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7242],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7243],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7244],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7245],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7246],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7247],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7248],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7249],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7250],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7251],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7252],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7253],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7254],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7255],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7256],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7257],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7258],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7259],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7260],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7261],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7262],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7263],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7264],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7265],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7266],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7267],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7268],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7269],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7270],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7271],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7272],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7273],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7274],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7275],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7276],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7277],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7278],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7279,7280],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7281],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7282],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7283],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7284],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7285],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7286],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7287],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7288],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7289,7290],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7291],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7292,7293],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7294],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7295],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7296],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7297],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7298],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7299],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7300],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7301],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7302],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7303],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7304],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7305],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7306],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7307],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7308],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7309],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7310],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7311],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7312],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7313],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7314],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7315],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7316],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7317],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7318],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7319],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7320],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7321],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7322],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7323],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7324],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7325],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7326,7327],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7328],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7329],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7330],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7331],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7332],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7333],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7334],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7335],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7336,7337],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7338,7339],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7340],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7341],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7342],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7343],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7344],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7345],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7346],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7347],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7348],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7349],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7350],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7351],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7352],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7353],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7354],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7355],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7356],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7357],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7358],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7359],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7360],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7361],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7362],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7363],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7364,7365],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7366],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7367],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7368,7369],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7370],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7371],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7372],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7373],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7374],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7375],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7376],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7377],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7378],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7379],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7380],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7381],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7382],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7383],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7384],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7385],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7386],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7387],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7388],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7389],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7390],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7391],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7392],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7393],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7394],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7395],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7396],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7397],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7398],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7399],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7400],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7401],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7402],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7403],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7404],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7405],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7406],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7407],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7408,7409],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7410],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7411],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7412],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7413],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7414],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7415],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7416],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7417],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7418],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7419],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7420],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7421],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7422],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7423],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7424],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7425],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7426],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7427],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7428],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7429],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7430],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7431],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7432],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7433],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7434],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7435],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7436],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7437],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7438],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7439,7440],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7441],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7442],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7443],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7444],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7445],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7446],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7447],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7448],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7449],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7450],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7451],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7452],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7453],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7454],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7455],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7456],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7457],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7458],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7459],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7460],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7461],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7462],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7463],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7464],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7465],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7466],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7467],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7468],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7469],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7470],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7471],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7472],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7473],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7474],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7475],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7476],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7477],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7478],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7479],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7480],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7481],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7482],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7483],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7484],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7485],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7486],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7487],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7488],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7489],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7490],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7491,7492],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7493],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7494],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7495],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7496],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7497],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7498,7499,7500],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7501,7502],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7503],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7504],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7505],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7506],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7507],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7508],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7509],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7510],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7511],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7512],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7513],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7514],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7515],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7516],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7517],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7518],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7519],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7520],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7521],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7522],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7523],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7524],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7525],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7526],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7527],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7528,7529],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7530],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7531],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7532],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7533],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7534],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7535],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7536],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7537],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7538],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7539],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7540],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7541],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7542],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7543],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7544],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7545],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7546],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7547],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7548],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7549],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7550],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7551],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7552],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7553],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7554],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7555],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7556],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7557],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7558],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7559],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7560],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7561],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7562],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7563],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7564],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7565],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7566],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7567],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7568],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7569],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7570],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7571],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7572],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7573],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7574],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7575],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7576],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7577],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7578],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7579],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7580],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7581],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7582],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7583],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7584],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7585],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7586],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7587],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7588],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7589],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7590,7591],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7592],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7593],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7594],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7595],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7596],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7597],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7598],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7599],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7600],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7601],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7602],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7603],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7604],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7605],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7606],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7607],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7608],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7609],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7610],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7611],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7612],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7613],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7614],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7615,7616],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7617],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7618],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7619],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7620],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7621],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7622],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7623],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7624],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7625],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7626],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7627],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7628],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7629],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7630],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7631],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7632],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7633],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7634],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7635],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7636],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7637],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7638],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7639],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7640],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7641],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7642],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7643,7644],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7645],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7646],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7647],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7648],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7649],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7650],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7651],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7652],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7653],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7654],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7655],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7656],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7657],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7658],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7659],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7660],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7661],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7662],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7663],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7664,7665,7666],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7667],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7668],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7669],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7670],"properties":{"scalerank":8}},{"type":"LineString","arcs":[7671],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7672],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7673],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7674],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7675],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7676],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7677],"properties":{"scalerank":7}},{"type":"LineString","arcs":[7678],"properties":{"scalerank":7}}]}},"arcs":[[[43140,32860],[-55,70],[-68,1654],[13,709],[-98,1079],[96,1168],[-40,693],[-475,834],[-53,368]],[[68084,58298],[102,223],[406,489],[629,-185],[449,-259]],[[65475,26964],[268,-24]],[[90435,40401],[115,-708]],[[90553,39691],[109,-441]],[[36154,32299],[200,-708],[22,-558],[300,-1045],[113,-943],[84,-1203],[132,-771],[142,-149]],[[37150,26922],[239,-176],[375,-531],[-2,-364]],[[7293,29194],[-256,-101],[-302,61],[-237,227],[60,375],[-157,296],[-369,94],[-176,211],[-132,-204],[-345,256],[-228,27],[-404,285],[-179,-156],[-536,483],[-335,102]],[[3542,20860],[308,-1244],[248,-325],[90,-379],[223,-43],[203,-368],[109,-467],[-19,-310]],[[42081,11541],[-396,-111],[-825,-83],[-151,77],[-647,-198],[-1366,-177],[-38,633],[-187,96]],[[12075,31504],[-460,-206],[-349,-339],[-188,-654],[-148,-848],[-5,-577],[-271,200],[-338,-305],[-191,92],[-344,-330],[-29,-303]],[[9753,28227],[-282,-203],[-3,-147],[-433,-418],[-72,-272],[-431,-364],[-263,-101],[-151,-209]],[[11120,22405],[129,57],[240,655],[304,145],[-43,613],[398,567],[297,797],[275,995]],[[5726,11982],[-334,-819],[-132,-34],[-242,-575],[-399,-239],[-59,-175]],[[4002,12984],[264,-363],[93,-327],[2,-775],[-70,-131],[147,-433]],[[2130,24894],[-170,313],[-304,108],[-411,-36]],[[1132,27044],[75,-13],[37,-603],[-35,-588],[36,-561]],[[14983,22309],[-116,365],[7,436],[-133,628],[119,221],[-77,435],[-381,574]],[[11906,33160],[234,-849],[26,-482],[-91,-325]],[[31058,35241],[-390,-87],[-262,92],[-692,74],[-142,81],[-549,44],[-728,-214],[-341,-250],[-54,70],[-839,345],[-952,-252]],[[25055,34080],[78,-451],[346,-19],[245,-227],[134,-275],[-33,-321],[92,-775],[206,-449],[23,-478],[173,-885],[-22,-720],[-75,-453],[-366,-319],[-219,-516],[-310,-213]],[[24338,32121],[96,106],[22,722],[-155,671],[618,195],[146,288]],[[22187,28785],[-462,1],[-489,539],[-300,215],[-756,25]],[[20173,29570],[-648,-282],[-712,-197],[-258,-328]],[[22095,33485],[-125,-390],[-203,-118],[-83,-255],[-332,-401],[-181,-106],[-294,-892],[-237,-547],[-300,-910],[-174,-318]],[[18390,36241],[1256,424],[512,93],[319,-231],[173,289],[254,147],[280,346],[368,87],[270,-296],[412,139]],[[8929,44309],[392,-331],[104,95],[588,116]],[[53775,77635],[-193,951],[-13,752],[-226,642],[-45,779],[-275,762]],[[52074,67428],[60,471]],[[46038,55584],[-76,1626],[-406,8],[-12,615],[-80,314],[-42,761],[664,1254],[240,24],[273,787],[46,326]],[[46552,61350],[-102,665],[216,413],[19,744],[-207,127],[-91,1171]],[[52303,60683],[-121,298],[-143,765]],[[56406,55142],[90,1849],[-55,272],[73,308]],[[68681,52887],[156,594],[230,467],[260,298],[170,360]],[[59772,43701],[-38,537],[64,408],[911,276],[1122,-157],[140,-203],[904,-106]],[[64963,46722],[-4,374],[-646,1230],[77,1434],[78,269]],[[64460,52605],[69,-659],[-40,-361],[46,-1178],[-23,-438]],[[54211,49423],[28,479],[5,1690],[-50,231],[106,632]],[[78169,47122],[258,-514],[271,-381],[988,-462],[90,-290],[-39,-599],[388,-841],[19,-382],[147,-634]],[[77681,40870],[292,-297],[1122,-316]],[[91268,32561],[361,-360],[664,-910]],[[92723,29433],[108,416],[267,360],[330,257]],[[83140,37651],[32,794],[-56,607],[51,129]],[[83699,39289],[-379,5],[-153,-113]],[[86203,43232],[-164,700],[-238,1301],[78,712],[209,872],[124,726],[10,451]],[[89977,41997],[173,-803]],[[89452,37988],[2,622],[211,423],[73,473],[188,363],[376,454],[130,29]],[[92714,29618],[-185,796],[-211,555],[-52,354]],[[93490,30448],[-179,246],[-813,267],[-192,347]],[[86812,29759],[-122,-572],[-219,-380],[-181,-497],[-184,-206]],[[86806,29692],[369,-299],[287,-127],[36,-364],[430,-441],[133,-385],[277,-285],[404,-739],[135,-8],[768,-801],[86,-142]],[[86960,29777],[354,865],[218,918],[13,562],[150,155]],[[84166,35361],[9,231],[-189,299],[-242,4],[-101,187]],[[93515,22082],[-141,-602],[-344,-1135],[-84,-833],[-85,-229]],[[95056,23302],[-191,-113],[-542,1],[-250,425]],[[92025,21817],[-199,-503],[-259,-90],[-155,-610],[-78,-925],[-350,-269],[-782,-108]],[[96439,27593],[-151,-313],[-340,-362],[-166,-480],[-537,-280]],[[93869,25573],[-851,106],[-172,153],[-189,-125],[-129,170],[-243,-105]],[[84128,29655],[484,581]],[[92142,21839],[60,-891],[91,-349],[-113,-1501],[7,-418]],[[61287,18469],[204,-295],[414,-231],[640,186]],[[66358,19906],[-49,-959],[-384,-432],[-286,-582]],[[68251,30158],[94,-70]],[[65391,31375],[2854,-1216]],[[70569,24450],[221,438],[43,289],[186,255],[284,-15],[179,161],[442,927]],[[84614,30229],[278,186],[318,-234],[91,308]],[[70748,33381],[469,7],[503,-164]],[[83324,27278],[-681,284],[-326,194],[-926,389]],[[80894,30067],[-191,369],[-650,955]],[[80882,30071],[101,-83],[216,-603],[228,-360],[-4,-252]],[[85330,57085],[270,463],[306,204],[289,613],[224,173],[253,624],[53,403],[197,696],[97,746]],[[76968,43677],[-375,-452],[-556,-276],[-129,-421],[-325,-514],[-237,-84],[-168,-215]],[[80753,72249],[327,22]],[[83505,84892],[311,724],[71,509],[214,310],[202,569],[162,748],[320,517],[20,231]],[[57406,81808],[672,-76],[402,44],[453,-115],[533,-54]],[[55028,82601],[2,-147],[265,-136],[485,70],[394,-277],[654,-269],[578,-34]],[[58531,77509],[376,-212],[365,-474],[119,-258]],[[83172,62312],[-375,40],[-334,198],[-631,37],[-321,151],[-248,535],[-196,77]],[[75831,59206],[-458,500],[-139,403],[-469,423],[-80,241],[-297,392],[-278,21]],[[74142,66108],[-275,18],[-321,265],[-380,71],[-271,178],[-359,86],[-262,168],[-414,100],[-344,208]],[[84684,65157],[149,-192],[351,-1340]],[[86787,61126],[-151,266],[-58,368],[-243,361],[-526,451],[-54,174]],[[80572,56627],[79,1184],[125,891]],[[82779,57399],[197,858]],[[82970,59382],[690,577],[206,-65],[123,158],[470,298]],[[86489,51431],[140,52],[313,-195],[498,-144],[308,135],[483,-474]],[[79484,51169],[-113,55]],[[77722,54109],[23,323],[-282,631],[-13,188]],[[77581,54272],[-753,1099],[-129,42],[-295,393],[-701,717],[-108,255]],[[67061,45133],[79,368],[-12,748],[40,700],[-106,1182]],[[67141,50990],[174,-194],[-87,-775]],[[67140,51452],[258,167],[515,-96],[163,64],[605,1300]],[[63545,55567],[-168,133],[-512,108],[-637,266],[-404,-63]],[[61700,55846],[-182,51],[-276,-314],[-140,-8],[-295,-408],[-281,416],[-618,-202],[-333,120],[-359,-35],[-284,107]],[[65610,65397],[1,1305],[212,1063],[52,711]],[[77937,61027],[-110,-220],[6,-356],[-156,-544],[50,-284]],[[69035,62965],[108,641]],[[57651,44840],[9,649],[148,809],[150,552],[41,897],[52,146]],[[64083,58556],[216,-397],[-13,-446],[100,-174]],[[65636,65421],[79,-1146],[97,-622],[48,-777]],[[65874,62603],[-291,-1013],[-89,-714],[-272,-333],[-132,-404]],[[69291,55699],[-212,881],[0,611]],[[63489,58519],[-231,-341]],[[56503,57551],[72,794],[406,569],[101,312],[245,89],[237,474],[122,0],[182,374],[72,469],[98,123],[37,424],[125,391],[26,802],[-59,517]],[[73860,52897],[-500,37],[-287,110],[-170,237]],[[72880,42447],[-26,-410],[-119,-412],[55,-977],[-85,-875],[118,-847],[112,-199]],[[56359,47971],[-42,915],[-65,374],[-1,670],[-159,798],[322,1270]],[[59655,44826],[243,-73]],[[70728,27368],[1150,671],[297,-40]],[[61463,12768],[224,102]],[[69313,27382],[173,30],[316,-191],[435,117],[200,-64]],[[36748,35357],[315,123],[290,328]],[[36463,35020],[287,336]],[[31058,35241],[821,382],[405,-37],[189,365],[467,542],[173,429],[360,419],[256,96],[24,173],[274,220],[66,411],[371,295],[608,3]],[[36776,45967],[-299,321],[-523,106],[-403,399],[-279,-12],[-507,694],[-133,-20]],[[48759,70448],[233,294],[116,467],[222,382]],[[58506,64415],[-780,708],[-483,829],[-286,588],[-128,573],[-387,679],[-544,772],[-393,318],[-451,514]],[[53830,76606],[-6,-1177],[-231,-863]],[[49747,64462],[-274,489],[-96,431],[-614,29]],[[49564,71662],[267,-1063],[97,-531],[-50,-735],[20,-654]],[[41435,80282],[-633,-393],[-439,-205],[-467,66],[-561,-307],[-305,105],[-224,-190],[-410,-525],[-481,-104],[-412,70],[-189,-62]],[[41951,76923],[-148,-337],[-479,-616],[-169,-316],[-360,-339],[-470,-566],[-402,-804],[-17,-318]],[[37159,64994],[560,801],[514,888],[888,1444],[213,284]],[[46826,72712],[-66,658],[-131,702],[230,869],[114,206],[-205,685],[-139,1468],[4,940],[-39,496]],[[48816,76842],[304,153],[110,177],[84,868],[187,150],[147,694],[207,512]],[[50027,84064],[-810,-16]],[[47282,97069],[-68,-414],[43,-716],[-39,-2122],[22,-319],[-150,-977],[531,-1464]],[[47338,97475],[-56,-406]],[[49059,87590],[161,-291],[1312,-1231],[303,-447],[232,-568],[360,-295]],[[50023,84064],[-654,-892],[-515,-88],[-183,-379],[-235,-233],[-288,-46],[-245,-268],[-457,-146]],[[7970,18375],[364,246],[175,-134],[451,135],[541,-697],[280,-78],[365,441],[273,-41],[450,569],[646,402]],[[6661,17231],[-329,-29],[-116,-135],[-388,-106],[-398,-217],[-171,-574],[-28,-460],[-168,-71]],[[3812,24277],[101,-269],[275,-63],[340,470],[463,181],[217,-113],[348,1197]],[[7244,38563],[331,-61],[200,-275],[508,-195],[322,-19],[322,-187]],[[11260,44534],[-108,190],[-114,1075],[16,1412],[314,957],[166,301],[70,357],[-129,647],[368,807],[730,687],[255,-59],[181,165],[436,125],[310,565],[200,652]],[[1698,46655],[-113,343],[-12,626],[73,320],[215,410],[83,513],[142,272],[16,455],[126,339]],[[50408,34377],[111,61],[575,-32],[829,44],[714,-28]],[[64186,54615],[-30,309]],[[55018,82669],[128,-4],[288,486],[-16,469],[83,178]],[[537,30446],[-203,-415],[-36,-449],[85,-339],[340,-422],[-8,-236]],[[7200,38734],[-337,30],[-85,461],[-219,420],[-639,16],[-390,-185],[-196,44],[-269,-128],[-264,168],[-479,-107],[-479,164],[-80,-63]],[[5227,42954],[173,270],[603,193],[218,186],[135,306],[269,-316],[190,257],[286,-171],[251,93],[87,-189],[260,54]],[[9203,38100],[155,53],[49,332],[381,681],[797,189],[219,-244],[162,-384],[505,-196],[364,576],[401,41],[173,131],[230,456],[291,-189],[843,17],[315,-134],[188,167],[63,733],[459,23],[614,457],[296,-172],[157,182],[254,647],[58,-9]],[[11271,44552],[-386,-459],[-191,-76],[-253,254],[-426,-74]],[[8687,46357],[162,-258],[-33,-1653],[113,-137]],[[19431,67823],[469,682],[241,758],[450,973],[34,343]],[[37632,71622],[-925,-133],[-55,115],[-506,-68],[-404,287],[-481,242],[-568,6],[-334,326]],[[37601,25009],[44,-566],[511,-566],[39,-358],[90,-1856],[320,-846],[34,-1457]],[[58297,49385],[-212,561],[-183,269],[-268,49],[-103,811],[-302,612],[-314,151],[-118,189],[-383,-29]],[[52736,61617],[275,-85],[247,164],[272,8],[306,304],[292,-189],[42,-163]],[[76048,69299],[-129,-232],[-622,-634],[-376,-1045],[-202,-374],[-300,-274],[-65,-578]],[[85470,90091],[176,425],[80,538]],[[84805,88500],[185,673],[475,916]],[[81188,86737],[310,648],[253,-128],[292,4],[64,470],[360,1052],[388,847],[60,767],[103,392],[292,277],[218,-48],[77,277],[365,-45],[438,217]],[[81920,84774],[-256,41],[-1005,-957]],[[81371,70436],[147,-187],[151,-1176],[73,-230]],[[81219,71154],[152,-718]],[[79258,75000],[-378,-83],[-267,53],[-741,-135],[-324,-146],[-756,-84]],[[77430,76936],[-236,-728],[-340,-1467],[-62,-136]],[[78781,78802],[-388,-578],[-285,-195],[-540,-763],[-138,-330]],[[71389,61606],[162,-96],[310,245]],[[99422,12618],[70,-357]],[[99037,10957],[-206,192],[-226,642]],[[93765,23000],[-263,75],[-198,-280],[-642,-438],[-349,-663],[-176,154]],[[91196,24095],[-88,352],[-38,590],[35,658],[63,142]],[[87467,25686],[-434,262],[-1164,322]],[[91040,27426],[-288,-237]],[[83324,27278],[-60,992],[-122,181],[115,452],[259,339],[212,-11],[340,401]],[[87633,29821],[316,221],[253,-200],[394,12],[219,101],[187,258],[105,529],[570,277],[193,400]],[[79439,32411],[-292,344],[-452,275]],[[79439,32411],[-59,159],[38,1200],[200,1020],[94,824]],[[78273,35926],[196,-152],[209,117],[182,281],[109,588]],[[79712,35614],[605,-143],[200,48],[423,-226],[444,-91],[1213,-89],[277,199]],[[86083,37322],[-222,-211],[-186,-2],[23,-228],[-358,-389],[-287,161],[-129,-173],[-267,138],[-240,-709]],[[80114,43052],[-724,161],[-252,166],[-463,117],[-119,126],[-414,122],[-111,-96]],[[81516,41240],[-223,-7],[-480,179],[-98,363]],[[79729,52345],[-736,559],[-68,140],[-665,447],[-430,579],[-108,39]],[[85411,51713],[-59,733]],[[85352,52446],[-311,843],[-259,186],[-243,649],[-222,751],[-588,-65]],[[83139,52904],[441,-104],[388,-571],[596,142],[362,-375],[287,-79],[231,-379]],[[86506,52093],[-17,-662]],[[86490,51410],[194,-715],[-46,-1123]],[[83112,49830],[293,-131],[367,-37],[340,230],[417,-281],[322,63],[161,240],[397,204],[483,-244],[598,-428]],[[81608,50253],[142,256],[258,-481],[599,136],[322,-49],[171,-213]],[[83963,46967],[-268,745],[-149,167],[-56,359],[-334,962],[45,275],[-89,355]],[[80964,48746],[128,-157],[344,58],[263,-263],[286,-17],[99,-260],[178,-84],[292,159]],[[82554,48182],[-123,522],[-356,764],[-279,371],[-188,414]],[[16134,41478],[-248,161],[-437,949],[-251,297],[-238,19],[-446,502],[-141,8],[-580,365],[-249,-140],[-252,232],[-409,731],[-115,36],[-876,-114],[-118,118],[-494,-107]],[[83324,27278],[245,-42],[321,166],[844,-180],[355,-459],[375,-337],[405,-156]],[[91176,25751],[-41,286],[120,675],[51,708]],[[93488,27275],[-271,-85],[-735,414]],[[85157,33625],[204,162],[382,-27],[-14,686]],[[82112,31784],[-60,792],[195,1322],[-71,75],[110,620],[-94,508]],[[83921,40310],[-346,145],[-127,169],[-277,-98],[-339,374],[-552,-54],[-402,94],[-359,292]],[[78695,33030],[-325,494]],[[81412,28783],[95,472],[180,393],[269,1284],[-73,323]],[[84128,29655],[-497,169],[-119,256],[-485,300],[-196,395],[-250,-7],[-177,505],[-384,182]],[[82020,31455],[-134,-208]],[[82020,31455],[92,329]],[[81886,31247],[-166,289],[-187,26],[-191,-185],[-117,137],[-402,134],[-291,-35],[-498,261]],[[82874,35312],[339,394],[438,376]],[[75284,45150],[-324,83],[-453,533],[-469,-5],[-449,-249],[-641,-83]],[[75284,45150],[185,1180]],[[78396,33504],[-210,259],[-261,86],[-635,847],[20,302],[-94,399]],[[66997,36796],[577,-181],[511,-588],[393,-90]],[[69557,33709],[450,-167],[355,-16],[399,-263]],[[72829,30137],[561,-185],[428,51],[421,-78],[142,63],[345,-199],[201,36]],[[72149,27984],[574,-77],[401,-776],[16,-532],[140,-328],[556,-372]],[[70194,20021],[170,284],[228,1514],[-141,621],[67,493],[-23,572],[74,945]],[[72938,23430],[-263,-524],[-83,-334],[-25,-846],[-126,-325],[-216,-178],[-206,2],[-287,-407],[-434,-135],[-197,-352],[-483,-47],[-419,-325]],[[70569,24450],[-98,261],[-17,504],[187,2020]],[[70194,20021],[-76,169],[80,949],[-296,392]],[[69892,21560],[-278,-10],[-196,305]],[[69418,21855],[-104,295],[8,1179],[-185,700],[-190,81],[-36,303],[-707,140],[-74,1267],[-246,357],[99,410],[39,749]],[[69372,27398],[57,809],[66,252],[44,1014],[-96,477],[-16,476],[-108,364]],[[69467,26098],[-80,338],[-15,962]],[[69904,21558],[199,994],[-20,267],[-247,518],[-135,747],[-245,543],[-51,300],[97,1070],[-35,101]],[[67798,27386],[83,547],[60,984],[131,425],[194,340],[85,422]],[[69331,30958],[-158,358],[-341,363],[-285,562],[-65,329],[-34,858],[-162,582],[24,382]],[[67775,35791],[214,-338],[113,-655],[208,-406]],[[67800,35787],[-223,407],[-407,387],[-436,186]],[[73430,35224],[28,409]],[[74307,38367],[-316,-375],[-268,-128],[-226,47],[-32,-191]],[[76712,35846],[85,655],[-119,499],[-312,347],[-190,371],[-359,513]],[[76802,36520],[339,-450]],[[79502,37147],[21,378],[272,790],[239,211]],[[80034,38526],[78,11]],[[83195,39173],[-601,148],[-127,366],[-240,-47]],[[86678,39390],[-182,-948],[-380,-786]],[[77268,58424],[182,-41],[387,-348],[489,-209],[537,-387],[382,-167],[720,-89],[621,-553]],[[81641,56425],[162,-23],[532,-718],[146,-424]],[[81645,55225],[73,727],[-71,471]],[[81649,56409],[-71,73],[-330,901],[-38,503],[-184,219],[-118,502],[-129,94]],[[76368,50526],[-85,333],[-352,753],[-281,129],[-188,389]],[[76314,47542],[44,379],[-55,456],[66,258],[-48,537],[-246,498],[147,650],[146,206]],[[76368,50526],[179,288],[412,405],[114,295],[302,-220]],[[77375,51294],[352,389],[351,266],[69,195],[284,8],[341,-240],[367,-548],[233,-133]],[[80002,52297],[250,634],[260,386]],[[72733,70744],[-420,494],[-235,366],[-399,150],[-665,509]],[[73439,68982],[-253,413],[-175,466]],[[73011,69861],[-278,883]],[[67495,53736],[-515,154],[-382,364],[-313,150]],[[65833,54843],[442,-444]],[[67577,55705],[-649,-736],[-635,-545]],[[65304,42579],[-29,112]],[[65275,42691],[46,787],[66,93],[10,941],[-51,711],[-217,787],[-69,490]],[[68354,47879],[-852,264],[-384,-67]],[[68354,47879],[111,-10],[426,-468]],[[66986,45069],[92,-156],[51,-848],[188,-265],[-107,-1402]],[[62961,44203],[106,-146],[832,-114],[371,-382],[186,-348],[299,-138],[239,-355],[281,-29]],[[58574,64134],[427,-108],[632,-44],[674,-233],[220,-213],[878,-540],[596,-500],[548,-207]],[[61604,57547],[-266,91],[-299,439],[-140,32],[-7,921]],[[61838,56036],[-148,711],[-86,800]],[[73976,57885],[-288,159],[-372,-180],[-184,137],[-372,2],[-139,-178],[-490,-271],[-217,-321],[-639,93],[-230,155],[-457,-187],[-480,25],[-993,342]],[[88171,57208],[-71,-88],[-434,69],[-284,-151]],[[83665,67662],[279,-459],[162,-578],[277,-330],[139,-743],[175,-399]],[[65082,60113],[8,-401],[166,-439],[-152,-544],[-9,-541],[-169,-712],[-53,-698]],[[59390,44001],[15,621],[235,218]],[[56414,51998],[-505,-11],[-128,214],[-495,-21],[-281,179],[-542,-44],[-163,140]],[[52249,52143],[-10,622],[-132,264],[23,703],[-213,1117],[9,689],[-657,131]],[[68225,69409],[-13,-181],[-415,-179],[-285,6],[-432,-395],[-235,4],[-204,-285]],[[59114,72977],[-57,388],[82,1253],[-211,539],[-321,565],[-116,666],[40,1121]],[[61692,50580],[13,-990],[317,-707]],[[63545,55567],[-54,-1254],[-331,-1143],[-302,-490],[-272,-663],[-502,-648],[-392,-789]],[[61682,50581],[-121,370],[-98,666],[182,457],[331,1059],[23,438],[-241,584],[-43,898],[60,448],[-101,266],[150,244]],[[56404,54662],[507,-254],[144,-278],[116,-621],[216,-289],[333,-634],[395,-92],[378,-213],[267,-369],[301,-115],[882,-708],[278,-368],[620,-1188],[484,-104],[318,-163]],[[55487,37587],[487,-217],[320,19],[1381,-75],[371,-77],[380,49],[562,-60]],[[56327,24735],[-66,275],[-199,76],[-260,469]],[[58336,22840],[241,438],[351,1013],[39,373]],[[60795,28138],[564,404],[148,275],[426,475],[77,302],[417,192],[102,184]],[[62958,31366],[-279,294]],[[65475,26971],[-2,297],[-129,463],[119,1623],[-153,560],[5,1066],[54,608]],[[62378,24468],[217,30],[176,195],[1165,43],[381,288],[211,370],[341,305]],[[64869,25699],[158,141],[300,525],[148,606]],[[64179,26644],[-14,446],[-133,387],[-10,473]],[[64022,27950],[21,287],[273,539],[32,461],[175,619],[340,604]],[[64814,25107],[17,550]],[[64831,25657],[-252,781]],[[64579,26438],[-400,206]],[[61963,23264],[53,424],[-15,633]],[[62054,24570],[324,-102]],[[61966,24277],[88,293]],[[58967,24664],[633,-70],[91,-75],[1661,-138],[614,-104]],[[62537,30017],[28,-569],[-92,-1284],[-127,-545],[-26,-1309],[-327,-1182],[61,-558]],[[59466,41744],[-233,-429],[-28,-2248],[-63,-1488],[-154,-353]],[[59449,42346],[17,-602]],[[59391,44041],[-64,-1178],[-128,-444],[250,-73]],[[59466,41744],[19,-401],[217,-91],[352,-717]],[[46849,20730],[-105,-746],[-173,-796],[25,-1860]],[[50451,34579],[252,1086],[235,695],[3,459],[112,694],[191,432],[44,330]],[[51269,38073],[-307,7]],[[55440,34480],[547,-30],[241,124],[237,-194],[778,-116]],[[52651,34638],[566,-3],[69,106],[674,-29],[190,-187],[482,-69],[217,47]],[[57628,34322],[319,-87],[1454,-49]],[[57243,34264],[394,58]],[[58988,37226],[-109,-1261],[-105,-404],[-550,-805],[-433,-471]],[[57696,34318],[-209,-338],[-124,-680],[-79,-69],[-69,-852],[-271,-456],[-80,-292],[-1,-478],[-141,8],[-7,-343],[-171,-11],[-62,-481]],[[55355,25319],[200,-210]],[[54034,22638],[247,106],[269,474],[356,215],[387,420],[241,393]],[[55355,25319],[-94,460],[-426,546],[-143,334],[-37,559],[-128,393],[96,152]],[[55250,16025],[105,-237],[382,-197],[61,-129],[402,-160],[40,-301],[565,-164]],[[54034,22638],[208,-113],[-27,-555],[-267,-694],[-25,-929],[-51,-379],[268,-556]],[[43140,32860],[85,34],[246,543],[347,396],[730,128],[212,-95],[849,14],[391,390],[390,159]],[[48045,48389],[545,-176],[449,-71],[176,-153],[729,-260],[724,-56],[704,48],[266,128]],[[65875,68476],[-250,43]],[[65624,68513],[-495,-29],[-320,-105],[-210,77],[-299,378],[-638,-94]],[[65860,62876],[131,152],[932,414]],[[69768,62987],[157,-45],[314,268],[169,264],[398,-215],[234,-433],[282,-991]],[[73976,57885],[-158,344],[-312,966],[-473,1103],[-88,438]],[[66923,63442],[339,97],[285,-46],[19,-342],[324,-309],[545,131],[625,8]],[[70921,65682],[-211,-772],[-330,-373],[8,-517],[-188,-10],[-284,-769],[-210,-149]],[[75337,63749],[298,-537],[158,-700],[233,-573],[-108,-372],[15,-650]],[[72762,80344],[134,-23],[-2,350],[443,395],[343,639],[433,131],[605,-349],[443,-563],[308,-161],[-38,-728]],[[78781,78802],[386,1],[594,-142],[446,-300],[794,-277]],[[79760,85374],[-60,-999],[-99,-437],[-227,-461],[20,-525],[-118,-109],[-618,-1376],[-338,-7],[-390,-193],[-829,-1481]],[[82646,82247],[-216,460],[-172,955]],[[83462,84767],[-157,-846],[-198,-728],[-249,-695],[-191,-304]],[[75608,78541],[750,-42]],[[75431,80035],[440,-343],[256,-51],[169,141],[392,-19],[173,100],[240,-77]],[[66255,75396],[369,-376],[441,-57],[761,216],[222,-10],[544,484],[90,196],[202,5],[379,269],[437,-99]],[[69700,76024],[185,-103],[438,88],[904,369],[630,-354],[566,86],[142,124],[456,-60]],[[66702,76439],[296,576],[213,713],[150,924],[185,263]],[[66259,75396],[443,1043]],[[66019,72895],[76,1192],[-47,431],[211,878]],[[62501,76406],[555,-126],[196,48],[168,-192],[291,-76],[168,-186],[296,43],[204,-96]],[[64379,75821],[238,-207],[288,42],[441,-172],[534,-2],[379,-86]],[[61318,80966],[149,96],[288,660],[488,186],[547,98]],[[62946,73502],[-147,539],[-226,1120],[-89,1267]],[[62939,73522],[-344,-270],[-780,24],[-121,98]],[[61393,73501],[-481,-271]],[[61393,73501],[301,-127]],[[59466,81607],[154,419],[66,431],[163,231],[586,514],[157,237],[456,293],[666,-61],[63,230],[334,199],[151,-80],[161,-444],[477,-812]],[[58167,62889],[17,574],[122,370],[268,301]],[[54547,61564],[298,-157],[746,28],[541,187],[169,324],[351,159],[217,247],[387,48],[269,276],[301,3],[341,210]],[[54405,61636],[-224,26]],[[54559,57936],[141,543],[-78,793],[56,188],[-37,1656],[-37,312]],[[51493,64044],[-178,601],[-255,628],[-384,1159],[-98,486],[-226,376],[-322,760]],[[53143,70603],[425,-453],[185,-91],[206,-356],[298,-303],[753,59]],[[55712,73146],[-15,922],[277,434],[130,365],[340,510],[547,661],[118,338],[251,411],[408,295],[155,206],[573,398]],[[57428,81806],[224,-803],[229,-649],[229,-1141],[193,-548],[39,-641],[154,-338]],[[43690,91271],[45,-18],[497,-2729],[248,-1558],[139,-447],[489,-672],[514,-405]],[[41435,80282],[269,81],[549,510],[862,-324],[446,605],[123,322],[680,730],[659,583],[471,1054],[131,497]],[[52629,57437],[-193,955],[-93,1203],[-79,589]],[[52039,61746],[-118,487],[0,310],[-180,461],[-135,837],[-117,163]],[[47299,63362],[-87,1732],[17,2955]],[[47215,68049],[219,1099]],[[48796,68784],[-64,970],[23,681]],[[48763,65411],[97,434],[-42,512],[34,507],[-43,1543]],[[48183,61956],[33,892],[203,599],[122,914],[132,313],[94,704]],[[49063,58097],[195,585]],[[49258,58682],[-221,171]],[[48623,53344],[-67,2013]],[[48551,55506],[567,-36]],[[48556,55357],[-17,351]],[[47977,55883],[90,-322],[484,-55]],[[47489,58052],[-42,-204],[44,-823],[135,-37],[351,-1105]],[[43470,52561],[562,-404],[586,-208],[826,-1241],[460,-397]],[[41871,51569],[308,187],[69,222],[340,87],[882,496]],[[43463,52567],[287,154],[265,402],[266,233]],[[39417,63013],[-455,123],[-448,345],[-286,342],[-512,423],[-621,794]],[[50962,38080],[-314,309],[-750,28],[-539,-102],[-713,94],[-551,472],[-625,858],[-679,690]],[[46323,32311],[261,-163],[44,-423],[348,75],[15,-948],[-98,-11],[-54,-607],[10,-612]],[[32850,31428],[85,-1231],[-84,-353],[71,-759],[-154,-467],[-234,-454],[93,-544],[-24,-566],[70,-636],[-49,-421],[26,-543]],[[34803,32485],[-340,-459],[-637,-393],[-646,-196],[-330,-9]],[[38616,32355],[-191,45],[-365,402],[-252,157],[-526,-310],[-440,77]],[[36191,34699],[-380,-508],[-396,-98],[-392,91]],[[37353,35808],[324,332],[284,29],[4,359],[166,270],[231,-40]],[[36463,35020],[-155,561],[-54,629],[48,379],[-266,789],[-641,396],[-272,380]],[[35072,38539],[431,-113],[681,144],[273,-65]],[[36453,38566],[168,-65],[627,-20]],[[38362,36758],[1266,1251],[364,261],[106,417],[152,144],[500,217],[-3,169]],[[42460,39435],[-292,-145],[-518,-71],[-491,125],[-423,-108]],[[37248,38481],[382,-60],[566,238],[240,353],[795,90],[664,396]],[[39895,39498],[676,-237],[164,2]],[[42460,39435],[232,38],[621,499],[435,409],[359,436],[351,312],[1055,194],[651,-157],[475,-378],[130,19]],[[38012,40810],[456,-515],[566,-233],[337,-234],[255,-27],[295,-328]],[[40060,41280],[156,158],[572,48],[203,195],[19,245],[659,316],[525,544],[395,160]],[[42649,42964],[209,-139],[953,-183],[675,90],[415,-577],[764,-175],[339,-248],[740,33]],[[46744,41765],[-45,1051],[-221,25],[-5,1047]],[[34537,43519],[325,-318],[452,-694],[510,-172],[559,-262],[317,-53],[419,74],[150,-62],[528,-612],[202,-612]],[[46473,43888],[-104,881],[-396,2],[-25,702],[178,116],[-54,1762],[-286,7],[10,1008]],[[39533,51043],[-634,-223],[-292,-25]],[[41855,51459],[-336,-21],[-411,161],[-540,-35],[-328,-126],[-456,-336],[-251,-59]],[[45885,53143],[491,-59],[402,97],[415,-114],[1052,59],[381,-59]],[[44274,53356],[341,-129],[1260,-77]],[[45880,53238],[162,764],[131,283],[21,1299],[-156,0]],[[34879,49480],[123,153],[458,166],[220,316],[602,338],[436,450],[145,65],[263,-245],[548,-143],[749,66]],[[34947,55026],[-81,437],[-346,1043],[-63,574],[-191,786],[-42,442],[-380,575],[-136,48],[-184,338],[-326,269],[-292,960],[-362,-17],[-369,-337],[-143,-478],[-226,98]],[[30097,52764],[114,646],[179,203],[64,290],[-53,358],[415,170],[-20,914],[95,418],[-1,448],[-114,239],[186,433],[286,240],[187,446],[179,106]],[[29388,65243],[-266,6],[-274,-452],[-448,153],[-829,-434],[-202,-482],[-415,-308],[-496,-109],[-156,-142],[-1126,467]],[[29388,65243],[-8,542],[-219,516],[-334,427],[-412,1097],[18,648],[-129,253],[-71,713],[33,413],[191,477],[375,225],[125,680],[224,590]],[[17312,15427],[-335,378],[-77,699],[-128,580],[-142,355],[-13,1202],[-46,272]],[[18571,28734],[-159,-338],[-265,-296],[-203,-504],[-242,-290],[-795,-369],[-202,-748]],[[21264,25732],[196,-172],[147,-401],[431,33],[147,-102],[216,129],[520,116]],[[21217,25715],[337,542],[197,145],[689,1299]],[[25880,26095],[-425,677],[-178,616],[50,591]],[[37241,11598],[-444,-165],[-410,179],[-553,-198],[-231,-10]],[[37281,8345],[-15,795],[175,357],[-8,351],[-147,751],[-38,913]],[[42081,11541],[388,440]],[[42469,11981],[-60,2196],[191,509],[151,739],[234,426],[166,120],[7,1342]],[[6124,96299],[429,-29],[275,-106],[208,-244],[486,-969],[603,-702],[356,-80],[237,114],[357,-221]],[[9983,90664],[-181,100],[-432,26],[-300,925],[115,208]],[[10426,84542],[159,-317],[508,-331],[381,-367],[122,-329]],[[49324,13389],[1,-239],[-156,-414],[18,-2300],[-72,-372],[-4,-879]],[[49429,13384],[417,498],[339,196],[488,-9],[169,193],[480,299],[373,391],[708,-33],[506,171]],[[52997,15308],[332,186],[380,24],[1210,201],[319,307]],[[55238,15993],[495,464],[519,674],[136,247],[647,24]],[[55339,10861],[56,282],[220,288],[378,95],[268,895],[57,701],[241,465],[90,706],[139,59],[17,485]],[[53307,10411],[-325,-79],[-266,-240],[-324,-148],[-123,-184]],[[55280,11055],[-560,82],[-73,-335],[-410,-46],[-280,-130],[-155,-208],[-481,-7]],[[98605,11791],[-310,-857],[-136,-179],[-221,-1563]],[[97189,13202],[227,-701],[324,-90],[237,-247],[628,-373]],[[97938,9192],[-390,153],[-189,328],[-186,1093],[43,259],[-38,779],[42,838],[-39,570]],[[97319,14804],[62,-218],[-200,-1374]],[[99496,12238],[274,187],[218,453],[-214,310],[204,419],[-63,221],[-468,343],[-100,371],[-200,70],[-282,354],[100,211],[-258,342],[-259,-108],[-326,148]],[[96242,18930],[106,-355],[303,-500],[329,-283],[284,-117],[-27,-232],[82,-730],[-85,-157],[246,-869],[642,-128]],[[92874,18008],[-123,231],[-584,435]],[[94004,12301],[191,200],[143,416],[285,194],[367,630],[89,572],[289,463],[84,352],[353,534]],[[95798,15711],[-92,299],[-257,345],[-265,97],[-86,310],[-221,90],[-141,333],[-522,366],[-70,356],[-238,172]],[[93906,18079],[-132,-6],[-470,372],[-335,-220],[-117,-201]],[[90202,19312],[-22,-482],[55,-719],[-198,-703],[15,-303]],[[89433,17407],[161,938],[-29,515],[141,871],[-43,486],[60,336],[-165,822],[-22,1031],[231,459],[55,511],[122,375]],[[70597,17548],[-242,497],[-21,307],[-242,699],[60,480]],[[65455,23297],[-343,276],[-113,850],[-216,170],[31,514]],[[64520,20449],[43,189],[489,81],[474,276],[283,-67],[163,-192],[254,-71]],[[66224,20632],[-31,280],[-176,281],[-184,874],[-347,930],[-45,302]],[[66227,20692],[136,-746]],[[66358,19906],[160,117],[861,-169],[400,-381],[192,-52],[77,-396],[721,-97],[216,-112],[725,312],[265,375],[179,61]],[[70597,17548],[-486,73],[-795,302],[-123,123],[-712,86],[-492,-71],[-880,145],[-384,-275],[-314,35],[-263,-188],[-541,160]],[[63383,11841],[148,-272],[-238,-37],[-709,698],[-708,453],[-203,195]],[[61673,12878],[443,58],[16,351],[173,107],[303,-201],[634,-856],[141,-496]],[[21493,66086],[573,522],[224,102],[370,539],[37,213],[261,361],[58,374],[303,527],[304,179],[348,337],[304,-54],[300,263],[145,392]],[[32830,77538],[-460,-238],[-853,-658],[-336,121],[-302,-312],[-213,-596],[-378,-550],[-277,-766]],[[43590,92172],[2,-393],[105,-481]],[[42162,11655],[-106,-362],[-460,-489],[-205,-312],[-131,-471],[9,-450],[-249,-32],[-23,-334]],[[29884,14565],[312,33],[309,212],[651,127],[307,169],[667,-413],[353,-134],[282,-282],[341,-186],[799,43],[829,308],[243,40],[332,-394]],[[31953,23193],[196,63],[188,393],[15,448],[129,854],[169,503]],[[31715,20591],[67,377],[-3,863],[-90,435],[105,674],[167,254]],[[28375,29198],[223,-81],[625,866],[417,-606],[242,-12]],[[28375,29198],[78,886],[390,1143],[200,29],[418,664],[1054,529],[249,496]],[[27217,40392],[52,141],[758,143],[240,-297],[785,-560],[95,87],[323,-105],[596,287],[202,-50],[135,169],[471,122],[346,-51],[132,526],[416,102],[222,630],[-47,359],[78,265],[457,153],[306,-152],[84,374],[162,88],[105,560],[-118,334],[242,53]],[[30097,52764],[516,-1042],[388,-434],[475,104],[214,417],[148,39],[465,513],[505,75],[373,216],[247,-478],[196,-166],[262,339],[558,-263]],[[22396,39863],[270,393],[505,493],[214,61],[309,878],[-4,335],[162,437],[282,117],[306,683],[63,507],[-28,875],[90,193]],[[24963,52996],[32,165],[-91,668],[196,939],[-246,129],[-42,871],[-91,593],[-86,1284],[94,178],[-29,1194],[139,771]],[[25354,45212],[-380,-54],[-251,-333],[-158,10]],[[28816,47780],[132,666],[2,654],[129,632],[-175,415],[94,284],[-334,609],[-59,757],[-189,651]],[[28467,52655],[-71,-211]],[[25101,53035],[-35,-172],[124,-511],[-59,-574],[165,-85],[194,-659],[37,-599],[314,-564],[24,-336]],[[27791,54305],[-255,90],[-278,-187],[-256,-13],[-257,-238]],[[24946,59766],[189,-221],[407,-156]],[[25527,59399],[300,-445],[372,-124]],[[23245,60583],[173,-212],[415,-32],[412,-259],[169,-3],[321,-267],[211,-44]],[[26199,58830],[287,47],[502,500],[555,359],[220,861],[263,392],[414,40],[77,205],[701,317],[305,-155],[432,-70],[146,-158],[200,90]],[[26444,19183],[-215,814],[-397,471],[-99,334],[277,700],[-26,258]],[[25949,23856],[77,-233],[223,48],[59,-264],[479,481],[275,-111],[262,244],[550,92],[360,-88],[536,71],[252,210],[498,194],[187,-137],[515,106]],[[31821,9846],[102,20],[260,-309],[336,-2],[413,186],[75,147],[473,187],[133,178],[211,645]],[[28857,14244],[-34,-182],[204,-519],[486,-242],[469,82]],[[34674,17803],[415,248],[167,-134],[1615,323],[121,145],[465,165],[522,451],[660,359]],[[36531,15580],[193,-126],[601,547],[219,84],[248,260],[463,-32],[541,322],[347,23]],[[36561,15564],[-262,517],[-846,700],[-421,597],[-334,368]],[[34718,17703],[-169,307],[-255,213],[-375,104],[-1004,-103],[-644,-139],[-162,319],[-314,20],[-1061,558],[-241,46],[-307,280]],[[16705,26189],[-159,-218],[-502,-1469],[-12,-280],[-267,-160]],[[23928,31607],[-56,-643],[-293,-772],[-423,-139],[-345,64],[-334,-152]],[[24786,28375],[-119,1183],[88,520],[-59,1001],[-404,498],[-364,30]],[[23928,31607],[107,464],[303,50]],[[23086,26717],[563,-333],[360,333],[139,384],[173,120],[67,289],[203,339],[154,625]],[[25327,27979],[-180,378],[-361,18]],[[25880,26095],[542,199],[350,490],[65,328],[147,95],[756,1002],[207,413],[431,570]],[[30320,26425],[-90,219],[-351,375],[33,420],[-142,351],[22,791],[65,176],[7,605]],[[30224,24449],[131,108],[-59,617],[180,368],[14,280],[-170,603]],[[29540,22400],[60,459],[147,4],[240,571],[-5,235],[240,800]],[[29300,20247],[-188,939],[57,344],[345,675],[26,195]],[[29503,19791],[520,-382]],[[26439,19196],[263,-221],[281,156],[173,-222],[415,-200],[474,604],[426,191],[426,439],[606,-152]],[[16446,12994],[-311,26]],[[16453,12989],[353,-94],[546,319],[92,223],[206,1306]],[[20218,13550],[-252,376],[-669,72],[-552,359],[-79,301],[-162,-39],[-220,309],[-389,-205],[-254,-24]],[[17645,14714],[-42,601],[-291,112]],[[21426,7177],[167,72],[355,-101],[156,-215],[323,400],[159,702],[330,-105],[359,-495],[304,-222],[116,47]],[[34443,7556],[-183,1292],[-253,662],[-167,1391]],[[33814,10876],[291,158],[517,509],[494,16],[487,-155]],[[28255,6686],[151,350],[138,581],[169,234],[265,650]],[[25416,7796],[185,198],[834,244],[770,-181],[424,131],[704,102],[609,203]],[[28942,8493],[315,52],[173,-95],[509,140],[315,182],[336,573],[843,403],[378,123]],[[24451,14982],[64,-1011],[-155,-387],[406,-559],[146,-49],[346,-563],[346,-415],[300,-232]],[[24451,14982],[-767,-82],[-219,-210],[-350,193]],[[23127,16894],[-188,-290],[258,-1426],[-76,-293]],[[23127,16894],[-230,907],[32,382],[-168,1047],[55,641],[-393,570],[-80,250],[101,907],[262,652],[358,263]],[[23071,22528],[142,516],[-22,430],[-179,966],[-22,908]],[[22440,27701],[-142,329],[-167,726]],[[24565,44835],[-165,145],[-697,124],[-288,-86],[-756,48],[-340,132],[-188,-262],[-30,-281],[-529,-360],[-496,442],[-189,429],[-236,279],[-333,-72],[-172,-185],[-120,90]],[[19320,50517],[162,229],[110,532],[512,86],[491,-442],[11,243],[559,340],[315,645]],[[21480,52150],[-132,486],[-332,741],[179,965],[160,590],[-32,546]],[[17838,50233],[307,15],[87,-167],[412,387],[533,-233],[143,282]],[[14740,52372],[120,-237],[437,-344],[454,-464],[312,-116],[290,109],[862,-522],[212,22],[86,-215]],[[14744,52346],[-61,-413],[132,-419],[107,-2041],[-138,-438],[-93,-1223],[464,-188],[439,78],[115,154],[331,56],[282,-594],[49,-502],[-199,-772],[57,-677],[-17,-584],[82,-809],[404,-1112],[-92,-374]],[[14754,52376],[-303,309]],[[14549,53986],[297,-113],[180,326],[204,1138],[365,1627],[168,450]],[[14572,58551],[111,434],[539,64],[222,-241],[34,-395],[163,-707],[131,-303]],[[15763,57414],[154,-36],[567,384]],[[18886,58200],[52,851],[-189,359],[-101,1397]],[[17837,62854],[113,381],[550,1227],[387,516]],[[13545,66599],[71,125],[782,311],[452,-47],[410,55],[473,-208],[1633,-69]],[[14297,58203],[-563,26],[-713,-101],[-417,125],[-296,-44],[-271,-180],[-299,-5],[-518,-280],[-99,-172],[-432,-337],[-632,-388],[-117,-139]],[[10001,56598],[416,168],[864,-389],[223,14],[400,-450],[403,-326],[673,-189],[259,99],[180,-506]],[[16484,57762],[687,100],[533,-229],[346,-52],[518,483],[334,152]],[[8948,65681],[351,186]],[[7851,60904],[101,245],[-31,404],[288,783],[152,615]],[[8361,62951],[196,-5],[107,280],[177,119]],[[8361,62951],[73,925],[127,756]],[[2286,43807],[285,1115],[-2,707],[-307,370],[-60,402],[330,1006],[110,215],[159,657],[20,373],[159,131],[25,368],[133,350],[72,632],[129,195],[30,802]],[[17144,8355],[-264,-162],[-420,150],[-353,-80]],[[13633,1803],[2,880],[-104,348],[-285,493],[39,412],[-278,463],[-193,93],[-48,645],[-388,41],[-39,457],[-214,303]],[[14240,9611],[-298,359],[-260,531],[-335,234],[-177,432],[-238,141],[-70,392]],[[16027,8227],[-725,634],[-210,278],[-521,221],[-331,251]],[[16162,12934],[-79,95]],[[16083,13029],[-355,-73],[-122,-167],[-467,-328],[-107,15],[-278,-431],[-154,93],[2,453],[-232,346],[-195,2],[-47,415],[-309,213],[-657,-128],[-363,-189]],[[11778,19335],[-264,-90],[188,-313],[-122,-504],[418,-1059],[204,-741],[13,-637],[139,-559],[200,64],[169,-306],[29,-402]],[[14449,22077],[-45,-334],[-154,-269],[-117,-511],[-561,-482],[-393,-264],[-6,-334],[-431,-805],[-273,27],[-177,229],[-384,65],[-137,-95]],[[11903,33159],[-396,220],[-324,600],[-399,204],[-243,984],[-465,600],[-283,170],[-258,435]],[[16926,34360],[-574,-117],[-252,131],[-111,205],[-433,-20],[-170,254],[-508,388],[-255,-80],[-393,169],[-234,-281],[-360,-77],[-326,168],[-155,-124],[-499,-1307],[-280,-198],[-165,-400],[-312,93]],[[8443,37288],[663,-679],[429,-237]],[[9203,38100],[-113,714],[0,494],[-172,407],[-103,489],[32,575],[-100,414],[185,614],[265,4],[422,230],[141,269],[-1,909],[213,448],[47,552]],[[1440,28890],[246,391],[59,302],[314,352],[497,224],[-12,339],[312,207],[196,-23],[262,464],[216,14]],[[631,32833],[-245,250],[-35,837],[-227,844],[30,967],[-147,720],[321,1005]],[[332,37472],[180,698],[176,279],[91,634],[223,216],[-79,379],[171,1106],[156,345],[158,94]],[[2375,42401],[17,471],[-147,250]],[[2245,43122],[41,685]],[[1090,35551],[200,136],[99,327],[173,87],[186,586],[407,347],[372,35],[38,-214],[368,-116]],[[8075,26773],[-32,760],[-306,814],[-33,279],[-229,484],[-182,84]],[[7970,18375],[45,-593],[250,-733],[249,-387],[234,-198],[1,-840],[-70,-1092],[232,-857],[-42,-240]],[[8118,26513],[220,-752],[217,-293],[53,-263],[232,-447],[254,-327],[238,-1015],[142,-234],[347,-213],[422,-496],[88,-200]],[[5612,25474],[199,389],[506,-339],[302,-372],[225,90],[487,662],[171,532],[287,260],[286,77]],[[7636,19121],[-381,713],[-170,456],[-497,682],[-235,531],[-213,653],[-296,1463],[-155,358],[-64,559]],[[12752,14788],[150,71],[157,364],[197,21],[110,764],[234,385],[205,118],[59,648],[-15,614],[122,445],[-73,578],[201,405],[215,217],[225,784],[5,477],[192,860],[206,556]],[[11198,22325],[558,259],[473,-434],[228,-24],[488,322],[320,-53],[139,196],[328,-258],[299,-50],[418,-206]],[[16571,18913],[163,76],[127,304],[-94,1079],[-13,805],[-332,794],[6,366],[-220,385],[-38,234],[-350,726],[-55,380]],[[20824,17459],[-42,546],[-159,551],[111,355],[-83,765],[-330,1129],[-27,299],[-397,377],[-98,380],[230,624],[0,349],[349,1110],[217,455],[264,324],[149,870]],[[21072,13346],[-102,763],[-322,1445],[-62,485],[94,553],[190,459],[-46,408]],[[21235,12852],[-158,495]],[[23127,14880],[-215,-346],[-374,-345],[-147,-293],[-331,-23],[-298,-203],[-110,-339],[-220,-331],[-165,5]],[[21350,7822],[89,568],[-1,575],[-301,279],[167,153],[153,541],[-142,1305],[-153,129],[154,569],[-227,683]],[[21080,12601],[181,402]],[[18813,9920],[486,453],[176,316],[192,110],[439,820],[62,393],[446,255],[224,-100],[242,434]],[[17135,8420],[214,334],[189,79],[219,348],[413,149],[244,327],[424,272]],[[14240,9611],[-892,-193],[-1028,-558],[-430,-65],[-206,185],[-106,321],[-629,-445],[-194,-60]],[[15593,2668],[-49,559],[-7,976],[288,380],[-9,793],[172,370],[-56,340],[106,638],[99,221],[78,553],[-27,371]],[[18475,4068],[-183,-422],[23,-391]],[[18904,3573],[-120,506],[-309,-11]],[[16412,91489],[272,446],[186,-63]],[[16415,91505],[128,533]],[[16542,92048],[-219,148]],[[8816,94500],[70,-70]],[[8752,94366],[144,543]],[[9630,77553],[152,138],[-84,500],[88,485],[-69,389],[0,596],[-183,179],[86,293],[-131,726],[43,201],[-275,1178],[-18,447]],[[9239,82685],[229,592],[520,668]],[[12464,86437],[390,308],[327,424]],[[12319,86450],[-294,942],[-130,-2],[-352,642]],[[12321,86449],[-308,29],[-158,-354],[-151,19],[-499,-422]],[[11548,88031],[-86,-248],[-67,-817],[-177,-434],[-9,-802]],[[10106,89205],[-229,79],[-169,-294],[-3,-438],[-85,-180],[-19,-587],[483,-997],[5,-382],[-207,-724],[44,-518]],[[10206,90254],[135,45]],[[9987,90665],[34,-328],[189,-86],[-285,-220],[-102,-270]],[[10088,91727],[130,146],[542,-534],[301,-1218]],[[12461,86440],[82,-1026],[226,-251],[170,60]],[[16870,91872],[323,562],[222,669]],[[17823,93713],[307,83],[-130,326],[419,665],[282,131]],[[18709,94926],[334,138],[244,475]],[[16541,92039],[108,283],[301,1137],[148,-10],[106,-253],[211,-93]],[[15652,90641],[446,75]],[[16152,89348],[85,119],[-126,697],[-10,573]],[[8710,3897],[147,176],[190,498],[341,82],[276,355],[212,471],[305,118],[196,-143],[239,40],[263,229],[-61,524],[160,301]],[[6758,6715],[-90,-195],[76,-1109],[182,-352],[414,-529],[325,-1205]],[[7665,3325],[-299,-422],[-513,-399],[-267,81],[-222,-195],[-140,85],[-223,-217],[-545,-229],[-130,41]],[[5326,2070],[-118,518],[123,519],[-235,101],[-79,796],[118,-19],[321,433],[224,164],[-151,616],[-135,254],[96,172],[-161,577],[175,209]],[[5013,8354],[21,-686],[145,-251],[215,68],[142,-525],[-33,-544]],[[4877,9022],[-149,-372],[299,-274]],[[4909,9317],[-194,60],[-155,763]],[[2694,18224],[-4,-522],[125,-256],[128,-633],[351,-1452],[159,-519]],[[1360,21353],[296,-764],[151,-560],[371,-361]],[[2933,36739],[285,-69],[60,286],[574,275]],[[3711,39482],[5,-383],[-350,-182],[-242,-760]],[[2951,36712],[22,-615],[98,-792],[308,-1560],[110,-877]],[[4278,38979],[-69,-72],[113,-498],[-322,-846]],[[3852,37231],[41,-753],[176,-1087],[-265,-825],[-156,-645],[-47,-954],[-112,-99]],[[7020,37140],[409,27]],[[4278,38979],[437,-407],[382,-761],[308,-156],[231,-259],[684,69],[226,171],[224,-145],[108,93],[147,-449]],[[7118,36071],[137,-579],[-163,-681],[-336,-509],[-232,-928],[315,208],[216,-50],[216,-817],[-87,-706],[-194,-646],[164,-553],[-26,-234],[121,-710],[46,-664]],[[10360,84759],[273,162],[127,467],[297,69],[152,273]],[[3664,98014],[28,266],[-713,290],[-397,10],[-191,109],[-430,-92],[-39,215]],[[4034,97856],[-102,-340]],[[4034,97856],[-471,157]],[[12319,86450],[142,-10]],[[11512,88299],[31,-267]],[[10106,89205],[258,-287],[409,-104],[129,-236],[305,-203],[305,-76]],[[5059,97480],[-155,-69],[-473,90],[-149,295],[-248,60]],[[5059,97480],[-34,46]],[[9166,91966],[-154,-307],[4,-276],[175,-913],[324,-498],[299,-215]],[[9166,91966],[22,-18]],[[6074,96338],[50,-39]],[[6124,96299],[126,210],[-353,621],[-437,346],[-401,4]],[[11513,88297],[152,399],[60,441],[-94,375],[-185,241],[-176,-71]],[[11267,89687],[-113,61],[-93,373]],[[11061,90121],[-471,168],[-246,5]],[[10088,91727],[-16,-474]],[[11568,90404],[-408,-80],[-99,-203]],[[9153,93924],[687,-1140],[196,-434],[52,-623]],[[9166,91966],[-171,319],[-6,269],[195,1121],[-31,249]],[[8886,94430],[267,-506]],[[16870,91872],[-157,-130]],[[98016,9154],[-78,38]],[[8713,3918],[-216,477]],[[18503,4856],[-28,-788]],[[99422,12618],[-642,-421],[-175,-406]],[[18503,4856],[211,59],[103,407]],[[8475,5386],[104,-734],[-82,-257]],[[8402,5643],[73,-257]],[[8397,5655],[5,-12]],[[8252,5238],[92,-588],[153,-255]],[[8245,5753],[152,-98]],[[7669,6246],[-37,-390],[63,-429],[-55,-502],[197,-526]],[[7790,6488],[-121,-242]],[[17010,6430],[320,229],[301,-282],[199,9]],[[7790,6488],[219,2],[236,-737]],[[11596,6552],[101,-453],[232,-241],[197,88]],[[7718,6705],[72,-217]],[[6758,6715],[-409,-212],[-206,62]],[[7718,6705],[483,183]],[[10972,6546],[405,458],[216,-447]],[[7718,6705],[-210,133],[-564,46]],[[6764,6683],[150,250]],[[20572,4464],[-50,456],[229,681],[354,726],[152,682],[169,168]],[[23239,5278],[-178,452],[-7,671],[157,645],[419,74],[65,140]],[[25485,5916],[83,639],[-152,1241]],[[23695,7260],[394,-218],[638,84],[192,281],[497,389]],[[21426,7177],[-76,645]],[[97387,14870],[275,-115],[398,-454],[369,-29],[321,-358],[437,-710],[48,-375],[187,-211]],[[97307,14774],[80,96]],[[16188,7869],[104,-112],[161,-1038],[557,-289]],[[18817,5322],[197,765],[387,109],[106,407],[-12,355],[139,980],[355,-53],[110,232],[565,119],[175,-215],[223,90],[99,-233],[189,-56]],[[11601,6560],[299,14],[82,191],[479,291],[574,86],[362,-90],[692,-58],[302,123],[285,587],[748,185],[116,132],[487,206]],[[40997,9205],[6,-397]],[[40566,8761],[-15,409],[446,35]],[[16073,8237],[-46,-10]],[[16188,7869],[-81,394]],[[16107,8263],[-34,-26]],[[17829,6474],[-415,1146],[-245,472],[-14,206]],[[98122,15559],[-219,-134],[-288,-438],[-228,-117]],[[6673,8675],[-90,-486],[47,-499],[317,-805]],[[10972,6546],[-169,300],[99,441],[-279,261],[-62,387],[155,844]],[[8924,5867],[455,644],[193,-13],[150,652],[308,484],[189,12],[241,626],[287,520]],[[55332,10755],[7,106]],[[55339,10861],[-83,228],[-191,81]],[[4872,9305],[-4,-267]],[[6670,8674],[500,368],[468,59],[87,240],[149,-58],[533,251],[186,-77],[271,-325],[167,322],[176,-75],[255,165],[337,34],[356,-166],[147,179]],[[10543,10058],[-110,-12],[-125,-453]],[[44568,9334],[21,902],[-39,1137],[79,211]],[[37978,11713],[-338,-126],[-399,11]],[[38471,11778],[-493,-65]],[[95992,17828],[-59,-504],[86,-430],[1,-467],[243,-620],[62,-453],[151,-174],[602,-47],[229,-359]],[[10740,10975],[-202,-491],[6,-419]],[[25416,7796],[-154,604],[-48,727],[230,963],[6,769],[153,667]],[[25603,11526],[-289,-8],[-413,-387],[-331,-1040],[-133,-1108],[-159,-313],[-46,-700],[-537,-710]],[[63383,11841],[548,1121],[573,1332]],[[28862,8494],[-492,776],[-373,697],[-396,119],[-210,506],[-329,289],[-531,76],[-197,179],[-338,613]],[[25904,11766],[92,-17]],[[25603,11526],[301,240]],[[49324,13389],[111,-25]],[[49324,13389],[-681,-8],[-364,-96],[-231,-213],[-293,-3],[-1158,-219],[-697,-845],[-445,-111],[-586,-294],[-240,-16]],[[6483,11926],[-12,-645],[-123,-614],[96,-1110],[229,-882]],[[96173,18968],[69,-38]],[[95865,19077],[59,-151],[68,-1098]],[[95865,19077],[308,-109]],[[91710,16520],[-94,336],[19,615],[224,449],[295,330],[13,424]],[[92175,18685],[-8,-11]],[[6483,11926],[-101,351]],[[12862,11700],[-196,446],[3,290]],[[12389,12663],[-216,-444],[-285,-162],[-303,64],[-704,-847],[-144,-300]],[[92436,18890],[-124,-303],[-137,98]],[[6483,11926],[60,529]],[[6382,12277],[-85,365]],[[4909,9317],[271,247],[205,0],[316,434],[531,317],[61,118],[29,724],[-190,371],[-46,404],[211,710]],[[5726,11982],[388,604],[183,56]],[[6543,12455],[-37,206]],[[6506,12661],[-3,19]],[[6297,12642],[206,38]],[[16110,12792],[-162,-496],[-14,-593],[-139,-624],[112,-281],[-26,-399],[149,-642],[74,-1291],[-31,-229]],[[16110,12792],[187,-118],[-56,-574],[79,-621],[464,-784],[-133,-504],[190,-703],[-147,-421],[148,-131],[313,-638]],[[16162,12934],[-52,-142]],[[29982,13383],[84,-96],[74,-561],[157,-389],[-22,-454],[171,-185],[265,-72],[422,-548],[259,-583],[468,-708]],[[63383,11841],[-1,612],[-95,2685],[75,579],[71,38]],[[6297,12642],[-211,482]],[[52909,15090],[39,-180],[479,-668],[322,-367],[929,-1483],[223,-678],[173,-180],[-9,-364]],[[12801,13237],[19,-261],[-151,-540]],[[6503,12680],[-121,530],[-104,113],[-192,-199]],[[35309,14088],[1005,-786],[84,-107],[832,114],[429,140],[55,-119]],[[35309,14088],[190,-725],[54,-859],[-25,-872],[75,-228]],[[10736,10980],[-99,380],[-363,367],[-430,794],[-218,177],[-172,675]],[[21071,13373],[-492,-254],[-190,56],[-178,386]],[[52909,15090],[88,218]],[[12390,12677],[-154,517],[-203,312]],[[95992,17828],[-97,301],[-557,735],[-6,595],[162,640],[-3,309]],[[95491,20408],[78,-62],[111,-824],[185,-445]],[[8868,13428],[-101,-272],[-494,-430],[-511,-106],[-173,131],[-530,118]],[[8872,13437],[117,-110],[286,150],[168,-74]],[[12038,13515],[249,147],[304,-142],[213,-282]],[[12032,13513],[-162,411]],[[9444,13397],[385,-108],[313,332],[382,13],[369,-173],[505,53],[475,390]],[[70623,16984],[-26,564]],[[25996,11749],[482,554],[159,565],[538,241],[392,478],[130,355],[371,148],[59,182],[263,162],[373,-191]],[[29884,14565],[98,-1182]],[[28763,14243],[364,15],[757,307]],[[36515,15511],[-146,-82],[-801,-959],[-259,-382]],[[11870,13924],[461,389],[421,475]],[[56805,14837],[158,636],[72,1929]],[[61527,12668],[-194,326],[-298,284],[-863,555],[-414,430],[-651,1001],[-433,893],[-222,230],[-325,544],[-327,381]],[[16453,12989],[-7,429],[228,18],[11,462],[242,132],[85,207],[72,873],[228,317]],[[57586,17621],[-135,195]],[[57035,17402],[283,183],[121,219]],[[92137,21848],[-57,16]],[[92025,21817],[55,47]],[[5063,15639],[232,-731],[152,-677],[468,-677],[171,-430]],[[49709,17360],[-159,-569],[-212,-1381],[-14,-2021]],[[39143,16658],[15,-1461],[75,-292],[-98,-125],[27,-497],[-15,-1108],[-589,-80],[31,-949],[-118,-368]],[[49709,17360],[150,9]],[[5063,15639],[-213,-127],[-219,219],[-166,-15],[-97,-333],[-131,30],[-530,-603],[-255,39]],[[57445,17817],[-308,99],[-112,167]],[[46596,17328],[-49,-336],[-577,-1880],[-852,-68],[3,-725],[-1034,-1019],[-672,-423],[-284,-115],[-343,-315],[-319,-466]],[[49714,17560],[-5,-200]],[[49714,17560],[139,9]],[[46596,17328],[597,-2],[705,-95],[422,13],[114,183],[1098,10],[182,123]],[[57580,17621],[401,654]],[[61287,18469],[-413,95]],[[60874,18564],[-20,8]],[[70145,19518],[16,105]],[[92025,21817],[-354,377],[-239,33],[-104,-222],[-273,336]],[[91055,22341],[-343,-676],[-115,-578],[-177,-505],[-146,-179],[-98,-556],[26,-535]],[[43966,17354],[191,-100],[1145,-7],[109,53],[647,-38],[538,66]],[[43158,17313],[808,41]],[[85558,21586],[12,23]],[[43158,17313],[-292,-144],[-1541,-133],[-1109,-155],[-349,-119],[-724,-104]],[[70161,19623],[14,226]],[[70175,19849],[19,172]],[[90532,22627],[258,-217],[283,28]],[[95054,23701],[2,-399]],[[66358,19906],[9,53]],[[24451,14982],[82,231],[-262,681],[-230,371],[-289,-207],[-35,343],[-320,670]],[[23127,16894],[270,177]],[[93941,23413],[-176,-413]],[[61287,18469],[314,302],[454,79],[113,189],[445,117],[432,332],[367,177],[618,-31],[75,420]],[[52997,15308],[-12,739],[-59,128],[-386,99],[-3,500],[145,437],[-95,595],[44,193],[6,967],[-63,127]],[[49859,17369],[1104,81],[434,273],[262,372],[59,247],[251,385],[67,-61],[538,427]],[[54140,19412],[353,-471],[492,-245],[138,-286],[581,-45],[570,-294],[751,12]],[[64105,20054],[83,197],[332,198]],[[52574,19093],[407,281],[424,111],[735,-73]],[[94552,24368],[-479,-753]],[[89999,23883],[197,-6],[166,-990],[170,-260]],[[95051,23737],[-274,284],[-109,618]],[[94668,24639],[-116,-271]],[[95097,25078],[34,-43]],[[95131,25035],[-93,-546],[16,-788]],[[68906,20343],[274,672],[237,827]],[[94904,25202],[193,-124]],[[95088,25667],[-150,-467],[-270,-561]],[[38639,19360],[73,-65],[65,-1083],[280,20],[86,-1574]],[[94668,24639],[-300,420],[-159,387]],[[23397,17071],[36,235],[552,334],[387,111],[184,-100],[314,69],[373,369],[603,973],[210,-70],[384,197]],[[30023,19409],[163,-101]],[[30023,19409],[49,-233],[123,-1409],[-90,-1521],[34,-692],[-190,-552],[-65,-437]],[[94209,25446],[-340,127]],[[7642,18922],[328,-547]],[[7642,18922],[-19,-217],[-277,-677],[-172,-626],[-513,-171]],[[92285,25370],[0,402]],[[92181,23801],[77,580],[-82,484],[108,498]],[[92146,21830],[-94,274],[151,1279],[-27,406]],[[2234,19576],[62,-554],[236,-715],[162,-83]],[[7642,18922],[-6,199]],[[61811,22052],[308,-335],[242,-26],[351,114],[848,-53],[5,-329],[818,-158],[161,134],[208,-95],[-105,-644]],[[60854,18572],[77,334],[53,704],[228,205],[310,35],[233,304],[-16,819],[53,900]],[[94748,25951],[-54,-528],[210,-221]],[[95097,25078],[-7,639]],[[49714,17560],[7,1367],[-27,2131]],[[44178,22383],[-366,-26],[-547,-308],[-50,-285],[-262,-503],[-571,-470],[-1070,-192],[-813,-68],[-314,-302],[-245,-27],[-353,-408],[-404,-161],[-277,-227],[-267,-46]],[[11758,19507],[13,-203]],[[95070,26338],[175,-180]],[[95070,26338],[-158,-59],[-164,-328]],[[43966,17354],[-50,1158],[8,849],[161,700],[163,259],[-10,494]],[[94741,25937],[-451,499]],[[94209,25446],[-70,579],[151,411]],[[29503,19791],[-229,518]],[[52899,21875],[119,-711],[4,-662],[-296,-329],[-152,-1080]],[[49853,17569],[220,15],[43,188],[346,516],[455,1450],[348,601],[136,347],[807,764],[359,9],[332,416]],[[31715,20591],[-200,-679],[-446,-107],[-105,-136],[-525,-154],[-253,-207]],[[90092,26352],[92,-297]],[[90184,26055],[-205,-899],[60,-272],[-7,-903],[-88,-230]],[[89915,26204],[-179,-99]],[[89731,26101],[-5,-186]],[[94290,26436],[-451,473]],[[93869,25573],[-78,652],[99,298]],[[94919,27127],[151,-789]],[[94290,26436],[120,298],[257,325],[252,68]],[[58398,22822],[441,-26],[329,-179],[932,-313],[114,-110],[1179,-213],[417,57]],[[57981,18275],[341,23],[197,146],[387,-89],[482,102],[229,-280],[337,-103],[365,402],[408,-5],[127,101]],[[52899,21875],[223,210],[749,250],[163,303]],[[61792,21873],[4,462],[111,183],[56,746]],[[94919,27127],[442,113],[670,369]],[[96031,27609],[403,-14]],[[93488,27275],[351,-366]],[[56836,22955],[842,-11],[720,-122]],[[89732,25937],[-428,-231],[-239,26],[-144,267],[-265,20],[-154,-234],[-211,-27],[-444,152]],[[85570,21609],[253,477],[9,594],[-114,534],[-25,572],[37,908],[112,952],[98,428],[-71,196]],[[90294,27003],[-62,-455]],[[93906,27535],[-67,-626]],[[94838,27678],[81,-551]],[[4704,17724],[44,-392],[315,-1693]],[[90283,26972],[335,67],[134,150]],[[44238,20814],[-60,1569]],[[93488,27275],[-62,429]],[[92482,27604],[-227,-1500],[30,-332]],[[94819,27992],[11,-11]],[[94819,27992],[19,-314]],[[56242,23449],[206,-373],[388,-121]],[[57025,18083],[-413,831],[-131,408],[-21,509],[-195,946],[-32,610],[9,2062]],[[3542,20860],[-127,116],[-381,3],[-244,242],[-612,-526],[-74,-760],[74,-267]],[[92482,27604],[-345,102],[-662,-289],[-211,19]],[[94830,27981],[314,62],[184,188]],[[46823,22810],[20,-2100]],[[26030,21629],[-27,95]],[[44231,22722],[-53,-339]],[[46719,22806],[-344,38],[-1071,-36],[-1073,-86]],[[92482,27604],[218,80],[72,270]],[[26003,21724],[391,259],[238,64],[225,244],[245,-464],[241,-31],[91,285],[334,240],[388,-129],[39,-268],[320,-423],[181,-690],[197,-301],[381,-201]],[[49694,21058],[-47,487],[-210,565],[-5,837],[-107,480]],[[49325,23427],[-346,-94],[-732,-31],[-254,-101],[-7,-168],[-583,-200],[-684,-27]],[[96925,27827],[40,228],[499,934]],[[16571,18913],[-213,36],[-17,392],[-122,225],[-179,694],[-343,-72],[-176,385],[-219,129],[-238,534],[67,313],[-177,529]],[[14954,22078],[-12,17]],[[14942,22095],[-4,5]],[[14938,22100],[13,67]],[[14442,22060],[318,142],[178,-102]],[[14951,22167],[32,142]],[[10331,22273],[-533,-139],[-230,-365],[-221,-76],[-178,-428],[-445,-685],[-702,-729],[-174,-596],[-212,-134]],[[11198,22325],[131,-600],[177,-297],[89,-533],[-51,-850],[214,-538]],[[11120,22405],[78,-80]],[[24114,25035],[244,-229],[67,-792],[327,-874],[48,-409],[156,-191],[317,230],[309,58]],[[56242,23449],[-121,1286]],[[56121,24735],[571,-77]],[[26003,21724],[-106,218],[-92,928],[-223,-42]],[[92772,27954],[15,314],[-179,474],[72,354]],[[11120,22405],[-231,214],[-558,-346]],[[58967,24664],[-69,314],[105,301]],[[55762,24993],[182,-8]],[[55944,24985],[177,-250]],[[56692,24658],[405,65],[587,-2],[683,75],[636,483]],[[37601,25009],[-325,-561],[-339,-437],[-445,-749],[-661,-641],[-597,-670],[-194,-320],[-292,-134],[-323,-295],[-603,-175],[-478,-359],[-427,-42],[-411,289],[-328,-27],[-463,-297]],[[93775,29504],[227,-315],[54,-580],[-132,-587],[-18,-487]],[[94386,29658],[139,-316],[21,-504],[229,-276],[44,-570]],[[92691,29064],[528,484],[556,-44]],[[92680,29096],[34,522]],[[49319,25089],[633,9],[1,-161],[388,-17]],[[49319,25089],[6,-1662]],[[80869,27202],[54,580],[353,582]],[[25582,22828],[47,235],[-78,538],[389,218]],[[81276,28364],[-86,66]],[[93732,30204],[479,-189],[175,-357]],[[93732,30204],[90,-287],[-47,-413]],[[52899,21875],[20,769],[-107,283],[-1,1292],[-50,102],[35,1206]],[[52796,25527],[51,12]],[[50341,24920],[1252,2],[261,495],[350,97],[592,13]],[[70437,27274],[204,-39]],[[94965,30491],[-33,-768]],[[95179,29159],[-66,147],[-148,1185]],[[70641,27235],[87,133]],[[52847,25539],[923,182],[456,-87],[110,-104],[869,-71],[150,-140]],[[81276,28364],[136,419]],[[93732,30204],[-304,262]],[[68022,27336],[753,-78],[11,161],[527,-37]],[[15765,24062],[-398,-186],[-109,-293],[-111,-831],[-164,-443]],[[65472,26971],[-203,96],[-533,-232],[-316,41],[-243,-212]],[[68022,27336],[-301,49]],[[67721,27385],[-961,-175],[-1013,-263]],[[86812,29759],[241,48]],[[71924,26505],[104,1192],[147,302]],[[93787,31066],[175,-705]],[[90868,30673],[-189,-1149],[-50,-868],[91,-602],[32,-865]],[[1249,25274],[108,-441],[-76,-502],[-148,-347],[39,-869],[106,-597],[115,-275],[28,-473],[-61,-417]],[[92680,29096],[-213,203],[-174,825],[-222,46],[-247,637],[-280,94],[-282,226]],[[37546,25716],[55,-707]],[[37222,25511],[324,205]],[[90868,30673],[-516,298]],[[90352,30971],[-89,-514],[-94,-1087],[34,-179],[88,-2187]],[[91262,31127],[-239,-492],[-155,38]],[[3138,23578],[-228,12],[-355,205],[-425,1099]],[[37546,25716],[216,135]],[[85926,30463],[276,-319],[251,-2],[359,-376]],[[85300,30483],[145,186],[308,-25],[166,-165]],[[44073,26353],[42,-1970],[36,2],[27,-1231],[53,-432]],[[46792,26657],[26,-1254],[-34,-450],[39,-2143]],[[46704,26660],[-270,-18],[-200,-198],[-308,-82],[-1589,-85],[-264,76]],[[24114,25035],[-186,46],[-251,404]],[[22921,25335],[703,245]],[[90902,31485],[-34,-812]],[[90352,30971],[-311,184],[-171,264]],[[59003,25279],[326,565],[323,693],[933,988],[126,547],[84,66]],[[46704,26660],[88,-3]],[[46792,26657],[78,379]],[[49753,27269],[38,-1047],[-109,-343],[-363,-790]],[[84751,30970],[36,448],[147,379],[7,528]],[[84751,30970],[3,5]],[[84749,30963],[2,7]],[[84696,30320],[-71,270],[126,380]],[[49753,27269],[-584,-3],[1,-114],[-736,-130],[-1564,14]],[[90352,30971],[53,208],[-33,609]],[[90372,31788],[-274,-65],[-228,-304]],[[32650,25454],[165,367],[516,428],[427,-42],[198,215],[561,-293],[511,7],[607,221],[549,-28],[233,-101],[364,-360],[165,-314],[276,-43]],[[25940,23819],[-32,482],[-134,279],[-95,595],[23,550],[171,382]],[[3817,24356],[248,640],[44,399]],[[70728,27368],[24,774],[170,299],[42,487],[137,136],[98,476]],[[55907,28054],[-119,-740],[-26,-2321]],[[55944,24985],[269,315],[97,814],[215,674],[293,360],[132,389],[162,199],[121,518]],[[30363,26393],[294,-23],[545,154],[386,-278],[49,-201],[480,204],[96,-76],[11,-607],[426,-112]],[[92126,31676],[295,712]],[[89353,31967],[517,-548]],[[89338,31973],[15,-6]],[[54623,27763],[441,246],[431,144],[412,-99]],[[91225,32251],[-32,-813],[69,-311]],[[55907,28054],[-6,155]],[[16768,26114],[394,-454],[650,253],[192,-89],[1191,389]],[[55901,28209],[599,-2],[283,92],[450,-45]],[[91220,32350],[5,-99]],[[16705,26189],[63,-75]],[[57233,28254],[25,186],[211,102]],[[72175,27999],[231,963],[188,301],[142,993]],[[14402,24968],[-183,735],[-11,299],[-164,-107],[-270,214],[-385,-23],[-669,148]],[[59310,28784],[563,-134],[376,-281],[404,-56],[142,-175]],[[57469,28542],[269,-50],[580,62],[345,-112],[92,128],[313,-50],[241,243]],[[90902,31485],[156,822],[-8,205]],[[90726,32473],[-113,-220],[-76,-534]],[[91050,32512],[-17,20]],[[90726,32473],[307,59]],[[91249,32589],[39,-133]],[[91249,32589],[-29,-239]],[[91249,32589],[-199,-77]],[[4028,28115],[178,-306],[164,-3],[174,-356],[266,-106],[-21,-212],[466,-787]],[[5256,26347],[338,-734]],[[90726,32473],[-81,45]],[[72829,30137],[-83,113]],[[90645,32518],[-227,-6]],[[90418,32512],[-46,-724]],[[90418,32512],[-2,29]],[[37762,25851],[359,275],[197,786],[256,455]],[[23677,25485],[-55,230],[-536,1002]],[[72746,30250],[32,129]],[[23086,26717],[-36,45]],[[22988,25367],[97,1131],[-35,264]],[[92655,33013],[841,-772]],[[87695,32277],[569,141],[315,-208],[504,-62],[255,-175]],[[8075,26773],[43,-260]],[[90416,32541],[-43,390]],[[92375,33268],[280,-255]],[[90645,32518],[17,701]],[[90373,32931],[289,288]],[[52658,29006],[636,-368],[562,-53],[93,-352],[674,-470]],[[52847,25539],[15,865],[-216,37],[-15,517],[27,2048]],[[79994,31502],[-194,340]],[[87695,32277],[-133,374]],[[80034,31874],[-234,-32]],[[52649,29120],[9,-114]],[[91033,32532],[32,577],[-60,251]],[[43624,28620],[-66,-952],[53,-890],[462,-425]],[[23050,26762],[-396,540],[-214,399]],[[56478,29667],[334,-25],[395,-802],[262,-298]],[[69319,30790],[12,168]],[[71368,31189],[33,-7]],[[71199,29540],[169,1649]],[[43624,28620],[-545,-27],[-169,81]],[[55901,28209],[-92,1449]],[[71401,31182],[193,92],[370,-310],[386,-552],[396,-162]],[[55809,29658],[275,75],[394,-66]],[[90373,32931],[-123,45],[-148,678]],[[42910,28674],[-617,-158],[-393,229],[-977,-104],[-511,-355],[-94,-279],[-260,-316],[-285,-186],[-1199,-138]],[[90968,33812],[-56,110]],[[93056,32368],[-247,355],[-575,329],[-285,227],[-422,155],[-189,212]],[[69331,30958],[171,17],[234,257],[708,-134],[338,46],[172,144],[414,-99]],[[79800,31842],[-361,569]],[[71401,31182],[99,524]],[[90662,33219],[-99,210],[-31,496]],[[90223,33678],[309,247]],[[92375,33268],[-395,298],[-549,322]],[[88885,33830],[773,-153],[273,-127],[171,104]],[[87730,33688],[661,-196],[162,206],[187,-73],[145,205]],[[87493,32844],[-28,389],[265,455]],[[52870,29917],[664,-155],[1195,33],[656,-38],[424,-99]],[[52649,29120],[224,339],[-3,458]],[[90532,33925],[-38,208]],[[90912,33922],[-418,211]],[[51858,29935],[1012,-18]],[[51858,29935],[468,-676],[323,-139]],[[56482,30326],[-4,-659]],[[4107,25387],[-76,351],[16,519],[-260,556],[151,370],[41,875]],[[72778,30379],[-24,806],[91,850]],[[71500,31706],[797,-28],[548,357]],[[46849,29622],[-11,-619],[32,-1967]],[[43624,28620],[349,106],[418,14],[616,219],[437,402],[764,85],[241,126],[400,50]],[[90938,34336],[-3,22]],[[55770,30359],[39,-701]],[[90697,34426],[238,-68]],[[90455,34382],[240,36]],[[84934,32320],[21,675],[144,174],[58,456]],[[49766,30030],[-23,-410],[57,-1001],[-55,20],[8,-1370]],[[51858,29935],[-1131,-11],[-80,141],[-270,11]],[[50377,30076],[-466,-11]],[[49911,30065],[-145,-35]],[[87730,33688],[-556,279]],[[87493,32844],[-291,610],[-28,513]],[[46849,29622],[1017,57],[129,118],[866,16],[594,246],[311,-29]],[[64853,30441],[265,417],[42,515]],[[74927,29825],[-14,289],[-301,666],[-228,302],[-75,1036],[-184,258]],[[72778,30379],[229,258],[259,462],[415,95],[73,311],[213,226],[27,232]],[[73771,32052],[354,324]],[[74249,32472],[-124,-96]],[[52870,29917],[-9,531]],[[62958,31366],[539,-109],[182,80],[412,-70],[195,90],[874,16]],[[62537,30017],[86,503],[335,846]],[[65178,31586],[-18,-213]],[[65369,31588],[-191,-2]],[[18754,27641],[423,-1414]],[[89816,34645],[338,-165],[340,-347]],[[90102,33654],[-171,748],[-115,243]],[[717,28592],[45,-817],[149,-316]],[[914,27460],[217,-410]],[[74125,32376],[-170,343]],[[90496,34881],[-79,-227],[77,-521]],[[90421,34881],[75,0]],[[90421,34881],[-342,70],[-263,-306]],[[90496,34881],[28,170],[349,301],[170,353],[12,370]],[[88803,34910],[445,-26],[568,-239]],[[72845,32035],[94,837]],[[87174,33967],[-384,288],[-214,-59],[-567,373],[-309,-141]],[[73065,33152],[539,-140],[351,-293]],[[72830,32962],[235,190]],[[12539,29280],[13,-1172],[-57,-671],[225,-1203]],[[71720,33224],[532,-186],[578,-76]],[[71500,31706],[114,473],[106,1045]],[[71190,31575],[-231,824],[-195,348],[-3,516]],[[87730,33688],[154,250],[14,741],[331,777]],[[88229,35456],[5,12]],[[88229,35456],[244,-1],[330,-545]],[[22477,29965],[-6,-664],[-238,-134],[-46,-382]],[[85700,34428],[-202,-45],[-294,246],[-548,63],[-462,639],[-110,-7]],[[69331,30958],[197,2282],[68,537]],[[90421,34881],[-108,379],[-42,653],[-131,408]],[[91055,36075],[-556,261],[-359,-15]],[[82874,35312],[614,166],[336,-335],[260,181]],[[65444,33402],[-86,-1205],[11,-609]],[[65178,31586],[-387,382],[-396,902],[-782,614]],[[62958,31366],[62,276],[252,134],[186,552],[113,587],[42,569]],[[69596,33777],[2,339]],[[38360,31643],[21,-706],[-260,-882],[-130,-151],[21,-557],[-170,-143],[-55,-836],[116,-363],[144,-69]],[[63613,33484],[-21,145]],[[89965,36772],[175,-451]],[[89786,36754],[179,18]],[[32850,31428],[-540,-549],[-145,-256],[-443,-115],[-476,-272],[-205,-276],[-394,-83],[-506,-398],[-259,-114]],[[42910,28674],[42,515],[-152,661],[40,1067],[101,1],[110,1208]],[[68310,34392],[117,-181],[546,-144],[572,-355]],[[16926,34360],[289,-459],[71,-356],[173,-254],[35,-1165],[91,-116],[288,-974],[24,-439],[240,-330],[165,-1267],[200,63],[76,-361]],[[73955,32719],[-119,406],[40,250],[-173,513],[-204,1063]],[[88234,35468],[-691,224],[-388,449],[-567,485]],[[87174,33967],[85,606],[-183,442],[-191,146],[-267,655],[92,156],[-122,654]],[[73226,35083],[-3,-537],[-158,-1394]],[[88977,37062],[375,-361],[434,53]],[[88234,35468],[244,330],[499,1264]],[[79077,35863],[635,-249]],[[61538,32045],[-63,266],[-340,687],[-308,109],[-126,444],[-2,391]],[[3697,31150],[-167,10]],[[73499,34951],[-69,273]],[[73430,35224],[-204,-141]],[[60656,33946],[-24,9]],[[60632,33955],[-40,17]],[[43051,32126],[6,499]],[[78804,36030],[273,-167]],[[78396,33504],[157,479],[170,1849],[81,198]],[[38623,32397],[-4,-453],[-259,-301]],[[38700,32406],[-77,-9]],[[76712,35846],[4,-363],[500,-86]],[[12075,31504],[192,-1134],[183,-438],[89,-652]],[[77216,35397],[83,600]],[[43057,32625],[83,235]],[[76712,35846],[436,195],[151,-44]],[[63592,33629],[94,955]],[[60592,33972],[-185,205],[-404,34],[-249,-134],[-366,96]],[[78804,36030],[-270,233]],[[77299,35997],[925,-120],[310,386]],[[73502,35672],[7,5]],[[70761,33263],[-1,876],[127,587],[3,678]],[[36154,32299],[-345,-137],[-140,68],[-419,-69],[-323,316],[-124,8]],[[63589,34703],[97,-119]],[[88977,37062],[-67,363],[441,336]],[[70890,35404],[-2,96]],[[63248,34513],[156,212],[185,-22]],[[70870,35510],[18,-10]],[[63248,34513],[-581,78],[-87,-146],[-341,9],[-108,-117],[-476,41],[-259,201],[-410,-508],[-330,-125]],[[89420,37854],[151,-68],[394,-1014]],[[89351,37761],[69,93]],[[36842,32726],[-224,17],[-464,-444]],[[78534,36263],[204,248]],[[89420,37854],[14,57]],[[43057,32625],[-439,-318],[-141,83],[-819,-171],[-88,73],[-650,-74],[-204,324],[-229,119],[-439,-45],[-267,255],[-507,134],[-369,-514],[-205,-85]],[[89434,37911],[18,77]],[[73509,35677],[698,396],[611,140],[411,10],[493,-159],[394,-309],[596,91]],[[73455,35641],[47,31]],[[69598,34116],[37,678],[-46,842]],[[71247,35847],[835,-11],[943,-243],[430,48]],[[70888,35500],[359,347]],[[22095,33485],[73,-206],[73,-903],[-24,-301],[114,-1022],[158,-538],[-12,-550]],[[86044,37651],[570,-179],[647,-360],[746,155],[416,189],[554,-394]],[[70870,35510],[-373,-20],[-913,208]],[[69589,35636],[-5,62]],[[65687,35310],[-243,-1908]],[[65687,35310],[-322,-186],[-471,14],[-835,-497],[-373,-57]],[[78738,36511],[446,384]],[[86588,36626],[-548,689],[-156,-19],[-307,450]],[[55440,34480],[-3,-384],[329,-950],[64,-764],[-61,-643],[1,-1380]],[[78534,36263],[-835,210],[-341,261]],[[77299,35997],[59,737]],[[85577,37746],[186,51],[281,-146]],[[54849,34503],[591,-23]],[[32850,31428],[-318,344],[-312,466],[-330,138],[-439,-27],[-242,443],[-445,153]],[[52861,30448],[5,262],[-207,71],[-60,1871],[38,1770]],[[83140,37651],[258,-1067],[245,-502]],[[69584,35698],[-1106,239]],[[50321,34376],[-627,-1144],[-9,-593],[48,-968],[-17,-862],[50,-779]],[[65687,35310],[348,250],[88,279]],[[52637,34422],[14,216]],[[65573,35921],[114,-611]],[[50451,34579],[-130,-203]],[[68478,35937],[12,235],[171,156]],[[79712,35614],[148,672],[94,946],[98,405]],[[79184,36895],[541,351],[327,391]],[[46391,34409],[42,-1520],[-94,-85],[-16,-493]],[[3530,31160],[16,743],[-84,524],[27,441]],[[88789,38850],[311,-295],[334,-644]],[[88734,38835],[55,15]],[[63589,34703],[57,1230]],[[65573,35921],[100,223]],[[88536,38903],[198,-68]],[[65754,36248],[369,-409]],[[65754,36248],[-81,-104]],[[90662,39250],[18,-450],[312,-871],[32,-525],[-67,-592],[98,-737]],[[89452,37988],[128,259],[794,685],[288,318]],[[63646,35933],[616,-67],[572,348],[584,-144],[155,-149]],[[90662,39250],[240,120]],[[77358,36734],[311,1030]],[[88536,38903],[-231,266]],[[66123,35839],[16,282],[233,461]],[[35023,34184],[-43,-271],[101,-742],[-110,-491],[-168,-195]],[[46399,34450],[333,472],[797,-51],[588,18],[490,-48],[556,-217],[5,-168],[832,-22],[451,145]],[[66997,36796],[-211,45]],[[66372,36582],[414,259]],[[60870,36356],[-183,-503],[-111,-1273],[16,-608]],[[73465,37680],[-39,-707],[29,-645],[-59,-526],[59,-161]],[[66491,36978],[295,-137]],[[66389,36952],[102,26]],[[65996,36946],[393,6]],[[65996,36946],[92,-202],[-334,-496]],[[36217,34723],[108,-425],[-81,-566],[12,-654],[-103,-272],[1,-507]],[[68694,37421],[-96,-351],[63,-742]],[[66770,37222],[16,-381]],[[66770,37222],[366,-40],[1107,196],[451,43]],[[75817,38231],[684,-227],[692,-165],[214,99],[262,-174]],[[83683,39275],[85,-163],[310,-156],[316,-302],[178,-324],[1005,-584]],[[75817,38231],[-488,83]],[[36197,34706],[266,314]],[[80052,37637],[409,178],[442,681],[38,352],[173,247]],[[70870,35510],[-55,553],[48,656],[-8,674],[-99,514]],[[75329,38314],[-447,10],[-62,-82],[-483,98]],[[65996,36946],[-799,419]],[[65197,37365],[26,-586],[450,-635]],[[70756,37907],[-278,57],[-556,-112],[-467,-293],[-190,45],[-571,-183]],[[88745,40234],[-87,-198],[-122,-1133]],[[71053,38125],[382,153]],[[82227,39640],[-61,-196],[95,-507],[299,-842],[-38,-332],[102,-125],[233,89],[283,-76]],[[81114,39095],[453,313],[143,-116],[517,348]],[[31058,35241],[-248,-712],[-145,-1060],[99,-524]],[[85577,37746],[-536,790],[-218,584],[-103,892]],[[60918,37426],[361,14]],[[60918,37426],[-48,-1070]],[[25055,34080],[429,36],[143,-74],[173,205],[309,897]],[[58988,37226],[441,95],[859,5],[630,100]],[[80123,38549],[-27,652],[-130,335]],[[74337,38340],[-1330,284],[-72,103]],[[72935,38727],[434,-674],[96,-373]],[[71435,38278],[414,349],[495,-28],[54,112],[537,16]],[[79966,39536],[106,82]],[[81114,39095],[-497,589],[-371,-133],[-174,67]],[[61339,37617],[109,-31],[266,-580],[477,-372],[271,16]],[[61279,37440],[60,177]],[[89071,40799],[-326,-565]],[[83683,39275],[61,154],[-50,489],[214,335]],[[87685,39688],[-92,282],[-282,363],[-160,364]],[[86861,40524],[-167,-781],[-16,-353]],[[83908,40253],[13,57]],[[65197,37365],[-438,476],[-1091,186]],[[63646,35933],[52,697],[-82,260],[52,1137]],[[84720,40012],[-45,461]],[[84675,40473],[-118,-136],[-383,117],[-245,-132]],[[84675,40473],[-181,186],[-185,889],[-50,737],[-85,445],[-148,306]],[[61353,37973],[-14,-356]],[[63668,38027],[-298,27],[-216,-111],[-837,158],[-259,-95],[-338,40],[-367,-73]],[[79095,40257],[181,28],[429,-365],[261,-384]],[[22095,33485],[200,472],[-85,1653]],[[25055,34080],[-298,1265],[-192,341]],[[87151,40697],[-53,321]],[[55487,37587],[-35,-1402],[-12,-1705]],[[87098,41018],[-30,99]],[[26109,35144],[-543,479],[-685,182],[-316,-119]],[[24565,35686],[-187,118],[-409,7]],[[55465,37763],[22,-176]],[[78738,36511],[97,919],[323,477]],[[87049,41206],[-54,39]],[[86737,41029],[-264,138],[-775,-132],[-272,38]],[[84675,40473],[242,-33],[405,596],[104,37]],[[55115,37844],[350,-81]],[[38700,32406],[57,634],[-72,1275],[190,2],[-11,904],[-530,864],[-67,229],[95,444]],[[16926,34360],[332,71],[377,250],[323,719],[147,190],[171,555],[114,96]],[[89970,41999],[-66,169]],[[89071,40799],[301,926],[287,315],[245,128]],[[87967,41909],[-273,118]],[[52997,38252],[1271,-9],[732,-300],[115,-99]],[[52651,34638],[2,458],[322,-25],[132,240],[29,1327],[-91,2],[-4,674],[85,572],[-101,346]],[[51878,38266],[1119,-14]],[[77669,37764],[-147,863],[95,311],[-117,562],[181,1370]],[[23969,35811],[-329,449],[-491,427]],[[23149,36687],[-149,-422],[-217,25],[-209,-438],[-270,-52],[-94,-190]],[[80072,39618],[144,866],[499,1291]],[[51298,38268],[580,-2]],[[89904,42168],[151,99],[80,304]],[[87509,41959],[-357,214]],[[87191,42140],[-220,-646],[24,-249]],[[7118,36071],[30,486],[256,412]],[[90135,42571],[17,50]],[[75817,38231],[-268,831],[-339,669],[-151,544],[-34,764]],[[74919,41042],[-113,-521],[-119,-1234],[-81,-337],[-220,-219],[-49,-391]],[[85426,41073],[222,302],[481,929]],[[22210,35610],[-14,277],[164,776],[-126,576]],[[61423,39751],[-70,-1778]],[[87156,42172],[-107,145],[-376,150],[-91,147]],[[86766,41771],[-184,843]],[[86582,42614],[-132,77]],[[22234,37239],[65,209]],[[86069,42909],[381,-218]],[[51878,38266],[-65,263],[-376,582]],[[51288,38275],[16,351],[133,485]],[[23149,36687],[50,539],[-244,341]],[[86450,42691],[-247,541]],[[22955,37567],[-376,-188],[-280,69]],[[35123,38154],[-46,-1186],[248,-1020],[-228,-535],[-74,-1229]],[[7427,37159],[190,161],[282,-117],[441,-19],[103,104]],[[51437,39111],[-88,122]],[[51292,39247],[57,-14]],[[90268,43445],[-133,54]],[[75025,41039],[43,605]],[[88350,43300],[-227,-1319],[-156,-72]],[[75178,41715],[327,-140],[867,-156],[535,-200],[184,-146],[590,-203]],[[75178,41715],[-110,-71]],[[37353,35808],[-63,1230],[25,321],[-67,1122]],[[89331,43531],[-220,-1092],[-8,-537],[-75,-472],[43,-631]],[[88349,43390],[1,-90]],[[35072,38539],[51,-385]],[[75011,41663],[-25,230]],[[60054,40535],[207,-146],[423,-50],[163,-312],[407,-50],[169,-226]],[[90135,43499],[-257,208],[-242,-5],[-214,171]],[[89422,43873],[-91,-342]],[[89422,43873],[-274,-188],[-798,-288]],[[84026,43036],[397,252],[919,118]],[[85342,43406],[228,-9],[128,-219],[371,-269]],[[63022,41009],[-282,-356],[-496,-408],[-785,-281],[-36,-213]],[[9203,38100],[80,-602],[252,-1126]],[[8952,37869],[-296,-414],[-213,-167]],[[34657,41244],[73,-1319],[342,-1386]],[[80291,43019],[71,-602],[353,-642]],[[80291,43019],[-177,33]],[[78031,43648],[80,-628],[-137,-841],[-237,-489],[-56,-820]],[[63022,41009],[573,-3],[278,232]],[[63873,41238],[-1,115]],[[75068,41644],[-520,10],[-302,214],[-424,109],[-89,175],[-368,89],[-223,161]],[[72880,42440],[18,439]],[[7404,36969],[11,715],[-169,225],[-46,825]],[[46791,40429],[30,-714],[-141,-444],[12,-735],[-158,-324],[14,-1969],[-166,-264],[9,-1570]],[[73142,42402],[-773,254],[-619,111]],[[66491,36978],[76,1215],[119,1101],[49,915],[114,146],[50,759],[81,476],[193,176],[37,632]],[[49216,40850],[513,-20],[175,-247],[298,-18],[358,-422],[86,-310],[259,-323],[72,-338],[315,75]],[[77902,43632],[129,16]],[[55465,37763],[569,-38],[258,218],[217,380],[322,207],[580,636],[222,47],[30,1775],[-175,10],[-15,575]],[[48213,40834],[1003,16]],[[66690,42513],[520,-115]],[[89422,43873],[-176,359],[-15,600],[323,172],[55,230]],[[68694,37421],[175,1097],[210,773],[220,3304],[-39,230]],[[46771,40841],[1442,-7]],[[46791,40429],[-20,412]],[[69459,42962],[58,-247],[729,-546],[32,-468],[-87,-1574],[309,-1012],[-13,-222],[163,-838],[106,-148]],[[69260,42825],[199,137]],[[65304,42579],[137,-384],[206,-1497],[32,-838],[246,-1028],[-80,-491],[142,-744],[9,-651]],[[63900,41600],[489,348],[195,261],[624,254],[96,116]],[[65304,42579],[212,67],[824,-138],[350,5]],[[76968,43677],[255,8],[234,293],[240,-338],[205,-8]],[[54915,41759],[148,-322],[63,-698],[-11,-2895]],[[22231,37266],[-71,946],[-64,264],[252,423],[128,725],[-80,239]],[[66770,37222],[194,1774],[489,1230],[383,640],[225,596],[175,184],[465,903],[363,593]],[[4278,38979],[-515,575]],[[71750,42767],[-305,-25],[-936,189],[-115,116],[-579,127],[-320,142]],[[69459,42962],[58,343]],[[67210,42398],[726,108],[609,591],[214,7],[312,248]],[[63230,42698],[165,-25],[505,-1073]],[[63022,41009],[106,1267],[102,422]],[[69495,43316],[-168,89]],[[69064,43142],[263,263]],[[53025,38232],[-66,351],[33,2591],[-98,9],[-12,628]],[[51349,39233],[72,67],[71,1005],[-34,1000],[280,484]],[[48205,41563],[861,-68],[9,-445],[141,-200]],[[48213,40834],[-8,729]],[[22955,37567],[70,504],[-5,484],[150,360],[57,453],[240,410],[636,139],[926,451],[313,-103],[177,-368],[414,90],[261,-76],[189,-414],[214,341],[152,62],[271,394],[197,98]],[[22152,40326],[244,-463]],[[37999,40808],[260,18],[112,-143],[269,24],[918,474],[502,99]],[[48205,41563],[-448,41],[-142,145],[-829,-37],[-42,53]],[[46771,40841],[-27,924]],[[1481,40440],[-23,-643],[-116,-321],[84,-630],[-177,-651],[47,-295],[-156,-368],[7,-686],[-76,-134],[-53,-595],[74,-543]],[[1092,35574],[-120,-317],[35,-639],[-91,-339],[-20,-1003],[-265,-443]],[[631,32833],[-72,-486],[171,-658],[6,-238],[-158,-590],[-40,-400]],[[7346,40522],[-40,-636],[-203,-592],[97,-560]],[[3763,39554],[-74,-123],[-436,-23],[-612,521],[-159,302],[-352,291]],[[1494,40481],[281,-245],[355,286]],[[2130,40522],[-59,255]],[[75284,45150],[75,-501],[-56,-227],[57,-469],[-95,-225],[-5,-851],[-220,-920]],[[2071,40777],[-3,34]],[[69537,43517],[120,247],[767,827],[159,231],[295,124],[430,59],[587,-34]],[[62961,44203],[-22,-431],[296,-803],[-5,-271]],[[71895,44971],[226,189]],[[59772,43701],[-218,314]],[[59554,44015],[-158,-28]],[[74983,41901],[-202,323],[-474,565],[-538,759],[-812,783],[-368,1012]],[[72886,43423],[-119,347],[-61,726],[-81,138],[-104,633],[-77,63]],[[72121,45160],[63,-32]],[[72184,45128],[260,202]],[[62875,44456],[86,-253]],[[42460,39435],[-10,1229],[205,543],[-48,524],[-18,1215]],[[42589,42946],[60,18]],[[1423,41306],[60,-872]],[[72589,45343],[-76,212]],[[72444,45330],[43,175]],[[83960,46968],[162,-392],[260,-1074],[209,-400],[240,-107],[305,-527],[-24,-661],[275,-387]],[[83039,46864],[138,-575],[-25,-364],[167,-515],[184,-851],[50,-565],[327,-907],[146,-51]],[[2068,40811],[-229,415]],[[72513,45555],[-27,114]],[[72483,45499],[41,26]],[[67061,45133],[709,-240],[297,-344],[163,-25],[425,-297],[518,-654],[156,-39]],[[67061,45133],[-220,11]],[[83960,46968],[-600,78],[-321,-182]],[[1539,41753],[-101,-278]],[[52882,41811],[36,661],[274,42],[-10,1554],[54,458]],[[51738,41789],[322,1119],[553,885],[549,599]],[[48205,41563],[12,1898],[-73,552]],[[16181,41478],[284,-660],[254,-1594],[318,-719],[-35,-520],[-150,-778],[-165,-590],[-78,-962],[216,-502],[101,-793]],[[57473,41573],[-69,599],[24,1194],[185,402],[38,1072]],[[42693,43732],[-44,-768]],[[86222,47994],[-723,-312],[-562,-641],[-676,-190],[-301,117]],[[72486,45669],[-159,268],[59,472]],[[17592,42669],[-225,-130],[-288,-461],[-208,321],[-265,89]],[[2375,42401],[-272,-93]],[[2103,42308],[-90,-342],[-224,-360]],[[57651,44840],[382,-23],[648,276],[365,15],[119,-117],[475,-151]],[[78167,47129],[2,-7]],[[78031,43648],[-18,757],[-222,525],[-64,330],[92,415],[129,140],[135,1102],[84,212]],[[86222,47994],[209,190],[207,-45]],[[3066,42530],[-349,15],[-342,-144]],[[35248,41317],[-75,295],[-246,309],[-21,852],[-162,525]],[[34528,43510],[9,9]],[[70095,46503],[398,-245],[315,-314],[191,-61],[576,100],[173,-93],[179,-313]],[[69327,43412],[35,232],[434,1266],[48,1065],[232,396]],[[34516,43543],[21,-24]],[[34528,43510],[-12,33]],[[34516,43543],[146,-1851],[-5,-448]],[[3711,39482],[-101,1232],[32,1198],[38,311],[-92,317]],[[3468,42610],[-402,-80]],[[3763,39554],[185,1390],[-142,927],[-17,756]],[[54410,44977],[208,-851],[-2,-391],[145,-404],[37,-838],[117,-734]],[[54410,44977],[405,55],[691,-39],[82,-138],[805,-69],[229,56],[893,-48],[136,46]],[[53353,45017],[455,-57],[602,17]],[[53162,44392],[159,247],[32,378]],[[53353,45017],[-148,10]],[[22152,40326],[-690,-49],[-163,847],[-240,195],[-230,519],[-474,547],[-238,-39],[-359,207],[-529,452],[-371,181],[-214,-311],[-392,-96],[-238,87],[-422,-197]],[[34408,43893],[108,-350]],[[82554,48182],[208,-484],[277,-834]],[[33259,43570],[417,101],[197,207],[535,15]],[[75465,46324],[122,77],[225,534],[252,139],[238,436]],[[76314,47542],[293,-94],[394,-282],[272,-29],[383,-193],[246,263],[265,-78]],[[66841,45144],[-303,83],[-1256,1177],[-203,94]],[[65079,46498],[-116,224]],[[88667,49501],[-409,-286],[-153,-288],[-532,-647],[-329,-217],[-606,76]],[[88796,49699],[-129,-198]],[[31768,43903],[322,-26],[212,512],[186,-451],[433,-199],[191,58],[147,-227]],[[89261,48845],[-183,490],[-7,403]],[[68884,47083],[791,-163],[252,-334],[163,-68]],[[68891,47401],[-120,-1074],[-86,-380],[94,-783],[375,-787],[175,-843]],[[89071,49738],[-275,-39]],[[2091,43833],[195,-26]],[[2091,43833],[-243,-185],[-162,-389]],[[1686,43259],[-213,-503],[-98,-775],[164,-228]],[[86642,49599],[29,-499],[-144,-609],[111,-352]],[[86490,49446],[152,153]],[[89374,49906],[-404,150]],[[88796,49699],[174,357]],[[7722,44162],[-65,-778],[17,-990],[-131,-393],[-207,-249],[77,-485],[-69,-202],[2,-543]],[[27659,45014],[-77,25],[-477,-587],[-255,115]],[[31768,43903],[-457,-496],[-217,172],[-466,-52],[-308,269],[-530,-121],[-626,74],[-333,145],[-329,362],[-338,857],[-505,-99]],[[88748,50496],[231,-216],[-9,-224]],[[69020,48243],[-18,-547],[-111,-295]],[[69020,48243],[-541,-152],[-125,-212]],[[79162,49415],[671,-408],[342,-547],[556,423],[233,-137]],[[78989,48885],[173,530]],[[26850,44567],[-117,-5],[-174,303],[-444,535],[-576,-234],[-185,46]],[[34537,43519],[442,384],[513,67],[551,246],[128,200],[397,1375],[208,176]],[[88644,50413],[-413,392]],[[36776,45967],[234,57]],[[20026,45278],[81,-485],[543,-755],[399,-885],[256,-328],[105,-492],[175,-200],[204,-589],[172,-207],[1,-384],[190,-627]],[[37010,46024],[1318,58],[1022,126],[523,-108]],[[53801,47237],[248,-466],[263,-1014],[98,-780]],[[53801,47237],[-137,-179],[-105,-424],[-180,-307],[-26,-1310]],[[69020,48243],[418,368],[806,389]],[[72792,49327],[-273,-1677],[21,-324],[-154,-917]],[[53801,47237],[-20,311]],[[64963,46722],[-708,560],[-267,4],[-398,445],[-533,410],[-511,196]],[[62875,44456],[85,1941],[-179,608],[25,445],[-205,488],[-55,399]],[[70244,49000],[110,117]],[[53720,47563],[61,-15]],[[70076,46371],[110,409],[-7,477],[110,409],[153,1483]],[[72930,49436],[-138,-109]],[[88748,50496],[34,803]],[[53721,47651],[60,-103]],[[73526,49558],[205,-212],[1020,-748],[89,-318],[288,-232],[452,-125],[243,-217],[491,-164]],[[70503,49173],[640,-622],[386,-1083],[421,-344],[436,-715]],[[70442,49149],[10,94]],[[70354,49117],[94,65]],[[72990,49527],[-60,-91]],[[72792,49327],[-173,-144],[-386,12],[-421,173],[-686,-121],[-531,12],[-148,-83]],[[42041,46839],[29,-924],[266,-121],[371,-316],[43,-1505],[-57,-241]],[[39873,46100],[1213,116],[154,-122],[519,45],[282,700]],[[59640,44840],[17,561],[232,414],[164,488],[334,311],[143,482],[-16,502],[308,718]],[[58051,47893],[919,40],[132,86],[453,7],[754,245],[134,-72],[379,117]],[[73526,49558],[-536,-31]],[[26086,90235],[-305,217]],[[56359,47971],[-778,-88],[-1164,-68],[-455,-89],[-181,-178]],[[58051,47893],[-416,-9],[-130,149],[-669,57],[-477,-119]],[[48144,44013],[-6,540],[-98,748],[-37,2148]],[[26228,90289],[-142,-54]],[[26228,90289],[-4,47]],[[61068,48640],[-246,-324]],[[51638,47849],[185,-1]],[[53205,45027],[-528,-167],[-255,-213],[-809,33]],[[52554,47969],[688,-426]],[[51823,47848],[731,121]],[[62546,48337],[-11,129],[-416,401]],[[62051,48880],[68,-13]],[[62022,48883],[29,-3]],[[62022,48883],[-94,-235],[-389,-173]],[[61539,48475],[-205,-157],[-512,-2]],[[26351,90416],[-123,-127]],[[61068,48640],[77,142],[396,113],[481,-12]],[[26086,90235],[-184,-692],[206,-391],[228,566],[165,586]],[[26351,90416],[150,-112]],[[85444,51538],[392,-484],[212,-402],[209,-575],[144,-589],[89,-42]],[[26501,90304],[115,-252]],[[76236,50358],[-191,110],[-426,-296]],[[73526,49558],[225,152],[295,452],[242,-91],[365,307],[272,25],[167,-158],[491,17],[36,-90]],[[85444,51538],[-33,175]],[[86489,51431],[-231,-156],[-296,2],[-21,165],[-268,212],[-262,59]],[[79512,51120],[82,-396],[-227,-781]],[[7707,44107],[181,808],[518,730],[15,416],[274,244]],[[79482,51217],[30,-97]],[[26351,90416],[213,287]],[[34408,43893],[166,147],[93,394],[-2,848],[-92,359],[59,369],[-38,374],[64,355],[-75,668]],[[67277,50007],[364,-147],[798,-113],[301,-196],[1187,-260],[317,-291]],[[62119,48867],[773,253],[422,369],[271,119],[485,-21],[405,170]],[[48003,47449],[42,940]],[[67082,50056],[-128,-634],[58,-1250],[106,-96]],[[67082,50056],[195,-49]],[[66256,49966],[510,168],[316,-78]],[[1734,45015],[252,105],[129,527],[-69,453],[-179,426],[-167,158]],[[42041,46839],[122,321],[428,34],[502,138],[250,261],[337,17],[1110,480],[214,181],[792,95]],[[45796,48366],[734,100],[524,13],[301,-111],[690,21]],[[64530,50015],[1125,-140],[601,91]],[[64530,50015],[-55,-258]],[[27659,45014],[166,362],[319,939],[160,251],[241,35],[129,762],[142,417]],[[54211,49423],[-200,-400],[-139,-511],[-91,-964]],[[32060,46468],[169,885],[-49,828]],[[80002,52297],[274,-296],[108,-329],[492,-244],[732,-1175]],[[52497,49599],[68,-244],[334,-296],[401,-494],[421,-914]],[[52554,47969],[-63,224],[6,1406]],[[88782,51299],[124,497],[302,307],[-171,374],[-194,148],[-128,491],[-259,264]],[[79482,51217],[90,128],[-53,485],[210,515]],[[67141,50990],[-59,-934]],[[79729,52345],[273,-48]],[[72734,49604],[-216,41],[-418,480],[-446,388],[-325,99],[-212,344],[-313,130],[-373,288]],[[70431,51374],[202,-599],[-46,-1005],[-135,-527]],[[67126,51081],[15,-91]],[[83112,49830],[-12,72]],[[83100,49902],[50,652],[-240,575],[-16,678],[150,650],[-45,384],[140,63]],[[67102,51240],[24,-159]],[[28816,47780],[251,-12],[177,226],[387,285],[378,-289],[155,43],[543,-179],[780,738],[247,-521],[406,124]],[[82928,53128],[211,-224]],[[67102,51240],[38,212]],[[50674,50235],[62,-68],[893,13],[376,-151],[492,-430]],[[50674,50235],[340,-763],[300,-811],[509,-813]],[[34583,47407],[215,629],[119,784],[-38,660]],[[33485,48543],[179,28],[827,682],[394,241]],[[48063,50343],[16,-1547],[-34,-407]],[[45796,48366],[-54,964],[127,378],[35,603]],[[45904,50311],[490,89],[570,23],[165,-109],[934,29]],[[72990,49527],[289,904],[57,608],[24,1037],[275,559],[225,262]],[[80512,53317],[148,352]],[[74848,52598],[-277,237],[-364,156],[-347,-94]],[[86210,54387],[301,-2337]],[[80487,53706],[25,-389]],[[25865,49528],[67,-1569],[-104,-494],[76,-113],[-180,-641],[-242,-459],[-143,-743],[15,-297]],[[70431,51374],[-614,918],[-436,384],[-700,211]],[[25865,49528],[251,104],[571,527],[202,876],[119,216],[129,614]],[[36865,46013],[420,690],[555,1057],[399,344],[184,48]],[[38423,50646],[199,29],[-8,189]],[[77722,54109],[-141,163]],[[17838,50233],[295,-380],[243,-466],[87,-428],[276,-353],[156,-422],[424,-284],[515,-981],[-6,-907],[156,-354],[42,-380]],[[52249,52143],[-9,-568],[301,-510],[-44,-1466]],[[42041,46839],[30,253],[-50,1275],[-120,680],[-38,1357],[10,996]],[[83708,54809],[-180,-11],[-979,389]],[[82549,55187],[-9,-203],[165,-717],[-20,-214],[243,-925]],[[82549,55187],[-68,73]],[[41873,51400],[-4,142]],[[70431,51374],[-37,380],[18,1207],[-101,642],[-240,332]],[[81645,55225],[204,-109],[632,144]],[[80875,54004],[267,470],[347,381],[156,370]],[[53752,52449],[548,6]],[[52249,52143],[442,1],[440,230],[621,75]],[[86210,54387],[-211,50],[-866,1120],[-289,-170],[-199,155]],[[83708,54809],[364,274],[75,198],[157,-94],[341,355]],[[84645,55542],[14,147]],[[68681,52887],[-557,519],[-629,330]],[[67140,51452],[112,405],[131,904],[-1,380],[113,595]],[[49513,52211],[666,-959],[495,-1017]],[[72903,53281],[-457,80],[-524,307],[-273,-107],[-622,464],[-488,83],[-97,105],[-371,-278]],[[84659,55689],[286,-29],[39,188]],[[17513,50605],[325,-372]],[[49505,52542],[8,-331]],[[49505,52542],[944,50],[330,-120],[624,14],[161,-163],[685,-180]],[[73860,52897],[62,396],[-79,956],[204,790]],[[69497,54606],[97,-375],[477,-296]],[[85619,56395],[273,-323],[147,-567],[32,-477],[139,-641]],[[85584,56446],[33,-44]],[[85039,56024],[511,226],[131,229]],[[65137,54381],[1,-197],[-232,-656],[-131,-161],[-138,-464],[-177,-298]],[[34879,49480],[-156,758],[-334,697],[-50,611],[105,538]],[[48626,53067],[-32,-541],[22,-960],[-556,-987],[3,-236]],[[88401,53460],[-439,349],[-139,665],[155,1076]],[[65197,54645],[-60,-264]],[[85689,56484],[204,0],[520,338],[431,197],[538,19]],[[88225,57197],[-54,11]],[[64186,54615],[46,-310],[-39,-1012],[267,-688]],[[48623,53344],[124,-220],[542,-416],[224,-497]],[[48626,53067],[-3,277]],[[65197,54645],[303,186],[332,-2]],[[45904,50311],[12,1110],[-36,1817]],[[85586,56432],[-323,556]],[[85330,57085],[-266,-704],[-76,-534]],[[67495,53736],[-23,227],[36,1236]],[[82627,56859],[-141,-1237],[-5,-362]],[[80586,56630],[350,-411],[278,-497],[431,-497]],[[80586,56630],[-88,-1544],[-54,-267],[43,-1113]],[[27137,51865],[423,191],[232,-96],[592,468]],[[64186,54615],[77,378]],[[69497,54606],[-47,470],[-159,623]],[[3369,43233],[225,633],[38,1249],[292,1216],[200,1203],[217,573],[226,1037]],[[4567,49144],[142,749],[257,608],[158,559],[176,971]],[[3374,51125],[606,177],[305,-188],[412,679],[603,238]],[[56414,51998],[212,896],[-59,551],[-22,954],[-141,263]],[[65197,54645],[-239,178],[-113,447],[-275,141]],[[64263,54993],[307,418]],[[67577,55705],[-69,-506]],[[26764,52774],[123,-410],[250,-499]],[[28441,52643],[483,82],[289,-223],[63,216],[321,190],[500,-144]],[[82627,56859],[152,540]],[[77450,55251],[123,265],[-33,349],[-337,766],[24,233]],[[67825,55920],[-248,-215]],[[64156,54924],[-197,462],[-414,181]],[[25926,53274],[-556,-342],[-299,130],[-117,-81]],[[3789,42627],[613,1906],[434,608],[820,2447]],[[5656,47588],[453,1430],[79,505]],[[6188,49523],[80,464],[-50,426],[-105,1998]],[[5300,52031],[143,120],[670,260]],[[65832,54829],[-16,423],[-305,391],[-213,121]],[[65197,54645],[-12,591],[113,528]],[[26764,52774],[-68,368],[73,765]],[[56406,55142],[-2,-480]],[[14135,53018],[-145,-47],[-35,-556]],[[56406,55142],[522,-38],[279,-204],[362,224],[881,-216],[194,150],[288,515]],[[75595,56778],[-449,428],[-448,-17]],[[74698,57189],[-153,208]],[[74047,55039],[-317,703],[193,554],[398,486],[94,492],[130,123]],[[56404,54662],[-183,15],[-319,244],[-259,38],[-464,423],[-897,-6],[-245,182]],[[54300,52455],[68,1026],[-10,1535],[-308,156],[-13,386]],[[76393,58038],[117,438],[154,150]],[[76369,57845],[18,201]],[[75595,56778],[208,358],[203,100],[54,349],[305,254]],[[54037,55558],[-262,162]],[[64856,56773],[257,-674],[185,-335]],[[64570,55411],[79,892],[207,470]],[[6113,52411],[26,282],[174,479],[-12,322]],[[49505,52542],[10,541],[-265,-4],[-75,1337],[37,487],[-94,567]],[[34444,52084],[407,1436],[-42,917],[130,622]],[[68974,57289],[-238,-296],[-645,-616],[-266,-457]],[[14549,53986],[-266,-534],[-13,-356],[-135,-78]],[[74545,57397],[-569,488]],[[80779,58701],[-3,1]],[[49118,55470],[5,250]],[[41669,55234],[297,-301],[160,-332],[329,-293],[409,23],[252,-327],[730,-479],[435,-169]],[[41869,51542],[4,494],[-81,2376],[-89,175],[-34,647]],[[38614,50864],[-28,1324],[-67,467],[-62,1795],[140,619]],[[64656,57108],[200,-335]],[[77332,57461],[-64,963]],[[68997,57618],[-23,-329]],[[41669,55234],[-141,110]],[[41669,55234],[59,126]],[[80779,58701],[-3,206]],[[69115,57661],[-118,-43]],[[77268,58424],[-601,202]],[[82976,58257],[-6,1125]],[[64386,57539],[149,-423],[121,-8]],[[80776,58907],[-75,491]],[[59757,57368],[-56,-287],[-247,-293],[-354,-191],[-135,-546],[-33,-478]],[[80776,58702],[-793,199],[-295,483]],[[82970,59382],[-205,104],[-621,-87],[-592,279],[-298,-292],[-280,-434],[-198,-45]],[[77766,59375],[-287,-439],[-211,-512]],[[6301,53494],[-30,1303]],[[5300,52031],[140,509],[365,849],[466,1408]],[[13419,55019],[145,-525],[428,-633],[143,-843]],[[76055,59385],[258,-123],[203,-392]],[[78245,59626],[-89,-177],[-390,-74]],[[85077,57709],[-192,537],[-78,530],[-179,264],[-10,1018],[-159,292]],[[85263,56988],[-184,714]],[[63545,55567],[33,850],[-107,567],[-125,311],[-96,917]],[[24954,52981],[-119,-62],[-328,409],[-530,271],[-483,21],[-257,410],[-406,297],[-407,193],[-331,381],[-160,370],[-610,207]],[[7813,55173],[520,-846],[68,-432],[327,-794],[69,-939],[-10,-1502],[95,-1311],[-187,-821],[108,-744],[-22,-627],[-94,-800]],[[6301,53494],[246,89],[527,600],[233,521],[253,283],[222,-6],[31,192]],[[77730,59622],[36,-247]],[[53775,55720],[-433,462],[-143,590],[-307,249],[-263,416]],[[54037,55558],[131,335],[42,573],[-71,509],[108,355],[211,305]],[[7813,55173],[-6,116]],[[88171,57208],[-233,287],[1,730],[-372,688],[62,531],[-610,1563]],[[63489,58519],[385,141],[209,-104]],[[87019,61007],[-232,119]],[[54458,57635],[101,301]],[[79688,59384],[-606,536],[-435,492]],[[78647,60412],[-140,-383],[-262,-403]],[[38597,55069],[-25,1040],[60,13],[428,926]],[[41528,55344],[-765,928],[-814,859]],[[41728,55360],[85,1015],[14,935]],[[63250,58212],[11,283],[-219,517]],[[34939,55059],[265,417],[485,229],[354,-28],[82,363],[526,657],[552,285],[110,176]],[[60892,59030],[-314,-204],[-64,-313],[-294,-308],[-360,-196],[-103,-641]],[[49123,55720],[-75,1586],[15,791]],[[48569,58067],[494,30]],[[48539,55708],[-31,1614],[61,745]],[[84718,61545],[-18,-125],[504,-290],[526,-44],[591,-148],[466,188]],[[47455,58051],[1114,16]],[[51269,55669],[-23,568],[21,2311]],[[39949,57131],[-594,604]],[[39060,57048],[295,687]],[[75933,60917],[-60,-669],[213,-576],[-31,-287]],[[7807,55289],[270,219],[753,307],[524,537],[643,273]],[[9940,56708],[57,-83]],[[65082,60113],[1127,-757],[206,-27],[217,-211],[653,-109],[296,-422],[412,-276],[257,-31],[217,-290],[196,39],[334,-411]],[[32623,56550],[177,198],[217,-14],[190,-282],[12,-351],[181,123],[253,-111],[272,251],[769,-722],[179,-368]],[[14297,58203],[-108,-276],[79,-683],[-9,-1167],[80,-657],[-52,-299],[102,-580],[160,-555]],[[83977,62179],[480,-238],[261,-396]],[[51169,59000],[412,-21],[316,-501],[255,-219],[477,-822]],[[51267,58548],[-98,452]],[[51146,59061],[23,-61]],[[74110,61186],[-252,-5],[-273,-274],[-154,111],[-398,-122],[-88,-160]],[[50431,58768],[-914,19],[-259,-105]],[[51105,59190],[41,-129]],[[83172,62312],[573,-192],[232,59]],[[84459,60350],[-407,548],[-331,681],[-439,511],[-110,222]],[[79074,62106],[-368,-1325],[-59,-369]],[[39355,57735],[-820,869]],[[37307,57143],[193,193],[426,652],[527,702]],[[78167,61377],[608,629],[299,100]],[[51098,59588],[7,-398]],[[72945,60736],[-288,339],[-287,507]],[[72395,61652],[-25,-70]],[[69115,57661],[113,335],[215,238],[414,627],[354,825],[326,285],[840,1610]],[[72370,61582],[-206,-24],[-201,178]],[[7807,55289],[-218,1360],[24,668],[-277,-42],[-410,150],[-192,308]],[[6271,54797],[19,834],[133,239],[-22,235],[207,872],[62,662],[64,94]],[[71963,61736],[-44,63]],[[71861,61755],[58,44]],[[71322,61835],[120,-265]],[[51146,59061],[517,384],[285,458],[316,281]],[[60892,59030],[-476,1527],[7,324]],[[78106,61091],[-307,329],[-42,303],[-293,454],[-358,359],[-246,129]],[[85755,62746],[-563,890]],[[83977,62179],[462,357],[218,465],[535,635]],[[26769,53907],[-191,1146],[-85,1522],[62,477],[-53,377],[-180,112],[-136,877],[30,374]],[[21323,55478],[-110,703],[-279,736],[-259,1095],[58,275],[-139,409]],[[80701,59398],[-88,439],[54,294],[-66,557],[180,931],[81,1114],[205,617]],[[63042,59012],[-91,510],[-530,1853],[-65,80]],[[60892,59030],[275,321],[257,567],[160,-8],[285,563],[16,438],[180,78],[291,466]],[[3374,51125],[-131,441],[83,517],[-129,393]],[[3197,52476],[-100,216],[343,1128],[-40,326],[172,678],[184,244],[-168,593]],[[3588,55661],[560,452],[266,74],[521,460],[251,552],[167,184]],[[5353,57383],[197,335],[169,81],[345,425],[371,47],[280,149]],[[52264,60184],[39,499]],[[68997,57618],[55,277],[-148,2112],[92,556],[85,1615]],[[14297,58203],[158,29],[117,319]],[[6734,57733],[156,774]],[[6890,58507],[-175,-87]],[[31614,57675],[15,702],[119,468],[-14,615]],[[80753,63573],[314,-223]],[[80753,63573],[-291,-351],[-459,-242],[-456,-373],[-473,-501]],[[71770,62823],[-14,-351],[163,-673]],[[31734,59460],[72,304]],[[6890,58507],[461,186]],[[38535,58604],[-159,152],[-695,1046],[-324,375]],[[64083,58556],[-155,254],[49,259],[-105,539],[-143,246],[-185,839],[-486,903],[-193,560]],[[65082,60113],[-761,576],[-34,241],[-712,910],[-433,464],[-277,-148]],[[31911,98720],[-223,202],[-383,3],[-156,-145],[-170,-660],[-130,-720],[-128,-420],[-1,-440],[229,-509],[739,-406],[587,294],[437,789],[98,353],[-150,482],[-543,767],[-202,396]],[[62356,61455],[193,834]],[[51105,59190],[-182,371],[-173,108],[-326,478],[-690,439],[-449,150],[-423,283],[-535,137]],[[48569,58067],[-72,1613],[-142,666],[-28,810]],[[54405,61636],[199,-208]],[[69081,62178],[-21,803]],[[62549,62289],[241,118]],[[62865,62156],[7,264]],[[62790,62407],[82,13]],[[69706,63092],[62,-105]],[[52264,60184],[209,423],[1,351],[262,659]],[[48251,61363],[76,-207]],[[65860,62876],[14,-273]],[[52736,61617],[-697,129]],[[7699,58909],[-382,605]],[[6890,58507],[336,710]],[[7226,59217],[91,297]],[[9940,56708],[-460,534],[-92,271],[-502,836],[-146,78],[80,535]],[[7951,59257],[989,371]],[[47320,61512],[-54,-866],[126,-807],[61,-1052],[2,-736]],[[47320,61512],[-125,-125],[-550,-88]],[[46645,61299],[-93,51]],[[8776,59862],[164,-234]],[[51098,59588],[11,1047],[105,399],[-30,810]],[[52039,61746],[-855,98]],[[48251,61363],[-24,276]],[[63664,62811],[386,196],[610,-55],[551,-112],[200,71],[449,-35]],[[48019,61681],[-444,-161],[-255,-8]],[[62872,62420],[69,520]],[[62712,62963],[160,-543]],[[69155,63584],[551,-492]],[[7317,59514],[185,409]],[[23242,60582],[-257,-253],[-424,-212],[-309,-342],[-872,-506],[-420,-396],[-357,-168],[-182,116]],[[48227,61639],[468,349],[1585,28],[351,-153],[553,-19]],[[48227,61639],[-44,317]],[[8313,60140],[210,-41],[253,-237]],[[7502,59923],[281,160],[256,-5]],[[7231,60113],[86,-599]],[[6715,58420],[-52,174],[134,648],[-37,242],[193,358],[278,271]],[[31734,59460],[-636,362],[-527,485],[-168,331],[-150,571]],[[76860,62665],[-616,746],[-590,926],[-683,547]],[[75340,63776],[-201,490],[-168,618]],[[41827,57310],[-11,764],[272,684],[210,212],[139,457],[172,121],[-62,259],[33,868],[226,1023],[-41,626]],[[46552,61350],[-615,-46],[-512,71],[-439,140],[-188,179],[-583,143],[-267,457],[-334,94],[-361,-24]],[[43253,62364],[-488,-40]],[[37357,60177],[-772,997],[-74,255],[-423,319],[-116,182]],[[39467,59151],[27,785],[-34,686],[221,712],[-47,882]],[[37269,61995],[618,-267],[398,64],[834,366],[515,58]],[[39634,62216],[276,26]],[[7502,59923],[294,698],[55,283]],[[7330,60191],[199,421],[322,292]],[[42765,62324],[-1026,-10],[-127,105],[-635,-154],[-762,-122],[-305,99]],[[82143,66038],[97,-708],[302,-667],[145,-463],[240,-1062],[245,-826]],[[82143,66038],[-478,-518],[-569,-1009],[-290,-651],[-53,-287]],[[31806,59764],[-79,266],[157,1017],[206,902]],[[30301,61258],[237,212],[279,-155],[536,526],[737,108]],[[35972,61930],[407,-43],[316,337],[574,-229]],[[80753,63573],[-392,589],[-520,1034],[-318,288],[-372,470]],[[58574,64134],[529,-1068],[335,-510],[242,-503],[189,-102],[190,-393],[277,-305],[87,-372]],[[39634,62216],[-219,513]],[[47829,62518],[-322,425],[-208,419]],[[47320,61512],[17,507],[-87,882],[49,461]],[[34031,62531],[359,-246],[517,-152],[149,41],[428,-172],[165,62],[323,-134]],[[32090,61949],[1731,403],[210,179]],[[79151,65954],[-182,206],[-787,79]],[[74354,65897],[532,-771],[85,-242]],[[74354,65897],[-535,-957],[-223,9],[-124,-215],[29,-351],[-161,-106],[-223,-420],[-29,-491],[-208,-566],[-48,-507],[-103,-280],[-334,-361]],[[58574,64134],[-68,281]],[[70921,65682],[145,-295],[12,-287],[461,-1361],[231,-916]],[[76245,64943],[568,136],[266,282],[378,-22],[430,326],[295,574]],[[74354,65897],[-10,138]],[[51184,61844],[171,1559],[138,641]],[[74344,66035],[10,127]],[[74142,66108],[212,54]],[[8883,61640],[96,-491],[-111,-1070]],[[8313,60140],[92,497],[261,351],[211,671]],[[65636,65421],[-189,-99],[-681,-874],[-76,-214],[-236,-41],[-322,-336],[-118,-244],[-508,-305],[-634,-888]],[[65636,65421],[380,-20],[665,159]],[[74651,66193],[255,-11],[480,284],[380,-92],[500,134],[339,10],[499,-183],[707,96],[371,-192]],[[66681,65560],[242,110],[178,287]],[[83564,67723],[34,-50]],[[83564,67723],[-353,-663],[-610,-514],[-458,-508]],[[47299,63362],[-228,397],[-564,560]],[[16484,57762],[25,317],[-79,485],[46,1180],[292,739],[264,290],[249,1018],[549,1061]],[[23291,63131],[-85,-736],[72,-508],[-46,-1308]],[[34031,62531],[-291,337],[-374,250],[-442,570]],[[32840,63689],[84,-1]],[[32090,61949],[101,627],[188,789],[312,328],[149,-4]],[[8940,59628],[188,54],[320,598]],[[9448,60280],[881,470],[582,952]],[[10911,61702],[426,304],[514,235],[734,77],[690,609],[733,226]],[[14008,63153],[762,17]],[[17830,62852],[-335,1],[-611,-128],[-766,262],[-282,259],[-679,42]],[[14770,63170],[387,118]],[[70921,65682],[208,26],[128,250],[122,820],[128,80],[9,344]],[[8933,61941],[-126,356],[-29,459],[63,589]],[[23291,63131],[383,-19],[517,194],[430,431],[107,214]],[[25176,63942],[-448,9]],[[58506,64415],[31,559],[110,270],[94,588],[137,329],[299,169]],[[81742,68843],[3,-294],[172,-378],[100,-626],[18,-694],[108,-813]],[[42765,62324],[45,834],[11,1677],[-95,567]],[[39910,62242],[270,100],[597,473],[309,182],[951,882],[174,506],[127,712],[388,305]],[[81742,68843],[247,66],[304,-624],[239,-212],[254,-5],[449,-283],[329,-62]],[[70921,65682],[-545,957],[-170,142],[-150,397],[-366,545]],[[69690,67723],[152,64],[515,-393],[304,-70],[512,38],[343,-160]],[[69544,67847],[146,-124]],[[69544,67847],[-72,-1235],[-100,-256],[-217,-2772]],[[69498,67854],[46,-7]],[[69524,67640],[-743,-477],[-83,-218],[-293,-235],[-570,-210],[-384,60],[-181,-124],[-169,-479]],[[30241,61187],[-310,915],[-162,664],[-15,398],[-271,969],[-112,571],[18,526]],[[20421,58821],[-123,782],[118,695],[-871,815],[-328,541],[-34,183]],[[8341,64623],[267,6]],[[24728,63951],[112,196],[-55,505],[59,401],[215,231]],[[18860,65128],[-341,-59]],[[18519,65069],[-368,-170],[-306,100]],[[15157,63288],[883,485],[1006,657],[799,569]],[[74195,66661],[-229,397],[-226,559],[-87,715],[-214,650]],[[42726,65402],[529,401],[532,304],[525,213],[246,284]],[[76102,69437],[-54,-138]],[[66641,68379],[-251,-56],[-207,155],[-308,-2]],[[46507,64319],[-134,171],[30,500],[-72,207],[-18,883],[-206,674]],[[18867,65140],[230,394]],[[51493,64044],[160,951],[-69,250],[94,350],[-10,493],[258,646],[151,680]],[[20043,65778],[-946,-244]],[[62941,62940],[115,733],[23,484],[166,1018],[-8,920],[218,1268],[21,424],[186,953]],[[11280,64161],[234,432],[197,86],[35,356],[-83,661]],[[8549,65608],[-75,-13]],[[8561,64632],[-5,799],[95,200]],[[21493,66086],[101,-84],[83,-491],[280,-266],[218,-574],[307,-328],[116,-265],[476,-507],[217,-440]],[[11663,65696],[138,45]],[[8656,65646],[292,35]],[[46078,67521],[-546,-173],[-671,-620],[-303,-124]],[[79870,70577],[147,-641]],[[69498,67854],[-129,128],[-159,566],[-201,409],[-260,302],[-524,150]],[[8605,64628],[171,89],[358,-205],[657,389],[53,398],[289,183],[327,360],[187,-288],[598,2],[418,140]],[[76048,69299],[256,171],[113,336],[427,290],[465,219],[933,87],[1283,18],[345,157]],[[60396,68800],[-6,-317],[-149,-326],[-94,-681],[-213,-491],[-662,-587],[-111,7]],[[46078,67521],[43,164]],[[46121,67685],[44,69]],[[20043,65778],[253,537],[464,16],[599,-354],[134,109]],[[11798,65740],[31,450]],[[46165,67754],[263,58],[247,225]],[[81219,71154],[-532,-366],[-341,-39],[-476,-172]],[[47267,68064],[-592,-27]],[[81219,71154],[292,-38]],[[61461,69267],[392,-230],[470,-63],[221,-271],[1118,37]],[[61461,69267],[77,-527],[170,-534],[-106,-1342],[112,-381],[290,-404],[330,-2309],[378,-807]],[[11801,65741],[426,133],[357,384],[358,46],[172,-82],[417,235],[14,142]],[[17845,64999],[-204,1003],[-49,500],[-226,264]],[[14770,63170],[-164,1343],[-258,792],[-48,452],[-435,928],[-320,-86]],[[54405,61636],[-143,625],[205,359],[99,591],[223,-6],[70,693],[123,185],[-57,407],[-232,142],[-15,432],[-199,148],[-208,518],[157,435],[66,673],[-41,331],[270,-1],[111,786],[13,546],[206,559]],[[50030,68047],[9,337],[-141,295]],[[60604,69634],[-208,-834]],[[60892,69746],[200,-408],[369,-71]],[[49898,68679],[-515,-47],[-587,152]],[[48786,68777],[10,7]],[[48809,68407],[-23,370]],[[47267,68064],[423,101],[390,388],[273,175],[433,49]],[[46121,67685],[-828,549],[-175,187],[-298,93]],[[44558,66604],[279,1614],[-17,296]],[[76102,69437],[-115,-24],[-411,240],[-125,256],[-270,-81],[-213,225],[-592,210],[-4,415],[-303,186],[-510,142]],[[73551,70982],[-182,-983],[92,-478],[-22,-539]],[[60604,69634],[91,195]],[[60213,69799],[391,-165]],[[60396,68800],[-83,135],[-100,864]],[[60695,69829],[197,-83]],[[55054,69396],[-3,7]],[[55053,69059],[-2,344]],[[55010,69459],[41,-56]],[[39415,62729],[17,684],[229,1307],[0,446],[88,698],[-95,471],[-170,193],[-60,386],[-18,1356]],[[42726,65402],[-109,337],[-83,1317],[-44,91],[-82,1135],[27,279]],[[55056,69511],[-46,-52]],[[55080,69537],[-24,-26]],[[39418,68487],[320,-320],[724,80],[654,-32],[126,186],[747,147],[446,13]],[[39418,68487],[-84,-76]],[[13545,66599],[-115,375],[-307,6],[-61,255]],[[37104,65068],[-284,-81],[3,386],[-206,313],[-824,973],[-163,324],[-819,676],[-510,227],[-293,345]],[[32924,63688],[362,943],[213,865],[435,971],[21,1032],[53,732]],[[72733,70744],[356,153],[388,444]],[[73570,71385],[-93,-44]],[[46675,68037],[168,188],[151,403],[440,520]],[[39418,68487],[-40,138]],[[73664,71503],[-113,-521]],[[73664,71503],[-94,-118]],[[19097,65534],[-41,283],[406,1577],[-31,429]],[[17366,66766],[397,255],[334,312],[1334,490]],[[34008,68231],[-23,294]],[[81066,72417],[27,-755],[126,-508]],[[55080,69537],[575,61],[102,232],[356,-75],[382,58],[241,312],[467,45],[121,115],[453,10],[729,362],[409,-214],[650,23],[35,-380],[323,-266],[290,-21]],[[60695,69829],[-6,486],[113,565]],[[60004,70934],[117,-346],[92,-789]],[[52134,67899],[-126,810],[697,721],[230,408],[208,765]],[[32840,63689],[-599,821],[-327,659],[-212,637],[-227,437],[-57,648],[-83,258],[-366,440],[-124,637],[3,752],[57,301]],[[71014,72263],[-191,31]],[[69544,67847],[108,457],[-5,658],[222,744],[258,575],[389,1156],[330,712],[-23,145]],[[33985,68525],[-863,-25],[-306,110],[-464,-397],[-194,-44],[-560,452],[-174,446],[-211,-62],[-308,274]],[[55080,69537],[300,637],[-19,731]],[[66594,72432],[318,-567],[138,-430],[703,-1271],[267,-591],[205,-164]],[[70823,72294],[-343,258],[-507,59],[-416,-166],[-177,-338],[-629,66],[-578,-46],[-160,-127],[-567,355],[-410,-13],[-444,192]],[[66592,72534],[-82,3]],[[66510,72537],[84,-105]],[[30905,69279],[53,808]],[[66137,72746],[373,-209]],[[65875,68476],[65,539],[245,828],[-10,596],[250,617],[-61,1115],[-248,375],[21,200]],[[66137,72746],[-163,162]],[[65974,72908],[-98,39]],[[81066,72417],[-43,1010],[43,439],[-158,1037]],[[53143,70603],[-1143,114],[-63,109],[-981,-32]],[[74025,71892],[103,140],[201,897],[315,373],[194,481]],[[49515,72070],[-11,47]],[[49758,72053],[-208,72]],[[49550,72125],[-35,-55]],[[76792,74605],[0,-298],[-488,-1058],[-133,-488],[-58,-1107],[-83,-363],[-49,-1164],[121,-690]],[[59167,72974],[4,-1]],[[59105,73018],[16,-614],[191,-498],[327,-70],[365,-902]],[[75559,74369],[466,8],[666,283],[101,-55]],[[47434,69148],[483,1247],[205,385]],[[60802,70880],[26,712],[66,197],[24,740],[92,437],[-98,264]],[[43194,71877],[235,-774],[399,-1809],[226,-74],[458,-325],[308,-381]],[[42435,68561],[162,1084],[-64,643],[238,1196],[423,393]],[[60912,73230],[-3,14]],[[59171,72973],[590,95],[472,12],[676,164]],[[80753,72249],[-784,1099],[-105,432],[-606,1220]],[[79314,75015],[-56,-15]],[[61461,69267],[16,552],[81,330],[-91,318],[136,467],[-160,486],[-53,524],[156,222],[157,661],[-9,547]],[[49504,72117],[-202,173],[-521,-130],[-340,154]],[[48441,72314],[24,-821],[301,-1051]],[[39378,68625],[58,580],[-54,1324],[-346,1160]],[[63662,68740],[-34,956],[-307,1185],[-143,399],[-4,979],[-119,490],[-45,760]],[[39334,68411],[-585,617],[-324,959],[-763,1031],[-30,604]],[[65876,72947],[-122,-33],[-921,154],[-305,108],[-187,-53],[-701,323],[-630,63]],[[79314,75015],[234,95],[962,-485],[398,278]],[[62939,73522],[71,-13]],[[37632,71622],[810,162],[594,-95]],[[24720,69841],[100,280],[458,826],[-9,113]],[[56005,72964],[243,-156],[384,-71],[267,96],[1331,24],[937,117]],[[55383,71131],[94,710],[31,652],[204,653]],[[55010,69459],[-156,449],[10,512],[-73,373],[-364,442],[26,1076],[51,437],[-37,465]],[[24732,71393],[436,-368],[101,35]],[[54467,73213],[283,-15],[487,153]],[[46826,72712],[244,-288],[603,-244],[432,117]],[[46165,67754],[-31,160],[85,1029],[-24,377],[183,580],[157,276],[219,149],[167,363],[22,675],[-106,542],[-11,807]],[[55712,73146],[-270,218],[-205,-13]],[[24523,71401],[209,-8]],[[30958,70087],[-446,311],[-567,1114],[-297,70],[-463,242]],[[49860,72433],[480,30],[110,-75],[693,346],[698,476],[527,123]],[[54467,73213],[-347,50],[-611,195]],[[25059,65284],[195,29],[-33,211],[161,341],[-200,766],[68,974],[156,699],[420,796],[45,390],[268,205],[188,-124],[201,61],[9,545],[643,1472],[-13,126]],[[53509,73458],[-566,-11],[-575,-114]],[[55113,73651],[124,-300]],[[25269,71060],[612,814],[1286,-99]],[[20650,70585],[436,796],[520,353],[263,36]],[[21869,71770],[415,-78],[295,-467],[249,-200],[295,-401],[333,43],[1067,734]],[[29181,71830],[93,390]],[[27167,71775],[326,-10],[411,275],[515,57],[546,-42],[296,149]],[[43194,71877],[-7,141],[250,1026]],[[33985,68525],[92,419],[-8,1453],[42,134],[-32,827],[-65,342],[107,374],[258,414]],[[41944,73082],[294,-119],[478,-7],[538,171],[183,-83]],[[39418,68487],[346,567],[386,866],[651,995],[93,385],[245,594],[309,490],[219,475],[277,223]],[[80908,74903],[-123,349],[-29,496],[130,675],[-25,230],[150,655],[-6,242]],[[79314,75015],[506,670],[281,470],[111,327]],[[43437,73044],[285,200],[820,282],[736,58],[504,-388],[451,-102],[593,-382]],[[73477,71341],[-280,654],[32,651],[160,472],[-65,892],[-181,330],[11,1060],[-133,774]],[[73021,76174],[-316,-323],[-601,-977],[-103,-409],[-321,-236],[-108,-658],[-287,-974],[-271,-334]],[[53613,74485],[-166,-353],[-14,-511],[76,-163]],[[53613,74485],[548,82],[443,-106],[334,-629],[175,-181]],[[53593,74566],[20,-81]],[[39906,73627],[-67,-411],[-791,-1451],[-12,-76]],[[41944,73082],[-380,126],[-514,6],[-571,282],[-573,131]],[[73760,76493],[-581,-185],[-158,-134]],[[79258,75000],[-120,231],[-1660,1661]],[[29261,72204],[224,987],[-1,467],[125,374]],[[24732,71393],[1,401],[-222,325],[-130,915]],[[30958,70087],[-202,1266],[-287,892],[-478,1082],[-260,239],[-50,566]],[[76124,77004],[-332,-745],[-153,-145],[-143,-392],[82,-842],[-19,-511]],[[76169,77158],[-45,-154]],[[77478,76892],[-501,248],[-547,86],[-261,-68]],[[49504,72117],[-69,276],[3,807],[-98,403],[-7,592],[-80,288],[-376,438]],[[48877,74921],[-207,-1249],[-235,-685],[6,-673]],[[76124,77004],[-364,94],[-215,-100],[-356,185],[-661,-177],[-768,-513]],[[34379,72488],[196,391],[66,421],[-13,653],[489,1380],[280,218],[282,960]],[[52629,75295],[612,-218],[352,-511]],[[52629,75295],[-106,-732],[25,-700],[-180,-530]],[[73021,76174],[43,918]],[[27167,71775],[-58,694],[78,191],[95,1130]],[[80212,76482],[315,508],[350,914],[127,98]],[[81001,78084],[3,-82]],[[81559,78186],[54,-13]],[[60274,76249],[22,-338],[285,-379],[254,-780],[74,-1508]],[[29609,74032],[29,93]],[[29638,74125],[91,29]],[[76339,77766],[-170,-608]],[[81217,78297],[310,-103]],[[81217,78297],[-216,-213]],[[20650,70585],[-152,765],[13,371],[-240,593],[-56,626],[120,540],[19,393]],[[65876,72947],[-165,640],[-90,665],[-227,566],[-23,448],[-478,1085],[-38,523]],[[64855,76874],[-265,-476],[-211,-577]],[[64379,75821],[-338,-698],[-364,-515],[-550,-652],[-117,-447]],[[60274,76249],[272,248]],[[60546,76497],[83,115]],[[60629,76612],[180,-202],[793,359],[465,-256],[434,-107]],[[34379,72488],[-235,642],[-392,702],[-419,203],[-297,247],[-58,302],[-150,113],[-461,31],[-353,-88],[-714,-357],[-267,-192],[-223,71],[-359,-107],[-722,99]],[[39906,73627],[-1021,711],[-814,792]],[[37632,71622],[-15,505],[179,1328],[275,1675]],[[73064,77092],[171,571],[-47,359]],[[24381,73034],[-270,483],[-503,662],[-151,-89],[-263,416]],[[23194,74506],[-351,-162],[-184,-328],[-159,-3],[-167,-270],[-55,-489],[57,-265],[-196,-447],[-89,-470],[-181,-302]],[[23187,74552],[7,-46]],[[76358,78499],[-19,-733]],[[76358,78499],[586,49],[268,-77],[769,208],[287,-82],[513,205]],[[73188,78022],[451,47],[382,241],[447,-16],[406,248],[544,138],[190,-139]],[[48836,76675],[54,-1109],[-13,-645]],[[58496,77686],[35,-177]],[[50968,77287],[473,-531],[406,-708],[320,-378],[462,-375]],[[49550,72125],[232,952],[-2,498],[115,351],[237,352],[90,492],[34,659],[470,695],[106,706],[136,457]],[[53775,77635],[-496,-562],[-218,-466],[-150,-643],[-282,-669]],[[77101,79786],[-561,-939],[-205,-93],[23,-255]],[[41949,76886],[123,-38],[236,-998],[-9,-445],[76,-634],[303,-282],[166,-487],[269,-211],[286,-527],[38,-220]],[[35679,76511],[331,-229],[924,-301],[975,-822],[162,-29]],[[62501,76406],[28,1263],[-10,889]],[[69430,79597],[-339,-187],[-310,-23],[-168,-144],[-916,-124]],[[69651,79456],[582,-667],[458,-240],[333,-33],[331,-161],[283,156],[341,-77],[291,-272],[918,-140]],[[67697,79119],[-173,164]],[[67524,79283],[7,-573],[174,-394],[553,-358],[693,-873],[713,-1069]],[[69664,76016],[427,-963],[185,-732],[223,-562],[30,-255],[294,-1210]],[[60629,76612],[6,457],[90,457],[133,239],[52,385],[-138,556]],[[75431,80035],[24,-680],[205,-338],[-52,-476]],[[69430,79597],[129,-33]],[[70762,79805],[1049,-1],[661,529],[290,11]],[[69430,79597],[53,356]],[[72762,80344],[381,-620],[83,-1006],[-38,-696]],[[34442,77556],[532,-718],[577,-364],[128,37]],[[34442,77556],[-236,96],[-572,-133],[-804,19]],[[48070,78875],[291,-369],[234,-815],[241,-1016]],[[48070,78875],[-620,-352],[-266,5],[-400,215],[-190,-7]],[[67524,79283],[-379,615],[-431,324],[-354,70],[-552,-48],[-267,132]],[[64855,76874],[333,986],[33,414],[162,546],[62,955],[96,601]],[[64855,76874],[77,503],[-337,1888],[-287,1120]],[[81217,78297],[267,511],[6,290],[207,383],[279,853],[332,609],[374,1261],[-36,43]],[[49855,79396],[95,-274],[553,-775],[181,-550],[284,-510]],[[36771,78582],[-648,-898],[-444,-1173]],[[36771,78582],[-159,1],[-1636,-653],[-131,3],[-403,-377]],[[62519,78558],[-13,1157],[120,789]],[[49884,79504],[-29,-108]],[[62626,80504],[478,-45],[377,165]],[[38239,77807],[-143,-203],[-82,-446],[20,-894],[71,-491],[-34,-643]],[[37314,78737],[-543,-155]],[[64461,80993],[677,-450],[403,-167]],[[64308,80385],[-93,634]],[[63481,80624],[573,392],[161,3]],[[64215,81019],[246,-26]],[[60772,78706],[-50,736],[227,177],[34,273],[268,690],[4,336]],[[61318,80966],[254,-242],[377,-133],[677,-87]],[[61255,80918],[63,48]],[[61255,80918],[-393,-137],[-1396,826]],[[59466,81607],[-144,-789],[34,-654],[-345,-609],[-57,-365],[-434,-666],[-24,-838]],[[41949,76886],[-10,585],[-165,566],[-5,282],[-249,962],[-85,1001]],[[62790,82006],[-42,-258],[114,-467],[-53,-344],[-183,-433]],[[49884,79504],[-426,525],[-454,322],[-719,281],[-688,204]],[[47597,80836],[-2,-470],[211,-806],[264,-685]],[[78781,78802],[113,157],[338,818],[225,775],[496,854],[238,567],[127,498],[67,599],[274,788]],[[63481,80624],[-103,2031]],[[34343,80573],[-441,-343],[-868,-1523],[-172,-659],[-32,-510]],[[64215,81019],[-47,274],[-325,718],[-252,375]],[[83713,84865],[120,-38]],[[83663,84892],[50,-27]],[[83505,84892],[158,0]],[[83505,84892],[-43,-125]],[[47446,82012],[175,-686],[-24,-490]],[[83462,84767],[-1067,254],[-144,103]],[[82251,85124],[-132,80]],[[82119,85204],[131,-478]],[[37710,81597],[-81,-398],[57,-410],[-87,-433],[-126,-115],[-67,-364],[-635,-1295]],[[37710,81597],[-156,-110],[-191,113],[-1214,-441],[-352,-43],[-205,-214],[-196,-438]],[[52432,83606],[-74,-247],[-119,-1614],[-75,-495],[-64,-979],[-852,-1365],[-129,-591],[14,-363],[-165,-665]],[[50962,82514],[69,-764],[-83,-462],[-438,-686],[-101,-343],[-256,-283],[-269,-472]],[[52432,83606],[19,127]],[[52495,83773],[446,-19],[595,-218],[966,-22],[526,-913]],[[52495,83773],[46,-409],[203,-1014],[279,-829]],[[52451,83733],[44,40]],[[52459,83874],[36,-101]],[[52030,83734],[-1226,33],[-781,297]],[[81188,86737],[107,-228],[264,-157],[265,-347],[178,-448]],[[34343,80573],[-113,395],[-202,363],[-474,1279],[-58,590],[-82,144]],[[81188,86737],[-736,495]],[[80659,83858],[-49,761],[-159,428],[-115,674],[28,466],[-123,473],[211,572]],[[51431,84751],[495,-323],[269,-491],[264,-63]],[[80013,87480],[439,-248]],[[47446,82012],[-313,1143],[-353,638],[-594,657]],[[45898,84340],[160,-976],[-20,-979],[104,-391],[-76,-278],[310,-1008],[35,-582],[83,-252],[-23,-672],[123,-466]],[[79816,87774],[197,-294]],[[53423,85534],[-290,-424],[-264,-592],[-410,-644]],[[45879,84944],[-45,52]],[[40737,84654],[392,-2047],[162,-510],[125,-836],[-114,-439],[133,-540]],[[40737,84654],[-254,-102],[-115,-639],[-115,-285],[-374,-100],[-105,-264],[-557,-286],[-147,-283],[-256,-18],[-268,-241],[-245,-361],[-505,-180],[-86,-298]],[[53611,85630],[-74,-12]],[[49217,84048],[-663,-26],[-287,135],[-649,30],[-662,181],[-183,202],[-701,383]],[[45834,84996],[46,109]],[[84805,88500],[-194,-287],[-221,37],[-179,-230],[-335,39],[-571,-982],[-304,-430],[-343,-299],[-111,-432],[-296,-792]],[[40737,84654],[10,249]],[[79821,88244],[-5,-470]],[[40747,84903],[386,-83],[367,269],[893,473],[709,114],[429,-355],[482,21],[772,-113],[205,30],[513,-166]],[[80452,87232],[-20,1109],[-236,545]],[[80196,88886],[-251,37],[-116,-196],[-8,-483]],[[48989,87476],[36,-1497],[60,-729],[99,-587],[33,-615]],[[49059,87590],[-70,-114]],[[85500,91101],[226,-47]],[[85468,90082],[80,851],[-48,168]],[[41580,87505],[-85,-508],[-185,-369],[-89,-850],[-228,-594],[-246,-281]],[[41502,87633],[78,-128]],[[49786,88228],[-189,5],[-538,-643]],[[81436,90981],[-294,-415],[-498,68],[-197,-406],[-94,-913],[-157,-429]],[[81469,91088],[-33,-107]],[[84407,91468],[79,-276],[469,-122],[124,122],[421,-91]],[[48989,87476],[-380,360],[-513,156],[-679,971],[-241,260],[-388,7]],[[45880,85105],[152,361],[-91,645],[-15,889],[288,546],[234,958],[340,726]],[[46583,89236],[205,-6]],[[84407,91468],[66,421],[619,989],[102,377]],[[85726,91054],[-3,507],[111,865],[-21,901]],[[85640,93339],[173,-12]],[[85640,93339],[45,-637],[-185,-1601]],[[85411,93296],[229,43]],[[85736,93919],[-96,-580]],[[85813,93327],[45,493],[-82,149]],[[85776,93969],[-40,-50]],[[47604,90916],[856,-1647],[422,-686],[13,-768],[164,-225]],[[47604,90916],[-98,-302],[-373,-665],[-126,-371],[-219,-348]],[[83599,93579],[661,-183],[566,-45]],[[82519,93894],[-138,-27],[-236,-1105],[-95,-837],[-422,-485],[-159,-352]],[[47621,91057],[-17,-141]],[[48338,90841],[-220,408]],[[85776,93969],[67,520]],[[85545,94575],[298,-86]],[[85736,93919],[-267,84],[76,572]],[[85464,94623],[81,-48]],[[43690,91271],[-328,-1675],[0,-601],[-530,-714],[-139,-364],[-330,-35],[-783,-377]],[[85464,94623],[5,46],[-966,250],[-217,-233],[-568,28],[-658,-105],[-291,-124],[-503,-449],[253,-142]],[[43590,92172],[548,-276],[914,-661],[154,-206],[316,-113],[205,-365],[369,-432],[487,-883]],[[85676,96836],[-126,-235],[-161,-715]],[[82828,99999],[597,-578],[503,-90],[637,-508],[476,-502],[365,-577],[333,-757],[-63,-151]],[[43590,92172],[118,1252],[-58,583],[374,726],[278,301],[66,1054],[148,406],[532,272],[553,409],[342,127]],[[46328,97370],[77,-330],[128,-1822],[-88,-1008],[27,-837],[155,-1893],[-44,-2244]],[[46174,97443],[-231,-141]],[[46328,97370],[-154,73]],[[47338,97475],[-287,78],[-723,-183]],[[45915,97606],[94,110]],[[63915,41233],[-83,-552],[-205,-2440],[41,-214]],[[65197,37365],[41,665],[-254,642],[-530,1075],[-98,729],[-334,731],[-149,31]],[[9814,89757],[331,-399],[-39,-153]],[[16102,90729],[310,760]],[[18701,94918],[8,8]],[[94918,30483],[-679,-179],[-273,62]],[[93966,30366],[114,163]],[[85452,21278],[106,308]],[[95056,23302],[8,-289],[177,-564],[26,-988],[224,-1053]],[[95328,28231],[346,76],[285,-346],[72,-352]],[[91431,33888],[-213,139],[-108,278],[-167,-15]],[[90938,34336],[-26,-414]],[[91249,32589],[7,192],[-206,630]],[[87068,41117],[-19,89]],[[90150,41194],[73,-26]],[[90152,42621],[96,548]],[[1539,41753],[250,-147]],[[89609,45234],[41,567],[-66,424],[-154,288],[-265,1715],[96,617]],[[88456,53380],[-55,80]],[[88270,57169],[-45,28]],[[84667,65135],[75,33]],[[83598,67673],[67,-11]],[[69559,79564],[92,-108]],[[69483,79953],[67,145]],[[69550,80098],[580,-281],[473,-129],[159,117]],[[81527,78194],[32,-8]],[[53537,85618],[-114,-84]],[[83966,84800],[-133,27]],[[48118,91249],[-189,96],[-308,-288]],[[17809,93644],[14,69]],[[17796,93510],[13,134]],[[17415,93103],[228,12],[153,395]],[[53307,10411],[78,-55]],[[55323,10749],[9,6]],[[70620,16978],[3,6]],[[29629,74258],[9,-133]],[[46096,97819],[78,-376]],[[47808,98675],[-108,-725],[-362,-475]],[[78647,60412],[-538,671]],[[93426,27704],[-49,298],[-264,538],[-432,542]],[[58337,22860],[-17,-582],[-163,-892],[-16,-1090],[48,-398],[-89,-1297],[-119,-326]],[[42469,11981],[270,-96],[479,20],[410,-207],[303,16],[146,-161],[552,31]],[[17379,66777],[-348,927],[-161,1137],[187,293],[14,297],[-378,1396]],[[86696,42459],[7,502],[-506,273]],[[86651,41667],[243,-534],[178,-31]],[[86539,49376],[-226,-1272]],[[85913,47815],[-125,191],[229,734],[426,81]],[[86127,42842],[-64,-110],[-410,5],[-308,-434]],[[86476,40421],[221,362]],[[86826,40583],[138,348],[-7,326]],[[88563,49459],[-80,193],[103,780],[167,55]],[[88982,50072],[-339,327]],[[86987,41337],[299,-246]],[[86862,40529],[-165,254]],[[86697,40783],[47,282],[243,272]],[[75001,41911],[202,17],[118,-272]],[[73237,42376],[17,296],[-157,147],[6,394],[-216,186]],[[72804,44838],[152,195],[-51,561],[-520,194]],[[72635,45694],[-103,-197]],[[72259,45045],[491,-67]],[[69075,43382],[44,363],[368,-61],[47,-178]],[[69260,42832],[-201,60]],[[70250,48992],[267,-148]],[[70668,48886],[227,123],[15,453],[-338,274]],[[70643,49040],[-84,361],[-253,77],[13,-355]],[[72930,49436],[-196,168]],[[72734,49604],[200,145],[-30,-260]],[[86051,47979],[7,218],[238,359]],[[86367,41166],[-14,280],[299,205]],[[84220,42173],[-46,420]],[[84365,55539],[197,-385],[136,-74],[359,149],[39,332]],[[82261,54964],[9,217],[202,212],[241,-272],[-69,-193],[-391,24]],[[81128,63328],[-55,492],[-204,147]],[[78179,61343],[-259,179],[-64,-152]],[[80733,59317],[277,159],[246,-548],[-272,-560]],[[77332,57461],[-5,-210]],[[77328,57264],[-101,-400]],[[74477,57445],[221,-256]],[[77329,58260],[156,94]],[[81496,71113],[-200,-420]],[[81185,71462],[354,7],[-36,-358]],[[79012,66129],[91,258],[181,5],[11,-595]],[[83385,67785],[-17,-323],[148,-88],[236,237]],[[87172,60665],[-366,263]],[[86057,55397],[175,221],[325,-113],[152,132],[319,4],[232,-307],[386,-18],[331,232]],[[89199,52113],[278,-418],[156,-19],[276,514],[216,549],[150,-114],[379,768]],[[80804,78138],[82,469],[441,-68]],[[81904,84793],[-131,286],[88,532]],[[81861,85611],[384,-242],[301,-74],[55,-328]],[[85655,94996],[-95,-425]],[[85403,93310],[49,-728],[232,-50]],[[74172,65579],[333,-133],[159,600],[-48,234],[-230,296],[-194,86]],[[74133,66123],[47,-532]],[[74351,65456],[15,-268],[423,-1056]],[[74478,66402],[176,502]],[[69862,67499],[-81,616],[-371,477],[-225,13]],[[74142,66108],[53,553]],[[75728,68903],[169,332],[115,445]],[[73929,65143],[65,-657],[182,-620],[-58,-206]],[[76324,64768],[19,234],[-213,11]],[[76130,65013],[203,-260]],[[63095,82323],[502,42]],[[52335,83112],[-237,29],[-70,174]],[[45633,85441],[-121,-151],[38,-440],[158,-221]],[[45628,84338],[510,-6],[53,129]],[[46007,85411],[25,-641]],[[52259,73328],[109,880],[220,-22],[190,-346],[366,-389]],[[47383,81088],[61,166],[-51,877]],[[47618,80950],[204,214],[-5,489],[-160,640],[-145,257],[-191,-133]],[[49848,72416],[-439,245],[-338,-187],[-396,101],[-339,-7],[-231,-253]],[[49316,71650],[-83,881]],[[48952,71927],[-1,559]],[[50943,59534],[389,27],[77,-102],[0,-472]],[[56031,54868],[375,274]],[[47751,61647],[87,-545],[496,40]],[[48616,61959],[-429,10]],[[48037,61932],[-21,-251]],[[58353,63925],[-76,147],[-34,569]],[[62863,62177],[161,-510],[410,-9],[178,340],[52,813]],[[68841,57730],[-19,-323],[246,-234],[145,473]],[[66067,36706],[126,-444]],[[65546,34071],[264,749],[98,636]],[[69104,31443],[532,-92],[110,-114]],[[73450,32473],[97,586]],[[72937,32859],[524,-388]],[[55514,24273],[15,871]],[[55555,25109],[207,-116]],[[49911,30065],[11,263],[-183,112]],[[55486,37553],[-363,14],[11,369]],[[50962,39186],[138,-371],[258,-27]],[[60687,37447],[217,534],[452,-8]],[[73757,32014],[555,-148]],[[73881,32959],[-106,-915]],[[76672,37036],[680,-266]],[[76042,35779],[233,-328],[400,-129],[602,-568]],[[71199,31654],[302,106]],[[70558,38636],[381,-232],[120,-220],[-75,-414],[-154,-33]],[[80034,38526],[-210,56],[-634,364]],[[81136,28124],[275,57],[21,589]],[[85806,37501],[238,150]],[[88616,38813],[321,-720],[270,-254],[442,-1008],[29,-330]],[[90220,33638],[53,-151],[352,-159]],[[91048,33416],[199,62],[185,409]],[[88968,38054],[-81,-649]],[[89673,36490],[55,-415],[152,-55],[98,360]],[[82760,27519],[435,-627]],[[83366,27059],[-39,218]],[[83354,27063],[97,-271],[-79,-198]],[[87457,24986],[94,381],[-84,319]],[[85968,26608],[113,-231],[-31,-299],[-324,-131]],[[86218,37560],[-135,-238]],[[94915,27429],[-229,96],[-82,299],[195,491]],[[94770,28571],[151,536],[260,24],[42,-486],[158,-332]],[[95131,25035],[65,-223],[308,-328],[155,-46]],[[93043,32387],[292,-360],[314,-829],[145,-107]],[[96752,26175],[156,-90],[343,520],[61,470]],[[92863,19275],[-155,-317],[-272,-68]],[[93739,22997],[10,-227],[-197,-349],[-39,-332]],[[94707,24302],[-124,136]],[[94468,24947],[-171,-47],[-208,-407],[-36,-577],[-103,-486]],[[87850,25909],[-383,-223]],[[87538,32090],[22,586]],[[90232,26548],[-140,-196]],[[90184,26055],[148,40],[-100,453]],[[85209,30168],[55,-458],[325,-657],[12,-245],[315,-152],[183,-544]],[[61548,48451],[51,-130],[954,22]],[[53469,48157],[393,-36],[54,-117],[-4,-1013],[-411,-31],[-173,314],[82,870],[59,26]],[[53429,46529],[17,500]],[[53246,44519],[-3,520],[114,140]],[[53862,48188],[308,-89],[17,-338]],[[48867,53079],[-209,-336],[-176,71],[-30,405],[151,132]],[[29604,74775],[184,32],[214,-281]],[[38090,75111],[136,-450],[337,-295],[313,31]],[[39406,68270],[87,373],[-277,0],[-13,-278],[203,-95]],[[34655,44249],[130,-117],[18,-357]],[[34396,42188],[-315,514]],[[33788,37602],[-35,354],[125,474],[427,990],[77,724],[179,359],[-47,1038],[-74,16],[-50,657]],[[34066,42727],[194,207],[242,627]],[[34670,44565],[-440,-82],[-107,-534]],[[22368,36495],[-134,203],[-88,513]],[[19326,64530],[33,275],[-151,1087]],[[19737,65693],[-139,-469],[-530,111]],[[18988,65286],[13,-414],[143,-412]],[[14572,58551],[-221,983],[-159,1071],[264,798],[-163,458],[-83,867],[-118,66],[-51,383]],[[6995,60017],[231,-800]],[[7954,59281],[252,813]],[[7901,59421],[-209,282],[-58,276]],[[7332,60194],[329,134]],[[13945,52398],[-77,-25],[-73,555],[61,413],[195,111]],[[6041,57656],[757,283]],[[6790,57900],[502,544],[53,215]],[[8819,58961],[-346,449],[-151,692]],[[7529,59206],[128,158],[752,235]],[[8804,64436],[-67,576]],[[8464,63921],[271,42]],[[2121,42808],[-431,467]],[[2375,42401],[-94,-863]],[[2316,41174],[-249,-279]],[[1850,41626],[423,-84]],[[3994,37559],[-282,1524]],[[3774,42634],[-198,-85]],[[4561,49155],[568,234],[300,-30]],[[6204,49558],[503,199],[505,-272]],[[5432,49345],[324,-1710]],[[1430,40874],[401,343]],[[2103,42386],[-325,128],[-287,236]],[[1885,43671],[77,449],[402,108]],[[3120,38142],[-126,407],[-196,1282]],[[2104,42323],[29,553],[102,242]],[[715,28585],[152,207],[201,-151],[196,306],[180,-48]],[[4079,28573],[-100,-515]],[[3530,31160],[164,-439],[53,-369],[-118,-495],[490,-1014],[-43,-272]],[[1131,27050],[66,-497]],[[5625,24536],[43,361],[-75,723]],[[3540,20853],[19,584],[-98,130],[105,420],[-134,373],[-187,24],[-137,561],[33,634],[265,257],[340,186],[71,334]],[[4610,17722],[13,-120]],[[4468,17705],[47,-167],[200,128]],[[4515,17552],[30,-651],[-90,-259],[219,-940]],[[2178,19668],[54,-86]],[[4724,17754],[230,184],[541,-137],[258,222],[324,-112],[376,162],[164,-471],[51,-375]],[[3453,14842],[105,-692],[313,-676],[132,-497]],[[4437,10961],[-64,-149],[189,-650]],[[6115,12579],[7,352]],[[7063,12864],[-557,-203]],[[12573,12398],[-183,279]],[[12669,12436],[-202,-170],[-289,-39]],[[8176,6345],[160,-551]],[[8475,5386],[-223,-155]],[[8288,5046],[205,136]],[[8262,5125],[-91,564]],[[8073,6367],[196,39],[591,-455],[35,-95]],[[7626,3355],[286,-345]],[[10755,8796],[147,598],[-112,367],[-247,297]],[[8761,1067],[48,-281],[-102,-198],[-112,-588]],[[8713,3918],[125,-853],[-114,-548],[154,-991],[-112,-485]],[[8781,2150],[-357,-272],[-130,120],[-37,314],[-238,319],[71,260]],[[31953,45261],[-52,521],[160,720]],[[31768,43903],[197,707],[-8,644]],[[38416,48165],[-44,1113],[84,23],[-33,1345]],[[8877,61659],[56,282]],[[16606,42488],[-193,-26],[-232,-984]],[[32140,48195],[257,36],[386,689],[121,6],[583,-376]],[[58051,47893],[94,379],[18,702],[134,411]],[[34871,43772],[69,-248],[156,23]],[[19895,55249],[241,340],[326,-132],[65,298],[310,178],[307,388]],[[19516,58243],[25,-808],[186,-861],[129,-1315],[39,-10]],[[2875,17250],[277,-62],[556,349],[228,-172],[151,169],[496,232],[141,-12]],[[62563,17445],[552,-963],[62,-282],[233,-403]],[[90092,26352],[-177,-148]],[[86131,42324],[376,-93]],[[86197,43234],[-128,-325]],[[86069,42909],[-11,-159]],[[8841,63345],[-71,527],[-107,245],[-58,511]],[[63872,41353],[28,247]],[[57945,13295],[18,218],[326,329],[65,368],[285,32],[172,186],[41,383],[200,524]],[[5352,57369],[115,678],[279,387],[802,352],[236,568]],[[1369,42048],[-163,503],[96,177],[22,474],[-122,542],[290,1093],[249,139]],[[3228,53048],[-79,818],[154,351],[-144,400],[8,360],[171,601],[265,96]],[[1969,44139],[-97,544],[-138,332]],[[7231,60113],[99,78]],[[8873,60081],[595,234]],[[6696,58940],[423,90]],[[7119,59030],[410,176]],[[8409,59599],[366,260],[93,220]],[[8868,60079],[5,2]],[[7351,58693],[348,216]],[[7699,58909],[226,133],[26,215]],[[8820,58962],[144,425],[-24,241]],[[7029,59004],[-153,1036]],[[6876,60040],[119,-23]],[[6798,57939],[-83,453]],[[5429,49359],[775,199]],[[7341,48439],[-407,-354],[-305,32],[-970,-512]],[[2091,43833],[-122,306]],[[1947,43383],[-62,288]],[[2282,43399],[-335,-16]],[[1839,41226],[-50,380]],[[2281,41538],[35,-364]],[[3124,38157],[-4,-15]],[[3120,38142],[-159,-1032],[-10,-398]],[[3066,42530],[303,703]],[[3480,42622],[-108,607]],[[3588,42540],[-120,70]],[[3789,42627],[558,217],[272,193],[251,-153],[357,70]],[[4000,37563],[-148,-332]],[[4874,9055],[148,-201],[-9,-500]],[[8245,5753],[7,-515]],[[8171,5689],[72,63]],[[8111,6757],[65,-412]],[[8493,5182],[162,-75]],[[10928,61708],[115,522],[-65,502],[74,352]],[[11052,63084],[228,1077]],[[18886,64989],[-19,151]],[[18927,64334],[-41,655]],[[18519,65069],[175,-731],[242,-3]],[[19055,65851],[301,81],[321,-45],[60,-194]],[[18936,64335],[390,195]],[[19183,61837],[1,287],[-145,433],[-91,940],[-21,837]],[[30011,74539],[-282,-385]],[[24839,59788],[258,968],[-114,786],[-228,760],[-196,399],[79,1074]],[[18902,58216],[418,104],[378,-62],[447,230],[276,333]],[[14451,52685],[-316,333]],[[14051,53452],[315,213]],[[14434,52674],[-31,-162],[-458,-114]],[[18599,51082],[169,543],[463,190],[257,-209],[61,-395]],[[9203,38100],[-251,-231]],[[8472,5385],[452,482]],[[18504,4741],[-245,607],[-354,616],[-75,422]],[[17830,6386],[-1,88]],[[21023,25598],[-6,52]],[[21017,25650],[247,82]],[[19195,26213],[417,223],[690,-128],[347,-499],[368,-159]],[[22206,37745],[201,-42],[36,-217]],[[22146,37211],[-49,381],[109,153]],[[34657,41244],[591,73]],[[34999,43907],[-108,675],[-221,-17]],[[34123,43949],[170,-339],[395,87]],[[34882,43167],[137,491],[-20,249]],[[34290,43013],[280,-80]],[[34570,42933],[312,234]],[[34631,42223],[-235,-35]],[[48251,61363],[-232,318]],[[49334,71597],[243,3],[217,211],[54,605]],[[48105,72315],[2,-170],[346,-273]],[[48453,71872],[389,53],[262,-69],[212,-206]],[[49330,71591],[69,424],[105,102]],[[52451,83733],[-421,1]],[[52604,83166],[-269,-54]],[[52905,83756],[-91,-549],[-210,-41]],[[52812,84395],[93,-639]],[[52085,84182],[171,270],[556,-57]],[[52033,83723],[52,459]],[[52028,83315],[5,408]],[[46186,84450],[-307,494]],[[46008,85385],[-375,56]],[[45503,85093],[300,15]],[[45879,84944],[19,-604]],[[46072,84953],[-192,152]],[[45625,84340],[209,656]],[[45622,85442],[212,-446]],[[62900,82781],[195,-458]],[[62900,82764],[268,-149],[209,36]],[[63591,82386],[-3,295]],[[63098,82312],[-311,-297]],[[67546,78915],[145,205]],[[81327,78539],[-6,-492],[-172,-453],[-124,-72]],[[80833,77791],[-29,347]],[[81014,77525],[-181,266]],[[81005,77550],[-1,452]],[[82099,84378],[-216,93],[21,322]],[[82601,84967],[-115,-515],[27,-453],[-235,-328]],[[82250,84726],[-330,48]],[[85194,93255],[217,41]],[[85653,94994],[190,-505]],[[82002,85557],[117,-353]],[[82258,83662],[-56,576],[48,488]],[[72939,32872],[-109,90]],[[73994,31963],[131,413]],[[71467,31516],[-277,59]],[[86767,41774],[289,120]],[[86652,41651],[115,123]],[[86507,42231],[189,228]],[[86058,42750],[72,-439]],[[86497,42234],[154,-567]],[[86995,41245],[-229,526]],[[86996,41018],[-259,11]],[[87151,40697],[-290,-173]],[[86637,48132],[-403,-397]],[[86234,47735],[-321,80]],[[90102,33654],[121,24]],[[90625,33328],[427,91]],[[91050,33411],[-102,396]],[[91338,33646],[-373,167]],[[89975,36381],[3,-1]],[[89978,36380],[177,-64]],[[89678,36501],[297,-120]],[[97310,27048],[-42,312],[-334,295],[-234,75],[-261,-137]],[[93890,26523],[-51,386]],[[87053,29807],[580,14]],[[63664,62811],[-403,-187],[-465,-55],[-5,-128]],[[6143,6565],[-639,-155]],[[8101,2887],[-196,151]],[[10062,91240],[3,-538],[-78,-37]],[[9926,85164],[434,-405]],[[9988,83945],[179,21],[89,380],[140,85],[16,353]],[[7212,49485],[244,-159],[58,-464],[-173,-423]],[[5943,58059],[98,-403]],[[8511,64325],[293,111]],[[8737,65012],[-168,120]],[[2228,49933],[87,650],[189,214],[129,566],[222,332],[65,370],[255,436]],[[18648,60807],[255,-60],[128,302],[-85,196],[223,561]],[[18175,50256],[424,826]],[[18578,28702],[176,-1061]],[[26764,52774],[-637,285],[-201,215]],[[28460,52743],[-98,811],[-190,451]],[[28172,54005],[-381,300]],[[35396,80464],[-116,-98],[-634,402],[-303,-195]],[[37314,78737],[136,-281],[549,-512],[240,-137]],[[39355,57735],[38,72],[74,1344]],[[31614,57675],[211,-413],[192,-36],[606,-676]],[[38047,27936],[54,107],[343,-173],[130,-503]],[[37714,13330],[-117,-170],[-112,-669],[-197,-367],[-40,-612]],[[52269,9760],[-169,-427],[-157,-45]],[[55534,24246],[243,237],[-15,510]],[[55514,24273],[293,-241],[137,316],[198,71]],[[56142,24419],[167,-9],[18,325]],[[55532,25176],[257,116]],[[55614,38067],[50,-569]],[[55134,37936],[223,175],[257,-44]],[[51613,44680],[-23,1710],[53,371],[-5,1088]],[[54011,46958],[-108,-203],[-337,-80]],[[54187,47761],[-176,-803]],[[51169,59000],[-246,95],[-290,-109],[-202,-218]],[[53242,47543],[478,20]],[[48183,61956],[-149,-24],[-77,457],[-128,129]],[[46107,66754],[-94,305],[65,462]],[[52432,83606],[-157,42],[-506,-673],[-807,-461]],[[53775,77635],[-39,-355],[94,-674]],[[55847,73628],[-391,-252]],[[55456,73376],[119,-676],[370,50],[60,232]],[[48105,72297],[319,-64]],[[48122,70780],[111,768],[191,685]],[[49515,72070],[49,-408]],[[50956,70794],[-312,491],[-886,768]],[[55712,73146],[293,-182]],[[48001,91366],[69,234],[295,217],[81,234]],[[59391,76565],[336,-264],[278,62],[269,-114]],[[55161,69301],[-7,321],[-244,-14],[17,-363],[234,56]],[[55361,70905],[22,226]],[[57800,17312],[-221,289]],[[56635,13909],[605,-169],[432,-327],[273,-118]],[[63701,17818],[363,-50],[354,67],[242,168],[278,-4],[571,-288],[101,220]],[[63410,15797],[281,-736],[195,-365],[618,-402]],[[62545,18129],[212,221],[595,-225],[349,-307]],[[62546,18137],[17,-692]],[[62605,19170],[-59,-1033]],[[65333,35572],[40,-754],[-56,-314]],[[62462,36650],[381,-295],[346,-85],[457,-337]],[[65623,37098],[-163,-450],[-127,-1076]],[[62679,31660],[-213,199],[-509,-41],[-419,227]],[[62270,48310],[55,356]],[[62325,48666],[-333,728],[-186,-25]],[[61806,49369],[-251,-198],[-16,-696]],[[61539,48475],[9,-24]],[[61643,49266],[379,-383]],[[63588,82681],[-212,-27]],[[79821,88244],[-268,-75],[-78,-1174],[74,-954],[211,-667]],[[73664,71503],[361,389]],[[74838,73783],[500,481],[221,105]],[[73559,71006],[-160,241]],[[74354,66162],[297,31]],[[74344,66035],[288,-94]],[[74632,65941],[530,-422],[547,119],[244,-479],[177,-146]],[[76130,65013],[115,-70]],[[78129,61090],[50,253]],[[77919,61059],[210,31]],[[77856,61370],[57,-310]],[[76055,59385],[-224,-179]],[[76516,58870],[151,-244]],[[69670,58566],[45,-701],[168,-455]],[[75477,52113],[-339,433],[-290,52]],[[70572,49736],[-325,133]],[[72385,45788],[-396,-127],[-72,-136],[153,-396]],[[72184,45128],[223,-363],[397,73]],[[73011,42755],[-88,94]],[[73142,42402],[-131,353]],[[72923,42849],[-37,574]],[[69060,42885],[15,497]],[[69517,43312],[20,205]],[[69059,42892],[-130,1]],[[70756,37907],[297,218]],[[75027,41035],[-105,7]],[[75321,41656],[-161,-585],[-133,-36]],[[74922,41042],[-186,128],[75,434]],[[74811,41604],[190,307]],[[73547,33059],[169,799]],[[73461,32471],[356,-76]],[[72845,32035],[574,34]],[[73419,32069],[352,-17]],[[73419,32079],[31,394]],[[72656,29834],[121,-32],[52,335]],[[71137,31301],[62,353]],[[68351,30104],[233,581],[735,105]],[[73836,25899],[289,147],[142,287],[213,848],[58,510],[150,605],[93,699],[155,509],[-6,320]],[[71924,26505],[246,-307],[334,-55],[139,-164],[38,-611],[273,-430],[37,-211],[-53,-1297]],[[80053,31391],[-59,111]],[[81391,28145],[-100,235]],[[83200,26566],[4,324],[152,192]],[[79179,38962],[69,448],[-153,847]],[[79158,37907],[-119,291],[143,360],[-3,404]],[[80112,38537],[647,-207]],[[80052,37637],[-21,622],[92,290]],[[78121,47202],[308,573]],[[78541,47900],[291,578]],[[79367,49943],[-22,-300],[-183,-228]],[[78832,48478],[135,117],[22,290]],[[78429,47775],[112,125]],[[80872,54008],[-204,118],[-164,-132]],[[80660,53669],[215,335]],[[84663,55695],[-196,246]],[[80763,58343],[-196,241],[41,550],[125,183]],[[82272,84754],[11,361]],[[84818,88469],[204,438],[169,575],[304,688]],[[85480,93969],[-77,-659]],[[85684,92532],[161,-35]],[[85389,95886],[264,-892]],[[82519,93894],[891,-217],[189,-98]],[[84826,93351],[368,-96]],[[87978,55550],[-85,651],[77,334],[162,175],[138,459]],[[86296,48556],[277,-155]],[[87694,42027],[-185,-68]],[[87286,41091],[-132,-395]],[[88305,39169],[-258,60],[-189,226]],[[87858,39455],[-173,233]],[[90248,43169],[20,276]],[[87098,41018],[-102,0]],[[90223,41168],[212,-767]],[[87562,32651],[-69,193]],[[84417,35909],[-243,102],[-179,-123]],[[86106,28104],[-40,-1088],[-197,-746]],[[91264,27436],[-224,-10]],[[89904,26174],[-172,-237]],[[91055,22341],[76,247],[65,1507]],[[95805,15662],[321,487]],[[95079,25671],[-338,266]],[[95090,25717],[155,441]],[[94073,23615],[-132,-202]],[[80001,87501],[-65,-326],[14,-515],[-80,-751],[100,-215],[-122,-955],[-120,-144]],[[81308,86494],[100,425],[-254,103],[-94,-106]],[[47603,80950],[-220,138]],[[49115,72019],[48,-532],[347,-251],[200,45],[300,302],[21,192]],[[49791,70706],[-536,377],[-236,337],[-26,469]],[[1438,41475],[-15,-169]],[[8039,60078],[167,16]],[[8206,60094],[107,46]],[[8725,65003],[117,632]],[[72675,70722],[87,-103]],[[72443,71124],[175,-340]],[[70364,68413],[119,-550],[162,-347],[-76,-612],[40,-456],[-159,-271],[-262,-52]],[[70147,66091],[-219,-134]],[[66660,66841],[331,-155],[279,-241]],[[72766,70624],[134,-135],[153,-459],[-47,-237]],[[72134,72787],[-26,-468],[81,-387],[-82,-219]],[[72107,71713],[215,-212],[121,-377]],[[71122,74633],[198,-370],[373,-68],[129,-196],[265,42],[138,-286],[-90,-957]],[[70801,76260],[-58,-426],[424,-691]],[[70364,76980],[-445,57],[-161,274],[-153,-64]],[[70364,76980],[236,-159],[138,-487]],[[70741,73316],[83,-520],[-28,-438]],[[69966,75914],[175,-137],[45,-681],[324,-1197],[231,-583]],[[70095,70414],[312,352],[127,894]],[[70095,70414],[-228,-332],[-83,-319],[3,-490],[-77,-221]],[[71600,67152],[387,-172],[192,-366],[241,-131]],[[71211,72080],[368,-189],[345,29],[183,-207]],[[67963,79227],[321,37],[102,259],[232,-50],[340,126]],[[68050,79801],[14,316]],[[68064,80117],[-14,-316]],[[68064,80117],[181,34],[773,-103]],[[70937,72073],[127,-27]],[[69253,77624],[-164,-690]],[[67367,64380],[854,-91],[264,-73],[398,-479]],[[68883,63737],[-1,-70]],[[69007,63870],[-124,-133]],[[69995,64680],[157,-218],[232,33]],[[70856,72098],[81,-25]],[[70937,72073],[78,-170]],[[69881,67515],[52,-95]],[[69356,65328],[-64,-259]],[[69233,64933],[-226,-1063]],[[69033,63603],[-20,-779]],[[70611,71904],[-77,-244]],[[68550,66720],[391,158],[141,189]],[[71064,72046],[147,34]],[[67442,79679],[110,-420]],[[67963,79227],[65,391]],[[67480,70691],[81,93]],[[67562,62989],[-29,-626]],[[67588,63084],[-15,-103]],[[72199,71447],[126,48]],[[70959,68065],[273,-454]],[[70777,69127],[78,-707]],[[68726,72779],[266,-120],[418,-458]],[[66920,65671],[167,111]],[[68192,74093],[202,-179],[-25,-450],[357,-685]],[[68054,74211],[138,-118]],[[69788,67081],[-30,-334],[151,-758]],[[68042,75009],[-25,218]],[[67561,70790],[0,-6]],[[71015,71903],[67,-192]],[[70985,71156],[-80,-196],[35,-1107],[-163,-726]],[[69928,65957],[-49,-360],[166,-499],[-38,-373]],[[67087,65782],[497,-15],[337,93],[214,-310],[252,68],[289,-293],[776,-41]],[[70092,65265],[310,295],[443,73]],[[69647,65295],[361,-34]],[[71354,65746],[549,110],[124,-203],[256,37]],[[69253,77624],[-25,50]],[[69228,77674],[12,39]],[[71167,75143],[0,-46]],[[71121,74715],[1,-82]],[[72135,72798],[-1,-11]],[[68186,78327],[313,-496],[185,-137],[544,-20]],[[67963,79175],[179,-59],[53,-222]],[[70805,72298],[-75,-151]],[[71231,76179],[-64,-1036]],[[71206,77427],[-1,-883],[42,-129]],[[71122,74633],[-153,-697],[25,-1081],[-116,-557]],[[71110,65595],[398,-628],[265,176],[428,71]],[[68070,69166],[-84,-804],[-161,-834],[-323,-19],[46,-309],[-74,-637],[-204,-118]],[[67270,66445],[-184,-639],[149,-405],[250,-401],[17,-277]],[[67728,72076],[-21,-451],[-107,-119],[-39,-716]],[[68051,74497],[-122,-699],[-89,-1574],[-72,-153]],[[67804,75860],[213,-633]],[[67634,78970],[-32,-129]],[[67832,62788],[18,-470]],[[72283,68183],[-30,-169],[-528,-895]],[[72731,70741],[-53,-230],[-225,-246],[114,-457],[-31,-351],[128,-303],[-72,-331],[-294,-549]],[[72325,71495],[269,127],[837,-349]],[[71301,72747],[176,157],[393,114],[265,-220]],[[69054,70112],[321,232],[73,198],[739,1098],[424,264]],[[72368,72781],[164,198],[398,134],[419,373]],[[71419,75823],[155,-101],[301,48],[160,200]],[[67603,78980],[107,130]],[[67253,78857],[294,252]],[[67638,79120],[27,25]],[[66869,78559],[186,208]],[[71232,67611],[276,-396]],[[70855,68420],[104,-355]],[[69622,67713],[166,-632]],[[72285,68218],[-2,-35]],[[72286,68224],[-1,-6]],[[69836,64110],[-114,-969]],[[70007,64725],[-12,-45]],[[69995,64680],[-159,-570]],[[69718,62978],[-20,-890]],[[70364,68413],[142,140],[271,574]],[[71082,71711],[-97,-555]],[[71064,72046],[-49,-143]],[[70845,65633],[509,113]],[[70008,65261],[84,4]],[[70777,69127],[422,543],[276,257],[238,58],[905,799]],[[69632,67980],[332,484],[400,-51]],[[69253,77624],[352,-377]],[[71167,75097],[-46,-382]],[[68987,63686],[46,-83]],[[70730,72147],[-119,-243]],[[68195,78894],[-9,-567]],[[71247,76415],[41,-227]],[[71288,76188],[-57,-9]],[[71067,65766],[43,-171]],[[67502,64723],[-14,-260],[171,-677],[-65,-481]],[[67602,78841],[70,-677],[-25,-994],[-99,-1002],[256,-308]],[[68042,75009],[9,-512]],[[72298,68274],[-12,-50]],[[71041,72207],[23,-161]],[[68103,69161],[301,650],[359,65],[291,236]],[[70611,71904],[70,-98]],[[72134,72787],[234,-6]],[[71288,76188],[131,-365]],[[67547,79109],[91,11]],[[67055,78767],[198,90]],[[67564,78898],[110,194]],[[14840,61223],[19,515],[82,179],[251,83],[489,1082],[130,163]],[[23146,74490],[22,-246],[-129,-602],[60,-1267],[-239,-137],[-178,-1078]],[[23336,70463],[76,140]],[[18727,67422],[81,-725],[209,-662],[66,-17]],[[14833,57160],[381,-53],[461,178]],[[18720,60571],[125,-37]],[[19575,60374],[271,-375],[257,-49]],[[21802,71782],[-105,1222]],[[21851,71759],[64,45]],[[20717,62571],[348,-64]],[[21564,62551],[402,-76],[142,-276],[189,187],[425,209],[483,591]],[[21201,62354],[127,85]],[[23251,60601],[6,-40]],[[19241,66602],[35,-326]],[[20123,67233],[182,-905]],[[20838,69218],[-225,-521],[-488,-1452]],[[17373,66783],[90,-10]],[[17790,65216],[19,-225]],[[19279,66276],[39,-395]],[[19277,66264],[-1,12]],[[20604,63054],[61,-208]],[[17707,62611],[34,-616]],[[23737,53614],[19,-596],[223,-487]],[[19711,56779],[435,430],[193,529],[-62,590],[178,407]],[[23251,60601],[366,298],[247,369],[312,747],[163,78],[165,331],[169,62]],[[24305,68112],[-120,-232],[-15,-337],[184,-773],[-56,-358],[143,-103],[-92,-266],[325,-350],[197,-583]],[[23351,70332],[-1,-1201],[53,-380]],[[23704,68984],[294,-138],[240,18],[159,-409]],[[26023,53304],[64,202]],[[21030,53216],[141,-570],[-104,-93],[-391,380],[-380,-303],[-388,-165],[66,-371],[-475,-509],[18,-220]],[[20585,70321],[49,13]],[[21065,62507],[136,-153]],[[21328,62439],[236,112]],[[20634,70334],[198,-813],[6,-303]],[[19381,65315],[345,-384],[184,-5],[231,-292],[149,-944],[270,-236],[44,-400]],[[20665,62846],[52,-275]],[[17741,61995],[133,-33]],[[24397,68455],[-92,-343]],[[23290,70587],[61,-255]],[[20649,70490],[103,149]],[[58939,68692],[87,-35]],[[59025,68646],[31,9]],[[56681,70117],[-194,90],[-232,370],[-7,528]],[[57597,68731],[196,198],[662,113],[229,-328],[255,-22]],[[59549,68546],[504,-222],[100,207],[241,28]],[[59007,68745],[49,-90]],[[59056,68655],[493,-109]],[[55079,66872],[164,465],[200,208],[74,334],[168,28],[260,698]],[[54429,66177],[459,10],[212,522]],[[57428,65719],[32,109]],[[57419,68845],[55,61]],[[54266,62259],[-45,-63]],[[54726,59053],[4,-128]],[[57514,68793],[-22,-753],[-142,-928]],[[59437,60430],[205,-96]],[[58747,61589],[117,-113]],[[54222,61981],[293,260],[269,79],[492,-75],[1236,78],[187,207]],[[58223,62279],[100,-245],[424,-445]],[[59093,60699],[344,-269]],[[58904,61421],[51,-195]],[[58955,61226],[124,-160],[14,-367]],[[56962,66551],[-239,-651],[239,-447]],[[57350,67112],[-350,-325]],[[56968,65301],[131,-279],[-150,-226],[-12,-470],[-107,-134],[-40,-579],[-201,-305],[107,-307],[3,-471]],[[56699,62530],[88,-592],[-49,-428],[144,-426],[-99,-449],[36,-263],[-225,-286],[73,-457],[68,-1028]],[[60395,65984],[-17,-80]],[[54651,58189],[119,2]],[[59918,64044],[19,946]],[[59888,64052],[-1,-157]],[[59076,66243],[35,549],[-87,105],[127,1148],[-125,403],[-14,495],[-531,1049],[-237,183],[-331,88]],[[60161,67514],[174,-205],[60,-1325]],[[60378,65904],[-373,-23],[-30,-806]],[[59940,65095],[-3,-105]],[[59937,64990],[-819,29],[-330,-693],[-87,-24]],[[57883,70108],[212,-331],[122,-471],[-18,-1300]],[[57749,71044],[191,-515],[-24,-161]],[[58309,67860],[-21,-1881],[96,-831],[141,-184]],[[59839,61955],[-64,-653],[-88,-220],[27,-456],[-87,-477],[174,-345],[-10,-337],[-143,-426],[13,-647]],[[54929,64489],[571,178],[376,543],[240,-21],[737,164]],[[57107,65422],[331,227]],[[57462,65648],[337,307],[874,23],[206,155]],[[53907,58907],[134,-21]],[[54736,58913],[292,-61],[396,253],[441,-92],[405,-297],[92,-347]],[[54445,58893],[290,3]],[[60929,58946],[662,-75],[533,62]],[[59601,70093],[-123,-497],[82,-737],[-43,-700],[-97,-679],[46,-625],[-217,-485]],[[59507,70964],[59,-497]],[[61866,64988],[-36,-20]],[[62375,57598],[-65,484],[-125,12],[-351,726],[-200,851],[-108,68]],[[61710,64776],[-480,36],[-296,-150],[-205,-367],[-126,-787],[292,-1374]],[[60895,62134],[70,-908],[274,-1165],[185,-144]],[[54181,64621],[509,224]],[[58217,58014],[214,-118],[581,-90],[291,160],[91,250],[267,178]],[[59661,58394],[208,-330]],[[53979,59638],[205,152],[246,-146],[204,-279]],[[54770,58191],[115,-294],[318,-267],[304,408],[335,91]],[[55845,58135],[517,234]],[[58169,62951],[380,12],[248,-121],[372,132]],[[59839,61955],[1029,181]],[[60895,62134],[1221,-195],[319,261],[80,-60]],[[60868,62136],[24,-2]],[[57000,66787],[-38,-236]],[[54730,67185],[349,-307],[129,-342],[308,-179],[304,-17],[191,-293],[434,-390],[537,-357]],[[57134,65287],[239,-204],[343,63]],[[59888,64052],[30,-8]],[[54168,67137],[290,44]],[[54735,58896],[1,17]],[[57491,68841],[23,-48]],[[56881,71077],[-170,-851],[46,-408],[257,-273],[460,-639]],[[58309,67860],[370,-325],[35,-630],[290,-663]],[[57597,68731],[35,-153]],[[59154,66284],[154,-400],[298,-410],[202,-120],[637,-1013],[273,-11],[202,-365],[541,-23],[377,-394],[322,-571]],[[62157,62977],[-14,-552]],[[57841,69995],[-253,-375],[-93,-709]],[[61526,59739],[-5,123]],[[58111,58178],[106,-164]],[[54041,58886],[404,7]],[[61710,64776],[108,199]],[[61818,64975],[12,-7]],[[56362,58369],[223,-16]],[[54198,61953],[24,28]],[[58911,66201],[251,146]],[[56982,65300],[26,-59]],[[57474,68906],[123,-175]],[[57632,68578],[338,-361]],[[57973,68216],[336,-356]],[[57913,70263],[-30,-155]],[[57916,70368],[-3,-105]],[[56853,65353],[-2,58]],[[54672,59154],[54,-37]],[[60945,59067],[19,-118]],[[57008,65241],[126,46]],[[57134,65287],[-27,135]],[[57107,65422],[-145,31]],[[56962,65453],[-111,-42]],[[58521,64319],[-259,-42]],[[9574,46999],[374,497],[106,-122]],[[10404,48451],[184,-172]],[[10054,47374],[350,1077]],[[10404,48451],[306,1262],[117,304]],[[7963,29368],[-40,926],[115,581]],[[8853,47135],[327,357],[394,-493]],[[2841,46172],[28,-458],[-165,-66]],[[1166,38822],[181,71]],[[3068,35336],[356,171]],[[3376,35746],[593,232]],[[11930,53083],[151,-61],[99,-448],[157,-125]],[[2205,46456],[-145,-438]],[[8805,50728],[425,-433]],[[4617,50209],[112,-242],[220,-1346]],[[7468,29121],[344,47],[224,230],[245,-13]],[[5930,53157],[38,-362],[-60,-461]],[[5852,53648],[69,-434]],[[1290,42857],[202,-66]],[[1921,41599],[-125,-62]],[[731,38669],[225,-156],[189,203],[221,683]],[[1471,39841],[287,118]],[[1491,38972],[86,-22],[178,396],[37,592],[126,33]],[[1918,39971],[148,24]],[[1724,40282],[34,-323]],[[1758,39959],[27,-18]],[[11941,55906],[17,-327],[-92,-846],[-153,-350],[-11,-664],[208,-297],[20,-339]],[[11931,52983],[-3,-674],[-153,-333],[92,-646]],[[107,35287],[320,309],[199,598],[121,555],[297,302],[96,257]],[[2128,45547],[156,-53],[230,271]],[[8880,49525],[253,358],[97,412]],[[5773,50247],[182,-311],[277,105]],[[6230,50028],[402,147]],[[6430,55910],[263,12],[947,379]],[[4550,49004],[399,-383]],[[4949,48621],[173,-571],[235,-1364]],[[2540,45945],[155,31]],[[2468,37134],[12,423],[87,33],[128,898],[551,347]],[[5444,54313],[827,344]],[[1641,37042],[61,640],[127,215]],[[4622,47158],[90,140],[872,352]],[[9230,50295],[14,226],[188,302],[205,-181],[198,252],[374,22],[277,-706],[358,-169],[211,415],[1,393],[603,825],[168,53]],[[3028,49055],[382,-108],[207,40],[405,651],[262,-125]],[[3449,48969],[-181,-425],[58,-181],[-186,-814],[-128,-302],[-105,-925],[-111,-344]],[[2599,30223],[157,-297],[174,-83],[293,-446],[43,-392],[190,-409],[-219,-402],[-25,-943],[604,-496]],[[2016,31036],[22,-335],[151,46],[358,-209]],[[1974,31217],[48,-136]],[[3244,34509],[317,159]],[[3561,34668],[296,228]],[[4403,48372],[222,-1231],[-90,-465],[-242,-420],[47,-389]],[[4577,50103],[-284,-574],[257,-525]],[[4577,50103],[137,543],[176,1219],[153,422],[129,928]],[[5172,53215],[82,494],[190,604]],[[5444,54313],[-125,327],[-162,61],[0,288],[149,790],[-72,241],[200,229],[-114,237],[-110,579]],[[1549,43301],[124,370]],[[1673,43671],[230,767]],[[363,29923],[267,427],[339,113],[178,255],[140,-122],[205,474],[219,206],[274,-60],[178,216]],[[2223,31478],[273,350],[577,457],[25,223],[371,276]],[[2168,31434],[53,37]],[[4176,51097],[359,-74],[404,-610],[35,-201],[370,-522],[67,-285]],[[5908,52334],[64,-442],[-7,-543],[-240,-1325],[112,-699],[-53,-117],[139,-779]],[[5921,53214],[9,-57]],[[3561,34668],[6,142],[-345,1840]],[[5921,53214],[205,81]],[[5172,53215],[226,-275],[532,217]],[[11397,60201],[545,237],[414,328],[158,-90],[472,409],[221,-88],[359,32],[191,174],[294,-19],[218,-233],[188,5],[383,267]],[[6288,53149],[100,-757],[129,-405],[198,-1096]],[[9625,61155],[324,406],[140,477],[299,-4],[137,-486]],[[1620,43133],[-71,168]],[[1714,45001],[-84,-956],[94,-146]],[[1536,28895],[-12,-625],[201,-541],[243,-103],[123,-251],[79,-780],[452,-720],[213,-124],[315,510],[69,-144],[371,-28],[268,292],[152,-51]],[[6378,53520],[-37,-207]],[[8548,65378],[-113,-480]],[[6691,58861],[82,-52]],[[7137,60050],[67,-451],[221,-407],[50,-440]],[[7360,60701],[110,-883],[92,-205]],[[7771,61092],[29,-216]],[[10877,61692],[-363,-149],[-246,-400],[18,-172],[-220,-380]],[[3345,54249],[84,-434]],[[7136,60056],[1,-6]],[[11799,65737],[87,-782]],[[1486,39018],[5,-46]],[[2464,45827],[76,118]],[[6112,47341],[125,20]],[[1641,37042],[-166,-380]],[[2115,40102],[13,-157]],[[6126,53295],[191,75]],[[10296,60232],[456,-246],[645,215]],[[10211,60672],[85,-440]],[[6297,50043],[69,-435]],[[6742,50716],[-71,-520]],[[11971,66197],[31,-73]],[[8980,60872],[645,283]],[[8299,62816],[261,-90]],[[5826,46997],[57,-355],[320,-849],[115,-68],[84,-584],[114,-284],[-116,-197],[54,-633],[-129,-160]],[[7875,61631],[-416,-786]],[[6767,59905],[369,151]],[[7136,60056],[49,162]],[[5071,42984],[152,-238]],[[4062,41363],[210,-145]],[[5722,57225],[182,-49],[543,151],[165,-79]],[[7841,57403],[479,267],[248,449],[158,446]],[[4803,45080],[274,114],[301,-140],[263,-349],[213,52]],[[5843,44716],[202,-555],[344,38],[124,-118]],[[4166,35594],[-100,-201]],[[2595,45232],[305,351]],[[2094,46051],[162,-25]],[[7054,58898],[29,-67]],[[5050,37237],[278,-105],[282,204],[214,12]],[[3935,37254],[188,-201],[280,50],[99,163],[413,154]],[[4916,37414],[2,7]],[[2040,39390],[-161,-635],[-107,-170],[26,-642],[133,-121],[10,-510]],[[3488,32871],[287,-348],[411,-4],[508,223],[197,14],[118,468],[220,95],[106,-153],[503,185],[385,-209],[287,235]],[[2933,41826],[99,43]],[[3032,41869],[273,174],[355,-63]],[[5229,31620],[436,333],[324,927],[251,263]],[[4727,38135],[206,-629]],[[5089,39421],[-119,-363],[-193,-209],[-69,-277]],[[5053,39551],[36,-112]],[[5854,44757],[-11,-41]],[[1941,37312],[64,-370]],[[1756,46590],[309,137]],[[3946,37241],[102,-884],[137,-375]],[[4166,35594],[910,-1317],[552,98],[-31,403],[177,99],[240,409],[110,389],[336,-82],[546,364]],[[7006,35957],[114,107]],[[8846,63304],[481,498],[273,-112],[274,233],[257,-155],[399,19],[344,248],[399,135]],[[11698,65704],[79,198]],[[4903,40890],[512,-200],[126,-218],[314,23],[478,-452],[261,107],[96,-219],[143,82],[187,-260]],[[4272,41218],[236,-339],[369,-78]],[[3801,41878],[147,-136],[114,-379]],[[5229,31620],[-150,-1103],[44,-884],[-269,-535],[-472,-150],[-292,-270]],[[8918,58277],[80,-537],[-29,-1078],[6,-1685],[49,-955],[-201,-826],[-86,-146]],[[7459,60845],[39,-75]],[[7459,60845],[-274,-627]],[[7169,60122],[49,25]],[[1386,41908],[47,-275]],[[2887,41570],[47,250]],[[2068,40740],[52,-569]],[[6724,59333],[-43,426],[86,146]],[[2120,40171],[-5,-69]],[[8827,65585],[7,-45]],[[7601,57068],[167,69],[73,266]],[[4340,45867],[286,-7],[530,220]],[[2900,45583],[48,-118],[502,-188],[186,267]],[[2093,39765],[-53,-375]],[[2115,40102],[-49,-107]],[[3636,45544],[704,323]],[[4708,38572],[19,-437]],[[2156,46603],[44,-119]],[[8682,65486],[152,54]],[[10549,65703],[173,-130]],[[8682,65486],[145,99]],[[5896,47704],[121,121]],[[7498,60770],[75,-91]],[[7004,60054],[-1,42]],[[3779,39407],[74,8]],[[2874,41443],[13,127]],[[2317,41329],[61,-160]],[[2208,44126],[-51,-505]],[[5808,47663],[304,-322]],[[6931,60104],[62,-162]],[[1433,41633],[20,-63]],[[7023,59023],[297,-240]],[[3205,39451],[140,-596]],[[1330,38988],[156,30]],[[2066,39995],[17,-77]],[[5286,57442],[436,-217]],[[1971,41882],[-50,-283]],[[8538,64941],[65,-321]],[[2040,46100],[54,-49]],[[8488,64816],[161,-501]],[[6721,50851],[43,17]],[[7083,58831],[144,-411]],[[4928,37462],[122,-225]],[[4214,56407],[67,-75]],[[7326,60187],[413,142]],[[1475,36662],[84,-367]],[[1562,36297],[-1,-43]],[[2083,39918],[10,-153]],[[5164,57340],[46,-275]],[[2304,41184],[207,-35],[383,248]],[[3660,41980],[139,-7]],[[5791,47326],[35,-329]],[[6824,60099],[69,15]],[[4933,37506],[-5,-44]],[[7573,60679],[124,-151],[85,-451]],[[6715,50891],[27,-175]],[[8915,64636],[108,-193]],[[2065,46727],[91,-124]],[[4185,35982],[-19,-388]],[[7557,60619],[47,143]],[[6665,59096],[103,27]],[[8565,65456],[117,30]],[[8827,65585],[3,25]],[[8791,64788],[93,63]],[[8499,64844],[273,-39]],[[6975,59446],[142,96]],[[6944,59429],[31,17]],[[7117,59542],[165,74]],[[6758,59352],[134,69]],[[6892,59421],[52,8]],[[2236,40936],[97,-640]],[[2081,40685],[156,246]],[[8622,65536],[39,-206],[-103,-721]],[[1799,41738],[35,-81]],[[7745,60618],[158,-252]],[[8834,65540],[-93,-514]],[[7827,60797],[92,-163]],[[2894,41397],[15,-53]],[[7604,60762],[312,562]],[[8443,64907],[62,-13]],[[2248,41020],[-12,-84]],[[34044,42486],[18,260]],[[33648,41185],[43,24]],[[33524,41147],[153,66]],[[35208,41265],[1,-116]],[[39273,49411],[467,36]],[[38451,49292],[294,191],[500,-69]],[[33691,41209],[315,599],[134,120],[-96,558]],[[35025,53721],[202,4],[284,215],[198,278],[287,-143],[223,76],[326,-192],[497,57],[17,-226],[851,102],[115,-390],[1055,116],[510,-285]],[[32809,42187],[279,-620],[10,-571],[650,228],[286,-177],[474,178]],[[39763,39712],[-24,-78]],[[39218,50175],[44,-1168],[-29,-183]],[[39233,48824],[25,-802]],[[39176,50975],[42,-800]],[[27928,45182],[251,-77]],[[34663,45185],[-192,-198],[-85,-316]],[[35170,40635],[-76,-577],[19,-750],[78,-298]],[[34290,44516],[0,-228]],[[34527,40773],[155,23]],[[30153,43838],[131,528],[354,277]],[[30638,44643],[234,401],[57,297]],[[34610,47649],[70,16]],[[34709,47658],[33,-475],[-78,-251]],[[27714,45249],[229,-111]],[[35220,41384],[-11,-235]],[[35209,41149],[-39,-514]],[[38146,40441],[37,-835],[56,-203]],[[30029,40036],[151,-287],[-168,-1630]],[[29308,43768],[14,-284],[-248,-460],[36,-1224],[166,-60],[187,-678]],[[29463,41062],[150,-398],[190,14],[4,-339],[171,-318]],[[38047,40638],[99,-197]],[[34821,53937],[204,-216]],[[32188,47096],[259,-121],[2,-204],[281,-375],[584,-45],[271,160],[111,251],[311,107]],[[31849,51193],[103,-1317],[351,-175],[58,-359],[-250,-849],[76,-245]],[[31941,54157],[2,-386],[172,-854],[183,-555]],[[32492,46714],[30,-1171],[651,-834],[356,279],[341,-402]],[[31805,51841],[44,-648]],[[37202,42126],[435,293],[144,216],[864,148],[61,124],[555,113],[243,143],[474,89]],[[35581,41576],[298,287],[265,48],[204,202]],[[35865,52212],[256,-246],[676,-957]],[[35025,53721],[254,-269],[189,-575],[317,-395],[80,-270]],[[38449,44679],[758,72],[87,-148],[251,15]],[[39545,44618],[5,-168]],[[39550,44450],[379,15]],[[35915,44126],[38,-88],[750,101]],[[36703,44139],[1140,136],[603,404]],[[39550,44450],[94,-1005],[9,-1024],[-76,-620],[80,-1308],[109,6],[-3,-787]],[[39470,46172],[75,-1554]],[[39395,47162],[40,-964]],[[39227,48030],[21,-697],[147,-171]],[[34543,40512],[136,56]],[[34007,46869],[213,-172],[124,410],[239,298]],[[33870,44586],[181,-352]],[[34508,41225],[972,196],[101,155]],[[91374,32590],[274,-308],[171,-383],[208,-175]],[[92730,28678],[-56,-355]],[[92676,28232],[-14,-192]],[[92533,30622],[-6,296]],[[92027,29691],[447,-350]],[[91888,30534],[-34,-256],[160,-529]],[[92027,31724],[51,-122]],[[92674,28323],[2,-91]],[[92712,29020],[18,-342]],[[91831,30831],[372,208]],[[92891,29745],[117,1],[106,-330],[262,-441]],[[93808,30166],[-262,-289]],[[93968,30173],[239,-26],[159,-209]],[[92291,29019],[66,-2]],[[92357,29017],[-47,-741]],[[91520,30616],[-26,-659],[231,-352],[185,-455],[267,-152]],[[91372,28546],[286,33],[514,409]],[[93045,28827],[228,-134],[253,-390],[308,-84],[79,-284],[181,-45]],[[92182,28996],[109,23]],[[92357,29017],[300,42]],[[91118,28925],[242,-386]],[[93028,28846],[348,129]],[[94032,28414],[144,-72]],[[93533,28845],[475,-463]],[[91470,30307],[-217,-329],[157,-628],[-54,-893]],[[91691,31919],[-204,-806]],[[91545,30690],[-25,-74]],[[92203,31039],[234,-55]],[[92832,29780],[59,-35]],[[92602,29925],[47,-635]],[[94008,28382],[24,32]],[[93530,29931],[-144,-343]],[[91647,32013],[347,-540],[256,-165],[53,-272],[236,-452],[93,-521]],[[91323,32513],[-7,-194],[331,-306]],[[92100,31671],[104,-626],[-63,-891],[-127,-405]],[[92027,29691],[-164,-540],[41,-375]],[[93376,28975],[157,-130]],[[92644,28867],[190,68]],[[92809,28981],[219,-135]],[[92641,29994],[-287,29]],[[89141,42532],[393,-6]],[[88598,40826],[155,-184],[53,-316]],[[88861,42313],[255,79]],[[88573,38751],[-214,-217]],[[88608,40816],[199,117]],[[88807,40933],[240,-119]],[[88455,40024],[54,-411]],[[89270,43095],[275,-590],[347,-337]],[[88575,39161],[106,-429]],[[88682,38535],[-32,-274]],[[88641,38895],[-27,-51]],[[88509,39613],[-108,-338]],[[88327,39294],[277,-274]],[[88634,38760],[183,-456]],[[86408,42771],[10,-80]],[[86405,42701],[4,29]],[[86375,42420],[43,271]],[[86336,42741],[-1,18]],[[86418,42691],[95,-126]],[[86405,42701],[13,-10]],[[86408,42771],[1,53]],[[86359,42745],[50,-15]],[[86336,42741],[23,4]],[[86511,42792],[-41,310]],[[79060,79207],[-15,-166]],[[78820,81822],[39,-538],[-92,-178],[-102,-1060]],[[78328,78653],[15,-622]],[[78524,80066],[-231,-1196]],[[78266,77908],[-161,-326]],[[81872,86488],[183,-660],[252,-213]],[[77114,79814],[-245,-1095],[28,-303]],[[76887,78412],[-73,-695]],[[79722,82010],[-221,-573],[-199,-298],[-46,-735]],[[69136,80037],[69,-10]],[[80290,89046],[230,-563],[-15,-709]],[[80595,85437],[86,-996],[89,-393],[-64,-794]],[[80055,86328],[-99,-378],[64,-299]],[[80149,85151],[112,-822],[-464,-993],[9,-612],[-102,-704]],[[79261,80397],[-106,-1008],[-95,-182]],[[83931,89327],[-63,-1104],[-496,-1153],[-311,-1020]],[[75660,78701],[674,-466],[497,177],[307,-128],[286,21],[869,489]],[[73591,77965],[244,72],[739,-10],[186,337]],[[71664,78409],[409,-109],[392,-311],[333,18]],[[72856,77980],[580,-127]],[[70762,78404],[415,27],[428,-64]],[[69774,79090],[304,-161],[510,-457]],[[69465,79913],[106,-276],[-95,-189]],[[69261,79752],[-201,-220],[250,-25]],[[68958,79599],[75,-58]],[[82602,88940],[319,-160],[478,223],[126,-113],[364,448]],[[81662,87915],[495,-50]],[[69205,80027],[135,-2]],[[69018,80048],[118,-11]],[[83392,84372],[397,9]],[[83747,84857],[42,-476]],[[75508,78807],[49,-10]],[[79021,79058],[118,-26]],[[79912,80936],[145,123],[346,-22]],[[80953,80779],[290,-110]],[[80181,83208],[257,-549]],[[81409,80605],[187,-313],[289,-725]],[[80638,79262],[261,-499],[15,-570]],[[79299,81099],[557,-150]],[[82748,82752],[272,-86]],[[84092,86037],[72,-65]],[[79506,86608],[146,-33]],[[79462,87400],[314,-133],[302,71]],[[79460,87592],[149,-10]],[[85507,90117],[154,-41]],[[85173,90275],[492,403]],[[72782,80310],[5,-378],[-148,-561]],[[70736,79795],[74,-371],[131,-125],[-204,-595],[-15,-293]],[[84164,85972],[-259,-1155]],[[80941,76919],[291,-53],[85,-237]],[[83020,82666],[26,-30]],[[83055,82628],[64,-33]],[[78293,78870],[35,-217]],[[82307,85615],[-70,-884]],[[81026,77903],[2,-368]],[[69459,79914],[-121,-301]],[[80228,89112],[62,-66]],[[80505,87774],[-115,-507]],[[80093,89177],[26,-5]],[[80706,83254],[-30,-179]],[[85894,94459],[119,21]],[[80251,89883],[-126,-313],[-20,-482]],[[80020,85651],[129,-500]],[[80172,87090],[100,204]],[[80172,87090],[-117,-762]],[[85779,93946],[-39,-621],[-238,-2220]],[[79060,79207],[-9,-167]],[[81054,78101],[195,46]],[[81249,78147],[346,-90]],[[73436,77853],[155,112]],[[74760,78364],[328,94],[243,308],[329,-65]],[[70588,78472],[174,-68]],[[69310,79507],[200,-267],[264,-150]],[[69261,79752],[204,161]],[[79121,79036],[18,-4]],[[78293,78794],[49,24]],[[82239,82710],[361,-445]],[[69340,80025],[133,-84]],[[82182,81122],[152,-79]],[[79121,79036],[419,400],[680,286],[163,516],[261,241],[163,-67],[445,185]],[[81412,79345],[-131,-68]],[[80660,79491],[449,-160]],[[81412,79345],[280,136]],[[81121,79363],[160,-86]],[[80231,79696],[188,-160]],[[81446,80760],[334,402],[384,-59]],[[81491,82451],[366,-101],[538,-465]],[[80647,82453],[368,94],[472,-96]],[[80643,85223],[132,-217],[416,-185]],[[80531,89425],[307,104],[827,426]],[[81791,89994],[1534,-380],[76,-124],[488,-152]],[[83987,89301],[291,-342],[44,-179],[246,-99],[244,-250]],[[82807,91481],[565,-169],[205,7]],[[82218,91820],[330,-74]],[[80588,77226],[353,-307]],[[85860,91352],[-57,-502]],[[84419,86831],[-1,-6]],[[82112,82468],[-253,-293],[-198,-850],[-350,-375],[135,-190]],[[81801,89482],[-38,-611]],[[82396,83615],[-112,-54]],[[82658,85755],[343,281],[496,107],[377,-44]],[[85571,94290],[151,134]],[[77097,79766],[153,84],[314,-253],[188,-22],[216,233],[175,-38],[339,328],[425,-76],[349,382]],[[79816,82093],[171,263]],[[80390,87267],[186,-449],[116,-474]],[[80388,78289],[76,-677],[124,-386]],[[75231,80332],[209,-122]],[[75214,80893],[24,-557]],[[71629,79797],[104,-772],[-65,-500]],[[71605,78367],[-316,-570],[-83,-370]],[[79256,80404],[5,-7]],[[84484,91192],[1,-447]],[[84483,90734],[23,-70]],[[79030,78841],[1,-455],[-185,-658],[-5,-227]],[[81148,86434],[-218,-285],[-292,-211]],[[80181,85190],[-32,-39]],[[80149,85151],[-289,-440]],[[80595,85437],[-40,-194]],[[83949,89502],[197,-4],[213,276],[151,478],[-4,412]],[[80506,79515],[154,-24]],[[80419,79536],[81,-19]],[[79856,80949],[56,-13]],[[79912,80936],[254,-595]],[[82803,91482],[4,-1]],[[81268,84878],[-77,-57]],[[82395,81885],[266,-172]],[[80435,82625],[212,-172]],[[82300,84646],[463,-156],[147,80],[474,-190]],[[81268,84878],[455,-74]],[[80555,85243],[88,-20]],[[80469,87457],[512,-101],[225,115],[293,-75]],[[84720,87589],[-818,195],[-282,-131]],[[79609,87582],[391,-99]],[[81665,89955],[126,39]],[[80211,89435],[320,-10]],[[81951,92104],[267,-284]],[[82548,91746],[255,-264]],[[85803,90850],[-81,-634],[-178,-527],[-365,-489]],[[85890,94524],[23,-799],[-53,-2373]],[[85179,89200],[-201,-499],[-48,-423],[-210,-689]],[[84720,87589],[-301,-758]],[[84418,86825],[-771,-1930],[-190,-720],[-233,-669],[73,-199]],[[83297,83307],[-149,-458],[-495,-1151],[-468,-577]],[[82182,81122],[-18,-19]],[[82164,81103],[-26,-303],[-340,-1544],[-538,-761],[-199,-384]],[[81418,91142],[186,-200],[-36,-385],[146,-405],[87,-670]],[[81763,88871],[-106,-422],[16,-421],[-126,-678],[165,-388],[-20,-378],[180,-96]],[[82284,83561],[-51,-908],[-121,-185]],[[82237,84731],[-3,-63]],[[82234,84668],[66,-22]],[[82300,84646],[-28,-249],[124,-782]],[[81446,80760],[-164,-153],[-10,-464],[-240,-951],[-102,-1061]],[[80106,89064],[-47,-116]],[[81998,85580],[353,24],[307,151]],[[79987,82356],[347,217]],[[78820,81822],[377,-37],[619,308]],[[75557,78797],[505,46],[271,-84]],[[75557,78797],[-333,-650]],[[75224,78147],[52,-266]],[[69338,79613],[-206,-527],[17,-1064],[91,-309]],[[80251,89883],[-123,-569]],[[80119,89172],[109,-60]],[[80692,86344],[-54,-406]],[[80429,82592],[-74,-559]],[[80355,82033],[64,-271],[-11,-703],[-239,-695],[197,-2070]],[[75673,78827],[-71,-300],[144,-698]],[[71668,78525],[-4,-116]],[[80128,89314],[0,-590],[282,-633],[-103,-695]],[[82172,93358],[-58,-477],[-160,-286],[-44,-435],[-329,-761],[-226,-364],[-388,-216],[-356,64],[-339,-768],[-21,-232]],[[82172,93358],[85,650],[237,249]],[[81096,83878],[526,-120],[175,440],[177,62],[260,408]],[[80355,82033],[-190,-428],[-261,-301],[-38,-212]],[[79866,81092],[-26,-320],[-159,-208],[-420,-167]],[[79051,79040],[-21,-199]],[[83874,86099],[218,-62]],[[78946,79098],[175,-62]],[[71605,78367],[59,42]],[[82656,82146],[113,-180]],[[81222,86841],[473,-188]],[[79789,87960],[320,-241]],[[83889,89338],[42,-11]],[[83931,89327],[18,175]],[[81222,86841],[-74,-407]],[[80638,85938],[-43,-501]],[[80555,85243],[-374,-53]],[[79832,84683],[-105,-87]],[[79860,84711],[-28,-28]],[[80106,87726],[105,-250],[260,39]],[[85396,95886],[194,-357],[-180,-1335],[174,-358]],[[80997,77934],[133,201]],[[81249,78147],[-8,-115]],[[85838,94382],[156,-48]],[[73939,75457],[17,-154]],[[75217,72507],[-21,-1]],[[76014,77257],[120,-257]],[[72843,62450],[446,-177]],[[79213,74831],[-152,-94]],[[76583,71318],[-284,-566],[6,-328]],[[76684,71385],[197,-510]],[[77409,74693],[-81,-548],[-61,-1009],[59,-147],[-369,-704],[-288,-675],[-13,-220]],[[74340,66038],[143,-28],[285,-519],[428,-454]],[[75299,63781],[-10,-537],[85,-240],[-48,-406],[-290,-187]],[[78105,77582],[-4,-599],[-80,-771],[-80,-274]],[[77941,75938],[-350,-29],[-144,-442],[-4,-740]],[[81107,74511],[-2,-567]],[[81105,73944],[-68,-475],[50,-609],[-158,-436],[66,-444]],[[80816,76476],[-185,-984],[-21,-352],[274,-247]],[[75431,74402],[133,-9]],[[78562,72583],[121,-308],[-2,-363],[-224,-499],[-63,-775]],[[78368,73403],[61,-504],[131,-304]],[[78168,74166],[177,-430],[23,-333]],[[77496,76775],[318,-500],[43,-295]],[[77941,75938],[281,-937]],[[78532,67310],[-20,-418],[83,-394],[-51,-528],[187,-442]],[[78434,68855],[-21,415],[127,632],[9,502],[-155,234]],[[76814,77717],[128,-545]],[[75965,69045],[-114,-421],[-418,-868],[-404,-188],[-243,-706],[-161,-120]],[[74469,65673],[521,-1034]],[[80981,74560],[81,260]],[[73844,70596],[179,-507],[7,-474],[-97,-367],[-107,-803],[-186,-742]],[[73640,67703],[-314,-473],[-238,-161]],[[73558,71040],[165,-550],[-16,-622],[-256,-495]],[[73956,75303],[97,-286],[69,-1027]],[[74371,76192],[-95,-262],[-316,-401]],[[74441,76207],[-43,-32]],[[77161,66157],[644,379],[74,189]],[[76262,66280],[237,-74],[196,134],[298,-234],[168,51]],[[75414,66467],[402,-164],[397,81]],[[75196,72506],[-53,4]],[[74276,72626],[92,-93],[319,224],[427,-194]],[[75266,72574],[239,331],[674,-154]],[[75143,72510],[123,64]],[[76393,64601],[131,-263],[96,-782],[295,-99],[169,-272],[189,-35]],[[73006,69793],[86,-494],[175,-195]],[[73735,68076],[-251,380],[-34,409],[-177,197]],[[76885,74612],[203,-475],[229,-200]],[[77275,73479],[317,-314],[232,-50]],[[78459,68662],[142,14]],[[76267,70963],[-208,-138]],[[76033,70778],[-239,-109],[-340,-533],[-81,-468],[-164,-295],[15,-201],[-212,-402]],[[74989,68634],[487,60],[217,313],[420,311]],[[73379,62601],[211,66],[159,-183],[154,64]],[[78203,66429],[161,139],[410,-47],[84,-137]],[[72420,66483],[373,103],[387,-194],[301,-9],[349,-347]],[[77772,70109],[164,-124],[360,72],[758,-454],[779,139]],[[77702,70160],[-490,48],[-288,-166],[-143,-244],[-524,-510]],[[81828,71140],[237,45]],[[72864,62732],[145,-377]],[[72529,64425],[208,-67],[17,236]],[[74963,66195],[-2,-286],[140,-748]],[[74633,67506],[228,-226]],[[81283,70684],[-193,-544],[-75,-16],[-426,-664]],[[73640,67703],[357,-132]],[[80857,76273],[253,214]],[[75619,70518],[254,-198],[102,-260]],[[73997,67571],[311,-264]],[[73092,66969],[128,-199],[42,-370]],[[74001,66939],[50,616]],[[74308,67307],[54,-707]],[[77644,68446],[432,-266],[122,-379],[296,-377]],[[75281,70586],[16,8]],[[74562,70570],[379,60]],[[75297,70594],[322,-76]],[[75281,70586],[-340,44]],[[74363,70695],[146,-139]],[[73987,71852],[-59,536],[188,1184],[6,418]],[[79281,74991],[-68,-160]],[[76305,70424],[-26,-275]],[[76662,71389],[-79,-71]],[[76662,71389],[22,-4]],[[81107,74511],[-6,160]],[[74990,64639],[41,27]],[[74754,77091],[-313,-884]],[[73040,67125],[48,-56]],[[75114,72563],[14,-9]],[[76358,64760],[35,-159]],[[76583,71318],[-316,-355]],[[76684,71385],[273,246],[309,-37]],[[75012,68770],[-23,-136]],[[74011,65364],[-419,-317],[-191,-508]],[[73295,64477],[-19,-90]],[[74989,68634],[-265,-421]],[[78858,66384],[303,-82]],[[81444,71184],[384,-44]],[[74089,63600],[63,-35]],[[77329,67356],[178,-191],[251,14],[123,-431]],[[77299,64170],[-87,-98]],[[77318,67365],[-178,267],[-129,560],[-123,21]],[[75992,70237],[287,-88]],[[75610,74348],[73,-102]],[[74398,76175],[9,-2]],[[76170,69236],[695,-1007]],[[74686,63424],[314,400],[237,-31]],[[74152,63565],[528,-140]],[[73527,63579],[218,-199],[252,10]],[[73087,63539],[442,63]],[[75385,74685],[46,-283]],[[75603,74367],[7,-19]],[[77299,64170],[412,-10]],[[76618,64512],[336,-79],[258,-361]],[[74407,76173],[390,-121],[178,-162],[294,-664],[116,-541]],[[74146,76734],[4,-198],[221,-344]],[[78542,68163],[-48,-739]],[[78967,73321],[102,-316],[-70,-1247],[6,-545],[-77,-1276],[-154,-170],[-156,-907],[-69,-758]],[[72620,65402],[-43,-92]],[[78944,73794],[-30,-332]],[[76135,62652],[242,-322]],[[76285,68627],[145,-744],[63,-803],[-263,-577]],[[76262,66280],[-22,-915]],[[75582,64191],[-190,-336]],[[74963,71116],[47,-465]],[[75357,73699],[-214,-599],[0,-590]],[[75063,72194],[-99,-244],[2,-368]],[[74733,69415],[-101,-781],[92,-421]],[[74966,63187],[-49,-547],[119,-229]],[[75036,62411],[-27,-510],[-151,-291]],[[74848,61635],[-250,-407]],[[75417,74218],[14,184]],[[75417,74218],[-11,-220]],[[78222,75001],[-58,-915]],[[78434,68855],[9,-576],[99,-116]],[[77266,71594],[-478,-833],[-468,-1048],[-37,-267]],[[78914,73462],[-248,-517],[-90,-342]],[[80345,72788],[-422,-426],[-62,-1215]],[[80136,73300],[208,231]],[[79662,69361],[-167,-371],[40,-361],[-196,-915]],[[79275,67588],[-148,-833],[76,-457]],[[80879,74380],[102,180]],[[73451,69373],[-180,-253],[-76,-826],[-147,-108]],[[72326,63678],[-91,-13],[107,-434],[-36,-549],[49,-389],[-66,-263]],[[72723,66166],[-161,-649]],[[72678,64573],[-78,-611],[-120,-95]],[[74398,76175],[-27,17]],[[77879,66725],[257,-228]],[[72562,65517],[58,-115]],[[72620,65402],[285,-17]],[[72283,65690],[330,-217]],[[73689,65765],[141,271]],[[76179,72751],[633,-96],[233,-208],[231,-43],[584,-367]],[[77860,72037],[12,-73]],[[77872,71964],[230,-372],[632,-399],[274,-5],[415,372],[204,-305],[279,-118],[702,-46],[149,-247]],[[80757,70844],[34,-62]],[[80108,76171],[-83,-547],[68,-2144],[45,-192]],[[80057,69859],[103,-1016]],[[80176,68693],[7,-342],[201,-371]],[[76134,77000],[113,-629],[126,-370]],[[76357,75649],[437,-819],[4,-217]],[[77772,70109],[133,-608],[529,-646]],[[77904,71899],[-244,-1344],[42,-395]],[[77824,73115],[36,-1078]],[[79093,72824],[891,360]],[[78283,64869],[-308,580],[-288,71]],[[73401,64539],[139,-863],[-94,-859],[-104,-343]],[[72201,65214],[402,-429]],[[73294,61476],[3,866]],[[78841,77501],[215,-346],[-224,-463],[-107,-635],[-401,-471],[-102,-585]],[[78164,74086],[-26,-263],[-314,-708]],[[77646,70038],[-472,-448],[-291,-1148]],[[76813,68123],[-213,-574],[-106,-101]],[[77708,70158],[-18,-36]],[[73342,62474],[-45,-132]],[[74858,61610],[-10,25]],[[73830,66036],[197,-102],[277,105]],[[77702,70160],[70,-51]],[[80288,70237],[246,151],[120,346],[137,48]],[[80058,70029],[230,208]],[[73403,73558],[336,230],[189,-76],[139,207],[174,-80],[616,-36]],[[75010,70651],[-3,1]],[[75683,74246],[86,-250],[49,-582],[184,-486],[194,-87]],[[75020,65137],[176,-100]],[[73851,63085],[-17,-266]],[[74149,63682],[-298,-597]],[[73834,62819],[69,-271]],[[74160,66523],[-169,-108],[-161,-379]],[[76358,64760],[260,-248]],[[73903,62548],[229,-771],[267,-134],[446,-13]],[[76240,65365],[33,-288]],[[76014,77257],[-5,-214]],[[79111,74913],[-50,-176]],[[79061,74737],[-14,-534],[-103,-409]],[[78494,67424],[210,-435],[155,-101],[302,-586]],[[78914,73462],[53,-141]],[[76279,70149],[-86,-228]],[[76150,69287],[135,-660]],[[76230,66503],[32,-223]],[[76223,64871],[-177,-132],[-197,-375],[-267,-173]],[[75299,63781],[93,74]],[[80884,74893],[188,95],[29,-317]],[[76135,62652],[-176,-168]],[[74785,64072],[181,-885]],[[75143,72510],[-80,-316]],[[74966,71582],[-3,-466]],[[75007,70652],[-92,-513],[80,-186],[-262,-538]],[[74692,67956],[-44,-412],[-228,-791]],[[74724,68213],[-15,-79]],[[78560,72595],[2,-7]],[[77266,71594],[155,264],[325,0],[466,347],[364,398]],[[79861,71147],[14,-770]],[[79662,69361],[171,381]],[[79833,69742],[163,225]],[[80344,73531],[292,375]],[[80636,73906],[243,474]],[[72577,65310],[46,-663]],[[72289,62030],[-69,-344]],[[75276,77881],[-238,-187],[-205,-508]],[[73039,67113],[-84,541],[93,532]],[[73039,67113],[-181,-376],[-135,-571]],[[72480,63867],[-154,-189]],[[78136,66497],[67,-68]],[[72905,65385],[218,223],[289,5],[277,152]],[[80160,68843],[16,-150]],[[75196,65037],[403,99],[188,-133],[378,109]],[[76409,75837],[-50,-194]],[[75746,77829],[268,-572]],[[76373,76001],[36,-164]],[[75406,73998],[-49,-299]],[[78576,72603],[517,221]],[[79984,73184],[91,37]],[[76193,69921],[-82,-328]],[[73401,64539],[-106,-62]],[[72721,64595],[286,11],[288,-129]],[[76883,68442],[-70,-319]],[[76286,64834],[-108,-287],[-242,-1308]],[[75936,63239],[-150,-426]],[[77690,70122],[-44,-84]],[[79339,67714],[-64,-126]],[[74858,65181],[162,-44]],[[81513,71096],[21,-128]],[[74709,68134],[-10,-50]],[[74699,68084],[-7,-128]],[[73621,71098],[188,-239],[35,-263]],[[72664,64587],[19,-15]],[[72623,64647],[41,-60]],[[72683,64572],[38,23]],[[26214,90347],[331,-67],[52,-183]],[[22019,28724],[180,344]],[[22188,29042],[-43,-118]],[[16562,26025],[72,190]],[[14875,23092],[331,425]],[[16633,26238],[117,193]],[[18466,29054],[437,259],[52,241],[404,64],[335,-82]],[[17737,27345],[114,107],[55,751],[-59,425],[452,373]],[[16634,26215],[-1,23]],[[19765,29434],[109,-116]],[[19694,29536],[71,-102]],[[16019,24130],[-63,-69]],[[15956,24061],[-64,-140]],[[17848,27434],[1036,273],[468,-393],[384,-785]],[[23617,32748],[63,-237],[60,-819],[197,-108]],[[22903,32566],[-124,-474],[-58,-728],[-182,-520],[-59,-375]],[[16019,24130],[-15,108]],[[15837,24104],[119,-43]],[[65652,35302],[-130,-763],[-116,-119]],[[66072,36333],[265,-2]],[[65032,34639],[384,269]],[[64281,33559],[-8,367],[505,530]],[[66501,44540],[301,-54]],[[65021,35321],[372,213]],[[63746,34479],[628,86],[191,500],[269,228]],[[65661,35522],[101,761]],[[65384,34313],[-87,-885]],[[64738,53622],[-43,-426]],[[64738,53622],[181,486],[180,153]],[[64194,53522],[-152,-315]],[[63515,37456],[11,185],[1149,-208],[66,-96],[463,-106]],[[65401,37269],[252,567],[137,-24]],[[62819,36259],[292,265],[7,214],[389,550],[8,168]],[[61566,35383],[231,70],[579,-129],[248,346],[9,324],[183,254]],[[62768,44558],[-18,-365],[132,-154]],[[61527,47589],[301,106]],[[61836,47700],[166,153]],[[59586,44003],[447,-35]],[[62226,47784],[-120,1]],[[65357,33845],[197,32]],[[63592,45115],[-271,-465],[-369,-385]],[[62152,47967],[-144,-237]],[[65090,35714],[3,-623]],[[65395,34410],[247,-33]],[[65378,34803],[416,-51]],[[65580,36057],[-68,-818]],[[65487,34730],[-81,-310]],[[65768,36393],[304,-60]],[[64778,34456],[254,183]],[[66360,42528],[140,-19]],[[63805,41232],[15,202]],[[63540,34538],[206,-59]],[[63255,34518],[134,-4]],[[65406,34420],[-22,-107]],[[65470,42619],[38,-694]],[[65099,54261],[51,-6]],[[65792,36844],[529,-74],[5,87]],[[66421,41831],[-71,-422],[-99,-1410]],[[65679,50984],[333,-539],[213,-583]],[[66225,49862],[349,-631],[153,-611],[-110,-2397],[19,-149],[-135,-1534]],[[64089,43781],[-192,-205],[-380,-207],[-171,-558]],[[61373,43572],[1221,532]],[[65316,51982],[456,-76],[308,159]],[[62562,49430],[31,201]],[[63723,53301],[168,-94],[313,40]],[[63523,53912],[129,-8]],[[63545,52113],[254,-57]],[[62953,49809],[474,-39],[463,53]],[[63985,49859],[429,-14]],[[62593,49631],[220,140]],[[62819,36259],[231,-555],[12,-460],[363,-513]],[[63148,39081],[-77,-510]],[[62956,39923],[82,-504]],[[63994,45694],[-402,-579]],[[64167,54838],[-153,-280],[-353,-369],[88,-628],[-194,-708],[-10,-740]],[[63545,52113],[-432,-245],[-383,-386],[-135,-528],[-456,-934]],[[62451,36520],[-1,-6]],[[65957,36198],[-29,-422]],[[65928,35765],[-25,-346]],[[59796,44545],[-210,-542]],[[62465,36664],[-14,-144]],[[62594,44104],[237,109]],[[62955,44206],[-88,4]],[[64791,33494],[215,287]],[[62011,42381],[579,-94]],[[61782,42362],[229,19]],[[59597,42215],[438,-134]],[[60104,42082],[453,-4],[321,-237]],[[60977,41849],[208,-13],[162,364],[432,34]],[[62590,42287],[3401,-449],[430,-7]],[[66421,41831],[79,678]],[[63154,40589],[173,-2]],[[66534,43123],[-33,1417]],[[62631,49032],[53,-81]],[[63327,40587],[755,-168]],[[62721,40898],[156,-279]],[[64362,40379],[1339,-212],[11,-59],[777,-148]],[[62002,47853],[-32,-329],[-396,-907],[-57,-874],[94,-306]],[[61566,36418],[179,-105],[225,175],[265,43]],[[62413,36582],[93,48],[2193,-283]],[[62298,36600],[115,-18]],[[64702,36404],[286,104]],[[64998,36495],[165,415],[214,275],[650,-6]],[[66027,37179],[376,-6]],[[65125,36339],[271,-234]],[[61417,39754],[292,-535],[17,-205],[371,-31],[25,-317],[253,-247],[42,-237]],[[62933,38086],[300,-528],[12,-153],[838,-289],[457,-336],[202,-14],[256,-271]],[[64998,36495],[91,-123]],[[64089,43898],[94,1]],[[64276,43981],[176,90],[1968,-255],[340,-66]],[[64026,47305],[22,56]],[[66077,35348],[-185,-143],[-34,-264]],[[64695,53196],[406,-948],[212,-266]],[[65429,49469],[-89,-537],[-31,-603]],[[65309,48329],[-130,-7]],[[65179,48322],[-29,-586],[-98,-571],[-21,-540]],[[65478,51687],[168,-628],[-130,-1606]],[[65917,39608],[-50,-839]],[[65877,38709],[-113,-1337],[53,-164]],[[65867,38769],[10,-60]],[[62684,48951],[338,-135],[1032,-108]],[[64054,48708],[215,-48]],[[64374,48624],[456,-66],[349,-236]],[[65309,48329],[362,-93],[363,-229],[753,-73]],[[64042,53207],[-138,-2510],[-14,-874]],[[63890,49823],[100,-227]],[[64136,43968],[-15,-219]],[[64040,49141],[14,-433]],[[64053,48691],[27,-528],[-31,-796]],[[64026,47305],[-64,-1217],[82,-394],[-21,-581]],[[64049,47367],[-1,-6]],[[64046,47362],[3,5]],[[63948,41530],[-20,-306]],[[65917,39608],[450,-80],[122,432]],[[62816,36248],[3,11]],[[60319,45796],[221,-304],[79,-298],[132,-17],[63,-291]],[[62417,38182],[516,-96]],[[61531,44483],[-231,-106],[-35,-347],[108,-458]],[[61373,43572],[-309,-531],[-87,-1192]],[[60977,41849],[-109,-130]],[[60857,40032],[87,-560],[-22,-1197]],[[60931,37995],[-34,-264]],[[63805,52055],[186,131],[161,-94],[499,6],[668,-117]],[[62019,47851],[133,116]],[[62194,49035],[368,395]],[[62450,36514],[366,-266]],[[62861,40504],[95,-581]],[[62135,48324],[17,-357]],[[62147,49920],[-153,-452]],[[66011,36890],[-54,-692]],[[62880,44057],[61,-252]],[[61685,44807],[3,471],[-77,159]],[[62016,47852],[-14,1]],[[65006,33781],[200,806],[465,566]],[[60035,42081],[69,1]],[[66500,42509],[34,614]],[[62924,40649],[230,-60]],[[64082,40419],[280,-40]],[[62877,40619],[47,30]],[[66489,39960],[70,19]],[[62235,36531],[63,69]],[[65089,36372],[36,-33]],[[63950,43955],[139,-57]],[[64183,43899],[93,82]],[[66154,35762],[-16,-137]],[[65817,37208],[-49,-815]],[[65313,51982],[165,-295]],[[65516,49453],[-87,16]],[[64699,36347],[3,57]],[[64269,48660],[105,-36]],[[63990,49596],[50,-455]],[[64023,45113],[64,-836]],[[64097,44142],[39,-174]],[[64121,43749],[-60,-1101],[-113,-1118]],[[61671,44534],[-140,-51]],[[60868,41719],[-17,-1395]],[[60922,38275],[9,-280]],[[62009,47881],[7,-29]],[[62285,48344],[-99,-649]],[[63071,38571],[-4,-104]],[[65386,34743],[-2,379]],[[62669,40566],[175,-322]],[[60836,37986],[65,-238]],[[64834,35293],[187,28]],[[66787,47934],[236,31]],[[64087,44277],[-125,-364]],[[61685,44807],[-14,-273]],[[65384,35122],[23,381]],[[65407,35503],[259,309],[456,-86]],[[65680,35368],[-56,19]],[[65391,35593],[16,-90]],[[62669,40566],[122,429],[169,-29]],[[61018,37708],[41,171]],[[67758,41140],[-36,-100]],[[66802,44486],[170,157],[21,365]],[[67236,39899],[-88,-1633],[-86,7],[-33,-509],[-287,-319],[-223,-9]],[[67446,39920],[62,726]],[[67508,40646],[23,341]],[[70036,45677],[-105,-176]],[[70037,45700],[94,1423],[131,265],[43,466]],[[69506,43186],[586,-772],[844,-149],[144,-196],[616,-119]],[[69128,42892],[-389,-1269],[-217,-24],[-274,-687],[-97,-452]],[[68140,40468],[-98,-32],[-87,-570]],[[69532,43498],[1123,368],[41,69]],[[70696,43935],[453,469],[353,18],[319,520]],[[69975,40259],[230,-11]],[[70757,37899],[-101,-537]],[[70656,37362],[-212,-675]],[[70276,41540],[287,-50]],[[66480,51071],[658,-266]],[[67138,50805],[172,-25]],[[68046,36233],[105,-134]],[[69931,45501],[-90,-55],[-177,-719],[-97,-112],[-233,-880]],[[71657,42812],[93,-29]],[[70621,43112],[936,-258]],[[69674,43375],[923,-253]],[[66877,45124],[1063,-607],[1019,-808]],[[66849,40364],[372,535],[501,141]],[[67722,41040],[876,1359]],[[69457,38460],[20,-763],[-41,-764]],[[69636,39365],[-128,-230],[-51,-675]],[[69885,39912],[-238,-549]],[[69973,40201],[-88,-289]],[[70621,43112],[25,-204]],[[70634,44479],[23,-549],[-60,-808]],[[70655,44826],[-21,-347]],[[67775,41143],[44,-270],[-71,-987]],[[68748,45836],[72,76]],[[70152,45452],[360,-396]],[[68820,45912],[398,-47],[58,-179],[597,-87]],[[68311,45512],[322,231]],[[67089,47938],[400,-391],[59,-289],[337,-868]],[[68325,45241],[128,-8],[383,-388]],[[69873,45599],[164,101]],[[70078,41516],[-105,-1315]],[[70140,42061],[-51,-225]],[[70036,45677],[116,-225]],[[69301,36051],[631,-4],[1317,-204]],[[70186,38907],[309,220],[745,-159]],[[71241,38980],[240,-92]],[[68105,50938],[-17,-903],[69,-238],[16,-955],[45,-416],[-185,-1854],[-148,-182]],[[67885,46390],[426,-878]],[[68311,45512],[12,-300],[-390,-1634],[-69,-954]],[[67853,42486],[-59,-972]],[[66559,39979],[878,-110],[526,-5],[302,-123],[345,-19]],[[71069,38017],[317,-363]],[[71826,43811],[-234,-220],[9,-968],[-250,-1171],[-91,-1165],[14,-296]],[[71274,39991],[-38,-1086]],[[70833,38265],[-34,-280]],[[66403,37173],[79,6]],[[70037,45700],[-1,-23]],[[70687,37917],[-257,-386],[-368,-350],[-163,-392]],[[69700,36824],[-285,-489]],[[71507,39228],[-242,-259]],[[69210,40716],[1018,-185]],[[68610,39722],[-221,-409],[-225,-706],[-24,-434]],[[68140,38173],[-95,-1001]],[[67819,36513],[-167,-295]],[[70624,41379],[-11,-121],[-347,62]],[[70840,42002],[-168,-298]],[[69063,40407],[-290,-613]],[[69158,40473],[-95,-66]],[[71534,42694],[-67,-198],[-413,-252]],[[71054,42244],[-214,-242]],[[68045,37172],[-46,-168]],[[66760,43750],[553,55],[1542,-237]],[[67523,36851],[-23,-475]],[[70987,46986],[-8,-432],[175,-664]],[[70655,44826],[8,104]],[[70663,44930],[272,321],[187,627]],[[67748,39886],[-129,-1632]],[[67619,38254],[-86,-1335]],[[67775,41143],[-5,18]],[[71033,47235],[-16,-20]],[[66897,36757],[5,128],[621,-34]],[[67523,36851],[10,68]],[[67533,36919],[349,-54],[50,150],[442,41],[2123,-379],[110,15]],[[70607,36692],[700,-105]],[[68046,36233],[442,-65]],[[70646,42908],[41,-95],[-38,-1046]],[[70512,45056],[151,-126]],[[68633,45743],[74,70]],[[67046,44907],[-72,-668],[55,-153],[-58,-634],[-93,-261],[-46,-864],[144,-768]],[[70291,41953],[381,-249]],[[68836,44845],[111,-678],[176,-409]],[[70089,41836],[-11,-320]],[[70151,42211],[-11,-150]],[[67641,36214],[405,19]],[[67864,42624],[-11,-138]],[[67794,41514],[-24,-353]],[[68105,50938],[7,11]],[[68773,39794],[252,-175]],[[69105,39658],[-8,-74]],[[69097,39584],[186,-166],[297,-26],[768,-549],[108,-411],[157,-139]],[[69025,39619],[72,-35]],[[71236,38905],[-403,-640]],[[69415,36335],[-204,-211]],[[70672,41704],[-48,-325]],[[67888,36870],[-69,-357]],[[68610,39722],[163,72]],[[68855,43568],[135,-28]],[[68990,43540],[109,-23]],[[70597,43122],[24,-10]],[[71012,47022],[-25,-36]],[[71017,47215],[-5,-193]],[[67023,47965],[50,45]],[[58803,36180],[245,-320]],[[55998,34469],[-10,-365]],[[55988,34104],[105,-86]],[[61465,36515],[101,-97]],[[61566,35383],[-54,133]],[[61512,35516],[-257,-266],[-213,-561],[-247,-315]],[[60795,34374],[-191,-285]],[[51931,34450],[-6,-1913],[-140,-22],[-2,-823]],[[51746,31693],[0,-1216]],[[52196,36142],[-73,-168],[-2,-505]],[[52121,35469],[1,-470],[-142,-190],[-1,-359]],[[52224,40555],[-25,-1505]],[[52229,41798],[-5,-1243]],[[52298,36814],[-43,-545]],[[52318,38207],[-20,-1393]],[[52234,38940],[85,-292],[-1,-441]],[[58542,36959],[420,191],[192,213]],[[57324,37100],[554,-16],[291,-204],[305,61]],[[56382,37394],[375,-100],[222,-174],[275,-16]],[[56093,34018],[-37,-2149]],[[56053,31724],[-50,-1145]],[[55952,36718],[-34,-1926],[80,-323]],[[55956,36926],[-4,-208]],[[55998,30580],[-49,-213]],[[60910,37712],[404,-334],[-49,-507]],[[61265,36871],[200,-356]],[[61558,36413],[-46,-897]],[[56293,38805],[-219,-118],[-91,-281],[-392,-314]],[[58759,36235],[44,-55]],[[59048,35860],[43,-3]],[[52258,36240],[-62,-98]],[[55352,37655],[188,-8]],[[59154,37363],[108,67]],[[55439,37361],[-4,-227]],[[50450,34608],[73,-487]],[[51508,31126],[149,-649]],[[60616,33914],[-104,-223],[-642,-96],[-16,-492],[-98,-335],[-172,-73],[-179,-624]],[[59502,42228],[78,-35]],[[59580,42193],[17,22]],[[57205,39007],[-38,-823],[130,-7],[85,-395],[-58,-682]],[[58542,36959],[-6,-435],[223,-289]],[[58474,36941],[6,313]],[[54068,41805],[194,-180],[103,-375],[-14,-912],[45,-344]],[[54608,40016],[106,-1241],[-59,-2651]],[[54288,34273],[-43,-2735],[8,-660],[226,-13],[-6,-440]],[[54513,36105],[-11,-905],[-139,4],[-8,-672]],[[57630,32346],[917,-55],[242,-139],[86,-319],[361,83],[161,161],[235,-175]],[[50191,31221],[171,19],[1,400],[445,54]],[[50808,31694],[1810,-4]],[[52627,31829],[3,86],[773,-14],[318,161],[807,-23],[832,-123],[382,-161]],[[56985,32007],[604,-47]],[[59632,31902],[3,0]],[[58242,36201],[-51,-844],[-281,0],[3,-499],[-227,-531]],[[59580,42193],[-78,-145]],[[53202,36022],[348,-1],[74,109],[1031,-6]],[[56671,36125],[578,45]],[[57249,36170],[42,84],[951,-53]],[[55942,36161],[517,-31]],[[59271,36308],[727,53],[432,190],[446,-22]],[[51676,40059],[802,11]],[[51472,40170],[-111,1]],[[52546,40069],[265,170],[1125,-17],[139,-277],[403,75],[652,-22]],[[55181,39985],[536,-16]],[[55717,39969],[374,94],[749,-106],[736,-41]],[[58384,39911],[114,-2]],[[58903,31796],[-496,-342],[95,-395],[-142,-836]],[[57254,37104],[70,-4]],[[58474,36941],[68,18]],[[59971,40440],[-56,-147],[-84,-1168]],[[59831,39125],[-30,-597]],[[57249,36170],[-17,-725],[195,-12],[10,-853],[82,-255]],[[57617,33321],[16,-836]],[[57633,33993],[-6,-255]],[[57632,31882],[-17,-1431],[-127,-166]],[[57254,37104],[4,-877]],[[55648,41716],[43,-182],[-17,-1022],[51,-531]],[[55717,39969],[-71,-990],[-114,-1],[2,-384]],[[56056,31869],[-3,-139]],[[60891,37714],[6,17]],[[50809,33119],[-1,-1425]],[[50808,31636],[-35,-1158]],[[55956,36926],[503,-796]],[[50830,33114],[226,-510]],[[51161,32378],[140,-214],[61,-366]],[[51448,31694],[60,-568]],[[57576,39916],[133,3]],[[55782,31748],[271,-18]],[[60083,34704],[155,-66],[331,-389]],[[59117,36285],[-26,-428]],[[59091,35857],[451,-168],[157,-541]],[[59772,34938],[191,-149]],[[54355,34532],[-67,-259]],[[55742,31755],[40,-7]],[[56606,31784],[250,-19],[64,141]],[[57630,32346],[-6,-133]],[[50384,34398],[1,-17]],[[54655,36124],[536,4]],[[55474,36175],[468,-14]],[[58908,36294],[363,14]],[[58242,36201],[421,-34]],[[60932,36594],[533,-79]],[[53127,35995],[75,27]],[[52478,40070],[68,-1]],[[51448,40002],[228,57]],[[57718,39942],[63,37]],[[58498,39909],[574,105]],[[59631,40461],[-78,-238],[-284,-194]],[[57980,39978],[404,-67]],[[59801,38528],[193,-411],[326,-341],[535,-18]],[[57637,34138],[-4,-145]],[[57627,33738],[-10,-417]],[[57633,32485],[-3,-139]],[[55534,38594],[-32,-475]],[[55632,37510],[324,-584]],[[55502,38119],[-54,-346]],[[50523,34121],[225,-753]],[[56419,38880],[-126,-75]],[[51161,32378],[-105,226]],[[59965,34789],[118,-85]],[[59699,35148],[73,-210]],[[50748,33374],[61,-255]],[[57781,39979],[199,-1]],[[55798,31910],[258,-41]],[[56056,31869],[550,-85]],[[57624,32213],[8,-331]],[[50453,34561],[6,0]],[[60876,36529],[56,65]],[[58663,36167],[245,127]],[[56459,36130],[212,-5]],[[55191,36128],[283,47]],[[60056,40543],[-425,-82]],[[59269,40029],[-197,-15]],[[50459,34561],[64,-440]],[[50443,34555],[10,6]],[[41836,53170],[584,52]],[[39740,49447],[692,127],[347,-73],[2000,160],[336,77]],[[49150,55428],[342,-7],[144,-120],[984,-3],[86,117],[556,64]],[[51699,54343],[641,54],[1256,-3]],[[48451,54640],[458,9],[91,113],[644,16],[2,-274],[401,-141],[995,-111],[246,232],[20,344],[264,34]],[[53594,53888],[166,-10]],[[51675,54867],[240,-7]],[[46168,54558],[138,87],[907,93],[5,-169],[1216,94]],[[41802,54304],[575,57]],[[42862,54327],[600,47]],[[43490,54720],[1254,88],[11,-337],[1393,86]],[[39590,53333],[549,-372],[782,79],[106,68],[809,62]],[[51920,55564],[927,-28]],[[52876,55582],[673,41]],[[44967,44842],[14,-901],[-70,-56]],[[44840,51629],[46,-1320],[-8,-931],[46,-1832],[64,-1271],[41,-96],[-32,-1335]],[[44749,54476],[55,-1988],[-116,-12],[-37,-497]],[[52135,47609],[297,84],[197,247],[185,-421]],[[50550,47135],[343,-22],[497,477],[198,11]],[[49713,46784],[278,201]],[[46120,45855],[639,-8],[450,168],[191,256],[317,214],[754,21],[323,-51]],[[48794,46455],[781,77],[-1,233]],[[41443,46111],[135,-105],[597,114],[601,46],[488,146],[735,-2],[715,-190],[1003,-139],[396,100]],[[39788,55206],[480,-431],[605,-230],[276,-489],[400,-402],[1300,-656],[346,-238],[287,-91]],[[48062,50364],[1235,56]],[[52877,55728],[-1,-146]],[[52876,55582],[-115,-609],[-238,3]],[[52523,54976],[-9,-1355],[31,-536],[174,-55],[-26,-1512],[-139,-10],[-16,-442]],[[52365,47688],[40,-466],[-16,-966],[303,-469]],[[52692,45787],[75,-24]],[[53170,46978],[-30,-320],[-246,-164],[-165,-504],[10,-221]],[[51866,44063],[128,185],[3,1105],[316,78],[93,313],[286,43]],[[51915,54918],[608,58]],[[50113,47708],[-15,-431]],[[47444,51737],[-5,169],[280,270],[300,113],[286,322]],[[52814,47519],[767,-43]],[[51747,47600],[388,9]],[[49991,46985],[91,263],[468,-113]],[[51588,47601],[39,-1]],[[53185,47484],[-15,-506]],[[51707,48304],[-4,-314]],[[46035,50309],[106,-263],[799,-1062],[227,-550]],[[43462,54374],[28,346]],[[53549,55623],[227,64]],[[51849,55739],[11,-134]],[[52540,50839],[259,-510],[289,-301]],[[49574,46765],[139,19]],[[43462,54374],[-17,-409],[37,-1296]],[[43986,45517],[-74,-226],[35,-1464]],[[43761,50591],[26,-1349],[61,-1580]],[[43695,52468],[59,-1836]],[[43754,50632],[7,-41]],[[43884,47641],[65,-881],[37,-1243]],[[43476,55476],[14,-756]],[[41879,44406],[405,-25],[2231,156],[444,305],[146,14]],[[39929,44465],[1018,64]],[[41414,44472],[465,-66]],[[40947,44529],[467,-57]],[[45105,44856],[851,-74],[1408,57],[512,-94],[1476,33],[142,-114]],[[49889,44675],[1730,6]],[[39801,47938],[358,-134],[519,15],[362,-328],[432,-282],[674,-78]],[[53559,55471],[73,150]],[[48753,51347],[124,-201],[212,4],[564,-399],[293,-462],[722,-47]],[[44651,51979],[680,-109],[1194,55],[75,-108],[624,23]],[[47444,51737],[77,-62],[1082,59]],[[48615,51577],[138,-230]],[[49297,50420],[75,-1186]],[[53593,53707],[-9,-995]],[[53607,55365],[-12,-1367]],[[53607,55365],[-66,351]],[[51673,54128],[112,-64],[0,-1001],[-169,-453],[16,-2438]],[[51260,55741],[-3,-384],[306,-332],[9,-163]],[[51572,54862],[103,5]],[[51675,54867],[24,-524]],[[51511,44681],[-20,-616]],[[51693,49863],[23,-1065]],[[51703,47990],[44,-390]],[[49369,49234],[12,-477],[141,-201],[-13,-611]],[[49505,52547],[-12,-931],[-184,-794],[-12,-402]],[[49713,46784],[11,-1041]],[[49724,45743],[5,-483],[191,32],[8,-617]],[[49509,47945],[-7,-384],[-122,-473]],[[49380,47088],[2,-320],[192,-3]],[[49889,44675],[25,-622]],[[51673,54128],[26,215]],[[53339,48615],[-1,-116]],[[53324,48953],[15,-338]],[[51630,47600],[117,0]],[[49494,44664],[395,11]],[[47224,51840],[220,-103]],[[53595,53998],[-2,-291]],[[53584,52712],[-2,-186]],[[53582,52526],[3,-93]],[[52661,48179],[329,-87]],[[52990,48092],[429,56]],[[51716,48798],[-9,-494]],[[51707,48304],[-37,-343]],[[53088,50028],[224,-481],[12,-594]],[[53475,47519],[-6,-41]],[[53594,50309],[-19,-971],[22,-1019],[-70,-295]],[[53558,51677],[58,-891],[-22,-477]],[[53584,52381],[-26,-704]],[[51632,50154],[61,-291]],[[47973,50496],[88,-15]],[[73374,50704],[-153,-533]],[[69313,55733],[-47,-577],[77,-515],[132,-378]],[[67371,53173],[-11,54]],[[67360,53227],[-447,-142],[111,-1043],[0,-573]],[[67360,53227],[-15,288],[136,279],[-67,488],[69,814],[358,387]],[[68165,55873],[-324,-390]],[[71168,47738],[560,-769],[338,-134],[146,-303],[104,-529]],[[70688,48736],[138,-299],[363,-275]],[[71189,48162],[-21,-412]],[[75468,53672],[-166,-252],[-69,-813],[-127,109],[-243,-78],[-217,314],[-185,-490],[-255,-294],[-27,-194],[-337,-401],[-283,-84],[-185,-785]],[[75865,54004],[-372,-108],[-40,-197]],[[72840,48903],[459,-101]],[[72732,48941],[108,-38]],[[73922,49381],[324,298],[188,-80],[331,101],[189,201],[207,-97],[67,-220],[319,584],[206,49]],[[73304,48818],[269,275],[304,121],[45,167]],[[72732,48941],[-151,340],[-93,-70],[-86,368]],[[72743,48787],[363,-528]],[[73312,47626],[502,-112],[159,-378]],[[73134,48172],[178,-546]],[[66359,54048],[-106,-587]],[[66334,54349],[25,-301]],[[70474,54116],[226,-115],[347,87],[-38,-374],[146,-441],[44,-394],[255,-274],[100,-369],[-75,-402],[77,-131]],[[71556,51703],[519,-247],[43,-190]],[[72124,51265],[164,-452]],[[72287,50796],[387,-636],[27,-316]],[[72605,45795],[393,316],[52,231]],[[73998,47054],[-71,-32]],[[72300,50858],[-17,-114]],[[69963,55143],[-159,-85],[-338,-718]],[[70652,49076],[36,-340]],[[72857,49568],[-81,-90]],[[72876,49594],[215,269]],[[70505,49177],[418,-8]],[[72420,49634],[28,0]],[[70269,51535],[107,-106]],[[72732,48941],[11,-154]],[[72701,49844],[143,-256]],[[75510,52014],[-479,-1225],[-291,-356]],[[66079,52059],[362,-31]],[[68606,55071],[-22,-32]],[[68647,55024],[40,-12]],[[75468,53672],[608,-554],[312,-415],[-25,-188]],[[76363,52515],[269,-237]],[[74784,54285],[669,-586]],[[72097,53883],[-26,-470],[156,-468],[3,-358],[133,-218],[93,-873]],[[72153,55290],[-241,-723],[185,-684]],[[72145,49047],[-101,-795],[48,-648],[-63,-199]],[[72029,47405],[2,-393]],[[75844,52211],[125,-92],[394,396]],[[75844,52211],[-204,15]],[[70377,49293],[7,-142]],[[71113,50833],[294,141],[289,329],[422,-37]],[[72124,51265],[278,-40]],[[72719,51628],[0,-41]],[[72719,51587],[648,614]],[[73430,52229],[-63,-28]],[[72719,51587],[116,-280],[-180,-300],[68,-311]],[[73402,55160],[-202,-1151],[-278,-392],[-49,-717],[-118,-570],[-36,-702]],[[72830,49778],[14,-190]],[[73224,48817],[-118,-558]],[[73106,48259],[12,-647],[-229,-688],[29,-246],[-129,-614]],[[69926,55599],[43,-492],[265,-383],[240,-684],[57,-525],[147,-604],[-31,-1077],[127,-69],[270,-656],[46,-277]],[[71099,50830],[-24,-458],[-170,-433]],[[71168,47750],[0,-12]],[[72096,49115],[-203,-525],[-314,-24],[-158,-610],[-253,-206]],[[71168,47738],[-138,-502]],[[68753,55767],[-113,-707],[-400,-1482],[-172,-279],[-74,-480],[67,-407],[-85,-619],[19,-312]],[[65186,54752],[76,-149]],[[65262,54603],[-20,-44]],[[75753,50217],[68,-209],[254,-238]],[[65262,54603],[121,61]],[[64396,55109],[65,-346],[283,-161],[153,69]],[[65446,54709],[240,-270],[-35,-334],[85,-256],[248,-102],[269,-286]],[[66253,53461],[223,-550],[-82,-316],[79,-501],[382,-274],[301,-580],[381,-31],[413,284],[153,-110]],[[68641,50886],[464,249],[242,219],[195,-523],[343,-80]],[[69888,50756],[206,-169]],[[70154,50244],[99,-380]],[[72179,49082],[54,112]],[[65239,54548],[3,11]],[[68186,51143],[143,-232]],[[71090,50832],[23,1]],[[74054,46984],[5,-18]],[[65949,56734],[2,-432]],[[65551,54906],[164,8],[549,723],[596,-314],[86,-163]],[[69417,54354],[58,-91]],[[72844,49588],[13,-20]],[[73224,48817],[75,-15]],[[73299,48802],[284,-485],[110,-438],[232,-253],[129,-642]],[[72118,51266],[6,-1]],[[68078,55886],[558,-855]],[[65951,56302],[169,-139],[141,-526]],[[76744,50925],[290,-554],[152,59],[-29,-293]],[[77157,50137],[-8,-16]],[[72456,51496],[8,-165]],[[72464,51331],[-87,-324]],[[72377,51007],[-87,-171],[-65,-597],[-163,-550],[83,-642]],[[70861,49795],[-257,-459]],[[72464,51331],[255,256]],[[70371,49335],[6,-42]],[[68131,51279],[-19,-330]],[[74863,54861],[-85,-610],[-274,-407],[-110,75],[-146,-299],[-332,-56]],[[72723,50696],[107,-918]],[[73237,48919],[-13,-102]],[[72789,46064],[-141,-330]],[[70905,49939],[-44,-144]],[[70390,51462],[-296,-875]],[[69475,54263],[92,-50]],[[72145,49047],[34,35]],[[75453,53699],[15,-27]],[[64897,54671],[342,-123]],[[70094,50587],[60,-343]],[[70253,49864],[118,-529]],[[72233,49194],[169,385]],[[65383,54664],[63,45]],[[68103,51383],[28,-104]],[[68329,50911],[155,-129],[157,104]],[[68161,51205],[25,-62]],[[65446,54709],[53,92]],[[72402,49579],[6,10]],[[65951,56302],[-3,-560],[-165,-346]],[[65499,54801],[52,105]],[[66946,55160],[426,-77],[178,179],[58,-149],[706,107],[270,-181]],[[72857,49568],[380,-649]],[[68584,55039],[103,-27]],[[68687,55012],[116,11],[386,-305],[174,-262]],[[69363,54456],[54,-102]],[[58806,79949],[-106,-503],[-122,-160],[65,-547]],[[59053,80095],[266,260]],[[56537,72734],[-251,-1166],[-17,-295]],[[59856,80475],[-550,-969],[-332,-690],[-322,-223]],[[64068,81966],[127,-117],[178,-551],[118,-41]],[[58130,81803],[208,184],[374,-126]],[[64017,82740],[240,79]],[[63590,82379],[357,183],[70,178]],[[59203,82691],[397,112],[308,-235]],[[63618,82618],[159,193],[-82,320],[142,453],[379,297],[450,686],[408,111],[126,263]],[[59229,82724],[24,-539],[227,-436]],[[58806,79949],[247,146]],[[57028,81848],[-1,-46]],[[61190,80750],[464,-159]],[[63480,80626],[-13,-184]],[[62704,82099],[88,-106]],[[62696,80504],[-13,-91]],[[56269,71273],[-21,-168]],[[55718,73063],[819,-329]],[[56573,72698],[61,-38]],[[63694,82224],[374,-258]],[[57005,81837],[54,3]],[[58712,81861],[30,-31]],[[58111,81804],[19,-1]],[[56617,81855],[38,-2]],[[62026,83205],[537,294]],[[62026,83205],[-260,-116],[-256,-602],[50,-397],[-141,-168]],[[55846,81632],[202,-83],[371,-448],[479,-310]],[[60296,75912],[-133,-425],[-124,-60]],[[59738,73483],[-369,-96],[-269,-359]],[[58643,78739],[9,-146]],[[57986,75176],[-27,-537],[-120,-596]],[[57814,73905],[-3,-278],[156,-687]],[[57902,71807],[38,868]],[[57749,71044],[143,294],[10,469]],[[58412,77231],[-227,-1012],[-52,-773],[-83,-181]],[[56980,81480],[-74,-279],[-49,-1627]],[[56789,78374],[-311,-761],[-163,-896],[-340,-229],[-150,-370],[56,-356],[-74,-802]],[[57697,80856],[733,-35],[643,-178]],[[56898,80791],[496,-58],[314,87]],[[56100,79907],[212,-367],[447,-48]],[[59082,80642],[378,-146],[533,-31]],[[59993,80465],[649,-36]],[[59438,71758],[69,-794]],[[56573,74940],[314,189],[404,733],[122,86],[197,482],[340,318],[278,401],[184,82]],[[56573,74911],[-179,-768],[-429,-678]],[[57057,72078],[39,-205]],[[56718,72598],[120,-237]],[[56915,71290],[-34,-213]],[[55237,73370],[64,-2]],[[58050,75265],[56,-78]],[[58106,75187],[396,365],[151,31],[264,470],[196,75],[257,406]],[[55210,75196],[493,-64],[83,-165]],[[57226,75703],[151,4],[349,-343],[265,-113]],[[56598,74974],[-109,45],[-186,-299],[-460,204]],[[58103,75187],[3,0]],[[61419,81922],[-184,-164],[-200,-671],[82,-550]],[[59738,73483],[25,-401]],[[60039,75427],[-9,-718],[-114,-235],[-178,-991]],[[58424,77751],[-4,-168]],[[58507,77873],[-42,-73]],[[57839,74043],[-25,-138]],[[57966,72911],[-26,-236]],[[57991,75251],[-5,-75]],[[57027,81802],[-47,-322]],[[56857,79574],[-98,-82]],[[56759,79492],[30,-1118]],[[55813,74925],[-202,-154],[-71,-276],[9,-672],[95,-612]],[[60642,80429],[362,186],[113,-78]],[[59413,71865],[25,-107]],[[58652,78593],[-145,-720]],[[55965,73465],[-189,-381]],[[58465,77800],[-32,-44]],[[56642,72648],[76,-50]],[[56838,72361],[219,-283]],[[57096,71873],[-181,-583]],[[57967,72940],[-1,-29]],[[56634,72660],[8,-12]],[[58050,75265],[-59,-14]],[[55786,74967],[27,-42]],[[55813,74925],[30,-1]],[[58531,77432],[-119,-201]],[[56774,81882],[269,109],[24,-191]],[[55517,73308],[134,-393],[294,58]],[[97619,7887],[-180,-909]],[[97061,5553],[273,228],[17,375],[145,452],[-13,270]],[[97600,11406],[-220,-557],[-108,-489],[138,-871],[587,-294]],[[95700,15974],[-192,-190],[-69,-641]],[[96286,16982],[36,-395],[148,-253],[103,-540],[357,-339],[380,-513]],[[97483,6878],[79,-8]],[[98273,15959],[94,172]],[[94965,21524],[259,224]],[[95939,5699],[184,960],[271,459],[81,375],[359,740],[248,1106],[-71,460],[58,603],[107,232]],[[95327,21102],[-363,182]],[[94620,18872],[180,-486]],[[94621,19094],[-8,-231]],[[95735,18839],[17,5]],[[95784,15546],[-58,-262],[70,-338],[220,-291],[59,-675]],[[94346,14859],[256,140],[126,-115],[219,442]],[[93530,16330],[-12,-306],[173,34],[102,-450],[133,128]],[[96677,7846],[332,-373],[251,-121]],[[97258,7341],[181,-363]],[[96022,17450],[414,53],[633,-144],[181,338]],[[95752,18844],[181,153]],[[95712,18819],[-311,-246]],[[94304,20273],[299,-177],[286,165],[191,-84],[145,130],[365,-53]],[[95353,19452],[-200,-602],[-353,-464]],[[94800,18386],[-153,-526],[-412,-26]],[[93653,16929],[224,359],[323,250]],[[95099,16283],[-14,-719],[-113,-184]],[[94346,14859],[-149,-329],[-414,-322],[-184,32]],[[98367,16131],[163,242],[56,-358],[-132,-167],[-181,111]],[[98273,15959],[-146,-372]],[[96440,16895],[180,44],[91,-198],[298,-89],[173,-188]],[[96286,16982],[154,-87]],[[94963,22262],[77,-255],[-75,-483]],[[94965,21524],[-80,-86]],[[95380,18588],[-197,-711],[19,-716]],[[93926,15736],[204,-83],[202,194],[606,190],[161,246]],[[95099,16283],[49,141]],[[94965,21524],[-1,-240]],[[95077,16784],[114,358]],[[96075,13980],[242,-177],[357,-435],[292,207],[73,-293],[209,-127]],[[95735,18839],[-23,-20]],[[97439,6978],[44,-100]],[[97454,14261],[-78,-662],[-127,-391],[17,-411],[268,-836],[5,-454],[211,-720],[156,-321],[-115,-697],[140,-519]],[[95308,20288],[-22,-657],[57,-169]],[[94676,21954],[209,-516]],[[94885,21438],[46,-494],[238,-253],[119,-382]],[[94158,19508],[222,-353],[241,-61]],[[94621,19094],[123,198],[381,236],[104,255],[370,461]],[[95392,18583],[51,-371],[289,-668],[265,-83],[289,-479]],[[95365,18829],[27,-246]],[[95379,20882],[88,39]],[[86482,40438],[414,483]],[[89316,43912],[29,-146]],[[84786,40317],[201,483],[382,207]],[[86822,43742],[-11,-169]],[[87153,41686],[-144,-487]],[[86601,42537],[372,337]],[[85320,40998],[101,10]],[[84747,40275],[140,176]],[[85504,39844],[614,255]],[[87244,42363],[-64,277],[124,755]],[[88010,45325],[-224,-514]],[[85755,40630],[271,9],[686,217]],[[85869,41709],[28,-477],[260,-1116]],[[87643,44710],[77,-115]],[[88010,45325],[24,93]],[[86131,40089],[-188,-456]],[[86516,42564],[28,-359],[316,-975]],[[87024,40897],[232,-612],[39,-435]],[[87324,39746],[160,-351],[337,-386]],[[89762,44627],[285,-821]],[[85287,41619],[34,-384]],[[81728,42658],[200,-995],[-112,-223],[170,-496]],[[82251,40874],[17,-141]],[[82939,40741],[24,-208]],[[82597,41738],[248,-858]],[[87610,39252],[-11,-169]],[[87828,39613],[-232,-315]],[[85485,40869],[270,-239]],[[84963,41524],[5,-25]],[[81882,40849],[104,95]],[[88637,42080],[224,233]],[[88163,42003],[403,36]],[[81713,42491],[265,26]],[[86297,43970],[292,-473],[-91,-470]],[[86118,40099],[361,340]],[[87340,41981],[-187,-295]],[[87244,42363],[33,-249]],[[86554,43603],[113,53]],[[86667,43656],[96,58]],[[87762,44777],[-155,-103]],[[87607,44674],[-390,-318]],[[87786,44811],[-24,-34]],[[87720,44595],[48,-230],[-447,-732],[-17,-238]],[[87304,43395],[-176,-453]],[[88566,42039],[71,41]],[[87217,44356],[-395,-614]],[[86822,43742],[-59,-28]],[[86801,43423],[-240,-552]],[[86860,41230],[62,-175]],[[87295,39850],[29,-104]],[[89562,45006],[200,-379]],[[85465,40888],[-123,-513],[164,-585]],[[86354,42391],[148,-606]],[[87948,41915],[72,-101]],[[88020,41814],[146,-133],[112,-371],[83,-903],[94,-383]],[[86700,44791],[99,-103],[-144,-678],[146,-587]],[[86801,43423],[184,-506],[-29,-572]],[[87759,39773],[296,-410],[272,-69]],[[87091,40928],[266,-587],[402,-568]],[[86906,40947],[118,-50]],[[86427,41133],[84,62],[406,-180]],[[87227,42143],[40,46]],[[87128,42942],[-365,-36]],[[85421,41008],[44,-120]],[[85506,39790],[3,-19]],[[84968,41499],[353,-264]],[[86502,41785],[89,-676]],[[85321,41235],[107,-188]],[[86929,41457],[-109,-202]],[[86515,43093],[-45,9]],[[85993,41990],[71,-40]],[[36782,28134],[49,12]],[[32936,31412],[762,105],[96,162]],[[35619,26364],[77,-331],[219,-466],[216,-50],[161,406],[307,84]],[[32334,23836],[162,512],[190,319],[268,106]],[[32954,24773],[192,-65],[179,-387],[166,-76],[271,168],[319,-74],[258,135],[306,1333],[-18,282]],[[28631,24051],[138,-57],[138,-483]],[[29213,23303],[274,47],[299,-281]],[[32954,24773],[-78,405],[-177,340]],[[31673,35537],[164,-175],[630,-344],[409,135],[321,375],[82,358]],[[33683,36618],[116,608],[-17,353]],[[35191,39010],[-31,-226]],[[28907,23511],[306,-208]],[[33279,35886],[210,222],[194,510]],[[35160,38784],[-2,-246]],[[29802,27736],[-369,-514],[-40,-621],[-255,-404],[-318,-681],[95,-213],[-237,-775],[2,-408]],[[32826,31492],[34,-99]],[[28869,30509],[443,-445]],[[30066,35285],[-90,398],[-86,1159],[167,905],[-45,372]],[[35619,26364],[406,530],[713,1228],[129,35],[192,369]],[[27345,35184],[18,-295],[-165,-342],[21,-517],[-81,-247],[-40,-935],[46,-241],[-152,-1295],[-114,-664],[-204,-551],[-371,-181]],[[27186,35348],[-46,617],[160,968],[-208,312],[-317,198]],[[25372,21682],[-33,307]],[[28647,30678],[222,-169]],[[92316,27789],[255,-60]],[[91280,27304],[322,233],[263,-132],[283,277]],[[92148,27682],[169,95]],[[92650,27561],[347,-211],[226,106],[284,-128],[366,-444],[344,-748]],[[92665,28039],[-28,-192]],[[95150,25418],[40,-185]],[[93920,26529],[834,-510]],[[94760,26017],[261,-184]],[[94986,26425],[-21,-153]],[[92558,27747],[-56,-163]],[[95666,28281],[124,19]],[[95241,25205],[36,-225]],[[95276,24830],[-31,-65]],[[95162,27011],[39,-17]],[[95265,24961],[11,-131]],[[94566,26776],[334,-435],[55,-233]],[[94743,24529],[534,451]],[[95201,26994],[137,-286]],[[95158,27181],[4,-170]],[[94551,27299],[15,-523]],[[95462,26655],[-85,-421]],[[94442,25538],[261,40]],[[91175,25871],[323,-49],[101,176],[663,-47]],[[91058,25874],[94,113]],[[95920,26831],[-413,-207],[-169,84]],[[96878,27713],[551,-316]],[[96330,28242],[35,141],[278,-495],[233,-174]],[[91256,26860],[143,-121]],[[91434,26683],[75,-136],[522,58],[368,368],[166,-294],[245,243],[371,-72],[222,143],[477,-441]],[[93220,25630],[7,-583]],[[94217,26136],[587,-396],[158,35]],[[95113,24749],[7,-879]],[[94930,25650],[-2,-41]],[[92317,27777],[-1,12]],[[91124,27018],[126,-108]],[[91041,26979],[78,41]],[[92534,27302],[273,-295],[-57,-731],[108,-457]],[[92317,27777],[4,-235],[170,-145]],[[92310,28276],[6,-487]],[[95010,25748],[-80,-98]],[[94928,25609],[-145,-305]],[[94934,27918],[389,-483]],[[95328,27433],[227,-103]],[[95555,27330],[3,-1]],[[95558,27329],[249,-197]],[[94087,26970],[-145,-192]],[[94358,25543],[84,-5]],[[96290,27621],[44,240]],[[92491,27397],[43,-95]],[[94962,25775],[75,-14]],[[95057,25698],[-47,50]],[[95082,25652],[28,-96]],[[93942,26778],[-59,-120]],[[94138,27116],[-51,-146]],[[95409,27519],[187,136],[134,671]],[[94399,27374],[-261,-258]],[[94703,25578],[217,29]],[[95410,28282],[-21,-1211],[-228,-774]],[[96334,27861],[-4,381]],[[95807,27132],[173,-225]],[[95080,25658],[2,-6]],[[94742,25370],[-265,-416]],[[92635,27818],[-77,-71]],[[92555,27658],[-64,-261]],[[95134,25617],[6,-26]],[[93870,26526],[307,-463]],[[92585,27748],[60,-251]],[[65394,31303],[-189,32]],[[57229,25534],[239,268],[483,27],[619,252],[328,-82],[155,87],[310,-111]],[[56623,25504],[495,42]],[[59897,25867],[159,588],[-6,562]],[[59023,25175],[332,153],[118,233],[339,319]],[[62846,32094],[141,484],[480,166]],[[63557,32785],[70,201],[370,-3],[275,437]],[[64747,27538],[-243,142],[12,289],[-108,443]],[[64762,27560],[375,-102],[158,-184],[223,-14]],[[64302,28547],[-73,-513],[-130,-366]],[[65300,33428],[-83,-670]],[[65217,32758],[-75,-752]],[[64789,29745],[-101,-672],[-300,-385]],[[63343,32014],[-292,39],[-113,-330]],[[63506,33640],[-47,-1064],[-55,-284]],[[65560,32607],[103,-14]],[[65188,30616],[144,-19]],[[65188,30616],[21,497]],[[65288,32504],[283,14]],[[65495,28506],[72,-22]],[[65116,28529],[284,2]],[[65545,33406],[28,-1144]],[[64815,32770],[218,-668],[109,-96]],[[65196,31912],[139,-374]],[[65567,28484],[-185,-282]],[[65602,27115],[149,-172]],[[65767,24464],[190,-154]],[[64560,33146],[452,35],[538,-66]],[[61819,26520],[460,-333]],[[65124,25557],[5,-47]],[[65039,25574],[85,-17]],[[65129,25510],[37,-272],[231,-414],[370,-360]],[[65477,27127],[125,-12]],[[58678,25004],[152,185],[193,-14]],[[60742,28206],[-61,-185]],[[58120,24917],[70,-46]],[[63467,32744],[90,41]],[[65518,27260],[88,-70]],[[64408,28412],[-94,314]],[[64868,31426],[337,-91]],[[65142,32006],[54,-94]],[[65274,31232],[-158,-281]],[[65196,31912],[-33,-264]],[[62903,31344],[-34,-449]],[[62938,31723],[-20,-270]],[[61224,25572],[2,52]],[[62494,33370],[336,4],[46,-174],[534,-252],[40,164]],[[60712,33842],[301,-74],[2,-157],[365,-64],[581,12],[400,-198]],[[61117,25409],[-177,-255],[-48,-313],[-63,-2271],[-55,-577],[-124,-110],[-81,-413],[-15,-668],[-251,-853],[-229,-469],[23,-347],[-318,-393],[-94,-555]],[[61788,26465],[-275,-192],[-333,21],[-21,-553]],[[62040,29417],[-156,-430],[21,-362],[-61,-1737]],[[62775,27598],[357,105],[559,-107],[327,24]],[[60694,28031],[1652,-177],[286,-83],[140,-178]],[[64723,26828],[149,-1034]],[[65013,27968],[-251,-408]],[[64747,27538],[-23,-704]],[[65187,28536],[-48,-516]],[[57118,25546],[111,-12]],[[59363,25975],[464,-108],[617,120]],[[60449,25987],[227,-21],[156,-188],[327,-37]],[[61159,25741],[263,-148],[577,92],[241,234]],[[62361,25906],[313,168]],[[63121,31616],[183,-45],[473,352]],[[62047,30206],[-32,-566]],[[62174,30802],[-85,-200]],[[63778,31946],[162,393],[344,33],[59,388]],[[63778,31946],[-1,-18]],[[64780,33484],[11,10]],[[61095,30776],[78,312],[476,174],[417,-83],[438,249]],[[59516,29152],[600,344],[-41,415],[148,324],[185,30],[311,384],[267,27]],[[64747,27538],[15,22]],[[59635,31902],[368,324],[557,-188]],[[60561,32067],[380,23],[545,-75]],[[63777,31928],[0,-5]],[[62761,21790],[-22,-759],[-220,-610],[-24,-418],[71,-447]],[[62862,24675],[-95,-724],[81,-136],[-42,-1094],[-101,-191],[31,-731]],[[63666,26115],[-68,-721]],[[63378,25188],[-239,-87],[-200,-423]],[[59320,28160],[-103,-461],[167,-314],[-149,-608],[146,-144],[-18,-658]],[[59411,28992],[1,-69]],[[59411,28917],[0,-87]],[[60731,33474],[-199,-290],[-46,-547],[94,-415],[-215,-1060],[-64,-870]],[[59411,28992],[58,88]],[[59370,28920],[35,32]],[[57340,24574],[-30,-610],[176,-11],[-18,-432],[186,-340],[4,-237]],[[57229,25534],[124,-401],[-13,-559]],[[57104,26165],[14,-619]],[[58180,20949],[318,-385],[183,26],[304,-633],[72,-668],[355,-253],[-3,-633]],[[57698,22924],[193,-520],[36,-562],[205,-694]],[[60444,25987],[5,0]],[[65228,31064],[132,203]],[[63450,33112],[39,-5]],[[61828,26687],[-9,-167]],[[61819,26520],[-31,-55]],[[61117,25409],[107,163]],[[61844,26888],[0,-76]],[[61843,26801],[-15,-114]],[[58463,24858],[239,-75]],[[63489,33107],[85,-4]],[[65285,29917],[-98,-1381]],[[65013,27968],[120,42]],[[61844,26812],[-1,-11]],[[62674,26074],[142,222],[573,496]],[[62240,25919],[121,-13]],[[64028,27514],[-148,-155],[-62,-358]],[[62174,30802],[294,276],[88,258]],[[63035,31585],[86,31]],[[62089,30602],[-42,-396]],[[60986,30676],[109,100]],[[62504,31428],[48,-5]],[[64314,28726],[-205,49],[-197,309]],[[63714,29775],[121,-438]],[[63423,30309],[211,-327]],[[63708,26875],[-20,-478]],[[63598,25394],[-220,-206]],[[63818,27001],[-14,-27]],[[59469,29080],[37,84]],[[59506,29164],[10,-12]],[[62827,31962],[19,132]],[[62361,33361],[133,9]],[[65113,30899],[115,165]],[[65400,28531],[95,-25]],[[58702,24783],[312,11],[438,-214]],[[65007,25607],[32,-33]],[[63804,26974],[367,-98]],[[63389,26792],[319,83]],[[64343,32760],[433,603],[4,121]],[[62556,31336],[-4,87]],[[62552,31423],[128,224]],[[62773,31637],[54,325]],[[63835,29337],[29,-161]],[[63864,29176],[48,-92]],[[62932,31225],[491,-916]],[[63634,29982],[80,-207]],[[62773,31637],[208,-70]],[[65284,31336],[-10,-104]],[[64171,26876],[116,-73]],[[63804,26974],[-96,-99]],[[64860,30468],[-71,-723]],[[63688,26397],[-22,-282]],[[62918,31453],[-15,-109]],[[59475,28698],[-155,-538]],[[65428,31438],[-23,-130]],[[76578,47336],[-67,45]],[[83391,42975],[214,-111]],[[80472,44080],[62,-400],[221,-272]],[[78476,45368],[-67,388],[191,818],[-410,477]],[[76511,47381],[75,-53]],[[82771,43042],[247,-48],[243,155],[130,-174]],[[79196,49171],[-67,-213]],[[77690,47159],[276,82]],[[77433,48750],[111,109]],[[77433,48750],[-188,-145],[-161,-786],[31,-165],[-448,-244]],[[84436,41153],[244,328]],[[84446,41049],[-331,-492],[-239,96]],[[84727,41775],[168,7]],[[84436,41153],[10,-104]],[[80755,43408],[-72,-594],[153,-360],[22,-472],[-109,-260]],[[80749,41722],[18,-559]],[[77688,45042],[-11,-27]],[[81236,43827],[-21,-272],[206,-9],[346,-486],[-39,-402]],[[80047,50517],[332,-468],[230,-845],[-75,-275],[95,-579],[-30,-264],[155,-542],[218,-300],[79,-310],[-137,-666],[156,-207]],[[81070,46061],[-62,-119],[11,-752],[187,-700]],[[81205,44166],[-26,-76]],[[82857,42184],[-75,181],[-9,866],[-78,288],[-226,165],[-158,713],[-39,702],[-233,550]],[[82597,41738],[-22,332]],[[81057,45062],[349,566],[165,-80],[105,284]],[[80986,44142],[26,-314],[-257,-420]],[[79628,41459],[-103,-562],[-218,-244],[-159,106]],[[79628,41459],[143,81],[288,573],[376,71],[-55,227]],[[80380,42411],[189,345]],[[80620,42730],[61,72]],[[79230,38040],[80,73]],[[81205,44166],[96,27]],[[81486,44171],[251,55],[75,-198],[307,257],[-112,534],[210,166],[281,-115],[118,286]],[[77777,45474],[491,-143],[208,37]],[[78476,45368],[168,30],[404,-184],[290,-556],[427,-617],[337,54]],[[77670,45034],[7,-19]],[[84641,42139],[52,-313]],[[77387,46237],[-94,-425],[-220,-142]],[[77387,46237],[-30,284],[296,188],[35,251]],[[80263,43038],[401,-396],[711,-87],[77,114],[261,-178]],[[81978,42517],[597,-447]],[[82575,42070],[277,121],[193,-168],[430,187],[257,-170]],[[77149,50121],[725,-5],[253,264],[45,295],[265,142],[259,-74],[379,178],[196,316]],[[79297,51207],[76,10]],[[77072,49804],[-313,-505],[39,-138],[-207,-223],[-235,-553],[23,-193]],[[83815,41399],[106,-1032]],[[78441,47755],[89,-110],[445,273],[396,-111],[87,214],[362,315],[105,-181],[241,333]],[[84680,41481],[47,223]],[[77073,45670],[-70,-55]],[[77794,47653],[298,-402]],[[77803,47874],[-9,-221]],[[77149,50121],[-113,-238],[412,-296]],[[77448,49587],[115,-250],[-27,-470],[258,-244],[-12,-638]],[[77782,47985],[21,-111]],[[79183,48338],[13,-157],[364,-545],[87,-294],[-39,-502],[146,-810],[-100,-227]],[[79129,48958],[50,-460]],[[79399,51129],[57,-250]],[[77688,45042],[59,21]],[[81206,44490],[17,-282]],[[79148,40759],[-14,-103]],[[80307,44076],[752,106],[180,-356]],[[80102,44095],[205,-19]],[[81301,44193],[185,-22]],[[84693,41826],[34,-122]],[[84727,41704],[219,-175]],[[79456,50879],[479,-215]],[[79285,51316],[88,-99]],[[79179,48498],[4,-160]],[[79096,49025],[33,-67]],[[79134,40656],[29,-461]],[[79217,38020],[13,20]],[[77003,45615],[-13,-14]],[[76508,47352],[17,61]],[[71761,33337],[27,1]],[[73589,31375],[25,47]],[[71639,27861],[70,156]],[[71856,33488],[-72,-161]],[[71735,33243],[15,96]],[[73551,31336],[38,39]],[[73589,31375],[47,83]],[[73311,31094],[257,355]],[[70980,28951],[105,-20]],[[69299,30783],[-68,-413]],[[73686,31547],[341,658]],[[73600,32168],[750,-145]],[[72557,28476],[-241,-523]],[[73697,31194],[-51,-434],[-122,-272]],[[69485,30926],[35,-449]],[[74064,31383],[325,-88]],[[72824,31617],[229,-83]],[[73053,31534],[46,-56]],[[73241,33098],[177,-207],[451,-236]],[[73568,31449],[74,113]],[[68667,31747],[173,-87]],[[73686,31547],[-21,-36]],[[71459,31462],[159,-177]],[[69732,33566],[76,45]],[[68134,34510],[155,-60]],[[69399,26038],[1024,1240]],[[68915,25448],[411,411],[59,164]],[[68182,24864],[461,486],[235,99]],[[70748,25529],[18,-33]],[[74003,28291],[171,-43]],[[71965,30364],[427,-91]],[[69487,30961],[212,-8]],[[69833,31040],[330,-106],[322,-304],[1475,-265]],[[70105,22661],[228,108],[385,-26],[8,108],[471,2],[30,-175],[589,-175],[21,-150]],[[71837,22353],[762,-170]],[[70362,33319],[-71,-86]],[[70291,33233],[-190,-1156],[-286,-49],[-168,-559]],[[69112,30023],[-82,-44]],[[68878,25449],[37,-1]],[[69138,32723],[-441,-771]],[[72073,28708],[412,-48],[1518,-369]],[[74174,28248],[499,-153]],[[69528,29153],[578,-121],[95,64],[790,-147]],[[71085,28931],[826,-190]],[[68339,30100],[691,-121]],[[69112,30023],[333,-57]],[[74188,32293],[-66,-577]],[[74062,30682],[-166,-713],[-111,-1104]],[[73624,27369],[-32,-344],[162,-175],[-72,-918]],[[73785,28865],[-161,-1496]],[[71491,25472],[586,-123]],[[72077,25349],[643,-122]],[[69522,25929],[264,-100],[-20,-281],[729,-117],[253,98]],[[70766,25496],[229,-79]],[[71491,25472],[-103,20]],[[68087,19008],[-112,-924]],[[69882,33183],[409,50]],[[69138,32723],[223,213],[517,190]],[[68671,35613],[496,63],[229,-178],[822,-120],[487,-626],[635,-253],[342,-398],[393,-54],[530,-193],[465,-615]],[[67801,35781],[696,-140]],[[72023,35397],[-81,-1283]],[[71942,34114],[-82,-603]],[[64003,19625],[-183,-432],[-71,-655],[-129,-566],[99,-191]],[[71942,34114],[440,434],[687,294],[124,-37]],[[65446,23282],[-43,-1453],[96,-835]],[[72392,30273],[316,-76]],[[69699,30953],[134,87]],[[69647,31469],[-162,-543]],[[71911,28741],[162,-33]],[[74061,30951],[1,-269]],[[74122,31716],[-19,-224]],[[68497,35641],[174,-28]],[[73816,33129],[-158,-1541],[28,-41]],[[73420,32083],[180,85]],[[74103,31492],[-42,-541]],[[73647,31403],[417,-20]],[[71790,28006],[-81,11]],[[71860,33511],[-5,-309]],[[73816,33129],[41,14]],[[70402,33511],[-15,-184]],[[72325,28587],[-87,-233]],[[8617,4736],[7,336]],[[8723,2474],[142,158]],[[8185,6845],[236,195],[99,-123],[197,272],[306,105],[119,647],[-114,527]],[[9028,8468],[523,-171],[273,29],[167,784],[173,323]],[[8537,6925],[46,-813],[-204,-388]],[[8849,9110],[179,-642]],[[8799,1992],[275,-96],[699,263],[156,259],[256,40],[532,-531],[286,16],[213,250],[133,777],[264,-255],[251,105],[333,633],[24,452],[425,33],[404,322]],[[8661,4661],[167,-526],[126,-994]],[[8956,3142],[-92,-522],[108,-687]],[[6160,6613],[115,694],[356,339]],[[8874,13408],[-1,-149]],[[8168,5998],[65,83]],[[8824,510],[77,-427]],[[7642,9112],[182,-318],[88,-408],[-133,-210],[-50,-374],[70,-392],[-63,-380],[104,-507]],[[14845,12167],[109,-90],[-13,-458],[337,-406]],[[12868,9018],[-29,-59]],[[12811,8913],[-206,-561],[47,-773],[149,-295],[235,-154]],[[12965,11291],[58,-504],[-171,-339],[149,-857],[-133,-567]],[[15278,11213],[153,74],[363,-210]],[[5060,8614],[142,302],[324,34],[151,808],[285,20],[398,376]],[[10253,7743],[322,53]],[[11607,6557],[221,-464],[245,41],[172,-296]],[[13631,13785],[100,-229]],[[12839,8959],[-28,-46]],[[8243,5311],[-95,-13]],[[6364,10306],[-73,-100]],[[8573,4722],[154,-115]],[[7840,6523],[2,-142]],[[56531,25446],[92,58]],[[51555,27782],[-12,-850],[-72,-138],[-3,-1865]],[[51831,29944],[0,-920]],[[51831,29024],[-21,-185],[-243,-230],[-12,-827]],[[51728,30477],[-1,-238]],[[55949,30367],[-175,-426]],[[56171,24511],[443,-138]],[[55839,24308],[-4,-1333]],[[55834,22970],[21,-659]],[[56235,24248],[-51,159]],[[55940,24234],[32,73]],[[55774,29941],[30,-221]],[[56888,29504],[387,-22]],[[58056,29618],[161,-324],[317,-265],[154,163],[485,-25],[141,-271]],[[57439,29553],[512,-15]],[[54220,19422],[498,12],[64,188]],[[53549,16747],[-160,-346]],[[52009,25462],[40,-439],[607,-699]],[[54427,22368],[149,-247],[887,-725],[234,-114]],[[55708,21201],[559,-419]],[[53011,23418],[373,-272],[62,-157],[351,-90]],[[51541,26799],[4,-317],[147,-255],[209,-804]],[[50585,28533],[355,-554],[16,-173],[308,-682],[173,-238]],[[53992,18808],[-148,-697],[-224,-470]],[[53389,16401],[29,-911]],[[53619,17583],[-70,-836]],[[51657,30477],[70,-238]],[[50345,23548],[662,-14],[516,57],[344,-89],[501,509],[344,191],[897,-139],[32,103],[632,213],[590,-20],[485,334]],[[50336,27502],[565,-3],[109,116],[973,-3],[44,57],[841,-63],[221,-171],[476,-184],[256,0],[239,230],[178,-51],[261,356]],[[54241,27430],[18,-1]],[[55095,20329],[-182,-166],[-131,-541]],[[54782,19622],[122,-212],[61,-617]],[[54473,30425],[-10,-556],[-138,-418],[-29,-1069],[94,-448]],[[56011,28200],[368,1087],[-1,359]],[[50290,21583],[0,-6]],[[57467,28538],[226,212],[184,335],[-6,273],[203,276],[37,392],[249,197]],[[50981,18625],[103,-345],[250,-270],[30,-361],[-93,-339],[-40,-1421],[-52,-109],[-70,-2061],[-85,-708],[-176,-315],[-275,-949],[-690,-1802],[-57,-615]],[[50903,19527],[78,-891]],[[51272,22433],[-3,63]],[[51269,22496],[51,-173],[-1,-1019],[-195,-500],[-35,-794]],[[51468,24929],[121,-6],[-503,-1009],[176,-190],[7,-1228]],[[51727,30239],[104,-284]],[[56689,26073],[-139,1],[-9,-415]],[[57976,26886],[-376,-207],[-118,-276],[-304,-202]],[[57297,28085],[40,-1061],[238,-419]],[[57488,30285],[-49,-732]],[[57275,29482],[-29,-560]],[[57277,29481],[159,72]],[[57107,26171],[-3,-6]],[[50116,13903],[-29,-595],[-241,-968],[-153,-961],[-50,-976],[-90,-354],[-391,-730]],[[49880,17452],[-76,-747],[-51,-1061],[26,-1207],[342,-425]],[[50783,24641],[-156,-336],[-1,-536],[-240,-215],[10,-1665],[-106,-306]],[[50290,21577],[0,-1478],[-160,-272],[-7,-265],[-228,-669],[-56,-1166]],[[50773,30478],[-25,-1152],[-163,-764],[41,-1035]],[[50621,27516],[24,-1710]],[[50645,25800],[137,-196],[1,-963]],[[54174,22497],[253,-129]],[[53797,22899],[377,-385]],[[52827,23894],[184,-476]],[[54072,19426],[-109,-307],[29,-311]],[[56201,24735],[64,239]],[[54970,23323],[316,114],[280,352]],[[56438,25300],[93,146]],[[58619,28062],[452,233],[131,268]],[[59308,28775],[6,121]],[[59314,28896],[56,24]],[[55099,21566],[-4,-1237]],[[55577,24181],[6,-399]],[[55294,23472],[-64,-1012]],[[55199,22305],[-77,-515]],[[56531,25446],[10,213]],[[57178,26201],[-489,-128]],[[58619,28062],[-230,-394],[-279,-317],[-134,-465]],[[57246,28922],[51,-837]],[[49839,17727],[1,-276]],[[55566,23789],[288,264]],[[56265,24974],[173,326]],[[55348,24693],[131,6]],[[55599,25127],[-22,-946]],[[55230,22460],[-31,-155]],[[55122,21790],[-23,-224]],[[55574,25018],[-35,88]],[[55491,25120],[48,-14]],[[56129,24738],[83,556]],[[55574,25018],[15,-12]],[[55479,24699],[324,-61]],[[55835,24700],[266,51]],[[82093,52814],[-142,-203]],[[83765,49633],[-101,-426],[43,-231]],[[80165,53775],[373,-502],[317,6],[644,-1674],[-69,-353],[455,-689],[-21,-514],[244,-392],[160,81],[486,-762],[-62,-296],[71,-428],[127,-71],[44,-355],[268,-77],[281,-796],[74,-602],[387,-894],[37,-437],[190,-596],[-53,-327],[245,-387],[-103,-336]],[[88219,46796],[-47,-597]],[[88213,47124],[-149,311],[144,137],[-7,282]],[[83605,42864],[236,-52],[87,329]],[[85416,47934],[323,149]],[[80434,52917],[238,-362],[392,-244],[326,-582],[49,-721],[294,-422]],[[83378,46971],[30,-819],[304,-573],[-61,-444],[38,-337],[171,21],[27,-458],[150,-560],[229,-453],[-22,-177]],[[76065,53960],[-200,44]],[[85357,48402],[59,-468]],[[85416,47934],[-95,-309],[-70,-767]],[[85239,46832],[-10,-488],[-80,-65],[-318,-1319]],[[84831,44913],[-238,-118],[-271,-451]],[[77000,54252],[389,-183],[248,161]],[[82029,52950],[64,-136]],[[86261,48538],[35,374],[296,-51],[172,159]],[[88201,47854],[-117,311]],[[88201,46885],[12,239]],[[87381,47979],[122,-182]],[[87679,47716],[159,-141]],[[87503,47797],[118,-80]],[[87988,47383],[-136,27]],[[82093,52814],[111,-59]],[[86235,48119],[-134,-95],[-362,59]],[[85862,45537],[0,-225]],[[86017,44272],[27,-127]],[[80222,52063],[73,-431],[284,-232]],[[80992,51297],[434,-710]],[[82495,48262],[320,-545],[92,-434]],[[85827,45145],[52,49]],[[76770,53111],[11,-2]],[[85850,47824],[335,221]],[[84095,46791],[136,108]],[[86185,48045],[50,56]],[[86191,48447],[74,-130]],[[80195,50715],[79,3]],[[81499,50543],[225,-13]],[[88802,49942],[21,-262]],[[84298,42758],[-77,-374]],[[88221,50782],[184,-149]],[[87694,48531],[-138,-210],[-477,-13],[-320,-183],[-346,98]],[[86164,48366],[127,-122]],[[85231,42158],[-280,-197],[-56,-179]],[[86126,43775],[30,-86]],[[86297,43513],[85,-140]],[[88753,50749],[139,-308]],[[84189,42329],[2,-36]],[[84195,42327],[2,-30]],[[88074,51531],[203,-589]],[[84651,52255],[-234,-351],[44,-498]],[[84583,50577],[35,-821]],[[84494,49621],[-39,-480],[-117,-326]],[[84338,48815],[193,-454],[94,-526],[12,-826]],[[84655,46944],[-28,-649]],[[84724,45881],[-31,-542],[127,-305]],[[85298,43554],[17,-1273]],[[84691,52616],[-84,-289]],[[85346,42123],[-59,-504]],[[86452,45648],[-308,-200],[-288,138]],[[84789,43267],[-113,-392]],[[79703,53862],[-136,-396],[56,-291],[-90,-401],[146,-384]],[[80014,50590],[33,-73]],[[81743,50106],[-5,-524],[96,-587],[-38,-504]],[[81796,48491],[-31,-103]],[[81428,48633],[281,-1210],[23,-503],[119,-694],[188,-577]],[[76500,53447],[42,15]],[[81676,45832],[298,183],[40,208],[437,191],[225,-87],[313,431]],[[82987,46764],[69,51]],[[87675,51690],[22,-541]],[[87738,51076],[53,-343],[286,-896]],[[88152,49872],[49,79]],[[85414,43453],[161,-151]],[[86103,42934],[135,-132]],[[85891,43090],[29,-27]],[[86348,47609],[-68,-1284]],[[82616,45156],[265,249],[384,126]],[[83805,45646],[204,123]],[[84645,46379],[402,275],[340,423],[383,173],[281,440]],[[84250,46053],[377,242]],[[84298,42758],[209,-247],[43,-226]],[[84946,41529],[17,-5]],[[84594,42177],[47,-38]],[[88261,46235],[66,43]],[[87894,46136],[278,63]],[[86579,49381],[1390,1163],[283,68]],[[86190,42918],[60,5]],[[84701,42873],[309,30]],[[84189,42329],[19,42]],[[85069,42896],[218,-79]],[[83732,42040],[92,31]],[[84145,42289],[46,10]],[[84191,42293],[6,4]],[[83853,51973],[-184,-302],[-48,-299],[78,-413],[-290,-425],[-101,-427]],[[82641,49055],[-129,-94],[115,-499]],[[82989,49542],[-252,-225],[-96,-262]],[[84191,42293],[-3,-46]],[[78157,53673],[343,265],[220,-82],[254,91],[260,-181],[449,-105]],[[80423,52919],[253,100],[411,-172],[241,178]],[[87697,51149],[41,-73]],[[89228,49674],[167,235]],[[82627,48462],[128,-77],[633,588],[219,-134],[193,210],[304,-201]],[[84338,48815],[406,92],[426,-490],[187,-15]],[[86126,43775],[-206,-409],[8,-258]],[[88341,49364],[-71,-142]],[[86058,46674],[187,-468]],[[88325,49417],[16,-53]],[[85366,42259],[549,384],[275,275]],[[86190,42918],[205,196]],[[84238,42285],[254,-12]],[[84597,42342],[213,47]],[[86382,43373],[6,-489]],[[86156,43689],[141,-176]],[[88967,49946],[113,-150]],[[88277,50942],[13,-63]],[[84637,47009],[18,-65]],[[84627,46295],[97,-414]],[[85366,42259],[-20,-136]],[[84461,51406],[131,-530]],[[84586,50576],[-3,1]],[[88746,50496],[26,-228],[-357,-114],[-123,-245]],[[88292,49909],[132,-358]],[[88424,49551],[-83,-187]],[[88341,49364],[-25,-348],[-232,-874],[-242,-271],[-18,-470],[-631,-928]],[[87193,46473],[-349,-577],[-392,-248]],[[85125,44248],[296,513],[406,384]],[[85064,43887],[-129,-517]],[[84221,42384],[108,211],[347,280]],[[78040,53730],[-328,-394],[61,-249]],[[77841,53006],[471,-529],[122,-276]],[[83495,44630],[195,2],[168,-197],[407,-39],[234,-360],[256,130],[309,-279]],[[85112,43831],[-42,13]],[[79935,50664],[79,-74]],[[81941,51510],[-221,-395],[-40,-379]],[[81951,52611],[64,-466],[-43,-561]],[[82084,53354],[60,-335]],[[76979,54415],[26,-141],[-381,15],[-176,-513],[94,-314]],[[76542,53462],[250,-362]],[[76781,53109],[20,-328],[-132,-499]],[[88424,49551],[249,-53]],[[88201,49951],[91,-42]],[[85575,43302],[316,-212]],[[86336,42765],[-98,37]],[[85920,43063],[183,-129]],[[86256,47940],[92,-331]],[[86280,46325],[-35,-119]],[[86245,46206],[270,-768],[70,-515],[115,-132]],[[83265,45531],[156,233],[237,-223],[147,105]],[[86051,47690],[134,355]],[[84009,45769],[241,284]],[[84244,43171],[54,-413]],[[84550,42285],[44,-108]],[[83967,52248],[202,-556],[292,-286]],[[84586,50576],[530,-744],[79,-368],[292,-373],[459,-272],[245,-372]],[[86331,48142],[54,-213],[287,-357],[138,-531],[287,-276],[96,-292]],[[87196,46341],[97,-174],[601,-31]],[[88172,46199],[89,36]],[[80701,50790],[119,22]],[[80014,50590],[181,125]],[[80274,50718],[427,72]],[[86250,42923],[96,-126]],[[85287,42817],[604,273]],[[85010,42903],[59,-7]],[[83824,42071],[321,218]],[[84676,42875],[25,-2]],[[84003,52817],[-150,-844]],[[83308,50107],[-103,-372]],[[84188,42247],[-321,-407],[-52,-441]],[[74897,54842],[434,-237],[335,-318],[84,100],[402,-499],[228,-120],[120,-321]],[[79683,53661],[267,-44],[473,-698]],[[81328,53025],[286,266],[415,-341]],[[82204,52755],[551,161],[175,211]],[[76792,53100],[338,-117],[244,132]],[[77374,53115],[245,325],[93,-98]],[[82517,48434],[110,28]],[[89080,49796],[148,-122]],[[85357,48402],[439,73],[368,-109]],[[84104,48848],[234,-33]],[[88077,49837],[75,35]],[[83023,49716],[-34,-174]],[[89135,51181],[-127,-463]],[[89008,50718],[-58,-213]],[[85671,43106],[-66,-685]],[[84810,42389],[166,-152],[339,44]],[[84492,42273],[105,69]],[[84592,50876],[-6,-300]],[[84618,49756],[-124,-135]],[[85315,42281],[51,-22]],[[85121,44024],[-75,-244]],[[77773,53087],[68,-81]],[[81680,50736],[53,-150]],[[81972,51584],[-31,-74]],[[82144,53019],[-115,-69]],[[82029,52950],[-78,-339]],[[83292,48865],[-54,192],[29,613]],[[79143,51345],[142,-29]],[[80820,50812],[34,416],[106,90]],[[80195,50715],[79,3]],[[86346,42797],[5,-7]],[[83112,49814],[-89,-98]],[[82204,52755],[-60,264]],[[86202,48135],[23,-138]],[[88889,50419],[-77,-266]],[[88811,49832],[-90,-77]],[[81733,50586],[-146,-255]],[[65845,66507],[349,85],[332,272],[134,-23]],[[62493,71191],[132,-361],[-25,-421],[189,-379],[-60,-610],[86,-659]],[[62697,68668],[-173,-681],[3,-460],[-87,-410],[-187,-268]],[[62503,71370],[-416,-310],[10,-483],[139,-181]],[[63085,72911],[211,-938],[38,-875],[388,-1394],[-38,-484],[88,-1015],[-244,-498],[-232,-832],[-131,-1249],[30,-445],[-112,-559],[-109,-1328],[-70,-343]],[[64491,81257],[224,-267]],[[61109,69548],[-6,-377]],[[66777,80407],[-151,-641],[-199,-1517]],[[64898,77257],[35,-189]],[[65289,65649],[373,-133]],[[66098,69438],[117,-980]],[[62253,66849],[-267,-598]],[[61866,64988],[257,268]],[[62506,71382],[-3,-12]],[[62503,71370],[-10,-179]],[[61921,69025],[187,-337],[-57,-652],[89,-932],[113,-255]],[[62019,66080],[611,-337],[590,-157]],[[61728,76794],[101,344],[355,-25],[354,275]],[[63033,73288],[404,-226],[165,-533],[235,-205],[181,-344],[90,-405],[292,-485],[185,-142],[508,-924]],[[65077,69869],[138,-92],[219,-432],[77,-801]],[[64074,65304],[195,112],[668,175],[227,-120],[125,178]],[[65093,70024],[-16,-155]],[[65027,77295],[240,106],[361,5],[459,322],[271,512],[244,22],[267,297]],[[62236,70396],[69,389],[188,406]],[[66331,68362],[-5,-588],[-121,-543],[-272,-211],[-102,-866],[-154,-92]],[[62880,73198],[-325,-1072],[-49,-744]],[[62236,70396],[-6,-348],[-195,-284],[-114,-739]],[[63220,65586],[412,-218],[269,-51]],[[64715,80990],[461,-63],[441,-322],[535,-225],[569,98],[225,-388]],[[62538,77648],[79,-53],[574,339],[152,-15]],[[63343,77925],[131,-216],[814,-495],[568,-207]],[[63901,65317],[173,-13]],[[64027,65326],[19,-118]],[[61986,66251],[27,-252]],[[64929,77335],[98,-40]],[[65972,80488],[-17,-224]],[[52188,43851],[320,43],[206,-148]],[[56301,55450],[22,715],[-92,371],[243,47]],[[56474,56589],[333,187],[226,327],[329,128],[707,-168],[138,84],[296,-187],[345,18],[253,-459]],[[59118,56517],[110,-112],[726,57],[315,296],[294,-134],[514,178],[207,-210],[409,-31]],[[53760,53878],[273,-117],[722,2],[22,390],[457,-4],[10,-129],[283,13],[-1,285],[464,63],[205,288]],[[53312,44811],[29,279],[330,318],[113,242],[-30,670]],[[57154,48044],[137,-275],[506,99]],[[53250,45080],[-483,683]],[[52226,42414],[52,622]],[[52229,41798],[14,564]],[[61929,48140],[-235,180]],[[54387,45006],[25,1424],[-32,158]],[[54184,56166],[-142,-642]],[[61428,48875],[52,432],[235,316]],[[61189,50091],[357,-679]],[[56195,54669],[5,244]],[[56200,54913],[-24,129]],[[56306,55089],[-5,361]],[[53754,46320],[0,302]],[[61855,56085],[41,90]],[[61896,56175],[192,-42]],[[61694,48320],[-66,565]],[[61896,56175],[-94,125]],[[54060,46830],[320,-242]],[[54164,48485],[22,750]],[[63451,53896],[72,16]],[[63102,53589],[53,18]],[[59423,51522],[299,228],[293,-174],[245,16],[117,200],[476,-34],[133,-122],[293,265],[316,88]],[[59136,51106],[159,82],[128,334]],[[55323,50258],[37,86]],[[61945,53029],[343,153],[307,-24],[507,431]],[[57446,41848],[205,-29],[223,271],[945,-21],[286,212],[326,51]],[[53807,43178],[542,-195],[336,59]],[[51758,42511],[468,-97]],[[52243,42362],[665,-32]],[[53224,42702],[326,17],[6,377],[251,93]],[[55566,42429],[210,-236],[579,-101],[557,12],[517,-139]],[[54761,42970],[354,-70],[57,-200],[386,-282]],[[53788,55716],[-12,-29]],[[53833,43881],[0,227],[-215,11],[-274,622]],[[54068,41805],[-55,1286]],[[53807,43178],[26,703]],[[53802,47505],[310,10],[96,-125],[604,58],[262,-201]],[[55148,47162],[604,-122],[39,-502]],[[55806,46462],[463,-114],[144,-204],[507,62],[264,-119],[496,18],[270,-202],[533,-28],[533,-543],[43,-242]],[[59432,44946],[-6,-197]],[[62124,58933],[128,5],[438,-806],[145,-9]],[[58645,49678],[91,-71],[535,179],[284,-149],[217,373],[628,-300],[303,33]],[[56284,48984],[627,51],[278,131],[635,80]],[[58784,47205],[63,-150]],[[58846,47049],[391,-27],[-5,-454],[153,-6],[268,-282],[364,-22],[302,-462]],[[52243,42362],[-17,52]],[[63965,55327],[212,-24],[105,-233]],[[53783,56391],[448,-81],[270,-316],[728,11],[300,-150],[457,-717]],[[56200,54913],[60,-2]],[[63219,53630],[230,220],[-20,218]],[[63523,56740],[-58,65]],[[62595,57145],[181,-42],[20,-229],[669,-69]],[[62459,57298],[130,-176]],[[58645,49678],[-9,163],[201,453],[-59,551],[50,160],[291,84],[38,563],[-61,650],[-100,171],[22,1227],[-404,1302]],[[55648,41716],[-90,702]],[[55558,42418],[46,126],[-69,1043],[120,420],[-7,1094],[141,180],[17,1181]],[[54685,43042],[60,-71]],[[56085,53405],[85,311],[99,909]],[[55360,50344],[-5,594],[272,1107],[20,383],[338,824]],[[54159,48293],[5,192]],[[54225,49403],[1002,853],[96,2]],[[53755,46739],[-6,180]],[[55074,47247],[74,-85]],[[62835,58123],[417,33]],[[58435,49505],[210,173]],[[54184,48293],[748,186],[222,266],[211,4]],[[55368,48749],[668,25],[248,210]],[[57824,49246],[298,110]],[[58716,48118],[73,-325],[-5,-588]],[[58473,48798],[117,-264]],[[55986,55138],[214,-225]],[[61929,48140],[80,-259]],[[55985,53252],[100,153]],[[53754,46622],[1,117]],[[55791,46538],[15,-76]],[[58122,49356],[174,-5]],[[58296,49351],[139,154]],[[54102,48173],[82,120]],[[58252,49517],[44,-166]],[[58296,49351],[177,-553]],[[58590,48534],[126,-416]],[[54315,54999],[44,377]],[[61747,48897],[-16,-569]],[[25675,18857],[7,-68]],[[34561,18024],[155,-177]],[[29422,17302],[431,-47],[224,-312]],[[30129,16896],[689,-112],[624,-344],[308,55],[374,280],[555,862],[476,596]],[[25133,16223],[551,113],[284,-38],[223,-200]],[[26191,16098],[46,-483],[88,-47]],[[26325,15568],[276,-153],[580,665],[397,310],[382,89]],[[24845,17710],[-296,324],[-106,369],[108,590],[-158,816],[57,319],[-64,1130],[130,525],[177,152],[169,-126],[135,286],[219,155]],[[24539,13346],[-23,-890],[-263,-635],[-82,-418],[272,-472],[193,-672]],[[26675,19001],[-187,-716],[-124,-922],[33,-486],[-65,-476],[-141,-303]],[[26325,15568],[68,-786],[233,105],[128,-381],[-110,-341],[-83,-612],[-117,-419],[112,-546]],[[21454,13011],[335,-51],[378,217],[164,-366],[360,-87],[325,472],[615,110],[289,-234],[406,-604],[274,-303],[316,-577],[405,-66]],[[29978,19458],[-175,-136],[-112,-552],[-201,-484],[-68,-984]],[[27960,16479],[180,88],[357,431],[275,184],[650,120]],[[24474,14988],[321,203],[163,340],[175,692]],[[27521,18737],[24,-419],[212,-799],[104,-732],[99,-308]],[[25372,21682],[-12,-295],[-189,-311],[-9,-721],[160,-199],[-98,-714],[149,-201],[63,-410]],[[25216,22250],[123,-261]],[[28013,16486],[88,-131],[131,-904],[22,-755],[60,-270]],[[32075,7456],[-22,581],[-103,375],[155,54],[28,332],[-100,619],[-223,432]],[[25133,16223],[71,566],[-264,450],[-95,471]],[[25193,22706],[23,-456]],[[25436,18831],[239,26]],[[48219,40580],[-18,145]],[[51855,43830],[333,21]],[[45043,37125],[0,-819],[-234,-548],[20,-1897]],[[44949,41194],[-10,-268],[61,-1979]],[[44995,38918],[48,-1793]],[[44922,43374],[5,-1187]],[[44911,43885],[6,-395]],[[43947,43827],[13,-1367],[50,-759],[111,-487],[184,-378]],[[42477,39304],[680,454],[528,584],[485,427],[367,192],[680,224],[273,15]],[[45559,41186],[942,-485],[279,-274]],[[46790,40527],[222,66],[1169,-14]],[[51866,44063],[-21,-558],[-418,-16]],[[50865,38062],[-144,-546],[-7,-987],[-58,-325],[-378,-809]],[[45490,41200],[69,-14]],[[49703,40632],[111,72]],[[49682,40894],[63,0]],[[49822,40831],[301,-293]],[[51151,38829],[-24,-180]],[[38239,39403],[135,-549]],[[38780,35210],[906,275],[90,-43],[463,246],[631,132],[354,-141],[467,71],[551,-17],[327,79],[215,249],[164,1]],[[42988,36054],[511,363],[250,273],[480,1019],[252,702],[333,246],[181,261]],[[45000,38947],[486,578],[67,213],[344,302],[460,15],[426,216]],[[49070,41529],[215,103],[170,-126],[377,6]],[[50209,39261],[382,8]],[[44180,42649],[275,244],[289,470],[178,11]],[[44922,43374],[-5,116]],[[44917,43490],[732,38],[387,71],[1275,52],[6,-227],[877,27]],[[48219,43452],[751,23],[188,-166],[485,-108],[39,-180],[377,16],[366,-398],[1333,-128]],[[44927,42187],[22,-993]],[[45000,38947],[-5,-29]],[[49294,36207],[89,1],[460,616],[6,622],[112,210]],[[50591,39153],[0,116]],[[46737,34903],[315,517],[332,192],[228,350],[474,189],[1208,56]],[[38374,38854],[153,29]],[[39978,43252],[168,204],[366,-28],[395,72],[7,-122],[337,-243],[628,-155],[263,-194]],[[50015,40898],[1268,5]],[[51283,40903],[2,-738]],[[51285,40165],[76,6]],[[49830,40884],[98,13]],[[38528,38866],[-38,-290],[49,-1462],[-194,-296]],[[49797,40895],[25,-64]],[[51413,43047],[-34,-1017]],[[51491,44065],[-44,-99],[-34,-919]],[[51283,41345],[0,-442]],[[51208,39015],[-57,-186]],[[51285,40165],[-33,-354]],[[50257,35215],[92,-492]],[[50278,35395],[-21,-180]],[[51379,42030],[-3,-215]],[[50213,37844],[5,-563],[71,-325],[-11,-1561]],[[49914,44053],[-47,-536],[-121,-13],[2,-482]],[[49991,39369],[218,-108]],[[50209,39261],[13,-842]],[[48212,40510],[8,-1063],[418,-42],[5,-563]],[[48578,34562],[12,-974],[62,-677]],[[48566,35856],[12,-1294]],[[38514,39004],[14,-138]],[[50696,39270],[258,82]],[[50222,38326],[94,320],[275,507]],[[49961,37656],[252,188]],[[50141,38418],[81,-92]],[[49928,40897],[87,1]],[[49745,40894],[52,1]],[[50349,34723],[-2,-128]],[[51376,41815],[-93,-470]],[[51252,39811],[-11,-82]],[[49748,43022],[12,-773],[69,-17],[4,-872],[-72,-425]],[[50347,34595],[37,-197]],[[50222,38419],[-9,-575]],[[49948,40571],[43,-1202]],[[48647,38447],[-172,-155],[13,-1283],[69,-242],[9,-911]],[[48643,38842],[3,-291]],[[51208,39015],[6,-17]],[[51241,39729],[-35,-429]],[[51206,39166],[2,-151]],[[49761,40935],[-18,-58]],[[50344,34549],[99,6]],[[49814,40704],[16,180]],[[8539,29442],[-26,278],[327,707],[30,426],[265,531],[-93,837]],[[7934,35314],[-56,-556],[-105,-229],[107,-118],[-17,-698],[168,-483],[297,-60],[259,-346],[99,64]],[[9042,32221],[-51,429],[110,248],[-248,326]],[[8044,35887],[-110,-573]],[[11154,47527],[-277,462],[-289,290]],[[12337,52449],[254,-80]],[[8358,36384],[6,-303],[258,-1402],[121,-390],[143,-1027],[-199,-361],[16,-204],[-232,-801],[-203,-207],[-230,-814]],[[7486,37180],[384,-1165],[174,-128]],[[12514,50927],[-28,425],[117,664],[-25,319],[207,408]],[[13415,53417],[393,105],[251,-31]],[[12027,50444],[-160,886]],[[8044,35887],[314,497]],[[8374,37152],[-16,-768]],[[14148,53081],[448,-449]],[[14481,53817],[-264,-720]],[[14354,53646],[66,-3]],[[12785,52743],[324,602],[306,72]],[[14253,56947],[309,193],[237,-44]],[[7020,39753],[69,-429]],[[8834,40107],[-222,-518],[-419,45],[87,-553],[-32,-690],[185,-598],[-2,-529]],[[14018,52659],[101,347]],[[7384,37367],[4,-449]],[[7223,37974],[194,-294]],[[13807,52851],[175,111]],[[93430,16696],[-4,455],[-90,194],[208,312]],[[93954,23105],[-438,-608]],[[93516,22497],[-128,-426],[145,-108]],[[92642,16167],[488,-790],[-111,-394]],[[92158,21745],[508,-201],[105,250],[216,96],[36,320],[164,5],[329,282]],[[95113,22816],[28,-60]],[[95144,22869],[-28,-48]],[[94184,24453],[103,-469]],[[94091,24450],[93,3]],[[92613,24465],[42,-11]],[[92655,24454],[454,-101],[130,61]],[[93841,24350],[244,97]],[[93248,24422],[343,38],[94,-111]],[[93820,24173],[137,-410]],[[93313,21415],[217,-223]],[[94141,21714],[-369,-384],[-78,117]],[[94593,22055],[-452,-341]],[[94731,24018],[28,-450],[-105,-231],[-10,-1154]],[[94485,21454],[-130,-412],[-438,-724],[-110,-313],[144,-474]],[[93781,19226],[-195,-361],[34,-678]],[[93573,18165],[-29,-508]],[[93440,16697],[90,-367]],[[93558,20923],[138,-518],[230,-79]],[[93525,21147],[33,-224]],[[94070,20522],[234,-249]],[[92765,16528],[356,-36],[319,205]],[[93440,16697],[215,231]],[[93954,23105],[76,-445]],[[94030,22660],[-43,-174],[154,-772]],[[92637,24324],[471,-832]],[[92203,24785],[410,-320]],[[92613,24465],[-3,-89]],[[93533,21963],[101,-293]],[[94622,22001],[54,-47]],[[94409,22631],[200,-493]],[[93227,25047],[-80,-356],[101,-269]],[[93248,24422],[-97,-930]],[[93204,23333],[59,-204],[238,-63]],[[93694,21447],[-248,-483],[-194,135]],[[92876,18063],[48,-408],[-292,-505],[131,-687],[-121,-296]],[[92885,19249],[187,-359],[-179,-338],[0,-454]],[[94014,23481],[-60,-376]],[[93949,19532],[211,-25]],[[92725,18975],[494,-123],[303,609],[310,-221],[117,292]],[[92308,19672],[124,-75],[188,-675]],[[94030,22660],[334,-57],[200,106],[427,-44]],[[93863,22670],[167,-10]],[[93685,24349],[135,-176]],[[94605,22014],[-120,-560]],[[94991,22665],[-119,-184]],[[94829,22356],[-185,-173]],[[94644,22183],[-35,-45]],[[93108,23492],[43,0]],[[92610,24376],[27,-52]],[[94609,22138],[-4,-124]],[[94605,22014],[17,-13]],[[95113,22816],[-122,-151]],[[93151,23492],[53,-159]],[[93634,21670],[60,-223]],[[93741,22823],[122,-153]],[[90827,33739],[23,-277]],[[90755,39168],[-9,-492]],[[90318,33248],[-36,-166],[165,-526]],[[89973,34144],[121,-492]],[[90094,33652],[2,-25]],[[89419,37669],[230,329],[224,141],[235,369]],[[89014,38276],[42,117],[450,115],[212,-27]],[[89781,38565],[560,539]],[[89087,34147],[147,-225],[178,55]],[[90911,33367],[16,-567]],[[90699,33954],[67,17]],[[89837,36298],[68,-192]],[[88918,38381],[96,-105]],[[89966,36412],[-53,-34]],[[89718,38481],[63,84]],[[90341,39104],[141,50]],[[90514,33480],[263,-38]],[[89821,32882],[-138,-165],[-319,-742]],[[89341,34754],[-254,-607]],[[89837,36298],[-142,-539],[-145,-145]],[[88817,38834],[120,422],[456,371],[451,-11]],[[90774,36803],[113,-155]],[[89723,37662],[558,-195],[372,-410],[112,-256]],[[90315,37425],[543,285],[134,213]],[[89521,32967],[369,-701]],[[90108,38508],[62,-375],[-147,-811],[-24,-659]],[[89806,34520],[-197,-453],[-23,-355]],[[89863,36050],[86,-282],[-14,-758]],[[89550,33653],[-156,-426],[50,-351],[-196,-198],[-62,-454]],[[88959,38778],[487,174],[171,-18],[650,310],[215,-90]],[[90857,39381],[19,29]],[[88867,33838],[220,309]],[[90962,36829],[-110,-556]],[[89811,33583],[-88,-219]],[[90731,33375],[-208,-650],[-106,-146]],[[90578,35449],[-262,-351]],[[90109,33062],[-288,-180]],[[90318,33248],[-209,-186]],[[89527,35312],[-186,-558]],[[90774,36803],[448,121]],[[90887,36648],[113,-95]],[[89443,37601],[280,61]],[[89339,37930],[85,-322]],[[89905,36106],[300,-848],[275,-537],[128,-524]],[[90802,33892],[25,-153]],[[90850,33462],[44,-76]],[[89424,37608],[312,-654],[259,-379]],[[89995,36575],[213,-537],[53,-837]],[[89014,38276],[67,-29]],[[89818,34582],[-12,-62]],[[89550,35614],[-15,-322],[353,-491]],[[90352,33367],[-34,-119]],[[89935,35010],[-46,-126]],[[89993,36545],[-27,-133]],[[89999,36663],[-4,-88]],[[89409,34801],[479,53],[188,-56],[184,-395],[297,-247]],[[88804,34795],[132,49]],[[89349,37575],[75,33]],[[90482,39154],[233,154]],[[90830,33458],[20,4]],[[90852,36273],[-228,-554],[-138,-1018]],[[89410,35837],[13,-11]],[[88801,34796],[3,-1]],[[88960,38194],[54,82]],[[90607,34358],[19,17]],[[90648,34068],[240,-161]],[[90699,33900],[128,-400]],[[90911,33367],[-2,-578]],[[90262,34092],[72,51]],[[89723,33364],[-134,-309]],[[91109,36046],[-35,-375],[-243,114],[-253,-336]],[[90082,33877],[180,215]],[[90334,34143],[24,27]],[[90514,33480],[312,272]],[[90608,34197],[4,-109]],[[90612,34088],[190,-196]],[[89843,36361],[62,-255]],[[89423,35826],[127,-212]],[[89539,33693],[11,-40]],[[90557,34156],[55,-68]],[[90564,34374],[43,-16]],[[88817,38834],[267,-588],[255,-316]],[[89339,37930],[86,-55]],[[89387,37746],[-42,-176]],[[92188,18658],[-75,-858],[-333,-180],[-284,-445],[45,-298]],[[91306,22007],[9,-427]],[[91075,18398],[-6,-373],[168,-233],[-21,-611],[209,-251]],[[90997,19441],[5,-323],[126,-652]],[[91618,22874],[-304,-11],[-195,-275]],[[91906,23392],[-180,-436],[-88,6]],[[92178,23618],[-260,-219]],[[90197,18357],[396,36]],[[91425,16930],[116,-53]],[[91315,21580],[280,-320]],[[91918,23399],[-12,-7]],[[92194,16312],[443,-143]],[[90310,19122],[251,-182],[32,-547]],[[90593,18393],[171,-145],[386,239],[117,-70],[335,145],[290,259]],[[89758,17470],[307,35]],[[90964,25314],[371,-240],[398,17],[221,-189],[223,25]],[[91304,19659],[138,28],[602,-1078],[143,56]],[[89616,17370],[157,124],[102,1184],[278,113]],[[91493,19804],[148,138],[219,-53],[68,-326],[380,109]],[[91541,16877],[100,-118]],[[90272,19030],[115,104]],[[22156,40337],[267,-442],[97,85]],[[21257,42904],[35,1024],[291,273]],[[21371,44457],[187,-257]],[[22422,39082],[-188,-304]],[[22464,39417],[-26,-148]],[[22303,35508],[-60,-570],[90,-505]],[[22438,39269],[-16,-187]],[[22239,37035],[27,237],[-97,864]],[[22449,45184],[226,-549],[305,-435],[3,-194],[283,-375],[324,-761],[165,-589]],[[18205,50158],[-33,-294]],[[22440,39811],[80,169]],[[21742,43447],[-123,-776],[294,-1236]],[[23979,52531],[660,-445],[-1,-177],[351,-265],[139,102]],[[22475,39320],[62,-273],[479,-523]],[[23707,41721],[195,-269],[89,-337],[382,-365],[347,-503]],[[26413,39498],[38,-355],[126,-171],[-60,-372],[95,-108],[163,-1049]],[[20444,42332],[121,28],[170,974],[230,-32]],[[21581,44301],[2,-100]],[[22760,33552],[309,-30],[205,-322],[120,-369],[105,198],[118,-281]],[[19315,50458],[205,-321],[602,-1575],[-78,-393],[63,-332],[238,-654],[265,-246],[83,-1519]],[[21583,44201],[159,-754]],[[21742,43447],[215,4],[448,-1079],[153,-201],[69,-360],[-100,-1045],[139,-365]],[[22535,40019],[-71,-602]],[[22812,33113],[91,-547]],[[22455,39503],[20,-183]],[[22333,34433],[125,-20],[-11,-309],[313,-552]],[[22266,34415],[67,18]],[[22760,33552],[52,-439]],[[22190,36975],[147,-574]],[[22230,37322],[21,-7]],[[51930,83213],[348,-383],[594,56],[160,-100]],[[46278,97788],[-134,-33]],[[51576,84051],[618,-96]],[[47367,81030],[-19,-53]],[[47348,80977],[-22,-220]],[[29601,74248],[-1,-29]],[[48302,73778],[-22,5]],[[44542,68859],[108,708],[41,1215],[249,251],[142,645],[147,240],[22,1207],[-211,372],[45,199],[-35,1012],[83,265],[-6,510],[-100,551]],[[44217,78271],[270,-315],[532,-123],[428,310],[540,-87],[188,72]],[[43265,79013],[844,-349],[96,-266]],[[40397,78909],[434,42],[385,245],[326,26]],[[41555,79206],[419,-61],[803,102],[379,-212],[101,41]],[[38455,78894],[271,-233],[205,159],[627,152],[246,-110],[593,52]],[[53742,68592],[124,822],[-199,700]],[[46278,97788],[338,98],[405,-21],[554,267],[213,360]],[[44570,66601],[21,-272],[-111,-785]],[[44271,75965],[-104,643],[-41,1577]],[[48821,70502],[-240,923],[-26,597],[-99,131]],[[44365,79760],[-457,-32],[-235,310],[-138,397],[-282,196]],[[40952,83533],[556,-326],[93,-559],[240,-155],[446,26],[206,-292],[211,-488],[209,-200],[90,-450],[236,-407]],[[42578,70460],[322,63],[212,-235],[411,142],[588,-63],[1316,81],[366,-24],[94,311],[717,-232],[159,-139]],[[40262,70054],[350,-45],[735,271],[359,28],[181,-293],[168,123],[386,34],[97,117]],[[38455,69918],[417,102],[964,93],[426,-53]],[[38489,56995],[-49,1680]],[[36822,78618],[-41,476],[-132,622],[-15,595],[-602,727],[-35,147]],[[55060,69555],[-440,292],[-363,149],[-121,-107],[-238,388]],[[53898,70277],[-149,247],[-441,15],[-165,90],[-433,-87],[-431,133]],[[48404,73641],[-213,204]],[[49110,85033],[-105,50]],[[49005,85083],[-313,415],[-288,650]],[[48303,86474],[18,150],[-161,912],[9,684],[119,687]],[[48390,89335],[-102,-428]],[[43436,74038],[-391,665],[-50,263],[38,907]],[[43004,75905],[32,912],[119,777],[37,1102],[104,556],[-74,1094],[17,336]],[[43360,80955],[-15,629],[-105,421],[128,175],[-43,852],[78,265],[-207,350],[21,803],[-123,1261],[-183,570],[32,1378]],[[42939,87665],[-68,652]],[[46688,77094],[379,54],[236,140],[497,61],[411,-71]],[[45821,77106],[861,-12]],[[49009,76571],[1257,-193],[271,175]],[[50571,76577],[203,-353],[305,174],[459,127]],[[51894,76095],[240,68],[561,-296],[176,73],[614,-409],[730,-115],[176,82]],[[48116,84742],[550,352],[339,-11]],[[51507,84593],[95,-64]],[[49129,85021],[520,-154],[649,-397],[603,244],[603,-121]],[[47643,97894],[424,74],[218,-110],[273,46]],[[38336,68301],[618,111]],[[48544,71152],[210,172]],[[53310,83946],[-82,30]],[[53449,83500],[-58,283]],[[53161,84341],[24,270]],[[53347,83819],[-37,127]],[[41347,61040],[35,3]],[[52478,73965],[-288,640],[-57,354]],[[45198,84167],[167,59],[256,542]],[[45402,85144],[-12,-392],[90,-256]],[[48466,71417],[207,-152]],[[48437,72987],[-137,322],[-28,381]],[[53391,83783],[-44,36]],[[49674,80806],[335,-389],[250,-96]],[[48780,90451],[-161,382],[-261,46]],[[29546,73621],[383,96],[132,326],[-66,460]],[[51930,83213],[-62,127],[-7,1038],[228,281]],[[52387,84881],[784,485]],[[41382,61043],[-1,29]],[[54498,83511],[336,-4],[520,-236]],[[51776,84580],[12,-156]],[[51788,84424],[-212,-373]],[[45808,67482],[283,99]],[[48270,72282],[-83,62]],[[48836,75000],[-11,277]],[[50537,76553],[34,24]],[[48667,77022],[165,-274]],[[48211,77278],[329,-154]],[[48034,84717],[82,25]],[[51602,84529],[186,-105]],[[51788,84424],[294,-59],[245,-239]],[[44570,68837],[311,348],[169,14],[361,441],[228,86],[357,434],[546,33]],[[55300,82298],[546,-666]],[[29590,74193],[4,30]],[[48659,71902],[245,-372]],[[49009,76571],[392,-705],[405,-615]],[[46625,91485],[75,-55]],[[45524,90919],[420,334],[343,151]],[[47059,75156],[236,8],[411,278],[280,928],[461,393]],[[46952,75159],[107,-3]],[[55552,83040],[-73,164]],[[47811,81522],[401,-25],[347,417],[356,238],[523,129]],[[53303,80126],[411,44],[297,-209],[426,-109],[197,-219],[316,-96],[369,-266],[232,96],[549,540]],[[48914,87764],[-108,-117]],[[51621,74551],[340,334],[488,210],[163,189]],[[51033,73880],[337,428]],[[39100,71843],[612,-190],[673,67],[393,173],[546,144],[304,-98],[1121,25],[998,64],[84,-59],[337,258],[454,-184],[695,53],[388,180],[184,-73]],[[45889,72203],[251,74],[579,-314],[255,3]],[[47505,89583],[425,844]],[[46680,86359],[313,661]],[[47160,87399],[12,357],[145,919]],[[48055,84810],[320,716],[29,622]],[[45821,77106],[2,197],[376,895],[387,420],[165,358],[374,440],[88,414],[26,676]],[[47758,84186],[261,490]],[[47582,82133],[15,1466],[49,474]],[[44210,78317],[7,-46]],[[48334,78744],[179,438],[367,411],[205,-14]],[[52016,80113],[290,44],[435,-161],[263,-270],[176,298]],[[50374,80200],[391,-737],[373,-92],[226,-209]],[[49171,79708],[132,441]],[[53667,70114],[79,747],[-40,279]],[[53204,70680],[70,1883],[-5,516],[-236,230]],[[40752,84924],[-67,133]],[[48887,73083],[390,389]],[[52192,77019],[52,792],[445,463],[170,455],[349,260],[369,28],[369,241]],[[50209,74867],[83,145],[940,373],[292,451],[265,127]],[[51894,76095],[100,497],[173,247]],[[53946,79258],[472,572]],[[45116,81699],[97,178],[266,29],[602,-222]],[[43728,81544],[1108,31],[240,70]],[[46142,82015],[792,46],[278,-135]],[[44992,76055],[-51,258],[-325,678],[-66,477],[-339,803]],[[47415,73412],[-592,450],[-129,280]],[[47941,70314],[329,-38],[480,91]],[[46807,70470],[518,110],[208,-208],[314,-26]],[[49091,70368],[374,57]],[[50361,70666],[480,72]],[[36884,69447],[328,114],[114,205]],[[38661,59445],[129,538],[-58,337],[117,362],[-10,518],[-345,633],[37,325],[-75,1535],[154,302],[8,664],[-72,1500],[-43,176],[-68,1471],[-85,235],[-57,843],[164,988]],[[41567,87506],[519,-641],[288,-147],[725,53],[334,-117],[246,101],[478,4],[142,-229],[338,-57]],[[54739,75309],[-348,189]],[[54520,74406],[14,197]],[[41485,61045],[338,-205],[328,-493],[380,-291]],[[42608,59537],[32,-120],[706,-550]],[[40592,67026],[491,83],[370,-144],[635,84],[170,112],[252,-115]],[[40313,68129],[93,-1021]],[[41820,77015],[-294,284],[-227,58],[-312,536],[-420,52],[-176,141],[-984,-506],[-556,-36],[-299,265],[-309,21]],[[35849,79696],[-233,232],[-236,515],[-252,31]],[[36470,78548],[-267,560],[-354,588]],[[46324,74736],[-266,511],[-307,195]],[[44262,75964],[-396,-51],[-533,-224],[-300,184]],[[44662,76085],[-391,-120]],[[45064,76007],[-72,48]],[[48191,73845],[-485,213],[-497,443],[-178,23],[-394,-274]],[[48618,73524],[-214,117]],[[49056,73312],[-150,119]],[[50042,68407],[254,484],[17,435],[324,443],[219,847],[-15,122]],[[53802,77763],[274,174],[270,340],[103,662],[-54,1088],[90,234],[-1,792]],[[50919,70831],[479,748],[273,266],[435,571],[66,387],[150,335]],[[54717,81520],[187,444]],[[37729,65773],[830,68],[127,182],[1115,128]],[[42525,67047],[452,-259],[442,384],[608,89],[373,-379],[114,-296]],[[44863,66727],[114,-302]],[[49071,78903],[27,607],[73,198]],[[49171,79708],[-107,218],[-52,1304],[116,481],[72,994],[94,584],[-89,206],[4,801]],[[48861,77454],[34,486],[190,668],[-14,295]],[[48303,86474],[101,-326]],[[54386,72990],[94,-2]],[[52844,72883],[727,289]],[[54590,73043],[276,148]],[[53903,73165],[401,-91]],[[52242,68703],[372,1],[286,188],[759,207],[568,317]],[[36848,70094],[475,-329],[1132,159]],[[50269,68815],[291,100],[499,-33],[435,57],[432,-222]],[[50020,68726],[249,89]],[[43433,74044],[30,361],[182,464],[227,262],[399,834]],[[45064,76007],[288,239],[469,860]],[[51888,76078],[6,17]],[[54739,75309],[471,-113]],[[38661,59445],[798,123]],[[46366,85242],[288,74],[162,403],[148,85],[503,-174],[326,101],[216,230],[294,513]],[[44742,80369],[90,484],[272,834]],[[43159,77936],[434,-19],[533,268]],[[45110,81693],[-130,709],[36,418]],[[44210,78317],[-5,81]],[[44205,78398],[135,487],[-46,426],[79,490],[176,252]],[[47646,84073],[112,113]],[[53650,82648],[557,126],[182,-51]],[[52628,83737],[28,-70]],[[52656,83667],[179,-181]],[[54739,75373],[246,1503],[6,231],[232,513],[72,779]],[[55314,78884],[-33,307],[66,507],[166,502],[-147,912]],[[51312,74401],[189,23]],[[52387,84881],[-106,1233]],[[52281,86114],[-8,444]],[[51501,74285],[137,-209],[440,-67],[485,-201]],[[49806,75251],[394,-477],[738,-188],[374,-185]],[[52273,86558],[147,160]],[[48960,72656],[-25,486]],[[46700,91430],[612,-170],[229,53]],[[47547,91364],[287,14]],[[46287,91404],[338,81]],[[55597,82888],[217,-452]],[[50510,72957],[176,546],[347,377]],[[51498,74424],[123,127]],[[46974,71966],[462,201]],[[47408,89115],[97,468]],[[47317,88675],[65,180]],[[47930,90427],[399,463]],[[46993,87020],[167,379]],[[46021,85424],[285,276],[374,659]],[[47579,81908],[3,225]],[[47638,81632],[-62,241]],[[47239,80506],[109,471]],[[48019,84676],[36,134]],[[53180,80024],[123,102]],[[48245,78644],[89,100]],[[53706,71140],[16,852],[-82,680],[113,716]],[[53123,70432],[81,248]],[[53033,73309],[-416,301],[-54,198]],[[46324,97373],[-46,415]],[[52167,76839],[25,180]],[[51789,75963],[59,103]],[[49495,73782],[512,261]],[[47617,81586],[194,-64]],[[49623,82318],[427,-163],[234,181],[678,112]],[[49438,82281],[185,37]],[[46694,74142],[-57,108]],[[48156,72471],[-278,369],[-85,288],[-378,284]],[[48750,70367],[84,2]],[[49465,70425],[36,1]],[[47847,70346],[94,-32]],[[48834,70369],[257,-1]],[[49501,70426],[356,10],[504,230]],[[54391,75498],[-115,177]],[[54480,72988],[40,1418]],[[54520,74406],[14,197]],[[54534,74603],[205,706]],[[39830,62109],[249,-128]],[[40079,61981],[0,0]],[[40079,61981],[447,-227],[810,-657],[149,-52]],[[40406,67108],[40,-95]],[[40446,67013],[146,13]],[[43033,75873],[-288,409],[-389,228],[-284,332]],[[48906,73431],[-288,93]],[[44992,76055],[-330,30]],[[45751,75442],[-242,99],[-445,466]],[[46637,74250],[-126,59],[-187,427]],[[50841,70738],[-9,46]],[[54484,81053],[233,467]],[[50832,70784],[87,47]],[[39801,66151],[502,343],[143,519]],[[48791,76932],[70,522]],[[54480,72988],[110,55]],[[47436,72167],[243,19]],[[50363,72296],[161,1],[1130,249],[374,-20],[573,296],[243,61]],[[53571,73172],[332,-7]],[[54304,73074],[82,-84]],[[51926,68717],[316,-14]],[[43482,73415],[-46,623]],[[48832,76748],[177,-177]],[[44549,80053],[193,316]],[[41966,77171],[692,251],[172,400],[329,114]],[[38442,58687],[219,758]],[[46064,85109],[302,133]],[[48380,86355],[227,218],[326,702]],[[44126,78185],[84,132]],[[53129,83200],[311,-490],[210,-62]],[[54389,82723],[648,-157]],[[55814,82436],[38,4]],[[55295,78399],[19,485]],[[54739,75309],[0,64]],[[55366,81112],[-450,529],[-12,323]],[[48754,71324],[150,206]],[[53160,84075],[1,266]],[[53256,83855],[-90,215]],[[45480,84496],[316,-205],[341,37],[67,164]],[[52642,83985],[518,90]],[[52449,83906],[-62,975]],[[41820,77015],[138,120]],[[47968,91490],[372,336]],[[48447,76763],[299,336]],[[51576,84051],[15,-329]],[[48340,91826],[137,203]],[[49546,72178],[472,463],[492,316]],[[47382,88855],[26,260]],[[47576,81873],[3,35]],[[49277,73472],[218,310]],[[48660,72540],[227,543]],[[48441,72199],[159,258]],[[47212,81926],[237,76]],[[49436,72402],[-280,523],[-100,387]],[[42072,76842],[-252,173]],[[54993,82348],[39,109]],[[54904,81964],[89,384]],[[50046,68169],[-96,92],[-68,551],[-3,632],[68,239],[-276,1690],[-110,248],[-48,446]],[[48847,76835],[-24,-76]],[[43476,72905],[-67,384],[79,132]],[[48540,77124],[127,-102]],[[52835,83544],[294,-344]],[[64301,60467],[41,-69]],[[74940,57074],[612,-81],[124,-132],[183,255]],[[75859,57116],[696,48]],[[74369,57278],[-218,-197],[-105,-629]],[[74003,55059],[142,576],[-64,224]],[[69087,62095],[-341,-660]],[[68966,57780],[-132,435],[102,417],[123,1155],[113,549]],[[69172,60336],[-239,819],[-181,238]],[[68752,61393],[-6,42]],[[68752,61393],[-114,-1478]],[[68792,59302],[102,-740]],[[69032,57665],[272,857],[-5,1619],[-127,195]],[[77846,55416],[275,-194],[215,102]],[[76008,57096],[381,-453],[254,-520]],[[75465,58202],[494,-362],[80,-411]],[[74582,57376],[356,320]],[[68720,56234],[-227,-65],[-328,-296]],[[69322,58957],[181,691],[278,476],[320,118],[201,282]],[[70322,60562],[256,530],[-29,93]],[[75305,57626],[115,-1],[439,-509]],[[74571,58216],[367,-520]],[[74938,57696],[312,-65]],[[66268,60054],[1004,-70],[152,200],[234,37],[178,-194],[120,94],[317,-263],[367,-43]],[[68673,59729],[240,-66]],[[67798,56447],[181,-26]],[[69664,61503],[-327,-1035],[-147,-76]],[[64636,57117],[-81,120],[-11,468],[138,345]],[[64874,59153],[-34,-357]],[[69971,57282],[210,398],[213,-6],[162,289],[335,148],[251,-108],[630,89],[212,-202],[618,-48],[101,139],[410,175]],[[70470,58696],[388,403],[146,22]],[[65293,60030],[547,-1321],[73,-62]],[[63147,62310],[149,-324],[311,-324],[185,-422],[251,-231],[220,-485]],[[67979,56421],[94,-78]],[[74369,57278],[144,0]],[[73920,56225],[161,-366]],[[68638,59915],[35,-186]],[[74515,58257],[62,-36]],[[68969,57540],[-78,-35]],[[69415,58090],[408,624]],[[75250,57631],[55,-5]],[[65710,59921],[453,187],[105,-54]],[[65503,59888],[52,-18]],[[64934,59444],[-60,-291]],[[65091,59717],[-118,-266]],[[64840,58796],[-108,-244],[-50,-502]],[[63245,62096],[123,-7]],[[69852,58756],[441,57],[177,-117]],[[65162,60291],[131,-261]],[[64955,60327],[162,-48]],[[67248,57267],[540,-375]],[[67286,61160],[-110,-352],[71,-208],[-171,-117],[78,-1213],[-73,-211],[94,-352],[-110,-469],[183,-971]],[[67533,62363],[-205,-450],[70,-325],[-111,-422]],[[67788,56892],[-3,-303]],[[67789,56559],[9,-112]],[[71743,56318],[201,-294],[73,-475],[136,-259]],[[69735,61405],[193,-259],[119,-493],[255,-129]],[[70322,60562],[83,-131]],[[70772,59610],[233,-302]],[[73472,57595],[273,-346]],[[75669,56223],[119,-90]],[[75786,56116],[238,-233],[183,154]],[[74970,56517],[204,-401],[431,-413]],[[76107,55454],[144,-225]],[[72119,61312],[-3,-286],[-207,-244],[-5,-502],[607,-1842],[40,-411],[-114,-202]],[[72408,57678],[-75,-390],[173,-1144],[-71,-573],[-303,-278]],[[74745,59289],[-162,-260],[-172,63],[-51,-230],[75,-384]],[[74435,58478],[94,-189]],[[74535,57919],[-1,-6]],[[67798,56447],[48,-124]],[[69613,61453],[51,50]],[[78227,55797],[-387,-186]],[[69698,62088],[-34,-585]],[[69683,61436],[-41,-379],[103,-513],[64,-805]],[[69823,58714],[11,-510],[108,-912]],[[69838,58858],[1,-117]],[[69945,57292],[33,-579],[-83,-553]],[[75395,55648],[-279,-270]],[[72199,61561],[21,125]],[[73502,57554],[-161,-373],[-229,-278],[-52,-307],[210,-690],[-38,-198],[170,-548]],[[73038,58369],[124,-339]],[[73363,57810],[109,-215]],[[72824,58942],[31,-140]],[[72437,60213],[56,-326]],[[69560,56687],[354,-554],[12,-534]],[[77651,55308],[66,-109]],[[65388,58847],[347,-184],[144,70]],[[67745,56291],[-50,-121]],[[69084,56903],[-351,-548],[20,-588]],[[70302,60524],[20,38]],[[69823,58714],[16,27]],[[74031,59027],[404,-549]],[[73620,60062],[37,-365],[202,-367]],[[73294,61476],[26,-684],[236,-331],[54,-344]],[[77971,54305],[509,191],[182,527]],[[67850,62318],[278,-629],[92,-755]],[[68800,57022],[-54,-652]],[[75661,58566],[-161,-84],[-35,-280]],[[64154,61859],[71,-8]],[[66336,61661],[473,-267]],[[63368,62089],[231,-48]],[[64811,61644],[226,108]],[[65204,61796],[452,126]],[[66048,61680],[163,8]],[[67289,61160],[171,-106],[533,129],[98,167],[570,45]],[[69683,61436],[52,-31]],[[69735,61405],[373,337],[159,-61]],[[69550,61434],[63,19]],[[66866,61346],[421,-180]],[[66548,59230],[-100,-968],[-95,-308],[-342,-417]],[[65989,57505],[-40,-771]],[[65913,58647],[495,-198],[333,55],[180,-235]],[[67891,58133],[487,-270],[262,89],[147,-174]],[[67127,58194],[108,-97],[558,-2]],[[71004,59121],[6,-1]],[[63705,62869],[-141,-183],[-371,-189]],[[64337,60533],[5,-135]],[[66323,57059],[332,-324],[181,-36],[207,-356]],[[64342,60398],[592,-954]],[[62965,62334],[182,-24]],[[62840,62387],[122,17]],[[64973,59451],[490,-736],[269,-588]],[[65978,57629],[33,-92]],[[67435,56394],[358,-69]],[[67938,56070],[140,-184]],[[71493,57445],[44,-201]],[[71555,57036],[194,-479],[-6,-239]],[[74016,57419],[153,181]],[[70405,60431],[94,-190]],[[70627,59869],[145,-259]],[[71005,59308],[-1,-187]],[[73745,57249],[120,76]],[[73903,57359],[110,60]],[[75305,57626],[-114,-422]],[[71010,59120],[205,-100],[407,-697],[-47,-243]],[[74732,57187],[669,-567],[268,-397]],[[76207,56037],[356,145],[222,-102],[420,-517],[228,-140]],[[76251,55229],[590,-595],[284,-58],[457,-275]],[[75395,55648],[210,55]],[[75605,55703],[502,-249]],[[74669,57212],[301,-695]],[[72408,57678],[29,147]],[[74529,58289],[6,-370]],[[74534,57913],[13,-430]],[[77840,55611],[6,-195]],[[77846,55416],[-129,-217]],[[69838,58858],[-29,881]],[[69664,61503],[19,-67]],[[74893,54872],[-30,-11]],[[75116,55378],[-219,-536]],[[75773,56477],[19,-333],[-92,-461]],[[73162,58030],[201,-220]],[[72493,59887],[331,-945]],[[72399,60425],[38,-212]],[[73472,57595],[30,-41]],[[72855,58802],[183,-433]],[[68673,59729],[119,-427]],[[73840,57899],[253,460],[422,-102]],[[65913,58647],[-34,86]],[[67695,56170],[-59,-214]],[[73859,59330],[172,-303]],[[73620,60062],[-10,55]],[[64053,58629],[63,431],[468,774],[462,302]],[[77777,54356],[194,-51]],[[68220,60934],[-13,-377],[245,-795],[221,-33]],[[75465,58202],[-156,-325],[-4,-251]],[[70267,61681],[244,-402],[119,-32],[70,-333],[230,-231]],[[72887,60950],[408,-18]],[[68661,61395],[44,145],[465,-123],[158,-124],[222,141]],[[63599,62041],[555,-182]],[[64225,61851],[321,-334],[265,127]],[[66809,61394],[57,-48]],[[66211,61688],[125,-27]],[[65037,61752],[167,44]],[[66011,57537],[-22,-32]],[[67793,58095],[98,38]],[[66921,58269],[206,-75]],[[62962,62404],[3,-70]],[[67043,56343],[392,51]],[[67846,56323],[92,-253]],[[66011,57537],[312,-478]],[[65732,58127],[246,-498]],[[64934,59444],[39,7]],[[71097,60923],[77,221]],[[71560,57954],[-67,-509]],[[72145,61518],[-28,-229],[282,-864]],[[76972,54564],[7,-149]],[[77526,55413],[125,-105]],[[74222,57683],[92,198],[220,32]],[[49694,27270],[155,60]],[[47637,32373],[-35,-2700]],[[37624,25822],[-226,445],[100,228]],[[37782,26184],[318,-81]],[[37854,28607],[448,55],[-144,-360],[2,-261]],[[38044,27911],[61,-491],[-321,-708],[-57,-419]],[[38139,30065],[129,-327],[99,-574],[142,-279],[107,-1246]],[[47359,32027],[2,273],[406,77],[391,191],[51,158],[439,11]],[[46980,31793],[81,229],[298,5]],[[48652,32882],[56,-27]],[[49324,23449],[471,364],[258,15],[292,-280]],[[42255,26728],[1349,48]],[[40305,28031],[586,152],[489,-312],[713,35],[104,-78],[53,-1095]],[[49805,27329],[467,5],[64,163]],[[37059,28526],[122,167],[652,-78]],[[38511,27707],[105,-68]],[[36968,30285],[200,97],[355,-64],[95,-429],[413,75]],[[49720,31239],[471,-18]],[[37597,25059],[111,-61],[614,130],[57,-155],[933,-976],[124,-73],[1351,145],[365,-79],[509,54],[258,191],[742,12],[496,-446],[246,94],[398,508],[319,-18]],[[49177,25084],[38,1]],[[44153,24388],[412,-141],[668,46],[706,119],[-11,531],[752,35],[104,91],[412,-58],[660,86],[1040,34],[75,-51]],[[48649,32662],[-31,-957],[10,-1250],[57,-16],[18,-1956],[451,10],[12,-1232]],[[48652,32911],[-5,-29]],[[49167,27129],[9,-1219],[39,-825]],[[49215,25085],[94,-166]],[[47275,28261],[309,185]],[[47542,29676],[36,-143],[6,-1087]],[[47275,28261],[11,-1110]],[[48708,32855],[371,2],[307,341],[331,34]],[[38668,27541],[-52,98]],[[48971,25080],[206,4]],[[49215,25085],[90,2]],[[38668,27541],[29,-130]],[[48647,32882],[2,-220]],[[83263,60665],[52,-49]],[[83318,60615],[40,-11]],[[80326,61104],[-95,-141]],[[79724,65693],[58,-249],[6,-670],[99,-418],[376,-427],[213,-82]],[[82068,67669],[30,-566],[141,-1012],[66,-94],[-137,-446],[250,-695],[-100,-809]],[[82323,63628],[-35,-880],[36,-204]],[[83266,60664],[186,-110],[133,-296]],[[83036,61099],[227,-434]],[[82351,62484],[228,-302]],[[82579,62182],[159,-573],[264,-407]],[[83315,60616],[3,-1]],[[83153,66778],[30,-379],[119,-208]],[[82099,67678],[274,-230],[273,-6],[407,-537]],[[81801,68794],[-10,-220],[235,-348],[43,-540]],[[83341,66104],[193,-312],[322,-82],[44,-294]],[[83900,65416],[171,76],[238,-255]],[[81112,64393],[532,658],[312,549],[295,194],[745,720],[286,353]],[[78744,63742],[274,217],[438,66]],[[77304,61060],[136,422],[-51,469],[61,350]],[[77039,60356],[265,704]],[[79915,64273],[492,502],[137,-116],[206,395],[336,75],[348,317]],[[79457,64037],[200,-1],[258,237]],[[82744,69595],[-106,-131],[-273,136],[-253,-170]],[[81869,68466],[-143,-316],[-62,-618],[74,-172],[-110,-1029],[-141,-722]],[[80956,63375],[-39,-2473],[-127,-426]],[[78466,64587],[16,-415],[196,-556]],[[78731,65528],[-50,-405],[-228,-510]],[[78762,60907],[-115,368],[183,292],[-2,552],[-89,268],[68,671]],[[78775,60376],[201,-871]],[[79440,66289],[490,64],[198,-130],[407,511]],[[80546,66755],[208,841]],[[81395,68521],[211,939]],[[80746,67615],[583,553],[66,353]],[[77273,63150],[5,-178],[272,-353]],[[82351,63550],[63,-411],[640,-1173]],[[81184,68035],[103,-314],[18,-562],[-126,-738]],[[81198,68054],[-114,651],[116,575]],[[81555,64833],[220,-286],[11,-303],[-207,-599],[-56,-868]],[[81501,65258],[39,-327]],[[81664,60981],[112,-477]],[[81590,61342],[69,-354]],[[82587,63252],[556,-774]],[[82378,63578],[209,-326]],[[79714,62900],[150,211],[257,-22],[191,194],[289,81]],[[79021,62291],[49,-23]],[[79070,62268],[334,390],[310,242]],[[78258,62352],[305,-176],[294,60]],[[81771,69929],[231,-130],[146,-266]],[[85657,62924],[-249,-470],[-490,-331]],[[82934,60319],[346,229]],[[82318,64047],[12,-327]],[[85050,64244],[361,-871]],[[83053,66905],[100,-127]],[[82112,69430],[-113,-534]],[[80790,60476],[-126,-333]],[[78678,63616],[-65,-149]],[[81512,70158],[389,25],[379,161],[-110,257]],[[79346,66065],[94,224]],[[83949,61749],[186,337],[-37,158]],[[81540,64931],[15,-98]],[[78857,62236],[164,55]],[[79387,65087],[86,-379],[-68,-330],[52,-341]],[[79458,64013],[67,-820]],[[79645,62811],[46,-428]],[[79627,62998],[19,-175]],[[79627,62998],[-102,195]],[[79621,61936],[229,-332],[295,-237],[123,-272]],[[79070,62268],[431,-268]],[[80338,61043],[141,-624],[144,-272]],[[77712,64166],[426,-355],[108,-242],[335,-159]],[[79501,62000],[98,18]],[[81875,60390],[319,-79],[411,79]],[[81196,60755],[350,-214],[230,-37]],[[80626,60811],[292,97]],[[80326,61104],[12,-61]],[[80338,61043],[233,-247]],[[83496,62222],[-148,247]],[[80476,63847],[325,-81]],[[82151,61672],[121,-286],[332,-359],[264,-454]],[[81612,62519],[155,-335],[384,-512]],[[82934,60319],[-95,-322]],[[80894,63667],[25,-24]],[[80801,63766],[47,-47]],[[76377,62330],[157,-22],[74,-250]],[[77833,61140],[84,-101]],[[83002,61202],[34,-103]],[[81534,70968],[-11,-302]],[[79448,61137],[156,527],[87,719]],[[78186,62850],[252,317]],[[78074,62605],[112,245]],[[79456,64025],[1,12]],[[77547,62514],[42,8]],[[80856,63952],[49,-235]],[[80644,60124],[-12,-208]],[[81468,65537],[2,-65]],[[80922,63701],[75,-37]],[[78736,63198],[71,-140]],[[78794,60453],[-19,-77]],[[78453,64613],[13,-26]],[[79367,65356],[20,-269]],[[79387,65087],[-167,-172],[-288,-513],[-12,-296],[-242,-490]],[[78678,63616],[-97,-206]],[[78581,63410],[-143,-243]],[[78438,63167],[18,-63]],[[78446,62931],[-104,-452],[-329,-576],[-44,-547],[-194,-361],[32,-307]],[[77541,62480],[5,22]],[[77589,62522],[20,-11]],[[80384,67980],[71,-82]],[[81452,65559],[62,-16]],[[80342,61118],[-109,-44],[-57,-485],[58,-262],[-127,-345],[7,-478]],[[81477,70272],[-119,-673],[-333,-498],[-116,-1356],[10,-519]],[[80956,67135],[7,-701],[-74,-1661]],[[80899,63624],[13,-203],[-235,-1052]],[[80437,61653],[-11,-109]],[[80630,62204],[-58,-132]],[[83484,63416],[595,-118],[57,-139],[346,209],[399,-102]],[[80924,63659],[30,-25]],[[78466,64587],[685,-237],[101,-211],[638,-377],[586,85]],[[78283,64869],[170,-256]],[[83345,62505],[-89,-347]],[[83036,61099],[-168,-526]],[[82888,60396],[-204,-363]],[[83015,61800],[-13,-598]],[[84051,65003],[-300,-259],[-362,-125],[-241,136]],[[81819,62971],[-118,-352]],[[81134,60730],[-35,-139]],[[81659,62512],[-69,-1170]],[[81590,61342],[-198,-108],[-171,-356]],[[82991,64597],[-329,-176]],[[81985,63204],[-166,-233]],[[81470,65472],[31,-214]],[[81776,60504],[99,-114]],[[81875,60390],[-69,-153]],[[84885,63224],[7,-397]],[[84892,62827],[221,-488],[-5,-330]],[[84897,63250],[-22,449],[-164,412],[-109,709],[24,323]],[[80885,63639],[39,20]],[[80954,63634],[129,103]],[[82222,63507],[101,121]],[[77675,62573],[176,-216],[223,248]],[[80905,63717],[17,-16]],[[77450,62301],[91,179]],[[77239,62054],[124,178]],[[76608,62058],[27,35]],[[80268,66130],[-217,-323],[-327,-114]],[[80268,66130],[486,163],[563,105],[183,147],[117,-106],[461,105]],[[82605,60390],[267,58]],[[80918,60908],[216,-178]],[[81519,62643],[93,-124]],[[79285,66132],[249,-364],[190,-75]],[[82868,60573],[20,-177]],[[82888,60396],[46,-77]],[[77534,61267],[299,-127]],[[77135,61860],[28,6]],[[82330,63720],[-7,-92]],[[84309,65237],[317,-94]],[[83302,66191],[39,-87]],[[81523,70666],[-42,-354]],[[78568,60207],[151,117]],[[78960,60508],[319,270],[169,359]],[[78781,60380],[179,128]],[[78710,63309],[26,-111]],[[79268,65983],[99,-627]],[[78456,63104],[-10,-173]],[[78054,61166],[120,207]],[[80455,67898],[287,-270],[177,-402]],[[80919,67226],[68,-246]],[[80987,66980],[213,-770]],[[81200,66210],[98,-489],[154,-162]],[[81514,65543],[201,60],[510,-149]],[[82961,63575],[13,-21]],[[80889,64773],[11,-685]],[[80426,61544],[-84,-426]],[[80572,62072],[-135,-419]],[[80677,62369],[-47,-165]],[[80114,59504],[35,-191]],[[82974,63554],[430,-93]],[[82413,63616],[548,-41]],[[83410,63460],[74,-44]],[[83341,66104],[4,-731],[-132,-100],[49,-760],[162,-168],[70,-1009],[-149,-831]],[[83381,67387],[-69,-158],[-78,-838],[68,-200]],[[83256,62158],[-241,-358]],[[81221,60878],[-87,-148]],[[82680,64333],[-350,-613]],[[83148,64755],[-157,-158]],[[82222,63507],[-237,-303]],[[81099,60591],[-63,-443],[-155,-460]],[[81669,62575],[-10,-63]],[[84309,65237],[-258,-234]],[[81523,62777],[-4,-134]],[[81737,63675],[477,-166]],[[81083,63737],[105,85],[549,-147]],[[77363,62232],[87,69]],[[76835,61915],[294,-59],[110,198]],[[76635,62093],[197,-178]],[[77609,62511],[66,62]],[[82170,70601],[24,-247]],[[85461,63282],[-223,-407],[-346,-48]],[[84892,62827],[-233,167]],[[80848,63719],[27,-30]],[[80875,63689],[19,-22]],[[77163,61866],[371,-599]],[[82378,63578],[35,38]],[[82214,63509],[164,69]],[[78594,60448],[225,-236]],[[80773,63603],[112,36]],[[78719,60324],[62,56]],[[31034,58355],[188,85]],[[30198,61197],[72,-256]],[[36415,73814],[39,-739],[149,-435],[43,-1041]],[[25678,58167],[176,185],[329,59]],[[31222,58440],[128,-37]],[[31350,58403],[260,21]],[[33997,68798],[-155,-93],[21,-358],[131,-121]],[[31457,57685],[167,-434],[93,-523],[256,-39],[11,-606],[-91,-811],[72,-655],[-24,-460]],[[29397,65747],[289,175],[452,121],[287,-8],[165,309],[351,334],[215,77],[185,404],[526,459],[297,129],[303,578]],[[33973,68532],[666,-12],[877,164],[742,687],[626,76]],[[34468,57029],[435,278],[1116,151],[465,1],[932,-469],[174,-184]],[[32943,63697],[1038,756],[281,-70],[478,43],[387,222],[338,-19],[250,126],[862,184]],[[29617,63823],[772,80],[791,-519],[240,122],[364,-331],[606,220]],[[26087,53506],[32,166],[601,347]],[[28202,54560],[570,-5]],[[30962,69826],[448,-8],[361,251],[450,65],[1030,454],[126,123],[288,-75],[550,78],[280,220],[280,-55],[423,68],[110,-120],[589,-285],[347,49]],[[36318,70455],[530,-361]],[[33397,62278],[-31,-571],[-280,-1035],[-64,-577]],[[34757,64440],[14,-412],[-472,-877],[-220,-661]],[[36646,71599],[-402,-1008]],[[36577,64939],[280,69]],[[30463,60472],[-177,-224],[-102,-475],[-251,-285],[-146,-624],[-13,-1471],[-240,-45],[-142,-249],[-805,-681],[-151,58],[-463,-1523],[87,-398]],[[27668,54405],[286,169],[248,-14]],[[36244,70591],[74,-136]],[[30163,60945],[153,57]],[[44525,64059],[-82,-173]],[[53640,67271],[-2,-354],[-148,-956],[181,-26],[121,-398],[-110,-387],[226,-632]],[[53742,68592],[-75,-323],[-199,-95],[1,-331]],[[51869,67243],[1,-738],[59,-174],[323,-328],[289,-648],[-141,-236],[618,-404],[-14,-249],[145,-20],[78,-356],[197,-434]],[[43576,58847],[31,-1884]],[[43969,62101],[-43,-898],[20,-453],[-144,-1062],[15,-814]],[[44443,63886],[-244,-73],[22,-795],[-265,-394],[0,-349]],[[44513,64599],[9,-540]],[[44480,65544],[33,-800]],[[49801,62637],[-25,1691]],[[49804,61957],[21,-1395]],[[38485,56219],[4,776]],[[45578,57872],[211,21],[181,212],[357,21]],[[38821,56005],[812,-592],[155,-207]],[[53229,56269],[-375,-52],[23,-489]],[[47410,63289],[237,-91],[209,-262]],[[47974,62376],[-3,238]],[[48835,61593],[221,-66],[902,19],[355,84],[219,245]],[[41107,55836],[633,53]],[[41748,55721],[845,65],[406,88],[116,171],[375,107]],[[43626,56225],[366,23],[182,-157],[865,107],[336,186],[608,28]],[[46018,56414],[552,23],[-2,512],[932,33]],[[51340,59842],[210,92],[202,383],[68,325]],[[49864,64573],[-10,1469],[-88,435]],[[47289,60756],[809,693]],[[43956,62275],[13,-174]],[[44513,64744],[0,-145]],[[49801,62637],[-1,-483]],[[45471,57855],[107,17]],[[53790,63346],[25,-227]],[[47357,63258],[53,31]],[[47971,62614],[-115,322]],[[48328,61571],[507,22]],[[51340,59528],[0,314]],[[46667,61293],[70,72]],[[51538,63963],[39,-186]],[[53543,67784],[29,-88]],[[48845,66091],[-3,500]],[[48840,66840],[2,-249]],[[48189,61114],[31,-174]],[[48883,65430],[-10,98]],[[49418,59673],[207,2]],[[46399,60148],[466,24],[485,-65]],[[49864,64573],[410,480],[317,118]],[[47350,60107],[525,91],[94,-108],[432,-18]],[[49855,59678],[286,-67],[614,62]],[[49107,59668],[311,5]],[[48671,59816],[109,-155],[292,6]],[[49283,63711],[14,140],[387,493]],[[47402,65602],[713,20]],[[51116,56701],[-352,-59],[-222,110],[-32,279]],[[51697,57584],[137,-623],[15,-1222]],[[51683,57921],[14,-337]],[[49155,62012],[-48,-2344]],[[49107,59668],[-35,-1]],[[49072,59667],[2,-308]],[[49043,58846],[-4,-1547]],[[49258,66662],[-104,-2],[72,-574],[-27,-813],[12,-1418],[72,-144]],[[49283,63711],[22,-1220]],[[49258,66662],[194,61],[121,286]],[[45126,65672],[-131,615]],[[45203,65240],[-17,92]],[[45245,64777],[40,-521],[-126,-228],[-82,-480],[17,-831],[180,-590],[53,-1056],[9,-1809],[40,-434],[-447,-413],[-66,-161]],[[44558,57754],[-207,-221],[-159,-353]],[[42386,56901],[1458,77],[348,202]],[[46584,60969],[388,131],[5,285]],[[49305,62491],[438,58],[539,586],[351,43]],[[51863,63944],[166,190],[242,-281],[572,-158],[452,-7],[288,-87],[298,290]],[[50644,63649],[283,239],[145,-145],[327,-36]],[[53766,62562],[430,-220]],[[43607,56963],[19,-738]],[[43490,56152],[-14,-676]],[[40561,56510],[377,45],[153,241],[1295,105]],[[44558,57754],[913,101]],[[37590,56806],[479,-149],[452,-469],[300,-183]],[[54181,64621],[-336,-125],[22,-483],[-77,-667]],[[53707,62564],[-151,-73],[-109,-509],[12,-274],[251,-528],[92,-811]],[[53491,58771],[8,-1472],[-193,-357],[-116,-15],[39,-658]],[[53802,60369],[-30,-342],[108,-317],[25,-803]],[[49093,56963],[364,-53],[917,126]],[[45436,58895],[14,-250],[658,31],[201,-161],[80,-503],[377,15]],[[43346,58867],[780,-9],[1309,72]],[[47671,56970],[860,-77]],[[48947,56931],[95,31]],[[51246,56794],[611,114],[439,-3],[296,275]],[[52753,57132],[329,41],[102,-310]],[[53190,56816],[311,-314],[282,-111]],[[43855,64589],[412,141]],[[43197,64489],[658,100]],[[44445,64740],[68,4]],[[47246,63220],[111,38]],[[51195,61150],[580,-2],[45,-506]],[[51820,60642],[429,-67]],[[53212,59899],[214,-173],[242,47],[311,-135]],[[38821,56005],[1668,166],[59,291]],[[43490,56152],[136,73]],[[53280,56169],[27,-233],[234,-220]],[[44977,66425],[18,-138]],[[44995,66287],[797,96],[210,236],[631,83],[1259,41],[287,-51]],[[49188,66997],[385,12]],[[49573,67009],[117,396],[344,-2]],[[50312,67411],[344,2],[424,-116],[944,3]],[[52171,67409],[286,-137],[653,189]],[[53924,67206],[244,-69]],[[50872,65874],[-184,-279],[-97,-436],[37,-848],[17,-1726],[236,-435],[-3,-314]],[[48401,60072],[270,-256]],[[49625,59675],[230,3]],[[46404,65003],[815,29]],[[53110,67461],[462,235]],[[52072,67421],[99,-12]],[[53790,63346],[25,-227]],[[51246,56794],[-130,-93]],[[51449,58207],[234,-286]],[[49155,62012],[150,479]],[[45203,65240],[42,-463]],[[44863,58254],[-305,-500]],[[45186,65332],[-60,340]],[[51399,63707],[464,237]],[[53731,62563],[35,-1]],[[51604,58998],[915,-66]],[[53905,58907],[2,0]],[[53815,63119],[-84,-556]],[[53731,62563],[-24,1]],[[53905,58907],[-286,-57]],[[52557,58926],[-38,6]],[[52592,57180],[161,-48]],[[50374,57036],[139,-5]],[[49042,56962],[51,1]],[[48531,56893],[416,38]],[[46766,58027],[692,24]],[[52249,60575],[604,-170],[258,-237],[101,-269]],[[44513,64744],[1390,58]],[[46080,64844],[305,42]],[[44267,64730],[178,10]],[[46698,63154],[387,-44],[161,110]],[[54012,61905],[186,48]],[[53277,56221],[3,-52]],[[53229,56269],[48,-48]],[[53572,67696],[68,-425]],[[53640,67271],[284,-65]],[[50034,67403],[278,8]],[[48813,66840],[375,157]],[[48179,66692],[611,19]],[[50898,59632],[113,-290]],[[53619,58850],[-189,-95],[-557,33],[-316,138]],[[51392,59243],[57,-1036]],[[49864,64573],[-88,-245]],[[45903,64802],[177,42]],[[48154,61421],[35,-307]],[[48193,61684],[-39,-263]],[[42481,11686],[-84,227]],[[49207,12838],[-313,-532],[-128,-1145],[10,-1105]],[[49334,13560],[72,-56]],[[45838,9975],[595,47],[15,115],[1813,70],[239,-158],[276,7]],[[43005,9682],[1032,81],[66,62]],[[41267,9732],[1271,132]],[[44103,9825],[445,31]],[[38823,8904],[537,124],[1186,137]],[[45967,15096],[29,-1990],[-137,-8],[-63,-398],[102,-743],[12,-1352],[-71,-3],[0,-656],[-162,-237],[-574,18],[-217,151],[-321,-21]],[[48776,10056],[349,13]],[[42511,10689],[27,-825]],[[42538,9864],[234,20],[30,-219],[203,17]],[[43005,9682],[22,-677]],[[42500,11019],[11,-330]],[[42496,11133],[4,-114]],[[38699,11061],[124,-2157]],[[38823,8904],[-286,-37],[-7,-349]],[[79406,32183],[14,-22]],[[82590,37633],[-17,-273]],[[79643,37537],[-119,-157]],[[80036,38211],[-146,-121]],[[87137,30197],[118,458],[30,1189]],[[89197,37521],[66,-196]],[[80042,39659],[39,-417],[175,-472],[3,-266]],[[80258,38239],[-215,-614],[-113,-642],[-357,-1265],[-16,-202]],[[79557,35516],[-34,-1251],[-61,-249]],[[79716,32924],[4,-243],[-241,-400],[12,-197]],[[78773,32932],[152,-104],[1034,-1354]],[[88638,33711],[114,-278]],[[87897,34540],[271,-343],[288,-208]],[[85736,36448],[745,-456],[500,-487],[311,-508],[446,-539],[108,136]],[[87235,38153],[256,271],[31,447]],[[79138,36456],[236,-8]],[[86884,37201],[362,81],[319,225],[425,40],[346,304],[150,-99]],[[86360,37338],[431,-201]],[[78864,33809],[424,324]],[[79060,35700],[497,-155]],[[79557,35516],[183,-214],[47,-307],[416,-266]],[[88225,36836],[6,-454]],[[88468,37841],[330,-222],[271,-5]],[[87236,32972],[-103,-126]],[[79834,38064],[-115,-435]],[[89710,36850],[80,-225]],[[87846,34594],[51,-54]],[[82167,34052],[280,-76],[538,-520],[313,668],[373,123],[368,-468],[113,42],[232,543],[214,117]],[[79937,39563],[-415,-880],[6,-786],[102,-168]],[[80816,40471],[162,-86]],[[79594,40856],[207,-267],[170,156],[217,-123]],[[80328,40591],[302,54]],[[80313,38390],[63,-165]],[[81275,35966],[158,-458],[192,-279]],[[81073,36736],[175,-344],[19,-424]],[[88356,38534],[-417,-238],[-241,-322]],[[80489,38943],[-149,-278]],[[80881,39834],[-21,-225]],[[88845,33977],[32,-112]],[[86542,35159],[83,-22]],[[86280,35198],[-32,-138],[-376,63]],[[86939,35127],[-207,34]],[[86542,35159],[-186,91]],[[88796,34798],[49,-821]],[[89112,36092],[-242,-862],[-22,-379]],[[89207,36708],[-36,-119]],[[89250,36829],[-23,-57]],[[89276,37803],[-20,-648]],[[85943,39633],[-282,-225]],[[89060,37552],[97,-154]],[[88981,37675],[79,-123]],[[85847,35167],[31,-194],[294,-327],[752,-713],[-47,-293],[390,-560],[154,-320]],[[85950,37530],[-82,-400],[-165,-24]],[[85546,37743],[308,-134]],[[87508,32653],[105,-286]],[[87504,32726],[4,-73]],[[85758,37604],[8,-3]],[[85810,35268],[37,-101]],[[80767,41163],[196,-449]],[[81809,37101],[-17,-249]],[[81792,36852],[75,-127],[37,-572]],[[81195,38744],[142,-405]],[[81904,36153],[247,-354],[84,-468]],[[81191,38810],[-1,-59]],[[81189,38746],[6,-2]],[[85588,34273],[-158,-453],[-77,24]],[[80188,40622],[47,-6]],[[89178,36182],[229,-332]],[[88866,37006],[113,-438]],[[88984,36441],[122,-192]],[[88964,36519],[20,-78]],[[87421,32760],[33,25]],[[89186,32224],[-13,-55]],[[88725,33615],[374,-877],[79,-535]],[[82290,40254],[121,-342],[-174,-198]],[[82573,37360],[-9,-222],[-212,-216],[-19,-745],[253,-393],[-85,-235],[-266,-218]],[[82235,35331],[-22,-147]],[[82268,40733],[75,-263]],[[80759,38327],[311,68]],[[83899,37272],[274,236],[31,-205],[406,-711]],[[81370,38317],[259,-231]],[[83132,37645],[284,-215],[180,-433],[227,245]],[[81715,38038],[310,-112]],[[85664,33702],[327,-397],[257,-802],[-203,-912]],[[84638,34759],[-85,-104]],[[82960,40534],[158,-981]],[[85967,31392],[-147,-509]],[[87599,39083],[-77,-212]],[[87235,38153],[-90,-296]],[[87576,36814],[112,-228]],[[87670,36241],[136,-296]],[[87896,35760],[234,-110]],[[80622,38548],[272,197]],[[79310,38113],[439,280],[128,178]],[[84213,39337],[211,48],[322,-241],[565,-10],[269,175],[305,-221],[437,-438]],[[81820,38894],[846,460],[501,-105]],[[81003,38774],[128,-24]],[[83686,39225],[209,-128],[195,124]],[[83441,39197],[191,73]],[[87282,37959],[583,-6]],[[89404,35851],[-1,-6]],[[80449,34821],[702,383],[204,25]],[[79544,33965],[128,278],[544,453]],[[78936,34508],[148,-21],[204,-354]],[[80228,34705],[221,116]],[[81250,40541],[365,253]],[[80054,39668],[471,286]],[[80688,39981],[407,502]],[[81685,40774],[197,75]],[[85735,37623],[23,-19]],[[80008,36656],[205,75]],[[80376,36734],[210,25]],[[80355,36721],[3,0]],[[79551,36530],[248,-30]],[[81038,36823],[209,107],[379,442]],[[82019,37331],[275,240],[251,57]],[[86400,37259],[631,-618],[566,35]],[[87604,36668],[88,-54]],[[79111,36198],[256,181]],[[83886,40123],[48,-399],[191,-93],[63,-807],[101,-433],[-97,-291],[-37,-580]],[[84621,36541],[175,-292],[545,-623],[429,-262]],[[78871,32907],[71,187],[774,-170]],[[79716,32924],[-66,324]],[[79716,32924],[222,-19],[162,-239],[564,-167],[167,295],[95,-74]],[[79288,34133],[213,-127]],[[79506,33763],[141,-515]],[[81302,32714],[200,415],[110,-162],[304,219],[210,-315],[167,22],[194,-464],[243,-149],[443,209],[535,-353],[237,140],[377,-159],[190,-219],[113,135],[303,-357],[454,-116],[203,87],[348,-262],[370,97],[156,309],[402,37],[205,216],[219,-200]],[[81190,32687],[55,-40]],[[87492,32070],[88,119]],[[87864,31621],[149,-123],[320,77],[112,365],[404,59],[324,170]],[[89173,32169],[160,-260]],[[81223,32471],[-68,-405]],[[80412,34507],[115,69],[283,-338],[90,-379],[-63,-418],[191,-396],[20,-336]],[[80203,34729],[25,-24]],[[80259,34661],[45,-65]],[[81190,38751],[-1,-5]],[[80630,40645],[186,-174]],[[88718,35987],[-254,-519]],[[88964,36519],[-109,-176]],[[80860,39609],[-32,-186],[-339,-480]],[[81021,40320],[-140,-486]],[[86625,35137],[107,24]],[[86356,35250],[-76,-52]],[[87634,36331],[-139,-476],[-232,-308],[-184,68],[-140,-488]],[[89171,36589],[-19,-291]],[[89256,37155],[-6,-326]],[[80548,38403],[74,145]],[[89366,37235],[157,-443]],[[89257,37327],[107,-85]],[[88911,37777],[70,-102]],[[88364,38282],[461,-386]],[[85792,35321],[18,-53]],[[85705,36927],[77,-274],[-114,-325],[163,-658],[-38,-147]],[[85937,37605],[13,-75]],[[87117,33298],[14,1]],[[81715,38038],[49,-528]],[[81129,40208],[128,-472],[-14,-297]],[[81135,39062],[56,-252]],[[81243,39439],[-20,-112]],[[85848,35155],[-202,-385],[20,-209]],[[85710,38687],[130,-724]],[[85634,34370],[-46,-97]],[[88650,38261],[-24,-93]],[[88626,38168],[-124,-261]],[[88782,37238],[84,-232]],[[88979,36568],[-15,-49]],[[82048,37902],[217,26],[359,-293]],[[81070,38395],[300,-78]],[[86000,37348],[7,33]],[[83823,37242],[76,30]],[[81629,38086],[86,-48]],[[84942,34005],[188,-107]],[[84026,35411],[54,-82]],[[88130,35650],[133,-177]],[[86377,38466],[115,-49]],[[84090,39221],[123,116]],[[81528,38710],[292,184]],[[81238,38732],[290,-22]],[[80894,38745],[109,29]],[[87865,37953],[14,1]],[[82678,35267],[188,139]],[[86175,37428],[117,-56]],[[80525,39954],[95,-2]],[[81615,40794],[70,-20]],[[81095,40483],[155,58]],[[87825,36682],[368,124]],[[86360,37338],[40,-79]],[[80586,36759],[373,50]],[[79802,36505],[61,7]],[[81050,36849],[-12,-26]],[[85770,35364],[22,-43]],[[87285,31844],[207,226]],[[79501,34006],[5,-243]],[[80926,32720],[46,-7]],[[81074,32678],[94,15]],[[81243,32678],[59,36]],[[80304,34596],[108,-89]],[[80228,34705],[31,-44]],[[81245,32647],[-4,-16]],[[81241,32631],[-18,-160]],[[86045,31591],[-78,-199]],[[79524,37380],[-140,-864]],[[89403,35845],[7,-8]],[[88796,34798],[5,-2]],[[88958,38195],[-33,-48]],[[80376,38225],[138,-31],[210,-648],[86,-483],[149,-254]],[[80311,38396],[2,-6]],[[86205,37566],[130,-54],[351,235],[425,109]],[[87412,33066],[-176,-94]],[[88855,36343],[-137,-356]],[[89188,37072],[-167,-406]],[[88703,35075],[-40,-426],[-157,-665]],[[82303,38354],[160,60]],[[79367,36379],[-181,-577]],[[80041,35516],[119,-651]],[[82343,40470],[-53,-216]],[[87708,32293],[156,-672]],[[86791,37137],[93,64]],[[84501,36720],[99,-214]],[[89523,36792],[120,-293],[185,-121]],[[89182,37413],[75,-86]],[[88825,37896],[86,-119]],[[87821,39009],[70,-363],[473,-364]],[[87613,32367],[-28,-168]],[[85793,35523],[-1,-202]],[[85937,37605],[-83,4]],[[81764,37510],[45,-409]],[[81135,39062],[88,265]],[[81004,40526],[125,-318]],[[89790,36625],[-5,-195]],[[85840,37963],[97,-358]],[[85666,34561],[-32,-191]],[[85509,39771],[159,-395],[42,-689]],[[80258,38422],[-23,-59]],[[89106,36249],[72,-67]],[[88502,37907],[-39,-326],[319,-343]],[[87454,32785],[50,-59]],[[88456,33989],[50,-5]],[[88506,33984],[106,-276]],[[88166,35441],[373,-481],[257,-162]],[[82025,37926],[23,-24]],[[85820,30883],[-74,-231]],[[84553,34655],[45,-174]],[[84598,34481],[344,-476]],[[85130,33898],[128,-41]],[[83118,39553],[42,-367]],[[87687,36658],[-59,-87]],[[87806,35945],[90,-185]],[[80296,38412],[-10,8]],[[87879,37954],[585,-403]],[[86492,38417],[619,-561]],[[87111,37856],[69,-5]],[[87180,37851],[102,108]],[[86322,38650],[55,-184]],[[83422,39268],[19,-71]],[[81131,38750],[107,-18]],[[86292,37372],[68,-34]],[[80359,36726],[-1,-5]],[[80355,36721],[4,5]],[[80620,39952],[68,29]],[[81011,40506],[84,-23]],[[88193,36806],[178,-56]],[[88371,36750],[290,328]],[[88661,37078],[99,186]],[[87687,36658],[138,24]],[[87180,37851],[396,-1037]],[[87576,36814],[94,-573]],[[81626,37372],[175,98],[218,-139]],[[80959,36809],[122,2]],[[80213,36731],[142,-10]],[[79863,36512],[145,144]],[[79367,36379],[187,151]],[[80358,36721],[18,13]],[[81168,32693],[75,-15]],[[80972,32713],[102,-35]],[[80258,38422],[28,-2]],[[80290,38431],[-4,-11]],[[87839,37284],[-78,-580]],[[80123,38564],[131,-23],[4,-302]],[[80258,38239],[-191,-302]],[[87980,32936],[224,279],[55,278]],[[87786,32456],[194,480]],[[80320,38453],[-12,-62]],[[88751,37219],[234,-4],[172,183]],[[89157,37398],[25,15]],[[89182,37413],[15,108]],[[89197,37521],[36,71]],[[5434,11859],[146,441]],[[5631,12323],[-12,-5]],[[5580,12300],[39,18]],[[5811,12413],[-52,-31]],[[5697,12354],[-51,-24]],[[5766,12386],[-7,-4]],[[8495,12946],[250,478],[124,30]],[[5607,22088],[-139,426]],[[5468,22514],[-97,342]],[[3667,20700],[117,54],[193,-272],[284,5],[179,234],[291,-65],[200,326],[164,3],[179,346],[354,87],[-21,670]],[[5607,22088],[493,250]],[[6397,13126],[390,74]],[[6345,13240],[-7,285],[-231,632],[-332,298]],[[5352,14459],[425,-2]],[[6976,20457],[38,629],[226,314],[142,427],[-45,185],[84,708],[339,205],[89,427],[-143,396],[-22,572],[291,273],[91,446],[274,336],[20,326]],[[4330,23234],[426,-204],[177,-522],[132,-13],[286,304],[139,399],[122,723],[22,425]],[[3908,24000],[97,-136],[130,-665],[188,32]],[[6091,12650],[-280,-237]],[[5646,12330],[-15,-7]],[[5759,12382],[-62,-28]],[[5415,14379],[151,-272],[414,-470],[157,-84],[189,-340],[-12,-503]],[[13849,17728],[-92,374],[138,745]],[[12075,13511],[-21,300],[98,342]],[[4995,14377],[302,104]],[[6308,12917],[96,158]],[[5390,13316],[-189,128]],[[12829,14774],[329,-158],[371,-290],[102,-541]],[[7365,18048],[312,106],[289,226]],[[3830,13481],[304,37],[486,219],[294,-60],[273,-233]],[[5262,13431],[214,-51]],[[5592,15074],[468,508],[371,186],[56,224],[153,-76],[269,306],[16,241],[-200,499],[71,236]],[[12767,14767],[37,-3]],[[12767,14767],[-18,17]],[[4712,18008],[368,537],[290,662],[-21,99],[372,336],[227,499],[222,250],[208,1065]],[[4349,11965],[424,51],[134,-303],[502,-22],[29,176],[295,120]],[[4564,17734],[35,16]],[[5677,13227],[-201,153]],[[11494,13605],[218,-126],[334,15]],[[6103,12877],[-426,350]],[[5187,13444],[75,-13]],[[5379,14633],[213,441]],[[86933,62254],[84,-114]],[[86867,62262],[66,-8]],[[87041,60985],[149,108]],[[86261,56667],[-51,-1109]],[[75939,58918],[276,-83],[228,232],[248,468],[223,-90],[182,-563],[131,-23],[258,-423],[-26,-352],[269,-520],[164,151],[206,-554],[249,-246],[238,-879],[396,-595],[178,-67],[201,-591],[365,-402],[247,-45],[193,-561]],[[84697,60239],[1087,451],[215,403],[105,406],[275,656],[488,107]],[[84662,60172],[283,-164],[330,-61]],[[85219,59958],[-224,-295]],[[80514,56761],[816,166]],[[84909,58164],[589,-493],[350,-459],[359,-244]],[[86374,56716],[128,-276],[351,-209]],[[87315,55553],[31,-253]],[[87256,54748],[547,-310]],[[86943,55924],[313,-269]],[[82082,53850],[258,-330]],[[83615,58415],[-88,-171],[42,-566],[293,-336]],[[83685,59800],[-89,-1286]],[[83620,60107],[35,-116]],[[83585,60258],[35,-151]],[[77039,60356],[-65,-261]],[[82051,53976],[39,37]],[[78795,58949],[222,329],[-41,227]],[[77102,57560],[-273,-456],[-274,60]],[[77179,59556],[-187,-134],[-103,-494],[-350,-146]],[[86418,54043],[190,-835],[-62,-692]],[[81737,54951],[1,-602],[313,-373]],[[78636,55365],[-300,-41]],[[85358,54175],[-36,-303],[165,-943],[-68,-104]],[[84973,55230],[202,-373],[149,-618]],[[86297,54394],[524,10],[64,134]],[[86916,54523],[222,280],[118,-55]],[[76655,60288],[304,-161],[198,-489]],[[77179,59556],[262,-329],[194,50],[293,-590]],[[75936,60214],[326,376],[263,-326],[130,24]],[[82342,53514],[70,-114]],[[87130,56921],[161,-365],[28,-897]],[[87695,58805],[603,64]],[[86543,58304],[183,50],[540,-66]],[[84995,59663],[-149,-329],[-39,-497]],[[85275,59947],[208,81]],[[86418,58513],[125,-209]],[[86929,61244],[86,-68]],[[87346,55300],[-83,-501]],[[87256,55655],[59,-102]],[[84137,55048],[105,-119]],[[78450,57732],[-131,-164]],[[77287,57841],[-185,-281]],[[86067,55288],[187,168]],[[86254,55456],[44,-55]],[[86298,55401],[95,142]],[[87429,55511],[0,-100]],[[81741,56242],[436,-518]],[[82214,55661],[146,-187]],[[81183,57914],[36,-516]],[[80957,58585],[247,-494]],[[80818,58832],[130,-221]],[[86298,55401],[65,-684],[-45,-252],[100,-422]],[[86202,55590],[52,-134]],[[84930,55320],[43,-90]],[[82319,55208],[150,-171]],[[87033,61419],[-104,-175]],[[80748,59074],[-87,-207]],[[77157,59638],[22,-82]],[[81327,58160],[723,-739],[134,-301]],[[82277,56912],[302,-312]],[[82839,59997],[172,-572],[321,-241],[184,-500]],[[85109,53196],[276,-408]],[[87494,52146],[2,59]],[[74745,59289],[310,640],[184,155]],[[87960,53711],[-81,-265],[-11,-619],[-108,-173],[33,-414]],[[87793,52240],[281,-709]],[[86853,56231],[90,-307]],[[83904,56869],[-73,-759]],[[84684,53689],[7,-1073]],[[81721,55186],[241,-560],[568,-408],[54,-180]],[[85385,52788],[34,37]],[[85419,52825],[387,-63],[224,-247],[516,1]],[[86546,52516],[295,97],[120,-268],[456,-157]],[[83917,53486],[503,115],[370,-115]],[[82625,53843],[254,-147],[230,31],[92,-198],[550,-2],[154,-103]],[[87927,51953],[351,-102],[648,-60]],[[87523,52166],[270,74]],[[77336,57301],[94,-321],[134,-24]],[[74598,61228],[-70,-167]],[[77564,56956],[534,-82],[202,-236],[-73,-841]],[[80101,54533],[-96,-252],[-304,-254],[2,-165]],[[80381,54780],[-280,-247]],[[82469,55037],[-336,-682]],[[78594,58802],[-151,-987]],[[78870,55785],[12,-56]],[[78885,55546],[-36,-38]],[[87266,58288],[-113,-202],[-98,-650],[63,-417]],[[86943,55924],[8,-251],[-152,-290],[86,-845]],[[86999,56979],[-146,-748]],[[86906,54538],[79,-108],[-76,-439],[126,-751],[333,-716],[47,-329]],[[87494,52146],[181,-456]],[[87988,55535],[302,51],[787,-530],[151,396],[248,90],[219,-133],[339,-382],[88,-523],[271,-146],[-134,-852]],[[82584,54038],[41,-195]],[[82559,56145],[-382,-421]],[[80131,59018],[-7,-193]],[[79115,56290],[-245,-505]],[[78849,55508],[-15,-38]],[[78834,55470],[-198,-105]],[[84686,57064],[-70,-659],[146,-232]],[[84515,58591],[164,-290],[26,-509],[108,-197],[-144,-449]],[[83723,59765],[180,-564],[239,-356]],[[86503,60019],[-133,-397],[-382,-701],[-135,-409]],[[84669,57146],[-631,-19],[-142,-143]],[[85763,58367],[-146,-323],[-506,-666]],[[78636,55365],[29,-343]],[[83762,56821],[-403,-466]],[[87024,62125],[56,-265]],[[75910,59035],[23,-257],[-272,-212]],[[84257,54830],[-44,-153]],[[83936,53232],[67,-415]],[[82387,59447],[-150,-909],[-125,-161],[-184,-676],[-410,-310],[-154,-396]],[[82684,60033],[-233,-550]],[[80787,59376],[-39,-302]],[[81479,59598],[-58,-703],[42,-376],[-259,-428]],[[81806,60237],[-256,-557]],[[81072,56146],[-425,-1292],[-15,-580],[103,-250]],[[81306,56839],[-208,-664]],[[81741,56242],[832,354],[346,-307]],[[77928,58687],[681,112]],[[81072,56146],[612,117]],[[82919,56289],[785,-172]],[[89310,53654],[224,-146],[472,96],[253,-98]],[[90294,53434],[88,-227],[214,40]],[[81364,56995],[-58,-156]],[[89013,58484],[156,-33],[28,-270],[197,30],[319,-610]],[[85344,61274],[-86,-430],[107,-226],[70,-718],[193,-104],[189,-724],[36,-560]],[[85108,62009],[196,-352],[38,-377]],[[85774,58228],[-69,-559],[-238,-994]],[[77477,58350],[451,337]],[[78609,58799],[22,77]],[[82184,57120],[93,-208]],[[87417,52188],[106,-22]],[[84890,55432],[40,-112]],[[84930,55320],[14,-489],[100,-633],[21,-628]],[[83883,57530],[11,-439]],[[83516,58684],[99,-269]],[[83738,58174],[78,-182]],[[85998,57841],[201,-421]],[[86209,57008],[-2,-40]],[[86207,56968],[33,-147]],[[87017,60868],[-2,308]],[[83831,56110],[128,-337],[76,-578],[102,-147]],[[83655,59961],[30,-161]],[[83905,53424],[12,62]],[[87960,53711],[118,-56]],[[82133,54355],[-49,-1001]],[[78845,55467],[299,-155]],[[78882,55729],[3,-183]],[[87602,58840],[-336,-552]],[[86930,60995],[93,-28]],[[81204,58091],[-21,-177]],[[82177,55724],[37,-63]],[[85899,56013],[298,-392]],[[84635,58987],[93,-493],[127,-179]],[[80149,59313],[-18,-295]],[[79630,57218],[-355,-525],[-160,-403]],[[84762,56173],[84,-379]],[[84142,58845],[373,-254]],[[83685,59800],[37,-40]],[[84669,57146],[17,-82]],[[85111,57378],[-425,-314]],[[87080,61860],[-47,-441]],[[86828,60908],[-209,-398],[-116,-491]],[[83896,56984],[-134,-163]],[[83070,55964],[-454,-601]],[[79800,55492],[-198,79],[-458,-259]],[[78834,55470],[11,-3]],[[75902,59260],[24,-211]],[[84213,54677],[-60,-526],[-236,-665]],[[83905,53424],[31,-192]],[[80881,59688],[14,-192]],[[80735,54024],[31,-97]],[[84945,55499],[288,-127]],[[87867,54423],[446,-49],[240,-309]],[[83962,56038],[603,-204]],[[90259,53506],[35,-72]],[[84347,54964],[414,429]],[[88240,57257],[573,1197],[200,30]],[[84577,60403],[208,448],[368,337]],[[79126,58993],[585,76]],[[79711,59069],[170,-25]],[[84605,58594],[-192,-447]],[[88548,54066],[422,-257],[111,76],[229,-231]],[[83883,57530],[-67,462]],[[84065,57131],[-161,-209]],[[82056,55456],[-308,-124]],[[85065,53570],[41,-402]],[[83894,57091],[152,-658],[206,-147],[409,-598]],[[83615,58415],[123,-241]],[[86199,57420],[10,-412]],[[86240,56821],[134,-105]],[[87263,54799],[-7,-51]],[[84137,55048],[7,-227]],[[80447,54881],[-66,-101]],[[85455,55188],[566,114]],[[86872,61025],[58,-30]],[[82214,55661],[-155,-177]],[[80124,58825],[-238,-1176],[-239,-353]],[[84679,58537],[10,-103]],[[83359,56355],[-36,-190],[-253,-201]],[[81480,55367],[-448,-59],[-411,124],[-419,-64],[-402,124]],[[85795,58434],[-32,-67]],[[85853,58512],[-58,-78]],[[83704,56117],[258,-79]],[[84292,54820],[55,144]],[[85763,58367],[11,-139]],[[79711,59069],[170,-25]],[[79881,59044],[24,0]],[[78142,59425],[540,-355],[444,-77]],[[78631,58876],[148,153]],[[84672,58108],[237,56]],[[81480,55367],[300,-238],[284,-18]],[[83592,59855],[350,73],[325,398],[299,86]],[[80513,53945],[374,69]],[[77111,34827],[381,-540],[105,-261]],[[76890,35109],[221,-282]],[[77111,34827],[588,-204]],[[77649,33948],[219,-231],[309,-155],[337,-451],[259,-179]],[[77443,36873],[1695,-417]],[[73876,37163],[-89,-1200]],[[73985,38002],[-95,-807]],[[71814,42788],[280,281],[644,-142]],[[75028,40416],[157,54],[267,-247],[365,-476]],[[74313,40682],[492,-340]],[[72053,41689],[660,-327],[703,11],[342,-58],[359,-228]],[[71696,41950],[326,-85]],[[72683,44737],[301,-634]],[[72984,44103],[157,-324]],[[73391,43131],[255,-433],[579,-589],[230,-571],[30,-459],[323,-703]],[[76480,37027],[196,-392],[-16,-778],[199,-529]],[[74816,40339],[95,-149],[47,-515],[191,-406],[117,-50],[377,-842]],[[77699,34623],[98,-118],[1016,-260],[-39,-413],[90,-23]],[[75347,35933],[270,-126]],[[75832,35681],[440,-437],[491,-5]],[[75079,35776],[204,118]],[[78717,35759],[327,-26]],[[71966,35566],[-35,323]],[[71799,36294],[132,-405]],[[76999,35106],[2,0]],[[76248,35954],[-32,-168]],[[76895,35131],[106,-25]],[[74805,40342],[223,74]],[[73141,43779],[250,-648]],[[76172,37616],[130,-259]],[[77796,35381],[145,-7]],[[75617,35807],[215,-126]],[[78989,35895],[71,-195]],[[75134,38562],[-27,235],[-448,432],[-386,-128],[-536,113],[-407,-261],[-559,95]],[[73890,37160],[392,-599]],[[73543,37661],[347,-466]],[[75817,39747],[-94,-184]],[[75673,39163],[7,-377]],[[77521,35954],[661,741]],[[78183,36701],[273,302]],[[76791,40468],[161,-120],[34,-255]],[[75359,41465],[321,-178],[181,-246]],[[73876,37163],[14,-3]],[[74267,40633],[331,-1349],[22,-416],[178,-490],[5,-576],[249,-2049]],[[75134,38562],[336,-181]],[[72405,38728],[332,303]],[[74256,40635],[-116,-532],[-436,-894]],[[73660,41851],[315,-429],[142,-335]],[[72587,44005],[47,-190]],[[72367,44382],[82,-68]],[[78791,37535],[-255,-441]],[[74282,36561],[-11,-197]],[[76866,41279],[-168,-554],[41,-239]],[[78049,43042],[-73,-371],[-319,-81],[-422,-246],[-131,-322],[-43,-513],[-196,-212]],[[72771,39048],[-2,-23]],[[79066,37817],[-196,-1479]],[[77236,44685],[238,-680]],[[76809,47083],[4,-453],[189,-103],[-132,-698],[211,-1049]],[[76558,47276],[247,-168]],[[72737,39031],[32,-6]],[[72733,45307],[183,-176],[223,196],[273,-142],[151,-218],[612,-185],[777,-422],[114,-283],[271,-77]],[[76923,43870],[188,479]],[[77236,44685],[434,349]],[[72458,45308],[-118,-915],[39,-224],[-237,-359],[-120,-1945]],[[72030,41494],[50,-366],[-199,-2544]],[[71881,38584],[-117,-1277]],[[71804,37218],[-55,-867],[50,-57]],[[72033,35529],[-10,-132]],[[77788,37723],[416,126],[603,-318],[157,213]],[[74819,41694],[325,-135]],[[77790,37746],[-2,-23]],[[75369,36485],[672,-253]],[[74835,36481],[99,31]],[[73311,35647],[630,406]],[[71966,35566],[67,-37]],[[72033,35529],[1225,-263],[35,232]],[[71249,35843],[706,-275]],[[73682,43928],[691,-513]],[[74373,43415],[867,-433]],[[75243,42981],[397,-258],[199,-314],[842,-752],[183,-372]],[[77626,40674],[877,-1023]],[[78589,39458],[75,-118]],[[71881,38584],[96,-141],[315,-68],[433,-425],[350,-82],[232,-206],[195,36],[751,-416],[125,85],[409,-89],[407,103],[1191,-255]],[[71481,38888],[315,-118],[-8,-145]],[[73890,37195],[-14,-32]],[[71386,37654],[661,-571]],[[72671,36410],[336,-86],[217,-319]],[[73390,35578],[58,-311]],[[76724,38051],[718,403],[58,145]],[[75299,36348],[-13,162],[550,949],[103,323],[350,30],[258,169]],[[78559,39513],[80,186],[477,508]],[[77927,39218],[613,329]],[[75079,35776],[187,445]],[[72449,45310],[-137,-367]],[[72223,44697],[-119,-464],[-278,-422]],[[77387,34941],[363,-137],[1186,-296]],[[72713,39774],[396,-85],[70,255],[233,158]],[[71507,39228],[275,159],[485,463]],[[75817,39747],[340,-130],[242,226],[422,-88],[154,158]],[[77547,39740],[264,-458]],[[74117,41087],[97,-396]],[[73519,42067],[177,-18]],[[78897,36201],[214,-3]],[[76905,35182],[325,27]],[[72396,45601],[69,-84]],[[72545,45496],[134,-55]],[[75419,44135],[339,142],[360,-228],[198,138],[378,7]],[[72548,45496],[154,134]],[[73015,46038],[145,481],[261,89],[260,-105],[173,100],[194,341],[196,42],[242,-332],[480,286],[199,-102],[212,-468]],[[74411,36251],[178,-214],[348,-206]],[[75052,35753],[27,23]],[[73527,36475],[744,-111]],[[74271,36364],[10,-102]],[[72668,36480],[30,100],[579,-124],[128,67]],[[71307,36587],[948,-200],[242,133]],[[73944,46396],[132,-1382],[282,-1572]],[[74373,43415],[601,-1731]],[[77277,38371],[169,-452]],[[77019,38803],[255,-431]],[[75234,41345],[167,-412],[397,-530],[309,-240],[104,-735],[306,-106],[287,-274]],[[76801,39043],[213,-238]],[[78015,37225],[521,-131]],[[78536,37094],[18,-99]],[[78867,36256],[3,82]],[[78870,36338],[-264,432],[-6,219]],[[74059,46966],[2,-7]],[[73944,46396],[-178,-210],[-128,-537],[-72,-724],[7,-429],[107,-515],[-74,-501],[-214,-642],[122,-529]],[[73583,41585],[20,-608],[-61,-269],[-4,-655],[165,-820],[-132,-664],[-56,-680]],[[75680,38786],[-37,-409]],[[75723,39563],[-50,-400]],[[76986,40093],[-11,-180]],[[76128,40974],[211,-60],[452,-446]],[[75861,41041],[205,-41]],[[71987,39939],[206,-75]],[[76055,44986],[265,-383],[148,-46],[226,-363]],[[75323,45131],[480,64],[227,-174]],[[73551,41838],[109,13]],[[72449,44314],[138,-309]],[[78456,37003],[98,-8]],[[77081,44780],[73,-94]],[[76496,47337],[62,-61]],[[72634,43815],[125,-124]],[[76903,43781],[20,89]],[[72022,41865],[8,-371]],[[73941,36053],[531,308],[363,120]],[[74934,36512],[205,31]],[[73293,35498],[18,149]],[[78503,39651],[86,-193]],[[78664,39340],[108,-52]],[[76385,37126],[95,-99]],[[76480,37027],[194,19]],[[77406,36888],[37,-15]],[[72047,37083],[68,-119]],[[72142,36936],[499,-520]],[[72641,36416],[27,64]],[[73224,36005],[14,-185]],[[72641,36416],[30,-6]],[[75266,36221],[33,127]],[[77811,39282],[71,-71]],[[72312,44943],[-11,-74]],[[77291,34970],[96,-29]],[[72329,39838],[272,-83]],[[77111,44349],[43,337]],[[73412,40102],[46,119]],[[73185,42962],[151,75]],[[76212,45162],[232,347]],[[75578,44435],[368,376]],[[76975,39913],[572,-173]],[[73463,42090],[56,-23]],[[73696,42049],[1123,-355]],[[77941,35374],[106,-3],[357,333]],[[77748,35393],[48,-12]],[[71936,45430],[96,-105],[364,276]],[[76694,44194],[208,-425]],[[72770,45675],[245,363]],[[76184,47131],[211,288],[101,-82]],[[73405,36523],[122,-48]],[[78554,36995],[46,-6]],[[77724,37574],[291,-349]],[[73874,46651],[70,-255]],[[77154,44686],[82,-1]],[[72379,44391],[333,-11]],[[76066,41000],[62,-26]],[[72193,39864],[74,-14]],[[74912,41005],[78,576]],[[77543,34086],[106,-138]],[[75139,36543],[230,-58]],[[76041,36232],[207,-278]],[[78772,39288],[238,-314],[219,20]],[[74331,43482],[3,6]],[[77374,36895],[32,-7]],[[73238,35820],[45,-80]],[[72115,36964],[27,-28]],[[77613,38936],[269,275]],[[77882,39211],[45,7]],[[72301,44869],[-78,-172]],[[76880,43557],[21,195]],[[72267,39850],[62,-12]],[[72601,39755],[112,19]],[[73458,40221],[510,411],[291,-3],[485,512]],[[76444,45509],[546,92]],[[75946,44811],[266,351]],[[75359,44060],[60,75]],[[74334,43488],[192,47],[786,430]],[[73336,43037],[222,-81],[433,175],[340,351]],[[72738,42927],[254,-74],[193,109]],[[75423,44140],[155,295]],[[77217,35335],[121,118],[410,-60]],[[72679,45441],[54,-134]],[[72465,45517],[43,10]],[[76902,43769],[-1,-17]],[[75419,44135],[4,5]],[[76496,47337],[12,15]],[[75377,46370],[72,-45]],[[76763,35239],[62,-38]],[[77636,37607],[88,-33]],[[73514,42309],[-36,-233],[105,-491]],[[77249,36885],[125,10]],[[73683,35768],[-146,-613]],[[77227,35627],[294,327]],[[76865,35256],[78,-42]],[[74918,41614],[280,-231]],[[77246,36791],[-145,-335],[-125,-992],[-92,-301]],[[90722,31701],[82,-43]],[[91706,33342],[542,-472]],[[92248,32870],[128,-62]],[[91500,33372],[165,-206]],[[91803,33041],[275,-327],[170,156]],[[91725,33119],[78,-78]],[[91027,31622],[215,-511]],[[90270,29281],[-34,-195],[70,-909],[-21,-875],[-64,-774]],[[91032,33388],[333,-747]],[[83395,28150],[156,81]],[[83551,28231],[305,-261],[-6,-204]],[[90432,32526],[271,-424]],[[90804,31658],[322,-26]],[[90996,33073],[-16,-597],[-84,-392]],[[89979,24826],[0,-327],[113,-400],[-46,-227]],[[89698,23170],[-77,-459],[-128,-46],[92,-321],[31,-1308]],[[89564,20961],[93,-273],[38,-1762],[-72,-353]],[[90927,32800],[-125,-598],[-110,-102],[-86,-451]],[[90444,30916],[43,-398],[-54,-349]],[[90413,29997],[-116,-589]],[[91365,34003],[82,94]],[[91466,34210],[-19,-113]],[[91734,33600],[-46,-449]],[[91993,33716],[-67,-477]],[[90012,27935],[230,141]],[[91665,33166],[60,-47]],[[92376,32808],[148,-345]],[[86792,25978],[52,-154]],[[92265,32995],[307,102]],[[85313,25496],[-158,-303]],[[91823,34092],[191,-145]],[[92014,33947],[268,-217]],[[90239,26265],[-17,-363],[-175,-440],[-68,-636]],[[90250,26433],[6,-91]],[[90433,30133],[-20,-136]],[[80875,27521],[1059,-680]],[[85601,28958],[-337,-310],[-140,-303],[-186,-123]],[[90317,26134],[434,-339],[307,79]],[[88003,26473],[-75,-608]],[[86815,29654],[125,-743],[206,-255],[136,-534],[-7,-502],[-86,-486],[98,-254],[90,-655],[-16,-391]],[[81938,26834],[496,-225],[382,125],[472,-21]],[[84033,26331],[667,-120],[254,-254],[109,-284],[-55,-455],[333,-288],[220,4]],[[85569,24931],[193,-59]],[[87312,24480],[-213,-174],[-41,-294],[-252,-617],[-231,-127],[-337,-351],[-329,-112]],[[85161,30210],[-84,-672],[-224,-496],[-178,-759]],[[84675,28283],[-109,-657]],[[84566,27626],[-165,-1312]],[[83660,29178],[-227,-615],[-38,-413]],[[88047,28115],[9,-597],[-71,-539]],[[92376,32808],[236,-122],[346,-375],[228,-49],[252,-460],[226,-636],[120,-91]],[[85876,21858],[1,-148]],[[91012,34177],[93,-58]],[[93581,32206],[533,-563],[381,-522]],[[87312,24480],[125,-999],[345,-532],[202,40],[37,-263],[414,-376]],[[88435,22350],[266,205],[397,-75],[302,410],[298,280]],[[88455,28624],[-202,-344]],[[88253,28280],[-118,-220]],[[90189,29312],[-215,-153],[-206,154],[-257,-423],[-120,85],[-270,-122],[-159,207],[-270,-372],[-237,-64]],[[88038,26954],[-35,-481]],[[88435,22350],[-41,-430]],[[86389,22380],[210,-251],[420,-787],[193,204],[223,15],[271,-678],[472,101]],[[88178,20984],[171,-139]],[[88349,20845],[225,-119],[120,-324]],[[85860,22798],[49,7]],[[85909,22805],[243,-344]],[[86152,22461],[61,-21]],[[86213,22440],[176,-60]],[[88349,20845],[-13,-381],[147,-143],[-190,-500],[-50,-610],[-133,-674]],[[88125,18532],[-102,-532]],[[88394,21920],[-168,-128],[-119,-378],[71,-430]],[[89357,25660],[-40,-271],[-201,-259],[89,-556],[-261,-450],[24,-336]],[[88746,23650],[-153,-348],[166,-774]],[[83217,28807],[-191,-343]],[[83019,28466],[-26,-228]],[[87330,18301],[502,-165],[278,401]],[[85877,21710],[-12,-321],[106,-409],[29,-678],[382,-919],[294,-476],[362,-271]],[[85860,22680],[16,-822]],[[83974,30747],[457,52],[204,-225]],[[83251,30982],[115,-171],[288,-100],[320,36]],[[82380,31398],[374,189],[117,-295],[340,-345]],[[85292,26934],[85,-240],[248,-101]],[[82993,28238],[-117,30],[-463,-509]],[[90323,26084],[154,-136],[156,-375],[331,-259]],[[89955,26009],[230,80]],[[89297,20444],[-146,203],[-154,-108]],[[88996,20533],[-32,-53]],[[89564,20961],[-203,-197],[-36,-241]],[[88746,23650],[222,138]],[[88694,20402],[270,78]],[[84938,28222],[-140,-79],[-89,-498]],[[89325,20523],[-28,-79]],[[89297,20444],[-17,-309],[99,-435],[273,-342]],[[90450,26763],[-162,-260]],[[90193,26431],[52,40]],[[87279,19183],[248,-149]],[[90794,29740],[83,-73]],[[87058,19629],[-1,-5]],[[85860,22798],[446,-1402],[151,-289],[68,-390],[254,-699],[279,-389]],[[87057,19624],[222,-441]],[[88157,18502],[80,-284],[388,-228],[231,97],[334,-417],[396,-288]],[[87527,19034],[213,-278],[417,-254]],[[89586,17382],[30,-12]],[[86982,26713],[160,-133]],[[81919,28290],[1243,-440],[831,-124]],[[81523,28813],[141,-425]],[[85259,27111],[287,-136],[459,60],[485,-319]],[[84052,27720],[516,-100]],[[84626,27542],[240,-208],[70,-230],[271,48]],[[90472,26797],[569,182]],[[87318,26496],[211,62],[259,-127],[746,36]],[[89215,26438],[267,-152],[336,12],[375,133]],[[81406,28947],[863,-248],[257,47],[449,-195],[334,-422],[86,21]],[[89352,31890],[277,-1000],[117,-711],[209,-196],[221,-684]],[[90877,29667],[221,-442],[20,-300]],[[90487,30166],[307,-426]],[[89789,30152],[422,255],[222,-274]],[[89333,31915],[19,-25]],[[90907,31488],[194,-431],[150,38]],[[90733,31721],[121,-195]],[[90441,31705],[109,19]],[[90606,31649],[116,52]],[[81294,27954],[-119,-172],[-197,34]],[[81155,32066],[-5,-859],[125,-124],[-12,-675],[90,-279],[-78,-490],[134,-664]],[[81361,28582],[-29,-439]],[[90428,29783],[-31,-501],[125,-1043],[-69,-94],[38,-1058]],[[90717,31691],[-48,-883]],[[89847,23429],[-149,-259]],[[89616,21036],[-52,-75]],[[90464,31034],[-20,-118]],[[90606,31649],[14,-89]],[[83622,26526],[411,-195]],[[87504,25202],[-192,-722]],[[91105,34119],[133,-104]],[[91444,33949],[263,-64],[259,-219]],[[92288,32968],[88,-160]],[[86844,25824],[142,-298]],[[87038,18636],[267,-321]],[[85259,27111],[33,-177]],[[84709,27645],[-83,-103]],[[91060,32231],[59,-333]],[[85207,27152],[52,-41]],[[88534,26467],[339,85],[342,-114]],[[87142,26580],[176,-84]],[[84626,27542],[-58,78]],[[83993,27726],[59,-6]],[[81664,28388],[255,-98]],[[86490,26716],[492,-3]],[[90854,31526],[45,-35]],[[90373,31790],[68,-85]],[[81332,28143],[-38,-189]],[[90669,30808],[-157,-568]],[[90487,30166],[-59,-383]],[[90491,27087],[-19,-290]],[[90472,26797],[-22,-34]],[[90582,31419],[-118,-385]],[[90620,31560],[-38,-141]],[[90433,30169],[0,-36]],[[91795,34037],[28,55]],[[90433,30169],[54,-3]],[[80879,27603],[-22,0]],[[90626,34375],[47,36]],[[91206,33537],[-40,-80]],[[80846,27859],[-18,-677]],[[92134,32986],[-1,-227]],[[83288,26713],[334,-187]],[[81856,29039],[-48,-92]],[[86986,25526],[42,-104]],[[91012,34177],[-44,-55]],[[81808,28947],[-178,-296],[-198,-18]],[[90620,34813],[53,-402]],[[85933,26070],[-282,-154],[-323,-348]],[[87056,25484],[116,-77],[293,206]],[[85625,26593],[161,-107]],[[85762,26465],[10,-104]],[[89910,26073],[45,-64]],[[92282,33730],[-87,-385],[177,-74]],[[92194,33339],[-37,-219]],[[91391,33653],[172,-197],[232,581]],[[91795,34037],[-59,94]],[[91874,34060],[-4,-10]],[[91119,31898],[81,-204]],[[90297,29408],[-27,-127]],[[90203,29181],[40,-9]],[[90176,29299],[27,-118]],[[90550,31724],[56,-75]],[[90733,31721],[-11,-20]],[[90896,32084],[-163,-363]],[[90512,30240],[-25,-74]],[[90936,34230],[123,-548]],[[90227,29345],[-34,-29]],[[91344,34070],[-138,-533]],[[90084,26341],[233,67],[192,637]],[[90958,33398],[184,14],[60,-363]],[[81335,28078],[105,-231]],[[94900,29067],[-86,-600]],[[94562,27486],[-22,-51]],[[94817,27931],[4,-109]],[[94833,28147],[-21,-76]],[[94829,28407],[19,-158]],[[94814,28467],[13,-23]],[[95022,28163],[82,56]],[[95104,28219],[122,459]],[[94601,27404],[-49,-46]],[[94552,27358],[-4,-58]],[[94526,29332],[422,-98]],[[94369,29942],[51,57]],[[94420,29999],[29,6]],[[94921,27972],[-47,-329]],[[94366,29938],[3,4]],[[94094,27890],[188,-89],[524,135]],[[94874,27956],[60,-38]],[[94176,28342],[298,-303],[163,-20]],[[95011,28144],[11,19]],[[95011,28144],[-32,-107]],[[94940,29471],[-40,-404]],[[94449,30005],[404,-347],[26,-131]],[[94623,27551],[183,367]],[[94397,27375],[184,121]],[[94340,29883],[80,116]],[[94647,28045],[161,-86]],[[94879,29527],[61,-56]],[[42469,12028],[27,-895]],[[77123,54935],[-151,-371]],[[94761,25908],[382,-186],[-9,-105]],[[95100,25740],[-198,-534]],[[2311,41181],[-63,-161]],[[95922,5719],[29,-146],[302,-142],[-24,-264],[315,-60],[517,446]],[[97061,5553],[-37,755],[221,745],[18,328],[356,506]],[[97619,7887],[87,234],[217,1085]],[[94230,25417],[128,126]],[[61623,57569],[204,-129],[440,-13],[183,152],[9,-281]],[[60489,58464],[459,-346]],[[17874,61962],[280,-629],[214,-111],[278,-471]],[[28772,54555],[415,314],[487,-259],[226,-46],[113,-506],[415,222]],[[91358,28456],[-150,-515],[60,-453]],[[76830,51176],[-82,271],[-79,835]],[[62566,19556],[30,-349]],[[36736,30033],[232,252]],[[38412,48156],[434,-155],[248,56],[368,-136],[339,17]],[[42837,64523],[360,-34]],[[28071,54557],[-1,-417]]]} \ No newline at end of file diff --git a/frontend/public/transmission-lines-topo.json b/frontend/public/transmission-lines-topo.json index c00019fa..ab01cc13 100644 --- a/frontend/public/transmission-lines-topo.json +++ b/frontend/public/transmission-lines-topo.json @@ -1 +1 @@ -{"type":"Topology","bbox":[32.7348757108162,10.5201803725231,963.4905374023898,590.663576099949],"transform":{"scale":[0.00930764969341267,0.0058014919721939805],"translate":[32.7348757108162,10.5201803725231]},"objects":{"overlay":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0],"id":2,"properties":{"V":230}},{"type":"LineString","arcs":[1],"id":101,"properties":{"V":500}},{"type":"LineString","arcs":[2],"id":102,"properties":{"V":500}},{"type":"LineString","arcs":[3],"id":103,"properties":{"V":500}},{"type":"LineString","arcs":[4],"id":104,"properties":{"V":500}},{"type":"LineString","arcs":[5],"id":105,"properties":{"V":500}},{"type":"LineString","arcs":[6],"id":106,"properties":{"V":500}},{"type":"LineString","arcs":[7],"id":107,"properties":{"V":500}},{"type":"LineString","arcs":[8],"id":108,"properties":{"V":500}},{"type":"LineString","arcs":[9],"id":109,"properties":{"V":500}},{"type":"LineString","arcs":[10],"id":110,"properties":{"V":500}},{"type":"LineString","arcs":[11],"id":111,"properties":{"V":500}},{"type":"LineString","arcs":[12],"id":112,"properties":{"V":500}},{"type":"LineString","arcs":[13],"id":113,"properties":{"V":500}},{"type":"LineString","arcs":[14],"id":114,"properties":{"V":500}},{"type":"LineString","arcs":[15],"id":115,"properties":{"V":500}},{"type":"LineString","arcs":[16],"id":116,"properties":{"V":500}},{"type":"LineString","arcs":[17],"id":117,"properties":{"V":500}},{"type":"LineString","arcs":[18],"id":118,"properties":{"V":500}},{"type":"LineString","arcs":[19],"id":119,"properties":{"V":500}},{"type":"LineString","arcs":[20],"id":120,"properties":{"V":500}},{"type":"LineString","arcs":[21],"id":121,"properties":{"V":500}},{"type":"LineString","arcs":[22],"id":122,"properties":{"V":500}},{"type":"LineString","arcs":[23],"id":123,"properties":{"V":500}},{"type":"LineString","arcs":[24],"id":124,"properties":{"V":500}},{"type":"LineString","arcs":[25],"id":125,"properties":{"V":500}},{"type":"LineString","arcs":[26],"id":126,"properties":{"V":500}},{"type":"LineString","arcs":[27],"id":127,"properties":{"V":500}},{"type":"LineString","arcs":[28],"id":128,"properties":{"V":500}},{"type":"LineString","arcs":[29],"id":129,"properties":{"V":500}},{"type":"LineString","arcs":[30],"id":130,"properties":{"V":500}},{"type":"LineString","arcs":[31],"id":131,"properties":{"V":500}},{"type":"LineString","arcs":[32],"id":132,"properties":{"V":500}},{"type":"LineString","arcs":[33],"id":133,"properties":{"V":500}},{"type":"LineString","arcs":[34],"id":134,"properties":{"V":500}},{"type":"LineString","arcs":[35],"id":135,"properties":{"V":500}},{"type":"LineString","arcs":[36],"id":136,"properties":{"V":500}},{"type":"LineString","arcs":[37],"id":137,"properties":{"V":500}},{"type":"LineString","arcs":[38],"id":138,"properties":{"V":500}},{"type":"LineString","arcs":[39],"id":139,"properties":{"V":500}},{"type":"LineString","arcs":[40],"id":140,"properties":{"V":500}},{"type":"LineString","arcs":[41],"id":141,"properties":{"V":500}},{"type":"LineString","arcs":[42],"id":142,"properties":{"V":500}},{"type":"LineString","arcs":[43],"id":143,"properties":{"V":500}},{"type":"LineString","arcs":[44],"id":144,"properties":{"V":500}},{"type":"LineString","arcs":[45],"id":145,"properties":{"V":500}},{"type":"LineString","arcs":[46],"id":146,"properties":{"V":500}},{"type":"LineString","arcs":[47],"id":147,"properties":{"V":500}},{"type":"LineString","arcs":[48],"id":148,"properties":{"V":500}},{"type":"LineString","arcs":[49],"id":149,"properties":{"V":500}},{"type":"LineString","arcs":[50],"id":150,"properties":{"V":500}},{"type":"LineString","arcs":[51],"id":151,"properties":{"V":500}},{"type":"LineString","arcs":[52],"id":152,"properties":{"V":500}},{"type":"LineString","arcs":[53],"id":153,"properties":{"V":500}},{"type":"LineString","arcs":[54],"id":154,"properties":{"V":500}},{"type":"LineString","arcs":[55],"id":155,"properties":{"V":500}},{"type":"LineString","arcs":[56],"id":156,"properties":{"V":500}},{"type":"LineString","arcs":[57],"id":157,"properties":{"V":500}},{"type":"LineString","arcs":[58],"id":158,"properties":{"V":500}},{"type":"LineString","arcs":[59],"id":159,"properties":{"V":500}},{"type":"LineString","arcs":[60],"id":160,"properties":{"V":500}},{"type":"LineString","arcs":[61],"id":161,"properties":{"V":500}},{"type":"LineString","arcs":[62],"id":162,"properties":{"V":500}},{"type":"LineString","arcs":[63],"id":163,"properties":{"V":500}},{"type":"LineString","arcs":[64,65],"id":164,"properties":{"V":500}},{"type":"LineString","arcs":[66],"id":165,"properties":{"V":500}},{"type":"LineString","arcs":[67,68],"id":166,"properties":{"V":500}},{"type":"LineString","arcs":[69],"id":167,"properties":{"V":500}},{"type":"LineString","arcs":[70],"id":168,"properties":{"V":500}},{"type":"LineString","arcs":[71],"id":169,"properties":{"V":500}},{"type":"LineString","arcs":[72],"id":170,"properties":{"V":500}},{"type":"LineString","arcs":[73],"id":171,"properties":{"V":500}},{"type":"LineString","arcs":[74],"id":172,"properties":{"V":500}},{"type":"LineString","arcs":[75],"id":173,"properties":{"V":500}},{"type":"LineString","arcs":[76],"id":174,"properties":{"V":500}},{"type":"LineString","arcs":[77],"id":175,"properties":{"V":500}},{"type":"LineString","arcs":[78],"id":176,"properties":{"V":500}},{"type":"LineString","arcs":[79],"id":177,"properties":{"V":500}},{"type":"LineString","arcs":[80],"id":178,"properties":{"V":500}},{"type":"LineString","arcs":[81],"id":179,"properties":{"V":500}},{"type":"LineString","arcs":[82],"id":180,"properties":{"V":500}},{"type":"LineString","arcs":[83],"id":181,"properties":{"V":500}},{"type":"LineString","arcs":[84],"id":182,"properties":{"V":500}},{"type":"LineString","arcs":[85],"id":183,"properties":{"V":500}},{"type":"LineString","arcs":[86],"id":184,"properties":{"V":500}},{"type":"LineString","arcs":[87],"id":185,"properties":{"V":500}},{"type":"LineString","arcs":[88],"id":186,"properties":{"V":500}},{"type":"LineString","arcs":[89],"id":187,"properties":{"V":500}},{"type":"LineString","arcs":[90],"id":188,"properties":{"V":500}},{"type":"LineString","arcs":[91],"id":189,"properties":{"V":500}},{"type":"LineString","arcs":[92],"id":190,"properties":{"V":500}},{"type":"LineString","arcs":[93],"id":191,"properties":{"V":500}},{"type":"LineString","arcs":[94],"id":192,"properties":{"V":500}},{"type":"LineString","arcs":[95],"id":193,"properties":{"V":500}},{"type":"LineString","arcs":[96],"id":194,"properties":{"V":500}},{"type":"LineString","arcs":[97],"id":195,"properties":{"V":500}},{"type":"LineString","arcs":[98],"id":196,"properties":{"V":500}},{"type":"LineString","arcs":[99],"id":197,"properties":{"V":500}},{"type":"LineString","arcs":[100],"id":198,"properties":{"V":500}},{"type":"LineString","arcs":[101],"id":199,"properties":{"V":500}},{"type":"LineString","arcs":[102],"id":200,"properties":{"V":500}},{"type":"LineString","arcs":[103],"id":201,"properties":{"V":500}},{"type":"LineString","arcs":[104],"id":202,"properties":{"V":500}},{"type":"LineString","arcs":[105],"id":203,"properties":{"V":500}},{"type":"LineString","arcs":[106],"id":204,"properties":{"V":500}},{"type":"LineString","arcs":[107],"id":205,"properties":{"V":500}},{"type":"LineString","arcs":[108],"id":206,"properties":{"V":500}},{"type":"LineString","arcs":[109],"id":207,"properties":{"V":500}},{"type":"LineString","arcs":[110],"id":208,"properties":{"V":500}},{"type":"LineString","arcs":[111],"id":209,"properties":{"V":500}},{"type":"LineString","arcs":[112],"id":210,"properties":{"V":500}},{"type":"LineString","arcs":[113],"id":211,"properties":{"V":500}},{"type":"LineString","arcs":[114],"id":212,"properties":{"V":500}},{"type":"LineString","arcs":[115],"id":213,"properties":{"V":500}},{"type":"LineString","arcs":[116],"id":214,"properties":{"V":345}},{"type":"LineString","arcs":[117],"id":215,"properties":{"V":345}},{"type":"LineString","arcs":[118],"id":216,"properties":{"V":345}},{"type":"LineString","arcs":[119],"id":217,"properties":{"V":345}},{"type":"LineString","arcs":[120],"id":218,"properties":{"V":345}},{"type":"LineString","arcs":[121],"id":219,"properties":{"V":345}},{"type":"LineString","arcs":[122],"id":220,"properties":{"V":345}},{"type":"LineString","arcs":[123],"id":221,"properties":{"V":345}},{"type":"LineString","arcs":[124],"id":222,"properties":{"V":345}},{"type":"LineString","arcs":[125],"id":223,"properties":{"V":230}},{"type":"LineString","arcs":[126],"id":224,"properties":{"V":345}},{"type":"LineString","arcs":[127],"id":225,"properties":{"V":345}},{"type":"LineString","arcs":[128],"id":226,"properties":{"V":345}},{"type":"LineString","arcs":[129],"id":227,"properties":{"V":345}},{"type":"LineString","arcs":[130],"id":228,"properties":{"V":345}},{"type":"LineString","arcs":[131],"id":229,"properties":{"V":345}},{"type":"LineString","arcs":[132],"id":230,"properties":{"V":345}},{"type":"LineString","arcs":[133],"id":231,"properties":{"V":345}},{"type":"LineString","arcs":[134],"id":232,"properties":{"V":345}},{"type":"LineString","arcs":[135],"id":233,"properties":{"V":345}},{"type":"LineString","arcs":[136],"id":234,"properties":{"V":345}},{"type":"LineString","arcs":[137],"id":235,"properties":{"V":345}},{"type":"LineString","arcs":[138],"id":236,"properties":{"V":345}},{"type":"LineString","arcs":[139],"id":237,"properties":{"V":345}},{"type":"LineString","arcs":[140],"id":238,"properties":{"V":345}},{"type":"LineString","arcs":[141],"id":239,"properties":{"V":345}},{"type":"LineString","arcs":[142],"id":240,"properties":{"V":345}},{"type":"LineString","arcs":[143],"id":241,"properties":{"V":345}},{"type":"LineString","arcs":[144],"id":242,"properties":{"V":345}},{"type":"LineString","arcs":[145],"id":243,"properties":{"V":345}},{"type":"LineString","arcs":[146],"id":244,"properties":{"V":345}},{"type":"LineString","arcs":[147],"id":245,"properties":{"V":345}},{"type":"LineString","arcs":[148],"id":246,"properties":{"V":345}},{"type":"LineString","arcs":[149],"id":247,"properties":{"V":345}},{"type":"LineString","arcs":[150],"id":248,"properties":{"V":345}},{"type":"LineString","arcs":[151],"id":249,"properties":{"V":345}},{"type":"LineString","arcs":[152],"id":250,"properties":{"V":345}},{"type":"LineString","arcs":[153],"id":251,"properties":{"V":345}},{"type":"LineString","arcs":[154],"id":252,"properties":{"V":345}},{"type":"LineString","arcs":[155],"id":253,"properties":{"V":345}},{"type":"LineString","arcs":[156],"id":254,"properties":{"V":345}},{"type":"LineString","arcs":[157],"id":255,"properties":{"V":345}},{"type":"LineString","arcs":[158],"id":256,"properties":{"V":345}},{"type":"LineString","arcs":[159],"id":257,"properties":{"V":345}},{"type":"LineString","arcs":[160],"id":258,"properties":{"V":345}},{"type":"LineString","arcs":[161],"id":259,"properties":{"V":345}},{"type":"LineString","arcs":[162],"id":260,"properties":{"V":345}},{"type":"LineString","arcs":[163],"id":261,"properties":{"V":345}},{"type":"LineString","arcs":[164],"id":262,"properties":{"V":345}},{"type":"LineString","arcs":[165],"id":263,"properties":{"V":345}},{"type":"LineString","arcs":[166],"id":264,"properties":{"V":345}},{"type":"LineString","arcs":[167],"id":265,"properties":{"V":345}},{"type":"LineString","arcs":[168],"id":266,"properties":{"V":345}},{"type":"LineString","arcs":[169],"id":267,"properties":{"V":345}},{"type":"LineString","arcs":[170],"id":268,"properties":{"V":345}},{"type":"LineString","arcs":[171],"id":269,"properties":{"V":345}},{"type":"LineString","arcs":[172],"id":270,"properties":{"V":345}},{"type":"LineString","arcs":[173],"id":271,"properties":{"V":345}},{"type":"LineString","arcs":[174],"id":272,"properties":{"V":345}},{"type":"LineString","arcs":[175],"id":273,"properties":{"V":345}},{"type":"LineString","arcs":[176],"id":274,"properties":{"V":345}},{"type":"LineString","arcs":[177],"id":275,"properties":{"V":345}},{"type":"LineString","arcs":[178],"id":276,"properties":{"V":345}},{"type":"LineString","arcs":[179],"id":277,"properties":{"V":345}},{"type":"LineString","arcs":[180],"id":278,"properties":{"V":345}},{"type":"LineString","arcs":[181],"id":279,"properties":{"V":345}},{"type":"LineString","arcs":[182],"id":280,"properties":{"V":230}},{"type":"LineString","arcs":[183],"id":281,"properties":{"V":345}},{"type":"LineString","arcs":[184],"id":282,"properties":{"V":345}},{"type":"LineString","arcs":[185],"id":283,"properties":{"V":345}},{"type":"LineString","arcs":[186],"id":284,"properties":{"V":345}},{"type":"LineString","arcs":[187],"id":285,"properties":{"V":345}},{"type":"LineString","arcs":[188],"id":286,"properties":{"V":345}},{"type":"LineString","arcs":[189],"id":287,"properties":{"V":345}},{"type":"LineString","arcs":[190],"id":288,"properties":{"V":345}},{"type":"LineString","arcs":[191],"id":289,"properties":{"V":345}},{"type":"LineString","arcs":[192],"id":290,"properties":{"V":230}},{"type":"LineString","arcs":[193],"id":291,"properties":{"V":345}},{"type":"LineString","arcs":[194],"id":292,"properties":{"V":345}},{"type":"LineString","arcs":[195],"id":293,"properties":{"V":230}},{"type":"LineString","arcs":[196],"id":294,"properties":{"V":345}},{"type":"LineString","arcs":[197],"id":295,"properties":{"V":230}},{"type":"LineString","arcs":[198],"id":296,"properties":{"V":345}},{"type":"LineString","arcs":[199],"id":297,"properties":{"V":230}},{"type":"LineString","arcs":[200],"id":298,"properties":{"V":345}},{"type":"LineString","arcs":[201],"id":299,"properties":{"V":345}},{"type":"LineString","arcs":[202],"id":300,"properties":{"V":345}},{"type":"LineString","arcs":[203],"id":301,"properties":{"V":345}},{"type":"LineString","arcs":[204],"id":302,"properties":{"V":287}},{"type":"LineString","arcs":[205],"id":303,"properties":{"V":500}},{"type":"LineString","arcs":[206],"id":304,"properties":{"V":230}},{"type":"LineString","arcs":[207],"id":305,"properties":{"V":230}},{"type":"LineString","arcs":[208],"id":310,"properties":{"V":230}},{"type":"LineString","arcs":[209],"id":311,"properties":{"V":230}},{"type":"LineString","arcs":[210],"id":312,"properties":{"V":230}},{"type":"LineString","arcs":[211],"id":313,"properties":{"V":230}},{"type":"LineString","arcs":[212],"id":315,"properties":{"V":230}},{"type":"LineString","arcs":[213],"id":316,"properties":{"V":230}},{"type":"LineString","arcs":[214],"id":317,"properties":{"V":230}},{"type":"LineString","arcs":[215],"id":318,"properties":{"V":230}},{"type":"LineString","arcs":[216],"id":319,"properties":{"V":230}},{"type":"LineString","arcs":[217],"id":320,"properties":{"V":230}},{"type":"LineString","arcs":[218],"id":321,"properties":{"V":230}},{"type":"LineString","arcs":[219],"id":322,"properties":{"V":230}},{"type":"LineString","arcs":[220],"id":323,"properties":{"V":230}},{"type":"LineString","arcs":[221],"id":324,"properties":{"V":230}},{"type":"LineString","arcs":[222],"id":325,"properties":{"V":230}},{"type":"LineString","arcs":[223],"id":326,"properties":{"V":230}},{"type":"LineString","arcs":[224],"id":327,"properties":{"V":230}},{"type":"LineString","arcs":[225],"id":328,"properties":{"V":230}},{"type":"LineString","arcs":[226],"id":329,"properties":{"V":230}},{"type":"LineString","arcs":[227],"id":330,"properties":{"V":230}},{"type":"LineString","arcs":[228],"id":331,"properties":{"V":230}},{"type":"LineString","arcs":[229],"id":332,"properties":{"V":230}},{"type":"LineString","arcs":[230],"id":333,"properties":{"V":230}},{"type":"LineString","arcs":[231],"id":334,"properties":{"V":230}},{"type":"LineString","arcs":[232],"id":335,"properties":{"V":230}},{"type":"LineString","arcs":[233],"id":336,"properties":{"V":230}},{"type":"LineString","arcs":[234],"id":337,"properties":{"V":230}},{"type":"LineString","arcs":[235],"id":338,"properties":{"V":230}},{"type":"LineString","arcs":[236],"id":339,"properties":{"V":230}},{"type":"LineString","arcs":[237],"id":340,"properties":{"V":230}},{"type":"LineString","arcs":[238],"id":341,"properties":{"V":230}},{"type":"LineString","arcs":[239],"id":342,"properties":{"V":230}},{"type":"LineString","arcs":[240],"id":343,"properties":{"V":230}},{"type":"LineString","arcs":[241],"id":344,"properties":{"V":230}},{"type":"LineString","arcs":[242],"id":345,"properties":{"V":230}},{"type":"LineString","arcs":[243],"id":346,"properties":{"V":230}},{"type":"LineString","arcs":[244],"id":347,"properties":{"V":230}},{"type":"LineString","arcs":[245],"id":348,"properties":{"V":230}},{"type":"LineString","arcs":[246],"id":349,"properties":{"V":230}},{"type":"LineString","arcs":[247],"id":350,"properties":{"V":230}},{"type":"LineString","arcs":[248],"id":351,"properties":{"V":230}},{"type":"LineString","arcs":[249],"id":352,"properties":{"V":230}},{"type":"LineString","arcs":[250],"id":353,"properties":{"V":230}},{"type":"LineString","arcs":[251],"id":354,"properties":{"V":230}},{"type":"LineString","arcs":[252],"id":355,"properties":{"V":230}},{"type":"LineString","arcs":[253],"id":356,"properties":{"V":230}},{"type":"LineString","arcs":[254],"id":357,"properties":{"V":230}},{"type":"LineString","arcs":[255],"id":358,"properties":{"V":230}},{"type":"LineString","arcs":[256],"id":359,"properties":{"V":230}},{"type":"LineString","arcs":[257],"id":360,"properties":{"V":230}},{"type":"LineString","arcs":[258],"id":361,"properties":{"V":230}},{"type":"LineString","arcs":[259],"id":362,"properties":{"V":230}},{"type":"LineString","arcs":[260],"id":363,"properties":{"V":230}},{"type":"LineString","arcs":[261],"id":364,"properties":{"V":230}},{"type":"LineString","arcs":[262],"id":365,"properties":{"V":230}},{"type":"LineString","arcs":[263],"id":366,"properties":{"V":230}},{"type":"LineString","arcs":[264],"id":367,"properties":{"V":230}},{"type":"LineString","arcs":[265],"id":368,"properties":{"V":230}},{"type":"LineString","arcs":[266],"id":369,"properties":{"V":230}},{"type":"LineString","arcs":[267],"id":370,"properties":{"V":230}},{"type":"LineString","arcs":[268],"id":371,"properties":{"V":230}},{"type":"LineString","arcs":[269],"id":372,"properties":{"V":230}},{"type":"LineString","arcs":[270],"id":373,"properties":{"V":230}},{"type":"LineString","arcs":[271],"id":374,"properties":{"V":230}},{"type":"LineString","arcs":[272],"id":375,"properties":{"V":230}},{"type":"LineString","arcs":[273],"id":376,"properties":{"V":230}},{"type":"LineString","arcs":[274],"id":377,"properties":{"V":230}},{"type":"LineString","arcs":[275],"id":378,"properties":{"V":230}},{"type":"LineString","arcs":[276],"id":379,"properties":{"V":230}},{"type":"LineString","arcs":[277],"id":380,"properties":{"V":230}},{"type":"LineString","arcs":[278],"id":381,"properties":{"V":230}},{"type":"LineString","arcs":[279],"id":382,"properties":{"V":230}},{"type":"LineString","arcs":[280],"id":383,"properties":{"V":230}},{"type":"LineString","arcs":[281],"id":384,"properties":{"V":230}},{"type":"LineString","arcs":[282],"id":385,"properties":{"V":230}},{"type":"LineString","arcs":[283],"id":386,"properties":{"V":230}},{"type":"LineString","arcs":[284],"id":387,"properties":{"V":230}},{"type":"LineString","arcs":[285],"id":388,"properties":{"V":230}},{"type":"LineString","arcs":[286],"id":389,"properties":{"V":230}},{"type":"LineString","arcs":[287],"id":390,"properties":{"V":230}},{"type":"LineString","arcs":[288],"id":391,"properties":{"V":230}},{"type":"LineString","arcs":[289],"id":392,"properties":{"V":230}},{"type":"LineString","arcs":[290],"id":393,"properties":{"V":230}},{"type":"LineString","arcs":[291],"id":394,"properties":{"V":230}},{"type":"LineString","arcs":[292],"id":395,"properties":{"V":230}},{"type":"LineString","arcs":[293],"id":396,"properties":{"V":230}},{"type":"LineString","arcs":[294],"id":397,"properties":{"V":230}},{"type":"LineString","arcs":[295],"id":398,"properties":{"V":230}},{"type":"LineString","arcs":[296],"id":399,"properties":{"V":230}},{"type":"LineString","arcs":[297],"id":400,"properties":{"V":230}},{"type":"LineString","arcs":[298],"id":401,"properties":{"V":230}},{"type":"LineString","arcs":[299],"id":402,"properties":{"V":230}},{"type":"LineString","arcs":[300],"id":403,"properties":{"V":230}},{"type":"LineString","arcs":[301],"id":404,"properties":{"V":230}},{"type":"LineString","arcs":[302],"id":405,"properties":{"V":230}},{"type":"LineString","arcs":[303],"id":406,"properties":{"V":230}},{"type":"LineString","arcs":[304],"id":407,"properties":{"V":230}},{"type":"LineString","arcs":[305],"id":408,"properties":{"V":230}},{"type":"LineString","arcs":[306],"id":409,"properties":{"V":230}},{"type":"LineString","arcs":[307],"id":410,"properties":{"V":230}},{"type":"LineString","arcs":[308],"id":411,"properties":{"V":230}},{"type":"LineString","arcs":[309],"id":412,"properties":{"V":230}},{"type":"LineString","arcs":[310],"id":413,"properties":{"V":230}},{"type":"LineString","arcs":[311],"id":414,"properties":{"V":230}},{"type":"LineString","arcs":[312],"id":415,"properties":{"V":230}},{"type":"LineString","arcs":[313],"id":416,"properties":{"V":230}},{"type":"LineString","arcs":[314],"id":417,"properties":{"V":230}},{"type":"LineString","arcs":[315],"id":418,"properties":{"V":230}},{"type":"LineString","arcs":[316],"id":419,"properties":{"V":230}},{"type":"LineString","arcs":[317],"id":420,"properties":{"V":230}},{"type":"LineString","arcs":[318],"id":421,"properties":{"V":230}},{"type":"LineString","arcs":[319],"id":422,"properties":{"V":230}},{"type":"LineString","arcs":[320],"id":423,"properties":{"V":230}},{"type":"LineString","arcs":[321],"id":424,"properties":{"V":230}},{"type":"LineString","arcs":[322],"id":425,"properties":{"V":230}},{"type":"LineString","arcs":[323],"id":426,"properties":{"V":230}},{"type":"LineString","arcs":[324],"id":427,"properties":{"V":230}},{"type":"LineString","arcs":[325],"id":428,"properties":{"V":230}},{"type":"LineString","arcs":[326],"id":429,"properties":{"V":230}},{"type":"LineString","arcs":[327],"id":430,"properties":{"V":230}},{"type":"LineString","arcs":[328],"id":431,"properties":{"V":230}},{"type":"LineString","arcs":[329],"id":432,"properties":{"V":230}},{"type":"LineString","arcs":[330],"id":433,"properties":{"V":230}},{"type":"LineString","arcs":[331],"id":434,"properties":{"V":230}},{"type":"LineString","arcs":[332],"id":435,"properties":{"V":230}},{"type":"LineString","arcs":[333],"id":436,"properties":{"V":230}},{"type":"LineString","arcs":[334],"id":437,"properties":{"V":230}},{"type":"LineString","arcs":[335],"id":438,"properties":{"V":230}},{"type":"LineString","arcs":[336],"id":439,"properties":{"V":230}},{"type":"LineString","arcs":[337],"id":440,"properties":{"V":230}},{"type":"LineString","arcs":[338],"id":441,"properties":{"V":230}},{"type":"LineString","arcs":[339],"id":442,"properties":{"V":230}},{"type":"LineString","arcs":[340],"id":443,"properties":{"V":230}},{"type":"LineString","arcs":[341],"id":444,"properties":{"V":230}},{"type":"LineString","arcs":[342],"id":445,"properties":{"V":230}},{"type":"LineString","arcs":[343],"id":446,"properties":{"V":230}},{"type":"LineString","arcs":[344],"id":447,"properties":{"V":230}},{"type":"LineString","arcs":[345,346],"id":448,"properties":{"V":230}},{"type":"LineString","arcs":[347,348],"id":449,"properties":{"V":230}},{"type":"LineString","arcs":[349],"id":450,"properties":{"V":230}},{"type":"LineString","arcs":[350],"id":451,"properties":{"V":500}},{"type":"LineString","arcs":[351],"id":452,"properties":{"V":500}},{"type":"LineString","arcs":[352],"id":453,"properties":{"V":500}},{"type":"LineString","arcs":[353],"id":454,"properties":{"V":500}},{"type":"LineString","arcs":[354],"id":458,"properties":{"V":230}},{"type":"LineString","arcs":[355],"id":459,"properties":{"V":500}},{"type":"LineString","arcs":[356],"id":460,"properties":{"V":230}},{"type":"LineString","arcs":[357],"id":637,"properties":{"V":230}},{"type":"LineString","arcs":[358],"id":799,"properties":{"V":230}},{"type":"LineString","arcs":[359],"id":800,"properties":{"V":230}},{"type":"LineString","arcs":[360],"id":839,"properties":{"V":230}},{"type":"LineString","arcs":[361],"id":873,"properties":{"V":1000}},{"type":"LineString","arcs":[362],"id":917,"properties":{"V":230}},{"type":"LineString","arcs":[363],"id":922,"properties":{"V":230}},{"type":"LineString","arcs":[364],"id":923,"properties":{"V":230}},{"type":"LineString","arcs":[365],"id":930,"properties":{"V":230}},{"type":"LineString","arcs":[366],"id":931,"properties":{"V":230}},{"type":"LineString","arcs":[367],"id":933,"properties":{"V":230}},{"type":"LineString","arcs":[368],"id":934,"properties":{"V":230}},{"type":"LineString","arcs":[369],"id":936,"properties":{"V":230}},{"type":"LineString","arcs":[370],"id":937,"properties":{"V":230}},{"type":"LineString","arcs":[371],"id":938,"properties":{"V":230}},{"type":"LineString","arcs":[372],"id":959,"properties":{"V":230}},{"type":"LineString","arcs":[373],"id":960,"properties":{"V":230}},{"type":"LineString","arcs":[374],"id":961,"properties":{"V":230}},{"type":"LineString","arcs":[375],"id":962,"properties":{"V":230}},{"type":"LineString","arcs":[376],"id":1001,"properties":{"V":230}},{"type":"LineString","arcs":[377],"id":1003,"properties":{"V":230}},{"type":"LineString","arcs":[378],"id":1004,"properties":{"V":230}},{"type":"LineString","arcs":[379],"id":1005,"properties":{"V":230}},{"type":"LineString","arcs":[380],"id":1006,"properties":{"V":230}},{"type":"LineString","arcs":[381],"id":1007,"properties":{"V":230}},{"type":"LineString","arcs":[382],"id":1008,"properties":{"V":230}},{"type":"LineString","arcs":[383],"id":1009,"properties":{"V":230}},{"type":"LineString","arcs":[384],"id":1010,"properties":{"V":230}},{"type":"LineString","arcs":[385],"id":1011,"properties":{"V":230}},{"type":"LineString","arcs":[386],"id":1013,"properties":{"V":230}},{"type":"LineString","arcs":[387],"id":1014,"properties":{"V":230}},{"type":"LineString","arcs":[388],"id":1015,"properties":{"V":230}},{"type":"LineString","arcs":[389,390],"id":1016,"properties":{"V":230}},{"type":"LineString","arcs":[391],"id":1017,"properties":{"V":230}},{"type":"LineString","arcs":[392],"id":1018,"properties":{"V":230}},{"type":"LineString","arcs":[393],"id":1019,"properties":{"V":230}},{"type":"LineString","arcs":[394],"id":1021,"properties":{"V":230}},{"type":"LineString","arcs":[395],"id":1022,"properties":{"V":230}},{"type":"LineString","arcs":[396],"id":1023,"properties":{"V":230}},{"type":"LineString","arcs":[397],"id":1024,"properties":{"V":230}},{"type":"LineString","arcs":[398],"id":1025,"properties":{"V":230}},{"type":"LineString","arcs":[399],"id":1026,"properties":{"V":230}},{"type":"LineString","arcs":[400],"id":1027,"properties":{"V":230}},{"type":"LineString","arcs":[401],"id":1028,"properties":{"V":230}},{"type":"LineString","arcs":[402],"id":1031,"properties":{"V":230}},{"type":"LineString","arcs":[403],"id":1032,"properties":{"V":230}},{"type":"LineString","arcs":[404],"id":1033,"properties":{"V":230}},{"type":"LineString","arcs":[405],"id":1034,"properties":{"V":230}},{"type":"LineString","arcs":[406],"id":1035,"properties":{"V":230}},{"type":"LineString","arcs":[407],"id":1055,"properties":{"V":230}},{"type":"LineString","arcs":[408],"id":1056,"properties":{"V":230}},{"type":"LineString","arcs":[409],"id":1057,"properties":{"V":230}},{"type":"LineString","arcs":[410],"id":1058,"properties":{"V":230}},{"type":"LineString","arcs":[411],"id":1059,"properties":{"V":230}},{"type":"LineString","arcs":[412],"id":1060,"properties":{"V":230}},{"type":"LineString","arcs":[413],"id":1061,"properties":{"V":230}},{"type":"LineString","arcs":[414],"id":1062,"properties":{"V":230}},{"type":"LineString","arcs":[415],"id":1067,"properties":{"V":230}},{"type":"LineString","arcs":[416],"id":1068,"properties":{"V":230}},{"type":"LineString","arcs":[417],"id":1079,"properties":{"V":500}},{"type":"LineString","arcs":[418],"id":1082,"properties":{"V":230}},{"type":"LineString","arcs":[419],"id":1083,"properties":{"V":230}},{"type":"LineString","arcs":[420],"id":1084,"properties":{"V":230}},{"type":"LineString","arcs":[421],"id":1085,"properties":{"V":230}},{"type":"LineString","arcs":[422,423],"id":1091,"properties":{"V":230}},{"type":"LineString","arcs":[424,425],"id":1092,"properties":{"V":230}},{"type":"LineString","arcs":[426],"id":1093,"properties":{"V":230}},{"type":"LineString","arcs":[427],"id":1094,"properties":{"V":230}},{"type":"LineString","arcs":[428],"id":1096,"properties":{"V":230}},{"type":"LineString","arcs":[429],"id":1101,"properties":{"V":230}},{"type":"LineString","arcs":[430],"id":1108,"properties":{"V":230}},{"type":"LineString","arcs":[431],"id":1112,"properties":{"V":500}},{"type":"LineString","arcs":[432],"id":1113,"properties":{"V":230}},{"type":"LineString","arcs":[433],"id":1114,"properties":{"V":230}},{"type":"LineString","arcs":[434],"id":1181,"properties":{"V":230}},{"type":"MultiLineString","arcs":[[435],[436,437]],"id":1197,"properties":{"V":230}},{"type":"LineString","arcs":[438],"id":1198,"properties":{"V":230}},{"type":"LineString","arcs":[439],"id":1199,"properties":{"V":230}},{"type":"LineString","arcs":[440],"id":1200,"properties":{"V":230}},{"type":"LineString","arcs":[441],"id":1201,"properties":{"V":230}},{"type":"LineString","arcs":[442],"id":1202,"properties":{"V":230}},{"type":"LineString","arcs":[443],"id":1203,"properties":{"V":230}},{"type":"LineString","arcs":[444],"id":1207,"properties":{"V":230}},{"type":"LineString","arcs":[445],"id":1222,"properties":{"V":230}},{"type":"LineString","arcs":[446],"id":1245,"properties":{"V":230}},{"type":"LineString","arcs":[447],"id":1246,"properties":{"V":230}},{"type":"LineString","arcs":[448],"id":1247,"properties":{"V":230}},{"type":"LineString","arcs":[449],"id":1250,"properties":{"V":230}},{"type":"LineString","arcs":[450],"id":1251,"properties":{"V":230}},{"type":"LineString","arcs":[451],"id":1252,"properties":{"V":230}},{"type":"LineString","arcs":[452],"id":1253,"properties":{"V":230}},{"type":"LineString","arcs":[453],"id":1254,"properties":{"V":230}},{"type":"LineString","arcs":[454],"id":1255,"properties":{"V":230}},{"type":"LineString","arcs":[455],"id":1256,"properties":{"V":230}},{"type":"LineString","arcs":[456],"id":1257,"properties":{"V":230}},{"type":"LineString","arcs":[457],"id":1261,"properties":{"V":230}},{"type":"LineString","arcs":[458],"id":1262,"properties":{"V":230}},{"type":"LineString","arcs":[459],"id":1263,"properties":{"V":230}},{"type":"LineString","arcs":[460],"id":1264,"properties":{"V":230}},{"type":"LineString","arcs":[461],"id":1265,"properties":{"V":230}},{"type":"LineString","arcs":[462],"id":1283,"properties":{"V":230}},{"type":"LineString","arcs":[463],"id":1284,"properties":{"V":230}},{"type":"LineString","arcs":[464],"id":1306,"properties":{"V":230}},{"type":"LineString","arcs":[465],"id":1307,"properties":{"V":230}},{"type":"LineString","arcs":[466],"id":1308,"properties":{"V":230}},{"type":"LineString","arcs":[467],"id":1309,"properties":{"V":230}},{"type":"LineString","arcs":[468],"id":1413,"properties":{"V":230}},{"type":"LineString","arcs":[469],"id":1414,"properties":{"V":230}},{"type":"LineString","arcs":[470,471,472],"id":1415,"properties":{"V":230}},{"type":"LineString","arcs":[473],"id":1417,"properties":{"V":230}},{"type":"LineString","arcs":[474],"id":1418,"properties":{"V":230}},{"type":"LineString","arcs":[475],"id":1419,"properties":{"V":230}},{"type":"LineString","arcs":[476],"id":1420,"properties":{"V":230}},{"type":"LineString","arcs":[477,478],"id":1421,"properties":{"V":230}},{"type":"LineString","arcs":[479],"id":1422,"properties":{"V":230}},{"type":"LineString","arcs":[480],"id":1423,"properties":{"V":230}},{"type":"LineString","arcs":[481],"id":1424,"properties":{"V":230}},{"type":"LineString","arcs":[482],"id":1425,"properties":{"V":230}},{"type":"LineString","arcs":[483],"id":1426,"properties":{"V":230}},{"type":"LineString","arcs":[484],"id":1427,"properties":{"V":230}},{"type":"LineString","arcs":[485],"id":1428,"properties":{"V":230}},{"type":"LineString","arcs":[486],"id":1429,"properties":{"V":230}},{"type":"LineString","arcs":[487],"id":1430,"properties":{"V":230}},{"type":"LineString","arcs":[-479,488],"id":1431,"properties":{"V":230}},{"type":"LineString","arcs":[489],"id":1432,"properties":{"V":230}},{"type":"LineString","arcs":[490],"id":1433,"properties":{"V":230}},{"type":"LineString","arcs":[491],"id":1434,"properties":{"V":230}},{"type":"LineString","arcs":[492],"id":1435,"properties":{"V":230}},{"type":"LineString","arcs":[493],"id":1436,"properties":{"V":230}},{"type":"LineString","arcs":[494],"id":1437,"properties":{"V":230}},{"type":"LineString","arcs":[495],"id":1438,"properties":{"V":230}},{"type":"LineString","arcs":[496],"id":1439,"properties":{"V":230}},{"type":"LineString","arcs":[497],"id":1440,"properties":{"V":230}},{"type":"LineString","arcs":[498],"id":1441,"properties":{"V":230}},{"type":"LineString","arcs":[499],"id":1442,"properties":{"V":230}},{"type":"LineString","arcs":[500],"id":1443,"properties":{"V":230}},{"type":"LineString","arcs":[501],"id":1444,"properties":{"V":230}},{"type":"LineString","arcs":[502],"id":1445,"properties":{"V":230}},{"type":"LineString","arcs":[503],"id":1446,"properties":{"V":230}},{"type":"LineString","arcs":[504],"id":1447,"properties":{"V":230}},{"type":"LineString","arcs":[505],"id":1448,"properties":{"V":230}},{"type":"LineString","arcs":[506],"id":1449,"properties":{"V":230}},{"type":"LineString","arcs":[507],"id":1450,"properties":{"V":230}},{"type":"LineString","arcs":[508],"id":1451,"properties":{"V":230}},{"type":"LineString","arcs":[509],"id":1452,"properties":{"V":230}},{"type":"LineString","arcs":[510],"id":1453,"properties":{"V":230}},{"type":"LineString","arcs":[511],"id":1454,"properties":{"V":230}},{"type":"LineString","arcs":[512],"id":1455,"properties":{"V":230}},{"type":"LineString","arcs":[513],"id":1456,"properties":{"V":230}},{"type":"LineString","arcs":[514],"id":1457,"properties":{"V":230}},{"type":"LineString","arcs":[515],"id":1458,"properties":{"V":230}},{"type":"LineString","arcs":[516],"id":1459,"properties":{"V":230}},{"type":"LineString","arcs":[517],"id":1460,"properties":{"V":230}},{"type":"LineString","arcs":[518],"id":1461,"properties":{"V":230}},{"type":"LineString","arcs":[519],"id":1462,"properties":{"V":230}},{"type":"LineString","arcs":[520],"id":1552,"properties":{"V":230}},{"type":"MultiLineString","arcs":[[521],[522]],"id":1553,"properties":{"V":230}},{"type":"LineString","arcs":[523],"id":1554,"properties":{"V":345}},{"type":"LineString","arcs":[524],"id":1561,"properties":{"V":230}},{"type":"LineString","arcs":[525],"id":1562,"properties":{"V":230}},{"type":"LineString","arcs":[526],"id":1563,"properties":{"V":230}},{"type":"LineString","arcs":[527],"id":1564,"properties":{"V":230}},{"type":"LineString","arcs":[528],"id":1565,"properties":{"V":230}},{"type":"LineString","arcs":[529],"id":1566,"properties":{"V":230}},{"type":"LineString","arcs":[530],"id":1567,"properties":{"V":230}},{"type":"LineString","arcs":[531],"id":1568,"properties":{"V":230}},{"type":"LineString","arcs":[532],"id":1569,"properties":{"V":230}},{"type":"LineString","arcs":[533],"id":1570,"properties":{"V":230}},{"type":"LineString","arcs":[534],"id":1571,"properties":{"V":230}},{"type":"LineString","arcs":[535],"id":1572,"properties":{"V":230}},{"type":"LineString","arcs":[536],"id":1573,"properties":{"V":230}},{"type":"LineString","arcs":[537],"id":1576,"properties":{"V":230}},{"type":"LineString","arcs":[538],"id":1577,"properties":{"V":230}},{"type":"LineString","arcs":[539],"id":1578,"properties":{"V":230}},{"type":"LineString","arcs":[540],"id":1579,"properties":{"V":230}},{"type":"LineString","arcs":[541],"id":1580,"properties":{"V":230}},{"type":"LineString","arcs":[542],"id":1581,"properties":{"V":230}},{"type":"LineString","arcs":[543],"id":1582,"properties":{"V":230}},{"type":"LineString","arcs":[544],"id":1583,"properties":{"V":230}},{"type":"LineString","arcs":[545],"id":1584,"properties":{"V":230}},{"type":"LineString","arcs":[546],"id":1585,"properties":{"V":230}},{"type":"LineString","arcs":[547],"id":1586,"properties":{"V":230}},{"type":"LineString","arcs":[548],"id":1591,"properties":{"V":230}},{"type":"LineString","arcs":[549],"id":1592,"properties":{"V":230}},{"type":"LineString","arcs":[550],"id":1593,"properties":{"V":230}},{"type":"LineString","arcs":[551],"id":1594,"properties":{"V":230}},{"type":"LineString","arcs":[552],"id":1595,"properties":{"V":230}},{"type":"LineString","arcs":[553],"id":1596,"properties":{"V":230}},{"type":"LineString","arcs":[554],"id":1598,"properties":{"V":230}},{"type":"LineString","arcs":[555],"id":1599,"properties":{"V":230}},{"type":"LineString","arcs":[556],"id":1600,"properties":{"V":230}},{"type":"LineString","arcs":[557],"id":1601,"properties":{"V":230}},{"type":"LineString","arcs":[558],"id":1602,"properties":{"V":230}},{"type":"LineString","arcs":[559],"id":1603,"properties":{"V":230}},{"type":"LineString","arcs":[560],"id":1604,"properties":{"V":230}},{"type":"LineString","arcs":[561],"id":1605,"properties":{"V":230}},{"type":"LineString","arcs":[562],"id":1606,"properties":{"V":230}},{"type":"LineString","arcs":[563],"id":1607,"properties":{"V":230}},{"type":"LineString","arcs":[564],"id":1608,"properties":{"V":230}},{"type":"LineString","arcs":[565],"id":1609,"properties":{"V":230}},{"type":"LineString","arcs":[566],"id":1610,"properties":{"V":230}},{"type":"LineString","arcs":[567],"id":1611,"properties":{"V":230}},{"type":"LineString","arcs":[568],"id":1612,"properties":{"V":230}},{"type":"LineString","arcs":[569],"id":1613,"properties":{"V":230}},{"type":"LineString","arcs":[570],"id":1617,"properties":{"V":230}},{"type":"LineString","arcs":[571],"id":1618,"properties":{"V":230}},{"type":"LineString","arcs":[572],"id":1619,"properties":{"V":230}},{"type":"LineString","arcs":[573],"id":1620,"properties":{"V":230}},{"type":"LineString","arcs":[574],"id":1621,"properties":{"V":230}},{"type":"LineString","arcs":[575],"id":1622,"properties":{"V":230}},{"type":"LineString","arcs":[576],"id":1623,"properties":{"V":230}},{"type":"LineString","arcs":[577],"id":1624,"properties":{"V":230}},{"type":"LineString","arcs":[578],"id":1626,"properties":{"V":230}},{"type":"LineString","arcs":[579],"id":1627,"properties":{"V":230}},{"type":"LineString","arcs":[580],"id":1628,"properties":{"V":230}},{"type":"LineString","arcs":[581],"id":1629,"properties":{"V":230}},{"type":"LineString","arcs":[582],"id":1630,"properties":{"V":230}},{"type":"LineString","arcs":[583],"id":1631,"properties":{"V":230}},{"type":"LineString","arcs":[584],"id":1632,"properties":{"V":230}},{"type":"LineString","arcs":[585],"id":1633,"properties":{"V":230}},{"type":"LineString","arcs":[586],"id":1634,"properties":{"V":230}},{"type":"LineString","arcs":[587],"id":1635,"properties":{"V":230}},{"type":"LineString","arcs":[588],"id":1636,"properties":{"V":230}},{"type":"LineString","arcs":[589],"id":1637,"properties":{"V":230}},{"type":"LineString","arcs":[590],"id":1638,"properties":{"V":230}},{"type":"LineString","arcs":[591],"id":1639,"properties":{"V":230}},{"type":"LineString","arcs":[592],"id":1640,"properties":{"V":230}},{"type":"LineString","arcs":[593],"id":1641,"properties":{"V":230}},{"type":"LineString","arcs":[594],"id":1642,"properties":{"V":230}},{"type":"LineString","arcs":[595],"id":1643,"properties":{"V":230}},{"type":"LineString","arcs":[596],"id":1644,"properties":{"V":230}},{"type":"LineString","arcs":[597],"id":1645,"properties":{"V":230}},{"type":"LineString","arcs":[598],"id":1646,"properties":{"V":230}},{"type":"LineString","arcs":[599],"id":1648,"properties":{"V":230}},{"type":"LineString","arcs":[600],"id":1649,"properties":{"V":230}},{"type":"LineString","arcs":[601],"id":1650,"properties":{"V":230}},{"type":"LineString","arcs":[602],"id":1653,"properties":{"V":230}},{"type":"LineString","arcs":[603],"id":1656,"properties":{"V":345}},{"type":"LineString","arcs":[604],"id":1657,"properties":{"V":230}},{"type":"LineString","arcs":[605],"id":1658,"properties":{"V":230}},{"type":"LineString","arcs":[606],"id":1660,"properties":{"V":230}},{"type":"LineString","arcs":[607],"id":1661,"properties":{"V":230}},{"type":"LineString","arcs":[608],"id":1662,"properties":{"V":230}},{"type":"LineString","arcs":[609],"id":1663,"properties":{"V":230}},{"type":"LineString","arcs":[610],"id":1664,"properties":{"V":230}},{"type":"LineString","arcs":[611,612],"id":1665,"properties":{"V":230}},{"type":"LineString","arcs":[-613,613],"id":1666,"properties":{"V":230}},{"type":"LineString","arcs":[614],"id":1667,"properties":{"V":230}},{"type":"LineString","arcs":[615],"id":1668,"properties":{"V":230}},{"type":"LineString","arcs":[616],"id":1669,"properties":{"V":230}},{"type":"LineString","arcs":[617],"id":1670,"properties":{"V":230}},{"type":"LineString","arcs":[618],"id":1671,"properties":{"V":230}},{"type":"LineString","arcs":[619],"id":1673,"properties":{"V":230}},{"type":"LineString","arcs":[620],"id":1674,"properties":{"V":230}},{"type":"LineString","arcs":[621],"id":1678,"properties":{"V":230}},{"type":"LineString","arcs":[622],"id":1679,"properties":{"V":345}},{"type":"LineString","arcs":[623],"id":1680,"properties":{"V":230}},{"type":"LineString","arcs":[624],"id":1681,"properties":{"V":230}},{"type":"LineString","arcs":[625],"id":1685,"properties":{"V":230}},{"type":"LineString","arcs":[626],"id":1686,"properties":{"V":230}},{"type":"LineString","arcs":[627],"id":1688,"properties":{"V":230}},{"type":"LineString","arcs":[628],"id":1689,"properties":{"V":230}},{"type":"LineString","arcs":[629],"id":1690,"properties":{"V":230}},{"type":"LineString","arcs":[630],"id":1691,"properties":{"V":230}},{"type":"LineString","arcs":[631],"id":1692,"properties":{"V":230}},{"type":"LineString","arcs":[632],"id":1693,"properties":{"V":230}},{"type":"LineString","arcs":[633],"id":1694,"properties":{"V":230}},{"type":"LineString","arcs":[634],"id":1698,"properties":{"V":230}},{"type":"LineString","arcs":[635],"id":1711,"properties":{"V":230}},{"type":"LineString","arcs":[636],"id":1714,"properties":{"V":230}},{"type":"LineString","arcs":[637],"id":1716,"properties":{"V":230}},{"type":"LineString","arcs":[638],"id":1717,"properties":{"V":230}},{"type":"LineString","arcs":[639],"id":1718,"properties":{"V":345}},{"type":"LineString","arcs":[640],"id":1720,"properties":{"V":230}},{"type":"LineString","arcs":[641],"id":1721,"properties":{"V":230}},{"type":"LineString","arcs":[642],"id":1722,"properties":{"V":230}},{"type":"LineString","arcs":[643],"id":1724,"properties":{"V":230}},{"type":"LineString","arcs":[644],"id":1725,"properties":{"V":230}},{"type":"LineString","arcs":[645],"id":1750,"properties":{"V":230}},{"type":"LineString","arcs":[646],"id":1751,"properties":{"V":230}},{"type":"LineString","arcs":[647],"id":1752,"properties":{"V":230}},{"type":"LineString","arcs":[648],"id":1753,"properties":{"V":230}},{"type":"LineString","arcs":[649],"id":1754,"properties":{"V":230}},{"type":"LineString","arcs":[650],"id":1755,"properties":{"V":230}},{"type":"LineString","arcs":[651],"id":1756,"properties":{"V":230}},{"type":"LineString","arcs":[652],"id":1757,"properties":{"V":230}},{"type":"LineString","arcs":[653],"id":1758,"properties":{"V":230}},{"type":"LineString","arcs":[654],"id":1759,"properties":{"V":230}},{"type":"LineString","arcs":[655],"id":1775,"properties":{"V":230}},{"type":"LineString","arcs":[656],"id":1814,"properties":{"V":230}},{"type":"LineString","arcs":[657],"id":1815,"properties":{"V":230}},{"type":"LineString","arcs":[658],"id":1816,"properties":{"V":230}},{"type":"LineString","arcs":[659],"id":1826,"properties":{"V":230}},{"type":"LineString","arcs":[660],"id":1830,"properties":{"V":230}},{"type":"LineString","arcs":[661],"id":1841,"properties":{"V":230}},{"type":"LineString","arcs":[662],"id":1842,"properties":{"V":230}},{"type":"LineString","arcs":[663],"id":1843,"properties":{"V":230}},{"type":"LineString","arcs":[664],"id":1844,"properties":{"V":230}},{"type":"LineString","arcs":[665],"id":1845,"properties":{"V":230}},{"type":"LineString","arcs":[666],"id":1850,"properties":{"V":230}},{"type":"LineString","arcs":[667],"id":1852,"properties":{"V":230}},{"type":"LineString","arcs":[668],"id":1853,"properties":{"V":230}},{"type":"LineString","arcs":[669],"id":1856,"properties":{"V":230}},{"type":"LineString","arcs":[670],"id":1863,"properties":{"V":230}},{"type":"LineString","arcs":[671],"id":1866,"properties":{"V":230}},{"type":"LineString","arcs":[672],"id":1876,"properties":{"V":230}},{"type":"LineString","arcs":[673],"id":1877,"properties":{"V":230}},{"type":"LineString","arcs":[674],"id":1878,"properties":{"V":230}},{"type":"LineString","arcs":[675],"id":1879,"properties":{"V":230}},{"type":"LineString","arcs":[676],"id":1880,"properties":{"V":230}},{"type":"LineString","arcs":[677],"id":1881,"properties":{"V":230}},{"type":"LineString","arcs":[678],"id":1882,"properties":{"V":230}},{"type":"LineString","arcs":[679],"id":1884,"properties":{"V":230}},{"type":"LineString","arcs":[680],"id":1887,"properties":{"V":230}},{"type":"LineString","arcs":[681],"id":1890,"properties":{"V":230}},{"type":"LineString","arcs":[682],"id":1891,"properties":{"V":230}},{"type":"LineString","arcs":[683],"id":1892,"properties":{"V":230}},{"type":"LineString","arcs":[684],"id":1893,"properties":{"V":230}},{"type":"LineString","arcs":[685],"id":1895,"properties":{"V":230}},{"type":"LineString","arcs":[686],"id":1896,"properties":{"V":230}},{"type":"LineString","arcs":[687],"id":1903,"properties":{"V":230}},{"type":"LineString","arcs":[688],"id":1904,"properties":{"V":230}},{"type":"LineString","arcs":[689],"id":1905,"properties":{"V":230}},{"type":"LineString","arcs":[690],"id":1908,"properties":{"V":230}},{"type":"LineString","arcs":[691],"id":1910,"properties":{"V":230}},{"type":"LineString","arcs":[692],"id":1911,"properties":{"V":230}},{"type":"LineString","arcs":[693],"id":1912,"properties":{"V":230}},{"type":"LineString","arcs":[694],"id":1915,"properties":{"V":230}},{"type":"LineString","arcs":[695],"id":1924,"properties":{"V":230}},{"type":"LineString","arcs":[696],"id":1925,"properties":{"V":230}},{"type":"LineString","arcs":[697],"id":1926,"properties":{"V":230}},{"type":"LineString","arcs":[698],"id":1928,"properties":{"V":230}},{"type":"LineString","arcs":[699],"id":1929,"properties":{"V":230}},{"type":"LineString","arcs":[700],"id":1930,"properties":{"V":230}},{"type":"LineString","arcs":[701],"id":1931,"properties":{"V":230}},{"type":"LineString","arcs":[702],"id":1932,"properties":{"V":230}},{"type":"LineString","arcs":[703],"id":1933,"properties":{"V":230}},{"type":"LineString","arcs":[704],"id":1934,"properties":{"V":230}},{"type":"LineString","arcs":[705],"id":1936,"properties":{"V":230}},{"type":"LineString","arcs":[706],"id":1938,"properties":{"V":230}},{"type":"LineString","arcs":[707],"id":1939,"properties":{"V":230}},{"type":"LineString","arcs":[708],"id":1940,"properties":{"V":230}},{"type":"LineString","arcs":[709],"id":1941,"properties":{"V":230}},{"type":"LineString","arcs":[710],"id":1942,"properties":{"V":230}},{"type":"LineString","arcs":[711],"id":1943,"properties":{"V":230}},{"type":"LineString","arcs":[712],"id":1944,"properties":{"V":230}},{"type":"LineString","arcs":[713],"id":1945,"properties":{"V":230}},{"type":"LineString","arcs":[714],"id":1946,"properties":{"V":230}},{"type":"LineString","arcs":[715],"id":1947,"properties":{"V":230}},{"type":"LineString","arcs":[716],"id":1948,"properties":{"V":230}},{"type":"LineString","arcs":[717],"id":1949,"properties":{"V":230}},{"type":"LineString","arcs":[718],"id":1950,"properties":{"V":230}},{"type":"LineString","arcs":[719],"id":1951,"properties":{"V":230}},{"type":"LineString","arcs":[720],"id":1952,"properties":{"V":230}},{"type":"LineString","arcs":[721],"id":1953,"properties":{"V":230}},{"type":"LineString","arcs":[722],"id":1954,"properties":{"V":230}},{"type":"LineString","arcs":[723],"id":1955,"properties":{"V":230}},{"type":"LineString","arcs":[724],"id":1956,"properties":{"V":230}},{"type":"LineString","arcs":[725],"id":1961,"properties":{"V":230}},{"type":"LineString","arcs":[726],"id":1973,"properties":{"V":230}},{"type":"LineString","arcs":[727],"id":1974,"properties":{"V":230}},{"type":"LineString","arcs":[728],"id":1975,"properties":{"V":230}},{"type":"LineString","arcs":[729],"id":1976,"properties":{"V":230}},{"type":"LineString","arcs":[730],"id":1977,"properties":{"V":230}},{"type":"LineString","arcs":[731],"id":1978,"properties":{"V":230}},{"type":"LineString","arcs":[732],"id":1985,"properties":{"V":230}},{"type":"LineString","arcs":[733],"id":1986,"properties":{"V":230}},{"type":"LineString","arcs":[734],"id":1987,"properties":{"V":230}},{"type":"LineString","arcs":[735],"id":1988,"properties":{"V":230}},{"type":"LineString","arcs":[736],"id":1989,"properties":{"V":230}},{"type":"LineString","arcs":[737],"id":2023,"properties":{"V":230}},{"type":"LineString","arcs":[738],"id":2047,"properties":{"V":230}},{"type":"LineString","arcs":[739],"id":2086,"properties":{"V":230}},{"type":"LineString","arcs":[740],"id":2087,"properties":{"V":230}},{"type":"LineString","arcs":[741],"id":2091,"properties":{"V":230}},{"type":"LineString","arcs":[742],"id":2092,"properties":{"V":230}},{"type":"LineString","arcs":[743],"id":2093,"properties":{"V":230}},{"type":"LineString","arcs":[744],"id":2094,"properties":{"V":230}},{"type":"LineString","arcs":[745],"id":2095,"properties":{"V":230}},{"type":"LineString","arcs":[746],"id":2096,"properties":{"V":230}},{"type":"LineString","arcs":[747],"id":2097,"properties":{"V":230}},{"type":"LineString","arcs":[748],"id":2102,"properties":{"V":230}},{"type":"LineString","arcs":[749],"id":2103,"properties":{"V":230}},{"type":"LineString","arcs":[750],"id":2104,"properties":{"V":230}},{"type":"LineString","arcs":[751],"id":2123,"properties":{"V":230}},{"type":"LineString","arcs":[752],"id":2126,"properties":{"V":230}},{"type":"LineString","arcs":[753],"id":2127,"properties":{"V":230}},{"type":"LineString","arcs":[754],"id":2128,"properties":{"V":230}},{"type":"LineString","arcs":[755],"id":2137,"properties":{"V":230}},{"type":"LineString","arcs":[756],"id":2138,"properties":{"V":230}},{"type":"LineString","arcs":[757],"id":2139,"properties":{"V":230}},{"type":"LineString","arcs":[758],"id":2151,"properties":{"V":230}},{"type":"LineString","arcs":[759],"id":2152,"properties":{"V":230}},{"type":"LineString","arcs":[760],"id":2153,"properties":{"V":230}},{"type":"LineString","arcs":[761],"id":2154,"properties":{"V":230}},{"type":"LineString","arcs":[762],"id":2155,"properties":{"V":230}},{"type":"LineString","arcs":[763],"id":2156,"properties":{"V":230}},{"type":"LineString","arcs":[764],"id":2159,"properties":{"V":230}},{"type":"LineString","arcs":[765],"id":2164,"properties":{"V":230}},{"type":"LineString","arcs":[766],"id":2170,"properties":{"V":230}},{"type":"LineString","arcs":[767],"id":2174,"properties":{"V":230}},{"type":"LineString","arcs":[768],"id":2180,"properties":{"V":230}},{"type":"LineString","arcs":[769],"id":2189,"properties":{"V":230}},{"type":"LineString","arcs":[770],"id":2190,"properties":{"V":230}},{"type":"LineString","arcs":[771],"id":2191,"properties":{"V":230}},{"type":"LineString","arcs":[772],"id":2192,"properties":{"V":230}},{"type":"LineString","arcs":[773],"id":2193,"properties":{"V":230}},{"type":"LineString","arcs":[774],"id":2197,"properties":{"V":230}},{"type":"LineString","arcs":[775],"id":2198,"properties":{"V":230}},{"type":"LineString","arcs":[776],"id":2199,"properties":{"V":230}},{"type":"LineString","arcs":[777],"id":2200,"properties":{"V":230}},{"type":"LineString","arcs":[778],"id":2201,"properties":{"V":230}},{"type":"LineString","arcs":[779],"id":2202,"properties":{"V":230}},{"type":"LineString","arcs":[780],"id":2203,"properties":{"V":230}},{"type":"LineString","arcs":[781],"id":2204,"properties":{"V":230}},{"type":"LineString","arcs":[782],"id":2205,"properties":{"V":230}},{"type":"LineString","arcs":[783],"id":2206,"properties":{"V":230}},{"type":"LineString","arcs":[784],"id":2207,"properties":{"V":230}},{"type":"LineString","arcs":[785],"id":2208,"properties":{"V":230}},{"type":"LineString","arcs":[786],"id":2209,"properties":{"V":230}},{"type":"LineString","arcs":[787],"id":2211,"properties":{"V":230}},{"type":"LineString","arcs":[788],"id":2212,"properties":{"V":230}},{"type":"LineString","arcs":[789],"id":2213,"properties":{"V":230}},{"type":"LineString","arcs":[790],"id":2215,"properties":{"V":230}},{"type":"LineString","arcs":[791],"id":2216,"properties":{"V":230}},{"type":"LineString","arcs":[792],"id":2217,"properties":{"V":230}},{"type":"LineString","arcs":[793],"id":2218,"properties":{"V":230}},{"type":"LineString","arcs":[794],"id":2219,"properties":{"V":230}},{"type":"LineString","arcs":[795],"id":2220,"properties":{"V":230}},{"type":"LineString","arcs":[796],"id":2221,"properties":{"V":230}},{"type":"LineString","arcs":[797],"id":2222,"properties":{"V":230}},{"type":"LineString","arcs":[798],"id":2223,"properties":{"V":230}},{"type":"LineString","arcs":[799],"id":2224,"properties":{"V":230}},{"type":"LineString","arcs":[800],"id":2227,"properties":{"V":230}},{"type":"LineString","arcs":[801],"id":2231,"properties":{"V":230}},{"type":"LineString","arcs":[802],"id":2232,"properties":{"V":230}},{"type":"LineString","arcs":[803],"id":2233,"properties":{"V":230}},{"type":"LineString","arcs":[804],"id":2234,"properties":{"V":230}},{"type":"LineString","arcs":[805],"id":2239,"properties":{"V":230}},{"type":"LineString","arcs":[806],"id":2240,"properties":{"V":230}},{"type":"LineString","arcs":[807],"id":2248,"properties":{"V":230}},{"type":"LineString","arcs":[808],"id":2249,"properties":{"V":230}},{"type":"LineString","arcs":[809],"id":2250,"properties":{"V":230}},{"type":"LineString","arcs":[810],"id":2251,"properties":{"V":230}},{"type":"LineString","arcs":[811],"id":2252,"properties":{"V":230}},{"type":"LineString","arcs":[812],"id":2253,"properties":{"V":230}},{"type":"LineString","arcs":[813],"id":2254,"properties":{"V":230}},{"type":"LineString","arcs":[814],"id":2255,"properties":{"V":230}},{"type":"LineString","arcs":[815],"id":2257,"properties":{"V":230}},{"type":"LineString","arcs":[816],"id":2265,"properties":{"V":230}},{"type":"LineString","arcs":[817],"id":2271,"properties":{"V":230}},{"type":"LineString","arcs":[818],"id":2272,"properties":{"V":230}},{"type":"LineString","arcs":[819],"id":2273,"properties":{"V":230}},{"type":"LineString","arcs":[820],"id":2274,"properties":{"V":230}},{"type":"LineString","arcs":[821],"id":2275,"properties":{"V":230}},{"type":"LineString","arcs":[822],"id":2276,"properties":{"V":230}},{"type":"LineString","arcs":[823],"id":2277,"properties":{"V":230}},{"type":"LineString","arcs":[824],"id":2278,"properties":{"V":230}},{"type":"LineString","arcs":[825],"id":2279,"properties":{"V":230}},{"type":"LineString","arcs":[826],"id":2280,"properties":{"V":230}},{"type":"LineString","arcs":[827],"id":2286,"properties":{"V":230}},{"type":"LineString","arcs":[828],"id":2287,"properties":{"V":230}},{"type":"LineString","arcs":[829],"id":2353,"properties":{"V":230}},{"type":"LineString","arcs":[830],"id":2378,"properties":{"V":230}},{"type":"LineString","arcs":[831],"id":2379,"properties":{"V":230}},{"type":"LineString","arcs":[832],"id":2382,"properties":{"V":230}},{"type":"LineString","arcs":[833],"id":2385,"properties":{"V":230}},{"type":"LineString","arcs":[834],"id":2390,"properties":{"V":230}},{"type":"LineString","arcs":[835],"id":2442,"properties":{"V":230}},{"type":"LineString","arcs":[836],"id":2443,"properties":{"V":230}},{"type":"LineString","arcs":[837],"id":2452,"properties":{"V":230}},{"type":"LineString","arcs":[838],"id":2465,"properties":{"V":230}},{"type":"LineString","arcs":[462],"id":2535,"properties":{"V":230}},{"type":"LineString","arcs":[463],"id":2536,"properties":{"V":230}},{"type":"LineString","arcs":[839],"id":2635,"properties":{"V":230}},{"type":"LineString","arcs":[840],"id":2636,"properties":{"V":230}},{"type":"LineString","arcs":[841],"id":2638,"properties":{"V":230}},{"type":"LineString","arcs":[842],"id":2639,"properties":{"V":230}},{"type":"LineString","arcs":[843],"id":2642,"properties":{"V":230}},{"type":"LineString","arcs":[844],"id":2643,"properties":{"V":230}},{"type":"LineString","arcs":[845],"id":2644,"properties":{"V":230}},{"type":"LineString","arcs":[846],"id":2645,"properties":{"V":230}},{"type":"LineString","arcs":[847],"id":2646,"properties":{"V":230}},{"type":"LineString","arcs":[848],"id":2653,"properties":{"V":230}},{"type":"LineString","arcs":[849],"id":2658,"properties":{"V":230}},{"type":"LineString","arcs":[850],"id":2659,"properties":{"V":230}},{"type":"LineString","arcs":[851],"id":2660,"properties":{"V":230}},{"type":"LineString","arcs":[852],"id":2661,"properties":{"V":230}},{"type":"LineString","arcs":[853],"id":2663,"properties":{"V":230}},{"type":"LineString","arcs":[854],"id":2664,"properties":{"V":230}},{"type":"LineString","arcs":[855],"id":2665,"properties":{"V":230}},{"type":"LineString","arcs":[856],"id":2666,"properties":{"V":230}},{"type":"LineString","arcs":[857],"id":2670,"properties":{"V":230}},{"type":"LineString","arcs":[858],"id":2671,"properties":{"V":230}},{"type":"LineString","arcs":[859],"id":2672,"properties":{"V":230}},{"type":"LineString","arcs":[860],"id":2712,"properties":{"V":230}},{"type":"LineString","arcs":[861],"id":2717,"properties":{"V":230}},{"type":"LineString","arcs":[862],"id":2718,"properties":{"V":230}},{"type":"LineString","arcs":[863],"id":2719,"properties":{"V":230}},{"type":"LineString","arcs":[864],"id":2720,"properties":{"V":230}},{"type":"LineString","arcs":[865],"id":2721,"properties":{"V":230}},{"type":"LineString","arcs":[866],"id":2814,"properties":{"V":230}},{"type":"LineString","arcs":[867],"id":2815,"properties":{"V":230}},{"type":"LineString","arcs":[868],"id":2819,"properties":{"V":230}},{"type":"LineString","arcs":[869],"id":2891,"properties":{"V":230}},{"type":"LineString","arcs":[870],"id":3100,"properties":{"V":230}},{"type":"LineString","arcs":[871],"id":3119,"properties":{"V":230}},{"type":"LineString","arcs":[872],"id":3176,"properties":{"V":230}},{"type":"LineString","arcs":[873],"id":3182,"properties":{"V":230}},{"type":"LineString","arcs":[874],"id":3188,"properties":{"V":230}},{"type":"LineString","arcs":[875],"id":3189,"properties":{"V":230}},{"type":"LineString","arcs":[876],"id":3190,"properties":{"V":230}},{"type":"LineString","arcs":[877],"id":3191,"properties":{"V":230}},{"type":"LineString","arcs":[878],"id":3192,"properties":{"V":230}},{"type":"LineString","arcs":[879],"id":3198,"properties":{"V":230}},{"type":"LineString","arcs":[880],"id":3199,"properties":{"V":230}},{"type":"LineString","arcs":[881],"id":3200,"properties":{"V":230}},{"type":"LineString","arcs":[882],"id":3201,"properties":{"V":230}},{"type":"LineString","arcs":[883],"id":3223,"properties":{"V":230}},{"type":"LineString","arcs":[884],"id":3224,"properties":{"V":230}},{"type":"LineString","arcs":[885,886],"id":3226,"properties":{"V":230}},{"type":"LineString","arcs":[887],"id":3227,"properties":{"V":230}},{"type":"LineString","arcs":[888],"id":3239,"properties":{"V":345}},{"type":"LineString","arcs":[889],"id":3243,"properties":{"V":230}},{"type":"LineString","arcs":[890],"id":3245,"properties":{"V":230}},{"type":"LineString","arcs":[891],"id":3247,"properties":{"V":230}},{"type":"LineString","arcs":[892],"id":3250,"properties":{"V":230}},{"type":"LineString","arcs":[893],"id":3251,"properties":{"V":230}},{"type":"LineString","arcs":[894],"id":3255,"properties":{"V":230}},{"type":"LineString","arcs":[895],"id":3259,"properties":{"V":230}},{"type":"LineString","arcs":[896],"id":3260,"properties":{"V":230}},{"type":"LineString","arcs":[897],"id":3261,"properties":{"V":230}},{"type":"LineString","arcs":[898],"id":3262,"properties":{"V":230}},{"type":"LineString","arcs":[899,886],"id":3263,"properties":{"V":230}},{"type":"LineString","arcs":[900],"id":3268,"properties":{"V":230}},{"type":"LineString","arcs":[901],"id":3269,"properties":{"V":230}},{"type":"LineString","arcs":[902],"id":3270,"properties":{"V":230}},{"type":"LineString","arcs":[903],"id":3271,"properties":{"V":230}},{"type":"LineString","arcs":[904],"id":3285,"properties":{"V":230}},{"type":"LineString","arcs":[905],"id":3354,"properties":{"V":230}},{"type":"LineString","arcs":[906],"id":3363,"properties":{"V":230}},{"type":"LineString","arcs":[907],"id":3367,"properties":{"V":230}},{"type":"LineString","arcs":[908],"id":3369,"properties":{"V":230}},{"type":"LineString","arcs":[909],"id":3370,"properties":{"V":230}},{"type":"LineString","arcs":[910],"id":3371,"properties":{"V":230}},{"type":"LineString","arcs":[911],"id":3398,"properties":{"V":230}},{"type":"LineString","arcs":[912],"id":3401,"properties":{"V":230}},{"type":"LineString","arcs":[913],"id":3402,"properties":{"V":230}},{"type":"LineString","arcs":[914],"id":3409,"properties":{"V":230}},{"type":"LineString","arcs":[915],"id":3410,"properties":{"V":230}},{"type":"LineString","arcs":[916],"id":3411,"properties":{"V":230}},{"type":"LineString","arcs":[917],"id":3412,"properties":{"V":230}},{"type":"LineString","arcs":[918],"id":3413,"properties":{"V":230}},{"type":"LineString","arcs":[919],"id":3414,"properties":{"V":230}},{"type":"LineString","arcs":[920],"id":3415,"properties":{"V":230}},{"type":"LineString","arcs":[921],"id":3427,"properties":{"V":230}},{"type":"LineString","arcs":[922],"id":3432,"properties":{"V":230}},{"type":"LineString","arcs":[923],"id":3433,"properties":{"V":230}},{"type":"LineString","arcs":[924],"id":3438,"properties":{"V":230}},{"type":"LineString","arcs":[925],"id":3458,"properties":{"V":230}},{"type":"LineString","arcs":[926],"id":3459,"properties":{"V":230}},{"type":"LineString","arcs":[927],"id":3463,"properties":{"V":230}},{"type":"LineString","arcs":[928],"id":3467,"properties":{"V":230}},{"type":"LineString","arcs":[929],"id":3468,"properties":{"V":230}},{"type":"LineString","arcs":[930],"id":3478,"properties":{"V":230}},{"type":"LineString","arcs":[931],"id":3479,"properties":{"V":230}},{"type":"LineString","arcs":[932],"id":3480,"properties":{"V":230}},{"type":"LineString","arcs":[933],"id":3481,"properties":{"V":230}},{"type":"LineString","arcs":[934],"id":3482,"properties":{"V":230}},{"type":"LineString","arcs":[935],"id":3483,"properties":{"V":230}},{"type":"LineString","arcs":[936],"id":3484,"properties":{"V":230}},{"type":"LineString","arcs":[937],"id":3505,"properties":{"V":230}},{"type":"LineString","arcs":[938],"id":3579,"properties":{"V":230}},{"type":"LineString","arcs":[939],"id":3589,"properties":{"V":230}},{"type":"LineString","arcs":[940],"id":3611,"properties":{"V":230}},{"type":"LineString","arcs":[941],"id":3612,"properties":{"V":230}},{"type":"LineString","arcs":[942],"id":3613,"properties":{"V":230}},{"type":"LineString","arcs":[943],"id":3614,"properties":{"V":230}},{"type":"LineString","arcs":[944],"id":3615,"properties":{"V":230}},{"type":"LineString","arcs":[945],"id":3648,"properties":{"V":230}},{"type":"LineString","arcs":[946],"id":3657,"properties":{"V":230}},{"type":"LineString","arcs":[947],"id":3670,"properties":{"V":230}},{"type":"LineString","arcs":[948],"id":3895,"properties":{"V":230}},{"type":"LineString","arcs":[949],"id":3896,"properties":{"V":345}},{"type":"LineString","arcs":[950],"id":3907,"properties":{"V":230}},{"type":"LineString","arcs":[951],"id":3908,"properties":{"V":230}},{"type":"LineString","arcs":[952],"id":3929,"properties":{"V":230}},{"type":"LineString","arcs":[953],"id":3960,"properties":{"V":500}},{"type":"LineString","arcs":[954],"id":3961,"properties":{"V":500}},{"type":"LineString","arcs":[955],"id":3968,"properties":{"V":230}},{"type":"LineString","arcs":[956],"id":3981,"properties":{"V":230}},{"type":"LineString","arcs":[957],"id":4359,"properties":{"V":230}},{"type":"LineString","arcs":[958],"id":4360,"properties":{"V":230}},{"type":"LineString","arcs":[959],"id":4397,"properties":{"V":230}},{"type":"LineString","arcs":[960],"id":4404,"properties":{"V":230}},{"type":"LineString","arcs":[961],"id":4443,"properties":{"V":230}},{"type":"LineString","arcs":[962],"id":4444,"properties":{"V":230}},{"type":"LineString","arcs":[963],"id":4445,"properties":{"V":230}},{"type":"LineString","arcs":[964],"id":4486,"properties":{"V":230}},{"type":"LineString","arcs":[965],"id":4487,"properties":{"V":230}},{"type":"LineString","arcs":[966],"id":4499,"properties":{"V":230}},{"type":"LineString","arcs":[967],"id":4500,"properties":{"V":230}},{"type":"LineString","arcs":[968],"id":4501,"properties":{"V":230}},{"type":"LineString","arcs":[969],"id":4550,"properties":{"V":230}},{"type":"LineString","arcs":[970],"id":4615,"properties":{"V":230}},{"type":"LineString","arcs":[971],"id":4639,"properties":{"V":230}},{"type":"LineString","arcs":[972],"id":4661,"properties":{"V":230}},{"type":"LineString","arcs":[973],"id":4662,"properties":{"V":230}},{"type":"LineString","arcs":[974],"id":4677,"properties":{"V":230}},{"type":"LineString","arcs":[975],"id":4681,"properties":{"V":230}},{"type":"LineString","arcs":[976],"id":4812,"properties":{"V":230}},{"type":"LineString","arcs":[977],"id":4813,"properties":{"V":230}},{"type":"LineString","arcs":[978],"id":4831,"properties":{"V":230}},{"type":"LineString","arcs":[979],"id":4832,"properties":{"V":230}},{"type":"LineString","arcs":[980],"id":4849,"properties":{"V":230}},{"type":"LineString","arcs":[981],"id":4850,"properties":{"V":230}},{"type":"LineString","arcs":[982],"id":4851,"properties":{"V":230}},{"type":"LineString","arcs":[983],"id":4852,"properties":{"V":230}},{"type":"LineString","arcs":[984],"id":4895,"properties":{"V":230}},{"type":"LineString","arcs":[985],"id":4900,"properties":{"V":230}},{"type":"LineString","arcs":[986],"id":4901,"properties":{"V":230}},{"type":"LineString","arcs":[987,-471],"id":4904,"properties":{"V":230}},{"type":"LineString","arcs":[988],"id":4910,"properties":{"V":230}},{"type":"LineString","arcs":[989],"id":4911,"properties":{"V":230}},{"type":"LineString","arcs":[990],"id":4912,"properties":{"V":230}},{"type":"LineString","arcs":[991],"id":4913,"properties":{"V":230}},{"type":"LineString","arcs":[992],"id":4914,"properties":{"V":230}},{"type":"LineString","arcs":[993],"id":4915,"properties":{"V":230}},{"type":"LineString","arcs":[994],"id":4916,"properties":{"V":230}},{"type":"LineString","arcs":[995],"id":4943,"properties":{"V":345}},{"type":"LineString","arcs":[996],"id":5088,"properties":{"V":230}},{"type":"LineString","arcs":[997],"id":5089,"properties":{"V":230}},{"type":"LineString","arcs":[998],"id":5090,"properties":{"V":230}},{"type":"LineString","arcs":[999],"id":5091,"properties":{"V":230}},{"type":"LineString","arcs":[1000],"id":5092,"properties":{"V":230}},{"type":"LineString","arcs":[1001],"id":5093,"properties":{"V":230}},{"type":"LineString","arcs":[1002],"id":5100,"properties":{"V":230}},{"type":"LineString","arcs":[1003],"id":5169,"properties":{"V":230}},{"type":"LineString","arcs":[1004],"id":5172,"properties":{"V":230}},{"type":"LineString","arcs":[1005],"id":5186,"properties":{"V":230}},{"type":"LineString","arcs":[1006],"id":5187,"properties":{"V":230}},{"type":"LineString","arcs":[1007],"id":5188,"properties":{"V":230}},{"type":"LineString","arcs":[1008],"id":5189,"properties":{"V":230}},{"type":"LineString","arcs":[1009],"id":5190,"properties":{"V":230}},{"type":"LineString","arcs":[1010],"id":5195,"properties":{"V":230}},{"type":"LineString","arcs":[1011],"id":5196,"properties":{"V":230}},{"type":"LineString","arcs":[1012],"id":5200,"properties":{"V":230}},{"type":"LineString","arcs":[1013],"id":5214,"properties":{"V":230}},{"type":"LineString","arcs":[1014],"id":5250,"properties":{"V":230}},{"type":"LineString","arcs":[1015],"id":5252,"properties":{"V":230}},{"type":"LineString","arcs":[1016],"id":5271,"properties":{"V":230}},{"type":"LineString","arcs":[1017],"id":5293,"properties":{"V":230}},{"type":"LineString","arcs":[1018,472],"id":5296,"properties":{"V":230}},{"type":"LineString","arcs":[1019],"id":5297,"properties":{"V":230}},{"type":"LineString","arcs":[1020],"id":5300,"properties":{"V":230}},{"type":"LineString","arcs":[1021],"id":5303,"properties":{"V":230}},{"type":"LineString","arcs":[1022],"id":5304,"properties":{"V":230}},{"type":"LineString","arcs":[1023],"id":5305,"properties":{"V":230}},{"type":"LineString","arcs":[1024],"id":5306,"properties":{"V":230}},{"type":"LineString","arcs":[1025],"id":5307,"properties":{"V":230}},{"type":"LineString","arcs":[1026],"id":5308,"properties":{"V":230}},{"type":"LineString","arcs":[1027],"id":5312,"properties":{"V":230}},{"type":"LineString","arcs":[1028],"id":5320,"properties":{"V":230}},{"type":"LineString","arcs":[1029],"id":5323,"properties":{"V":230}},{"type":"LineString","arcs":[1030],"id":5324,"properties":{"V":230}},{"type":"LineString","arcs":[1031],"id":5336,"properties":{"V":230}},{"type":"LineString","arcs":[1032],"id":5337,"properties":{"V":230}},{"type":"LineString","arcs":[1033],"id":5338,"properties":{"V":230}},{"type":"LineString","arcs":[1034],"id":5339,"properties":{"V":230}},{"type":"LineString","arcs":[1035],"id":5340,"properties":{"V":230}},{"type":"LineString","arcs":[1036],"id":5364,"properties":{"V":230}},{"type":"LineString","arcs":[1037],"id":5371,"properties":{"V":230}},{"type":"LineString","arcs":[1038],"id":5378,"properties":{"V":230}},{"type":"LineString","arcs":[1039],"id":5416,"properties":{"V":230}},{"type":"LineString","arcs":[1040],"id":5417,"properties":{"V":230}},{"type":"LineString","arcs":[1041],"id":5418,"properties":{"V":230}},{"type":"LineString","arcs":[1042],"id":5419,"properties":{"V":230}},{"type":"LineString","arcs":[1043],"id":5420,"properties":{"V":230}},{"type":"LineString","arcs":[1044],"id":5431,"properties":{"V":230}},{"type":"LineString","arcs":[1045],"id":5432,"properties":{"V":230}},{"type":"LineString","arcs":[1046],"id":5433,"properties":{"V":230}},{"type":"LineString","arcs":[1047],"id":5434,"properties":{"V":230}},{"type":"LineString","arcs":[1048],"id":5435,"properties":{"V":230}},{"type":"LineString","arcs":[1049],"id":5436,"properties":{"V":230}},{"type":"LineString","arcs":[1050],"id":5437,"properties":{"V":230}},{"type":"LineString","arcs":[1051],"id":5438,"properties":{"V":230}},{"type":"LineString","arcs":[1052],"id":5439,"properties":{"V":230}},{"type":"LineString","arcs":[1053],"id":5440,"properties":{"V":230}},{"type":"LineString","arcs":[1054,1055],"id":5441,"properties":{"V":230}},{"type":"LineString","arcs":[1056],"id":5442,"properties":{"V":230}},{"type":"LineString","arcs":[1057],"id":5443,"properties":{"V":230}},{"type":"LineString","arcs":[1058],"id":5444,"properties":{"V":230}},{"type":"LineString","arcs":[1059],"id":5445,"properties":{"V":230}},{"type":"LineString","arcs":[1060],"id":5446,"properties":{"V":230}},{"type":"LineString","arcs":[1061],"id":5447,"properties":{"V":230}},{"type":"LineString","arcs":[1062],"id":5448,"properties":{"V":230}},{"type":"LineString","arcs":[1063],"id":5449,"properties":{"V":230}},{"type":"LineString","arcs":[1064],"id":5450,"properties":{"V":230}},{"type":"LineString","arcs":[1065],"id":5451,"properties":{"V":230}},{"type":"LineString","arcs":[1066],"id":5452,"properties":{"V":230}},{"type":"LineString","arcs":[1067],"id":5453,"properties":{"V":230}},{"type":"LineString","arcs":[1068],"id":5454,"properties":{"V":230}},{"type":"LineString","arcs":[1069],"id":5455,"properties":{"V":230}},{"type":"LineString","arcs":[1070],"id":5456,"properties":{"V":230}},{"type":"LineString","arcs":[1071],"id":5457,"properties":{"V":230}},{"type":"LineString","arcs":[1072],"id":5458,"properties":{"V":230}},{"type":"LineString","arcs":[1073],"id":5459,"properties":{"V":230}},{"type":"LineString","arcs":[1074],"id":5460,"properties":{"V":230}},{"type":"LineString","arcs":[1075],"id":5461,"properties":{"V":230}},{"type":"LineString","arcs":[1076],"id":5462,"properties":{"V":230}},{"type":"LineString","arcs":[1077],"id":5463,"properties":{"V":230}},{"type":"LineString","arcs":[1078],"id":5464,"properties":{"V":230}},{"type":"LineString","arcs":[1079],"id":5465,"properties":{"V":230}},{"type":"LineString","arcs":[1080],"id":5466,"properties":{"V":230}},{"type":"LineString","arcs":[1081],"id":5467,"properties":{"V":230}},{"type":"LineString","arcs":[1082],"id":5468,"properties":{"V":230}},{"type":"LineString","arcs":[1083],"id":5469,"properties":{"V":230}},{"type":"LineString","arcs":[1084],"id":5470,"properties":{"V":230}},{"type":"LineString","arcs":[1085],"id":5471,"properties":{"V":230}},{"type":"LineString","arcs":[1086],"id":5481,"properties":{"V":230}},{"type":"LineString","arcs":[1087],"id":5482,"properties":{"V":230}},{"type":"LineString","arcs":[1088],"id":5497,"properties":{"V":230}},{"type":"LineString","arcs":[1089],"id":5498,"properties":{"V":230}},{"type":"LineString","arcs":[1090],"id":5499,"properties":{"V":230}},{"type":"LineString","arcs":[1091],"id":5501,"properties":{"V":230}},{"type":"LineString","arcs":[1092],"id":5537,"properties":{"V":230}},{"type":"LineString","arcs":[1093],"id":5538,"properties":{"V":230}},{"type":"LineString","arcs":[1094],"id":5539,"properties":{"V":230}},{"type":"LineString","arcs":[1095],"id":5540,"properties":{"V":230}},{"type":"LineString","arcs":[1096],"id":5541,"properties":{"V":230}},{"type":"LineString","arcs":[1097],"id":5542,"properties":{"V":230}},{"type":"LineString","arcs":[1098],"id":5543,"properties":{"V":230}},{"type":"LineString","arcs":[1099],"id":5544,"properties":{"V":230}},{"type":"LineString","arcs":[1100],"id":5567,"properties":{"V":230}},{"type":"LineString","arcs":[1101],"id":5568,"properties":{"V":230}},{"type":"LineString","arcs":[1102],"id":5569,"properties":{"V":230}},{"type":"LineString","arcs":[1103],"id":5571,"properties":{"V":230}},{"type":"LineString","arcs":[1104],"id":5586,"properties":{"V":500}},{"type":"LineString","arcs":[1105],"id":5589,"properties":{"V":230}},{"type":"LineString","arcs":[1106],"id":5590,"properties":{"V":230}},{"type":"LineString","arcs":[1107],"id":5598,"properties":{"V":230}},{"type":"LineString","arcs":[1108],"id":5599,"properties":{"V":230}},{"type":"LineString","arcs":[1109],"id":5600,"properties":{"V":230}},{"type":"LineString","arcs":[1110],"id":5601,"properties":{"V":230}},{"type":"LineString","arcs":[1111],"id":5602,"properties":{"V":230}},{"type":"LineString","arcs":[1112],"id":5625,"properties":{"V":230}},{"type":"LineString","arcs":[1113],"id":5630,"properties":{"V":230}},{"type":"LineString","arcs":[1114],"id":5631,"properties":{"V":230}},{"type":"LineString","arcs":[1115],"id":5632,"properties":{"V":230}},{"type":"LineString","arcs":[1116],"id":5633,"properties":{"V":230}},{"type":"LineString","arcs":[1117],"id":5634,"properties":{"V":230}},{"type":"LineString","arcs":[1118],"id":5635,"properties":{"V":230}},{"type":"LineString","arcs":[1119],"id":5656,"properties":{"V":230}},{"type":"LineString","arcs":[1120],"id":5657,"properties":{"V":230}},{"type":"LineString","arcs":[1121],"id":5663,"properties":{"V":500}},{"type":"LineString","arcs":[1122],"id":5664,"properties":{"V":230}},{"type":"LineString","arcs":[1123],"id":5665,"properties":{"V":345}},{"type":"LineString","arcs":[1124],"id":5683,"properties":{"V":230}},{"type":"LineString","arcs":[1125],"id":5686,"properties":{"V":230}},{"type":"LineString","arcs":[1126],"id":5689,"properties":{"V":230}},{"type":"LineString","arcs":[1127],"id":5690,"properties":{"V":230}},{"type":"LineString","arcs":[1128],"id":5693,"properties":{"V":230}},{"type":"LineString","arcs":[1129],"id":5717,"properties":{"V":230}},{"type":"LineString","arcs":[1130],"id":5718,"properties":{"V":230}},{"type":"LineString","arcs":[1131],"id":5719,"properties":{"V":230}},{"type":"LineString","arcs":[1132],"id":5720,"properties":{"V":230}},{"type":"LineString","arcs":[1133],"id":5722,"properties":{"V":230}},{"type":"LineString","arcs":[1134],"id":5730,"properties":{"V":230}},{"type":"LineString","arcs":[1135],"id":5731,"properties":{"V":230}},{"type":"LineString","arcs":[1136],"id":5732,"properties":{"V":230}},{"type":"LineString","arcs":[1137],"id":5741,"properties":{"V":230}},{"type":"LineString","arcs":[1138],"id":5744,"properties":{"V":230}},{"type":"LineString","arcs":[1139],"id":5748,"properties":{"V":230}},{"type":"LineString","arcs":[1140],"id":5749,"properties":{"V":230}},{"type":"LineString","arcs":[1141],"id":5760,"properties":{"V":230}},{"type":"LineString","arcs":[1142],"id":5761,"properties":{"V":230}},{"type":"LineString","arcs":[1143],"id":5762,"properties":{"V":230}},{"type":"LineString","arcs":[1144],"id":5764,"properties":{"V":230}},{"type":"LineString","arcs":[1145],"id":5765,"properties":{"V":230}},{"type":"LineString","arcs":[1146],"id":5766,"properties":{"V":230}},{"type":"LineString","arcs":[1147],"id":5767,"properties":{"V":230}},{"type":"LineString","arcs":[1148],"id":5768,"properties":{"V":230}},{"type":"LineString","arcs":[1149],"id":5769,"properties":{"V":230}},{"type":"LineString","arcs":[1150],"id":5770,"properties":{"V":230}},{"type":"LineString","arcs":[1151],"id":5775,"properties":{"V":230}},{"type":"LineString","arcs":[1152],"id":5776,"properties":{"V":230}},{"type":"LineString","arcs":[1153],"id":5777,"properties":{"V":230}},{"type":"LineString","arcs":[1154],"id":5779,"properties":{"V":230}},{"type":"LineString","arcs":[1155],"id":5780,"properties":{"V":230}},{"type":"LineString","arcs":[1156],"id":5782,"properties":{"V":230}},{"type":"LineString","arcs":[1157],"id":5794,"properties":{"V":230}},{"type":"LineString","arcs":[1158],"id":5800,"properties":{"V":230}},{"type":"LineString","arcs":[1159],"id":5812,"properties":{"V":230}},{"type":"LineString","arcs":[1160],"id":5813,"properties":{"V":230}},{"type":"LineString","arcs":[1161],"id":5822,"properties":{"V":230}},{"type":"LineString","arcs":[1162],"id":5823,"properties":{"V":230}},{"type":"LineString","arcs":[1163],"id":5846,"properties":{"V":230}},{"type":"LineString","arcs":[1164],"id":5849,"properties":{"V":230}},{"type":"LineString","arcs":[1165],"id":5855,"properties":{"V":230}},{"type":"LineString","arcs":[1166],"id":5856,"properties":{"V":230}},{"type":"LineString","arcs":[1167],"id":5857,"properties":{"V":230}},{"type":"LineString","arcs":[1168],"id":5880,"properties":{"V":230}},{"type":"LineString","arcs":[1169],"id":5882,"properties":{"V":230}},{"type":"LineString","arcs":[1170],"id":5884,"properties":{"V":230}},{"type":"LineString","arcs":[1171],"id":5902,"properties":{"V":230}},{"type":"LineString","arcs":[1172],"id":5907,"properties":{"V":275}},{"type":"LineString","arcs":[1173],"id":5920,"properties":{"V":230}},{"type":"LineString","arcs":[1174],"id":5921,"properties":{"V":230}},{"type":"LineString","arcs":[1175],"id":5932,"properties":{"V":230}},{"type":"LineString","arcs":[1176],"id":5985,"properties":{"V":230}},{"type":"LineString","arcs":[1177],"id":5987,"properties":{"V":230}},{"type":"LineString","arcs":[1178],"id":5988,"properties":{"V":345}},{"type":"LineString","arcs":[1179],"id":5989,"properties":{"V":230}},{"type":"LineString","arcs":[1180],"id":5999,"properties":{"V":230}},{"type":"LineString","arcs":[1181],"id":6002,"properties":{"V":230}},{"type":"LineString","arcs":[1182],"id":6003,"properties":{"V":230}},{"type":"LineString","arcs":[1183],"id":6004,"properties":{"V":230}},{"type":"LineString","arcs":[1184],"id":6005,"properties":{"V":230}},{"type":"LineString","arcs":[1185],"id":6030,"properties":{"V":345}},{"type":"LineString","arcs":[1186],"id":6031,"properties":{"V":345}},{"type":"LineString","arcs":[1187],"id":6032,"properties":{"V":345}},{"type":"LineString","arcs":[1188],"id":6036,"properties":{"V":230}},{"type":"LineString","arcs":[1189],"id":6037,"properties":{"V":230}},{"type":"LineString","arcs":[1190],"id":6053,"properties":{"V":230}},{"type":"LineString","arcs":[1191],"id":6056,"properties":{"V":230}},{"type":"LineString","arcs":[1192],"id":6057,"properties":{"V":230}},{"type":"LineString","arcs":[1193],"id":6058,"properties":{"V":230}},{"type":"LineString","arcs":[1194],"id":6059,"properties":{"V":345}},{"type":"LineString","arcs":[1195],"id":6060,"properties":{"V":230}},{"type":"LineString","arcs":[1196],"id":6061,"properties":{"V":230}},{"type":"LineString","arcs":[1197],"id":6062,"properties":{"V":230}},{"type":"LineString","arcs":[1198],"id":6063,"properties":{"V":230}},{"type":"LineString","arcs":[1199],"id":6064,"properties":{"V":230}},{"type":"LineString","arcs":[1200],"id":6065,"properties":{"V":230}},{"type":"LineString","arcs":[1201],"id":6066,"properties":{"V":245}},{"type":"LineString","arcs":[1202],"id":6071,"properties":{"V":230}},{"type":"LineString","arcs":[1203],"id":6072,"properties":{"V":230}},{"type":"LineString","arcs":[1204],"id":6073,"properties":{"V":230}},{"type":"LineString","arcs":[1205],"id":6074,"properties":{"V":230}},{"type":"LineString","arcs":[1206],"id":6081,"properties":{"V":230}},{"type":"LineString","arcs":[1207],"id":6084,"properties":{"V":500}},{"type":"LineString","arcs":[1208],"id":6085,"properties":{"V":500}},{"type":"LineString","arcs":[1209],"id":6086,"properties":{"V":500}},{"type":"LineString","arcs":[1210],"id":6087,"properties":{"V":500}},{"type":"LineString","arcs":[1211],"id":6088,"properties":{"V":500}},{"type":"LineString","arcs":[1212],"id":6089,"properties":{"V":500}},{"type":"LineString","arcs":[1213],"id":6090,"properties":{"V":500}},{"type":"LineString","arcs":[1214],"id":6091,"properties":{"V":500}},{"type":"LineString","arcs":[1215],"id":6092,"properties":{"V":500}},{"type":"LineString","arcs":[1216],"id":6093,"properties":{"V":500}},{"type":"LineString","arcs":[1217],"id":6094,"properties":{"V":500}},{"type":"LineString","arcs":[1218],"id":6101,"properties":{"V":230}},{"type":"LineString","arcs":[1219],"id":6104,"properties":{"V":230}},{"type":"LineString","arcs":[1220],"id":6105,"properties":{"V":230}},{"type":"LineString","arcs":[1221],"id":6106,"properties":{"V":230}},{"type":"LineString","arcs":[1222],"id":6107,"properties":{"V":230}},{"type":"LineString","arcs":[1223],"id":6108,"properties":{"V":230}},{"type":"LineString","arcs":[1224],"id":6110,"properties":{"V":230}},{"type":"LineString","arcs":[1225],"id":6111,"properties":{"V":230}},{"type":"LineString","arcs":[1226],"id":6112,"properties":{"V":230}},{"type":"LineString","arcs":[1227],"id":6113,"properties":{"V":230}},{"type":"LineString","arcs":[1228],"id":6114,"properties":{"V":230}},{"type":"LineString","arcs":[1229],"id":6115,"properties":{"V":500}},{"type":"LineString","arcs":[1230],"id":6116,"properties":{"V":500}},{"type":"LineString","arcs":[1231],"id":6117,"properties":{"V":500}},{"type":"LineString","arcs":[1232],"id":6118,"properties":{"V":230}},{"type":"LineString","arcs":[1233],"id":6120,"properties":{"V":230}},{"type":"LineString","arcs":[1234],"id":6123,"properties":{"V":230}},{"type":"LineString","arcs":[1235],"id":6124,"properties":{"V":230}},{"type":"LineString","arcs":[1236],"id":6125,"properties":{"V":230}},{"type":"LineString","arcs":[1237],"id":6133,"properties":{"V":230}},{"type":"LineString","arcs":[1238],"id":6134,"properties":{"V":230}},{"type":"LineString","arcs":[1239],"id":6135,"properties":{"V":500}},{"type":"LineString","arcs":[1240],"id":6136,"properties":{"V":230}},{"type":"LineString","arcs":[1241],"id":6138,"properties":{"V":230}},{"type":"LineString","arcs":[1242],"id":6139,"properties":{"V":230}},{"type":"LineString","arcs":[1243],"id":6140,"properties":{"V":230}},{"type":"LineString","arcs":[1244],"id":6141,"properties":{"V":230}},{"type":"LineString","arcs":[1245],"id":6142,"properties":{"V":230}},{"type":"LineString","arcs":[1246],"id":6143,"properties":{"V":230}},{"type":"LineString","arcs":[1247],"id":6144,"properties":{"V":230}},{"type":"LineString","arcs":[1248],"id":6145,"properties":{"V":230}},{"type":"LineString","arcs":[1249],"id":6146,"properties":{"V":240}},{"type":"LineString","arcs":[1250],"id":6147,"properties":{"V":240}},{"type":"LineString","arcs":[1251],"id":6148,"properties":{"V":240}},{"type":"LineString","arcs":[1252],"id":6149,"properties":{"V":240}},{"type":"LineString","arcs":[1253],"id":6151,"properties":{"V":500}},{"type":"LineString","arcs":[1254],"id":6152,"properties":{"V":500}},{"type":"LineString","arcs":[1255],"id":6153,"properties":{"V":500}},{"type":"LineString","arcs":[1256],"id":6154,"properties":{"V":500}},{"type":"LineString","arcs":[1257],"id":6155,"properties":{"V":500}},{"type":"LineString","arcs":[1258],"id":6156,"properties":{"V":500}},{"type":"LineString","arcs":[1259],"id":6157,"properties":{"V":500}},{"type":"LineString","arcs":[1260],"id":6165,"properties":{"V":230}},{"type":"LineString","arcs":[1261],"id":6167,"properties":{"V":230}},{"type":"LineString","arcs":[1262],"id":6168,"properties":{"V":230}},{"type":"LineString","arcs":[1263],"id":6169,"properties":{"V":230}},{"type":"LineString","arcs":[1264],"id":6173,"properties":{"V":345}},{"type":"LineString","arcs":[1265],"id":6174,"properties":{"V":345}},{"type":"LineString","arcs":[1266],"id":6175,"properties":{"V":345}},{"type":"LineString","arcs":[1267],"id":6176,"properties":{"V":345}},{"type":"LineString","arcs":[1268],"id":6177,"properties":{"V":345}},{"type":"LineString","arcs":[1269],"id":6178,"properties":{"V":345}},{"type":"LineString","arcs":[1270],"id":6179,"properties":{"V":345}},{"type":"LineString","arcs":[1271],"id":6180,"properties":{"V":230}},{"type":"LineString","arcs":[1272],"id":6181,"properties":{"V":230}},{"type":"LineString","arcs":[1273],"id":6182,"properties":{"V":230}},{"type":"LineString","arcs":[1274],"id":6183,"properties":{"V":230}},{"type":"LineString","arcs":[1275],"id":6185,"properties":{"V":230}},{"type":"LineString","arcs":[1276],"id":6186,"properties":{"V":230}},{"type":"LineString","arcs":[1277],"id":6187,"properties":{"V":230}},{"type":"LineString","arcs":[1278],"id":6188,"properties":{"V":230}},{"type":"LineString","arcs":[1279],"id":6191,"properties":{"V":345}},{"type":"LineString","arcs":[1280],"id":6192,"properties":{"V":345}},{"type":"LineString","arcs":[1281],"id":6193,"properties":{"V":345}},{"type":"LineString","arcs":[1282],"id":6194,"properties":{"V":230}},{"type":"LineString","arcs":[1283],"id":6195,"properties":{"V":230}},{"type":"LineString","arcs":[1284],"id":6196,"properties":{"V":230}},{"type":"LineString","arcs":[1285],"id":6197,"properties":{"V":230}},{"type":"LineString","arcs":[1286],"id":6198,"properties":{"V":230}},{"type":"LineString","arcs":[1287],"id":6199,"properties":{"V":230}},{"type":"LineString","arcs":[1288],"id":6200,"properties":{"V":500}},{"type":"LineString","arcs":[1289],"id":6201,"properties":{"V":230}},{"type":"LineString","arcs":[1290],"id":6202,"properties":{"V":230}},{"type":"LineString","arcs":[1291],"id":6203,"properties":{"V":500}},{"type":"LineString","arcs":[1292],"id":6204,"properties":{"V":230}},{"type":"LineString","arcs":[1293],"id":6205,"properties":{"V":230}},{"type":"LineString","arcs":[1294],"id":6206,"properties":{"V":230}},{"type":"LineString","arcs":[1295],"id":6207,"properties":{"V":230}},{"type":"LineString","arcs":[1296],"id":6208,"properties":{"V":500}},{"type":"LineString","arcs":[1297],"id":6209,"properties":{"V":230}},{"type":"LineString","arcs":[1298],"id":6210,"properties":{"V":230}},{"type":"LineString","arcs":[1299],"id":6211,"properties":{"V":230}},{"type":"LineString","arcs":[1300],"id":6212,"properties":{"V":230}},{"type":"LineString","arcs":[1301],"id":6220,"properties":{"V":345}},{"type":"LineString","arcs":[1302],"id":6221,"properties":{"V":345}},{"type":"LineString","arcs":[1303],"id":6222,"properties":{"V":345}},{"type":"LineString","arcs":[1304],"id":6223,"properties":{"V":230}},{"type":"LineString","arcs":[1305],"id":6224,"properties":{"V":230}},{"type":"LineString","arcs":[1306],"id":6226,"properties":{"V":230}},{"type":"LineString","arcs":[1307],"id":6227,"properties":{"V":230}},{"type":"LineString","arcs":[1308],"id":6228,"properties":{"V":230}},{"type":"LineString","arcs":[1309],"id":6229,"properties":{"V":500}},{"type":"LineString","arcs":[1310],"id":6230,"properties":{"V":500}},{"type":"LineString","arcs":[1311],"id":6231,"properties":{"V":345}},{"type":"LineString","arcs":[1312],"id":6232,"properties":{"V":345}},{"type":"LineString","arcs":[1313],"id":6233,"properties":{"V":230}},{"type":"LineString","arcs":[1314],"id":6234,"properties":{"V":230}},{"type":"LineString","arcs":[1315],"id":6235,"properties":{"V":230}},{"type":"LineString","arcs":[1316],"id":6236,"properties":{"V":230}},{"type":"LineString","arcs":[1317],"id":6237,"properties":{"V":230}},{"type":"LineString","arcs":[1318],"id":6242,"properties":{"V":230}},{"type":"LineString","arcs":[1319],"id":6243,"properties":{"V":230}},{"type":"LineString","arcs":[1320],"id":6244,"properties":{"V":230}},{"type":"LineString","arcs":[1321],"id":6246,"properties":{"V":230}},{"type":"LineString","arcs":[1322],"id":6247,"properties":{"V":230}},{"type":"LineString","arcs":[1323],"id":6248,"properties":{"V":230}},{"type":"LineString","arcs":[1324],"id":6249,"properties":{"V":230}},{"type":"LineString","arcs":[1325],"id":6252,"properties":{"V":230}},{"type":"LineString","arcs":[1326],"id":6253,"properties":{"V":500}},{"type":"LineString","arcs":[1327],"id":6254,"properties":{"V":500}},{"type":"LineString","arcs":[1328],"id":6255,"properties":{"V":230}},{"type":"LineString","arcs":[1329],"id":6256,"properties":{"V":230}},{"type":"LineString","arcs":[1330],"id":6257,"properties":{"V":230}},{"type":"LineString","arcs":[1331],"id":6259,"properties":{"V":230}},{"type":"LineString","arcs":[1332],"id":6262,"properties":{"V":230}},{"type":"LineString","arcs":[1333],"id":6263,"properties":{"V":230}},{"type":"LineString","arcs":[1334],"id":6264,"properties":{"V":230}},{"type":"LineString","arcs":[1335],"id":6265,"properties":{"V":230}},{"type":"LineString","arcs":[1336],"id":6266,"properties":{"V":230}},{"type":"LineString","arcs":[1337],"id":6267,"properties":{"V":230}},{"type":"LineString","arcs":[1338],"id":6268,"properties":{"V":230}},{"type":"LineString","arcs":[1339],"id":6269,"properties":{"V":230}},{"type":"LineString","arcs":[1340],"id":6270,"properties":{"V":230}},{"type":"LineString","arcs":[1341],"id":6271,"properties":{"V":230}},{"type":"LineString","arcs":[1342],"id":6273,"properties":{"V":345}},{"type":"LineString","arcs":[1343],"id":6274,"properties":{"V":345}},{"type":"LineString","arcs":[1344],"id":6275,"properties":{"V":230}},{"type":"LineString","arcs":[1345],"id":6276,"properties":{"V":230}},{"type":"LineString","arcs":[1346],"id":6281,"properties":{"V":230}},{"type":"LineString","arcs":[1347],"id":6284,"properties":{"V":230}},{"type":"LineString","arcs":[1348],"id":6285,"properties":{"V":230}},{"type":"LineString","arcs":[1349],"id":6286,"properties":{"V":230}},{"type":"LineString","arcs":[1350],"id":6287,"properties":{"V":230}},{"type":"LineString","arcs":[1351],"id":6290,"properties":{"V":230}},{"type":"LineString","arcs":[1352],"id":6294,"properties":{"V":230}},{"type":"LineString","arcs":[1353],"id":6295,"properties":{"V":230}},{"type":"LineString","arcs":[1354],"id":6296,"properties":{"V":230}},{"type":"LineString","arcs":[1355],"id":6298,"properties":{"V":230}},{"type":"LineString","arcs":[1356],"id":6299,"properties":{"V":230}},{"type":"LineString","arcs":[1357],"id":6300,"properties":{"V":230}},{"type":"LineString","arcs":[1358],"id":6301,"properties":{"V":230}},{"type":"LineString","arcs":[1359],"id":6302,"properties":{"V":230}},{"type":"LineString","arcs":[1360],"id":6303,"properties":{"V":230}},{"type":"LineString","arcs":[1361],"id":6304,"properties":{"V":230}},{"type":"LineString","arcs":[1362],"id":6306,"properties":{"V":230}},{"type":"LineString","arcs":[1363],"id":6309,"properties":{"V":230}},{"type":"LineString","arcs":[1364],"id":6310,"properties":{"V":230}},{"type":"LineString","arcs":[1365],"id":6311,"properties":{"V":230}},{"type":"LineString","arcs":[1366],"id":6316,"properties":{"V":500}},{"type":"LineString","arcs":[1367],"id":6317,"properties":{"V":230}},{"type":"LineString","arcs":[1368],"id":6318,"properties":{"V":230}},{"type":"LineString","arcs":[1369],"id":6325,"properties":{"V":230}},{"type":"LineString","arcs":[1370],"id":6326,"properties":{"V":345}},{"type":"LineString","arcs":[1371],"id":6328,"properties":{"V":230}},{"type":"LineString","arcs":[1372],"id":6329,"properties":{"V":230}},{"type":"LineString","arcs":[1373],"id":6330,"properties":{"V":230}},{"type":"LineString","arcs":[1374],"id":6334,"properties":{"V":230}},{"type":"LineString","arcs":[1375],"id":6335,"properties":{"V":230}},{"type":"LineString","arcs":[1376],"id":6336,"properties":{"V":345}},{"type":"LineString","arcs":[1377],"id":6337,"properties":{"V":230}},{"type":"LineString","arcs":[1378],"id":6338,"properties":{"V":230}},{"type":"LineString","arcs":[1379],"id":6339,"properties":{"V":230}},{"type":"LineString","arcs":[1380],"id":6340,"properties":{"V":230}},{"type":"LineString","arcs":[1381],"id":6341,"properties":{"V":230}},{"type":"LineString","arcs":[1382],"id":6344,"properties":{"V":230}},{"type":"LineString","arcs":[1383],"id":6368,"properties":{"V":230}},{"type":"LineString","arcs":[1384],"id":6387,"properties":{"V":230}},{"type":"LineString","arcs":[1385],"id":6393,"properties":{"V":230}},{"type":"LineString","arcs":[1386],"id":6395,"properties":{"V":500}},{"type":"LineString","arcs":[1387],"id":6398,"properties":{"V":230}},{"type":"LineString","arcs":[1388],"id":6399,"properties":{"V":230}},{"type":"LineString","arcs":[1389],"id":6400,"properties":{"V":230}},{"type":"LineString","arcs":[1390],"id":6401,"properties":{"V":230}},{"type":"LineString","arcs":[1391],"id":6402,"properties":{"V":500}},{"type":"LineString","arcs":[1392],"id":6403,"properties":{"V":500}},{"type":"LineString","arcs":[1393],"id":6404,"properties":{"V":345}},{"type":"LineString","arcs":[1394],"id":6405,"properties":{"V":345}},{"type":"LineString","arcs":[1395],"id":6406,"properties":{"V":230}},{"type":"LineString","arcs":[1396],"id":6408,"properties":{"V":230}},{"type":"LineString","arcs":[1397],"id":6409,"properties":{"V":230}},{"type":"LineString","arcs":[1398],"id":6411,"properties":{"V":230}},{"type":"LineString","arcs":[1399],"id":6412,"properties":{"V":230}},{"type":"LineString","arcs":[1400],"id":6413,"properties":{"V":230}},{"type":"LineString","arcs":[1401],"id":6416,"properties":{"V":230}},{"type":"LineString","arcs":[1402],"id":6417,"properties":{"V":230}},{"type":"LineString","arcs":[1403],"id":6420,"properties":{"V":230}},{"type":"LineString","arcs":[1404],"id":6421,"properties":{"V":230}},{"type":"LineString","arcs":[1405],"id":6442,"properties":{"V":500}},{"type":"LineString","arcs":[1406],"id":6443,"properties":{"V":500}},{"type":"LineString","arcs":[1407],"id":6444,"properties":{"V":500}},{"type":"LineString","arcs":[1408],"id":6445,"properties":{"V":500}},{"type":"LineString","arcs":[1409],"id":6446,"properties":{"V":500}},{"type":"LineString","arcs":[1410],"id":6447,"properties":{"V":500}},{"type":"LineString","arcs":[1411],"id":6448,"properties":{"V":345}},{"type":"LineString","arcs":[1412],"id":6449,"properties":{"V":345}},{"type":"LineString","arcs":[1413],"id":6450,"properties":{"V":345}},{"type":"LineString","arcs":[1414],"id":6452,"properties":{"V":230}},{"type":"LineString","arcs":[1415],"id":6453,"properties":{"V":230}},{"type":"LineString","arcs":[1416],"id":6454,"properties":{"V":230}},{"type":"LineString","arcs":[1417],"id":6455,"properties":{"V":230}},{"type":"LineString","arcs":[1418],"id":6456,"properties":{"V":230}},{"type":"LineString","arcs":[1419],"id":6457,"properties":{"V":230}},{"type":"LineString","arcs":[1420],"id":6458,"properties":{"V":230}},{"type":"LineString","arcs":[1421],"id":6459,"properties":{"V":230}},{"type":"LineString","arcs":[1422],"id":6460,"properties":{"V":230}},{"type":"LineString","arcs":[1423],"id":6461,"properties":{"V":230}},{"type":"LineString","arcs":[1424],"id":6462,"properties":{"V":230}},{"type":"LineString","arcs":[1425],"id":6463,"properties":{"V":230}},{"type":"LineString","arcs":[1426],"id":6464,"properties":{"V":230}},{"type":"LineString","arcs":[1427],"id":6465,"properties":{"V":230}},{"type":"LineString","arcs":[1428],"id":6466,"properties":{"V":500}},{"type":"LineString","arcs":[1429],"id":6467,"properties":{"V":500}},{"type":"LineString","arcs":[1430],"id":6468,"properties":{"V":230}},{"type":"LineString","arcs":[1431],"id":6469,"properties":{"V":230}},{"type":"LineString","arcs":[1432],"id":6470,"properties":{"V":230}},{"type":"LineString","arcs":[1433],"id":6471,"properties":{"V":230}},{"type":"LineString","arcs":[1434],"id":6472,"properties":{"V":230}},{"type":"LineString","arcs":[1435],"id":6475,"properties":{"V":230}},{"type":"LineString","arcs":[1436],"id":6481,"properties":{"V":230}},{"type":"LineString","arcs":[1437],"id":6482,"properties":{"V":230}},{"type":"LineString","arcs":[1438],"id":6483,"properties":{"V":230}},{"type":"LineString","arcs":[1439],"id":6484,"properties":{"V":230}},{"type":"LineString","arcs":[1440],"id":6485,"properties":{"V":230}},{"type":"LineString","arcs":[1441],"id":6486,"properties":{"V":230}},{"type":"LineString","arcs":[1442],"id":6487,"properties":{"V":230}},{"type":"LineString","arcs":[1443],"id":6488,"properties":{"V":230}},{"type":"LineString","arcs":[1444],"id":6489,"properties":{"V":230}},{"type":"LineString","arcs":[1445],"id":6490,"properties":{"V":230}},{"type":"LineString","arcs":[1446],"id":6491,"properties":{"V":230}},{"type":"LineString","arcs":[1447],"id":6492,"properties":{"V":230}},{"type":"LineString","arcs":[1448],"id":6493,"properties":{"V":230}},{"type":"LineString","arcs":[1449],"id":6494,"properties":{"V":230}},{"type":"LineString","arcs":[1450],"id":6497,"properties":{"V":230}},{"type":"LineString","arcs":[1451],"id":6501,"properties":{"V":230}},{"type":"LineString","arcs":[1452],"id":6514,"properties":{"V":230}},{"type":"LineString","arcs":[1453],"id":6515,"properties":{"V":230}},{"type":"LineString","arcs":[1454],"id":6536,"properties":{"V":230}},{"type":"LineString","arcs":[1455],"id":6537,"properties":{"V":230}},{"type":"LineString","arcs":[1456],"id":6539,"properties":{"V":230}},{"type":"LineString","arcs":[1457],"id":6540,"properties":{"V":230}},{"type":"LineString","arcs":[1458],"id":6542,"properties":{"V":230}},{"type":"LineString","arcs":[1459],"id":6543,"properties":{"V":230}},{"type":"LineString","arcs":[1460],"id":6555,"properties":{"V":230}},{"type":"LineString","arcs":[1461],"id":6556,"properties":{"V":230}},{"type":"LineString","arcs":[1462],"id":6685,"properties":{"V":230}},{"type":"LineString","arcs":[1463],"id":6709,"properties":{"V":230}},{"type":"LineString","arcs":[1464],"id":6710,"properties":{"V":230}},{"type":"LineString","arcs":[1465],"id":6713,"properties":{"V":230}},{"type":"LineString","arcs":[1466],"id":6717,"properties":{"V":230}},{"type":"LineString","arcs":[1467],"id":6719,"properties":{"V":230}},{"type":"LineString","arcs":[1468],"id":6742,"properties":{"V":230}},{"type":"LineString","arcs":[1469],"id":6749,"properties":{"V":275}},{"type":"LineString","arcs":[1470],"id":6751,"properties":{"V":230}},{"type":"LineString","arcs":[1471],"id":6762,"properties":{"V":230}},{"type":"LineString","arcs":[1472],"id":6768,"properties":{"V":345}},{"type":"LineString","arcs":[1473],"id":6774,"properties":{"V":230}},{"type":"LineString","arcs":[1474],"id":6793,"properties":{"V":230}},{"type":"LineString","arcs":[1475],"id":6794,"properties":{"V":230}},{"type":"LineString","arcs":[1476],"id":6795,"properties":{"V":230}},{"type":"LineString","arcs":[1477],"id":6796,"properties":{"V":230}},{"type":"LineString","arcs":[1478],"id":6797,"properties":{"V":230}},{"type":"LineString","arcs":[1479],"id":6813,"properties":{"V":230}},{"type":"LineString","arcs":[1480],"id":6822,"properties":{"V":230}},{"type":"LineString","arcs":[1481],"id":6827,"properties":{"V":230}},{"type":"LineString","arcs":[1482],"id":6828,"properties":{"V":230}},{"type":"MultiLineString","arcs":[[1483],[1484]],"id":6848,"properties":{"V":230}},{"type":"LineString","arcs":[1485],"id":6849,"properties":{"V":230}},{"type":"LineString","arcs":[1486],"id":6855,"properties":{"V":230}},{"type":"LineString","arcs":[1487],"id":6888,"properties":{"V":230}},{"type":"LineString","arcs":[1488],"id":6892,"properties":{"V":230}},{"type":"LineString","arcs":[1489],"id":6893,"properties":{"V":230}},{"type":"LineString","arcs":[1490],"id":6894,"properties":{"V":230}},{"type":"LineString","arcs":[1491],"id":6935,"properties":{"V":230}},{"type":"LineString","arcs":[1492],"id":6951,"properties":{"V":345}},{"type":"LineString","arcs":[1493],"id":7005,"properties":{"V":230}},{"type":"LineString","arcs":[1494],"id":7006,"properties":{"V":230}},{"type":"LineString","arcs":[1495],"id":7139,"properties":{"V":230}},{"type":"LineString","arcs":[1496],"id":7140,"properties":{"V":230}},{"type":"LineString","arcs":[1497],"id":7141,"properties":{"V":230}},{"type":"LineString","arcs":[1498],"id":7142,"properties":{"V":230}},{"type":"LineString","arcs":[1499],"id":7143,"properties":{"V":230}},{"type":"LineString","arcs":[1500],"id":7144,"properties":{"V":230}},{"type":"LineString","arcs":[1501],"id":7145,"properties":{"V":230}},{"type":"LineString","arcs":[1502],"id":7146,"properties":{"V":230}},{"type":"LineString","arcs":[1503],"id":7147,"properties":{"V":230}},{"type":"LineString","arcs":[1504],"id":7148,"properties":{"V":230}},{"type":"LineString","arcs":[1505],"id":7149,"properties":{"V":230}},{"type":"LineString","arcs":[1506],"id":7150,"properties":{"V":230}},{"type":"LineString","arcs":[1507],"id":7151,"properties":{"V":230}},{"type":"LineString","arcs":[1508],"id":7152,"properties":{"V":230}},{"type":"LineString","arcs":[1509],"id":7153,"properties":{"V":230}},{"type":"LineString","arcs":[1510],"id":7154,"properties":{"V":230}},{"type":"LineString","arcs":[1511],"id":7155,"properties":{"V":230}},{"type":"LineString","arcs":[1512],"id":7156,"properties":{"V":230}},{"type":"LineString","arcs":[1513],"id":7157,"properties":{"V":230}},{"type":"LineString","arcs":[1514],"id":7158,"properties":{"V":230}},{"type":"LineString","arcs":[1515],"id":7159,"properties":{"V":230}},{"type":"LineString","arcs":[1516],"id":7160,"properties":{"V":230}},{"type":"LineString","arcs":[1517],"id":7190,"properties":{"V":230}},{"type":"LineString","arcs":[1518],"id":7191,"properties":{"V":230}},{"type":"LineString","arcs":[1519],"id":7192,"properties":{"V":230}},{"type":"LineString","arcs":[1520],"id":7193,"properties":{"V":230}},{"type":"LineString","arcs":[1521],"id":7198,"properties":{"V":230}},{"type":"LineString","arcs":[1522],"id":7200,"properties":{"V":230}},{"type":"LineString","arcs":[1523],"id":7201,"properties":{"V":230}},{"type":"LineString","arcs":[1524],"id":7202,"properties":{"V":230}},{"type":"LineString","arcs":[1525],"id":7203,"properties":{"V":230}},{"type":"LineString","arcs":[1526],"id":7204,"properties":{"V":230}},{"type":"LineString","arcs":[1527],"id":7205,"properties":{"V":230}},{"type":"LineString","arcs":[1528],"id":7206,"properties":{"V":230}},{"type":"LineString","arcs":[1529],"id":7207,"properties":{"V":230}},{"type":"LineString","arcs":[1530],"id":7208,"properties":{"V":230}},{"type":"LineString","arcs":[1531],"id":7209,"properties":{"V":230}},{"type":"LineString","arcs":[1532],"id":7210,"properties":{"V":230}},{"type":"LineString","arcs":[1533],"id":7212,"properties":{"V":230}},{"type":"LineString","arcs":[1534],"id":7213,"properties":{"V":230}},{"type":"LineString","arcs":[1535],"id":7214,"properties":{"V":230}},{"type":"LineString","arcs":[1536],"id":7215,"properties":{"V":230}},{"type":"LineString","arcs":[1537],"id":7216,"properties":{"V":230}},{"type":"LineString","arcs":[1538],"id":7217,"properties":{"V":230}},{"type":"LineString","arcs":[1539],"id":7218,"properties":{"V":230}},{"type":"LineString","arcs":[1540],"id":7219,"properties":{"V":230}},{"type":"LineString","arcs":[1541],"id":7220,"properties":{"V":230}},{"type":"LineString","arcs":[1542],"id":7221,"properties":{"V":230}},{"type":"LineString","arcs":[1543],"id":7222,"properties":{"V":230}},{"type":"LineString","arcs":[1544],"id":7223,"properties":{"V":230}},{"type":"LineString","arcs":[1545],"id":7224,"properties":{"V":230}},{"type":"LineString","arcs":[1546],"id":7225,"properties":{"V":230}},{"type":"LineString","arcs":[1547],"id":7226,"properties":{"V":230}},{"type":"LineString","arcs":[1548],"id":7409,"properties":{"V":230}},{"type":"LineString","arcs":[1549],"id":7410,"properties":{"V":230}},{"type":"LineString","arcs":[1550],"id":7411,"properties":{"V":230}},{"type":"LineString","arcs":[1551],"id":7412,"properties":{"V":230}},{"type":"LineString","arcs":[1552],"id":7423,"properties":{"V":230}},{"type":"LineString","arcs":[1553],"id":7464,"properties":{"V":230}},{"type":"LineString","arcs":[1554],"id":7465,"properties":{"V":230}},{"type":"LineString","arcs":[1555],"id":7468,"properties":{"V":230}},{"type":"LineString","arcs":[1556],"id":7469,"properties":{"V":230}},{"type":"LineString","arcs":[1557],"id":7470,"properties":{"V":230}},{"type":"LineString","arcs":[1558],"id":7471,"properties":{"V":230}},{"type":"LineString","arcs":[1559],"id":7475,"properties":{"V":230}},{"type":"LineString","arcs":[1560],"id":7476,"properties":{"V":230}},{"type":"LineString","arcs":[1561],"id":7477,"properties":{"V":230}},{"type":"LineString","arcs":[1562],"id":7480,"properties":{"V":230}},{"type":"LineString","arcs":[1563],"id":7496,"properties":{"V":275}},{"type":"LineString","arcs":[1564],"id":7497,"properties":{"V":230}},{"type":"LineString","arcs":[1565],"id":7521,"properties":{"V":230}},{"type":"LineString","arcs":[1566],"id":7675,"properties":{"V":230}},{"type":"LineString","arcs":[1567],"id":7723,"properties":{"V":230}},{"type":"LineString","arcs":[1568],"id":7757,"properties":{"V":230}},{"type":"LineString","arcs":[1569],"id":7758,"properties":{"V":230}},{"type":"LineString","arcs":[1570],"id":7810,"properties":{"V":230}},{"type":"LineString","arcs":[1571],"id":7891,"properties":{"V":230}},{"type":"LineString","arcs":[1572],"id":7968,"properties":{"V":230}},{"type":"LineString","arcs":[1573],"id":8395,"properties":{"V":230}},{"type":"LineString","arcs":[1574],"id":8440,"properties":{"V":500}},{"type":"LineString","arcs":[1575],"id":8626,"properties":{"V":230}},{"type":"LineString","arcs":[1576],"id":8627,"properties":{"V":230}},{"type":"LineString","arcs":[1577],"id":8852,"properties":{"V":500}},{"type":"LineString","arcs":[1578],"id":9232,"properties":{"V":500}},{"type":"LineString","arcs":[1579],"id":9494,"properties":{"V":230}},{"type":"LineString","arcs":[1580],"id":10090,"properties":{"V":230}},{"type":"LineString","arcs":[1581],"id":10427,"properties":{"V":500}},{"type":"LineString","arcs":[1582],"id":10472,"properties":{"V":230}},{"type":"LineString","arcs":[1583],"id":10491,"properties":{"V":230}},{"type":"LineString","arcs":[1584],"id":10648,"properties":{"V":230}},{"type":"LineString","arcs":[1585],"id":10649,"properties":{"V":230}},{"type":"LineString","arcs":[1586],"id":10650,"properties":{"V":230}},{"type":"LineString","arcs":[1587],"id":10651,"properties":{"V":230}},{"type":"LineString","arcs":[1588],"id":10652,"properties":{"V":230}},{"type":"LineString","arcs":[1589],"id":10653,"properties":{"V":230}},{"type":"LineString","arcs":[1590],"id":10654,"properties":{"V":230}},{"type":"LineString","arcs":[1591],"id":10655,"properties":{"V":230}},{"type":"LineString","arcs":[1592],"id":10658,"properties":{"V":230}},{"type":"LineString","arcs":[1593],"id":10723,"properties":{"V":230}},{"type":"LineString","arcs":[1594],"id":10724,"properties":{"V":230}},{"type":"LineString","arcs":[1595],"id":10725,"properties":{"V":230}},{"type":"LineString","arcs":[1596],"id":10726,"properties":{"V":345}},{"type":"LineString","arcs":[1597],"id":10804,"properties":{"V":230}},{"type":"LineString","arcs":[1598],"id":10981,"properties":{"V":230}},{"type":"LineString","arcs":[1599],"id":11383,"properties":{"V":230}},{"type":"LineString","arcs":[1600],"id":11389,"properties":{"V":230}},{"type":"LineString","arcs":[1601],"id":11390,"properties":{"V":230}},{"type":"LineString","arcs":[1602],"id":11392,"properties":{"V":230}},{"type":"LineString","arcs":[1603],"id":11393,"properties":{"V":345}},{"type":"LineString","arcs":[1604],"id":11395,"properties":{"V":345}},{"type":"LineString","arcs":[1605],"id":11981,"properties":{"V":230}},{"type":"LineString","arcs":[1606],"id":11982,"properties":{"V":230}},{"type":"LineString","arcs":[1607],"id":12061,"properties":{"V":230}},{"type":"LineString","arcs":[1608],"id":12096,"properties":{"V":230}},{"type":"LineString","arcs":[1609],"id":12116,"properties":{"V":230}},{"type":"LineString","arcs":[1610,1611],"id":12117,"properties":{"V":230}},{"type":"LineString","arcs":[1612],"id":12118,"properties":{"V":230}},{"type":"LineString","arcs":[1613],"id":12119,"properties":{"V":230}},{"type":"LineString","arcs":[1614],"id":12142,"properties":{"V":230}},{"type":"LineString","arcs":[1615],"id":12144,"properties":{"V":230}},{"type":"LineString","arcs":[1616],"id":12145,"properties":{"V":230}},{"type":"LineString","arcs":[1617],"id":12153,"properties":{"V":230}},{"type":"LineString","arcs":[1618],"id":12258,"properties":{"V":230}},{"type":"LineString","arcs":[1619],"id":12268,"properties":{"V":230}},{"type":"LineString","arcs":[1620],"id":12315,"properties":{"V":230}},{"type":"LineString","arcs":[1621],"id":12339,"properties":{"V":230}},{"type":"LineString","arcs":[1622],"id":12371,"properties":{"V":230}},{"type":"LineString","arcs":[1623],"id":12378,"properties":{"V":230}},{"type":"LineString","arcs":[1624],"id":12386,"properties":{"V":230}},{"type":"LineString","arcs":[1625],"id":12421,"properties":{"V":345}},{"type":"LineString","arcs":[1626],"id":12546,"properties":{"V":345}},{"type":"LineString","arcs":[1627],"id":12610,"properties":{"V":345}},{"type":"LineString","arcs":[1628],"id":12635,"properties":{"V":230}},{"type":"LineString","arcs":[1629],"id":12653,"properties":{"V":230}},{"type":"LineString","arcs":[1630],"id":12654,"properties":{"V":230}},{"type":"LineString","arcs":[1631],"id":12655,"properties":{"V":230}},{"type":"LineString","arcs":[1632],"id":12682,"properties":{"V":345}},{"type":"LineString","arcs":[1633],"id":12683,"properties":{"V":345}},{"type":"LineString","arcs":[1634],"id":12691,"properties":{"V":230}},{"type":"LineString","arcs":[1635],"id":12697,"properties":{"V":230}},{"type":"LineString","arcs":[1636],"id":12698,"properties":{"V":230}},{"type":"LineString","arcs":[1637],"id":12813,"properties":{"V":230}},{"type":"LineString","arcs":[1638],"id":12824,"properties":{"V":345}},{"type":"LineString","arcs":[1639],"id":12853,"properties":{"V":230}},{"type":"LineString","arcs":[1640],"id":12863,"properties":{"V":230}},{"type":"LineString","arcs":[1641],"id":12875,"properties":{"V":345}},{"type":"LineString","arcs":[1642],"id":12903,"properties":{"V":230}},{"type":"LineString","arcs":[1643],"id":12913,"properties":{"V":230}},{"type":"LineString","arcs":[1644],"id":12920,"properties":{"V":230}},{"type":"LineString","arcs":[1645],"id":12944,"properties":{"V":345}},{"type":"LineString","arcs":[1646],"id":12953,"properties":{"V":500}},{"type":"LineString","arcs":[1647],"id":12989,"properties":{"V":230}},{"type":"LineString","arcs":[1648],"id":12992,"properties":{"V":230}},{"type":"LineString","arcs":[1649],"id":13003,"properties":{"V":230}},{"type":"LineString","arcs":[1650],"id":13016,"properties":{"V":230}},{"type":"LineString","arcs":[1651],"id":13026,"properties":{"V":345}},{"type":"LineString","arcs":[1652],"id":13046,"properties":{"V":230}},{"type":"LineString","arcs":[1653],"id":13083,"properties":{"V":230}},{"type":"LineString","arcs":[1654],"id":13090,"properties":{"V":345}},{"type":"LineString","arcs":[1655,1656],"id":13095,"properties":{"V":230}},{"type":"LineString","arcs":[1657],"id":13113,"properties":{"V":230}},{"type":"LineString","arcs":[1658],"id":13131,"properties":{"V":500}},{"type":"LineString","arcs":[1659],"id":13133,"properties":{"V":345}},{"type":"LineString","arcs":[1660,1661],"id":13134,"properties":{"V":230}},{"type":"LineString","arcs":[1662],"id":13137,"properties":{"V":230}},{"type":"LineString","arcs":[1663],"id":13143,"properties":{"V":345}},{"type":"LineString","arcs":[1664],"id":13148,"properties":{"V":500}},{"type":"LineString","arcs":[1665],"id":13162,"properties":{"V":230}},{"type":"LineString","arcs":[1666],"id":13166,"properties":{"V":345}},{"type":"LineString","arcs":[1667],"id":13172,"properties":{"V":230}},{"type":"LineString","arcs":[1668],"id":13184,"properties":{"V":230}},{"type":"LineString","arcs":[1669],"id":13190,"properties":{"V":230}},{"type":"LineString","arcs":[1670],"id":13210,"properties":{"V":500}},{"type":"LineString","arcs":[1671],"id":13220,"properties":{"V":230}},{"type":"LineString","arcs":[1672],"id":13223,"properties":{"V":230}},{"type":"LineString","arcs":[1673],"id":13242,"properties":{"V":230}},{"type":"LineString","arcs":[1674],"id":13246,"properties":{"V":500}},{"type":"LineString","arcs":[1675],"id":13247,"properties":{"V":230}},{"type":"LineString","arcs":[1676],"id":13264,"properties":{"V":230}},{"type":"LineString","arcs":[1677],"id":13280,"properties":{"V":230}},{"type":"LineString","arcs":[1678],"id":13288,"properties":{"V":500}},{"type":"LineString","arcs":[1679],"id":13295,"properties":{"V":230}},{"type":"LineString","arcs":[1680],"id":13318,"properties":{"V":230}},{"type":"LineString","arcs":[1681],"id":13332,"properties":{"V":345}},{"type":"LineString","arcs":[1682],"id":13333,"properties":{"V":230}},{"type":"LineString","arcs":[1683],"id":13340,"properties":{"V":345}},{"type":"LineString","arcs":[1684],"id":13352,"properties":{"V":345}},{"type":"LineString","arcs":[1685],"id":13354,"properties":{"V":230}},{"type":"LineString","arcs":[1686],"id":13361,"properties":{"V":230}},{"type":"LineString","arcs":[1687],"id":13364,"properties":{"V":345}},{"type":"LineString","arcs":[1688],"id":13371,"properties":{"V":230}},{"type":"LineString","arcs":[1689],"id":13372,"properties":{"V":230}},{"type":"LineString","arcs":[1690],"id":13381,"properties":{"V":345}},{"type":"LineString","arcs":[1691],"id":13386,"properties":{"V":230}},{"type":"LineString","arcs":[1692],"id":13442,"properties":{"V":230}},{"type":"LineString","arcs":[1693],"id":13446,"properties":{"V":230}},{"type":"LineString","arcs":[1694],"id":13456,"properties":{"V":345}},{"type":"LineString","arcs":[1695,1696],"id":13457,"properties":{"V":230}},{"type":"LineString","arcs":[1697],"id":13460,"properties":{"V":230}},{"type":"LineString","arcs":[1698],"id":13475,"properties":{"V":230}},{"type":"LineString","arcs":[1699],"id":13478,"properties":{"V":230}},{"type":"LineString","arcs":[1700],"id":13492,"properties":{"V":230}},{"type":"LineString","arcs":[1701],"id":13493,"properties":{"V":345}},{"type":"LineString","arcs":[1702],"id":13496,"properties":{"V":345}},{"type":"LineString","arcs":[1703,1704,1705],"id":13512,"properties":{"V":345}},{"type":"LineString","arcs":[1706],"id":13515,"properties":{"V":230}},{"type":"LineString","arcs":[1707],"id":13520,"properties":{"V":230}},{"type":"LineString","arcs":[1708],"id":13527,"properties":{"V":230}},{"type":"LineString","arcs":[1709],"id":13528,"properties":{"V":230}},{"type":"LineString","arcs":[1710],"id":13529,"properties":{"V":230}},{"type":"LineString","arcs":[1711],"id":13559,"properties":{"V":345}},{"type":"LineString","arcs":[1712],"id":13563,"properties":{"V":230}},{"type":"LineString","arcs":[1713],"id":13571,"properties":{"V":345}},{"type":"LineString","arcs":[1714],"id":13587,"properties":{"V":230}},{"type":"LineString","arcs":[1715],"id":13630,"properties":{"V":345}},{"type":"LineString","arcs":[1716],"id":13638,"properties":{"V":230}},{"type":"LineString","arcs":[1717],"id":13650,"properties":{"V":500}},{"type":"LineString","arcs":[1718],"id":13670,"properties":{"V":230}},{"type":"LineString","arcs":[1719],"id":13678,"properties":{"V":230}},{"type":"LineString","arcs":[1720],"id":13681,"properties":{"V":230}},{"type":"LineString","arcs":[1721],"id":13686,"properties":{"V":230}},{"type":"LineString","arcs":[1722],"id":13695,"properties":{"V":345}},{"type":"LineString","arcs":[1723],"id":13698,"properties":{"V":345}},{"type":"LineString","arcs":[1724],"id":13714,"properties":{"V":230}},{"type":"LineString","arcs":[1725],"id":13721,"properties":{"V":345}},{"type":"LineString","arcs":[1726],"id":13751,"properties":{"V":230}},{"type":"LineString","arcs":[1727],"id":13771,"properties":{"V":230}},{"type":"LineString","arcs":[1728],"id":13775,"properties":{"V":230}},{"type":"LineString","arcs":[1729],"id":13777,"properties":{"V":230}},{"type":"LineString","arcs":[1730],"id":13808,"properties":{"V":230}},{"type":"LineString","arcs":[1731],"id":13840,"properties":{"V":230}},{"type":"LineString","arcs":[1732],"id":13849,"properties":{"V":345}},{"type":"LineString","arcs":[1733],"id":13851,"properties":{"V":230}},{"type":"LineString","arcs":[1734],"id":13857,"properties":{"V":230}},{"type":"LineString","arcs":[1735],"id":13888,"properties":{"V":345}},{"type":"LineString","arcs":[1736,1737,1738,1739,1740,1741],"id":13912,"properties":{"V":500}},{"type":"LineString","arcs":[1742],"id":13923,"properties":{"V":230}},{"type":"LineString","arcs":[1743],"id":13926,"properties":{"V":345}},{"type":"LineString","arcs":[1744],"id":13930,"properties":{"V":500}},{"type":"LineString","arcs":[1745],"id":13943,"properties":{"V":230}},{"type":"LineString","arcs":[1746],"id":13949,"properties":{"V":345}},{"type":"LineString","arcs":[1747],"id":13961,"properties":{"V":230}},{"type":"LineString","arcs":[1748],"id":13981,"properties":{"V":345}},{"type":"LineString","arcs":[1749],"id":13987,"properties":{"V":345}},{"type":"LineString","arcs":[1750],"id":13989,"properties":{"V":345}},{"type":"LineString","arcs":[1751],"id":13990,"properties":{"V":345}},{"type":"LineString","arcs":[1752],"id":13993,"properties":{"V":230}},{"type":"LineString","arcs":[1753],"id":14002,"properties":{"V":345}},{"type":"LineString","arcs":[1754],"id":14029,"properties":{"V":345}},{"type":"LineString","arcs":[1755],"id":14049,"properties":{"V":230}},{"type":"LineString","arcs":[1756,1757,1758,1759,1760],"id":14051,"properties":{"V":500}},{"type":"LineString","arcs":[1761],"id":14056,"properties":{"V":345}},{"type":"LineString","arcs":[1762],"id":14062,"properties":{"V":230}},{"type":"LineString","arcs":[1763],"id":14079,"properties":{"V":230}},{"type":"LineString","arcs":[1764],"id":14091,"properties":{"V":230}},{"type":"LineString","arcs":[1765],"id":14095,"properties":{"V":345}},{"type":"LineString","arcs":[1766],"id":14098,"properties":{"V":230}},{"type":"LineString","arcs":[1767],"id":14100,"properties":{"V":230}},{"type":"LineString","arcs":[1768],"id":14111,"properties":{"V":230}},{"type":"LineString","arcs":[1769],"id":14112,"properties":{"V":345}},{"type":"LineString","arcs":[1770],"id":14119,"properties":{"V":345}},{"type":"LineString","arcs":[1771],"id":14125,"properties":{"V":345}},{"type":"LineString","arcs":[1772],"id":14132,"properties":{"V":230}},{"type":"LineString","arcs":[1773],"id":14137,"properties":{"V":345}},{"type":"LineString","arcs":[1774],"id":14140,"properties":{"V":345}},{"type":"LineString","arcs":[1775],"id":14141,"properties":{"V":345}},{"type":"LineString","arcs":[1776],"id":14144,"properties":{"V":230}},{"type":"LineString","arcs":[1777],"id":14153,"properties":{"V":230}},{"type":"LineString","arcs":[1778],"id":14154,"properties":{"V":230}},{"type":"LineString","arcs":[1779],"id":14156,"properties":{"V":230}},{"type":"LineString","arcs":[1780],"id":14177,"properties":{"V":345}},{"type":"LineString","arcs":[1781],"id":14208,"properties":{"V":230}},{"type":"LineString","arcs":[1782],"id":14209,"properties":{"V":500}},{"type":"LineString","arcs":[1783],"id":14210,"properties":{"V":230}},{"type":"LineString","arcs":[1784],"id":14222,"properties":{"V":230}},{"type":"LineString","arcs":[1785],"id":14223,"properties":{"V":230}},{"type":"LineString","arcs":[1786],"id":14225,"properties":{"V":230}},{"type":"LineString","arcs":[1787],"id":14244,"properties":{"V":230}},{"type":"LineString","arcs":[1788],"id":14255,"properties":{"V":345}},{"type":"LineString","arcs":[1789],"id":14265,"properties":{"V":230}},{"type":"LineString","arcs":[1790],"id":14271,"properties":{"V":345}},{"type":"LineString","arcs":[1791],"id":14272,"properties":{"V":230}},{"type":"LineString","arcs":[1792],"id":14273,"properties":{"V":345}},{"type":"LineString","arcs":[1793],"id":14279,"properties":{"V":230}},{"type":"LineString","arcs":[1794],"id":14280,"properties":{"V":230}},{"type":"LineString","arcs":[1795],"id":14292,"properties":{"V":230}},{"type":"LineString","arcs":[1796],"id":14300,"properties":{"V":230}},{"type":"LineString","arcs":[1797],"id":14306,"properties":{"V":230}},{"type":"LineString","arcs":[1798],"id":14310,"properties":{"V":345}},{"type":"LineString","arcs":[1799],"id":14311,"properties":{"V":345}},{"type":"LineString","arcs":[1800],"id":14312,"properties":{"V":230}},{"type":"LineString","arcs":[1801],"id":14326,"properties":{"V":500}},{"type":"LineString","arcs":[1802],"id":14329,"properties":{"V":230}},{"type":"LineString","arcs":[1803],"id":14332,"properties":{"V":230}},{"type":"LineString","arcs":[1804],"id":14343,"properties":{"V":345}},{"type":"LineString","arcs":[1805],"id":14350,"properties":{"V":230}},{"type":"LineString","arcs":[1806],"id":14360,"properties":{"V":230}},{"type":"LineString","arcs":[1807],"id":14364,"properties":{"V":230}},{"type":"LineString","arcs":[1808],"id":14375,"properties":{"V":230}},{"type":"LineString","arcs":[1809],"id":14382,"properties":{"V":345}},{"type":"LineString","arcs":[1810],"id":14387,"properties":{"V":500}},{"type":"LineString","arcs":[1811,1812,1813,1814],"id":14389,"properties":{"V":230}},{"type":"LineString","arcs":[1815],"id":14391,"properties":{"V":345}},{"type":"LineString","arcs":[1816],"id":14400,"properties":{"V":345}},{"type":"LineString","arcs":[1817],"id":14402,"properties":{"V":345}},{"type":"LineString","arcs":[1818],"id":14405,"properties":{"V":230}},{"type":"LineString","arcs":[1819],"id":14408,"properties":{"V":230}},{"type":"LineString","arcs":[1820],"id":14416,"properties":{"V":230}},{"type":"LineString","arcs":[1821],"id":14426,"properties":{"V":230}},{"type":"LineString","arcs":[1822],"id":14438,"properties":{"V":500}},{"type":"LineString","arcs":[1823],"id":14441,"properties":{"V":345}},{"type":"LineString","arcs":[1824],"id":14444,"properties":{"V":230}},{"type":"LineString","arcs":[1825],"id":14452,"properties":{"V":230}},{"type":"LineString","arcs":[1826],"id":14457,"properties":{"V":345}},{"type":"LineString","arcs":[1827],"id":14461,"properties":{"V":345}},{"type":"LineString","arcs":[1828],"id":14473,"properties":{"V":230}},{"type":"LineString","arcs":[1829],"id":14485,"properties":{"V":230}},{"type":"LineString","arcs":[1830],"id":14499,"properties":{"V":230}},{"type":"LineString","arcs":[1831],"id":14514,"properties":{"V":230}},{"type":"LineString","arcs":[1832],"id":14516,"properties":{"V":230}},{"type":"LineString","arcs":[1833,1834],"id":14517,"properties":{"V":230}},{"type":"LineString","arcs":[1835],"id":14519,"properties":{"V":230}},{"type":"LineString","arcs":[1836],"id":14527,"properties":{"V":500}},{"type":"LineString","arcs":[1837],"id":14532,"properties":{"V":345}},{"type":"LineString","arcs":[1838],"id":14537,"properties":{"V":230}},{"type":"LineString","arcs":[1839],"id":14550,"properties":{"V":230}},{"type":"LineString","arcs":[1840],"id":14566,"properties":{"V":500}},{"type":"LineString","arcs":[1841],"id":14572,"properties":{"V":230}},{"type":"LineString","arcs":[1842],"id":14573,"properties":{"V":500}},{"type":"LineString","arcs":[1843],"id":14590,"properties":{"V":345}},{"type":"LineString","arcs":[1844],"id":14596,"properties":{"V":230}},{"type":"LineString","arcs":[1845],"id":14602,"properties":{"V":500}},{"type":"LineString","arcs":[1846],"id":14604,"properties":{"V":500}},{"type":"LineString","arcs":[1847],"id":14610,"properties":{"V":230}},{"type":"LineString","arcs":[1848],"id":14611,"properties":{"V":345}},{"type":"LineString","arcs":[1849,1850],"id":14612,"properties":{"V":345}},{"type":"LineString","arcs":[1851],"id":14613,"properties":{"V":230}},{"type":"LineString","arcs":[1852],"id":14624,"properties":{"V":230}},{"type":"LineString","arcs":[1853],"id":14626,"properties":{"V":345}},{"type":"LineString","arcs":[1854],"id":14636,"properties":{"V":230}},{"type":"LineString","arcs":[1855],"id":14641,"properties":{"V":230}},{"type":"LineString","arcs":[1856],"id":14646,"properties":{"V":500}},{"type":"LineString","arcs":[1857,1858,1859],"id":14656,"properties":{"V":345}},{"type":"LineString","arcs":[1860],"id":14658,"properties":{"V":230}},{"type":"LineString","arcs":[1861],"id":14662,"properties":{"V":345}},{"type":"LineString","arcs":[1862],"id":14669,"properties":{"V":230}},{"type":"LineString","arcs":[1863,1864,1865],"id":14671,"properties":{"V":345}},{"type":"LineString","arcs":[1866],"id":14675,"properties":{"V":230}},{"type":"LineString","arcs":[1867],"id":14682,"properties":{"V":230}},{"type":"LineString","arcs":[1868],"id":14684,"properties":{"V":230}},{"type":"LineString","arcs":[1869],"id":14697,"properties":{"V":230}},{"type":"LineString","arcs":[1870],"id":14704,"properties":{"V":230}},{"type":"LineString","arcs":[1871],"id":14707,"properties":{"V":345}},{"type":"LineString","arcs":[1872],"id":14714,"properties":{"V":345}},{"type":"LineString","arcs":[1873,1874],"id":14718,"properties":{"V":230}},{"type":"LineString","arcs":[1875],"id":14719,"properties":{"V":345}},{"type":"LineString","arcs":[1876],"id":14730,"properties":{"V":345}},{"type":"LineString","arcs":[1877],"id":14740,"properties":{"V":230}},{"type":"LineString","arcs":[1878],"id":14751,"properties":{"V":500}},{"type":"LineString","arcs":[1879],"id":14752,"properties":{"V":230}},{"type":"LineString","arcs":[1880],"id":14758,"properties":{"V":345}},{"type":"LineString","arcs":[1881],"id":14762,"properties":{"V":230}},{"type":"LineString","arcs":[1882],"id":14764,"properties":{"V":230}},{"type":"LineString","arcs":[1883],"id":14768,"properties":{"V":345}},{"type":"LineString","arcs":[1884],"id":14775,"properties":{"V":345}},{"type":"LineString","arcs":[1885],"id":14808,"properties":{"V":345}},{"type":"LineString","arcs":[1886],"id":14816,"properties":{"V":345}},{"type":"LineString","arcs":[1887],"id":14822,"properties":{"V":230}},{"type":"LineString","arcs":[1888],"id":14827,"properties":{"V":345}},{"type":"LineString","arcs":[1889],"id":14829,"properties":{"V":230}},{"type":"LineString","arcs":[1890],"id":14838,"properties":{"V":230}},{"type":"LineString","arcs":[1891],"id":14849,"properties":{"V":500}},{"type":"LineString","arcs":[1892],"id":14851,"properties":{"V":230}},{"type":"LineString","arcs":[1893],"id":14852,"properties":{"V":345}},{"type":"LineString","arcs":[1894],"id":14863,"properties":{"V":230}},{"type":"LineString","arcs":[1895],"id":14865,"properties":{"V":230}},{"type":"LineString","arcs":[1896],"id":14867,"properties":{"V":230}},{"type":"LineString","arcs":[1897],"id":14868,"properties":{"V":230}},{"type":"LineString","arcs":[1898],"id":14876,"properties":{"V":230}},{"type":"LineString","arcs":[1899],"id":14891,"properties":{"V":345}},{"type":"LineString","arcs":[1900,1901,1902,1903,1904,1905,1906,1907],"id":14892,"properties":{"V":345}},{"type":"LineString","arcs":[1908],"id":14895,"properties":{"V":500}},{"type":"LineString","arcs":[1909],"id":14896,"properties":{"V":500}},{"type":"LineString","arcs":[1910],"id":14898,"properties":{"V":230}},{"type":"LineString","arcs":[1911],"id":14933,"properties":{"V":230}},{"type":"LineString","arcs":[1912],"id":14939,"properties":{"V":230}},{"type":"LineString","arcs":[1913],"id":14942,"properties":{"V":230}},{"type":"LineString","arcs":[1914],"id":14946,"properties":{"V":345}},{"type":"LineString","arcs":[1915],"id":14953,"properties":{"V":500}},{"type":"LineString","arcs":[1916],"id":14964,"properties":{"V":345}},{"type":"LineString","arcs":[1917],"id":14967,"properties":{"V":345}},{"type":"LineString","arcs":[1918],"id":14974,"properties":{"V":230}},{"type":"LineString","arcs":[1919],"id":14975,"properties":{"V":230}},{"type":"LineString","arcs":[1920],"id":14976,"properties":{"V":230}},{"type":"LineString","arcs":[1921],"id":14977,"properties":{"V":345}},{"type":"LineString","arcs":[1922],"id":14980,"properties":{"V":230}},{"type":"LineString","arcs":[1923],"id":14984,"properties":{"V":230}},{"type":"LineString","arcs":[1924],"id":14990,"properties":{"V":230}},{"type":"LineString","arcs":[1925],"id":14991,"properties":{"V":230}},{"type":"LineString","arcs":[1926,1927,1928],"id":14992,"properties":{"V":500}},{"type":"LineString","arcs":[1929],"id":14996,"properties":{"V":230}},{"type":"LineString","arcs":[1930],"id":15002,"properties":{"V":230}},{"type":"LineString","arcs":[1931],"id":15005,"properties":{"V":230}},{"type":"LineString","arcs":[1932],"id":15013,"properties":{"V":230}},{"type":"LineString","arcs":[1933],"id":15022,"properties":{"V":230}},{"type":"LineString","arcs":[1934],"id":15023,"properties":{"V":345}},{"type":"LineString","arcs":[1935],"id":15047,"properties":{"V":345}},{"type":"LineString","arcs":[1936],"id":15054,"properties":{"V":230}},{"type":"LineString","arcs":[1937],"id":15063,"properties":{"V":345}},{"type":"LineString","arcs":[1938],"id":15079,"properties":{"V":230}},{"type":"LineString","arcs":[1939],"id":15083,"properties":{"V":230}},{"type":"LineString","arcs":[1940,1941],"id":15084,"properties":{"V":230}},{"type":"LineString","arcs":[1942],"id":15108,"properties":{"V":345}},{"type":"LineString","arcs":[1943],"id":15148,"properties":{"V":230}},{"type":"LineString","arcs":[1944],"id":15152,"properties":{"V":345}},{"type":"LineString","arcs":[1945],"id":15162,"properties":{"V":230}},{"type":"LineString","arcs":[1946],"id":15174,"properties":{"V":230}},{"type":"LineString","arcs":[1947],"id":15176,"properties":{"V":230}},{"type":"LineString","arcs":[1948],"id":15186,"properties":{"V":345}},{"type":"LineString","arcs":[1949],"id":15195,"properties":{"V":345}},{"type":"LineString","arcs":[1950,1951],"id":15202,"properties":{"V":230}},{"type":"LineString","arcs":[1952],"id":15216,"properties":{"V":230}},{"type":"LineString","arcs":[1953],"id":15221,"properties":{"V":230}},{"type":"LineString","arcs":[1954],"id":15234,"properties":{"V":230}},{"type":"LineString","arcs":[1955],"id":15236,"properties":{"V":230}},{"type":"LineString","arcs":[1956],"id":15237,"properties":{"V":345}},{"type":"LineString","arcs":[1957],"id":15270,"properties":{"V":230}},{"type":"LineString","arcs":[1958],"id":15280,"properties":{"V":345}},{"type":"LineString","arcs":[1959],"id":15282,"properties":{"V":345}},{"type":"LineString","arcs":[1960],"id":15307,"properties":{"V":230}},{"type":"LineString","arcs":[1961],"id":15310,"properties":{"V":345}},{"type":"LineString","arcs":[1962],"id":15327,"properties":{"V":345}},{"type":"LineString","arcs":[1963],"id":15328,"properties":{"V":230}},{"type":"LineString","arcs":[1964],"id":15339,"properties":{"V":230}},{"type":"LineString","arcs":[1965],"id":15347,"properties":{"V":345}},{"type":"LineString","arcs":[1966],"id":15348,"properties":{"V":230}},{"type":"LineString","arcs":[1967],"id":15353,"properties":{"V":230}},{"type":"LineString","arcs":[1968],"id":15354,"properties":{"V":345}},{"type":"LineString","arcs":[1969],"id":15357,"properties":{"V":230}},{"type":"LineString","arcs":[1970],"id":15363,"properties":{"V":230}},{"type":"LineString","arcs":[1971],"id":15367,"properties":{"V":230}},{"type":"LineString","arcs":[1972],"id":15368,"properties":{"V":345}},{"type":"LineString","arcs":[1973],"id":15381,"properties":{"V":230}},{"type":"LineString","arcs":[1974],"id":15384,"properties":{"V":230}},{"type":"LineString","arcs":[1975],"id":15393,"properties":{"V":230}},{"type":"LineString","arcs":[1976],"id":15394,"properties":{"V":230}},{"type":"LineString","arcs":[1977,1978],"id":15407,"properties":{"V":345}},{"type":"LineString","arcs":[1979],"id":15413,"properties":{"V":500}},{"type":"LineString","arcs":[1980],"id":15414,"properties":{"V":345}},{"type":"LineString","arcs":[1981],"id":15417,"properties":{"V":230}},{"type":"LineString","arcs":[1982],"id":15420,"properties":{"V":230}},{"type":"LineString","arcs":[1983],"id":15430,"properties":{"V":230}},{"type":"LineString","arcs":[1984],"id":15433,"properties":{"V":230}},{"type":"LineString","arcs":[1985],"id":15437,"properties":{"V":345}},{"type":"LineString","arcs":[1986],"id":15439,"properties":{"V":230}},{"type":"LineString","arcs":[1987],"id":15440,"properties":{"V":230}},{"type":"LineString","arcs":[1988],"id":15441,"properties":{"V":230}},{"type":"LineString","arcs":[1989],"id":15452,"properties":{"V":345}},{"type":"LineString","arcs":[1990],"id":15456,"properties":{"V":230}},{"type":"LineString","arcs":[1991],"id":15475,"properties":{"V":230}},{"type":"LineString","arcs":[1992],"id":15479,"properties":{"V":230}},{"type":"LineString","arcs":[1993],"id":15489,"properties":{"V":345}},{"type":"LineString","arcs":[1994],"id":15495,"properties":{"V":345}},{"type":"LineString","arcs":[1995],"id":15534,"properties":{"V":230}},{"type":"LineString","arcs":[1996],"id":15536,"properties":{"V":230}},{"type":"LineString","arcs":[1997],"id":15537,"properties":{"V":230}},{"type":"LineString","arcs":[1998],"id":15545,"properties":{"V":345}},{"type":"LineString","arcs":[1999],"id":15554,"properties":{"V":230}},{"type":"LineString","arcs":[2000],"id":15564,"properties":{"V":230}},{"type":"LineString","arcs":[2001],"id":15567,"properties":{"V":230}},{"type":"LineString","arcs":[2002],"id":15581,"properties":{"V":500}},{"type":"LineString","arcs":[2003],"id":15609,"properties":{"V":345}},{"type":"LineString","arcs":[2004],"id":15610,"properties":{"V":230}},{"type":"LineString","arcs":[2005],"id":15617,"properties":{"V":230}},{"type":"LineString","arcs":[2006],"id":15621,"properties":{"V":230}},{"type":"LineString","arcs":[2007],"id":15622,"properties":{"V":230}},{"type":"LineString","arcs":[2008],"id":15623,"properties":{"V":230}},{"type":"LineString","arcs":[2009],"id":15624,"properties":{"V":230}},{"type":"LineString","arcs":[2010],"id":15627,"properties":{"V":230}},{"type":"LineString","arcs":[2011],"id":15631,"properties":{"V":345}},{"type":"LineString","arcs":[2012],"id":15632,"properties":{"V":230}},{"type":"LineString","arcs":[2013,2014],"id":15634,"properties":{"V":500}},{"type":"LineString","arcs":[2015,2016],"id":15636,"properties":{"V":345}},{"type":"LineString","arcs":[2017,2018],"id":15657,"properties":{"V":345}},{"type":"LineString","arcs":[2019],"id":15658,"properties":{"V":345}},{"type":"LineString","arcs":[2020],"id":15659,"properties":{"V":230}},{"type":"LineString","arcs":[2021],"id":15661,"properties":{"V":230}},{"type":"LineString","arcs":[2022],"id":15664,"properties":{"V":230}},{"type":"LineString","arcs":[2023],"id":15680,"properties":{"V":230}},{"type":"LineString","arcs":[2024],"id":15697,"properties":{"V":345}},{"type":"LineString","arcs":[2025],"id":15700,"properties":{"V":230}},{"type":"LineString","arcs":[2026],"id":15702,"properties":{"V":230}},{"type":"LineString","arcs":[2027],"id":15716,"properties":{"V":345}},{"type":"LineString","arcs":[2028],"id":15717,"properties":{"V":230}},{"type":"LineString","arcs":[2029],"id":15718,"properties":{"V":230}},{"type":"LineString","arcs":[2030],"id":15732,"properties":{"V":345}},{"type":"LineString","arcs":[2031],"id":15735,"properties":{"V":345}},{"type":"LineString","arcs":[2032],"id":15739,"properties":{"V":345}},{"type":"LineString","arcs":[2033],"id":15748,"properties":{"V":345}},{"type":"LineString","arcs":[2034],"id":15759,"properties":{"V":230}},{"type":"LineString","arcs":[2035],"id":15760,"properties":{"V":230}},{"type":"LineString","arcs":[2036],"id":15765,"properties":{"V":345}},{"type":"LineString","arcs":[2037],"id":15769,"properties":{"V":230}},{"type":"LineString","arcs":[2038],"id":15778,"properties":{"V":230}},{"type":"MultiLineString","arcs":[[2039],[2040]],"id":15791,"properties":{"V":345}},{"type":"LineString","arcs":[2041],"id":15816,"properties":{"V":230}},{"type":"LineString","arcs":[2042],"id":15838,"properties":{"V":345}},{"type":"LineString","arcs":[2043],"id":15843,"properties":{"V":230}},{"type":"LineString","arcs":[2044],"id":15847,"properties":{"V":230}},{"type":"LineString","arcs":[2045],"id":15849,"properties":{"V":345}},{"type":"LineString","arcs":[2046],"id":15852,"properties":{"V":230}},{"type":"LineString","arcs":[-1662,2047],"id":15855,"properties":{"V":230}},{"type":"LineString","arcs":[2048],"id":15861,"properties":{"V":345}},{"type":"LineString","arcs":[2049],"id":15867,"properties":{"V":230}},{"type":"LineString","arcs":[2050],"id":15872,"properties":{"V":230}},{"type":"LineString","arcs":[2051],"id":15876,"properties":{"V":230}},{"type":"LineString","arcs":[2052],"id":15878,"properties":{"V":230}},{"type":"LineString","arcs":[2053],"id":15888,"properties":{"V":345}},{"type":"LineString","arcs":[2054],"id":15898,"properties":{"V":345}},{"type":"LineString","arcs":[2055,2056],"id":15902,"properties":{"V":345}},{"type":"LineString","arcs":[2057],"id":15912,"properties":{"V":230}},{"type":"LineString","arcs":[2058],"id":15914,"properties":{"V":345}},{"type":"LineString","arcs":[2059],"id":15916,"properties":{"V":500}},{"type":"LineString","arcs":[2060],"id":15921,"properties":{"V":345}},{"type":"LineString","arcs":[2061],"id":15922,"properties":{"V":345}},{"type":"LineString","arcs":[2062],"id":15925,"properties":{"V":345}},{"type":"LineString","arcs":[2063],"id":15934,"properties":{"V":230}},{"type":"LineString","arcs":[2064],"id":15939,"properties":{"V":230}},{"type":"LineString","arcs":[2065],"id":15959,"properties":{"V":230}},{"type":"LineString","arcs":[2066],"id":15961,"properties":{"V":230}},{"type":"LineString","arcs":[2067],"id":15966,"properties":{"V":230}},{"type":"MultiLineString","arcs":[[2068],[2069]],"id":15967,"properties":{"V":230}},{"type":"LineString","arcs":[2070],"id":15968,"properties":{"V":230}},{"type":"LineString","arcs":[2071],"id":15971,"properties":{"V":500}},{"type":"LineString","arcs":[2072],"id":15976,"properties":{"V":230}},{"type":"LineString","arcs":[2073],"id":15977,"properties":{"V":500}},{"type":"LineString","arcs":[2074],"id":15986,"properties":{"V":345}},{"type":"LineString","arcs":[2075],"id":15994,"properties":{"V":230}},{"type":"LineString","arcs":[2076,2077,2078],"id":16012,"properties":{"V":345}},{"type":"LineString","arcs":[2079],"id":16014,"properties":{"V":230}},{"type":"LineString","arcs":[2080],"id":16015,"properties":{"V":345}},{"type":"LineString","arcs":[2081],"id":16027,"properties":{"V":230}},{"type":"LineString","arcs":[2082],"id":16033,"properties":{"V":230}},{"type":"LineString","arcs":[2083,2084,2085,2086],"id":16035,"properties":{"V":230}},{"type":"LineString","arcs":[2087],"id":16039,"properties":{"V":500}},{"type":"LineString","arcs":[2088],"id":16082,"properties":{"V":500}},{"type":"LineString","arcs":[2089],"id":16090,"properties":{"V":345}},{"type":"LineString","arcs":[2090],"id":16092,"properties":{"V":230}},{"type":"LineString","arcs":[2091],"id":16100,"properties":{"V":230}},{"type":"LineString","arcs":[2092],"id":16117,"properties":{"V":230}},{"type":"LineString","arcs":[2093],"id":16121,"properties":{"V":230}},{"type":"LineString","arcs":[2094],"id":16125,"properties":{"V":230}},{"type":"LineString","arcs":[2095],"id":16128,"properties":{"V":230}},{"type":"LineString","arcs":[2096],"id":16147,"properties":{"V":230}},{"type":"LineString","arcs":[2097],"id":16166,"properties":{"V":345}},{"type":"LineString","arcs":[2098],"id":16172,"properties":{"V":230}},{"type":"LineString","arcs":[2099],"id":16196,"properties":{"V":345}},{"type":"LineString","arcs":[2100],"id":16199,"properties":{"V":230}},{"type":"LineString","arcs":[2101,2102],"id":16202,"properties":{"V":230}},{"type":"LineString","arcs":[2103],"id":16207,"properties":{"V":230}},{"type":"LineString","arcs":[2104],"id":16209,"properties":{"V":230}},{"type":"LineString","arcs":[2105],"id":16213,"properties":{"V":230}},{"type":"LineString","arcs":[2106],"id":16216,"properties":{"V":500}},{"type":"LineString","arcs":[2107],"id":16217,"properties":{"V":230}},{"type":"LineString","arcs":[2108],"id":16221,"properties":{"V":345}},{"type":"LineString","arcs":[2109],"id":16232,"properties":{"V":230}},{"type":"LineString","arcs":[2110],"id":16237,"properties":{"V":230}},{"type":"LineString","arcs":[2111],"id":16238,"properties":{"V":230}},{"type":"LineString","arcs":[2112],"id":16239,"properties":{"V":345}},{"type":"LineString","arcs":[2113,2114],"id":16245,"properties":{"V":230}},{"type":"LineString","arcs":[2115],"id":16251,"properties":{"V":230}},{"type":"LineString","arcs":[2116],"id":16263,"properties":{"V":345}},{"type":"LineString","arcs":[2117],"id":16268,"properties":{"V":230}},{"type":"LineString","arcs":[2118],"id":16272,"properties":{"V":345}},{"type":"LineString","arcs":[2119],"id":16279,"properties":{"V":230}},{"type":"LineString","arcs":[2120],"id":16294,"properties":{"V":230}},{"type":"LineString","arcs":[2121],"id":16319,"properties":{"V":230}},{"type":"LineString","arcs":[2122],"id":16335,"properties":{"V":345}},{"type":"LineString","arcs":[2123],"id":16337,"properties":{"V":345}},{"type":"LineString","arcs":[2124],"id":16338,"properties":{"V":345}},{"type":"LineString","arcs":[2125],"id":16342,"properties":{"V":230}},{"type":"LineString","arcs":[2126],"id":16346,"properties":{"V":230}},{"type":"LineString","arcs":[2127,2128,2129,2130],"id":16354,"properties":{"V":230}},{"type":"LineString","arcs":[2131],"id":16362,"properties":{"V":345}},{"type":"LineString","arcs":[2132],"id":16375,"properties":{"V":230}},{"type":"LineString","arcs":[2133],"id":16381,"properties":{"V":230}},{"type":"LineString","arcs":[2134],"id":16411,"properties":{"V":230}},{"type":"LineString","arcs":[2135],"id":16413,"properties":{"V":345}},{"type":"LineString","arcs":[2136],"id":16421,"properties":{"V":345}},{"type":"LineString","arcs":[2137],"id":16444,"properties":{"V":500}},{"type":"LineString","arcs":[2138],"id":16459,"properties":{"V":230}},{"type":"LineString","arcs":[2139],"id":16461,"properties":{"V":230}},{"type":"LineString","arcs":[2140],"id":16462,"properties":{"V":230}},{"type":"LineString","arcs":[2141],"id":16470,"properties":{"V":345}},{"type":"LineString","arcs":[2142],"id":16480,"properties":{"V":500}},{"type":"LineString","arcs":[2143],"id":16508,"properties":{"V":345}},{"type":"LineString","arcs":[2144],"id":16513,"properties":{"V":230}},{"type":"LineString","arcs":[2145],"id":16518,"properties":{"V":230}},{"type":"LineString","arcs":[2146,2147,2148],"id":16535,"properties":{"V":230}},{"type":"LineString","arcs":[2149],"id":16551,"properties":{"V":345}},{"type":"LineString","arcs":[2150],"id":16554,"properties":{"V":345}},{"type":"LineString","arcs":[2151],"id":16560,"properties":{"V":230}},{"type":"LineString","arcs":[2152,2153],"id":16562,"properties":{"V":345}},{"type":"LineString","arcs":[2154],"id":16567,"properties":{"V":230}},{"type":"LineString","arcs":[2155],"id":16568,"properties":{"V":345}},{"type":"LineString","arcs":[2156],"id":16571,"properties":{"V":230}},{"type":"LineString","arcs":[2157,2158,2159],"id":16573,"properties":{"V":345}},{"type":"LineString","arcs":[2160],"id":16593,"properties":{"V":230}},{"type":"LineString","arcs":[2161],"id":16598,"properties":{"V":230}},{"type":"LineString","arcs":[2162],"id":16600,"properties":{"V":345}},{"type":"LineString","arcs":[2163],"id":16602,"properties":{"V":230}},{"type":"LineString","arcs":[2164],"id":16612,"properties":{"V":230}},{"type":"LineString","arcs":[2165],"id":16619,"properties":{"V":230}},{"type":"LineString","arcs":[2166],"id":16624,"properties":{"V":230}},{"type":"LineString","arcs":[2167,2168],"id":16636,"properties":{"V":345}},{"type":"LineString","arcs":[2169],"id":16655,"properties":{"V":500}},{"type":"LineString","arcs":[2170],"id":16666,"properties":{"V":230}},{"type":"LineString","arcs":[2171],"id":16681,"properties":{"V":230}},{"type":"LineString","arcs":[2172],"id":16684,"properties":{"V":230}},{"type":"LineString","arcs":[2173],"id":16709,"properties":{"V":230}},{"type":"LineString","arcs":[2174],"id":16726,"properties":{"V":230}},{"type":"LineString","arcs":[2175],"id":16743,"properties":{"V":345}},{"type":"LineString","arcs":[2176],"id":16749,"properties":{"V":345}},{"type":"LineString","arcs":[2177],"id":16760,"properties":{"V":345}},{"type":"LineString","arcs":[2178],"id":16765,"properties":{"V":230}},{"type":"LineString","arcs":[2179],"id":16771,"properties":{"V":345}},{"type":"LineString","arcs":[2180],"id":16774,"properties":{"V":230}},{"type":"LineString","arcs":[2181],"id":16777,"properties":{"V":230}},{"type":"LineString","arcs":[2182],"id":16781,"properties":{"V":230}},{"type":"LineString","arcs":[2183],"id":16807,"properties":{"V":230}},{"type":"LineString","arcs":[2184],"id":16811,"properties":{"V":345}},{"type":"LineString","arcs":[2185],"id":16819,"properties":{"V":345}},{"type":"LineString","arcs":[2186],"id":16821,"properties":{"V":345}},{"type":"LineString","arcs":[2187],"id":16824,"properties":{"V":230}},{"type":"LineString","arcs":[2188],"id":16829,"properties":{"V":345}},{"type":"LineString","arcs":[2189],"id":16830,"properties":{"V":345}},{"type":"LineString","arcs":[2190],"id":16842,"properties":{"V":230}},{"type":"LineString","arcs":[2191,2192,2193,2194,2195,2196,2197,2198,2199],"id":16843,"properties":{"V":345}},{"type":"LineString","arcs":[2200],"id":16844,"properties":{"V":230}},{"type":"LineString","arcs":[2201],"id":16851,"properties":{"V":230}},{"type":"LineString","arcs":[2202],"id":16855,"properties":{"V":230}},{"type":"LineString","arcs":[2203],"id":16859,"properties":{"V":230}},{"type":"LineString","arcs":[2204],"id":16861,"properties":{"V":345}},{"type":"LineString","arcs":[2205],"id":16864,"properties":{"V":230}},{"type":"LineString","arcs":[2206],"id":16879,"properties":{"V":230}},{"type":"LineString","arcs":[2207],"id":16887,"properties":{"V":345}},{"type":"LineString","arcs":[2208],"id":16889,"properties":{"V":345}},{"type":"LineString","arcs":[2209],"id":16893,"properties":{"V":500}},{"type":"LineString","arcs":[2210],"id":16896,"properties":{"V":230}},{"type":"LineString","arcs":[2211],"id":16898,"properties":{"V":230}},{"type":"LineString","arcs":[2212],"id":16899,"properties":{"V":345}},{"type":"LineString","arcs":[2213,2214,2215],"id":16915,"properties":{"V":500}},{"type":"LineString","arcs":[2216],"id":16918,"properties":{"V":230}},{"type":"LineString","arcs":[2217],"id":16924,"properties":{"V":230}},{"type":"LineString","arcs":[2218],"id":16935,"properties":{"V":345}},{"type":"LineString","arcs":[2219],"id":16936,"properties":{"V":500}},{"type":"LineString","arcs":[2220],"id":16940,"properties":{"V":345}},{"type":"LineString","arcs":[2221],"id":16943,"properties":{"V":230}},{"type":"LineString","arcs":[2222],"id":16958,"properties":{"V":230}},{"type":"LineString","arcs":[2223],"id":16969,"properties":{"V":345}},{"type":"LineString","arcs":[2224],"id":16971,"properties":{"V":345}},{"type":"LineString","arcs":[2225],"id":16982,"properties":{"V":230}},{"type":"LineString","arcs":[2226],"id":16985,"properties":{"V":345}},{"type":"LineString","arcs":[2227],"id":16989,"properties":{"V":230}},{"type":"LineString","arcs":[2228],"id":17016,"properties":{"V":230}},{"type":"LineString","arcs":[2229],"id":17024,"properties":{"V":230}},{"type":"LineString","arcs":[2230],"id":17027,"properties":{"V":345}},{"type":"LineString","arcs":[2231],"id":17033,"properties":{"V":230}},{"type":"LineString","arcs":[2232],"id":17037,"properties":{"V":345}},{"type":"LineString","arcs":[2233],"id":17054,"properties":{"V":345}},{"type":"LineString","arcs":[2234],"id":17075,"properties":{"V":230}},{"type":"LineString","arcs":[2235],"id":17078,"properties":{"V":230}},{"type":"LineString","arcs":[2236],"id":17083,"properties":{"V":230}},{"type":"LineString","arcs":[2237],"id":17095,"properties":{"V":345}},{"type":"LineString","arcs":[2238],"id":17097,"properties":{"V":230}},{"type":"LineString","arcs":[2239],"id":17099,"properties":{"V":230}},{"type":"LineString","arcs":[2240],"id":17105,"properties":{"V":230}},{"type":"LineString","arcs":[2241],"id":17114,"properties":{"V":230}},{"type":"LineString","arcs":[2242],"id":17122,"properties":{"V":230}},{"type":"LineString","arcs":[2243],"id":17125,"properties":{"V":345}},{"type":"LineString","arcs":[2244,2245,2246],"id":17134,"properties":{"V":230}},{"type":"MultiLineString","arcs":[[2247],[2248]],"id":17138,"properties":{"V":345}},{"type":"LineString","arcs":[2249],"id":17141,"properties":{"V":230}},{"type":"LineString","arcs":[2250],"id":17157,"properties":{"V":230}},{"type":"LineString","arcs":[2251],"id":17160,"properties":{"V":230}},{"type":"LineString","arcs":[2252],"id":17167,"properties":{"V":500}},{"type":"LineString","arcs":[2253],"id":17170,"properties":{"V":230}},{"type":"LineString","arcs":[2254],"id":17181,"properties":{"V":230}},{"type":"LineString","arcs":[2255],"id":17184,"properties":{"V":345}},{"type":"LineString","arcs":[2256],"id":17187,"properties":{"V":500}},{"type":"LineString","arcs":[2257],"id":17188,"properties":{"V":345}},{"type":"LineString","arcs":[2258],"id":17194,"properties":{"V":230}},{"type":"LineString","arcs":[2259],"id":17198,"properties":{"V":230}},{"type":"LineString","arcs":[2260],"id":17201,"properties":{"V":230}},{"type":"LineString","arcs":[2261],"id":17203,"properties":{"V":230}},{"type":"LineString","arcs":[2262],"id":17206,"properties":{"V":230}},{"type":"LineString","arcs":[2263],"id":17207,"properties":{"V":345}},{"type":"LineString","arcs":[2264,2265,2266],"id":17210,"properties":{"V":230}},{"type":"LineString","arcs":[2267,2268,2269],"id":17215,"properties":{"V":345}},{"type":"LineString","arcs":[2270],"id":17223,"properties":{"V":500}},{"type":"LineString","arcs":[2271],"id":17232,"properties":{"V":230}},{"type":"LineString","arcs":[2272],"id":17234,"properties":{"V":500}},{"type":"LineString","arcs":[2273],"id":17242,"properties":{"V":345}},{"type":"LineString","arcs":[2274],"id":17243,"properties":{"V":230}},{"type":"LineString","arcs":[2275],"id":17253,"properties":{"V":345}},{"type":"LineString","arcs":[2276],"id":17262,"properties":{"V":230}},{"type":"LineString","arcs":[2277],"id":17267,"properties":{"V":500}},{"type":"LineString","arcs":[2278],"id":17269,"properties":{"V":345}},{"type":"LineString","arcs":[2279],"id":17276,"properties":{"V":230}},{"type":"LineString","arcs":[2280],"id":17285,"properties":{"V":230}},{"type":"LineString","arcs":[2281],"id":17286,"properties":{"V":345}},{"type":"LineString","arcs":[2282],"id":17289,"properties":{"V":345}},{"type":"LineString","arcs":[2283],"id":17291,"properties":{"V":230}},{"type":"LineString","arcs":[2284],"id":17292,"properties":{"V":230}},{"type":"LineString","arcs":[2285],"id":17305,"properties":{"V":345}},{"type":"LineString","arcs":[2286],"id":17311,"properties":{"V":345}},{"type":"LineString","arcs":[2287],"id":17328,"properties":{"V":230}},{"type":"LineString","arcs":[2288],"id":17329,"properties":{"V":230}},{"type":"LineString","arcs":[2289],"id":17331,"properties":{"V":230}},{"type":"LineString","arcs":[2290],"id":17339,"properties":{"V":500}},{"type":"LineString","arcs":[2291],"id":17342,"properties":{"V":345}},{"type":"LineString","arcs":[2292],"id":17352,"properties":{"V":230}},{"type":"LineString","arcs":[2293,2294],"id":17365,"properties":{"V":345}},{"type":"LineString","arcs":[2295],"id":17381,"properties":{"V":345}},{"type":"LineString","arcs":[2296],"id":17385,"properties":{"V":345}},{"type":"LineString","arcs":[2297],"id":17404,"properties":{"V":230}},{"type":"LineString","arcs":[2298],"id":17423,"properties":{"V":230}},{"type":"LineString","arcs":[2299],"id":17427,"properties":{"V":345}},{"type":"LineString","arcs":[2300],"id":17438,"properties":{"V":500}},{"type":"LineString","arcs":[2301],"id":17443,"properties":{"V":500}},{"type":"LineString","arcs":[2302],"id":17454,"properties":{"V":345}},{"type":"LineString","arcs":[2303],"id":17462,"properties":{"V":345}},{"type":"LineString","arcs":[2304],"id":17465,"properties":{"V":230}},{"type":"LineString","arcs":[2305],"id":17467,"properties":{"V":230}},{"type":"LineString","arcs":[2306],"id":17469,"properties":{"V":230}},{"type":"LineString","arcs":[2307],"id":17477,"properties":{"V":230}},{"type":"LineString","arcs":[2308],"id":17489,"properties":{"V":345}},{"type":"LineString","arcs":[2309],"id":17507,"properties":{"V":230}},{"type":"LineString","arcs":[2310],"id":17512,"properties":{"V":230}},{"type":"LineString","arcs":[2311],"id":17519,"properties":{"V":345}},{"type":"LineString","arcs":[2312],"id":17535,"properties":{"V":230}},{"type":"LineString","arcs":[2313],"id":17548,"properties":{"V":345}},{"type":"LineString","arcs":[2314],"id":17568,"properties":{"V":230}},{"type":"LineString","arcs":[2315],"id":17572,"properties":{"V":230}},{"type":"LineString","arcs":[2316],"id":17576,"properties":{"V":345}},{"type":"LineString","arcs":[2317,2318],"id":17578,"properties":{"V":345}},{"type":"LineString","arcs":[2319],"id":17585,"properties":{"V":230}},{"type":"LineString","arcs":[2320],"id":17593,"properties":{"V":345}},{"type":"LineString","arcs":[2321],"id":17600,"properties":{"V":230}},{"type":"LineString","arcs":[2322],"id":17605,"properties":{"V":500}},{"type":"LineString","arcs":[2323],"id":17607,"properties":{"V":345}},{"type":"LineString","arcs":[2324],"id":17609,"properties":{"V":345}},{"type":"LineString","arcs":[2325],"id":17612,"properties":{"V":230}},{"type":"LineString","arcs":[2326],"id":17618,"properties":{"V":230}},{"type":"LineString","arcs":[2327],"id":17619,"properties":{"V":500}},{"type":"LineString","arcs":[2328],"id":17629,"properties":{"V":230}},{"type":"LineString","arcs":[2329],"id":17638,"properties":{"V":230}},{"type":"LineString","arcs":[2330],"id":17653,"properties":{"V":230}},{"type":"LineString","arcs":[2331],"id":17665,"properties":{"V":500}},{"type":"LineString","arcs":[2332],"id":17671,"properties":{"V":230}},{"type":"LineString","arcs":[2333],"id":17673,"properties":{"V":230}},{"type":"LineString","arcs":[2334],"id":17679,"properties":{"V":345}},{"type":"LineString","arcs":[2335],"id":17680,"properties":{"V":345}},{"type":"LineString","arcs":[2336],"id":17681,"properties":{"V":230}},{"type":"LineString","arcs":[2337],"id":17685,"properties":{"V":230}},{"type":"LineString","arcs":[2338],"id":17691,"properties":{"V":500}},{"type":"LineString","arcs":[2339],"id":17700,"properties":{"V":500}},{"type":"LineString","arcs":[2340],"id":17702,"properties":{"V":345}},{"type":"LineString","arcs":[2341],"id":17704,"properties":{"V":345}},{"type":"LineString","arcs":[2342],"id":17708,"properties":{"V":345}},{"type":"LineString","arcs":[2343],"id":17714,"properties":{"V":345}},{"type":"LineString","arcs":[2344],"id":17724,"properties":{"V":230}},{"type":"LineString","arcs":[2345],"id":17726,"properties":{"V":230}},{"type":"LineString","arcs":[2346],"id":17737,"properties":{"V":230}},{"type":"LineString","arcs":[2347],"id":17750,"properties":{"V":345}},{"type":"LineString","arcs":[2348],"id":17768,"properties":{"V":230}},{"type":"LineString","arcs":[2349],"id":17779,"properties":{"V":230}},{"type":"LineString","arcs":[2350],"id":17803,"properties":{"V":230}},{"type":"LineString","arcs":[2351],"id":17814,"properties":{"V":345}},{"type":"LineString","arcs":[2352],"id":17821,"properties":{"V":345}},{"type":"LineString","arcs":[2353],"id":17831,"properties":{"V":345}},{"type":"LineString","arcs":[2354],"id":17832,"properties":{"V":230}},{"type":"LineString","arcs":[2355],"id":17839,"properties":{"V":230}},{"type":"LineString","arcs":[2356],"id":17848,"properties":{"V":230}},{"type":"LineString","arcs":[2357],"id":17850,"properties":{"V":230}},{"type":"LineString","arcs":[2358],"id":17854,"properties":{"V":345}},{"type":"LineString","arcs":[2359],"id":17859,"properties":{"V":345}},{"type":"LineString","arcs":[2360],"id":17862,"properties":{"V":230}},{"type":"LineString","arcs":[2361],"id":17894,"properties":{"V":500}},{"type":"LineString","arcs":[2362],"id":17909,"properties":{"V":345}},{"type":"LineString","arcs":[2363],"id":17914,"properties":{"V":345}},{"type":"LineString","arcs":[2364],"id":17920,"properties":{"V":230}},{"type":"LineString","arcs":[2365],"id":17934,"properties":{"V":345}},{"type":"LineString","arcs":[2366],"id":17935,"properties":{"V":230}},{"type":"LineString","arcs":[2367],"id":17937,"properties":{"V":345}},{"type":"LineString","arcs":[2368],"id":17951,"properties":{"V":230}},{"type":"LineString","arcs":[2369,2370],"id":17953,"properties":{"V":345}},{"type":"LineString","arcs":[2371],"id":17957,"properties":{"V":345}},{"type":"LineString","arcs":[2372],"id":17973,"properties":{"V":230}},{"type":"LineString","arcs":[2373],"id":17974,"properties":{"V":230}},{"type":"LineString","arcs":[2374],"id":17975,"properties":{"V":500}},{"type":"LineString","arcs":[2375],"id":17976,"properties":{"V":230}},{"type":"LineString","arcs":[2376],"id":17980,"properties":{"V":345}},{"type":"LineString","arcs":[2377],"id":17992,"properties":{"V":230}},{"type":"LineString","arcs":[2378],"id":17995,"properties":{"V":230}},{"type":"LineString","arcs":[2379],"id":18003,"properties":{"V":345}},{"type":"LineString","arcs":[2380],"id":18009,"properties":{"V":230}},{"type":"LineString","arcs":[2381],"id":18025,"properties":{"V":345}},{"type":"LineString","arcs":[2382],"id":18028,"properties":{"V":230}},{"type":"LineString","arcs":[2383],"id":18032,"properties":{"V":230}},{"type":"LineString","arcs":[2384],"id":18042,"properties":{"V":230}},{"type":"LineString","arcs":[2385],"id":18044,"properties":{"V":230}},{"type":"LineString","arcs":[2386],"id":18046,"properties":{"V":500}},{"type":"LineString","arcs":[2387],"id":18048,"properties":{"V":230}},{"type":"LineString","arcs":[2388],"id":18049,"properties":{"V":230}},{"type":"LineString","arcs":[2389],"id":18050,"properties":{"V":230}},{"type":"LineString","arcs":[2390],"id":18062,"properties":{"V":230}},{"type":"LineString","arcs":[2391],"id":18071,"properties":{"V":500}},{"type":"LineString","arcs":[2392],"id":18076,"properties":{"V":230}},{"type":"LineString","arcs":[2393],"id":18077,"properties":{"V":345}},{"type":"LineString","arcs":[2394],"id":18081,"properties":{"V":230}},{"type":"LineString","arcs":[2395],"id":18091,"properties":{"V":345}},{"type":"LineString","arcs":[2396],"id":18098,"properties":{"V":230}},{"type":"LineString","arcs":[2397],"id":18099,"properties":{"V":500}},{"type":"LineString","arcs":[2398],"id":18112,"properties":{"V":230}},{"type":"LineString","arcs":[2399],"id":18120,"properties":{"V":345}},{"type":"LineString","arcs":[2400],"id":18135,"properties":{"V":345}},{"type":"LineString","arcs":[2401],"id":18145,"properties":{"V":345}},{"type":"LineString","arcs":[2402],"id":18150,"properties":{"V":230}},{"type":"LineString","arcs":[2403],"id":18159,"properties":{"V":500}},{"type":"LineString","arcs":[2404],"id":18185,"properties":{"V":345}},{"type":"LineString","arcs":[2405],"id":18192,"properties":{"V":230}},{"type":"LineString","arcs":[2406],"id":18197,"properties":{"V":230}},{"type":"LineString","arcs":[2407],"id":18204,"properties":{"V":230}},{"type":"LineString","arcs":[-1808],"id":18215,"properties":{"V":230}},{"type":"LineString","arcs":[2408],"id":18220,"properties":{"V":230}},{"type":"LineString","arcs":[2409],"id":18231,"properties":{"V":345}},{"type":"LineString","arcs":[2410],"id":18233,"properties":{"V":345}},{"type":"LineString","arcs":[2411],"id":18236,"properties":{"V":345}},{"type":"LineString","arcs":[2412],"id":18243,"properties":{"V":230}},{"type":"LineString","arcs":[2413],"id":18248,"properties":{"V":345}},{"type":"LineString","arcs":[2414],"id":18254,"properties":{"V":230}},{"type":"LineString","arcs":[2415],"id":18276,"properties":{"V":230}},{"type":"LineString","arcs":[2416],"id":18284,"properties":{"V":230}},{"type":"LineString","arcs":[2417],"id":18285,"properties":{"V":345}},{"type":"LineString","arcs":[2418],"id":18289,"properties":{"V":345}},{"type":"LineString","arcs":[2419],"id":18290,"properties":{"V":230}},{"type":"LineString","arcs":[2420],"id":18298,"properties":{"V":230}},{"type":"LineString","arcs":[2421],"id":18306,"properties":{"V":345}},{"type":"LineString","arcs":[2422],"id":18307,"properties":{"V":230}},{"type":"LineString","arcs":[2423],"id":18315,"properties":{"V":345}},{"type":"LineString","arcs":[2424],"id":18316,"properties":{"V":345}},{"type":"LineString","arcs":[2425],"id":18320,"properties":{"V":345}},{"type":"LineString","arcs":[2426],"id":18323,"properties":{"V":230}},{"type":"LineString","arcs":[2427],"id":18329,"properties":{"V":230}},{"type":"LineString","arcs":[2428],"id":18340,"properties":{"V":230}},{"type":"LineString","arcs":[2429],"id":18343,"properties":{"V":500}},{"type":"LineString","arcs":[2430],"id":18352,"properties":{"V":230}},{"type":"LineString","arcs":[2431],"id":18354,"properties":{"V":345}},{"type":"LineString","arcs":[2432],"id":18372,"properties":{"V":230}},{"type":"LineString","arcs":[2433],"id":18377,"properties":{"V":345}},{"type":"LineString","arcs":[2434],"id":18378,"properties":{"V":345}},{"type":"LineString","arcs":[2435],"id":18381,"properties":{"V":230}},{"type":"LineString","arcs":[2436],"id":18387,"properties":{"V":230}},{"type":"LineString","arcs":[2437],"id":18394,"properties":{"V":230}},{"type":"LineString","arcs":[2438],"id":18395,"properties":{"V":345}},{"type":"LineString","arcs":[2439],"id":18397,"properties":{"V":230}},{"type":"LineString","arcs":[2440],"id":18422,"properties":{"V":345}},{"type":"LineString","arcs":[2441],"id":18433,"properties":{"V":345}},{"type":"LineString","arcs":[2442],"id":18440,"properties":{"V":345}},{"type":"LineString","arcs":[2443],"id":18444,"properties":{"V":230}},{"type":"LineString","arcs":[2444],"id":18445,"properties":{"V":230}},{"type":"LineString","arcs":[2445],"id":18447,"properties":{"V":230}},{"type":"LineString","arcs":[2446],"id":18455,"properties":{"V":230}},{"type":"LineString","arcs":[2447],"id":18462,"properties":{"V":230}},{"type":"LineString","arcs":[2448],"id":18463,"properties":{"V":230}},{"type":"LineString","arcs":[2449],"id":18476,"properties":{"V":230}},{"type":"LineString","arcs":[2450],"id":18479,"properties":{"V":345}},{"type":"LineString","arcs":[2451],"id":18499,"properties":{"V":230}},{"type":"LineString","arcs":[2452],"id":18504,"properties":{"V":345}},{"type":"LineString","arcs":[2453],"id":18510,"properties":{"V":345}},{"type":"LineString","arcs":[2454],"id":18513,"properties":{"V":230}},{"type":"LineString","arcs":[2455],"id":18516,"properties":{"V":230}},{"type":"LineString","arcs":[2456],"id":18520,"properties":{"V":230}},{"type":"LineString","arcs":[2457],"id":18521,"properties":{"V":230}},{"type":"LineString","arcs":[2458],"id":18531,"properties":{"V":230}},{"type":"LineString","arcs":[2459],"id":18535,"properties":{"V":230}},{"type":"LineString","arcs":[2460],"id":18596,"properties":{"V":230}},{"type":"LineString","arcs":[2461],"id":18599,"properties":{"V":345}},{"type":"LineString","arcs":[2462],"id":18612,"properties":{"V":230}},{"type":"LineString","arcs":[2463],"id":18617,"properties":{"V":345}},{"type":"LineString","arcs":[2464],"id":18624,"properties":{"V":230}},{"type":"LineString","arcs":[2465],"id":18635,"properties":{"V":230}},{"type":"LineString","arcs":[2466],"id":18642,"properties":{"V":345}},{"type":"LineString","arcs":[2467],"id":18662,"properties":{"V":230}},{"type":"LineString","arcs":[2468,2469],"id":18668,"properties":{"V":230}},{"type":"LineString","arcs":[2470],"id":18674,"properties":{"V":345}},{"type":"LineString","arcs":[2471],"id":18676,"properties":{"V":345}},{"type":"LineString","arcs":[2472],"id":18681,"properties":{"V":345}},{"type":"LineString","arcs":[2473],"id":18686,"properties":{"V":230}},{"type":"LineString","arcs":[2474],"id":18694,"properties":{"V":500}},{"type":"LineString","arcs":[2475],"id":18713,"properties":{"V":230}},{"type":"LineString","arcs":[2476],"id":18725,"properties":{"V":345}},{"type":"LineString","arcs":[2477],"id":18740,"properties":{"V":500}},{"type":"LineString","arcs":[2478],"id":18744,"properties":{"V":345}},{"type":"LineString","arcs":[2479,2480,2481],"id":18746,"properties":{"V":230}},{"type":"LineString","arcs":[2482],"id":18747,"properties":{"V":230}},{"type":"LineString","arcs":[2483],"id":18750,"properties":{"V":230}},{"type":"LineString","arcs":[2484],"id":18752,"properties":{"V":230}},{"type":"LineString","arcs":[2485],"id":18758,"properties":{"V":230}},{"type":"LineString","arcs":[2486],"id":18776,"properties":{"V":230}},{"type":"LineString","arcs":[2487],"id":18791,"properties":{"V":230}},{"type":"LineString","arcs":[2488],"id":18805,"properties":{"V":230}},{"type":"LineString","arcs":[2489],"id":18806,"properties":{"V":230}},{"type":"LineString","arcs":[2490],"id":18816,"properties":{"V":230}},{"type":"LineString","arcs":[2491,2492],"id":18824,"properties":{"V":230}},{"type":"LineString","arcs":[2493],"id":18836,"properties":{"V":230}},{"type":"LineString","arcs":[2494],"id":18850,"properties":{"V":230}},{"type":"LineString","arcs":[2495],"id":18853,"properties":{"V":230}},{"type":"LineString","arcs":[2496],"id":18865,"properties":{"V":345}},{"type":"LineString","arcs":[2497],"id":18866,"properties":{"V":345}},{"type":"LineString","arcs":[2498],"id":18871,"properties":{"V":230}},{"type":"LineString","arcs":[2499],"id":18875,"properties":{"V":345}},{"type":"LineString","arcs":[2500],"id":18880,"properties":{"V":345}},{"type":"LineString","arcs":[2501],"id":18886,"properties":{"V":230}},{"type":"LineString","arcs":[2502],"id":18906,"properties":{"V":345}},{"type":"LineString","arcs":[2503],"id":18911,"properties":{"V":230}},{"type":"LineString","arcs":[2504],"id":18928,"properties":{"V":230}},{"type":"LineString","arcs":[2505],"id":18943,"properties":{"V":230}},{"type":"LineString","arcs":[2506],"id":18949,"properties":{"V":230}},{"type":"LineString","arcs":[2507],"id":18971,"properties":{"V":345}},{"type":"LineString","arcs":[2508],"id":18974,"properties":{"V":345}},{"type":"LineString","arcs":[2509],"id":18981,"properties":{"V":230}},{"type":"LineString","arcs":[2510],"id":18985,"properties":{"V":345}},{"type":"LineString","arcs":[2511],"id":18995,"properties":{"V":345}},{"type":"LineString","arcs":[2512],"id":18997,"properties":{"V":230}},{"type":"LineString","arcs":[2513],"id":18998,"properties":{"V":230}},{"type":"LineString","arcs":[2514],"id":19022,"properties":{"V":500}},{"type":"LineString","arcs":[2515],"id":19041,"properties":{"V":230}},{"type":"LineString","arcs":[2516],"id":19049,"properties":{"V":230}},{"type":"LineString","arcs":[2517],"id":19057,"properties":{"V":230}},{"type":"LineString","arcs":[2518],"id":19060,"properties":{"V":500}},{"type":"LineString","arcs":[2519],"id":19062,"properties":{"V":230}},{"type":"LineString","arcs":[2520,2521],"id":19063,"properties":{"V":230}},{"type":"LineString","arcs":[2522],"id":19069,"properties":{"V":230}},{"type":"LineString","arcs":[2523],"id":19075,"properties":{"V":230}},{"type":"LineString","arcs":[2524,2525],"id":19077,"properties":{"V":345}},{"type":"LineString","arcs":[2526],"id":19079,"properties":{"V":345}},{"type":"LineString","arcs":[2527],"id":19082,"properties":{"V":500}},{"type":"LineString","arcs":[2528],"id":19083,"properties":{"V":230}},{"type":"LineString","arcs":[2529],"id":19090,"properties":{"V":230}},{"type":"LineString","arcs":[2530],"id":19099,"properties":{"V":345}},{"type":"LineString","arcs":[2531],"id":19104,"properties":{"V":345}},{"type":"LineString","arcs":[2532],"id":19106,"properties":{"V":230}},{"type":"LineString","arcs":[2533],"id":19107,"properties":{"V":345}},{"type":"LineString","arcs":[2534],"id":19110,"properties":{"V":230}},{"type":"LineString","arcs":[2535],"id":19119,"properties":{"V":500}},{"type":"LineString","arcs":[2536,2537,2538,2539,2540,2541,2542,2543,2544,2545],"id":19129,"properties":{"V":500}},{"type":"LineString","arcs":[2546],"id":19135,"properties":{"V":345}},{"type":"LineString","arcs":[2547],"id":19136,"properties":{"V":500}},{"type":"LineString","arcs":[2548],"id":19144,"properties":{"V":230}},{"type":"LineString","arcs":[2549],"id":19162,"properties":{"V":230}},{"type":"LineString","arcs":[2550],"id":19163,"properties":{"V":230}},{"type":"LineString","arcs":[2551],"id":19165,"properties":{"V":230}},{"type":"LineString","arcs":[2552],"id":19169,"properties":{"V":345}},{"type":"LineString","arcs":[2553],"id":19170,"properties":{"V":230}},{"type":"LineString","arcs":[2554],"id":19173,"properties":{"V":230}},{"type":"LineString","arcs":[2555],"id":19178,"properties":{"V":230}},{"type":"LineString","arcs":[2556],"id":19185,"properties":{"V":230}},{"type":"LineString","arcs":[2557],"id":19186,"properties":{"V":230}},{"type":"LineString","arcs":[2558],"id":19187,"properties":{"V":345}},{"type":"LineString","arcs":[2559],"id":19199,"properties":{"V":230}},{"type":"LineString","arcs":[2560],"id":19210,"properties":{"V":345}},{"type":"LineString","arcs":[2561],"id":19211,"properties":{"V":230}},{"type":"LineString","arcs":[2562],"id":19213,"properties":{"V":500}},{"type":"LineString","arcs":[2563],"id":19231,"properties":{"V":345}},{"type":"LineString","arcs":[2564],"id":19250,"properties":{"V":500}},{"type":"LineString","arcs":[2565,2566,2567],"id":19253,"properties":{"V":230}},{"type":"LineString","arcs":[2568],"id":19257,"properties":{"V":345}},{"type":"LineString","arcs":[2569],"id":19274,"properties":{"V":230}},{"type":"LineString","arcs":[2570],"id":19275,"properties":{"V":230}},{"type":"LineString","arcs":[2571],"id":19276,"properties":{"V":500}},{"type":"LineString","arcs":[2572],"id":19296,"properties":{"V":345}},{"type":"LineString","arcs":[2573],"id":19300,"properties":{"V":345}},{"type":"LineString","arcs":[2574,2575],"id":19308,"properties":{"V":345}},{"type":"LineString","arcs":[2576],"id":19311,"properties":{"V":230}},{"type":"LineString","arcs":[2577],"id":19324,"properties":{"V":230}},{"type":"LineString","arcs":[2578],"id":19325,"properties":{"V":345}},{"type":"LineString","arcs":[2579],"id":19327,"properties":{"V":230}},{"type":"LineString","arcs":[2580],"id":19329,"properties":{"V":345}},{"type":"LineString","arcs":[2581],"id":19333,"properties":{"V":500}},{"type":"LineString","arcs":[2582],"id":19344,"properties":{"V":230}},{"type":"LineString","arcs":[2583],"id":19352,"properties":{"V":230}},{"type":"LineString","arcs":[2584],"id":19357,"properties":{"V":345}},{"type":"LineString","arcs":[2585],"id":19358,"properties":{"V":345}},{"type":"LineString","arcs":[2586],"id":19368,"properties":{"V":345}},{"type":"LineString","arcs":[2587],"id":19370,"properties":{"V":345}},{"type":"LineString","arcs":[2588],"id":19372,"properties":{"V":230}},{"type":"LineString","arcs":[2589],"id":19374,"properties":{"V":230}},{"type":"LineString","arcs":[2590],"id":19384,"properties":{"V":345}},{"type":"LineString","arcs":[2591],"id":19386,"properties":{"V":230}},{"type":"LineString","arcs":[2592],"id":19388,"properties":{"V":345}},{"type":"LineString","arcs":[2593],"id":19402,"properties":{"V":230}},{"type":"LineString","arcs":[2399],"id":19406,"properties":{"V":345}},{"type":"LineString","arcs":[2594],"id":19409,"properties":{"V":230}},{"type":"LineString","arcs":[2595],"id":19412,"properties":{"V":345}},{"type":"LineString","arcs":[2596],"id":19419,"properties":{"V":345}},{"type":"LineString","arcs":[2597],"id":19429,"properties":{"V":500}},{"type":"LineString","arcs":[2598],"id":19430,"properties":{"V":230}},{"type":"LineString","arcs":[2599],"id":19438,"properties":{"V":230}},{"type":"LineString","arcs":[2600],"id":19441,"properties":{"V":345}},{"type":"LineString","arcs":[2601],"id":19460,"properties":{"V":230}},{"type":"LineString","arcs":[2602],"id":19466,"properties":{"V":230}},{"type":"LineString","arcs":[2603],"id":19468,"properties":{"V":230}},{"type":"LineString","arcs":[2604],"id":19471,"properties":{"V":230}},{"type":"LineString","arcs":[2605],"id":19479,"properties":{"V":345}},{"type":"LineString","arcs":[2606],"id":19484,"properties":{"V":230}},{"type":"LineString","arcs":[2607],"id":19493,"properties":{"V":500}},{"type":"LineString","arcs":[2608],"id":19502,"properties":{"V":230}},{"type":"LineString","arcs":[2609],"id":19505,"properties":{"V":230}},{"type":"LineString","arcs":[2610],"id":19507,"properties":{"V":230}},{"type":"LineString","arcs":[2611],"id":19528,"properties":{"V":345}},{"type":"LineString","arcs":[2612],"id":19549,"properties":{"V":345}},{"type":"LineString","arcs":[2613],"id":19555,"properties":{"V":230}},{"type":"LineString","arcs":[2614],"id":19562,"properties":{"V":345}},{"type":"LineString","arcs":[2615],"id":19563,"properties":{"V":345}},{"type":"LineString","arcs":[2616],"id":19565,"properties":{"V":230}},{"type":"LineString","arcs":[2617],"id":19570,"properties":{"V":230}},{"type":"LineString","arcs":[2618,2619,2620,2621],"id":19574,"properties":{"V":230}},{"type":"LineString","arcs":[2622],"id":19585,"properties":{"V":345}},{"type":"LineString","arcs":[2623],"id":19587,"properties":{"V":345}},{"type":"LineString","arcs":[2624],"id":19588,"properties":{"V":345}},{"type":"LineString","arcs":[2625],"id":19594,"properties":{"V":230}},{"type":"LineString","arcs":[2626],"id":19596,"properties":{"V":230}},{"type":"LineString","arcs":[2627],"id":19603,"properties":{"V":230}},{"type":"LineString","arcs":[2628],"id":19605,"properties":{"V":345}},{"type":"LineString","arcs":[2629],"id":19607,"properties":{"V":230}},{"type":"LineString","arcs":[2630],"id":19608,"properties":{"V":345}},{"type":"LineString","arcs":[2631],"id":19612,"properties":{"V":345}},{"type":"LineString","arcs":[2632],"id":19627,"properties":{"V":230}},{"type":"LineString","arcs":[2633],"id":19634,"properties":{"V":230}},{"type":"LineString","arcs":[2634],"id":19636,"properties":{"V":230}},{"type":"LineString","arcs":[2635],"id":19637,"properties":{"V":230}},{"type":"LineString","arcs":[2636],"id":19652,"properties":{"V":230}},{"type":"LineString","arcs":[2637],"id":19656,"properties":{"V":230}},{"type":"LineString","arcs":[2638],"id":19657,"properties":{"V":345}},{"type":"LineString","arcs":[2639],"id":19661,"properties":{"V":500}},{"type":"LineString","arcs":[2640],"id":19664,"properties":{"V":500}},{"type":"LineString","arcs":[2641],"id":19671,"properties":{"V":345}},{"type":"LineString","arcs":[2642],"id":19675,"properties":{"V":230}},{"type":"LineString","arcs":[2643],"id":19677,"properties":{"V":230}},{"type":"LineString","arcs":[2644,2645],"id":19681,"properties":{"V":345}},{"type":"LineString","arcs":[2646],"id":19685,"properties":{"V":345}},{"type":"LineString","arcs":[2647,2648],"id":19690,"properties":{"V":345}},{"type":"LineString","arcs":[2649,2650],"id":19703,"properties":{"V":345}},{"type":"LineString","arcs":[2651],"id":19710,"properties":{"V":230}},{"type":"LineString","arcs":[2652],"id":19718,"properties":{"V":345}},{"type":"LineString","arcs":[2653],"id":19726,"properties":{"V":230}},{"type":"LineString","arcs":[2654],"id":19739,"properties":{"V":500}},{"type":"LineString","arcs":[2655],"id":19741,"properties":{"V":345}},{"type":"LineString","arcs":[2656],"id":19768,"properties":{"V":230}},{"type":"LineString","arcs":[2657],"id":19769,"properties":{"V":345}},{"type":"LineString","arcs":[2658],"id":19773,"properties":{"V":230}},{"type":"LineString","arcs":[2659],"id":19775,"properties":{"V":230}},{"type":"LineString","arcs":[2660],"id":19786,"properties":{"V":230}},{"type":"LineString","arcs":[2661],"id":19792,"properties":{"V":345}},{"type":"LineString","arcs":[2662],"id":19807,"properties":{"V":230}},{"type":"LineString","arcs":[2663],"id":19814,"properties":{"V":345}},{"type":"LineString","arcs":[2664],"id":19836,"properties":{"V":230}},{"type":"LineString","arcs":[2665],"id":19840,"properties":{"V":230}},{"type":"LineString","arcs":[2666],"id":19853,"properties":{"V":230}},{"type":"LineString","arcs":[2667],"id":19854,"properties":{"V":230}},{"type":"LineString","arcs":[2668],"id":19857,"properties":{"V":345}},{"type":"LineString","arcs":[2669],"id":19859,"properties":{"V":230}},{"type":"LineString","arcs":[2670],"id":19885,"properties":{"V":345}},{"type":"LineString","arcs":[2671],"id":19886,"properties":{"V":500}},{"type":"LineString","arcs":[2672],"id":19900,"properties":{"V":345}},{"type":"LineString","arcs":[2673],"id":19909,"properties":{"V":345}},{"type":"LineString","arcs":[2674],"id":19912,"properties":{"V":230}},{"type":"LineString","arcs":[2675],"id":19915,"properties":{"V":230}},{"type":"LineString","arcs":[2676],"id":19918,"properties":{"V":230}},{"type":"LineString","arcs":[2677],"id":19920,"properties":{"V":230}},{"type":"LineString","arcs":[2678],"id":19921,"properties":{"V":230}},{"type":"LineString","arcs":[2679],"id":19927,"properties":{"V":345}},{"type":"LineString","arcs":[2680],"id":19941,"properties":{"V":230}},{"type":"LineString","arcs":[2681],"id":19944,"properties":{"V":345}},{"type":"LineString","arcs":[2682],"id":19953,"properties":{"V":230}},{"type":"LineString","arcs":[2683],"id":19954,"properties":{"V":230}},{"type":"LineString","arcs":[2684],"id":19955,"properties":{"V":500}},{"type":"LineString","arcs":[2685],"id":19957,"properties":{"V":345}},{"type":"LineString","arcs":[2686],"id":19969,"properties":{"V":230}},{"type":"LineString","arcs":[2687],"id":19979,"properties":{"V":230}},{"type":"LineString","arcs":[2688],"id":19993,"properties":{"V":345}},{"type":"LineString","arcs":[2689],"id":19998,"properties":{"V":230}},{"type":"LineString","arcs":[2690],"id":20000,"properties":{"V":230}},{"type":"LineString","arcs":[2691],"id":20005,"properties":{"V":230}},{"type":"LineString","arcs":[2692],"id":20007,"properties":{"V":230}},{"type":"LineString","arcs":[2693],"id":20008,"properties":{"V":345}},{"type":"LineString","arcs":[2694],"id":20009,"properties":{"V":230}},{"type":"LineString","arcs":[2695],"id":20024,"properties":{"V":345}},{"type":"LineString","arcs":[2696],"id":20027,"properties":{"V":230}},{"type":"LineString","arcs":[2697],"id":20028,"properties":{"V":345}},{"type":"LineString","arcs":[2698],"id":20032,"properties":{"V":345}},{"type":"LineString","arcs":[2699],"id":20033,"properties":{"V":230}},{"type":"LineString","arcs":[2700,-2246,2701],"id":20048,"properties":{"V":230}},{"type":"LineString","arcs":[2702],"id":20057,"properties":{"V":230}},{"type":"LineString","arcs":[2703,2215],"id":20072,"properties":{"V":500}},{"type":"LineString","arcs":[2704],"id":20076,"properties":{"V":500}},{"type":"LineString","arcs":[2705],"id":20082,"properties":{"V":230}},{"type":"LineString","arcs":[2706],"id":20083,"properties":{"V":230}},{"type":"LineString","arcs":[2707],"id":20094,"properties":{"V":230}},{"type":"LineString","arcs":[2708],"id":20097,"properties":{"V":230}},{"type":"LineString","arcs":[2709],"id":20100,"properties":{"V":230}},{"type":"LineString","arcs":[2710],"id":20106,"properties":{"V":500}},{"type":"LineString","arcs":[2711],"id":20122,"properties":{"V":345}},{"type":"LineString","arcs":[2712],"id":20126,"properties":{"V":230}},{"type":"LineString","arcs":[2713],"id":20128,"properties":{"V":230}},{"type":"LineString","arcs":[2714],"id":20130,"properties":{"V":345}},{"type":"LineString","arcs":[2715],"id":20137,"properties":{"V":345}},{"type":"LineString","arcs":[2716],"id":20159,"properties":{"V":230}},{"type":"LineString","arcs":[2717],"id":20181,"properties":{"V":230}},{"type":"LineString","arcs":[2718],"id":20184,"properties":{"V":230}},{"type":"LineString","arcs":[2719],"id":20192,"properties":{"V":345}},{"type":"LineString","arcs":[2720,2721],"id":20197,"properties":{"V":345}},{"type":"LineString","arcs":[2722],"id":20201,"properties":{"V":345}},{"type":"LineString","arcs":[2723],"id":20208,"properties":{"V":230}},{"type":"LineString","arcs":[2724],"id":20225,"properties":{"V":345}},{"type":"LineString","arcs":[2725],"id":20227,"properties":{"V":500}},{"type":"LineString","arcs":[2726],"id":20231,"properties":{"V":345}},{"type":"LineString","arcs":[2727],"id":20241,"properties":{"V":230}},{"type":"LineString","arcs":[2728],"id":20246,"properties":{"V":287}},{"type":"LineString","arcs":[2729],"id":20248,"properties":{"V":345}},{"type":"LineString","arcs":[2730],"id":20249,"properties":{"V":230}},{"type":"LineString","arcs":[2731],"id":20254,"properties":{"V":230}},{"type":"LineString","arcs":[2732],"id":20261,"properties":{"V":230}},{"type":"LineString","arcs":[2733],"id":20266,"properties":{"V":345}},{"type":"LineString","arcs":[2734],"id":20284,"properties":{"V":230}},{"type":"LineString","arcs":[2735],"id":20290,"properties":{"V":345}},{"type":"LineString","arcs":[2736],"id":20292,"properties":{"V":345}},{"type":"LineString","arcs":[2737],"id":20307,"properties":{"V":230}},{"type":"LineString","arcs":[2738],"id":20317,"properties":{"V":230}},{"type":"LineString","arcs":[2739],"id":20321,"properties":{"V":230}},{"type":"LineString","arcs":[2740],"id":20322,"properties":{"V":230}},{"type":"LineString","arcs":[2741],"id":20324,"properties":{"V":345}},{"type":"LineString","arcs":[2742],"id":20331,"properties":{"V":230}},{"type":"LineString","arcs":[2743],"id":20350,"properties":{"V":345}},{"type":"MultiLineString","arcs":[[2744],[2745]],"id":20357,"properties":{"V":345}},{"type":"LineString","arcs":[2746],"id":20362,"properties":{"V":230}},{"type":"LineString","arcs":[2747],"id":20364,"properties":{"V":345}},{"type":"LineString","arcs":[2748],"id":20369,"properties":{"V":230}},{"type":"LineString","arcs":[2749],"id":20372,"properties":{"V":230}},{"type":"LineString","arcs":[2750],"id":20381,"properties":{"V":345}},{"type":"LineString","arcs":[2751],"id":20386,"properties":{"V":230}},{"type":"LineString","arcs":[2752],"id":20411,"properties":{"V":345}},{"type":"LineString","arcs":[2753],"id":20424,"properties":{"V":345}},{"type":"LineString","arcs":[2754],"id":20439,"properties":{"V":230}},{"type":"LineString","arcs":[2755],"id":20445,"properties":{"V":345}},{"type":"LineString","arcs":[2756],"id":20455,"properties":{"V":230}},{"type":"LineString","arcs":[2757],"id":20461,"properties":{"V":230}},{"type":"LineString","arcs":[2758],"id":20462,"properties":{"V":500}},{"type":"LineString","arcs":[2759],"id":20470,"properties":{"V":230}},{"type":"LineString","arcs":[2760],"id":20472,"properties":{"V":345}},{"type":"LineString","arcs":[2761],"id":20474,"properties":{"V":345}},{"type":"LineString","arcs":[2762],"id":20484,"properties":{"V":230}},{"type":"LineString","arcs":[2763],"id":20485,"properties":{"V":230}},{"type":"LineString","arcs":[2764],"id":20494,"properties":{"V":345}},{"type":"LineString","arcs":[2765],"id":20500,"properties":{"V":500}},{"type":"LineString","arcs":[2766],"id":20503,"properties":{"V":345}},{"type":"LineString","arcs":[2767,2768],"id":20506,"properties":{"V":345}},{"type":"LineString","arcs":[2769],"id":20511,"properties":{"V":230}},{"type":"LineString","arcs":[2770],"id":20512,"properties":{"V":230}},{"type":"LineString","arcs":[2771],"id":20516,"properties":{"V":230}},{"type":"LineString","arcs":[2772],"id":20538,"properties":{"V":345}},{"type":"LineString","arcs":[2773],"id":20546,"properties":{"V":230}},{"type":"LineString","arcs":[2774],"id":20561,"properties":{"V":345}},{"type":"LineString","arcs":[2775],"id":20575,"properties":{"V":345}},{"type":"LineString","arcs":[2776],"id":20576,"properties":{"V":345}},{"type":"LineString","arcs":[2777],"id":20577,"properties":{"V":230}},{"type":"LineString","arcs":[2778],"id":20580,"properties":{"V":230}},{"type":"LineString","arcs":[2779],"id":20591,"properties":{"V":230}},{"type":"LineString","arcs":[2780],"id":20603,"properties":{"V":230}},{"type":"LineString","arcs":[2781],"id":20612,"properties":{"V":345}},{"type":"LineString","arcs":[2782],"id":20614,"properties":{"V":345}},{"type":"LineString","arcs":[2783],"id":20676,"properties":{"V":345}},{"type":"LineString","arcs":[2784],"id":20691,"properties":{"V":345}},{"type":"LineString","arcs":[2785],"id":20694,"properties":{"V":230}},{"type":"LineString","arcs":[2786],"id":20710,"properties":{"V":345}},{"type":"LineString","arcs":[2787],"id":20715,"properties":{"V":345}},{"type":"LineString","arcs":[2788],"id":20722,"properties":{"V":230}},{"type":"LineString","arcs":[2789],"id":20726,"properties":{"V":345}},{"type":"LineString","arcs":[2790],"id":20738,"properties":{"V":230}},{"type":"LineString","arcs":[2791],"id":20742,"properties":{"V":230}},{"type":"LineString","arcs":[2792],"id":20744,"properties":{"V":345}},{"type":"LineString","arcs":[2793],"id":20745,"properties":{"V":230}},{"type":"LineString","arcs":[2794],"id":20763,"properties":{"V":230}},{"type":"LineString","arcs":[2795],"id":20766,"properties":{"V":345}},{"type":"LineString","arcs":[2796],"id":20771,"properties":{"V":230}},{"type":"LineString","arcs":[2797],"id":20791,"properties":{"V":345}},{"type":"LineString","arcs":[2798],"id":20794,"properties":{"V":230}},{"type":"LineString","arcs":[2799],"id":20796,"properties":{"V":230}},{"type":"LineString","arcs":[2800,2801],"id":20797,"properties":{"V":345}},{"type":"LineString","arcs":[2802],"id":20802,"properties":{"V":345}},{"type":"LineString","arcs":[2803],"id":20806,"properties":{"V":230}},{"type":"LineString","arcs":[2804],"id":20827,"properties":{"V":230}},{"type":"LineString","arcs":[2805,2806],"id":20830,"properties":{"V":345}},{"type":"LineString","arcs":[2807],"id":20835,"properties":{"V":230}},{"type":"LineString","arcs":[2808],"id":20836,"properties":{"V":345}},{"type":"LineString","arcs":[2809],"id":20839,"properties":{"V":230}},{"type":"LineString","arcs":[2810],"id":20841,"properties":{"V":230}},{"type":"LineString","arcs":[2811],"id":20842,"properties":{"V":230}},{"type":"LineString","arcs":[2812],"id":20846,"properties":{"V":230}},{"type":"LineString","arcs":[2813],"id":20847,"properties":{"V":345}},{"type":"LineString","arcs":[2814],"id":20862,"properties":{"V":345}},{"type":"LineString","arcs":[2815],"id":20867,"properties":{"V":230}},{"type":"LineString","arcs":[2816],"id":20872,"properties":{"V":230}},{"type":"LineString","arcs":[2817],"id":20880,"properties":{"V":230}},{"type":"LineString","arcs":[2818],"id":20884,"properties":{"V":230}},{"type":"LineString","arcs":[2819],"id":20887,"properties":{"V":230}},{"type":"LineString","arcs":[2820],"id":20893,"properties":{"V":230}},{"type":"LineString","arcs":[2821],"id":20916,"properties":{"V":230}},{"type":"LineString","arcs":[2822],"id":20917,"properties":{"V":345}},{"type":"LineString","arcs":[2823],"id":20918,"properties":{"V":230}},{"type":"LineString","arcs":[2824],"id":20922,"properties":{"V":230}},{"type":"LineString","arcs":[2825],"id":20941,"properties":{"V":230}},{"type":"LineString","arcs":[2826],"id":20957,"properties":{"V":230}},{"type":"LineString","arcs":[2827],"id":20962,"properties":{"V":230}},{"type":"LineString","arcs":[2828],"id":20965,"properties":{"V":230}},{"type":"LineString","arcs":[2829,2830,2831],"id":20973,"properties":{"V":230}},{"type":"LineString","arcs":[2832],"id":20974,"properties":{"V":345}},{"type":"LineString","arcs":[2833],"id":20976,"properties":{"V":230}},{"type":"LineString","arcs":[2834],"id":20979,"properties":{"V":230}},{"type":"LineString","arcs":[2835,2836,2837],"id":20993,"properties":{"V":345}},{"type":"LineString","arcs":[2838],"id":21001,"properties":{"V":230}},{"type":"LineString","arcs":[2839,2840],"id":21007,"properties":{"V":230}},{"type":"LineString","arcs":[2841],"id":21010,"properties":{"V":230}},{"type":"LineString","arcs":[2842],"id":21016,"properties":{"V":345}},{"type":"LineString","arcs":[2843],"id":21034,"properties":{"V":345}},{"type":"LineString","arcs":[2844,2845],"id":21047,"properties":{"V":345}},{"type":"LineString","arcs":[2846],"id":21050,"properties":{"V":230}},{"type":"LineString","arcs":[2847],"id":21051,"properties":{"V":345}},{"type":"LineString","arcs":[2848],"id":21059,"properties":{"V":345}},{"type":"LineString","arcs":[2849],"id":21065,"properties":{"V":500}},{"type":"LineString","arcs":[2850],"id":21070,"properties":{"V":230}},{"type":"LineString","arcs":[2851,2566,2852],"id":21073,"properties":{"V":230}},{"type":"LineString","arcs":[2853],"id":21084,"properties":{"V":230}},{"type":"LineString","arcs":[2854],"id":21086,"properties":{"V":230}},{"type":"LineString","arcs":[2855],"id":21087,"properties":{"V":230}},{"type":"LineString","arcs":[2856],"id":21091,"properties":{"V":345}},{"type":"LineString","arcs":[2857,2858],"id":21098,"properties":{"V":230}},{"type":"LineString","arcs":[2859],"id":21100,"properties":{"V":345}},{"type":"LineString","arcs":[2860],"id":21114,"properties":{"V":345}},{"type":"LineString","arcs":[2861],"id":21118,"properties":{"V":230}},{"type":"LineString","arcs":[2862],"id":21120,"properties":{"V":500}},{"type":"LineString","arcs":[2863],"id":21149,"properties":{"V":345}},{"type":"LineString","arcs":[2864],"id":21156,"properties":{"V":345}},{"type":"LineString","arcs":[2865],"id":21159,"properties":{"V":230}},{"type":"LineString","arcs":[2866],"id":21160,"properties":{"V":230}},{"type":"LineString","arcs":[2867],"id":21176,"properties":{"V":345}},{"type":"LineString","arcs":[2868],"id":21180,"properties":{"V":230}},{"type":"LineString","arcs":[2869],"id":21181,"properties":{"V":230}},{"type":"LineString","arcs":[2870],"id":21185,"properties":{"V":345}},{"type":"LineString","arcs":[2871],"id":21195,"properties":{"V":230}},{"type":"LineString","arcs":[2872],"id":21196,"properties":{"V":500}},{"type":"LineString","arcs":[2873],"id":21198,"properties":{"V":500}},{"type":"LineString","arcs":[2874],"id":21201,"properties":{"V":500}},{"type":"LineString","arcs":[2875],"id":21203,"properties":{"V":345}},{"type":"LineString","arcs":[2876],"id":21206,"properties":{"V":345}},{"type":"LineString","arcs":[2877],"id":21210,"properties":{"V":345}},{"type":"LineString","arcs":[2878],"id":21230,"properties":{"V":230}},{"type":"LineString","arcs":[2879],"id":21242,"properties":{"V":230}},{"type":"LineString","arcs":[2880,2881,2882],"id":21247,"properties":{"V":345}},{"type":"LineString","arcs":[2883],"id":21249,"properties":{"V":230}},{"type":"LineString","arcs":[2884,2885,2886,2887,2888,-1903,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,-1738,2899],"id":21262,"properties":{"V":500}},{"type":"LineString","arcs":[2900],"id":21275,"properties":{"V":230}},{"type":"LineString","arcs":[2901],"id":21289,"properties":{"V":230}},{"type":"LineString","arcs":[2902],"id":21297,"properties":{"V":345}},{"type":"LineString","arcs":[2903],"id":21300,"properties":{"V":230}},{"type":"LineString","arcs":[2904],"id":21301,"properties":{"V":230}},{"type":"LineString","arcs":[2905],"id":21304,"properties":{"V":345}},{"type":"LineString","arcs":[2906],"id":21329,"properties":{"V":345}},{"type":"LineString","arcs":[2907,2908],"id":21334,"properties":{"V":230}},{"type":"LineString","arcs":[2909],"id":21336,"properties":{"V":230}},{"type":"LineString","arcs":[2910],"id":21350,"properties":{"V":345}},{"type":"LineString","arcs":[2911],"id":21357,"properties":{"V":345}},{"type":"LineString","arcs":[2912],"id":21362,"properties":{"V":230}},{"type":"LineString","arcs":[2913],"id":21363,"properties":{"V":345}},{"type":"LineString","arcs":[2914],"id":21365,"properties":{"V":230}},{"type":"LineString","arcs":[2915],"id":21370,"properties":{"V":345}},{"type":"LineString","arcs":[2916],"id":21372,"properties":{"V":345}},{"type":"LineString","arcs":[2917],"id":21373,"properties":{"V":345}},{"type":"LineString","arcs":[2918],"id":21379,"properties":{"V":230}},{"type":"LineString","arcs":[2919],"id":21381,"properties":{"V":345}},{"type":"LineString","arcs":[2920],"id":21383,"properties":{"V":230}},{"type":"LineString","arcs":[2921],"id":21384,"properties":{"V":230}},{"type":"LineString","arcs":[2922],"id":21387,"properties":{"V":230}},{"type":"LineString","arcs":[2923],"id":21394,"properties":{"V":230}},{"type":"LineString","arcs":[2924],"id":21437,"properties":{"V":230}},{"type":"LineString","arcs":[2925],"id":21442,"properties":{"V":345}},{"type":"LineString","arcs":[2926],"id":21454,"properties":{"V":345}},{"type":"LineString","arcs":[2927],"id":21459,"properties":{"V":230}},{"type":"LineString","arcs":[2928,2929],"id":21460,"properties":{"V":230}},{"type":"LineString","arcs":[2930],"id":21507,"properties":{"V":500}},{"type":"LineString","arcs":[2931],"id":21513,"properties":{"V":230}},{"type":"LineString","arcs":[2932],"id":21516,"properties":{"V":230}},{"type":"LineString","arcs":[2933],"id":21529,"properties":{"V":230}},{"type":"LineString","arcs":[2934],"id":21535,"properties":{"V":230}},{"type":"LineString","arcs":[2935],"id":21538,"properties":{"V":345}},{"type":"LineString","arcs":[2936],"id":21539,"properties":{"V":500}},{"type":"LineString","arcs":[2937],"id":21542,"properties":{"V":345}},{"type":"LineString","arcs":[2938],"id":21552,"properties":{"V":345}},{"type":"LineString","arcs":[2939],"id":21557,"properties":{"V":230}},{"type":"LineString","arcs":[2940],"id":21559,"properties":{"V":345}},{"type":"LineString","arcs":[2941],"id":21565,"properties":{"V":230}},{"type":"LineString","arcs":[2942],"id":21567,"properties":{"V":230}},{"type":"LineString","arcs":[2943],"id":21584,"properties":{"V":230}},{"type":"LineString","arcs":[2944],"id":21588,"properties":{"V":230}},{"type":"LineString","arcs":[2945],"id":21605,"properties":{"V":230}},{"type":"LineString","arcs":[2946],"id":21619,"properties":{"V":345}},{"type":"LineString","arcs":[2947],"id":21624,"properties":{"V":230}},{"type":"LineString","arcs":[2948],"id":21625,"properties":{"V":345}},{"type":"LineString","arcs":[2949],"id":21626,"properties":{"V":345}},{"type":"LineString","arcs":[2950],"id":21628,"properties":{"V":230}},{"type":"LineString","arcs":[2951],"id":21629,"properties":{"V":345}},{"type":"LineString","arcs":[2952],"id":21637,"properties":{"V":230}},{"type":"LineString","arcs":[2953],"id":21641,"properties":{"V":230}},{"type":"LineString","arcs":[2954],"id":21643,"properties":{"V":230}},{"type":"LineString","arcs":[2955],"id":21654,"properties":{"V":345}},{"type":"LineString","arcs":[2956],"id":21656,"properties":{"V":500}},{"type":"LineString","arcs":[2957],"id":21664,"properties":{"V":230}},{"type":"LineString","arcs":[2958],"id":21665,"properties":{"V":230}},{"type":"LineString","arcs":[2959],"id":21669,"properties":{"V":500}},{"type":"LineString","arcs":[2960],"id":21673,"properties":{"V":345}},{"type":"LineString","arcs":[2961],"id":21675,"properties":{"V":230}},{"type":"LineString","arcs":[2962],"id":21682,"properties":{"V":230}},{"type":"LineString","arcs":[2963],"id":21688,"properties":{"V":345}},{"type":"LineString","arcs":[2964],"id":21690,"properties":{"V":500}},{"type":"LineString","arcs":[2965],"id":21694,"properties":{"V":230}},{"type":"LineString","arcs":[2966],"id":21701,"properties":{"V":230}},{"type":"LineString","arcs":[2967],"id":21702,"properties":{"V":230}},{"type":"LineString","arcs":[2968],"id":21714,"properties":{"V":230}},{"type":"LineString","arcs":[2969],"id":21717,"properties":{"V":345}},{"type":"LineString","arcs":[2970],"id":21723,"properties":{"V":230}},{"type":"LineString","arcs":[2971],"id":21731,"properties":{"V":345}},{"type":"LineString","arcs":[2972],"id":21736,"properties":{"V":230}},{"type":"LineString","arcs":[2973],"id":21742,"properties":{"V":230}},{"type":"LineString","arcs":[2974],"id":21746,"properties":{"V":230}},{"type":"LineString","arcs":[2975],"id":21757,"properties":{"V":345}},{"type":"LineString","arcs":[2976],"id":21766,"properties":{"V":230}},{"type":"LineString","arcs":[2977],"id":21773,"properties":{"V":230}},{"type":"LineString","arcs":[2978],"id":21776,"properties":{"V":230}},{"type":"LineString","arcs":[2979],"id":21779,"properties":{"V":230}},{"type":"LineString","arcs":[2980],"id":21796,"properties":{"V":500}},{"type":"LineString","arcs":[2981],"id":21803,"properties":{"V":230}},{"type":"LineString","arcs":[2982],"id":21809,"properties":{"V":500}},{"type":"LineString","arcs":[2983],"id":21817,"properties":{"V":230}},{"type":"LineString","arcs":[2984],"id":21819,"properties":{"V":345}},{"type":"LineString","arcs":[2985],"id":21821,"properties":{"V":230}},{"type":"LineString","arcs":[2986],"id":21831,"properties":{"V":230}},{"type":"LineString","arcs":[2987],"id":21833,"properties":{"V":230}},{"type":"LineString","arcs":[2988],"id":21838,"properties":{"V":230}},{"type":"LineString","arcs":[2989],"id":21845,"properties":{"V":230}},{"type":"LineString","arcs":[2990],"id":21850,"properties":{"V":230}},{"type":"LineString","arcs":[2991],"id":21853,"properties":{"V":500}},{"type":"LineString","arcs":[2992,2993,2994,2077,2995],"id":21854,"properties":{"V":345}},{"type":"LineString","arcs":[2996],"id":21863,"properties":{"V":230}},{"type":"LineString","arcs":[2997],"id":21865,"properties":{"V":345}},{"type":"LineString","arcs":[2998],"id":21875,"properties":{"V":230}},{"type":"LineString","arcs":[2999],"id":21890,"properties":{"V":230}},{"type":"LineString","arcs":[3000],"id":21895,"properties":{"V":345}},{"type":"LineString","arcs":[3001],"id":21904,"properties":{"V":345}},{"type":"LineString","arcs":[3002],"id":21918,"properties":{"V":230}},{"type":"LineString","arcs":[3003],"id":21937,"properties":{"V":500}},{"type":"LineString","arcs":[3004],"id":21941,"properties":{"V":345}},{"type":"LineString","arcs":[3005],"id":21948,"properties":{"V":345}},{"type":"LineString","arcs":[3006],"id":21957,"properties":{"V":230}},{"type":"LineString","arcs":[3007],"id":21976,"properties":{"V":345}},{"type":"LineString","arcs":[3008],"id":21981,"properties":{"V":230}},{"type":"LineString","arcs":[3009],"id":21989,"properties":{"V":230}},{"type":"LineString","arcs":[3010],"id":21991,"properties":{"V":230}},{"type":"LineString","arcs":[3011],"id":21992,"properties":{"V":345}},{"type":"LineString","arcs":[3012],"id":21998,"properties":{"V":230}},{"type":"LineString","arcs":[3013],"id":22001,"properties":{"V":230}},{"type":"LineString","arcs":[3014],"id":22009,"properties":{"V":345}},{"type":"LineString","arcs":[3015],"id":22011,"properties":{"V":345}},{"type":"LineString","arcs":[3016],"id":22021,"properties":{"V":345}},{"type":"LineString","arcs":[3017],"id":22022,"properties":{"V":345}},{"type":"LineString","arcs":[3018],"id":22026,"properties":{"V":345}},{"type":"LineString","arcs":[3019],"id":22035,"properties":{"V":345}},{"type":"LineString","arcs":[3020],"id":22040,"properties":{"V":230}},{"type":"LineString","arcs":[3021],"id":22070,"properties":{"V":345}},{"type":"LineString","arcs":[3022],"id":22080,"properties":{"V":345}},{"type":"LineString","arcs":[3023],"id":22091,"properties":{"V":345}},{"type":"LineString","arcs":[3024],"id":22092,"properties":{"V":230}},{"type":"LineString","arcs":[3025],"id":22094,"properties":{"V":230}},{"type":"LineString","arcs":[3026],"id":22102,"properties":{"V":500}},{"type":"LineString","arcs":[3027],"id":22109,"properties":{"V":230}},{"type":"LineString","arcs":[3028],"id":22122,"properties":{"V":500}},{"type":"LineString","arcs":[3029],"id":22127,"properties":{"V":345}},{"type":"LineString","arcs":[3030],"id":22128,"properties":{"V":230}},{"type":"LineString","arcs":[3031],"id":22132,"properties":{"V":230}},{"type":"LineString","arcs":[3032],"id":22144,"properties":{"V":230}},{"type":"LineString","arcs":[3033],"id":22161,"properties":{"V":230}},{"type":"LineString","arcs":[3034],"id":22164,"properties":{"V":230}},{"type":"LineString","arcs":[3035],"id":22169,"properties":{"V":345}},{"type":"LineString","arcs":[3036],"id":22176,"properties":{"V":230}},{"type":"LineString","arcs":[3037],"id":22186,"properties":{"V":230}},{"type":"LineString","arcs":[3038],"id":22199,"properties":{"V":345}},{"type":"LineString","arcs":[3039],"id":22208,"properties":{"V":345}},{"type":"LineString","arcs":[3040],"id":22210,"properties":{"V":230}},{"type":"LineString","arcs":[3041],"id":22213,"properties":{"V":230}},{"type":"LineString","arcs":[3042],"id":22222,"properties":{"V":287}},{"type":"LineString","arcs":[3043],"id":22238,"properties":{"V":345}},{"type":"LineString","arcs":[3044],"id":22245,"properties":{"V":230}},{"type":"LineString","arcs":[1822],"id":22249,"properties":{"V":500}},{"type":"LineString","arcs":[3045],"id":22251,"properties":{"V":345}},{"type":"LineString","arcs":[3046],"id":22253,"properties":{"V":230}},{"type":"LineString","arcs":[3047],"id":22265,"properties":{"V":230}},{"type":"LineString","arcs":[3048,3049],"id":22285,"properties":{"V":230}},{"type":"LineString","arcs":[3050],"id":22287,"properties":{"V":230}},{"type":"LineString","arcs":[3051],"id":22294,"properties":{"V":345}},{"type":"LineString","arcs":[3052],"id":22311,"properties":{"V":345}},{"type":"LineString","arcs":[3053],"id":22314,"properties":{"V":230}},{"type":"LineString","arcs":[3054],"id":22323,"properties":{"V":230}},{"type":"LineString","arcs":[3055],"id":22334,"properties":{"V":230}},{"type":"LineString","arcs":[3056],"id":22346,"properties":{"V":230}},{"type":"LineString","arcs":[3057],"id":22359,"properties":{"V":345}},{"type":"LineString","arcs":[3058],"id":22378,"properties":{"V":230}},{"type":"LineString","arcs":[3059],"id":22391,"properties":{"V":230}},{"type":"LineString","arcs":[3060],"id":22393,"properties":{"V":500}},{"type":"LineString","arcs":[3061],"id":22401,"properties":{"V":230}},{"type":"LineString","arcs":[3062],"id":22402,"properties":{"V":345}},{"type":"LineString","arcs":[3063],"id":22404,"properties":{"V":230}},{"type":"LineString","arcs":[3064],"id":22414,"properties":{"V":230}},{"type":"LineString","arcs":[3065],"id":22420,"properties":{"V":345}},{"type":"LineString","arcs":[3066],"id":22451,"properties":{"V":230}},{"type":"LineString","arcs":[3067],"id":22456,"properties":{"V":230}},{"type":"LineString","arcs":[3068],"id":22464,"properties":{"V":500}},{"type":"LineString","arcs":[3069],"id":22493,"properties":{"V":345}},{"type":"LineString","arcs":[3070],"id":22497,"properties":{"V":345}},{"type":"LineString","arcs":[3071],"id":22510,"properties":{"V":230}},{"type":"LineString","arcs":[3072],"id":22522,"properties":{"V":230}},{"type":"LineString","arcs":[3073],"id":22528,"properties":{"V":230}},{"type":"LineString","arcs":[3074],"id":22533,"properties":{"V":230}},{"type":"LineString","arcs":[3075],"id":22545,"properties":{"V":230}},{"type":"LineString","arcs":[3076],"id":22553,"properties":{"V":345}},{"type":"LineString","arcs":[3077],"id":22554,"properties":{"V":230}},{"type":"LineString","arcs":[3078],"id":22584,"properties":{"V":345}},{"type":"LineString","arcs":[3079],"id":22587,"properties":{"V":345}},{"type":"LineString","arcs":[3080],"id":22588,"properties":{"V":230}},{"type":"LineString","arcs":[3081],"id":22593,"properties":{"V":345}},{"type":"LineString","arcs":[3082],"id":22600,"properties":{"V":230}},{"type":"LineString","arcs":[3083],"id":22615,"properties":{"V":345}},{"type":"LineString","arcs":[3084],"id":22617,"properties":{"V":345}},{"type":"LineString","arcs":[3085],"id":22621,"properties":{"V":230}},{"type":"LineString","arcs":[3086],"id":22628,"properties":{"V":500}},{"type":"LineString","arcs":[3087],"id":22634,"properties":{"V":230}},{"type":"LineString","arcs":[3088],"id":22646,"properties":{"V":345}},{"type":"LineString","arcs":[3089,3090],"id":22647,"properties":{"V":230}},{"type":"LineString","arcs":[3091],"id":22649,"properties":{"V":230}},{"type":"LineString","arcs":[3092],"id":22653,"properties":{"V":345}},{"type":"LineString","arcs":[3093],"id":22659,"properties":{"V":230}},{"type":"LineString","arcs":[3094],"id":22660,"properties":{"V":230}},{"type":"LineString","arcs":[3095],"id":22671,"properties":{"V":345}},{"type":"LineString","arcs":[3096],"id":22672,"properties":{"V":345}},{"type":"LineString","arcs":[3097],"id":22681,"properties":{"V":230}},{"type":"LineString","arcs":[3098],"id":22683,"properties":{"V":345}},{"type":"LineString","arcs":[3099],"id":22684,"properties":{"V":230}},{"type":"LineString","arcs":[3100],"id":22689,"properties":{"V":345}},{"type":"LineString","arcs":[3101,3102],"id":22691,"properties":{"V":345}},{"type":"LineString","arcs":[3103],"id":22700,"properties":{"V":230}},{"type":"LineString","arcs":[3104],"id":22701,"properties":{"V":230}},{"type":"LineString","arcs":[3105],"id":22709,"properties":{"V":230}},{"type":"LineString","arcs":[3106],"id":22725,"properties":{"V":230}},{"type":"LineString","arcs":[3107],"id":22727,"properties":{"V":345}},{"type":"LineString","arcs":[3108],"id":22737,"properties":{"V":230}},{"type":"LineString","arcs":[3109],"id":22738,"properties":{"V":230}},{"type":"LineString","arcs":[3110,3111],"id":22747,"properties":{"V":345}},{"type":"LineString","arcs":[3112],"id":22752,"properties":{"V":345}},{"type":"LineString","arcs":[3113],"id":22756,"properties":{"V":230}},{"type":"LineString","arcs":[3114],"id":22760,"properties":{"V":500}},{"type":"LineString","arcs":[3115],"id":22765,"properties":{"V":345}},{"type":"LineString","arcs":[3116],"id":22770,"properties":{"V":230}},{"type":"LineString","arcs":[3117],"id":22775,"properties":{"V":345}},{"type":"LineString","arcs":[3118],"id":22786,"properties":{"V":345}},{"type":"LineString","arcs":[3119,3120],"id":22790,"properties":{"V":345}},{"type":"LineString","arcs":[3121],"id":22791,"properties":{"V":230}},{"type":"LineString","arcs":[3122],"id":22793,"properties":{"V":345}},{"type":"LineString","arcs":[3123],"id":22797,"properties":{"V":500}},{"type":"LineString","arcs":[3124],"id":22799,"properties":{"V":230}},{"type":"LineString","arcs":[3125],"id":22804,"properties":{"V":230}},{"type":"LineString","arcs":[3126],"id":22825,"properties":{"V":230}},{"type":"LineString","arcs":[3127,3128,3129],"id":22842,"properties":{"V":345}},{"type":"LineString","arcs":[3130],"id":22843,"properties":{"V":345}},{"type":"LineString","arcs":[3131],"id":22858,"properties":{"V":230}},{"type":"LineString","arcs":[3132],"id":22876,"properties":{"V":230}},{"type":"LineString","arcs":[3133],"id":22887,"properties":{"V":345}},{"type":"LineString","arcs":[3134],"id":22934,"properties":{"V":345}},{"type":"LineString","arcs":[3135],"id":22944,"properties":{"V":345}},{"type":"LineString","arcs":[3136],"id":22961,"properties":{"V":230}},{"type":"LineString","arcs":[3137],"id":22965,"properties":{"V":345}},{"type":"LineString","arcs":[3138],"id":22970,"properties":{"V":230}},{"type":"LineString","arcs":[3139],"id":22972,"properties":{"V":230}},{"type":"LineString","arcs":[3140],"id":22975,"properties":{"V":345}},{"type":"LineString","arcs":[3141],"id":22982,"properties":{"V":345}},{"type":"LineString","arcs":[3142],"id":23006,"properties":{"V":230}},{"type":"LineString","arcs":[3143],"id":23009,"properties":{"V":345}},{"type":"LineString","arcs":[3144],"id":23017,"properties":{"V":345}},{"type":"LineString","arcs":[3145,3146],"id":23020,"properties":{"V":230}},{"type":"LineString","arcs":[3147],"id":23021,"properties":{"V":230}},{"type":"LineString","arcs":[3148],"id":23024,"properties":{"V":345}},{"type":"LineString","arcs":[3149],"id":23031,"properties":{"V":230}},{"type":"LineString","arcs":[3150],"id":23037,"properties":{"V":500}},{"type":"LineString","arcs":[3151],"id":23050,"properties":{"V":230}},{"type":"LineString","arcs":[3152],"id":23055,"properties":{"V":500}},{"type":"LineString","arcs":[3153],"id":23063,"properties":{"V":345}},{"type":"LineString","arcs":[3154],"id":23065,"properties":{"V":230}},{"type":"LineString","arcs":[3155],"id":23079,"properties":{"V":230}},{"type":"LineString","arcs":[3156],"id":23086,"properties":{"V":230}},{"type":"LineString","arcs":[3157],"id":23089,"properties":{"V":230}},{"type":"LineString","arcs":[3158],"id":23090,"properties":{"V":230}},{"type":"LineString","arcs":[3159],"id":23094,"properties":{"V":230}},{"type":"LineString","arcs":[3160],"id":23095,"properties":{"V":230}},{"type":"LineString","arcs":[3161],"id":23097,"properties":{"V":230}},{"type":"LineString","arcs":[3162],"id":23111,"properties":{"V":230}},{"type":"LineString","arcs":[3163],"id":23124,"properties":{"V":345}},{"type":"LineString","arcs":[3164],"id":23132,"properties":{"V":345}},{"type":"LineString","arcs":[3165],"id":23142,"properties":{"V":345}},{"type":"LineString","arcs":[3166],"id":23145,"properties":{"V":230}},{"type":"LineString","arcs":[3167],"id":23146,"properties":{"V":345}},{"type":"LineString","arcs":[3168],"id":23152,"properties":{"V":230}},{"type":"LineString","arcs":[3169],"id":23157,"properties":{"V":230}},{"type":"LineString","arcs":[3170],"id":23162,"properties":{"V":230}},{"type":"LineString","arcs":[3171],"id":23164,"properties":{"V":230}},{"type":"LineString","arcs":[3172],"id":23174,"properties":{"V":345}},{"type":"LineString","arcs":[3173],"id":23177,"properties":{"V":230}},{"type":"LineString","arcs":[3174],"id":23179,"properties":{"V":230}},{"type":"LineString","arcs":[3175],"id":23184,"properties":{"V":345}},{"type":"LineString","arcs":[3176],"id":23187,"properties":{"V":230}},{"type":"LineString","arcs":[3177],"id":23191,"properties":{"V":230}},{"type":"LineString","arcs":[3178],"id":23193,"properties":{"V":230}},{"type":"LineString","arcs":[3179],"id":23196,"properties":{"V":230}},{"type":"LineString","arcs":[3180],"id":23199,"properties":{"V":500}},{"type":"LineString","arcs":[3181],"id":23202,"properties":{"V":345}},{"type":"LineString","arcs":[3182],"id":23227,"properties":{"V":345}},{"type":"LineString","arcs":[3183],"id":23228,"properties":{"V":230}},{"type":"LineString","arcs":[3184],"id":23231,"properties":{"V":230}},{"type":"LineString","arcs":[3185],"id":23233,"properties":{"V":345}},{"type":"LineString","arcs":[3186],"id":23254,"properties":{"V":230}},{"type":"LineString","arcs":[3187],"id":23268,"properties":{"V":230}},{"type":"LineString","arcs":[3188],"id":23278,"properties":{"V":230}},{"type":"LineString","arcs":[3189],"id":23280,"properties":{"V":230}},{"type":"LineString","arcs":[3190],"id":23300,"properties":{"V":230}},{"type":"LineString","arcs":[3191],"id":23306,"properties":{"V":345}},{"type":"LineString","arcs":[3192],"id":23323,"properties":{"V":230}},{"type":"LineString","arcs":[3193],"id":23336,"properties":{"V":345}},{"type":"LineString","arcs":[3194],"id":23337,"properties":{"V":230}},{"type":"LineString","arcs":[3195],"id":23359,"properties":{"V":230}},{"type":"LineString","arcs":[3196],"id":23376,"properties":{"V":230}},{"type":"LineString","arcs":[3197],"id":23378,"properties":{"V":345}},{"type":"LineString","arcs":[3198],"id":23380,"properties":{"V":230}},{"type":"LineString","arcs":[3199],"id":23387,"properties":{"V":230}},{"type":"LineString","arcs":[3200],"id":23388,"properties":{"V":230}},{"type":"LineString","arcs":[3201,3202],"id":23394,"properties":{"V":230}},{"type":"LineString","arcs":[3203],"id":23398,"properties":{"V":230}},{"type":"LineString","arcs":[3204],"id":23400,"properties":{"V":230}},{"type":"LineString","arcs":[3205],"id":23405,"properties":{"V":230}},{"type":"LineString","arcs":[3206],"id":23406,"properties":{"V":230}},{"type":"LineString","arcs":[3207],"id":23407,"properties":{"V":230}},{"type":"LineString","arcs":[3208],"id":23425,"properties":{"V":230}},{"type":"LineString","arcs":[3209],"id":23436,"properties":{"V":230}},{"type":"LineString","arcs":[3210],"id":23440,"properties":{"V":500}},{"type":"LineString","arcs":[3211],"id":23448,"properties":{"V":230}},{"type":"LineString","arcs":[3212],"id":23459,"properties":{"V":500}},{"type":"LineString","arcs":[3213],"id":23472,"properties":{"V":230}},{"type":"LineString","arcs":[3214],"id":23475,"properties":{"V":345}},{"type":"LineString","arcs":[3215],"id":23476,"properties":{"V":500}},{"type":"LineString","arcs":[3216],"id":23489,"properties":{"V":345}},{"type":"LineString","arcs":[3217],"id":23493,"properties":{"V":345}},{"type":"LineString","arcs":[3218],"id":23497,"properties":{"V":345}},{"type":"LineString","arcs":[3219],"id":23506,"properties":{"V":230}},{"type":"LineString","arcs":[3220],"id":23513,"properties":{"V":230}},{"type":"LineString","arcs":[3221],"id":23526,"properties":{"V":230}},{"type":"LineString","arcs":[3222],"id":23531,"properties":{"V":345}},{"type":"LineString","arcs":[3223],"id":23538,"properties":{"V":230}},{"type":"LineString","arcs":[3224],"id":23542,"properties":{"V":230}},{"type":"LineString","arcs":[3225],"id":23544,"properties":{"V":345}},{"type":"LineString","arcs":[3226],"id":23551,"properties":{"V":345}},{"type":"LineString","arcs":[3227],"id":23552,"properties":{"V":230}},{"type":"LineString","arcs":[3228],"id":23558,"properties":{"V":500}},{"type":"LineString","arcs":[3229],"id":23578,"properties":{"V":230}},{"type":"LineString","arcs":[3230],"id":23587,"properties":{"V":230}},{"type":"LineString","arcs":[3231],"id":23593,"properties":{"V":230}},{"type":"LineString","arcs":[3232],"id":23600,"properties":{"V":345}},{"type":"LineString","arcs":[3233],"id":23603,"properties":{"V":230}},{"type":"LineString","arcs":[3234],"id":23620,"properties":{"V":230}},{"type":"LineString","arcs":[3235],"id":23622,"properties":{"V":230}},{"type":"LineString","arcs":[3236],"id":23626,"properties":{"V":230}},{"type":"LineString","arcs":[3237,3238],"id":23628,"properties":{"V":230}},{"type":"LineString","arcs":[3239],"id":23641,"properties":{"V":230}},{"type":"LineString","arcs":[3240],"id":23642,"properties":{"V":345}},{"type":"LineString","arcs":[3241],"id":23657,"properties":{"V":345}},{"type":"LineString","arcs":[3242],"id":23659,"properties":{"V":230}},{"type":"LineString","arcs":[3243],"id":23672,"properties":{"V":345}},{"type":"LineString","arcs":[3244],"id":23676,"properties":{"V":230}},{"type":"LineString","arcs":[3245],"id":23692,"properties":{"V":230}},{"type":"LineString","arcs":[3246],"id":23699,"properties":{"V":500}},{"type":"LineString","arcs":[3247],"id":23700,"properties":{"V":345}},{"type":"LineString","arcs":[3248],"id":23701,"properties":{"V":230}},{"type":"LineString","arcs":[3249],"id":23708,"properties":{"V":230}},{"type":"LineString","arcs":[3250],"id":23709,"properties":{"V":230}},{"type":"LineString","arcs":[3251,3252],"id":23717,"properties":{"V":230}},{"type":"LineString","arcs":[3253],"id":23718,"properties":{"V":345}},{"type":"LineString","arcs":[3254],"id":23721,"properties":{"V":345}},{"type":"LineString","arcs":[3255],"id":23727,"properties":{"V":230}},{"type":"LineString","arcs":[3256],"id":23732,"properties":{"V":345}},{"type":"LineString","arcs":[3257],"id":23734,"properties":{"V":230}},{"type":"LineString","arcs":[3258,3259,3260],"id":23741,"properties":{"V":230}},{"type":"LineString","arcs":[3261],"id":23758,"properties":{"V":230}},{"type":"LineString","arcs":[3262],"id":23771,"properties":{"V":345}},{"type":"LineString","arcs":[3263],"id":23773,"properties":{"V":230}},{"type":"LineString","arcs":[3264],"id":23774,"properties":{"V":230}},{"type":"LineString","arcs":[3265],"id":23777,"properties":{"V":230}},{"type":"LineString","arcs":[3266],"id":23797,"properties":{"V":230}},{"type":"LineString","arcs":[3267],"id":23798,"properties":{"V":230}},{"type":"LineString","arcs":[3268],"id":23819,"properties":{"V":345}},{"type":"LineString","arcs":[3269],"id":23832,"properties":{"V":500}},{"type":"LineString","arcs":[3270],"id":23843,"properties":{"V":230}},{"type":"LineString","arcs":[3271],"id":23852,"properties":{"V":345}},{"type":"LineString","arcs":[3272],"id":23867,"properties":{"V":230}},{"type":"LineString","arcs":[3273],"id":23869,"properties":{"V":230}},{"type":"LineString","arcs":[3274],"id":23872,"properties":{"V":230}},{"type":"LineString","arcs":[3275],"id":23876,"properties":{"V":345}},{"type":"MultiLineString","arcs":[[3276],[3277]],"id":23880,"properties":{"V":230}},{"type":"LineString","arcs":[3278],"id":23881,"properties":{"V":230}},{"type":"LineString","arcs":[3279],"id":23892,"properties":{"V":230}},{"type":"LineString","arcs":[3280],"id":23905,"properties":{"V":345}},{"type":"LineString","arcs":[3281],"id":23907,"properties":{"V":345}},{"type":"LineString","arcs":[3282],"id":23910,"properties":{"V":230}},{"type":"LineString","arcs":[3283],"id":23912,"properties":{"V":500}},{"type":"LineString","arcs":[3284],"id":23917,"properties":{"V":230}},{"type":"LineString","arcs":[3285],"id":23932,"properties":{"V":230}},{"type":"LineString","arcs":[3286],"id":23934,"properties":{"V":230}},{"type":"LineString","arcs":[3287],"id":23936,"properties":{"V":230}},{"type":"LineString","arcs":[3288],"id":23941,"properties":{"V":230}},{"type":"LineString","arcs":[3289],"id":23945,"properties":{"V":230}},{"type":"LineString","arcs":[3290],"id":23951,"properties":{"V":345}},{"type":"LineString","arcs":[3291],"id":23955,"properties":{"V":345}},{"type":"LineString","arcs":[3292],"id":23967,"properties":{"V":345}},{"type":"LineString","arcs":[3293],"id":23972,"properties":{"V":230}},{"type":"LineString","arcs":[3294],"id":23974,"properties":{"V":345}},{"type":"LineString","arcs":[3295],"id":23977,"properties":{"V":230}},{"type":"LineString","arcs":[3296],"id":23979,"properties":{"V":345}},{"type":"LineString","arcs":[3297],"id":23986,"properties":{"V":230}},{"type":"LineString","arcs":[3298],"id":23993,"properties":{"V":230}},{"type":"LineString","arcs":[3299],"id":23994,"properties":{"V":230}},{"type":"LineString","arcs":[3300],"id":24002,"properties":{"V":345}},{"type":"LineString","arcs":[3301],"id":24021,"properties":{"V":230}},{"type":"LineString","arcs":[3302],"id":24031,"properties":{"V":345}},{"type":"LineString","arcs":[3303],"id":24032,"properties":{"V":500}},{"type":"LineString","arcs":[3304],"id":24044,"properties":{"V":345}},{"type":"LineString","arcs":[3305],"id":24045,"properties":{"V":230}},{"type":"LineString","arcs":[3306],"id":24050,"properties":{"V":230}},{"type":"LineString","arcs":[3307],"id":24052,"properties":{"V":230}},{"type":"LineString","arcs":[3308],"id":24055,"properties":{"V":230}},{"type":"LineString","arcs":[3309],"id":24056,"properties":{"V":500}},{"type":"LineString","arcs":[3310],"id":24070,"properties":{"V":345}},{"type":"LineString","arcs":[3311],"id":24071,"properties":{"V":500}},{"type":"LineString","arcs":[3312],"id":24072,"properties":{"V":345}},{"type":"LineString","arcs":[3313],"id":24077,"properties":{"V":345}},{"type":"LineString","arcs":[3314],"id":24082,"properties":{"V":230}},{"type":"LineString","arcs":[3315],"id":24090,"properties":{"V":500}},{"type":"LineString","arcs":[3316],"id":24094,"properties":{"V":230}},{"type":"LineString","arcs":[3317],"id":24099,"properties":{"V":345}},{"type":"LineString","arcs":[3318],"id":24101,"properties":{"V":230}},{"type":"LineString","arcs":[3319],"id":24111,"properties":{"V":230}},{"type":"LineString","arcs":[3320],"id":24119,"properties":{"V":230}},{"type":"LineString","arcs":[3321],"id":24126,"properties":{"V":345}},{"type":"LineString","arcs":[3322],"id":24128,"properties":{"V":230}},{"type":"LineString","arcs":[3323],"id":24136,"properties":{"V":230}},{"type":"LineString","arcs":[3324],"id":24137,"properties":{"V":230}},{"type":"LineString","arcs":[3325],"id":24140,"properties":{"V":230}},{"type":"LineString","arcs":[3326],"id":24141,"properties":{"V":230}},{"type":"LineString","arcs":[3327],"id":24177,"properties":{"V":230}},{"type":"LineString","arcs":[3328],"id":24183,"properties":{"V":230}},{"type":"LineString","arcs":[3329],"id":24214,"properties":{"V":230}},{"type":"LineString","arcs":[3330],"id":24226,"properties":{"V":230}},{"type":"LineString","arcs":[3331],"id":24230,"properties":{"V":230}},{"type":"LineString","arcs":[3332,3333],"id":24233,"properties":{"V":345}},{"type":"LineString","arcs":[3334],"id":24257,"properties":{"V":230}},{"type":"LineString","arcs":[3335],"id":24258,"properties":{"V":345}},{"type":"LineString","arcs":[3336],"id":24261,"properties":{"V":230}},{"type":"LineString","arcs":[3337],"id":24264,"properties":{"V":345}},{"type":"LineString","arcs":[3338],"id":24267,"properties":{"V":345}},{"type":"LineString","arcs":[3339],"id":24269,"properties":{"V":230}},{"type":"LineString","arcs":[3340],"id":24271,"properties":{"V":230}},{"type":"LineString","arcs":[3341],"id":24282,"properties":{"V":345}},{"type":"LineString","arcs":[3342],"id":24283,"properties":{"V":345}},{"type":"LineString","arcs":[3343],"id":24291,"properties":{"V":230}},{"type":"LineString","arcs":[3344],"id":24292,"properties":{"V":230}},{"type":"LineString","arcs":[3345],"id":24305,"properties":{"V":230}},{"type":"LineString","arcs":[3346],"id":24307,"properties":{"V":345}},{"type":"LineString","arcs":[3347],"id":24312,"properties":{"V":500}},{"type":"LineString","arcs":[3348],"id":24321,"properties":{"V":230}},{"type":"LineString","arcs":[3349],"id":24328,"properties":{"V":230}},{"type":"LineString","arcs":[3350],"id":24330,"properties":{"V":230}},{"type":"LineString","arcs":[3351],"id":24331,"properties":{"V":345}},{"type":"LineString","arcs":[3352],"id":24333,"properties":{"V":345}},{"type":"LineString","arcs":[3353],"id":24344,"properties":{"V":230}},{"type":"LineString","arcs":[3354],"id":24351,"properties":{"V":345}},{"type":"LineString","arcs":[3355],"id":24360,"properties":{"V":345}},{"type":"LineString","arcs":[3356],"id":24373,"properties":{"V":230}},{"type":"LineString","arcs":[3357],"id":24380,"properties":{"V":345}},{"type":"LineString","arcs":[3358],"id":24386,"properties":{"V":230}},{"type":"LineString","arcs":[3359],"id":24392,"properties":{"V":230}},{"type":"LineString","arcs":[3360],"id":24400,"properties":{"V":230}},{"type":"LineString","arcs":[3361],"id":24404,"properties":{"V":345}},{"type":"LineString","arcs":[3362],"id":24409,"properties":{"V":345}},{"type":"LineString","arcs":[3363],"id":24411,"properties":{"V":230}},{"type":"LineString","arcs":[3364],"id":24425,"properties":{"V":345}},{"type":"LineString","arcs":[3365],"id":24431,"properties":{"V":345}},{"type":"LineString","arcs":[3366],"id":24435,"properties":{"V":230}},{"type":"LineString","arcs":[-1625],"id":24441,"properties":{"V":230}},{"type":"LineString","arcs":[3367],"id":24448,"properties":{"V":230}},{"type":"LineString","arcs":[3368],"id":24459,"properties":{"V":345}},{"type":"LineString","arcs":[3369],"id":24461,"properties":{"V":345}},{"type":"LineString","arcs":[3370],"id":24468,"properties":{"V":230}},{"type":"LineString","arcs":[3371],"id":24476,"properties":{"V":345}},{"type":"LineString","arcs":[3372],"id":24479,"properties":{"V":230}},{"type":"LineString","arcs":[3373],"id":24488,"properties":{"V":230}},{"type":"LineString","arcs":[3374],"id":24492,"properties":{"V":230}},{"type":"LineString","arcs":[3375],"id":24494,"properties":{"V":345}},{"type":"LineString","arcs":[3376],"id":24500,"properties":{"V":230}},{"type":"LineString","arcs":[3377],"id":24509,"properties":{"V":230}},{"type":"LineString","arcs":[3378],"id":24513,"properties":{"V":230}},{"type":"LineString","arcs":[3379],"id":24516,"properties":{"V":345}},{"type":"LineString","arcs":[3380],"id":24519,"properties":{"V":230}},{"type":"LineString","arcs":[3381],"id":24520,"properties":{"V":500}},{"type":"LineString","arcs":[3382],"id":24521,"properties":{"V":345}},{"type":"LineString","arcs":[3383],"id":24522,"properties":{"V":500}},{"type":"LineString","arcs":[3384],"id":24524,"properties":{"V":345}},{"type":"LineString","arcs":[3385],"id":24525,"properties":{"V":345}},{"type":"LineString","arcs":[3386],"id":24532,"properties":{"V":230}},{"type":"LineString","arcs":[3387],"id":24535,"properties":{"V":230}},{"type":"LineString","arcs":[3388],"id":24539,"properties":{"V":230}},{"type":"LineString","arcs":[3389],"id":24540,"properties":{"V":500}},{"type":"LineString","arcs":[3390],"id":24543,"properties":{"V":345}},{"type":"LineString","arcs":[3391],"id":24547,"properties":{"V":230}},{"type":"LineString","arcs":[3392],"id":24555,"properties":{"V":230}},{"type":"LineString","arcs":[3393],"id":24556,"properties":{"V":345}},{"type":"LineString","arcs":[3394],"id":24562,"properties":{"V":345}},{"type":"LineString","arcs":[3395],"id":24564,"properties":{"V":345}},{"type":"LineString","arcs":[3396],"id":24574,"properties":{"V":230}},{"type":"LineString","arcs":[3397],"id":24576,"properties":{"V":500}},{"type":"LineString","arcs":[3398],"id":24594,"properties":{"V":500}},{"type":"LineString","arcs":[3399],"id":24598,"properties":{"V":230}},{"type":"LineString","arcs":[3400],"id":24601,"properties":{"V":230}},{"type":"LineString","arcs":[3401],"id":24604,"properties":{"V":230}},{"type":"LineString","arcs":[3402],"id":24609,"properties":{"V":500}},{"type":"LineString","arcs":[3403],"id":24612,"properties":{"V":230}},{"type":"LineString","arcs":[3404],"id":24617,"properties":{"V":230}},{"type":"LineString","arcs":[3405],"id":24618,"properties":{"V":230}},{"type":"LineString","arcs":[3406],"id":24624,"properties":{"V":345}},{"type":"LineString","arcs":[3407],"id":24628,"properties":{"V":345}},{"type":"LineString","arcs":[3408],"id":24630,"properties":{"V":230}},{"type":"LineString","arcs":[3409],"id":24633,"properties":{"V":230}},{"type":"LineString","arcs":[3410],"id":24636,"properties":{"V":345}},{"type":"LineString","arcs":[3411],"id":24651,"properties":{"V":230}},{"type":"LineString","arcs":[3412],"id":24658,"properties":{"V":345}},{"type":"LineString","arcs":[3413,1812,3414,3415],"id":24675,"properties":{"V":500}},{"type":"LineString","arcs":[2213,3416],"id":24676,"properties":{"V":500}},{"type":"LineString","arcs":[3417],"id":24681,"properties":{"V":345}},{"type":"LineString","arcs":[3418],"id":24701,"properties":{"V":230}},{"type":"LineString","arcs":[3419],"id":24708,"properties":{"V":230}},{"type":"LineString","arcs":[3420],"id":24713,"properties":{"V":345}},{"type":"LineString","arcs":[3421],"id":24731,"properties":{"V":230}},{"type":"LineString","arcs":[3422],"id":24743,"properties":{"V":230}},{"type":"LineString","arcs":[3423],"id":24744,"properties":{"V":230}},{"type":"LineString","arcs":[3424],"id":24745,"properties":{"V":345}},{"type":"LineString","arcs":[3425],"id":24754,"properties":{"V":345}},{"type":"LineString","arcs":[3426],"id":24759,"properties":{"V":345}},{"type":"LineString","arcs":[3427],"id":24761,"properties":{"V":230}},{"type":"LineString","arcs":[3428],"id":24767,"properties":{"V":345}},{"type":"LineString","arcs":[3429],"id":24768,"properties":{"V":230}},{"type":"LineString","arcs":[3430],"id":24774,"properties":{"V":230}},{"type":"LineString","arcs":[3431],"id":24787,"properties":{"V":230}},{"type":"LineString","arcs":[3432],"id":24795,"properties":{"V":230}},{"type":"LineString","arcs":[3433],"id":24797,"properties":{"V":230}},{"type":"LineString","arcs":[3434],"id":24801,"properties":{"V":230}},{"type":"LineString","arcs":[3435],"id":24803,"properties":{"V":345}},{"type":"LineString","arcs":[3436],"id":24811,"properties":{"V":230}},{"type":"LineString","arcs":[3437],"id":24826,"properties":{"V":230}},{"type":"LineString","arcs":[3438],"id":24837,"properties":{"V":230}},{"type":"LineString","arcs":[3439],"id":24845,"properties":{"V":230}},{"type":"LineString","arcs":[3440],"id":24846,"properties":{"V":230}},{"type":"LineString","arcs":[3441],"id":24847,"properties":{"V":230}},{"type":"LineString","arcs":[3442],"id":24860,"properties":{"V":230}},{"type":"LineString","arcs":[3443],"id":24862,"properties":{"V":230}},{"type":"LineString","arcs":[3444],"id":24864,"properties":{"V":345}},{"type":"LineString","arcs":[3445],"id":24865,"properties":{"V":500}},{"type":"LineString","arcs":[3446],"id":24893,"properties":{"V":345}},{"type":"LineString","arcs":[3447],"id":24897,"properties":{"V":230}},{"type":"LineString","arcs":[3448],"id":24898,"properties":{"V":345}},{"type":"LineString","arcs":[3449],"id":24908,"properties":{"V":230}},{"type":"LineString","arcs":[3450],"id":24919,"properties":{"V":230}},{"type":"LineString","arcs":[3451],"id":24922,"properties":{"V":500}},{"type":"LineString","arcs":[3452],"id":24923,"properties":{"V":230}},{"type":"LineString","arcs":[3453],"id":24930,"properties":{"V":230}},{"type":"LineString","arcs":[3454],"id":24956,"properties":{"V":345}},{"type":"LineString","arcs":[3455],"id":24962,"properties":{"V":230}},{"type":"LineString","arcs":[3456],"id":24967,"properties":{"V":345}},{"type":"LineString","arcs":[3457],"id":24971,"properties":{"V":345}},{"type":"LineString","arcs":[3458],"id":24977,"properties":{"V":230}},{"type":"LineString","arcs":[3459],"id":24992,"properties":{"V":230}},{"type":"LineString","arcs":[3460],"id":24993,"properties":{"V":230}},{"type":"LineString","arcs":[3461],"id":24997,"properties":{"V":345}},{"type":"LineString","arcs":[3462],"id":25005,"properties":{"V":230}},{"type":"LineString","arcs":[3463],"id":25009,"properties":{"V":230}},{"type":"LineString","arcs":[3464],"id":25016,"properties":{"V":345}},{"type":"LineString","arcs":[3465],"id":25027,"properties":{"V":230}},{"type":"LineString","arcs":[3466],"id":25028,"properties":{"V":345}},{"type":"LineString","arcs":[3467],"id":25029,"properties":{"V":345}},{"type":"LineString","arcs":[3468],"id":25031,"properties":{"V":230}},{"type":"LineString","arcs":[3469],"id":25035,"properties":{"V":345}},{"type":"LineString","arcs":[3470],"id":25036,"properties":{"V":230}},{"type":"LineString","arcs":[3471],"id":25052,"properties":{"V":500}},{"type":"LineString","arcs":[3472,3473],"id":25057,"properties":{"V":345}},{"type":"LineString","arcs":[3474],"id":25059,"properties":{"V":230}},{"type":"LineString","arcs":[3475],"id":25068,"properties":{"V":230}},{"type":"LineString","arcs":[3476],"id":25070,"properties":{"V":500}},{"type":"LineString","arcs":[3477],"id":25073,"properties":{"V":230}},{"type":"LineString","arcs":[3478],"id":25080,"properties":{"V":230}},{"type":"LineString","arcs":[3479],"id":25081,"properties":{"V":345}},{"type":"LineString","arcs":[3480],"id":25089,"properties":{"V":345}},{"type":"LineString","arcs":[3481],"id":25095,"properties":{"V":345}},{"type":"LineString","arcs":[3482],"id":25097,"properties":{"V":345}},{"type":"LineString","arcs":[3483],"id":25104,"properties":{"V":345}},{"type":"LineString","arcs":[3484,3485,3486,3487,3488,3489],"id":25105,"properties":{"V":500}},{"type":"LineString","arcs":[3490],"id":25125,"properties":{"V":345}},{"type":"LineString","arcs":[3491,3492],"id":25133,"properties":{"V":230}},{"type":"LineString","arcs":[3493],"id":25144,"properties":{"V":230}},{"type":"LineString","arcs":[3494],"id":25147,"properties":{"V":230}},{"type":"LineString","arcs":[3495],"id":25148,"properties":{"V":230}},{"type":"LineString","arcs":[3496],"id":25153,"properties":{"V":345}},{"type":"LineString","arcs":[3497],"id":25164,"properties":{"V":345}},{"type":"LineString","arcs":[3498],"id":25172,"properties":{"V":230}},{"type":"LineString","arcs":[3499],"id":25174,"properties":{"V":230}},{"type":"LineString","arcs":[3500],"id":25195,"properties":{"V":230}},{"type":"LineString","arcs":[3501],"id":25217,"properties":{"V":345}},{"type":"LineString","arcs":[-2200,3502,3503,3504,3505,3506,-2194,3507,3508],"id":25223,"properties":{"V":345}},{"type":"LineString","arcs":[3509],"id":25244,"properties":{"V":230}},{"type":"LineString","arcs":[3510],"id":25250,"properties":{"V":230}},{"type":"LineString","arcs":[3511],"id":25257,"properties":{"V":230}},{"type":"LineString","arcs":[3512,3513,3514],"id":25258,"properties":{"V":345}},{"type":"LineString","arcs":[3515],"id":25268,"properties":{"V":345}},{"type":"LineString","arcs":[3516],"id":25270,"properties":{"V":230}},{"type":"LineString","arcs":[3517],"id":25272,"properties":{"V":230}},{"type":"LineString","arcs":[3518],"id":25279,"properties":{"V":345}},{"type":"LineString","arcs":[1730],"id":25282,"properties":{"V":230}},{"type":"LineString","arcs":[3519],"id":25303,"properties":{"V":230}},{"type":"LineString","arcs":[3520],"id":25307,"properties":{"V":345}},{"type":"LineString","arcs":[3521],"id":25310,"properties":{"V":230}},{"type":"LineString","arcs":[3522],"id":25322,"properties":{"V":238}},{"type":"LineString","arcs":[3523],"id":25334,"properties":{"V":345}},{"type":"LineString","arcs":[3524],"id":25335,"properties":{"V":230}},{"type":"LineString","arcs":[3525],"id":25339,"properties":{"V":345}},{"type":"LineString","arcs":[3526],"id":25345,"properties":{"V":230}},{"type":"LineString","arcs":[3527],"id":25347,"properties":{"V":345}},{"type":"LineString","arcs":[3528],"id":25356,"properties":{"V":230}},{"type":"LineString","arcs":[3529],"id":25358,"properties":{"V":345}},{"type":"LineString","arcs":[3530],"id":25391,"properties":{"V":230}},{"type":"LineString","arcs":[3531,3532],"id":25407,"properties":{"V":230}},{"type":"LineString","arcs":[3533],"id":25499,"properties":{"V":345}},{"type":"LineString","arcs":[3534],"id":25502,"properties":{"V":230}},{"type":"LineString","arcs":[3535],"id":25513,"properties":{"V":345}},{"type":"LineString","arcs":[3536],"id":25518,"properties":{"V":230}},{"type":"LineString","arcs":[3537],"id":25528,"properties":{"V":230}},{"type":"LineString","arcs":[3538],"id":25538,"properties":{"V":230}},{"type":"LineString","arcs":[3539],"id":25542,"properties":{"V":230}},{"type":"LineString","arcs":[3540],"id":25543,"properties":{"V":230}},{"type":"LineString","arcs":[3541],"id":25545,"properties":{"V":230}},{"type":"LineString","arcs":[3542],"id":25555,"properties":{"V":230}},{"type":"LineString","arcs":[3543],"id":25558,"properties":{"V":230}},{"type":"LineString","arcs":[3544],"id":25567,"properties":{"V":230}},{"type":"LineString","arcs":[3545],"id":25577,"properties":{"V":230}},{"type":"LineString","arcs":[3546],"id":25578,"properties":{"V":230}},{"type":"LineString","arcs":[3547],"id":25585,"properties":{"V":500}},{"type":"LineString","arcs":[3548],"id":25614,"properties":{"V":345}},{"type":"LineString","arcs":[3549],"id":25621,"properties":{"V":230}},{"type":"LineString","arcs":[3550],"id":25631,"properties":{"V":230}},{"type":"LineString","arcs":[3551],"id":25642,"properties":{"V":230}},{"type":"LineString","arcs":[3552],"id":25655,"properties":{"V":230}},{"type":"LineString","arcs":[3553],"id":25670,"properties":{"V":345}},{"type":"LineString","arcs":[3554],"id":25681,"properties":{"V":230}},{"type":"LineString","arcs":[3555],"id":25682,"properties":{"V":345}},{"type":"LineString","arcs":[3556],"id":25685,"properties":{"V":230}},{"type":"LineString","arcs":[3557],"id":25686,"properties":{"V":500}},{"type":"LineString","arcs":[3558],"id":25692,"properties":{"V":345}},{"type":"LineString","arcs":[3559],"id":25694,"properties":{"V":230}},{"type":"LineString","arcs":[3560],"id":25697,"properties":{"V":345}},{"type":"LineString","arcs":[3561],"id":25699,"properties":{"V":230}},{"type":"LineString","arcs":[3562],"id":25710,"properties":{"V":230}},{"type":"LineString","arcs":[3563],"id":25712,"properties":{"V":230}},{"type":"LineString","arcs":[3564],"id":25717,"properties":{"V":230}},{"type":"LineString","arcs":[3565],"id":25723,"properties":{"V":345}},{"type":"LineString","arcs":[3566],"id":25726,"properties":{"V":345}},{"type":"LineString","arcs":[3567],"id":25746,"properties":{"V":345}},{"type":"LineString","arcs":[3568],"id":25771,"properties":{"V":230}},{"type":"LineString","arcs":[3569],"id":25776,"properties":{"V":230}},{"type":"LineString","arcs":[3570],"id":25780,"properties":{"V":230}},{"type":"LineString","arcs":[3571],"id":25816,"properties":{"V":230}},{"type":"LineString","arcs":[3572],"id":25829,"properties":{"V":230}},{"type":"LineString","arcs":[3573],"id":25839,"properties":{"V":345}},{"type":"LineString","arcs":[3574],"id":25843,"properties":{"V":230}},{"type":"LineString","arcs":[3575],"id":25849,"properties":{"V":345}},{"type":"LineString","arcs":[3576],"id":25850,"properties":{"V":230}},{"type":"LineString","arcs":[3577],"id":25855,"properties":{"V":230}},{"type":"LineString","arcs":[3578],"id":25869,"properties":{"V":230}},{"type":"LineString","arcs":[3579],"id":25871,"properties":{"V":230}},{"type":"LineString","arcs":[3580],"id":25874,"properties":{"V":345}},{"type":"LineString","arcs":[3581],"id":25879,"properties":{"V":230}},{"type":"LineString","arcs":[3582],"id":25883,"properties":{"V":230}},{"type":"LineString","arcs":[3583],"id":25884,"properties":{"V":345}},{"type":"LineString","arcs":[3584],"id":25903,"properties":{"V":230}},{"type":"LineString","arcs":[3585],"id":25910,"properties":{"V":230}},{"type":"LineString","arcs":[3586],"id":25928,"properties":{"V":345}},{"type":"LineString","arcs":[3587],"id":25933,"properties":{"V":230}},{"type":"LineString","arcs":[3588],"id":25956,"properties":{"V":230}},{"type":"LineString","arcs":[3589],"id":25975,"properties":{"V":230}},{"type":"LineString","arcs":[3590],"id":26012,"properties":{"V":230}},{"type":"LineString","arcs":[3591],"id":26021,"properties":{"V":345}},{"type":"LineString","arcs":[3592],"id":26029,"properties":{"V":230}},{"type":"LineString","arcs":[3593],"id":26036,"properties":{"V":230}},{"type":"LineString","arcs":[3594],"id":26038,"properties":{"V":230}},{"type":"LineString","arcs":[3595],"id":26046,"properties":{"V":230}},{"type":"LineString","arcs":[3596],"id":26058,"properties":{"V":230}},{"type":"LineString","arcs":[3597],"id":26062,"properties":{"V":230}},{"type":"LineString","arcs":[3598],"id":26071,"properties":{"V":230}},{"type":"LineString","arcs":[3599],"id":26075,"properties":{"V":230}},{"type":"LineString","arcs":[3600],"id":26076,"properties":{"V":230}},{"type":"LineString","arcs":[3601],"id":26077,"properties":{"V":765}},{"type":"LineString","arcs":[3602],"id":26113,"properties":{"V":345}},{"type":"LineString","arcs":[3603],"id":26125,"properties":{"V":230}},{"type":"LineString","arcs":[3604],"id":26127,"properties":{"V":230}},{"type":"LineString","arcs":[3605],"id":26134,"properties":{"V":345}},{"type":"LineString","arcs":[3606],"id":26137,"properties":{"V":345}},{"type":"LineString","arcs":[3607],"id":26145,"properties":{"V":230}},{"type":"LineString","arcs":[3608],"id":26149,"properties":{"V":345}},{"type":"LineString","arcs":[3609],"id":26152,"properties":{"V":230}},{"type":"LineString","arcs":[3610],"id":26157,"properties":{"V":345}},{"type":"LineString","arcs":[3611],"id":26178,"properties":{"V":500}},{"type":"LineString","arcs":[3612],"id":26179,"properties":{"V":230}},{"type":"LineString","arcs":[3613],"id":26180,"properties":{"V":345}},{"type":"LineString","arcs":[3614],"id":26188,"properties":{"V":500}},{"type":"LineString","arcs":[3615],"id":26190,"properties":{"V":230}},{"type":"LineString","arcs":[3616],"id":26197,"properties":{"V":230}},{"type":"LineString","arcs":[3617],"id":26209,"properties":{"V":230}},{"type":"LineString","arcs":[3618],"id":26211,"properties":{"V":230}},{"type":"LineString","arcs":[3619],"id":26214,"properties":{"V":230}},{"type":"LineString","arcs":[3620],"id":26215,"properties":{"V":345}},{"type":"LineString","arcs":[3621],"id":26216,"properties":{"V":230}},{"type":"LineString","arcs":[3622],"id":26219,"properties":{"V":345}},{"type":"LineString","arcs":[3623],"id":26234,"properties":{"V":230}},{"type":"LineString","arcs":[3624,3625],"id":26237,"properties":{"V":230}},{"type":"LineString","arcs":[3626],"id":26242,"properties":{"V":345}},{"type":"LineString","arcs":[3627],"id":26244,"properties":{"V":230}},{"type":"LineString","arcs":[3628],"id":26272,"properties":{"V":230}},{"type":"LineString","arcs":[3629],"id":26277,"properties":{"V":230}},{"type":"LineString","arcs":[3630],"id":26280,"properties":{"V":230}},{"type":"LineString","arcs":[3631],"id":26282,"properties":{"V":230}},{"type":"LineString","arcs":[3632],"id":26290,"properties":{"V":230}},{"type":"LineString","arcs":[3633],"id":26292,"properties":{"V":230}},{"type":"LineString","arcs":[3634],"id":26294,"properties":{"V":500}},{"type":"LineString","arcs":[3635],"id":26301,"properties":{"V":345}},{"type":"LineString","arcs":[3636],"id":26321,"properties":{"V":230}},{"type":"LineString","arcs":[3637],"id":26327,"properties":{"V":230}},{"type":"LineString","arcs":[3638,3639],"id":26333,"properties":{"V":230}},{"type":"LineString","arcs":[3640,3641,3642],"id":26371,"properties":{"V":230}},{"type":"LineString","arcs":[3643],"id":26383,"properties":{"V":230}},{"type":"LineString","arcs":[3644],"id":26401,"properties":{"V":230}},{"type":"LineString","arcs":[3645],"id":26402,"properties":{"V":345}},{"type":"LineString","arcs":[3646],"id":26408,"properties":{"V":345}},{"type":"LineString","arcs":[3647],"id":26409,"properties":{"V":230}},{"type":"LineString","arcs":[3648],"id":26411,"properties":{"V":345}},{"type":"LineString","arcs":[3649],"id":26417,"properties":{"V":230}},{"type":"LineString","arcs":[3650],"id":26444,"properties":{"V":345}},{"type":"LineString","arcs":[3651],"id":26453,"properties":{"V":230}},{"type":"LineString","arcs":[3652],"id":26463,"properties":{"V":230}},{"type":"LineString","arcs":[3653],"id":26466,"properties":{"V":230}},{"type":"LineString","arcs":[3654],"id":26470,"properties":{"V":230}},{"type":"LineString","arcs":[3655],"id":26471,"properties":{"V":230}},{"type":"LineString","arcs":[3656],"id":26474,"properties":{"V":230}},{"type":"LineString","arcs":[3657],"id":26477,"properties":{"V":230}},{"type":"LineString","arcs":[3658],"id":26478,"properties":{"V":345}},{"type":"LineString","arcs":[3659],"id":26479,"properties":{"V":230}},{"type":"LineString","arcs":[3660],"id":26488,"properties":{"V":230}},{"type":"LineString","arcs":[3661],"id":26490,"properties":{"V":230}},{"type":"LineString","arcs":[3662],"id":26499,"properties":{"V":345}},{"type":"LineString","arcs":[3663],"id":26504,"properties":{"V":230}},{"type":"LineString","arcs":[3664,3665,3666],"id":26518,"properties":{"V":345}},{"type":"LineString","arcs":[3667],"id":26530,"properties":{"V":345}},{"type":"LineString","arcs":[3668],"id":26532,"properties":{"V":230}},{"type":"LineString","arcs":[3669],"id":26535,"properties":{"V":230}},{"type":"LineString","arcs":[3670,3671],"id":26539,"properties":{"V":500}},{"type":"LineString","arcs":[3672],"id":26544,"properties":{"V":345}},{"type":"LineString","arcs":[3673],"id":26546,"properties":{"V":345}},{"type":"LineString","arcs":[3674],"id":26547,"properties":{"V":230}},{"type":"LineString","arcs":[3675],"id":26550,"properties":{"V":345}},{"type":"LineString","arcs":[3676],"id":26564,"properties":{"V":230}},{"type":"LineString","arcs":[3677],"id":26575,"properties":{"V":230}},{"type":"LineString","arcs":[3678],"id":26580,"properties":{"V":345}},{"type":"LineString","arcs":[3679],"id":26587,"properties":{"V":230}},{"type":"LineString","arcs":[3680],"id":26589,"properties":{"V":230}},{"type":"LineString","arcs":[3681],"id":26597,"properties":{"V":230}},{"type":"LineString","arcs":[3682],"id":26602,"properties":{"V":345}},{"type":"LineString","arcs":[3683,3684,3685],"id":26603,"properties":{"V":230}},{"type":"LineString","arcs":[3686],"id":26606,"properties":{"V":230}},{"type":"LineString","arcs":[3687],"id":26614,"properties":{"V":230}},{"type":"LineString","arcs":[3688],"id":26619,"properties":{"V":230}},{"type":"LineString","arcs":[3689],"id":26631,"properties":{"V":345}},{"type":"LineString","arcs":[3690],"id":26645,"properties":{"V":230}},{"type":"LineString","arcs":[3691],"id":26655,"properties":{"V":345}},{"type":"LineString","arcs":[3692],"id":26656,"properties":{"V":500}},{"type":"LineString","arcs":[3693],"id":26673,"properties":{"V":230}},{"type":"LineString","arcs":[3694],"id":26683,"properties":{"V":230}},{"type":"LineString","arcs":[3695],"id":26685,"properties":{"V":345}},{"type":"LineString","arcs":[3696],"id":26688,"properties":{"V":230}},{"type":"LineString","arcs":[3697],"id":26693,"properties":{"V":230}},{"type":"LineString","arcs":[3698],"id":26701,"properties":{"V":230}},{"type":"LineString","arcs":[3699],"id":26703,"properties":{"V":500}},{"type":"LineString","arcs":[3700],"id":26708,"properties":{"V":230}},{"type":"LineString","arcs":[3701],"id":26723,"properties":{"V":230}},{"type":"LineString","arcs":[3702],"id":26751,"properties":{"V":230}},{"type":"LineString","arcs":[3703],"id":26763,"properties":{"V":345}},{"type":"LineString","arcs":[3704],"id":26766,"properties":{"V":230}},{"type":"LineString","arcs":[3705],"id":26770,"properties":{"V":345}},{"type":"LineString","arcs":[3706],"id":26772,"properties":{"V":230}},{"type":"LineString","arcs":[3707],"id":26787,"properties":{"V":230}},{"type":"LineString","arcs":[3708],"id":26794,"properties":{"V":230}},{"type":"LineString","arcs":[3709],"id":26796,"properties":{"V":345}},{"type":"LineString","arcs":[3710],"id":26799,"properties":{"V":230}},{"type":"LineString","arcs":[3711],"id":26800,"properties":{"V":345}},{"type":"LineString","arcs":[3712],"id":26813,"properties":{"V":230}},{"type":"LineString","arcs":[3713],"id":26819,"properties":{"V":230}},{"type":"LineString","arcs":[3714],"id":26824,"properties":{"V":345}},{"type":"LineString","arcs":[3715],"id":26825,"properties":{"V":230}},{"type":"LineString","arcs":[3716],"id":26827,"properties":{"V":230}},{"type":"LineString","arcs":[3717],"id":26831,"properties":{"V":230}},{"type":"LineString","arcs":[3718],"id":26835,"properties":{"V":230}},{"type":"LineString","arcs":[3719],"id":26838,"properties":{"V":230}},{"type":"LineString","arcs":[3720],"id":26841,"properties":{"V":765}},{"type":"LineString","arcs":[3721],"id":26849,"properties":{"V":230}},{"type":"LineString","arcs":[3722],"id":26858,"properties":{"V":500}},{"type":"LineString","arcs":[3723],"id":26864,"properties":{"V":230}},{"type":"LineString","arcs":[3724],"id":26865,"properties":{"V":230}},{"type":"LineString","arcs":[3725],"id":26872,"properties":{"V":230}},{"type":"LineString","arcs":[3726],"id":26888,"properties":{"V":345}},{"type":"LineString","arcs":[3727],"id":26895,"properties":{"V":230}},{"type":"LineString","arcs":[3728],"id":26904,"properties":{"V":230}},{"type":"LineString","arcs":[3729,3730,3731],"id":26907,"properties":{"V":230}},{"type":"LineString","arcs":[3732],"id":26917,"properties":{"V":500}},{"type":"LineString","arcs":[3733],"id":26921,"properties":{"V":230}},{"type":"LineString","arcs":[3734],"id":26923,"properties":{"V":230}},{"type":"LineString","arcs":[3735],"id":26927,"properties":{"V":230}},{"type":"LineString","arcs":[3736],"id":26928,"properties":{"V":230}},{"type":"LineString","arcs":[3737],"id":26934,"properties":{"V":230}},{"type":"LineString","arcs":[3738],"id":26938,"properties":{"V":230}},{"type":"LineString","arcs":[3739,3740],"id":26946,"properties":{"V":230}},{"type":"LineString","arcs":[3741],"id":26949,"properties":{"V":230}},{"type":"LineString","arcs":[3742],"id":26952,"properties":{"V":345}},{"type":"LineString","arcs":[3743],"id":26953,"properties":{"V":230}},{"type":"LineString","arcs":[3744],"id":26956,"properties":{"V":230}},{"type":"LineString","arcs":[3745],"id":26958,"properties":{"V":230}},{"type":"LineString","arcs":[3746],"id":26965,"properties":{"V":345}},{"type":"LineString","arcs":[3747],"id":26977,"properties":{"V":230}},{"type":"LineString","arcs":[3748],"id":26981,"properties":{"V":230}},{"type":"LineString","arcs":[3749],"id":26982,"properties":{"V":230}},{"type":"LineString","arcs":[3750],"id":26983,"properties":{"V":345}},{"type":"LineString","arcs":[3751],"id":26996,"properties":{"V":230}},{"type":"LineString","arcs":[3752],"id":27002,"properties":{"V":230}},{"type":"LineString","arcs":[3753],"id":27004,"properties":{"V":230}},{"type":"LineString","arcs":[3754],"id":27005,"properties":{"V":230}},{"type":"LineString","arcs":[3755],"id":27007,"properties":{"V":230}},{"type":"LineString","arcs":[3756],"id":27009,"properties":{"V":230}},{"type":"LineString","arcs":[3757],"id":27021,"properties":{"V":345}},{"type":"LineString","arcs":[3758],"id":27024,"properties":{"V":345}},{"type":"LineString","arcs":[3759],"id":27029,"properties":{"V":765}},{"type":"LineString","arcs":[3760],"id":27034,"properties":{"V":230}},{"type":"LineString","arcs":[3761],"id":27048,"properties":{"V":230}},{"type":"LineString","arcs":[3762],"id":27050,"properties":{"V":230}},{"type":"LineString","arcs":[3763],"id":27059,"properties":{"V":230}},{"type":"LineString","arcs":[3764],"id":27065,"properties":{"V":345}},{"type":"LineString","arcs":[3765],"id":27070,"properties":{"V":345}},{"type":"LineString","arcs":[3766],"id":27073,"properties":{"V":230}},{"type":"LineString","arcs":[3767],"id":27079,"properties":{"V":345}},{"type":"LineString","arcs":[3768],"id":27088,"properties":{"V":230}},{"type":"LineString","arcs":[3769],"id":27111,"properties":{"V":345}},{"type":"LineString","arcs":[3770],"id":27115,"properties":{"V":230}},{"type":"LineString","arcs":[3771],"id":27118,"properties":{"V":230}},{"type":"LineString","arcs":[3772],"id":27125,"properties":{"V":230}},{"type":"LineString","arcs":[3773],"id":27130,"properties":{"V":230}},{"type":"LineString","arcs":[3774],"id":27137,"properties":{"V":230}},{"type":"LineString","arcs":[3775],"id":27145,"properties":{"V":345}},{"type":"LineString","arcs":[3776],"id":27156,"properties":{"V":345}},{"type":"LineString","arcs":[3777],"id":27170,"properties":{"V":345}},{"type":"LineString","arcs":[3778],"id":27176,"properties":{"V":230}},{"type":"LineString","arcs":[3779],"id":27190,"properties":{"V":230}},{"type":"LineString","arcs":[3780],"id":27192,"properties":{"V":345}},{"type":"LineString","arcs":[3781,3782],"id":27202,"properties":{"V":230}},{"type":"LineString","arcs":[3783],"id":27208,"properties":{"V":345}},{"type":"LineString","arcs":[3784],"id":27214,"properties":{"V":345}},{"type":"LineString","arcs":[3785],"id":27223,"properties":{"V":230}},{"type":"LineString","arcs":[3786],"id":27226,"properties":{"V":230}},{"type":"LineString","arcs":[3787],"id":27236,"properties":{"V":230}},{"type":"LineString","arcs":[3788],"id":27244,"properties":{"V":230}},{"type":"LineString","arcs":[3789],"id":27245,"properties":{"V":345}},{"type":"LineString","arcs":[3790],"id":27251,"properties":{"V":345}},{"type":"LineString","arcs":[3791],"id":27254,"properties":{"V":230}},{"type":"LineString","arcs":[3792],"id":27255,"properties":{"V":230}},{"type":"LineString","arcs":[3793],"id":27262,"properties":{"V":230}},{"type":"LineString","arcs":[3794],"id":27264,"properties":{"V":230}},{"type":"LineString","arcs":[3795],"id":27265,"properties":{"V":345}},{"type":"LineString","arcs":[3796],"id":27282,"properties":{"V":345}},{"type":"LineString","arcs":[3797],"id":27285,"properties":{"V":345}},{"type":"LineString","arcs":[3798],"id":27296,"properties":{"V":345}},{"type":"LineString","arcs":[3799],"id":27305,"properties":{"V":230}},{"type":"LineString","arcs":[3800],"id":27310,"properties":{"V":345}},{"type":"LineString","arcs":[3801],"id":27316,"properties":{"V":345}},{"type":"LineString","arcs":[3802],"id":27325,"properties":{"V":230}},{"type":"LineString","arcs":[3803],"id":27327,"properties":{"V":230}},{"type":"LineString","arcs":[3804],"id":27338,"properties":{"V":230}},{"type":"LineString","arcs":[3805],"id":27343,"properties":{"V":230}},{"type":"LineString","arcs":[3806],"id":27352,"properties":{"V":345}},{"type":"LineString","arcs":[3807],"id":27359,"properties":{"V":345}},{"type":"LineString","arcs":[3808],"id":27364,"properties":{"V":345}},{"type":"LineString","arcs":[3809],"id":27366,"properties":{"V":230}},{"type":"LineString","arcs":[3810],"id":27367,"properties":{"V":345}},{"type":"LineString","arcs":[3811],"id":27380,"properties":{"V":230}},{"type":"LineString","arcs":[3812],"id":27385,"properties":{"V":230}},{"type":"LineString","arcs":[3813],"id":27398,"properties":{"V":230}},{"type":"LineString","arcs":[3814],"id":27407,"properties":{"V":230}},{"type":"LineString","arcs":[3815],"id":27413,"properties":{"V":230}},{"type":"LineString","arcs":[3816],"id":27424,"properties":{"V":500}},{"type":"LineString","arcs":[3817],"id":27426,"properties":{"V":345}},{"type":"LineString","arcs":[3818],"id":27427,"properties":{"V":230}},{"type":"LineString","arcs":[3819],"id":27448,"properties":{"V":230}},{"type":"LineString","arcs":[3820],"id":27449,"properties":{"V":230}},{"type":"LineString","arcs":[3821],"id":27451,"properties":{"V":230}},{"type":"LineString","arcs":[3822],"id":27455,"properties":{"V":230}},{"type":"LineString","arcs":[3823],"id":27459,"properties":{"V":230}},{"type":"LineString","arcs":[3824],"id":27467,"properties":{"V":230}},{"type":"LineString","arcs":[3825],"id":27468,"properties":{"V":230}},{"type":"LineString","arcs":[3826,3827],"id":27475,"properties":{"V":345}},{"type":"LineString","arcs":[3828],"id":27476,"properties":{"V":230}},{"type":"LineString","arcs":[3829],"id":27489,"properties":{"V":230}},{"type":"LineString","arcs":[3830],"id":27494,"properties":{"V":230}},{"type":"LineString","arcs":[3831],"id":27497,"properties":{"V":230}},{"type":"LineString","arcs":[3832],"id":27520,"properties":{"V":345}},{"type":"LineString","arcs":[3833],"id":27522,"properties":{"V":230}},{"type":"LineString","arcs":[3834],"id":27539,"properties":{"V":230}},{"type":"LineString","arcs":[3835],"id":27558,"properties":{"V":345}},{"type":"LineString","arcs":[3836],"id":27561,"properties":{"V":230}},{"type":"LineString","arcs":[3837],"id":27569,"properties":{"V":230}},{"type":"LineString","arcs":[3838],"id":27584,"properties":{"V":345}},{"type":"LineString","arcs":[3839],"id":27598,"properties":{"V":230}},{"type":"LineString","arcs":[3840],"id":27602,"properties":{"V":230}},{"type":"LineString","arcs":[3841],"id":27607,"properties":{"V":230}},{"type":"LineString","arcs":[3842],"id":27614,"properties":{"V":345}},{"type":"LineString","arcs":[3843],"id":27634,"properties":{"V":345}},{"type":"LineString","arcs":[3844],"id":27637,"properties":{"V":230}},{"type":"LineString","arcs":[3845],"id":27646,"properties":{"V":345}},{"type":"LineString","arcs":[3846],"id":27649,"properties":{"V":230}},{"type":"LineString","arcs":[3847],"id":27670,"properties":{"V":230}},{"type":"LineString","arcs":[3848],"id":27680,"properties":{"V":230}},{"type":"LineString","arcs":[3849],"id":27684,"properties":{"V":230}},{"type":"LineString","arcs":[3850],"id":27694,"properties":{"V":230}},{"type":"LineString","arcs":[3851,3852],"id":27700,"properties":{"V":230}},{"type":"LineString","arcs":[3853],"id":27714,"properties":{"V":230}},{"type":"LineString","arcs":[3854],"id":27719,"properties":{"V":345}},{"type":"LineString","arcs":[3855,3856,3857,3858],"id":27728,"properties":{"V":500}},{"type":"LineString","arcs":[3859],"id":27742,"properties":{"V":230}},{"type":"LineString","arcs":[3860],"id":27750,"properties":{"V":500}},{"type":"LineString","arcs":[3861],"id":27763,"properties":{"V":345}},{"type":"LineString","arcs":[3862],"id":27764,"properties":{"V":230}},{"type":"LineString","arcs":[3863],"id":27766,"properties":{"V":345}},{"type":"LineString","arcs":[3864],"id":27782,"properties":{"V":230}},{"type":"LineString","arcs":[3865],"id":27789,"properties":{"V":230}},{"type":"LineString","arcs":[3866],"id":27799,"properties":{"V":230}},{"type":"LineString","arcs":[3867],"id":27801,"properties":{"V":230}},{"type":"LineString","arcs":[3868],"id":27808,"properties":{"V":230}},{"type":"LineString","arcs":[3869],"id":27818,"properties":{"V":230}},{"type":"LineString","arcs":[3870],"id":27822,"properties":{"V":500}},{"type":"LineString","arcs":[3871],"id":27848,"properties":{"V":230}},{"type":"LineString","arcs":[3872],"id":27850,"properties":{"V":345}},{"type":"LineString","arcs":[3873],"id":27851,"properties":{"V":500}},{"type":"LineString","arcs":[3874],"id":27852,"properties":{"V":345}},{"type":"LineString","arcs":[3875],"id":27855,"properties":{"V":230}},{"type":"LineString","arcs":[3876],"id":27861,"properties":{"V":230}},{"type":"LineString","arcs":[3877],"id":27867,"properties":{"V":230}},{"type":"LineString","arcs":[3878],"id":27876,"properties":{"V":230}},{"type":"LineString","arcs":[3879],"id":27890,"properties":{"V":230}},{"type":"LineString","arcs":[3880],"id":27891,"properties":{"V":230}},{"type":"LineString","arcs":[3881],"id":27896,"properties":{"V":230}},{"type":"LineString","arcs":[3882],"id":27922,"properties":{"V":230}},{"type":"LineString","arcs":[3883],"id":27923,"properties":{"V":230}},{"type":"LineString","arcs":[3884],"id":27931,"properties":{"V":230}},{"type":"LineString","arcs":[3885],"id":27937,"properties":{"V":230}},{"type":"LineString","arcs":[3886],"id":27944,"properties":{"V":230}},{"type":"LineString","arcs":[3887],"id":27945,"properties":{"V":230}},{"type":"LineString","arcs":[3888],"id":27951,"properties":{"V":500}},{"type":"LineString","arcs":[3889],"id":27964,"properties":{"V":230}},{"type":"LineString","arcs":[3890],"id":27988,"properties":{"V":345}},{"type":"LineString","arcs":[3891],"id":28000,"properties":{"V":230}},{"type":"LineString","arcs":[3892,3893],"id":28002,"properties":{"V":230}},{"type":"LineString","arcs":[3894],"id":28011,"properties":{"V":230}},{"type":"LineString","arcs":[3895],"id":28023,"properties":{"V":230}},{"type":"LineString","arcs":[3896],"id":28027,"properties":{"V":230}},{"type":"LineString","arcs":[3897],"id":28030,"properties":{"V":230}},{"type":"LineString","arcs":[3898],"id":28033,"properties":{"V":230}},{"type":"LineString","arcs":[3899],"id":28035,"properties":{"V":345}},{"type":"LineString","arcs":[3900],"id":28041,"properties":{"V":230}},{"type":"LineString","arcs":[3901],"id":28057,"properties":{"V":230}},{"type":"LineString","arcs":[3902],"id":28066,"properties":{"V":345}},{"type":"LineString","arcs":[3903,3904],"id":28069,"properties":{"V":230}},{"type":"LineString","arcs":[3905],"id":28071,"properties":{"V":230}},{"type":"LineString","arcs":[3906],"id":28075,"properties":{"V":230}},{"type":"LineString","arcs":[3907],"id":28092,"properties":{"V":230}},{"type":"LineString","arcs":[3908],"id":28153,"properties":{"V":230}},{"type":"LineString","arcs":[3909],"id":28157,"properties":{"V":345}},{"type":"LineString","arcs":[3910],"id":28167,"properties":{"V":230}},{"type":"LineString","arcs":[3911],"id":28168,"properties":{"V":230}},{"type":"LineString","arcs":[3912],"id":28169,"properties":{"V":230}},{"type":"LineString","arcs":[3913],"id":28173,"properties":{"V":345}},{"type":"LineString","arcs":[3914],"id":28179,"properties":{"V":230}},{"type":"LineString","arcs":[3915],"id":28187,"properties":{"V":230}},{"type":"LineString","arcs":[3916],"id":28197,"properties":{"V":230}},{"type":"LineString","arcs":[3917],"id":28200,"properties":{"V":345}},{"type":"LineString","arcs":[3918],"id":28213,"properties":{"V":230}},{"type":"LineString","arcs":[3919],"id":28214,"properties":{"V":345}},{"type":"LineString","arcs":[3920],"id":28215,"properties":{"V":230}},{"type":"LineString","arcs":[3921],"id":28216,"properties":{"V":230}},{"type":"LineString","arcs":[3922],"id":28219,"properties":{"V":345}},{"type":"LineString","arcs":[3923],"id":28222,"properties":{"V":230}},{"type":"LineString","arcs":[3924],"id":28224,"properties":{"V":230}},{"type":"LineString","arcs":[3925],"id":28231,"properties":{"V":230}},{"type":"LineString","arcs":[3926],"id":28247,"properties":{"V":345}},{"type":"LineString","arcs":[3927],"id":28249,"properties":{"V":230}},{"type":"LineString","arcs":[3928],"id":28266,"properties":{"V":230}},{"type":"LineString","arcs":[3929],"id":28271,"properties":{"V":345}},{"type":"LineString","arcs":[3930],"id":28281,"properties":{"V":230}},{"type":"LineString","arcs":[3931],"id":28289,"properties":{"V":230}},{"type":"LineString","arcs":[3932],"id":28291,"properties":{"V":230}},{"type":"LineString","arcs":[3933],"id":28292,"properties":{"V":345}},{"type":"LineString","arcs":[3934,3935],"id":28293,"properties":{"V":345}},{"type":"LineString","arcs":[3936],"id":28294,"properties":{"V":345}},{"type":"LineString","arcs":[3937],"id":28298,"properties":{"V":230}},{"type":"LineString","arcs":[3938],"id":28300,"properties":{"V":500}},{"type":"LineString","arcs":[3939],"id":28310,"properties":{"V":230}},{"type":"LineString","arcs":[3940],"id":28314,"properties":{"V":345}},{"type":"LineString","arcs":[3941],"id":28318,"properties":{"V":345}},{"type":"LineString","arcs":[3942],"id":28319,"properties":{"V":345}},{"type":"LineString","arcs":[3943],"id":28350,"properties":{"V":230}},{"type":"LineString","arcs":[3944],"id":28355,"properties":{"V":230}},{"type":"LineString","arcs":[3945],"id":28358,"properties":{"V":230}},{"type":"LineString","arcs":[3946],"id":28363,"properties":{"V":345}},{"type":"LineString","arcs":[3947],"id":28372,"properties":{"V":230}},{"type":"LineString","arcs":[3948],"id":28377,"properties":{"V":345}},{"type":"LineString","arcs":[3949,3950,3951],"id":28380,"properties":{"V":230}},{"type":"LineString","arcs":[3952],"id":28383,"properties":{"V":230}},{"type":"LineString","arcs":[3953],"id":28385,"properties":{"V":230}},{"type":"LineString","arcs":[3954],"id":28394,"properties":{"V":230}},{"type":"LineString","arcs":[3955],"id":28399,"properties":{"V":230}},{"type":"LineString","arcs":[3956,3957],"id":28410,"properties":{"V":345}},{"type":"LineString","arcs":[3958],"id":28416,"properties":{"V":345}},{"type":"LineString","arcs":[3959],"id":28418,"properties":{"V":230}},{"type":"LineString","arcs":[3960],"id":28420,"properties":{"V":345}},{"type":"LineString","arcs":[3961],"id":28422,"properties":{"V":345}},{"type":"LineString","arcs":[3962],"id":28433,"properties":{"V":345}},{"type":"MultiLineString","arcs":[[3963],[3964,3965]],"id":28443,"properties":{"V":230}},{"type":"LineString","arcs":[3966],"id":28458,"properties":{"V":230}},{"type":"LineString","arcs":[3967],"id":28462,"properties":{"V":230}},{"type":"LineString","arcs":[3968],"id":28472,"properties":{"V":230}},{"type":"LineString","arcs":[3969],"id":28473,"properties":{"V":230}},{"type":"LineString","arcs":[3970],"id":28476,"properties":{"V":230}},{"type":"LineString","arcs":[3971],"id":28492,"properties":{"V":345}},{"type":"LineString","arcs":[3972],"id":28501,"properties":{"V":345}},{"type":"LineString","arcs":[3973,3974],"id":28506,"properties":{"V":230}},{"type":"LineString","arcs":[3975],"id":28512,"properties":{"V":345}},{"type":"LineString","arcs":[3976],"id":28535,"properties":{"V":230}},{"type":"LineString","arcs":[3977],"id":28536,"properties":{"V":230}},{"type":"LineString","arcs":[3978],"id":28561,"properties":{"V":230}},{"type":"LineString","arcs":[3979],"id":28563,"properties":{"V":230}},{"type":"LineString","arcs":[3980],"id":28565,"properties":{"V":230}},{"type":"LineString","arcs":[3981],"id":28576,"properties":{"V":230}},{"type":"LineString","arcs":[3982],"id":28580,"properties":{"V":230}},{"type":"LineString","arcs":[3983],"id":28582,"properties":{"V":230}},{"type":"LineString","arcs":[3984],"id":28589,"properties":{"V":230}},{"type":"LineString","arcs":[3985],"id":28597,"properties":{"V":230}},{"type":"LineString","arcs":[3986],"id":28600,"properties":{"V":230}},{"type":"LineString","arcs":[3987],"id":28606,"properties":{"V":500}},{"type":"LineString","arcs":[3988],"id":28609,"properties":{"V":230}},{"type":"LineString","arcs":[3989],"id":28619,"properties":{"V":230}},{"type":"LineString","arcs":[3990],"id":28621,"properties":{"V":230}},{"type":"LineString","arcs":[3991],"id":28627,"properties":{"V":230}},{"type":"LineString","arcs":[3992],"id":28647,"properties":{"V":230}},{"type":"LineString","arcs":[3993],"id":28651,"properties":{"V":345}},{"type":"LineString","arcs":[3994,3995],"id":28656,"properties":{"V":230}},{"type":"LineString","arcs":[3996],"id":28659,"properties":{"V":500}},{"type":"LineString","arcs":[3997],"id":28676,"properties":{"V":500}},{"type":"LineString","arcs":[3998],"id":28689,"properties":{"V":230}},{"type":"LineString","arcs":[3999],"id":28699,"properties":{"V":230}},{"type":"LineString","arcs":[4000],"id":28702,"properties":{"V":230}},{"type":"LineString","arcs":[4001],"id":28704,"properties":{"V":230}},{"type":"LineString","arcs":[4002],"id":28720,"properties":{"V":230}},{"type":"LineString","arcs":[4003],"id":28724,"properties":{"V":230}},{"type":"LineString","arcs":[4004],"id":28733,"properties":{"V":230}},{"type":"LineString","arcs":[4005],"id":28740,"properties":{"V":345}},{"type":"LineString","arcs":[4006],"id":28742,"properties":{"V":230}},{"type":"LineString","arcs":[4007],"id":28753,"properties":{"V":230}},{"type":"LineString","arcs":[4008],"id":28754,"properties":{"V":345}},{"type":"LineString","arcs":[4009],"id":28755,"properties":{"V":230}},{"type":"LineString","arcs":[4010],"id":28758,"properties":{"V":345}},{"type":"LineString","arcs":[4011],"id":28763,"properties":{"V":230}},{"type":"LineString","arcs":[4012],"id":28768,"properties":{"V":230}},{"type":"LineString","arcs":[4013],"id":28786,"properties":{"V":500}},{"type":"LineString","arcs":[4014,4015,4016],"id":28789,"properties":{"V":345}},{"type":"LineString","arcs":[4017],"id":28794,"properties":{"V":345}},{"type":"LineString","arcs":[4018],"id":28816,"properties":{"V":230}},{"type":"LineString","arcs":[4019],"id":28818,"properties":{"V":230}},{"type":"LineString","arcs":[4020],"id":28820,"properties":{"V":230}},{"type":"LineString","arcs":[4021],"id":28824,"properties":{"V":500}},{"type":"LineString","arcs":[4022],"id":28860,"properties":{"V":230}},{"type":"LineString","arcs":[4023],"id":28868,"properties":{"V":500}},{"type":"LineString","arcs":[4024],"id":28877,"properties":{"V":230}},{"type":"LineString","arcs":[4025],"id":28891,"properties":{"V":230}},{"type":"LineString","arcs":[4026],"id":28895,"properties":{"V":345}},{"type":"LineString","arcs":[4027],"id":28905,"properties":{"V":345}},{"type":"LineString","arcs":[4028],"id":28908,"properties":{"V":345}},{"type":"LineString","arcs":[4029],"id":28944,"properties":{"V":230}},{"type":"LineString","arcs":[4030],"id":28947,"properties":{"V":230}},{"type":"LineString","arcs":[4031],"id":28953,"properties":{"V":230}},{"type":"LineString","arcs":[4032],"id":28954,"properties":{"V":230}},{"type":"LineString","arcs":[4033],"id":28978,"properties":{"V":230}},{"type":"LineString","arcs":[4034],"id":28987,"properties":{"V":230}},{"type":"LineString","arcs":[4035],"id":28997,"properties":{"V":345}},{"type":"LineString","arcs":[4036],"id":29002,"properties":{"V":230}},{"type":"LineString","arcs":[4037],"id":29003,"properties":{"V":230}},{"type":"LineString","arcs":[4038],"id":29040,"properties":{"V":345}},{"type":"LineString","arcs":[4039,4040],"id":29045,"properties":{"V":345}},{"type":"LineString","arcs":[4041],"id":29049,"properties":{"V":230}},{"type":"LineString","arcs":[4042],"id":29050,"properties":{"V":345}},{"type":"LineString","arcs":[4043],"id":29051,"properties":{"V":500}},{"type":"LineString","arcs":[4044],"id":29054,"properties":{"V":230}},{"type":"LineString","arcs":[4045],"id":29066,"properties":{"V":230}},{"type":"LineString","arcs":[4046],"id":29076,"properties":{"V":230}},{"type":"LineString","arcs":[4047],"id":29087,"properties":{"V":230}},{"type":"LineString","arcs":[4048],"id":29088,"properties":{"V":230}},{"type":"LineString","arcs":[4049],"id":29089,"properties":{"V":345}},{"type":"LineString","arcs":[4050],"id":29098,"properties":{"V":230}},{"type":"LineString","arcs":[4051],"id":29114,"properties":{"V":345}},{"type":"LineString","arcs":[4052],"id":29130,"properties":{"V":230}},{"type":"LineString","arcs":[4053],"id":29133,"properties":{"V":500}},{"type":"LineString","arcs":[4054],"id":29141,"properties":{"V":230}},{"type":"LineString","arcs":[4055],"id":29144,"properties":{"V":230}},{"type":"LineString","arcs":[4056],"id":29151,"properties":{"V":230}},{"type":"LineString","arcs":[4057],"id":29154,"properties":{"V":345}},{"type":"LineString","arcs":[4058],"id":29161,"properties":{"V":230}},{"type":"LineString","arcs":[4059],"id":29171,"properties":{"V":345}},{"type":"LineString","arcs":[4060],"id":29176,"properties":{"V":230}},{"type":"LineString","arcs":[4061],"id":29180,"properties":{"V":230}},{"type":"LineString","arcs":[4062],"id":29186,"properties":{"V":230}},{"type":"LineString","arcs":[4063],"id":29191,"properties":{"V":230}},{"type":"LineString","arcs":[4064],"id":29192,"properties":{"V":345}},{"type":"LineString","arcs":[4065],"id":29198,"properties":{"V":230}},{"type":"LineString","arcs":[4066],"id":29200,"properties":{"V":230}},{"type":"LineString","arcs":[4067],"id":29203,"properties":{"V":345}},{"type":"LineString","arcs":[4068],"id":29204,"properties":{"V":230}},{"type":"LineString","arcs":[4069],"id":29216,"properties":{"V":230}},{"type":"LineString","arcs":[4070],"id":29219,"properties":{"V":230}},{"type":"LineString","arcs":[4071],"id":29251,"properties":{"V":230}},{"type":"LineString","arcs":[4072],"id":29258,"properties":{"V":230}},{"type":"LineString","arcs":[4073],"id":29260,"properties":{"V":230}},{"type":"LineString","arcs":[4074],"id":29262,"properties":{"V":345}},{"type":"LineString","arcs":[4075],"id":29278,"properties":{"V":345}},{"type":"LineString","arcs":[4076],"id":29279,"properties":{"V":230}},{"type":"LineString","arcs":[4077],"id":29281,"properties":{"V":345}},{"type":"LineString","arcs":[4078],"id":29287,"properties":{"V":230}},{"type":"LineString","arcs":[4079],"id":29293,"properties":{"V":230}},{"type":"LineString","arcs":[4080],"id":29311,"properties":{"V":230}},{"type":"LineString","arcs":[4081,4082,4083],"id":29334,"properties":{"V":500}},{"type":"LineString","arcs":[4084],"id":29350,"properties":{"V":230}},{"type":"LineString","arcs":[4085],"id":29351,"properties":{"V":230}},{"type":"LineString","arcs":[4086],"id":29358,"properties":{"V":345}},{"type":"LineString","arcs":[4087],"id":29361,"properties":{"V":500}},{"type":"LineString","arcs":[4088,4089],"id":29366,"properties":{"V":230}},{"type":"LineString","arcs":[4090],"id":29381,"properties":{"V":230}},{"type":"LineString","arcs":[4091],"id":29382,"properties":{"V":230}},{"type":"LineString","arcs":[4092],"id":29383,"properties":{"V":230}},{"type":"LineString","arcs":[4093],"id":29386,"properties":{"V":230}},{"type":"LineString","arcs":[4094],"id":29393,"properties":{"V":230}},{"type":"LineString","arcs":[4095],"id":29394,"properties":{"V":230}},{"type":"LineString","arcs":[4096],"id":29401,"properties":{"V":500}},{"type":"LineString","arcs":[4097],"id":29422,"properties":{"V":230}},{"type":"LineString","arcs":[4098],"id":29423,"properties":{"V":230}},{"type":"LineString","arcs":[4099],"id":29428,"properties":{"V":345}},{"type":"LineString","arcs":[4100],"id":29430,"properties":{"V":230}},{"type":"LineString","arcs":[4101],"id":29432,"properties":{"V":500}},{"type":"LineString","arcs":[4102],"id":29443,"properties":{"V":230}},{"type":"LineString","arcs":[4103,4104,4105],"id":29447,"properties":{"V":345}},{"type":"LineString","arcs":[4106],"id":29452,"properties":{"V":345}},{"type":"LineString","arcs":[4107],"id":29453,"properties":{"V":765}},{"type":"LineString","arcs":[4108],"id":29456,"properties":{"V":230}},{"type":"LineString","arcs":[4109],"id":29458,"properties":{"V":345}},{"type":"LineString","arcs":[4110],"id":29468,"properties":{"V":345}},{"type":"LineString","arcs":[4111],"id":29482,"properties":{"V":230}},{"type":"LineString","arcs":[4112],"id":29491,"properties":{"V":230}},{"type":"LineString","arcs":[4113],"id":29494,"properties":{"V":230}},{"type":"LineString","arcs":[4114],"id":29510,"properties":{"V":230}},{"type":"LineString","arcs":[4115],"id":29519,"properties":{"V":230}},{"type":"LineString","arcs":[4116,4117],"id":29532,"properties":{"V":345}},{"type":"LineString","arcs":[4118],"id":29544,"properties":{"V":230}},{"type":"LineString","arcs":[4119],"id":29549,"properties":{"V":230}},{"type":"LineString","arcs":[4120],"id":29561,"properties":{"V":230}},{"type":"LineString","arcs":[4121],"id":29562,"properties":{"V":345}},{"type":"LineString","arcs":[4122,4123],"id":29572,"properties":{"V":230}},{"type":"LineString","arcs":[4124],"id":29583,"properties":{"V":230}},{"type":"LineString","arcs":[4125],"id":29584,"properties":{"V":345}},{"type":"LineString","arcs":[4126],"id":29601,"properties":{"V":230}},{"type":"LineString","arcs":[4127],"id":29625,"properties":{"V":230}},{"type":"LineString","arcs":[4128],"id":29638,"properties":{"V":230}},{"type":"LineString","arcs":[4129],"id":29651,"properties":{"V":230}},{"type":"LineString","arcs":[4130],"id":29665,"properties":{"V":230}},{"type":"LineString","arcs":[4131],"id":29666,"properties":{"V":230}},{"type":"LineString","arcs":[4132],"id":29667,"properties":{"V":345}},{"type":"LineString","arcs":[4133],"id":29671,"properties":{"V":345}},{"type":"LineString","arcs":[4134],"id":29686,"properties":{"V":345}},{"type":"LineString","arcs":[4135],"id":29690,"properties":{"V":345}},{"type":"LineString","arcs":[4136],"id":29694,"properties":{"V":230}},{"type":"LineString","arcs":[4137],"id":29695,"properties":{"V":230}},{"type":"LineString","arcs":[4138],"id":29715,"properties":{"V":500}},{"type":"LineString","arcs":[4139],"id":29716,"properties":{"V":230}},{"type":"LineString","arcs":[4140],"id":29718,"properties":{"V":345}},{"type":"LineString","arcs":[4141],"id":29731,"properties":{"V":345}},{"type":"LineString","arcs":[4142],"id":29748,"properties":{"V":230}},{"type":"LineString","arcs":[4143],"id":29757,"properties":{"V":345}},{"type":"LineString","arcs":[4144],"id":29777,"properties":{"V":500}},{"type":"LineString","arcs":[4145],"id":29792,"properties":{"V":230}},{"type":"LineString","arcs":[4146],"id":29795,"properties":{"V":230}},{"type":"LineString","arcs":[4147],"id":29803,"properties":{"V":230}},{"type":"LineString","arcs":[4148],"id":29813,"properties":{"V":345}},{"type":"LineString","arcs":[4149],"id":29814,"properties":{"V":230}},{"type":"LineString","arcs":[4150],"id":29818,"properties":{"V":345}},{"type":"LineString","arcs":[4151],"id":29827,"properties":{"V":345}},{"type":"LineString","arcs":[4152],"id":29834,"properties":{"V":230}},{"type":"LineString","arcs":[4153],"id":29837,"properties":{"V":345}},{"type":"LineString","arcs":[4154],"id":29840,"properties":{"V":500}},{"type":"LineString","arcs":[4155],"id":29845,"properties":{"V":230}},{"type":"LineString","arcs":[4156],"id":29885,"properties":{"V":230}},{"type":"LineString","arcs":[4157],"id":29895,"properties":{"V":230}},{"type":"LineString","arcs":[4158],"id":29897,"properties":{"V":345}},{"type":"LineString","arcs":[4159],"id":29918,"properties":{"V":230}},{"type":"LineString","arcs":[4160],"id":29920,"properties":{"V":230}},{"type":"LineString","arcs":[4161],"id":29923,"properties":{"V":230}},{"type":"LineString","arcs":[4162],"id":29932,"properties":{"V":230}},{"type":"LineString","arcs":[4163],"id":29933,"properties":{"V":230}},{"type":"LineString","arcs":[4164],"id":29935,"properties":{"V":230}},{"type":"LineString","arcs":[4165],"id":29948,"properties":{"V":230}},{"type":"LineString","arcs":[4166],"id":29990,"properties":{"V":230}},{"type":"LineString","arcs":[4167],"id":29994,"properties":{"V":230}},{"type":"LineString","arcs":[4168],"id":30005,"properties":{"V":345}},{"type":"LineString","arcs":[4169],"id":30021,"properties":{"V":500}},{"type":"LineString","arcs":[4170],"id":30030,"properties":{"V":230}},{"type":"LineString","arcs":[4171],"id":30044,"properties":{"V":230}},{"type":"LineString","arcs":[4172],"id":30049,"properties":{"V":345}},{"type":"LineString","arcs":[4173],"id":30050,"properties":{"V":230}},{"type":"LineString","arcs":[4174],"id":30054,"properties":{"V":500}},{"type":"LineString","arcs":[4175],"id":30067,"properties":{"V":230}},{"type":"LineString","arcs":[4176],"id":30068,"properties":{"V":230}},{"type":"LineString","arcs":[4177],"id":30072,"properties":{"V":230}},{"type":"LineString","arcs":[4178],"id":30073,"properties":{"V":230}},{"type":"LineString","arcs":[4179],"id":30081,"properties":{"V":345}},{"type":"LineString","arcs":[4180],"id":30090,"properties":{"V":345}},{"type":"LineString","arcs":[4181,4182],"id":30093,"properties":{"V":500}},{"type":"LineString","arcs":[4183],"id":30099,"properties":{"V":230}},{"type":"LineString","arcs":[4184],"id":30116,"properties":{"V":345}},{"type":"LineString","arcs":[4185],"id":30122,"properties":{"V":230}},{"type":"LineString","arcs":[4186],"id":30141,"properties":{"V":230}},{"type":"LineString","arcs":[4187],"id":30142,"properties":{"V":230}},{"type":"LineString","arcs":[4188],"id":30149,"properties":{"V":345}},{"type":"LineString","arcs":[4189],"id":30157,"properties":{"V":345}},{"type":"LineString","arcs":[4190],"id":30166,"properties":{"V":345}},{"type":"LineString","arcs":[4191],"id":30178,"properties":{"V":230}},{"type":"LineString","arcs":[4192],"id":30179,"properties":{"V":230}},{"type":"LineString","arcs":[4193],"id":30181,"properties":{"V":345}},{"type":"LineString","arcs":[4194],"id":30182,"properties":{"V":230}},{"type":"LineString","arcs":[4195],"id":30184,"properties":{"V":230}},{"type":"LineString","arcs":[4196],"id":30189,"properties":{"V":230}},{"type":"LineString","arcs":[4197],"id":30194,"properties":{"V":500}},{"type":"LineString","arcs":[4198],"id":30215,"properties":{"V":345}},{"type":"LineString","arcs":[4199,4200],"id":30218,"properties":{"V":230}},{"type":"LineString","arcs":[4201],"id":30219,"properties":{"V":230}},{"type":"LineString","arcs":[4202],"id":30227,"properties":{"V":230}},{"type":"LineString","arcs":[4203],"id":30256,"properties":{"V":500}},{"type":"LineString","arcs":[4204],"id":30257,"properties":{"V":230}},{"type":"LineString","arcs":[4205],"id":30266,"properties":{"V":345}},{"type":"LineString","arcs":[4206],"id":30286,"properties":{"V":230}},{"type":"LineString","arcs":[4207],"id":30294,"properties":{"V":500}},{"type":"LineString","arcs":[4208],"id":30302,"properties":{"V":345}},{"type":"LineString","arcs":[4209],"id":30303,"properties":{"V":230}},{"type":"LineString","arcs":[4210],"id":30308,"properties":{"V":230}},{"type":"LineString","arcs":[4211],"id":30320,"properties":{"V":230}},{"type":"LineString","arcs":[4212],"id":30325,"properties":{"V":230}},{"type":"LineString","arcs":[4213],"id":30328,"properties":{"V":230}},{"type":"LineString","arcs":[4214],"id":30338,"properties":{"V":230}},{"type":"LineString","arcs":[4215],"id":30347,"properties":{"V":230}},{"type":"LineString","arcs":[4216],"id":30348,"properties":{"V":230}},{"type":"LineString","arcs":[4217],"id":30361,"properties":{"V":230}},{"type":"LineString","arcs":[4218],"id":30364,"properties":{"V":230}},{"type":"LineString","arcs":[4219],"id":30367,"properties":{"V":500}},{"type":"LineString","arcs":[4220],"id":30370,"properties":{"V":230}},{"type":"LineString","arcs":[4221],"id":30383,"properties":{"V":230}},{"type":"LineString","arcs":[4222],"id":30385,"properties":{"V":230}},{"type":"LineString","arcs":[4223],"id":30387,"properties":{"V":345}},{"type":"LineString","arcs":[4224],"id":30391,"properties":{"V":230}},{"type":"LineString","arcs":[4225],"id":30392,"properties":{"V":230}},{"type":"LineString","arcs":[4226],"id":30399,"properties":{"V":230}},{"type":"LineString","arcs":[4227],"id":30406,"properties":{"V":345}},{"type":"LineString","arcs":[4228,4229],"id":30407,"properties":{"V":345}},{"type":"LineString","arcs":[4230],"id":30410,"properties":{"V":230}},{"type":"LineString","arcs":[4231],"id":30414,"properties":{"V":345}},{"type":"LineString","arcs":[4232],"id":30423,"properties":{"V":230}},{"type":"LineString","arcs":[4233],"id":30426,"properties":{"V":230}},{"type":"LineString","arcs":[4234],"id":30456,"properties":{"V":230}},{"type":"LineString","arcs":[4235],"id":30457,"properties":{"V":500}},{"type":"LineString","arcs":[4236],"id":30470,"properties":{"V":230}},{"type":"LineString","arcs":[4237],"id":30479,"properties":{"V":230}},{"type":"LineString","arcs":[4238],"id":30482,"properties":{"V":230}},{"type":"LineString","arcs":[4239],"id":30492,"properties":{"V":230}},{"type":"LineString","arcs":[4240],"id":30511,"properties":{"V":345}},{"type":"LineString","arcs":[4241],"id":30516,"properties":{"V":230}},{"type":"LineString","arcs":[4242,4243],"id":30519,"properties":{"V":230}},{"type":"LineString","arcs":[4244],"id":30539,"properties":{"V":345}},{"type":"LineString","arcs":[4245],"id":30551,"properties":{"V":230}},{"type":"LineString","arcs":[4246],"id":30554,"properties":{"V":500}},{"type":"LineString","arcs":[4247],"id":30571,"properties":{"V":230}},{"type":"LineString","arcs":[4248],"id":30578,"properties":{"V":230}},{"type":"LineString","arcs":[4249],"id":30582,"properties":{"V":230}},{"type":"LineString","arcs":[4250],"id":30590,"properties":{"V":230}},{"type":"LineString","arcs":[4251],"id":30595,"properties":{"V":230}},{"type":"LineString","arcs":[4252],"id":30611,"properties":{"V":230}},{"type":"LineString","arcs":[4253],"id":30620,"properties":{"V":230}},{"type":"LineString","arcs":[4254],"id":30624,"properties":{"V":230}},{"type":"LineString","arcs":[4255],"id":30632,"properties":{"V":230}},{"type":"LineString","arcs":[4256],"id":30635,"properties":{"V":230}},{"type":"LineString","arcs":[4257],"id":30641,"properties":{"V":230}},{"type":"LineString","arcs":[4258],"id":30644,"properties":{"V":230}},{"type":"LineString","arcs":[4259],"id":30649,"properties":{"V":230}},{"type":"LineString","arcs":[4260],"id":30652,"properties":{"V":230}},{"type":"LineString","arcs":[4261],"id":30654,"properties":{"V":345}},{"type":"LineString","arcs":[4262],"id":30656,"properties":{"V":230}},{"type":"LineString","arcs":[4263],"id":30665,"properties":{"V":230}},{"type":"LineString","arcs":[4264],"id":30666,"properties":{"V":230}},{"type":"LineString","arcs":[4265],"id":30671,"properties":{"V":230}},{"type":"LineString","arcs":[4266],"id":30672,"properties":{"V":500}},{"type":"LineString","arcs":[4267],"id":30684,"properties":{"V":230}},{"type":"LineString","arcs":[4268],"id":30687,"properties":{"V":230}},{"type":"LineString","arcs":[4269],"id":30689,"properties":{"V":230}},{"type":"LineString","arcs":[4270],"id":30693,"properties":{"V":345}},{"type":"LineString","arcs":[4271],"id":30694,"properties":{"V":230}},{"type":"LineString","arcs":[4272],"id":30702,"properties":{"V":230}},{"type":"LineString","arcs":[4273],"id":30712,"properties":{"V":500}},{"type":"LineString","arcs":[4274],"id":30717,"properties":{"V":345}},{"type":"LineString","arcs":[4275],"id":30726,"properties":{"V":230}},{"type":"LineString","arcs":[4276],"id":30732,"properties":{"V":345}},{"type":"LineString","arcs":[4277],"id":30737,"properties":{"V":345}},{"type":"LineString","arcs":[4278,4279],"id":30741,"properties":{"V":345}},{"type":"LineString","arcs":[4280],"id":30767,"properties":{"V":230}},{"type":"LineString","arcs":[4281],"id":30774,"properties":{"V":230}},{"type":"LineString","arcs":[4282],"id":30775,"properties":{"V":230}},{"type":"LineString","arcs":[4283],"id":30782,"properties":{"V":230}},{"type":"LineString","arcs":[4284],"id":30794,"properties":{"V":500}},{"type":"LineString","arcs":[4285],"id":30795,"properties":{"V":230}},{"type":"LineString","arcs":[4286],"id":30799,"properties":{"V":345}},{"type":"LineString","arcs":[4287],"id":30804,"properties":{"V":230}},{"type":"LineString","arcs":[4288],"id":30811,"properties":{"V":230}},{"type":"LineString","arcs":[4289],"id":30816,"properties":{"V":230}},{"type":"LineString","arcs":[4290],"id":30828,"properties":{"V":230}},{"type":"LineString","arcs":[4291],"id":30838,"properties":{"V":230}},{"type":"LineString","arcs":[4292],"id":30842,"properties":{"V":230}},{"type":"LineString","arcs":[4293],"id":30852,"properties":{"V":230}},{"type":"LineString","arcs":[4294],"id":30855,"properties":{"V":230}},{"type":"LineString","arcs":[4295],"id":30876,"properties":{"V":345}},{"type":"LineString","arcs":[4296],"id":30877,"properties":{"V":230}},{"type":"LineString","arcs":[4297],"id":30907,"properties":{"V":230}},{"type":"LineString","arcs":[4298],"id":30908,"properties":{"V":230}},{"type":"LineString","arcs":[4299],"id":30918,"properties":{"V":230}},{"type":"LineString","arcs":[4300],"id":30936,"properties":{"V":230}},{"type":"LineString","arcs":[4301],"id":30947,"properties":{"V":345}},{"type":"LineString","arcs":[4302],"id":30949,"properties":{"V":230}},{"type":"LineString","arcs":[4303],"id":30953,"properties":{"V":230}},{"type":"LineString","arcs":[4304],"id":30961,"properties":{"V":230}},{"type":"LineString","arcs":[4305,4306],"id":30966,"properties":{"V":230}},{"type":"LineString","arcs":[4307],"id":30971,"properties":{"V":345}},{"type":"LineString","arcs":[4308],"id":30980,"properties":{"V":500}},{"type":"LineString","arcs":[4309],"id":30988,"properties":{"V":345}},{"type":"LineString","arcs":[4310],"id":31001,"properties":{"V":230}},{"type":"LineString","arcs":[4311],"id":31002,"properties":{"V":345}},{"type":"LineString","arcs":[4312],"id":31003,"properties":{"V":230}},{"type":"LineString","arcs":[4313],"id":31011,"properties":{"V":230}},{"type":"LineString","arcs":[4314],"id":31015,"properties":{"V":345}},{"type":"LineString","arcs":[4315],"id":31035,"properties":{"V":230}},{"type":"LineString","arcs":[4316],"id":31057,"properties":{"V":230}},{"type":"LineString","arcs":[4317],"id":31062,"properties":{"V":230}},{"type":"LineString","arcs":[4318],"id":31069,"properties":{"V":230}},{"type":"LineString","arcs":[4319],"id":31073,"properties":{"V":230}},{"type":"LineString","arcs":[4320],"id":31076,"properties":{"V":230}},{"type":"LineString","arcs":[4321],"id":31079,"properties":{"V":230}},{"type":"LineString","arcs":[4322],"id":31084,"properties":{"V":345}},{"type":"LineString","arcs":[4323],"id":31088,"properties":{"V":230}},{"type":"LineString","arcs":[4324],"id":31096,"properties":{"V":230}},{"type":"LineString","arcs":[4325],"id":31100,"properties":{"V":500}},{"type":"LineString","arcs":[4326],"id":31103,"properties":{"V":230}},{"type":"LineString","arcs":[4327],"id":31116,"properties":{"V":500}},{"type":"LineString","arcs":[4328],"id":31122,"properties":{"V":345}},{"type":"LineString","arcs":[4329],"id":31126,"properties":{"V":345}},{"type":"LineString","arcs":[4330],"id":31127,"properties":{"V":230}},{"type":"LineString","arcs":[4331],"id":31130,"properties":{"V":345}},{"type":"LineString","arcs":[4332],"id":31164,"properties":{"V":230}},{"type":"LineString","arcs":[4333],"id":31165,"properties":{"V":230}},{"type":"LineString","arcs":[4334],"id":31178,"properties":{"V":345}},{"type":"LineString","arcs":[4335],"id":31186,"properties":{"V":345}},{"type":"LineString","arcs":[4336],"id":31202,"properties":{"V":230}},{"type":"LineString","arcs":[4337],"id":31203,"properties":{"V":230}},{"type":"LineString","arcs":[4338],"id":31205,"properties":{"V":230}},{"type":"LineString","arcs":[4339],"id":31229,"properties":{"V":500}},{"type":"LineString","arcs":[4340],"id":31237,"properties":{"V":230}},{"type":"LineString","arcs":[4341],"id":31242,"properties":{"V":230}},{"type":"LineString","arcs":[4342],"id":31245,"properties":{"V":230}},{"type":"LineString","arcs":[4343],"id":31250,"properties":{"V":230}},{"type":"LineString","arcs":[4344],"id":31254,"properties":{"V":500}},{"type":"LineString","arcs":[4345],"id":31258,"properties":{"V":230}},{"type":"LineString","arcs":[4346],"id":31265,"properties":{"V":230}},{"type":"LineString","arcs":[4347],"id":31273,"properties":{"V":230}},{"type":"LineString","arcs":[4348],"id":31285,"properties":{"V":230}},{"type":"LineString","arcs":[4349],"id":31292,"properties":{"V":230}},{"type":"LineString","arcs":[4350],"id":31303,"properties":{"V":345}},{"type":"LineString","arcs":[4351],"id":31317,"properties":{"V":230}},{"type":"LineString","arcs":[4352],"id":31318,"properties":{"V":230}},{"type":"LineString","arcs":[4353],"id":31319,"properties":{"V":345}},{"type":"LineString","arcs":[4354],"id":31322,"properties":{"V":345}},{"type":"LineString","arcs":[4355],"id":31356,"properties":{"V":230}},{"type":"LineString","arcs":[4356,4357],"id":31359,"properties":{"V":230}},{"type":"LineString","arcs":[4358],"id":31360,"properties":{"V":230}},{"type":"LineString","arcs":[4359],"id":31389,"properties":{"V":230}},{"type":"LineString","arcs":[4360],"id":31391,"properties":{"V":230}},{"type":"LineString","arcs":[4361],"id":31404,"properties":{"V":345}},{"type":"LineString","arcs":[4362],"id":31405,"properties":{"V":230}},{"type":"LineString","arcs":[4363],"id":31406,"properties":{"V":765}},{"type":"LineString","arcs":[4364],"id":31416,"properties":{"V":230}},{"type":"LineString","arcs":[4365],"id":31417,"properties":{"V":230}},{"type":"LineString","arcs":[4366],"id":31419,"properties":{"V":500}},{"type":"LineString","arcs":[4367],"id":31421,"properties":{"V":345}},{"type":"LineString","arcs":[4368],"id":31426,"properties":{"V":230}},{"type":"LineString","arcs":[4369],"id":31439,"properties":{"V":230}},{"type":"LineString","arcs":[4370],"id":31459,"properties":{"V":345}},{"type":"LineString","arcs":[4371],"id":31463,"properties":{"V":230}},{"type":"LineString","arcs":[4372],"id":31466,"properties":{"V":230}},{"type":"LineString","arcs":[4373],"id":31468,"properties":{"V":230}},{"type":"LineString","arcs":[4374],"id":31474,"properties":{"V":230}},{"type":"LineString","arcs":[4375],"id":31480,"properties":{"V":230}},{"type":"LineString","arcs":[4376],"id":31485,"properties":{"V":230}},{"type":"LineString","arcs":[4377],"id":31499,"properties":{"V":230}},{"type":"LineString","arcs":[4378],"id":31500,"properties":{"V":230}},{"type":"LineString","arcs":[4379],"id":31509,"properties":{"V":230}},{"type":"LineString","arcs":[4380],"id":31512,"properties":{"V":500}},{"type":"LineString","arcs":[4381],"id":31520,"properties":{"V":230}},{"type":"LineString","arcs":[4382,4383],"id":31524,"properties":{"V":345}},{"type":"LineString","arcs":[4384],"id":31532,"properties":{"V":230}},{"type":"LineString","arcs":[4385],"id":31537,"properties":{"V":230}},{"type":"LineString","arcs":[4386],"id":31544,"properties":{"V":230}},{"type":"LineString","arcs":[4387],"id":31547,"properties":{"V":345}},{"type":"LineString","arcs":[4388],"id":31565,"properties":{"V":500}},{"type":"LineString","arcs":[4389],"id":31569,"properties":{"V":230}},{"type":"LineString","arcs":[4390],"id":31578,"properties":{"V":230}},{"type":"LineString","arcs":[4391],"id":31594,"properties":{"V":230}},{"type":"LineString","arcs":[4392],"id":31611,"properties":{"V":345}},{"type":"LineString","arcs":[4393],"id":31628,"properties":{"V":345}},{"type":"LineString","arcs":[4394],"id":31631,"properties":{"V":230}},{"type":"LineString","arcs":[4395],"id":31638,"properties":{"V":345}},{"type":"LineString","arcs":[4396],"id":31639,"properties":{"V":230}},{"type":"LineString","arcs":[4397],"id":31640,"properties":{"V":345}},{"type":"LineString","arcs":[4398],"id":31653,"properties":{"V":345}},{"type":"LineString","arcs":[4399],"id":31656,"properties":{"V":230}},{"type":"LineString","arcs":[4400],"id":31673,"properties":{"V":230}},{"type":"LineString","arcs":[4401,4402,4403],"id":31678,"properties":{"V":345}},{"type":"LineString","arcs":[4404],"id":31693,"properties":{"V":345}},{"type":"LineString","arcs":[4405],"id":31694,"properties":{"V":230}},{"type":"LineString","arcs":[4406],"id":31700,"properties":{"V":345}},{"type":"LineString","arcs":[4407],"id":31707,"properties":{"V":230}},{"type":"LineString","arcs":[4408],"id":31709,"properties":{"V":500}},{"type":"LineString","arcs":[4409],"id":31715,"properties":{"V":230}},{"type":"LineString","arcs":[4410],"id":31719,"properties":{"V":230}},{"type":"LineString","arcs":[4411],"id":31722,"properties":{"V":230}},{"type":"LineString","arcs":[4412],"id":31728,"properties":{"V":230}},{"type":"LineString","arcs":[4413],"id":31732,"properties":{"V":230}},{"type":"LineString","arcs":[4414],"id":31764,"properties":{"V":230}},{"type":"LineString","arcs":[4415],"id":31769,"properties":{"V":230}},{"type":"LineString","arcs":[4416],"id":31772,"properties":{"V":345}},{"type":"LineString","arcs":[4417],"id":31789,"properties":{"V":345}},{"type":"LineString","arcs":[4418],"id":31794,"properties":{"V":230}},{"type":"LineString","arcs":[4419],"id":31800,"properties":{"V":230}},{"type":"LineString","arcs":[4420],"id":31804,"properties":{"V":230}},{"type":"LineString","arcs":[4421],"id":31806,"properties":{"V":230}},{"type":"LineString","arcs":[4422],"id":31810,"properties":{"V":230}},{"type":"LineString","arcs":[4423],"id":31826,"properties":{"V":230}},{"type":"LineString","arcs":[4424],"id":31832,"properties":{"V":345}},{"type":"LineString","arcs":[4425],"id":31839,"properties":{"V":230}},{"type":"LineString","arcs":[4426],"id":31843,"properties":{"V":345}},{"type":"LineString","arcs":[4427],"id":31857,"properties":{"V":230}},{"type":"LineString","arcs":[4428],"id":31872,"properties":{"V":230}},{"type":"LineString","arcs":[4429],"id":31880,"properties":{"V":230}},{"type":"LineString","arcs":[4430],"id":31883,"properties":{"V":345}},{"type":"LineString","arcs":[4431],"id":31891,"properties":{"V":345}},{"type":"LineString","arcs":[4432],"id":31892,"properties":{"V":345}},{"type":"LineString","arcs":[4433],"id":31897,"properties":{"V":345}},{"type":"LineString","arcs":[4434],"id":31905,"properties":{"V":230}},{"type":"LineString","arcs":[4435],"id":31909,"properties":{"V":230}},{"type":"LineString","arcs":[4436],"id":31910,"properties":{"V":345}},{"type":"LineString","arcs":[4437],"id":31945,"properties":{"V":230}},{"type":"LineString","arcs":[4438],"id":31948,"properties":{"V":230}},{"type":"LineString","arcs":[4439],"id":31951,"properties":{"V":345}},{"type":"LineString","arcs":[4440],"id":31956,"properties":{"V":230}},{"type":"LineString","arcs":[4441],"id":31958,"properties":{"V":345}},{"type":"LineString","arcs":[4442],"id":31965,"properties":{"V":345}},{"type":"LineString","arcs":[4443],"id":31966,"properties":{"V":345}},{"type":"LineString","arcs":[4444],"id":31970,"properties":{"V":230}},{"type":"LineString","arcs":[4445],"id":31983,"properties":{"V":500}},{"type":"LineString","arcs":[4446],"id":31985,"properties":{"V":500}},{"type":"LineString","arcs":[4447],"id":31991,"properties":{"V":230}},{"type":"LineString","arcs":[4448],"id":31992,"properties":{"V":345}},{"type":"LineString","arcs":[4449],"id":32002,"properties":{"V":500}},{"type":"LineString","arcs":[4450],"id":32009,"properties":{"V":345}},{"type":"LineString","arcs":[4451],"id":32053,"properties":{"V":230}},{"type":"LineString","arcs":[4452],"id":32067,"properties":{"V":345}},{"type":"LineString","arcs":[4453,4454,4455],"id":32068,"properties":{"V":230}},{"type":"LineString","arcs":[4456],"id":32081,"properties":{"V":230}},{"type":"LineString","arcs":[4457],"id":32087,"properties":{"V":345}},{"type":"LineString","arcs":[4458],"id":32093,"properties":{"V":230}},{"type":"LineString","arcs":[4459],"id":32097,"properties":{"V":230}},{"type":"LineString","arcs":[4460],"id":32104,"properties":{"V":230}},{"type":"LineString","arcs":[4461],"id":32107,"properties":{"V":230}},{"type":"LineString","arcs":[4462],"id":32108,"properties":{"V":500}},{"type":"LineString","arcs":[4463],"id":32110,"properties":{"V":230}},{"type":"LineString","arcs":[4464],"id":32115,"properties":{"V":230}},{"type":"LineString","arcs":[4465],"id":32116,"properties":{"V":345}},{"type":"LineString","arcs":[4466],"id":32127,"properties":{"V":345}},{"type":"LineString","arcs":[4467],"id":32129,"properties":{"V":230}},{"type":"LineString","arcs":[4468],"id":32130,"properties":{"V":345}},{"type":"LineString","arcs":[4469],"id":32135,"properties":{"V":230}},{"type":"LineString","arcs":[4470],"id":32138,"properties":{"V":765}},{"type":"LineString","arcs":[4471],"id":32141,"properties":{"V":500}},{"type":"LineString","arcs":[4472],"id":32144,"properties":{"V":230}},{"type":"LineString","arcs":[4473],"id":32148,"properties":{"V":230}},{"type":"LineString","arcs":[4474],"id":32172,"properties":{"V":345}},{"type":"LineString","arcs":[4475],"id":32180,"properties":{"V":230}},{"type":"LineString","arcs":[4476],"id":32183,"properties":{"V":230}},{"type":"LineString","arcs":[4477],"id":32185,"properties":{"V":765}},{"type":"LineString","arcs":[4478],"id":32187,"properties":{"V":230}},{"type":"LineString","arcs":[4479],"id":32188,"properties":{"V":230}},{"type":"LineString","arcs":[4480],"id":32189,"properties":{"V":230}},{"type":"LineString","arcs":[4481],"id":32190,"properties":{"V":230}},{"type":"LineString","arcs":[4482],"id":32194,"properties":{"V":345}},{"type":"LineString","arcs":[4483],"id":32195,"properties":{"V":345}},{"type":"LineString","arcs":[4484],"id":32196,"properties":{"V":230}},{"type":"LineString","arcs":[4485],"id":32201,"properties":{"V":230}},{"type":"LineString","arcs":[4486],"id":32237,"properties":{"V":230}},{"type":"LineString","arcs":[4487],"id":32247,"properties":{"V":230}},{"type":"LineString","arcs":[4488],"id":32255,"properties":{"V":230}},{"type":"LineString","arcs":[4489],"id":32267,"properties":{"V":230}},{"type":"LineString","arcs":[4490],"id":32268,"properties":{"V":230}},{"type":"LineString","arcs":[4491],"id":32271,"properties":{"V":230}},{"type":"LineString","arcs":[4492],"id":32274,"properties":{"V":230}},{"type":"LineString","arcs":[4493],"id":32280,"properties":{"V":345}},{"type":"LineString","arcs":[4494],"id":32300,"properties":{"V":230}},{"type":"LineString","arcs":[4495],"id":32303,"properties":{"V":230}},{"type":"LineString","arcs":[4496],"id":32309,"properties":{"V":345}},{"type":"LineString","arcs":[4497],"id":32311,"properties":{"V":230}},{"type":"LineString","arcs":[4498],"id":32312,"properties":{"V":230}},{"type":"LineString","arcs":[4499],"id":32313,"properties":{"V":345}},{"type":"LineString","arcs":[4500],"id":32314,"properties":{"V":230}},{"type":"LineString","arcs":[4501],"id":32317,"properties":{"V":230}},{"type":"LineString","arcs":[4502],"id":32321,"properties":{"V":230}},{"type":"LineString","arcs":[4503,4504,4505],"id":32323,"properties":{"V":345}},{"type":"LineString","arcs":[4506],"id":32351,"properties":{"V":230}},{"type":"LineString","arcs":[4507],"id":32353,"properties":{"V":230}},{"type":"LineString","arcs":[4508],"id":32362,"properties":{"V":230}},{"type":"LineString","arcs":[4509],"id":32367,"properties":{"V":230}},{"type":"LineString","arcs":[4510],"id":32374,"properties":{"V":345}},{"type":"LineString","arcs":[4511],"id":32375,"properties":{"V":345}},{"type":"LineString","arcs":[4512],"id":32392,"properties":{"V":345}},{"type":"LineString","arcs":[4513],"id":32396,"properties":{"V":230}},{"type":"LineString","arcs":[4514],"id":32405,"properties":{"V":230}},{"type":"LineString","arcs":[4515],"id":32411,"properties":{"V":230}},{"type":"LineString","arcs":[4516],"id":32413,"properties":{"V":230}},{"type":"LineString","arcs":[4517],"id":32428,"properties":{"V":230}},{"type":"LineString","arcs":[4518],"id":32429,"properties":{"V":230}},{"type":"LineString","arcs":[4519],"id":32431,"properties":{"V":500}},{"type":"LineString","arcs":[4520,4521],"id":32436,"properties":{"V":230}},{"type":"LineString","arcs":[4522],"id":32442,"properties":{"V":500}},{"type":"LineString","arcs":[4523],"id":32445,"properties":{"V":230}},{"type":"LineString","arcs":[4524],"id":32459,"properties":{"V":345}},{"type":"LineString","arcs":[4525],"id":32464,"properties":{"V":230}},{"type":"LineString","arcs":[4526],"id":32466,"properties":{"V":345}},{"type":"LineString","arcs":[4527],"id":32470,"properties":{"V":230}},{"type":"LineString","arcs":[4528],"id":32479,"properties":{"V":230}},{"type":"LineString","arcs":[4529],"id":32485,"properties":{"V":230}},{"type":"LineString","arcs":[4530],"id":32487,"properties":{"V":345}},{"type":"LineString","arcs":[4531],"id":32488,"properties":{"V":345}},{"type":"LineString","arcs":[4532],"id":32494,"properties":{"V":345}},{"type":"LineString","arcs":[4533],"id":32498,"properties":{"V":230}},{"type":"LineString","arcs":[4534],"id":32504,"properties":{"V":345}},{"type":"LineString","arcs":[4535],"id":32509,"properties":{"V":230}},{"type":"LineString","arcs":[4536],"id":32519,"properties":{"V":230}},{"type":"LineString","arcs":[4537],"id":32525,"properties":{"V":230}},{"type":"LineString","arcs":[4538],"id":32527,"properties":{"V":500}},{"type":"LineString","arcs":[4539],"id":32536,"properties":{"V":345}},{"type":"LineString","arcs":[4540],"id":32537,"properties":{"V":230}},{"type":"LineString","arcs":[4541],"id":32544,"properties":{"V":230}},{"type":"LineString","arcs":[4542],"id":32545,"properties":{"V":230}},{"type":"LineString","arcs":[4543],"id":32548,"properties":{"V":230}},{"type":"LineString","arcs":[4544],"id":32556,"properties":{"V":230}},{"type":"LineString","arcs":[4545],"id":32563,"properties":{"V":230}},{"type":"LineString","arcs":[4546],"id":32567,"properties":{"V":345}},{"type":"LineString","arcs":[4547,4548],"id":32568,"properties":{"V":500}},{"type":"LineString","arcs":[4549],"id":32585,"properties":{"V":230}},{"type":"LineString","arcs":[4550],"id":32592,"properties":{"V":230}},{"type":"LineString","arcs":[4551],"id":32599,"properties":{"V":500}},{"type":"LineString","arcs":[4552],"id":32629,"properties":{"V":500}},{"type":"LineString","arcs":[4553],"id":32643,"properties":{"V":345}},{"type":"LineString","arcs":[4554,4555],"id":32650,"properties":{"V":230}},{"type":"LineString","arcs":[4556],"id":32662,"properties":{"V":230}},{"type":"LineString","arcs":[4557],"id":32669,"properties":{"V":345}},{"type":"LineString","arcs":[4558,4559,4560],"id":32671,"properties":{"V":345}},{"type":"LineString","arcs":[4561],"id":32682,"properties":{"V":345}},{"type":"LineString","arcs":[4562],"id":32684,"properties":{"V":230}},{"type":"LineString","arcs":[4563],"id":32714,"properties":{"V":500}},{"type":"LineString","arcs":[4564],"id":32716,"properties":{"V":345}},{"type":"LineString","arcs":[4565],"id":32720,"properties":{"V":230}},{"type":"LineString","arcs":[4566],"id":32728,"properties":{"V":230}},{"type":"LineString","arcs":[4567],"id":32739,"properties":{"V":230}},{"type":"LineString","arcs":[4568],"id":32741,"properties":{"V":345}},{"type":"LineString","arcs":[4569],"id":32745,"properties":{"V":500}},{"type":"LineString","arcs":[4570],"id":32747,"properties":{"V":230}},{"type":"LineString","arcs":[4571],"id":32752,"properties":{"V":230}},{"type":"LineString","arcs":[4572],"id":32756,"properties":{"V":345}},{"type":"LineString","arcs":[4573],"id":32768,"properties":{"V":230}},{"type":"LineString","arcs":[4574],"id":32773,"properties":{"V":230}},{"type":"LineString","arcs":[4575],"id":32781,"properties":{"V":345}},{"type":"LineString","arcs":[4576],"id":32800,"properties":{"V":345}},{"type":"LineString","arcs":[4577],"id":32810,"properties":{"V":230}},{"type":"LineString","arcs":[4578],"id":32813,"properties":{"V":345}},{"type":"LineString","arcs":[4579],"id":32832,"properties":{"V":500}},{"type":"LineString","arcs":[4580,4581],"id":32836,"properties":{"V":345}},{"type":"LineString","arcs":[4582],"id":32840,"properties":{"V":345}},{"type":"LineString","arcs":[4583],"id":32848,"properties":{"V":230}},{"type":"LineString","arcs":[4584],"id":32857,"properties":{"V":500}},{"type":"LineString","arcs":[4585,4586],"id":32867,"properties":{"V":230}},{"type":"LineString","arcs":[4587],"id":32886,"properties":{"V":230}},{"type":"LineString","arcs":[4588],"id":32896,"properties":{"V":230}},{"type":"LineString","arcs":[4589],"id":32902,"properties":{"V":230}},{"type":"LineString","arcs":[4590],"id":32910,"properties":{"V":500}},{"type":"LineString","arcs":[4591],"id":32914,"properties":{"V":230}},{"type":"LineString","arcs":[4592],"id":32927,"properties":{"V":230}},{"type":"LineString","arcs":[4593,4594,4595,4596,4597,4598,4599,4600],"id":32933,"properties":{"V":230}},{"type":"LineString","arcs":[4601],"id":32951,"properties":{"V":230}},{"type":"LineString","arcs":[4602],"id":32959,"properties":{"V":500}},{"type":"LineString","arcs":[4603],"id":32967,"properties":{"V":230}},{"type":"LineString","arcs":[4604],"id":32977,"properties":{"V":500}},{"type":"LineString","arcs":[4605],"id":32978,"properties":{"V":230}},{"type":"LineString","arcs":[4606],"id":32980,"properties":{"V":230}},{"type":"LineString","arcs":[4607],"id":32998,"properties":{"V":230}},{"type":"LineString","arcs":[4608],"id":33010,"properties":{"V":230}},{"type":"LineString","arcs":[4609,4610],"id":33023,"properties":{"V":230}},{"type":"LineString","arcs":[4611],"id":33029,"properties":{"V":500}},{"type":"LineString","arcs":[4612],"id":33034,"properties":{"V":345}},{"type":"LineString","arcs":[4613],"id":33043,"properties":{"V":345}},{"type":"LineString","arcs":[4614],"id":33047,"properties":{"V":500}},{"type":"LineString","arcs":[4615],"id":33049,"properties":{"V":345}},{"type":"LineString","arcs":[4616],"id":33052,"properties":{"V":230}},{"type":"LineString","arcs":[4617],"id":33060,"properties":{"V":230}},{"type":"LineString","arcs":[4618],"id":33061,"properties":{"V":230}},{"type":"LineString","arcs":[4619],"id":33065,"properties":{"V":230}},{"type":"LineString","arcs":[4620],"id":33073,"properties":{"V":230}},{"type":"LineString","arcs":[4621],"id":33084,"properties":{"V":230}},{"type":"LineString","arcs":[4622],"id":33085,"properties":{"V":345}},{"type":"LineString","arcs":[4623],"id":33094,"properties":{"V":230}},{"type":"LineString","arcs":[4624],"id":33108,"properties":{"V":230}},{"type":"LineString","arcs":[4625],"id":33109,"properties":{"V":230}},{"type":"LineString","arcs":[4626],"id":33112,"properties":{"V":230}},{"type":"LineString","arcs":[4627],"id":33119,"properties":{"V":230}},{"type":"LineString","arcs":[4628],"id":33129,"properties":{"V":500}},{"type":"LineString","arcs":[4629],"id":33137,"properties":{"V":230}},{"type":"LineString","arcs":[4630],"id":33146,"properties":{"V":230}},{"type":"LineString","arcs":[4631],"id":33158,"properties":{"V":230}},{"type":"LineString","arcs":[4632],"id":33166,"properties":{"V":345}},{"type":"LineString","arcs":[4633],"id":33167,"properties":{"V":230}},{"type":"LineString","arcs":[4634],"id":33170,"properties":{"V":345}},{"type":"LineString","arcs":[4635],"id":33173,"properties":{"V":500}},{"type":"LineString","arcs":[4636],"id":33189,"properties":{"V":230}},{"type":"LineString","arcs":[4637],"id":33199,"properties":{"V":230}},{"type":"LineString","arcs":[4638],"id":33200,"properties":{"V":345}},{"type":"LineString","arcs":[4639],"id":33203,"properties":{"V":230}},{"type":"LineString","arcs":[4640],"id":33247,"properties":{"V":230}},{"type":"LineString","arcs":[4641],"id":33256,"properties":{"V":230}},{"type":"LineString","arcs":[4642],"id":33272,"properties":{"V":230}},{"type":"LineString","arcs":[4643],"id":33277,"properties":{"V":345}},{"type":"LineString","arcs":[4644],"id":33281,"properties":{"V":345}},{"type":"LineString","arcs":[4645],"id":33283,"properties":{"V":230}},{"type":"LineString","arcs":[4646],"id":33286,"properties":{"V":345}},{"type":"LineString","arcs":[4647],"id":33313,"properties":{"V":230}},{"type":"LineString","arcs":[4648],"id":33319,"properties":{"V":230}},{"type":"LineString","arcs":[4649],"id":33338,"properties":{"V":230}},{"type":"LineString","arcs":[4650],"id":33345,"properties":{"V":230}},{"type":"LineString","arcs":[4651],"id":33348,"properties":{"V":230}},{"type":"LineString","arcs":[4652],"id":33361,"properties":{"V":345}},{"type":"LineString","arcs":[4653],"id":33372,"properties":{"V":230}},{"type":"LineString","arcs":[4654],"id":33377,"properties":{"V":500}},{"type":"LineString","arcs":[4655],"id":33385,"properties":{"V":230}},{"type":"LineString","arcs":[4656],"id":33407,"properties":{"V":230}},{"type":"LineString","arcs":[4657],"id":33416,"properties":{"V":230}},{"type":"LineString","arcs":[4658],"id":33421,"properties":{"V":500}},{"type":"LineString","arcs":[4659],"id":33434,"properties":{"V":230}},{"type":"LineString","arcs":[4660],"id":33440,"properties":{"V":230}},{"type":"LineString","arcs":[4661],"id":33458,"properties":{"V":345}},{"type":"LineString","arcs":[4662,4663],"id":33470,"properties":{"V":500}},{"type":"LineString","arcs":[4664],"id":33473,"properties":{"V":230}},{"type":"LineString","arcs":[4665],"id":33475,"properties":{"V":500}},{"type":"LineString","arcs":[4666,4667],"id":33478,"properties":{"V":230}},{"type":"LineString","arcs":[4668],"id":33493,"properties":{"V":230}},{"type":"LineString","arcs":[4669],"id":33495,"properties":{"V":230}},{"type":"LineString","arcs":[4670],"id":33555,"properties":{"V":230}},{"type":"LineString","arcs":[4671],"id":33575,"properties":{"V":230}},{"type":"LineString","arcs":[4672],"id":33577,"properties":{"V":230}},{"type":"LineString","arcs":[4673],"id":33585,"properties":{"V":230}},{"type":"LineString","arcs":[4674],"id":33587,"properties":{"V":345}},{"type":"LineString","arcs":[4675],"id":33588,"properties":{"V":230}},{"type":"LineString","arcs":[4676],"id":33591,"properties":{"V":230}},{"type":"LineString","arcs":[4677],"id":33603,"properties":{"V":230}},{"type":"LineString","arcs":[4678],"id":33609,"properties":{"V":230}},{"type":"LineString","arcs":[4679],"id":33613,"properties":{"V":230}},{"type":"LineString","arcs":[4680],"id":33617,"properties":{"V":230}},{"type":"LineString","arcs":[4681],"id":33628,"properties":{"V":230}},{"type":"LineString","arcs":[4682],"id":33630,"properties":{"V":230}},{"type":"LineString","arcs":[4683],"id":33637,"properties":{"V":230}},{"type":"LineString","arcs":[4684],"id":33641,"properties":{"V":230}},{"type":"LineString","arcs":[4685],"id":33646,"properties":{"V":230}},{"type":"LineString","arcs":[4686],"id":33657,"properties":{"V":345}},{"type":"LineString","arcs":[4687],"id":33663,"properties":{"V":230}},{"type":"LineString","arcs":[4688,4689],"id":33669,"properties":{"V":230}},{"type":"LineString","arcs":[4690],"id":33675,"properties":{"V":230}},{"type":"LineString","arcs":[4691],"id":33687,"properties":{"V":230}},{"type":"LineString","arcs":[4692],"id":33702,"properties":{"V":230}},{"type":"LineString","arcs":[4693],"id":33705,"properties":{"V":230}},{"type":"LineString","arcs":[4694],"id":33708,"properties":{"V":230}},{"type":"LineString","arcs":[4695],"id":33709,"properties":{"V":230}},{"type":"LineString","arcs":[4696],"id":33719,"properties":{"V":230}},{"type":"LineString","arcs":[4697],"id":33728,"properties":{"V":345}},{"type":"LineString","arcs":[4698],"id":33733,"properties":{"V":230}},{"type":"LineString","arcs":[4699],"id":33738,"properties":{"V":345}},{"type":"LineString","arcs":[4700],"id":33747,"properties":{"V":230}},{"type":"LineString","arcs":[4701],"id":33750,"properties":{"V":230}},{"type":"LineString","arcs":[4702],"id":33751,"properties":{"V":345}},{"type":"LineString","arcs":[4703],"id":33752,"properties":{"V":230}},{"type":"LineString","arcs":[4704],"id":33770,"properties":{"V":230}},{"type":"LineString","arcs":[4705],"id":33775,"properties":{"V":345}},{"type":"LineString","arcs":[4706],"id":33780,"properties":{"V":230}},{"type":"LineString","arcs":[4707],"id":33782,"properties":{"V":500}},{"type":"LineString","arcs":[4708],"id":33794,"properties":{"V":230}},{"type":"LineString","arcs":[4709],"id":33809,"properties":{"V":230}},{"type":"LineString","arcs":[4710],"id":33819,"properties":{"V":230}},{"type":"LineString","arcs":[4711],"id":33820,"properties":{"V":230}},{"type":"LineString","arcs":[4712],"id":33829,"properties":{"V":345}},{"type":"LineString","arcs":[4713],"id":33843,"properties":{"V":230}},{"type":"LineString","arcs":[4714],"id":33850,"properties":{"V":230}},{"type":"LineString","arcs":[4715],"id":33852,"properties":{"V":230}},{"type":"LineString","arcs":[4716],"id":33856,"properties":{"V":230}},{"type":"LineString","arcs":[4717],"id":33863,"properties":{"V":230}},{"type":"LineString","arcs":[4718],"id":33864,"properties":{"V":345}},{"type":"LineString","arcs":[4719],"id":33865,"properties":{"V":345}},{"type":"LineString","arcs":[4720],"id":33871,"properties":{"V":345}},{"type":"LineString","arcs":[4721],"id":33873,"properties":{"V":230}},{"type":"LineString","arcs":[4722],"id":33879,"properties":{"V":230}},{"type":"LineString","arcs":[4723],"id":33901,"properties":{"V":230}},{"type":"LineString","arcs":[4724],"id":33902,"properties":{"V":500}},{"type":"LineString","arcs":[4725],"id":33940,"properties":{"V":230}},{"type":"LineString","arcs":[4726],"id":33942,"properties":{"V":230}},{"type":"LineString","arcs":[4727],"id":33981,"properties":{"V":345}},{"type":"LineString","arcs":[4728],"id":34000,"properties":{"V":345}},{"type":"LineString","arcs":[4729],"id":34007,"properties":{"V":230}},{"type":"LineString","arcs":[4730],"id":34046,"properties":{"V":230}},{"type":"LineString","arcs":[4731],"id":34047,"properties":{"V":230}},{"type":"LineString","arcs":[4732],"id":34053,"properties":{"V":230}},{"type":"LineString","arcs":[4733],"id":34081,"properties":{"V":230}},{"type":"LineString","arcs":[4734],"id":34082,"properties":{"V":230}},{"type":"LineString","arcs":[4735],"id":34083,"properties":{"V":230}},{"type":"LineString","arcs":[4736],"id":34084,"properties":{"V":230}},{"type":"LineString","arcs":[4737],"id":34092,"properties":{"V":230}},{"type":"LineString","arcs":[4738],"id":34102,"properties":{"V":230}},{"type":"LineString","arcs":[4739],"id":34103,"properties":{"V":230}},{"type":"LineString","arcs":[4740],"id":34129,"properties":{"V":230}},{"type":"LineString","arcs":[4741],"id":34168,"properties":{"V":230}},{"type":"LineString","arcs":[4742],"id":34186,"properties":{"V":230}},{"type":"LineString","arcs":[4743],"id":34201,"properties":{"V":500}},{"type":"LineString","arcs":[4744],"id":34202,"properties":{"V":500}},{"type":"LineString","arcs":[4745],"id":34203,"properties":{"V":230}},{"type":"LineString","arcs":[4746],"id":34205,"properties":{"V":230}},{"type":"LineString","arcs":[4747],"id":34207,"properties":{"V":230}},{"type":"LineString","arcs":[4748],"id":34208,"properties":{"V":230}},{"type":"LineString","arcs":[4749],"id":34210,"properties":{"V":230}},{"type":"LineString","arcs":[4750],"id":34211,"properties":{"V":230}},{"type":"LineString","arcs":[4751],"id":34215,"properties":{"V":230}},{"type":"LineString","arcs":[4752],"id":34216,"properties":{"V":230}},{"type":"LineString","arcs":[4753],"id":34224,"properties":{"V":230}},{"type":"LineString","arcs":[4754],"id":34229,"properties":{"V":230}},{"type":"LineString","arcs":[4755],"id":34232,"properties":{"V":230}},{"type":"LineString","arcs":[4756],"id":34236,"properties":{"V":230}},{"type":"LineString","arcs":[4757],"id":34241,"properties":{"V":230}},{"type":"LineString","arcs":[4758],"id":34243,"properties":{"V":230}},{"type":"LineString","arcs":[4759],"id":34251,"properties":{"V":230}},{"type":"LineString","arcs":[4760],"id":34255,"properties":{"V":230}},{"type":"LineString","arcs":[4761],"id":34259,"properties":{"V":230}},{"type":"LineString","arcs":[4762],"id":34264,"properties":{"V":230}},{"type":"LineString","arcs":[4763],"id":34265,"properties":{"V":230}},{"type":"LineString","arcs":[4764],"id":34267,"properties":{"V":230}},{"type":"LineString","arcs":[4765],"id":34318,"properties":{"V":230}},{"type":"LineString","arcs":[4766],"id":34320,"properties":{"V":230}},{"type":"LineString","arcs":[4767],"id":34322,"properties":{"V":230}},{"type":"LineString","arcs":[4768],"id":34323,"properties":{"V":230}},{"type":"LineString","arcs":[4769],"id":34324,"properties":{"V":230}},{"type":"LineString","arcs":[4770],"id":34335,"properties":{"V":230}},{"type":"LineString","arcs":[4771],"id":34341,"properties":{"V":230}},{"type":"LineString","arcs":[4772],"id":34343,"properties":{"V":230}},{"type":"LineString","arcs":[4773],"id":34400,"properties":{"V":345}},{"type":"LineString","arcs":[4774],"id":34407,"properties":{"V":500}},{"type":"LineString","arcs":[4775],"id":34618,"properties":{"V":230}},{"type":"LineString","arcs":[4776],"id":34619,"properties":{"V":230}},{"type":"LineString","arcs":[4777],"id":34781,"properties":{"V":345}},{"type":"LineString","arcs":[4778],"id":34782,"properties":{"V":230}},{"type":"LineString","arcs":[4779],"id":34787,"properties":{"V":230}},{"type":"LineString","arcs":[4780],"id":34788,"properties":{"V":230}},{"type":"LineString","arcs":[4781],"id":34799,"properties":{"V":345}},{"type":"LineString","arcs":[4782],"id":34808,"properties":{"V":345}},{"type":"LineString","arcs":[4783],"id":34809,"properties":{"V":345}},{"type":"LineString","arcs":[4784],"id":34810,"properties":{"V":345}},{"type":"LineString","arcs":[4785],"id":34826,"properties":{"V":230}},{"type":"LineString","arcs":[4786],"id":34827,"properties":{"V":500}},{"type":"LineString","arcs":[4787],"id":34835,"properties":{"V":230}},{"type":"LineString","arcs":[4788],"id":34851,"properties":{"V":345}},{"type":"LineString","arcs":[4789],"id":34861,"properties":{"V":230}},{"type":"LineString","arcs":[4790],"id":34863,"properties":{"V":230}},{"type":"LineString","arcs":[4791],"id":34864,"properties":{"V":230}},{"type":"LineString","arcs":[4792],"id":34868,"properties":{"V":230}},{"type":"LineString","arcs":[4793],"id":34885,"properties":{"V":345}},{"type":"LineString","arcs":[4794],"id":34886,"properties":{"V":345}},{"type":"LineString","arcs":[4795],"id":34888,"properties":{"V":345}},{"type":"LineString","arcs":[4796],"id":34893,"properties":{"V":345}},{"type":"LineString","arcs":[4797],"id":34897,"properties":{"V":345}},{"type":"LineString","arcs":[4798],"id":34901,"properties":{"V":345}},{"type":"LineString","arcs":[4799],"id":34904,"properties":{"V":345}},{"type":"LineString","arcs":[4800],"id":34905,"properties":{"V":345}},{"type":"LineString","arcs":[4801],"id":34906,"properties":{"V":345}},{"type":"LineString","arcs":[4802],"id":34908,"properties":{"V":345}},{"type":"LineString","arcs":[4803],"id":34909,"properties":{"V":345}},{"type":"LineString","arcs":[4804],"id":34911,"properties":{"V":230}},{"type":"LineString","arcs":[4805],"id":34912,"properties":{"V":230}},{"type":"LineString","arcs":[4806],"id":34913,"properties":{"V":230}},{"type":"LineString","arcs":[4807],"id":34914,"properties":{"V":230}},{"type":"LineString","arcs":[4808],"id":34916,"properties":{"V":230}},{"type":"LineString","arcs":[4809],"id":34920,"properties":{"V":230}},{"type":"LineString","arcs":[4810],"id":34921,"properties":{"V":230}},{"type":"LineString","arcs":[4811],"id":34922,"properties":{"V":230}},{"type":"LineString","arcs":[4812],"id":34925,"properties":{"V":345}},{"type":"LineString","arcs":[4813],"id":34926,"properties":{"V":345}},{"type":"LineString","arcs":[4814],"id":34927,"properties":{"V":345}},{"type":"LineString","arcs":[4815],"id":34928,"properties":{"V":345}},{"type":"LineString","arcs":[4816],"id":34929,"properties":{"V":230}},{"type":"LineString","arcs":[4817],"id":34934,"properties":{"V":230}},{"type":"LineString","arcs":[4818],"id":34935,"properties":{"V":230}},{"type":"LineString","arcs":[4819],"id":34936,"properties":{"V":230}},{"type":"LineString","arcs":[4820],"id":34937,"properties":{"V":230}},{"type":"LineString","arcs":[4821],"id":34938,"properties":{"V":230}},{"type":"LineString","arcs":[4822],"id":34939,"properties":{"V":230}},{"type":"LineString","arcs":[4823],"id":34940,"properties":{"V":230}},{"type":"LineString","arcs":[4824],"id":34941,"properties":{"V":230}},{"type":"LineString","arcs":[4825],"id":34942,"properties":{"V":230}},{"type":"LineString","arcs":[4826],"id":34943,"properties":{"V":230}},{"type":"LineString","arcs":[4827],"id":34945,"properties":{"V":230}},{"type":"LineString","arcs":[4828],"id":34950,"properties":{"V":345}},{"type":"LineString","arcs":[4829],"id":34951,"properties":{"V":345}},{"type":"LineString","arcs":[4830],"id":34957,"properties":{"V":345}},{"type":"LineString","arcs":[4831],"id":34960,"properties":{"V":345}},{"type":"LineString","arcs":[4832],"id":34988,"properties":{"V":345}},{"type":"LineString","arcs":[4833],"id":35008,"properties":{"V":230}},{"type":"LineString","arcs":[4834],"id":35010,"properties":{"V":230}},{"type":"LineString","arcs":[4835],"id":35011,"properties":{"V":500}},{"type":"LineString","arcs":[4836],"id":35024,"properties":{"V":230}},{"type":"LineString","arcs":[4837],"id":35025,"properties":{"V":230}},{"type":"LineString","arcs":[4838],"id":35039,"properties":{"V":230}},{"type":"LineString","arcs":[4839],"id":35042,"properties":{"V":230}},{"type":"LineString","arcs":[4840],"id":35043,"properties":{"V":230}},{"type":"LineString","arcs":[4841],"id":35044,"properties":{"V":230}},{"type":"LineString","arcs":[4842],"id":35045,"properties":{"V":230}},{"type":"LineString","arcs":[4843],"id":35047,"properties":{"V":230}},{"type":"LineString","arcs":[4844],"id":35065,"properties":{"V":345}},{"type":"LineString","arcs":[4845],"id":35066,"properties":{"V":345}},{"type":"LineString","arcs":[4846],"id":35070,"properties":{"V":230}},{"type":"LineString","arcs":[4847],"id":35078,"properties":{"V":230}},{"type":"LineString","arcs":[4848],"id":35082,"properties":{"V":230}},{"type":"LineString","arcs":[4849],"id":35083,"properties":{"V":345}},{"type":"LineString","arcs":[4850],"id":35098,"properties":{"V":230}},{"type":"LineString","arcs":[4851],"id":35099,"properties":{"V":230}},{"type":"LineString","arcs":[4852],"id":35101,"properties":{"V":230}},{"type":"LineString","arcs":[4853],"id":35102,"properties":{"V":230}},{"type":"LineString","arcs":[4854],"id":35103,"properties":{"V":230}},{"type":"LineString","arcs":[4855],"id":35104,"properties":{"V":230}},{"type":"LineString","arcs":[4856],"id":35105,"properties":{"V":230}},{"type":"LineString","arcs":[4857],"id":35107,"properties":{"V":230}},{"type":"LineString","arcs":[4858],"id":35137,"properties":{"V":230}},{"type":"LineString","arcs":[4859],"id":35138,"properties":{"V":230}},{"type":"LineString","arcs":[4860],"id":35309,"properties":{"V":230}},{"type":"LineString","arcs":[4861],"id":35310,"properties":{"V":345}},{"type":"LineString","arcs":[4862],"id":35311,"properties":{"V":345}},{"type":"LineString","arcs":[4863],"id":35312,"properties":{"V":345}},{"type":"LineString","arcs":[4864],"id":35315,"properties":{"V":230}},{"type":"LineString","arcs":[4865],"id":35316,"properties":{"V":230}},{"type":"LineString","arcs":[4866],"id":35318,"properties":{"V":345}},{"type":"LineString","arcs":[4867],"id":35319,"properties":{"V":230}},{"type":"LineString","arcs":[4868],"id":35321,"properties":{"V":345}},{"type":"LineString","arcs":[4869],"id":35322,"properties":{"V":345}},{"type":"LineString","arcs":[4870],"id":35324,"properties":{"V":345}},{"type":"LineString","arcs":[4871],"id":35326,"properties":{"V":345}},{"type":"LineString","arcs":[4872],"id":35363,"properties":{"V":230}},{"type":"LineString","arcs":[4873],"id":35364,"properties":{"V":230}},{"type":"LineString","arcs":[4874],"id":35365,"properties":{"V":230}},{"type":"LineString","arcs":[4875],"id":35366,"properties":{"V":230}},{"type":"LineString","arcs":[4876],"id":35367,"properties":{"V":230}},{"type":"LineString","arcs":[4877],"id":35388,"properties":{"V":345}},{"type":"LineString","arcs":[4878],"id":35391,"properties":{"V":230}},{"type":"LineString","arcs":[4879],"id":35407,"properties":{"V":230}},{"type":"LineString","arcs":[4880],"id":35408,"properties":{"V":230}},{"type":"LineString","arcs":[4881,4882],"id":35416,"properties":{"V":230}},{"type":"LineString","arcs":[4883],"id":35427,"properties":{"V":230}},{"type":"LineString","arcs":[4884],"id":35428,"properties":{"V":230}},{"type":"LineString","arcs":[4885],"id":35429,"properties":{"V":230}},{"type":"LineString","arcs":[4886],"id":35437,"properties":{"V":345}},{"type":"LineString","arcs":[4887],"id":35438,"properties":{"V":230}},{"type":"LineString","arcs":[4888],"id":35469,"properties":{"V":230}},{"type":"LineString","arcs":[4889],"id":35473,"properties":{"V":230}},{"type":"LineString","arcs":[4890],"id":35474,"properties":{"V":230}},{"type":"LineString","arcs":[4891],"id":35521,"properties":{"V":230}},{"type":"LineString","arcs":[4892],"id":35546,"properties":{"V":230}},{"type":"LineString","arcs":[4893],"id":35576,"properties":{"V":230}},{"type":"LineString","arcs":[4894],"id":35577,"properties":{"V":230}},{"type":"LineString","arcs":[4895],"id":35578,"properties":{"V":230}},{"type":"LineString","arcs":[4896],"id":35587,"properties":{"V":230}},{"type":"LineString","arcs":[4897],"id":35593,"properties":{"V":230}},{"type":"LineString","arcs":[4898],"id":35595,"properties":{"V":230}},{"type":"LineString","arcs":[4899],"id":35606,"properties":{"V":230}},{"type":"LineString","arcs":[4900],"id":35607,"properties":{"V":230}},{"type":"LineString","arcs":[4901],"id":35610,"properties":{"V":230}},{"type":"LineString","arcs":[4902],"id":35626,"properties":{"V":230}},{"type":"LineString","arcs":[4903],"id":35629,"properties":{"V":230}},{"type":"LineString","arcs":[4904],"id":35632,"properties":{"V":230}},{"type":"LineString","arcs":[4905],"id":35633,"properties":{"V":230}},{"type":"LineString","arcs":[4906],"id":35658,"properties":{"V":230}},{"type":"LineString","arcs":[4907],"id":35660,"properties":{"V":230}},{"type":"LineString","arcs":[4908],"id":35668,"properties":{"V":230}},{"type":"LineString","arcs":[4909],"id":35698,"properties":{"V":345}},{"type":"LineString","arcs":[4910],"id":35738,"properties":{"V":230}},{"type":"LineString","arcs":[4911],"id":35763,"properties":{"V":230}},{"type":"LineString","arcs":[4912],"id":35788,"properties":{"V":230}},{"type":"LineString","arcs":[4913],"id":35789,"properties":{"V":230}},{"type":"LineString","arcs":[4914],"id":35790,"properties":{"V":230}},{"type":"LineString","arcs":[4915],"id":35791,"properties":{"V":230}},{"type":"LineString","arcs":[4916],"id":35792,"properties":{"V":230}},{"type":"LineString","arcs":[4917],"id":35794,"properties":{"V":230}},{"type":"LineString","arcs":[4918],"id":35798,"properties":{"V":230}},{"type":"LineString","arcs":[4919],"id":35810,"properties":{"V":230}},{"type":"LineString","arcs":[4920],"id":35811,"properties":{"V":230}},{"type":"LineString","arcs":[4921],"id":35812,"properties":{"V":230}},{"type":"LineString","arcs":[4922],"id":35814,"properties":{"V":230}},{"type":"LineString","arcs":[4923],"id":35816,"properties":{"V":230}},{"type":"LineString","arcs":[4924],"id":35826,"properties":{"V":230}},{"type":"LineString","arcs":[4925],"id":35827,"properties":{"V":345}},{"type":"LineString","arcs":[4926],"id":35857,"properties":{"V":230}},{"type":"LineString","arcs":[4927],"id":35922,"properties":{"V":230}},{"type":"LineString","arcs":[4928],"id":35938,"properties":{"V":230}},{"type":"LineString","arcs":[4929],"id":35964,"properties":{"V":230}},{"type":"LineString","arcs":[4930],"id":35965,"properties":{"V":230}},{"type":"LineString","arcs":[4931],"id":35969,"properties":{"V":345}},{"type":"LineString","arcs":[4932],"id":35972,"properties":{"V":230}},{"type":"LineString","arcs":[4933],"id":35983,"properties":{"V":230}},{"type":"LineString","arcs":[4934],"id":35990,"properties":{"V":230}},{"type":"LineString","arcs":[4935],"id":35992,"properties":{"V":345}},{"type":"LineString","arcs":[4936],"id":36005,"properties":{"V":230}},{"type":"LineString","arcs":[4937],"id":36009,"properties":{"V":345}},{"type":"LineString","arcs":[4938],"id":36021,"properties":{"V":230}},{"type":"LineString","arcs":[4939],"id":36027,"properties":{"V":345}},{"type":"LineString","arcs":[4940],"id":36028,"properties":{"V":230}},{"type":"LineString","arcs":[4941],"id":36031,"properties":{"V":230}},{"type":"LineString","arcs":[4942],"id":36040,"properties":{"V":230}},{"type":"LineString","arcs":[4943],"id":36045,"properties":{"V":230}},{"type":"LineString","arcs":[4944],"id":36061,"properties":{"V":345}},{"type":"LineString","arcs":[4945],"id":36064,"properties":{"V":450}},{"type":"LineString","arcs":[4946],"id":36067,"properties":{"V":230}},{"type":"LineString","arcs":[4947],"id":36068,"properties":{"V":230}},{"type":"LineString","arcs":[4948],"id":36069,"properties":{"V":345}},{"type":"LineString","arcs":[4949],"id":36083,"properties":{"V":230}},{"type":"LineString","arcs":[4950],"id":36088,"properties":{"V":230}},{"type":"LineString","arcs":[4951],"id":36093,"properties":{"V":765}},{"type":"LineString","arcs":[4952],"id":36114,"properties":{"V":230}},{"type":"LineString","arcs":[4953],"id":36115,"properties":{"V":345}},{"type":"LineString","arcs":[4954],"id":36117,"properties":{"V":230}},{"type":"LineString","arcs":[4955],"id":36124,"properties":{"V":230}},{"type":"LineString","arcs":[4956,4957],"id":36125,"properties":{"V":500}},{"type":"LineString","arcs":[4958,4959],"id":36128,"properties":{"V":500}},{"type":"LineString","arcs":[4960],"id":36144,"properties":{"V":230}},{"type":"LineString","arcs":[4961],"id":36149,"properties":{"V":230}},{"type":"LineString","arcs":[4962],"id":36154,"properties":{"V":230}},{"type":"LineString","arcs":[4963],"id":36155,"properties":{"V":230}},{"type":"LineString","arcs":[4964],"id":36156,"properties":{"V":230}},{"type":"LineString","arcs":[4965],"id":36157,"properties":{"V":230}},{"type":"LineString","arcs":[4966],"id":36163,"properties":{"V":230}},{"type":"LineString","arcs":[4967],"id":36180,"properties":{"V":230}},{"type":"LineString","arcs":[4968],"id":36190,"properties":{"V":230}},{"type":"LineString","arcs":[4969],"id":36228,"properties":{"V":230}},{"type":"LineString","arcs":[4970],"id":36236,"properties":{"V":230}},{"type":"LineString","arcs":[4971],"id":36294,"properties":{"V":230}},{"type":"LineString","arcs":[4972],"id":36402,"properties":{"V":500}},{"type":"LineString","arcs":[4973,4974],"id":36424,"properties":{"V":345}},{"type":"LineString","arcs":[4975],"id":36426,"properties":{"V":345}},{"type":"LineString","arcs":[4976],"id":36427,"properties":{"V":345}},{"type":"LineString","arcs":[4977,4978,4979],"id":36522,"properties":{"V":230}},{"type":"LineString","arcs":[4980,4981,4982,4983,4984],"id":36528,"properties":{"V":230}},{"type":"LineString","arcs":[4985],"id":36533,"properties":{"V":230}},{"type":"LineString","arcs":[4986],"id":36534,"properties":{"V":230}},{"type":"LineString","arcs":[4987],"id":36538,"properties":{"V":230}},{"type":"LineString","arcs":[4988],"id":36541,"properties":{"V":230}},{"type":"LineString","arcs":[4989],"id":36548,"properties":{"V":230}},{"type":"LineString","arcs":[4990],"id":36549,"properties":{"V":230}},{"type":"LineString","arcs":[4991],"id":36551,"properties":{"V":230}},{"type":"LineString","arcs":[4992],"id":36552,"properties":{"V":230}},{"type":"LineString","arcs":[4993],"id":36553,"properties":{"V":230}},{"type":"LineString","arcs":[4994],"id":36554,"properties":{"V":230}},{"type":"LineString","arcs":[4995],"id":36555,"properties":{"V":230}},{"type":"LineString","arcs":[4996],"id":36556,"properties":{"V":230}},{"type":"LineString","arcs":[4997],"id":36557,"properties":{"V":230}},{"type":"LineString","arcs":[4998],"id":36558,"properties":{"V":230}},{"type":"LineString","arcs":[4999],"id":36559,"properties":{"V":230}},{"type":"LineString","arcs":[5000],"id":36560,"properties":{"V":230}},{"type":"LineString","arcs":[5001],"id":36561,"properties":{"V":230}},{"type":"LineString","arcs":[5002],"id":36562,"properties":{"V":230}},{"type":"LineString","arcs":[5003],"id":36563,"properties":{"V":230}},{"type":"LineString","arcs":[5004],"id":36587,"properties":{"V":230}},{"type":"LineString","arcs":[5005],"id":36603,"properties":{"V":345}},{"type":"LineString","arcs":[5006,5007,5008],"id":36634,"properties":{"V":345}},{"type":"LineString","arcs":[5009],"id":36673,"properties":{"V":345}},{"type":"LineString","arcs":[5010],"id":36701,"properties":{"V":230}},{"type":"LineString","arcs":[5011],"id":36773,"properties":{"V":230}},{"type":"LineString","arcs":[5012],"id":36774,"properties":{"V":500}},{"type":"LineString","arcs":[5013],"id":36775,"properties":{"V":230}},{"type":"LineString","arcs":[5014,5015],"id":36777,"properties":{"V":500}},{"type":"LineString","arcs":[5016],"id":36929,"properties":{"V":345}},{"type":"LineString","arcs":[5017],"id":36936,"properties":{"V":345}},{"type":"LineString","arcs":[5018],"id":36950,"properties":{"V":345}},{"type":"LineString","arcs":[5019],"id":36973,"properties":{"V":230}},{"type":"LineString","arcs":[5020],"id":36974,"properties":{"V":230}},{"type":"LineString","arcs":[5021],"id":36978,"properties":{"V":230}},{"type":"LineString","arcs":[5022],"id":36979,"properties":{"V":230}},{"type":"LineString","arcs":[5023],"id":36980,"properties":{"V":230}},{"type":"LineString","arcs":[5024],"id":36984,"properties":{"V":230}},{"type":"LineString","arcs":[5025],"id":36987,"properties":{"V":230}},{"type":"LineString","arcs":[5026],"id":36988,"properties":{"V":230}},{"type":"LineString","arcs":[5027],"id":36998,"properties":{"V":345}},{"type":"LineString","arcs":[5028],"id":37170,"properties":{"V":230}},{"type":"LineString","arcs":[5029],"id":37185,"properties":{"V":345}},{"type":"LineString","arcs":[5030],"id":37202,"properties":{"V":345}},{"type":"LineString","arcs":[5031],"id":37262,"properties":{"V":345}},{"type":"LineString","arcs":[5032],"id":37263,"properties":{"V":230}},{"type":"LineString","arcs":[5033],"id":37282,"properties":{"V":230}},{"type":"LineString","arcs":[5034],"id":37283,"properties":{"V":230}},{"type":"LineString","arcs":[5035],"id":37286,"properties":{"V":230}},{"type":"LineString","arcs":[5036],"id":37287,"properties":{"V":230}},{"type":"LineString","arcs":[5037],"id":37288,"properties":{"V":230}},{"type":"LineString","arcs":[5038],"id":37289,"properties":{"V":230}},{"type":"LineString","arcs":[5039],"id":37290,"properties":{"V":230}},{"type":"LineString","arcs":[5040],"id":37293,"properties":{"V":230}},{"type":"LineString","arcs":[5041],"id":37294,"properties":{"V":230}},{"type":"LineString","arcs":[5042],"id":37319,"properties":{"V":230}},{"type":"LineString","arcs":[5043,5044,5045,5046,5047],"id":37320,"properties":{"V":500}},{"type":"LineString","arcs":[5048],"id":37322,"properties":{"V":500}},{"type":"LineString","arcs":[5049,5050],"id":37323,"properties":{"V":230}},{"type":"LineString","arcs":[5051,5052],"id":37324,"properties":{"V":230}},{"type":"LineString","arcs":[5053,5054],"id":37327,"properties":{"V":230}},{"type":"LineString","arcs":[5055],"id":37329,"properties":{"V":230}},{"type":"LineString","arcs":[5056],"id":37330,"properties":{"V":230}},{"type":"LineString","arcs":[5057],"id":37331,"properties":{"V":230}},{"type":"LineString","arcs":[5058],"id":37334,"properties":{"V":230}},{"type":"LineString","arcs":[5059],"id":37335,"properties":{"V":230}},{"type":"LineString","arcs":[5060],"id":37339,"properties":{"V":230}},{"type":"LineString","arcs":[5061],"id":37340,"properties":{"V":230}},{"type":"LineString","arcs":[5062],"id":37370,"properties":{"V":345}},{"type":"LineString","arcs":[5063],"id":37433,"properties":{"V":345}},{"type":"LineString","arcs":[5064],"id":37574,"properties":{"V":345}},{"type":"LineString","arcs":[5065],"id":37575,"properties":{"V":345}},{"type":"LineString","arcs":[5066],"id":37601,"properties":{"V":345}},{"type":"LineString","arcs":[5067],"id":37604,"properties":{"V":345}},{"type":"LineString","arcs":[5068],"id":37607,"properties":{"V":345}},{"type":"LineString","arcs":[5069],"id":37629,"properties":{"V":345}},{"type":"LineString","arcs":[5070],"id":37640,"properties":{"V":345}},{"type":"LineString","arcs":[5071],"id":37641,"properties":{"V":345}},{"type":"LineString","arcs":[5072],"id":37642,"properties":{"V":345}},{"type":"LineString","arcs":[5073],"id":37644,"properties":{"V":345}},{"type":"LineString","arcs":[5074],"id":37645,"properties":{"V":345}},{"type":"LineString","arcs":[5075],"id":37646,"properties":{"V":345}},{"type":"LineString","arcs":[5076],"id":37670,"properties":{"V":230}},{"type":"LineString","arcs":[5077],"id":37681,"properties":{"V":345}},{"type":"LineString","arcs":[5078],"id":37707,"properties":{"V":230}},{"type":"LineString","arcs":[5079],"id":37718,"properties":{"V":230}},{"type":"LineString","arcs":[5080],"id":37723,"properties":{"V":230}},{"type":"LineString","arcs":[5081],"id":37724,"properties":{"V":230}},{"type":"LineString","arcs":[5082],"id":37725,"properties":{"V":230}},{"type":"LineString","arcs":[5083],"id":37726,"properties":{"V":230}},{"type":"LineString","arcs":[5084],"id":37727,"properties":{"V":230}},{"type":"LineString","arcs":[5085],"id":37761,"properties":{"V":230}},{"type":"LineString","arcs":[5086],"id":37762,"properties":{"V":230}},{"type":"LineString","arcs":[5087],"id":37836,"properties":{"V":230}},{"type":"LineString","arcs":[5088],"id":37840,"properties":{"V":230}},{"type":"LineString","arcs":[5089],"id":37841,"properties":{"V":230}},{"type":"LineString","arcs":[5090],"id":37866,"properties":{"V":345}},{"type":"LineString","arcs":[5091],"id":37867,"properties":{"V":345}},{"type":"LineString","arcs":[5092],"id":37870,"properties":{"V":345}},{"type":"LineString","arcs":[5093],"id":37871,"properties":{"V":345}},{"type":"LineString","arcs":[5094],"id":37878,"properties":{"V":345}},{"type":"LineString","arcs":[5095],"id":37879,"properties":{"V":345}},{"type":"LineString","arcs":[5096],"id":37880,"properties":{"V":345}},{"type":"LineString","arcs":[5097],"id":37921,"properties":{"V":345}},{"type":"LineString","arcs":[5098],"id":37922,"properties":{"V":345}},{"type":"LineString","arcs":[5099],"id":37986,"properties":{"V":345}},{"type":"LineString","arcs":[5100],"id":37998,"properties":{"V":230}},{"type":"LineString","arcs":[5101],"id":38011,"properties":{"V":230}},{"type":"LineString","arcs":[5102],"id":38085,"properties":{"V":345}},{"type":"LineString","arcs":[5103],"id":38086,"properties":{"V":345}},{"type":"LineString","arcs":[5104],"id":38087,"properties":{"V":345}},{"type":"LineString","arcs":[5105],"id":38088,"properties":{"V":345}},{"type":"LineString","arcs":[5106],"id":38107,"properties":{"V":345}},{"type":"LineString","arcs":[5107],"id":38139,"properties":{"V":230}},{"type":"LineString","arcs":[5108],"id":38140,"properties":{"V":230}},{"type":"LineString","arcs":[5109,5110],"id":38145,"properties":{"V":230}},{"type":"LineString","arcs":[5111],"id":38171,"properties":{"V":345}},{"type":"LineString","arcs":[5112],"id":38173,"properties":{"V":230}},{"type":"LineString","arcs":[5113],"id":38180,"properties":{"V":345}},{"type":"LineString","arcs":[5114,5115],"id":38191,"properties":{"V":230}},{"type":"LineString","arcs":[5116],"id":38215,"properties":{"V":230}},{"type":"LineString","arcs":[5117],"id":38272,"properties":{"V":230}},{"type":"LineString","arcs":[5118],"id":38288,"properties":{"V":230}},{"type":"LineString","arcs":[5119],"id":38344,"properties":{"V":230}},{"type":"LineString","arcs":[5120],"id":38424,"properties":{"V":230}},{"type":"LineString","arcs":[5121],"id":38519,"properties":{"V":230}},{"type":"LineString","arcs":[5122],"id":38520,"properties":{"V":230}},{"type":"LineString","arcs":[5123],"id":38571,"properties":{"V":345}},{"type":"LineString","arcs":[5124],"id":38572,"properties":{"V":345}},{"type":"LineString","arcs":[5125],"id":38573,"properties":{"V":345}},{"type":"LineString","arcs":[5126],"id":38590,"properties":{"V":230}},{"type":"LineString","arcs":[5127],"id":38641,"properties":{"V":230}},{"type":"LineString","arcs":[5128],"id":38664,"properties":{"V":230}},{"type":"LineString","arcs":[5129],"id":38679,"properties":{"V":230}},{"type":"LineString","arcs":[5130],"id":38738,"properties":{"V":230}},{"type":"LineString","arcs":[5131],"id":38824,"properties":{"V":230}},{"type":"LineString","arcs":[5132],"id":38825,"properties":{"V":230}},{"type":"LineString","arcs":[5133],"id":38851,"properties":{"V":230}},{"type":"LineString","arcs":[5134],"id":38859,"properties":{"V":230}},{"type":"LineString","arcs":[5135],"id":38867,"properties":{"V":345}},{"type":"LineString","arcs":[5136],"id":38907,"properties":{"V":230}},{"type":"LineString","arcs":[5137],"id":38908,"properties":{"V":230}},{"type":"LineString","arcs":[5138],"id":38909,"properties":{"V":230}},{"type":"LineString","arcs":[5139],"id":38962,"properties":{"V":230}},{"type":"LineString","arcs":[5140],"id":38985,"properties":{"V":345}},{"type":"LineString","arcs":[5141],"id":38986,"properties":{"V":230}},{"type":"LineString","arcs":[5142],"id":38989,"properties":{"V":345}},{"type":"LineString","arcs":[5143],"id":38996,"properties":{"V":345}},{"type":"LineString","arcs":[5144],"id":39000,"properties":{"V":230}},{"type":"LineString","arcs":[5145],"id":39034,"properties":{"V":230}},{"type":"LineString","arcs":[5146],"id":39059,"properties":{"V":230}},{"type":"LineString","arcs":[5147],"id":39064,"properties":{"V":230}},{"type":"LineString","arcs":[5148],"id":39068,"properties":{"V":345}},{"type":"LineString","arcs":[5149],"id":39076,"properties":{"V":345}},{"type":"LineString","arcs":[5150],"id":39079,"properties":{"V":345}},{"type":"LineString","arcs":[5151],"id":39123,"properties":{"V":230}},{"type":"LineString","arcs":[5152],"id":39294,"properties":{"V":230}},{"type":"LineString","arcs":[5153],"id":39315,"properties":{"V":230}},{"type":"LineString","arcs":[5154],"id":39316,"properties":{"V":230}},{"type":"LineString","arcs":[5155],"id":39319,"properties":{"V":230}},{"type":"LineString","arcs":[5156],"id":39324,"properties":{"V":230}},{"type":"LineString","arcs":[5157],"id":39342,"properties":{"V":230}},{"type":"LineString","arcs":[5158],"id":39350,"properties":{"V":230}},{"type":"LineString","arcs":[5159],"id":39351,"properties":{"V":230}},{"type":"LineString","arcs":[5160],"id":39352,"properties":{"V":230}},{"type":"LineString","arcs":[5161],"id":39353,"properties":{"V":230}},{"type":"LineString","arcs":[5162],"id":39354,"properties":{"V":230}},{"type":"LineString","arcs":[5163],"id":39355,"properties":{"V":230}},{"type":"LineString","arcs":[5164],"id":39358,"properties":{"V":230}},{"type":"LineString","arcs":[5165,5166],"id":39375,"properties":{"V":230}},{"type":"LineString","arcs":[5167],"id":39376,"properties":{"V":230}},{"type":"LineString","arcs":[5168],"id":39383,"properties":{"V":230}},{"type":"LineString","arcs":[5169],"id":39432,"properties":{"V":230}},{"type":"LineString","arcs":[5170],"id":39434,"properties":{"V":230}},{"type":"LineString","arcs":[5171],"id":39435,"properties":{"V":500}},{"type":"LineString","arcs":[5172],"id":39449,"properties":{"V":230}},{"type":"LineString","arcs":[5173],"id":39450,"properties":{"V":500}},{"type":"LineString","arcs":[5174],"id":39452,"properties":{"V":230}},{"type":"LineString","arcs":[5175],"id":39459,"properties":{"V":500}},{"type":"LineString","arcs":[5176],"id":39462,"properties":{"V":230}},{"type":"LineString","arcs":[5177],"id":39507,"properties":{"V":230}},{"type":"LineString","arcs":[5178],"id":39541,"properties":{"V":230}},{"type":"LineString","arcs":[5179],"id":39543,"properties":{"V":230}},{"type":"LineString","arcs":[5180],"id":39544,"properties":{"V":230}},{"type":"LineString","arcs":[5181],"id":39548,"properties":{"V":345}},{"type":"LineString","arcs":[5182],"id":39551,"properties":{"V":345}},{"type":"LineString","arcs":[5183],"id":39553,"properties":{"V":230}},{"type":"LineString","arcs":[5184],"id":39557,"properties":{"V":230}},{"type":"LineString","arcs":[5185],"id":39561,"properties":{"V":345}},{"type":"LineString","arcs":[5186],"id":39567,"properties":{"V":345}},{"type":"LineString","arcs":[5187],"id":39569,"properties":{"V":345}},{"type":"LineString","arcs":[5188],"id":39570,"properties":{"V":345}},{"type":"LineString","arcs":[5189],"id":39571,"properties":{"V":230}},{"type":"LineString","arcs":[5190],"id":39584,"properties":{"V":230}},{"type":"LineString","arcs":[5191],"id":39585,"properties":{"V":230}},{"type":"LineString","arcs":[5192],"id":39589,"properties":{"V":230}},{"type":"LineString","arcs":[5193],"id":39600,"properties":{"V":345}},{"type":"LineString","arcs":[5194],"id":39602,"properties":{"V":345}},{"type":"LineString","arcs":[5195],"id":39603,"properties":{"V":345}},{"type":"LineString","arcs":[5196],"id":39605,"properties":{"V":345}},{"type":"LineString","arcs":[5197],"id":39607,"properties":{"V":345}},{"type":"LineString","arcs":[5198],"id":39614,"properties":{"V":230}},{"type":"LineString","arcs":[5199],"id":39647,"properties":{"V":230}},{"type":"LineString","arcs":[5200],"id":39648,"properties":{"V":230}},{"type":"LineString","arcs":[5201],"id":39649,"properties":{"V":345}},{"type":"LineString","arcs":[5202],"id":39650,"properties":{"V":345}},{"type":"LineString","arcs":[5203],"id":39655,"properties":{"V":230}},{"type":"LineString","arcs":[5204],"id":39656,"properties":{"V":230}},{"type":"LineString","arcs":[5205],"id":39657,"properties":{"V":230}},{"type":"LineString","arcs":[5206],"id":39658,"properties":{"V":230}},{"type":"LineString","arcs":[5207],"id":39659,"properties":{"V":230}},{"type":"LineString","arcs":[5208],"id":39660,"properties":{"V":230}},{"type":"LineString","arcs":[5209],"id":39661,"properties":{"V":230}},{"type":"LineString","arcs":[5210],"id":39664,"properties":{"V":345}},{"type":"LineString","arcs":[5211],"id":39670,"properties":{"V":345}},{"type":"LineString","arcs":[5212],"id":39671,"properties":{"V":345}},{"type":"LineString","arcs":[5213],"id":39677,"properties":{"V":345}},{"type":"LineString","arcs":[5214],"id":39678,"properties":{"V":345}},{"type":"LineString","arcs":[5215],"id":39680,"properties":{"V":345}},{"type":"LineString","arcs":[5216],"id":39681,"properties":{"V":230}},{"type":"LineString","arcs":[5217],"id":39682,"properties":{"V":230}},{"type":"LineString","arcs":[5218],"id":39683,"properties":{"V":230}},{"type":"LineString","arcs":[5219],"id":39684,"properties":{"V":230}},{"type":"LineString","arcs":[5220],"id":39713,"properties":{"V":345}},{"type":"LineString","arcs":[5221],"id":39719,"properties":{"V":345}},{"type":"LineString","arcs":[5222],"id":39721,"properties":{"V":345}},{"type":"LineString","arcs":[5223],"id":39726,"properties":{"V":500}},{"type":"LineString","arcs":[5224],"id":39763,"properties":{"V":230}},{"type":"LineString","arcs":[5225],"id":39768,"properties":{"V":230}},{"type":"LineString","arcs":[5226],"id":39773,"properties":{"V":230}},{"type":"LineString","arcs":[5227],"id":39774,"properties":{"V":230}},{"type":"LineString","arcs":[5228],"id":39865,"properties":{"V":230}},{"type":"LineString","arcs":[5229],"id":39878,"properties":{"V":345}},{"type":"LineString","arcs":[5230],"id":40005,"properties":{"V":345}},{"type":"LineString","arcs":[5231],"id":40099,"properties":{"V":345}},{"type":"LineString","arcs":[5232],"id":40167,"properties":{"V":345}},{"type":"LineString","arcs":[5233],"id":40170,"properties":{"V":345}},{"type":"LineString","arcs":[5234],"id":40171,"properties":{"V":345}},{"type":"LineString","arcs":[5235],"id":40193,"properties":{"V":345}},{"type":"LineString","arcs":[5236],"id":40198,"properties":{"V":345}},{"type":"LineString","arcs":[5237],"id":40199,"properties":{"V":345}},{"type":"LineString","arcs":[5238],"id":40215,"properties":{"V":230}},{"type":"LineString","arcs":[5239,5240],"id":40220,"properties":{"V":230}},{"type":"LineString","arcs":[5241],"id":40283,"properties":{"V":230}},{"type":"LineString","arcs":[5242],"id":40293,"properties":{"V":230}},{"type":"LineString","arcs":[5243],"id":40311,"properties":{"V":230}},{"type":"LineString","arcs":[5244],"id":40314,"properties":{"V":230}},{"type":"LineString","arcs":[5245],"id":40331,"properties":{"V":500}},{"type":"LineString","arcs":[5246],"id":40332,"properties":{"V":500}},{"type":"LineString","arcs":[5247],"id":40333,"properties":{"V":230}},{"type":"LineString","arcs":[5248],"id":40334,"properties":{"V":500}},{"type":"LineString","arcs":[5249],"id":40342,"properties":{"V":230}},{"type":"LineString","arcs":[5250],"id":40343,"properties":{"V":500}},{"type":"LineString","arcs":[5251],"id":40398,"properties":{"V":345}},{"type":"LineString","arcs":[5252],"id":40400,"properties":{"V":345}},{"type":"LineString","arcs":[5253],"id":40410,"properties":{"V":345}},{"type":"LineString","arcs":[5254],"id":40414,"properties":{"V":345}},{"type":"LineString","arcs":[5255],"id":40415,"properties":{"V":345}},{"type":"LineString","arcs":[5256],"id":40417,"properties":{"V":345}},{"type":"LineString","arcs":[5257],"id":40418,"properties":{"V":345}},{"type":"LineString","arcs":[5258],"id":40427,"properties":{"V":345}},{"type":"LineString","arcs":[5259],"id":40452,"properties":{"V":230}},{"type":"LineString","arcs":[5260],"id":40461,"properties":{"V":230}},{"type":"LineString","arcs":[5261],"id":40471,"properties":{"V":345}},{"type":"LineString","arcs":[5262],"id":40484,"properties":{"V":230}},{"type":"LineString","arcs":[5263],"id":40485,"properties":{"V":230}},{"type":"LineString","arcs":[5264],"id":40489,"properties":{"V":230}},{"type":"LineString","arcs":[5265],"id":40510,"properties":{"V":230}},{"type":"LineString","arcs":[5266],"id":40519,"properties":{"V":345}},{"type":"LineString","arcs":[5267],"id":40528,"properties":{"V":345}},{"type":"LineString","arcs":[5268],"id":40554,"properties":{"V":345}},{"type":"LineString","arcs":[5269],"id":40558,"properties":{"V":345}},{"type":"LineString","arcs":[5270],"id":40559,"properties":{"V":345}},{"type":"LineString","arcs":[5271],"id":40574,"properties":{"V":230}},{"type":"LineString","arcs":[5272],"id":40576,"properties":{"V":230}},{"type":"LineString","arcs":[5273],"id":40605,"properties":{"V":230}},{"type":"LineString","arcs":[5274],"id":40606,"properties":{"V":230}},{"type":"LineString","arcs":[5275],"id":40607,"properties":{"V":230}},{"type":"LineString","arcs":[5276],"id":40623,"properties":{"V":345}},{"type":"LineString","arcs":[5277],"id":40650,"properties":{"V":345}},{"type":"LineString","arcs":[5278],"id":40651,"properties":{"V":345}},{"type":"LineString","arcs":[5279],"id":40660,"properties":{"V":345}},{"type":"LineString","arcs":[5280],"id":40661,"properties":{"V":345}},{"type":"LineString","arcs":[5281],"id":40662,"properties":{"V":345}},{"type":"LineString","arcs":[5282],"id":40663,"properties":{"V":345}},{"type":"LineString","arcs":[5283],"id":40664,"properties":{"V":345}},{"type":"LineString","arcs":[5284],"id":40665,"properties":{"V":345}},{"type":"LineString","arcs":[5285],"id":40666,"properties":{"V":345}},{"type":"LineString","arcs":[5286],"id":40669,"properties":{"V":345}},{"type":"LineString","arcs":[5287],"id":40670,"properties":{"V":345}},{"type":"LineString","arcs":[5288],"id":40671,"properties":{"V":345}},{"type":"LineString","arcs":[5289],"id":40673,"properties":{"V":345}},{"type":"LineString","arcs":[5290],"id":40674,"properties":{"V":345}},{"type":"LineString","arcs":[5291],"id":40677,"properties":{"V":345}},{"type":"LineString","arcs":[5292],"id":40678,"properties":{"V":345}},{"type":"LineString","arcs":[5293],"id":40697,"properties":{"V":345}},{"type":"LineString","arcs":[5294],"id":40706,"properties":{"V":345}},{"type":"LineString","arcs":[5295],"id":40708,"properties":{"V":345}},{"type":"LineString","arcs":[5296],"id":40710,"properties":{"V":345}},{"type":"LineString","arcs":[5297],"id":40711,"properties":{"V":230}},{"type":"LineString","arcs":[5298],"id":40712,"properties":{"V":765}},{"type":"LineString","arcs":[5299],"id":40713,"properties":{"V":345}},{"type":"LineString","arcs":[5300],"id":40714,"properties":{"V":345}},{"type":"LineString","arcs":[5301],"id":40717,"properties":{"V":345}},{"type":"LineString","arcs":[5302,5303,5304,5305],"id":40722,"properties":{"V":230}},{"type":"LineString","arcs":[5306],"id":40723,"properties":{"V":230}},{"type":"LineString","arcs":[5307],"id":40736,"properties":{"V":345}},{"type":"LineString","arcs":[5308],"id":40742,"properties":{"V":500}},{"type":"LineString","arcs":[5309],"id":40747,"properties":{"V":230}},{"type":"LineString","arcs":[5310],"id":40774,"properties":{"V":230}},{"type":"LineString","arcs":[5311],"id":40775,"properties":{"V":230}},{"type":"LineString","arcs":[5312],"id":40780,"properties":{"V":345}},{"type":"LineString","arcs":[5313],"id":40781,"properties":{"V":345}},{"type":"LineString","arcs":[5314],"id":40782,"properties":{"V":345}},{"type":"LineString","arcs":[5315],"id":40783,"properties":{"V":345}},{"type":"LineString","arcs":[5316],"id":40784,"properties":{"V":345}},{"type":"LineString","arcs":[5317],"id":40785,"properties":{"V":345}},{"type":"LineString","arcs":[5318],"id":40803,"properties":{"V":345}},{"type":"LineString","arcs":[5319],"id":40848,"properties":{"V":345}},{"type":"LineString","arcs":[5320],"id":40850,"properties":{"V":345}},{"type":"LineString","arcs":[5321],"id":40851,"properties":{"V":345}},{"type":"LineString","arcs":[5322],"id":40852,"properties":{"V":345}},{"type":"LineString","arcs":[5323],"id":40858,"properties":{"V":345}},{"type":"LineString","arcs":[5324],"id":40859,"properties":{"V":345}},{"type":"LineString","arcs":[5325],"id":40867,"properties":{"V":230}},{"type":"LineString","arcs":[5326],"id":40868,"properties":{"V":230}},{"type":"LineString","arcs":[5327],"id":40869,"properties":{"V":230}},{"type":"LineString","arcs":[5328],"id":40871,"properties":{"V":230}},{"type":"LineString","arcs":[5329],"id":40916,"properties":{"V":345}},{"type":"LineString","arcs":[5330],"id":40917,"properties":{"V":345}},{"type":"LineString","arcs":[5331],"id":40939,"properties":{"V":345}},{"type":"LineString","arcs":[5332],"id":40952,"properties":{"V":345}},{"type":"LineString","arcs":[5333],"id":40987,"properties":{"V":345}},{"type":"LineString","arcs":[5334],"id":40999,"properties":{"V":345}},{"type":"LineString","arcs":[5335],"id":41007,"properties":{"V":345}},{"type":"LineString","arcs":[5336],"id":41009,"properties":{"V":345}},{"type":"LineString","arcs":[5337],"id":41032,"properties":{"V":345}},{"type":"LineString","arcs":[5338],"id":41052,"properties":{"V":345}},{"type":"LineString","arcs":[5339],"id":41072,"properties":{"V":345}},{"type":"LineString","arcs":[5340],"id":41078,"properties":{"V":345}},{"type":"LineString","arcs":[5341],"id":41079,"properties":{"V":345}},{"type":"LineString","arcs":[5342],"id":41090,"properties":{"V":345}},{"type":"LineString","arcs":[5343],"id":41091,"properties":{"V":345}},{"type":"LineString","arcs":[5344,5345],"id":41092,"properties":{"V":345}},{"type":"LineString","arcs":[5346,5347],"id":41093,"properties":{"V":345}},{"type":"LineString","arcs":[5348],"id":41119,"properties":{"V":345}},{"type":"LineString","arcs":[5349],"id":41132,"properties":{"V":230}},{"type":"LineString","arcs":[5350],"id":41134,"properties":{"V":230}},{"type":"LineString","arcs":[5351],"id":41135,"properties":{"V":230}},{"type":"LineString","arcs":[5352],"id":41137,"properties":{"V":230}},{"type":"LineString","arcs":[5353],"id":41152,"properties":{"V":230}},{"type":"LineString","arcs":[5354],"id":41153,"properties":{"V":230}},{"type":"LineString","arcs":[5355],"id":41172,"properties":{"V":345}},{"type":"LineString","arcs":[5356],"id":41173,"properties":{"V":345}},{"type":"LineString","arcs":[5357],"id":41174,"properties":{"V":345}},{"type":"LineString","arcs":[5358],"id":41178,"properties":{"V":345}},{"type":"LineString","arcs":[5359],"id":41179,"properties":{"V":345}},{"type":"LineString","arcs":[5360],"id":41196,"properties":{"V":345}},{"type":"LineString","arcs":[5361],"id":41287,"properties":{"V":345}},{"type":"LineString","arcs":[5362],"id":41400,"properties":{"V":230}},{"type":"LineString","arcs":[5363],"id":41413,"properties":{"V":230}},{"type":"LineString","arcs":[5364],"id":41461,"properties":{"V":230}},{"type":"LineString","arcs":[5365],"id":41465,"properties":{"V":230}},{"type":"LineString","arcs":[5366],"id":41468,"properties":{"V":230}},{"type":"LineString","arcs":[5367],"id":41471,"properties":{"V":230}},{"type":"LineString","arcs":[5368],"id":41474,"properties":{"V":345}},{"type":"LineString","arcs":[5369],"id":41512,"properties":{"V":230}},{"type":"LineString","arcs":[5370],"id":41518,"properties":{"V":230}},{"type":"LineString","arcs":[5371],"id":41576,"properties":{"V":230}},{"type":"LineString","arcs":[5372],"id":41584,"properties":{"V":230}},{"type":"LineString","arcs":[5373],"id":41585,"properties":{"V":230}},{"type":"LineString","arcs":[5374],"id":41586,"properties":{"V":230}},{"type":"LineString","arcs":[5375],"id":41590,"properties":{"V":230}},{"type":"LineString","arcs":[5376],"id":41591,"properties":{"V":230}},{"type":"LineString","arcs":[5377],"id":41592,"properties":{"V":230}},{"type":"LineString","arcs":[5378],"id":41594,"properties":{"V":230}},{"type":"LineString","arcs":[5379],"id":41754,"properties":{"V":230}},{"type":"LineString","arcs":[5380],"id":41786,"properties":{"V":230}},{"type":"LineString","arcs":[5381],"id":41835,"properties":{"V":230}},{"type":"LineString","arcs":[5382],"id":41848,"properties":{"V":345}},{"type":"LineString","arcs":[5383],"id":41869,"properties":{"V":230}},{"type":"LineString","arcs":[5384],"id":41899,"properties":{"V":230}},{"type":"LineString","arcs":[5385],"id":41905,"properties":{"V":230}},{"type":"LineString","arcs":[5386],"id":41951,"properties":{"V":230}},{"type":"LineString","arcs":[5387],"id":42014,"properties":{"V":345}},{"type":"LineString","arcs":[5388],"id":42015,"properties":{"V":345}},{"type":"LineString","arcs":[5389],"id":42016,"properties":{"V":345}},{"type":"LineString","arcs":[5390],"id":42019,"properties":{"V":345}},{"type":"LineString","arcs":[5391],"id":42190,"properties":{"V":345}},{"type":"LineString","arcs":[5392],"id":42309,"properties":{"V":230}},{"type":"LineString","arcs":[5393],"id":42314,"properties":{"V":230}},{"type":"LineString","arcs":[5394],"id":42317,"properties":{"V":230}},{"type":"LineString","arcs":[5395],"id":42324,"properties":{"V":500}},{"type":"LineString","arcs":[5396],"id":42459,"properties":{"V":345}},{"type":"LineString","arcs":[5397],"id":42505,"properties":{"V":345}},{"type":"LineString","arcs":[5398],"id":42506,"properties":{"V":230}},{"type":"LineString","arcs":[5399],"id":42507,"properties":{"V":230}},{"type":"LineString","arcs":[5400],"id":42560,"properties":{"V":230}},{"type":"LineString","arcs":[5401],"id":42583,"properties":{"V":230}},{"type":"LineString","arcs":[5402],"id":42609,"properties":{"V":230}},{"type":"LineString","arcs":[5403],"id":42668,"properties":{"V":230}},{"type":"LineString","arcs":[5404],"id":42669,"properties":{"V":230}},{"type":"LineString","arcs":[5405],"id":42670,"properties":{"V":230}},{"type":"LineString","arcs":[5406],"id":42672,"properties":{"V":230}},{"type":"LineString","arcs":[5407],"id":42673,"properties":{"V":230}},{"type":"LineString","arcs":[5408],"id":42674,"properties":{"V":230}},{"type":"LineString","arcs":[5409],"id":42675,"properties":{"V":230}},{"type":"LineString","arcs":[5410],"id":42676,"properties":{"V":230}},{"type":"LineString","arcs":[5411],"id":42677,"properties":{"V":345}},{"type":"LineString","arcs":[5412],"id":42678,"properties":{"V":345}},{"type":"LineString","arcs":[5413],"id":42701,"properties":{"V":230}},{"type":"LineString","arcs":[5414],"id":42727,"properties":{"V":345}},{"type":"LineString","arcs":[5415],"id":42745,"properties":{"V":345}},{"type":"LineString","arcs":[5416],"id":42746,"properties":{"V":230}},{"type":"LineString","arcs":[5417],"id":42761,"properties":{"V":230}},{"type":"LineString","arcs":[5418],"id":42764,"properties":{"V":230}},{"type":"LineString","arcs":[5419],"id":42818,"properties":{"V":230}},{"type":"LineString","arcs":[5420],"id":42851,"properties":{"V":345}},{"type":"LineString","arcs":[5421],"id":42854,"properties":{"V":230}},{"type":"LineString","arcs":[5422],"id":42856,"properties":{"V":230}},{"type":"LineString","arcs":[5423],"id":42857,"properties":{"V":230}},{"type":"LineString","arcs":[5424],"id":42858,"properties":{"V":345}},{"type":"LineString","arcs":[5425],"id":42872,"properties":{"V":230}},{"type":"LineString","arcs":[5426],"id":42882,"properties":{"V":230}},{"type":"LineString","arcs":[5427,5428],"id":42900,"properties":{"V":230}},{"type":"LineString","arcs":[5429],"id":42962,"properties":{"V":345}},{"type":"LineString","arcs":[5430],"id":42967,"properties":{"V":345}},{"type":"LineString","arcs":[5431],"id":42968,"properties":{"V":345}},{"type":"LineString","arcs":[5432],"id":42969,"properties":{"V":345}},{"type":"LineString","arcs":[5433],"id":42979,"properties":{"V":345}},{"type":"LineString","arcs":[5434],"id":43033,"properties":{"V":230}},{"type":"LineString","arcs":[5435],"id":43041,"properties":{"V":230}},{"type":"LineString","arcs":[5436],"id":43049,"properties":{"V":230}},{"type":"LineString","arcs":[5437],"id":43062,"properties":{"V":230}},{"type":"LineString","arcs":[5438],"id":43063,"properties":{"V":230}},{"type":"LineString","arcs":[5439],"id":43065,"properties":{"V":230}},{"type":"LineString","arcs":[5440],"id":43066,"properties":{"V":230}},{"type":"LineString","arcs":[5441],"id":43074,"properties":{"V":230}},{"type":"LineString","arcs":[5442],"id":43075,"properties":{"V":230}},{"type":"LineString","arcs":[5443],"id":43076,"properties":{"V":230}},{"type":"LineString","arcs":[5444],"id":43077,"properties":{"V":230}},{"type":"LineString","arcs":[5445],"id":43079,"properties":{"V":230}},{"type":"LineString","arcs":[5446],"id":43080,"properties":{"V":230}},{"type":"LineString","arcs":[5447],"id":43083,"properties":{"V":230}},{"type":"LineString","arcs":[5448],"id":43084,"properties":{"V":230}},{"type":"LineString","arcs":[5449],"id":43085,"properties":{"V":230}},{"type":"LineString","arcs":[5450],"id":43086,"properties":{"V":230}},{"type":"LineString","arcs":[5451],"id":43087,"properties":{"V":230}},{"type":"LineString","arcs":[5452],"id":43088,"properties":{"V":230}},{"type":"LineString","arcs":[5453],"id":43092,"properties":{"V":345}},{"type":"LineString","arcs":[5454,5455,5456],"id":43093,"properties":{"V":345}},{"type":"LineString","arcs":[5457],"id":43102,"properties":{"V":230}},{"type":"LineString","arcs":[5458],"id":43122,"properties":{"V":230}},{"type":"LineString","arcs":[5459],"id":43152,"properties":{"V":230}},{"type":"LineString","arcs":[5460],"id":43153,"properties":{"V":230}},{"type":"LineString","arcs":[5461],"id":43170,"properties":{"V":230}},{"type":"LineString","arcs":[5462],"id":43177,"properties":{"V":230}},{"type":"LineString","arcs":[5463],"id":43188,"properties":{"V":230}},{"type":"LineString","arcs":[5464],"id":43195,"properties":{"V":345}},{"type":"LineString","arcs":[5465],"id":43196,"properties":{"V":345}},{"type":"LineString","arcs":[5466],"id":43197,"properties":{"V":765}},{"type":"LineString","arcs":[5467],"id":43204,"properties":{"V":345}},{"type":"LineString","arcs":[5468],"id":43206,"properties":{"V":345}},{"type":"LineString","arcs":[5469],"id":43207,"properties":{"V":230}},{"type":"LineString","arcs":[5470],"id":43218,"properties":{"V":230}},{"type":"LineString","arcs":[5471],"id":43222,"properties":{"V":230}},{"type":"LineString","arcs":[5472],"id":43228,"properties":{"V":345}},{"type":"LineString","arcs":[5473],"id":43241,"properties":{"V":230}},{"type":"LineString","arcs":[5474],"id":43244,"properties":{"V":345}},{"type":"LineString","arcs":[5475],"id":43246,"properties":{"V":230}},{"type":"LineString","arcs":[5476],"id":43291,"properties":{"V":345}},{"type":"LineString","arcs":[5477],"id":43337,"properties":{"V":230}},{"type":"LineString","arcs":[5478],"id":43346,"properties":{"V":230}},{"type":"LineString","arcs":[5479],"id":43353,"properties":{"V":230}},{"type":"LineString","arcs":[5480],"id":43382,"properties":{"V":345}},{"type":"LineString","arcs":[5481],"id":43385,"properties":{"V":230}},{"type":"LineString","arcs":[5482],"id":43431,"properties":{"V":230}},{"type":"LineString","arcs":[5483],"id":43499,"properties":{"V":345}},{"type":"LineString","arcs":[5484],"id":43500,"properties":{"V":345}},{"type":"LineString","arcs":[5485],"id":43501,"properties":{"V":230}},{"type":"LineString","arcs":[5486],"id":43571,"properties":{"V":230}},{"type":"LineString","arcs":[5487],"id":43573,"properties":{"V":230}},{"type":"LineString","arcs":[5488],"id":43574,"properties":{"V":230}},{"type":"LineString","arcs":[5489],"id":43575,"properties":{"V":230}},{"type":"LineString","arcs":[5490],"id":43576,"properties":{"V":230}},{"type":"LineString","arcs":[5491],"id":43631,"properties":{"V":230}},{"type":"LineString","arcs":[5492],"id":43633,"properties":{"V":230}},{"type":"LineString","arcs":[5493],"id":43634,"properties":{"V":230}},{"type":"LineString","arcs":[5494],"id":43662,"properties":{"V":230}},{"type":"LineString","arcs":[5495],"id":43663,"properties":{"V":230}},{"type":"LineString","arcs":[5496],"id":43664,"properties":{"V":230}},{"type":"LineString","arcs":[5497],"id":43665,"properties":{"V":230}},{"type":"LineString","arcs":[5498],"id":43666,"properties":{"V":230}},{"type":"LineString","arcs":[5499],"id":43667,"properties":{"V":230}},{"type":"LineString","arcs":[5500],"id":43668,"properties":{"V":230}},{"type":"LineString","arcs":[5501],"id":43669,"properties":{"V":230}},{"type":"LineString","arcs":[5502],"id":43670,"properties":{"V":230}},{"type":"LineString","arcs":[5503],"id":43704,"properties":{"V":230}},{"type":"LineString","arcs":[5504],"id":43718,"properties":{"V":345}},{"type":"LineString","arcs":[5505],"id":43968,"properties":{"V":230}},{"type":"LineString","arcs":[5506],"id":43980,"properties":{"V":230}},{"type":"LineString","arcs":[5507],"id":43981,"properties":{"V":230}},{"type":"LineString","arcs":[5508],"id":43983,"properties":{"V":230}},{"type":"LineString","arcs":[5509],"id":43984,"properties":{"V":230}},{"type":"LineString","arcs":[5510],"id":43998,"properties":{"V":345}},{"type":"LineString","arcs":[5511],"id":44001,"properties":{"V":230}},{"type":"LineString","arcs":[5512],"id":44025,"properties":{"V":230}},{"type":"LineString","arcs":[5513],"id":44026,"properties":{"V":230}},{"type":"LineString","arcs":[5514],"id":44027,"properties":{"V":230}},{"type":"LineString","arcs":[5515],"id":44078,"properties":{"V":230}},{"type":"LineString","arcs":[5516],"id":44083,"properties":{"V":345}},{"type":"LineString","arcs":[5517,5518],"id":44093,"properties":{"V":345}},{"type":"LineString","arcs":[5519],"id":44095,"properties":{"V":230}},{"type":"LineString","arcs":[5520],"id":44103,"properties":{"V":230}},{"type":"LineString","arcs":[5521],"id":44109,"properties":{"V":345}},{"type":"LineString","arcs":[5522],"id":44111,"properties":{"V":345}},{"type":"LineString","arcs":[5523],"id":44112,"properties":{"V":230}},{"type":"LineString","arcs":[5524],"id":44115,"properties":{"V":230}},{"type":"LineString","arcs":[5525,5526],"id":44117,"properties":{"V":230}},{"type":"LineString","arcs":[5527],"id":44118,"properties":{"V":230}},{"type":"LineString","arcs":[5528],"id":44121,"properties":{"V":230}},{"type":"LineString","arcs":[5529],"id":44128,"properties":{"V":230}},{"type":"LineString","arcs":[5530],"id":44138,"properties":{"V":230}},{"type":"LineString","arcs":[5531],"id":44139,"properties":{"V":230}},{"type":"LineString","arcs":[5532],"id":44142,"properties":{"V":230}},{"type":"LineString","arcs":[5533],"id":44143,"properties":{"V":500}},{"type":"LineString","arcs":[5534],"id":44145,"properties":{"V":230}},{"type":"LineString","arcs":[5535],"id":44147,"properties":{"V":345}},{"type":"LineString","arcs":[5536],"id":44150,"properties":{"V":230}},{"type":"LineString","arcs":[5537],"id":44161,"properties":{"V":230}},{"type":"LineString","arcs":[5538],"id":44178,"properties":{"V":230}},{"type":"LineString","arcs":[5539],"id":44179,"properties":{"V":345}},{"type":"LineString","arcs":[5540],"id":44181,"properties":{"V":230}},{"type":"LineString","arcs":[5541],"id":44194,"properties":{"V":230}},{"type":"LineString","arcs":[5542],"id":44201,"properties":{"V":765}},{"type":"LineString","arcs":[5543],"id":44211,"properties":{"V":230}},{"type":"LineString","arcs":[5544],"id":44215,"properties":{"V":230}},{"type":"LineString","arcs":[5545],"id":44219,"properties":{"V":230}},{"type":"LineString","arcs":[5546],"id":44234,"properties":{"V":230}},{"type":"LineString","arcs":[5547],"id":44255,"properties":{"V":230}},{"type":"LineString","arcs":[5548,5549],"id":44257,"properties":{"V":230}},{"type":"LineString","arcs":[5550],"id":44261,"properties":{"V":230}},{"type":"LineString","arcs":[5551],"id":44274,"properties":{"V":345}},{"type":"LineString","arcs":[5552],"id":44278,"properties":{"V":230}},{"type":"LineString","arcs":[5553],"id":44280,"properties":{"V":230}},{"type":"LineString","arcs":[5554],"id":44287,"properties":{"V":345}},{"type":"LineString","arcs":[5555],"id":44296,"properties":{"V":230}},{"type":"LineString","arcs":[5556],"id":44299,"properties":{"V":230}},{"type":"LineString","arcs":[5557],"id":44304,"properties":{"V":230}},{"type":"LineString","arcs":[5558],"id":44324,"properties":{"V":230}},{"type":"LineString","arcs":[5559],"id":44325,"properties":{"V":230}},{"type":"LineString","arcs":[5560],"id":44326,"properties":{"V":500}},{"type":"LineString","arcs":[5561],"id":44329,"properties":{"V":345}},{"type":"LineString","arcs":[5562],"id":44334,"properties":{"V":230}},{"type":"LineString","arcs":[5563],"id":44336,"properties":{"V":500}},{"type":"LineString","arcs":[5564],"id":44365,"properties":{"V":230}},{"type":"LineString","arcs":[5565],"id":44381,"properties":{"V":230}},{"type":"LineString","arcs":[5566],"id":44396,"properties":{"V":230}},{"type":"LineString","arcs":[5567],"id":44397,"properties":{"V":230}},{"type":"LineString","arcs":[5568],"id":44403,"properties":{"V":230}},{"type":"LineString","arcs":[5569],"id":44413,"properties":{"V":230}},{"type":"LineString","arcs":[5570],"id":44421,"properties":{"V":345}},{"type":"LineString","arcs":[5571],"id":44426,"properties":{"V":230}},{"type":"LineString","arcs":[5572],"id":44436,"properties":{"V":230}},{"type":"LineString","arcs":[5573],"id":44438,"properties":{"V":230}},{"type":"LineString","arcs":[5574],"id":44443,"properties":{"V":230}},{"type":"LineString","arcs":[5575],"id":44448,"properties":{"V":230}},{"type":"LineString","arcs":[5576],"id":44451,"properties":{"V":230}},{"type":"LineString","arcs":[5577],"id":44454,"properties":{"V":230}},{"type":"LineString","arcs":[5578],"id":44474,"properties":{"V":230}},{"type":"LineString","arcs":[5579],"id":44480,"properties":{"V":345}},{"type":"LineString","arcs":[5580],"id":44484,"properties":{"V":230}},{"type":"LineString","arcs":[5581],"id":44487,"properties":{"V":230}},{"type":"LineString","arcs":[5582],"id":44488,"properties":{"V":230}},{"type":"LineString","arcs":[5583],"id":44494,"properties":{"V":230}},{"type":"LineString","arcs":[5584],"id":44504,"properties":{"V":230}},{"type":"LineString","arcs":[5585],"id":44510,"properties":{"V":230}},{"type":"LineString","arcs":[5586],"id":44521,"properties":{"V":230}},{"type":"LineString","arcs":[5587],"id":44537,"properties":{"V":230}},{"type":"LineString","arcs":[5588],"id":44542,"properties":{"V":230}},{"type":"LineString","arcs":[5589],"id":44545,"properties":{"V":345}},{"type":"LineString","arcs":[5590],"id":44546,"properties":{"V":345}},{"type":"LineString","arcs":[5591],"id":44554,"properties":{"V":345}},{"type":"LineString","arcs":[5592],"id":44577,"properties":{"V":230}},{"type":"LineString","arcs":[5593],"id":44582,"properties":{"V":230}},{"type":"LineString","arcs":[5594],"id":44586,"properties":{"V":230}},{"type":"LineString","arcs":[5595],"id":44589,"properties":{"V":500}},{"type":"LineString","arcs":[5596],"id":44595,"properties":{"V":230}},{"type":"LineString","arcs":[5597],"id":44598,"properties":{"V":230}},{"type":"LineString","arcs":[5598],"id":44602,"properties":{"V":230}},{"type":"LineString","arcs":[5599],"id":44603,"properties":{"V":230}},{"type":"LineString","arcs":[5600],"id":44619,"properties":{"V":345}},{"type":"LineString","arcs":[5601],"id":44625,"properties":{"V":230}},{"type":"LineString","arcs":[5602],"id":44630,"properties":{"V":230}},{"type":"LineString","arcs":[5603],"id":44631,"properties":{"V":230}},{"type":"LineString","arcs":[5604],"id":44632,"properties":{"V":230}},{"type":"LineString","arcs":[5605],"id":44638,"properties":{"V":230}},{"type":"LineString","arcs":[5606],"id":44641,"properties":{"V":230}},{"type":"LineString","arcs":[5607],"id":44648,"properties":{"V":230}},{"type":"LineString","arcs":[5608],"id":44655,"properties":{"V":500}},{"type":"LineString","arcs":[5609],"id":44662,"properties":{"V":230}},{"type":"LineString","arcs":[5610],"id":44671,"properties":{"V":230}},{"type":"LineString","arcs":[5611],"id":44677,"properties":{"V":230}},{"type":"LineString","arcs":[5612],"id":44683,"properties":{"V":230}},{"type":"LineString","arcs":[5613],"id":44689,"properties":{"V":230}},{"type":"LineString","arcs":[5614],"id":44690,"properties":{"V":345}},{"type":"LineString","arcs":[5615],"id":44693,"properties":{"V":230}},{"type":"LineString","arcs":[5616],"id":44708,"properties":{"V":345}},{"type":"LineString","arcs":[5617],"id":44710,"properties":{"V":230}},{"type":"LineString","arcs":[5618],"id":44714,"properties":{"V":230}},{"type":"LineString","arcs":[5619],"id":44717,"properties":{"V":230}},{"type":"LineString","arcs":[5620],"id":44723,"properties":{"V":230}},{"type":"LineString","arcs":[5621],"id":44725,"properties":{"V":500}},{"type":"LineString","arcs":[5622],"id":44727,"properties":{"V":230}},{"type":"LineString","arcs":[5623],"id":44732,"properties":{"V":230}},{"type":"LineString","arcs":[5624],"id":44737,"properties":{"V":500}},{"type":"LineString","arcs":[5625],"id":44744,"properties":{"V":230}},{"type":"LineString","arcs":[5626],"id":44767,"properties":{"V":500}},{"type":"LineString","arcs":[5627,5628],"id":44781,"properties":{"V":230}},{"type":"LineString","arcs":[5629],"id":44782,"properties":{"V":500}},{"type":"LineString","arcs":[5630],"id":44792,"properties":{"V":230}},{"type":"LineString","arcs":[5631],"id":44795,"properties":{"V":230}},{"type":"LineString","arcs":[5632],"id":44798,"properties":{"V":345}},{"type":"LineString","arcs":[5633],"id":44803,"properties":{"V":345}},{"type":"LineString","arcs":[5634],"id":44804,"properties":{"V":345}},{"type":"LineString","arcs":[5635],"id":44806,"properties":{"V":230}},{"type":"LineString","arcs":[5636],"id":44810,"properties":{"V":345}},{"type":"LineString","arcs":[5637],"id":44815,"properties":{"V":230}},{"type":"LineString","arcs":[5638],"id":44821,"properties":{"V":230}},{"type":"LineString","arcs":[5639],"id":44831,"properties":{"V":230}},{"type":"LineString","arcs":[5640],"id":44832,"properties":{"V":230}},{"type":"LineString","arcs":[5641],"id":44833,"properties":{"V":500}},{"type":"LineString","arcs":[5642],"id":44836,"properties":{"V":230}},{"type":"LineString","arcs":[5643],"id":44841,"properties":{"V":500}},{"type":"LineString","arcs":[5644],"id":44850,"properties":{"V":230}},{"type":"LineString","arcs":[5645],"id":44853,"properties":{"V":230}},{"type":"LineString","arcs":[5646],"id":44863,"properties":{"V":230}},{"type":"LineString","arcs":[5647],"id":44867,"properties":{"V":230}},{"type":"LineString","arcs":[5648],"id":44874,"properties":{"V":230}},{"type":"LineString","arcs":[5649],"id":44876,"properties":{"V":230}},{"type":"LineString","arcs":[5650],"id":44878,"properties":{"V":230}},{"type":"LineString","arcs":[5651],"id":44897,"properties":{"V":345}},{"type":"LineString","arcs":[5652],"id":44923,"properties":{"V":345}},{"type":"LineString","arcs":[5653,5654],"id":44924,"properties":{"V":345}},{"type":"LineString","arcs":[5655],"id":44928,"properties":{"V":230}},{"type":"LineString","arcs":[5656],"id":44933,"properties":{"V":230}},{"type":"LineString","arcs":[5657],"id":44946,"properties":{"V":230}},{"type":"LineString","arcs":[5658],"id":44948,"properties":{"V":230}},{"type":"LineString","arcs":[5659],"id":44956,"properties":{"V":230}},{"type":"LineString","arcs":[5660,5661],"id":44967,"properties":{"V":230}},{"type":"LineString","arcs":[5662],"id":44975,"properties":{"V":230}},{"type":"LineString","arcs":[5663],"id":44979,"properties":{"V":230}},{"type":"LineString","arcs":[5664],"id":44982,"properties":{"V":230}},{"type":"LineString","arcs":[5665],"id":45009,"properties":{"V":230}},{"type":"LineString","arcs":[5666],"id":45016,"properties":{"V":230}},{"type":"LineString","arcs":[5667],"id":45017,"properties":{"V":345}},{"type":"LineString","arcs":[5668],"id":45021,"properties":{"V":230}},{"type":"LineString","arcs":[5669],"id":45039,"properties":{"V":230}},{"type":"LineString","arcs":[5670],"id":45043,"properties":{"V":230}},{"type":"LineString","arcs":[5671],"id":45045,"properties":{"V":345}},{"type":"LineString","arcs":[5672],"id":45046,"properties":{"V":230}},{"type":"LineString","arcs":[5673],"id":45066,"properties":{"V":230}},{"type":"LineString","arcs":[5674],"id":45077,"properties":{"V":345}},{"type":"LineString","arcs":[5675],"id":45088,"properties":{"V":230}},{"type":"LineString","arcs":[5676,5677],"id":45096,"properties":{"V":345}},{"type":"LineString","arcs":[5678],"id":45111,"properties":{"V":230}},{"type":"LineString","arcs":[5679],"id":45112,"properties":{"V":230}},{"type":"LineString","arcs":[5680],"id":45116,"properties":{"V":230}},{"type":"LineString","arcs":[5681],"id":45119,"properties":{"V":500}},{"type":"LineString","arcs":[5682],"id":45123,"properties":{"V":345}},{"type":"LineString","arcs":[5683],"id":45133,"properties":{"V":230}},{"type":"LineString","arcs":[5684],"id":45146,"properties":{"V":230}},{"type":"LineString","arcs":[5685],"id":45168,"properties":{"V":230}},{"type":"LineString","arcs":[5686],"id":45175,"properties":{"V":230}},{"type":"LineString","arcs":[5687],"id":45192,"properties":{"V":230}},{"type":"LineString","arcs":[5688],"id":45270,"properties":{"V":230}},{"type":"LineString","arcs":[5689],"id":45274,"properties":{"V":345}},{"type":"LineString","arcs":[5690],"id":45299,"properties":{"V":230}},{"type":"LineString","arcs":[5691],"id":45303,"properties":{"V":230}},{"type":"LineString","arcs":[5692],"id":45304,"properties":{"V":230}},{"type":"LineString","arcs":[5693],"id":45308,"properties":{"V":230}},{"type":"LineString","arcs":[5694,5695],"id":45318,"properties":{"V":230}},{"type":"LineString","arcs":[5696],"id":45322,"properties":{"V":230}},{"type":"LineString","arcs":[5697],"id":45324,"properties":{"V":230}},{"type":"LineString","arcs":[5698],"id":45343,"properties":{"V":230}},{"type":"LineString","arcs":[5699],"id":45344,"properties":{"V":230}},{"type":"LineString","arcs":[5700],"id":45367,"properties":{"V":230}},{"type":"LineString","arcs":[5701],"id":45368,"properties":{"V":230}},{"type":"LineString","arcs":[5702],"id":45382,"properties":{"V":230}},{"type":"LineString","arcs":[5703,5704,5705],"id":45384,"properties":{"V":230}},{"type":"LineString","arcs":[5706],"id":45385,"properties":{"V":230}},{"type":"LineString","arcs":[5707],"id":45392,"properties":{"V":230}},{"type":"LineString","arcs":[5708],"id":45393,"properties":{"V":230}},{"type":"LineString","arcs":[5709],"id":45400,"properties":{"V":230}},{"type":"LineString","arcs":[5710],"id":45404,"properties":{"V":230}},{"type":"LineString","arcs":[5711],"id":45410,"properties":{"V":345}},{"type":"LineString","arcs":[5712],"id":45419,"properties":{"V":230}},{"type":"LineString","arcs":[5713],"id":45422,"properties":{"V":345}},{"type":"LineString","arcs":[5714],"id":45425,"properties":{"V":345}},{"type":"LineString","arcs":[5715],"id":45438,"properties":{"V":500}},{"type":"LineString","arcs":[5716],"id":45439,"properties":{"V":345}},{"type":"LineString","arcs":[5717],"id":45441,"properties":{"V":230}},{"type":"LineString","arcs":[5718],"id":45450,"properties":{"V":230}},{"type":"LineString","arcs":[5719],"id":45458,"properties":{"V":345}},{"type":"LineString","arcs":[5720],"id":45459,"properties":{"V":345}},{"type":"LineString","arcs":[5721],"id":45466,"properties":{"V":230}},{"type":"LineString","arcs":[5722],"id":45470,"properties":{"V":230}},{"type":"LineString","arcs":[5723],"id":45475,"properties":{"V":345}},{"type":"LineString","arcs":[5724],"id":45487,"properties":{"V":345}},{"type":"LineString","arcs":[5725],"id":45495,"properties":{"V":500}},{"type":"LineString","arcs":[5726],"id":45509,"properties":{"V":230}},{"type":"LineString","arcs":[5727],"id":45519,"properties":{"V":230}},{"type":"LineString","arcs":[5728,5729,5730],"id":45524,"properties":{"V":345}},{"type":"LineString","arcs":[5731],"id":45526,"properties":{"V":230}},{"type":"LineString","arcs":[5732],"id":45527,"properties":{"V":230}},{"type":"LineString","arcs":[5733],"id":45530,"properties":{"V":230}},{"type":"LineString","arcs":[5734],"id":45540,"properties":{"V":500}},{"type":"LineString","arcs":[5735],"id":45546,"properties":{"V":230}},{"type":"LineString","arcs":[5736],"id":45547,"properties":{"V":345}},{"type":"LineString","arcs":[5737],"id":45550,"properties":{"V":230}},{"type":"LineString","arcs":[5738],"id":45553,"properties":{"V":230}},{"type":"LineString","arcs":[5739],"id":45555,"properties":{"V":230}},{"type":"LineString","arcs":[5740],"id":45559,"properties":{"V":230}},{"type":"LineString","arcs":[5741],"id":45567,"properties":{"V":345}},{"type":"LineString","arcs":[5742],"id":45568,"properties":{"V":230}},{"type":"LineString","arcs":[5743],"id":45570,"properties":{"V":230}},{"type":"LineString","arcs":[5744],"id":45571,"properties":{"V":230}},{"type":"LineString","arcs":[5745],"id":45573,"properties":{"V":230}},{"type":"LineString","arcs":[5746],"id":45574,"properties":{"V":230}},{"type":"LineString","arcs":[5747],"id":45577,"properties":{"V":230}},{"type":"LineString","arcs":[5748],"id":45582,"properties":{"V":230}},{"type":"LineString","arcs":[5749],"id":45602,"properties":{"V":230}},{"type":"LineString","arcs":[5750],"id":45622,"properties":{"V":230}},{"type":"LineString","arcs":[5751],"id":45647,"properties":{"V":230}},{"type":"LineString","arcs":[5752],"id":45652,"properties":{"V":230}},{"type":"LineString","arcs":[5753],"id":45653,"properties":{"V":230}},{"type":"LineString","arcs":[5754],"id":45661,"properties":{"V":230}},{"type":"LineString","arcs":[5755],"id":45678,"properties":{"V":230}},{"type":"LineString","arcs":[5756],"id":45684,"properties":{"V":345}},{"type":"LineString","arcs":[5757],"id":45688,"properties":{"V":230}},{"type":"LineString","arcs":[5758],"id":45716,"properties":{"V":230}},{"type":"LineString","arcs":[5759],"id":45728,"properties":{"V":230}},{"type":"LineString","arcs":[5760],"id":45762,"properties":{"V":230}},{"type":"LineString","arcs":[5761],"id":45784,"properties":{"V":230}},{"type":"LineString","arcs":[5762],"id":45785,"properties":{"V":230}},{"type":"LineString","arcs":[5763],"id":45789,"properties":{"V":230}},{"type":"LineString","arcs":[5764],"id":45794,"properties":{"V":230}},{"type":"LineString","arcs":[5765],"id":45795,"properties":{"V":500}},{"type":"LineString","arcs":[5766],"id":45796,"properties":{"V":345}},{"type":"LineString","arcs":[5767],"id":45809,"properties":{"V":345}},{"type":"LineString","arcs":[5768],"id":45819,"properties":{"V":345}},{"type":"LineString","arcs":[5769],"id":45821,"properties":{"V":230}},{"type":"LineString","arcs":[5770],"id":45828,"properties":{"V":230}},{"type":"LineString","arcs":[5771],"id":45831,"properties":{"V":230}},{"type":"LineString","arcs":[5772],"id":45832,"properties":{"V":230}},{"type":"LineString","arcs":[5773],"id":45833,"properties":{"V":345}},{"type":"LineString","arcs":[5774],"id":45876,"properties":{"V":230}},{"type":"LineString","arcs":[5775],"id":45900,"properties":{"V":230}},{"type":"LineString","arcs":[5776],"id":45915,"properties":{"V":230}},{"type":"LineString","arcs":[5777,5778],"id":45925,"properties":{"V":230}},{"type":"LineString","arcs":[5779],"id":45941,"properties":{"V":345}},{"type":"LineString","arcs":[5780],"id":45942,"properties":{"V":230}},{"type":"LineString","arcs":[5781],"id":45948,"properties":{"V":230}},{"type":"LineString","arcs":[5782],"id":45969,"properties":{"V":230}},{"type":"LineString","arcs":[5783,5784],"id":45974,"properties":{"V":230}},{"type":"LineString","arcs":[5785],"id":45978,"properties":{"V":230}},{"type":"LineString","arcs":[5786],"id":45979,"properties":{"V":230}},{"type":"LineString","arcs":[5787],"id":45982,"properties":{"V":230}},{"type":"LineString","arcs":[5788],"id":45992,"properties":{"V":345}},{"type":"LineString","arcs":[5789],"id":46020,"properties":{"V":230}},{"type":"LineString","arcs":[5790],"id":46027,"properties":{"V":345}},{"type":"LineString","arcs":[5791],"id":46031,"properties":{"V":230}},{"type":"LineString","arcs":[5792],"id":46045,"properties":{"V":230}},{"type":"LineString","arcs":[5793],"id":46063,"properties":{"V":230}},{"type":"LineString","arcs":[5794],"id":46067,"properties":{"V":230}},{"type":"LineString","arcs":[5795],"id":46077,"properties":{"V":500}},{"type":"LineString","arcs":[5796],"id":46079,"properties":{"V":500}},{"type":"LineString","arcs":[5797],"id":46081,"properties":{"V":230}},{"type":"LineString","arcs":[5798],"id":46082,"properties":{"V":230}},{"type":"LineString","arcs":[5799],"id":46095,"properties":{"V":230}},{"type":"LineString","arcs":[5800],"id":46103,"properties":{"V":345}},{"type":"LineString","arcs":[5801],"id":46106,"properties":{"V":230}},{"type":"LineString","arcs":[5802],"id":46108,"properties":{"V":345}},{"type":"LineString","arcs":[5803,5804],"id":46111,"properties":{"V":230}},{"type":"LineString","arcs":[5805],"id":46120,"properties":{"V":500}},{"type":"LineString","arcs":[5806],"id":46128,"properties":{"V":345}},{"type":"LineString","arcs":[5807],"id":46137,"properties":{"V":230}},{"type":"LineString","arcs":[5808],"id":46141,"properties":{"V":230}},{"type":"LineString","arcs":[5809],"id":46154,"properties":{"V":230}},{"type":"LineString","arcs":[5810,5811],"id":46159,"properties":{"V":345}},{"type":"LineString","arcs":[5812],"id":46167,"properties":{"V":345}},{"type":"LineString","arcs":[5813],"id":46168,"properties":{"V":230}},{"type":"LineString","arcs":[5814],"id":46170,"properties":{"V":500}},{"type":"LineString","arcs":[5815],"id":46173,"properties":{"V":230}},{"type":"LineString","arcs":[5816],"id":46195,"properties":{"V":230}},{"type":"LineString","arcs":[5817],"id":46197,"properties":{"V":230}},{"type":"LineString","arcs":[5818],"id":46234,"properties":{"V":230}},{"type":"LineString","arcs":[5819],"id":46240,"properties":{"V":230}},{"type":"LineString","arcs":[5820],"id":46243,"properties":{"V":230}},{"type":"LineString","arcs":[5821],"id":46245,"properties":{"V":230}},{"type":"LineString","arcs":[5822],"id":46249,"properties":{"V":345}},{"type":"LineString","arcs":[5823],"id":46252,"properties":{"V":230}},{"type":"LineString","arcs":[5824],"id":46267,"properties":{"V":345}},{"type":"LineString","arcs":[5825],"id":46270,"properties":{"V":230}},{"type":"LineString","arcs":[5826],"id":46277,"properties":{"V":230}},{"type":"LineString","arcs":[5827],"id":46279,"properties":{"V":230}},{"type":"LineString","arcs":[5828],"id":46282,"properties":{"V":345}},{"type":"LineString","arcs":[5829],"id":46284,"properties":{"V":345}},{"type":"LineString","arcs":[5830],"id":46308,"properties":{"V":230}},{"type":"LineString","arcs":[5831],"id":46338,"properties":{"V":230}},{"type":"LineString","arcs":[5832],"id":46345,"properties":{"V":230}},{"type":"LineString","arcs":[5833],"id":46350,"properties":{"V":230}},{"type":"LineString","arcs":[5834],"id":46357,"properties":{"V":230}},{"type":"LineString","arcs":[5835,5836,5837,5838,5839,5840,5841],"id":46360,"properties":{"V":345}},{"type":"LineString","arcs":[5842,5843,5844],"id":46363,"properties":{"V":230}},{"type":"LineString","arcs":[5845,5846,5847,5848,5849,5850],"id":46373,"properties":{"V":500}},{"type":"LineString","arcs":[5851],"id":46379,"properties":{"V":230}},{"type":"LineString","arcs":[5852],"id":46385,"properties":{"V":345}},{"type":"LineString","arcs":[5853],"id":46402,"properties":{"V":230}},{"type":"LineString","arcs":[5854],"id":46405,"properties":{"V":230}},{"type":"LineString","arcs":[5855],"id":46429,"properties":{"V":230}},{"type":"LineString","arcs":[5856],"id":46431,"properties":{"V":345}},{"type":"LineString","arcs":[5857],"id":46444,"properties":{"V":230}},{"type":"LineString","arcs":[5858],"id":46446,"properties":{"V":230}},{"type":"LineString","arcs":[5859],"id":46452,"properties":{"V":345}},{"type":"LineString","arcs":[5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876],"id":46456,"properties":{"V":765}},{"type":"LineString","arcs":[5877],"id":46479,"properties":{"V":230}},{"type":"LineString","arcs":[5878],"id":46482,"properties":{"V":345}},{"type":"LineString","arcs":[5879],"id":46485,"properties":{"V":345}},{"type":"LineString","arcs":[5880],"id":46487,"properties":{"V":230}},{"type":"LineString","arcs":[5881],"id":46505,"properties":{"V":230}},{"type":"LineString","arcs":[5882],"id":46531,"properties":{"V":230}},{"type":"LineString","arcs":[5883],"id":46542,"properties":{"V":345}},{"type":"LineString","arcs":[5884],"id":46544,"properties":{"V":345}},{"type":"LineString","arcs":[5885],"id":46545,"properties":{"V":230}},{"type":"LineString","arcs":[5886],"id":46552,"properties":{"V":230}},{"type":"LineString","arcs":[5887],"id":46566,"properties":{"V":345}},{"type":"LineString","arcs":[5888],"id":46569,"properties":{"V":230}},{"type":"LineString","arcs":[5889],"id":46576,"properties":{"V":345}},{"type":"LineString","arcs":[5890],"id":46580,"properties":{"V":500}},{"type":"LineString","arcs":[5891],"id":46581,"properties":{"V":345}},{"type":"LineString","arcs":[5892],"id":46586,"properties":{"V":230}},{"type":"LineString","arcs":[5893],"id":46589,"properties":{"V":230}},{"type":"LineString","arcs":[5894],"id":46595,"properties":{"V":230}},{"type":"LineString","arcs":[5895],"id":46596,"properties":{"V":230}},{"type":"LineString","arcs":[5896],"id":46598,"properties":{"V":345}},{"type":"LineString","arcs":[5897],"id":46611,"properties":{"V":230}},{"type":"LineString","arcs":[5898],"id":46617,"properties":{"V":230}},{"type":"LineString","arcs":[5899],"id":46624,"properties":{"V":230}},{"type":"LineString","arcs":[5900],"id":46632,"properties":{"V":230}},{"type":"LineString","arcs":[5901],"id":46637,"properties":{"V":230}},{"type":"LineString","arcs":[5902],"id":46641,"properties":{"V":230}},{"type":"LineString","arcs":[5903],"id":46656,"properties":{"V":230}},{"type":"LineString","arcs":[5904],"id":46657,"properties":{"V":345}},{"type":"LineString","arcs":[5905],"id":46695,"properties":{"V":230}},{"type":"LineString","arcs":[5906],"id":46700,"properties":{"V":230}},{"type":"LineString","arcs":[5907],"id":46707,"properties":{"V":230}},{"type":"LineString","arcs":[5908],"id":46720,"properties":{"V":345}},{"type":"LineString","arcs":[5909],"id":46735,"properties":{"V":230}},{"type":"LineString","arcs":[5910],"id":46736,"properties":{"V":345}},{"type":"LineString","arcs":[5911],"id":46761,"properties":{"V":500}},{"type":"LineString","arcs":[5912],"id":46769,"properties":{"V":230}},{"type":"LineString","arcs":[5913],"id":46781,"properties":{"V":230}},{"type":"LineString","arcs":[5914],"id":46783,"properties":{"V":230}},{"type":"LineString","arcs":[5915],"id":46806,"properties":{"V":230}},{"type":"LineString","arcs":[5916],"id":46810,"properties":{"V":500}},{"type":"LineString","arcs":[5917],"id":46817,"properties":{"V":230}},{"type":"LineString","arcs":[5918],"id":46829,"properties":{"V":345}},{"type":"LineString","arcs":[5919],"id":46836,"properties":{"V":345}},{"type":"LineString","arcs":[5920],"id":46839,"properties":{"V":230}},{"type":"LineString","arcs":[5921,5922],"id":46851,"properties":{"V":345}},{"type":"LineString","arcs":[5923,5924,5925],"id":46856,"properties":{"V":230}},{"type":"LineString","arcs":[5926],"id":46874,"properties":{"V":230}},{"type":"LineString","arcs":[5927],"id":46878,"properties":{"V":230}},{"type":"LineString","arcs":[5928],"id":46881,"properties":{"V":230}},{"type":"LineString","arcs":[5929],"id":46887,"properties":{"V":230}},{"type":"LineString","arcs":[5930],"id":46904,"properties":{"V":230}},{"type":"LineString","arcs":[5931],"id":46946,"properties":{"V":500}},{"type":"LineString","arcs":[5932],"id":46969,"properties":{"V":230}},{"type":"LineString","arcs":[5933],"id":46974,"properties":{"V":230}},{"type":"LineString","arcs":[5934],"id":46984,"properties":{"V":345}},{"type":"LineString","arcs":[5935],"id":46985,"properties":{"V":500}},{"type":"LineString","arcs":[5936],"id":46991,"properties":{"V":230}},{"type":"LineString","arcs":[5937],"id":46996,"properties":{"V":230}},{"type":"LineString","arcs":[5938],"id":47015,"properties":{"V":345}},{"type":"LineString","arcs":[5939],"id":47022,"properties":{"V":230}},{"type":"LineString","arcs":[5940,5941],"id":47025,"properties":{"V":230}},{"type":"LineString","arcs":[5942],"id":47042,"properties":{"V":230}},{"type":"LineString","arcs":[5943],"id":47081,"properties":{"V":230}},{"type":"LineString","arcs":[5944],"id":47098,"properties":{"V":230}},{"type":"LineString","arcs":[5945],"id":47101,"properties":{"V":230}},{"type":"LineString","arcs":[5946],"id":47117,"properties":{"V":230}},{"type":"LineString","arcs":[5947],"id":47118,"properties":{"V":230}},{"type":"LineString","arcs":[5948],"id":47120,"properties":{"V":230}},{"type":"LineString","arcs":[5949],"id":47127,"properties":{"V":500}},{"type":"LineString","arcs":[5950],"id":47133,"properties":{"V":230}},{"type":"LineString","arcs":[5951],"id":47155,"properties":{"V":230}},{"type":"LineString","arcs":[5952],"id":47161,"properties":{"V":230}},{"type":"LineString","arcs":[5953],"id":47166,"properties":{"V":230}},{"type":"LineString","arcs":[5954],"id":47179,"properties":{"V":230}},{"type":"LineString","arcs":[5955],"id":47182,"properties":{"V":345}},{"type":"LineString","arcs":[5956,5957],"id":47183,"properties":{"V":230}},{"type":"LineString","arcs":[5958],"id":47185,"properties":{"V":345}},{"type":"LineString","arcs":[5959],"id":47186,"properties":{"V":230}},{"type":"LineString","arcs":[5960,5961,5962],"id":47197,"properties":{"V":230}},{"type":"LineString","arcs":[5963],"id":47212,"properties":{"V":230}},{"type":"LineString","arcs":[5964],"id":47221,"properties":{"V":230}},{"type":"LineString","arcs":[5965],"id":47226,"properties":{"V":230}},{"type":"LineString","arcs":[5966],"id":47232,"properties":{"V":230}},{"type":"LineString","arcs":[5967],"id":47233,"properties":{"V":230}},{"type":"LineString","arcs":[5968],"id":47251,"properties":{"V":230}},{"type":"LineString","arcs":[5969],"id":47252,"properties":{"V":230}},{"type":"LineString","arcs":[5970,5971],"id":47269,"properties":{"V":230}},{"type":"LineString","arcs":[5972],"id":47273,"properties":{"V":345}},{"type":"LineString","arcs":[5973],"id":47282,"properties":{"V":230}},{"type":"LineString","arcs":[5974],"id":47284,"properties":{"V":230}},{"type":"LineString","arcs":[5975],"id":47299,"properties":{"V":230}},{"type":"LineString","arcs":[5976],"id":47300,"properties":{"V":230}},{"type":"LineString","arcs":[5977],"id":47301,"properties":{"V":230}},{"type":"LineString","arcs":[5978],"id":47304,"properties":{"V":230}},{"type":"LineString","arcs":[5979],"id":47317,"properties":{"V":230}},{"type":"LineString","arcs":[5980],"id":47318,"properties":{"V":230}},{"type":"LineString","arcs":[5981],"id":47327,"properties":{"V":230}},{"type":"LineString","arcs":[5982],"id":47336,"properties":{"V":230}},{"type":"LineString","arcs":[5983],"id":47342,"properties":{"V":345}},{"type":"LineString","arcs":[5984],"id":47346,"properties":{"V":230}},{"type":"LineString","arcs":[5985],"id":47348,"properties":{"V":230}},{"type":"LineString","arcs":[5986],"id":47352,"properties":{"V":230}},{"type":"LineString","arcs":[5987],"id":47358,"properties":{"V":230}},{"type":"LineString","arcs":[5988],"id":47363,"properties":{"V":345}},{"type":"LineString","arcs":[5989],"id":47373,"properties":{"V":230}},{"type":"LineString","arcs":[5990],"id":47374,"properties":{"V":345}},{"type":"LineString","arcs":[5991],"id":47376,"properties":{"V":230}},{"type":"LineString","arcs":[5992],"id":47381,"properties":{"V":345}},{"type":"LineString","arcs":[5993],"id":47383,"properties":{"V":230}},{"type":"LineString","arcs":[5994],"id":47388,"properties":{"V":230}},{"type":"LineString","arcs":[5995],"id":47391,"properties":{"V":230}},{"type":"LineString","arcs":[5996],"id":47416,"properties":{"V":230}},{"type":"LineString","arcs":[5997],"id":47418,"properties":{"V":230}},{"type":"LineString","arcs":[5998],"id":47424,"properties":{"V":230}},{"type":"LineString","arcs":[5999],"id":47426,"properties":{"V":230}},{"type":"LineString","arcs":[6000],"id":47436,"properties":{"V":230}},{"type":"LineString","arcs":[6001],"id":47443,"properties":{"V":230}},{"type":"LineString","arcs":[6002],"id":47466,"properties":{"V":230}},{"type":"LineString","arcs":[6003],"id":47474,"properties":{"V":230}},{"type":"LineString","arcs":[6004],"id":47482,"properties":{"V":345}},{"type":"LineString","arcs":[6005],"id":47483,"properties":{"V":230}},{"type":"LineString","arcs":[6006],"id":47484,"properties":{"V":345}},{"type":"LineString","arcs":[6007],"id":47494,"properties":{"V":230}},{"type":"LineString","arcs":[6008],"id":47497,"properties":{"V":230}},{"type":"LineString","arcs":[6009],"id":47505,"properties":{"V":230}},{"type":"LineString","arcs":[6010],"id":47511,"properties":{"V":230}},{"type":"LineString","arcs":[6011],"id":47531,"properties":{"V":230}},{"type":"LineString","arcs":[6012],"id":47539,"properties":{"V":230}},{"type":"LineString","arcs":[6013],"id":47556,"properties":{"V":230}},{"type":"LineString","arcs":[6014],"id":47573,"properties":{"V":230}},{"type":"LineString","arcs":[6015],"id":47600,"properties":{"V":230}},{"type":"LineString","arcs":[6016],"id":47617,"properties":{"V":230}},{"type":"LineString","arcs":[6017,6018],"id":47619,"properties":{"V":230}},{"type":"LineString","arcs":[6019],"id":47640,"properties":{"V":345}},{"type":"LineString","arcs":[6020],"id":47643,"properties":{"V":230}},{"type":"LineString","arcs":[6021],"id":47646,"properties":{"V":230}},{"type":"LineString","arcs":[6022],"id":47660,"properties":{"V":230}},{"type":"LineString","arcs":[6023],"id":47667,"properties":{"V":230}},{"type":"LineString","arcs":[6024],"id":47676,"properties":{"V":230}},{"type":"LineString","arcs":[6025],"id":47684,"properties":{"V":345}},{"type":"LineString","arcs":[6026],"id":47710,"properties":{"V":230}},{"type":"LineString","arcs":[6027],"id":47712,"properties":{"V":345}},{"type":"LineString","arcs":[6028],"id":47725,"properties":{"V":230}},{"type":"LineString","arcs":[6029],"id":47732,"properties":{"V":230}},{"type":"LineString","arcs":[6030],"id":47735,"properties":{"V":230}},{"type":"LineString","arcs":[6031],"id":47740,"properties":{"V":345}},{"type":"LineString","arcs":[6032],"id":47744,"properties":{"V":230}},{"type":"LineString","arcs":[6033],"id":47750,"properties":{"V":345}},{"type":"LineString","arcs":[6034],"id":47751,"properties":{"V":230}},{"type":"LineString","arcs":[6035],"id":47754,"properties":{"V":230}},{"type":"LineString","arcs":[6036],"id":47763,"properties":{"V":230}},{"type":"LineString","arcs":[6037],"id":47764,"properties":{"V":345}},{"type":"LineString","arcs":[6038],"id":47780,"properties":{"V":230}},{"type":"LineString","arcs":[6039],"id":47781,"properties":{"V":345}},{"type":"LineString","arcs":[6040],"id":47784,"properties":{"V":230}},{"type":"LineString","arcs":[6041],"id":47786,"properties":{"V":230}},{"type":"LineString","arcs":[6042],"id":47791,"properties":{"V":230}},{"type":"LineString","arcs":[6043],"id":47793,"properties":{"V":230}},{"type":"LineString","arcs":[6044],"id":47794,"properties":{"V":230}},{"type":"LineString","arcs":[6045],"id":47795,"properties":{"V":230}},{"type":"LineString","arcs":[6046],"id":47801,"properties":{"V":345}},{"type":"LineString","arcs":[6047],"id":47804,"properties":{"V":230}},{"type":"LineString","arcs":[6048],"id":47809,"properties":{"V":230}},{"type":"LineString","arcs":[6049],"id":47811,"properties":{"V":230}},{"type":"LineString","arcs":[6050],"id":47812,"properties":{"V":230}},{"type":"LineString","arcs":[6051],"id":47839,"properties":{"V":230}},{"type":"LineString","arcs":[6052],"id":47841,"properties":{"V":345}},{"type":"LineString","arcs":[6053],"id":47849,"properties":{"V":230}},{"type":"LineString","arcs":[6054],"id":47856,"properties":{"V":230}},{"type":"LineString","arcs":[6055],"id":47860,"properties":{"V":230}},{"type":"LineString","arcs":[6056],"id":47863,"properties":{"V":230}},{"type":"LineString","arcs":[6057],"id":47871,"properties":{"V":230}},{"type":"LineString","arcs":[6058],"id":47881,"properties":{"V":230}},{"type":"LineString","arcs":[6059],"id":47882,"properties":{"V":345}},{"type":"LineString","arcs":[6060],"id":47883,"properties":{"V":230}},{"type":"LineString","arcs":[6061],"id":47889,"properties":{"V":345}},{"type":"LineString","arcs":[6062],"id":47899,"properties":{"V":345}},{"type":"LineString","arcs":[6063],"id":47906,"properties":{"V":345}},{"type":"LineString","arcs":[6064],"id":47909,"properties":{"V":230}},{"type":"LineString","arcs":[6065],"id":47910,"properties":{"V":500}},{"type":"LineString","arcs":[6066],"id":47913,"properties":{"V":345}},{"type":"LineString","arcs":[6067],"id":47917,"properties":{"V":230}},{"type":"LineString","arcs":[6068],"id":47919,"properties":{"V":345}},{"type":"LineString","arcs":[6069],"id":47935,"properties":{"V":345}},{"type":"LineString","arcs":[6070],"id":47939,"properties":{"V":230}},{"type":"LineString","arcs":[6071],"id":47942,"properties":{"V":230}},{"type":"LineString","arcs":[6072],"id":47944,"properties":{"V":345}},{"type":"LineString","arcs":[6073],"id":47950,"properties":{"V":230}},{"type":"LineString","arcs":[6074],"id":47961,"properties":{"V":230}},{"type":"LineString","arcs":[6075],"id":47963,"properties":{"V":230}},{"type":"LineString","arcs":[6076],"id":47970,"properties":{"V":765}},{"type":"LineString","arcs":[6077],"id":47972,"properties":{"V":345}},{"type":"LineString","arcs":[6078],"id":47977,"properties":{"V":345}},{"type":"LineString","arcs":[6079],"id":47981,"properties":{"V":230}},{"type":"LineString","arcs":[6080],"id":47987,"properties":{"V":500}},{"type":"LineString","arcs":[6081],"id":48002,"properties":{"V":230}},{"type":"LineString","arcs":[6082],"id":48007,"properties":{"V":230}},{"type":"LineString","arcs":[6083],"id":48011,"properties":{"V":345}},{"type":"LineString","arcs":[6084],"id":48021,"properties":{"V":765}},{"type":"LineString","arcs":[6085],"id":48027,"properties":{"V":230}},{"type":"LineString","arcs":[6086],"id":48029,"properties":{"V":500}},{"type":"LineString","arcs":[6087],"id":48044,"properties":{"V":230}},{"type":"LineString","arcs":[6088],"id":48057,"properties":{"V":230}},{"type":"LineString","arcs":[6089],"id":48066,"properties":{"V":230}},{"type":"LineString","arcs":[6090],"id":48074,"properties":{"V":345}},{"type":"LineString","arcs":[6091],"id":48078,"properties":{"V":230}},{"type":"LineString","arcs":[6092],"id":48079,"properties":{"V":345}},{"type":"LineString","arcs":[6093],"id":48088,"properties":{"V":230}},{"type":"LineString","arcs":[6094],"id":48089,"properties":{"V":230}},{"type":"LineString","arcs":[6095],"id":48102,"properties":{"V":345}},{"type":"LineString","arcs":[6096],"id":48103,"properties":{"V":345}},{"type":"LineString","arcs":[6097],"id":48126,"properties":{"V":230}},{"type":"LineString","arcs":[6098],"id":48127,"properties":{"V":500}},{"type":"LineString","arcs":[6099],"id":48129,"properties":{"V":230}},{"type":"LineString","arcs":[6100],"id":48134,"properties":{"V":345}},{"type":"LineString","arcs":[6101],"id":48139,"properties":{"V":345}},{"type":"LineString","arcs":[6102],"id":48145,"properties":{"V":345}},{"type":"LineString","arcs":[6103],"id":48149,"properties":{"V":230}},{"type":"LineString","arcs":[6104],"id":48151,"properties":{"V":230}},{"type":"LineString","arcs":[6105],"id":48156,"properties":{"V":345}},{"type":"LineString","arcs":[6106],"id":48160,"properties":{"V":230}},{"type":"LineString","arcs":[6107],"id":48166,"properties":{"V":345}},{"type":"LineString","arcs":[6108],"id":48167,"properties":{"V":345}},{"type":"LineString","arcs":[6109],"id":48171,"properties":{"V":345}},{"type":"LineString","arcs":[6110],"id":48176,"properties":{"V":345}},{"type":"LineString","arcs":[6111],"id":48177,"properties":{"V":230}},{"type":"LineString","arcs":[6112],"id":48198,"properties":{"V":230}},{"type":"LineString","arcs":[6113],"id":48216,"properties":{"V":230}},{"type":"LineString","arcs":[6114],"id":48220,"properties":{"V":230}},{"type":"LineString","arcs":[6115],"id":48232,"properties":{"V":230}},{"type":"LineString","arcs":[6116],"id":48239,"properties":{"V":230}},{"type":"LineString","arcs":[6117],"id":48263,"properties":{"V":345}},{"type":"LineString","arcs":[6118,6119],"id":48273,"properties":{"V":230}},{"type":"LineString","arcs":[6120],"id":48275,"properties":{"V":230}},{"type":"LineString","arcs":[6121],"id":48292,"properties":{"V":345}},{"type":"LineString","arcs":[6122,6123,6124],"id":48295,"properties":{"V":765}},{"type":"LineString","arcs":[6125],"id":48305,"properties":{"V":230}},{"type":"LineString","arcs":[6126],"id":48310,"properties":{"V":500}},{"type":"LineString","arcs":[6127],"id":48320,"properties":{"V":230}},{"type":"LineString","arcs":[6128],"id":48334,"properties":{"V":230}},{"type":"LineString","arcs":[6129],"id":48339,"properties":{"V":345}},{"type":"LineString","arcs":[6130],"id":48351,"properties":{"V":230}},{"type":"LineString","arcs":[6131],"id":48354,"properties":{"V":230}},{"type":"LineString","arcs":[6132],"id":48356,"properties":{"V":230}},{"type":"LineString","arcs":[6133],"id":48368,"properties":{"V":230}},{"type":"LineString","arcs":[6134],"id":48383,"properties":{"V":345}},{"type":"LineString","arcs":[6135],"id":48387,"properties":{"V":230}},{"type":"LineString","arcs":[6136],"id":48400,"properties":{"V":230}},{"type":"LineString","arcs":[6137],"id":48431,"properties":{"V":230}},{"type":"LineString","arcs":[6138,6139,6140],"id":48443,"properties":{"V":230}},{"type":"LineString","arcs":[6141],"id":48446,"properties":{"V":230}},{"type":"LineString","arcs":[6142],"id":48450,"properties":{"V":230}},{"type":"LineString","arcs":[6143],"id":48455,"properties":{"V":230}},{"type":"LineString","arcs":[6144],"id":48478,"properties":{"V":230}},{"type":"LineString","arcs":[6145],"id":48487,"properties":{"V":230}},{"type":"LineString","arcs":[6146],"id":48492,"properties":{"V":230}},{"type":"LineString","arcs":[6147],"id":48494,"properties":{"V":230}},{"type":"LineString","arcs":[6148],"id":48503,"properties":{"V":345}},{"type":"LineString","arcs":[6149],"id":48514,"properties":{"V":345}},{"type":"LineString","arcs":[6150],"id":48515,"properties":{"V":230}},{"type":"LineString","arcs":[6151],"id":48522,"properties":{"V":230}},{"type":"LineString","arcs":[6152],"id":48524,"properties":{"V":345}},{"type":"LineString","arcs":[6153,6154,6155,6156],"id":48539,"properties":{"V":230}},{"type":"LineString","arcs":[6157,6158],"id":48548,"properties":{"V":345}},{"type":"LineString","arcs":[6159],"id":48570,"properties":{"V":345}},{"type":"LineString","arcs":[6160],"id":48575,"properties":{"V":230}},{"type":"LineString","arcs":[6161],"id":48582,"properties":{"V":230}},{"type":"LineString","arcs":[6162],"id":48585,"properties":{"V":230}},{"type":"LineString","arcs":[6163,6164,6165],"id":48592,"properties":{"V":230}},{"type":"LineString","arcs":[6166],"id":48612,"properties":{"V":230}},{"type":"LineString","arcs":[6167],"id":48619,"properties":{"V":230}},{"type":"LineString","arcs":[6168],"id":48627,"properties":{"V":230}},{"type":"LineString","arcs":[6169],"id":48629,"properties":{"V":230}},{"type":"LineString","arcs":[6170],"id":48632,"properties":{"V":345}},{"type":"LineString","arcs":[6171,6172,6173,6174],"id":48634,"properties":{"V":230}},{"type":"LineString","arcs":[6175],"id":48645,"properties":{"V":345}},{"type":"LineString","arcs":[6176],"id":48657,"properties":{"V":230}},{"type":"LineString","arcs":[6177,6178],"id":48668,"properties":{"V":230}},{"type":"LineString","arcs":[6179],"id":48670,"properties":{"V":230}},{"type":"LineString","arcs":[6180],"id":48677,"properties":{"V":230}},{"type":"LineString","arcs":[6181],"id":48685,"properties":{"V":345}},{"type":"LineString","arcs":[6182],"id":48697,"properties":{"V":230}},{"type":"LineString","arcs":[6183],"id":48721,"properties":{"V":345}},{"type":"LineString","arcs":[6184],"id":48725,"properties":{"V":500}},{"type":"LineString","arcs":[6185],"id":48730,"properties":{"V":345}},{"type":"LineString","arcs":[6186],"id":48734,"properties":{"V":230}},{"type":"LineString","arcs":[6187],"id":48740,"properties":{"V":230}},{"type":"LineString","arcs":[6188],"id":48771,"properties":{"V":230}},{"type":"LineString","arcs":[6189],"id":48772,"properties":{"V":345}},{"type":"LineString","arcs":[6190],"id":48796,"properties":{"V":230}},{"type":"LineString","arcs":[6191],"id":48803,"properties":{"V":230}},{"type":"LineString","arcs":[6192,6193],"id":48810,"properties":{"V":345}},{"type":"LineString","arcs":[6194],"id":48822,"properties":{"V":230}},{"type":"LineString","arcs":[6195],"id":48844,"properties":{"V":345}},{"type":"LineString","arcs":[6196],"id":48855,"properties":{"V":345}},{"type":"LineString","arcs":[6197],"id":48856,"properties":{"V":230}},{"type":"LineString","arcs":[6198],"id":48864,"properties":{"V":230}},{"type":"LineString","arcs":[6199],"id":48877,"properties":{"V":230}},{"type":"LineString","arcs":[6200],"id":48889,"properties":{"V":345}},{"type":"LineString","arcs":[6201],"id":48891,"properties":{"V":345}},{"type":"LineString","arcs":[6202],"id":48900,"properties":{"V":345}},{"type":"LineString","arcs":[6203],"id":48908,"properties":{"V":230}},{"type":"LineString","arcs":[6204],"id":48912,"properties":{"V":345}},{"type":"LineString","arcs":[6205],"id":48918,"properties":{"V":230}},{"type":"LineString","arcs":[6206],"id":48919,"properties":{"V":345}},{"type":"LineString","arcs":[6207],"id":48920,"properties":{"V":230}},{"type":"LineString","arcs":[6208],"id":48958,"properties":{"V":230}},{"type":"LineString","arcs":[6209],"id":48975,"properties":{"V":230}},{"type":"LineString","arcs":[6210],"id":48982,"properties":{"V":230}},{"type":"LineString","arcs":[6211],"id":48987,"properties":{"V":230}},{"type":"LineString","arcs":[6212],"id":48991,"properties":{"V":230}},{"type":"LineString","arcs":[6213],"id":48997,"properties":{"V":230}},{"type":"LineString","arcs":[6214],"id":49001,"properties":{"V":345}},{"type":"LineString","arcs":[6215],"id":49002,"properties":{"V":230}},{"type":"LineString","arcs":[6216,6217],"id":49015,"properties":{"V":230}},{"type":"LineString","arcs":[6218],"id":49023,"properties":{"V":500}},{"type":"LineString","arcs":[6219],"id":49025,"properties":{"V":345}},{"type":"LineString","arcs":[6220],"id":49028,"properties":{"V":345}},{"type":"LineString","arcs":[6221],"id":49034,"properties":{"V":230}},{"type":"LineString","arcs":[6222],"id":49036,"properties":{"V":230}},{"type":"LineString","arcs":[6223],"id":49038,"properties":{"V":230}},{"type":"LineString","arcs":[6224],"id":49040,"properties":{"V":230}},{"type":"LineString","arcs":[6225],"id":49057,"properties":{"V":230}},{"type":"LineString","arcs":[6226],"id":49065,"properties":{"V":345}},{"type":"LineString","arcs":[6227],"id":49071,"properties":{"V":230}},{"type":"LineString","arcs":[6228],"id":49072,"properties":{"V":230}},{"type":"LineString","arcs":[6229],"id":49096,"properties":{"V":230}},{"type":"LineString","arcs":[6230],"id":49097,"properties":{"V":230}},{"type":"LineString","arcs":[6231],"id":49100,"properties":{"V":345}},{"type":"LineString","arcs":[6232],"id":49101,"properties":{"V":345}},{"type":"LineString","arcs":[6233],"id":49124,"properties":{"V":345}},{"type":"LineString","arcs":[6234],"id":49127,"properties":{"V":230}},{"type":"LineString","arcs":[6235],"id":49131,"properties":{"V":230}},{"type":"LineString","arcs":[6236],"id":49134,"properties":{"V":230}},{"type":"LineString","arcs":[6237],"id":49136,"properties":{"V":345}},{"type":"LineString","arcs":[6238],"id":49161,"properties":{"V":345}},{"type":"LineString","arcs":[6239],"id":49168,"properties":{"V":230}},{"type":"LineString","arcs":[6240],"id":49186,"properties":{"V":500}},{"type":"LineString","arcs":[6241],"id":49200,"properties":{"V":345}},{"type":"LineString","arcs":[6242],"id":49205,"properties":{"V":345}},{"type":"LineString","arcs":[6243],"id":49209,"properties":{"V":345}},{"type":"LineString","arcs":[6244],"id":49211,"properties":{"V":230}},{"type":"LineString","arcs":[6245],"id":49215,"properties":{"V":345}},{"type":"LineString","arcs":[6246],"id":49216,"properties":{"V":230}},{"type":"LineString","arcs":[6247],"id":49238,"properties":{"V":345}},{"type":"LineString","arcs":[6248],"id":49245,"properties":{"V":230}},{"type":"LineString","arcs":[6249],"id":49249,"properties":{"V":230}},{"type":"LineString","arcs":[6250],"id":49253,"properties":{"V":230}},{"type":"LineString","arcs":[6251],"id":49302,"properties":{"V":230}},{"type":"LineString","arcs":[6252],"id":49309,"properties":{"V":500}},{"type":"LineString","arcs":[6253],"id":49310,"properties":{"V":345}},{"type":"LineString","arcs":[6254],"id":49319,"properties":{"V":230}},{"type":"LineString","arcs":[6255],"id":49320,"properties":{"V":230}},{"type":"LineString","arcs":[6256],"id":49324,"properties":{"V":230}},{"type":"LineString","arcs":[6257],"id":49332,"properties":{"V":230}},{"type":"LineString","arcs":[6258],"id":49334,"properties":{"V":500}},{"type":"LineString","arcs":[6259],"id":49340,"properties":{"V":230}},{"type":"LineString","arcs":[6260],"id":49344,"properties":{"V":230}},{"type":"LineString","arcs":[6261],"id":49353,"properties":{"V":230}},{"type":"LineString","arcs":[6262],"id":49355,"properties":{"V":230}},{"type":"LineString","arcs":[6263],"id":49356,"properties":{"V":345}},{"type":"LineString","arcs":[6264],"id":49358,"properties":{"V":345}},{"type":"LineString","arcs":[6265],"id":49368,"properties":{"V":345}},{"type":"LineString","arcs":[6266],"id":49370,"properties":{"V":345}},{"type":"LineString","arcs":[6267],"id":49381,"properties":{"V":230}},{"type":"LineString","arcs":[6268],"id":49388,"properties":{"V":230}},{"type":"LineString","arcs":[6269],"id":49423,"properties":{"V":345}},{"type":"LineString","arcs":[6270],"id":49441,"properties":{"V":230}},{"type":"LineString","arcs":[6271],"id":49443,"properties":{"V":230}},{"type":"LineString","arcs":[6272],"id":49460,"properties":{"V":230}},{"type":"LineString","arcs":[6273],"id":49474,"properties":{"V":230}},{"type":"LineString","arcs":[6274],"id":49505,"properties":{"V":230}},{"type":"LineString","arcs":[6275],"id":49522,"properties":{"V":230}},{"type":"LineString","arcs":[6276],"id":49524,"properties":{"V":230}},{"type":"LineString","arcs":[6277],"id":49532,"properties":{"V":230}},{"type":"LineString","arcs":[6278],"id":49536,"properties":{"V":230}},{"type":"LineString","arcs":[6279],"id":49537,"properties":{"V":230}},{"type":"LineString","arcs":[6280],"id":49559,"properties":{"V":230}},{"type":"LineString","arcs":[6281],"id":49581,"properties":{"V":500}},{"type":"LineString","arcs":[6282],"id":49614,"properties":{"V":230}},{"type":"LineString","arcs":[6283],"id":49621,"properties":{"V":230}},{"type":"LineString","arcs":[6284],"id":49625,"properties":{"V":345}},{"type":"LineString","arcs":[6285],"id":49637,"properties":{"V":345}},{"type":"LineString","arcs":[6286],"id":49643,"properties":{"V":230}},{"type":"LineString","arcs":[6287,6288],"id":49645,"properties":{"V":345}},{"type":"LineString","arcs":[6289,6290,6291],"id":49669,"properties":{"V":345}},{"type":"LineString","arcs":[6292],"id":49678,"properties":{"V":230}},{"type":"LineString","arcs":[6293],"id":49680,"properties":{"V":230}},{"type":"LineString","arcs":[6294],"id":49682,"properties":{"V":230}},{"type":"LineString","arcs":[6295],"id":49692,"properties":{"V":230}},{"type":"LineString","arcs":[6296],"id":49693,"properties":{"V":230}},{"type":"LineString","arcs":[6297],"id":49716,"properties":{"V":230}},{"type":"LineString","arcs":[6298],"id":49723,"properties":{"V":345}},{"type":"LineString","arcs":[6299],"id":49726,"properties":{"V":230}},{"type":"LineString","arcs":[6300],"id":49738,"properties":{"V":345}},{"type":"LineString","arcs":[6301],"id":49740,"properties":{"V":230}},{"type":"LineString","arcs":[6302],"id":49752,"properties":{"V":345}},{"type":"LineString","arcs":[6303],"id":49764,"properties":{"V":345}},{"type":"LineString","arcs":[6304],"id":49765,"properties":{"V":230}},{"type":"LineString","arcs":[6305],"id":49774,"properties":{"V":230}},{"type":"LineString","arcs":[6306],"id":49777,"properties":{"V":230}},{"type":"LineString","arcs":[6307],"id":49795,"properties":{"V":230}},{"type":"LineString","arcs":[6308],"id":49796,"properties":{"V":230}},{"type":"LineString","arcs":[6309],"id":49797,"properties":{"V":230}},{"type":"LineString","arcs":[6310],"id":49798,"properties":{"V":230}},{"type":"LineString","arcs":[6311],"id":49809,"properties":{"V":345}},{"type":"LineString","arcs":[6312],"id":49813,"properties":{"V":230}},{"type":"LineString","arcs":[6313],"id":49823,"properties":{"V":230}},{"type":"LineString","arcs":[6314],"id":49835,"properties":{"V":230}},{"type":"LineString","arcs":[6315],"id":49843,"properties":{"V":230}},{"type":"LineString","arcs":[6316],"id":49859,"properties":{"V":230}},{"type":"LineString","arcs":[6317],"id":49862,"properties":{"V":230}},{"type":"LineString","arcs":[6318],"id":49883,"properties":{"V":230}},{"type":"LineString","arcs":[6319],"id":49894,"properties":{"V":345}},{"type":"LineString","arcs":[6320],"id":49910,"properties":{"V":230}},{"type":"LineString","arcs":[6321],"id":49918,"properties":{"V":345}},{"type":"LineString","arcs":[6322],"id":49953,"properties":{"V":230}},{"type":"LineString","arcs":[6323,6324],"id":49959,"properties":{"V":230}},{"type":"LineString","arcs":[6325],"id":49960,"properties":{"V":230}},{"type":"LineString","arcs":[6326],"id":49970,"properties":{"V":230}},{"type":"LineString","arcs":[6327],"id":49980,"properties":{"V":230}},{"type":"LineString","arcs":[6328],"id":49989,"properties":{"V":230}},{"type":"LineString","arcs":[6329],"id":50003,"properties":{"V":345}},{"type":"LineString","arcs":[6330],"id":50004,"properties":{"V":230}},{"type":"LineString","arcs":[6331],"id":50033,"properties":{"V":230}},{"type":"LineString","arcs":[6332],"id":50035,"properties":{"V":230}},{"type":"LineString","arcs":[6333],"id":50036,"properties":{"V":230}},{"type":"LineString","arcs":[6334],"id":50049,"properties":{"V":345}},{"type":"LineString","arcs":[6335],"id":50055,"properties":{"V":230}},{"type":"LineString","arcs":[6336],"id":50072,"properties":{"V":230}},{"type":"LineString","arcs":[6337],"id":50096,"properties":{"V":230}},{"type":"LineString","arcs":[6338,6339,6340],"id":50110,"properties":{"V":230}},{"type":"LineString","arcs":[6341],"id":50126,"properties":{"V":230}},{"type":"LineString","arcs":[6342],"id":50141,"properties":{"V":230}},{"type":"LineString","arcs":[6343],"id":50149,"properties":{"V":230}},{"type":"LineString","arcs":[6344],"id":50152,"properties":{"V":230}},{"type":"LineString","arcs":[6345],"id":50160,"properties":{"V":345}},{"type":"LineString","arcs":[6346],"id":50175,"properties":{"V":230}},{"type":"LineString","arcs":[6347],"id":50178,"properties":{"V":230}},{"type":"LineString","arcs":[6348],"id":50179,"properties":{"V":230}},{"type":"LineString","arcs":[6349],"id":50187,"properties":{"V":345}},{"type":"LineString","arcs":[6350],"id":50188,"properties":{"V":345}},{"type":"LineString","arcs":[6351],"id":50194,"properties":{"V":500}},{"type":"LineString","arcs":[6352],"id":50196,"properties":{"V":230}},{"type":"LineString","arcs":[6353],"id":50202,"properties":{"V":345}},{"type":"LineString","arcs":[6354],"id":50209,"properties":{"V":345}},{"type":"LineString","arcs":[6355],"id":50214,"properties":{"V":230}},{"type":"LineString","arcs":[6356],"id":50219,"properties":{"V":345}},{"type":"LineString","arcs":[6357],"id":50220,"properties":{"V":230}},{"type":"LineString","arcs":[6358],"id":50238,"properties":{"V":345}},{"type":"LineString","arcs":[6359],"id":50245,"properties":{"V":230}},{"type":"LineString","arcs":[6360],"id":50252,"properties":{"V":500}},{"type":"LineString","arcs":[6361],"id":50254,"properties":{"V":230}},{"type":"LineString","arcs":[6362],"id":50258,"properties":{"V":500}},{"type":"LineString","arcs":[6363],"id":50263,"properties":{"V":345}},{"type":"LineString","arcs":[6364],"id":50280,"properties":{"V":230}},{"type":"LineString","arcs":[6365],"id":50284,"properties":{"V":230}},{"type":"LineString","arcs":[6366],"id":50296,"properties":{"V":230}},{"type":"LineString","arcs":[6367],"id":50302,"properties":{"V":230}},{"type":"LineString","arcs":[6368],"id":50323,"properties":{"V":230}},{"type":"LineString","arcs":[6369],"id":50326,"properties":{"V":230}},{"type":"LineString","arcs":[6370],"id":50329,"properties":{"V":345}},{"type":"LineString","arcs":[6371],"id":50333,"properties":{"V":230}},{"type":"LineString","arcs":[6372],"id":50347,"properties":{"V":230}},{"type":"LineString","arcs":[6373],"id":50361,"properties":{"V":230}},{"type":"LineString","arcs":[6374],"id":50362,"properties":{"V":230}},{"type":"LineString","arcs":[6375],"id":50367,"properties":{"V":230}},{"type":"LineString","arcs":[6376],"id":50389,"properties":{"V":230}},{"type":"LineString","arcs":[6377],"id":50390,"properties":{"V":230}},{"type":"LineString","arcs":[6378,6379,6380,6381,6382],"id":50395,"properties":{"V":230}},{"type":"LineString","arcs":[6383],"id":50396,"properties":{"V":345}},{"type":"LineString","arcs":[6384],"id":50399,"properties":{"V":230}},{"type":"LineString","arcs":[6385],"id":50406,"properties":{"V":230}},{"type":"LineString","arcs":[6386],"id":50409,"properties":{"V":230}},{"type":"LineString","arcs":[6387],"id":50413,"properties":{"V":230}},{"type":"LineString","arcs":[6388],"id":50414,"properties":{"V":230}},{"type":"LineString","arcs":[6389],"id":50417,"properties":{"V":230}},{"type":"LineString","arcs":[6390],"id":50425,"properties":{"V":230}},{"type":"LineString","arcs":[6391],"id":50426,"properties":{"V":230}},{"type":"LineString","arcs":[6392],"id":50427,"properties":{"V":230}},{"type":"LineString","arcs":[6393],"id":50440,"properties":{"V":230}},{"type":"LineString","arcs":[6394],"id":50446,"properties":{"V":230}},{"type":"LineString","arcs":[6395],"id":50448,"properties":{"V":345}},{"type":"LineString","arcs":[6396],"id":50453,"properties":{"V":345}},{"type":"LineString","arcs":[6397],"id":50458,"properties":{"V":230}},{"type":"LineString","arcs":[6398],"id":50467,"properties":{"V":230}},{"type":"LineString","arcs":[6399],"id":50477,"properties":{"V":500}},{"type":"LineString","arcs":[6400,6401,6402,6403],"id":50485,"properties":{"V":230}},{"type":"LineString","arcs":[6404],"id":50486,"properties":{"V":230}},{"type":"LineString","arcs":[6405],"id":50487,"properties":{"V":500}},{"type":"LineString","arcs":[6406],"id":50490,"properties":{"V":230}},{"type":"LineString","arcs":[6407],"id":50496,"properties":{"V":230}},{"type":"LineString","arcs":[6408],"id":50501,"properties":{"V":230}},{"type":"LineString","arcs":[6409],"id":50510,"properties":{"V":230}},{"type":"LineString","arcs":[6410],"id":50516,"properties":{"V":345}},{"type":"LineString","arcs":[6411],"id":50532,"properties":{"V":230}},{"type":"LineString","arcs":[6412],"id":50534,"properties":{"V":345}},{"type":"LineString","arcs":[6413],"id":50538,"properties":{"V":230}},{"type":"LineString","arcs":[6414],"id":50564,"properties":{"V":345}},{"type":"LineString","arcs":[6415],"id":50571,"properties":{"V":230}},{"type":"LineString","arcs":[6416],"id":50572,"properties":{"V":230}},{"type":"LineString","arcs":[6417],"id":50582,"properties":{"V":230}},{"type":"LineString","arcs":[6418],"id":50590,"properties":{"V":230}},{"type":"LineString","arcs":[6419],"id":50595,"properties":{"V":500}},{"type":"LineString","arcs":[6420],"id":50597,"properties":{"V":230}},{"type":"LineString","arcs":[6421],"id":50604,"properties":{"V":230}},{"type":"LineString","arcs":[6422],"id":50616,"properties":{"V":230}},{"type":"LineString","arcs":[6423],"id":50622,"properties":{"V":230}},{"type":"LineString","arcs":[6424],"id":50637,"properties":{"V":345}},{"type":"LineString","arcs":[6425],"id":50649,"properties":{"V":230}},{"type":"LineString","arcs":[6426],"id":50655,"properties":{"V":230}},{"type":"LineString","arcs":[6427],"id":50656,"properties":{"V":230}},{"type":"LineString","arcs":[6428],"id":50668,"properties":{"V":230}},{"type":"LineString","arcs":[6429],"id":50680,"properties":{"V":230}},{"type":"LineString","arcs":[6430],"id":50683,"properties":{"V":230}},{"type":"LineString","arcs":[6431],"id":50695,"properties":{"V":345}},{"type":"LineString","arcs":[6432],"id":50697,"properties":{"V":345}},{"type":"LineString","arcs":[6433,6434,6435,6436],"id":50699,"properties":{"V":250}},{"type":"LineString","arcs":[6437],"id":50703,"properties":{"V":230}},{"type":"LineString","arcs":[6438],"id":50719,"properties":{"V":230}},{"type":"LineString","arcs":[6439],"id":50727,"properties":{"V":500}},{"type":"LineString","arcs":[6440],"id":50737,"properties":{"V":230}},{"type":"LineString","arcs":[6441],"id":50765,"properties":{"V":230}},{"type":"LineString","arcs":[6442],"id":50769,"properties":{"V":345}},{"type":"LineString","arcs":[6443],"id":50770,"properties":{"V":230}},{"type":"LineString","arcs":[6444],"id":50787,"properties":{"V":230}},{"type":"LineString","arcs":[6445],"id":50794,"properties":{"V":230}},{"type":"LineString","arcs":[6446],"id":50795,"properties":{"V":345}},{"type":"LineString","arcs":[6447],"id":50805,"properties":{"V":230}},{"type":"LineString","arcs":[6448],"id":50820,"properties":{"V":345}},{"type":"LineString","arcs":[6449],"id":50827,"properties":{"V":345}},{"type":"LineString","arcs":[6450],"id":50833,"properties":{"V":230}},{"type":"LineString","arcs":[6451,6452,6453,6454],"id":50836,"properties":{"V":345}},{"type":"LineString","arcs":[6455],"id":50839,"properties":{"V":230}},{"type":"LineString","arcs":[6456],"id":50841,"properties":{"V":345}},{"type":"LineString","arcs":[6457],"id":50844,"properties":{"V":500}},{"type":"LineString","arcs":[6458],"id":50847,"properties":{"V":230}},{"type":"LineString","arcs":[6459],"id":50848,"properties":{"V":230}},{"type":"LineString","arcs":[6460],"id":50855,"properties":{"V":230}},{"type":"LineString","arcs":[6461],"id":50861,"properties":{"V":230}},{"type":"LineString","arcs":[6462,6463,6464],"id":50864,"properties":{"V":345}},{"type":"LineString","arcs":[6465],"id":50865,"properties":{"V":230}},{"type":"LineString","arcs":[6466],"id":50882,"properties":{"V":345}},{"type":"LineString","arcs":[6467],"id":50891,"properties":{"V":230}},{"type":"LineString","arcs":[6468],"id":50898,"properties":{"V":230}},{"type":"LineString","arcs":[6469],"id":50900,"properties":{"V":230}},{"type":"LineString","arcs":[6470],"id":50904,"properties":{"V":230}},{"type":"LineString","arcs":[6471],"id":50906,"properties":{"V":345}},{"type":"LineString","arcs":[6472],"id":50908,"properties":{"V":230}},{"type":"LineString","arcs":[6473],"id":50909,"properties":{"V":230}},{"type":"LineString","arcs":[6474],"id":50910,"properties":{"V":230}},{"type":"LineString","arcs":[6475],"id":50913,"properties":{"V":230}},{"type":"LineString","arcs":[6476],"id":50915,"properties":{"V":765}},{"type":"LineString","arcs":[6477],"id":50937,"properties":{"V":230}},{"type":"LineString","arcs":[6478,6479],"id":50940,"properties":{"V":230}},{"type":"LineString","arcs":[6480],"id":50955,"properties":{"V":230}},{"type":"LineString","arcs":[6481],"id":50967,"properties":{"V":230}},{"type":"LineString","arcs":[6482],"id":50978,"properties":{"V":230}},{"type":"LineString","arcs":[6483],"id":50983,"properties":{"V":230}},{"type":"LineString","arcs":[6484],"id":50989,"properties":{"V":345}},{"type":"LineString","arcs":[6485],"id":51006,"properties":{"V":230}},{"type":"LineString","arcs":[6486],"id":51014,"properties":{"V":230}},{"type":"LineString","arcs":[6487],"id":51015,"properties":{"V":230}},{"type":"LineString","arcs":[6488,6489],"id":51038,"properties":{"V":345}},{"type":"LineString","arcs":[6490],"id":51041,"properties":{"V":230}},{"type":"LineString","arcs":[6491],"id":51044,"properties":{"V":230}},{"type":"LineString","arcs":[6492],"id":51047,"properties":{"V":230}},{"type":"LineString","arcs":[6493],"id":51055,"properties":{"V":345}},{"type":"LineString","arcs":[6494],"id":51062,"properties":{"V":230}},{"type":"LineString","arcs":[6495],"id":51064,"properties":{"V":345}},{"type":"LineString","arcs":[6496],"id":51066,"properties":{"V":345}},{"type":"LineString","arcs":[6497,6498],"id":51080,"properties":{"V":230}},{"type":"LineString","arcs":[6499],"id":51091,"properties":{"V":345}},{"type":"LineString","arcs":[6500],"id":51105,"properties":{"V":230}},{"type":"LineString","arcs":[6501],"id":51107,"properties":{"V":230}},{"type":"LineString","arcs":[6502],"id":51112,"properties":{"V":230}},{"type":"LineString","arcs":[6503,6504],"id":51117,"properties":{"V":345}},{"type":"LineString","arcs":[6505],"id":51125,"properties":{"V":230}},{"type":"LineString","arcs":[6506],"id":51127,"properties":{"V":345}},{"type":"LineString","arcs":[6507],"id":51133,"properties":{"V":230}},{"type":"LineString","arcs":[6508],"id":51137,"properties":{"V":230}},{"type":"LineString","arcs":[6509],"id":51142,"properties":{"V":230}},{"type":"LineString","arcs":[6510],"id":51153,"properties":{"V":230}},{"type":"LineString","arcs":[6511],"id":51155,"properties":{"V":500}},{"type":"LineString","arcs":[6512],"id":51161,"properties":{"V":230}},{"type":"LineString","arcs":[6513],"id":51162,"properties":{"V":230}},{"type":"LineString","arcs":[6514],"id":51170,"properties":{"V":230}},{"type":"LineString","arcs":[6515],"id":51174,"properties":{"V":230}},{"type":"LineString","arcs":[6516],"id":51210,"properties":{"V":230}},{"type":"LineString","arcs":[6517],"id":51223,"properties":{"V":230}},{"type":"LineString","arcs":[6518],"id":51233,"properties":{"V":345}},{"type":"LineString","arcs":[6519],"id":51242,"properties":{"V":230}},{"type":"LineString","arcs":[6520],"id":51251,"properties":{"V":230}},{"type":"LineString","arcs":[6521],"id":51260,"properties":{"V":230}},{"type":"LineString","arcs":[6522],"id":51261,"properties":{"V":230}},{"type":"LineString","arcs":[6523],"id":51263,"properties":{"V":230}},{"type":"LineString","arcs":[6524],"id":51272,"properties":{"V":230}},{"type":"LineString","arcs":[6525],"id":51273,"properties":{"V":230}},{"type":"LineString","arcs":[6526],"id":51278,"properties":{"V":230}},{"type":"LineString","arcs":[6527],"id":51288,"properties":{"V":230}},{"type":"LineString","arcs":[6528],"id":51291,"properties":{"V":765}},{"type":"LineString","arcs":[6529],"id":51293,"properties":{"V":230}},{"type":"LineString","arcs":[6530],"id":51294,"properties":{"V":230}},{"type":"LineString","arcs":[6531],"id":51295,"properties":{"V":230}},{"type":"LineString","arcs":[6532],"id":51299,"properties":{"V":500}},{"type":"LineString","arcs":[6533],"id":51301,"properties":{"V":230}},{"type":"LineString","arcs":[6534],"id":51305,"properties":{"V":230}},{"type":"LineString","arcs":[6535],"id":51313,"properties":{"V":345}},{"type":"LineString","arcs":[6536],"id":51316,"properties":{"V":230}},{"type":"LineString","arcs":[6537],"id":51359,"properties":{"V":230}},{"type":"LineString","arcs":[6538],"id":51369,"properties":{"V":230}},{"type":"LineString","arcs":[6539],"id":51376,"properties":{"V":345}},{"type":"LineString","arcs":[6540],"id":51386,"properties":{"V":230}},{"type":"LineString","arcs":[6541],"id":51387,"properties":{"V":230}},{"type":"LineString","arcs":[6542],"id":51389,"properties":{"V":345}},{"type":"LineString","arcs":[6543],"id":51390,"properties":{"V":345}},{"type":"LineString","arcs":[6544],"id":51397,"properties":{"V":230}},{"type":"LineString","arcs":[6545],"id":51422,"properties":{"V":500}},{"type":"LineString","arcs":[6546],"id":51423,"properties":{"V":230}},{"type":"LineString","arcs":[6547],"id":51426,"properties":{"V":345}},{"type":"LineString","arcs":[6548],"id":51430,"properties":{"V":345}},{"type":"LineString","arcs":[6549],"id":51433,"properties":{"V":230}},{"type":"LineString","arcs":[6550],"id":51439,"properties":{"V":230}},{"type":"LineString","arcs":[6551],"id":51441,"properties":{"V":230}},{"type":"LineString","arcs":[6552],"id":51453,"properties":{"V":230}},{"type":"LineString","arcs":[6553],"id":51459,"properties":{"V":230}},{"type":"LineString","arcs":[6554],"id":51460,"properties":{"V":230}},{"type":"LineString","arcs":[6555],"id":51461,"properties":{"V":230}},{"type":"LineString","arcs":[6556],"id":51489,"properties":{"V":230}},{"type":"LineString","arcs":[6557],"id":51492,"properties":{"V":345}},{"type":"LineString","arcs":[6558],"id":51496,"properties":{"V":230}},{"type":"LineString","arcs":[6559],"id":51502,"properties":{"V":345}},{"type":"LineString","arcs":[6560],"id":51507,"properties":{"V":230}},{"type":"LineString","arcs":[6561],"id":51512,"properties":{"V":345}},{"type":"LineString","arcs":[6562,6563,6564],"id":51528,"properties":{"V":500}},{"type":"LineString","arcs":[6565],"id":51529,"properties":{"V":230}},{"type":"LineString","arcs":[6566,6567,6568],"id":51531,"properties":{"V":345}},{"type":"LineString","arcs":[6569],"id":51532,"properties":{"V":230}},{"type":"LineString","arcs":[6570],"id":51535,"properties":{"V":230}},{"type":"LineString","arcs":[6571],"id":51554,"properties":{"V":230}},{"type":"LineString","arcs":[6572],"id":51565,"properties":{"V":230}},{"type":"LineString","arcs":[6573],"id":51570,"properties":{"V":230}},{"type":"LineString","arcs":[6574],"id":51577,"properties":{"V":500}},{"type":"LineString","arcs":[6575],"id":51582,"properties":{"V":230}},{"type":"LineString","arcs":[6576],"id":51587,"properties":{"V":230}},{"type":"LineString","arcs":[6577],"id":51591,"properties":{"V":230}},{"type":"LineString","arcs":[6578],"id":51597,"properties":{"V":230}},{"type":"LineString","arcs":[6579],"id":51608,"properties":{"V":230}},{"type":"LineString","arcs":[6580],"id":51615,"properties":{"V":500}},{"type":"LineString","arcs":[6581],"id":51624,"properties":{"V":500}},{"type":"LineString","arcs":[6582],"id":51632,"properties":{"V":230}},{"type":"LineString","arcs":[6583],"id":51640,"properties":{"V":230}},{"type":"LineString","arcs":[6584],"id":51641,"properties":{"V":230}},{"type":"LineString","arcs":[6585],"id":51650,"properties":{"V":765}},{"type":"LineString","arcs":[6586],"id":51651,"properties":{"V":230}},{"type":"LineString","arcs":[6587],"id":51652,"properties":{"V":230}},{"type":"LineString","arcs":[6588],"id":51655,"properties":{"V":230}},{"type":"LineString","arcs":[6589],"id":51659,"properties":{"V":230}},{"type":"LineString","arcs":[6590],"id":51665,"properties":{"V":230}},{"type":"LineString","arcs":[6591],"id":51667,"properties":{"V":500}},{"type":"LineString","arcs":[6592],"id":51677,"properties":{"V":500}},{"type":"LineString","arcs":[6593],"id":51697,"properties":{"V":230}},{"type":"LineString","arcs":[6594],"id":51698,"properties":{"V":230}},{"type":"LineString","arcs":[6595],"id":51702,"properties":{"V":230}},{"type":"LineString","arcs":[6596],"id":51714,"properties":{"V":345}},{"type":"LineString","arcs":[6597],"id":51725,"properties":{"V":230}},{"type":"LineString","arcs":[6598],"id":51726,"properties":{"V":230}},{"type":"LineString","arcs":[6599],"id":51728,"properties":{"V":230}},{"type":"LineString","arcs":[6600],"id":51729,"properties":{"V":230}},{"type":"LineString","arcs":[6601],"id":51754,"properties":{"V":230}},{"type":"LineString","arcs":[6602],"id":51757,"properties":{"V":230}},{"type":"LineString","arcs":[6603],"id":51795,"properties":{"V":230}},{"type":"LineString","arcs":[6604,6605,6606],"id":51799,"properties":{"V":230}},{"type":"LineString","arcs":[6607],"id":51807,"properties":{"V":230}},{"type":"LineString","arcs":[6608],"id":51817,"properties":{"V":230}},{"type":"LineString","arcs":[6609],"id":51841,"properties":{"V":230}},{"type":"LineString","arcs":[6610],"id":51861,"properties":{"V":230}},{"type":"LineString","arcs":[6611],"id":51907,"properties":{"V":345}},{"type":"LineString","arcs":[6612],"id":51909,"properties":{"V":230}},{"type":"LineString","arcs":[6613],"id":51912,"properties":{"V":345}},{"type":"LineString","arcs":[6614],"id":51916,"properties":{"V":345}},{"type":"LineString","arcs":[6615],"id":51930,"properties":{"V":345}},{"type":"LineString","arcs":[6616],"id":51943,"properties":{"V":345}},{"type":"LineString","arcs":[6617],"id":51946,"properties":{"V":230}},{"type":"LineString","arcs":[6618,6619,6620,6621,6622,6623,6624],"id":51952,"properties":{"V":230}},{"type":"LineString","arcs":[6625],"id":51954,"properties":{"V":230}},{"type":"LineString","arcs":[6626],"id":51961,"properties":{"V":230}},{"type":"LineString","arcs":[6627],"id":51962,"properties":{"V":230}},{"type":"LineString","arcs":[6628],"id":51979,"properties":{"V":230}},{"type":"LineString","arcs":[6629],"id":51980,"properties":{"V":230}},{"type":"LineString","arcs":[6630],"id":51989,"properties":{"V":230}},{"type":"LineString","arcs":[6631],"id":51990,"properties":{"V":230}},{"type":"LineString","arcs":[6632],"id":51995,"properties":{"V":230}},{"type":"LineString","arcs":[6633],"id":52000,"properties":{"V":230}},{"type":"LineString","arcs":[6634],"id":52011,"properties":{"V":345}},{"type":"LineString","arcs":[6635],"id":52023,"properties":{"V":345}},{"type":"LineString","arcs":[6636],"id":52040,"properties":{"V":230}},{"type":"LineString","arcs":[6637],"id":52048,"properties":{"V":345}},{"type":"LineString","arcs":[6638],"id":52054,"properties":{"V":230}},{"type":"LineString","arcs":[6639],"id":52066,"properties":{"V":230}},{"type":"LineString","arcs":[6640],"id":52081,"properties":{"V":230}},{"type":"LineString","arcs":[6641],"id":52106,"properties":{"V":230}},{"type":"LineString","arcs":[6642],"id":52108,"properties":{"V":500}},{"type":"LineString","arcs":[6643],"id":52110,"properties":{"V":230}},{"type":"LineString","arcs":[6644],"id":52127,"properties":{"V":230}},{"type":"LineString","arcs":[6645],"id":52128,"properties":{"V":230}},{"type":"LineString","arcs":[6646],"id":52135,"properties":{"V":230}},{"type":"LineString","arcs":[6647],"id":52140,"properties":{"V":230}},{"type":"LineString","arcs":[6648],"id":52141,"properties":{"V":500}},{"type":"LineString","arcs":[6649],"id":52147,"properties":{"V":345}},{"type":"LineString","arcs":[6650],"id":52157,"properties":{"V":230}},{"type":"LineString","arcs":[6651],"id":52165,"properties":{"V":345}},{"type":"LineString","arcs":[6652],"id":52177,"properties":{"V":500}},{"type":"LineString","arcs":[6653],"id":52188,"properties":{"V":230}},{"type":"LineString","arcs":[6654],"id":52197,"properties":{"V":230}},{"type":"LineString","arcs":[6655],"id":52214,"properties":{"V":345}},{"type":"LineString","arcs":[6656],"id":52227,"properties":{"V":345}},{"type":"LineString","arcs":[6657],"id":52228,"properties":{"V":345}},{"type":"LineString","arcs":[6658],"id":52234,"properties":{"V":230}},{"type":"LineString","arcs":[6659],"id":52243,"properties":{"V":230}},{"type":"LineString","arcs":[6660],"id":52247,"properties":{"V":230}},{"type":"LineString","arcs":[6661],"id":52250,"properties":{"V":230}},{"type":"LineString","arcs":[6662],"id":52256,"properties":{"V":345}},{"type":"LineString","arcs":[6663],"id":52259,"properties":{"V":345}},{"type":"LineString","arcs":[6664],"id":52261,"properties":{"V":345}},{"type":"LineString","arcs":[6665],"id":52267,"properties":{"V":230}},{"type":"LineString","arcs":[6666],"id":52269,"properties":{"V":345}},{"type":"LineString","arcs":[6667],"id":52272,"properties":{"V":230}},{"type":"LineString","arcs":[6668],"id":52275,"properties":{"V":230}},{"type":"LineString","arcs":[6669],"id":52289,"properties":{"V":230}},{"type":"LineString","arcs":[6670],"id":52291,"properties":{"V":230}},{"type":"LineString","arcs":[6671],"id":52297,"properties":{"V":230}},{"type":"LineString","arcs":[6672],"id":52299,"properties":{"V":230}},{"type":"LineString","arcs":[6673],"id":52301,"properties":{"V":230}},{"type":"LineString","arcs":[6674],"id":52313,"properties":{"V":500}},{"type":"LineString","arcs":[6675],"id":52335,"properties":{"V":230}},{"type":"LineString","arcs":[6676],"id":52350,"properties":{"V":230}},{"type":"LineString","arcs":[6677],"id":52352,"properties":{"V":230}},{"type":"LineString","arcs":[6678],"id":52372,"properties":{"V":230}},{"type":"LineString","arcs":[6679],"id":52380,"properties":{"V":230}},{"type":"LineString","arcs":[6680],"id":52383,"properties":{"V":230}},{"type":"LineString","arcs":[6681],"id":52398,"properties":{"V":230}},{"type":"LineString","arcs":[6682],"id":52426,"properties":{"V":230}},{"type":"LineString","arcs":[6683],"id":52436,"properties":{"V":230}},{"type":"LineString","arcs":[6684],"id":52439,"properties":{"V":230}},{"type":"LineString","arcs":[6685],"id":52449,"properties":{"V":230}},{"type":"LineString","arcs":[6686,6687,6688],"id":52459,"properties":{"V":345}},{"type":"LineString","arcs":[6689],"id":52466,"properties":{"V":345}},{"type":"LineString","arcs":[6690],"id":52491,"properties":{"V":345}},{"type":"LineString","arcs":[6691],"id":52492,"properties":{"V":230}},{"type":"LineString","arcs":[6692],"id":52503,"properties":{"V":230}},{"type":"LineString","arcs":[6693],"id":52505,"properties":{"V":230}},{"type":"LineString","arcs":[6694],"id":52508,"properties":{"V":230}},{"type":"LineString","arcs":[6695],"id":52523,"properties":{"V":230}},{"type":"LineString","arcs":[6696],"id":52524,"properties":{"V":230}},{"type":"LineString","arcs":[6697],"id":52531,"properties":{"V":230}},{"type":"LineString","arcs":[6698],"id":52539,"properties":{"V":500}},{"type":"LineString","arcs":[6699],"id":52542,"properties":{"V":230}},{"type":"LineString","arcs":[6700],"id":52543,"properties":{"V":345}},{"type":"LineString","arcs":[6701],"id":52545,"properties":{"V":345}},{"type":"LineString","arcs":[6702],"id":52549,"properties":{"V":230}},{"type":"LineString","arcs":[6703],"id":52554,"properties":{"V":230}},{"type":"LineString","arcs":[6704],"id":52570,"properties":{"V":230}},{"type":"LineString","arcs":[6705],"id":52577,"properties":{"V":230}},{"type":"LineString","arcs":[6706],"id":52586,"properties":{"V":230}},{"type":"LineString","arcs":[6707],"id":52602,"properties":{"V":230}},{"type":"LineString","arcs":[6708],"id":52605,"properties":{"V":230}},{"type":"LineString","arcs":[6709,6710],"id":52619,"properties":{"V":345}},{"type":"LineString","arcs":[6711],"id":52620,"properties":{"V":230}},{"type":"LineString","arcs":[6712],"id":52626,"properties":{"V":230}},{"type":"LineString","arcs":[6713],"id":52628,"properties":{"V":230}},{"type":"LineString","arcs":[6714],"id":52633,"properties":{"V":230}},{"type":"LineString","arcs":[6715],"id":52646,"properties":{"V":230}},{"type":"LineString","arcs":[6716],"id":52651,"properties":{"V":345}},{"type":"LineString","arcs":[6717],"id":52665,"properties":{"V":230}},{"type":"LineString","arcs":[6718],"id":52673,"properties":{"V":345}},{"type":"LineString","arcs":[6719],"id":52684,"properties":{"V":230}},{"type":"LineString","arcs":[6720],"id":52691,"properties":{"V":230}},{"type":"LineString","arcs":[6721],"id":52715,"properties":{"V":500}},{"type":"LineString","arcs":[6722],"id":52718,"properties":{"V":345}},{"type":"LineString","arcs":[6723],"id":52721,"properties":{"V":345}},{"type":"LineString","arcs":[6724],"id":52729,"properties":{"V":230}},{"type":"LineString","arcs":[6725],"id":52740,"properties":{"V":345}},{"type":"LineString","arcs":[6726],"id":52746,"properties":{"V":345}},{"type":"LineString","arcs":[6727],"id":52748,"properties":{"V":230}},{"type":"LineString","arcs":[6728],"id":52758,"properties":{"V":345}},{"type":"LineString","arcs":[6729,6730],"id":52765,"properties":{"V":345}},{"type":"LineString","arcs":[6731],"id":52790,"properties":{"V":230}},{"type":"LineString","arcs":[6732],"id":52800,"properties":{"V":230}},{"type":"LineString","arcs":[6733],"id":52810,"properties":{"V":230}},{"type":"LineString","arcs":[6734],"id":52818,"properties":{"V":230}},{"type":"LineString","arcs":[6735],"id":52820,"properties":{"V":230}},{"type":"LineString","arcs":[6736],"id":52825,"properties":{"V":230}},{"type":"LineString","arcs":[6737],"id":52836,"properties":{"V":230}},{"type":"LineString","arcs":[6738],"id":52841,"properties":{"V":230}},{"type":"LineString","arcs":[6739],"id":52843,"properties":{"V":230}},{"type":"LineString","arcs":[6740],"id":52845,"properties":{"V":345}},{"type":"LineString","arcs":[6741],"id":52848,"properties":{"V":230}},{"type":"LineString","arcs":[6742],"id":52849,"properties":{"V":345}},{"type":"LineString","arcs":[6743],"id":52856,"properties":{"V":345}},{"type":"LineString","arcs":[6744],"id":52876,"properties":{"V":230}},{"type":"LineString","arcs":[6745],"id":52879,"properties":{"V":345}},{"type":"LineString","arcs":[6746],"id":52882,"properties":{"V":230}},{"type":"LineString","arcs":[6747],"id":52884,"properties":{"V":230}},{"type":"LineString","arcs":[6748],"id":52895,"properties":{"V":345}},{"type":"LineString","arcs":[6749],"id":52903,"properties":{"V":230}},{"type":"LineString","arcs":[6750],"id":52906,"properties":{"V":345}},{"type":"LineString","arcs":[6751],"id":52910,"properties":{"V":230}},{"type":"LineString","arcs":[6752],"id":52920,"properties":{"V":230}},{"type":"LineString","arcs":[6753],"id":52923,"properties":{"V":230}},{"type":"LineString","arcs":[6754],"id":52924,"properties":{"V":345}},{"type":"LineString","arcs":[6755],"id":52926,"properties":{"V":230}},{"type":"LineString","arcs":[6756],"id":52930,"properties":{"V":230}},{"type":"LineString","arcs":[6757],"id":52933,"properties":{"V":500}},{"type":"LineString","arcs":[6758],"id":52942,"properties":{"V":230}},{"type":"LineString","arcs":[6759],"id":52976,"properties":{"V":230}},{"type":"LineString","arcs":[6760],"id":52980,"properties":{"V":345}},{"type":"LineString","arcs":[6761],"id":52992,"properties":{"V":230}},{"type":"LineString","arcs":[6762],"id":53009,"properties":{"V":230}},{"type":"LineString","arcs":[6763],"id":53012,"properties":{"V":230}},{"type":"LineString","arcs":[6764],"id":53015,"properties":{"V":230}},{"type":"LineString","arcs":[6765],"id":53021,"properties":{"V":345}},{"type":"LineString","arcs":[6766],"id":53022,"properties":{"V":230}},{"type":"LineString","arcs":[6767],"id":53036,"properties":{"V":230}},{"type":"LineString","arcs":[6768],"id":53045,"properties":{"V":230}},{"type":"LineString","arcs":[6769],"id":53051,"properties":{"V":230}},{"type":"LineString","arcs":[6770],"id":53054,"properties":{"V":230}},{"type":"LineString","arcs":[6771],"id":53059,"properties":{"V":500}},{"type":"LineString","arcs":[6772],"id":53069,"properties":{"V":230}},{"type":"LineString","arcs":[6773,6774,6775],"id":53073,"properties":{"V":500}},{"type":"LineString","arcs":[6776],"id":53077,"properties":{"V":230}},{"type":"LineString","arcs":[6777],"id":53091,"properties":{"V":500}},{"type":"LineString","arcs":[6778],"id":53101,"properties":{"V":345}},{"type":"LineString","arcs":[6779,6780,6781,6782],"id":53104,"properties":{"V":345}},{"type":"LineString","arcs":[6783],"id":53106,"properties":{"V":230}},{"type":"LineString","arcs":[6784],"id":53119,"properties":{"V":230}},{"type":"LineString","arcs":[6785],"id":53124,"properties":{"V":500}},{"type":"LineString","arcs":[6786],"id":53133,"properties":{"V":230}},{"type":"LineString","arcs":[6787],"id":53136,"properties":{"V":230}},{"type":"LineString","arcs":[6788],"id":53149,"properties":{"V":230}},{"type":"LineString","arcs":[6789],"id":53150,"properties":{"V":345}},{"type":"LineString","arcs":[6790],"id":53157,"properties":{"V":230}},{"type":"LineString","arcs":[6791],"id":53160,"properties":{"V":230}},{"type":"LineString","arcs":[6792],"id":53164,"properties":{"V":230}},{"type":"LineString","arcs":[6793],"id":53168,"properties":{"V":230}},{"type":"LineString","arcs":[6794],"id":53192,"properties":{"V":230}},{"type":"LineString","arcs":[6795],"id":53194,"properties":{"V":345}},{"type":"LineString","arcs":[6796],"id":53209,"properties":{"V":230}},{"type":"LineString","arcs":[6797],"id":53232,"properties":{"V":345}},{"type":"LineString","arcs":[6798],"id":53236,"properties":{"V":230}},{"type":"LineString","arcs":[6799],"id":53238,"properties":{"V":230}},{"type":"LineString","arcs":[6800],"id":53240,"properties":{"V":230}},{"type":"LineString","arcs":[6801],"id":53261,"properties":{"V":345}},{"type":"LineString","arcs":[6802],"id":53266,"properties":{"V":230}},{"type":"LineString","arcs":[6803],"id":53275,"properties":{"V":230}},{"type":"LineString","arcs":[6804],"id":53285,"properties":{"V":230}},{"type":"LineString","arcs":[6805],"id":53300,"properties":{"V":230}},{"type":"LineString","arcs":[6806],"id":53325,"properties":{"V":230}},{"type":"LineString","arcs":[6807],"id":53338,"properties":{"V":230}},{"type":"LineString","arcs":[6808],"id":53339,"properties":{"V":230}},{"type":"LineString","arcs":[6809],"id":53353,"properties":{"V":230}},{"type":"LineString","arcs":[6810],"id":53371,"properties":{"V":230}},{"type":"LineString","arcs":[6811],"id":53374,"properties":{"V":345}},{"type":"LineString","arcs":[6812],"id":53377,"properties":{"V":230}},{"type":"LineString","arcs":[6813],"id":53382,"properties":{"V":230}},{"type":"LineString","arcs":[6814],"id":53400,"properties":{"V":230}},{"type":"LineString","arcs":[6815],"id":53416,"properties":{"V":230}},{"type":"LineString","arcs":[6816],"id":53417,"properties":{"V":230}},{"type":"LineString","arcs":[6817],"id":53419,"properties":{"V":345}},{"type":"LineString","arcs":[6818],"id":53424,"properties":{"V":230}},{"type":"LineString","arcs":[6819],"id":53426,"properties":{"V":500}},{"type":"LineString","arcs":[6820],"id":53447,"properties":{"V":230}},{"type":"LineString","arcs":[6821],"id":53458,"properties":{"V":230}},{"type":"LineString","arcs":[6822],"id":53469,"properties":{"V":345}},{"type":"LineString","arcs":[6823],"id":53479,"properties":{"V":345}},{"type":"LineString","arcs":[6824],"id":53481,"properties":{"V":230}},{"type":"LineString","arcs":[6825],"id":53498,"properties":{"V":230}},{"type":"LineString","arcs":[6826],"id":53531,"properties":{"V":500}},{"type":"LineString","arcs":[6827],"id":53535,"properties":{"V":230}},{"type":"LineString","arcs":[6828],"id":53552,"properties":{"V":345}},{"type":"LineString","arcs":[6829],"id":53566,"properties":{"V":230}},{"type":"LineString","arcs":[6830],"id":53567,"properties":{"V":230}},{"type":"LineString","arcs":[6831],"id":53569,"properties":{"V":230}},{"type":"LineString","arcs":[6832],"id":53576,"properties":{"V":345}},{"type":"LineString","arcs":[6833],"id":53602,"properties":{"V":230}},{"type":"LineString","arcs":[6834],"id":53603,"properties":{"V":230}},{"type":"LineString","arcs":[6835],"id":53608,"properties":{"V":230}},{"type":"LineString","arcs":[6836],"id":53613,"properties":{"V":230}},{"type":"LineString","arcs":[6837],"id":53624,"properties":{"V":345}},{"type":"LineString","arcs":[6838],"id":53628,"properties":{"V":345}},{"type":"LineString","arcs":[6839],"id":53631,"properties":{"V":230}},{"type":"LineString","arcs":[6840],"id":53633,"properties":{"V":230}},{"type":"LineString","arcs":[6841],"id":53637,"properties":{"V":345}},{"type":"LineString","arcs":[6842],"id":53641,"properties":{"V":345}},{"type":"LineString","arcs":[6843],"id":53642,"properties":{"V":345}},{"type":"LineString","arcs":[6844],"id":53643,"properties":{"V":230}},{"type":"LineString","arcs":[6845],"id":53644,"properties":{"V":500}},{"type":"LineString","arcs":[6846],"id":53649,"properties":{"V":230}},{"type":"LineString","arcs":[6847],"id":53685,"properties":{"V":500}},{"type":"LineString","arcs":[6848,6849],"id":53694,"properties":{"V":230}},{"type":"LineString","arcs":[6850],"id":53696,"properties":{"V":345}},{"type":"LineString","arcs":[6851],"id":53706,"properties":{"V":500}},{"type":"LineString","arcs":[6852],"id":53727,"properties":{"V":230}},{"type":"LineString","arcs":[6853],"id":53736,"properties":{"V":230}},{"type":"LineString","arcs":[6854],"id":53739,"properties":{"V":230}},{"type":"LineString","arcs":[6855],"id":53758,"properties":{"V":230}},{"type":"LineString","arcs":[6856],"id":53780,"properties":{"V":230}},{"type":"LineString","arcs":[6857],"id":53809,"properties":{"V":230}},{"type":"LineString","arcs":[6858],"id":53820,"properties":{"V":230}},{"type":"LineString","arcs":[6859],"id":53845,"properties":{"V":345}},{"type":"LineString","arcs":[6860],"id":53855,"properties":{"V":230}},{"type":"LineString","arcs":[6861],"id":53861,"properties":{"V":230}},{"type":"LineString","arcs":[6862],"id":53877,"properties":{"V":230}},{"type":"LineString","arcs":[6863],"id":53883,"properties":{"V":230}},{"type":"LineString","arcs":[6864],"id":53889,"properties":{"V":230}},{"type":"LineString","arcs":[6865],"id":53897,"properties":{"V":230}},{"type":"LineString","arcs":[6866],"id":53901,"properties":{"V":230}},{"type":"LineString","arcs":[6867],"id":53908,"properties":{"V":345}},{"type":"LineString","arcs":[6868],"id":53911,"properties":{"V":230}},{"type":"LineString","arcs":[6869],"id":53920,"properties":{"V":345}},{"type":"LineString","arcs":[6870],"id":53930,"properties":{"V":230}},{"type":"LineString","arcs":[6871],"id":53940,"properties":{"V":345}},{"type":"LineString","arcs":[6872],"id":53942,"properties":{"V":230}},{"type":"LineString","arcs":[6873],"id":53945,"properties":{"V":230}},{"type":"LineString","arcs":[6874],"id":53949,"properties":{"V":230}},{"type":"LineString","arcs":[6875],"id":53951,"properties":{"V":230}},{"type":"LineString","arcs":[6876],"id":53954,"properties":{"V":230}},{"type":"LineString","arcs":[6877],"id":53962,"properties":{"V":230}},{"type":"LineString","arcs":[6878],"id":53971,"properties":{"V":230}},{"type":"LineString","arcs":[6879],"id":53975,"properties":{"V":345}},{"type":"LineString","arcs":[6880],"id":53992,"properties":{"V":230}},{"type":"LineString","arcs":[6881],"id":53996,"properties":{"V":230}},{"type":"LineString","arcs":[6882],"id":54000,"properties":{"V":230}},{"type":"LineString","arcs":[6883],"id":54003,"properties":{"V":765}},{"type":"LineString","arcs":[6884],"id":54010,"properties":{"V":230}},{"type":"LineString","arcs":[6885],"id":54012,"properties":{"V":345}},{"type":"LineString","arcs":[6886],"id":54026,"properties":{"V":345}},{"type":"LineString","arcs":[6887],"id":54034,"properties":{"V":230}},{"type":"LineString","arcs":[6888],"id":54041,"properties":{"V":230}},{"type":"LineString","arcs":[6889],"id":54042,"properties":{"V":230}},{"type":"LineString","arcs":[6890],"id":54045,"properties":{"V":230}},{"type":"LineString","arcs":[6891],"id":54048,"properties":{"V":230}},{"type":"LineString","arcs":[6892],"id":54056,"properties":{"V":230}},{"type":"LineString","arcs":[6893],"id":54060,"properties":{"V":230}},{"type":"LineString","arcs":[6894],"id":54062,"properties":{"V":500}},{"type":"LineString","arcs":[6895],"id":54076,"properties":{"V":230}},{"type":"LineString","arcs":[6896],"id":54083,"properties":{"V":230}},{"type":"LineString","arcs":[6897],"id":54105,"properties":{"V":230}},{"type":"LineString","arcs":[6898],"id":54111,"properties":{"V":230}},{"type":"LineString","arcs":[6899],"id":54117,"properties":{"V":345}},{"type":"LineString","arcs":[6900],"id":54125,"properties":{"V":230}},{"type":"LineString","arcs":[6901],"id":54131,"properties":{"V":345}},{"type":"LineString","arcs":[6902],"id":54137,"properties":{"V":345}},{"type":"LineString","arcs":[6903],"id":54145,"properties":{"V":345}},{"type":"LineString","arcs":[6904],"id":54157,"properties":{"V":230}},{"type":"LineString","arcs":[6905],"id":54178,"properties":{"V":230}},{"type":"LineString","arcs":[6906],"id":54183,"properties":{"V":230}},{"type":"LineString","arcs":[6907],"id":54196,"properties":{"V":230}},{"type":"LineString","arcs":[6908],"id":54197,"properties":{"V":345}},{"type":"LineString","arcs":[6909],"id":54204,"properties":{"V":500}},{"type":"LineString","arcs":[6910],"id":54206,"properties":{"V":230}},{"type":"LineString","arcs":[6911],"id":54207,"properties":{"V":345}},{"type":"LineString","arcs":[6912],"id":54208,"properties":{"V":230}},{"type":"LineString","arcs":[6913],"id":54218,"properties":{"V":230}},{"type":"LineString","arcs":[6914],"id":54226,"properties":{"V":230}},{"type":"LineString","arcs":[6915],"id":54229,"properties":{"V":500}},{"type":"LineString","arcs":[6916],"id":54238,"properties":{"V":500}},{"type":"LineString","arcs":[6917],"id":54250,"properties":{"V":345}},{"type":"LineString","arcs":[6918],"id":54257,"properties":{"V":500}},{"type":"LineString","arcs":[6919],"id":54261,"properties":{"V":345}},{"type":"LineString","arcs":[6920],"id":54266,"properties":{"V":345}},{"type":"LineString","arcs":[6921],"id":54270,"properties":{"V":230}},{"type":"LineString","arcs":[6922],"id":54273,"properties":{"V":230}},{"type":"LineString","arcs":[6923],"id":54294,"properties":{"V":230}},{"type":"LineString","arcs":[6924],"id":54302,"properties":{"V":500}},{"type":"LineString","arcs":[6925],"id":54305,"properties":{"V":230}},{"type":"LineString","arcs":[6926],"id":54318,"properties":{"V":230}},{"type":"LineString","arcs":[6927],"id":54319,"properties":{"V":230}},{"type":"LineString","arcs":[6928],"id":54325,"properties":{"V":230}},{"type":"LineString","arcs":[6929],"id":54334,"properties":{"V":230}},{"type":"LineString","arcs":[6930,6931],"id":54335,"properties":{"V":230}},{"type":"LineString","arcs":[6932],"id":54341,"properties":{"V":345}},{"type":"LineString","arcs":[6933],"id":54343,"properties":{"V":345}},{"type":"LineString","arcs":[6934],"id":54349,"properties":{"V":230}},{"type":"LineString","arcs":[6935],"id":54356,"properties":{"V":345}},{"type":"LineString","arcs":[6936],"id":54359,"properties":{"V":230}},{"type":"LineString","arcs":[6937],"id":54360,"properties":{"V":230}},{"type":"LineString","arcs":[6938],"id":54362,"properties":{"V":230}},{"type":"LineString","arcs":[6939,6940,6941],"id":54365,"properties":{"V":345}},{"type":"LineString","arcs":[6942],"id":54396,"properties":{"V":230}},{"type":"LineString","arcs":[6943],"id":54397,"properties":{"V":230}},{"type":"LineString","arcs":[6944],"id":54401,"properties":{"V":345}},{"type":"LineString","arcs":[6945],"id":54406,"properties":{"V":345}},{"type":"LineString","arcs":[6946],"id":54407,"properties":{"V":230}},{"type":"LineString","arcs":[6947],"id":54423,"properties":{"V":345}},{"type":"LineString","arcs":[6948],"id":54425,"properties":{"V":230}},{"type":"LineString","arcs":[6949],"id":54442,"properties":{"V":230}},{"type":"LineString","arcs":[6950],"id":54455,"properties":{"V":345}},{"type":"LineString","arcs":[6951],"id":54460,"properties":{"V":345}},{"type":"LineString","arcs":[6952],"id":54480,"properties":{"V":230}},{"type":"LineString","arcs":[6953],"id":54483,"properties":{"V":230}},{"type":"LineString","arcs":[6954],"id":54486,"properties":{"V":345}},{"type":"LineString","arcs":[6955],"id":54487,"properties":{"V":345}},{"type":"LineString","arcs":[6956],"id":54493,"properties":{"V":230}},{"type":"LineString","arcs":[6957],"id":54510,"properties":{"V":500}},{"type":"LineString","arcs":[6958],"id":54525,"properties":{"V":230}},{"type":"LineString","arcs":[6959],"id":54528,"properties":{"V":230}},{"type":"LineString","arcs":[6960],"id":54529,"properties":{"V":230}},{"type":"LineString","arcs":[6961],"id":54540,"properties":{"V":345}},{"type":"LineString","arcs":[6962],"id":54541,"properties":{"V":345}},{"type":"LineString","arcs":[6963],"id":54546,"properties":{"V":345}},{"type":"LineString","arcs":[6964],"id":54571,"properties":{"V":230}},{"type":"LineString","arcs":[6965],"id":54590,"properties":{"V":230}},{"type":"LineString","arcs":[6966],"id":54593,"properties":{"V":230}},{"type":"LineString","arcs":[6967],"id":54610,"properties":{"V":230}},{"type":"LineString","arcs":[6968],"id":54630,"properties":{"V":230}},{"type":"LineString","arcs":[6969],"id":54638,"properties":{"V":345}},{"type":"LineString","arcs":[6970],"id":54650,"properties":{"V":345}},{"type":"LineString","arcs":[6971],"id":54676,"properties":{"V":500}},{"type":"LineString","arcs":[6972],"id":54690,"properties":{"V":230}},{"type":"LineString","arcs":[6973],"id":54691,"properties":{"V":230}},{"type":"LineString","arcs":[6974],"id":54706,"properties":{"V":230}},{"type":"LineString","arcs":[6975],"id":54707,"properties":{"V":230}},{"type":"LineString","arcs":[6976],"id":54713,"properties":{"V":230}},{"type":"LineString","arcs":[6977],"id":54717,"properties":{"V":500}},{"type":"LineString","arcs":[6978],"id":54726,"properties":{"V":500}},{"type":"LineString","arcs":[6979],"id":54735,"properties":{"V":230}},{"type":"LineString","arcs":[6980],"id":54736,"properties":{"V":345}},{"type":"LineString","arcs":[6981],"id":54744,"properties":{"V":230}},{"type":"LineString","arcs":[6982],"id":54748,"properties":{"V":230}},{"type":"LineString","arcs":[6983],"id":54753,"properties":{"V":230}},{"type":"LineString","arcs":[6984],"id":54754,"properties":{"V":230}},{"type":"LineString","arcs":[6985],"id":54758,"properties":{"V":230}},{"type":"LineString","arcs":[6986],"id":54761,"properties":{"V":230}},{"type":"LineString","arcs":[6987],"id":54762,"properties":{"V":345}},{"type":"LineString","arcs":[6988],"id":54773,"properties":{"V":230}},{"type":"LineString","arcs":[6989],"id":54782,"properties":{"V":230}},{"type":"LineString","arcs":[6990],"id":54785,"properties":{"V":345}},{"type":"LineString","arcs":[6991],"id":54788,"properties":{"V":230}},{"type":"LineString","arcs":[6992],"id":54800,"properties":{"V":500}},{"type":"LineString","arcs":[6993],"id":54807,"properties":{"V":230}},{"type":"LineString","arcs":[6994],"id":54832,"properties":{"V":230}},{"type":"LineString","arcs":[6995],"id":54834,"properties":{"V":230}},{"type":"LineString","arcs":[6996],"id":54842,"properties":{"V":230}},{"type":"LineString","arcs":[6997,6998],"id":54848,"properties":{"V":230}},{"type":"LineString","arcs":[6999],"id":54850,"properties":{"V":345}},{"type":"LineString","arcs":[7000],"id":54859,"properties":{"V":230}},{"type":"LineString","arcs":[7001],"id":54860,"properties":{"V":230}},{"type":"LineString","arcs":[7002],"id":54864,"properties":{"V":230}},{"type":"LineString","arcs":[7003],"id":54868,"properties":{"V":345}},{"type":"LineString","arcs":[7004],"id":54871,"properties":{"V":500}},{"type":"LineString","arcs":[7005],"id":54886,"properties":{"V":230}},{"type":"LineString","arcs":[7006],"id":54889,"properties":{"V":345}},{"type":"LineString","arcs":[7007],"id":54897,"properties":{"V":230}},{"type":"LineString","arcs":[7008],"id":54909,"properties":{"V":230}},{"type":"LineString","arcs":[7009],"id":54912,"properties":{"V":345}},{"type":"LineString","arcs":[7010],"id":54918,"properties":{"V":230}},{"type":"LineString","arcs":[7011],"id":54925,"properties":{"V":230}},{"type":"LineString","arcs":[7012],"id":54928,"properties":{"V":345}},{"type":"LineString","arcs":[7013],"id":54930,"properties":{"V":230}},{"type":"LineString","arcs":[7014],"id":54934,"properties":{"V":500}},{"type":"LineString","arcs":[7015,7016],"id":54935,"properties":{"V":345}},{"type":"LineString","arcs":[7017],"id":54939,"properties":{"V":230}},{"type":"LineString","arcs":[7018],"id":54957,"properties":{"V":230}},{"type":"LineString","arcs":[7019],"id":54961,"properties":{"V":345}},{"type":"LineString","arcs":[7020],"id":54968,"properties":{"V":230}},{"type":"LineString","arcs":[7021],"id":54972,"properties":{"V":230}},{"type":"LineString","arcs":[7022],"id":54984,"properties":{"V":345}},{"type":"LineString","arcs":[7023],"id":54996,"properties":{"V":230}},{"type":"LineString","arcs":[7024],"id":55007,"properties":{"V":345}},{"type":"LineString","arcs":[7025],"id":55014,"properties":{"V":230}},{"type":"LineString","arcs":[7026],"id":55018,"properties":{"V":230}},{"type":"LineString","arcs":[7027],"id":55020,"properties":{"V":230}},{"type":"LineString","arcs":[7028],"id":55025,"properties":{"V":230}},{"type":"LineString","arcs":[7029],"id":55031,"properties":{"V":230}},{"type":"LineString","arcs":[7030],"id":55033,"properties":{"V":500}},{"type":"LineString","arcs":[7031],"id":55037,"properties":{"V":500}},{"type":"LineString","arcs":[7032],"id":55057,"properties":{"V":230}},{"type":"LineString","arcs":[7033],"id":55058,"properties":{"V":345}},{"type":"LineString","arcs":[7034],"id":55062,"properties":{"V":345}},{"type":"LineString","arcs":[7035],"id":55064,"properties":{"V":500}},{"type":"LineString","arcs":[7036],"id":55070,"properties":{"V":230}},{"type":"LineString","arcs":[7037],"id":55072,"properties":{"V":230}},{"type":"LineString","arcs":[7038],"id":55081,"properties":{"V":230}},{"type":"LineString","arcs":[7039],"id":55082,"properties":{"V":230}},{"type":"LineString","arcs":[7040],"id":55084,"properties":{"V":230}},{"type":"LineString","arcs":[7041],"id":55086,"properties":{"V":345}},{"type":"LineString","arcs":[7042],"id":55093,"properties":{"V":345}},{"type":"LineString","arcs":[7043],"id":55101,"properties":{"V":230}},{"type":"LineString","arcs":[7044],"id":55111,"properties":{"V":230}},{"type":"LineString","arcs":[7045],"id":55114,"properties":{"V":345}},{"type":"LineString","arcs":[7046],"id":55116,"properties":{"V":230}},{"type":"LineString","arcs":[7047],"id":55121,"properties":{"V":230}},{"type":"LineString","arcs":[7048],"id":55122,"properties":{"V":230}},{"type":"LineString","arcs":[7049],"id":55123,"properties":{"V":230}},{"type":"LineString","arcs":[7050],"id":55129,"properties":{"V":345}},{"type":"LineString","arcs":[7051],"id":55131,"properties":{"V":230}},{"type":"LineString","arcs":[7052],"id":55148,"properties":{"V":345}},{"type":"LineString","arcs":[7053],"id":55149,"properties":{"V":230}},{"type":"LineString","arcs":[7054],"id":55156,"properties":{"V":500}},{"type":"LineString","arcs":[7055],"id":55176,"properties":{"V":230}},{"type":"LineString","arcs":[7056],"id":55177,"properties":{"V":345}},{"type":"LineString","arcs":[7057],"id":55179,"properties":{"V":230}},{"type":"LineString","arcs":[7058],"id":55185,"properties":{"V":230}},{"type":"LineString","arcs":[7059],"id":55194,"properties":{"V":230}},{"type":"LineString","arcs":[7060],"id":55200,"properties":{"V":230}},{"type":"LineString","arcs":[7061],"id":55207,"properties":{"V":230}},{"type":"LineString","arcs":[7062],"id":55208,"properties":{"V":230}},{"type":"LineString","arcs":[7063],"id":55212,"properties":{"V":230}},{"type":"LineString","arcs":[7064],"id":55216,"properties":{"V":230}},{"type":"LineString","arcs":[7065],"id":55221,"properties":{"V":230}},{"type":"LineString","arcs":[7066],"id":55225,"properties":{"V":230}},{"type":"LineString","arcs":[7067],"id":55232,"properties":{"V":500}},{"type":"LineString","arcs":[7068],"id":55236,"properties":{"V":345}},{"type":"LineString","arcs":[7069],"id":55242,"properties":{"V":345}},{"type":"LineString","arcs":[7070,7071],"id":55247,"properties":{"V":230}},{"type":"LineString","arcs":[7072],"id":55250,"properties":{"V":230}},{"type":"LineString","arcs":[7073],"id":55251,"properties":{"V":230}},{"type":"LineString","arcs":[7074],"id":55267,"properties":{"V":230}},{"type":"LineString","arcs":[7075],"id":55283,"properties":{"V":230}},{"type":"LineString","arcs":[7076],"id":55295,"properties":{"V":230}},{"type":"LineString","arcs":[7077],"id":55307,"properties":{"V":345}},{"type":"LineString","arcs":[7078],"id":55323,"properties":{"V":230}},{"type":"LineString","arcs":[7079],"id":55330,"properties":{"V":230}},{"type":"LineString","arcs":[7080],"id":55347,"properties":{"V":230}},{"type":"LineString","arcs":[7081],"id":55352,"properties":{"V":345}},{"type":"LineString","arcs":[7082],"id":55366,"properties":{"V":345}},{"type":"LineString","arcs":[7083],"id":55369,"properties":{"V":230}},{"type":"LineString","arcs":[7084],"id":55374,"properties":{"V":230}},{"type":"LineString","arcs":[7085],"id":55383,"properties":{"V":345}},{"type":"LineString","arcs":[7086],"id":55388,"properties":{"V":345}},{"type":"LineString","arcs":[7087],"id":55393,"properties":{"V":230}},{"type":"LineString","arcs":[7088],"id":55394,"properties":{"V":230}},{"type":"LineString","arcs":[7089,7090],"id":55395,"properties":{"V":230}},{"type":"LineString","arcs":[7091],"id":55402,"properties":{"V":230}},{"type":"LineString","arcs":[7092],"id":55419,"properties":{"V":230}},{"type":"LineString","arcs":[7093],"id":55421,"properties":{"V":230}},{"type":"LineString","arcs":[7094],"id":55425,"properties":{"V":345}},{"type":"LineString","arcs":[7095],"id":55445,"properties":{"V":345}},{"type":"LineString","arcs":[7096],"id":55453,"properties":{"V":230}},{"type":"LineString","arcs":[7097],"id":55463,"properties":{"V":345}},{"type":"LineString","arcs":[7098],"id":55467,"properties":{"V":230}},{"type":"LineString","arcs":[7099],"id":55470,"properties":{"V":345}},{"type":"LineString","arcs":[7100],"id":55471,"properties":{"V":230}},{"type":"LineString","arcs":[7101],"id":55475,"properties":{"V":230}},{"type":"LineString","arcs":[7102],"id":55480,"properties":{"V":230}},{"type":"LineString","arcs":[7103],"id":55523,"properties":{"V":345}},{"type":"LineString","arcs":[7104],"id":55547,"properties":{"V":230}},{"type":"LineString","arcs":[7105],"id":55551,"properties":{"V":230}},{"type":"LineString","arcs":[7106],"id":55558,"properties":{"V":230}},{"type":"LineString","arcs":[7107],"id":55560,"properties":{"V":230}},{"type":"LineString","arcs":[7108],"id":55581,"properties":{"V":230}},{"type":"LineString","arcs":[7109],"id":55582,"properties":{"V":230}},{"type":"LineString","arcs":[7110],"id":55595,"properties":{"V":230}},{"type":"LineString","arcs":[7111],"id":55598,"properties":{"V":345}},{"type":"LineString","arcs":[7112],"id":55609,"properties":{"V":230}},{"type":"LineString","arcs":[7113],"id":55619,"properties":{"V":230}},{"type":"LineString","arcs":[7114],"id":55626,"properties":{"V":230}},{"type":"LineString","arcs":[7115],"id":55627,"properties":{"V":230}},{"type":"LineString","arcs":[7116],"id":55631,"properties":{"V":230}},{"type":"LineString","arcs":[7117],"id":55632,"properties":{"V":230}},{"type":"LineString","arcs":[7118],"id":55648,"properties":{"V":230}},{"type":"LineString","arcs":[7119],"id":55651,"properties":{"V":230}},{"type":"LineString","arcs":[7120],"id":55661,"properties":{"V":500}},{"type":"LineString","arcs":[7121],"id":55678,"properties":{"V":500}},{"type":"LineString","arcs":[7122],"id":55688,"properties":{"V":345}},{"type":"LineString","arcs":[7123],"id":55723,"properties":{"V":230}},{"type":"LineString","arcs":[7124],"id":55728,"properties":{"V":230}},{"type":"LineString","arcs":[7125],"id":55730,"properties":{"V":345}},{"type":"LineString","arcs":[7126],"id":55733,"properties":{"V":345}},{"type":"LineString","arcs":[7127],"id":55737,"properties":{"V":500}},{"type":"LineString","arcs":[7128],"id":55767,"properties":{"V":345}},{"type":"LineString","arcs":[7129],"id":55769,"properties":{"V":230}},{"type":"LineString","arcs":[7130],"id":55770,"properties":{"V":230}},{"type":"LineString","arcs":[7131],"id":55771,"properties":{"V":230}},{"type":"LineString","arcs":[7132],"id":55774,"properties":{"V":345}},{"type":"LineString","arcs":[7133,7134,7135,7136,7137,7138,7139,7140],"id":55775,"properties":{"V":345}},{"type":"LineString","arcs":[7141],"id":55777,"properties":{"V":345}},{"type":"LineString","arcs":[7142],"id":55784,"properties":{"V":230}},{"type":"LineString","arcs":[7143],"id":55788,"properties":{"V":230}},{"type":"LineString","arcs":[7144],"id":55792,"properties":{"V":345}},{"type":"LineString","arcs":[7145],"id":55796,"properties":{"V":230}},{"type":"LineString","arcs":[7146],"id":55809,"properties":{"V":230}},{"type":"LineString","arcs":[7147],"id":55819,"properties":{"V":345}},{"type":"LineString","arcs":[7148],"id":55821,"properties":{"V":345}},{"type":"LineString","arcs":[7149],"id":55827,"properties":{"V":230}},{"type":"LineString","arcs":[7150],"id":55837,"properties":{"V":345}},{"type":"LineString","arcs":[7151],"id":55856,"properties":{"V":230}},{"type":"LineString","arcs":[7152],"id":55860,"properties":{"V":230}},{"type":"LineString","arcs":[7153],"id":55861,"properties":{"V":230}},{"type":"LineString","arcs":[7154],"id":55874,"properties":{"V":230}},{"type":"LineString","arcs":[7155],"id":55888,"properties":{"V":230}},{"type":"LineString","arcs":[7156],"id":55900,"properties":{"V":345}},{"type":"LineString","arcs":[7157],"id":55901,"properties":{"V":345}},{"type":"LineString","arcs":[7158],"id":55904,"properties":{"V":230}},{"type":"LineString","arcs":[7159],"id":55905,"properties":{"V":230}},{"type":"LineString","arcs":[7160],"id":55915,"properties":{"V":230}},{"type":"LineString","arcs":[7161],"id":55923,"properties":{"V":345}},{"type":"LineString","arcs":[7162],"id":55924,"properties":{"V":230}},{"type":"LineString","arcs":[7163],"id":55929,"properties":{"V":500}},{"type":"LineString","arcs":[7164],"id":55930,"properties":{"V":230}},{"type":"LineString","arcs":[7165],"id":55941,"properties":{"V":345}},{"type":"LineString","arcs":[7166],"id":55944,"properties":{"V":230}},{"type":"LineString","arcs":[7167],"id":55953,"properties":{"V":230}},{"type":"LineString","arcs":[7168],"id":55958,"properties":{"V":500}},{"type":"LineString","arcs":[7169],"id":55961,"properties":{"V":230}},{"type":"LineString","arcs":[7170],"id":55984,"properties":{"V":230}},{"type":"LineString","arcs":[7171],"id":55997,"properties":{"V":230}},{"type":"LineString","arcs":[7172],"id":56019,"properties":{"V":345}},{"type":"LineString","arcs":[7173],"id":56023,"properties":{"V":230}},{"type":"LineString","arcs":[7174],"id":56038,"properties":{"V":230}},{"type":"LineString","arcs":[7175],"id":56042,"properties":{"V":230}},{"type":"LineString","arcs":[7176],"id":56060,"properties":{"V":230}},{"type":"LineString","arcs":[7177],"id":56064,"properties":{"V":230}},{"type":"LineString","arcs":[7178],"id":56074,"properties":{"V":345}},{"type":"LineString","arcs":[7179],"id":56075,"properties":{"V":230}},{"type":"LineString","arcs":[7180],"id":56080,"properties":{"V":230}},{"type":"LineString","arcs":[7181],"id":56082,"properties":{"V":230}},{"type":"LineString","arcs":[7182],"id":56083,"properties":{"V":500}},{"type":"LineString","arcs":[7183],"id":56094,"properties":{"V":230}},{"type":"LineString","arcs":[7184],"id":56096,"properties":{"V":230}},{"type":"LineString","arcs":[7185],"id":56111,"properties":{"V":230}},{"type":"LineString","arcs":[7186],"id":56113,"properties":{"V":230}},{"type":"LineString","arcs":[7187],"id":56114,"properties":{"V":345}},{"type":"LineString","arcs":[7188],"id":56116,"properties":{"V":345}},{"type":"LineString","arcs":[7189],"id":56119,"properties":{"V":230}},{"type":"LineString","arcs":[7190],"id":56126,"properties":{"V":345}},{"type":"LineString","arcs":[7191],"id":56130,"properties":{"V":230}},{"type":"LineString","arcs":[7192],"id":56133,"properties":{"V":345}},{"type":"LineString","arcs":[7193],"id":56151,"properties":{"V":230}},{"type":"LineString","arcs":[7194],"id":56160,"properties":{"V":345}},{"type":"LineString","arcs":[7195],"id":56175,"properties":{"V":230}},{"type":"LineString","arcs":[7196],"id":56184,"properties":{"V":230}},{"type":"LineString","arcs":[7197],"id":56187,"properties":{"V":345}},{"type":"LineString","arcs":[7198,7199,7200],"id":56202,"properties":{"V":230}},{"type":"LineString","arcs":[7201],"id":56211,"properties":{"V":230}},{"type":"LineString","arcs":[7202],"id":56215,"properties":{"V":230}},{"type":"LineString","arcs":[7203],"id":56220,"properties":{"V":230}},{"type":"LineString","arcs":[7204],"id":56246,"properties":{"V":230}},{"type":"LineString","arcs":[7205],"id":56252,"properties":{"V":230}},{"type":"LineString","arcs":[7206],"id":56261,"properties":{"V":230}},{"type":"LineString","arcs":[7207],"id":56267,"properties":{"V":230}},{"type":"LineString","arcs":[7208],"id":56276,"properties":{"V":230}},{"type":"LineString","arcs":[7209],"id":56278,"properties":{"V":230}},{"type":"LineString","arcs":[7210],"id":56284,"properties":{"V":230}},{"type":"LineString","arcs":[7211],"id":56292,"properties":{"V":230}},{"type":"LineString","arcs":[7212],"id":56307,"properties":{"V":230}},{"type":"LineString","arcs":[7213],"id":56310,"properties":{"V":230}},{"type":"LineString","arcs":[7214],"id":56314,"properties":{"V":230}},{"type":"LineString","arcs":[7215],"id":56327,"properties":{"V":230}},{"type":"LineString","arcs":[7216],"id":56340,"properties":{"V":345}},{"type":"LineString","arcs":[7217],"id":56350,"properties":{"V":345}},{"type":"LineString","arcs":[7218],"id":56357,"properties":{"V":230}},{"type":"LineString","arcs":[7219],"id":56358,"properties":{"V":230}},{"type":"LineString","arcs":[7220],"id":56361,"properties":{"V":345}},{"type":"LineString","arcs":[7221],"id":56372,"properties":{"V":230}},{"type":"LineString","arcs":[7222],"id":56388,"properties":{"V":500}},{"type":"LineString","arcs":[7223],"id":56391,"properties":{"V":230}},{"type":"LineString","arcs":[7224],"id":56432,"properties":{"V":230}},{"type":"LineString","arcs":[7225],"id":56433,"properties":{"V":230}},{"type":"LineString","arcs":[7226],"id":56438,"properties":{"V":230}},{"type":"LineString","arcs":[7227],"id":56439,"properties":{"V":230}},{"type":"LineString","arcs":[7228],"id":56478,"properties":{"V":230}},{"type":"LineString","arcs":[7229],"id":56482,"properties":{"V":230}},{"type":"LineString","arcs":[7230],"id":56491,"properties":{"V":230}},{"type":"LineString","arcs":[7231,7232],"id":56508,"properties":{"V":230}},{"type":"LineString","arcs":[7233],"id":56510,"properties":{"V":230}},{"type":"LineString","arcs":[7234],"id":56511,"properties":{"V":230}},{"type":"LineString","arcs":[7235],"id":56512,"properties":{"V":345}},{"type":"LineString","arcs":[7236],"id":56526,"properties":{"V":230}},{"type":"LineString","arcs":[7237],"id":56528,"properties":{"V":230}},{"type":"LineString","arcs":[7238],"id":56534,"properties":{"V":230}},{"type":"LineString","arcs":[7239],"id":56542,"properties":{"V":345}},{"type":"LineString","arcs":[7240],"id":56549,"properties":{"V":230}},{"type":"LineString","arcs":[7241],"id":56552,"properties":{"V":230}},{"type":"LineString","arcs":[7242],"id":56558,"properties":{"V":230}},{"type":"LineString","arcs":[7243],"id":56562,"properties":{"V":345}},{"type":"LineString","arcs":[7244],"id":56572,"properties":{"V":230}},{"type":"LineString","arcs":[7245],"id":56579,"properties":{"V":230}},{"type":"LineString","arcs":[7246],"id":56587,"properties":{"V":345}},{"type":"LineString","arcs":[7247],"id":56589,"properties":{"V":230}},{"type":"LineString","arcs":[7248],"id":56591,"properties":{"V":345}},{"type":"LineString","arcs":[7249],"id":56592,"properties":{"V":345}},{"type":"LineString","arcs":[7250],"id":56595,"properties":{"V":500}},{"type":"LineString","arcs":[7251],"id":56597,"properties":{"V":230}},{"type":"LineString","arcs":[7252],"id":56603,"properties":{"V":230}},{"type":"LineString","arcs":[7253],"id":56605,"properties":{"V":345}},{"type":"LineString","arcs":[7254],"id":56608,"properties":{"V":230}},{"type":"LineString","arcs":[7255],"id":56609,"properties":{"V":500}},{"type":"LineString","arcs":[7256],"id":56615,"properties":{"V":230}},{"type":"LineString","arcs":[7257],"id":56621,"properties":{"V":230}},{"type":"LineString","arcs":[7258],"id":56628,"properties":{"V":230}},{"type":"LineString","arcs":[7259],"id":56642,"properties":{"V":345}},{"type":"LineString","arcs":[7260],"id":56644,"properties":{"V":345}},{"type":"LineString","arcs":[7261],"id":56668,"properties":{"V":230}},{"type":"LineString","arcs":[7262],"id":56669,"properties":{"V":230}},{"type":"LineString","arcs":[7263],"id":56676,"properties":{"V":230}},{"type":"LineString","arcs":[7264],"id":56688,"properties":{"V":345}},{"type":"LineString","arcs":[7265],"id":56712,"properties":{"V":500}},{"type":"LineString","arcs":[7266],"id":56723,"properties":{"V":345}},{"type":"LineString","arcs":[7267],"id":56728,"properties":{"V":345}},{"type":"LineString","arcs":[7268],"id":56773,"properties":{"V":230}},{"type":"LineString","arcs":[7269],"id":56784,"properties":{"V":230}},{"type":"LineString","arcs":[7270],"id":56786,"properties":{"V":230}},{"type":"LineString","arcs":[7271],"id":56795,"properties":{"V":345}},{"type":"LineString","arcs":[7272],"id":56797,"properties":{"V":765}},{"type":"LineString","arcs":[7273],"id":56800,"properties":{"V":345}},{"type":"LineString","arcs":[7274],"id":56801,"properties":{"V":345}},{"type":"LineString","arcs":[7275],"id":56802,"properties":{"V":230}},{"type":"LineString","arcs":[7276],"id":56817,"properties":{"V":230}},{"type":"LineString","arcs":[7277],"id":56829,"properties":{"V":230}},{"type":"LineString","arcs":[7278],"id":56840,"properties":{"V":230}},{"type":"LineString","arcs":[7279],"id":56849,"properties":{"V":230}},{"type":"LineString","arcs":[7280],"id":56859,"properties":{"V":230}},{"type":"LineString","arcs":[7281],"id":56862,"properties":{"V":230}},{"type":"LineString","arcs":[7282],"id":56871,"properties":{"V":230}},{"type":"LineString","arcs":[7283],"id":56878,"properties":{"V":230}},{"type":"LineString","arcs":[7284],"id":56880,"properties":{"V":230}},{"type":"LineString","arcs":[7285],"id":56885,"properties":{"V":230}},{"type":"LineString","arcs":[7286],"id":56893,"properties":{"V":345}},{"type":"LineString","arcs":[7287],"id":56894,"properties":{"V":230}},{"type":"LineString","arcs":[7288],"id":56932,"properties":{"V":230}},{"type":"LineString","arcs":[7289],"id":56933,"properties":{"V":345}},{"type":"LineString","arcs":[7290],"id":56940,"properties":{"V":230}},{"type":"LineString","arcs":[7291],"id":56946,"properties":{"V":345}},{"type":"LineString","arcs":[7292],"id":56948,"properties":{"V":345}},{"type":"LineString","arcs":[7293],"id":56955,"properties":{"V":345}},{"type":"LineString","arcs":[7294],"id":56962,"properties":{"V":230}},{"type":"LineString","arcs":[7295],"id":56969,"properties":{"V":345}},{"type":"LineString","arcs":[7296],"id":56978,"properties":{"V":230}},{"type":"LineString","arcs":[7297],"id":56979,"properties":{"V":230}},{"type":"LineString","arcs":[7298],"id":56981,"properties":{"V":230}},{"type":"LineString","arcs":[7299],"id":56986,"properties":{"V":345}},{"type":"LineString","arcs":[7300],"id":56988,"properties":{"V":230}},{"type":"LineString","arcs":[7301],"id":56997,"properties":{"V":230}},{"type":"LineString","arcs":[7302],"id":57005,"properties":{"V":345}},{"type":"LineString","arcs":[7303],"id":57011,"properties":{"V":230}},{"type":"LineString","arcs":[7304],"id":57013,"properties":{"V":230}},{"type":"LineString","arcs":[7305],"id":57027,"properties":{"V":230}},{"type":"LineString","arcs":[7306],"id":57035,"properties":{"V":230}},{"type":"LineString","arcs":[7307],"id":57049,"properties":{"V":230}},{"type":"LineString","arcs":[7308],"id":57050,"properties":{"V":345}},{"type":"LineString","arcs":[7309],"id":57051,"properties":{"V":230}},{"type":"LineString","arcs":[7310],"id":57052,"properties":{"V":345}},{"type":"LineString","arcs":[7311],"id":57054,"properties":{"V":500}},{"type":"LineString","arcs":[7312],"id":57061,"properties":{"V":230}},{"type":"LineString","arcs":[7313,7314],"id":57068,"properties":{"V":500}},{"type":"LineString","arcs":[7315],"id":57078,"properties":{"V":230}},{"type":"LineString","arcs":[7316],"id":57089,"properties":{"V":230}},{"type":"LineString","arcs":[7317],"id":57093,"properties":{"V":345}},{"type":"LineString","arcs":[7318],"id":57094,"properties":{"V":230}},{"type":"LineString","arcs":[7319],"id":57114,"properties":{"V":230}},{"type":"LineString","arcs":[7320],"id":57115,"properties":{"V":230}},{"type":"LineString","arcs":[7321,7322,7323],"id":57131,"properties":{"V":230}},{"type":"LineString","arcs":[7324],"id":57149,"properties":{"V":230}},{"type":"LineString","arcs":[7325],"id":57152,"properties":{"V":230}},{"type":"LineString","arcs":[7326],"id":57171,"properties":{"V":345}},{"type":"LineString","arcs":[7327],"id":57177,"properties":{"V":230}},{"type":"LineString","arcs":[7328],"id":57185,"properties":{"V":230}},{"type":"LineString","arcs":[7329],"id":57209,"properties":{"V":230}},{"type":"LineString","arcs":[7330],"id":57217,"properties":{"V":230}},{"type":"LineString","arcs":[7331],"id":57218,"properties":{"V":230}},{"type":"LineString","arcs":[7332],"id":57220,"properties":{"V":230}},{"type":"LineString","arcs":[7333,7334],"id":57223,"properties":{"V":500}},{"type":"LineString","arcs":[7335],"id":57241,"properties":{"V":345}},{"type":"LineString","arcs":[7336],"id":57263,"properties":{"V":230}},{"type":"LineString","arcs":[7337],"id":57307,"properties":{"V":345}},{"type":"LineString","arcs":[7338],"id":57308,"properties":{"V":230}},{"type":"LineString","arcs":[7339],"id":57326,"properties":{"V":230}},{"type":"LineString","arcs":[7340],"id":57338,"properties":{"V":345}},{"type":"LineString","arcs":[7341],"id":57358,"properties":{"V":230}},{"type":"LineString","arcs":[7342],"id":57359,"properties":{"V":230}},{"type":"LineString","arcs":[7343],"id":57360,"properties":{"V":230}},{"type":"LineString","arcs":[7344],"id":57367,"properties":{"V":345}},{"type":"LineString","arcs":[7345],"id":57381,"properties":{"V":345}},{"type":"LineString","arcs":[7346],"id":57397,"properties":{"V":230}},{"type":"LineString","arcs":[7347],"id":57399,"properties":{"V":345}},{"type":"LineString","arcs":[7348],"id":57407,"properties":{"V":230}},{"type":"LineString","arcs":[7349],"id":57409,"properties":{"V":230}},{"type":"LineString","arcs":[7350],"id":57415,"properties":{"V":230}},{"type":"LineString","arcs":[7351],"id":57424,"properties":{"V":500}},{"type":"LineString","arcs":[7352],"id":57428,"properties":{"V":230}},{"type":"LineString","arcs":[7353],"id":57434,"properties":{"V":230}},{"type":"LineString","arcs":[7354],"id":57444,"properties":{"V":230}},{"type":"LineString","arcs":[7355],"id":57462,"properties":{"V":230}},{"type":"LineString","arcs":[7356],"id":57467,"properties":{"V":230}},{"type":"LineString","arcs":[7357],"id":57481,"properties":{"V":230}},{"type":"LineString","arcs":[7358],"id":57491,"properties":{"V":230}},{"type":"LineString","arcs":[7359],"id":57497,"properties":{"V":230}},{"type":"LineString","arcs":[7360],"id":57500,"properties":{"V":230}},{"type":"LineString","arcs":[7361],"id":57502,"properties":{"V":230}},{"type":"LineString","arcs":[7362],"id":57506,"properties":{"V":230}},{"type":"LineString","arcs":[7363],"id":57507,"properties":{"V":230}},{"type":"LineString","arcs":[7364],"id":57516,"properties":{"V":230}},{"type":"LineString","arcs":[7365],"id":57518,"properties":{"V":230}},{"type":"LineString","arcs":[7366],"id":57519,"properties":{"V":230}},{"type":"LineString","arcs":[7367],"id":57521,"properties":{"V":230}},{"type":"LineString","arcs":[7368],"id":57528,"properties":{"V":230}},{"type":"LineString","arcs":[7369],"id":57531,"properties":{"V":230}},{"type":"LineString","arcs":[7370],"id":57536,"properties":{"V":230}},{"type":"LineString","arcs":[7371],"id":57541,"properties":{"V":230}},{"type":"LineString","arcs":[7372],"id":57560,"properties":{"V":345}},{"type":"LineString","arcs":[7373],"id":57562,"properties":{"V":230}},{"type":"LineString","arcs":[7374],"id":57564,"properties":{"V":345}},{"type":"LineString","arcs":[7375],"id":57573,"properties":{"V":345}},{"type":"LineString","arcs":[7376],"id":57583,"properties":{"V":345}},{"type":"LineString","arcs":[7377],"id":57589,"properties":{"V":345}},{"type":"LineString","arcs":[7378],"id":57594,"properties":{"V":230}},{"type":"LineString","arcs":[7379],"id":57597,"properties":{"V":230}},{"type":"LineString","arcs":[7380],"id":57601,"properties":{"V":345}},{"type":"LineString","arcs":[7381],"id":57603,"properties":{"V":230}},{"type":"LineString","arcs":[7382],"id":57605,"properties":{"V":345}},{"type":"LineString","arcs":[7383],"id":57607,"properties":{"V":230}},{"type":"LineString","arcs":[7384],"id":57611,"properties":{"V":230}},{"type":"LineString","arcs":[7385],"id":57621,"properties":{"V":230}},{"type":"LineString","arcs":[7386],"id":57625,"properties":{"V":230}},{"type":"LineString","arcs":[7387],"id":57632,"properties":{"V":345}},{"type":"LineString","arcs":[7388],"id":57636,"properties":{"V":230}},{"type":"LineString","arcs":[7389],"id":57641,"properties":{"V":345}},{"type":"LineString","arcs":[7390],"id":57644,"properties":{"V":345}},{"type":"LineString","arcs":[7391],"id":57647,"properties":{"V":500}},{"type":"LineString","arcs":[7392],"id":57650,"properties":{"V":230}},{"type":"LineString","arcs":[7393],"id":57663,"properties":{"V":230}},{"type":"LineString","arcs":[7394],"id":57677,"properties":{"V":230}},{"type":"LineString","arcs":[7395],"id":57678,"properties":{"V":230}},{"type":"LineString","arcs":[7396],"id":57687,"properties":{"V":230}},{"type":"LineString","arcs":[7397],"id":57698,"properties":{"V":230}},{"type":"LineString","arcs":[7398],"id":57716,"properties":{"V":345}},{"type":"LineString","arcs":[7399,7400,7401,7402],"id":57730,"properties":{"V":500}},{"type":"LineString","arcs":[7403],"id":57734,"properties":{"V":345}},{"type":"LineString","arcs":[7404],"id":57738,"properties":{"V":345}},{"type":"LineString","arcs":[7405],"id":57739,"properties":{"V":500}},{"type":"LineString","arcs":[7406],"id":57742,"properties":{"V":230}},{"type":"LineString","arcs":[7407],"id":57746,"properties":{"V":345}},{"type":"LineString","arcs":[7408],"id":57747,"properties":{"V":230}},{"type":"LineString","arcs":[7409],"id":57750,"properties":{"V":230}},{"type":"LineString","arcs":[7410],"id":57755,"properties":{"V":230}},{"type":"LineString","arcs":[7411],"id":57764,"properties":{"V":500}},{"type":"LineString","arcs":[7412,7413],"id":57774,"properties":{"V":230}},{"type":"LineString","arcs":[7414,7415],"id":57786,"properties":{"V":500}},{"type":"LineString","arcs":[7416],"id":57792,"properties":{"V":500}},{"type":"LineString","arcs":[7417],"id":57808,"properties":{"V":345}},{"type":"LineString","arcs":[7418],"id":57817,"properties":{"V":230}},{"type":"LineString","arcs":[7419],"id":57823,"properties":{"V":345}},{"type":"LineString","arcs":[7420],"id":57831,"properties":{"V":230}},{"type":"LineString","arcs":[7421],"id":57875,"properties":{"V":230}},{"type":"LineString","arcs":[7422],"id":57880,"properties":{"V":230}},{"type":"LineString","arcs":[7423],"id":57885,"properties":{"V":230}},{"type":"LineString","arcs":[7424],"id":57888,"properties":{"V":230}},{"type":"LineString","arcs":[7425],"id":57893,"properties":{"V":230}},{"type":"LineString","arcs":[7426],"id":57895,"properties":{"V":230}},{"type":"LineString","arcs":[7427],"id":57912,"properties":{"V":500}},{"type":"LineString","arcs":[7428],"id":57918,"properties":{"V":230}},{"type":"LineString","arcs":[7429],"id":57927,"properties":{"V":230}},{"type":"LineString","arcs":[7430],"id":57940,"properties":{"V":230}},{"type":"LineString","arcs":[7431],"id":57961,"properties":{"V":345}},{"type":"LineString","arcs":[7432],"id":57973,"properties":{"V":345}},{"type":"LineString","arcs":[7433],"id":57976,"properties":{"V":230}},{"type":"LineString","arcs":[7434],"id":57993,"properties":{"V":230}},{"type":"LineString","arcs":[7435],"id":57996,"properties":{"V":230}},{"type":"LineString","arcs":[7436],"id":58002,"properties":{"V":230}},{"type":"LineString","arcs":[7437],"id":58006,"properties":{"V":230}},{"type":"LineString","arcs":[7438],"id":58009,"properties":{"V":230}},{"type":"LineString","arcs":[7439],"id":58035,"properties":{"V":230}},{"type":"LineString","arcs":[7440],"id":58040,"properties":{"V":500}},{"type":"LineString","arcs":[7441,7442],"id":58044,"properties":{"V":500}},{"type":"LineString","arcs":[7443],"id":58050,"properties":{"V":230}},{"type":"LineString","arcs":[7444],"id":58056,"properties":{"V":230}},{"type":"LineString","arcs":[7445],"id":58060,"properties":{"V":230}},{"type":"LineString","arcs":[7446],"id":58062,"properties":{"V":230}},{"type":"LineString","arcs":[7447],"id":58081,"properties":{"V":230}},{"type":"LineString","arcs":[7448],"id":58084,"properties":{"V":230}},{"type":"LineString","arcs":[7449],"id":58091,"properties":{"V":345}},{"type":"LineString","arcs":[7450],"id":58095,"properties":{"V":345}},{"type":"LineString","arcs":[7451,7452],"id":58096,"properties":{"V":345}},{"type":"LineString","arcs":[7453],"id":58098,"properties":{"V":230}},{"type":"LineString","arcs":[7454],"id":58100,"properties":{"V":345}},{"type":"LineString","arcs":[7455],"id":58101,"properties":{"V":345}},{"type":"LineString","arcs":[7456],"id":58109,"properties":{"V":345}},{"type":"LineString","arcs":[7457],"id":58115,"properties":{"V":345}},{"type":"LineString","arcs":[7458],"id":58131,"properties":{"V":230}},{"type":"LineString","arcs":[7459],"id":58132,"properties":{"V":500}},{"type":"LineString","arcs":[7460],"id":58143,"properties":{"V":230}},{"type":"LineString","arcs":[7461],"id":58145,"properties":{"V":230}},{"type":"LineString","arcs":[7462],"id":58154,"properties":{"V":345}},{"type":"LineString","arcs":[7463],"id":58156,"properties":{"V":345}},{"type":"LineString","arcs":[7464],"id":58161,"properties":{"V":230}},{"type":"LineString","arcs":[7465],"id":58165,"properties":{"V":230}},{"type":"LineString","arcs":[7466],"id":58169,"properties":{"V":230}},{"type":"LineString","arcs":[7467],"id":58173,"properties":{"V":230}},{"type":"LineString","arcs":[7468],"id":58187,"properties":{"V":230}},{"type":"LineString","arcs":[7469],"id":58192,"properties":{"V":230}},{"type":"LineString","arcs":[7470],"id":58204,"properties":{"V":230}},{"type":"LineString","arcs":[7471],"id":58223,"properties":{"V":230}},{"type":"LineString","arcs":[7472],"id":58242,"properties":{"V":230}},{"type":"LineString","arcs":[7473],"id":58257,"properties":{"V":345}},{"type":"LineString","arcs":[7474],"id":58261,"properties":{"V":230}},{"type":"LineString","arcs":[7475],"id":58262,"properties":{"V":230}},{"type":"LineString","arcs":[7476],"id":58263,"properties":{"V":230}},{"type":"LineString","arcs":[7477],"id":58265,"properties":{"V":230}},{"type":"LineString","arcs":[7478],"id":58266,"properties":{"V":230}},{"type":"LineString","arcs":[7479],"id":58271,"properties":{"V":230}},{"type":"LineString","arcs":[7480],"id":58279,"properties":{"V":230}},{"type":"LineString","arcs":[7481],"id":58283,"properties":{"V":345}},{"type":"LineString","arcs":[7482],"id":58291,"properties":{"V":500}},{"type":"LineString","arcs":[7483],"id":58301,"properties":{"V":345}},{"type":"LineString","arcs":[7484],"id":58304,"properties":{"V":345}},{"type":"LineString","arcs":[7485],"id":58306,"properties":{"V":230}},{"type":"LineString","arcs":[7486],"id":58324,"properties":{"V":230}},{"type":"LineString","arcs":[7487],"id":58339,"properties":{"V":230}},{"type":"LineString","arcs":[7488],"id":58355,"properties":{"V":230}},{"type":"LineString","arcs":[7489],"id":58362,"properties":{"V":230}},{"type":"LineString","arcs":[7490],"id":58380,"properties":{"V":345}},{"type":"LineString","arcs":[7491],"id":58385,"properties":{"V":345}},{"type":"LineString","arcs":[7492],"id":58390,"properties":{"V":500}},{"type":"LineString","arcs":[7493],"id":58400,"properties":{"V":345}},{"type":"LineString","arcs":[7494],"id":58404,"properties":{"V":500}},{"type":"LineString","arcs":[7495],"id":58426,"properties":{"V":230}},{"type":"LineString","arcs":[7496],"id":58440,"properties":{"V":230}},{"type":"LineString","arcs":[7497],"id":58447,"properties":{"V":345}},{"type":"LineString","arcs":[7498],"id":58448,"properties":{"V":500}},{"type":"LineString","arcs":[7499],"id":58455,"properties":{"V":230}},{"type":"LineString","arcs":[7500],"id":58464,"properties":{"V":230}},{"type":"LineString","arcs":[7501],"id":58474,"properties":{"V":345}},{"type":"LineString","arcs":[7502],"id":58498,"properties":{"V":230}},{"type":"LineString","arcs":[7503],"id":58512,"properties":{"V":345}},{"type":"LineString","arcs":[7504],"id":58520,"properties":{"V":230}},{"type":"LineString","arcs":[7505],"id":58530,"properties":{"V":230}},{"type":"LineString","arcs":[7506],"id":58537,"properties":{"V":230}},{"type":"LineString","arcs":[7507],"id":58553,"properties":{"V":230}},{"type":"LineString","arcs":[7508],"id":58560,"properties":{"V":345}},{"type":"LineString","arcs":[7509],"id":58607,"properties":{"V":230}},{"type":"LineString","arcs":[7510],"id":58620,"properties":{"V":500}},{"type":"LineString","arcs":[7511],"id":58626,"properties":{"V":230}},{"type":"LineString","arcs":[7512],"id":58628,"properties":{"V":345}},{"type":"LineString","arcs":[7513],"id":58642,"properties":{"V":230}},{"type":"LineString","arcs":[7514],"id":58644,"properties":{"V":345}},{"type":"LineString","arcs":[7515],"id":58647,"properties":{"V":345}},{"type":"LineString","arcs":[7516],"id":58649,"properties":{"V":345}},{"type":"LineString","arcs":[7517],"id":58657,"properties":{"V":230}},{"type":"LineString","arcs":[7518],"id":58672,"properties":{"V":230}},{"type":"LineString","arcs":[7519],"id":58684,"properties":{"V":230}},{"type":"LineString","arcs":[7520],"id":58691,"properties":{"V":230}},{"type":"LineString","arcs":[7521],"id":58710,"properties":{"V":230}},{"type":"LineString","arcs":[7522],"id":58715,"properties":{"V":230}},{"type":"LineString","arcs":[7523],"id":58721,"properties":{"V":345}},{"type":"LineString","arcs":[7524],"id":58736,"properties":{"V":345}},{"type":"LineString","arcs":[7525],"id":58744,"properties":{"V":230}},{"type":"LineString","arcs":[7526],"id":58769,"properties":{"V":230}},{"type":"LineString","arcs":[7527],"id":58771,"properties":{"V":345}},{"type":"LineString","arcs":[7528],"id":58783,"properties":{"V":230}},{"type":"LineString","arcs":[7529],"id":58795,"properties":{"V":230}},{"type":"LineString","arcs":[7530],"id":58823,"properties":{"V":230}},{"type":"LineString","arcs":[7531],"id":58828,"properties":{"V":230}},{"type":"LineString","arcs":[7532],"id":58833,"properties":{"V":230}},{"type":"LineString","arcs":[7533],"id":58834,"properties":{"V":345}},{"type":"LineString","arcs":[7534],"id":58842,"properties":{"V":230}},{"type":"LineString","arcs":[7535],"id":58844,"properties":{"V":230}},{"type":"LineString","arcs":[7536],"id":58880,"properties":{"V":230}},{"type":"LineString","arcs":[7537],"id":58899,"properties":{"V":230}},{"type":"LineString","arcs":[7538],"id":58908,"properties":{"V":230}},{"type":"LineString","arcs":[7539],"id":58909,"properties":{"V":230}},{"type":"LineString","arcs":[7540],"id":58926,"properties":{"V":230}},{"type":"LineString","arcs":[7541],"id":58939,"properties":{"V":230}},{"type":"LineString","arcs":[7542,7543],"id":58967,"properties":{"V":345}},{"type":"LineString","arcs":[7544],"id":58977,"properties":{"V":230}},{"type":"LineString","arcs":[7545],"id":58985,"properties":{"V":345}},{"type":"LineString","arcs":[7546],"id":59005,"properties":{"V":230}},{"type":"LineString","arcs":[7547],"id":59025,"properties":{"V":345}},{"type":"LineString","arcs":[7548],"id":59031,"properties":{"V":230}},{"type":"LineString","arcs":[7549],"id":59040,"properties":{"V":230}},{"type":"LineString","arcs":[7550],"id":59050,"properties":{"V":345}},{"type":"LineString","arcs":[7551],"id":59053,"properties":{"V":345}},{"type":"LineString","arcs":[7552],"id":59063,"properties":{"V":230}},{"type":"LineString","arcs":[7553],"id":59070,"properties":{"V":230}},{"type":"LineString","arcs":[7554],"id":59078,"properties":{"V":345}},{"type":"LineString","arcs":[7555],"id":59084,"properties":{"V":230}},{"type":"LineString","arcs":[7556],"id":59112,"properties":{"V":230}},{"type":"LineString","arcs":[7557],"id":59124,"properties":{"V":230}},{"type":"LineString","arcs":[7558],"id":59143,"properties":{"V":230}},{"type":"LineString","arcs":[7559],"id":59144,"properties":{"V":345}},{"type":"LineString","arcs":[7560],"id":59151,"properties":{"V":230}},{"type":"LineString","arcs":[7561],"id":59162,"properties":{"V":230}},{"type":"LineString","arcs":[7562],"id":59170,"properties":{"V":230}},{"type":"LineString","arcs":[7563],"id":59194,"properties":{"V":230}},{"type":"LineString","arcs":[7564],"id":59196,"properties":{"V":345}},{"type":"LineString","arcs":[7565],"id":59198,"properties":{"V":345}},{"type":"LineString","arcs":[7566],"id":59201,"properties":{"V":230}},{"type":"LineString","arcs":[7567],"id":59203,"properties":{"V":345}},{"type":"LineString","arcs":[7568],"id":59204,"properties":{"V":230}},{"type":"LineString","arcs":[7569],"id":59205,"properties":{"V":345}},{"type":"LineString","arcs":[7570],"id":59261,"properties":{"V":230}},{"type":"LineString","arcs":[7571],"id":59270,"properties":{"V":500}},{"type":"LineString","arcs":[7572],"id":59271,"properties":{"V":230}},{"type":"LineString","arcs":[7573],"id":59273,"properties":{"V":230}},{"type":"LineString","arcs":[7574],"id":59280,"properties":{"V":230}},{"type":"LineString","arcs":[7575],"id":59289,"properties":{"V":230}},{"type":"LineString","arcs":[7576],"id":59291,"properties":{"V":230}},{"type":"LineString","arcs":[7577],"id":59304,"properties":{"V":500}},{"type":"LineString","arcs":[7578],"id":59305,"properties":{"V":230}},{"type":"LineString","arcs":[7579],"id":59306,"properties":{"V":345}},{"type":"LineString","arcs":[7580],"id":59313,"properties":{"V":230}},{"type":"LineString","arcs":[7581],"id":59317,"properties":{"V":765}},{"type":"LineString","arcs":[7582],"id":59325,"properties":{"V":345}},{"type":"LineString","arcs":[7583],"id":59328,"properties":{"V":345}},{"type":"LineString","arcs":[7584],"id":59337,"properties":{"V":345}},{"type":"LineString","arcs":[7585],"id":59345,"properties":{"V":345}},{"type":"LineString","arcs":[7586],"id":59350,"properties":{"V":230}},{"type":"LineString","arcs":[7587],"id":59356,"properties":{"V":230}},{"type":"LineString","arcs":[7588],"id":59357,"properties":{"V":230}},{"type":"LineString","arcs":[7589],"id":59408,"properties":{"V":230}},{"type":"LineString","arcs":[7590],"id":59413,"properties":{"V":230}},{"type":"LineString","arcs":[7591],"id":59433,"properties":{"V":345}},{"type":"LineString","arcs":[7592],"id":59438,"properties":{"V":345}},{"type":"LineString","arcs":[7593],"id":59443,"properties":{"V":230}},{"type":"LineString","arcs":[7594],"id":59445,"properties":{"V":230}},{"type":"LineString","arcs":[7595],"id":59449,"properties":{"V":230}},{"type":"LineString","arcs":[7596],"id":59465,"properties":{"V":230}},{"type":"LineString","arcs":[7597],"id":59478,"properties":{"V":230}},{"type":"LineString","arcs":[7598],"id":59493,"properties":{"V":230}},{"type":"LineString","arcs":[7599],"id":59497,"properties":{"V":230}},{"type":"LineString","arcs":[7600,7601],"id":59499,"properties":{"V":345}},{"type":"LineString","arcs":[7602],"id":59525,"properties":{"V":230}},{"type":"LineString","arcs":[7603],"id":59531,"properties":{"V":230}},{"type":"LineString","arcs":[7604],"id":59555,"properties":{"V":230}},{"type":"LineString","arcs":[7605],"id":59558,"properties":{"V":345}},{"type":"LineString","arcs":[7606,7607,7608,7609,7610,7611,7612,7613,7614],"id":59559,"properties":{"V":500}},{"type":"LineString","arcs":[7615],"id":59563,"properties":{"V":230}},{"type":"LineString","arcs":[7616],"id":59571,"properties":{"V":230}},{"type":"LineString","arcs":[7617],"id":59575,"properties":{"V":230}},{"type":"LineString","arcs":[7618,7619],"id":59582,"properties":{"V":230}},{"type":"LineString","arcs":[7620],"id":59595,"properties":{"V":230}},{"type":"LineString","arcs":[7621],"id":59604,"properties":{"V":345}},{"type":"LineString","arcs":[7622],"id":59609,"properties":{"V":230}},{"type":"LineString","arcs":[7623],"id":59626,"properties":{"V":230}},{"type":"LineString","arcs":[7624],"id":59630,"properties":{"V":230}},{"type":"LineString","arcs":[7625],"id":59631,"properties":{"V":345}},{"type":"LineString","arcs":[7626],"id":59643,"properties":{"V":230}},{"type":"LineString","arcs":[7627],"id":59652,"properties":{"V":765}},{"type":"LineString","arcs":[7628],"id":59655,"properties":{"V":345}},{"type":"LineString","arcs":[7629],"id":59661,"properties":{"V":230}},{"type":"LineString","arcs":[7630],"id":59684,"properties":{"V":345}},{"type":"LineString","arcs":[7631],"id":59685,"properties":{"V":230}},{"type":"LineString","arcs":[7632,7633,7634],"id":59687,"properties":{"V":230}},{"type":"LineString","arcs":[7635],"id":59720,"properties":{"V":230}},{"type":"LineString","arcs":[7636],"id":59724,"properties":{"V":230}},{"type":"LineString","arcs":[7637],"id":59733,"properties":{"V":345}},{"type":"LineString","arcs":[7638],"id":59736,"properties":{"V":500}},{"type":"LineString","arcs":[7639],"id":59740,"properties":{"V":345}},{"type":"LineString","arcs":[7640],"id":59777,"properties":{"V":230}},{"type":"LineString","arcs":[7641],"id":59785,"properties":{"V":500}},{"type":"LineString","arcs":[7642],"id":59792,"properties":{"V":345}},{"type":"LineString","arcs":[7643],"id":59797,"properties":{"V":230}},{"type":"LineString","arcs":[7644],"id":59798,"properties":{"V":345}},{"type":"LineString","arcs":[7645],"id":59811,"properties":{"V":230}},{"type":"LineString","arcs":[7646,7647,7648],"id":59812,"properties":{"V":230}},{"type":"LineString","arcs":[7649],"id":59813,"properties":{"V":230}},{"type":"LineString","arcs":[7650],"id":59816,"properties":{"V":230}},{"type":"LineString","arcs":[7651],"id":59832,"properties":{"V":230}},{"type":"LineString","arcs":[7652],"id":59837,"properties":{"V":230}},{"type":"LineString","arcs":[7653],"id":59849,"properties":{"V":345}},{"type":"LineString","arcs":[7654],"id":59850,"properties":{"V":345}},{"type":"LineString","arcs":[7655],"id":59865,"properties":{"V":500}},{"type":"LineString","arcs":[7656],"id":59877,"properties":{"V":230}},{"type":"LineString","arcs":[7657],"id":59893,"properties":{"V":230}},{"type":"LineString","arcs":[7658],"id":59906,"properties":{"V":230}},{"type":"LineString","arcs":[7659],"id":59909,"properties":{"V":345}},{"type":"LineString","arcs":[7660],"id":59925,"properties":{"V":230}},{"type":"LineString","arcs":[7661],"id":59928,"properties":{"V":500}},{"type":"LineString","arcs":[7662],"id":59955,"properties":{"V":230}},{"type":"LineString","arcs":[7663],"id":59961,"properties":{"V":230}},{"type":"LineString","arcs":[7664],"id":59980,"properties":{"V":230}},{"type":"LineString","arcs":[7665],"id":60000,"properties":{"V":230}},{"type":"LineString","arcs":[7666],"id":60019,"properties":{"V":230}},{"type":"LineString","arcs":[7667],"id":60022,"properties":{"V":345}},{"type":"LineString","arcs":[7668],"id":60033,"properties":{"V":230}},{"type":"LineString","arcs":[7669],"id":60036,"properties":{"V":230}},{"type":"LineString","arcs":[7670],"id":60037,"properties":{"V":230}},{"type":"LineString","arcs":[7671],"id":60044,"properties":{"V":230}},{"type":"LineString","arcs":[7672],"id":60068,"properties":{"V":345}},{"type":"LineString","arcs":[7673],"id":60072,"properties":{"V":230}},{"type":"LineString","arcs":[7674],"id":60082,"properties":{"V":345}},{"type":"LineString","arcs":[7675],"id":60087,"properties":{"V":345}},{"type":"LineString","arcs":[7676],"id":60093,"properties":{"V":230}},{"type":"LineString","arcs":[7677],"id":60098,"properties":{"V":230}},{"type":"LineString","arcs":[7678],"id":60125,"properties":{"V":345}},{"type":"LineString","arcs":[7679],"id":60128,"properties":{"V":230}},{"type":"LineString","arcs":[7680],"id":60135,"properties":{"V":345}},{"type":"LineString","arcs":[7681],"id":60136,"properties":{"V":345}},{"type":"LineString","arcs":[7682],"id":60144,"properties":{"V":230}},{"type":"LineString","arcs":[7683],"id":60147,"properties":{"V":230}},{"type":"LineString","arcs":[7684],"id":60149,"properties":{"V":230}},{"type":"LineString","arcs":[7685,7686,7687],"id":60150,"properties":{"V":230}},{"type":"LineString","arcs":[7688],"id":60173,"properties":{"V":230}},{"type":"LineString","arcs":[7689],"id":60184,"properties":{"V":230}},{"type":"LineString","arcs":[7690],"id":60192,"properties":{"V":230}},{"type":"LineString","arcs":[7691],"id":60216,"properties":{"V":230}},{"type":"LineString","arcs":[7692],"id":60220,"properties":{"V":230}},{"type":"LineString","arcs":[7693],"id":60230,"properties":{"V":345}},{"type":"LineString","arcs":[7694],"id":60244,"properties":{"V":230}},{"type":"LineString","arcs":[7695],"id":60247,"properties":{"V":230}},{"type":"LineString","arcs":[7696],"id":60271,"properties":{"V":230}},{"type":"LineString","arcs":[7697],"id":60302,"properties":{"V":345}},{"type":"LineString","arcs":[7698],"id":60310,"properties":{"V":230}},{"type":"LineString","arcs":[7699],"id":60324,"properties":{"V":345}},{"type":"LineString","arcs":[7700],"id":60329,"properties":{"V":230}},{"type":"LineString","arcs":[7701],"id":60332,"properties":{"V":345}},{"type":"LineString","arcs":[7702],"id":60346,"properties":{"V":230}},{"type":"LineString","arcs":[7703],"id":60350,"properties":{"V":345}},{"type":"LineString","arcs":[7704],"id":60351,"properties":{"V":230}},{"type":"LineString","arcs":[7705],"id":60356,"properties":{"V":230}},{"type":"LineString","arcs":[7706],"id":60360,"properties":{"V":230}},{"type":"LineString","arcs":[7707,7708,7709],"id":60367,"properties":{"V":345}},{"type":"LineString","arcs":[7710],"id":60374,"properties":{"V":230}},{"type":"LineString","arcs":[7711],"id":60375,"properties":{"V":345}},{"type":"LineString","arcs":[7712],"id":60378,"properties":{"V":500}},{"type":"LineString","arcs":[7713],"id":60382,"properties":{"V":230}},{"type":"LineString","arcs":[7714],"id":60389,"properties":{"V":230}},{"type":"LineString","arcs":[7715],"id":60393,"properties":{"V":345}},{"type":"LineString","arcs":[7716],"id":60400,"properties":{"V":345}},{"type":"LineString","arcs":[7717],"id":60403,"properties":{"V":230}},{"type":"LineString","arcs":[7718],"id":60453,"properties":{"V":230}},{"type":"LineString","arcs":[7719],"id":60460,"properties":{"V":230}},{"type":"LineString","arcs":[7720],"id":60461,"properties":{"V":230}},{"type":"LineString","arcs":[7721,7722,7723],"id":60463,"properties":{"V":230}},{"type":"LineString","arcs":[7724],"id":60464,"properties":{"V":230}},{"type":"LineString","arcs":[7725],"id":60468,"properties":{"V":230}},{"type":"LineString","arcs":[7726],"id":60482,"properties":{"V":230}},{"type":"LineString","arcs":[7727],"id":60483,"properties":{"V":230}},{"type":"LineString","arcs":[7728],"id":60488,"properties":{"V":500}},{"type":"LineString","arcs":[7729],"id":60490,"properties":{"V":345}},{"type":"LineString","arcs":[7730],"id":60508,"properties":{"V":500}},{"type":"LineString","arcs":[7731],"id":60514,"properties":{"V":230}},{"type":"LineString","arcs":[7732],"id":60528,"properties":{"V":230}},{"type":"LineString","arcs":[7733],"id":60530,"properties":{"V":230}},{"type":"LineString","arcs":[7734],"id":60552,"properties":{"V":345}},{"type":"LineString","arcs":[7735],"id":60557,"properties":{"V":230}},{"type":"LineString","arcs":[7736],"id":60560,"properties":{"V":345}},{"type":"LineString","arcs":[7737],"id":60568,"properties":{"V":345}},{"type":"LineString","arcs":[7738],"id":60577,"properties":{"V":230}},{"type":"LineString","arcs":[7739],"id":60588,"properties":{"V":230}},{"type":"LineString","arcs":[7740],"id":60611,"properties":{"V":500}},{"type":"LineString","arcs":[7741],"id":60620,"properties":{"V":230}},{"type":"LineString","arcs":[7742],"id":60633,"properties":{"V":500}},{"type":"LineString","arcs":[7743],"id":60634,"properties":{"V":230}},{"type":"LineString","arcs":[7744],"id":60640,"properties":{"V":230}},{"type":"LineString","arcs":[7745],"id":60641,"properties":{"V":230}},{"type":"LineString","arcs":[7746],"id":60643,"properties":{"V":500}},{"type":"LineString","arcs":[7747],"id":60650,"properties":{"V":230}},{"type":"LineString","arcs":[7748],"id":60651,"properties":{"V":500}},{"type":"LineString","arcs":[7749],"id":60664,"properties":{"V":230}},{"type":"LineString","arcs":[7750],"id":60671,"properties":{"V":230}},{"type":"LineString","arcs":[7751],"id":60674,"properties":{"V":230}},{"type":"LineString","arcs":[7752],"id":60700,"properties":{"V":230}},{"type":"LineString","arcs":[7753],"id":60714,"properties":{"V":230}},{"type":"LineString","arcs":[7754],"id":60716,"properties":{"V":345}},{"type":"LineString","arcs":[7755],"id":60721,"properties":{"V":230}},{"type":"LineString","arcs":[7756],"id":60726,"properties":{"V":230}},{"type":"LineString","arcs":[7757],"id":60730,"properties":{"V":230}},{"type":"LineString","arcs":[7758],"id":60737,"properties":{"V":345}},{"type":"LineString","arcs":[7759],"id":60748,"properties":{"V":230}},{"type":"LineString","arcs":[7760],"id":60769,"properties":{"V":230}},{"type":"LineString","arcs":[7761],"id":60780,"properties":{"V":230}},{"type":"LineString","arcs":[7762],"id":60814,"properties":{"V":345}},{"type":"LineString","arcs":[7763],"id":60823,"properties":{"V":345}},{"type":"LineString","arcs":[7764],"id":60833,"properties":{"V":230}},{"type":"LineString","arcs":[7765],"id":60877,"properties":{"V":230}},{"type":"LineString","arcs":[7766],"id":60881,"properties":{"V":230}},{"type":"LineString","arcs":[7767],"id":60905,"properties":{"V":230}},{"type":"LineString","arcs":[7768],"id":60910,"properties":{"V":500}},{"type":"LineString","arcs":[7769],"id":60940,"properties":{"V":500}},{"type":"LineString","arcs":[7770,7771],"id":60958,"properties":{"V":500}},{"type":"LineString","arcs":[7772],"id":60960,"properties":{"V":230}},{"type":"LineString","arcs":[7773],"id":60965,"properties":{"V":230}},{"type":"LineString","arcs":[7774],"id":60980,"properties":{"V":230}},{"type":"LineString","arcs":[7775],"id":60981,"properties":{"V":230}},{"type":"LineString","arcs":[7776],"id":60983,"properties":{"V":345}},{"type":"LineString","arcs":[7777],"id":60989,"properties":{"V":230}},{"type":"LineString","arcs":[7778,7779,7780],"id":60999,"properties":{"V":230}},{"type":"LineString","arcs":[7781],"id":61001,"properties":{"V":230}},{"type":"LineString","arcs":[7782],"id":61011,"properties":{"V":230}},{"type":"LineString","arcs":[7783],"id":61016,"properties":{"V":230}},{"type":"LineString","arcs":[7784],"id":61035,"properties":{"V":230}},{"type":"LineString","arcs":[7785],"id":61053,"properties":{"V":230}},{"type":"LineString","arcs":[7786],"id":61064,"properties":{"V":500}},{"type":"LineString","arcs":[7787],"id":61084,"properties":{"V":500}},{"type":"LineString","arcs":[7788],"id":61085,"properties":{"V":230}},{"type":"LineString","arcs":[7789],"id":61094,"properties":{"V":230}},{"type":"LineString","arcs":[7790],"id":61101,"properties":{"V":345}},{"type":"LineString","arcs":[7791],"id":61105,"properties":{"V":230}},{"type":"LineString","arcs":[7792],"id":61146,"properties":{"V":230}},{"type":"LineString","arcs":[7793],"id":61154,"properties":{"V":230}},{"type":"LineString","arcs":[7794],"id":61159,"properties":{"V":230}},{"type":"LineString","arcs":[7795],"id":61169,"properties":{"V":230}},{"type":"LineString","arcs":[7796],"id":61184,"properties":{"V":345}},{"type":"LineString","arcs":[7797],"id":61186,"properties":{"V":230}},{"type":"LineString","arcs":[7798],"id":61188,"properties":{"V":345}},{"type":"LineString","arcs":[7799],"id":61189,"properties":{"V":230}},{"type":"LineString","arcs":[7800],"id":61191,"properties":{"V":230}},{"type":"LineString","arcs":[7801],"id":61192,"properties":{"V":345}},{"type":"LineString","arcs":[7802],"id":61195,"properties":{"V":230}},{"type":"LineString","arcs":[7803],"id":61207,"properties":{"V":230}},{"type":"LineString","arcs":[7804],"id":61213,"properties":{"V":345}},{"type":"LineString","arcs":[7805],"id":61226,"properties":{"V":230}},{"type":"LineString","arcs":[7806],"id":61248,"properties":{"V":345}},{"type":"LineString","arcs":[7807],"id":61253,"properties":{"V":230}},{"type":"LineString","arcs":[7808],"id":61264,"properties":{"V":345}},{"type":"LineString","arcs":[7809],"id":61269,"properties":{"V":345}},{"type":"LineString","arcs":[7810],"id":61279,"properties":{"V":230}},{"type":"LineString","arcs":[7811],"id":61283,"properties":{"V":230}},{"type":"LineString","arcs":[7812],"id":61284,"properties":{"V":345}},{"type":"LineString","arcs":[7813],"id":61296,"properties":{"V":500}},{"type":"LineString","arcs":[7814],"id":61298,"properties":{"V":345}},{"type":"LineString","arcs":[7815],"id":61299,"properties":{"V":230}},{"type":"LineString","arcs":[7816],"id":61306,"properties":{"V":230}},{"type":"LineString","arcs":[7817],"id":61326,"properties":{"V":345}},{"type":"LineString","arcs":[7818],"id":61328,"properties":{"V":500}},{"type":"LineString","arcs":[7819],"id":61329,"properties":{"V":230}},{"type":"LineString","arcs":[7820],"id":61339,"properties":{"V":230}},{"type":"LineString","arcs":[7821],"id":61349,"properties":{"V":230}},{"type":"LineString","arcs":[7822],"id":61368,"properties":{"V":500}},{"type":"LineString","arcs":[7823],"id":61372,"properties":{"V":230}},{"type":"LineString","arcs":[7824],"id":61375,"properties":{"V":230}},{"type":"LineString","arcs":[7825],"id":61383,"properties":{"V":230}},{"type":"LineString","arcs":[7826],"id":61384,"properties":{"V":345}},{"type":"LineString","arcs":[7827],"id":61387,"properties":{"V":230}},{"type":"LineString","arcs":[7828],"id":61406,"properties":{"V":500}},{"type":"LineString","arcs":[7829],"id":61410,"properties":{"V":230}},{"type":"LineString","arcs":[7830],"id":61419,"properties":{"V":230}},{"type":"LineString","arcs":[7831],"id":61423,"properties":{"V":230}},{"type":"LineString","arcs":[7832],"id":61446,"properties":{"V":230}},{"type":"LineString","arcs":[7833],"id":61485,"properties":{"V":230}},{"type":"LineString","arcs":[7834],"id":61504,"properties":{"V":345}},{"type":"LineString","arcs":[7835],"id":61507,"properties":{"V":230}},{"type":"LineString","arcs":[7836],"id":61509,"properties":{"V":230}},{"type":"LineString","arcs":[7837],"id":61513,"properties":{"V":230}},{"type":"LineString","arcs":[7838],"id":61517,"properties":{"V":345}},{"type":"LineString","arcs":[7839],"id":61531,"properties":{"V":230}},{"type":"LineString","arcs":[7840],"id":61550,"properties":{"V":345}},{"type":"LineString","arcs":[7841],"id":61560,"properties":{"V":230}},{"type":"LineString","arcs":[7842],"id":61576,"properties":{"V":230}},{"type":"LineString","arcs":[7843],"id":61577,"properties":{"V":230}},{"type":"LineString","arcs":[7844],"id":61601,"properties":{"V":345}},{"type":"LineString","arcs":[7845],"id":61613,"properties":{"V":230}},{"type":"LineString","arcs":[7846],"id":61622,"properties":{"V":345}},{"type":"LineString","arcs":[7847],"id":61643,"properties":{"V":230}},{"type":"LineString","arcs":[7848,7849,7850,7851],"id":61658,"properties":{"V":345}},{"type":"LineString","arcs":[7852],"id":61661,"properties":{"V":345}},{"type":"LineString","arcs":[7853],"id":61671,"properties":{"V":230}},{"type":"LineString","arcs":[7854],"id":61683,"properties":{"V":345}},{"type":"LineString","arcs":[7855],"id":61684,"properties":{"V":230}},{"type":"LineString","arcs":[7856],"id":61710,"properties":{"V":230}},{"type":"LineString","arcs":[7857],"id":61712,"properties":{"V":230}},{"type":"LineString","arcs":[7858],"id":61713,"properties":{"V":230}},{"type":"LineString","arcs":[7859],"id":61716,"properties":{"V":230}},{"type":"LineString","arcs":[7860],"id":61732,"properties":{"V":230}},{"type":"LineString","arcs":[7861],"id":61733,"properties":{"V":345}},{"type":"LineString","arcs":[7862],"id":61742,"properties":{"V":230}},{"type":"LineString","arcs":[7863],"id":61744,"properties":{"V":345}},{"type":"LineString","arcs":[7864],"id":61747,"properties":{"V":230}},{"type":"LineString","arcs":[7865],"id":61754,"properties":{"V":230}},{"type":"LineString","arcs":[7866],"id":61756,"properties":{"V":230}},{"type":"LineString","arcs":[7867],"id":61777,"properties":{"V":230}},{"type":"LineString","arcs":[7868],"id":61779,"properties":{"V":230}},{"type":"LineString","arcs":[7869],"id":61780,"properties":{"V":765}},{"type":"LineString","arcs":[7870,7871],"id":61782,"properties":{"V":345}},{"type":"LineString","arcs":[7872],"id":61793,"properties":{"V":345}},{"type":"LineString","arcs":[7873],"id":61795,"properties":{"V":345}},{"type":"LineString","arcs":[7874,7875],"id":61805,"properties":{"V":345}},{"type":"LineString","arcs":[7876],"id":61806,"properties":{"V":345}},{"type":"LineString","arcs":[7877],"id":61809,"properties":{"V":230}},{"type":"LineString","arcs":[7878],"id":61816,"properties":{"V":230}},{"type":"LineString","arcs":[7879],"id":61819,"properties":{"V":230}},{"type":"LineString","arcs":[7880],"id":61825,"properties":{"V":345}},{"type":"LineString","arcs":[7881],"id":61830,"properties":{"V":345}},{"type":"LineString","arcs":[7882],"id":61832,"properties":{"V":500}},{"type":"LineString","arcs":[7883],"id":61843,"properties":{"V":230}},{"type":"LineString","arcs":[7884],"id":61846,"properties":{"V":345}},{"type":"LineString","arcs":[7885],"id":61859,"properties":{"V":345}},{"type":"LineString","arcs":[7886],"id":61864,"properties":{"V":230}},{"type":"LineString","arcs":[7887],"id":61866,"properties":{"V":230}},{"type":"LineString","arcs":[7888],"id":61869,"properties":{"V":345}},{"type":"LineString","arcs":[7889],"id":61883,"properties":{"V":230}},{"type":"LineString","arcs":[7890],"id":61888,"properties":{"V":230}},{"type":"LineString","arcs":[7891],"id":61889,"properties":{"V":230}},{"type":"LineString","arcs":[7892],"id":61891,"properties":{"V":345}},{"type":"LineString","arcs":[7893],"id":61918,"properties":{"V":230}},{"type":"LineString","arcs":[7894],"id":61926,"properties":{"V":230}},{"type":"LineString","arcs":[7895],"id":61930,"properties":{"V":230}},{"type":"LineString","arcs":[7896,7897],"id":61944,"properties":{"V":345}},{"type":"LineString","arcs":[7898],"id":61960,"properties":{"V":345}},{"type":"LineString","arcs":[7899],"id":61966,"properties":{"V":345}},{"type":"LineString","arcs":[7900],"id":61976,"properties":{"V":345}},{"type":"LineString","arcs":[7901],"id":61979,"properties":{"V":230}},{"type":"LineString","arcs":[7902],"id":61980,"properties":{"V":345}},{"type":"LineString","arcs":[7903],"id":61984,"properties":{"V":230}},{"type":"LineString","arcs":[7904],"id":61993,"properties":{"V":230}},{"type":"LineString","arcs":[7905],"id":61994,"properties":{"V":230}},{"type":"LineString","arcs":[7906],"id":62002,"properties":{"V":230}},{"type":"LineString","arcs":[7907],"id":62003,"properties":{"V":230}},{"type":"LineString","arcs":[7908],"id":62004,"properties":{"V":230}},{"type":"LineString","arcs":[7909],"id":62022,"properties":{"V":230}},{"type":"LineString","arcs":[7910],"id":62025,"properties":{"V":230}},{"type":"LineString","arcs":[7911],"id":62027,"properties":{"V":230}},{"type":"LineString","arcs":[7912],"id":62036,"properties":{"V":500}},{"type":"LineString","arcs":[7913],"id":62040,"properties":{"V":230}},{"type":"LineString","arcs":[7914],"id":62041,"properties":{"V":345}},{"type":"LineString","arcs":[7915],"id":62043,"properties":{"V":230}},{"type":"LineString","arcs":[7916],"id":62055,"properties":{"V":230}},{"type":"LineString","arcs":[7917],"id":62056,"properties":{"V":230}},{"type":"LineString","arcs":[7918],"id":62061,"properties":{"V":500}},{"type":"LineString","arcs":[7919],"id":62062,"properties":{"V":230}},{"type":"LineString","arcs":[7920],"id":62069,"properties":{"V":230}},{"type":"LineString","arcs":[7921],"id":62074,"properties":{"V":345}},{"type":"LineString","arcs":[7922],"id":62088,"properties":{"V":230}},{"type":"LineString","arcs":[7923],"id":62089,"properties":{"V":230}},{"type":"LineString","arcs":[7924],"id":62090,"properties":{"V":345}},{"type":"LineString","arcs":[7925],"id":62099,"properties":{"V":345}},{"type":"LineString","arcs":[7926],"id":62108,"properties":{"V":230}},{"type":"LineString","arcs":[7927],"id":62111,"properties":{"V":230}},{"type":"LineString","arcs":[7928],"id":62112,"properties":{"V":345}},{"type":"LineString","arcs":[7929],"id":62116,"properties":{"V":230}},{"type":"LineString","arcs":[7930],"id":62120,"properties":{"V":345}},{"type":"LineString","arcs":[7931],"id":62128,"properties":{"V":345}},{"type":"LineString","arcs":[7932],"id":62143,"properties":{"V":230}},{"type":"LineString","arcs":[7933],"id":62160,"properties":{"V":230}},{"type":"LineString","arcs":[7934],"id":62168,"properties":{"V":230}},{"type":"LineString","arcs":[7935],"id":62173,"properties":{"V":230}},{"type":"LineString","arcs":[7936],"id":62183,"properties":{"V":345}},{"type":"LineString","arcs":[7937,7938],"id":62195,"properties":{"V":345}},{"type":"LineString","arcs":[7939],"id":62205,"properties":{"V":345}},{"type":"LineString","arcs":[7940],"id":62216,"properties":{"V":345}},{"type":"LineString","arcs":[7941],"id":62218,"properties":{"V":230}},{"type":"LineString","arcs":[7942],"id":62219,"properties":{"V":230}},{"type":"LineString","arcs":[7943],"id":62228,"properties":{"V":230}},{"type":"LineString","arcs":[7944],"id":62243,"properties":{"V":230}},{"type":"LineString","arcs":[7945],"id":62256,"properties":{"V":230}},{"type":"LineString","arcs":[7946],"id":62275,"properties":{"V":230}},{"type":"LineString","arcs":[7947],"id":62288,"properties":{"V":230}},{"type":"LineString","arcs":[7948],"id":62290,"properties":{"V":230}},{"type":"LineString","arcs":[7949],"id":62329,"properties":{"V":230}},{"type":"LineString","arcs":[7950],"id":62338,"properties":{"V":230}},{"type":"LineString","arcs":[7951],"id":62339,"properties":{"V":230}},{"type":"LineString","arcs":[7952],"id":62348,"properties":{"V":500}},{"type":"LineString","arcs":[7953],"id":62350,"properties":{"V":230}},{"type":"LineString","arcs":[7954],"id":62362,"properties":{"V":230}},{"type":"LineString","arcs":[7955],"id":62368,"properties":{"V":230}},{"type":"LineString","arcs":[7956],"id":62373,"properties":{"V":230}},{"type":"LineString","arcs":[7957],"id":62378,"properties":{"V":230}},{"type":"LineString","arcs":[7958],"id":62383,"properties":{"V":230}},{"type":"LineString","arcs":[7959],"id":62390,"properties":{"V":345}},{"type":"LineString","arcs":[7960],"id":62394,"properties":{"V":230}},{"type":"LineString","arcs":[7961],"id":62402,"properties":{"V":345}},{"type":"LineString","arcs":[7962],"id":62413,"properties":{"V":345}},{"type":"LineString","arcs":[7963],"id":62414,"properties":{"V":230}},{"type":"LineString","arcs":[7964],"id":62424,"properties":{"V":230}},{"type":"LineString","arcs":[7965],"id":62440,"properties":{"V":230}},{"type":"LineString","arcs":[7966],"id":62458,"properties":{"V":345}},{"type":"LineString","arcs":[7967],"id":62459,"properties":{"V":230}},{"type":"LineString","arcs":[7968],"id":62470,"properties":{"V":230}},{"type":"LineString","arcs":[7969],"id":62474,"properties":{"V":230}},{"type":"LineString","arcs":[7970],"id":62475,"properties":{"V":345}},{"type":"LineString","arcs":[7971],"id":62480,"properties":{"V":500}},{"type":"LineString","arcs":[7972],"id":62495,"properties":{"V":230}},{"type":"LineString","arcs":[7973],"id":62497,"properties":{"V":230}},{"type":"LineString","arcs":[7974],"id":62499,"properties":{"V":230}},{"type":"LineString","arcs":[7975],"id":62502,"properties":{"V":230}},{"type":"LineString","arcs":[7976],"id":62504,"properties":{"V":230}},{"type":"LineString","arcs":[7977],"id":62508,"properties":{"V":345}},{"type":"LineString","arcs":[7978],"id":62509,"properties":{"V":230}},{"type":"LineString","arcs":[7979],"id":62513,"properties":{"V":230}},{"type":"LineString","arcs":[7980],"id":62514,"properties":{"V":765}},{"type":"LineString","arcs":[7981],"id":62521,"properties":{"V":230}},{"type":"LineString","arcs":[7982],"id":62523,"properties":{"V":345}},{"type":"LineString","arcs":[7983],"id":62525,"properties":{"V":500}},{"type":"LineString","arcs":[7984],"id":62545,"properties":{"V":345}},{"type":"LineString","arcs":[7985],"id":62547,"properties":{"V":230}},{"type":"LineString","arcs":[7986],"id":62558,"properties":{"V":345}},{"type":"LineString","arcs":[7987],"id":62560,"properties":{"V":230}},{"type":"LineString","arcs":[7988],"id":62564,"properties":{"V":230}},{"type":"LineString","arcs":[7989],"id":62573,"properties":{"V":345}},{"type":"LineString","arcs":[7990],"id":62586,"properties":{"V":230}},{"type":"LineString","arcs":[7991],"id":62587,"properties":{"V":345}},{"type":"LineString","arcs":[7992],"id":62598,"properties":{"V":345}},{"type":"LineString","arcs":[7993],"id":62602,"properties":{"V":230}},{"type":"LineString","arcs":[7994],"id":62608,"properties":{"V":230}},{"type":"LineString","arcs":[7995],"id":62614,"properties":{"V":230}},{"type":"LineString","arcs":[7996],"id":62615,"properties":{"V":230}},{"type":"LineString","arcs":[7997],"id":62622,"properties":{"V":230}},{"type":"LineString","arcs":[7998],"id":62638,"properties":{"V":230}},{"type":"LineString","arcs":[7999,8000],"id":62650,"properties":{"V":230}},{"type":"LineString","arcs":[8001],"id":62655,"properties":{"V":230}},{"type":"LineString","arcs":[8002],"id":62661,"properties":{"V":500}},{"type":"LineString","arcs":[8003],"id":62670,"properties":{"V":230}},{"type":"LineString","arcs":[8004],"id":62672,"properties":{"V":345}},{"type":"LineString","arcs":[8005],"id":62675,"properties":{"V":230}},{"type":"LineString","arcs":[8006],"id":62676,"properties":{"V":345}},{"type":"LineString","arcs":[8007],"id":62680,"properties":{"V":230}},{"type":"LineString","arcs":[8008],"id":62683,"properties":{"V":230}},{"type":"LineString","arcs":[8009],"id":62684,"properties":{"V":345}},{"type":"LineString","arcs":[8010],"id":62692,"properties":{"V":230}},{"type":"LineString","arcs":[8011],"id":62704,"properties":{"V":345}},{"type":"LineString","arcs":[8012],"id":62710,"properties":{"V":230}},{"type":"LineString","arcs":[8013],"id":62714,"properties":{"V":345}},{"type":"LineString","arcs":[8014],"id":62718,"properties":{"V":345}},{"type":"LineString","arcs":[8015],"id":62721,"properties":{"V":230}},{"type":"LineString","arcs":[8016],"id":62723,"properties":{"V":345}},{"type":"LineString","arcs":[8017],"id":62728,"properties":{"V":230}},{"type":"LineString","arcs":[8018],"id":62730,"properties":{"V":230}},{"type":"LineString","arcs":[8019],"id":62731,"properties":{"V":345}},{"type":"LineString","arcs":[8020],"id":62738,"properties":{"V":230}},{"type":"LineString","arcs":[8021],"id":62739,"properties":{"V":230}},{"type":"LineString","arcs":[8022],"id":62763,"properties":{"V":500}},{"type":"LineString","arcs":[8023],"id":62772,"properties":{"V":230}},{"type":"LineString","arcs":[8024],"id":62776,"properties":{"V":230}},{"type":"LineString","arcs":[8025],"id":62777,"properties":{"V":230}},{"type":"LineString","arcs":[8026],"id":62789,"properties":{"V":230}},{"type":"LineString","arcs":[8027],"id":62822,"properties":{"V":345}},{"type":"LineString","arcs":[8028],"id":62846,"properties":{"V":230}},{"type":"LineString","arcs":[8029],"id":62851,"properties":{"V":345}},{"type":"LineString","arcs":[8030],"id":62860,"properties":{"V":230}},{"type":"LineString","arcs":[8031],"id":62885,"properties":{"V":230}},{"type":"LineString","arcs":[8032],"id":62909,"properties":{"V":230}},{"type":"LineString","arcs":[8033],"id":62924,"properties":{"V":230}},{"type":"LineString","arcs":[8034],"id":62927,"properties":{"V":230}},{"type":"LineString","arcs":[8035],"id":62932,"properties":{"V":230}},{"type":"LineString","arcs":[8036],"id":62947,"properties":{"V":230}},{"type":"LineString","arcs":[8037],"id":62958,"properties":{"V":230}},{"type":"LineString","arcs":[8038],"id":62995,"properties":{"V":345}},{"type":"LineString","arcs":[8039],"id":63000,"properties":{"V":230}},{"type":"LineString","arcs":[8040],"id":63015,"properties":{"V":230}},{"type":"LineString","arcs":[8041],"id":63021,"properties":{"V":230}},{"type":"LineString","arcs":[8042],"id":63025,"properties":{"V":230}},{"type":"LineString","arcs":[8043,8044],"id":63030,"properties":{"V":230}},{"type":"LineString","arcs":[8045],"id":63035,"properties":{"V":230}},{"type":"LineString","arcs":[8046],"id":63053,"properties":{"V":230}},{"type":"LineString","arcs":[8047],"id":63060,"properties":{"V":345}},{"type":"LineString","arcs":[8048],"id":63077,"properties":{"V":230}},{"type":"LineString","arcs":[8049],"id":63086,"properties":{"V":345}},{"type":"LineString","arcs":[8050],"id":63094,"properties":{"V":230}},{"type":"LineString","arcs":[8051],"id":63097,"properties":{"V":230}},{"type":"LineString","arcs":[8052],"id":63098,"properties":{"V":500}},{"type":"LineString","arcs":[8053],"id":63123,"properties":{"V":345}},{"type":"LineString","arcs":[8054],"id":63139,"properties":{"V":230}},{"type":"LineString","arcs":[8055],"id":63146,"properties":{"V":230}},{"type":"LineString","arcs":[8056],"id":63153,"properties":{"V":230}},{"type":"LineString","arcs":[8057],"id":63161,"properties":{"V":345}},{"type":"LineString","arcs":[8058],"id":63171,"properties":{"V":500}},{"type":"LineString","arcs":[8059],"id":63174,"properties":{"V":230}},{"type":"LineString","arcs":[8060],"id":63184,"properties":{"V":230}},{"type":"LineString","arcs":[8061],"id":63194,"properties":{"V":230}},{"type":"LineString","arcs":[8062],"id":63202,"properties":{"V":230}},{"type":"LineString","arcs":[8063],"id":63203,"properties":{"V":230}},{"type":"LineString","arcs":[8064,8065],"id":63208,"properties":{"V":345}},{"type":"LineString","arcs":[8066],"id":63213,"properties":{"V":345}},{"type":"LineString","arcs":[8067],"id":63214,"properties":{"V":230}},{"type":"LineString","arcs":[8068],"id":63230,"properties":{"V":230}},{"type":"LineString","arcs":[8069],"id":63250,"properties":{"V":345}},{"type":"LineString","arcs":[8070],"id":63251,"properties":{"V":230}},{"type":"LineString","arcs":[8071],"id":63252,"properties":{"V":230}},{"type":"LineString","arcs":[8072],"id":63258,"properties":{"V":345}},{"type":"LineString","arcs":[8073,8074,8075],"id":63270,"properties":{"V":345}},{"type":"LineString","arcs":[8076],"id":63282,"properties":{"V":230}},{"type":"LineString","arcs":[8077],"id":63305,"properties":{"V":230}},{"type":"LineString","arcs":[8078],"id":63310,"properties":{"V":230}},{"type":"LineString","arcs":[8079],"id":63311,"properties":{"V":500}},{"type":"LineString","arcs":[8080],"id":63315,"properties":{"V":230}},{"type":"LineString","arcs":[8081],"id":63321,"properties":{"V":230}},{"type":"LineString","arcs":[8082],"id":63325,"properties":{"V":230}},{"type":"LineString","arcs":[8083],"id":63328,"properties":{"V":230}},{"type":"LineString","arcs":[8084],"id":63331,"properties":{"V":230}},{"type":"LineString","arcs":[8085],"id":63351,"properties":{"V":345}},{"type":"LineString","arcs":[8086],"id":63355,"properties":{"V":230}},{"type":"LineString","arcs":[8087],"id":63373,"properties":{"V":345}},{"type":"LineString","arcs":[8088],"id":63377,"properties":{"V":230}},{"type":"LineString","arcs":[8089],"id":63384,"properties":{"V":230}},{"type":"LineString","arcs":[8090],"id":63386,"properties":{"V":345}},{"type":"LineString","arcs":[8091],"id":63387,"properties":{"V":345}},{"type":"LineString","arcs":[8092],"id":63425,"properties":{"V":345}},{"type":"LineString","arcs":[8093],"id":63427,"properties":{"V":230}},{"type":"LineString","arcs":[8094],"id":63433,"properties":{"V":230}},{"type":"LineString","arcs":[8095],"id":63459,"properties":{"V":345}},{"type":"LineString","arcs":[8096],"id":63466,"properties":{"V":345}},{"type":"LineString","arcs":[8097,8098],"id":63477,"properties":{"V":230}},{"type":"LineString","arcs":[8099],"id":63481,"properties":{"V":230}},{"type":"LineString","arcs":[8100],"id":63483,"properties":{"V":500}},{"type":"LineString","arcs":[8101],"id":63484,"properties":{"V":345}},{"type":"LineString","arcs":[8102],"id":63485,"properties":{"V":230}},{"type":"LineString","arcs":[8103],"id":63486,"properties":{"V":500}},{"type":"LineString","arcs":[8104],"id":63488,"properties":{"V":230}},{"type":"LineString","arcs":[8105],"id":63491,"properties":{"V":230}},{"type":"LineString","arcs":[8106],"id":63493,"properties":{"V":345}},{"type":"LineString","arcs":[8107],"id":63502,"properties":{"V":230}},{"type":"LineString","arcs":[8108],"id":63525,"properties":{"V":230}},{"type":"LineString","arcs":[8109],"id":63543,"properties":{"V":230}},{"type":"LineString","arcs":[8110],"id":63554,"properties":{"V":345}},{"type":"LineString","arcs":[8111],"id":63559,"properties":{"V":230}},{"type":"LineString","arcs":[8112],"id":63568,"properties":{"V":230}},{"type":"LineString","arcs":[8113],"id":63583,"properties":{"V":345}},{"type":"LineString","arcs":[8114],"id":63602,"properties":{"V":230}},{"type":"LineString","arcs":[8115],"id":63608,"properties":{"V":230}},{"type":"LineString","arcs":[8116],"id":63617,"properties":{"V":230}},{"type":"LineString","arcs":[8117],"id":63620,"properties":{"V":230}},{"type":"LineString","arcs":[8118],"id":63627,"properties":{"V":345}},{"type":"LineString","arcs":[8119],"id":63650,"properties":{"V":230}},{"type":"LineString","arcs":[8120],"id":63676,"properties":{"V":230}},{"type":"LineString","arcs":[8121],"id":63696,"properties":{"V":230}},{"type":"LineString","arcs":[8122],"id":63698,"properties":{"V":230}},{"type":"LineString","arcs":[8123],"id":63723,"properties":{"V":230}},{"type":"LineString","arcs":[8124],"id":63729,"properties":{"V":230}},{"type":"LineString","arcs":[8125],"id":63731,"properties":{"V":230}},{"type":"LineString","arcs":[8126],"id":63732,"properties":{"V":500}},{"type":"LineString","arcs":[8127],"id":63733,"properties":{"V":230}},{"type":"LineString","arcs":[8128],"id":63734,"properties":{"V":230}},{"type":"LineString","arcs":[8129],"id":63739,"properties":{"V":230}},{"type":"LineString","arcs":[8130],"id":63742,"properties":{"V":230}},{"type":"LineString","arcs":[8131],"id":63752,"properties":{"V":230}},{"type":"LineString","arcs":[8132],"id":63760,"properties":{"V":345}},{"type":"LineString","arcs":[8133],"id":63773,"properties":{"V":500}},{"type":"LineString","arcs":[8134],"id":63794,"properties":{"V":345}},{"type":"LineString","arcs":[8135],"id":63796,"properties":{"V":345}},{"type":"LineString","arcs":[8136],"id":63797,"properties":{"V":230}},{"type":"LineString","arcs":[8137],"id":63799,"properties":{"V":230}},{"type":"LineString","arcs":[8138],"id":63806,"properties":{"V":345}},{"type":"LineString","arcs":[8139],"id":63815,"properties":{"V":230}},{"type":"LineString","arcs":[8140],"id":63822,"properties":{"V":230}},{"type":"LineString","arcs":[8141],"id":63827,"properties":{"V":230}},{"type":"LineString","arcs":[8142],"id":63829,"properties":{"V":230}},{"type":"LineString","arcs":[8143],"id":63834,"properties":{"V":230}},{"type":"LineString","arcs":[8144],"id":63835,"properties":{"V":230}},{"type":"LineString","arcs":[8145],"id":63851,"properties":{"V":230}},{"type":"LineString","arcs":[8146],"id":63852,"properties":{"V":230}},{"type":"LineString","arcs":[8147],"id":63863,"properties":{"V":230}},{"type":"LineString","arcs":[8148],"id":63864,"properties":{"V":230}},{"type":"LineString","arcs":[8149],"id":63866,"properties":{"V":500}},{"type":"LineString","arcs":[8150],"id":63867,"properties":{"V":345}},{"type":"LineString","arcs":[8151],"id":63875,"properties":{"V":345}},{"type":"LineString","arcs":[8152],"id":63877,"properties":{"V":230}},{"type":"LineString","arcs":[8153],"id":63885,"properties":{"V":230}},{"type":"LineString","arcs":[8154],"id":63887,"properties":{"V":230}},{"type":"LineString","arcs":[8155],"id":63893,"properties":{"V":500}},{"type":"LineString","arcs":[8156],"id":63897,"properties":{"V":230}},{"type":"LineString","arcs":[8157],"id":63901,"properties":{"V":230}},{"type":"LineString","arcs":[8158],"id":63908,"properties":{"V":230}},{"type":"LineString","arcs":[8159],"id":63915,"properties":{"V":345}},{"type":"LineString","arcs":[8160],"id":63924,"properties":{"V":230}},{"type":"LineString","arcs":[8161],"id":63925,"properties":{"V":230}},{"type":"LineString","arcs":[8162],"id":63934,"properties":{"V":230}},{"type":"LineString","arcs":[8163],"id":63958,"properties":{"V":345}},{"type":"LineString","arcs":[8164],"id":63960,"properties":{"V":345}},{"type":"LineString","arcs":[8165],"id":63964,"properties":{"V":230}},{"type":"LineString","arcs":[8166],"id":63986,"properties":{"V":230}},{"type":"LineString","arcs":[8167],"id":63991,"properties":{"V":230}},{"type":"LineString","arcs":[8168],"id":63996,"properties":{"V":230}},{"type":"LineString","arcs":[8169],"id":64002,"properties":{"V":230}},{"type":"LineString","arcs":[8170],"id":64005,"properties":{"V":230}},{"type":"LineString","arcs":[8171],"id":64016,"properties":{"V":230}},{"type":"LineString","arcs":[8172],"id":64023,"properties":{"V":500}},{"type":"LineString","arcs":[8173],"id":64037,"properties":{"V":230}},{"type":"LineString","arcs":[8174],"id":64044,"properties":{"V":345}},{"type":"LineString","arcs":[8175],"id":64077,"properties":{"V":230}},{"type":"LineString","arcs":[8176],"id":64078,"properties":{"V":345}},{"type":"LineString","arcs":[8177],"id":64079,"properties":{"V":230}},{"type":"LineString","arcs":[8178],"id":64088,"properties":{"V":230}},{"type":"LineString","arcs":[8179,8180],"id":64091,"properties":{"V":230}},{"type":"LineString","arcs":[8181],"id":64093,"properties":{"V":230}},{"type":"LineString","arcs":[8182],"id":64114,"properties":{"V":230}},{"type":"LineString","arcs":[8183],"id":64119,"properties":{"V":230}},{"type":"LineString","arcs":[8184],"id":64136,"properties":{"V":345}},{"type":"LineString","arcs":[8185],"id":64138,"properties":{"V":230}},{"type":"LineString","arcs":[8186],"id":64139,"properties":{"V":230}},{"type":"LineString","arcs":[8187],"id":64184,"properties":{"V":345}},{"type":"LineString","arcs":[8188],"id":64189,"properties":{"V":230}},{"type":"LineString","arcs":[8189],"id":64195,"properties":{"V":230}},{"type":"LineString","arcs":[8190],"id":64196,"properties":{"V":500}},{"type":"LineString","arcs":[8191],"id":64197,"properties":{"V":230}},{"type":"LineString","arcs":[8192],"id":64202,"properties":{"V":345}},{"type":"LineString","arcs":[8193],"id":64242,"properties":{"V":230}},{"type":"LineString","arcs":[8194],"id":64246,"properties":{"V":230}},{"type":"LineString","arcs":[8195],"id":64255,"properties":{"V":230}},{"type":"LineString","arcs":[8196],"id":64264,"properties":{"V":230}},{"type":"LineString","arcs":[8197],"id":64278,"properties":{"V":230}},{"type":"LineString","arcs":[8198],"id":64281,"properties":{"V":230}},{"type":"LineString","arcs":[8199],"id":64285,"properties":{"V":230}},{"type":"LineString","arcs":[8200],"id":64309,"properties":{"V":345}},{"type":"LineString","arcs":[8201],"id":64332,"properties":{"V":345}},{"type":"LineString","arcs":[8202],"id":64337,"properties":{"V":230}},{"type":"LineString","arcs":[8203],"id":64345,"properties":{"V":345}},{"type":"LineString","arcs":[8204],"id":64350,"properties":{"V":500}},{"type":"LineString","arcs":[8205],"id":64356,"properties":{"V":230}},{"type":"LineString","arcs":[8206],"id":64357,"properties":{"V":230}},{"type":"LineString","arcs":[8207],"id":64371,"properties":{"V":230}},{"type":"LineString","arcs":[8208],"id":64374,"properties":{"V":345}},{"type":"LineString","arcs":[8209],"id":64378,"properties":{"V":230}},{"type":"LineString","arcs":[8210],"id":64393,"properties":{"V":345}},{"type":"LineString","arcs":[8211],"id":64398,"properties":{"V":345}},{"type":"LineString","arcs":[8212],"id":64401,"properties":{"V":230}},{"type":"LineString","arcs":[8213],"id":64402,"properties":{"V":230}},{"type":"LineString","arcs":[8214],"id":64410,"properties":{"V":230}},{"type":"LineString","arcs":[8215],"id":64412,"properties":{"V":230}},{"type":"LineString","arcs":[8216],"id":64442,"properties":{"V":230}},{"type":"LineString","arcs":[8217],"id":64449,"properties":{"V":345}},{"type":"LineString","arcs":[8218],"id":64451,"properties":{"V":230}},{"type":"LineString","arcs":[8219],"id":64453,"properties":{"V":230}},{"type":"LineString","arcs":[8220],"id":64454,"properties":{"V":345}},{"type":"LineString","arcs":[8221],"id":64483,"properties":{"V":230}},{"type":"LineString","arcs":[8222],"id":64488,"properties":{"V":230}},{"type":"LineString","arcs":[8223],"id":64506,"properties":{"V":230}},{"type":"LineString","arcs":[8224],"id":64507,"properties":{"V":230}},{"type":"LineString","arcs":[8225],"id":64524,"properties":{"V":230}},{"type":"LineString","arcs":[8226],"id":64538,"properties":{"V":230}},{"type":"LineString","arcs":[8227],"id":64540,"properties":{"V":230}},{"type":"LineString","arcs":[8228],"id":64542,"properties":{"V":230}},{"type":"LineString","arcs":[8229],"id":64543,"properties":{"V":230}},{"type":"LineString","arcs":[8230],"id":64551,"properties":{"V":230}},{"type":"LineString","arcs":[8231],"id":64558,"properties":{"V":345}},{"type":"LineString","arcs":[8232],"id":64569,"properties":{"V":230}},{"type":"LineString","arcs":[8233,8234],"id":64572,"properties":{"V":230}},{"type":"LineString","arcs":[8235],"id":64573,"properties":{"V":345}},{"type":"LineString","arcs":[8236],"id":64578,"properties":{"V":230}},{"type":"LineString","arcs":[8237],"id":64584,"properties":{"V":345}},{"type":"LineString","arcs":[8238],"id":64585,"properties":{"V":230}},{"type":"LineString","arcs":[8239],"id":64598,"properties":{"V":230}},{"type":"LineString","arcs":[8240],"id":64615,"properties":{"V":230}},{"type":"LineString","arcs":[8241,8242],"id":64620,"properties":{"V":230}},{"type":"LineString","arcs":[8243],"id":64626,"properties":{"V":230}},{"type":"LineString","arcs":[8244],"id":64631,"properties":{"V":500}},{"type":"LineString","arcs":[8245],"id":64634,"properties":{"V":230}},{"type":"LineString","arcs":[8246],"id":64662,"properties":{"V":230}},{"type":"LineString","arcs":[8247],"id":64664,"properties":{"V":230}},{"type":"LineString","arcs":[8248],"id":64671,"properties":{"V":500}},{"type":"LineString","arcs":[8249],"id":64685,"properties":{"V":345}},{"type":"LineString","arcs":[8250],"id":64687,"properties":{"V":230}},{"type":"LineString","arcs":[8251],"id":64694,"properties":{"V":345}},{"type":"LineString","arcs":[8252],"id":64699,"properties":{"V":230}},{"type":"LineString","arcs":[8253],"id":64709,"properties":{"V":230}},{"type":"LineString","arcs":[8254],"id":64720,"properties":{"V":230}},{"type":"LineString","arcs":[8255],"id":64727,"properties":{"V":230}},{"type":"LineString","arcs":[8256],"id":64737,"properties":{"V":230}},{"type":"LineString","arcs":[8257],"id":64741,"properties":{"V":345}},{"type":"LineString","arcs":[8258],"id":64753,"properties":{"V":230}},{"type":"LineString","arcs":[8259],"id":64765,"properties":{"V":230}},{"type":"LineString","arcs":[8260],"id":64769,"properties":{"V":500}},{"type":"LineString","arcs":[8261],"id":64776,"properties":{"V":230}},{"type":"LineString","arcs":[8262],"id":64788,"properties":{"V":345}},{"type":"LineString","arcs":[8263],"id":64789,"properties":{"V":230}},{"type":"LineString","arcs":[8264],"id":64798,"properties":{"V":500}},{"type":"LineString","arcs":[8265],"id":64816,"properties":{"V":230}},{"type":"LineString","arcs":[8266],"id":64825,"properties":{"V":230}},{"type":"LineString","arcs":[8267],"id":64834,"properties":{"V":230}},{"type":"LineString","arcs":[8268],"id":64836,"properties":{"V":345}},{"type":"LineString","arcs":[8269],"id":64854,"properties":{"V":230}},{"type":"LineString","arcs":[8270],"id":64861,"properties":{"V":230}},{"type":"LineString","arcs":[8271],"id":64865,"properties":{"V":345}},{"type":"LineString","arcs":[8272],"id":64872,"properties":{"V":230}},{"type":"LineString","arcs":[8273],"id":64888,"properties":{"V":500}},{"type":"LineString","arcs":[8274],"id":64893,"properties":{"V":500}},{"type":"LineString","arcs":[8275,8276],"id":64896,"properties":{"V":230}},{"type":"LineString","arcs":[8277],"id":64897,"properties":{"V":230}},{"type":"LineString","arcs":[8278],"id":64898,"properties":{"V":230}},{"type":"LineString","arcs":[8279,8280,8281],"id":64927,"properties":{"V":230}},{"type":"LineString","arcs":[8282],"id":64930,"properties":{"V":230}},{"type":"LineString","arcs":[8283],"id":64932,"properties":{"V":230}},{"type":"LineString","arcs":[8284],"id":64943,"properties":{"V":500}},{"type":"LineString","arcs":[8285],"id":64950,"properties":{"V":230}},{"type":"LineString","arcs":[8286],"id":64955,"properties":{"V":230}},{"type":"LineString","arcs":[8287],"id":64975,"properties":{"V":345}},{"type":"LineString","arcs":[8288],"id":64981,"properties":{"V":230}},{"type":"LineString","arcs":[8289],"id":64982,"properties":{"V":345}},{"type":"LineString","arcs":[8290],"id":64983,"properties":{"V":500}},{"type":"LineString","arcs":[8291],"id":64990,"properties":{"V":500}},{"type":"LineString","arcs":[8292],"id":64995,"properties":{"V":500}},{"type":"LineString","arcs":[8293],"id":64999,"properties":{"V":230}},{"type":"LineString","arcs":[8294],"id":65001,"properties":{"V":230}},{"type":"LineString","arcs":[8295],"id":65007,"properties":{"V":230}},{"type":"LineString","arcs":[8296],"id":65012,"properties":{"V":500}},{"type":"LineString","arcs":[8297],"id":65020,"properties":{"V":345}},{"type":"LineString","arcs":[8298],"id":65023,"properties":{"V":500}},{"type":"LineString","arcs":[8299],"id":65031,"properties":{"V":230}},{"type":"LineString","arcs":[8300],"id":65033,"properties":{"V":230}},{"type":"LineString","arcs":[8301],"id":65040,"properties":{"V":345}},{"type":"LineString","arcs":[8302],"id":65051,"properties":{"V":230}},{"type":"LineString","arcs":[8303],"id":65057,"properties":{"V":345}},{"type":"LineString","arcs":[8304],"id":65062,"properties":{"V":230}},{"type":"LineString","arcs":[8305],"id":65069,"properties":{"V":230}},{"type":"LineString","arcs":[8306],"id":65090,"properties":{"V":230}},{"type":"LineString","arcs":[8307],"id":65103,"properties":{"V":500}},{"type":"LineString","arcs":[8308],"id":65113,"properties":{"V":345}},{"type":"LineString","arcs":[8309],"id":65116,"properties":{"V":230}},{"type":"LineString","arcs":[8310],"id":65127,"properties":{"V":230}},{"type":"LineString","arcs":[8311],"id":65133,"properties":{"V":230}},{"type":"LineString","arcs":[8312],"id":65150,"properties":{"V":345}},{"type":"LineString","arcs":[8313],"id":65152,"properties":{"V":230}},{"type":"LineString","arcs":[8314],"id":65153,"properties":{"V":230}},{"type":"LineString","arcs":[8315],"id":65165,"properties":{"V":230}},{"type":"LineString","arcs":[8316],"id":65168,"properties":{"V":230}},{"type":"LineString","arcs":[8317],"id":65175,"properties":{"V":230}},{"type":"LineString","arcs":[8318],"id":65185,"properties":{"V":230}},{"type":"LineString","arcs":[8319],"id":65191,"properties":{"V":230}},{"type":"LineString","arcs":[8320],"id":65198,"properties":{"V":345}},{"type":"LineString","arcs":[8321],"id":65199,"properties":{"V":230}},{"type":"LineString","arcs":[8322],"id":65204,"properties":{"V":230}},{"type":"LineString","arcs":[8323],"id":65205,"properties":{"V":230}},{"type":"LineString","arcs":[8324,8325],"id":65216,"properties":{"V":500}},{"type":"LineString","arcs":[8326],"id":65222,"properties":{"V":345}},{"type":"LineString","arcs":[8327],"id":65229,"properties":{"V":500}},{"type":"LineString","arcs":[8328],"id":65236,"properties":{"V":230}},{"type":"LineString","arcs":[8329],"id":65238,"properties":{"V":230}},{"type":"LineString","arcs":[8330],"id":65245,"properties":{"V":230}},{"type":"LineString","arcs":[8331],"id":65248,"properties":{"V":230}},{"type":"LineString","arcs":[8332],"id":65253,"properties":{"V":230}},{"type":"LineString","arcs":[8333],"id":65258,"properties":{"V":230}},{"type":"LineString","arcs":[8334],"id":65260,"properties":{"V":230}},{"type":"LineString","arcs":[8335],"id":65266,"properties":{"V":230}},{"type":"LineString","arcs":[8336],"id":65273,"properties":{"V":230}},{"type":"LineString","arcs":[8337],"id":65274,"properties":{"V":345}},{"type":"LineString","arcs":[8338],"id":65279,"properties":{"V":230}},{"type":"LineString","arcs":[8339],"id":65280,"properties":{"V":230}},{"type":"LineString","arcs":[8340],"id":65296,"properties":{"V":345}},{"type":"LineString","arcs":[8341],"id":65305,"properties":{"V":230}},{"type":"LineString","arcs":[8342],"id":65307,"properties":{"V":230}},{"type":"LineString","arcs":[8343],"id":65310,"properties":{"V":230}},{"type":"LineString","arcs":[8344],"id":65341,"properties":{"V":345}},{"type":"LineString","arcs":[8345],"id":65356,"properties":{"V":345}},{"type":"LineString","arcs":[8346],"id":65377,"properties":{"V":230}},{"type":"LineString","arcs":[8347],"id":65380,"properties":{"V":230}},{"type":"LineString","arcs":[8348],"id":65381,"properties":{"V":230}},{"type":"LineString","arcs":[8349],"id":65396,"properties":{"V":230}},{"type":"LineString","arcs":[8350],"id":65407,"properties":{"V":230}},{"type":"LineString","arcs":[8351],"id":65418,"properties":{"V":230}},{"type":"LineString","arcs":[8352],"id":65422,"properties":{"V":230}},{"type":"LineString","arcs":[8353],"id":65448,"properties":{"V":230}},{"type":"LineString","arcs":[8354],"id":65468,"properties":{"V":230}},{"type":"LineString","arcs":[8355],"id":65472,"properties":{"V":230}},{"type":"LineString","arcs":[8356],"id":65473,"properties":{"V":230}},{"type":"LineString","arcs":[8357],"id":65487,"properties":{"V":230}},{"type":"LineString","arcs":[8358],"id":65495,"properties":{"V":230}},{"type":"LineString","arcs":[8359],"id":65500,"properties":{"V":345}},{"type":"LineString","arcs":[8360],"id":65513,"properties":{"V":500}},{"type":"LineString","arcs":[8361],"id":65522,"properties":{"V":230}},{"type":"LineString","arcs":[8362],"id":65527,"properties":{"V":230}},{"type":"LineString","arcs":[8363],"id":65536,"properties":{"V":230}},{"type":"LineString","arcs":[8364],"id":65541,"properties":{"V":345}},{"type":"LineString","arcs":[8365],"id":65543,"properties":{"V":345}},{"type":"LineString","arcs":[8366],"id":65546,"properties":{"V":345}},{"type":"LineString","arcs":[8367],"id":65550,"properties":{"V":345}},{"type":"LineString","arcs":[8368],"id":65552,"properties":{"V":345}},{"type":"LineString","arcs":[8369],"id":65562,"properties":{"V":230}},{"type":"LineString","arcs":[8370],"id":65568,"properties":{"V":345}},{"type":"LineString","arcs":[8371],"id":65574,"properties":{"V":230}},{"type":"LineString","arcs":[8372],"id":65581,"properties":{"V":230}},{"type":"LineString","arcs":[8373],"id":65584,"properties":{"V":345}},{"type":"LineString","arcs":[8374],"id":65587,"properties":{"V":230}},{"type":"LineString","arcs":[8375],"id":65607,"properties":{"V":230}},{"type":"LineString","arcs":[8376],"id":65630,"properties":{"V":500}},{"type":"LineString","arcs":[8377],"id":65634,"properties":{"V":230}},{"type":"LineString","arcs":[8378],"id":65645,"properties":{"V":230}},{"type":"LineString","arcs":[8379,8380,8381],"id":65650,"properties":{"V":345}},{"type":"LineString","arcs":[8382],"id":65658,"properties":{"V":230}},{"type":"LineString","arcs":[8383],"id":65660,"properties":{"V":230}},{"type":"LineString","arcs":[8384],"id":65663,"properties":{"V":230}},{"type":"LineString","arcs":[8385],"id":65687,"properties":{"V":230}},{"type":"LineString","arcs":[8386],"id":65688,"properties":{"V":230}},{"type":"LineString","arcs":[8387],"id":65695,"properties":{"V":230}},{"type":"LineString","arcs":[8388],"id":65696,"properties":{"V":230}},{"type":"LineString","arcs":[8389],"id":65706,"properties":{"V":230}},{"type":"LineString","arcs":[8390],"id":65713,"properties":{"V":345}},{"type":"LineString","arcs":[8391],"id":65718,"properties":{"V":230}},{"type":"LineString","arcs":[8392],"id":65727,"properties":{"V":230}},{"type":"LineString","arcs":[8393],"id":65740,"properties":{"V":345}},{"type":"LineString","arcs":[8394],"id":65741,"properties":{"V":230}},{"type":"LineString","arcs":[8395],"id":65743,"properties":{"V":230}},{"type":"LineString","arcs":[8396],"id":65744,"properties":{"V":230}},{"type":"LineString","arcs":[8397],"id":65748,"properties":{"V":230}},{"type":"LineString","arcs":[8398],"id":65750,"properties":{"V":345}},{"type":"LineString","arcs":[8399],"id":65751,"properties":{"V":230}},{"type":"LineString","arcs":[8400],"id":65757,"properties":{"V":230}},{"type":"LineString","arcs":[8401,8402],"id":65763,"properties":{"V":230}},{"type":"LineString","arcs":[8403],"id":65765,"properties":{"V":230}},{"type":"LineString","arcs":[8404],"id":65770,"properties":{"V":230}},{"type":"LineString","arcs":[8405],"id":65785,"properties":{"V":230}},{"type":"LineString","arcs":[8406],"id":65786,"properties":{"V":345}},{"type":"LineString","arcs":[8407],"id":65787,"properties":{"V":230}},{"type":"LineString","arcs":[8408],"id":65800,"properties":{"V":230}},{"type":"LineString","arcs":[8409],"id":65804,"properties":{"V":345}},{"type":"LineString","arcs":[8410],"id":65817,"properties":{"V":345}},{"type":"LineString","arcs":[8411],"id":65818,"properties":{"V":230}},{"type":"LineString","arcs":[8412],"id":65821,"properties":{"V":230}},{"type":"LineString","arcs":[8413],"id":65822,"properties":{"V":230}},{"type":"LineString","arcs":[8414],"id":65826,"properties":{"V":345}},{"type":"LineString","arcs":[8415],"id":65828,"properties":{"V":345}},{"type":"LineString","arcs":[8416],"id":65843,"properties":{"V":230}},{"type":"LineString","arcs":[8417],"id":65850,"properties":{"V":345}},{"type":"LineString","arcs":[8418],"id":65868,"properties":{"V":230}},{"type":"LineString","arcs":[8419],"id":65871,"properties":{"V":230}},{"type":"LineString","arcs":[8420,8421],"id":65878,"properties":{"V":230}},{"type":"LineString","arcs":[8422],"id":65879,"properties":{"V":230}},{"type":"LineString","arcs":[8423],"id":65888,"properties":{"V":230}},{"type":"LineString","arcs":[8424],"id":65891,"properties":{"V":345}},{"type":"LineString","arcs":[8425],"id":65894,"properties":{"V":230}},{"type":"LineString","arcs":[8426],"id":65912,"properties":{"V":230}},{"type":"LineString","arcs":[8427],"id":65914,"properties":{"V":230}},{"type":"LineString","arcs":[8428],"id":65923,"properties":{"V":230}},{"type":"LineString","arcs":[8429],"id":65930,"properties":{"V":345}},{"type":"LineString","arcs":[8430],"id":65931,"properties":{"V":765}},{"type":"LineString","arcs":[8431],"id":65932,"properties":{"V":230}},{"type":"LineString","arcs":[8432],"id":65937,"properties":{"V":500}},{"type":"LineString","arcs":[8433],"id":65946,"properties":{"V":230}},{"type":"LineString","arcs":[8434],"id":65950,"properties":{"V":230}},{"type":"LineString","arcs":[8435],"id":65951,"properties":{"V":500}},{"type":"LineString","arcs":[8436],"id":65982,"properties":{"V":230}},{"type":"LineString","arcs":[8437],"id":65984,"properties":{"V":230}},{"type":"LineString","arcs":[8438],"id":65996,"properties":{"V":345}},{"type":"LineString","arcs":[8439],"id":66019,"properties":{"V":230}},{"type":"LineString","arcs":[8440],"id":66024,"properties":{"V":230}},{"type":"LineString","arcs":[8441],"id":66038,"properties":{"V":230}},{"type":"LineString","arcs":[8442],"id":66042,"properties":{"V":230}},{"type":"LineString","arcs":[8443],"id":66043,"properties":{"V":230}},{"type":"LineString","arcs":[8444],"id":66053,"properties":{"V":230}},{"type":"LineString","arcs":[8445],"id":66055,"properties":{"V":230}},{"type":"LineString","arcs":[8446],"id":66070,"properties":{"V":230}},{"type":"LineString","arcs":[8447],"id":66072,"properties":{"V":230}},{"type":"LineString","arcs":[8448],"id":66087,"properties":{"V":345}},{"type":"LineString","arcs":[8449],"id":66096,"properties":{"V":230}},{"type":"LineString","arcs":[8450,8451,8452,8453],"id":66108,"properties":{"V":230}},{"type":"LineString","arcs":[8454],"id":66109,"properties":{"V":345}},{"type":"LineString","arcs":[8455],"id":66110,"properties":{"V":230}},{"type":"LineString","arcs":[8456],"id":66115,"properties":{"V":230}},{"type":"LineString","arcs":[8457],"id":66121,"properties":{"V":500}},{"type":"LineString","arcs":[8458],"id":66145,"properties":{"V":345}},{"type":"LineString","arcs":[8459],"id":66152,"properties":{"V":500}},{"type":"LineString","arcs":[8460],"id":66159,"properties":{"V":345}},{"type":"LineString","arcs":[8461],"id":66185,"properties":{"V":500}},{"type":"LineString","arcs":[8462],"id":66186,"properties":{"V":230}},{"type":"LineString","arcs":[8463],"id":66197,"properties":{"V":230}},{"type":"LineString","arcs":[8464],"id":66199,"properties":{"V":230}},{"type":"LineString","arcs":[8465],"id":66205,"properties":{"V":500}},{"type":"LineString","arcs":[8466],"id":66206,"properties":{"V":230}},{"type":"LineString","arcs":[8467],"id":66212,"properties":{"V":500}},{"type":"LineString","arcs":[8468],"id":66215,"properties":{"V":230}},{"type":"LineString","arcs":[8469],"id":66216,"properties":{"V":345}},{"type":"LineString","arcs":[8470],"id":66221,"properties":{"V":230}},{"type":"LineString","arcs":[8471],"id":66224,"properties":{"V":230}},{"type":"LineString","arcs":[8472],"id":66225,"properties":{"V":230}},{"type":"LineString","arcs":[8473],"id":66227,"properties":{"V":230}},{"type":"LineString","arcs":[8474],"id":66230,"properties":{"V":345}},{"type":"LineString","arcs":[8475],"id":66233,"properties":{"V":345}},{"type":"LineString","arcs":[8476],"id":66235,"properties":{"V":230}},{"type":"LineString","arcs":[8477],"id":66236,"properties":{"V":345}},{"type":"LineString","arcs":[8478],"id":66246,"properties":{"V":230}},{"type":"LineString","arcs":[8479],"id":66251,"properties":{"V":230}},{"type":"LineString","arcs":[8480],"id":66255,"properties":{"V":230}},{"type":"LineString","arcs":[8481],"id":66267,"properties":{"V":230}},{"type":"LineString","arcs":[8482],"id":66268,"properties":{"V":345}},{"type":"LineString","arcs":[8483,8484],"id":66275,"properties":{"V":230}},{"type":"LineString","arcs":[8485],"id":66282,"properties":{"V":500}},{"type":"LineString","arcs":[8486],"id":66285,"properties":{"V":230}},{"type":"LineString","arcs":[8487],"id":66305,"properties":{"V":345}},{"type":"LineString","arcs":[8488],"id":66307,"properties":{"V":230}},{"type":"LineString","arcs":[8489],"id":66322,"properties":{"V":345}},{"type":"LineString","arcs":[8490],"id":66323,"properties":{"V":230}},{"type":"LineString","arcs":[8491],"id":66332,"properties":{"V":230}},{"type":"LineString","arcs":[8492],"id":66338,"properties":{"V":345}},{"type":"LineString","arcs":[8493],"id":66358,"properties":{"V":345}},{"type":"LineString","arcs":[8494],"id":66366,"properties":{"V":230}},{"type":"LineString","arcs":[8495],"id":66396,"properties":{"V":345}},{"type":"LineString","arcs":[8496],"id":66407,"properties":{"V":500}},{"type":"LineString","arcs":[8497],"id":66415,"properties":{"V":345}},{"type":"LineString","arcs":[8498],"id":66423,"properties":{"V":230}},{"type":"LineString","arcs":[8499],"id":66425,"properties":{"V":230}},{"type":"LineString","arcs":[8500],"id":66428,"properties":{"V":230}},{"type":"LineString","arcs":[8501],"id":66442,"properties":{"V":345}},{"type":"LineString","arcs":[8502],"id":66452,"properties":{"V":230}},{"type":"LineString","arcs":[8503],"id":66453,"properties":{"V":500}},{"type":"LineString","arcs":[8504],"id":66472,"properties":{"V":345}},{"type":"LineString","arcs":[8505],"id":66474,"properties":{"V":230}},{"type":"LineString","arcs":[8506],"id":66478,"properties":{"V":500}},{"type":"LineString","arcs":[8507],"id":66482,"properties":{"V":345}},{"type":"LineString","arcs":[8508],"id":66495,"properties":{"V":230}},{"type":"LineString","arcs":[8509,8510,8511,8512,8513],"id":66497,"properties":{"V":345}},{"type":"LineString","arcs":[8514],"id":66535,"properties":{"V":230}},{"type":"LineString","arcs":[8515],"id":66541,"properties":{"V":230}},{"type":"LineString","arcs":[8516],"id":66545,"properties":{"V":230}},{"type":"LineString","arcs":[8517],"id":66555,"properties":{"V":230}},{"type":"LineString","arcs":[8518],"id":66556,"properties":{"V":345}},{"type":"LineString","arcs":[8519],"id":66568,"properties":{"V":345}},{"type":"LineString","arcs":[8520],"id":66608,"properties":{"V":230}},{"type":"LineString","arcs":[8521],"id":66616,"properties":{"V":230}},{"type":"LineString","arcs":[8522],"id":66619,"properties":{"V":230}},{"type":"LineString","arcs":[8523],"id":66627,"properties":{"V":345}},{"type":"LineString","arcs":[8524],"id":66638,"properties":{"V":230}},{"type":"LineString","arcs":[8525],"id":66641,"properties":{"V":230}},{"type":"LineString","arcs":[8526],"id":66643,"properties":{"V":230}},{"type":"LineString","arcs":[8527],"id":66657,"properties":{"V":230}},{"type":"LineString","arcs":[8528],"id":66658,"properties":{"V":230}},{"type":"LineString","arcs":[8529],"id":66673,"properties":{"V":230}},{"type":"LineString","arcs":[8530],"id":66675,"properties":{"V":230}},{"type":"LineString","arcs":[8531],"id":66682,"properties":{"V":230}},{"type":"LineString","arcs":[8532],"id":66684,"properties":{"V":230}},{"type":"LineString","arcs":[8533],"id":66691,"properties":{"V":230}},{"type":"LineString","arcs":[8534],"id":66693,"properties":{"V":230}},{"type":"LineString","arcs":[8535],"id":66704,"properties":{"V":230}},{"type":"LineString","arcs":[8536],"id":66706,"properties":{"V":230}},{"type":"LineString","arcs":[8537],"id":66712,"properties":{"V":230}},{"type":"LineString","arcs":[8538],"id":66718,"properties":{"V":230}},{"type":"LineString","arcs":[8539],"id":66723,"properties":{"V":230}},{"type":"LineString","arcs":[8540],"id":66726,"properties":{"V":230}},{"type":"LineString","arcs":[8541],"id":66731,"properties":{"V":230}},{"type":"LineString","arcs":[8542,8543,8544],"id":66742,"properties":{"V":345}},{"type":"LineString","arcs":[8545],"id":66743,"properties":{"V":230}},{"type":"LineString","arcs":[8546],"id":66770,"properties":{"V":230}},{"type":"LineString","arcs":[8547],"id":66773,"properties":{"V":230}},{"type":"LineString","arcs":[8548],"id":66774,"properties":{"V":345}},{"type":"LineString","arcs":[8549],"id":66780,"properties":{"V":230}},{"type":"LineString","arcs":[8550],"id":66786,"properties":{"V":230}},{"type":"LineString","arcs":[8551],"id":66787,"properties":{"V":230}},{"type":"LineString","arcs":[8552],"id":66795,"properties":{"V":345}},{"type":"LineString","arcs":[8553],"id":66805,"properties":{"V":345}},{"type":"LineString","arcs":[8554],"id":66815,"properties":{"V":500}},{"type":"LineString","arcs":[8555],"id":66816,"properties":{"V":230}},{"type":"LineString","arcs":[8556],"id":66854,"properties":{"V":345}},{"type":"LineString","arcs":[8557],"id":66863,"properties":{"V":230}},{"type":"LineString","arcs":[8558],"id":66864,"properties":{"V":230}},{"type":"LineString","arcs":[8559],"id":66871,"properties":{"V":345}},{"type":"LineString","arcs":[8560],"id":66873,"properties":{"V":230}},{"type":"LineString","arcs":[8561],"id":66909,"properties":{"V":230}},{"type":"LineString","arcs":[8562],"id":66913,"properties":{"V":345}},{"type":"LineString","arcs":[8563],"id":66918,"properties":{"V":230}},{"type":"LineString","arcs":[8564],"id":66922,"properties":{"V":230}},{"type":"LineString","arcs":[8565],"id":66926,"properties":{"V":230}},{"type":"LineString","arcs":[8566],"id":66933,"properties":{"V":230}},{"type":"LineString","arcs":[8567],"id":66937,"properties":{"V":345}},{"type":"LineString","arcs":[8568],"id":66951,"properties":{"V":230}},{"type":"LineString","arcs":[8569],"id":66958,"properties":{"V":230}},{"type":"LineString","arcs":[8570],"id":66967,"properties":{"V":230}},{"type":"LineString","arcs":[8571],"id":66971,"properties":{"V":230}},{"type":"LineString","arcs":[8572],"id":66995,"properties":{"V":765}},{"type":"LineString","arcs":[8573],"id":67002,"properties":{"V":230}},{"type":"LineString","arcs":[8574],"id":67004,"properties":{"V":230}},{"type":"LineString","arcs":[8575],"id":67007,"properties":{"V":345}},{"type":"LineString","arcs":[8576],"id":67008,"properties":{"V":230}},{"type":"LineString","arcs":[8577],"id":67013,"properties":{"V":230}},{"type":"LineString","arcs":[8578],"id":67020,"properties":{"V":500}},{"type":"LineString","arcs":[8579],"id":67026,"properties":{"V":230}},{"type":"LineString","arcs":[8580],"id":67029,"properties":{"V":230}},{"type":"LineString","arcs":[8581],"id":67041,"properties":{"V":230}},{"type":"LineString","arcs":[8582],"id":67045,"properties":{"V":345}},{"type":"LineString","arcs":[8583],"id":67050,"properties":{"V":230}},{"type":"LineString","arcs":[8584],"id":67070,"properties":{"V":230}},{"type":"LineString","arcs":[8585],"id":67073,"properties":{"V":345}},{"type":"LineString","arcs":[8586],"id":67081,"properties":{"V":230}},{"type":"LineString","arcs":[8587],"id":67105,"properties":{"V":765}},{"type":"LineString","arcs":[8588],"id":67133,"properties":{"V":230}},{"type":"LineString","arcs":[8589],"id":67138,"properties":{"V":230}},{"type":"LineString","arcs":[8590],"id":67139,"properties":{"V":230}},{"type":"LineString","arcs":[8591],"id":67140,"properties":{"V":230}},{"type":"LineString","arcs":[8592],"id":67153,"properties":{"V":230}},{"type":"LineString","arcs":[8593],"id":67154,"properties":{"V":230}},{"type":"LineString","arcs":[8594],"id":67160,"properties":{"V":345}},{"type":"LineString","arcs":[8595],"id":67166,"properties":{"V":230}},{"type":"LineString","arcs":[8596],"id":67178,"properties":{"V":230}},{"type":"LineString","arcs":[8597],"id":67182,"properties":{"V":230}},{"type":"LineString","arcs":[8598,8599,8600],"id":67202,"properties":{"V":230}},{"type":"LineString","arcs":[8601],"id":67204,"properties":{"V":230}},{"type":"LineString","arcs":[8602],"id":67236,"properties":{"V":500}},{"type":"LineString","arcs":[8603],"id":67263,"properties":{"V":230}},{"type":"LineString","arcs":[8604],"id":67266,"properties":{"V":345}},{"type":"LineString","arcs":[8605],"id":67271,"properties":{"V":345}},{"type":"LineString","arcs":[8606],"id":67277,"properties":{"V":230}},{"type":"LineString","arcs":[8607],"id":67281,"properties":{"V":230}},{"type":"LineString","arcs":[8608],"id":67282,"properties":{"V":230}},{"type":"LineString","arcs":[8609],"id":67289,"properties":{"V":230}},{"type":"LineString","arcs":[8610],"id":67305,"properties":{"V":230}},{"type":"LineString","arcs":[8611,8612],"id":67306,"properties":{"V":230}},{"type":"LineString","arcs":[8613],"id":67317,"properties":{"V":230}},{"type":"LineString","arcs":[8614],"id":67328,"properties":{"V":230}},{"type":"LineString","arcs":[8615],"id":67331,"properties":{"V":230}},{"type":"LineString","arcs":[8616],"id":67336,"properties":{"V":230}},{"type":"LineString","arcs":[8617,8618],"id":67339,"properties":{"V":230}},{"type":"LineString","arcs":[8619],"id":67350,"properties":{"V":345}},{"type":"LineString","arcs":[8620],"id":67352,"properties":{"V":345}},{"type":"LineString","arcs":[8621],"id":67360,"properties":{"V":230}},{"type":"LineString","arcs":[8622],"id":67368,"properties":{"V":230}},{"type":"LineString","arcs":[8623],"id":67372,"properties":{"V":230}},{"type":"LineString","arcs":[8624],"id":67378,"properties":{"V":230}},{"type":"LineString","arcs":[8625],"id":67389,"properties":{"V":345}},{"type":"LineString","arcs":[8626],"id":67391,"properties":{"V":230}},{"type":"LineString","arcs":[8627],"id":67397,"properties":{"V":345}},{"type":"LineString","arcs":[8628],"id":67399,"properties":{"V":230}},{"type":"LineString","arcs":[8629],"id":67401,"properties":{"V":345}},{"type":"LineString","arcs":[8630],"id":67415,"properties":{"V":345}},{"type":"LineString","arcs":[8631],"id":67417,"properties":{"V":230}},{"type":"LineString","arcs":[8632],"id":67431,"properties":{"V":345}},{"type":"LineString","arcs":[8633],"id":67440,"properties":{"V":230}},{"type":"LineString","arcs":[8634],"id":67455,"properties":{"V":345}},{"type":"LineString","arcs":[8635],"id":67459,"properties":{"V":230}},{"type":"LineString","arcs":[8636],"id":67464,"properties":{"V":230}},{"type":"LineString","arcs":[8637],"id":67465,"properties":{"V":230}},{"type":"LineString","arcs":[8638],"id":67472,"properties":{"V":230}},{"type":"LineString","arcs":[8639],"id":67504,"properties":{"V":230}},{"type":"LineString","arcs":[8640],"id":67517,"properties":{"V":230}},{"type":"LineString","arcs":[8641],"id":67518,"properties":{"V":230}},{"type":"LineString","arcs":[8642],"id":67519,"properties":{"V":230}},{"type":"LineString","arcs":[8643],"id":67541,"properties":{"V":230}},{"type":"LineString","arcs":[8644],"id":67548,"properties":{"V":230}},{"type":"LineString","arcs":[8645],"id":67562,"properties":{"V":230}},{"type":"LineString","arcs":[8646],"id":67564,"properties":{"V":345}},{"type":"LineString","arcs":[8647],"id":67565,"properties":{"V":230}},{"type":"LineString","arcs":[8648],"id":67568,"properties":{"V":230}},{"type":"LineString","arcs":[8649],"id":67571,"properties":{"V":230}},{"type":"LineString","arcs":[8650],"id":67585,"properties":{"V":230}},{"type":"LineString","arcs":[8651],"id":67587,"properties":{"V":500}},{"type":"LineString","arcs":[8652],"id":67588,"properties":{"V":345}},{"type":"LineString","arcs":[8653],"id":67616,"properties":{"V":345}},{"type":"LineString","arcs":[8654],"id":67623,"properties":{"V":230}},{"type":"LineString","arcs":[8655],"id":67633,"properties":{"V":500}},{"type":"LineString","arcs":[8656],"id":67645,"properties":{"V":345}},{"type":"LineString","arcs":[8657],"id":67655,"properties":{"V":345}},{"type":"LineString","arcs":[8658],"id":67662,"properties":{"V":230}},{"type":"LineString","arcs":[8659],"id":67671,"properties":{"V":230}},{"type":"LineString","arcs":[8660],"id":67675,"properties":{"V":230}},{"type":"LineString","arcs":[8661],"id":67686,"properties":{"V":500}},{"type":"LineString","arcs":[8662],"id":67694,"properties":{"V":230}},{"type":"LineString","arcs":[8663],"id":67697,"properties":{"V":345}},{"type":"LineString","arcs":[8664],"id":67701,"properties":{"V":345}},{"type":"LineString","arcs":[8665],"id":67715,"properties":{"V":230}},{"type":"LineString","arcs":[8666],"id":67726,"properties":{"V":345}},{"type":"LineString","arcs":[8667],"id":67728,"properties":{"V":345}},{"type":"LineString","arcs":[8668],"id":67730,"properties":{"V":230}},{"type":"LineString","arcs":[8669],"id":67732,"properties":{"V":230}},{"type":"LineString","arcs":[8670],"id":67734,"properties":{"V":345}},{"type":"LineString","arcs":[8671],"id":67737,"properties":{"V":230}},{"type":"LineString","arcs":[8672],"id":67740,"properties":{"V":230}},{"type":"LineString","arcs":[8673],"id":67745,"properties":{"V":230}},{"type":"LineString","arcs":[8674,8675],"id":67764,"properties":{"V":230}},{"type":"LineString","arcs":[8676],"id":67768,"properties":{"V":230}},{"type":"LineString","arcs":[8677],"id":67790,"properties":{"V":345}},{"type":"LineString","arcs":[8678],"id":67804,"properties":{"V":230}},{"type":"LineString","arcs":[8679],"id":67809,"properties":{"V":230}},{"type":"LineString","arcs":[8680],"id":67821,"properties":{"V":345}},{"type":"LineString","arcs":[8681],"id":67827,"properties":{"V":230}},{"type":"LineString","arcs":[8682],"id":67830,"properties":{"V":345}},{"type":"LineString","arcs":[8683],"id":67832,"properties":{"V":345}},{"type":"LineString","arcs":[8684],"id":67853,"properties":{"V":230}},{"type":"LineString","arcs":[8685],"id":67872,"properties":{"V":230}},{"type":"LineString","arcs":[8686],"id":67873,"properties":{"V":345}},{"type":"LineString","arcs":[8687],"id":67878,"properties":{"V":230}},{"type":"LineString","arcs":[8688],"id":67880,"properties":{"V":230}},{"type":"LineString","arcs":[8689],"id":67887,"properties":{"V":230}},{"type":"LineString","arcs":[8690],"id":67889,"properties":{"V":230}},{"type":"LineString","arcs":[8691],"id":67893,"properties":{"V":230}},{"type":"LineString","arcs":[8692],"id":67903,"properties":{"V":230}},{"type":"LineString","arcs":[8693],"id":67906,"properties":{"V":230}},{"type":"LineString","arcs":[8694],"id":67911,"properties":{"V":230}},{"type":"LineString","arcs":[8695],"id":67923,"properties":{"V":345}},{"type":"LineString","arcs":[8696],"id":67938,"properties":{"V":230}},{"type":"LineString","arcs":[8697],"id":67941,"properties":{"V":230}},{"type":"LineString","arcs":[8698],"id":67968,"properties":{"V":230}},{"type":"LineString","arcs":[8699],"id":67972,"properties":{"V":230}},{"type":"LineString","arcs":[8700],"id":67986,"properties":{"V":345}},{"type":"LineString","arcs":[8701],"id":67991,"properties":{"V":345}},{"type":"LineString","arcs":[8702],"id":68015,"properties":{"V":230}},{"type":"LineString","arcs":[8703],"id":68023,"properties":{"V":230}},{"type":"LineString","arcs":[8704],"id":68051,"properties":{"V":230}},{"type":"LineString","arcs":[8705],"id":68052,"properties":{"V":230}},{"type":"LineString","arcs":[8706],"id":68056,"properties":{"V":230}},{"type":"LineString","arcs":[8707],"id":68066,"properties":{"V":345}},{"type":"LineString","arcs":[8708],"id":68069,"properties":{"V":230}},{"type":"LineString","arcs":[8709],"id":68077,"properties":{"V":230}},{"type":"LineString","arcs":[8710],"id":68087,"properties":{"V":230}},{"type":"LineString","arcs":[8711],"id":68093,"properties":{"V":230}},{"type":"LineString","arcs":[8712],"id":68097,"properties":{"V":230}},{"type":"LineString","arcs":[8713],"id":68100,"properties":{"V":345}},{"type":"LineString","arcs":[8714],"id":68108,"properties":{"V":230}},{"type":"LineString","arcs":[8715],"id":68111,"properties":{"V":230}},{"type":"LineString","arcs":[8716],"id":68112,"properties":{"V":345}},{"type":"LineString","arcs":[8717],"id":68113,"properties":{"V":345}},{"type":"LineString","arcs":[8718],"id":68119,"properties":{"V":230}},{"type":"LineString","arcs":[8719],"id":68125,"properties":{"V":345}},{"type":"LineString","arcs":[8720],"id":68137,"properties":{"V":230}},{"type":"LineString","arcs":[8721],"id":68164,"properties":{"V":230}},{"type":"LineString","arcs":[8722],"id":68174,"properties":{"V":230}},{"type":"LineString","arcs":[8723],"id":68186,"properties":{"V":230}},{"type":"LineString","arcs":[8724],"id":68206,"properties":{"V":345}},{"type":"LineString","arcs":[8725],"id":68209,"properties":{"V":230}},{"type":"LineString","arcs":[8726],"id":68221,"properties":{"V":230}},{"type":"LineString","arcs":[8727],"id":68222,"properties":{"V":230}},{"type":"LineString","arcs":[8728],"id":68229,"properties":{"V":345}},{"type":"LineString","arcs":[8729],"id":68231,"properties":{"V":345}},{"type":"LineString","arcs":[8730],"id":68245,"properties":{"V":500}},{"type":"LineString","arcs":[8731,8732,8733],"id":68248,"properties":{"V":230}},{"type":"LineString","arcs":[8734],"id":68264,"properties":{"V":230}},{"type":"LineString","arcs":[8735],"id":68270,"properties":{"V":230}},{"type":"LineString","arcs":[8736],"id":68275,"properties":{"V":345}},{"type":"LineString","arcs":[8737],"id":68276,"properties":{"V":230}},{"type":"LineString","arcs":[8738],"id":68286,"properties":{"V":500}},{"type":"LineString","arcs":[8739],"id":68292,"properties":{"V":230}},{"type":"LineString","arcs":[8740],"id":68296,"properties":{"V":230}},{"type":"LineString","arcs":[8741],"id":68299,"properties":{"V":230}},{"type":"LineString","arcs":[8742],"id":68303,"properties":{"V":230}},{"type":"LineString","arcs":[8743],"id":68306,"properties":{"V":500}},{"type":"LineString","arcs":[8744],"id":68316,"properties":{"V":345}},{"type":"LineString","arcs":[8745],"id":68339,"properties":{"V":230}},{"type":"LineString","arcs":[8746],"id":68352,"properties":{"V":230}},{"type":"LineString","arcs":[8747],"id":68392,"properties":{"V":230}},{"type":"LineString","arcs":[8748],"id":68398,"properties":{"V":500}},{"type":"LineString","arcs":[8749],"id":68402,"properties":{"V":230}},{"type":"LineString","arcs":[8750],"id":68416,"properties":{"V":230}},{"type":"LineString","arcs":[8751],"id":68430,"properties":{"V":345}},{"type":"LineString","arcs":[8752],"id":68440,"properties":{"V":230}},{"type":"LineString","arcs":[8753],"id":68450,"properties":{"V":230}},{"type":"LineString","arcs":[8754],"id":68454,"properties":{"V":345}},{"type":"LineString","arcs":[8755],"id":68456,"properties":{"V":230}},{"type":"LineString","arcs":[8756],"id":68457,"properties":{"V":230}},{"type":"LineString","arcs":[8757],"id":68463,"properties":{"V":500}},{"type":"LineString","arcs":[8758],"id":68467,"properties":{"V":230}},{"type":"LineString","arcs":[8759],"id":68476,"properties":{"V":230}},{"type":"LineString","arcs":[8760],"id":68485,"properties":{"V":500}},{"type":"LineString","arcs":[8761],"id":68498,"properties":{"V":345}},{"type":"LineString","arcs":[8762],"id":68499,"properties":{"V":230}},{"type":"LineString","arcs":[8763],"id":68509,"properties":{"V":230}},{"type":"LineString","arcs":[8764],"id":68526,"properties":{"V":345}},{"type":"LineString","arcs":[8765],"id":68540,"properties":{"V":230}},{"type":"LineString","arcs":[8766],"id":68556,"properties":{"V":230}},{"type":"LineString","arcs":[8767],"id":68567,"properties":{"V":230}},{"type":"LineString","arcs":[8768],"id":68568,"properties":{"V":230}},{"type":"LineString","arcs":[8769],"id":68569,"properties":{"V":230}},{"type":"LineString","arcs":[8770],"id":68576,"properties":{"V":345}},{"type":"LineString","arcs":[8771],"id":68577,"properties":{"V":345}},{"type":"LineString","arcs":[8772],"id":68583,"properties":{"V":345}},{"type":"LineString","arcs":[8773],"id":68592,"properties":{"V":230}},{"type":"LineString","arcs":[8774],"id":68595,"properties":{"V":230}},{"type":"LineString","arcs":[8775],"id":68597,"properties":{"V":230}},{"type":"LineString","arcs":[8776],"id":68599,"properties":{"V":230}},{"type":"LineString","arcs":[8777],"id":68608,"properties":{"V":230}},{"type":"LineString","arcs":[8778],"id":68612,"properties":{"V":345}},{"type":"LineString","arcs":[8779],"id":68618,"properties":{"V":230}},{"type":"LineString","arcs":[8780],"id":68619,"properties":{"V":230}},{"type":"LineString","arcs":[8781],"id":68640,"properties":{"V":230}},{"type":"LineString","arcs":[8782],"id":68645,"properties":{"V":230}},{"type":"LineString","arcs":[8783],"id":68648,"properties":{"V":230}},{"type":"LineString","arcs":[8784],"id":68656,"properties":{"V":230}},{"type":"LineString","arcs":[8785],"id":68657,"properties":{"V":230}},{"type":"LineString","arcs":[8786],"id":68660,"properties":{"V":500}},{"type":"LineString","arcs":[8787],"id":68666,"properties":{"V":230}},{"type":"LineString","arcs":[8788],"id":68671,"properties":{"V":500}},{"type":"LineString","arcs":[8789],"id":68682,"properties":{"V":230}},{"type":"LineString","arcs":[8790],"id":68683,"properties":{"V":230}},{"type":"LineString","arcs":[8791],"id":68690,"properties":{"V":345}},{"type":"LineString","arcs":[8792],"id":68706,"properties":{"V":230}},{"type":"LineString","arcs":[8793],"id":68709,"properties":{"V":230}},{"type":"LineString","arcs":[8794],"id":68714,"properties":{"V":230}},{"type":"LineString","arcs":[8795],"id":68727,"properties":{"V":345}},{"type":"LineString","arcs":[8796],"id":68736,"properties":{"V":230}},{"type":"LineString","arcs":[8797],"id":68737,"properties":{"V":345}},{"type":"LineString","arcs":[8798],"id":68746,"properties":{"V":230}},{"type":"LineString","arcs":[8799],"id":68749,"properties":{"V":500}},{"type":"LineString","arcs":[8800],"id":68751,"properties":{"V":230}},{"type":"LineString","arcs":[8801],"id":68755,"properties":{"V":345}},{"type":"LineString","arcs":[8802],"id":68757,"properties":{"V":230}},{"type":"LineString","arcs":[8803],"id":68762,"properties":{"V":230}},{"type":"LineString","arcs":[8804],"id":68784,"properties":{"V":345}},{"type":"LineString","arcs":[8805],"id":68786,"properties":{"V":345}},{"type":"LineString","arcs":[8806],"id":68790,"properties":{"V":345}},{"type":"LineString","arcs":[8807],"id":68813,"properties":{"V":345}},{"type":"LineString","arcs":[8808],"id":68827,"properties":{"V":230}},{"type":"LineString","arcs":[8809],"id":68830,"properties":{"V":230}},{"type":"LineString","arcs":[8810,8811],"id":68833,"properties":{"V":230}},{"type":"LineString","arcs":[8812],"id":68848,"properties":{"V":230}},{"type":"LineString","arcs":[8813],"id":68865,"properties":{"V":230}},{"type":"LineString","arcs":[8814],"id":68883,"properties":{"V":230}},{"type":"LineString","arcs":[8815,8816],"id":68902,"properties":{"V":230}},{"type":"LineString","arcs":[8817],"id":68903,"properties":{"V":230}},{"type":"LineString","arcs":[8818],"id":68910,"properties":{"V":230}},{"type":"LineString","arcs":[8819],"id":68913,"properties":{"V":345}},{"type":"LineString","arcs":[8820],"id":68915,"properties":{"V":230}},{"type":"LineString","arcs":[8821],"id":68917,"properties":{"V":230}},{"type":"LineString","arcs":[8822],"id":68921,"properties":{"V":230}},{"type":"LineString","arcs":[8823],"id":68928,"properties":{"V":230}},{"type":"LineString","arcs":[8824],"id":68930,"properties":{"V":345}},{"type":"LineString","arcs":[8825],"id":68951,"properties":{"V":500}},{"type":"LineString","arcs":[8826],"id":68955,"properties":{"V":230}},{"type":"LineString","arcs":[8827],"id":68957,"properties":{"V":230}},{"type":"LineString","arcs":[8828],"id":68961,"properties":{"V":230}},{"type":"LineString","arcs":[8829],"id":68964,"properties":{"V":345}},{"type":"LineString","arcs":[8830],"id":68975,"properties":{"V":345}},{"type":"LineString","arcs":[8831],"id":68990,"properties":{"V":230}},{"type":"LineString","arcs":[8832],"id":68992,"properties":{"V":230}},{"type":"LineString","arcs":[8833],"id":69008,"properties":{"V":230}},{"type":"LineString","arcs":[8834],"id":69010,"properties":{"V":230}},{"type":"LineString","arcs":[8835],"id":69011,"properties":{"V":345}},{"type":"LineString","arcs":[8836],"id":69016,"properties":{"V":230}},{"type":"LineString","arcs":[8837],"id":69028,"properties":{"V":345}},{"type":"LineString","arcs":[8838],"id":69053,"properties":{"V":230}},{"type":"LineString","arcs":[8839],"id":69061,"properties":{"V":345}},{"type":"LineString","arcs":[8840],"id":69062,"properties":{"V":345}},{"type":"LineString","arcs":[8841],"id":69076,"properties":{"V":230}},{"type":"LineString","arcs":[8842],"id":69080,"properties":{"V":230}},{"type":"LineString","arcs":[8843],"id":69081,"properties":{"V":230}},{"type":"LineString","arcs":[8844],"id":69095,"properties":{"V":230}},{"type":"LineString","arcs":[8845],"id":69102,"properties":{"V":230}},{"type":"LineString","arcs":[8846],"id":69104,"properties":{"V":230}},{"type":"LineString","arcs":[8847],"id":69109,"properties":{"V":230}},{"type":"LineString","arcs":[8848],"id":69110,"properties":{"V":230}},{"type":"LineString","arcs":[8849],"id":69120,"properties":{"V":230}},{"type":"LineString","arcs":[8850],"id":69131,"properties":{"V":230}},{"type":"LineString","arcs":[8851],"id":69137,"properties":{"V":230}},{"type":"LineString","arcs":[8852],"id":69140,"properties":{"V":230}},{"type":"LineString","arcs":[8853],"id":69143,"properties":{"V":230}},{"type":"LineString","arcs":[8854],"id":69152,"properties":{"V":230}},{"type":"LineString","arcs":[8855,8856],"id":69159,"properties":{"V":230}},{"type":"LineString","arcs":[8857],"id":69166,"properties":{"V":230}},{"type":"LineString","arcs":[8858],"id":69168,"properties":{"V":345}},{"type":"LineString","arcs":[8859],"id":69186,"properties":{"V":345}},{"type":"LineString","arcs":[8860],"id":69191,"properties":{"V":230}},{"type":"LineString","arcs":[8861],"id":69197,"properties":{"V":230}},{"type":"LineString","arcs":[8862],"id":69199,"properties":{"V":230}},{"type":"LineString","arcs":[8863],"id":69206,"properties":{"V":230}},{"type":"LineString","arcs":[8864],"id":69212,"properties":{"V":230}},{"type":"LineString","arcs":[8865],"id":69217,"properties":{"V":230}},{"type":"LineString","arcs":[8866],"id":69218,"properties":{"V":230}},{"type":"LineString","arcs":[8867],"id":69234,"properties":{"V":345}},{"type":"LineString","arcs":[8868,8869,8870],"id":69243,"properties":{"V":345}},{"type":"LineString","arcs":[8871],"id":69253,"properties":{"V":345}},{"type":"LineString","arcs":[8872],"id":69265,"properties":{"V":230}},{"type":"LineString","arcs":[8873],"id":69277,"properties":{"V":230}},{"type":"LineString","arcs":[8874],"id":69280,"properties":{"V":230}},{"type":"LineString","arcs":[8875],"id":69300,"properties":{"V":230}},{"type":"LineString","arcs":[8876],"id":69301,"properties":{"V":345}},{"type":"LineString","arcs":[8877],"id":69305,"properties":{"V":345}},{"type":"LineString","arcs":[8878],"id":69308,"properties":{"V":230}},{"type":"LineString","arcs":[8879],"id":69314,"properties":{"V":230}},{"type":"LineString","arcs":[8880],"id":69318,"properties":{"V":230}},{"type":"LineString","arcs":[8881],"id":69324,"properties":{"V":230}},{"type":"LineString","arcs":[8882],"id":69327,"properties":{"V":230}},{"type":"LineString","arcs":[8883],"id":69333,"properties":{"V":230}},{"type":"LineString","arcs":[8884],"id":69337,"properties":{"V":230}},{"type":"LineString","arcs":[8885],"id":69340,"properties":{"V":230}},{"type":"LineString","arcs":[8886],"id":69343,"properties":{"V":230}},{"type":"LineString","arcs":[8887,8888],"id":69382,"properties":{"V":230}},{"type":"LineString","arcs":[8889],"id":69386,"properties":{"V":230}},{"type":"LineString","arcs":[8890],"id":69389,"properties":{"V":230}},{"type":"LineString","arcs":[8891],"id":69397,"properties":{"V":500}},{"type":"LineString","arcs":[8892],"id":69410,"properties":{"V":230}},{"type":"LineString","arcs":[8893],"id":69415,"properties":{"V":230}},{"type":"LineString","arcs":[8894],"id":69432,"properties":{"V":345}},{"type":"LineString","arcs":[8895],"id":69439,"properties":{"V":230}},{"type":"LineString","arcs":[8896],"id":69440,"properties":{"V":230}},{"type":"LineString","arcs":[8897],"id":69454,"properties":{"V":230}},{"type":"LineString","arcs":[8898],"id":69458,"properties":{"V":345}},{"type":"LineString","arcs":[8899],"id":69464,"properties":{"V":230}},{"type":"LineString","arcs":[8900],"id":69484,"properties":{"V":230}},{"type":"LineString","arcs":[8901,8902],"id":69485,"properties":{"V":500}},{"type":"LineString","arcs":[8903],"id":69487,"properties":{"V":230}},{"type":"LineString","arcs":[8904],"id":69510,"properties":{"V":230}},{"type":"LineString","arcs":[8905],"id":69517,"properties":{"V":230}},{"type":"LineString","arcs":[8906],"id":69536,"properties":{"V":345}},{"type":"LineString","arcs":[8907,8908],"id":69546,"properties":{"V":345}},{"type":"LineString","arcs":[8909],"id":69548,"properties":{"V":345}},{"type":"LineString","arcs":[8910],"id":69552,"properties":{"V":345}},{"type":"LineString","arcs":[8911],"id":69556,"properties":{"V":230}},{"type":"LineString","arcs":[8912],"id":69560,"properties":{"V":230}},{"type":"LineString","arcs":[8913],"id":69565,"properties":{"V":230}},{"type":"LineString","arcs":[8914],"id":69568,"properties":{"V":500}},{"type":"LineString","arcs":[8915],"id":69587,"properties":{"V":230}},{"type":"LineString","arcs":[8916],"id":69592,"properties":{"V":230}},{"type":"LineString","arcs":[8917],"id":69626,"properties":{"V":230}},{"type":"LineString","arcs":[8918],"id":69636,"properties":{"V":230}},{"type":"LineString","arcs":[8919],"id":69647,"properties":{"V":230}},{"type":"LineString","arcs":[8920],"id":69650,"properties":{"V":230}},{"type":"LineString","arcs":[8921],"id":69658,"properties":{"V":230}},{"type":"LineString","arcs":[8922],"id":69661,"properties":{"V":345}},{"type":"LineString","arcs":[8923],"id":69671,"properties":{"V":230}},{"type":"LineString","arcs":[8924],"id":69673,"properties":{"V":230}},{"type":"LineString","arcs":[8925],"id":69680,"properties":{"V":230}},{"type":"LineString","arcs":[8926],"id":69693,"properties":{"V":230}},{"type":"LineString","arcs":[8927],"id":69702,"properties":{"V":230}},{"type":"LineString","arcs":[8928],"id":69704,"properties":{"V":230}},{"type":"LineString","arcs":[8929],"id":69715,"properties":{"V":500}},{"type":"LineString","arcs":[8930],"id":69717,"properties":{"V":345}},{"type":"LineString","arcs":[8931],"id":69722,"properties":{"V":230}},{"type":"LineString","arcs":[8932],"id":69723,"properties":{"V":230}},{"type":"LineString","arcs":[8933],"id":69732,"properties":{"V":230}},{"type":"LineString","arcs":[8934],"id":69738,"properties":{"V":230}},{"type":"LineString","arcs":[8935],"id":69739,"properties":{"V":230}},{"type":"LineString","arcs":[8936],"id":69752,"properties":{"V":230}},{"type":"LineString","arcs":[8937],"id":69753,"properties":{"V":230}},{"type":"LineString","arcs":[8938],"id":69755,"properties":{"V":230}},{"type":"LineString","arcs":[8939,8940],"id":69758,"properties":{"V":230}},{"type":"LineString","arcs":[8941],"id":69760,"properties":{"V":230}},{"type":"LineString","arcs":[8942],"id":69761,"properties":{"V":230}},{"type":"LineString","arcs":[8943],"id":69767,"properties":{"V":230}},{"type":"LineString","arcs":[8944],"id":69774,"properties":{"V":230}},{"type":"LineString","arcs":[8945],"id":69778,"properties":{"V":230}},{"type":"LineString","arcs":[8946,8947],"id":69798,"properties":{"V":230}},{"type":"LineString","arcs":[8948],"id":69801,"properties":{"V":230}},{"type":"LineString","arcs":[8949],"id":69810,"properties":{"V":500}},{"type":"LineString","arcs":[8950],"id":69812,"properties":{"V":230}},{"type":"LineString","arcs":[8951],"id":69816,"properties":{"V":230}},{"type":"LineString","arcs":[8952],"id":69843,"properties":{"V":345}},{"type":"LineString","arcs":[8953],"id":69853,"properties":{"V":230}},{"type":"LineString","arcs":[8954],"id":69877,"properties":{"V":230}},{"type":"LineString","arcs":[8955],"id":69882,"properties":{"V":500}},{"type":"LineString","arcs":[8956],"id":69906,"properties":{"V":230}},{"type":"LineString","arcs":[8957],"id":69908,"properties":{"V":230}},{"type":"LineString","arcs":[8958,8959],"id":69909,"properties":{"V":230}},{"type":"LineString","arcs":[8960],"id":69916,"properties":{"V":230}},{"type":"LineString","arcs":[8961],"id":69930,"properties":{"V":230}},{"type":"LineString","arcs":[8962],"id":69934,"properties":{"V":345}},{"type":"LineString","arcs":[8963],"id":69936,"properties":{"V":765}},{"type":"LineString","arcs":[8964],"id":69937,"properties":{"V":230}},{"type":"LineString","arcs":[8965],"id":69946,"properties":{"V":345}},{"type":"LineString","arcs":[8966,8967,8968,8969],"id":69953,"properties":{"V":500}},{"type":"LineString","arcs":[8970],"id":69957,"properties":{"V":230}},{"type":"LineString","arcs":[8971],"id":69959,"properties":{"V":345}},{"type":"LineString","arcs":[8972],"id":69990,"properties":{"V":230}},{"type":"LineString","arcs":[8973],"id":69992,"properties":{"V":230}},{"type":"LineString","arcs":[8974],"id":69995,"properties":{"V":230}},{"type":"LineString","arcs":[8975],"id":70005,"properties":{"V":500}},{"type":"LineString","arcs":[8976],"id":70013,"properties":{"V":230}},{"type":"LineString","arcs":[8977],"id":70021,"properties":{"V":230}},{"type":"LineString","arcs":[8978],"id":70026,"properties":{"V":345}},{"type":"LineString","arcs":[8979],"id":70029,"properties":{"V":345}},{"type":"LineString","arcs":[8980],"id":70038,"properties":{"V":230}},{"type":"LineString","arcs":[8981],"id":70055,"properties":{"V":230}},{"type":"LineString","arcs":[8982],"id":70058,"properties":{"V":345}},{"type":"LineString","arcs":[8983],"id":70063,"properties":{"V":230}},{"type":"LineString","arcs":[8984],"id":70067,"properties":{"V":345}},{"type":"LineString","arcs":[8985],"id":70070,"properties":{"V":230}},{"type":"LineString","arcs":[8986],"id":70076,"properties":{"V":345}},{"type":"LineString","arcs":[8987],"id":70079,"properties":{"V":230}},{"type":"LineString","arcs":[8988,8989],"id":70090,"properties":{"V":345}},{"type":"LineString","arcs":[8990],"id":70102,"properties":{"V":345}},{"type":"LineString","arcs":[8991],"id":70110,"properties":{"V":230}},{"type":"LineString","arcs":[8992],"id":70111,"properties":{"V":500}},{"type":"LineString","arcs":[8993],"id":70133,"properties":{"V":230}},{"type":"LineString","arcs":[8994],"id":70154,"properties":{"V":230}},{"type":"LineString","arcs":[8995],"id":70158,"properties":{"V":345}},{"type":"LineString","arcs":[8996],"id":70172,"properties":{"V":230}},{"type":"LineString","arcs":[8997],"id":70176,"properties":{"V":345}},{"type":"LineString","arcs":[8998],"id":70177,"properties":{"V":345}},{"type":"LineString","arcs":[8999],"id":70179,"properties":{"V":230}},{"type":"LineString","arcs":[9000],"id":70193,"properties":{"V":230}},{"type":"LineString","arcs":[9001],"id":70208,"properties":{"V":230}},{"type":"LineString","arcs":[9002],"id":70226,"properties":{"V":345}},{"type":"LineString","arcs":[9003],"id":70234,"properties":{"V":230}},{"type":"LineString","arcs":[9004],"id":70239,"properties":{"V":500}},{"type":"LineString","arcs":[9005],"id":70255,"properties":{"V":345}},{"type":"LineString","arcs":[9006],"id":70275,"properties":{"V":230}},{"type":"LineString","arcs":[9007],"id":70304,"properties":{"V":345}},{"type":"LineString","arcs":[9008],"id":70317,"properties":{"V":345}},{"type":"LineString","arcs":[9009],"id":70325,"properties":{"V":230}},{"type":"LineString","arcs":[9010],"id":70339,"properties":{"V":345}},{"type":"LineString","arcs":[9011],"id":70356,"properties":{"V":345}},{"type":"LineString","arcs":[9012],"id":70370,"properties":{"V":230}},{"type":"LineString","arcs":[9013],"id":70372,"properties":{"V":230}},{"type":"LineString","arcs":[9014],"id":70377,"properties":{"V":345}},{"type":"LineString","arcs":[9015],"id":70381,"properties":{"V":345}},{"type":"LineString","arcs":[9016],"id":70387,"properties":{"V":450}},{"type":"LineString","arcs":[9017],"id":70403,"properties":{"V":230}},{"type":"LineString","arcs":[9018],"id":70417,"properties":{"V":345}},{"type":"LineString","arcs":[9019],"id":70443,"properties":{"V":230}},{"type":"LineString","arcs":[9020],"id":70452,"properties":{"V":230}},{"type":"LineString","arcs":[9021],"id":70454,"properties":{"V":500}},{"type":"LineString","arcs":[9022],"id":70455,"properties":{"V":230}},{"type":"LineString","arcs":[9023],"id":70457,"properties":{"V":230}},{"type":"LineString","arcs":[9024],"id":70483,"properties":{"V":500}},{"type":"LineString","arcs":[9025],"id":70499,"properties":{"V":230}},{"type":"LineString","arcs":[9026],"id":70502,"properties":{"V":345}},{"type":"LineString","arcs":[9027],"id":70516,"properties":{"V":230}},{"type":"LineString","arcs":[9028],"id":70532,"properties":{"V":230}},{"type":"LineString","arcs":[9029,9030],"id":70542,"properties":{"V":230}},{"type":"LineString","arcs":[9031],"id":70545,"properties":{"V":500}},{"type":"LineString","arcs":[9032],"id":70551,"properties":{"V":500}},{"type":"LineString","arcs":[9033,9034],"id":70560,"properties":{"V":230}},{"type":"LineString","arcs":[9035],"id":70568,"properties":{"V":230}},{"type":"LineString","arcs":[9036],"id":70570,"properties":{"V":230}},{"type":"LineString","arcs":[9037],"id":70580,"properties":{"V":500}},{"type":"LineString","arcs":[9038],"id":70583,"properties":{"V":500}},{"type":"LineString","arcs":[9039],"id":70585,"properties":{"V":230}},{"type":"LineString","arcs":[9040],"id":70589,"properties":{"V":345}},{"type":"LineString","arcs":[9041],"id":70600,"properties":{"V":230}},{"type":"LineString","arcs":[9042],"id":70616,"properties":{"V":345}},{"type":"LineString","arcs":[9043],"id":70619,"properties":{"V":230}},{"type":"LineString","arcs":[9044],"id":70624,"properties":{"V":345}},{"type":"LineString","arcs":[9045],"id":70625,"properties":{"V":345}},{"type":"LineString","arcs":[9046],"id":70631,"properties":{"V":230}},{"type":"LineString","arcs":[9047],"id":70633,"properties":{"V":500}},{"type":"LineString","arcs":[9048,9049,9050,9051],"id":70635,"properties":{"V":230}},{"type":"LineString","arcs":[9052],"id":70636,"properties":{"V":230}},{"type":"LineString","arcs":[9053],"id":70640,"properties":{"V":230}},{"type":"LineString","arcs":[9054],"id":70650,"properties":{"V":230}},{"type":"LineString","arcs":[9055],"id":70652,"properties":{"V":345}},{"type":"LineString","arcs":[9056],"id":70659,"properties":{"V":345}},{"type":"LineString","arcs":[9057],"id":70663,"properties":{"V":230}},{"type":"LineString","arcs":[9058],"id":70665,"properties":{"V":230}},{"type":"LineString","arcs":[9059],"id":70668,"properties":{"V":500}},{"type":"LineString","arcs":[9060],"id":70670,"properties":{"V":230}},{"type":"LineString","arcs":[9061],"id":70672,"properties":{"V":230}},{"type":"LineString","arcs":[9062],"id":70684,"properties":{"V":345}},{"type":"LineString","arcs":[9063],"id":70686,"properties":{"V":230}},{"type":"LineString","arcs":[9064],"id":70689,"properties":{"V":230}},{"type":"LineString","arcs":[9065,9066,9067,9068,9069],"id":70697,"properties":{"V":230}},{"type":"LineString","arcs":[9070],"id":70706,"properties":{"V":345}},{"type":"LineString","arcs":[9071],"id":70719,"properties":{"V":230}},{"type":"LineString","arcs":[9072],"id":70734,"properties":{"V":345}},{"type":"LineString","arcs":[9073],"id":70755,"properties":{"V":345}},{"type":"LineString","arcs":[9074],"id":70758,"properties":{"V":230}},{"type":"LineString","arcs":[9075],"id":70784,"properties":{"V":230}},{"type":"LineString","arcs":[9076],"id":70785,"properties":{"V":230}},{"type":"LineString","arcs":[9077],"id":70791,"properties":{"V":230}},{"type":"LineString","arcs":[9078],"id":70797,"properties":{"V":230}},{"type":"LineString","arcs":[9079],"id":70822,"properties":{"V":230}},{"type":"LineString","arcs":[9080],"id":70823,"properties":{"V":230}},{"type":"LineString","arcs":[9081],"id":70825,"properties":{"V":500}},{"type":"LineString","arcs":[9082],"id":70829,"properties":{"V":230}},{"type":"LineString","arcs":[9083],"id":70844,"properties":{"V":230}},{"type":"LineString","arcs":[9084],"id":70845,"properties":{"V":230}},{"type":"LineString","arcs":[9085],"id":70848,"properties":{"V":230}},{"type":"LineString","arcs":[9086],"id":70859,"properties":{"V":230}},{"type":"LineString","arcs":[9087],"id":70866,"properties":{"V":230}},{"type":"LineString","arcs":[9088],"id":70876,"properties":{"V":230}},{"type":"LineString","arcs":[9089],"id":70879,"properties":{"V":230}},{"type":"LineString","arcs":[9090],"id":70881,"properties":{"V":345}},{"type":"LineString","arcs":[9091],"id":70882,"properties":{"V":230}},{"type":"LineString","arcs":[9092],"id":70885,"properties":{"V":230}},{"type":"LineString","arcs":[9093],"id":70893,"properties":{"V":345}},{"type":"LineString","arcs":[9094],"id":70910,"properties":{"V":230}},{"type":"LineString","arcs":[9095],"id":70911,"properties":{"V":500}},{"type":"LineString","arcs":[9096],"id":70912,"properties":{"V":230}},{"type":"LineString","arcs":[9097],"id":70917,"properties":{"V":230}},{"type":"LineString","arcs":[9098],"id":70918,"properties":{"V":230}},{"type":"LineString","arcs":[9099],"id":70920,"properties":{"V":230}},{"type":"LineString","arcs":[9100],"id":70931,"properties":{"V":230}},{"type":"LineString","arcs":[9101],"id":70953,"properties":{"V":230}},{"type":"LineString","arcs":[9102],"id":70958,"properties":{"V":230}},{"type":"LineString","arcs":[9103],"id":70970,"properties":{"V":500}},{"type":"LineString","arcs":[9104],"id":70996,"properties":{"V":230}},{"type":"LineString","arcs":[9105],"id":71005,"properties":{"V":230}},{"type":"LineString","arcs":[9106],"id":71011,"properties":{"V":230}},{"type":"LineString","arcs":[9107],"id":71018,"properties":{"V":345}},{"type":"LineString","arcs":[9108],"id":71019,"properties":{"V":345}},{"type":"LineString","arcs":[9109],"id":71027,"properties":{"V":345}},{"type":"LineString","arcs":[9110,9111],"id":71038,"properties":{"V":345}},{"type":"LineString","arcs":[9112],"id":71040,"properties":{"V":230}},{"type":"LineString","arcs":[9113],"id":71045,"properties":{"V":230}},{"type":"LineString","arcs":[9114],"id":71046,"properties":{"V":345}},{"type":"LineString","arcs":[9115],"id":71047,"properties":{"V":230}},{"type":"LineString","arcs":[9116],"id":71049,"properties":{"V":230}},{"type":"LineString","arcs":[9117],"id":71057,"properties":{"V":345}},{"type":"LineString","arcs":[9118],"id":71060,"properties":{"V":345}},{"type":"LineString","arcs":[9119],"id":71071,"properties":{"V":230}},{"type":"LineString","arcs":[9120],"id":71083,"properties":{"V":230}},{"type":"LineString","arcs":[9121],"id":71094,"properties":{"V":230}},{"type":"LineString","arcs":[9122],"id":71120,"properties":{"V":345}},{"type":"LineString","arcs":[9123],"id":71124,"properties":{"V":230}},{"type":"LineString","arcs":[9124],"id":71153,"properties":{"V":345}},{"type":"LineString","arcs":[9125],"id":71154,"properties":{"V":345}},{"type":"LineString","arcs":[9126],"id":71160,"properties":{"V":345}},{"type":"LineString","arcs":[9127],"id":71165,"properties":{"V":230}},{"type":"LineString","arcs":[9128],"id":71167,"properties":{"V":230}},{"type":"LineString","arcs":[9129],"id":71192,"properties":{"V":230}},{"type":"LineString","arcs":[9130],"id":71193,"properties":{"V":230}},{"type":"LineString","arcs":[9131],"id":71219,"properties":{"V":230}},{"type":"LineString","arcs":[9132],"id":71220,"properties":{"V":230}},{"type":"LineString","arcs":[9133],"id":71239,"properties":{"V":230}},{"type":"LineString","arcs":[9134],"id":71248,"properties":{"V":500}},{"type":"LineString","arcs":[9135,9136,9137],"id":71251,"properties":{"V":230}},{"type":"LineString","arcs":[9138],"id":71262,"properties":{"V":230}},{"type":"LineString","arcs":[9139],"id":71270,"properties":{"V":345}},{"type":"LineString","arcs":[9140],"id":71282,"properties":{"V":230}},{"type":"LineString","arcs":[9141],"id":71288,"properties":{"V":230}},{"type":"LineString","arcs":[9142],"id":71292,"properties":{"V":230}},{"type":"LineString","arcs":[9143],"id":71302,"properties":{"V":345}},{"type":"LineString","arcs":[9144],"id":71312,"properties":{"V":230}},{"type":"LineString","arcs":[9145],"id":71324,"properties":{"V":230}},{"type":"LineString","arcs":[9146],"id":71333,"properties":{"V":345}},{"type":"LineString","arcs":[9147],"id":71340,"properties":{"V":500}},{"type":"LineString","arcs":[9148,9149,9150,9151],"id":71349,"properties":{"V":230}},{"type":"LineString","arcs":[9152],"id":71353,"properties":{"V":500}},{"type":"LineString","arcs":[9153],"id":71356,"properties":{"V":345}},{"type":"LineString","arcs":[9154],"id":71371,"properties":{"V":345}},{"type":"LineString","arcs":[9155,9156],"id":71376,"properties":{"V":230}},{"type":"LineString","arcs":[9157],"id":71380,"properties":{"V":230}},{"type":"LineString","arcs":[9158],"id":71382,"properties":{"V":345}},{"type":"LineString","arcs":[9159],"id":71389,"properties":{"V":230}},{"type":"LineString","arcs":[9160],"id":71394,"properties":{"V":230}},{"type":"LineString","arcs":[9161],"id":71403,"properties":{"V":230}},{"type":"LineString","arcs":[9162],"id":71405,"properties":{"V":230}},{"type":"LineString","arcs":[9163],"id":71408,"properties":{"V":230}},{"type":"LineString","arcs":[9164,9165,9166,9167,9168,9169],"id":71422,"properties":{"V":230}},{"type":"LineString","arcs":[9170],"id":71436,"properties":{"V":230}},{"type":"LineString","arcs":[9171],"id":71466,"properties":{"V":230}},{"type":"LineString","arcs":[9172],"id":71475,"properties":{"V":230}},{"type":"LineString","arcs":[9173],"id":71476,"properties":{"V":345}},{"type":"LineString","arcs":[9174],"id":71489,"properties":{"V":230}},{"type":"LineString","arcs":[9175],"id":71503,"properties":{"V":230}},{"type":"LineString","arcs":[9176],"id":71511,"properties":{"V":345}},{"type":"LineString","arcs":[9177],"id":71526,"properties":{"V":230}},{"type":"LineString","arcs":[9178],"id":71539,"properties":{"V":230}},{"type":"LineString","arcs":[9179],"id":71553,"properties":{"V":230}},{"type":"LineString","arcs":[9180],"id":71554,"properties":{"V":345}},{"type":"LineString","arcs":[9181],"id":71557,"properties":{"V":230}},{"type":"LineString","arcs":[9182],"id":71576,"properties":{"V":230}},{"type":"LineString","arcs":[9183],"id":71578,"properties":{"V":765}},{"type":"LineString","arcs":[9184],"id":71603,"properties":{"V":345}},{"type":"LineString","arcs":[9185],"id":71606,"properties":{"V":230}},{"type":"LineString","arcs":[9186],"id":71616,"properties":{"V":230}},{"type":"LineString","arcs":[9187],"id":71618,"properties":{"V":345}},{"type":"LineString","arcs":[9188],"id":71622,"properties":{"V":230}},{"type":"LineString","arcs":[9189],"id":71623,"properties":{"V":500}},{"type":"LineString","arcs":[9190],"id":71630,"properties":{"V":230}},{"type":"LineString","arcs":[9191],"id":71631,"properties":{"V":230}},{"type":"LineString","arcs":[9192],"id":71643,"properties":{"V":230}},{"type":"LineString","arcs":[9193],"id":71644,"properties":{"V":230}},{"type":"LineString","arcs":[9194],"id":71650,"properties":{"V":345}},{"type":"LineString","arcs":[9195],"id":71669,"properties":{"V":230}},{"type":"LineString","arcs":[9196],"id":71670,"properties":{"V":230}},{"type":"LineString","arcs":[9197],"id":71683,"properties":{"V":230}},{"type":"LineString","arcs":[9198,9199],"id":71714,"properties":{"V":230}},{"type":"LineString","arcs":[9200],"id":71748,"properties":{"V":230}},{"type":"LineString","arcs":[9201],"id":71749,"properties":{"V":230}},{"type":"LineString","arcs":[9202],"id":71776,"properties":{"V":230}},{"type":"LineString","arcs":[9203],"id":71780,"properties":{"V":230}},{"type":"LineString","arcs":[9204],"id":71791,"properties":{"V":345}},{"type":"LineString","arcs":[9205],"id":71801,"properties":{"V":230}},{"type":"LineString","arcs":[9206],"id":71806,"properties":{"V":230}},{"type":"LineString","arcs":[9207],"id":71807,"properties":{"V":230}},{"type":"LineString","arcs":[9208],"id":71812,"properties":{"V":345}},{"type":"LineString","arcs":[9209],"id":71813,"properties":{"V":345}},{"type":"LineString","arcs":[9210],"id":71818,"properties":{"V":230}},{"type":"LineString","arcs":[9211],"id":71820,"properties":{"V":500}},{"type":"LineString","arcs":[9212],"id":71834,"properties":{"V":230}},{"type":"LineString","arcs":[9213],"id":71842,"properties":{"V":345}},{"type":"LineString","arcs":[9214],"id":71856,"properties":{"V":345}},{"type":"LineString","arcs":[9215],"id":71857,"properties":{"V":230}},{"type":"LineString","arcs":[9216],"id":71861,"properties":{"V":230}},{"type":"LineString","arcs":[9217],"id":71895,"properties":{"V":230}},{"type":"LineString","arcs":[9218],"id":71896,"properties":{"V":230}},{"type":"LineString","arcs":[9219],"id":71909,"properties":{"V":230}},{"type":"LineString","arcs":[9220],"id":71925,"properties":{"V":500}},{"type":"LineString","arcs":[9221],"id":71926,"properties":{"V":230}},{"type":"LineString","arcs":[9222],"id":71927,"properties":{"V":230}},{"type":"LineString","arcs":[9223],"id":71931,"properties":{"V":345}},{"type":"LineString","arcs":[9224],"id":71935,"properties":{"V":230}},{"type":"LineString","arcs":[9225],"id":71936,"properties":{"V":230}},{"type":"LineString","arcs":[9226],"id":71951,"properties":{"V":230}},{"type":"LineString","arcs":[9227],"id":71970,"properties":{"V":230}},{"type":"LineString","arcs":[9228],"id":71980,"properties":{"V":345}},{"type":"LineString","arcs":[9229],"id":71991,"properties":{"V":500}},{"type":"LineString","arcs":[9230],"id":72001,"properties":{"V":230}},{"type":"LineString","arcs":[9231],"id":72004,"properties":{"V":230}},{"type":"LineString","arcs":[9232],"id":72005,"properties":{"V":345}},{"type":"LineString","arcs":[9233],"id":72010,"properties":{"V":230}},{"type":"LineString","arcs":[9234],"id":72012,"properties":{"V":230}},{"type":"LineString","arcs":[9235],"id":72021,"properties":{"V":230}},{"type":"LineString","arcs":[9236],"id":72025,"properties":{"V":230}},{"type":"LineString","arcs":[9237],"id":72052,"properties":{"V":230}},{"type":"LineString","arcs":[9238],"id":72056,"properties":{"V":230}},{"type":"LineString","arcs":[9239],"id":72088,"properties":{"V":230}},{"type":"LineString","arcs":[9240],"id":72094,"properties":{"V":230}},{"type":"LineString","arcs":[9241],"id":72116,"properties":{"V":230}},{"type":"LineString","arcs":[9242],"id":72120,"properties":{"V":230}},{"type":"LineString","arcs":[9243,9244],"id":72127,"properties":{"V":345}},{"type":"LineString","arcs":[9245],"id":72134,"properties":{"V":345}},{"type":"LineString","arcs":[9246],"id":72138,"properties":{"V":345}},{"type":"LineString","arcs":[9247],"id":72143,"properties":{"V":230}},{"type":"LineString","arcs":[9248],"id":72152,"properties":{"V":230}},{"type":"LineString","arcs":[9249],"id":72158,"properties":{"V":230}},{"type":"LineString","arcs":[9250],"id":72162,"properties":{"V":230}},{"type":"LineString","arcs":[9251],"id":72168,"properties":{"V":345}},{"type":"LineString","arcs":[9252],"id":72195,"properties":{"V":230}},{"type":"LineString","arcs":[9253],"id":72196,"properties":{"V":230}},{"type":"LineString","arcs":[9254],"id":72197,"properties":{"V":230}},{"type":"LineString","arcs":[9255],"id":72198,"properties":{"V":500}},{"type":"LineString","arcs":[9256],"id":72203,"properties":{"V":345}},{"type":"LineString","arcs":[9257],"id":72232,"properties":{"V":230}},{"type":"LineString","arcs":[9258],"id":72244,"properties":{"V":500}},{"type":"LineString","arcs":[9259],"id":72248,"properties":{"V":230}},{"type":"LineString","arcs":[9260],"id":72254,"properties":{"V":230}},{"type":"LineString","arcs":[9261],"id":72255,"properties":{"V":230}},{"type":"LineString","arcs":[9262],"id":72259,"properties":{"V":500}},{"type":"LineString","arcs":[9263],"id":72286,"properties":{"V":345}},{"type":"LineString","arcs":[9264],"id":72293,"properties":{"V":345}},{"type":"LineString","arcs":[9265],"id":72298,"properties":{"V":230}},{"type":"LineString","arcs":[9266],"id":72301,"properties":{"V":230}},{"type":"LineString","arcs":[9267],"id":72303,"properties":{"V":500}},{"type":"LineString","arcs":[9268],"id":72305,"properties":{"V":230}},{"type":"LineString","arcs":[9269],"id":72319,"properties":{"V":230}},{"type":"LineString","arcs":[9270],"id":72325,"properties":{"V":345}},{"type":"LineString","arcs":[9271],"id":72335,"properties":{"V":345}},{"type":"LineString","arcs":[9272],"id":72343,"properties":{"V":230}},{"type":"LineString","arcs":[9273],"id":72349,"properties":{"V":230}},{"type":"LineString","arcs":[9274],"id":72368,"properties":{"V":230}},{"type":"LineString","arcs":[9275],"id":72375,"properties":{"V":500}},{"type":"LineString","arcs":[9276],"id":72377,"properties":{"V":500}},{"type":"LineString","arcs":[9277],"id":72378,"properties":{"V":345}},{"type":"LineString","arcs":[9278],"id":72382,"properties":{"V":345}},{"type":"LineString","arcs":[9279],"id":72396,"properties":{"V":230}},{"type":"LineString","arcs":[9280],"id":72397,"properties":{"V":230}},{"type":"LineString","arcs":[9281,9282],"id":72400,"properties":{"V":345}},{"type":"LineString","arcs":[9283],"id":72401,"properties":{"V":500}},{"type":"LineString","arcs":[9284],"id":72405,"properties":{"V":230}},{"type":"LineString","arcs":[9285,9286,9287],"id":72420,"properties":{"V":230}},{"type":"LineString","arcs":[9288],"id":72430,"properties":{"V":230}},{"type":"LineString","arcs":[9289],"id":72432,"properties":{"V":230}},{"type":"LineString","arcs":[9290],"id":72437,"properties":{"V":230}},{"type":"LineString","arcs":[9291,9292,9293,9294],"id":72442,"properties":{"V":230}},{"type":"LineString","arcs":[9295],"id":72448,"properties":{"V":230}},{"type":"LineString","arcs":[9296],"id":72451,"properties":{"V":345}},{"type":"LineString","arcs":[9297],"id":72480,"properties":{"V":345}},{"type":"LineString","arcs":[9298],"id":72485,"properties":{"V":230}},{"type":"LineString","arcs":[9299],"id":72487,"properties":{"V":230}},{"type":"LineString","arcs":[9300],"id":72499,"properties":{"V":230}},{"type":"LineString","arcs":[9301],"id":72513,"properties":{"V":230}},{"type":"LineString","arcs":[9302],"id":72514,"properties":{"V":230}},{"type":"LineString","arcs":[9303],"id":72523,"properties":{"V":230}},{"type":"LineString","arcs":[9304],"id":72525,"properties":{"V":230}},{"type":"LineString","arcs":[9305],"id":72531,"properties":{"V":230}},{"type":"LineString","arcs":[9306],"id":72547,"properties":{"V":230}},{"type":"LineString","arcs":[9307],"id":72567,"properties":{"V":230}},{"type":"LineString","arcs":[9308],"id":72569,"properties":{"V":230}},{"type":"LineString","arcs":[9309],"id":72576,"properties":{"V":345}},{"type":"LineString","arcs":[9310],"id":72591,"properties":{"V":230}},{"type":"LineString","arcs":[9311],"id":72595,"properties":{"V":230}},{"type":"LineString","arcs":[9312],"id":72614,"properties":{"V":230}},{"type":"LineString","arcs":[9313],"id":72620,"properties":{"V":230}},{"type":"LineString","arcs":[9314],"id":72621,"properties":{"V":230}},{"type":"LineString","arcs":[9315],"id":72625,"properties":{"V":230}},{"type":"LineString","arcs":[9316],"id":72626,"properties":{"V":230}},{"type":"LineString","arcs":[9317],"id":72627,"properties":{"V":230}},{"type":"LineString","arcs":[9318],"id":72629,"properties":{"V":230}},{"type":"LineString","arcs":[9319],"id":72630,"properties":{"V":230}},{"type":"LineString","arcs":[9320],"id":72641,"properties":{"V":230}},{"type":"LineString","arcs":[9321],"id":72666,"properties":{"V":345}},{"type":"LineString","arcs":[9322],"id":72687,"properties":{"V":230}},{"type":"LineString","arcs":[9323],"id":72698,"properties":{"V":230}},{"type":"LineString","arcs":[9324],"id":72701,"properties":{"V":230}},{"type":"LineString","arcs":[9325],"id":72718,"properties":{"V":230}},{"type":"LineString","arcs":[9326],"id":72719,"properties":{"V":230}},{"type":"LineString","arcs":[9327,9328,9329],"id":72721,"properties":{"V":345}},{"type":"LineString","arcs":[9330],"id":72722,"properties":{"V":230}},{"type":"LineString","arcs":[9331],"id":72727,"properties":{"V":345}},{"type":"LineString","arcs":[9332],"id":72733,"properties":{"V":230}},{"type":"LineString","arcs":[9333],"id":72745,"properties":{"V":230}},{"type":"LineString","arcs":[9334],"id":72754,"properties":{"V":230}},{"type":"LineString","arcs":[9335],"id":72779,"properties":{"V":230}},{"type":"LineString","arcs":[9336],"id":72783,"properties":{"V":230}},{"type":"LineString","arcs":[9337],"id":72787,"properties":{"V":230}},{"type":"LineString","arcs":[9338],"id":72789,"properties":{"V":765}},{"type":"LineString","arcs":[9339],"id":72794,"properties":{"V":500}},{"type":"LineString","arcs":[9340],"id":72802,"properties":{"V":230}},{"type":"LineString","arcs":[9341],"id":72812,"properties":{"V":230}},{"type":"LineString","arcs":[9342],"id":72815,"properties":{"V":345}},{"type":"LineString","arcs":[9343,9344],"id":72823,"properties":{"V":500}},{"type":"LineString","arcs":[9345],"id":72827,"properties":{"V":230}},{"type":"LineString","arcs":[9346],"id":72839,"properties":{"V":345}},{"type":"LineString","arcs":[9347],"id":72840,"properties":{"V":230}},{"type":"LineString","arcs":[9348],"id":72845,"properties":{"V":500}},{"type":"LineString","arcs":[9349],"id":72850,"properties":{"V":345}},{"type":"LineString","arcs":[9350],"id":72930,"properties":{"V":230}},{"type":"LineString","arcs":[9351],"id":72933,"properties":{"V":230}},{"type":"LineString","arcs":[9352,9353],"id":72934,"properties":{"V":230}},{"type":"LineString","arcs":[9354],"id":72943,"properties":{"V":230}},{"type":"LineString","arcs":[9355],"id":72950,"properties":{"V":230}},{"type":"LineString","arcs":[9356],"id":72951,"properties":{"V":230}},{"type":"LineString","arcs":[9357],"id":72956,"properties":{"V":345}},{"type":"LineString","arcs":[9358],"id":72961,"properties":{"V":230}},{"type":"LineString","arcs":[9359],"id":72969,"properties":{"V":345}},{"type":"LineString","arcs":[9360],"id":72977,"properties":{"V":345}},{"type":"LineString","arcs":[9361],"id":72979,"properties":{"V":345}},{"type":"LineString","arcs":[9362],"id":73007,"properties":{"V":230}},{"type":"LineString","arcs":[9363],"id":73013,"properties":{"V":345}},{"type":"LineString","arcs":[9364],"id":73015,"properties":{"V":345}},{"type":"LineString","arcs":[9365],"id":73016,"properties":{"V":230}},{"type":"LineString","arcs":[9366],"id":73018,"properties":{"V":500}},{"type":"LineString","arcs":[9367],"id":73037,"properties":{"V":345}},{"type":"LineString","arcs":[9368],"id":73038,"properties":{"V":230}},{"type":"LineString","arcs":[9369],"id":73059,"properties":{"V":230}},{"type":"LineString","arcs":[9370],"id":73061,"properties":{"V":230}},{"type":"LineString","arcs":[9371],"id":73068,"properties":{"V":230}},{"type":"LineString","arcs":[9372],"id":73069,"properties":{"V":230}},{"type":"LineString","arcs":[9373,9374,9375],"id":73079,"properties":{"V":230}},{"type":"LineString","arcs":[9376],"id":73083,"properties":{"V":230}},{"type":"LineString","arcs":[9377],"id":73084,"properties":{"V":500}},{"type":"LineString","arcs":[9378],"id":73113,"properties":{"V":345}},{"type":"LineString","arcs":[9379],"id":73115,"properties":{"V":230}},{"type":"LineString","arcs":[9380],"id":73117,"properties":{"V":230}},{"type":"LineString","arcs":[9381],"id":73125,"properties":{"V":230}},{"type":"LineString","arcs":[9382],"id":73132,"properties":{"V":230}},{"type":"LineString","arcs":[9383],"id":73135,"properties":{"V":500}},{"type":"LineString","arcs":[9384],"id":73136,"properties":{"V":345}},{"type":"LineString","arcs":[9385],"id":73144,"properties":{"V":230}},{"type":"LineString","arcs":[9386],"id":73149,"properties":{"V":230}},{"type":"LineString","arcs":[9387],"id":73150,"properties":{"V":230}},{"type":"LineString","arcs":[9388],"id":73152,"properties":{"V":230}},{"type":"LineString","arcs":[9389,9390],"id":73160,"properties":{"V":230}},{"type":"LineString","arcs":[9391],"id":73176,"properties":{"V":345}},{"type":"LineString","arcs":[9392],"id":73177,"properties":{"V":230}},{"type":"LineString","arcs":[9393],"id":73198,"properties":{"V":230}},{"type":"LineString","arcs":[9394],"id":73219,"properties":{"V":230}},{"type":"LineString","arcs":[9395],"id":73220,"properties":{"V":345}},{"type":"LineString","arcs":[9396],"id":73257,"properties":{"V":230}},{"type":"LineString","arcs":[9397],"id":73267,"properties":{"V":345}},{"type":"LineString","arcs":[9398],"id":73271,"properties":{"V":230}},{"type":"LineString","arcs":[9399],"id":73280,"properties":{"V":345}},{"type":"LineString","arcs":[9400],"id":73281,"properties":{"V":230}},{"type":"LineString","arcs":[9401],"id":73284,"properties":{"V":230}},{"type":"LineString","arcs":[9402],"id":73291,"properties":{"V":500}},{"type":"LineString","arcs":[9403],"id":73294,"properties":{"V":500}},{"type":"LineString","arcs":[9404],"id":73296,"properties":{"V":230}},{"type":"LineString","arcs":[9405],"id":73302,"properties":{"V":230}},{"type":"LineString","arcs":[9406],"id":73314,"properties":{"V":230}},{"type":"LineString","arcs":[9407],"id":73327,"properties":{"V":230}},{"type":"LineString","arcs":[9408],"id":73328,"properties":{"V":230}},{"type":"LineString","arcs":[9409],"id":73330,"properties":{"V":345}},{"type":"LineString","arcs":[9410],"id":73343,"properties":{"V":230}},{"type":"LineString","arcs":[9411],"id":73350,"properties":{"V":230}},{"type":"LineString","arcs":[9412],"id":73351,"properties":{"V":345}},{"type":"LineString","arcs":[9413],"id":73360,"properties":{"V":230}},{"type":"LineString","arcs":[9414],"id":73363,"properties":{"V":230}},{"type":"LineString","arcs":[9415],"id":73379,"properties":{"V":230}},{"type":"LineString","arcs":[9416],"id":73385,"properties":{"V":230}},{"type":"LineString","arcs":[9417],"id":73417,"properties":{"V":345}},{"type":"LineString","arcs":[9418],"id":73420,"properties":{"V":500}},{"type":"LineString","arcs":[9419],"id":73429,"properties":{"V":230}},{"type":"LineString","arcs":[9420],"id":73437,"properties":{"V":230}},{"type":"LineString","arcs":[9421],"id":73444,"properties":{"V":500}},{"type":"LineString","arcs":[9422],"id":73445,"properties":{"V":230}},{"type":"LineString","arcs":[9423],"id":73447,"properties":{"V":345}},{"type":"LineString","arcs":[9424],"id":73456,"properties":{"V":500}},{"type":"LineString","arcs":[9425],"id":73473,"properties":{"V":230}},{"type":"LineString","arcs":[9426],"id":73474,"properties":{"V":230}},{"type":"LineString","arcs":[9427],"id":73486,"properties":{"V":230}},{"type":"LineString","arcs":[9428],"id":73491,"properties":{"V":345}},{"type":"LineString","arcs":[9429],"id":73492,"properties":{"V":230}},{"type":"LineString","arcs":[9430],"id":73496,"properties":{"V":500}},{"type":"LineString","arcs":[9431],"id":73498,"properties":{"V":230}},{"type":"LineString","arcs":[9432],"id":73512,"properties":{"V":345}},{"type":"LineString","arcs":[9433],"id":73515,"properties":{"V":345}},{"type":"LineString","arcs":[9434],"id":73521,"properties":{"V":230}},{"type":"LineString","arcs":[9435],"id":73524,"properties":{"V":230}},{"type":"LineString","arcs":[9436],"id":73551,"properties":{"V":230}},{"type":"LineString","arcs":[9437],"id":73552,"properties":{"V":230}},{"type":"LineString","arcs":[9438],"id":73569,"properties":{"V":230}},{"type":"LineString","arcs":[9439],"id":73574,"properties":{"V":345}},{"type":"LineString","arcs":[9440],"id":73575,"properties":{"V":230}},{"type":"LineString","arcs":[9441],"id":73584,"properties":{"V":230}},{"type":"LineString","arcs":[9442],"id":73603,"properties":{"V":230}},{"type":"LineString","arcs":[9443],"id":73604,"properties":{"V":345}},{"type":"LineString","arcs":[9444],"id":73609,"properties":{"V":230}},{"type":"LineString","arcs":[9445],"id":73630,"properties":{"V":230}},{"type":"LineString","arcs":[9446],"id":73639,"properties":{"V":230}},{"type":"LineString","arcs":[9447],"id":73648,"properties":{"V":230}},{"type":"LineString","arcs":[9448],"id":73654,"properties":{"V":230}},{"type":"LineString","arcs":[9449],"id":73655,"properties":{"V":230}},{"type":"LineString","arcs":[9450],"id":73671,"properties":{"V":500}},{"type":"LineString","arcs":[9451],"id":73672,"properties":{"V":230}},{"type":"LineString","arcs":[9452],"id":73697,"properties":{"V":230}},{"type":"LineString","arcs":[9453],"id":73702,"properties":{"V":230}},{"type":"LineString","arcs":[9454],"id":73713,"properties":{"V":230}},{"type":"LineString","arcs":[9455],"id":73714,"properties":{"V":345}},{"type":"LineString","arcs":[9456],"id":73717,"properties":{"V":230}},{"type":"LineString","arcs":[9457],"id":73724,"properties":{"V":230}},{"type":"LineString","arcs":[9458],"id":73728,"properties":{"V":230}},{"type":"LineString","arcs":[9459],"id":73732,"properties":{"V":230}},{"type":"LineString","arcs":[9460],"id":73738,"properties":{"V":345}},{"type":"LineString","arcs":[9461],"id":73739,"properties":{"V":230}},{"type":"LineString","arcs":[9462],"id":73744,"properties":{"V":230}},{"type":"LineString","arcs":[9463],"id":73752,"properties":{"V":230}},{"type":"LineString","arcs":[9464],"id":73759,"properties":{"V":230}},{"type":"LineString","arcs":[9465],"id":73766,"properties":{"V":500}},{"type":"LineString","arcs":[9466],"id":73769,"properties":{"V":230}},{"type":"LineString","arcs":[9467],"id":73773,"properties":{"V":230}},{"type":"LineString","arcs":[9468],"id":73798,"properties":{"V":500}},{"type":"LineString","arcs":[9469],"id":73800,"properties":{"V":345}},{"type":"LineString","arcs":[9470],"id":73811,"properties":{"V":230}},{"type":"LineString","arcs":[9471],"id":73825,"properties":{"V":230}},{"type":"LineString","arcs":[9472],"id":73837,"properties":{"V":230}},{"type":"LineString","arcs":[9473],"id":73849,"properties":{"V":765}},{"type":"LineString","arcs":[9474],"id":73859,"properties":{"V":500}},{"type":"LineString","arcs":[9475],"id":73863,"properties":{"V":230}},{"type":"LineString","arcs":[9476],"id":73882,"properties":{"V":345}},{"type":"LineString","arcs":[9477],"id":73893,"properties":{"V":230}},{"type":"LineString","arcs":[9478,9479,9480],"id":73898,"properties":{"V":500}},{"type":"LineString","arcs":[9481],"id":73905,"properties":{"V":230}},{"type":"LineString","arcs":[9482],"id":73907,"properties":{"V":230}},{"type":"LineString","arcs":[9483],"id":73909,"properties":{"V":500}},{"type":"LineString","arcs":[9484],"id":73926,"properties":{"V":230}},{"type":"LineString","arcs":[9485],"id":73937,"properties":{"V":230}},{"type":"LineString","arcs":[9486],"id":73942,"properties":{"V":230}},{"type":"LineString","arcs":[9487],"id":73950,"properties":{"V":230}},{"type":"LineString","arcs":[9488],"id":73951,"properties":{"V":230}},{"type":"LineString","arcs":[9489],"id":73957,"properties":{"V":230}},{"type":"LineString","arcs":[9490],"id":73960,"properties":{"V":230}},{"type":"LineString","arcs":[9491],"id":73972,"properties":{"V":230}},{"type":"LineString","arcs":[9492],"id":73978,"properties":{"V":230}},{"type":"LineString","arcs":[9493],"id":73982,"properties":{"V":230}},{"type":"LineString","arcs":[9494],"id":73985,"properties":{"V":345}},{"type":"LineString","arcs":[9495],"id":73986,"properties":{"V":345}},{"type":"LineString","arcs":[9496],"id":73992,"properties":{"V":500}},{"type":"LineString","arcs":[9497],"id":73997,"properties":{"V":230}},{"type":"LineString","arcs":[9498],"id":74000,"properties":{"V":230}},{"type":"LineString","arcs":[9499],"id":74020,"properties":{"V":345}},{"type":"LineString","arcs":[9500],"id":74031,"properties":{"V":230}},{"type":"LineString","arcs":[9501],"id":74055,"properties":{"V":345}},{"type":"LineString","arcs":[9502],"id":74079,"properties":{"V":230}},{"type":"LineString","arcs":[9503],"id":74087,"properties":{"V":345}},{"type":"LineString","arcs":[9504],"id":74096,"properties":{"V":230}},{"type":"LineString","arcs":[9505],"id":74108,"properties":{"V":230}},{"type":"LineString","arcs":[9506],"id":74114,"properties":{"V":230}},{"type":"LineString","arcs":[9507],"id":74120,"properties":{"V":230}},{"type":"LineString","arcs":[9508],"id":74123,"properties":{"V":500}},{"type":"LineString","arcs":[9509],"id":74132,"properties":{"V":230}},{"type":"LineString","arcs":[9510],"id":74136,"properties":{"V":500}},{"type":"LineString","arcs":[9511],"id":74143,"properties":{"V":230}},{"type":"LineString","arcs":[9512],"id":74153,"properties":{"V":230}},{"type":"LineString","arcs":[9513],"id":74158,"properties":{"V":345}},{"type":"LineString","arcs":[9514],"id":74173,"properties":{"V":230}},{"type":"LineString","arcs":[9515],"id":74176,"properties":{"V":345}},{"type":"LineString","arcs":[9516],"id":74180,"properties":{"V":230}},{"type":"LineString","arcs":[9517],"id":74182,"properties":{"V":230}},{"type":"LineString","arcs":[9518],"id":74198,"properties":{"V":230}},{"type":"LineString","arcs":[9519],"id":74200,"properties":{"V":230}},{"type":"LineString","arcs":[9520],"id":74201,"properties":{"V":230}},{"type":"LineString","arcs":[9521],"id":74202,"properties":{"V":345}},{"type":"LineString","arcs":[9522],"id":74204,"properties":{"V":230}},{"type":"LineString","arcs":[9523],"id":74212,"properties":{"V":500}},{"type":"LineString","arcs":[9524],"id":74221,"properties":{"V":230}},{"type":"LineString","arcs":[9525],"id":74228,"properties":{"V":230}},{"type":"LineString","arcs":[9526],"id":74234,"properties":{"V":345}},{"type":"LineString","arcs":[9527],"id":74242,"properties":{"V":345}},{"type":"LineString","arcs":[9528],"id":74245,"properties":{"V":500}},{"type":"LineString","arcs":[9529],"id":74255,"properties":{"V":345}},{"type":"LineString","arcs":[9530],"id":74271,"properties":{"V":345}},{"type":"LineString","arcs":[9531],"id":74277,"properties":{"V":230}},{"type":"LineString","arcs":[9532],"id":74283,"properties":{"V":230}},{"type":"LineString","arcs":[9533],"id":74289,"properties":{"V":230}},{"type":"LineString","arcs":[9534],"id":74290,"properties":{"V":230}},{"type":"LineString","arcs":[9535],"id":74298,"properties":{"V":230}},{"type":"LineString","arcs":[9536],"id":74306,"properties":{"V":500}},{"type":"LineString","arcs":[9537],"id":74314,"properties":{"V":230}},{"type":"LineString","arcs":[9538],"id":74315,"properties":{"V":230}},{"type":"LineString","arcs":[9539],"id":74316,"properties":{"V":230}},{"type":"LineString","arcs":[9540],"id":74324,"properties":{"V":230}},{"type":"LineString","arcs":[9541],"id":74330,"properties":{"V":500}},{"type":"LineString","arcs":[9542],"id":74332,"properties":{"V":230}},{"type":"LineString","arcs":[9543],"id":74341,"properties":{"V":230}},{"type":"LineString","arcs":[9544],"id":74350,"properties":{"V":230}},{"type":"LineString","arcs":[9545,9546],"id":74357,"properties":{"V":500}},{"type":"LineString","arcs":[9547],"id":74362,"properties":{"V":230}},{"type":"LineString","arcs":[9548],"id":74364,"properties":{"V":230}},{"type":"LineString","arcs":[9549],"id":74389,"properties":{"V":500}},{"type":"LineString","arcs":[9550],"id":74390,"properties":{"V":230}},{"type":"LineString","arcs":[9551],"id":74401,"properties":{"V":765}},{"type":"LineString","arcs":[9552],"id":74411,"properties":{"V":345}},{"type":"LineString","arcs":[9553],"id":74415,"properties":{"V":230}},{"type":"LineString","arcs":[9554],"id":74425,"properties":{"V":230}},{"type":"LineString","arcs":[9555],"id":74435,"properties":{"V":230}},{"type":"LineString","arcs":[9556],"id":74441,"properties":{"V":230}},{"type":"LineString","arcs":[9557],"id":74447,"properties":{"V":230}},{"type":"LineString","arcs":[9558],"id":74448,"properties":{"V":230}},{"type":"LineString","arcs":[9559],"id":74453,"properties":{"V":230}},{"type":"LineString","arcs":[9560],"id":74454,"properties":{"V":230}},{"type":"LineString","arcs":[9561],"id":74474,"properties":{"V":230}},{"type":"LineString","arcs":[9562],"id":74478,"properties":{"V":345}},{"type":"LineString","arcs":[9563,9564,9565,9566,9567,9568],"id":74480,"properties":{"V":230}},{"type":"LineString","arcs":[9569],"id":74482,"properties":{"V":230}},{"type":"LineString","arcs":[9570],"id":74497,"properties":{"V":345}},{"type":"LineString","arcs":[9571],"id":74506,"properties":{"V":345}},{"type":"LineString","arcs":[9572],"id":74509,"properties":{"V":230}},{"type":"LineString","arcs":[9573],"id":74516,"properties":{"V":230}},{"type":"LineString","arcs":[9574,9575,9576],"id":74570,"properties":{"V":230}},{"type":"LineString","arcs":[9577],"id":74590,"properties":{"V":230}},{"type":"LineString","arcs":[9578],"id":74613,"properties":{"V":345}},{"type":"LineString","arcs":[9579],"id":74643,"properties":{"V":230}},{"type":"LineString","arcs":[9580],"id":74650,"properties":{"V":230}},{"type":"LineString","arcs":[9581],"id":74661,"properties":{"V":345}},{"type":"LineString","arcs":[9582],"id":74692,"properties":{"V":345}},{"type":"LineString","arcs":[9583],"id":74703,"properties":{"V":230}},{"type":"LineString","arcs":[9584],"id":74711,"properties":{"V":230}},{"type":"LineString","arcs":[9585],"id":74715,"properties":{"V":230}},{"type":"LineString","arcs":[9586],"id":74716,"properties":{"V":230}},{"type":"LineString","arcs":[9587],"id":74731,"properties":{"V":230}},{"type":"LineString","arcs":[9588],"id":74735,"properties":{"V":230}},{"type":"LineString","arcs":[9589],"id":74747,"properties":{"V":500}},{"type":"LineString","arcs":[9590],"id":74748,"properties":{"V":230}},{"type":"LineString","arcs":[9591],"id":74758,"properties":{"V":230}},{"type":"LineString","arcs":[9592],"id":74760,"properties":{"V":345}},{"type":"LineString","arcs":[9593],"id":74767,"properties":{"V":500}},{"type":"LineString","arcs":[9594],"id":74775,"properties":{"V":500}},{"type":"LineString","arcs":[9595],"id":74777,"properties":{"V":230}},{"type":"LineString","arcs":[9596],"id":74807,"properties":{"V":230}},{"type":"LineString","arcs":[9597],"id":74827,"properties":{"V":230}},{"type":"LineString","arcs":[9598],"id":74830,"properties":{"V":230}},{"type":"LineString","arcs":[9599],"id":74836,"properties":{"V":230}},{"type":"LineString","arcs":[9600],"id":74846,"properties":{"V":230}},{"type":"LineString","arcs":[9601],"id":74849,"properties":{"V":345}},{"type":"LineString","arcs":[9602,9603],"id":74850,"properties":{"V":345}},{"type":"LineString","arcs":[9604],"id":74855,"properties":{"V":345}},{"type":"LineString","arcs":[9605],"id":74865,"properties":{"V":230}},{"type":"LineString","arcs":[9606],"id":74884,"properties":{"V":345}},{"type":"LineString","arcs":[9607],"id":74885,"properties":{"V":230}},{"type":"LineString","arcs":[9608],"id":74891,"properties":{"V":345}},{"type":"LineString","arcs":[9609],"id":74898,"properties":{"V":230}},{"type":"LineString","arcs":[9610],"id":74900,"properties":{"V":345}},{"type":"LineString","arcs":[9611],"id":74916,"properties":{"V":230}},{"type":"LineString","arcs":[9612],"id":74918,"properties":{"V":230}},{"type":"LineString","arcs":[9613],"id":74924,"properties":{"V":345}},{"type":"LineString","arcs":[9614],"id":74931,"properties":{"V":230}},{"type":"LineString","arcs":[9615],"id":74938,"properties":{"V":230}},{"type":"LineString","arcs":[9616],"id":74949,"properties":{"V":230}},{"type":"LineString","arcs":[9617],"id":74954,"properties":{"V":500}},{"type":"LineString","arcs":[9618],"id":74963,"properties":{"V":230}},{"type":"LineString","arcs":[9619],"id":74977,"properties":{"V":230}},{"type":"LineString","arcs":[9620],"id":74997,"properties":{"V":345}},{"type":"LineString","arcs":[9621],"id":75013,"properties":{"V":230}},{"type":"LineString","arcs":[9622],"id":75016,"properties":{"V":230}},{"type":"LineString","arcs":[9623],"id":75021,"properties":{"V":230}},{"type":"LineString","arcs":[9624],"id":75033,"properties":{"V":230}},{"type":"LineString","arcs":[9625],"id":75034,"properties":{"V":500}},{"type":"LineString","arcs":[9626],"id":75045,"properties":{"V":345}},{"type":"LineString","arcs":[9627],"id":75051,"properties":{"V":345}},{"type":"LineString","arcs":[9628],"id":75067,"properties":{"V":345}},{"type":"LineString","arcs":[9629],"id":75079,"properties":{"V":345}},{"type":"LineString","arcs":[9630],"id":75084,"properties":{"V":230}},{"type":"LineString","arcs":[9631],"id":75092,"properties":{"V":230}},{"type":"LineString","arcs":[9632],"id":75098,"properties":{"V":500}},{"type":"LineString","arcs":[9633],"id":75101,"properties":{"V":345}},{"type":"LineString","arcs":[9634],"id":75108,"properties":{"V":230}},{"type":"LineString","arcs":[9635],"id":75118,"properties":{"V":230}},{"type":"LineString","arcs":[9636],"id":75121,"properties":{"V":230}},{"type":"LineString","arcs":[9637],"id":75123,"properties":{"V":230}},{"type":"LineString","arcs":[9638],"id":75141,"properties":{"V":230}},{"type":"LineString","arcs":[9639],"id":75144,"properties":{"V":230}},{"type":"LineString","arcs":[9640],"id":75146,"properties":{"V":230}},{"type":"LineString","arcs":[9641],"id":75148,"properties":{"V":230}},{"type":"LineString","arcs":[9642],"id":75158,"properties":{"V":230}},{"type":"LineString","arcs":[9643],"id":75161,"properties":{"V":230}},{"type":"LineString","arcs":[9644],"id":75162,"properties":{"V":230}},{"type":"LineString","arcs":[9645],"id":75163,"properties":{"V":230}},{"type":"LineString","arcs":[9646],"id":75164,"properties":{"V":230}},{"type":"LineString","arcs":[9647,9648,9649,9650],"id":75165,"properties":{"V":345}},{"type":"LineString","arcs":[9651],"id":75183,"properties":{"V":345}},{"type":"LineString","arcs":[9652],"id":75186,"properties":{"V":230}},{"type":"LineString","arcs":[9653],"id":75195,"properties":{"V":345}},{"type":"LineString","arcs":[9654],"id":75200,"properties":{"V":230}},{"type":"LineString","arcs":[9655],"id":75228,"properties":{"V":230}},{"type":"LineString","arcs":[9656],"id":75229,"properties":{"V":230}},{"type":"LineString","arcs":[9657],"id":75238,"properties":{"V":345}},{"type":"LineString","arcs":[9658],"id":75242,"properties":{"V":345}},{"type":"LineString","arcs":[9659],"id":75248,"properties":{"V":230}},{"type":"LineString","arcs":[9660],"id":75250,"properties":{"V":230}},{"type":"LineString","arcs":[9661],"id":75277,"properties":{"V":230}},{"type":"LineString","arcs":[9662],"id":75279,"properties":{"V":230}},{"type":"LineString","arcs":[9663],"id":75280,"properties":{"V":345}},{"type":"LineString","arcs":[9664],"id":75281,"properties":{"V":345}},{"type":"LineString","arcs":[9665],"id":75292,"properties":{"V":230}},{"type":"LineString","arcs":[9666],"id":75306,"properties":{"V":230}},{"type":"LineString","arcs":[9667],"id":75311,"properties":{"V":230}},{"type":"LineString","arcs":[9668],"id":75318,"properties":{"V":230}},{"type":"LineString","arcs":[9669],"id":75323,"properties":{"V":230}},{"type":"LineString","arcs":[9670],"id":75324,"properties":{"V":345}},{"type":"LineString","arcs":[9671],"id":75329,"properties":{"V":230}},{"type":"LineString","arcs":[9672],"id":75335,"properties":{"V":230}},{"type":"LineString","arcs":[9673],"id":75340,"properties":{"V":230}},{"type":"LineString","arcs":[9674],"id":75345,"properties":{"V":230}},{"type":"LineString","arcs":[9675],"id":75346,"properties":{"V":230}},{"type":"LineString","arcs":[9676],"id":75351,"properties":{"V":230}},{"type":"LineString","arcs":[9677],"id":75353,"properties":{"V":230}},{"type":"LineString","arcs":[9678],"id":75365,"properties":{"V":230}},{"type":"LineString","arcs":[9679],"id":75369,"properties":{"V":230}},{"type":"LineString","arcs":[9680],"id":75377,"properties":{"V":230}},{"type":"LineString","arcs":[9681],"id":75379,"properties":{"V":230}},{"type":"LineString","arcs":[9682],"id":75382,"properties":{"V":230}},{"type":"LineString","arcs":[9683],"id":75385,"properties":{"V":345}},{"type":"LineString","arcs":[9684],"id":75401,"properties":{"V":230}},{"type":"LineString","arcs":[9685],"id":75403,"properties":{"V":230}},{"type":"LineString","arcs":[9686],"id":75412,"properties":{"V":230}},{"type":"LineString","arcs":[9687],"id":75421,"properties":{"V":230}},{"type":"LineString","arcs":[9688],"id":75436,"properties":{"V":230}},{"type":"LineString","arcs":[9689],"id":75445,"properties":{"V":345}},{"type":"LineString","arcs":[9690],"id":75447,"properties":{"V":230}},{"type":"LineString","arcs":[9691],"id":75452,"properties":{"V":230}},{"type":"LineString","arcs":[9692],"id":75460,"properties":{"V":345}},{"type":"LineString","arcs":[9693],"id":75475,"properties":{"V":230}},{"type":"LineString","arcs":[9694],"id":75493,"properties":{"V":345}},{"type":"LineString","arcs":[9695],"id":75496,"properties":{"V":345}},{"type":"LineString","arcs":[9696],"id":75507,"properties":{"V":230}},{"type":"LineString","arcs":[9697],"id":75508,"properties":{"V":345}},{"type":"LineString","arcs":[9698],"id":75509,"properties":{"V":230}},{"type":"LineString","arcs":[9699],"id":75536,"properties":{"V":230}},{"type":"LineString","arcs":[9700],"id":75538,"properties":{"V":230}},{"type":"LineString","arcs":[9701],"id":75542,"properties":{"V":345}},{"type":"LineString","arcs":[9702],"id":75545,"properties":{"V":345}},{"type":"LineString","arcs":[9703],"id":75547,"properties":{"V":345}},{"type":"LineString","arcs":[9704,9705],"id":75564,"properties":{"V":230}},{"type":"LineString","arcs":[9706],"id":75567,"properties":{"V":230}},{"type":"LineString","arcs":[9707],"id":75576,"properties":{"V":230}},{"type":"LineString","arcs":[9708],"id":75596,"properties":{"V":230}},{"type":"LineString","arcs":[9709],"id":75600,"properties":{"V":230}},{"type":"LineString","arcs":[9710],"id":75613,"properties":{"V":230}},{"type":"LineString","arcs":[9711],"id":75623,"properties":{"V":345}},{"type":"LineString","arcs":[9712],"id":75631,"properties":{"V":230}},{"type":"LineString","arcs":[9713],"id":75637,"properties":{"V":230}},{"type":"LineString","arcs":[9714],"id":75646,"properties":{"V":230}},{"type":"LineString","arcs":[9715],"id":75651,"properties":{"V":230}},{"type":"LineString","arcs":[9716],"id":75663,"properties":{"V":345}},{"type":"LineString","arcs":[9717],"id":75666,"properties":{"V":230}},{"type":"LineString","arcs":[9718],"id":75670,"properties":{"V":230}},{"type":"LineString","arcs":[9719],"id":75674,"properties":{"V":230}},{"type":"LineString","arcs":[9720],"id":75683,"properties":{"V":230}},{"type":"LineString","arcs":[9721,9722,9723],"id":75692,"properties":{"V":500}},{"type":"LineString","arcs":[9724],"id":75699,"properties":{"V":230}},{"type":"LineString","arcs":[9725],"id":75700,"properties":{"V":500}},{"type":"LineString","arcs":[9726],"id":75702,"properties":{"V":765}},{"type":"LineString","arcs":[9727],"id":75709,"properties":{"V":230}},{"type":"LineString","arcs":[9728],"id":75710,"properties":{"V":230}},{"type":"LineString","arcs":[9729],"id":75712,"properties":{"V":230}},{"type":"LineString","arcs":[9730],"id":75729,"properties":{"V":230}},{"type":"LineString","arcs":[9731],"id":75731,"properties":{"V":230}},{"type":"LineString","arcs":[9732],"id":75743,"properties":{"V":345}},{"type":"LineString","arcs":[9733],"id":75753,"properties":{"V":345}},{"type":"LineString","arcs":[9734],"id":75783,"properties":{"V":345}},{"type":"LineString","arcs":[9735],"id":75794,"properties":{"V":230}},{"type":"LineString","arcs":[9736],"id":75795,"properties":{"V":345}},{"type":"LineString","arcs":[9737],"id":75799,"properties":{"V":230}},{"type":"LineString","arcs":[9738],"id":75806,"properties":{"V":500}},{"type":"LineString","arcs":[9739],"id":75820,"properties":{"V":230}},{"type":"LineString","arcs":[9740],"id":75822,"properties":{"V":230}},{"type":"LineString","arcs":[9741],"id":75825,"properties":{"V":500}},{"type":"LineString","arcs":[9742],"id":75833,"properties":{"V":230}},{"type":"LineString","arcs":[9743],"id":75842,"properties":{"V":230}},{"type":"LineString","arcs":[9744],"id":75843,"properties":{"V":230}},{"type":"LineString","arcs":[9745],"id":75845,"properties":{"V":345}},{"type":"LineString","arcs":[9746],"id":75852,"properties":{"V":230}},{"type":"LineString","arcs":[9747],"id":75855,"properties":{"V":345}},{"type":"LineString","arcs":[9748],"id":75857,"properties":{"V":230}},{"type":"LineString","arcs":[9749],"id":75865,"properties":{"V":230}},{"type":"LineString","arcs":[9750],"id":75872,"properties":{"V":345}},{"type":"LineString","arcs":[9751],"id":75873,"properties":{"V":230}},{"type":"LineString","arcs":[9752],"id":75876,"properties":{"V":230}},{"type":"LineString","arcs":[9753,9754],"id":75882,"properties":{"V":230}},{"type":"LineString","arcs":[9755],"id":75887,"properties":{"V":230}},{"type":"LineString","arcs":[9756],"id":75888,"properties":{"V":230}},{"type":"LineString","arcs":[9757],"id":75889,"properties":{"V":500}},{"type":"LineString","arcs":[9758],"id":75890,"properties":{"V":230}},{"type":"LineString","arcs":[9759,9760,9761,9762,9763],"id":75891,"properties":{"V":500}},{"type":"LineString","arcs":[9764],"id":75893,"properties":{"V":230}},{"type":"LineString","arcs":[9765],"id":75897,"properties":{"V":345}},{"type":"LineString","arcs":[9766],"id":75901,"properties":{"V":230}},{"type":"LineString","arcs":[9767],"id":75910,"properties":{"V":345}},{"type":"LineString","arcs":[9768,9769,9770],"id":75922,"properties":{"V":230}},{"type":"LineString","arcs":[9771],"id":75951,"properties":{"V":345}},{"type":"LineString","arcs":[9772],"id":75954,"properties":{"V":345}},{"type":"LineString","arcs":[9773],"id":75956,"properties":{"V":230}},{"type":"LineString","arcs":[9774],"id":75957,"properties":{"V":230}},{"type":"LineString","arcs":[9775],"id":75991,"properties":{"V":230}},{"type":"LineString","arcs":[9776],"id":75997,"properties":{"V":500}},{"type":"LineString","arcs":[9777],"id":75998,"properties":{"V":345}},{"type":"LineString","arcs":[9778],"id":76009,"properties":{"V":230}},{"type":"LineString","arcs":[9779],"id":76018,"properties":{"V":230}},{"type":"LineString","arcs":[9780],"id":76022,"properties":{"V":345}},{"type":"LineString","arcs":[9781],"id":76023,"properties":{"V":230}},{"type":"LineString","arcs":[9782],"id":76029,"properties":{"V":230}},{"type":"LineString","arcs":[9783],"id":76032,"properties":{"V":230}},{"type":"LineString","arcs":[9784],"id":76047,"properties":{"V":345}},{"type":"LineString","arcs":[9785],"id":76057,"properties":{"V":230}},{"type":"LineString","arcs":[9786],"id":76061,"properties":{"V":230}},{"type":"LineString","arcs":[9787],"id":76064,"properties":{"V":230}},{"type":"LineString","arcs":[9788],"id":76065,"properties":{"V":345}},{"type":"LineString","arcs":[9789],"id":76067,"properties":{"V":230}},{"type":"LineString","arcs":[9790],"id":76073,"properties":{"V":345}},{"type":"LineString","arcs":[9791],"id":76074,"properties":{"V":230}},{"type":"LineString","arcs":[9792],"id":76081,"properties":{"V":230}},{"type":"LineString","arcs":[9793],"id":76095,"properties":{"V":230}},{"type":"LineString","arcs":[9794],"id":76100,"properties":{"V":500}},{"type":"LineString","arcs":[9795],"id":76102,"properties":{"V":230}},{"type":"LineString","arcs":[9796],"id":76121,"properties":{"V":345}},{"type":"LineString","arcs":[9797],"id":76122,"properties":{"V":230}},{"type":"LineString","arcs":[9798],"id":76127,"properties":{"V":230}},{"type":"LineString","arcs":[9799],"id":76156,"properties":{"V":500}},{"type":"LineString","arcs":[9800],"id":76159,"properties":{"V":230}},{"type":"LineString","arcs":[9801],"id":76165,"properties":{"V":230}},{"type":"LineString","arcs":[9802],"id":76168,"properties":{"V":765}},{"type":"LineString","arcs":[9803],"id":76177,"properties":{"V":345}},{"type":"LineString","arcs":[9804],"id":76191,"properties":{"V":500}},{"type":"LineString","arcs":[9805,9806,9807,9808,9809,9810,9811,9812],"id":76196,"properties":{"V":345}},{"type":"LineString","arcs":[9813],"id":76203,"properties":{"V":230}},{"type":"LineString","arcs":[9814],"id":76208,"properties":{"V":345}},{"type":"LineString","arcs":[9815],"id":76213,"properties":{"V":230}},{"type":"LineString","arcs":[9816],"id":76221,"properties":{"V":230}},{"type":"LineString","arcs":[9817],"id":76224,"properties":{"V":230}},{"type":"LineString","arcs":[9818],"id":76245,"properties":{"V":230}},{"type":"LineString","arcs":[9819],"id":76249,"properties":{"V":230}},{"type":"LineString","arcs":[9820],"id":76283,"properties":{"V":500}},{"type":"LineString","arcs":[9821],"id":76284,"properties":{"V":230}},{"type":"LineString","arcs":[9822],"id":76309,"properties":{"V":230}},{"type":"LineString","arcs":[9823],"id":76321,"properties":{"V":345}},{"type":"LineString","arcs":[9824],"id":76324,"properties":{"V":230}},{"type":"LineString","arcs":[9825],"id":76326,"properties":{"V":230}},{"type":"LineString","arcs":[9826],"id":76328,"properties":{"V":230}},{"type":"LineString","arcs":[9827],"id":76337,"properties":{"V":230}},{"type":"LineString","arcs":[9828],"id":76349,"properties":{"V":230}},{"type":"LineString","arcs":[9829],"id":76350,"properties":{"V":230}},{"type":"LineString","arcs":[9830],"id":76360,"properties":{"V":230}},{"type":"LineString","arcs":[9831],"id":76368,"properties":{"V":230}},{"type":"LineString","arcs":[9832,9833],"id":76384,"properties":{"V":230}},{"type":"LineString","arcs":[9834],"id":76387,"properties":{"V":230}},{"type":"LineString","arcs":[9835],"id":76412,"properties":{"V":345}},{"type":"LineString","arcs":[9836],"id":76419,"properties":{"V":345}},{"type":"LineString","arcs":[9837],"id":76436,"properties":{"V":230}},{"type":"LineString","arcs":[9838],"id":76442,"properties":{"V":345}},{"type":"LineString","arcs":[9839],"id":76456,"properties":{"V":345}},{"type":"LineString","arcs":[9840],"id":76461,"properties":{"V":230}},{"type":"LineString","arcs":[9841],"id":76463,"properties":{"V":345}},{"type":"LineString","arcs":[9842],"id":76465,"properties":{"V":230}},{"type":"LineString","arcs":[9843],"id":76473,"properties":{"V":230}},{"type":"LineString","arcs":[9844],"id":76474,"properties":{"V":230}},{"type":"LineString","arcs":[9845],"id":76491,"properties":{"V":500}},{"type":"LineString","arcs":[9846,9847,9848,9849],"id":76504,"properties":{"V":345}},{"type":"LineString","arcs":[9850],"id":76507,"properties":{"V":230}},{"type":"LineString","arcs":[9851],"id":76511,"properties":{"V":230}},{"type":"LineString","arcs":[9852],"id":76512,"properties":{"V":230}},{"type":"LineString","arcs":[9853],"id":76516,"properties":{"V":230}},{"type":"LineString","arcs":[9854],"id":76521,"properties":{"V":345}},{"type":"LineString","arcs":[9855],"id":76523,"properties":{"V":230}},{"type":"LineString","arcs":[9856],"id":76533,"properties":{"V":230}},{"type":"LineString","arcs":[9857],"id":76534,"properties":{"V":500}},{"type":"LineString","arcs":[9858],"id":76538,"properties":{"V":345}},{"type":"LineString","arcs":[9859,9860,9861,9862,9863],"id":76540,"properties":{"V":345}},{"type":"LineString","arcs":[9864],"id":76543,"properties":{"V":345}},{"type":"LineString","arcs":[9865],"id":76545,"properties":{"V":230}},{"type":"LineString","arcs":[9866],"id":76549,"properties":{"V":345}},{"type":"LineString","arcs":[9867],"id":76556,"properties":{"V":230}},{"type":"LineString","arcs":[9868],"id":76559,"properties":{"V":230}},{"type":"LineString","arcs":[9869],"id":76572,"properties":{"V":230}},{"type":"LineString","arcs":[9870],"id":76575,"properties":{"V":230}},{"type":"LineString","arcs":[9871],"id":76592,"properties":{"V":230}},{"type":"LineString","arcs":[9872],"id":76598,"properties":{"V":345}},{"type":"LineString","arcs":[9873],"id":76599,"properties":{"V":230}},{"type":"LineString","arcs":[9874,9875,9876],"id":76600,"properties":{"V":230}},{"type":"LineString","arcs":[9877],"id":76607,"properties":{"V":230}},{"type":"LineString","arcs":[9878],"id":76609,"properties":{"V":230}},{"type":"LineString","arcs":[9879],"id":76613,"properties":{"V":500}},{"type":"LineString","arcs":[9880],"id":76623,"properties":{"V":230}},{"type":"LineString","arcs":[9881],"id":76633,"properties":{"V":230}},{"type":"LineString","arcs":[9882],"id":76643,"properties":{"V":230}},{"type":"LineString","arcs":[9883],"id":76661,"properties":{"V":500}},{"type":"LineString","arcs":[9884],"id":76702,"properties":{"V":230}},{"type":"LineString","arcs":[9885],"id":76709,"properties":{"V":345}},{"type":"LineString","arcs":[9886],"id":76713,"properties":{"V":230}},{"type":"LineString","arcs":[9887],"id":76723,"properties":{"V":345}},{"type":"LineString","arcs":[9888],"id":76730,"properties":{"V":345}},{"type":"LineString","arcs":[9889],"id":76739,"properties":{"V":230}},{"type":"LineString","arcs":[9890],"id":76748,"properties":{"V":230}},{"type":"LineString","arcs":[9891],"id":76761,"properties":{"V":230}},{"type":"LineString","arcs":[9892],"id":76766,"properties":{"V":230}},{"type":"LineString","arcs":[9893],"id":76768,"properties":{"V":230}},{"type":"LineString","arcs":[9894,9895],"id":76777,"properties":{"V":230}},{"type":"LineString","arcs":[9896],"id":76781,"properties":{"V":230}},{"type":"LineString","arcs":[9897],"id":76809,"properties":{"V":345}},{"type":"LineString","arcs":[9898],"id":76815,"properties":{"V":230}},{"type":"LineString","arcs":[9899],"id":76821,"properties":{"V":230}},{"type":"LineString","arcs":[9900],"id":76839,"properties":{"V":230}},{"type":"LineString","arcs":[9901],"id":76842,"properties":{"V":230}},{"type":"LineString","arcs":[9902],"id":76843,"properties":{"V":230}},{"type":"LineString","arcs":[9903],"id":76846,"properties":{"V":230}},{"type":"LineString","arcs":[9904],"id":76860,"properties":{"V":230}},{"type":"LineString","arcs":[9905],"id":76874,"properties":{"V":500}},{"type":"LineString","arcs":[9906],"id":76882,"properties":{"V":230}},{"type":"LineString","arcs":[9907],"id":76888,"properties":{"V":345}},{"type":"LineString","arcs":[9908],"id":76892,"properties":{"V":500}},{"type":"LineString","arcs":[9909],"id":76893,"properties":{"V":230}},{"type":"LineString","arcs":[9910],"id":76894,"properties":{"V":230}},{"type":"LineString","arcs":[9911],"id":76896,"properties":{"V":345}},{"type":"LineString","arcs":[9912],"id":76905,"properties":{"V":345}},{"type":"LineString","arcs":[9913],"id":76916,"properties":{"V":500}},{"type":"LineString","arcs":[9914],"id":76922,"properties":{"V":345}},{"type":"LineString","arcs":[9915],"id":76923,"properties":{"V":230}},{"type":"LineString","arcs":[9916],"id":76926,"properties":{"V":345}},{"type":"LineString","arcs":[9917],"id":76933,"properties":{"V":230}},{"type":"LineString","arcs":[9918],"id":76934,"properties":{"V":345}},{"type":"LineString","arcs":[9919],"id":76938,"properties":{"V":230}},{"type":"LineString","arcs":[9920],"id":76948,"properties":{"V":230}},{"type":"LineString","arcs":[9921],"id":76961,"properties":{"V":230}},{"type":"LineString","arcs":[9922],"id":76964,"properties":{"V":345}},{"type":"LineString","arcs":[9923],"id":76966,"properties":{"V":230}},{"type":"LineString","arcs":[9924],"id":76989,"properties":{"V":230}},{"type":"LineString","arcs":[9925],"id":76990,"properties":{"V":230}},{"type":"LineString","arcs":[9926],"id":76991,"properties":{"V":230}},{"type":"LineString","arcs":[9927],"id":76992,"properties":{"V":230}},{"type":"LineString","arcs":[9928],"id":76996,"properties":{"V":345}},{"type":"LineString","arcs":[9929],"id":76999,"properties":{"V":230}},{"type":"LineString","arcs":[9930],"id":77000,"properties":{"V":345}},{"type":"LineString","arcs":[9931],"id":77009,"properties":{"V":345}},{"type":"LineString","arcs":[9932],"id":77011,"properties":{"V":345}},{"type":"LineString","arcs":[9933],"id":77013,"properties":{"V":230}},{"type":"LineString","arcs":[9934],"id":77017,"properties":{"V":230}},{"type":"LineString","arcs":[9935],"id":77023,"properties":{"V":230}},{"type":"LineString","arcs":[9936],"id":77024,"properties":{"V":230}},{"type":"LineString","arcs":[9937],"id":77025,"properties":{"V":345}},{"type":"LineString","arcs":[9938],"id":77026,"properties":{"V":345}},{"type":"LineString","arcs":[9939],"id":77028,"properties":{"V":230}},{"type":"LineString","arcs":[9940],"id":77029,"properties":{"V":345}},{"type":"LineString","arcs":[9941,9942],"id":77036,"properties":{"V":230}},{"type":"LineString","arcs":[9943],"id":77038,"properties":{"V":500}},{"type":"LineString","arcs":[9944],"id":77045,"properties":{"V":230}},{"type":"LineString","arcs":[9945],"id":77047,"properties":{"V":500}},{"type":"LineString","arcs":[9946],"id":77055,"properties":{"V":230}},{"type":"LineString","arcs":[9947],"id":77056,"properties":{"V":230}},{"type":"LineString","arcs":[9948],"id":77066,"properties":{"V":230}},{"type":"LineString","arcs":[9949],"id":77083,"properties":{"V":345}},{"type":"LineString","arcs":[9950],"id":77091,"properties":{"V":230}},{"type":"LineString","arcs":[9951],"id":77092,"properties":{"V":230}},{"type":"LineString","arcs":[9952],"id":77098,"properties":{"V":230}},{"type":"LineString","arcs":[9953],"id":77109,"properties":{"V":345}},{"type":"LineString","arcs":[9954],"id":77118,"properties":{"V":230}},{"type":"LineString","arcs":[9955],"id":77126,"properties":{"V":230}},{"type":"LineString","arcs":[9956],"id":77132,"properties":{"V":230}},{"type":"LineString","arcs":[9957],"id":77148,"properties":{"V":230}},{"type":"LineString","arcs":[9958],"id":77155,"properties":{"V":230}},{"type":"LineString","arcs":[9959],"id":77179,"properties":{"V":345}},{"type":"LineString","arcs":[9960],"id":77186,"properties":{"V":230}},{"type":"LineString","arcs":[9961,9962,9963],"id":77199,"properties":{"V":345}},{"type":"LineString","arcs":[9964],"id":77204,"properties":{"V":230}},{"type":"LineString","arcs":[9965],"id":77212,"properties":{"V":230}},{"type":"LineString","arcs":[9966],"id":77217,"properties":{"V":230}},{"type":"LineString","arcs":[9967],"id":77219,"properties":{"V":500}},{"type":"LineString","arcs":[9968],"id":77224,"properties":{"V":230}},{"type":"LineString","arcs":[9969],"id":77232,"properties":{"V":345}},{"type":"LineString","arcs":[9970],"id":77237,"properties":{"V":345}},{"type":"LineString","arcs":[9971],"id":77238,"properties":{"V":345}},{"type":"LineString","arcs":[9972],"id":77248,"properties":{"V":345}},{"type":"LineString","arcs":[9973],"id":77250,"properties":{"V":345}},{"type":"LineString","arcs":[9974],"id":77251,"properties":{"V":230}},{"type":"LineString","arcs":[9975],"id":77260,"properties":{"V":345}},{"type":"LineString","arcs":[9976],"id":77263,"properties":{"V":345}},{"type":"LineString","arcs":[9977],"id":77270,"properties":{"V":500}},{"type":"LineString","arcs":[9978],"id":77279,"properties":{"V":500}},{"type":"LineString","arcs":[9979],"id":77282,"properties":{"V":230}},{"type":"LineString","arcs":[9980],"id":77291,"properties":{"V":230}},{"type":"LineString","arcs":[9981],"id":77308,"properties":{"V":230}},{"type":"LineString","arcs":[9982],"id":77311,"properties":{"V":230}},{"type":"LineString","arcs":[9983],"id":77319,"properties":{"V":230}},{"type":"LineString","arcs":[9984],"id":77320,"properties":{"V":345}},{"type":"LineString","arcs":[9985],"id":77336,"properties":{"V":230}},{"type":"LineString","arcs":[9986],"id":77347,"properties":{"V":230}},{"type":"LineString","arcs":[9987],"id":77349,"properties":{"V":230}},{"type":"LineString","arcs":[9988],"id":77353,"properties":{"V":230}},{"type":"LineString","arcs":[9989],"id":77356,"properties":{"V":230}},{"type":"LineString","arcs":[9990],"id":77361,"properties":{"V":230}},{"type":"LineString","arcs":[9991],"id":77364,"properties":{"V":230}},{"type":"LineString","arcs":[9992],"id":77383,"properties":{"V":230}},{"type":"LineString","arcs":[9993],"id":77387,"properties":{"V":500}},{"type":"LineString","arcs":[9994],"id":77392,"properties":{"V":345}},{"type":"LineString","arcs":[9995,9996],"id":77398,"properties":{"V":230}},{"type":"LineString","arcs":[9997],"id":77402,"properties":{"V":230}},{"type":"LineString","arcs":[9998],"id":77416,"properties":{"V":345}},{"type":"LineString","arcs":[9999],"id":77420,"properties":{"V":345}},{"type":"LineString","arcs":[10000],"id":77425,"properties":{"V":500}},{"type":"LineString","arcs":[10001],"id":77433,"properties":{"V":500}},{"type":"LineString","arcs":[10002],"id":77439,"properties":{"V":230}},{"type":"LineString","arcs":[10003],"id":77446,"properties":{"V":345}},{"type":"LineString","arcs":[10004],"id":77447,"properties":{"V":230}},{"type":"LineString","arcs":[10005],"id":77467,"properties":{"V":230}},{"type":"LineString","arcs":[10006],"id":77476,"properties":{"V":230}},{"type":"LineString","arcs":[10007],"id":77484,"properties":{"V":230}},{"type":"LineString","arcs":[10008],"id":77495,"properties":{"V":230}},{"type":"LineString","arcs":[10009],"id":77501,"properties":{"V":230}},{"type":"LineString","arcs":[10010],"id":77514,"properties":{"V":230}},{"type":"LineString","arcs":[10011],"id":77517,"properties":{"V":345}},{"type":"LineString","arcs":[10012],"id":77522,"properties":{"V":230}},{"type":"LineString","arcs":[10013],"id":77526,"properties":{"V":345}},{"type":"LineString","arcs":[10014],"id":77529,"properties":{"V":230}},{"type":"LineString","arcs":[10015],"id":77534,"properties":{"V":230}},{"type":"LineString","arcs":[10016],"id":77542,"properties":{"V":230}},{"type":"LineString","arcs":[10017],"id":77544,"properties":{"V":230}},{"type":"LineString","arcs":[10018],"id":77557,"properties":{"V":230}},{"type":"LineString","arcs":[10019],"id":77560,"properties":{"V":230}},{"type":"LineString","arcs":[10020],"id":77566,"properties":{"V":345}},{"type":"LineString","arcs":[10021],"id":77569,"properties":{"V":230}},{"type":"LineString","arcs":[10022],"id":77570,"properties":{"V":230}},{"type":"LineString","arcs":[10023],"id":77573,"properties":{"V":230}},{"type":"LineString","arcs":[10024],"id":77584,"properties":{"V":765}},{"type":"LineString","arcs":[10025],"id":77601,"properties":{"V":230}},{"type":"LineString","arcs":[10026],"id":77605,"properties":{"V":345}},{"type":"LineString","arcs":[10027],"id":77610,"properties":{"V":230}},{"type":"LineString","arcs":[10028],"id":77612,"properties":{"V":345}},{"type":"LineString","arcs":[10029],"id":77617,"properties":{"V":230}},{"type":"LineString","arcs":[10030],"id":77623,"properties":{"V":230}},{"type":"LineString","arcs":[10031],"id":77625,"properties":{"V":230}},{"type":"LineString","arcs":[10032],"id":77631,"properties":{"V":230}},{"type":"LineString","arcs":[10033],"id":77646,"properties":{"V":230}},{"type":"LineString","arcs":[10034],"id":77651,"properties":{"V":345}},{"type":"LineString","arcs":[10035],"id":77660,"properties":{"V":345}},{"type":"LineString","arcs":[10036],"id":77662,"properties":{"V":230}},{"type":"LineString","arcs":[10037],"id":77663,"properties":{"V":230}},{"type":"LineString","arcs":[10038],"id":77670,"properties":{"V":230}},{"type":"LineString","arcs":[10039],"id":77672,"properties":{"V":230}},{"type":"LineString","arcs":[10040],"id":77678,"properties":{"V":345}},{"type":"LineString","arcs":[10041],"id":77679,"properties":{"V":230}},{"type":"LineString","arcs":[10042],"id":77699,"properties":{"V":230}},{"type":"LineString","arcs":[10043],"id":77700,"properties":{"V":230}},{"type":"LineString","arcs":[10044],"id":77719,"properties":{"V":230}},{"type":"LineString","arcs":[10045],"id":77746,"properties":{"V":230}},{"type":"LineString","arcs":[10046],"id":77768,"properties":{"V":230}},{"type":"LineString","arcs":[10047],"id":77769,"properties":{"V":230}},{"type":"LineString","arcs":[10048],"id":77774,"properties":{"V":230}},{"type":"LineString","arcs":[10049],"id":77776,"properties":{"V":230}},{"type":"LineString","arcs":[10050],"id":77778,"properties":{"V":345}},{"type":"LineString","arcs":[10051,10052,10053],"id":77781,"properties":{"V":345}},{"type":"LineString","arcs":[10054],"id":77797,"properties":{"V":230}},{"type":"LineString","arcs":[10055],"id":77801,"properties":{"V":230}},{"type":"LineString","arcs":[10056],"id":77802,"properties":{"V":230}},{"type":"LineString","arcs":[10057],"id":77803,"properties":{"V":345}},{"type":"LineString","arcs":[10058],"id":77818,"properties":{"V":230}},{"type":"LineString","arcs":[10059],"id":77819,"properties":{"V":230}},{"type":"LineString","arcs":[10060],"id":77828,"properties":{"V":230}},{"type":"LineString","arcs":[10061],"id":77831,"properties":{"V":230}},{"type":"LineString","arcs":[10062],"id":77832,"properties":{"V":500}},{"type":"LineString","arcs":[10063],"id":77836,"properties":{"V":230}},{"type":"LineString","arcs":[10064],"id":77840,"properties":{"V":345}},{"type":"LineString","arcs":[10065],"id":77855,"properties":{"V":230}},{"type":"LineString","arcs":[10066],"id":77863,"properties":{"V":230}},{"type":"LineString","arcs":[10067],"id":77872,"properties":{"V":230}},{"type":"LineString","arcs":[10068],"id":77873,"properties":{"V":230}},{"type":"LineString","arcs":[10069],"id":77878,"properties":{"V":230}},{"type":"LineString","arcs":[10070],"id":77881,"properties":{"V":230}},{"type":"LineString","arcs":[10071],"id":77885,"properties":{"V":230}},{"type":"LineString","arcs":[10072],"id":77894,"properties":{"V":230}},{"type":"LineString","arcs":[10073],"id":77895,"properties":{"V":230}},{"type":"LineString","arcs":[10074],"id":77900,"properties":{"V":345}},{"type":"LineString","arcs":[10075],"id":77908,"properties":{"V":345}},{"type":"LineString","arcs":[10076],"id":77910,"properties":{"V":230}},{"type":"LineString","arcs":[10077],"id":77917,"properties":{"V":230}},{"type":"LineString","arcs":[10078],"id":77921,"properties":{"V":230}},{"type":"LineString","arcs":[10079],"id":77937,"properties":{"V":230}},{"type":"LineString","arcs":[10080],"id":77941,"properties":{"V":230}},{"type":"LineString","arcs":[10081],"id":77955,"properties":{"V":230}},{"type":"LineString","arcs":[10082],"id":77958,"properties":{"V":230}},{"type":"LineString","arcs":[10083],"id":77960,"properties":{"V":230}},{"type":"LineString","arcs":[10084],"id":77961,"properties":{"V":345}},{"type":"LineString","arcs":[10085],"id":77963,"properties":{"V":230}},{"type":"LineString","arcs":[10086],"id":77991,"properties":{"V":230}},{"type":"LineString","arcs":[10087],"id":77996,"properties":{"V":230}},{"type":"LineString","arcs":[10088],"id":78000,"properties":{"V":230}},{"type":"LineString","arcs":[10089],"id":78012,"properties":{"V":345}},{"type":"LineString","arcs":[10090],"id":78016,"properties":{"V":230}},{"type":"LineString","arcs":[10091],"id":78019,"properties":{"V":345}},{"type":"LineString","arcs":[10092],"id":78032,"properties":{"V":230}},{"type":"LineString","arcs":[10093],"id":78037,"properties":{"V":230}},{"type":"LineString","arcs":[10094],"id":78048,"properties":{"V":230}},{"type":"LineString","arcs":[10095],"id":78052,"properties":{"V":230}},{"type":"LineString","arcs":[10096],"id":78053,"properties":{"V":500}},{"type":"LineString","arcs":[10097],"id":78058,"properties":{"V":230}},{"type":"LineString","arcs":[10098],"id":78068,"properties":{"V":345}},{"type":"LineString","arcs":[10099],"id":78071,"properties":{"V":230}},{"type":"LineString","arcs":[10100],"id":78092,"properties":{"V":230}},{"type":"LineString","arcs":[10101],"id":78105,"properties":{"V":345}},{"type":"LineString","arcs":[10102],"id":78125,"properties":{"V":230}},{"type":"LineString","arcs":[10103],"id":78126,"properties":{"V":230}},{"type":"LineString","arcs":[10104],"id":78150,"properties":{"V":230}},{"type":"LineString","arcs":[10105],"id":78151,"properties":{"V":230}},{"type":"LineString","arcs":[10106],"id":78181,"properties":{"V":230}},{"type":"LineString","arcs":[10107],"id":78182,"properties":{"V":230}},{"type":"LineString","arcs":[10108],"id":78209,"properties":{"V":345}},{"type":"LineString","arcs":[10109],"id":78283,"properties":{"V":345}},{"type":"LineString","arcs":[10110],"id":78286,"properties":{"V":345}},{"type":"LineString","arcs":[10111],"id":78296,"properties":{"V":230}},{"type":"LineString","arcs":[10112],"id":78399,"properties":{"V":345}},{"type":"LineString","arcs":[10113],"id":78404,"properties":{"V":230}},{"type":"LineString","arcs":[10114],"id":78407,"properties":{"V":230}},{"type":"LineString","arcs":[10115],"id":78408,"properties":{"V":230}},{"type":"LineString","arcs":[10116],"id":78410,"properties":{"V":230}},{"type":"LineString","arcs":[10117],"id":78411,"properties":{"V":230}},{"type":"LineString","arcs":[10118],"id":78412,"properties":{"V":230}},{"type":"LineString","arcs":[10119],"id":78415,"properties":{"V":230}},{"type":"LineString","arcs":[10120],"id":78416,"properties":{"V":230}},{"type":"LineString","arcs":[10121],"id":78417,"properties":{"V":230}},{"type":"LineString","arcs":[10122],"id":78418,"properties":{"V":230}},{"type":"LineString","arcs":[10123],"id":78419,"properties":{"V":230}},{"type":"LineString","arcs":[10124],"id":78422,"properties":{"V":345}},{"type":"LineString","arcs":[10125],"id":78423,"properties":{"V":230}},{"type":"LineString","arcs":[10126],"id":78424,"properties":{"V":230}},{"type":"LineString","arcs":[10127],"id":78426,"properties":{"V":345}},{"type":"LineString","arcs":[10128],"id":78428,"properties":{"V":345}},{"type":"LineString","arcs":[10129],"id":78450,"properties":{"V":230}},{"type":"LineString","arcs":[10130],"id":78473,"properties":{"V":230}},{"type":"LineString","arcs":[10131],"id":78489,"properties":{"V":230}},{"type":"LineString","arcs":[10132],"id":78496,"properties":{"V":230}},{"type":"LineString","arcs":[10133],"id":78501,"properties":{"V":230}},{"type":"LineString","arcs":[10134],"id":78504,"properties":{"V":230}},{"type":"LineString","arcs":[10135],"id":78505,"properties":{"V":230}},{"type":"LineString","arcs":[10136],"id":78506,"properties":{"V":230}},{"type":"LineString","arcs":[10137],"id":78526,"properties":{"V":230}},{"type":"LineString","arcs":[10138],"id":78529,"properties":{"V":230}},{"type":"LineString","arcs":[10139],"id":78531,"properties":{"V":230}},{"type":"LineString","arcs":[10140],"id":78554,"properties":{"V":345}},{"type":"LineString","arcs":[10141],"id":78583,"properties":{"V":230}},{"type":"LineString","arcs":[10142],"id":78594,"properties":{"V":345}},{"type":"LineString","arcs":[10143],"id":78603,"properties":{"V":230}},{"type":"LineString","arcs":[10144],"id":78645,"properties":{"V":345}},{"type":"LineString","arcs":[10145],"id":78664,"properties":{"V":345}},{"type":"LineString","arcs":[10146],"id":78669,"properties":{"V":345}},{"type":"LineString","arcs":[10147],"id":78670,"properties":{"V":345}},{"type":"LineString","arcs":[10148],"id":78673,"properties":{"V":345}},{"type":"LineString","arcs":[10149],"id":78723,"properties":{"V":230}},{"type":"LineString","arcs":[10150],"id":78756,"properties":{"V":345}},{"type":"LineString","arcs":[10151],"id":78768,"properties":{"V":230}},{"type":"LineString","arcs":[10152],"id":78778,"properties":{"V":230}},{"type":"LineString","arcs":[10153],"id":78794,"properties":{"V":230}},{"type":"LineString","arcs":[10154],"id":78795,"properties":{"V":230}},{"type":"LineString","arcs":[10155],"id":78832,"properties":{"V":230}},{"type":"LineString","arcs":[10156],"id":78834,"properties":{"V":230}},{"type":"LineString","arcs":[10157],"id":78839,"properties":{"V":230}},{"type":"LineString","arcs":[10158],"id":78840,"properties":{"V":230}},{"type":"LineString","arcs":[10159],"id":78844,"properties":{"V":230}},{"type":"LineString","arcs":[10160],"id":78846,"properties":{"V":230}},{"type":"LineString","arcs":[10161],"id":78847,"properties":{"V":230}},{"type":"LineString","arcs":[10162],"id":78848,"properties":{"V":230}},{"type":"LineString","arcs":[10163],"id":78908,"properties":{"V":230}},{"type":"LineString","arcs":[10164],"id":78910,"properties":{"V":230}},{"type":"LineString","arcs":[10165],"id":78915,"properties":{"V":230}},{"type":"LineString","arcs":[10166],"id":78916,"properties":{"V":230}},{"type":"LineString","arcs":[10167],"id":78917,"properties":{"V":230}},{"type":"LineString","arcs":[10168],"id":78923,"properties":{"V":345}},{"type":"LineString","arcs":[10169],"id":78928,"properties":{"V":230}},{"type":"LineString","arcs":[10170],"id":78938,"properties":{"V":230}},{"type":"LineString","arcs":[10171],"id":78985,"properties":{"V":230}},{"type":"LineString","arcs":[10172],"id":78986,"properties":{"V":230}},{"type":"LineString","arcs":[10173],"id":78987,"properties":{"V":230}},{"type":"LineString","arcs":[10174],"id":78988,"properties":{"V":230}},{"type":"LineString","arcs":[10175],"id":78989,"properties":{"V":230}},{"type":"LineString","arcs":[10176],"id":78990,"properties":{"V":230}},{"type":"LineString","arcs":[10177],"id":79001,"properties":{"V":230}},{"type":"LineString","arcs":[10178],"id":79008,"properties":{"V":230}},{"type":"LineString","arcs":[10179],"id":79036,"properties":{"V":230}},{"type":"LineString","arcs":[10180],"id":79037,"properties":{"V":500}},{"type":"LineString","arcs":[10181],"id":79038,"properties":{"V":230}},{"type":"LineString","arcs":[10182],"id":79040,"properties":{"V":230}},{"type":"LineString","arcs":[10183],"id":79042,"properties":{"V":230}},{"type":"LineString","arcs":[10184],"id":79043,"properties":{"V":230}},{"type":"LineString","arcs":[10185],"id":79044,"properties":{"V":230}},{"type":"LineString","arcs":[10186],"id":79048,"properties":{"V":230}},{"type":"LineString","arcs":[10187],"id":79052,"properties":{"V":230}},{"type":"LineString","arcs":[10188],"id":79069,"properties":{"V":345}},{"type":"LineString","arcs":[10189],"id":79070,"properties":{"V":345}},{"type":"LineString","arcs":[10190],"id":79093,"properties":{"V":230}},{"type":"LineString","arcs":[10191],"id":79095,"properties":{"V":230}},{"type":"LineString","arcs":[10192],"id":79098,"properties":{"V":230}},{"type":"LineString","arcs":[10193],"id":79108,"properties":{"V":345}},{"type":"LineString","arcs":[10194],"id":79109,"properties":{"V":345}},{"type":"LineString","arcs":[10195],"id":79114,"properties":{"V":230}},{"type":"LineString","arcs":[10196],"id":79116,"properties":{"V":230}},{"type":"LineString","arcs":[10197],"id":79124,"properties":{"V":230}},{"type":"LineString","arcs":[10198],"id":79265,"properties":{"V":230}},{"type":"LineString","arcs":[10199],"id":79296,"properties":{"V":230}},{"type":"LineString","arcs":[10200],"id":79302,"properties":{"V":345}},{"type":"LineString","arcs":[10201],"id":79432,"properties":{"V":230}},{"type":"LineString","arcs":[10202],"id":79436,"properties":{"V":230}},{"type":"LineString","arcs":[10203],"id":79439,"properties":{"V":230}},{"type":"LineString","arcs":[10204],"id":79456,"properties":{"V":230}},{"type":"LineString","arcs":[10205],"id":79457,"properties":{"V":230}},{"type":"LineString","arcs":[10206],"id":79458,"properties":{"V":230}},{"type":"LineString","arcs":[10207],"id":79464,"properties":{"V":230}},{"type":"LineString","arcs":[10208],"id":79469,"properties":{"V":230}},{"type":"LineString","arcs":[10209],"id":79513,"properties":{"V":230}},{"type":"LineString","arcs":[10210],"id":79514,"properties":{"V":230}},{"type":"LineString","arcs":[10211],"id":79552,"properties":{"V":230}},{"type":"LineString","arcs":[10212],"id":79555,"properties":{"V":230}},{"type":"LineString","arcs":[10213],"id":79563,"properties":{"V":230}},{"type":"LineString","arcs":[10214],"id":79564,"properties":{"V":230}},{"type":"LineString","arcs":[10215],"id":79565,"properties":{"V":230}},{"type":"LineString","arcs":[10216],"id":79566,"properties":{"V":230}},{"type":"LineString","arcs":[10217],"id":79580,"properties":{"V":230}},{"type":"LineString","arcs":[10218],"id":79581,"properties":{"V":230}},{"type":"LineString","arcs":[10219],"id":79586,"properties":{"V":230}},{"type":"LineString","arcs":[10220],"id":79587,"properties":{"V":230}},{"type":"LineString","arcs":[10221],"id":79590,"properties":{"V":230}},{"type":"LineString","arcs":[10222],"id":79612,"properties":{"V":230}},{"type":"LineString","arcs":[10223],"id":79615,"properties":{"V":230}},{"type":"LineString","arcs":[10224],"id":79633,"properties":{"V":230}},{"type":"LineString","arcs":[10225,10226],"id":79652,"properties":{"V":500}},{"type":"LineString","arcs":[10227,10228],"id":79653,"properties":{"V":500}},{"type":"LineString","arcs":[10229],"id":79656,"properties":{"V":345}},{"type":"LineString","arcs":[10230],"id":79666,"properties":{"V":230}},{"type":"LineString","arcs":[10231],"id":79667,"properties":{"V":230}},{"type":"LineString","arcs":[10232],"id":79678,"properties":{"V":230}},{"type":"LineString","arcs":[10233],"id":79685,"properties":{"V":230}},{"type":"LineString","arcs":[10234],"id":79709,"properties":{"V":230}},{"type":"LineString","arcs":[10235],"id":79710,"properties":{"V":230}},{"type":"LineString","arcs":[10236],"id":79711,"properties":{"V":230}},{"type":"LineString","arcs":[10237],"id":79715,"properties":{"V":230}},{"type":"LineString","arcs":[10238],"id":79747,"properties":{"V":230}},{"type":"LineString","arcs":[10239],"id":79772,"properties":{"V":230}},{"type":"LineString","arcs":[10240],"id":79936,"properties":{"V":345}},{"type":"LineString","arcs":[10241],"id":79937,"properties":{"V":345}},{"type":"LineString","arcs":[10242],"id":79938,"properties":{"V":345}},{"type":"LineString","arcs":[10243],"id":80191,"properties":{"V":345}},{"type":"LineString","arcs":[10244,10245],"id":80289,"properties":{"V":230}},{"type":"LineString","arcs":[10246,10247],"id":80290,"properties":{"V":230}},{"type":"LineString","arcs":[10248],"id":80353,"properties":{"V":230}},{"type":"LineString","arcs":[10249],"id":80400,"properties":{"V":230}},{"type":"LineString","arcs":[10250],"id":80447,"properties":{"V":230}},{"type":"LineString","arcs":[10251],"id":80500,"properties":{"V":500}},{"type":"LineString","arcs":[10252],"id":80544,"properties":{"V":345}},{"type":"LineString","arcs":[10253],"id":80555,"properties":{"V":230}},{"type":"LineString","arcs":[10254],"id":80580,"properties":{"V":345}},{"type":"LineString","arcs":[10255],"id":80618,"properties":{"V":345}},{"type":"LineString","arcs":[10256],"id":80626,"properties":{"V":230}},{"type":"LineString","arcs":[10257],"id":80638,"properties":{"V":230}},{"type":"LineString","arcs":[10258],"id":80650,"properties":{"V":230}},{"type":"LineString","arcs":[10259],"id":80660,"properties":{"V":345}},{"type":"LineString","arcs":[10260],"id":80661,"properties":{"V":230}},{"type":"LineString","arcs":[10261],"id":80664,"properties":{"V":345}},{"type":"LineString","arcs":[10262],"id":80669,"properties":{"V":230}},{"type":"LineString","arcs":[10263],"id":80674,"properties":{"V":230}},{"type":"LineString","arcs":[10264],"id":80685,"properties":{"V":345}},{"type":"LineString","arcs":[10265],"id":80724,"properties":{"V":230}},{"type":"LineString","arcs":[10266],"id":80731,"properties":{"V":345}},{"type":"LineString","arcs":[10267],"id":80753,"properties":{"V":230}},{"type":"LineString","arcs":[10268],"id":80759,"properties":{"V":230}},{"type":"LineString","arcs":[10269],"id":80779,"properties":{"V":230}},{"type":"LineString","arcs":[10270],"id":80879,"properties":{"V":230}},{"type":"LineString","arcs":[10271],"id":80880,"properties":{"V":230}},{"type":"LineString","arcs":[10272],"id":80896,"properties":{"V":230}},{"type":"LineString","arcs":[10273],"id":80930,"properties":{"V":500}},{"type":"LineString","arcs":[10274],"id":80931,"properties":{"V":500}},{"type":"LineString","arcs":[10275],"id":80932,"properties":{"V":230}},{"type":"LineString","arcs":[10276],"id":80933,"properties":{"V":345}},{"type":"LineString","arcs":[10277],"id":80934,"properties":{"V":345}},{"type":"LineString","arcs":[10278],"id":81057,"properties":{"V":230}},{"type":"LineString","arcs":[10279],"id":81058,"properties":{"V":230}},{"type":"LineString","arcs":[10280],"id":81638,"properties":{"V":230}},{"type":"LineString","arcs":[10281],"id":81639,"properties":{"V":230}},{"type":"LineString","arcs":[10282],"id":81726,"properties":{"V":345}},{"type":"LineString","arcs":[10283],"id":81748,"properties":{"V":345}},{"type":"LineString","arcs":[10284],"id":81891,"properties":{"V":345}},{"type":"LineString","arcs":[10285],"id":81901,"properties":{"V":345}},{"type":"LineString","arcs":[10286],"id":82197,"properties":{"V":345}},{"type":"LineString","arcs":[10287],"id":82198,"properties":{"V":345}},{"type":"LineString","arcs":[10288],"id":82254,"properties":{"V":230}},{"type":"LineString","arcs":[10289],"id":82255,"properties":{"V":230}},{"type":"LineString","arcs":[10290],"id":82298,"properties":{"V":345}},{"type":"LineString","arcs":[10291],"id":82299,"properties":{"V":345}},{"type":"LineString","arcs":[10292],"id":82300,"properties":{"V":345}},{"type":"LineString","arcs":[10293],"id":82313,"properties":{"V":345}},{"type":"LineString","arcs":[10294],"id":82363,"properties":{"V":345}},{"type":"LineString","arcs":[10295],"id":82364,"properties":{"V":345}},{"type":"LineString","arcs":[10296],"id":82425,"properties":{"V":345}},{"type":"LineString","arcs":[10297],"id":82426,"properties":{"V":345}},{"type":"LineString","arcs":[10298],"id":82457,"properties":{"V":345}},{"type":"LineString","arcs":[10299],"id":82498,"properties":{"V":345}},{"type":"LineString","arcs":[10300],"id":82499,"properties":{"V":345}},{"type":"LineString","arcs":[10301],"id":82500,"properties":{"V":345}},{"type":"LineString","arcs":[10302],"id":82501,"properties":{"V":345}},{"type":"LineString","arcs":[10303],"id":82502,"properties":{"V":345}},{"type":"LineString","arcs":[10304],"id":82503,"properties":{"V":345}},{"type":"LineString","arcs":[10305],"id":82560,"properties":{"V":345}},{"type":"LineString","arcs":[10306,10307],"id":82777,"properties":{"V":230}},{"type":"LineString","arcs":[10308,10309],"id":83288,"properties":{"V":345}},{"type":"LineString","arcs":[10310],"id":83339,"properties":{"V":230}},{"type":"LineString","arcs":[10311],"id":83340,"properties":{"V":230}},{"type":"LineString","arcs":[10312],"id":83948,"properties":{"V":230}},{"type":"LineString","arcs":[10313],"id":83949,"properties":{"V":230}},{"type":"LineString","arcs":[10314],"id":83975,"properties":{"V":230}},{"type":"LineString","arcs":[10315],"id":84075,"properties":{"V":230}},{"type":"LineString","arcs":[10316],"id":84092,"properties":{"V":230}},{"type":"LineString","arcs":[10317],"id":84100,"properties":{"V":230}},{"type":"LineString","arcs":[10318],"id":84111,"properties":{"V":230}},{"type":"LineString","arcs":[10319],"id":84113,"properties":{"V":230}},{"type":"LineString","arcs":[10320],"id":84199,"properties":{"V":500}},{"type":"LineString","arcs":[10321],"id":84258,"properties":{"V":230}},{"type":"LineString","arcs":[10322],"id":84279,"properties":{"V":230}},{"type":"LineString","arcs":[10323],"id":84307,"properties":{"V":230}},{"type":"LineString","arcs":[10324],"id":84308,"properties":{"V":230}},{"type":"LineString","arcs":[10325],"id":84318,"properties":{"V":230}},{"type":"LineString","arcs":[10326],"id":84336,"properties":{"V":500}},{"type":"LineString","arcs":[10327],"id":84374,"properties":{"V":230}},{"type":"LineString","arcs":[10328],"id":84439,"properties":{"V":230}},{"type":"LineString","arcs":[10329],"id":84440,"properties":{"V":230}},{"type":"LineString","arcs":[10330],"id":84444,"properties":{"V":500}},{"type":"LineString","arcs":[10331],"id":84485,"properties":{"V":230}},{"type":"LineString","arcs":[10332],"id":84504,"properties":{"V":230}},{"type":"LineString","arcs":[10333],"id":84505,"properties":{"V":230}},{"type":"LineString","arcs":[10334],"id":84506,"properties":{"V":230}},{"type":"LineString","arcs":[10335],"id":84508,"properties":{"V":345}},{"type":"LineString","arcs":[10336],"id":84530,"properties":{"V":230}},{"type":"LineString","arcs":[10337],"id":84531,"properties":{"V":230}},{"type":"LineString","arcs":[10338],"id":84613,"properties":{"V":230}},{"type":"LineString","arcs":[10339],"id":84636,"properties":{"V":230}},{"type":"LineString","arcs":[10340],"id":84637,"properties":{"V":230}},{"type":"LineString","arcs":[10341],"id":84655,"properties":{"V":230}},{"type":"LineString","arcs":[10342],"id":84660,"properties":{"V":230}},{"type":"LineString","arcs":[10343],"id":84662,"properties":{"V":230}},{"type":"LineString","arcs":[10344],"id":84715,"properties":{"V":500}},{"type":"LineString","arcs":[10345],"id":84730,"properties":{"V":230}},{"type":"LineString","arcs":[10346],"id":84741,"properties":{"V":500}},{"type":"LineString","arcs":[10347],"id":84767,"properties":{"V":230}},{"type":"LineString","arcs":[10348],"id":84774,"properties":{"V":230}},{"type":"LineString","arcs":[10349],"id":84786,"properties":{"V":230}},{"type":"LineString","arcs":[10350],"id":84788,"properties":{"V":230}},{"type":"LineString","arcs":[10351],"id":84795,"properties":{"V":230}},{"type":"LineString","arcs":[10352],"id":84797,"properties":{"V":230}},{"type":"LineString","arcs":[10353],"id":84798,"properties":{"V":230}},{"type":"LineString","arcs":[10354],"id":84799,"properties":{"V":230}},{"type":"LineString","arcs":[10355],"id":84800,"properties":{"V":230}},{"type":"LineString","arcs":[10356],"id":84801,"properties":{"V":230}},{"type":"LineString","arcs":[10357],"id":84804,"properties":{"V":230}},{"type":"LineString","arcs":[10358],"id":84809,"properties":{"V":230}},{"type":"LineString","arcs":[10359],"id":84853,"properties":{"V":230}},{"type":"LineString","arcs":[10360],"id":84871,"properties":{"V":230}},{"type":"LineString","arcs":[10361],"id":84872,"properties":{"V":230}},{"type":"LineString","arcs":[10362],"id":84875,"properties":{"V":230}},{"type":"LineString","arcs":[10363],"id":84876,"properties":{"V":230}},{"type":"LineString","arcs":[10364],"id":84992,"properties":{"V":230}},{"type":"LineString","arcs":[10365],"id":85167,"properties":{"V":230}},{"type":"LineString","arcs":[10366],"id":85169,"properties":{"V":230}},{"type":"LineString","arcs":[10367],"id":85180,"properties":{"V":230}},{"type":"LineString","arcs":[10368,10369],"id":85195,"properties":{"V":345}},{"type":"LineString","arcs":[10370],"id":85246,"properties":{"V":230}},{"type":"LineString","arcs":[10371],"id":85280,"properties":{"V":230}},{"type":"LineString","arcs":[10372],"id":85286,"properties":{"V":230}},{"type":"LineString","arcs":[10373],"id":85289,"properties":{"V":230}},{"type":"LineString","arcs":[10374],"id":85338,"properties":{"V":230}},{"type":"LineString","arcs":[10375],"id":85342,"properties":{"V":230}},{"type":"LineString","arcs":[10376],"id":85349,"properties":{"V":230}},{"type":"LineString","arcs":[10377],"id":85350,"properties":{"V":230}},{"type":"LineString","arcs":[10378],"id":85364,"properties":{"V":230}},{"type":"LineString","arcs":[10379],"id":85402,"properties":{"V":230}},{"type":"LineString","arcs":[10380],"id":85403,"properties":{"V":230}},{"type":"LineString","arcs":[10381],"id":85411,"properties":{"V":230}},{"type":"LineString","arcs":[10382],"id":85412,"properties":{"V":230}},{"type":"LineString","arcs":[10383],"id":85413,"properties":{"V":230}},{"type":"LineString","arcs":[10384],"id":85414,"properties":{"V":230}},{"type":"LineString","arcs":[10385],"id":85418,"properties":{"V":230}},{"type":"LineString","arcs":[10386],"id":85422,"properties":{"V":230}},{"type":"LineString","arcs":[10387],"id":85427,"properties":{"V":230}},{"type":"LineString","arcs":[10388],"id":85443,"properties":{"V":230}},{"type":"LineString","arcs":[10389],"id":85450,"properties":{"V":230}},{"type":"LineString","arcs":[10390],"id":85451,"properties":{"V":230}},{"type":"LineString","arcs":[10391],"id":85452,"properties":{"V":230}},{"type":"LineString","arcs":[10392],"id":85453,"properties":{"V":230}},{"type":"LineString","arcs":[10393],"id":85455,"properties":{"V":230}},{"type":"LineString","arcs":[10394],"id":85456,"properties":{"V":230}},{"type":"LineString","arcs":[10395],"id":85458,"properties":{"V":230}},{"type":"LineString","arcs":[10396],"id":85459,"properties":{"V":230}},{"type":"LineString","arcs":[10397],"id":85462,"properties":{"V":230}},{"type":"LineString","arcs":[10398],"id":85463,"properties":{"V":230}},{"type":"LineString","arcs":[10399],"id":85473,"properties":{"V":345}},{"type":"LineString","arcs":[10400],"id":85490,"properties":{"V":500}},{"type":"LineString","arcs":[10401],"id":85527,"properties":{"V":345}},{"type":"LineString","arcs":[10402],"id":85532,"properties":{"V":345}},{"type":"LineString","arcs":[10403],"id":85540,"properties":{"V":345}},{"type":"LineString","arcs":[10404],"id":85544,"properties":{"V":230}},{"type":"LineString","arcs":[10405],"id":85545,"properties":{"V":230}},{"type":"LineString","arcs":[10406,10407],"id":85576,"properties":{"V":500}},{"type":"LineString","arcs":[10408],"id":85580,"properties":{"V":230}},{"type":"LineString","arcs":[10409],"id":85581,"properties":{"V":230}},{"type":"LineString","arcs":[10410],"id":85582,"properties":{"V":230}},{"type":"LineString","arcs":[10411],"id":85585,"properties":{"V":345}},{"type":"LineString","arcs":[10412],"id":85586,"properties":{"V":345}},{"type":"LineString","arcs":[10413],"id":85587,"properties":{"V":230}},{"type":"LineString","arcs":[10414],"id":85600,"properties":{"V":500}},{"type":"LineString","arcs":[10415],"id":85612,"properties":{"V":230}},{"type":"LineString","arcs":[10416],"id":85624,"properties":{"V":345}},{"type":"LineString","arcs":[10417],"id":85642,"properties":{"V":230}},{"type":"LineString","arcs":[10418],"id":85647,"properties":{"V":230}},{"type":"LineString","arcs":[10419],"id":85656,"properties":{"V":230}},{"type":"LineString","arcs":[10420],"id":85671,"properties":{"V":230}},{"type":"LineString","arcs":[10421],"id":85672,"properties":{"V":230}},{"type":"LineString","arcs":[10422],"id":85703,"properties":{"V":230}},{"type":"LineString","arcs":[10423],"id":85730,"properties":{"V":345}},{"type":"LineString","arcs":[10424],"id":85755,"properties":{"V":230}},{"type":"LineString","arcs":[10425],"id":85756,"properties":{"V":230}},{"type":"LineString","arcs":[10426],"id":85757,"properties":{"V":230}},{"type":"LineString","arcs":[10427],"id":85773,"properties":{"V":230}},{"type":"LineString","arcs":[10428],"id":85822,"properties":{"V":345}},{"type":"LineString","arcs":[10429],"id":85823,"properties":{"V":345}},{"type":"LineString","arcs":[10430],"id":85864,"properties":{"V":230}},{"type":"LineString","arcs":[10431],"id":85884,"properties":{"V":230}},{"type":"LineString","arcs":[10432],"id":85914,"properties":{"V":230}},{"type":"LineString","arcs":[10433],"id":85923,"properties":{"V":230}},{"type":"LineString","arcs":[10434],"id":85925,"properties":{"V":230}},{"type":"LineString","arcs":[10435],"id":85926,"properties":{"V":230}},{"type":"LineString","arcs":[10436],"id":85927,"properties":{"V":230}},{"type":"LineString","arcs":[10437],"id":85935,"properties":{"V":230}},{"type":"LineString","arcs":[10438],"id":85936,"properties":{"V":230}},{"type":"LineString","arcs":[10439],"id":85939,"properties":{"V":230}},{"type":"LineString","arcs":[10440],"id":85943,"properties":{"V":230}},{"type":"LineString","arcs":[10441],"id":85944,"properties":{"V":230}},{"type":"LineString","arcs":[10442],"id":85962,"properties":{"V":230}},{"type":"LineString","arcs":[10443],"id":85963,"properties":{"V":230}},{"type":"LineString","arcs":[10444],"id":85980,"properties":{"V":230}},{"type":"LineString","arcs":[10445],"id":86002,"properties":{"V":230}},{"type":"LineString","arcs":[10446],"id":86013,"properties":{"V":230}},{"type":"LineString","arcs":[10447],"id":86016,"properties":{"V":230}},{"type":"LineString","arcs":[10448],"id":86018,"properties":{"V":230}},{"type":"LineString","arcs":[10449],"id":86019,"properties":{"V":230}},{"type":"LineString","arcs":[10450],"id":86025,"properties":{"V":230}},{"type":"LineString","arcs":[10451],"id":86028,"properties":{"V":230}},{"type":"LineString","arcs":[10452],"id":86033,"properties":{"V":230}},{"type":"LineString","arcs":[10453],"id":86062,"properties":{"V":230}},{"type":"LineString","arcs":[10454],"id":86064,"properties":{"V":230}},{"type":"LineString","arcs":[10455],"id":86065,"properties":{"V":230}},{"type":"LineString","arcs":[10456],"id":86066,"properties":{"V":230}},{"type":"LineString","arcs":[10457],"id":86067,"properties":{"V":230}},{"type":"LineString","arcs":[10458],"id":86068,"properties":{"V":230}},{"type":"LineString","arcs":[10459],"id":86109,"properties":{"V":230}},{"type":"LineString","arcs":[10460],"id":86114,"properties":{"V":230}},{"type":"LineString","arcs":[10461],"id":86115,"properties":{"V":230}},{"type":"LineString","arcs":[10462],"id":86116,"properties":{"V":230}},{"type":"LineString","arcs":[10463],"id":86117,"properties":{"V":230}},{"type":"LineString","arcs":[10464],"id":86121,"properties":{"V":230}},{"type":"LineString","arcs":[10465],"id":86133,"properties":{"V":500}},{"type":"LineString","arcs":[10466],"id":86149,"properties":{"V":230}},{"type":"LineString","arcs":[10467],"id":86150,"properties":{"V":230}},{"type":"LineString","arcs":[10468],"id":86154,"properties":{"V":230}},{"type":"LineString","arcs":[10469],"id":86166,"properties":{"V":230}},{"type":"LineString","arcs":[10470],"id":86183,"properties":{"V":230}},{"type":"LineString","arcs":[10471],"id":86184,"properties":{"V":230}},{"type":"LineString","arcs":[10472],"id":86185,"properties":{"V":230}},{"type":"LineString","arcs":[10473],"id":86201,"properties":{"V":230}},{"type":"LineString","arcs":[10474],"id":86202,"properties":{"V":500}},{"type":"LineString","arcs":[10475,10476,10477],"id":86207,"properties":{"V":230}},{"type":"LineString","arcs":[10478],"id":86208,"properties":{"V":230}},{"type":"LineString","arcs":[10479],"id":86209,"properties":{"V":230}},{"type":"LineString","arcs":[10480],"id":86231,"properties":{"V":500}},{"type":"LineString","arcs":[10481],"id":86418,"properties":{"V":500}},{"type":"LineString","arcs":[10482],"id":86419,"properties":{"V":500}},{"type":"LineString","arcs":[10483],"id":86738,"properties":{"V":500}},{"type":"LineString","arcs":[10484],"id":86741,"properties":{"V":500}},{"type":"LineString","arcs":[10485],"id":87004,"properties":{"V":500}},{"type":"LineString","arcs":[10486],"id":87005,"properties":{"V":500}},{"type":"LineString","arcs":[10487],"id":87029,"properties":{"V":500}},{"type":"LineString","arcs":[10488],"id":87059,"properties":{"V":345}},{"type":"LineString","arcs":[10489],"id":87180,"properties":{"V":345}},{"type":"LineString","arcs":[10490],"id":87183,"properties":{"V":345}},{"type":"LineString","arcs":[10491],"id":87295,"properties":{"V":230}},{"type":"LineString","arcs":[10492,10493],"id":87308,"properties":{"V":345}},{"type":"LineString","arcs":[10494,10495],"id":87309,"properties":{"V":345}},{"type":"LineString","arcs":[10496],"id":87403,"properties":{"V":345}},{"type":"LineString","arcs":[10497],"id":87404,"properties":{"V":345}},{"type":"LineString","arcs":[10498],"id":87410,"properties":{"V":230}},{"type":"LineString","arcs":[10499],"id":87426,"properties":{"V":230}},{"type":"LineString","arcs":[10500],"id":87427,"properties":{"V":230}},{"type":"LineString","arcs":[10501],"id":87428,"properties":{"V":230}},{"type":"LineString","arcs":[10502],"id":87429,"properties":{"V":230}},{"type":"LineString","arcs":[10503],"id":87430,"properties":{"V":230}},{"type":"LineString","arcs":[10504],"id":87432,"properties":{"V":230}},{"type":"LineString","arcs":[10505],"id":87434,"properties":{"V":230}},{"type":"LineString","arcs":[10506],"id":87533,"properties":{"V":345}},{"type":"LineString","arcs":[10507],"id":87554,"properties":{"V":230}},{"type":"LineString","arcs":[10508],"id":87573,"properties":{"V":230}},{"type":"LineString","arcs":[10509],"id":87586,"properties":{"V":230}},{"type":"LineString","arcs":[10510],"id":87716,"properties":{"V":400}},{"type":"LineString","arcs":[10511],"id":87762,"properties":{"V":230}},{"type":"LineString","arcs":[10512],"id":87772,"properties":{"V":230}},{"type":"LineString","arcs":[10513],"id":87776,"properties":{"V":230}},{"type":"LineString","arcs":[10514],"id":87778,"properties":{"V":230}},{"type":"LineString","arcs":[10515],"id":87859,"properties":{"V":230}},{"type":"LineString","arcs":[10516],"id":87860,"properties":{"V":230}},{"type":"LineString","arcs":[10517],"id":87862,"properties":{"V":230}},{"type":"LineString","arcs":[10518],"id":87864,"properties":{"V":230}},{"type":"LineString","arcs":[10519],"id":87893,"properties":{"V":345}},{"type":"LineString","arcs":[10520],"id":87894,"properties":{"V":345}},{"type":"LineString","arcs":[10521],"id":88027,"properties":{"V":345}},{"type":"LineString","arcs":[10522],"id":88073,"properties":{"V":345}},{"type":"LineString","arcs":[10523],"id":88074,"properties":{"V":230}},{"type":"LineString","arcs":[10524],"id":88075,"properties":{"V":230}},{"type":"LineString","arcs":[10525,10526,10527,10528,10529],"id":88153,"properties":{"V":500}},{"type":"LineString","arcs":[10530],"id":88292,"properties":{"V":765}},{"type":"LineString","arcs":[10531],"id":88301,"properties":{"V":765}},{"type":"LineString","arcs":[10532],"id":88302,"properties":{"V":345}},{"type":"LineString","arcs":[10533],"id":88303,"properties":{"V":345}},{"type":"LineString","arcs":[10534],"id":88307,"properties":{"V":345}},{"type":"LineString","arcs":[10535],"id":88402,"properties":{"V":345}},{"type":"LineString","arcs":[10536],"id":88409,"properties":{"V":345}},{"type":"LineString","arcs":[10537],"id":88424,"properties":{"V":765}},{"type":"LineString","arcs":[10538],"id":88425,"properties":{"V":345}},{"type":"LineString","arcs":[10539],"id":88426,"properties":{"V":345}},{"type":"LineString","arcs":[10540],"id":88427,"properties":{"V":345}},{"type":"LineString","arcs":[10541],"id":88428,"properties":{"V":345}},{"type":"LineString","arcs":[10542],"id":88430,"properties":{"V":345}},{"type":"LineString","arcs":[10543],"id":88454,"properties":{"V":765}},{"type":"LineString","arcs":[10544],"id":88459,"properties":{"V":765}},{"type":"LineString","arcs":[10545],"id":88557,"properties":{"V":345}},{"type":"LineString","arcs":[10546],"id":88558,"properties":{"V":345}},{"type":"LineString","arcs":[10547],"id":88560,"properties":{"V":345}},{"type":"LineString","arcs":[10548],"id":88561,"properties":{"V":345}},{"type":"LineString","arcs":[10549],"id":88566,"properties":{"V":345}},{"type":"LineString","arcs":[10550],"id":88567,"properties":{"V":345}},{"type":"LineString","arcs":[10551],"id":88568,"properties":{"V":345}},{"type":"LineString","arcs":[10552],"id":88578,"properties":{"V":345}},{"type":"LineString","arcs":[10553],"id":88627,"properties":{"V":345}},{"type":"LineString","arcs":[10554],"id":88629,"properties":{"V":345}},{"type":"LineString","arcs":[10555],"id":88630,"properties":{"V":345}},{"type":"LineString","arcs":[10556],"id":88643,"properties":{"V":345}},{"type":"LineString","arcs":[10557],"id":88648,"properties":{"V":345}},{"type":"LineString","arcs":[10558],"id":88658,"properties":{"V":765}},{"type":"LineString","arcs":[10559],"id":88659,"properties":{"V":765}},{"type":"LineString","arcs":[10560],"id":88716,"properties":{"V":345}},{"type":"LineString","arcs":[10561],"id":88731,"properties":{"V":500}},{"type":"LineString","arcs":[10562],"id":88747,"properties":{"V":230}},{"type":"LineString","arcs":[10563],"id":88751,"properties":{"V":230}},{"type":"LineString","arcs":[10564],"id":88754,"properties":{"V":230}},{"type":"LineString","arcs":[10565],"id":88756,"properties":{"V":230}},{"type":"LineString","arcs":[10566],"id":88757,"properties":{"V":230}},{"type":"LineString","arcs":[10567],"id":88776,"properties":{"V":230}},{"type":"LineString","arcs":[10568],"id":88785,"properties":{"V":230}},{"type":"LineString","arcs":[10569],"id":88786,"properties":{"V":230}},{"type":"LineString","arcs":[10570],"id":88789,"properties":{"V":230}},{"type":"LineString","arcs":[10571],"id":88790,"properties":{"V":230}},{"type":"LineString","arcs":[10572],"id":88863,"properties":{"V":230}},{"type":"LineString","arcs":[10573],"id":88866,"properties":{"V":230}},{"type":"LineString","arcs":[10574],"id":88867,"properties":{"V":230}},{"type":"LineString","arcs":[10575],"id":88868,"properties":{"V":230}},{"type":"LineString","arcs":[10576],"id":88887,"properties":{"V":230}},{"type":"LineString","arcs":[10577],"id":88890,"properties":{"V":345}},{"type":"LineString","arcs":[10578],"id":88959,"properties":{"V":230}},{"type":"LineString","arcs":[10579],"id":89004,"properties":{"V":500}},{"type":"LineString","arcs":[10580],"id":89005,"properties":{"V":500}},{"type":"LineString","arcs":[10581],"id":89006,"properties":{"V":500}},{"type":"LineString","arcs":[10582],"id":89025,"properties":{"V":230}},{"type":"LineString","arcs":[10583],"id":89026,"properties":{"V":230}},{"type":"LineString","arcs":[10584],"id":89027,"properties":{"V":230}},{"type":"LineString","arcs":[10585],"id":89028,"properties":{"V":230}},{"type":"LineString","arcs":[10586],"id":89029,"properties":{"V":230}},{"type":"LineString","arcs":[10587],"id":89030,"properties":{"V":230}},{"type":"LineString","arcs":[10588],"id":89031,"properties":{"V":230}},{"type":"LineString","arcs":[10589],"id":89165,"properties":{"V":230}},{"type":"LineString","arcs":[10590],"id":89180,"properties":{"V":500}},{"type":"LineString","arcs":[10591],"id":89182,"properties":{"V":230}},{"type":"LineString","arcs":[10592],"id":89238,"properties":{"V":500}},{"type":"LineString","arcs":[10593],"id":89239,"properties":{"V":500}},{"type":"LineString","arcs":[10594],"id":89250,"properties":{"V":230}},{"type":"LineString","arcs":[10595],"id":89251,"properties":{"V":230}},{"type":"LineString","arcs":[10596],"id":89294,"properties":{"V":230}},{"type":"LineString","arcs":[10597],"id":89295,"properties":{"V":230}},{"type":"LineString","arcs":[10598],"id":89337,"properties":{"V":230}},{"type":"LineString","arcs":[10599],"id":89338,"properties":{"V":230}},{"type":"LineString","arcs":[10600],"id":89345,"properties":{"V":230}},{"type":"LineString","arcs":[10601],"id":89348,"properties":{"V":230}},{"type":"LineString","arcs":[10602],"id":89349,"properties":{"V":230}},{"type":"LineString","arcs":[10603],"id":89352,"properties":{"V":230}},{"type":"LineString","arcs":[10604],"id":89361,"properties":{"V":230}},{"type":"LineString","arcs":[10605],"id":89363,"properties":{"V":230}},{"type":"LineString","arcs":[10606],"id":89364,"properties":{"V":230}},{"type":"LineString","arcs":[10607],"id":89366,"properties":{"V":230}},{"type":"LineString","arcs":[10608],"id":89376,"properties":{"V":230}},{"type":"LineString","arcs":[10609],"id":89384,"properties":{"V":230}},{"type":"LineString","arcs":[10610],"id":89385,"properties":{"V":230}},{"type":"LineString","arcs":[10611],"id":89387,"properties":{"V":230}},{"type":"LineString","arcs":[10612],"id":89388,"properties":{"V":230}},{"type":"LineString","arcs":[10613],"id":89392,"properties":{"V":230}},{"type":"LineString","arcs":[10614],"id":89424,"properties":{"V":230}},{"type":"LineString","arcs":[10615],"id":89428,"properties":{"V":230}},{"type":"LineString","arcs":[10616],"id":89520,"properties":{"V":230}},{"type":"LineString","arcs":[10617],"id":89526,"properties":{"V":500}},{"type":"LineString","arcs":[10618],"id":89529,"properties":{"V":230}},{"type":"LineString","arcs":[10619],"id":89530,"properties":{"V":500}},{"type":"LineString","arcs":[10620],"id":89531,"properties":{"V":500}},{"type":"LineString","arcs":[10621],"id":89532,"properties":{"V":230}},{"type":"LineString","arcs":[10622],"id":89627,"properties":{"V":345}},{"type":"LineString","arcs":[10623],"id":89702,"properties":{"V":230}},{"type":"LineString","arcs":[10624],"id":89703,"properties":{"V":230}}]}},"arcs":[[[7543,5149],[5,-1]],[[4992,28050],[-80,-337]],[[4992,28050],[-39,-520],[99,-313],[560,-1222],[108,-381],[385,-536]],[[4992,28050],[-38,-519],[99,-313],[560,-1222],[107,-381],[385,-537]],[[4912,27713],[140,-497],[559,-1222],[108,-381],[386,-535]],[[4912,27713],[-493,-198],[-177,-483]],[[6105,25078],[362,-1432]],[[6105,25078],[362,-1432]],[[6105,25078],[155,-587]],[[6260,24491],[368,-24],[677,-155],[736,261],[855,-405],[565,-414],[363,-416],[96,15]],[[6260,24491],[207,-845]],[[6467,23646],[244,-683],[172,-1079]],[[6467,23646],[245,-683],[171,-1079]],[[6467,23646],[246,-682],[170,-1080]],[[6883,21884],[63,-340],[-32,-677],[154,-853],[17,-1137]],[[6883,21884],[64,-340],[-32,-676],[154,-854],[16,-1137]],[[6883,21884],[65,-340],[-33,-677],[154,-955]],[[7069,19912],[16,-1035]],[[7085,18877],[-49,-294],[-289,-340]],[[4242,27032],[-99,-92],[-345,93],[-712,-479],[-339,-980]],[[2747,25574],[-47,-254],[-185,-104],[-21,-578],[-223,-914],[-7,-448],[247,-826],[20,-479]],[[2531,21971],[179,-602],[58,-506],[284,-397],[149,-830],[220,-437]],[[3421,19199],[261,-27],[112,-176],[266,-1254],[120,-207],[94,-514],[224,-594]],[[4498,16427],[-225,593],[-94,515],[-120,206],[-125,664],[-110,189],[-554,-108],[-176,343]],[[4498,16427],[19,119]],[[4498,16427],[68,-691],[246,-1279],[-87,-84]],[[4725,14373],[-129,-310],[85,-608]],[[4681,13455],[30,-496],[-146,-566],[271,-1138]],[[8310,14556],[-298,72],[-55,453],[-505,800],[-679,387],[-463,-27],[-570,-148],[-407,106],[-449,302],[-386,-74]],[[4498,16427],[385,72],[444,-303],[414,-105],[569,148],[506,10],[271,209],[397,-311],[563,-103],[119,-308],[239,-17],[111,-188],[586,-551],[670,-287],[171,-298],[574,-699],[76,-470],[204,-389],[300,-359]],[[4498,16427],[386,72],[444,-303],[412,-104],[570,148],[506,10],[271,209],[397,-312],[276,-17]],[[7760,16130],[287,-85],[119,-309],[239,-16],[111,-189],[771,-663]],[[9287,14868],[485,-175],[171,-298],[574,-699],[76,-471],[203,-388],[301,-359]],[[9287,14868],[-552,-105],[-214,-232],[-211,25]],[[7085,18877],[122,-748],[237,-318],[143,-637],[173,-1044]],[[8310,14556],[-134,568],[-113,73],[-192,482],[-237,1040],[-191,1091],[-238,318],[-120,749]],[[8310,14556],[-133,570],[-113,72],[-230,583],[-390,2030],[-238,318],[-121,748]],[[5355,14538],[-326,43],[-304,-208]],[[5355,14538],[354,-188],[-216,-557]],[[10304,12012],[-55,-18],[-582,528],[-503,17],[-392,557],[-190,491],[-127,89],[-529,33],[-886,-26],[-294,-169],[-333,32],[-233,539],[-825,453]],[[7653,14574],[-224,109],[-803,-238],[-207,275],[-318,150],[-144,-177],[-463,-209],[-139,54]],[[8310,14556],[-328,74],[-329,-56]],[[8310,14556],[-328,77],[-329,-59]],[[10805,14596],[-467,-260],[-1141,328],[-438,-51],[-210,-279],[-239,222]],[[8715,14302],[-339,109],[-66,145]],[[10304,12012],[-159,492],[-212,340],[-45,278],[-401,330],[-229,44],[-448,436],[-95,370]],[[10166,14648],[-316,-16],[-563,236]],[[10805,14596],[-639,52]],[[9853,15139],[-566,-271]],[[11097,12478],[-271,-872]],[[10826,11606],[-73,253],[-449,153]],[[10826,11606],[-71,254],[-451,152]],[[4836,11255],[193,-540],[200,-1115],[145,-185]],[[5532,8954],[37,128],[-341,516],[-201,1116],[-191,541]],[[5532,8954],[-85,-739],[124,-254],[-159,-209],[-681,-44]],[[5532,8954],[-84,-739],[125,-241]],[[7430,7469],[-189,725],[-460,193],[-610,46],[-599,649],[-40,-128]],[[5532,8954],[38,130],[-196,331]],[[6681,7450],[260,-207],[489,226]],[[7430,7469],[-293,-179]],[[7430,7469],[-293,-179]],[[7430,7469],[199,-543]],[[7629,6926],[-180,90],[-335,-230]],[[7608,6929],[-159,88],[-335,-231]],[[7764,5730],[0,0]],[[7764,5730],[-66,270],[72,301],[-141,625]],[[7866,5401],[-102,329]],[[7764,5730],[0,0]],[[7764,5730],[-425,-227]],[[7866,5401],[-190,-425],[105,-814],[-88,-693],[139,-569],[23,-608],[-483,-1169]],[[7866,5401],[-189,-426],[104,-808],[-89,-698],[162,-1178],[-453,-1184],[-29,16]],[[11481,6590],[-89,182],[-533,494],[-753,-80],[-297,-213],[-378,-436],[-550,55],[-308,-144],[-409,-815],[-298,-232]],[[9580,9272],[-435,-318],[-451,-231],[-344,-636],[-405,122],[-268,-386],[-158,-426]],[[9580,9272],[-435,-318],[-451,-231],[-344,-636],[-405,122],[-268,-386],[-77,-363],[-170,9]],[[9580,9272],[-888,-546],[-342,-642],[-402,125],[-273,-384],[-77,-363],[-168,7]],[[9580,9272],[-438,-316],[-449,-231],[-343,-642],[-401,125],[-273,-384],[-77,-363],[-169,8]],[[7430,7469],[89,-72]],[[9580,9272],[205,270],[316,1001],[246,55],[109,964],[-152,450]],[[9580,9272],[325,-215],[405,-489],[-105,-703]],[[12477,7070],[-324,101],[-438,923],[-318,298],[-678,498],[-336,24]],[[10352,10575],[-312,-191],[-259,-845],[-201,-267]],[[11481,6590],[-88,183],[-856,799],[-251,368],[-81,-75]],[[12477,7070],[-67,-120],[-592,-293],[-337,-67]],[[10352,10575],[26,322],[448,709]],[[12477,7070],[-15,205],[-316,686],[-1064,2074],[-256,1571]],[[11832,13850],[-334,695],[-148,174],[-324,75],[-221,-198]],[[11692,13681],[140,169]],[[11832,13850],[268,-357],[330,-771]],[[10805,14596],[75,507],[-149,-11]],[[12430,12722],[-547,-261],[-408,-75],[-378,92]],[[12430,12722],[-250,-412],[-594,-276],[-143,-234],[-617,-194]],[[12430,12722],[823,186]],[[13253,12908],[-823,-186]],[[13663,13010],[-410,-102]],[[14327,13032],[-511,-101],[-153,79]],[[13663,13010],[153,-78],[511,100]],[[14327,13032],[251,448],[51,471],[434,78]],[[15063,14029],[210,40],[196,-141],[519,192]],[[12477,7070],[21,238],[410,428],[434,612],[1144,418],[509,132]],[[17729,11022],[-525,-516],[-154,-520],[-514,-600],[-193,-366],[-357,-195],[-500,372],[-491,-299]],[[15988,14120],[-75,-689],[34,-211],[493,-815],[175,-182],[115,-529],[230,-211],[116,71],[190,-364],[454,-51],[9,-117]],[[17729,11022],[117,-292],[194,-62],[382,97],[379,441],[326,13],[219,-142]],[[17729,11022],[861,723],[64,313],[193,243],[282,755],[218,119],[260,523],[82,540],[211,117],[250,436],[442,121],[520,1254],[612,-170]],[[17729,11022],[861,723],[64,313],[193,243],[282,756],[218,119],[260,522],[82,540],[211,118],[250,435],[442,122],[520,1253],[612,-170]],[[28279,19489],[-160,-42],[-325,-318],[-422,-215],[-588,-587],[-810,-435],[-112,-161],[-538,-124],[-609,235],[-460,-211],[-282,22],[-426,227],[-203,-27],[-331,-517],[-37,-282],[-318,-3],[-279,145],[-265,-151],[50,-531],[-132,-417],[-308,-101]],[[28279,19489],[-160,-41],[-325,-318],[-422,-214],[-589,-587],[-810,-435],[-111,-161],[-538,-125],[-609,236],[-460,-211],[-287,21],[-421,226],[-203,-27],[-331,-517],[-37,-282],[-318,-2],[-279,144],[-265,-151],[50,-531],[-132,-416],[-308,-102]],[[28279,19489],[973,54],[662,182],[31,148],[757,487],[709,140],[344,138],[245,224]],[[28279,19489],[504,78],[469,-22],[661,181],[31,148],[758,487],[710,140],[343,138],[245,223]],[[9920,23353],[566,201],[734,686],[753,313],[428,55],[439,-144],[143,56],[271,399],[575,1182]],[[13829,26101],[271,282],[349,-150],[657,228],[562,1235],[291,407],[253,652],[183,225],[1052,403]],[[16095,14213],[-107,-93]],[[12447,12675],[-17,47]],[[8409,14453],[-99,103]],[[8409,14453],[-99,103]],[[8409,14453],[-99,103]],[[8409,14453],[-99,103]],[[10805,14596],[-467,-258],[-1141,328],[-439,-51],[-213,-282],[-521,134],[-334,-94],[-547,-678],[-383,-179],[-457,6],[-269,111],[-890,-418]],[[10183,7882],[134,649],[-412,527],[-288,209],[-439,-491],[-383,-117],[-459,-692],[-68,-358],[-159,-51],[-454,-659],[-206,119],[-335,-232]],[[11481,6590],[-91,180],[-532,493],[-754,-80],[-295,-212],[-404,-449],[-437,102],[-399,-187],[-152,-441],[-253,-364],[-621,-483]],[[11481,6590],[-90,182],[-533,493],[-754,-82],[-295,-212],[-404,-449],[-411,99],[-425,-184],[-152,-441],[-253,-364],[-621,-483]],[[17458,29383],[391,221],[384,-274],[171,132],[581,159],[481,914],[603,-72],[251,109],[297,-80],[118,-359]],[[18697,30129],[775,397],[498,-140],[53,113]],[[17458,29383],[1239,746]],[[18697,30129],[14,162]],[[17458,29383],[960,816],[293,92]],[[17458,29383],[253,718],[-20,168]],[[17447,29383],[11,0]],[[20023,30499],[192,71],[388,603],[292,300],[352,672]],[[20023,30499],[194,70],[387,602],[293,300],[350,674]],[[20735,30133],[-14,587],[250,980],[276,445]],[[20735,30133],[54,-445],[351,-72],[474,-636],[58,-236]],[[21672,28744],[121,48],[206,812],[17,531],[153,316],[178,851]],[[22347,31302],[365,956],[53,627],[129,474],[287,672],[740,1031],[1122,650],[527,129],[272,162],[1123,298]],[[21247,32145],[180,326],[234,84],[431,-105],[311,157],[137,313],[353,440],[287,672],[322,565],[285,181],[134,286],[1121,650],[528,128],[272,163],[1123,296]],[[21247,32145],[180,328],[234,83],[431,-104],[310,156],[137,313],[353,439],[288,673],[322,566],[285,180],[134,289],[1121,647],[528,129],[272,162],[1123,295]],[[21247,32145],[-117,202],[-114,552],[-31,643],[48,437],[-156,946],[218,436],[74,417],[-179,631]],[[21247,32145],[-117,202],[-114,552],[-32,643],[49,437],[-156,946],[178,427],[-65,1057]],[[21247,32145],[447,920],[-159,271],[-211,829],[-223,604],[-46,582],[114,427],[-179,631]],[[20990,36409],[-108,816],[197,736],[-255,730]],[[20990,36409],[-95,956]],[[20990,36409],[-108,816],[196,736],[-254,730]],[[20990,36409],[-108,816],[196,736],[-254,730]],[[20895,37365],[184,596],[-255,730]],[[20824,38691],[-120,743]],[[20824,38691],[-120,743]],[[20824,38691],[119,237]],[[20824,38691],[117,240],[-24,461]],[[20943,38928],[-26,464]],[[20704,39434],[104,417]],[[20704,39434],[104,417]],[[20917,39392],[-109,459]],[[20917,39392],[-109,459]],[[20917,39392],[-109,459]],[[20917,39392],[-109,459]],[[20808,39851],[-143,528],[-98,711],[-15,813],[73,473]],[[20808,39851],[-142,528],[-99,711],[-15,813],[73,473]],[[20808,39851],[-142,528],[-98,711],[-15,813],[72,473]],[[20808,39851],[-52,483],[64,255],[-149,560],[-60,758],[14,469]],[[20625,42376],[3,139]],[[20625,42376],[3,139]],[[20628,42515],[-173,934],[-186,2054],[-211,642]],[[20628,42515],[-174,934],[-185,2053],[-211,643]],[[19250,43288],[604,209],[238,-122],[230,-349],[242,-171],[61,-479]],[[19250,43288],[604,211],[299,-163],[212,-350],[199,-123],[61,-487]],[[20639,42389],[-14,-13]],[[20808,39851],[73,354],[210,266],[-8,183],[182,462],[49,373]],[[21093,40476],[-10,178],[182,462],[49,373]],[[20808,39851],[74,353],[211,272]],[[21093,40476],[7,-4]],[[21951,44489],[-234,-100],[-158,-515],[-401,-376],[-151,-489],[-197,-217],[-185,-416]],[[25506,42542],[-16,-293],[-148,-307],[-307,-101],[-184,-201],[-984,-209],[-402,8],[-98,126],[-667,-232],[-496,498],[-478,209],[-284,-88],[-350,1012],[-242,-97],[-225,-491]],[[21951,44489],[98,238],[127,-397],[-1,-986],[-207,-1124],[-438,-311],[-216,-420]],[[21977,45320],[200,-990],[-1,-986],[-207,-1125],[-439,-312],[-216,-418]],[[21977,45320],[113,-76],[-13,-471],[-126,-284]],[[21977,45320],[35,129],[-287,623],[-366,284],[-138,217],[-497,-210],[-85,-212],[-507,-200],[-74,194]],[[21977,45320],[34,128],[-286,622],[-366,285],[-138,217],[-481,-176],[-101,-246],[-507,-200],[-74,195]],[[18185,46750],[-197,-98],[98,-546],[282,-415],[197,-760],[-32,-719],[85,-748],[214,-293],[418,117]],[[20058,46145],[-143,518],[-388,871],[12,384],[-304,567],[-267,332],[-576,22],[-608,844],[-347,-93]],[[21951,44489],[-5,63],[610,943],[400,239],[379,873],[372,139],[522,964],[72,321],[247,451],[187,513],[131,640],[-135,807],[-37,758]],[[17437,49590],[-552,-140],[-396,752],[-139,621]],[[25506,42542],[181,88],[511,-499],[643,77],[321,-369],[451,-376],[160,-21],[960,213]],[[28734,41686],[-1,-31]],[[28733,41655],[1,31]],[[28734,41686],[-159,-80],[-330,615],[-105,435],[-204,370],[-54,335]],[[27882,43361],[-293,437],[-129,48],[-240,-389]],[[27882,43361],[-37,1109],[321,699],[6,192]],[[28172,45361],[-105,175],[-515,92],[-457,919],[-43,302],[-275,110]],[[26777,46959],[165,763],[125,203],[62,574],[177,717],[-20,361],[163,-56]],[[27449,49521],[-173,81],[-28,326],[-168,253],[-35,643],[-459,610],[-209,775],[-26,375],[222,579],[84,533],[144,92],[140,622]],[[28734,41686],[155,204],[588,-21],[195,304],[406,-150],[366,-257],[557,-578],[123,-290],[579,-755],[157,-102],[942,129],[405,703],[436,504],[200,656]],[[33843,42033],[-121,-251],[73,-1229],[-142,-691],[57,-279],[167,-2798],[220,-487],[-45,-172]],[[34052,36126],[75,431],[299,381],[-32,1207],[-107,1838],[275,38],[-15,248],[176,1096],[544,700],[125,554],[336,415],[328,41],[33,669],[-74,-11]],[[33419,46383],[-308,-59]],[[33419,46383],[202,761],[181,278],[61,335],[-127,2190],[131,569],[258,648],[-26,518],[-351,-51],[-3,-113]],[[33419,46383],[201,761],[182,278],[61,335],[-127,2190],[131,569],[258,648],[-26,517],[-350,-50],[-4,-113]],[[33805,48651],[57,-894],[-60,-334],[-182,-278],[-201,-762]],[[33607,50111],[127,-121],[128,-2233],[-60,-334],[-182,-278],[-199,-757],[-310,-64]],[[33805,48651],[-71,1339],[-127,121]],[[34052,36126],[75,431],[173,149],[797,1290],[10,185],[704,523],[275,140],[358,446],[-14,321],[365,384],[380,175]],[[34052,36126],[299,318],[99,441],[328,512],[866,179]],[[33803,45897],[843,155],[284,-20],[171,-168]],[[35101,45864],[108,-1346],[118,-161],[378,50],[134,-546]],[[35101,45864],[163,322],[10,761],[439,229]],[[35713,47176],[112,76]],[[5573,7974],[209,176],[204,-12],[91,222],[225,107],[481,-79],[911,-378],[253,204],[498,-34],[249,544],[449,230],[241,238],[439,163],[468,-428],[426,-34],[680,-498],[319,-299],[438,-923],[162,-128],[189,81]],[[4992,28050],[-80,-337]],[[4992,28050],[-67,-266],[-400,-163],[-235,-262],[19,-397]],[[4309,26962],[107,-606],[48,-909]],[[3742,27136],[450,-228],[117,54]],[[3742,27136],[-113,156],[-429,-91],[-37,150]],[[3163,27351],[-144,-630],[-352,-837],[-49,-298]],[[2747,25574],[-129,12]],[[2747,25574],[-129,12]],[[2747,25574],[-44,-255],[-215,-306],[-583,-174]],[[1905,24839],[43,-701],[-60,-539]],[[1888,23599],[367,-418],[-1,-102]],[[2254,23079],[-238,-174]],[[2502,22008],[-40,672],[-208,399]],[[2531,21971],[-29,37]],[[2502,22008],[-258,6],[-318,-163]],[[1926,21851],[-139,104],[-590,-399],[-110,-257]],[[1925,21849],[1,2]],[[1925,21849],[-138,107],[-591,-399],[-109,-258]],[[1087,21299],[-436,255],[-167,-104],[-345,973],[-1,767],[-138,576]],[[3074,20076],[-190,247],[-294,603],[-220,298],[-121,-10],[-324,635]],[[1087,21299],[-112,-196],[9,-382]],[[2502,22008],[207,-639],[59,-510],[283,-393],[150,-831],[220,-436]],[[3421,19199],[-193,-86],[-134,-284]],[[3094,18829],[-409,-63],[-132,-150],[-358,-35],[-124,-153],[-310,-62]],[[1761,18366],[-35,257],[-275,678]],[[1761,18366],[240,-419],[30,-892],[127,-713],[184,-208]],[[4517,16546],[-162,128],[-510,-150],[-507,175],[-197,-56]],[[4464,25447],[22,-359],[437,-2028],[90,-252],[675,-670],[139,-471]],[[6456,20330],[-291,618],[-218,328],[-120,391]],[[7069,19912],[-269,-52],[-299,278],[-45,192]],[[6630,19540],[-174,790]],[[7512,16173],[13,985],[-360,955],[-125,179],[-93,502],[-271,393],[-46,353]],[[3421,19199],[162,-65]],[[3583,19134],[1,1]],[[3584,19135],[185,-479]],[[3769,18656],[1,2]],[[3769,18656],[165,-252],[44,-672],[142,-739],[176,-294],[215,-127]],[[3583,19134],[52,-233],[298,-498],[80,-513],[4,-496],[102,-402],[177,-292],[215,-128]],[[4511,16572],[6,-26]],[[4517,16546],[-340,348],[-414,-5],[-100,-125]],[[3792,16954],[-94,780]],[[3698,17734],[-160,499]],[[3538,18233],[-97,576]],[[3441,18809],[-20,390]],[[3792,16954],[272,-607]],[[4064,16347],[105,-606]],[[6630,19540],[96,-573],[21,-724]],[[6747,18243],[121,-322]],[[6747,18243],[-242,-923],[-151,-349],[-413,-38],[-214,109],[-354,-2],[-342,-296],[-264,-76],[-198,-237],[-400,-690]],[[5185,17047],[-668,-501]],[[4517,16546],[-246,-862],[-102,57]],[[4145,15384],[114,251],[258,911]],[[4145,15384],[-157,-56],[-48,299]],[[7642,14557],[-206,118],[-810,-233],[-208,287],[-318,143],[-143,-178],[-464,-209],[-464,95],[-306,-206],[-71,267],[-507,743]],[[4725,14373],[1,-6]],[[4726,14367],[-72,-192]],[[4726,14367],[-72,-192]],[[4654,14175],[3,-7]],[[5355,14538],[-264,-34]],[[7642,14557],[-206,116],[-810,-231],[-209,287],[-317,143],[-396,-288],[-11,-435],[-200,-356]],[[4657,14168],[-583,98]],[[4074,14266],[-147,-50],[-150,-310],[-464,-349],[-225,-485]],[[4657,14168],[54,-244]],[[4657,14168],[54,-244]],[[4657,14168],[71,188]],[[4728,14356],[-3,17]],[[4657,14168],[71,188]],[[4728,14356],[363,148]],[[7642,14557],[-214,122],[-802,-235],[-208,286],[-318,143],[-78,-130],[-529,-257],[-296,108],[-106,-90]],[[6867,14542],[-241,-98],[-208,286],[-318,144],[-395,-288]],[[4388,14192],[-316,73],[-50,184]],[[4517,16546],[399,310],[229,50],[85,266],[324,-195],[388,-43],[296,80],[548,-194],[526,-569],[734,-207],[119,-309],[240,-17],[110,-188],[654,-597]],[[6971,16578],[-184,243],[-548,195],[-297,-80],[-388,41],[-323,195],[-64,-215],[-357,-154],[-270,-240]],[[7642,14557],[16,448],[-119,693],[-27,475]],[[4711,13924],[25,-271]],[[4736,13653],[-55,-198]],[[4681,13455],[-33,-32]],[[4681,13455],[253,-145]],[[5144,13215],[-210,95]],[[5144,13215],[-206,98]],[[5091,14504],[96,-217]],[[5091,14504],[96,-217]],[[5187,14287],[166,-278]],[[5353,14009],[133,-221]],[[5353,14009],[133,-221]],[[6281,13786],[-687,-258],[-101,265]],[[6281,13786],[-627,-320],[-161,327]],[[5493,13793],[-46,-3]],[[5144,13215],[242,219]],[[5144,13215],[242,218]],[[5386,13433],[268,33],[627,320]],[[6281,13786],[-87,11],[-808,-363]],[[5386,13433],[14,-66]],[[5386,13434],[14,-67]],[[5144,13215],[-119,-16]],[[5144,13215],[66,-100],[144,-938]],[[5354,12177],[-34,-379],[-238,-728]],[[5354,12177],[226,-96],[253,105],[226,-169]],[[6059,12017],[97,32]],[[4934,13310],[-164,-271],[-1,-277],[255,-1141]],[[4736,13653],[137,-353],[-104,-538],[255,-1141]],[[5024,11621],[-188,-366]],[[5024,11621],[-188,-366]],[[4836,11255],[-295,-79],[-301,-359]],[[4836,11255],[-295,-79],[-301,-359]],[[4240,10817],[6,-8]],[[4240,10817],[6,-8]],[[4246,10809],[9,-19]],[[4240,10817],[-29,-92],[-488,-251],[-173,29]],[[4836,11255],[90,-95]],[[4836,11255],[86,-88]],[[4836,11255],[86,-88]],[[5024,11621],[-200,-280],[-167,-455]],[[5024,11621],[-200,-280],[-167,-455]],[[4657,10886],[-3,16]],[[4926,11160],[9,19]],[[5082,11070],[-160,97]],[[4922,11167],[136,-219],[-30,-233],[202,-1114],[81,-120]],[[4905,11086],[123,-372],[200,-1115],[83,-118]],[[5311,9481],[32,139],[434,222],[55,191]],[[5832,10033],[-14,64]],[[6099,10115],[-150,-246],[-605,-250],[-33,-138]],[[6099,10115],[-150,-246],[-131,228]],[[5311,9481],[-85,-263],[50,-387],[297,-857]],[[5573,7974],[-161,-223],[-681,-43]],[[4707,7698],[24,10]],[[5573,7974],[-158,-283],[40,-695]],[[5573,7974],[-159,-282],[41,-696]],[[5573,7974],[-162,-280],[44,-698]],[[4731,7708],[681,41],[43,-753]],[[5455,6996],[-62,-284],[107,-472],[272,-451],[225,-200],[214,-389],[127,-496],[4,-315]],[[5455,6996],[-62,-284],[107,-472],[272,-452],[224,-199],[215,-389],[127,-496],[4,-315]],[[6342,4389],[-304,-413]],[[6038,3976],[-451,-448]],[[6342,4389],[-246,-362],[-509,-499]],[[5455,6996],[428,-256],[133,-251],[337,-325]],[[5455,6996],[428,-258],[133,-251],[315,-310]],[[5455,6996],[428,-257],[133,-251],[315,-311]],[[6281,13786],[148,-176],[634,85],[1392,-20],[357,-376],[248,-527],[182,-180],[306,-29]],[[7642,14557],[-127,-172]],[[7639,14604],[5,1]],[[7644,14605],[-2,-48]],[[7639,14604],[5,1]],[[7644,14605],[-2,-48]],[[7642,14557],[753,-171]],[[7653,14574],[-11,-17]],[[7653,14574],[-11,-17]],[[7653,14574],[-14,30]],[[7653,14574],[-14,30]],[[7642,14557],[41,-181],[311,-43],[834,-423],[251,-250]],[[8310,14556],[1,10]],[[8499,14755],[-188,-189]],[[4922,11167],[3,35]],[[3074,20076],[6,10]],[[3421,19199],[-319,696],[-28,181]],[[3141,16643],[-334,-287],[-465,-222]],[[7639,14604],[18,401],[-119,692],[-14,1461],[-252,642],[9,389],[-179,830],[15,985],[-177,916],[98,747],[228,1000],[9,1026],[252,723],[35,1862],[-174,929],[19,1112],[-78,494],[120,1744],[-17,1392],[-102,252],[-19,1035],[216,1267],[-239,604],[82,589],[115,231],[68,566],[-49,641],[-195,755],[-24,722],[176,635],[-73,722],[-231,1280],[28,1377],[-86,737],[65,1738],[242,621],[20,651],[-212,1299],[171,495],[120,831],[-38,482],[82,283],[152,1303],[-122,382],[-113,1589],[122,512],[-143,1254],[-441,1083],[-184,540],[-333,414],[-89,291],[-344,632],[-179,657],[-334,377],[-44,804]],[[8499,14755],[-23,248]],[[9579,14747],[-410,186]],[[9579,14747],[270,-118],[356,60]],[[10208,14673],[-3,16]],[[10205,14689],[600,-93]],[[10805,14596],[-522,-250]],[[10805,14596],[-16,-75],[644,-909]],[[10805,14596],[216,1112],[554,345]],[[11575,16053],[453,434],[27,536],[201,553],[254,150]],[[11135,14746],[1,18]],[[5311,9481],[260,-399]],[[6569,8066],[-147,322],[-250,43],[-601,651]],[[6569,8066],[61,-339]],[[6569,8066],[336,-197],[55,-311],[177,-268]],[[6567,8065],[338,-197],[18,-234]],[[6923,7634],[214,-344]],[[7137,7290],[-214,344]],[[7137,7290],[-195,-46]],[[6942,7244],[-261,206]],[[7137,7290],[-196,-45],[-260,205]],[[7137,7290],[-196,-45],[-260,205]],[[7137,7290],[202,-337],[-225,-167]],[[7137,7290],[-128,-699]],[[6951,6532],[156,332],[30,426]],[[7543,5149],[-165,204]],[[7858,5373],[-294,-265]],[[7866,5401],[-323,-252]],[[7543,5149],[189,-844]],[[7732,4305],[-5,-2]],[[7767,2910],[88,-618],[-455,-1183],[-28,14]],[[7771,2915],[84,-623],[-238,-626]],[[7617,1666],[-245,-543]],[[7372,1123],[-160,148]],[[7372,1123],[-160,148]],[[9279,9082],[-585,-358],[-310,-599],[-437,89],[-271,-390],[-101,-399],[-438,-135]],[[9580,9272],[-301,-190]],[[10383,8914],[-560,441],[-243,-83]],[[9079,13660],[408,-210],[402,-337]],[[9889,13113],[0,0]],[[9889,13113],[92,-342]],[[9548,12563],[0,-1]],[[9822,12377],[519,-467],[112,-260]],[[9548,12563],[274,-186]],[[9822,12377],[-2,0]],[[9981,12771],[164,-267],[308,-854]],[[10383,8914],[1,-238],[-201,-794]],[[10383,8914],[335,-25],[678,-498],[318,-298],[438,-923],[353,-44]],[[10383,8914],[334,-22],[680,-498],[361,-376]],[[11758,8018],[395,-846],[163,-128],[189,82]],[[10383,8914],[131,323],[-16,437],[-146,901]],[[10352,10575],[101,1075]],[[10205,7865],[-19,18]],[[11481,6590],[127,-776],[375,-792]],[[11481,6590],[341,66],[589,292],[94,178]],[[11481,6590],[341,65],[590,292],[93,179]],[[12477,7070],[28,56]],[[12505,7126],[-6,181],[410,428],[434,611],[1144,418],[508,134]],[[12505,7126],[-7,181],[411,429],[433,611],[1144,418],[509,133]],[[12505,7126],[-7,182],[411,428],[433,611],[1433,554]],[[14775,8901],[220,-3]],[[12505,7126],[-32,44]],[[12473,7170],[-328,790],[-1029,2005],[37,23]],[[12505,7126],[-32,44]],[[12473,7170],[-329,789],[-771,1499]],[[10453,11650],[144,-670],[776,-1522]],[[10453,11650],[144,-670],[517,-1011],[39,19]],[[10453,11650],[550,342],[184,609]],[[11097,12478],[-103,-440]],[[11097,12478],[31,59]],[[11097,12478],[-3,30]],[[11097,12478],[-3,30]],[[11097,12478],[-112,427]],[[14995,8898],[34,-160],[-235,-1024],[-81,-992],[-148,-408]],[[15746,9027],[1,5]],[[15748,9032],[-1,0]],[[15747,9032],[-261,167],[-491,-301]],[[14995,8898],[87,-89],[299,-1468]],[[15381,7341],[-104,-377],[149,-671],[44,-789],[-31,-604],[244,-645]],[[14995,8898],[86,-90],[289,-1545],[-54,-499],[135,153]],[[15451,6917],[-142,-210]],[[15309,6707],[116,-414],[44,-789],[-31,-598],[245,-651]],[[14565,6314],[10,131],[430,43],[304,219]],[[14565,6314],[16,-637],[248,-285],[77,-277],[283,-275],[260,38],[234,-623]],[[15746,9027],[363,-319],[341,7],[201,-186],[62,-365],[337,-49],[107,194],[420,342],[161,378]],[[17738,9029],[95,249],[474,-150],[237,-268],[474,-246],[-22,-763],[-351,-241]],[[18645,7610],[351,241],[22,763],[340,39],[218,379]],[[19576,9032],[214,64],[110,-215],[432,-368],[30,-316]],[[20170,8691],[202,-398],[127,36]],[[20499,8329],[24,-104]],[[20685,8467],[-162,-242]],[[20685,8467],[-186,-138]],[[20362,8197],[-1,-1]],[[20362,8197],[161,28]],[[20170,8691],[-120,202],[151,372]],[[17738,9029],[513,1622],[550,556],[326,13],[221,-150]],[[20201,9265],[-32,276]],[[20169,9541],[-196,354],[-97,547],[-528,628]],[[19346,11077],[2,-7]],[[19348,11070],[215,293],[193,898]],[[19756,12261],[279,802],[-33,593],[115,297]],[[19772,26300],[-72,-523],[-142,-45],[-425,-543],[-177,-929],[-140,-295]],[[18816,23965],[-110,-632]],[[5486,13788],[7,5]],[[5486,13786],[7,7]],[[5486,13786],[0,2]],[[5486,13788],[0,-2]],[[30090,41883],[-382,396]],[[29477,41797],[-142,128],[-446,-35],[-155,-204]],[[34263,39966],[-106,285],[-178,71]],[[33979,40322],[-57,49]],[[33922,40371],[-342,3],[-507,-183],[-1213,-151],[-132,70],[-528,685]],[[29708,42279],[382,-396]],[[31200,40795],[-198,394],[-558,578],[-351,250],[-421,155],[-195,-375]],[[32901,12714],[325,-216],[516,172],[322,-61]],[[32901,12714],[325,-217],[470,167],[368,-55]],[[33515,19092],[-121,227],[-691,225],[-390,-73]],[[32313,19471],[0,-2]],[[32903,12709],[139,13],[224,462],[24,445],[181,583],[778,954],[374,649],[765,839]],[[32901,12714],[-364,-62],[-234,-557],[27,-319]],[[30694,10936],[178,239],[579,119],[106,132],[301,18],[472,332]],[[30694,10936],[-132,-136],[-403,-86],[-190,-291],[-276,-83],[-321,-328],[-187,-45]],[[29185,9967],[-96,102],[-484,-274],[-630,-141],[-83,156],[-346,-134]],[[35388,16654],[-45,-19],[-591,1051],[-659,622],[-575,769]],[[35388,16654],[-11,-135],[432,-5],[580,1111],[777,80],[242,212]],[[38164,18060],[-588,29],[-168,-172]],[[36071,19579],[-51,-58],[-1186,-186],[-359,-171],[-136,83],[-315,-103],[-129,76],[-377,-143]],[[32313,19471],[-283,117],[-438,-42],[-513,119],[-225,195],[-290,-183]],[[30564,19677],[-152,566],[-131,224],[-132,549]],[[30149,21016],[-231,814],[-355,858]],[[30149,21016],[148,11]],[[30149,21016],[-849,-206],[32,-38]],[[29332,20772],[-517,-73]],[[29576,22643],[-236,-829],[-525,-1115]],[[30297,21027],[792,-50],[311,-166],[476,-52],[124,103]],[[28815,20699],[-45,-218]],[[28815,20699],[-160,-364]],[[28279,19489],[-448,-704],[-434,-451],[-447,-1199]],[[26950,17135],[-48,-407]],[[28655,20335],[-376,-846]],[[28770,20481],[-118,-151],[-373,-841]],[[21724,15996],[-17,534],[-142,1071]],[[21724,15996],[-19,522],[-139,1063]],[[21566,17581],[207,726],[-85,1012],[-175,875],[-430,1374],[-197,316],[-202,924],[336,1085],[166,218],[107,457],[-10,484],[-135,421]],[[21724,15996],[-81,26],[-591,-926],[-525,-344],[-410,-799]],[[21724,15996],[-59,15],[-103,-614],[-7,-1096]],[[22474,14382],[232,-206],[337,-484],[752,-672],[720,-380],[369,169]],[[23774,18861],[-596,38],[-301,-65],[-426,-283],[-229,-32],[-396,-401],[-260,-537]],[[23774,18861],[844,24],[583,266]],[[25201,19151],[950,517],[547,206],[759,211],[413,54],[572,184]],[[28442,20323],[213,12]],[[21555,14301],[-22,-249],[-282,-224],[-424,-548]],[[20827,13280],[-446,-393],[-348,-517],[-61,-273],[-320,-350],[-90,-392],[-214,-285]],[[21555,14301],[256,80],[663,1]],[[19343,11068],[-216,154],[-326,-13],[-550,-555],[-364,-1097],[-176,-212],[27,-316]],[[17738,9029],[-449,-660]],[[17289,8369],[-239,-253],[-336,49],[-111,449]],[[16603,8614],[-494,95],[-274,275]],[[19756,12261],[0,0]],[[23739,35456],[-130,277],[-435,71],[-206,225],[-662,285],[-325,49],[-479,339],[-512,-293]],[[20990,36409],[107,8]],[[21097,36417],[405,286],[479,-339],[325,-49],[439,-219]],[[34050,36115],[302,329],[98,441],[328,512],[844,176],[61,-76]],[[24912,12826],[14,13]],[[24912,12826],[14,13]],[[31147,24892],[179,-534]],[[31326,24358],[75,-204]],[[31401,24154],[-53,-339]],[[31326,24358],[177,31],[427,538],[210,101],[334,554],[491,101],[274,222],[305,605],[32,520]],[[33576,27030],[298,34],[133,369]],[[32811,27190],[-371,-346],[-86,-209],[-300,-11],[-541,203]],[[31513,26827],[-219,-547],[52,-505],[-72,-830],[-127,-53]],[[31147,24892],[-267,-327],[-724,-1039],[-580,-883]],[[32811,27190],[830,178],[48,78]],[[32811,27190],[542,-224],[223,64]],[[32811,27190],[85,199],[-114,396]],[[28054,31437],[-100,-154],[51,-739],[159,-773],[383,-564],[26,-166]],[[28573,29041],[-343,-787],[-20,-343]],[[28573,29041],[163,325],[311,16],[360,997],[126,201]],[[28210,27911],[-132,-810],[-140,-257],[-315,-1012]],[[27623,25832],[-7,-649],[117,-342],[443,91],[149,-481]],[[27472,25827],[114,-29],[69,-864],[238,-122],[289,130],[114,-246],[448,-137]],[[28325,24451],[-129,-344],[28,-313]],[[28224,23794],[62,-963],[422,60],[388,-172],[480,-76]],[[23950,10251],[-98,1158],[-113,421]],[[23739,11830],[620,85],[154,218],[-28,260],[211,125],[188,291]],[[23950,10251],[191,-10],[130,-1007],[-63,-237]],[[26035,36883],[85,-354]],[[26035,36883],[-165,1178],[22,349],[-153,287]],[[25739,38697],[-160,171],[-35,389]],[[26035,36883],[-392,-77]],[[25179,36634],[430,-62]],[[25179,36634],[-404,-374],[-46,-308]],[[24729,35952],[44,-717]],[[24729,35952],[-878,-377],[-112,-119]],[[24729,35952],[227,96]],[[24956,36048],[335,146]],[[25291,36194],[16,5]],[[25307,36199],[359,156]],[[25666,36355],[454,174]],[[24729,35952],[-167,-401],[-314,-229]],[[23739,35456],[-130,278],[-434,71],[-430,291]],[[23739,35456],[-269,-293],[-700,-1274],[-224,-202],[-268,-511],[-219,98],[-356,-197]],[[26120,36529],[704,219],[160,-24]],[[26120,36529],[705,218],[199,-100],[-59,-346]],[[24248,35322],[343,-1612]],[[24248,35322],[-509,134]],[[24591,33710],[266,-868]],[[24591,33710],[119,-275],[631,38],[232,-213]],[[26120,36529],[158,-1090],[497,-1057],[108,-459],[240,-524],[152,-170]],[[27275,33229],[313,-277],[-75,-977]],[[27513,31975],[470,-276],[71,-262]],[[28054,31437],[-1,140],[2358,383],[861,167],[237,202],[116,377]],[[31625,32706],[-310,78],[-134,198],[-605,414],[-7,100]],[[30569,33496],[-219,-362],[-184,-1084],[29,-528],[-149,-564],[-513,-378]],[[28649,34787],[442,-1675],[1478,384]],[[28649,34787],[101,16]],[[28649,34787],[-325,565],[-71,860],[-454,566],[-638,-137],[-196,-340]],[[26984,36724],[-19,-423]],[[26984,36724],[419,144]],[[27403,36868],[213,42]],[[27616,36910],[59,133],[744,7],[250,-56]],[[28669,36994],[155,-32]],[[28824,36962],[1165,-270]],[[29990,36684],[-1,8]],[[29989,36692],[-123,-958],[-267,-715],[-196,-176]],[[29989,36692],[451,174],[214,-184],[356,-66]],[[31010,36616],[94,25],[215,-377]],[[31010,36616],[499,223],[-19,285],[113,407]],[[31319,36264],[0,-5]],[[31319,36264],[31,-339],[322,-471]],[[31672,35454],[44,-661]],[[31716,34793],[154,-717],[312,-725],[460,-334]],[[32642,33017],[5,-95]],[[32642,33017],[5,-95]],[[32642,33017],[-675,-148],[-62,-145],[-280,-18]],[[31625,32706],[13,-120],[715,205]],[[31625,32706],[203,-2012]],[[32641,33097],[-660,-113],[-83,-256],[-316,79]],[[34050,36115],[6,-720],[-480,-1073],[-306,-387],[-141,-402],[-226,-132],[4,-182],[-265,-202]],[[35683,37497],[-208,-346],[18,-550],[-405,-1039],[-752,-1132],[-512,-611],[-919,-419],[-263,-383]],[[31625,32706],[273,22],[83,256],[660,114]],[[34050,36115],[2,11]],[[31513,26827],[-75,1134],[62,1434]],[[24688,11638],[0,0]],[[31500,29395],[328,1061]],[[31828,30456],[0,238]],[[32647,32922],[313,-428],[28,-338]],[[32988,32156],[85,-163],[542,76],[31,-424],[-84,-264],[24,-681]],[[33586,30700],[-38,-401]],[[33548,30299],[46,-690],[-47,-437]],[[33547,29172],[2,0]],[[33547,29172],[44,-624],[-110,-243],[230,-834]],[[33548,30299],[-346,-51],[-346,-437],[20,-451]],[[32876,29360],[272,-503],[124,-425],[40,-606],[377,-48],[22,-307]],[[33689,27446],[318,-13]],[[33689,27446],[22,25]],[[33689,27446],[294,154],[357,52],[515,598],[453,698]],[[28748,34803],[2,0]],[[35302,28886],[-361,-473]],[[28755,41696],[-21,-10]],[[28734,41686],[264,407],[-335,214],[-132,362],[-391,591],[-239,80],[-55,1130],[445,895]],[[29477,41797],[-479,296],[-264,-407]],[[30746,43497],[-195,105],[-455,-325],[-325,-890],[-247,-339],[-47,-251]],[[29477,41797],[231,482]],[[30169,45046],[-27,-544],[-167,-46],[-186,-456],[50,-966],[-131,-755]],[[31212,44845],[-116,-423],[-250,-507],[-100,-418]],[[31435,45610],[-106,-165],[-117,-600]],[[31324,46083],[111,-473]],[[31241,46932],[151,-422],[-68,-427]],[[30704,47153],[266,-90],[104,-199],[167,68]],[[30704,47153],[103,-278],[-514,-195],[-243,-342],[-643,-145]],[[30704,47153],[-517,-707],[-81,-385],[-148,-232],[-197,-54],[-107,-245],[-476,164]],[[31435,45610],[410,62],[125,-150]],[[29407,46193],[49,-631],[192,-30],[105,-323]],[[29178,45694],[-96,40],[-588,-333],[-207,-18]],[[30169,45046],[-416,163]],[[28287,45383],[18,581],[-64,453],[71,95],[30,646],[-39,834],[-154,366],[127,859],[-48,495]],[[28291,45365],[-4,18]],[[26990,46600],[239,-288],[37,-316],[355,-448],[-25,-88]],[[27596,45460],[691,-77]],[[26158,46326],[121,-306],[593,631],[118,-51]],[[36012,43731],[936,68],[630,90]],[[37578,43889],[421,40],[430,756]],[[28287,45383],[-114,-26]],[[28287,45383],[-91,-7]],[[27596,45460],[-123,-122]],[[27506,45411],[90,49]],[[27521,44995],[-15,416]],[[26158,46326],[197,264]],[[26485,46692],[19,146]],[[26355,46590],[130,102]],[[26504,46838],[236,-25]],[[26777,46959],[-37,-146]],[[28228,49712],[-279,21],[-420,408],[-215,353],[-727,941],[-209,775],[-26,355],[-192,702]],[[30934,53137],[14,-684],[122,-1109],[70,-85],[-246,-1161],[67,-202]],[[28228,49712],[87,91],[886,57],[257,-141],[190,85],[521,-96],[326,142],[292,-176],[174,222]],[[30961,49896],[338,109],[925,-51],[188,198]],[[30704,47153],[211,102],[127,345],[490,138]],[[32412,50152],[552,164],[70,190],[439,119],[134,-514]],[[34420,51438],[3,286],[-675,-95],[-3,-111]],[[33745,51518],[3,111],[350,50],[26,-514],[-287,-828],[-240,-33],[10,-193]],[[33187,53788],[34,-553],[303,-169],[132,-458],[89,-1090]],[[33745,51518],[2,112],[351,50],[27,-516],[-288,-828],[-240,-33],[10,-192]],[[34420,51438],[67,-113],[-91,-654],[21,-287],[-810,-273]],[[34420,51438],[82,-131],[420,31],[1770,234],[144,139],[794,79],[-15,241]],[[37615,52031],[-71,341],[-47,1582],[-119,39]],[[37376,53990],[-69,120],[-342,-41]],[[33607,50111],[545,-592],[85,12],[515,-811],[842,-881]],[[31532,47738],[229,126],[395,-101],[207,127]],[[33111,46324],[-50,291],[-299,775],[-215,374],[-184,126]],[[31970,45522],[77,-208],[420,-62],[92,105],[365,-2]],[[32924,45355],[-365,3],[-144,-117]],[[31970,45522],[77,-207],[368,-74]],[[33803,44035],[66,-224],[1821,256],[149,-206]],[[35101,45864],[-172,168],[-283,21],[-828,-155],[-52,471],[-116,-12]],[[35560,44391],[-307,-43],[-152,1516]],[[33111,46324],[-51,-394]],[[32982,45767],[-58,-412]],[[33060,45930],[-78,-163]],[[33068,44722],[-79,-479]],[[32916,44863],[79,-77],[-6,-543]],[[34059,45904],[-256,-7]],[[36012,43731],[-151,177],[-827,640],[-1217,-213],[-1,37]],[[33732,44344],[-120,-39]],[[33612,44305],[-166,-31]],[[33843,42033],[106,-1684],[209,-97],[105,-286]],[[33843,42033],[-30,711]],[[33843,42033],[-30,711]],[[33368,42826],[-15,-424]],[[33352,43437],[16,-611]],[[33138,43768],[26,-206],[199,-146],[286,32]],[[33649,43448],[-297,-11]],[[33649,43448],[164,-704]],[[35727,47472],[225,-290],[1210,263],[1008,78]],[[38170,47523],[174,29]],[[35594,47839],[133,-367]],[[34126,44127],[87,-56]],[[34213,44071],[55,720],[-86,30]],[[34126,44127],[93,-35],[49,698],[-86,31]],[[34182,44821],[87,-29],[-56,-721]],[[34213,44071],[18,-206],[-347,-54],[-52,-319],[-183,-44]],[[33649,43448],[183,44],[-29,543]],[[33649,43448],[183,45],[-29,542]],[[33377,45132],[220,-262]],[[33886,45470],[274,-294],[22,-355]],[[33910,45274],[-24,196]],[[34182,44821],[-99,498]],[[34182,44821],[-22,355],[-250,98]],[[33873,45651],[-70,246]],[[33886,45470],[-83,427]],[[34287,46000],[-228,-96]],[[33274,44136],[-225,-104],[-60,211]],[[33047,44043],[-61,193]],[[33649,43448],[-5,560],[-112,156],[-485,-121]],[[33649,43448],[-4,560],[-85,16]],[[33588,44036],[-28,-12]],[[35841,43872],[241,10],[416,-634],[222,25],[21,-454],[438,-793],[-18,-953]],[[35560,44391],[-233,-34],[-118,161],[-108,1346]],[[35839,43861],[-133,548],[-452,-60],[-153,1515]],[[35101,45864],[-172,167],[-642,-31]],[[35101,45864],[407,128],[-29,462],[160,23],[46,404]],[[35685,46881],[-112,174]],[[37155,41063],[-43,976],[454,45],[31,425],[-53,1366],[34,14]],[[37155,41063],[12,-764],[107,-1]],[[27459,43847],[130,-48],[212,-440],[80,9]],[[27238,43460],[180,326]],[[27220,43457],[23,-19]],[[27220,43457],[-261,61]],[[27238,43460],[5,-22]],[[27238,43460],[-18,-3]],[[35839,43861],[-134,547]],[[35839,43861],[-134,547]],[[35705,44408],[-145,-17]],[[35839,43861],[173,-130]],[[37622,52031],[-7,0]],[[33886,45470],[5,-5]],[[33356,55740],[-344,-62]],[[32991,44240],[-2,3]],[[32986,44236],[3,7]],[[33394,44459],[38,-370],[371,-54]],[[33803,44035],[15,343],[364,443]],[[33816,44372],[138,55],[-153,470],[-317,-40]],[[33803,44035],[13,337]],[[33938,44676],[244,145]],[[33761,44894],[177,-218]],[[33597,44870],[164,24]],[[34213,44071],[0,-5]],[[34213,44066],[1,-2]],[[34213,44066],[18,-198],[244,0],[92,-931],[138,15],[190,-324],[47,-1040],[319,-365]],[[33816,44372],[-84,-28]],[[33484,44857],[-107,275]],[[33007,43984],[40,59]],[[33007,43984],[40,59]],[[33394,44459],[-9,87]],[[33385,44546],[-8,219]],[[33377,44765],[0,367]],[[32924,45355],[-2,-253],[163,60]],[[32924,45355],[-8,-492]],[[32924,45355],[-8,-492]],[[32912,44860],[4,3]],[[32913,44866],[3,-3]],[[32916,44863],[152,-141]],[[32924,45355],[95,19]],[[33019,45374],[245,21]],[[33377,45132],[-292,30]],[[33377,45132],[-73,187]],[[33304,45319],[-40,76]],[[33651,45357],[87,-13]],[[33651,45357],[235,113]],[[33798,45419],[-60,-75]],[[33798,45419],[88,51]],[[34083,45319],[-197,151]],[[33264,45395],[5,10]],[[33264,45395],[44,123]],[[33560,44024],[-286,112]],[[33886,45470],[-13,181]],[[33803,45897],[17,90]],[[33820,45987],[-46,325]],[[33774,46312],[-124,45]],[[33650,46357],[-119,-65]],[[33583,46458],[-164,-75]],[[33531,46292],[-112,91]],[[33650,46357],[-67,101]],[[33803,45897],[-142,5]],[[33803,45897],[-96,-162]],[[33803,45897],[-96,-162]],[[33707,45735],[-101,-74]],[[33707,45735],[-193,-85]],[[33606,45661],[-92,-11]],[[33661,45902],[-7,60]],[[33654,45962],[-46,47]],[[33419,46383],[13,-220]],[[33419,46383],[13,-220]],[[33432,46163],[-20,-207]],[[33432,46163],[-20,-207]],[[33306,46243],[-195,81]],[[33419,46383],[-226,-42],[-14,-209]],[[33419,46383],[-113,-140]],[[33179,46132],[99,-463]],[[33278,45669],[30,-151]],[[32659,38971],[-205,-322],[-792,-2013],[-442,-698],[-384,-66],[-329,-501],[80,-315]],[[32782,27785],[136,116],[22,585],[-64,874]],[[32876,29360],[-21,452],[138,280],[-53,633],[-98,281],[-82,1053],[25,608],[-138,255]],[[33692,27468],[19,3]],[[33711,27471],[-22,-25]],[[34007,27433],[1213,192],[405,-218],[43,-258],[263,-274],[464,-1]],[[35308,28948],[376,907],[184,847],[243,24],[358,458]],[[36787,31265],[-318,-81]],[[36787,31265],[250,616],[-88,1748],[-142,1067],[-415,928],[-415,652],[-147,399],[-80,716],[-67,106]],[[36395,26874],[120,424],[8,434]],[[37339,28635],[-77,-684],[43,-659],[-270,-317],[-640,-101]],[[36787,31265],[298,-294],[239,-1068],[54,-890]],[[37378,29013],[-39,-378]],[[36523,27732],[-83,308],[-475,333],[-657,575]],[[27531,20109],[1110,265],[14,-39]],[[35683,37497],[115,-301],[34,-511],[167,-441],[671,-1057],[271,-1010],[13,-486],[258,-648]],[[37212,33043],[120,-1454],[92,-229],[35,-646],[141,-402],[324,-449],[140,-555],[21,-396]],[[38085,28912],[105,-159],[621,-236],[359,68],[158,-132],[760,-242]],[[38085,28912],[99,-1764],[276,-199],[74,-1397],[118,-253]],[[38622,23247],[-16,300],[145,388],[-45,1015],[-54,349]],[[38622,23247],[79,-1427],[77,-525]],[[38778,21295],[-630,-242],[-154,-188],[-399,-50]],[[37595,20815],[-363,-40],[-190,-213]],[[37042,20562],[-371,-666],[-240,-26]],[[36431,19870],[-141,-220],[-219,-71]],[[27546,9676],[-1271,1452],[-183,264],[-756,802],[-410,645]],[[27546,9676],[-427,694],[-249,526]],[[20117,13953],[443,91],[200,438],[454,525],[506,787],[-14,725],[-140,1062]],[[30907,33856],[-162,258]],[[30907,33856],[-114,818],[-210,376]],[[30587,35056],[207,-382],[113,-818]],[[33962,40052],[-419,-205],[-221,-734],[-663,-142]],[[34263,39966],[18,-245],[1016,-1413],[378,-676],[8,-135]],[[33711,27471],[-14,-29]],[[33698,27442],[13,29]],[[25609,36572],[57,-217]],[[16732,10351],[214,-355],[173,27],[208,-489],[425,-268],[-14,-237]],[[27896,30453],[150,26],[379,-533],[166,22]],[[28633,30094],[346,577],[150,131],[268,512],[532,723]],[[27930,31467],[-433,-481],[-36,-472]],[[28633,30094],[-42,-126]],[[29929,32037],[302,410],[118,687],[334,614],[224,108]],[[30905,33859],[2,-3]],[[30587,35056],[-78,213]],[[30456,35331],[131,-275]],[[30587,35056],[-138,240],[-460,1396]],[[31556,36788],[57,-225]],[[28054,31437],[-124,30]],[[27930,31467],[1,-4]],[[31867,37504],[-104,154],[-160,-127]],[[31603,37531],[-34,177]],[[34872,38893],[-647,369]],[[34872,38893],[101,-435],[331,-275]],[[35304,38183],[0,1]],[[35304,38183],[373,-559],[6,-127]],[[34225,39262],[-65,-85],[41,-1634]],[[34154,36176],[-119,-41]],[[34154,36176],[-119,-41]],[[27896,30453],[-275,-60],[-160,121]],[[30226,31600],[371,319]],[[30597,31919],[0,4]],[[31391,32610],[-405,-603],[-389,-88]],[[31828,30456],[76,-108]],[[31904,30347],[75,-470]],[[24211,35491],[37,-169]],[[24248,35322],[-10,116]],[[27392,37027],[11,-159]],[[36266,12679],[1048,208]],[[22188,27381],[136,-243],[167,33],[138,-352]],[[21148,25473],[-204,158],[-297,812],[-101,639],[-176,387]],[[20139,30441],[-129,-44],[227,-2059],[133,-869]],[[20139,30441],[-116,58]],[[20139,30441],[-116,58]],[[20139,30441],[180,260]],[[20134,30431],[404,570],[-11,1207],[267,453],[66,448]],[[20139,30441],[596,-308]],[[20735,30133],[-596,308]],[[21673,28732],[131,775],[-56,666],[119,984]],[[21867,31157],[-4,-2]],[[21867,31157],[-4,-2]],[[21867,31157],[62,728]],[[21929,31885],[208,-435],[210,-148]],[[22347,31302],[-203,208]],[[21929,31885],[-56,633],[25,435]],[[21898,32953],[0,-1]],[[21898,32952],[-25,-434],[56,-633]],[[20023,30499],[-525,58],[-787,-266]],[[20370,27469],[-6,-5]],[[20370,27469],[-618,-667],[20,-502]],[[20364,27464],[4,13]],[[20861,27368],[74,-792],[-44,-205]],[[20891,26371],[-458,659]],[[20354,27450],[-577,-559]],[[18816,23965],[-496,-28],[-265,-167]],[[21703,33077],[-529,-1113],[-278,-492],[-293,-299],[-284,-472]],[[21703,33077],[195,-125]],[[21898,32952],[-195,125]],[[21703,33077],[195,-124]],[[21703,33077],[-168,262],[-210,827],[-151,324]],[[21703,33077],[-168,261],[-210,828],[-151,324]],[[21703,33077],[-169,261],[-209,828],[-151,324]],[[20860,33109],[158,1014],[156,367]],[[18711,30291],[-635,-199],[-385,177]],[[17458,29383],[-830,-283]],[[15446,27475],[-101,-158]],[[16628,29100],[-133,-298],[-257,-74],[-122,-376],[-431,-691],[-866,-1918]],[[17458,29383],[-325,-851],[-703,-343],[-720,-680],[-256,-556],[-228,-664],[-420,-685]],[[17458,29383],[-703,-495],[-174,-343],[-557,-404],[-456,-744]],[[15568,27397],[-762,-1793]],[[15345,27317],[12,-72],[-882,-1547]],[[14475,25698],[418,107],[-87,-201]],[[14096,25841],[-173,-29],[-94,289]],[[14806,25604],[102,-238],[-129,-895],[3,-609],[-134,-272],[110,-931],[-175,-506],[-219,-850]],[[14364,21303],[-97,-314],[-45,-737]],[[14806,25604],[101,-238],[-129,-895],[3,-609],[-133,-272],[110,-931],[-175,-506],[-316,-1164],[-45,-737]],[[14806,25604],[81,-170],[-328,-1376],[-137,-1061],[-129,-1324],[-71,-1421]],[[14806,25604],[82,-170],[-328,-1376],[-138,-1061],[-129,-1324],[-71,-1421]],[[14806,25604],[13,139]],[[14741,25474],[65,130]],[[14806,25604],[-322,-468]],[[14475,25698],[-361,-635]],[[14114,25063],[-151,-237]],[[14114,25063],[-5,169]],[[14102,24847],[-139,-21]],[[14102,24847],[382,289]],[[13963,24826],[-177,-850],[66,-100]],[[13852,23876],[-67,100],[-122,-759]],[[14357,23067],[-33,-712],[-144,-471],[69,-642],[-72,-583],[45,-407]],[[15150,13048],[-87,981]],[[14594,11065],[-93,713],[165,693]],[[14997,14454],[159,1461],[-147,284],[-28,517],[-252,556],[9,789],[-152,644],[-152,308],[39,481],[-110,224]],[[14363,19718],[6,64]],[[14854,14106],[-314,-1275],[126,-360]],[[14854,14106],[-175,138]],[[14997,14454],[-254,-51],[-64,-159]],[[15835,8984],[-349,216],[-372,-121],[-109,99]],[[18711,30291],[756,243],[556,-35]],[[15446,27475],[122,-78]],[[15150,13048],[-42,-777],[221,-1645]],[[15329,10626],[2,-2]],[[15329,10624],[0,2]],[[15329,10624],[2,0]],[[15331,10624],[-184,-13],[-13,289],[-498,-155],[-42,320]],[[15331,10624],[573,-30],[355,-295],[473,52]],[[15329,10624],[73,-519],[-88,-283],[28,-589]],[[15835,8984],[-493,249]],[[20058,46145],[-143,519],[-388,870],[13,385],[-304,567],[-268,332],[-575,22],[-288,445],[-163,120]],[[20058,46145],[-211,180],[-198,407],[-276,341],[-217,-23],[-678,-541],[-100,0],[-95,593],[-324,-117],[-126,523],[-381,619],[-120,855],[-529,586],[-96,363],[-161,86],[-196,806]],[[7339,5503],[39,-150]],[[7339,5503],[39,-150]],[[7866,5401],[-221,690],[-108,7]],[[7155,0],[-30,158],[247,965]],[[7155,0],[-31,158],[248,965]],[[37408,17917],[0,-2]],[[33515,19092],[3,-15]],[[15005,9178],[-10,-280]],[[15005,9178],[-10,-280]],[[15005,9178],[109,-99],[228,154]],[[15028,9174],[-23,4]],[[20058,46145],[131,748],[8,501],[-226,702],[-149,632],[-16,631],[-140,305],[-101,554],[-149,201],[232,671],[102,725],[-229,664],[-3,334],[338,259],[118,472],[261,306]],[[20058,46145],[54,-309],[-133,-472],[9,-709],[-484,96]],[[19504,44751],[-680,-180]],[[7339,5503],[-225,1283]],[[7339,5503],[-225,1283]],[[7470,6558],[-130,389],[-226,-161]],[[7537,6098],[-223,-91]],[[7537,6098],[-223,-91]],[[32647,32922],[-294,-131]],[[27282,33202],[-7,27]],[[11136,14764],[194,-41],[327,-351]],[[10927,14786],[-122,-190]],[[10927,14786],[209,-22]],[[9012,14866],[155,69]],[[9580,14744],[232,-18],[41,413]],[[33601,49828],[-9,12]],[[33613,50125],[-6,-14]],[[33456,45836],[-13,-292]],[[33477,45765],[37,-115]],[[36012,43731],[3,2]],[[36012,43731],[3,2]],[[36012,43731],[-14,-8]],[[36012,43731],[-14,-8]],[[35796,40958],[-64,283],[-471,-18]],[[35839,43861],[-11,-4]],[[35839,43861],[2,11]],[[33949,40325],[30,-3]],[[33456,45836],[21,-71]],[[33442,45853],[14,-17]],[[33442,45853],[14,-17]],[[33514,45650],[-71,-106]],[[33443,45544],[-46,-47]],[[33397,45497],[-59,-91]],[[33608,46009],[-103,-9]],[[28172,45361],[1,-4]],[[14222,20252],[-551,-84],[-871,-505]],[[12800,19663],[-79,-873]],[[12721,18790],[-161,-442],[-50,-616]],[[14222,20252],[147,-470]],[[14222,20252],[147,-470]],[[12800,19663],[-125,516]],[[13892,17736],[-261,-204],[-109,-518],[-305,-555],[-323,-460],[-247,-143],[-162,-350],[-57,-858]],[[33805,48651],[-285,-61]],[[33601,49828],[-64,-644]],[[33601,49828],[209,42],[54,-648],[-158,30]],[[33601,49828],[209,43],[54,-649],[-158,30],[5,-302]],[[33711,48950],[94,-299]],[[33688,48779],[-168,-189]],[[33601,49828],[-64,-644]],[[37378,53993],[-2,0]],[[37378,53993],[-2,-3]],[[33745,51518],[-62,-227]],[[33711,48950],[-23,-171]],[[33242,42160],[-10,-119]],[[33242,42160],[52,381]],[[33649,43448],[32,-915]],[[33949,40325],[13,-273]],[[33949,40325],[-27,46]],[[33949,40325],[-4,387]],[[33843,42033],[102,-1321]],[[33417,42139],[266,2],[-34,-890],[-127,-270]],[[33843,42033],[-174,-9],[-20,-773],[-127,-270]],[[33314,41981],[-78,-341],[78,-614],[208,-45]],[[33239,41720],[75,-694],[208,-45]],[[33613,42137],[230,-104]],[[33681,42533],[162,-500]],[[33417,42139],[196,-2]],[[33417,42139],[-103,-158]],[[33417,42139],[-16,156]],[[33401,42295],[-48,107]],[[33412,45956],[30,-103]],[[33412,45956],[30,-103]],[[33338,45406],[-27,0]],[[33311,45406],[-42,-1]],[[33505,46000],[-93,-44]],[[33232,42041],[82,-60]],[[30642,47470],[62,-317]],[[29753,45209],[-3,-2]],[[6630,7727],[-192,-109]],[[6630,7727],[-192,-109]],[[6630,7727],[51,-277]],[[6630,7727],[51,-277]],[[6452,7293],[-57,-108]],[[9570,2865],[-492,312],[-372,531],[-138,490],[-510,-182],[-326,301],[-192,731],[-162,305]],[[9570,2865],[-492,312],[-372,531],[-138,490],[-510,-182],[-326,301],[-192,731],[-162,305]],[[9570,2865],[-492,313],[-371,532],[-139,489],[-510,-182],[-325,301],[-192,731],[-163,304]],[[8501,4172],[-443,-154],[-325,300],[-190,831]],[[9570,2865],[-184,85]],[[9386,2950],[-308,229],[-371,531],[-42,358],[-164,104]],[[7543,5149],[-165,204]],[[7560,4963],[4,145]],[[7564,5108],[-21,41]],[[7560,4963],[151,-909],[-68,-370],[124,-774]],[[7727,4303],[5,2]],[[7732,4305],[-41,-836],[80,-554]],[[7771,2915],[-4,-5]],[[7544,4956],[167,-902],[-68,-370],[124,-774]],[[7560,4963],[-16,-7]],[[6880,6358],[71,174]],[[6951,6532],[163,254]],[[6951,6532],[58,59]],[[7114,6786],[-144,-434]],[[6970,6352],[-21,-38]],[[7009,6591],[-60,-277]],[[7105,6789],[-156,-475]],[[7114,6786],[-160,-553]],[[6954,6233],[-5,81]],[[7105,6789],[9,-3]],[[7105,6789],[9,-3]],[[7105,6789],[-127,204]],[[7141,7169],[-36,-380]],[[7141,7169],[-4,121]],[[6978,6993],[-36,251]],[[7537,6098],[-67,460]],[[6880,6358],[69,-44]],[[6949,6314],[74,-154]],[[10352,10575],[-245,-31],[-285,-509]],[[10352,10575],[-91,45],[-459,-236],[-212,100],[-270,574]],[[10545,11225],[53,-243],[274,-534]],[[10453,11650],[92,-425]],[[11001,10192],[160,-203]],[[10872,10448],[129,-256]],[[9320,11058],[-55,344]],[[10453,11650],[-192,231],[-617,-74],[-379,-405]],[[10871,12100],[123,-62]],[[9690,2860],[-120,5]],[[9690,2860],[-120,5]],[[10352,10575],[30,128],[638,241],[396,542],[-29,188],[199,361],[179,57],[-109,678],[140,686],[133,317],[229,201],[270,674]],[[12428,14648],[41,-178],[520,-68],[284,-387],[423,-12]],[[12428,14648],[9,-59],[-611,-271],[-169,54]],[[13696,14003],[59,-48],[833,171],[91,118]],[[6923,7634],[127,111],[474,-105],[144,210]],[[7668,7850],[326,415],[385,-162],[381,566],[131,-15]],[[8891,8654],[457,473],[267,145],[297,-255],[256,-598],[15,-537]],[[4169,15741],[55,22],[338,-565]],[[4562,15198],[-4,-6]],[[4562,15198],[529,-694]],[[8395,14386],[150,-51],[213,281],[439,51],[1086,-321]],[[17942,49405],[-157,279],[-325,-93],[-58,538]],[[10336,8670],[-153,-788]],[[21074,38117],[-191,-892],[107,-816]],[[21074,38117],[-154,-658]],[[20920,37459],[-25,-94]],[[7519,7397],[110,-471]],[[13613,13092],[50,-82]],[[13613,13092],[-66,236]],[[23873,7543],[163,-47]],[[23873,7543],[-68,-22]],[[23805,7521],[179,-1701],[-270,-185],[-83,-267],[112,-1101],[-71,-26],[66,-599],[-118,-94]],[[23625,8697],[-72,-322],[110,-758],[142,-96]],[[28216,49619],[12,93]],[[16461,52062],[-56,43]],[[16363,52031],[-100,-105]],[[16310,51951],[-77,156]],[[16257,51983],[-24,124]],[[16258,51969],[0,0]],[[16258,51969],[-1,14]],[[16257,51983],[0,0]],[[26902,16728],[-36,-230],[-278,-426],[-243,-688],[-93,-428],[-379,-643],[-324,-450],[-219,-528],[-218,-321]],[[25112,13014],[-228,-205]],[[5532,8954],[17,4]],[[5546,8963],[25,119]],[[5549,8964],[0,-6]],[[5493,6445],[0,2]],[[5493,6447],[174,215],[471,4]],[[6261,6722],[0,-1]],[[6358,6795],[-97,-73]],[[6358,6795],[1,-2]],[[21059,37258],[-1,-52]],[[21059,37258],[17,119]],[[21039,37489],[54,-210]],[[21076,37377],[-34,110]],[[21035,37630],[-53,-134]],[[21035,37630],[74,243]],[[21122,37878],[-76,-146]],[[21109,37873],[13,3]],[[21159,36855],[-28,-20]],[[21159,36855],[-2,-222]],[[21058,35968],[75,-171]],[[20990,36409],[68,-441]],[[21092,38143],[0,1]],[[21063,38252],[29,-108]],[[21041,38335],[53,-207]],[[21589,34526],[48,8]],[[21589,34526],[0,-3]],[[21589,34523],[45,354]],[[21589,34523],[-415,-33]],[[21174,34490],[-208,-268]],[[20947,34241],[123,4]],[[20947,34241],[19,-19]],[[21081,34913],[93,-423]],[[21072,35244],[102,-754]],[[21164,34558],[-87,442],[56,797]],[[21057,34929],[-154,-89]],[[21081,34913],[-133,-61]],[[21051,34471],[-1,1]],[[21014,38410],[48,-154]],[[21093,37279],[-31,-20]],[[21103,37047],[37,-58]],[[21140,36989],[10,-65]],[[9035,14333],[9,-52]],[[9044,14281],[-334,-157]],[[14264,26682],[30,16]],[[6808,8574],[-28,-254]],[[4731,7708],[-231,-60],[-312,-338],[-68,61]],[[4120,7371],[68,-60],[339,343]],[[4120,7371],[68,-61],[312,337],[231,61]],[[21511,34910],[-14,41]],[[21505,34878],[1,-26]],[[21506,34879],[0,-27]],[[21638,34536],[39,-269]],[[11972,5095],[0,0]],[[18062,48088],[0,1]],[[18062,48088],[113,51],[205,-270],[196,95]],[[6065,8308],[-300,567],[-372,122]],[[21197,37275],[203,81]],[[21400,37356],[0,0]],[[21400,37356],[144,321]],[[21293,37306],[-96,-31]],[[16638,51929],[-257,-9]],[[16623,51941],[25,-17]],[[16623,51941],[2,2]],[[16530,52009],[93,-68]],[[16530,52009],[-16,-3]],[[34058,36121],[-6,5]],[[34058,36121],[-6,5]],[[34058,36121],[-6,5]],[[33583,27043],[-7,-13]],[[33576,27030],[7,13]],[[24696,35188],[-2,12]],[[33689,27456],[0,-10]],[[32645,33015],[-3,2]],[[23744,35459],[-5,-3]],[[26973,36290],[-8,11]],[[32588,32279],[-29,-228]],[[32592,32260],[-4,19]],[[31906,37518],[-39,-14]],[[31965,37489],[-98,15]],[[31347,36362],[-28,-98]],[[31762,36032],[-5,-18]],[[31559,36806],[-3,-18]],[[33692,27468],[0,0]],[[33698,27444],[0,-2]],[[33697,27444],[0,-2]],[[31775,37324],[92,180]],[[31341,36591],[-22,-327]],[[12545,7124],[-40,2]],[[12505,7126],[40,-2]],[[12505,7126],[40,-2]],[[12505,7126],[40,-2]],[[12513,7113],[-36,-43]],[[12513,7113],[-36,-43]],[[12513,7113],[-36,-43]],[[12513,7113],[-36,-43]],[[12513,7113],[-36,-43]],[[12513,7113],[-36,-43]],[[12505,7126],[40,-2]],[[11674,14610],[33,-111]],[[6577,10601],[0,0]],[[8286,14357],[-10,-84]],[[8529,14104],[-76,181]],[[8179,14340],[18,-31]],[[8236,13986],[-1,-5]],[[6156,12057],[0,-8]],[[6156,12057],[0,-8]],[[6156,12057],[0,-8]],[[6061,12018],[-2,-1]],[[6061,12018],[-2,-1]],[[5377,9419],[-3,-4]],[[5377,9419],[-3,-4]],[[5377,9419],[-3,-4]],[[13591,13870],[-2,-4]],[[8715,14302],[28,19]],[[9155,14137],[8,-113]],[[9188,14024],[-25,0]],[[9210,13917],[-47,107]],[[4936,11172],[-1,7]],[[4936,11172],[-1,7]],[[13609,13187],[4,-95]],[[10022,9816],[-32,9]],[[9390,2947],[-4,3]],[[9390,2947],[-4,3]],[[15702,4240],[-19,15]],[[15683,4255],[19,-15]],[[15702,4240],[-19,15]],[[15702,4240],[-19,15]],[[15702,4240],[-19,15]],[[15702,4240],[-19,15]],[[6099,10115],[11,-5]],[[6099,10115],[11,-5]],[[5818,10105],[0,-8]],[[5818,10105],[0,-8]],[[11503,6563],[-22,27]],[[11481,6590],[22,-27]],[[11481,6590],[22,-27]],[[11481,6590],[22,-27]],[[11503,6563],[-22,27]],[[11481,6590],[22,-27]],[[11095,12510],[-1,-2]],[[4922,11208],[3,-6]],[[4708,7695],[-1,3]],[[9187,14471],[-9,-26]],[[9040,14303],[-4,18]],[[33746,51528],[-1,-10]],[[33746,51528],[-1,-10]],[[33746,51528],[-1,-10]],[[21975,45335],[2,-15]],[[21975,45335],[2,-15]],[[21975,45335],[2,-15]],[[21975,45335],[2,-15]],[[28733,41721],[1,-35]],[[28733,41721],[1,-35]],[[28733,41721],[1,-35]],[[33649,43443],[0,5]],[[6310,13816],[-29,-30]],[[6310,13816],[-29,-30]],[[6310,13816],[-29,-30]],[[6310,13816],[-29,-30]],[[21963,44509],[-12,-20]],[[21963,44509],[-12,-20]],[[21963,44509],[-12,-20]],[[10837,14570],[-32,26]],[[10837,14570],[-32,26]],[[10837,14570],[-32,26]],[[10837,14570],[-32,26]],[[10805,14596],[32,-26]],[[10837,14570],[-32,26]],[[13296,12919],[-43,-11]],[[33514,40983],[8,-2]],[[33514,40983],[8,-2]],[[10729,15092],[2,0]],[[34127,44123],[-1,4]],[[34127,44123],[-1,4]],[[34127,44123],[-1,4]],[[10641,15014],[-3,1]],[[14312,13001],[15,31]],[[4652,10903],[2,-1]],[[4652,10903],[2,-1]],[[4652,10903],[2,-1]],[[4652,10903],[2,-1]],[[20643,42390],[-4,-1]],[[20643,42390],[-4,-1]],[[20643,42390],[-4,-1]],[[35841,43848],[-2,13]],[[35841,43848],[-2,13]],[[33592,49844],[0,-4]],[[33592,49844],[0,-4]],[[33592,49844],[0,-4]],[[4245,27033],[-3,-1]],[[4245,27035],[-3,-3]],[[25512,42542],[-6,0]],[[25512,42542],[-6,0]],[[4659,10884],[-2,2]],[[8514,14750],[-15,5]],[[29480,41774],[-3,23]],[[29477,41797],[3,-23]],[[29480,41774],[0,24]],[[33892,45463],[-1,2]],[[33588,44038],[0,-2]],[[33588,44038],[0,-2]],[[13853,23881],[-1,-5]],[[6573,8090],[1,-2]],[[35343,41113],[-82,110]],[[35828,43856],[0,1]],[[9533,15566],[-77,-154]],[[10167,14645],[-1,3]],[[10165,14644],[1,4]],[[15345,27314],[0,3]],[[17287,8371],[2,-2]],[[9445,14844],[-24,-36]],[[35649,47026],[-76,29]],[[35798,40960],[-2,-2]],[[29553,22692],[10,-4]],[[6747,18243],[-13,-19]],[[6747,18243],[-13,-19]],[[6747,18243],[-13,-19]],[[33613,50128],[0,-3]],[[8585,15110],[-109,-107]],[[8506,14977],[-30,26]],[[8513,15088],[-37,-85]],[[8475,15062],[1,-59]],[[18219,46686],[-34,64]],[[18171,46800],[14,-50]],[[9150,14883],[19,50]],[[9158,14935],[11,-2]],[[36920,41112],[13,-15]],[[14374,19782],[-5,0]],[[14374,19782],[-5,0]],[[23964,7556],[-91,-13]],[[22491,43252],[4,0]],[[32903,12712],[-2,2]],[[36506,40872],[2,3]],[[28228,49624],[-12,-5]],[[15445,27477],[1,-2]],[[15744,9024],[2,3]],[[36963,54065],[2,4]],[[37251,54006],[125,-13]],[[35598,47840],[-4,-1]],[[35598,47840],[-4,-1]],[[33933,44686],[0,-3]],[[33933,44686],[0,-3]],[[21567,17574],[-1,7]],[[26987,17141],[-37,-6]],[[38342,47556],[2,-4]],[[38342,47556],[2,-4]],[[4239,27036],[3,-4]],[[32911,44859],[1,1]],[[32910,44866],[3,0]],[[28195,45376],[1,0]],[[8474,15267],[-1,5]],[[14692,11140],[20,2]],[[9354,14763],[67,45]],[[9235,14892],[-66,41]],[[12817,18806],[-96,-16]],[[9303,9099],[-24,-17]],[[5187,17057],[-2,-10]],[[5185,17047],[2,10]],[[5153,16924],[34,133]],[[32289,32257],[-6,4]],[[11986,15162],[3,-13]],[[3744,27136],[-2,0]],[[9000,14878],[12,-12]],[[37161,41073],[25,81]],[[38159,47515],[11,8]],[[25194,12852],[-5,2]],[[5560,8963],[-14,0]],[[7636,14510],[6,47]],[[7636,14510],[6,47]],[[7636,14510],[6,47]],[[7636,14510],[6,47]],[[5549,8958],[11,5]],[[5532,8954],[28,9]],[[19255,43258],[-5,30]],[[19255,43258],[-5,30]],[[7372,2931],[-4,-5]],[[13853,23881],[-1,-5]],[[6573,8090],[1,-2]],[[15835,8984],[6,1]],[[15835,8984],[6,1]],[[35828,43856],[0,1]],[[33601,49828],[-8,-6]],[[33593,49822],[8,6]],[[33613,50128],[0,-3]],[[33613,50128],[0,-3]],[[12513,7113],[32,11]],[[12513,7113],[32,11]],[[12513,7113],[32,11]],[[12513,7113],[32,11]],[[12513,7113],[32,11]],[[12513,7113],[32,11]],[[26965,36301],[8,-11]],[[26965,36301],[8,-11]],[[26973,36290],[-8,11]],[[33649,43443],[0,5]],[[33649,43443],[0,5]],[[32645,33015],[-3,2]],[[32645,33015],[-3,2]],[[32645,33015],[-3,2]],[[32645,33015],[-3,2]],[[10174,7870],[9,12]],[[10174,7870],[9,12]],[[10174,7870],[9,12]],[[10174,7870],[9,12]],[[10174,7870],[9,12]],[[11117,6598],[362,-27]],[[23744,35459],[-5,-3]],[[23744,35459],[-5,-3]],[[10729,15092],[2,0]],[[10729,15092],[2,0]],[[4708,7695],[-1,3]],[[4708,7695],[-1,3]],[[10641,15014],[-3,1]],[[10641,15014],[-3,1]],[[10641,15014],[-3,1]],[[14222,20252],[-5,14]],[[17746,9027],[-8,2]],[[17746,9027],[-8,2]],[[17746,9027],[-8,2]],[[18639,7543],[6,67]],[[18645,7610],[-6,-67]],[[4658,10880],[-1,6]],[[20694,8473],[-9,-6]],[[20685,8467],[9,6]],[[33892,45463],[-1,2]],[[33892,45463],[-1,2]],[[13892,17736],[256,93],[-10,220],[223,531],[401,248]],[[14222,20252],[169,-305],[82,-452],[-39,-482],[75,-221],[253,36]],[[31970,45522],[-1,-6]],[[17287,8371],[2,-2]],[[29553,22692],[10,-4]],[[32910,44866],[3,0]],[[4255,10790],[7,-2]],[[4262,10788],[-7,2]],[[15746,28107],[102,211]],[[15763,27950],[-23,-27]],[[15833,28099],[38,54]],[[15836,28006],[35,147]],[[15700,28030],[40,-107]],[[15778,28044],[-38,-121]],[[20309,30772],[10,-71]],[[20335,30635],[-16,66]],[[34124,40035],[139,-69]],[[16263,51926],[-5,43]],[[20885,37093],[-1,0]],[[20924,36872],[-35,306]],[[20895,37365],[40,120]],[[20895,37365],[36,119]],[[3108,13255],[37,-172]],[[29761,20048],[-22,-138]],[[19348,11070],[-5,-2]],[[4657,14168],[-269,24]],[[28291,45365],[-119,-4]],[[3145,13083],[4,-16]],[[16434,52172],[2,-18]],[[16332,52353],[102,-181]],[[16386,52426],[-54,-73]],[[16332,52353],[-3,34]],[[16332,52353],[-3,34]],[[16334,51676],[2,-15]],[[17397,50007],[5,122]],[[19662,51057],[94,734],[-343,893]],[[19413,52684],[0,1]],[[18378,51092],[142,35]],[[18520,51127],[17,-11]],[[18378,51092],[159,24]],[[16337,52112],[-1,5]],[[21060,36654],[1,98]],[[21034,36685],[4,-66]],[[21038,36619],[-9,-34]],[[21038,36619],[15,5]],[[20985,37498],[-3,-2]],[[21725,39967],[-68,-32]],[[7462,1729],[24,50]],[[7483,1664],[50,115]],[[10352,10575],[-50,717]],[[10302,11292],[-1,0]],[[10352,10575],[-51,-13]],[[10352,10575],[-51,-13]],[[10301,10562],[51,13]],[[10352,10575],[103,-1096]],[[10455,9479],[135,60]],[[10455,9479],[38,-270],[-110,-295]],[[10453,11650],[-188,-178]],[[10265,11472],[188,178]],[[10453,11650],[-174,-158]],[[10302,11292],[-23,200]],[[10279,11492],[-14,-20]],[[10453,11650],[292,282]],[[11001,10192],[-5,30]],[[10453,11650],[219,61]],[[10672,11711],[92,-39]],[[10745,11932],[126,168]],[[10994,12038],[-102,-491]],[[10745,11932],[25,-261]],[[10764,11672],[13,-4]],[[10777,11668],[115,-121]],[[11657,14372],[47,123]],[[11704,14495],[3,4]],[[11703,14497],[286,652]],[[11704,14495],[-1,2]],[[9579,14747],[1,-3]],[[8715,14302],[114,-138],[207,157]],[[9036,14321],[142,124]],[[8715,14302],[-7,-5]],[[8715,14302],[-44,-18]],[[8671,14284],[-218,1]],[[9079,13660],[84,364]],[[10183,7882],[3,1]],[[10186,7883],[100,59],[160,-305],[725,-666],[-54,-373]],[[10186,7883],[101,61],[159,-306],[726,-667],[-55,-373]],[[10336,8670],[4,-8]],[[10383,8914],[-47,-244]],[[10704,9109],[-321,-195]],[[11373,9458],[-140,-146],[-466,-179]],[[10767,9133],[-63,-24]],[[10767,9133],[-15,118]],[[11613,9830],[103,253]],[[11716,10083],[-9,-3]],[[11716,10083],[-2,12]],[[11714,10095],[-6,-2]],[[11714,10095],[-4,19]],[[11710,10114],[-1,14]],[[11709,10128],[1,2]],[[11709,10128],[-168,145]],[[11541,10273],[-171,-196]],[[11370,10077],[34,-92]],[[11370,10077],[-209,-88]],[[8395,14386],[-123,-170]],[[8272,14216],[4,57]],[[8197,14309],[256,-24]],[[8272,14216],[-37,-235]],[[15683,4255],[41,-84]],[[11688,14686],[19,-187]],[[10054,10151],[-13,-9]],[[14222,20252],[-5,14]],[[14222,20252],[-5,14]],[[14222,20252],[-5,14]],[[14222,20252],[-5,14]],[[11613,9830],[-9,-191],[-231,-181]],[[11156,9987],[-3,1]],[[11161,9989],[-5,-2]],[[21059,36841],[-3,-1]],[[20556,38796],[-35,-36]],[[20557,38791],[-36,-31]],[[4708,13924],[3,0]],[[32447,41306],[-11,-225]],[[4708,13924],[2,-2]],[[3088,13072],[0,2]],[[3088,13072],[0,2]],[[3396,18924],[29,7]],[[3088,13074],[57,9]],[[25242,32318],[189,-127]],[[6424,5566],[-6,-88]],[[13663,13010],[-781,-1],[-459,-204],[7,-83]],[[13663,23217],[694,-150]],[[14357,23067],[65,-59]],[[13253,12908],[410,102]],[[20398,54010],[-98,51],[-316,-490],[-682,-621],[-192,192],[-629,237],[-197,234],[-369,119],[-242,-70],[-792,-557],[-443,-435],[-297,-107],[-31,-226],[-253,-76],[-508,135],[-279,-93],[-529,630],[-354,190],[-518,608]],[[23620,3548],[-2,0]],[[2006,22865],[10,40]],[[9580,9272],[242,80],[561,-438]],[[27418,43786],[41,61]],[[7105,6789],[-127,204]],[[7514,14397],[-17,28]],[[7514,14397],[-17,29]],[[7514,14397],[1,-9]],[[7514,14397],[1,-9]],[[7515,14388],[0,-3]],[[7515,14388],[0,-3]],[[7515,14388],[1,0]],[[7515,14388],[1,0]],[[7642,14557],[157,-58]],[[9226,14064],[-64,-26]],[[9190,14108],[-29,-70]],[[9161,14037],[-28,104]],[[9133,14141],[-1,9]],[[10690,9257],[14,-148]],[[11834,5216],[1,3]],[[33706,49252],[5,-302]],[[21589,34526],[2,-3]],[[21591,34523],[47,13]],[[21058,37206],[1,-3]],[[21534,37690],[0,0]],[[21544,37677],[-10,13]],[[33683,49361],[23,-109]],[[33706,49252],[-23,109]],[[16363,52031],[-53,-80]],[[14316,58616],[77,-121]],[[14461,59387],[31,-72]],[[14462,59365],[30,-50]],[[14492,59315],[1,-171]],[[14461,59387],[1,-22]],[[14493,59144],[68,-47]],[[41313,68998],[-1009,-122]],[[39950,69876],[6,295],[147,156],[-16,689],[99,-30]],[[40203,70709],[101,-1833]],[[40203,70709],[-17,277]],[[16240,68581],[-148,100]],[[40033,74719],[-37,-715]],[[15704,70851],[-58,-211],[144,-1032],[274,-667],[28,-260]],[[17897,70440],[-226,371]],[[38415,70635],[-178,26]],[[48768,70983],[206,992]],[[38662,63647],[0,7]],[[53893,72171],[-184,-14]],[[46315,75152],[156,-144],[-50,-463],[296,153],[9,-386]],[[45240,72985],[385,453]],[[29565,62182],[-26,129]],[[12994,56272],[43,-169],[429,-532],[145,10]],[[13611,55573],[-334,-129]],[[12994,56272],[72,-205],[402,-493],[143,7]],[[37549,76472],[3,-1]],[[47781,74717],[61,-61]],[[12706,55325],[-135,175],[-140,463],[-210,143],[178,325],[-163,326]],[[12233,56501],[129,-385]],[[14209,58968],[-36,433],[157,278]],[[14330,59679],[7,-155],[496,-296],[394,-58]],[[51941,72879],[-7,-2]],[[12989,56243],[83,-596],[-135,-222]],[[5375,59039],[-96,150],[-328,-111],[-251,136],[-41,189]],[[46028,72784],[-303,-698]],[[288,39082],[-8,35]],[[2451,47359],[-36,-15]],[[5719,61686],[128,-198]],[[36955,77124],[-5,9]],[[12994,56272],[-5,-29]],[[14123,53173],[-622,733]],[[911,43229],[289,-215],[346,-89]],[[4139,50035],[104,-664]],[[53914,84357],[-46,3]],[[40314,75312],[-30,-264]],[[54298,85190],[39,61]],[[10080,67700],[34,289]],[[46146,77312],[186,349],[409,-63],[172,380],[278,-257],[150,178],[498,-385],[54,57]],[[1698,36677],[567,-3244]],[[2265,33433],[6,-16]],[[26229,57046],[-60,786]],[[17912,61928],[-120,-1321],[96,-780],[327,-439]],[[49243,70781],[-6,53]],[[2820,40362],[5,-4]],[[2825,40358],[163,82]],[[3160,40943],[-8,-6]],[[51637,76083],[-125,3]],[[7888,59486],[-231,-36]],[[53710,84674],[-7,-314],[165,0]],[[44608,98596],[-71,186]],[[38237,70661],[178,-26]],[[12994,56272],[24,37]],[[36211,72575],[2,26]],[[16067,67050],[15,7]],[[2113,55403],[-37,-376],[-501,-1342]],[[6522,62615],[-17,185],[202,317],[73,788]],[[38535,60991],[-4,-2]],[[13362,54012],[-10,-6]],[[13900,62615],[-738,-1173],[-551,-1461]],[[7216,61161],[13,1]],[[19848,73469],[-126,-179],[-302,-76],[-29,220]],[[16082,67057],[-75,-7]],[[4151,44830],[-972,-136]],[[13131,55347],[-73,-219]],[[46321,75960],[120,-144]],[[17206,66893],[-32,216]],[[46024,72784],[4,0]],[[39844,63344],[658,35]],[[5377,59111],[-2,-72]],[[8041,61955],[483,313],[481,141]],[[49269,70761],[-26,20]],[[54337,85251],[-83,-181]],[[13067,55336],[83,223]],[[39800,73373],[269,44],[92,915],[-95,94]],[[18211,67333],[250,59]],[[5518,60873],[-50,406]],[[10988,67791],[47,-663],[-56,-724],[-102,-346]],[[30205,59286],[115,8],[771,-940],[205,-7]],[[13669,53731],[388,-493]],[[14057,53238],[130,-141]],[[39083,63355],[-1,22]],[[559,45242],[81,223]],[[5584,47863],[-148,191]],[[5992,49175],[-137,21]],[[37306,63567],[155,-239],[764,2],[94,235]],[[37480,65600],[111,113],[360,752],[16,189]],[[40421,74721],[3,-6]],[[40424,74715],[367,-100],[1196,-1066],[344,-248],[113,-206],[245,-81]],[[42689,73014],[350,-178],[94,-154],[1284,36],[281,-126]],[[2449,40930],[44,3]],[[53710,84674],[-8,-322]],[[9005,62409],[-481,-142],[-602,-421],[-313,-352]],[[17206,66890],[57,-388]],[[1108,45906],[-6,-10]],[[48000,79238],[8,-3]],[[1557,41284],[-125,-97],[-179,243],[-431,150]],[[43379,78823],[567,3],[281,-134],[440,611],[364,92],[170,633],[283,451],[7,241],[275,-55],[145,243],[190,-60],[143,267],[159,-207]],[[5436,48054],[183,-138]],[[13061,34924],[-116,85],[-1298,284]],[[8199,66683],[-409,-456],[-72,-251],[-151,41]],[[8199,66683],[-92,560],[412,168],[249,-447],[211,205],[-9,347],[275,246],[253,-487],[290,32],[292,393]],[[5168,56867],[1,-6]],[[5719,61686],[-33,151]],[[21528,73606],[143,-28],[183,-405],[43,-596]],[[36297,72580],[-84,-39]],[[50820,84676],[4,-117],[-778,-2118]],[[46495,93410],[-384,-40],[-214,911],[-218,238],[-9,665],[-94,716],[79,283],[-209,710],[-277,2303]],[[889,44977],[213,919]],[[47649,86270],[55,-94],[150,-944]],[[2327,42908],[-3,0]],[[6883,61401],[229,44]],[[2271,33417],[643,-1045],[197,-194],[373,-104],[533,-305]],[[6358,61164],[19,258]],[[3096,54291],[270,125]],[[16999,66678],[-116,390],[291,41]],[[49882,89726],[-396,-890],[-345,441],[-437,260],[-266,327],[-128,344],[-261,401],[-617,1215],[-329,425],[-373,727],[319,85]],[[3798,42548],[-1,0]],[[1569,37330],[3,-8]],[[49871,77895],[-143,18],[28,-295]],[[7657,59450],[185,12]],[[7842,59462],[12,-42]],[[7854,59420],[150,-50]],[[8004,59370],[328,-322],[186,-15],[480,-325],[699,-645],[401,-563],[1034,-667],[594,-159],[448,27]],[[12174,56701],[187,-238],[316,-138]],[[12677,56325],[323,-140]],[[51399,83395],[-402,-91]],[[52256,85580],[-114,-173],[-408,-4],[-414,-146]],[[7762,62772],[-22,-7]],[[17289,65955],[-26,547]],[[28779,75809],[116,234]],[[17897,70440],[-186,-505],[-158,-229],[81,-675]],[[19770,64402],[-188,294],[-325,729],[-521,483],[-531,103],[-154,170]],[[48119,73966],[-56,-403],[-91,35]],[[47268,80772],[-11,89]],[[38512,73805],[76,194],[397,138]],[[13501,53906],[168,-175]],[[53714,72051],[-84,408],[-324,1063],[-40,580]],[[43208,74047],[-191,-84]],[[5191,54858],[-34,-23]],[[18874,70973],[191,-120],[486,96],[234,-572],[23,-374],[-226,-725],[108,-1177],[107,-427]],[[19797,67674],[183,-225]],[[19980,67449],[15,-332]],[[19995,67117],[218,-299]],[[20213,66818],[95,-155],[51,-773],[138,-773],[-73,-525],[100,-473],[159,-190],[177,-722],[885,-947],[8,-61]],[[47172,77705],[-109,-18],[-196,-705],[-470,-119]],[[7727,59666],[-37,543]],[[2054,33378],[217,39]],[[37376,65402],[-119,2504],[-87,65]],[[48396,85341],[-3,19]],[[18275,67729],[311,-19]],[[2567,40451],[-74,369],[102,161]],[[12611,59981],[359,-2392],[103,-872],[318,-842]],[[47427,73258],[-92,137]],[[36950,77133],[1132,-381],[710,-475]],[[39922,75455],[-25,85],[-1105,737]],[[17617,66943],[4,36]],[[48923,77323],[364,888],[16,743],[175,493]],[[48543,80742],[4,4]],[[43902,84942],[41,299],[241,800],[3,284],[-156,349],[50,482],[137,28]],[[3976,49718],[178,72],[62,-430]],[[911,43229],[-3,-37]],[[3797,44129],[-252,530],[-368,41],[194,1157],[256,862]],[[6190,62405],[-90,128]],[[20945,72949],[-529,437],[-602,-72],[-151,-202]],[[2460,41244],[-24,68]],[[21975,63459],[-222,-1260]],[[5342,60532],[-43,-467]],[[10754,63957],[205,41],[193,-331]],[[17263,66502],[169,91]],[[10080,67700],[5,-67]],[[2672,44882],[-181,43],[-247,288]],[[52063,77413],[133,35],[618,-422],[14,-850],[84,-37]],[[15889,59602],[531,722],[270,62],[212,210],[433,1646],[71,161]],[[47789,74999],[-6,-212]],[[33230,72817],[-34,478],[-111,238],[-232,-39],[-25,190]],[[50787,87061],[107,-926],[76,-6]],[[6377,61422],[340,215],[395,-192]],[[11152,63667],[-4,-6]],[[2792,40633],[45,-22]],[[5531,61410],[319,70],[104,-339]],[[5299,60065],[29,-191]],[[44712,71615],[-17,992]],[[48892,75005],[-17,-472]],[[3797,44129],[-252,530],[-368,40],[-212,-1216]],[[13352,54006],[211,-775],[32,-672]],[[3087,37327],[-270,-211]],[[37984,70343],[-17,-25]],[[46112,72970],[464,998]],[[5480,59601],[-152,273]],[[14685,59298],[542,-128]],[[34290,68438],[5,-8]],[[5436,48054],[-192,-40]],[[42598,71140],[82,-124],[-72,-905],[11,-718],[-202,-100]],[[19872,58152],[-2470,-165],[-618,179],[-426,-79],[-308,84],[-303,-121],[-555,-580],[-423,-319],[-372,32],[-526,-74],[-605,-183],[-346,-187],[74,-467]],[[12994,56272],[-7,37]],[[12987,56309],[-4,12]],[[12983,56321],[-57,133]],[[12926,56454],[-217,651],[-127,183],[-834,768]],[[46112,72970],[-84,-186]],[[41075,62584],[-111,280],[-462,515]],[[46112,72970],[1,-11]],[[54337,85251],[32,66]],[[17873,65591],[-91,-550],[10,-442],[141,-635],[-293,-1296],[-234,-265]],[[36853,67872],[-137,446],[-82,1219],[-121,535],[-169,-22],[-49,952],[-45,-5],[-39,862],[63,119]],[[4151,44830],[503,163],[152,-158]],[[5484,59726],[37,-594],[588,-290],[236,322],[1312,286]],[[48288,74089],[-169,-123]],[[9824,59297],[-94,154],[-725,590],[-482,-3],[-833,171]],[[6301,59206],[45,359],[-84,222],[190,570],[-98,411]],[[47893,77571],[55,1052],[47,218]],[[41367,75055],[-109,25],[-155,642],[7,537],[348,168]],[[7216,61161],[-104,284]],[[5480,59601],[4,125]],[[5118,57942],[103,-39]],[[18801,67379],[-5,248],[216,377],[415,197],[271,-135]],[[1575,53685],[119,216],[-204,389]],[[36853,67872],[0,23]],[[36853,67895],[317,76]],[[2981,49141],[-20,154],[662,284]],[[16082,67057],[-153,-114],[-156,-507],[-153,-40]],[[48998,74202],[-106,803]],[[95,40220],[277,129],[-118,951],[94,347],[-139,352]],[[2324,42908],[178,-691],[165,-879],[205,27],[280,-428]],[[16094,67104],[-12,-47]],[[283,43224],[-87,305]],[[12989,56243],[100,-516],[182,-136],[20,-649],[343,-815],[35,-396]],[[42179,74874],[228,-3],[356,-374]],[[282,39251],[-187,969]],[[3434,51333],[-299,664],[-928,902],[-448,661],[-52,307],[-217,423]],[[7690,60209],[-138,-78],[-216,-496],[-239,-317],[-796,-112]],[[5299,60065],[-88,-75]],[[48923,77323],[402,541],[546,31]],[[49073,72982],[218,-135]],[[49291,72847],[223,-152]],[[5202,51397],[28,1890]],[[911,43229],[-3,-37]],[[47752,82785],[-123,45],[-345,680],[-421,498]],[[13501,53906],[622,-733]],[[3152,40937],[-419,-1319]],[[12291,64959],[125,215],[387,122],[319,-190],[153,235],[397,331],[715,197]],[[48029,74554],[-253,90]],[[47776,74644],[-1,0]],[[47775,74644],[-93,-60]],[[12644,53993],[226,122]],[[44761,69948],[-49,1667]],[[13611,55581],[-220,294]],[[45657,89885],[-115,-558]],[[45542,89327],[-177,-771]],[[45365,88556],[-215,-955],[-94,24]],[[2817,37116],[193,112],[164,-648],[289,-510],[404,-373]],[[15467,64635],[-460,-259],[-919,-1123],[-130,-619]],[[6277,56675],[25,-291],[158,-39]],[[7193,65883],[-28,599]],[[13636,60054],[-169,105]],[[15227,59170],[48,-294],[-133,-855],[-346,-840],[-776,-738],[-427,-129],[-202,-439]],[[48983,80381],[-64,-364],[151,-488],[644,126]],[[36274,71978],[-36,57]],[[36238,72035],[-25,506]],[[49882,89726],[5,17]],[[49305,72501],[1087,-129],[1206,-22],[95,277],[241,250]],[[10877,66058],[-171,-650],[-328,-401],[-346,-746],[-101,-40],[-156,-471]],[[2817,37116],[-198,282],[-248,964],[-281,687],[-127,661],[-267,389],[-139,1185]],[[4125,59104],[-329,-416],[-177,-480],[-449,-411],[-277,-34],[-21,154]],[[26004,55738],[-119,432]],[[13501,53906],[168,-175]],[[280,39117],[-3,20]],[[47795,75421],[123,374],[652,1063],[353,465]],[[44917,87832],[-467,-126],[-232,-522]],[[49819,82593],[227,-152]],[[48307,74117],[105,197]],[[303,39202],[-25,-5]],[[48568,73009],[-215,-8]],[[1572,37322],[-107,696],[177,1780],[54,302],[-139,1184]],[[5531,61410],[-128,20]],[[12291,64959],[-541,-242],[-378,-531]],[[8958,58661],[-235,-548],[-166,-125],[-861,-295]],[[46330,75958],[-9,2]],[[39218,62423],[68,-1469],[172,15]],[[14461,59387],[224,-89]],[[232,38921],[-12,90]],[[54434,85096],[-8,7]],[[3490,38329],[-575,-37],[64,-691]],[[51846,85656],[-4,2]],[[13501,53906],[556,-668]],[[14057,53238],[475,-298],[894,-1052],[232,-355]],[[15658,51533],[235,-339]],[[15893,51194],[111,-36]],[[16004,51158],[81,-115]],[[16085,51043],[125,-178]],[[16210,50865],[53,-1]],[[16263,50864],[87,-41]],[[1557,41284],[-41,252],[0,986],[221,249],[69,397],[-51,1026]],[[16094,67104],[-12,-47]],[[1546,42925],[-6,-516]],[[12238,56739],[-2,18]],[[13958,62634],[-2,-299],[-271,-873]],[[6181,61903],[28,-158],[-229,-77]],[[26004,55738],[-380,909],[-297,2411],[-126,669],[-316,587]],[[7216,61161],[20,-263],[206,-18],[25,-488],[223,-183]],[[45183,72358],[-3,1]],[[47335,73395],[-142,199],[-207,-17]],[[21528,73606],[-503,116]],[[38258,69267],[-1,-15]],[[2955,41279],[-81,86],[-438,-53]],[[37922,75933],[-105,406],[-8,506],[-140,281],[-295,95],[-417,-78]],[[18124,67578],[151,151]],[[54442,85165],[18,-309]],[[2243,47052],[-2,-12]],[[13636,60054],[-169,105]],[[12989,56243],[-911,497],[-352,-61],[-595,163],[-1031,666],[-400,562]],[[9700,58070],[-701,646],[-479,325]],[[8520,59041],[-195,23],[-437,422]],[[12706,55325],[94,-264]],[[13557,58878],[79,1176]],[[2762,42976],[133,43],[70,464]],[[2658,41332],[-84,518]],[[36297,72580],[-23,-150]],[[43379,78823],[567,3],[281,-135],[439,612],[365,91],[170,633],[284,451],[7,242],[274,-55],[145,242],[190,-59],[143,267],[159,-207]],[[51243,79676],[-237,1086],[-61,851],[-766,974]],[[26169,57832],[-99,735],[386,1270]],[[46719,82830],[-183,33]],[[6780,63905],[-84,-647],[68,-329],[14,-705],[-206,-256]],[[12647,54768],[7,-62]],[[38319,63565],[321,95]],[[38640,63660],[22,-6]],[[48998,74202],[279,-830]],[[19391,73434],[-20,226],[-267,-102]],[[40502,63379],[-204,171],[-64,769]],[[4255,48808],[15,-28]],[[2177,32221],[-80,245]],[[2334,47146],[-91,-94]],[[46576,73968],[180,-242]],[[51152,86104],[8,365],[-301,117],[-72,475]],[[5665,52378],[-65,705],[-302,1887]],[[5298,54970],[-41,282]],[[4269,54683],[65,92],[599,274]],[[283,44064],[399,8]],[[13466,60163],[1,-4]],[[6476,61988],[-130,-25]],[[43379,78823],[-5,6]],[[5847,61488],[131,176],[-48,296]],[[50787,87061],[-584,934],[-717,831]],[[45438,86435],[307,610]],[[13391,55875],[-320,844],[-104,865],[-356,2397]],[[49773,76690],[30,-177],[294,-106],[-3,-143]],[[47239,84644],[80,-213]],[[5480,59601],[-105,-562]],[[5202,51397],[28,1890]],[[47995,78841],[-105,67],[-55,-420],[-117,-143]],[[15227,59170],[470,65],[192,367]],[[5631,59934],[24,281]],[[52149,87019],[-324,-2],[-142,217],[239,161]],[[2097,32466],[103,81]],[[3857,40802],[-693,34],[-4,107]],[[12706,55325],[51,-407]],[[51842,85658],[-202,74]],[[5416,61232],[52,47]],[[17289,65955],[373,92],[-17,181]],[[17700,66993],[-83,-50]],[[1360,42688],[-55,185],[297,550],[153,771]],[[49882,89726],[-396,-891]],[[49486,88835],[-393,-261],[-1157,-18],[-696,223],[-322,-167],[-747,-693],[-426,-874]],[[13391,55875],[-391,310]],[[45745,87045],[-368,-598],[-492,122]],[[35344,67214],[52,-244]],[[5954,61141],[120,-211],[192,36],[88,-198]],[[35103,73389],[-27,307],[157,20],[334,503],[-21,456],[503,799],[27,259],[264,84],[796,479],[6,70]],[[1786,43854],[449,-412],[83,-655],[183,-571],[162,-880],[-68,-355]],[[28199,76004],[-228,-88],[-94,-457],[-453,-986],[-1278,-874],[-236,0]],[[283,43224],[-8,120]],[[1360,42688],[-65,581],[-186,493],[-387,290],[-439,12]],[[301,39164],[-4,-6]],[[45867,85854],[592,-893]],[[23104,70281],[199,131]],[[17897,67539],[-69,221]],[[5930,61960],[55,-296],[224,81],[-28,158]],[[48353,73001],[58,192]],[[52639,74230],[-32,-645]],[[2243,47052],[-2,-12]],[[206,44830],[172,-36]],[[4243,49371],[12,-563]],[[51512,76086],[414,35],[256,237],[455,-14],[275,-205]],[[33233,74275],[492,-171]],[[35676,67259],[-4,112],[567,293],[600,110],[14,98]],[[5257,55252],[288,1352],[223,352],[297,1349]],[[54745,83924],[-2,-27]],[[46434,99493],[-1249,-336],[-16,39]],[[18231,70338],[-161,-343],[-28,-555]],[[2817,37116],[270,211]],[[4269,54683],[664,366]],[[6301,59206],[-64,198],[-279,-233],[-554,-231],[-29,99]],[[7223,66791],[69,400],[240,-227]],[[3141,32060],[71,-376]],[[41631,63602],[-895,-63],[-375,-149]],[[47227,74746],[-178,63]],[[54047,84637],[78,-245],[322,-82]],[[12989,56243],[-911,493],[-352,-60],[-594,160],[-1033,666],[-401,564],[-529,447]],[[9169,58513],[-172,199],[-478,324],[-194,22],[-437,428]],[[46459,84961],[-158,233]],[[46301,85194],[-434,660]],[[46266,89609],[19,-9]],[[46285,89600],[432,-70],[654,18],[129,-128]],[[43463,95322],[-341,-82],[-559,9]],[[11984,56958],[378,-390],[632,-296]],[[304,39114],[-3,-1]],[[6522,62615],[-136,-247],[-196,37]],[[4659,59403],[-138,-504],[-173,-10],[-223,215]],[[47995,78841],[-48,-218],[-54,-1052]],[[5480,59601],[-105,-562]],[[2965,43483],[-478,183]],[[24885,60314],[-97,123],[-79,866],[-404,505],[-119,1378],[46,1092],[-55,1027],[-395,-137]],[[856,42046],[246,-536],[330,-323],[125,97]],[[5499,59602],[34,-719],[-180,-182],[-39,-287]],[[42417,69293],[205,-1],[-29,-1095],[-294,-30],[-132,-333],[-333,-273]],[[47950,79259],[50,-21]],[[44683,89032],[-55,0],[30,-1023]],[[47338,71947],[-361,-81],[-239,324],[-824,-1210],[-64,-188],[203,2],[-269,-813],[-318,-751],[-474,-139],[-131,-319],[-477,61],[-91,-186],[-376,-110],[-227,279]],[[2243,47052],[-2,-12]],[[9202,62793],[-197,-384]],[[6142,36417],[-123,-438],[54,-319],[-147,-235],[-75,-747],[156,-501],[-181,-438],[46,-288],[-149,-711],[125,-674],[-87,-655],[78,-236],[28,-736]],[[840,44654],[619,-411],[296,-49]],[[21753,62199],[2,-78],[-1356,-1712],[-53,-16]],[[45745,87045],[-188,-451]],[[45438,86435],[119,159]],[[7223,66791],[-58,-309]],[[26004,55738],[255,182],[339,1258],[476,622],[427,279],[151,-60],[710,90],[320,182],[141,307],[364,174],[584,-93],[294,143],[140,464]],[[750,43189],[161,40]],[[7284,66453],[-16,-368],[89,-623],[-220,-469],[-12,-323]],[[50787,87061],[-19,17]],[[5799,60345],[-94,-16],[-221,-603]],[[2825,40358],[-258,93]],[[54605,81537],[156,-15],[276,-1071]],[[18043,66188],[216,667],[-19,189],[-250,223]],[[22563,55037],[-597,559]],[[840,44654],[248,-153],[-231,-569],[230,-160],[-26,-173]],[[13958,62634],[-58,-19]],[[41458,76427],[276,-288],[24,612],[271,173],[185,293],[214,741],[308,105],[108,336],[391,141],[11,307],[133,-24]],[[41834,67561],[-52,147],[-1560,-152]],[[50833,70735],[576,995],[284,896],[153,140]],[[51846,72766],[88,111]],[[263,39033],[25,49]],[[25885,56170],[-984,1825],[-298,320],[-2595,3470],[-225,389]],[[7657,59450],[-58,97],[-1255,-382],[-235,-322],[-588,290],[-37,593]],[[48506,74981],[-239,-1],[-238,-426]],[[44542,86403],[693,-152],[203,184]],[[46113,72959],[-1,11]],[[281,38965],[-61,46]],[[7112,61445],[172,-87],[325,136]],[[54434,85096],[-8,7]],[[6009,61353],[181,-320],[187,389]],[[2487,43666],[478,-183]],[[8199,66683],[-62,-96]],[[7567,66017],[151,-41],[72,251]],[[5378,61194],[90,85]],[[18586,67710],[95,18],[109,1188],[-76,467],[-250,231]],[[11748,58056],[-948,535],[-296,74],[-680,632]],[[16494,67635],[-115,773],[-139,173]],[[27751,74700],[-1605,-1102],[-236,1]],[[7169,65044],[252,204],[88,-92]],[[37017,63499],[-3,58]],[[37014,63557],[275,10]],[[37289,63567],[17,0]],[[555,44557],[285,97]],[[47795,75421],[-359,-778]],[[17993,67217],[246,-173],[20,-189],[-216,-667]],[[54373,85098],[87,-242]],[[1596,50049],[31,-208],[-190,-611],[146,-600],[-24,-323]],[[1559,48307],[6,-72]],[[1565,48235],[-14,-59]],[[1551,48176],[-387,-295],[-401,-419]],[[19872,58152],[172,-458],[-53,-313],[32,-902],[154,-1167],[221,-1302]],[[17632,69022],[50,492],[549,184],[233,-84]],[[49773,76690],[619,109],[764,298],[565,-32],[342,348]],[[5665,52378],[37,-1121],[-167,-1451],[-173,-317],[-192,-642],[12,-721],[62,-112]],[[6165,48789],[-446,150],[-650,-175],[-566,-260],[-184,31],[-49,245]],[[949,42323],[-11,24]],[[3623,49579],[353,139]],[[17990,67267],[-93,272]],[[2900,49023],[-278,-1142],[-288,-735]],[[13067,41181],[-611,-291],[-882,71],[-139,-193]],[[43379,78823],[-932,298],[-599,-29],[-514,-469],[-284,87]],[[36853,67872],[-307,-105],[-656,-84],[-214,-424]],[[42179,74874],[-182,227],[-162,808],[-99,225]],[[5198,57603],[-39,-660]],[[1360,42688],[-35,53]],[[1325,42741],[-279,-123]],[[4659,59403],[-313,381],[-288,-10]],[[9005,62409],[-480,-143],[-603,-422],[-134,-440]],[[4216,49360],[39,-552]],[[13493,53889],[-109,35]],[[12816,54985],[-59,-67]],[[50768,87078],[6,-25]],[[1061,43599],[32,167]],[[2900,49023],[394,1577],[140,733]],[[38531,60989],[4,2]],[[47795,75421],[-6,-422]],[[2244,45213],[-487,-1012],[42,-103]],[[1799,44098],[-13,-244]],[[2567,40451],[50,-227],[-290,-1150]],[[50787,87061],[404,-41],[267,131]],[[399,39272],[-24,-26]],[[38257,69252],[731,-37],[3,-91],[1794,145],[1032,5],[175,75],[1003,87],[282,-110],[341,-522]],[[6383,62366],[139,249]],[[3126,32122],[15,-62]],[[13880,62104],[-226,-771],[70,-117],[-88,-1162]],[[47518,72536],[-150,-180],[-30,-409]],[[44885,86569],[553,-134]],[[49305,72501],[-68,-1667]],[[95,40220],[277,129],[-119,958]],[[1360,42688],[-57,189],[301,548],[151,769]],[[3581,36019],[-27,7]],[[3554,36026],[-12,32]],[[3542,36058],[-215,268],[-97,302]],[[3230,36628],[11,-15]],[[47827,89757],[137,369]],[[3054,31931],[87,129]],[[17990,67267],[250,-223],[20,-189],[-209,-674]],[[12031,68170],[-119,-513],[-13,-680]],[[53672,71274],[-471,-27],[-625,269]],[[45056,87625],[4,-649],[-175,-407]],[[6065,58305],[236,901]],[[2467,40988],[-32,-14]],[[343,39288],[-6,-19]],[[18474,67402],[-263,-69]],[[39305,67128],[49,331],[868,97]],[[6065,58305],[-23,-90],[164,-1088],[93,-146]],[[46403,80908],[164,240],[274,34]],[[6476,61988],[96,-20]],[[13391,55875],[-114,-431]],[[12994,56272],[23,-131]],[[13017,56141],[68,-420]],[[13085,55721],[-113,-156],[-233,101]],[[47338,71947],[-282,106],[-1087,-161],[-244,194]],[[51842,85658],[4,-2]],[[34244,68307],[-769,829],[-526,1015],[-8,105]],[[49486,88826],[0,9]],[[49486,88835],[396,891]],[[10877,66058],[-171,-649],[-328,-402],[-346,-745],[-101,-41],[-156,-471]],[[44542,86403],[343,166]],[[13557,58878],[79,1176]],[[49305,72501],[-14,346]],[[49291,72847],[-13,507]],[[49278,73354],[-1,18]],[[5380,61152],[-3,-464]],[[1755,44194],[31,-340]],[[51458,87151],[-267,-132],[-404,42]],[[6264,57013],[35,-32]],[[5480,59601],[4,125]],[[16638,66851],[-185,-677],[-353,-784],[-208,-198],[-270,-467],[-155,-90]],[[6299,56981],[-156,-354]],[[37060,79831],[224,-67],[13,-234],[-148,-382],[-122,-1055],[45,-214],[-91,-637]],[[36981,77242],[-24,-99]],[[9005,62409],[-300,120],[-81,-109],[-470,-130],[-392,482]],[[1093,43766],[90,-186]],[[15889,59602],[376,-200],[312,-44],[535,216]],[[36213,72541],[-2,34]],[[2820,40362],[-29,-133]],[[3434,51333],[484,-200]],[[48133,85818],[-110,7],[-932,-520],[-301,-238],[-331,-106]],[[41418,73242],[-920,219],[-200,-173],[-498,85]],[[49773,76690],[30,617],[-47,311]],[[20398,54010],[-163,-160]],[[42417,69293],[207,35],[207,-160],[731,-241],[128,-111]],[[8130,40666],[76,-247]],[[19207,60604],[-193,100],[-539,564],[-136,417]],[[5829,60843],[31,526],[117,329],[-43,296]],[[4367,39959],[-247,-9]],[[47518,72536],[-149,-181],[-31,-408]],[[46988,74456],[-152,144],[-260,-632]],[[38985,74137],[-397,-138],[-76,-194]],[[3857,40802],[-145,59],[-587,-39],[-191,-92]],[[46576,73968],[-68,-33],[-79,540],[-231,525],[22,745],[101,215]],[[51601,76432],[-2,13]],[[949,42323],[-12,24]],[[39614,68629],[4,-53]],[[39618,68576],[-213,-467]],[[39405,68109],[-95,-288]],[[39310,67821],[0,-65]],[[39310,67756],[4,-64]],[[39314,67692],[0,-60]],[[39314,67632],[5,-215]],[[39319,67417],[7,-211]],[[39326,67206],[-21,-78]],[[5683,61890],[164,-402]],[[5168,56867],[-9,76]],[[18590,69098],[-160,269]],[[3152,40937],[-197,342]],[[24694,51200],[-126,808],[82,808],[290,467],[221,510],[-32,392],[125,399],[300,558],[331,1028]],[[5655,60215],[-24,-281]],[[5403,61430],[444,58]],[[45110,69662],[-1,207],[-348,79]],[[48983,80381],[466,1284]],[[6299,56981],[-139,304],[-264,258]],[[5378,61194],[38,38]],[[13058,55128],[73,219]],[[28636,62124],[-36,427],[117,21],[117,434]],[[5484,59726],[37,-593],[588,-290],[235,322],[1255,382],[53,-92]],[[7652,59455],[7,2]],[[7659,59457],[229,29]],[[2487,43666],[-129,-11],[-386,446],[-217,93]],[[54464,84861],[-4,-5]],[[46576,73968],[-464,-998]],[[12989,56243],[11,-58]],[[39800,73373],[32,-794],[122,-881],[7,-836],[264,-294],[-40,-782]],[[5616,60485],[13,77]],[[40361,63390],[56,-176]],[[43690,68816],[28,153],[435,157],[339,688],[269,134]],[[49882,89726],[282,-23],[801,-564],[395,-149]],[[38257,69252],[-266,90],[-24,976]],[[49277,73372],[-350,-198],[-64,-171],[-295,6]],[[1390,41683],[91,-110],[59,836]],[[4643,49921],[-481,-128],[-166,1066],[4,256],[-566,218]],[[17962,65880],[-89,-289]],[[49773,76690],[-90,-350],[-408,-539],[-175,-503],[-267,-362],[-327,45]],[[253,41307],[662,293],[338,-171],[179,-243],[125,98]],[[39305,67128],[84,165]],[[41458,76427],[-348,-168],[-7,-538],[155,-641],[109,-25]],[[7112,61445],[172,-87],[325,136]],[[54426,85103],[8,-7]],[[5202,51397],[134,-819],[-126,-1133],[-30,-612],[206,-312],[181,-541],[174,-31]],[[47427,73258],[203,-337],[310,55]],[[7532,66964],[229,-278],[56,-401],[-248,-97],[-2,-171]],[[34244,68307],[403,-372],[36,-806],[661,85]],[[5800,60810],[29,33]],[[37772,70694],[465,-33]],[[35012,73451],[84,-91]],[[47893,77571],[-108,-1500],[10,-650]],[[253,41307],[-75,71],[29,628],[86,-9]],[[293,41997],[17,-62]],[[310,41935],[136,-159],[280,145],[159,-52],[-13,287],[-171,774]],[[51330,76079],[-568,-787],[-616,-3],[-194,-154]],[[49952,75135],[-540,-73],[-416,73],[-104,-130]],[[13557,58878],[-38,382]],[[3213,31685],[183,-175]],[[4545,40692],[-365,132]],[[11372,64186],[-335,-73],[-626,-21],[-467,-351],[-755,-970],[-184,-362]],[[10877,66058],[-246,10],[-23,-150]],[[4270,48780],[-84,-316]],[[46841,81182],[79,302],[-120,510],[46,586],[-127,250]],[[13446,54064],[47,-175]],[[40185,69786],[40,783],[-264,293],[-7,836],[-122,882],[-32,793]],[[2567,40451],[224,-222]],[[7125,64670],[-129,-440],[-216,-325]],[[3087,37327],[-270,-211]],[[12994,56272],[51,17]],[[54337,85251],[83,42]],[[37552,76471],[-25,-233],[-373,124]],[[4904,56459],[-1,12]],[[4903,56471],[0,0]],[[4903,56471],[-471,-212],[-117,-691],[133,-581],[-179,-304]],[[45973,89430],[-431,-103]],[[45542,89327],[-443,-146]],[[45099,89181],[-416,-149]],[[18874,70973],[17,56]],[[3616,52903],[238,-145],[415,1925]],[[18586,67710],[209,47],[108,352],[265,-81],[259,175],[271,-137]],[[54656,83860],[-79,-702],[16,-948]],[[10112,67987],[-32,-287]],[[44537,98782],[-179,132],[-387,-211]],[[16240,68581],[-536,-129],[-58,176]],[[1786,43854],[-31,340]],[[48539,85169],[481,-570],[74,-6]],[[2097,32466],[165,448]],[[5655,60215],[-126,-30]],[[44658,88009],[-141,-554]],[[52942,73813],[-3,-3]],[[1194,44120],[-105,-324],[-222,133],[190,542],[-217,183]],[[36274,71978],[103,-678],[210,25],[348,-219],[26,-319]],[[46719,82830],[127,-250],[-47,-586],[120,-509],[-78,-303]],[[49871,77895],[-127,221],[-30,1539]],[[13501,53906],[-126,364],[-315,100]],[[13611,55581],[-220,294]],[[2567,40451],[185,-122],[237,90],[-55,311]],[[10080,67700],[-298,-388],[-282,-33],[-269,494]],[[50892,85723],[-12,-450],[91,-10]],[[5867,60948],[-7,421],[117,329],[-43,296]],[[43384,89054],[254,-143],[259,42],[278,-146]],[[44175,88807],[247,-136]],[[47807,74360],[-27,132]],[[48267,74981],[-238,-427]],[[16811,66998],[-213,-185],[-143,-632]],[[40417,63214],[-341,-218]],[[46146,77312],[186,348],[409,-62],[172,379],[278,-256],[150,177],[498,-384],[54,57]],[[18874,70973],[17,56]],[[2334,47146],[-328,286],[-313,411],[-670,-146],[-260,-235]],[[50458,85383],[130,927]],[[47049,74809],[-212,-208],[151,-145]],[[8162,57832],[-466,-139]],[[38319,63565],[-252,193],[-75,1990],[-44,12],[-96,1212],[-249,-32],[-108,747],[-173,-22],[-152,306]],[[5531,61410],[-13,-537]],[[7229,61162],[-3,173],[383,159]],[[42480,83500],[-348,-643],[-212,-159],[-319,81],[-134,-580],[-246,-204]],[[3139,40728],[-310,-483]],[[2551,40683],[16,-232]],[[45782,85810],[-579,101],[-898,-241],[-403,-728]],[[5531,61410],[-128,20]],[[50768,72913],[277,-56],[889,20]],[[5499,59602],[-171,272]],[[7509,65156],[144,-635],[41,-499],[-557,-226],[-187,-258],[-159,33]],[[49882,89726],[-394,-892],[716,-839],[583,-934]],[[49277,73372],[2,-18]],[[49279,73354],[5,-70],[614,-49],[596,-271],[551,-107],[889,20]],[[3434,51333],[216,638],[204,785],[-238,147]],[[52912,76139],[-275,205],[-455,14],[-256,-237],[-414,-35]],[[12541,54571],[103,-578]],[[5655,60215],[-20,-270],[155,-360],[697,-391],[1170,256]],[[40222,67556],[-868,-96],[-49,-332]],[[50046,82441],[-332,-2786]],[[13045,56289],[-56,-46]],[[5709,49221],[-436,131],[-630,569]],[[16085,66902],[-3,155]],[[37376,65402],[465,-322],[106,-910]],[[54460,84856],[-8,-540],[226,1],[60,-230]],[[6277,56675],[-45,20]],[[2817,37116],[-71,-886],[-27,-1560],[166,-1305],[241,-1243]],[[7727,59666],[-37,543]],[[7112,61445],[104,-284]],[[26562,72796],[75,-922],[217,-638],[128,-1363],[-402,-574],[-45,-359],[-217,-106],[-216,-361],[-717,-108],[-181,-697],[-4,-671],[-305,-118],[-103,-247],[-290,-58],[-15,-218],[-317,-504],[8,-545],[-396,-139]],[[47427,73258],[143,-237],[-52,-485]],[[11148,63661],[269,-222],[552,-873]],[[6572,61968],[-226,-5]],[[17632,69022],[-285,-53],[-104,-192]],[[4269,54683],[-336,130],[-285,-81],[-258,171],[-388,-33],[-303,94],[-519,-150],[-690,-524]],[[46459,84961],[278,-530]],[[6649,38710],[-214,40],[-308,-234]],[[52861,78786],[33,-530],[-108,-483],[33,-677]],[[48083,73300],[78,-276],[192,-23]],[[11358,54114],[-73,-979],[168,-528],[143,33]],[[363,39151],[12,95]],[[2829,40245],[-38,-16]],[[42667,73026],[61,-399],[24,-893],[-143,-171],[-11,-423]],[[5377,60688],[-35,-156]],[[5375,59039],[-96,149],[-328,-111],[-252,136],[-40,190]],[[5682,48154],[59,-205]],[[47892,84914],[18,-73]],[[47257,80861],[11,-89]],[[41367,75055],[812,-181]],[[38433,67178],[-37,1115],[-139,959]],[[12989,56243],[402,-368]],[[5853,60734],[-24,109]],[[2987,40947],[68,-47]],[[48660,73807],[-20,-59]],[[43900,84930],[-24,-307],[-403,-307],[-94,-555],[-127,5],[-174,-437],[-308,-78],[-87,-503],[-118,-73],[-160,-1163],[46,-1928],[142,-143],[-41,-437],[67,-1046],[-248,-187],[-230,-678],[-16,-471],[-242,-81],[-136,-382]],[[5683,61890],[3,-53]],[[7690,60209],[-132,-76],[-207,-471],[-253,-346],[-797,-110]],[[49714,79655],[-647,-127],[-1067,-290]],[[38877,75599],[0,-3]],[[1575,53685],[90,26],[513,-767],[954,-936],[302,-675]],[[46730,84420],[-271,541]],[[5677,61677],[42,9]],[[29371,62171],[-243,61],[-492,-108]],[[3434,51333],[216,638],[204,785],[224,1045]],[[45718,86324],[6,-169],[577,-961]],[[46301,85194],[396,-1391],[-10,-421]],[[44218,87184],[3,-274],[189,-491],[132,-16]],[[3744,35759],[-163,260]],[[13611,55581],[-220,294]],[[54748,83930],[-3,-6]],[[17754,66613],[42,-315]],[[51644,85352],[-8,-298],[-342,-381],[-470,-114],[-665,-1854]],[[3126,32122],[87,-437]],[[21528,73606],[-111,-20],[-472,-637]],[[39922,75455],[188,-94],[218,-622],[93,-18]],[[6017,60170],[-71,144],[-124,-303],[-342,-410]],[[41418,73242],[816,127],[433,-343]],[[2762,42976],[133,42],[-307,-1871],[145,-1529]],[[5729,61168],[138,-220]],[[7083,64954],[42,-284]],[[3416,36269],[-164,220],[-266,853],[-101,1359],[-152,917]],[[14639,68201],[-530,281],[-767,136],[-498,-308],[-304,79]],[[2974,42142],[123,1245],[-132,96]],[[7609,61494],[179,-90]],[[1238,43831],[-145,-65]],[[2244,45213],[240,-128],[334,154],[8,332]],[[7112,61445],[356,-614],[30,-497],[192,-125]],[[38664,63705],[135,-381],[127,-40],[1435,106]],[[25935,55743],[-50,427]],[[2244,45213],[-465,-970],[7,-389]],[[52350,73014],[-14,-13]],[[5855,49196],[-146,25]],[[4269,54683],[327,202],[390,1217],[483,314],[298,542],[129,585]],[[2965,43483],[-70,-464],[-133,-43]],[[52149,87019],[-89,-229],[-35,-577],[-206,-68]],[[40066,74426],[355,295]],[[52264,85997],[-8,-417]],[[7788,61404],[-28,182],[281,369]],[[11372,64186],[-335,-74],[-626,-22],[-467,-350],[-754,-970],[-185,-361]],[[49277,73372],[28,-871]],[[7532,66964],[230,-278],[56,-402],[-249,-96],[-2,-171]],[[750,43189],[-76,-191],[46,-458],[127,-414],[102,197]],[[5631,59934],[2,-6]],[[2762,42976],[133,42],[-307,-1871],[145,-1529]],[[51152,86104],[-182,25]],[[11647,35293],[707,273],[254,333],[179,53]],[[35670,67261],[-885,-121],[-72,-554],[-488,-178],[-212,-492]],[[9350,63017],[-345,-608]],[[50458,85383],[-274,-1853],[-138,-1089]],[[17796,66298],[129,-18]],[[6522,62615],[-17,185],[202,317],[73,788]],[[18341,70644],[-137,-32],[27,-274]],[[44698,72592],[291,-62],[194,-172]],[[48696,71995],[-98,-349],[-163,-183],[0,-335],[-570,-62],[-258,45],[-2,205],[-220,80],[-47,551]],[[6181,61903],[-73,278],[82,224]],[[18590,69098],[29,-1016],[-45,-631],[-100,-49]],[[51640,85732],[-14,384]],[[10555,43683],[-225,638],[-409,683]],[[42763,74497],[445,-450]],[[46949,75596],[117,-127],[729,-48]],[[48547,80746],[357,-510],[79,145]],[[2113,55403],[-156,-721],[-467,-392]],[[2262,32914],[9,503]],[[6358,61164],[-297,-230]],[[2334,47146],[-60,-121],[8,-1287],[-146,-755],[-381,-789]],[[5822,60550],[45,398]],[[40479,75246],[-58,-525]],[[2402,38991],[-75,83]],[[45725,72086],[-964,-2138]],[[45657,89885],[190,-92],[216,127],[370,-63],[672,8],[288,157]],[[54426,85103],[8,-7]],[[911,43229],[289,-216],[346,-88]],[[1540,42409],[-4,-398]],[[50787,87061],[-13,-8]],[[2335,43304],[-8,-276]],[[41736,76134],[-278,293]],[[47335,73395],[92,-137]],[[48119,73966],[-90,588]],[[1755,44194],[217,-93],[378,-444],[137,9]],[[6572,61968],[-226,-5]],[[1102,45896],[77,172],[-122,1139],[-294,255]],[[2327,39074],[225,910],[35,384],[-75,318]],[[17634,69031],[34,-696],[78,-426]],[[13501,53906],[-126,364],[-315,100]],[[54460,84856],[-18,309]],[[41050,78710],[-483,-112],[-91,129]],[[5930,61960],[55,-297],[224,81],[-28,159]],[[37967,66654],[437,464],[816,106],[85,-96]],[[47319,84431],[274,-285],[-455,-780]],[[38433,67178],[101,-2669],[-132,-103]],[[2208,32087],[-31,134]],[[3179,44694],[972,136]],[[6476,61988],[-295,-85]],[[11027,40536],[-526,-293],[-365,-129],[-936,355],[-401,-32],[-303,320],[-366,-91]],[[17897,67539],[56,-511]],[[17217,66219],[142,27]],[[18045,66178],[250,-383],[94,-430],[-89,-359],[193,-622],[259,-503],[727,-1157],[138,-440],[99,-1573]],[[7827,59335],[-100,331]],[[52310,85895],[-46,102]],[[5741,47949],[-122,-33]],[[5867,60948],[-38,-105]],[[50833,70735],[-415,43],[-1175,3]],[[278,39149],[0,48]],[[35096,73360],[530,-882],[239,28],[89,-391],[284,-80]],[[36238,72035],[36,-57]],[[45745,87045],[61,473],[-945,2222],[-171,248]],[[49094,84593],[-74,6],[-624,742]],[[43698,88553],[-208,-88]],[[12937,55425],[-73,-23]],[[7690,60209],[45,-442],[153,-281]],[[5198,57603],[56,881],[121,555]],[[21753,62199],[-1472,1604],[-240,187],[-458,707],[-325,728],[-522,484],[-531,103],[-154,169]],[[17289,65955],[552,-1181],[182,-740],[1,-431],[-119,-1064],[7,-611]],[[39922,75455],[-564,763],[-205,146]],[[2073,35870],[-205,-180],[397,-2257]],[[2265,33433],[3,-7]],[[2268,33426],[3,-9]],[[12236,56757],[168,-325],[-181,-325],[209,-139],[140,-466],[134,-177]],[[16811,66998],[188,-320]],[[33230,72817],[104,-1906],[-47,-204],[-302,-165],[-44,-286]],[[5468,61279],[63,131]],[[11596,52640],[473,327],[158,-10],[230,410],[113,410]],[[33187,53788],[228,523],[287,141],[465,822],[23,1199],[172,517],[-25,311],[131,994],[-111,137],[3,660]],[[4186,48464],[-559,-1745]],[[2208,32087],[-119,472],[-43,731],[225,127]],[[5375,59039],[189,-41],[165,-288],[153,-36],[183,-369]],[[2271,33417],[-3,9]],[[2268,33426],[-684,3896],[-12,0]],[[4992,28050],[-111,1102],[60,595],[267,363],[129,15]],[[4830,40318],[-285,374]],[[5853,60734],[62,385],[-55,250],[117,329],[-43,296]],[[46687,83382],[451,-16]],[[25910,73599],[-475,66],[-779,-321],[-381,-483]],[[12994,56272],[-284,834],[-128,183],[-799,748],[-758,456],[-521,170],[-680,634]],[[41221,81995],[-488,-726],[6,-220],[-204,-484]],[[42598,71140],[11,422],[143,172],[-24,893],[-61,399]],[[13611,55581],[-220,294]],[[49756,77618],[47,-311],[-30,-617]],[[2244,45213],[240,-128],[334,153],[102,-354]],[[33726,74100],[47,98]],[[25885,56170],[371,547],[-27,329]],[[5211,59990],[88,75]],[[45867,85854],[-85,-44]],[[47058,79112],[-22,230]],[[4993,56253],[-74,232]],[[26004,55738],[-64,448],[328,416],[412,780],[353,367],[85,374],[407,1114],[613,816],[509,1906],[-12,175],[493,99],[243,-62]],[[48506,74981],[63,294],[-109,711],[463,1337]],[[1046,42618],[-345,312]],[[7083,64954],[42,-284]],[[7657,59450],[-1312,-286],[-236,-322],[-588,290],[-37,594]],[[5619,47916],[-35,-53]],[[33725,74104],[-8,-268]],[[3126,32122],[356,-50]],[[20398,54010],[-219,1308],[-95,925],[-77,303],[-25,728],[61,420],[-191,565],[-632,395],[-496,184],[-433,460],[-402,530],[-96,779],[152,1661],[-38,271],[96,817]],[[12706,55325],[-94,-342]],[[1546,42925],[4,609]],[[1550,43534],[-42,227]],[[1438,44101],[-27,165],[298,30],[-36,160],[-303,-123],[-530,321]],[[38662,63654],[63,-413],[299,-658],[194,-160]],[[52063,77413],[264,324]],[[52327,77737],[295,718],[-23,933],[-56,246]],[[48393,85360],[-260,456],[-110,9],[-932,-520],[-301,-238],[-331,-106]],[[12291,64959],[-542,-241],[-377,-532]],[[6181,61903],[-73,278],[82,224]],[[5377,59111],[-2,-72]],[[35676,67259],[-6,2]],[[40314,75312],[-392,143]],[[7240,48003],[-36,-186],[224,-1444],[-22,-668],[-243,-603],[-39,-1345],[420,-213],[597,-1022],[86,-318],[32,-555],[122,-698],[204,-342],[215,-179],[210,15],[165,-1102],[77,-278],[235,-249],[161,-387],[235,-94]],[[46756,73726],[333,33],[-106,-177]],[[53416,84801],[3,155],[319,11],[-28,-293]],[[4269,54683],[-413,-1909],[-190,-754],[-154,-361],[-179,-818],[-599,-1910],[-36,-383],[-152,-317],[-212,-1085]],[[18464,69614],[166,-483],[312,-34],[423,89],[568,218],[-299,-722],[124,-693]],[[19758,67989],[39,-315]],[[19797,67674],[14,-35]],[[19811,67639],[169,-190]],[[19980,67449],[15,-332]],[[19995,67117],[218,-299]],[[20213,66818],[97,-166],[55,-775],[131,-745],[-66,-512],[110,-512],[289,-599]],[[20829,63509],[117,-156]],[[20946,63353],[147,80]],[[21093,63433],[493,92],[120,-1225],[47,-101]],[[47783,74787],[6,212]],[[17289,65955],[-9,2]],[[3180,31390],[33,295]],[[5221,57903],[-62,-960]],[[36345,71989],[-71,-11]],[[6620,56244],[227,127]],[[49305,72501],[-12,-323],[-151,-127],[-446,-56]],[[53702,84352],[-51,-563]],[[9350,63017],[364,443],[61,290]],[[3152,40937],[-419,-1319]],[[20117,73644],[-269,-175]],[[17912,61928],[-446,180],[-60,295]],[[40535,80565],[-164,-658],[-11,-509],[116,-671]],[[2900,49023],[534,2310]],[[42417,69293],[-63,154],[-1010,-241],[-31,540],[-231,161],[-360,-30],[-212,-176],[-325,85]],[[12864,55402],[-158,-77]],[[12540,68389],[-48,-376],[-363,-107],[-470,364],[-614,-182],[-965,-388]],[[50820,84676],[167,3]],[[4992,28050],[-140,1108],[-195,556],[-863,1248],[-386,263],[-137,296],[-145,601]],[[1093,43766],[-237,160],[-18,-290]],[[838,43636],[-10,-141]],[[828,43495],[-78,-306]],[[47436,74643],[-209,103]],[[2920,44884],[-94,687]],[[2244,45213],[32,356],[11,1312],[47,265]],[[16085,66902],[-3,155]],[[47964,90126],[-137,-369]],[[49478,79447],[-175,-493],[-16,-743],[-364,-888]],[[36957,77143],[24,99]],[[36981,77242],[-313,143],[-63,-198]],[[4216,49360],[27,11]],[[2334,47146],[333,925]],[[39922,75455],[-699,279],[-275,190],[-71,-328]],[[38319,63565],[-365,384],[-7,221]],[[11647,35293],[-177,276],[-464,343],[-615,178],[-183,265],[-684,374],[-179,-92],[-494,156],[-239,285],[-956,591],[-262,212],[-174,326],[-571,503]],[[6572,61968],[184,-329],[356,-194]],[[17623,67365],[274,174]],[[26715,61453],[579,243],[860,719],[569,298],[111,293]],[[40066,74426],[-417,-150],[-664,-139]],[[25885,56170],[83,62],[486,859],[214,487],[317,322],[256,734],[66,349],[255,587],[463,463],[616,1989],[-42,530],[117,21],[118,433]],[[51152,86104],[8,366],[-301,117],[-69,500]],[[46112,72970],[-387,-884]],[[6190,62405],[-90,128]],[[297,39158],[-19,-9]],[[45183,72358],[305,-31],[237,-241]],[[209,41999],[128,-158],[-84,-534]],[[48539,85169],[-143,172]],[[17700,66993],[-34,125]],[[1258,46245],[-132,-318],[-206,95],[-385,-352],[24,-428]],[[52350,73014],[-7,360],[300,856]],[[37492,65603],[-12,-3]],[[1755,44194],[52,-1026],[-162,-563],[195,-727],[255,-634],[259,-1982],[-19,-372],[179,-1189],[303,-585]],[[18043,66188],[8,-7]],[[12870,54115],[32,73]],[[34013,65916],[-523,-766],[-544,-926],[-556,-225],[-101,-419],[-106,39]],[[5655,60215],[-126,-30]],[[712,45609],[390,287]],[[5867,30439],[20,-96]],[[2965,43483],[166,-119],[492,154],[187,210],[398,-242]],[[52607,73585],[-431,-413],[-71,57]],[[3857,40802],[-693,36],[-209,441]],[[13446,54064],[-74,201],[-405,-53],[-323,-219]],[[6181,61903],[-73,278],[82,224]],[[6847,56371],[158,-485],[441,-1083],[142,-1255],[-121,-513],[112,-1587],[122,-383],[-151,-1303],[-83,-284],[39,-481],[-188,-990]],[[5436,48054],[138,-239]],[[44537,98782],[573,114],[59,300]],[[48983,80381],[-79,-144],[-357,509]],[[5436,48054],[-51,466],[-205,308],[-47,267],[94,490],[107,1002],[-132,810]],[[51565,87134],[-1,-5]],[[26004,55738],[5,-58]],[[2327,39074],[226,910],[14,467]],[[17911,67535],[213,43]],[[2900,49023],[-442,-7],[-907,-840]],[[1551,48176],[14,59]],[[1565,48235],[-6,72]],[[1559,48307],[18,323],[-143,602],[192,609],[-30,208]],[[42417,69293],[206,-1],[-30,-1095],[-294,-31],[-132,-333],[-333,-272]],[[38877,75596],[0,3]],[[50059,73554],[106,-189]],[[253,41307],[95,340],[-139,352]],[[33725,74104],[1287,-653]],[[13557,58878],[40,-255],[-429,-1182],[-80,-610],[-209,-269],[110,-319]],[[47172,77705],[-64,93],[52,512],[-102,802]],[[17513,67078],[153,40]],[[48400,85347],[-4,-6]],[[50179,82587],[-20,118]],[[17206,66890],[-33,204],[325,-25]],[[5800,60810],[29,33]],[[196,43529],[87,-305]],[[5655,60215],[167,335]],[[17174,67109],[262,32]],[[10988,67791],[47,-663],[-56,-724],[-102,-346]],[[40476,78727],[91,-129],[483,112]],[[16082,67057],[-23,321],[112,191],[368,83],[342,349],[362,776]],[[54743,83897],[-69,-83],[-674,27],[-349,-52]],[[51184,85750],[-27,347],[-187,32]],[[2969,42163],[5,-21]],[[4208,43486],[-399,241],[-186,-208],[-495,-151],[-163,115]],[[43618,68820],[-261,617],[-251,951],[-293,1973],[-124,653]],[[42689,73014],[-401,1316],[-109,544]],[[40421,74721],[353,-104],[304,429],[289,9]],[[46440,75806],[107,-199]],[[46547,75607],[53,-44],[236,-962],[213,208]],[[40421,74721],[3,-6]],[[40424,74715],[-15,-187]],[[34295,68430],[-51,-123]],[[42763,74497],[-356,374],[-228,3]],[[26308,57030],[-79,16]],[[6065,58305],[236,901]],[[51320,85257],[-349,6]],[[6883,61401],[229,44]],[[46366,94505],[-237,423],[-40,1380],[27,13]],[[18043,66188],[2,-10]],[[11984,56958],[378,-391],[632,-295]],[[18275,67729],[18,271],[-222,12]],[[46434,99493],[40,-1022],[-376,-14],[19,-819],[-47,-898],[46,-419]],[[5531,61410],[-128,20]],[[48568,73009],[295,-6],[65,171],[349,198]],[[2327,43028],[-91,415],[-481,751]],[[13277,55444],[-210,-108]],[[3817,35705],[-236,314]],[[822,41580],[-569,-273]],[[46949,75596],[-395,398],[-233,-34]],[[5257,55252],[46,-272],[-140,-459],[67,-1234]],[[47795,75421],[107,-1457]],[[16082,67057],[-24,321],[110,190],[326,67]],[[52643,74230],[-300,-856],[7,-360]],[[45438,86435],[236,-36],[193,-545]],[[2271,33417],[855,-1295]],[[12800,55061],[4,-131]],[[17489,66693],[-57,-100]],[[1572,37322],[-108,696],[177,1780],[54,302],[-138,1184]],[[26456,59837],[250,713],[9,903]],[[41090,75138],[-2,0]],[[2449,40930],[44,3]],[[41736,76134],[-300,827],[-329,1265],[-57,484]],[[278,39197],[4,54]],[[7169,65044],[252,204],[88,-92]],[[7112,61445],[148,-350],[192,-127],[44,-592],[194,-167]],[[47175,73596],[-185,-530],[-424,44],[-64,-146],[-390,6]],[[5257,55252],[42,-263],[-137,-468],[68,-1234]],[[7125,64670],[44,374]],[[39305,67128],[-85,96],[-816,-106],[-437,-464]],[[38415,70635],[-7,584],[88,8],[-22,765]],[[17432,66593],[-159,-36],[-67,336]],[[7276,65008],[-151,-338]],[[253,39105],[24,32]],[[39419,63889],[343,-142],[90,-398],[650,30]],[[5257,55252],[344,-2168],[64,-706]],[[48998,74202],[-149,-302],[-189,-93]],[[196,43529],[-118,294],[179,744]],[[18045,66178],[251,-382],[97,-420],[-92,-370],[193,-621],[256,-498],[729,-1162],[139,-441],[98,-1573]],[[41050,78710],[284,-86],[514,468],[599,30],[932,-299]],[[17746,67909],[-301,-291],[68,-540]],[[989,41856],[-258,66],[-284,-144],[-137,157]],[[293,41997],[-84,2]],[[1652,31514],[149,670]],[[7657,59450],[2,7]],[[16005,67051],[2,-1]],[[3582,31549],[-24,483],[459,-263]],[[2271,33417],[-687,3906],[-12,-1]],[[36297,72580],[138,49],[-34,713]],[[17426,65610],[27,-50]],[[4683,40613],[-138,79]],[[6065,58305],[-169,-762]],[[24275,72861],[-221,-265],[-456,-98],[-81,-99],[-213,-1062],[-1,-925]],[[6301,59206],[398,58]],[[949,42323],[-102,-197],[255,-615],[330,-324],[125,97]],[[51626,86116],[14,-384]],[[45867,85854],[428,-452],[62,-695],[74,-29],[266,-875],[-10,-421]],[[1102,45896],[-182,126],[-384,-352],[23,-428]],[[2567,40451],[-74,369],[102,161]],[[5655,60215],[-126,-30]],[[50787,87061],[-146,-299],[-53,-452]],[[47393,90022],[68,-198],[-473,-178],[-703,-46]],[[46285,89600],[-225,-100]],[[49277,73372],[3,-82],[618,-55],[596,-270],[274,-52]],[[51399,83395],[356,204],[564,1],[665,763],[429,302],[3,136]],[[42563,95249],[2,906],[149,444],[262,270],[63,337],[320,653],[56,-59],[287,802],[269,101]],[[17453,65560],[-164,395]],[[47795,75421],[40,62]],[[340,39200],[-39,-36]],[[5729,61168],[185,79],[356,-276],[111,-199],[1057,85],[-5,-560],[455,-811]],[[48083,73300],[80,-277],[190,-22]],[[4648,40789],[-103,-97]],[[5799,60345],[23,205]],[[5719,61686],[-42,-9]],[[49277,73372],[-279,830]],[[1341,43848],[-103,-17]],[[51644,85352],[-4,380]],[[50971,85263],[-513,120]],[[54447,84310],[-533,47]],[[7620,67421],[-88,-457]],[[6476,61988],[96,-20]],[[283,44064],[272,493]],[[36950,77133],[5,-9]],[[18051,66181],[-363,-128],[-11,-299],[-251,-144]],[[51512,76086],[-182,-7]],[[47271,88770],[665,-214],[1157,18],[344,261],[445,891]],[[45745,87045],[426,873],[747,694],[353,158]],[[1102,45896],[77,172],[-121,1139],[-295,255]],[[15093,42694],[-332,120]],[[6181,61903],[-73,278],[82,224]],[[2436,41312],[-46,519],[584,311]],[[38792,76277],[-710,474],[-1104,370]],[[36961,70787],[13,-292]],[[51644,85352],[498,55],[168,488]],[[51360,88990],[-395,149],[-801,565],[-282,22]],[[18043,66188],[-381,-140],[-17,180]],[[51639,76088],[-2,-5]],[[5375,59039],[-124,-576],[-94,-992],[2,-528]],[[38281,63796],[196,-157]],[[13478,59042],[-78,-47],[-677,450],[-463,56],[-791,-169],[-534,34],[-761,210],[-298,-256],[-612,447],[-237,-44],[-418,89],[-322,422],[-232,108],[-365,-133]],[[3160,40943],[-290,423],[-410,-122]],[[41834,67561],[-260,-393],[61,-462],[5,-919],[-97,-7],[4,-1262],[-52,-516],[-392,-433],[-368,-29],[-233,-161]],[[47845,86287],[-196,-17]],[[220,39011],[-5,749],[-120,460]],[[5195,56932],[-36,11]],[[46599,83791],[155,120]],[[13493,53889],[176,-158]],[[46321,75960],[119,-154]],[[51934,72877],[-88,-111]],[[51846,72766],[-248,-416],[-1206,22],[-1087,129]],[[13611,55581],[-220,294]],[[5299,60065],[88,-363],[97,24]],[[2799,40817],[135,-87]],[[24885,60314],[-98,122],[-79,866],[-404,505],[-119,1379],[46,1092],[-54,1026],[-395,-136]],[[355,39308],[-12,-20]],[[44690,89988],[556,-106],[411,3]],[[29307,73373],[477,-31],[443,387],[525,-164],[265,-247],[217,40],[466,-240],[728,271],[699,-37],[103,-535]],[[45438,86435],[280,-111]],[[11435,40768],[-381,1588],[-499,1327]],[[2595,40981],[-83,-295]],[[5822,60550],[31,184]],[[18106,66671],[133,373],[-249,223]],[[45056,87625],[62,175],[-201,32]],[[48083,73300],[-143,-324]],[[28089,73896],[106,438],[365,1024]],[[41367,75055],[-289,-8],[-304,-430],[-353,104]],[[5377,59111],[-2,-72]],[[47367,80576],[583,-1317]],[[36853,67872],[-175,145],[-385,-55],[-285,283],[-601,303],[-23,486],[-782,1141],[-50,905],[-454,1204],[-621,-85],[-247,618]],[[2900,49023],[-404,18],[-884,-854],[-455,-307],[-394,-418]],[[28895,76043],[-128,-24],[-3,-863],[148,-162],[298,-699],[97,-922]],[[17993,67217],[-4,62]],[[5800,60810],[29,33]],[[23782,65168],[395,140],[20,176],[-92,1058],[53,1077],[-205,642],[-51,381],[-250,820],[-349,950]],[[1572,37322],[298,-1640],[203,188]],[[17728,66896],[26,-283]],[[46863,84008],[421,-499],[345,-680],[106,-81]],[[18464,69614],[-412,-119],[-35,-134]],[[44885,86569],[174,407],[-3,649]],[[11027,40536],[408,232]],[[5800,60810],[29,33]],[[46576,73968],[180,-242],[333,34],[86,-164]],[[47175,73596],[160,-201]],[[52819,77096],[7,-13]],[[37170,67971],[-317,-99]],[[3798,42548],[-833,935]],[[47783,74787],[-7,-143]],[[47776,74644],[4,-152]],[[13557,58878],[41,-257],[-430,-1181],[-92,-747],[315,-818]],[[47049,74809],[302,32],[85,-198]],[[16455,66181],[-355,-790],[-209,-198],[-269,-467],[-636,-381]],[[13391,55875],[-153,-67],[-58,-382]],[[17634,69031],[-4,-1]],[[18045,66178],[6,3]],[[48412,74314],[94,667]],[[36892,80438],[2,72]],[[17432,66593],[-158,-38],[88,-579],[-73,-21]],[[5422,51397],[-220,0]],[[11358,54114],[495,931],[273,669],[99,410],[181,318],[396,-85],[307,-187],[282,-295]],[[12937,55425],[231,379],[223,71]],[[2574,41850],[400,292]],[[9005,62409],[-75,-19]],[[196,43529],[-43,305],[130,230]],[[47780,74492],[27,-132]],[[1755,44194],[31,-340]],[[1575,53685],[383,135],[231,214],[465,87],[442,170]],[[13067,55336],[-9,-208]],[[15093,42694],[-336,-349],[-574,-340],[-71,-176],[-859,-311],[-186,-337]],[[3126,32122],[-647,905],[-208,390]],[[2793,40838],[6,-21]],[[4946,56539],[-27,-54]],[[4919,56485],[-16,-14]],[[4903,56471],[0,0]],[[42771,74471],[-73,-451],[-152,-16],[18,-503],[103,-475]],[[2817,37116],[245,149],[-170,1337],[-159,1016]],[[4125,59104],[-406,-532],[-113,-376],[-434,-397],[-280,-28],[-20,146]],[[48746,73413],[257,-201],[275,142]],[[49278,73354],[1,0]],[[49279,73354],[-2,18]],[[12706,55325],[-158,-360],[-7,-394]],[[3366,54416],[211,128]],[[3577,54544],[136,-31],[556,170]],[[2955,41279],[-297,53]],[[50165,73365],[-1,1]],[[51360,88990],[-84,-542],[12,-785],[170,-512]],[[47780,74492],[-5,152]],[[47775,74644],[-262,13]],[[38307,70632],[3,-2]],[[39922,75455],[187,-93],[979,-224]],[[47902,73964],[-107,1457]],[[17453,65560],[224,194],[11,299],[363,128]],[[18051,66181],[163,524],[-108,-34]],[[682,44072],[171,-134],[-15,-302]],[[828,43495],[-58,-329],[532,-283],[58,-195]],[[6165,48789],[-446,151],[-651,-168],[-567,-260],[-184,31],[-47,237]],[[2512,40686],[39,-3]],[[1546,42925],[-6,-516]],[[6649,38710],[571,-514],[158,-319],[281,-220],[952,-592],[245,-286],[476,-148],[192,95],[744,-431],[121,-218],[420,-193],[192,20],[465,-344],[181,-267]],[[3366,54416],[211,128]],[[3577,54544],[692,139]],[[19663,73112],[-242,104],[-125,299],[-192,43]],[[16811,66998],[-146,-191],[-419,-1310],[-250,-2063],[-105,-580],[-513,-920],[-193,-785],[-8,-645],[50,-1334]],[[38563,74439],[-105,-1000],[2,-871]],[[16082,67057],[-276,222],[-408,550],[-759,372]],[[48696,71995],[547,-1214]],[[47789,74999],[6,422]],[[820,45740],[-261,-498]],[[17436,67141],[187,224]],[[51458,87145],[107,-11]],[[37169,67967],[1,4]],[[2271,33417],[-225,-129],[44,-729],[118,-472]],[[49582,89385],[32,303],[268,38]],[[1258,46245],[-156,-349]],[[6572,61968],[184,-328],[356,-195]],[[6572,61968],[208,338],[445,82],[79,205],[458,179]],[[2817,37116],[-70,-892],[-27,-1556],[166,-1303],[240,-1243]],[[51458,87145],[106,-16]],[[39419,63889],[47,367],[7,1037],[-81,493],[88,210],[-145,366],[-30,766]],[[42179,74874],[-812,181]],[[253,41307],[119,-1005],[-170,-482],[80,-569]],[[17206,66890],[-32,219]],[[47436,74643],[3,-2]],[[47439,74641],[1,1]],[[47440,74642],[-347,479],[-156,518],[-383,355],[-233,-34]],[[7216,61161],[13,1]],[[19250,43288],[-418,-119],[-215,294],[-86,749],[33,718],[-202,765],[-319,472],[-117,1020],[-336,763],[-147,168],[-119,853],[-527,580],[-309,650],[-137,602],[-88,61]],[[16263,50864],[-53,1]],[[16210,50865],[-125,178]],[[16085,51043],[-81,115]],[[16004,51158],[-111,36]],[[15658,51533],[-232,353],[-893,1057],[-343,183],[-489,500],[-66,501],[-311,785],[-54,678],[-185,131]],[[13085,55721],[-68,420]],[[13017,56141],[-340,184]],[[12677,56325],[-317,128],[-186,248]],[[12174,56701],[-297,32]],[[11877,56733],[-156,-50],[-582,153],[-667,403],[-338,263],[-434,568]],[[9700,58070],[-531,443]],[[9169,58513],[-158,193],[-491,335]],[[8520,59041],[-196,30],[-320,299]],[[8004,59370],[-150,50]],[[7842,59462],[-185,-12]],[[301,39113],[-21,4]],[[1575,53685],[181,-130],[442,-645],[934,-913],[302,-664]],[[46754,83911],[-155,-120]],[[4659,59403],[-313,379],[-288,-8]],[[2934,40730],[205,-2]],[[41736,76134],[22,616],[271,174],[186,293],[214,740],[308,105],[107,337],[391,140],[11,308],[133,-24]],[[48506,74981],[-239,0]],[[37286,69113],[-290,-64]],[[36996,69049],[-167,-21],[24,-1156]],[[5436,48054],[2,1038],[64,290],[170,1911],[-250,104]],[[43490,88465],[-1373,-655]],[[40421,74721],[-355,-295]],[[11969,62566],[642,-2585]],[[49819,82593],[-147,-661],[-191,-187],[-498,-1364]],[[206,44830],[99,280],[254,132]],[[40535,80565],[-548,-41],[-758,45],[-99,184],[-793,-64],[-688,-239],[-677,113],[-78,-53]],[[23642,64083],[140,1085]],[[21783,62174],[-30,25]],[[6301,59206],[-41,584],[191,567],[-97,411]],[[43690,68816],[227,-279],[377,110],[90,185],[477,-60],[131,318],[474,139],[318,752],[269,813],[-203,-2],[64,188],[824,1210],[239,-324],[361,81]],[[1102,45896],[-282,-156]],[[17990,67267],[-324,-149]],[[5159,56943],[6,-1105],[92,-586]],[[5362,49309],[493,-113]],[[1503,44160],[283,-306]],[[46576,73959],[0,9]],[[37154,76362],[-314,120],[-269,426],[34,279]],[[7157,47556],[161,451]],[[38257,69252],[-446,-181],[18,-556],[-594,-526],[-382,-94]],[[36853,67895],[0,-23]],[[17289,65955],[-264,54],[-381,-108],[-94,142],[-53,484],[-412,375]],[[6346,61963],[-165,-60]],[[16811,66998],[-194,-88],[-237,1499],[-140,172]],[[6190,62405],[-90,128]],[[555,44557],[431,64],[470,-379],[299,-48]],[[51564,87129],[585,-110]],[[1786,43854],[84,-90],[-6,-448],[-187,-749],[98,-102],[-161,-759],[98,-1595],[-210,-1766],[-26,-638],[252,-1313],[351,-2066],[-25,-950]],[[42563,95249],[339,-357],[-23,-604]],[[45805,86554],[-87,-230]],[[17912,61928],[236,-276],[191,33]],[[51518,75526],[-109,-472],[-204,199]],[[7748,53592],[-197,579],[57,1572],[97,437],[-9,1513]],[[7125,64670],[-129,-438],[-216,-327]],[[26160,53267],[-155,412],[-210,186],[-216,520],[-89,522],[78,558],[367,278]],[[21025,73722],[-90,1001],[-289,799]],[[38664,63705],[-3,0]],[[53266,74102],[-112,285]],[[5221,57903],[32,581],[122,555]],[[39419,63889],[-135,-405],[-812,-127],[-404,170]],[[21782,62173],[-29,26]],[[5953,61130],[-104,350],[-318,-70]],[[52912,76139],[-405,-175],[-350,15],[-377,-352],[-262,-101]],[[18043,66188],[2,-10]],[[1508,43761],[-115,165]],[[2567,40451],[253,-89]],[[47028,84975],[211,-331]],[[4269,54683],[236,428],[155,444],[242,362],[-108,702],[86,199],[110,692],[214,266],[29,473],[363,248],[387,138],[229,244],[89,327]],[[4269,54683],[664,366]],[[277,39137],[1,12]],[[54743,83897],[2,27]],[[44286,98602],[-64,248],[-251,-147]],[[2097,32466],[-43,912]],[[2900,49023],[-277,-1143],[-208,-536]],[[40445,74963],[5,0]],[[5896,57543],[165,777],[240,886]],[[12612,54983],[-81,-219],[113,-771]],[[6190,62405],[193,-39]],[[18824,44571],[-342,-76],[-623,-617],[-166,-39],[-423,186],[-85,163],[-423,-124],[-345,52],[-874,-323]],[[12706,55325],[33,341]],[[51330,76079],[-568,-786],[-616,-3],[-98,-141],[-636,-86],[-416,72],[-104,-130]],[[4270,48780],[-137,-585],[-506,-1476]],[[45718,86324],[87,230]],[[13150,55559],[-60,143],[301,173]],[[6791,63571],[-11,334]],[[6791,63571],[-11,334]],[[48983,80381],[103,-27],[278,-546],[114,-361]],[[6883,61401],[229,44]],[[17993,67217],[-40,-189]],[[35103,73389],[-7,-29]],[[17746,67909],[-302,-291],[44,-445],[-593,-89],[-84,-86]],[[13493,53889],[-47,175]],[[2327,43028],[-3,-120]],[[25885,56170],[-146,96],[-1122,338],[-85,132],[-485,310],[-899,750],[-539,201],[-963,-231],[-590,152],[-1184,234]],[[2567,40451],[273,-90],[-48,272]],[[49759,77617],[-3,1]],[[6061,60934],[129,99],[-181,320]],[[2243,47052],[-2,-12]],[[5257,55252],[289,1350],[222,354],[297,1349]],[[7696,57693],[14,1272],[-81,598],[98,35],[-37,611]],[[17897,67539],[96,-322]],[[12864,55402],[73,23]],[[763,47462],[292,-249],[76,-636],[-77,-522],[54,-149]],[[36767,63451],[107,14]],[[36874,63465],[100,63]],[[36974,63528],[40,29]],[[37289,63567],[172,-238],[626,-12],[-19,210]],[[54047,84637],[57,-287],[-236,10]],[[48998,74202],[-123,331]],[[9775,63750],[-61,-290],[-360,-440]],[[1575,53685],[379,134],[231,215],[465,87],[446,170]],[[49819,82593],[-147,-661],[-223,-267]],[[46536,82863],[183,-33]],[[17289,65955],[756,223]],[[17897,67539],[-67,226],[-338,-91],[-155,-474],[-352,-87],[-104,291],[-387,231]],[[50987,84679],[77,-7]],[[42667,73026],[115,-324],[399,-23],[1240,40],[521,-111],[338,412],[182,-153],[449,-30],[201,133]],[[1183,43580],[-90,186]],[[43902,84942],[-347,-344],[-171,-36],[-213,-362],[-307,-176],[-384,-524]],[[2493,40933],[-26,55]],[[6061,60934],[117,-558],[-205,-216],[9,283]],[[21897,72577],[209,-253],[40,-833],[182,-535]],[[41088,75138],[279,-83]],[[1046,42618],[0,6]],[[3482,32072],[100,-523]],[[47257,80861],[-416,321]],[[39305,67128],[31,-766],[144,-366],[-88,-210],[82,-493],[-8,-1037],[-47,-367]],[[51640,85732],[202,-74]],[[49237,70834],[471,-83],[710,27],[415,-43]],[[17458,29383],[253,717],[-154,1032],[-373,-29],[-219,597],[-366,461],[-203,1145],[-144,566],[-282,493],[-560,668],[-421,36],[-198,-246],[-801,-113]],[[48119,73966],[-217,-2]],[[5480,59601],[4,125]],[[47940,72976],[143,324]],[[49714,79655],[31,-1539],[126,-221]],[[40421,74721],[29,242]],[[2415,47344],[-81,-198]],[[16811,66998],[-173,-147]],[[7216,61161],[-104,284]],[[3160,40943],[-21,-215]],[[14387,65869],[604,77],[127,-114],[650,267],[13,356],[149,486],[155,-39]],[[28834,63006],[-108,108],[31,313],[383,45],[57,-152]],[[12644,53993],[226,122]],[[6770,62698],[-73,560],[83,647]],[[5480,59601],[17,1]],[[13067,55336],[50,177],[-128,730]],[[17289,65955],[-28,700],[-158,440],[-292,-97]],[[47783,74787],[246,-233]],[[17359,66246],[-142,-27]],[[16811,66998],[363,111]],[[37552,76471],[286,-177],[1110,-370],[-71,-328]],[[49478,79447],[-115,361],[-277,546],[-103,27]],[[5468,61279],[63,131]],[[13611,55581],[-220,294]],[[5729,61168],[185,78],[356,-276],[111,-199],[1053,81],[-2,-555],[456,-811]],[[40421,74721],[174,144]],[[1360,42688],[-65,580],[-112,312]],[[47835,75483],[-40,-62]],[[6190,62405],[-90,128]],[[38415,70635],[-108,-3]],[[1551,43146],[-1,388]],[[1550,43534],[-112,567]],[[4180,40824],[-323,-22]],[[46576,73968],[150,344]],[[13990,34710],[-356,17],[-316,-111],[-257,308]],[[2567,40451],[50,-227],[-290,-1150]],[[1360,42688],[-245,-94],[-414,336]],[[1488,38301],[207,1799],[-138,1184]],[[36974,70495],[396,154],[402,45]],[[46060,89500],[85,-373]],[[7696,57693],[14,1272],[-82,598],[99,36],[-37,610]],[[2791,40229],[-201,156],[299,-1871],[92,-1265],[-269,-706],[-89,-970],[-216,-964],[-136,-1192]],[[17289,65955],[-264,52],[-388,-109],[-38,-438],[-373,-107],[-229,-1919],[-106,-581],[-512,-919],[-193,-786],[-8,-644],[56,-1342],[42,-286],[-133,-856],[-346,-840],[-783,-745],[-433,-166],[-190,-394]],[[5799,60345],[23,205]],[[51458,87145],[0,6]],[[12570,64907],[-157,251],[-112,-223],[-551,-220],[-197,-336],[-298,-267],[-572,-10],[71,-145]],[[25935,55743],[-261,-109],[-275,-443],[-424,-351],[-382,50],[-534,-213],[-492,34],[-382,398],[-622,-72]],[[46863,84008],[-126,423]],[[36959,70786],[2,1]],[[39314,62390],[-96,33]],[[13595,52559],[73,-1747],[136,-165],[696,-1778],[139,-1095],[-163,-815],[-633,-458],[-40,-189],[139,-1029],[205,-717],[-54,-349],[77,-324],[132,-36],[459,-1043]],[[39419,63889],[342,-143],[83,-402]],[[40066,74426],[95,-93],[-91,-917],[-270,-43]],[[18874,70973],[-207,50],[-680,-230],[-90,-353]],[[13685,61462],[40,-244],[-89,-1164]],[[6017,60170],[153,343]],[[5484,59726],[147,208]],[[17630,69030],[226,92],[161,239]],[[54690,84314],[26,-260]],[[2493,40933],[-26,55]],[[52310,85895],[-1,5]],[[26004,55738],[-379,910],[-297,2410],[-127,669],[-316,587]],[[30006,65194],[-50,11]],[[50046,82441],[-227,152]],[[5867,60948],[87,193]],[[25935,55743],[69,-5]],[[39844,63344],[-200,-67]],[[7229,61162],[-2,172],[532,251],[29,-181]],[[2054,33378],[233,5],[743,-1145],[366,-1605],[297,-27],[108,-273],[231,76],[395,-496],[474,-1262],[80,-757],[-68,-179]],[[257,44567],[-31,446],[333,229]],[[48506,74981],[-94,-667]],[[5257,55252],[41,-282]],[[5298,54970],[-107,-112]],[[323,39122],[-22,42]],[[47436,74643],[359,778]],[[257,44567],[-51,263]],[[4120,39950],[-301,245],[-417,654],[-250,88]],[[23782,65168],[395,138],[22,177],[-93,1058],[53,1079],[-205,642],[-51,382],[-249,819],[-243,566],[-129,634],[-99,93],[-51,531],[-1423,1178],[-264,-25],[-64,137],[-965,807],[-602,-72],[-151,-200]],[[49871,77895],[-546,-30],[-402,-542]],[[36274,72430],[71,-441]],[[45110,69662],[-85,-503],[-624,-127],[-243,-191],[-468,-25]],[[26467,56950],[-159,80]],[[46730,84420],[133,-412]],[[47436,74643],[-343,478],[-140,452],[-406,34]],[[46547,75607],[-31,-53]],[[2595,40981],[63,351]],[[17448,65445],[-22,165]],[[1536,42011],[21,-727]],[[2200,32547],[34,123]],[[50046,82441],[137,1089],[275,1853]],[[7284,66453],[284,-265],[249,97],[-56,401],[-229,278]],[[5375,59039],[-96,151],[-328,-111],[-251,135],[-41,189]],[[47513,74657],[-73,-15]],[[47440,74642],[-4,1]],[[47682,74584],[-169,73]],[[9350,63017],[-148,-224]],[[18586,67710],[-689,-171]],[[38319,63565],[14,-989],[130,-234],[28,-779],[158,17],[69,-1557],[263,-71],[191,-562],[357,-399]],[[13501,53906],[-127,363],[-472,-81]],[[25910,73599],[303,-124],[349,-679]],[[40535,80565],[204,484],[-7,220],[489,726]],[[51243,79676],[81,-485],[330,-597],[409,-397],[264,-460]],[[52327,77737],[499,-680]],[[18042,69440],[-160,-62],[-248,-347]],[[50892,85723],[292,27]],[[7657,59450],[51,-487],[10,-1296],[838,322],[110,97],[259,-212],[461,437],[189,-159],[414,76],[340,-176],[136,-275],[669,-547],[120,56],[657,-241],[344,-259],[102,-292],[256,-169],[376,-82]],[[38415,70635],[-1,-6]],[[750,43189],[161,40]],[[12719,54488],[-109,-215],[34,-280]],[[45745,87045],[61,473],[-441,1038]],[[45365,88556],[-266,625]],[[45099,89181],[-409,807]],[[46495,93410],[-25,918],[-104,177]],[[19250,43288],[-418,-121],[-266,399],[-873,272],[-423,186],[-85,163],[-423,-125],[-345,53],[-1041,-391],[-310,-442],[27,-588]],[[6180,60473],[-119,461]],[[36894,80510],[-15,-458],[181,-221]],[[49514,72695],[0,0]],[[23303,70412],[-121,343],[-51,531],[-1422,1178],[-264,-25],[-500,510]],[[3102,31643],[110,41]],[[28560,75358],[208,41],[11,410]],[[375,39246],[-38,23]],[[7284,66453],[-16,-369],[89,-622],[-220,-469],[-12,-323]],[[44761,69948],[-269,-134],[-339,-687],[-435,-158],[-28,-153]],[[42879,94288],[55,-636],[318,-740],[221,-310],[8,-425],[353,-545],[124,-74],[5,-310],[122,-40],[68,-455],[333,-310],[204,-455]],[[7125,64670],[-129,-438],[-216,-327]],[[51644,85352],[-324,-95]],[[44698,72592],[14,-977]],[[37170,67971],[-99,6],[-75,1072]],[[36996,69049],[-22,1446]],[[3425,31919],[57,153]],[[47795,75421],[-11,650],[109,1500]],[[17656,66597],[-11,-369]],[[7888,59486],[-231,-36]],[[13277,55444],[114,431]],[[16085,66902],[279,-205],[588,411],[222,1]],[[39844,63344],[-425,-199]],[[35009,73451],[3,0]],[[14461,59387],[-131,292]],[[6770,62698],[113,-1297]],[[9005,62409],[-480,-143],[-603,-420],[-313,-352]],[[7169,65044],[255,449],[19,396],[124,128]],[[3798,42548],[-1,0]],[[8930,62390],[-6,0]],[[4125,59104],[-180,313]],[[3055,40900],[84,-172]],[[48640,73748],[106,-335]],[[36957,77143],[-7,-10]],[[47175,73847],[-1,107]],[[3798,42548],[-833,935]],[[53672,71274],[-171,444],[-449,242],[-11,230],[-345,440],[45,181],[-391,203]],[[17621,66979],[-132,-286]],[[18718,68060],[41,519]],[[3918,51133],[141,-776]],[[4365,40736],[-318,173],[-190,-107]],[[47995,78841],[-45,418]],[[5314,58414],[39,288],[180,181],[-51,846],[-154,145]],[[2327,39074],[-9,-355],[-225,-385],[-618,-442],[2,-185],[252,-1313],[351,-2066],[-26,-950]],[[17289,65955],[-28,701],[-171,465],[-106,-10],[-43,396],[167,174],[161,739],[-26,357]],[[1633,42468],[-92,-54]],[[17630,69030],[136,-1283],[62,13]],[[1755,44194],[-299,48],[-616,412]],[[5480,59601],[53,-718],[-179,-182],[-40,-287]],[[17453,65560],[390,-784],[183,-734],[-23,-686]],[[48923,77323],[-353,-465],[-652,-1062],[-123,-375]],[[29371,62171],[287,8],[66,234],[373,239],[714,782],[967,346],[405,-161]],[[12654,54706],[65,-218]],[[5655,60215],[-39,270]],[[47338,71947],[47,-551],[220,-80],[3,-205],[257,-45],[570,63],[-1,334],[164,183],[98,349]],[[5982,60443],[-160,-431],[-342,-411]],[[6358,61164],[-22,129],[381,344],[395,-192]],[[4078,53801],[191,882]],[[6354,60768],[-88,198],[-205,-32]],[[3179,44694],[-214,-1211]],[[42725,72719],[0,-48],[1696,49],[521,-112],[338,413],[182,-154],[449,-29],[201,132]],[[7250,66257],[54,-420],[-111,46]],[[48348,72459],[348,-464]],[[33233,74275],[25,-147],[-392,-153],[-38,-291]],[[4659,59403],[-313,380],[-288,-9]],[[5337,30125],[55,389]],[[50588,86310],[53,452],[146,299]],[[38477,63639],[187,66]],[[13958,62634],[-78,-530]],[[21025,73722],[-504,-206],[-199,183],[-205,-55]],[[3241,36613],[-11,15]],[[3230,36628],[-244,715],[-104,1379],[-149,896]],[[18590,69098],[-160,269]],[[5930,61960],[79,-607]],[[5847,61488],[214,-554]],[[13067,55336],[210,108]],[[2097,32466],[-208,-45],[-88,-237]],[[10754,63957],[-155,67],[-656,-283],[-521,-704],[-72,-20]],[[1572,37322],[126,-645]],[[2334,47146],[-59,-122],[8,-1286],[-146,-756],[-362,-723],[11,-405]],[[8958,58661],[-235,-549],[-561,-280]],[[16494,67635],[-116,772],[-138,174]],[[5159,56943],[7,-1105],[91,-586]],[[47940,72976],[-428,-57],[6,-383]],[[6301,59206],[-115,-337],[-204,-231],[-386,-139],[-364,-249],[-29,-473],[-214,-265],[-110,-694],[-86,-199],[108,-702],[-241,-361],[-155,-445],[-236,-428]],[[5830,37996],[250,281],[47,239]],[[46440,75806],[76,-252]],[[49714,79655],[332,2786]],[[19207,60604],[221,-153],[344,-27],[258,-136],[316,105]],[[283,44064],[272,493]],[[1572,37322],[-107,697],[177,1779],[53,302],[-138,1184]],[[45867,85854],[-85,-44]],[[38415,70635],[-98,-201]],[[1592,42881],[-46,44]],[[51064,84672],[-77,7]],[[48411,73193],[157,-184]],[[35396,66970],[142,-163]],[[12994,56272],[-282,834],[-224,274],[-699,655],[-784,474],[-496,154],[-592,530],[-155,227],[-475,357],[-258,-49],[-414,84],[-307,421],[-249,114],[-369,-138]],[[12706,55325],[158,77]],[[4195,42236],[-191,26],[-206,286]],[[17174,67109],[262,32]],[[47718,78345],[-542,-643]],[[9824,59297],[-93,156],[-726,589],[-482,-3],[-833,170]],[[32828,73684],[20,-312],[186,-205],[12,-518],[-111,-39]],[[2097,32466],[-59,524],[42,1338],[-352,2066],[-251,1313],[-2,185],[618,443],[225,384],[9,355]],[[9350,63017],[4,3]],[[38662,63654],[-22,6]],[[38640,63660],[-321,-95]],[[12994,56272],[397,-397]],[[41834,67561],[486,28],[342,322],[348,44],[118,249],[444,268],[118,344]],[[52350,73014],[345,-384],[-64,-175],[-55,-939]],[[17993,67217],[-4,62]],[[51518,75526],[-2,-343],[-317,-376],[-506,-244],[-155,-189],[-507,-215],[-357,-69],[-397,-718]],[[18589,69464],[-125,150]],[[12566,64908],[4,-1]],[[12994,56272],[-116,290],[132,791],[-71,401],[77,137],[91,905],[365,241]],[[54716,84054],[-60,-194]],[[337,39269],[-55,-18]],[[4643,49921],[-31,54],[-1643,-671],[-69,-281]],[[36959,70786],[-205,-70]],[[1360,42688],[-35,53]],[[1325,42741],[-343,-77],[-281,266]],[[47910,84841],[-473,-135],[-118,-275]],[[19323,73313],[-146,183],[-182,-46],[-257,-460],[-45,-366],[-138,-29],[-341,-768],[-349,-1508],[-155,-383],[-438,-581],[-29,-578]],[[3867,35697],[183,-212]],[[45745,87045],[-448,-733],[-755,91]],[[1393,43926],[-52,-78]],[[3581,36019],[-27,7]],[[3554,36026],[-12,32]],[[3542,36058],[-126,211]],[[6572,61968],[210,291],[101,-858]],[[42417,69293],[202,100],[-11,718],[72,905],[-82,124]],[[3821,55220],[116,-411],[332,-126]],[[2974,42142],[-584,-310],[46,-520]],[[196,43529],[-30,419],[117,116]],[[17174,67109],[324,-40]],[[17700,66993],[28,-97]],[[48412,74314],[-105,-197]],[[4992,28050],[-128,1054],[-207,612],[-862,1247],[-387,264],[-136,296],[-146,599]],[[1755,44194],[-158,-776],[-5,-537]],[[52939,73810],[-198,-999],[-391,203]],[[3490,38329],[-575,-36],[-182,1325]],[[15543,43793],[-403,-303],[-75,-208],[28,-588]],[[2969,42163],[5,-21]],[[46576,73968],[-549,-323],[-585,-451],[-532,-559],[-212,-43]],[[5409,59015],[-607,-36],[-150,-146],[-304,55],[-223,216]],[[6301,59206],[-107,168],[-236,-204],[-482,-205],[-67,50]],[[10080,67700],[201,-308],[196,103]],[[10080,67700],[36,292]],[[46841,81182],[-274,-34],[-164,-240]],[[41221,81995],[246,205],[134,580],[319,-82],[212,160],[348,642]],[[2965,43483],[132,-97],[-123,-1244]],[[17280,65957],[-247,57],[-389,-111],[-93,141],[-54,484],[-263,329],[-149,45]],[[54743,83897],[-9,193]],[[38415,70635],[-18,-1203],[-140,-180]],[[22328,70956],[73,-384]],[[54442,85165],[-16,-62]],[[18051,66181],[-126,99]],[[5954,61141],[-105,350],[131,177]],[[28834,63006],[-136,190],[-264,1522],[-244,1251],[-268,567],[-10,807],[-119,1534],[-92,741],[122,3177],[135,352],[131,749]],[[39614,68629],[250,489],[-15,407],[331,34],[5,227]],[[53267,75023],[-594,142]],[[38664,63705],[250,-768],[400,-547]],[[50159,82705],[-113,-264]],[[5655,60215],[-126,-30]],[[6649,38710],[-424,265]],[[21966,55596],[-798,-252],[-632,-883],[-138,-451]],[[35103,73389],[-7,-29]],[[13557,58878],[904,509]],[[50787,87061],[3,26]],[[38664,63705],[5,3]],[[52826,77057],[209,-257],[182,-663],[-22,-548]],[[16082,67057],[3,-155]],[[36950,77133],[7,10]],[[13611,55581],[-220,294]],[[17953,67028],[-9,194],[295,-178],[20,-189],[-216,-667]],[[12644,53993],[-74,-216]],[[18043,66188],[8,-7]],[[4269,54683],[-416,-1924],[-179,-715],[-240,-711]],[[50588,86310],[127,-471],[177,-116]],[[21975,63459],[555,265],[464,331],[648,28]],[[40314,75312],[1053,-257]],[[46321,75966],[0,-6]],[[6301,59206],[-282,960],[161,307]],[[3434,51333],[-79,-420],[-395,-1311],[-134,-301],[-127,-754],[-152,-317],[-213,-1084]],[[13180,55426],[-49,-79]],[[37480,65600],[69,-344],[45,-1116],[56,-337],[137,16],[281,-292]],[[4180,40824],[-133,87],[-883,-73],[-4,105]],[[840,44654],[49,323]],[[1183,43580],[115,-313],[62,-579]],[[30213,60669],[25,328],[-325,554],[-21,344],[-346,310],[-175,-34]],[[2900,49023],[81,118]],[[13087,54907],[-29,221]],[[750,43189],[64,53],[49,633]],[[7532,66964],[229,-279],[36,-352]],[[5822,60550],[93,569],[-56,250],[118,329],[-43,296]],[[17436,67141],[187,224]],[[30417,61105],[-26,119]],[[6259,57102],[-249,977],[291,1127]],[[54460,84856],[-137,-136],[-167,307],[-738,-70],[-2,-156]],[[13067,55336],[20,-429]],[[47513,74657],[-74,-16]],[[47439,74641],[-3,2]],[[4659,59403],[-138,-505],[-173,-9],[-223,215]],[[27751,74700],[4,0]],[[40909,62392],[-220,-29],[-254,280]],[[47972,73598],[111,-298]],[[21753,62199],[-1473,1603],[-239,187],[-271,413]],[[18874,70973],[-359,-105],[-174,-224]],[[1557,41284],[-167,399]],[[43379,78823],[567,1],[229,-228],[13,-517],[541,-491]],[[47104,91824],[17,-210],[562,-743],[60,-380]],[[29416,62033],[1,-1]],[[4545,40692],[-180,44]],[[18461,67392],[340,-13]],[[5830,37996],[57,-876],[244,-316],[11,-387]],[[26004,55738],[7,7]],[[2335,43304],[-580,890]],[[13277,55458],[114,417]],[[54426,85103],[8,-7]],[[36978,77121],[-28,12]],[[51640,85732],[4,-380]],[[12994,56272],[24,37]],[[14761,42814],[-150,-545],[-438,-270],[-65,-160],[-856,-321],[-140,-321],[-276,-155],[-64,-961],[113,-396],[-9,-509],[80,-617],[160,-414],[85,-634],[-297,-280],[-222,-76],[-146,-388],[118,-165],[133,-650]],[[46441,75816],[-1,-10]],[[18275,67729],[18,271],[-222,12]],[[46112,72970],[389,-6],[65,147],[424,-45],[185,530]],[[5299,60065],[87,-363],[98,24]],[[14986,64345],[-899,-1091],[-129,-620]],[[18051,66181],[-163,-72],[-92,189]],[[38792,76277],[1105,-736],[25,-86]],[[47950,79259],[-583,1317]],[[18211,67333],[50,-478],[-216,-677]],[[42667,73026],[-433,343],[-816,-127]],[[48083,73300],[265,-841]],[[2979,37601],[-162,-485]],[[2244,45213],[-489,-1019]],[[50588,86310],[-130,-927]],[[50458,85383],[513,-120]],[[5299,60065],[-88,-75]],[[25885,56170],[-956,1717],[-1233,1640],[-601,524],[-512,965],[-575,767],[-226,390]],[[8130,40666],[-461,-299],[-347,-75],[-235,364]],[[5954,61141],[176,-301],[40,-327]],[[2327,43028],[-8,-240],[183,-571],[165,-880],[204,28],[281,-428]],[[47138,83366],[-74,-588]],[[1572,37322],[-108,688],[24,291]],[[18399,70144],[-295,-81],[-62,-623]],[[35012,73451],[14,-220],[-1668,-218],[-128,-196]],[[49773,76690],[-90,-351],[-408,-539],[-175,-502],[-208,-293]],[[40435,62643],[-18,571]],[[3434,51333],[-123,-67],[-82,-568],[-259,-974],[-224,-658],[-61,-481],[-174,-387],[-166,-716],[-11,-336]],[[45056,87625],[-52,281],[-554,-200],[-232,-522]],[[18215,59388],[509,-551],[496,-185],[521,-326],[131,-174]],[[44729,77588],[270,-191],[284,-382],[331,-644],[360,-353],[347,-58]],[[48393,85360],[7,-13]],[[5531,61410],[281,62],[-93,214]],[[5115,55088],[-182,-39]],[[4659,59403],[-313,379],[-288,-8]],[[9231,67773],[-824,-120],[-506,-260],[-36,-175],[-333,-254]],[[40066,74426],[161,59],[553,-137],[141,123],[696,-139],[-28,-390],[395,-132],[457,44],[234,119],[96,498]],[[13501,53906],[-126,364],[-315,100]],[[3212,31684],[-40,-274]],[[20235,53850],[-146,1357],[-30,1095],[-197,1863],[-303,954],[122,653],[35,939]],[[39526,67604],[-178,3],[-43,-479]],[[42480,83500],[384,524],[307,176],[213,362],[170,36],[348,344]],[[5337,30125],[550,218]],[[25893,56165],[-8,5]],[[4269,54683],[-340,128],[-270,-76],[-261,175],[-124,-60],[-558,110],[-813,-291],[-413,-379]],[[2667,48071],[-333,-925]],[[4255,48808],[15,-28]],[[54337,85251],[-9,140]],[[13472,59037],[6,5]],[[863,43875],[225,628],[-248,151]],[[4933,55049],[19,261]],[[13611,55581],[-220,294]],[[38985,74137],[664,139],[417,150]],[[46988,74456],[-167,157],[-221,949],[-84,-8]],[[4195,42236],[-191,27],[-206,285]],[[1546,42925],[5,221]],[[51819,86145],[359,42],[86,-190]],[[18045,66178],[216,677],[-50,478]],[[54593,82210],[-193,125]],[[12994,56272],[-7,37]],[[12983,56321],[-57,133]],[[12926,56454],[-217,649],[-128,184],[-807,753],[-748,455],[-523,166],[-554,498],[-220,289],[-465,318],[-237,-44],[-418,89],[-322,422],[-232,107],[-365,-131]],[[7652,59455],[5,-5]],[[44698,72592],[212,43],[532,559],[585,451],[549,323]],[[2595,40981],[68,355],[-161,881],[-184,571],[-82,655],[-450,411]],[[750,43189],[-76,-192],[46,-457],[136,-494]],[[45718,86324],[149,-470]],[[3627,46719],[-256,-862],[-192,-1163]],[[7165,66482],[119,-29]],[[4050,35485],[-233,220]],[[43971,98703],[92,-412]],[[48506,74981],[386,24]],[[24889,60313],[-4,1]],[[5375,59039],[30,-97],[552,230],[280,232],[-290,910],[35,129]],[[40185,69786],[325,-85],[213,176],[359,29],[231,-160],[30,-540],[1011,240],[63,-153]],[[16811,66998],[-173,-147]],[[17426,65610],[-137,345]],[[12994,56272],[397,-397]],[[18586,67710],[132,350]],[[6061,60934],[-108,196]],[[7158,47118],[-1,438]],[[46434,99493],[-70,506]],[[38535,60991],[-73,1351],[-128,231],[-15,992]],[[18461,67392],[340,-13]],[[7620,67421],[-88,-457]],[[2974,42142],[-400,-292]],[[5719,61686],[96,-207],[165,189]],[[8199,66683],[-409,-456],[-72,-251],[-151,41]],[[18042,69440],[-25,-79]],[[13060,54370],[-209,-78],[19,-177]],[[42667,73026],[-103,475],[-18,503],[152,17],[73,450]],[[13391,53909],[102,-20]],[[46949,75596],[0,12]],[[54434,85096],[-8,7]],[[46726,74312],[110,287],[152,-143]],[[26715,61453],[-463,-146]],[[5799,60345],[-94,-17],[-221,-602]],[[9005,62409],[-299,121],[-83,-109],[-469,-130],[-392,481]],[[13180,55426],[62,387],[149,62]],[[54738,84087],[-4,3]],[[50970,86129],[-75,6],[-108,926]],[[2066,32381],[31,85]],[[38911,76194],[-119,83]],[[46863,84008],[448,416]],[[22401,70572],[263,149],[440,-440]],[[18759,68579],[30,338],[-76,465],[-124,82]],[[2900,49023],[-275,-1134],[-291,-743]],[[51740,76730],[-139,-298]],[[4059,50357],[80,-322]],[[18045,66178],[-83,-298]],[[45657,89885],[350,1570],[-1,337],[209,873],[280,745]],[[18275,67729],[18,-378],[168,41]],[[44712,71615],[-104,-50]],[[46321,75960],[-100,-215],[-23,-745],[231,-524],[79,-541],[68,33]],[[5887,30343],[148,222]],[[49882,89726],[-396,-900]],[[5631,59934],[-147,-208]],[[1108,45906],[197,-383],[450,-1329]],[[44683,89032],[-81,50],[-427,-275]],[[44175,88807],[-477,-254]],[[6847,56371],[-360,469],[-88,290],[-344,632],[-180,658],[-333,376],[-58,930]],[[3126,32122],[-855,1295]],[[13391,55875],[-223,-65],[105,-218],[18,-651],[335,-805],[-133,-247]],[[7193,65883],[-9,-729],[-101,-200]],[[18430,69367],[8,-197],[-324,-153],[-57,-152],[-400,-99],[89,-857]],[[44698,72592],[-6,70],[-823,705],[-661,680]],[[47651,77106],[373,-388],[189,-388],[34,-640]],[[42763,74497],[1107,-1129],[823,-706],[5,-70]],[[48923,77323],[-463,-1337],[110,-711],[-64,-294]],[[19663,73112],[-24,153],[-316,48]],[[19698,68066],[60,-77]],[[19758,67989],[53,-350]],[[19811,67639],[156,-118],[27,-406],[314,-453],[52,-772],[138,-773],[-72,-525],[99,-472],[159,-191],[145,-420]],[[20829,63509],[117,-156]],[[20946,63353],[147,80]],[[21093,63433],[485,94],[204,-113],[357,99],[855,544],[648,26]],[[39800,73373],[498,-85],[200,173],[920,-219]],[[1786,43854],[13,244]],[[1799,44098],[-17,129],[462,986]],[[2672,44882],[-181,43],[-247,288]],[[17432,66593],[224,4]],[[5159,56943],[6,-1105],[92,-586]],[[28560,75358],[-218,-576],[-209,52],[-382,-134]],[[49486,88826],[717,-831],[584,-934]],[[13277,55458],[187,-110]],[[828,43866],[35,9]],[[7193,65883],[-9,-729],[-101,-200]],[[51458,87151],[-171,512],[-11,785],[84,542]],[[39326,67206],[-7,211]],[[39319,67417],[-5,215]],[[39314,67632],[0,60]],[[39314,67692],[-4,64]],[[39310,67756],[0,65]],[[39405,68109],[213,467]],[[39618,68576],[246,542],[-15,406],[332,34],[4,228]],[[13131,55347],[49,79]],[[640,45465],[72,144]],[[7216,61161],[29,-306],[-218,106]],[[37017,63499],[-43,29]],[[36974,63528],[-100,-63]],[[36874,63465],[-107,-14]],[[25910,73599],[-10,12]],[[2658,41332],[-222,-20]],[[12989,56243],[402,-368]],[[20235,53850],[-147,1357],[-29,1077],[-198,1881],[-303,954],[122,654],[36,938]],[[16811,66998],[677,175],[25,-95]],[[48696,71995],[446,55],[151,128],[-56,-1344]],[[4125,59104],[-180,313]],[[16346,67936],[-24,399]],[[48133,85818],[260,-458]],[[5980,61668],[29,-315]],[[52269,85987],[-5,10]],[[1592,42881],[5,537],[158,776]],[[42771,74471],[84,305],[815,697],[62,202],[215,31],[559,395]],[[7216,61161],[29,-307],[-218,107]],[[49819,82593],[-1,10]],[[8957,58671],[1,-10]],[[13391,55875],[-278,300],[-477,229],[-377,284],[-382,45]],[[11877,56733],[-152,-50],[-594,161],[-1032,662],[-400,562],[-701,646],[-478,325],[-196,23],[-436,424]],[[61269,58555],[16,231]],[[82071,61110],[-15,25]],[[94553,20387],[372,-286],[160,-269],[240,-73],[69,159]],[[81141,87173],[-34,-42]],[[80704,39224],[157,373],[198,0],[263,747]],[[83693,62133],[6,2]],[[41325,17490],[-5,0]],[[89981,37211],[38,-358]],[[44948,21513],[689,406]],[[87444,51158],[-5,-8]],[[67989,69410],[88,180],[-375,-197]],[[87463,51320],[98,-208]],[[78658,61221],[-244,384]],[[51079,11032],[206,0],[402,375],[172,310],[476,1]],[[83210,53145],[555,-106],[165,-138],[933,-458],[661,-903],[49,-1]],[[65314,37991],[25,112]],[[87223,36357],[405,-521],[281,-74]],[[79535,79256],[-19,47]],[[85306,35847],[-315,-178]],[[87459,51198],[-20,-48]],[[59731,50884],[4,-5]],[[85973,43508],[-158,173]],[[89649,31312],[-3,8]],[[87459,51198],[4,122]],[[56474,64233],[411,425],[53,485],[107,266]],[[68717,32135],[-94,-811],[368,-157],[73,95],[623,-140]],[[84451,93399],[49,509],[322,22],[5,267]],[[92869,27513],[174,628]],[[84790,44270],[87,57]],[[80238,85866],[-1,-4]],[[80368,81087],[-158,-25]],[[56360,18915],[-171,-112]],[[67356,32726],[15,-23]],[[61983,51806],[-243,29],[-24,-1114],[-289,-609],[-227,-50]],[[89748,27813],[-2,0]],[[85985,62806],[0,1]],[[83494,57341],[-75,-57]],[[83580,59963],[-1,-2]],[[86341,49943],[59,-299]],[[69935,74644],[-90,-366]],[[71464,52298],[-156,204],[-821,744],[-1131,109],[-107,-159]],[[89449,36217],[-31,81]],[[89646,31320],[-72,-154],[14,-643],[-170,-1114],[-92,-94]],[[83569,38109],[-238,79],[-200,461],[-308,192]],[[86921,59271],[2,1]],[[87489,50889],[-115,-104]],[[85047,45153],[24,65]],[[66680,41300],[333,-1796],[115,-1235],[22,-746]],[[60535,83853],[-14,-41]],[[71963,64460],[-8,5]],[[93264,28773],[7,-1]],[[72801,67387],[-2,0]],[[87561,51112],[-72,-223]],[[94446,19582],[313,-348],[92,-227],[546,-492]],[[83968,48320],[4,10]],[[59930,83353],[4,6]],[[37175,40170],[99,128]],[[85060,44194],[95,-32]],[[76277,37262],[-196,-182]],[[75718,70957],[-181,-62],[115,-708],[2,-460]],[[79280,89836],[-59,-203]],[[72475,64750],[-2,-9]],[[83532,56724],[-152,-437]],[[82865,88422],[-26,-328]],[[61898,75499],[51,70]],[[84661,94900],[-187,375]],[[69694,80662],[238,-205],[696,-110],[163,50],[345,403]],[[85748,38224],[137,54]],[[66955,36495],[54,55],[70,1146],[339,509]],[[64561,38231],[-293,19]],[[72869,66993],[79,-242]],[[84410,44347],[-2,277]],[[64724,37512],[-3,-4]],[[64449,34875],[3,34]],[[61629,84545],[10,-1]],[[76679,48480],[316,-425],[278,410],[273,742],[-8,117]],[[86677,50204],[-474,-324],[-334,147]],[[71808,30906],[40,-244],[-174,-68],[-155,-1349],[-201,-110]],[[60684,81632],[-940,95]],[[88236,38234],[27,-147]],[[66585,41784],[3,2]],[[83564,92130],[97,370],[110,-29],[37,378],[270,321],[19,187]],[[79650,79972],[21,300]],[[83612,56830],[0,10]],[[82339,59996],[3,3]],[[83984,59055],[-136,-44]],[[86166,42898],[-3,4]],[[49867,51774],[-249,-178],[-276,7],[-225,-627]],[[80237,85862],[-2,6]],[[67770,32964],[26,365],[-320,676],[45,797],[-206,261]],[[73545,66911],[-4,-12]],[[86193,45396],[-5,-3]],[[86188,45393],[-86,-174]],[[67374,45405],[227,-707]],[[84181,57209],[-3,-10]],[[80770,60431],[-174,30],[-553,-214]],[[85111,45828],[-61,-441]],[[79346,90258],[6,313]],[[83694,92166],[-130,-36]],[[82963,63069],[-6,-168]],[[84672,44851],[-138,-120]],[[67989,69410],[165,-293],[-8,-521],[203,-1126],[123,-355]],[[61518,38012],[0,4]],[[85466,50382],[9,-5]],[[88958,37773],[-7,-65]],[[61639,84544],[-13,130]],[[61626,84674],[15,368],[-174,450]],[[79890,29034],[214,-79]],[[80104,28955],[3,-1]],[[80107,28954],[298,-133]],[[87906,39716],[17,-35]],[[66555,79922],[60,-466]],[[54988,76947],[-90,-221],[-542,-739],[4,-471]],[[55177,73487],[-103,198],[-987,1128]],[[58090,83012],[234,671]],[[63924,36580],[-5,2]],[[84099,59090],[-1,0]],[[70591,48675],[-67,115]],[[85534,43459],[-2,19]],[[89967,38439],[97,526]],[[41320,17490],[0,-17]],[[78302,85914],[-2,-26]],[[77323,64942],[-282,27],[-467,-405],[-77,37]],[[84587,95117],[-55,14]],[[68401,69690],[0,-1]],[[63848,32860],[-15,-1215],[126,-194]],[[88096,38404],[-10,11]],[[71802,68461],[-37,19],[-299,-909]],[[84462,43977],[89,74]],[[93892,28013],[-317,103]],[[75654,69727],[163,-40],[507,297]],[[84383,26513],[-8,11]],[[84375,26524],[-1,2]],[[84374,26526],[-223,160],[-114,-279]],[[78185,37444],[-19,277],[144,625],[-7,314],[200,-162]],[[75509,74556],[-163,-1350],[-38,-582]],[[88945,36551],[169,46]],[[79407,80471],[-14,237],[302,300],[45,634],[117,755]],[[79857,82397],[141,130],[44,470],[387,-229],[373,103],[291,374],[124,851],[267,681],[384,1477],[83,666],[338,307]],[[90707,34880],[35,102]],[[40605,51217],[-78,2206]],[[73099,67763],[0,-165]],[[66588,41786],[-146,123]],[[83556,57867],[-84,7]],[[71895,65257],[-96,606]],[[55883,31784],[70,-37]],[[79495,56597],[923,-176]],[[80039,78260],[-5,-21]],[[88224,39121],[12,78]],[[64482,36303],[54,244]],[[47434,39858],[-489,435],[-349,480],[-149,393],[-584,744]],[[45863,41910],[-2,42]],[[45861,41952],[-3,22]],[[84072,55240],[2,-1]],[[80139,34104],[189,131]],[[78383,88954],[95,89],[79,595]],[[93846,28486],[-258,-254]],[[71214,64086],[520,-168]],[[71454,45709],[155,-48]],[[58111,74188],[882,611],[859,537],[516,190],[14,111]],[[89430,35239],[-65,-22]],[[83569,38109],[-2,-213]],[[89486,32047],[-301,122],[-23,434]],[[85532,43478],[-54,357]],[[78405,60885],[-149,220],[-272,32]],[[92770,24691],[360,622]],[[85904,40947],[253,-118],[211,-301]],[[91276,20215],[1,-17]],[[84358,35490],[-71,-190]],[[79999,78939],[186,5]],[[71301,31544],[-50,-680],[543,-134],[14,176]],[[76253,73498],[169,-843]],[[63523,27733],[1,-5]],[[71466,67571],[1,5]],[[79398,59281],[-4,447],[113,222]],[[82682,54845],[221,496],[142,39],[191,529]],[[64152,31385],[13,-685],[65,-605],[290,-113]],[[84697,44538],[-44,-92]],[[55267,24016],[30,1673],[-214,9]],[[64488,33425],[-482,134],[-141,-163],[-15,-542],[205,-100]],[[85885,38278],[-45,95]],[[65874,42190],[-86,8]],[[82103,54519],[410,321],[169,5]],[[74315,68461],[200,871],[381,1]],[[87870,39700],[-21,62]],[[82722,54833],[-40,12]],[[82722,54833],[-40,12]],[[76225,48804],[448,-343]],[[84334,46232],[-126,-69]],[[56313,67444],[-1,4]],[[81105,35369],[206,319],[88,-66]],[[85729,50651],[-1,6]],[[43681,49669],[-108,-282]],[[66061,38572],[16,-200]],[[82172,64064],[0,-1]],[[82821,58880],[91,-16]],[[56189,18803],[-119,-58]],[[56070,18745],[-245,-155],[-124,-309],[-422,29],[-190,-561]],[[55089,17749],[-431,-313],[-198,-281]],[[63471,65273],[-4,-24]],[[82682,54845],[167,17],[762,1114],[298,687]],[[86095,62698],[-1,0]],[[88073,38773],[-190,-461]],[[83999,92588],[-120,-493],[-81,-827]],[[66615,79456],[22,-100]],[[82123,65202],[1,-1]],[[81095,94264],[-2,-7]],[[81093,94257],[-34,-70]],[[85120,43207],[125,-20]],[[76733,39385],[-133,125]],[[73867,68525],[1,0]],[[62161,84368],[-385,-216],[-78,191]],[[73077,68060],[92,272]],[[57786,38616],[280,517]],[[82197,69161],[116,-9]],[[65064,77520],[-1,7]],[[66322,81891],[-49,260],[-364,126],[-230,233]],[[64342,35538],[-3,272]],[[88763,35021],[-120,500]],[[88209,51666],[14,238]],[[84747,44759],[176,-6]],[[86454,47776],[-140,432]],[[70464,71500],[-750,-230],[-434,-535]],[[77781,73081],[677,-495],[492,-501]],[[75727,36918],[169,-74]],[[64482,48877],[-13,-430],[304,-912]],[[67045,52515],[531,-1389],[510,-288],[455,-535],[328,-953],[347,-435],[621,-86]],[[85239,49984],[-103,17]],[[73451,68555],[-338,276]],[[73680,66955],[-90,276]],[[43466,13639],[51,-954]],[[64009,37525],[3,3]],[[64415,34641],[10,-59]],[[83859,91020],[59,165]],[[48503,42346],[39,1053]],[[81391,86266],[-157,-263]],[[95290,17434],[-62,-223],[99,-721],[255,179],[605,236],[248,-446],[-3,-235]],[[72601,67414],[198,-79]],[[79742,89941],[0,-6]],[[84074,55239],[-73,-90]],[[72574,72679],[166,-7]],[[72340,66237],[-11,257]],[[67738,33016],[32,-52]],[[76267,37022],[205,-426],[-87,-603],[-185,-182]],[[93507,28467],[4,0]],[[84588,96681],[-265,139]],[[73435,66602],[47,-5]],[[69488,44362],[-73,659],[-214,460]],[[83675,92166],[2,-1]],[[83677,92165],[223,-33]],[[72224,44528],[-30,458],[-110,1]],[[38164,18060],[71,-576],[47,-1354],[-177,-29]],[[85287,38846],[-159,193]],[[80041,72358],[-1,0]],[[86138,34509],[37,236],[-284,548]],[[85627,43029],[63,-173]],[[62042,36771],[226,-11],[305,-612]],[[64269,39007],[-278,225]],[[84748,95700],[-10,-6]],[[80534,90175],[-9,-4]],[[79724,60883],[-254,2]],[[87700,35109],[-277,739],[486,-86]],[[77978,34308],[-222,61],[-254,310],[-170,-20]],[[64481,33431],[2,-30]],[[51376,60666],[1,-11]],[[63647,44357],[472,-262]],[[81546,84125],[-93,-110],[-165,-853]],[[60888,50256],[48,16]],[[75734,42206],[225,-399]],[[82977,56505],[-109,-758],[-186,-902]],[[87050,58891],[-30,111]],[[81399,35622],[-88,67],[206,418],[171,119],[260,429]],[[85928,63214],[2,-2]],[[73731,42208],[166,-250],[266,85]],[[63026,48080],[-673,562]],[[64617,34976],[-164,-63]],[[79913,29118],[-91,-147]],[[69937,49444],[-70,-602]],[[85171,46907],[153,-127]],[[86596,38583],[-87,-358]],[[82977,56505],[-109,-758],[-186,-902]],[[89108,35190],[93,23]],[[55792,77129],[21,288]],[[83069,44382],[-140,-210],[-303,-79],[-413,209],[-1084,69]],[[75954,46881],[-980,40],[-442,139],[-239,-214]],[[78005,74212],[-5,-5]],[[82682,54845],[-1,-11]],[[82681,54834],[1,11]],[[82681,54834],[1,11]],[[82681,54834],[1,11]],[[55708,80760],[-8,-329]],[[84379,43949],[3,7]],[[79581,31643],[1,3]],[[89033,28034],[-11,6]],[[89022,28040],[-58,135],[-416,318],[-366,544]],[[80332,90657],[1,-15]],[[73489,67103],[-23,101]],[[80320,29424],[3,-2]],[[79041,57055],[444,-290],[10,-168]],[[64042,47593],[-521,286]],[[89217,36287],[-23,-25]],[[84917,39243],[-208,121],[-91,-214]],[[71840,29065],[357,-641]],[[81267,83090],[-139,34],[-87,-366]],[[79868,65699],[97,325]],[[70101,46695],[99,598],[144,362],[106,617],[141,403]],[[85996,62661],[1,-1]],[[88663,40035],[63,-255]],[[87850,39762],[20,-62]],[[95114,28501],[31,-115]],[[49628,41023],[-13,-574],[135,-76],[0,-437],[93,-294]],[[89561,34931],[-108,-10]],[[52562,52126],[29,-162],[-67,-1557]],[[86400,49644],[61,-275]],[[85021,49747],[115,254]],[[71246,66412],[170,915]],[[79214,64519],[-24,29]],[[80121,29538],[0,2]],[[85902,44872],[-6,155]],[[85896,45027],[-106,573]],[[81069,86766],[38,86]],[[67315,35063],[682,-188],[49,-151],[377,-109],[105,-214]],[[84793,42645],[112,-171]],[[84905,42474],[237,-101],[98,-254],[215,-93],[341,-1045]],[[85796,40981],[1,0]],[[85797,40981],[107,-34]],[[62609,84846],[78,-157]],[[84843,47901],[-174,-813]],[[59873,38546],[-175,21],[-104,424]],[[78492,59011],[315,376],[591,-106]],[[61285,58786],[1147,-65]],[[87810,52093],[2,-20]],[[61467,85492],[-230,-26],[-299,-206]],[[86461,49369],[213,-30]],[[84101,93382],[-4,-25]],[[57551,79706],[-190,-67]],[[80328,34235],[120,-215]],[[79504,42670],[138,13]],[[86877,50808],[10,14]],[[64011,37525],[-16,36]],[[80740,51804],[-12,9]],[[80740,51804],[-9,-19]],[[72231,72743],[-743,-569]],[[59979,85902],[112,-32]],[[89631,35120],[-61,-214]],[[84394,43900],[-11,75]],[[83029,88814],[-164,-392]],[[83827,90775],[32,245]],[[60788,84094],[-58,17]],[[71778,64362],[-174,120]],[[84428,42736],[34,-241]],[[75250,72317],[-222,-104]],[[85080,50250],[152,96]],[[85210,63889],[665,121]],[[61665,84463],[109,-63]],[[89239,36875],[249,240],[88,462]],[[81242,85677],[-3,0]],[[55177,73487],[1097,-1255],[337,-332],[276,19]],[[80255,88926],[-15,-18]],[[80407,82773],[1,-6]],[[80408,82767],[-209,-130]],[[85708,50668],[-1,5]],[[62144,84707],[-235,92]],[[85478,43835],[-55,161]],[[62196,84518],[-140,17]],[[84774,44966],[227,156],[27,-208]],[[63129,44688],[19,483]],[[74151,74395],[-278,-430]],[[45637,21919],[62,-112],[749,7]],[[53425,48858],[226,231],[1069,-87],[828,335],[482,345],[392,11]],[[80367,80141],[-3,0]],[[80364,80141],[-173,-438]],[[82571,86822],[-20,396]],[[71575,78059],[49,708]],[[86559,52963],[1,4]],[[89683,38546],[190,-73],[-60,-315]],[[72239,48056],[-171,-142]],[[79258,81882],[10,-695],[113,-313],[26,-403]],[[71751,79304],[-127,-537]],[[84227,95973],[176,-42]],[[71908,47449],[373,196],[1214,-268],[511,-278],[287,-253]],[[83958,61447],[3,1]],[[83659,58213],[4,24]],[[84615,44590],[-19,52]],[[64452,34909],[-37,-268]],[[76516,72269],[-94,386]],[[91119,33059],[2,2]],[[86294,41911],[-23,213]],[[61377,84276],[-5,-32]],[[52857,60388],[38,-674],[260,-1012],[692,-859],[46,-334],[129,-7],[405,-655],[612,-156]],[[80133,59674],[-735,-393]],[[78702,89378],[134,-47]],[[86294,41911],[323,-211]],[[93627,26124],[-150,236],[-313,182]],[[72442,67339],[87,-58]],[[79913,29118],[208,420]],[[50051,41889],[-134,-9],[-87,-860]],[[82682,48406],[320,-40]],[[72373,69771],[171,210],[587,-252]],[[85057,49508],[-35,239]],[[63292,51423],[-796,404],[-513,-21]],[[93289,25581],[37,140],[-212,599],[51,217]],[[93165,26537],[-1,5]],[[66201,53778],[-304,-936],[-160,-48]],[[79093,91260],[2,-258]],[[68472,67115],[-1,-10]],[[89784,35279],[24,-66]],[[58238,45969],[-85,12]],[[53359,36230],[34,-768]],[[57565,37082],[-103,-145],[-40,-1506],[-125,-245]],[[62094,67387],[14,-6]],[[85169,44976],[73,-87]],[[82016,88236],[-17,67]],[[75163,36741],[-82,374],[-264,2]],[[87050,58891],[10,-54]],[[55142,26271],[317,268],[63,438],[294,287]],[[60822,83836],[-2,70]],[[60820,83906],[-22,177]],[[60798,84083],[-68,28]],[[85164,62367],[117,356]],[[75922,63307],[232,270]],[[79399,61456],[-26,-39]],[[85169,44419],[-96,31]],[[90520,28027],[292,-338],[722,-579]],[[91534,27110],[-16,-60]],[[92829,31797],[3,-15]],[[85682,39927],[291,283]],[[57750,26296],[-279,49],[-1230,48],[-457,83],[-364,-93],[-9,-358],[116,-333]],[[85661,31159],[-151,-67],[-551,370],[-671,272]],[[69931,49449],[6,-5]],[[87754,39591],[72,66]],[[87827,39659],[-1,-2]],[[87826,39657],[44,43]],[[86472,60599],[-61,372],[-303,559],[-199,758]],[[89285,35179],[-113,-334]],[[86474,60448],[2,4]],[[81226,87912],[-206,56]],[[78353,68169],[202,-55],[201,302],[197,43],[175,296]],[[72632,35796],[-150,568],[145,196]],[[54187,38957],[324,-26]],[[82554,87219],[-1,-2]],[[82553,87217],[-2,1]],[[64925,38906],[-1,-1]],[[62503,84402],[-119,-33]],[[62164,82759],[5,161],[-227,367],[-167,865],[-110,311]],[[79507,59950],[-30,-44]],[[85396,54168],[-6,-21]],[[83513,57636],[-46,65]],[[80121,29540],[-25,30]],[[85561,36865],[327,-307]],[[87444,51158],[-274,632],[-301,-381],[32,-283]],[[80175,79643],[-48,-74],[-430,118],[-26,585]],[[76604,62403],[186,329]],[[86173,19444],[276,245],[306,-168],[632,-64]],[[84376,47988],[-113,-1144],[71,-612]],[[90072,57022],[-5,0]],[[83755,57883],[0,2]],[[86366,47564],[88,212]],[[60494,83747],[-8,19]],[[85308,44780],[-66,109]],[[94138,21664],[-354,794],[-354,1345],[-33,307]],[[81729,86938],[-203,-26]],[[81526,86912],[-14,-108]],[[79660,42761],[-18,-78]],[[83564,92130],[46,892],[381,360],[106,-25]],[[48486,21581],[89,-1],[5,-618],[394,-45]],[[73463,67734],[55,73]],[[89769,37693],[220,-57],[-8,-425]],[[83179,47914],[17,205]],[[62138,67944],[48,431]],[[85173,45008],[108,-45]],[[87789,54291],[281,-290]],[[64451,33974],[-53,-462],[83,-81]],[[72766,64759],[67,-416]],[[83848,59011],[0,-1]],[[51894,69348],[-683,-1100],[-907,-1531],[-160,-132]],[[68796,70674],[-317,-100],[-168,-323]],[[59731,50884],[4,-5]],[[82173,68700],[-354,-553],[-46,-463],[188,-171]],[[87627,39612],[127,-21]],[[83386,49066],[505,68],[314,-59],[927,139]],[[79860,28970],[244,-15]],[[80104,28955],[592,-82]],[[80696,28873],[693,-216],[160,74],[707,-139]],[[93532,28337],[43,-221]],[[85295,56187],[106,-353]],[[84774,44966],[-149,-157]],[[88184,39659],[242,404],[237,-28]],[[78005,74212],[5,1]],[[82271,69571],[-712,-492],[-486,-122]],[[85361,39263],[-59,373],[-537,-158],[-116,-196],[-252,-829]],[[46448,21814],[778,-177]],[[85038,45666],[73,162]],[[60258,38332],[7,-2]],[[78170,40974],[723,-585],[177,-258]],[[62852,29160],[55,816],[233,112]],[[62331,84630],[-4,3]],[[87060,58837],[534,-152]],[[80876,56151],[-5,9]],[[72866,67128],[-67,207]],[[89474,36651],[-9,-35]],[[85367,39187],[-80,-341]],[[72718,35734],[-44,-215],[145,-691]],[[79470,60885],[3,-668]],[[51634,20523],[462,-59],[558,205],[427,-422],[165,-15]],[[93627,26124],[-51,-362],[192,-195]],[[58332,48041],[0,-2]],[[58332,48039],[-112,-1647],[-67,-411]],[[81465,30374],[38,-238]],[[94008,23740],[49,-475],[144,-543]],[[77316,44824],[255,-104],[1181,-265],[233,10],[117,-245]],[[90026,56155],[-1,0]],[[82203,68704],[-30,-4]],[[67060,71110],[180,-21]],[[73395,67187],[-144,-26]],[[72329,66494],[-205,271]],[[63848,32860],[14,-473],[253,-43]],[[44004,29201],[-4,-15]],[[48945,55303],[2,0]],[[86059,62987],[1,0]],[[77526,54454],[-109,643],[-595,893],[-120,440],[-152,170]],[[57281,79260],[-459,-2],[-21,113]],[[57784,81474],[-46,-306],[-373,-515]],[[85961,35277],[-181,-37],[-289,261],[-500,168]],[[50027,60312],[-772,-36],[-186,-281]],[[88465,38319],[164,-367]],[[92869,27513],[2,-447],[128,-497],[165,-27]],[[84001,55149],[-333,-109]],[[88753,38544],[-33,-143]],[[70132,78526],[-886,254],[-193,164],[-562,95],[-91,-79]],[[84798,43527],[323,320]],[[90404,31511],[-131,-132],[-627,-59]],[[84600,45171],[50,-39]],[[81168,65390],[9,-8]],[[63477,40270],[-4,8]],[[74385,67086],[-115,262]],[[83755,57885],[155,-8]],[[63442,82168],[29,-273]],[[85053,44814],[-25,100]],[[83687,90222],[-35,393],[98,224]],[[72186,78118],[-611,-59]],[[48989,42314],[-67,499]],[[69107,51158],[42,24]],[[84798,43527],[322,-320]],[[64600,35243],[-94,-10],[57,567],[225,718]],[[85109,45841],[2,-13]],[[87870,39700],[149,-178]],[[83395,60303],[69,264]],[[84315,43038],[160,304]],[[84475,43342],[0,1]],[[84475,43343],[-85,560]],[[78383,88954],[209,-122]],[[66615,79456],[22,-100]],[[71812,30906],[-139,-310],[-39,-489]],[[84415,44625],[-5,-278]],[[59988,83370],[1,-2]],[[59989,83368],[-59,-17]],[[86341,49943],[-70,-415],[43,-1320]],[[80525,90171],[-51,-154]],[[67657,81708],[102,-18]],[[84381,43976],[-4,3]],[[82293,57914],[-69,-54],[-419,365],[-111,-66]],[[80535,90178],[-1,-3]],[[86877,50808],[22,240],[-212,156],[-339,-358],[-231,-99],[-248,-720]],[[83212,53133],[-2,12]],[[88720,38401],[18,180]],[[50569,61379],[77,-453],[-2,-716],[-80,-469]],[[72550,78159],[-249,288],[-418,64],[-308,-452]],[[80058,58603],[738,-303],[452,-418],[355,-564]],[[78492,59011],[261,403],[556,591],[24,-54]],[[64110,39795],[-336,-30]],[[63774,39765],[-1,0]],[[63773,39765],[-460,134]],[[69173,50680],[151,-565]],[[76279,46551],[-13,342],[400,341],[231,-564],[294,-1085],[125,-761]],[[67820,42393],[-760,130],[-272,111]],[[66378,37586],[-5,437],[-296,349]],[[64338,35811],[1,-1]],[[85927,63212],[3,0]],[[84111,57494],[-2,3]],[[84205,91996],[213,-56]],[[78280,83119],[225,389]],[[87975,39348],[-127,0]],[[92002,31325],[-3,3]],[[91999,31328],[-321,47],[-243,-140]],[[74488,66797],[-103,289]],[[88686,38391],[-3,4]],[[73634,68340],[-249,-188]],[[73045,32387],[103,947]],[[61386,84271],[294,109]],[[61680,84380],[-41,164]],[[84650,95631],[1,-3]],[[72886,48417],[-45,-271],[-229,-108],[-373,18]],[[84790,44270],[-42,-94]],[[69255,74146],[-16,24]],[[62076,74572],[-110,-5]],[[74212,68446],[103,15]],[[83289,57978],[-3,96]],[[84894,42444],[-82,-289]],[[93575,28116],[13,116]],[[47409,62622],[-521,-12],[-129,207]],[[66493,50227],[101,-4],[400,-1181],[9,-410],[205,-346],[227,-776],[-20,-319],[392,-818],[-1,-153],[303,-271],[135,-267]],[[73088,39125],[503,630],[148,273],[362,175]],[[88663,40035],[63,-255]],[[75839,62677],[-10,-3]],[[79507,59950],[-9,-40]],[[53338,23679],[116,-284],[555,-470]],[[71889,46198],[125,464],[-106,787]],[[76737,39263],[191,51],[1,-637],[-139,-810]],[[87509,59659],[-529,-506],[70,-262]],[[72592,45690],[276,1769],[265,1138]],[[56312,67444],[-94,-8]],[[84454,42418],[175,10]],[[83567,37896],[2,213]],[[62196,84518],[98,-147]],[[59594,38991],[-218,57]],[[73942,82537],[-503,129],[-274,230],[-131,267],[-448,562]],[[61576,42882],[269,-115]],[[50144,66585],[-1068,-944],[-451,-30],[-85,-113]],[[80334,80744],[-3,158]],[[71512,46186],[47,324]],[[83014,54572],[-292,261]],[[81084,85038],[-569,0],[-621,132],[-231,-201]],[[85360,54064],[-276,-4]],[[85532,43478],[-54,357]],[[53045,60959],[294,-312]],[[82099,61579],[-20,-4]],[[62506,84619],[-1,1]],[[82203,68704],[-30,-4]],[[69255,74146],[83,-465],[203,-108]],[[82295,38960],[-58,241],[-348,137]],[[78870,87490],[-11,-183]],[[79596,81245],[-109,357]],[[85071,44576],[2,-126]],[[62125,74274],[-49,298]],[[50643,44208],[-541,0],[-546,-466],[-349,-83],[-234,-236],[-431,-24]],[[78236,40153],[91,-370],[320,-414],[41,-189],[294,-300]],[[80371,89626],[0,-3]],[[81309,96163],[-43,-375]],[[53944,39012],[243,-55]],[[74925,66517],[-312,113],[-125,167]],[[84674,40620],[-4,-15]],[[83922,56866],[2,0]],[[69302,76437],[-37,447],[-219,697],[-534,127],[-123,364]],[[67759,81690],[0,3]],[[82900,35259],[383,-234]],[[67798,48663],[8,3]],[[94060,24605],[57,175]],[[83750,90839],[-121,52],[-73,478],[61,742]],[[83617,92111],[-53,19]],[[81429,63458],[-287,194]],[[50144,66585],[-18,35]],[[57073,79485],[215,-54],[-7,-171]],[[73357,66755],[-147,-137]],[[72740,72672],[287,-1]],[[74163,42043],[49,406]],[[73598,55844],[-928,-224],[-197,-247],[-450,-211]],[[65257,38100],[57,-109]],[[62424,84553],[37,40]],[[62424,84553],[0,-3]],[[94337,27675],[-161,174]],[[80221,72007],[9,1]],[[67219,81663],[8,104],[430,-59]],[[73124,69241],[108,-160]],[[58002,74146],[-10,7]],[[68548,44582],[38,314],[152,-42],[-109,299],[-192,58]],[[87404,40655],[-4,0]],[[87400,40655],[41,-254]],[[85470,50380],[-28,-531]],[[42372,27836],[-419,262],[-365,33],[-935,-36],[-565,116]],[[60181,76738],[-8,-7]],[[82682,48406],[0,2]],[[72023,55162],[-68,-141],[-130,-916],[-43,-661],[-102,-565]],[[87714,38602],[112,-39]],[[78020,61098],[-20,54]],[[65558,50968],[74,-312],[213,-265],[789,-519],[676,-632],[-7,-134],[349,-441],[146,-2]],[[41951,18274],[121,285]],[[45858,41974],[-1,-19]],[[85219,40150],[7,-345],[138,-549]],[[82031,61349],[48,226]],[[66989,44454],[-854,1695],[-194,188]],[[50760,50201],[228,-541],[370,-99]],[[87573,36599],[74,-14]],[[85107,45783],[4,45]],[[89570,34906],[-117,15]],[[76578,78892],[84,1137],[153,641]],[[88308,40528],[448,-350],[-15,-432]],[[79311,91992],[-2,3]],[[82391,48404],[-3,-638]],[[85324,46780],[52,12]],[[72632,35795],[-151,569],[109,290],[76,757]],[[72231,72743],[109,244]],[[83675,92166],[-111,-36]],[[86897,57600],[-2,0]],[[52015,30628],[5,19]],[[70893,50934],[-266,-1582],[4,-397]],[[70631,48955],[-40,-280]],[[81316,87512],[-283,177],[-13,279]],[[63444,25706],[-101,-3208],[317,-424],[-34,-176]],[[87214,51770],[-346,-361],[9,-601]],[[73274,67248],[-13,84]],[[79663,84969],[-136,-123]],[[68859,73160],[0,-4]],[[61639,84544],[-6,-49]],[[60955,84331],[-73,-5]],[[90000,37979],[2,7]],[[83554,47979],[15,32]],[[65558,50968],[74,-313],[213,-265],[517,-351],[18,-370]],[[73311,67658],[4,46]],[[82471,68768],[-3,-1]],[[82468,68767],[-28,-153]],[[64014,38889],[56,-414],[198,-225]],[[75839,62677],[83,630]],[[64231,66967],[-188,-623]],[[48621,34688],[825,693]],[[89981,37211],[149,78]],[[62159,75200],[-133,-214]],[[85401,44701],[-11,-5]],[[86537,60691],[47,-292]],[[45928,27954],[-1617,948],[-311,284]],[[85210,63889],[-416,-413],[-105,-223],[-309,-266]],[[86144,47344],[222,220]],[[80029,78298],[47,14]],[[85628,43025],[62,-169]],[[74270,67348],[-199,514]],[[73690,67299],[80,142]],[[82234,86121],[46,451],[92,-57]],[[85888,36558],[-165,-260],[-168,68],[-249,-519]],[[93523,28829],[323,-343]],[[89430,35239],[-65,-22]],[[87864,60208],[-355,-549]],[[41320,17490],[-1,7]],[[77552,68405],[119,-76]],[[60256,83518],[429,-579],[-1,-278]],[[82072,47665],[38,-395]],[[70707,67564],[2,0]],[[79700,93103],[117,269]],[[67941,45379],[235,-111]],[[73556,79879],[-402,379]],[[83022,54734],[-40,-11]],[[56218,67436],[23,539]],[[94874,28540],[240,-39]],[[83664,55075],[4,-35]],[[54610,24990],[44,326]],[[64579,39121],[10,20]],[[53756,39617],[-151,337],[-717,987]],[[52888,40941],[-552,818],[-564,762],[-670,1032]],[[79470,60885],[-5,-469],[280,-377]],[[85532,43478],[-287,-291]],[[66626,80222],[-339,545]],[[73889,70745],[-124,283]],[[63311,71338],[-16,37]],[[76668,71996],[122,-117],[144,-618]],[[63524,27728],[11,44],[995,-132],[163,89]],[[85471,42007],[61,467]],[[49966,15981],[435,4],[151,222],[397,55],[779,-19]],[[88848,44382],[7,5]],[[46435,53099],[-41,-276],[-279,-275],[-70,-230],[-330,-158],[-152,-430]],[[89986,38118],[-19,321]],[[89131,36138],[-2,-326]],[[81029,71312],[-1,2]],[[80273,82411],[-197,502],[-290,300],[-90,338],[38,379],[-216,641]],[[91079,31279],[-484,244],[-191,-12]],[[93619,26123],[-14,-147],[-475,-663]],[[80877,89478],[621,-486],[220,-331]],[[81537,64530],[-15,-561],[86,-219],[-153,-235]],[[79311,91992],[59,-12],[-92,-938],[243,-64]],[[40614,40960],[-827,-64],[-193,-112]],[[67770,32964],[-32,52]],[[68068,71024],[-174,338],[-562,464]],[[81449,94057],[444,-56],[884,-245],[273,100],[653,-164],[399,-213],[-5,-122]],[[87291,50458],[1,6]],[[35644,37576],[43,-27]],[[35687,37549],[-4,-52]],[[74800,43259],[-184,-200]],[[84334,46232],[-201,-113],[-525,-581],[-136,-522],[-230,-335]],[[72068,47914],[-331,-571]],[[83999,92588],[-99,-456]],[[70886,47971],[2,15]],[[73350,67767],[-21,77]],[[74985,66898],[1,-2]],[[73556,31676],[375,297]],[[85840,38373],[85,279],[465,-123]],[[85533,43460],[2,1]],[[70464,71500],[208,55],[996,756]],[[49196,32329],[89,170],[-6,1042]],[[80273,82411],[-275,93]],[[62870,52582],[0,1]],[[42512,26839],[202,-1176]],[[91959,31162],[43,163]],[[72815,66916],[-130,-20]],[[59935,82130],[366,6],[148,232]],[[88702,36510],[-131,-157],[22,-472],[-159,-606],[215,-555]],[[85769,44817],[-179,-82]],[[84674,40620],[171,335],[319,157],[671,-210],[69,45]],[[89670,33489],[-135,123]],[[61516,38067],[982,-268],[1487,-175]],[[82665,54863],[-233,-86]],[[61200,50062],[-115,-344]],[[79284,58579],[5,-374],[237,-1522],[-31,-86]],[[81134,86445],[104,-103]],[[62432,58721],[33,-8]],[[58632,39151],[-566,-18]],[[80328,34235],[120,-215]],[[85150,48709],[13,8]],[[73329,67844],[90,-255],[99,218]],[[64635,56441],[-158,129],[-409,-45],[-195,-486]],[[81363,83419],[-98,-331],[-139,38],[-275,-363],[-444,10]],[[78702,89378],[75,-31]],[[84176,58762],[0,-1]],[[62319,84542],[-2,-13]],[[75528,56760],[-595,-977],[34,-187]],[[60941,83427],[-119,409]],[[81484,63584],[-29,-69]],[[83988,57473],[0,-1]],[[80333,80563],[19,130]],[[77907,68640],[191,10]],[[53679,24598],[-91,-169]],[[87079,36004],[-223,-171],[-374,-117],[-290,102]],[[73499,66468],[-100,-87]],[[89413,33795],[122,-183]],[[60506,52195],[-1,-3]],[[73077,68060],[92,272]],[[79399,61456],[-73,224]],[[79326,61680],[3,9]],[[80808,92158],[0,-3]],[[67675,46995],[598,-14],[478,355]],[[89270,37531],[-335,-45]],[[90018,33392],[9,466]],[[82963,63069],[0,6]],[[76673,48461],[12,-1]],[[83991,57719],[-3,-246]],[[71386,63674],[1,0]],[[69726,64281],[65,315],[176,220]],[[61072,27321],[-158,-274],[-133,-769],[146,-305]],[[85471,54061],[5,118]],[[60449,82368],[227,-8]],[[64453,34913],[-1,0]],[[41527,16336],[-1,-2]],[[84885,55820],[410,367]],[[84815,36679],[274,380],[472,-194]],[[80704,39224],[-51,-47]],[[87537,51744],[-201,38]],[[80232,72011],[-13,559],[137,222]],[[73219,67170],[103,-10]],[[79337,89272],[45,542],[-102,22]],[[79075,64726],[8,113]],[[71780,63195],[-106,-441],[-203,-256]],[[60250,83534],[12,-11]],[[44004,29201],[-41,-380],[-672,-3245],[-212,-652],[-298,-694],[55,-2096],[-23,-50]],[[42813,22084],[-319,-904],[-74,-405],[-166,-54],[-321,-850],[-228,-865],[-550,-2352]],[[82844,57930],[-1,3]],[[87702,35102],[-2,7]],[[60865,68094],[-1,-1]],[[65167,38908],[1,6]],[[84793,42645],[0,0]],[[67989,69410],[-13,-14]],[[84581,94335],[17,451]],[[74636,77111],[-5,-1]],[[49830,41020],[215,-2]],[[95774,29011],[-359,-60],[-107,-127]],[[89201,35213],[-3,1]],[[66484,42530],[38,97]],[[68669,44208],[-184,-528]],[[67782,37567],[-78,-695],[-70,-139]],[[64927,38904],[-2,2]],[[60681,81011],[-5,1349]],[[85840,44317],[62,555]],[[82757,28427],[463,-461],[739,-255],[495,-332]],[[84454,27379],[333,-195]],[[84787,27184],[2,2]],[[69937,49444],[-170,367],[-275,70],[-168,234]],[[86349,57168],[87,-4],[309,-979]],[[89748,27813],[-238,333],[17,234],[-244,-52],[-250,-294]],[[84315,43038],[113,-302]],[[84397,38453],[-486,154],[-824,34],[-236,-130],[-190,86],[-565,-84],[-602,251],[-675,-155],[-282,196],[-156,-52]],[[80474,90017],[222,-173],[181,-366]],[[73385,68152],[-50,-54]],[[57227,79846],[-154,-361]],[[62613,52380],[-445,-365]],[[77482,69167],[742,-515]],[[86166,42898],[-3,4]],[[79399,92080],[13,178]],[[51288,63015],[-225,-360]],[[72718,35734],[-86,62]],[[49089,36101],[-55,-546],[163,-167],[249,-7]],[[74463,65189],[106,242],[-86,313]],[[86138,34509],[38,236],[-215,532]],[[87647,37102],[-263,240]],[[80015,65010],[-206,-684],[-190,-197],[-405,390]],[[73327,67881],[-1,66]],[[78443,39377],[15,0]],[[87623,51733],[48,-110]],[[63292,51423],[6,-245],[459,-577],[277,-719]],[[86642,37757],[742,-415]],[[57361,79639],[222,75]],[[82293,57914],[5,24]],[[64693,27729],[3,-2]],[[64306,37745],[-40,473]],[[78458,39377],[-155,-717],[200,-162]],[[71593,40801],[347,-69],[93,-204],[482,553],[559,516],[-1,270]],[[83220,57127],[180,-50],[15,-222]],[[60262,83523],[-12,11]],[[74163,42043],[49,406]],[[81607,57305],[-390,-188],[-543,171]],[[62317,84529],[54,-108]],[[72714,35738],[-16,-310],[-129,-28]],[[73522,66748],[-94,17]],[[64249,37961],[17,257]],[[70215,31025],[-528,97]],[[71495,46676],[151,179]],[[85784,46340],[-19,7]],[[71961,60923],[93,270],[-466,947],[-117,358]],[[60181,76738],[58,434],[612,739],[218,642]],[[72383,66364],[-54,130]],[[56244,47252],[501,941],[180,82],[300,707],[307,422]],[[69935,74644],[-34,178],[-477,-188],[-185,-464]],[[64617,34976],[-17,267]],[[60359,83700],[-64,-93]],[[70509,40017],[323,-66]],[[87633,43570],[0,-648],[-237,-674],[61,-687],[-139,-785],[85,-114]],[[87403,40662],[-3,-7]],[[87400,40655],[4,0]],[[93872,27726],[20,287]],[[47092,54311],[-4,-1450],[-499,169]],[[74318,65943],[165,-199]],[[85466,50382],[241,291]],[[60079,82588],[-1,110]],[[71963,64460],[-8,5]],[[70266,64062],[521,-427],[156,-365]],[[62220,68821],[-236,-107]],[[89434,36504],[-159,-161]],[[71842,43677],[349,86],[57,529]],[[76308,46600],[-252,308],[-102,-27]],[[63876,80674],[-53,-1101]],[[57534,49401],[-2,3]],[[72766,64759],[-291,-9]],[[77316,44824],[167,-107],[549,-972],[82,-338],[-63,-723]],[[71780,63195],[1,1]],[[84696,98203],[-67,-336],[-112,32],[-40,-440]],[[86193,45396],[18,62]],[[54466,39458],[-272,338]],[[81417,86518],[-26,-252]],[[62565,84339],[9,-6]],[[63868,39400],[-22,-129],[401,-160],[325,15]],[[81729,86938],[-9,43]],[[79859,65686],[9,13]],[[88227,19372],[284,180]],[[82485,86741],[-113,-226]],[[60703,49398],[-399,406],[-314,13]],[[64342,35538],[104,-624],[171,62]],[[78693,64844],[382,-117]],[[72389,71863],[94,584]],[[84565,96786],[-242,34]],[[87195,56169],[191,-245]],[[60252,83518],[162,-529],[-65,-96]],[[81055,86594],[79,-149]],[[82195,47240],[193,526]],[[77795,82108],[194,454],[125,723]],[[81331,65563],[153,-362],[53,-671]],[[50400,43184],[-8,9]],[[50760,50201],[-311,-219],[-108,-366]],[[83619,49634],[-206,-621]],[[65561,38778],[-48,81],[-588,47]],[[61226,86000],[-138,-125]],[[78702,89378],[-42,-494]],[[59658,51136],[100,257],[299,-47],[302,-253]],[[93578,28125],[314,-112]],[[72843,33984],[23,-65]],[[83948,60905],[-325,-476]],[[63510,41466],[479,-1611],[-16,-270]],[[63973,39585],[-1,-1]],[[63972,39584],[19,-352]],[[77809,62030],[-201,33],[-288,295]],[[82031,61349],[48,226]],[[80320,29424],[-199,116]],[[76642,63014],[148,-282]],[[92832,31782],[-2,19]],[[63765,40957],[-255,509]],[[62573,36148],[40,-305]],[[84462,43977],[-80,-21]],[[42757,53812],[82,13]],[[74939,78942],[-182,-261],[-160,-713]],[[82339,59996],[0,-1]],[[85078,44705],[-69,543]],[[89928,37800],[53,-589]],[[57128,66599],[-311,-437],[149,-175],[7,-531],[72,-47]],[[82630,68778],[-5,-3]],[[82625,68775],[-54,-5]],[[69255,74157],[3,-4]],[[74660,67480],[1,4]],[[64561,38231],[222,-84],[50,-494]],[[84397,38453],[498,20]],[[78696,39819],[127,241],[247,71]],[[72186,68399],[-384,62]],[[82534,86737],[-315,32],[-490,169]],[[76548,72123],[-32,146]],[[69201,45481],[-45,-562],[-127,-420],[-481,83]],[[40605,51217],[19,-825],[88,-638],[56,-1581],[33,-194]],[[52015,30628],[0,0]],[[93130,25313],[-1,5]],[[61826,55843],[592,249]],[[85815,43686],[-283,-208]],[[87499,58117],[99,-338]],[[93129,25317],[0,1]],[[79598,76376],[-23,-459],[-438,-500],[-502,-332],[-84,-258],[-394,-571],[-144,-41]],[[73731,42208],[-589,-544],[-69,203]],[[80458,81811],[358,-36]],[[82878,58750],[-2,3]],[[84798,43527],[322,-320]],[[73274,67516],[1,81]],[[61953,65308],[-123,-406]],[[72745,68162],[145,108]],[[76308,46600],[-15,329],[702,1126],[-316,425]],[[84097,93357],[-18,-188],[-270,-321],[-37,-379],[-110,29],[-45,-387]],[[83617,92111],[-53,19]],[[62354,84591],[-35,-49]],[[85803,63971],[72,39]],[[87719,52136],[189,259],[160,-84]],[[68474,67114],[455,-80],[401,-258],[271,-501],[-17,-412],[457,-628],[-20,-318]],[[51033,62540],[-102,-233],[463,-108],[-7,186]],[[44000,29186],[0,-204],[-232,-551],[-786,-558],[-608,-34]],[[42374,27839],[-2,-3]],[[85873,64006],[2,4]],[[92830,31793],[2,-11]],[[82757,28427],[463,-460],[739,-254],[496,-333]],[[84455,27380],[332,-195]],[[84787,27185],[2,1]],[[95397,18515],[-65,-146],[55,-636],[-97,-299]],[[87499,58117],[-29,21]],[[83069,44382],[-139,-212],[-305,-74],[-399,206],[-540,67],[-465,-21]],[[91689,31537],[-17,-240],[-237,-62]],[[78492,59011],[315,375],[591,-105]],[[73428,66765],[-71,-10]],[[87848,39753],[1,9]],[[89823,35144],[14,-229]],[[87318,52483],[-155,148],[-70,-289],[-851,-734],[-421,60],[-248,-129]],[[78602,76101],[231,210],[237,35],[258,-126],[270,156]],[[62055,84538],[-143,135]],[[61868,37764],[3,-5]],[[67240,71089],[166,-221],[75,-404],[299,-744],[-78,-327]],[[89282,35925],[-106,-291],[109,-455]],[[64479,48884],[3,-7]],[[62353,48642],[-5,12]],[[72339,72989],[1,-2]],[[60081,50678],[317,-344]],[[69725,64281],[-341,50],[-609,343]],[[90018,33392],[-298,-175]],[[89720,33217],[-3,0]],[[84996,28022],[-33,13]],[[71213,64089],[1,-3]],[[72365,68230],[-256,1354]],[[59994,83367],[-5,1]],[[59989,83368],[-59,-17]],[[62161,84368],[35,150]],[[84064,91561],[-103,-245]],[[71623,78767],[1,0]],[[85132,49214],[176,299],[340,144],[221,370]],[[87623,51733],[96,403]],[[78658,61221],[-253,-336]],[[86449,26790],[0,-8]],[[86449,26782],[1,-3]],[[86450,26779],[1,-7]],[[86451,26772],[-7,-67]],[[86444,26705],[-3,-36]],[[86441,26669],[-167,-821],[-207,-588]],[[86067,25260],[-155,-742]],[[85912,24518],[-2,-1]],[[85395,38459],[353,-235]],[[84843,47901],[94,956],[195,357]],[[88209,51666],[-141,645]],[[61473,64344],[-139,42],[-829,597],[-462,254],[-1022,692],[-561,233],[-612,366]],[[88720,38401],[32,142]],[[89610,35862],[-4,-92]],[[84738,95694],[125,12]],[[85815,43686],[25,631]],[[86655,40696],[1,1]],[[86656,40697],[59,0]],[[73419,69053],[-70,646],[-804,281],[-436,-396]],[[58066,39133],[-8,932]],[[55825,31457],[-24,-956]],[[56312,67448],[0,-4]],[[64481,33431],[-475,129],[-223,-221],[65,-479]],[[85815,43686],[-283,-208]],[[77280,64954],[-168,147],[-117,558],[-221,526]],[[88734,38115],[-29,201]],[[71903,82338],[-142,28]],[[88175,37898],[95,-168]],[[72574,72679],[453,-8]],[[53468,29042],[-9,1]],[[74488,66797],[15,176]],[[75640,69995],[12,192],[-201,1086],[-97,136]],[[72948,66751],[-74,127]],[[81036,86401],[33,365]],[[87667,51722],[2,-1]],[[68960,68826],[-829,364],[-142,220]],[[85340,39255],[27,-68]],[[87875,39787],[-27,-34]],[[89462,36615],[3,1]],[[70715,29485],[49,-342],[-134,-1519],[-49,-882]],[[88935,37486],[-456,-57]],[[78421,39440],[37,-63]],[[78051,42684],[1453,-14]],[[75922,63307],[155,-216],[549,-423],[164,64]],[[79774,80086],[-103,186]],[[54346,25322],[21,572]],[[73124,69241],[-11,-410]],[[79470,60885],[-5,-469],[280,-377]],[[43689,18521],[1656,80],[154,-69]],[[78616,66357],[-27,-684],[98,-395],[215,-224]],[[40293,16229],[0,25]],[[91868,30323],[268,187],[338,-157]],[[66477,78991],[-32,-501],[272,-430]],[[92830,31801],[-1,-4]],[[80290,88932],[28,252]],[[80912,86308],[-140,-464]],[[90002,37986],[-3,0]],[[75839,62677],[765,-274]],[[78777,89347],[67,70]],[[90699,24064],[-643,-213],[-156,-297]],[[89482,54706],[-161,-304]],[[60143,83612],[-138,95],[-193,-202],[-336,-567]],[[79913,29118],[-53,-148]],[[84643,95300],[95,394]],[[78702,89378],[-41,-495],[104,-347],[105,-1046]],[[79498,59910],[9,40]],[[64225,77572],[-24,-163],[414,-1662],[72,-94]],[[73493,69059],[-74,-6]],[[50092,61470],[24,20]],[[87854,41184],[272,-237],[85,-298]],[[88211,40649],[97,-121]],[[81729,86938],[20,227],[-239,277]],[[74662,70473],[-54,299],[73,1151],[569,394]],[[85878,23898],[34,619]],[[85912,24517],[-2,0]],[[88910,37871],[41,-163]],[[81239,85677],[10,-8]],[[61595,82775],[-120,-253]],[[80221,72007],[9,1]],[[74337,81920],[-395,617]],[[67989,69410],[97,-93],[423,268]],[[45992,64118],[333,-343],[141,-472]],[[85888,36558],[989,-75],[346,-126]],[[82977,56505],[134,-353],[253,167]],[[85568,43261],[-35,199]],[[86877,50808],[-9,601],[157,166]],[[62231,74138],[107,-833],[-27,-415]],[[87937,38565],[-111,-2]],[[89928,37800],[-352,-223]],[[80318,89184],[65,296]],[[85816,43681],[4,2]],[[85701,62569],[-7,-3]],[[89608,35852],[-2,-82]],[[63988,37347],[-3,277]],[[85355,39257],[6,6]],[[87602,40687],[-190,-43]],[[87412,40644],[-8,11]],[[81583,85551],[-63,-245]],[[73545,66911],[-4,-12]],[[89576,37577],[-306,-46]],[[74318,65943],[-27,-168]],[[71136,80800],[149,194],[188,875]],[[73099,67763],[3,-15]],[[68364,69802],[37,-112]],[[94117,24780],[8,2]],[[85875,64010],[-75,-739],[-180,-838],[-47,-837],[43,-576]],[[49852,61211],[240,259]],[[90000,37979],[1,-2]],[[88212,51936],[-128,11]],[[69672,42920],[-105,-1508]],[[48974,20917],[-211,-46],[-49,-499],[-174,-100],[-13,-1253]],[[78856,33146],[-237,313]],[[89646,31320],[55,506],[233,715],[4,230]],[[71598,82085],[-1,9]],[[83069,44382],[403,633],[137,523],[561,602],[335,-305],[-97,-1211]],[[77280,64954],[421,-380],[873,310],[119,-40]],[[84798,43527],[-327,-181]],[[93575,28116],[3,-5]],[[61898,75499],[-45,59]],[[61278,58787],[7,-1]],[[83937,58299],[54,-580]],[[61774,84400],[22,47]],[[89270,37531],[-88,-1]],[[80099,78204],[-65,35]],[[63392,82168],[1,5]],[[53672,71274],[64,-338],[534,-140],[121,-207]],[[52576,71516],[-286,-1291],[-396,-877]],[[50126,66620],[-60,522],[-297,1314],[-177,952],[-368,1000],[45,353]],[[55501,84151],[-290,532],[-751,173]],[[78486,85871],[1,8]],[[79924,86102],[-123,248]],[[67619,65213],[-3,4]],[[81071,93743],[-154,70],[-373,-519]],[[85045,61981],[3,-1]],[[60316,38369],[-1,6]],[[41723,53729],[-514,-34],[-678,-123],[-4,-149]],[[89012,36332],[-91,38]],[[85237,38717],[130,470]],[[80791,87585],[57,323],[140,119]],[[79644,88372],[340,45]],[[41125,16636],[24,16]],[[42143,17394],[-1,1]],[[42142,17395],[1,4]],[[42143,17399],[0,-5]],[[41817,18336],[-15,-37]],[[73796,72489],[-769,182]],[[76223,65048],[-136,125]],[[81061,94169],[-144,-356],[154,-70]],[[82165,60329],[-208,403]],[[85753,62654],[-7,-19]],[[84408,44624],[7,1]],[[84408,44624],[7,1]],[[84408,44624],[-4,-6]],[[84523,45061],[-60,-35]],[[84514,45926],[-66,-508],[80,-348]],[[84528,45070],[-5,-9]],[[84600,45171],[-72,-101]],[[84600,45171],[17,92]],[[85395,44608],[-5,88]],[[85390,44696],[5,-88]],[[82407,65939],[-18,-608]],[[82389,65331],[2,-3]],[[83035,65020],[1,1]],[[71480,63821],[-76,-397]],[[71789,64353],[-11,9]],[[74692,67590],[44,433]],[[74661,67494],[31,96]],[[77059,76025],[2,-8]],[[80206,73390],[-273,-304],[-16,-214]],[[76436,76141],[625,-124]],[[77061,76017],[-2,8]],[[77061,76017],[820,-318],[210,33]],[[78302,85914],[184,-43]],[[78302,85914],[185,-42],[224,262]],[[78486,85871],[267,326],[106,1110]],[[81301,85551],[-96,-108]],[[81301,85552],[0,-1]],[[80673,89195],[-156,-220]],[[78711,86134],[42,64],[106,1109]],[[84775,92962],[-338,246],[14,191]],[[66588,41786],[92,-486]],[[61688,61384],[-111,133],[-546,91],[-46,122],[-487,150]],[[68381,81259],[269,-251],[525,-78],[519,-268]],[[68337,81462],[44,-203]],[[73594,42833],[-25,-209],[162,-416]],[[87041,34104],[162,-241],[70,-571]],[[68381,81259],[-140,136],[-194,-556],[63,-1094],[290,-785]],[[68381,81259],[1,-9]],[[80704,39224],[-221,-207],[-468,-1178],[21,-72]],[[76674,35184],[52,433]],[[76726,35617],[11,146],[-281,570],[17,263],[-129,396],[-160,109],[-245,-453]],[[76674,35184],[52,433]],[[84408,44624],[-114,-115]],[[84415,44625],[359,341]],[[80439,29952],[-119,-528]],[[89958,35567],[9,-178]],[[89745,35339],[39,-60]],[[88945,36551],[-243,-41]],[[88702,36510],[310,-178]],[[84149,62204],[231,783]],[[89967,35389],[41,-251]],[[89142,33257],[115,459],[156,79]],[[89162,32603],[-20,654]],[[90060,34400],[438,267]],[[90618,35038],[-113,-492],[-453,-212]],[[89912,35163],[140,-829]],[[89606,35770],[43,-116]],[[89757,35512],[-151,258]],[[89791,35288],[-34,224]],[[89972,35296],[-60,-133]],[[89972,35296],[-60,-133]],[[89745,35339],[39,-60]],[[89570,34906],[86,-145]],[[89656,34761],[48,-60]],[[89704,34701],[133,214]],[[88702,36510],[219,-140]],[[89580,36135],[-88,4]],[[89580,36135],[-88,4]],[[89580,36135],[-1,-138]],[[89791,35288],[176,101]],[[89920,35353],[-129,-65]],[[89912,35163],[8,190]],[[89967,35389],[-47,-36]],[[89457,35778],[3,-228]],[[89433,35246],[27,304]],[[88416,39263],[56,-329]],[[88472,38934],[-56,329]],[[89382,36087],[-24,-76]],[[89704,34701],[60,-147]],[[89862,34768],[-98,-214]],[[89837,34915],[25,-147]],[[89573,34547],[-32,-261]],[[89524,34497],[17,-211]],[[89524,34497],[-122,90]],[[89541,34286],[145,-18]],[[93944,26930],[130,-60]],[[93944,26930],[-64,-261]],[[93081,25510],[-174,161]],[[93277,25125],[-196,385]],[[57297,35186],[-808,24]],[[78300,68569],[-44,129],[483,501]],[[78739,69199],[14,19]],[[78753,69218],[-438,96],[-312,-195],[-192,38],[-419,-174],[-51,-653]],[[88362,39405],[-83,118]],[[89522,36626],[-29,-69]],[[83750,90839],[62,614]],[[73849,72580],[48,278]],[[73897,72858],[122,915]],[[73796,72489],[4,1]],[[73849,72580],[-53,-91]],[[75410,69348],[-197,-27]],[[41723,53729],[0,-9]],[[41723,53729],[0,10]],[[48974,48831],[-86,-178]],[[48888,48653],[-277,-184],[-735,-773],[-338,-127],[-429,-14]],[[59741,81687],[3,40]],[[80036,37767],[-208,-215],[-279,-815],[-280,-210]],[[64963,74629],[177,-177]],[[65236,74747],[-389,376]],[[65140,74452],[96,295]],[[65160,75828],[-313,-705]],[[65140,74452],[405,-163],[602,-454],[277,-289],[326,106]],[[64812,74698],[151,-69]],[[64687,75653],[-8,-444],[133,-511]],[[82165,60329],[2,0]],[[85395,44608],[-7,-77]],[[85388,44531],[7,77]],[[89837,34915],[8,5]],[[89845,34920],[67,243]],[[89649,35654],[108,-142]],[[89912,35163],[140,-829]],[[89402,34587],[-12,202]],[[89686,34268],[78,286]],[[89541,34286],[-76,-254]],[[89390,34789],[71,133]],[[94176,27849],[-118,-487]],[[94158,27050],[18,799]],[[94074,26870],[38,145]],[[94158,27050],[18,799]],[[41817,18333],[0,3]],[[88388,53229],[-110,-123]],[[84127,62114],[22,90]],[[84149,62204],[4,-2]],[[85048,61980],[116,387]],[[38105,16101],[401,-231],[264,43]],[[83094,63887],[39,905],[-98,228]],[[85420,39453],[-428,-104],[-75,-106]],[[85395,38459],[-158,258]],[[55776,77127],[0,-14]],[[55776,77113],[-407,-353]],[[89358,36011],[-182,-377],[109,-455]],[[86783,34761],[35,-243],[223,-414]],[[86783,34761],[-390,-407]],[[40293,16229],[-143,-102],[-1249,-135],[-131,-79]],[[38165,18044],[-1,16]],[[81606,88198],[186,-214]],[[41320,17490],[5,0]],[[81083,93539],[-12,204]],[[85243,44889],[65,-109]],[[66962,76921],[-1,-360],[-187,-1896],[-24,-1013]],[[85281,44963],[-38,-74]],[[84408,44624],[-114,-115]],[[82644,61731],[-1,-1]],[[85779,62746],[-26,-92]],[[71955,64465],[146,1],[-38,-435]],[[84600,45171],[17,92]],[[82483,65460],[84,-320],[469,-119]],[[82483,65460],[84,-320],[468,-120]],[[83036,65021],[177,346],[-46,411]],[[80206,73390],[-273,-304],[-16,-214]],[[79025,78154],[-238,-449],[-297,-354],[-325,-154],[-18,-198]],[[73466,67204],[-71,-17]],[[73355,67357],[11,71]],[[73528,67228],[-62,-24]],[[73261,67968],[-8,-35]],[[72117,66749],[7,16]],[[50583,61379],[-5,-1]],[[69619,78123],[1,0]],[[59740,81683],[1,4]],[[64755,73719],[5,-1]],[[64755,73719],[5,-1]],[[64755,73719],[5,-1]],[[64760,73718],[380,734]],[[64760,73718],[82,338],[-30,642]],[[82339,59996],[-174,333]],[[86035,56450],[-146,-204]],[[73355,67357],[-2,-1]],[[73352,67298],[3,59]],[[76087,65173],[-113,113]],[[55792,77129],[-16,-2]],[[86745,56185],[-621,365],[-89,-100]],[[48156,14611],[1,-5]],[[41320,17473],[562,-96],[-7,-370],[194,-11],[88,-430],[16,-505],[325,-390],[983,87],[559,-158],[952,54],[560,100],[-2,179],[434,19],[8,-166],[730,32],[4,-337],[167,-333],[612,10],[309,-128],[134,-388],[208,-31]],[[85767,62633],[-14,21]],[[88220,39533],[-36,126]],[[82645,61730],[-1,1]],[[88362,39405],[-83,118]],[[89678,36744],[-156,-118]],[[50578,61378],[-9,1]],[[78481,90329],[17,-336]],[[81792,87984],[224,252]],[[85420,39453],[-428,-104],[-75,-106]],[[66680,41300],[332,-1796],[116,-1235],[22,-746]],[[83812,91453],[88,679]],[[68244,45682],[193,-471]],[[88279,39523],[-95,136]],[[76726,35617],[12,146],[-281,571],[16,262],[-206,426]],[[81239,85677],[62,-125]],[[88278,53106],[-134,-143],[-141,-441]],[[42142,17395],[-149,-15]],[[75213,69321],[-317,12]],[[43618,68804],[1094,-1025],[547,-205],[130,-244],[-5,-485]],[[91293,20214],[166,-129],[111,-313],[63,-629],[-144,-556],[66,-273],[-248,-588],[141,-846],[-37,-236],[-402,-621],[-127,-369],[-278,-175]],[[86173,19444],[-11,-133]],[[86173,19444],[-12,-133]],[[64004,37979],[-19,-355]],[[76006,81673],[107,147]],[[85120,43207],[74,213]],[[86169,19786],[480,-216],[273,-665],[267,-487],[414,-495]],[[42283,63606],[-652,-4]],[[50126,66620],[-60,522],[-297,1314],[-177,952],[-368,1000],[45,353]],[[83413,49013],[-262,-572]],[[81447,61194],[1,0]],[[56754,74727],[-691,1483],[-287,903]],[[55776,77113],[0,14]],[[55776,77127],[-263,884],[-188,805]],[[55325,78816],[-209,874],[15,622],[-109,259],[-419,1555],[-25,1032],[53,616],[112,123]],[[87210,37807],[-417,432],[-69,-70]],[[38783,12033],[-55,-8],[73,-1377],[-75,-142],[23,-503],[-123,-15],[-78,-570],[82,-80]],[[71136,64204],[-227,73]],[[71134,64188],[2,16]],[[71213,64089],[-77,115]],[[8647,91572],[-156,395]],[[8491,91967],[44,-86]],[[61438,74960],[73,261]],[[8652,91900],[-75,-28]],[[8591,92052],[31,-73]],[[8622,91979],[30,-79]],[[71872,64649],[-94,-287]],[[61829,75105],[-111,-362],[-170,267],[56,397]],[[55187,27245],[570,66]],[[55757,27311],[59,-47]],[[52021,27839],[-28,318],[-1438,-135]],[[55187,27245],[-515,191]],[[86449,26790],[254,434],[287,133],[444,-16],[363,133],[236,-109],[531,-83]],[[88564,27282],[1,-1]],[[88565,27281],[183,-28]],[[86449,26790],[2,-5]],[[86451,26785],[1,0]],[[86452,26785],[252,438],[286,133],[444,-15],[363,132],[411,-178],[355,-14]],[[88563,27281],[2,0]],[[88565,27281],[183,-28]],[[86308,40551],[-129,257]],[[86179,40808],[74,780]],[[86179,40808],[-120,-882]],[[85471,42007],[-3,-14]],[[86656,40696],[327,-722],[180,240]],[[86791,40350],[257,-469]],[[86348,40501],[443,-151]],[[87048,39881],[301,-561]],[[87349,39320],[-365,654],[179,240]],[[87349,39320],[108,-311]],[[87457,39009],[-108,311]],[[87651,38865],[-194,144]],[[87457,39009],[194,-142]],[[87651,38867],[0,-1]],[[87651,38867],[124,-144]],[[87775,38723],[-124,142]],[[87866,38634],[-91,89]],[[87883,38312],[54,253]],[[85471,42007],[-3,-14]],[[61438,74960],[236,-136],[283,-518],[9,261]],[[93264,28773],[-299,649]],[[92832,31782],[-72,-467]],[[92760,31315],[0,-1]],[[92760,31314],[-93,-442],[-193,-519]],[[92832,31782],[-74,-467],[-291,169],[-273,-36]],[[81852,30129],[102,7],[472,395]],[[87441,40401],[-37,254]],[[87608,40686],[248,30],[-7,454]],[[87749,40100],[-308,301]],[[87608,40686],[-196,-42]],[[87412,40644],[-8,11]],[[74284,46826],[-178,-16],[-118,-1413]],[[91832,30223],[-355,-91],[-32,-130]],[[91445,30002],[-53,-224],[148,-624]],[[87890,39942],[-71,322]],[[87799,40350],[20,-86]],[[88184,39659],[-261,22]],[[88184,39659],[-273,173]],[[87911,39832],[-21,110]],[[86178,42911],[-12,-13]],[[86183,42699],[-44,96]],[[86166,42898],[-27,-103]],[[71646,46855],[213,246],[51,296],[-173,-54]],[[86178,42911],[-252,516],[47,81]],[[72627,36560],[332,305],[316,-72]],[[75179,37587],[-345,-106],[-17,-364]],[[74399,42520],[-187,-71]],[[85687,44273],[-147,-27]],[[85590,44735],[-79,-265]],[[85511,44470],[79,265]],[[85687,44273],[-240,131]],[[85840,44317],[-153,-44]],[[85840,44317],[-153,-44]],[[85840,44317],[-153,-44]],[[85840,44317],[-153,-44]],[[85446,44607],[144,128]],[[85446,44607],[-33,-6]],[[85820,43683],[-67,245]],[[85107,45783],[82,132],[407,-519],[186,-554]],[[85782,44842],[0,-1]],[[85782,44841],[0,0]],[[85782,44841],[-1,-1]],[[85781,44840],[-12,-23]],[[86710,45739],[-229,-281],[-288,-62]],[[86193,45396],[-5,-5]],[[86188,45391],[-86,-172]],[[86193,45396],[-5,-5]],[[86188,45391],[-86,-172]],[[86193,45396],[-5,-4]],[[86188,45392],[-86,-173]],[[86006,45953],[187,-557]],[[86193,45396],[18,62]],[[86102,45219],[109,-40]],[[86710,46349],[-543,-187],[-161,-209]],[[86710,46349],[-543,-187],[-161,-209]],[[84825,45005],[-2,1]],[[85006,45123],[-183,-117]],[[59370,39384],[6,-336]],[[62359,26300],[-547,-171]],[[71301,33404],[182,510],[-49,166]],[[72194,31756],[-112,206],[-21,434],[-825,262],[65,746]],[[72257,32587],[299,-147]],[[72194,33386],[-47,-546],[97,-240],[312,-160]],[[72257,32587],[-110,253],[47,546]],[[72714,35738],[-16,-310],[-129,-27],[-105,-452],[-93,-795]],[[72371,34154],[-294,-109]],[[72464,34949],[-93,-795]],[[71434,34080],[152,93],[595,-161],[190,142]],[[72194,33386],[-46,298],[62,506],[161,-36]],[[72819,34828],[-367,-22],[-81,-652]],[[72819,34828],[-367,-22],[-81,-652]],[[72845,34212],[0,553],[85,13]],[[72847,35428],[-144,-11],[116,-589]],[[72935,34075],[84,-6]],[[72931,34062],[4,13]],[[72918,34136],[-73,76]],[[72918,34136],[-52,-217]],[[72919,34137],[-53,-218]],[[72935,34075],[-17,61]],[[72915,34087],[16,-25]],[[72762,34279],[100,-227]],[[72819,34828],[-57,-549]],[[8491,91967],[-214,-144],[-194,264]],[[8491,91967],[-214,-143],[-194,263]],[[8535,91881],[42,-9]],[[70715,29485],[440,46],[293,277]],[[71448,29808],[-3,-7]],[[70636,29460],[79,25]],[[70636,29460],[79,25]],[[70696,30046],[19,-561]],[[70696,30046],[19,-561]],[[70696,30046],[73,864],[-554,115]],[[67770,32964],[-17,-278],[-382,17]],[[67354,32717],[17,-14]],[[59848,36277],[0,0]],[[81269,86165],[-64,-722]],[[80235,85868],[-311,234]],[[48880,31444],[157,-31],[20,-3054]],[[49057,28359],[-73,-457],[-515,-1264],[-274,-238]],[[49070,28350],[-13,9]],[[49070,28350],[-13,9]],[[54511,38931],[-43,470]],[[81095,94264],[-34,-95]],[[81061,94169],[34,95]],[[81061,94169],[2,-5]],[[81063,94164],[-8,-141],[-511,-729]],[[65334,44589],[-1,-2]],[[81058,94091],[3,78]],[[40519,53467],[8,-44]],[[68493,42188],[-110,-86]],[[68383,42102],[-92,-900],[-88,24]],[[84738,95694],[-212,567]],[[83721,90985],[29,-146]],[[83721,90985],[398,-144]],[[79407,80471],[-412,94],[-506,544],[-325,101]],[[79704,80590],[0,475]],[[79949,81527],[58,116]],[[79704,81065],[35,264],[210,198]],[[47556,37410],[-45,231],[-15,1801],[73,125]],[[71464,52298],[97,-1137]],[[71561,51161],[2,3]],[[81309,96163],[3,-2]],[[37378,29013],[107,71]],[[37274,40298],[7,-8]],[[80451,91075],[-31,-273],[213,-51],[-33,-599]],[[71761,82366],[156,-128],[249,-1161],[71,-662],[111,-482],[-597,-629]],[[84588,96681],[-42,14]],[[84531,96493],[57,188]],[[78555,89429],[-91,-39]],[[85533,43460],[-1,18]],[[73031,32225],[14,162]],[[81399,61011],[-476,-364],[-153,-216]],[[81691,61183],[-292,-172]],[[81399,61011],[292,172]],[[78149,58468],[343,543]],[[72569,35400],[-105,-451]],[[72843,34212],[-81,67]],[[54050,27624],[-243,-116],[-26,-240],[-593,91],[-280,179],[-264,7],[2,169],[-622,21],[-3,104]],[[50802,26727],[-129,115],[3,736],[-123,-1],[2,445]],[[85332,49979],[7,418],[-107,-51]],[[53236,20701],[9,-8]],[[90056,57372],[0,-1]],[[90056,57372],[-143,147]],[[55098,26684],[-7,-85],[-434,132],[-224,-31]],[[40519,53467],[-77,217],[-382,-29],[-59,474],[-111,2461],[-69,-6],[-86,1860],[-206,547]],[[52015,30628],[5,19]],[[84538,44492],[-128,-145]],[[84813,50100],[-5,-1]],[[84813,50100],[139,-62]],[[84813,50100],[-5,-1]],[[84813,50100],[-232,-465]],[[65063,77527],[147,302],[835,283]],[[61853,75558],[0,0]],[[84924,50505],[30,-328]],[[84924,50505],[30,-328]],[[84954,50177],[126,73]],[[85466,50382],[-234,-36]],[[58651,84709],[-507,-459]],[[84813,50100],[141,77]],[[84813,50100],[141,77]],[[86593,54550],[-7,-13]],[[86586,54537],[-45,-47]],[[86541,54490],[-5,7]],[[84412,58531],[2,1]],[[85573,51539],[-110,-377],[143,-94]],[[85573,51539],[-106,-347]],[[84813,50100],[141,78],[146,818],[269,478],[204,65]],[[85408,53069],[-1,0]],[[81129,44371],[23,159],[672,1882],[180,1122],[68,131]],[[82976,58555],[-80,-38]],[[84410,44347],[5,278]],[[84408,44624],[2,-277]],[[47992,30975],[-427,-232],[-1651,-561]],[[86341,49943],[-135,-64],[-337,148]],[[44794,31318],[-794,-2132]],[[44794,31318],[337,883],[344,1144],[-10,120]],[[53250,33091],[53,284],[12,1180],[-27,572],[105,335]],[[61511,41923],[-95,397],[13,363]],[[85057,49508],[18,-166]],[[41298,16209],[133,113]],[[50543,33585],[186,-595]],[[61429,42683],[-307,75],[-82,489]],[[58898,40084],[562,-378],[347,-35]],[[60209,39128],[-41,480],[-361,63]],[[37315,12877],[106,371],[-34,853],[100,177],[492,114]],[[86013,63164],[0,0]],[[86002,62937],[11,227]],[[85994,62787],[15,-2]],[[61845,42767],[-240,-114]],[[61845,42767],[-240,-115]],[[61845,42767],[-5,6]],[[47088,50620],[95,-366],[-70,-816],[-4,-1584]],[[61606,42664],[-150,162]],[[43517,12685],[3,-608],[136,-104],[22,-533],[536,-607],[10,-505]],[[47109,47555],[0,299]],[[47109,47854],[-356,3]],[[43436,60010],[209,-44],[115,-541],[481,-433],[148,-485],[165,-128],[10,-687],[118,-281],[250,-39],[-31,-496],[116,-734],[239,79]],[[43436,60010],[209,-44],[115,-541],[481,-432],[148,-486],[165,-128],[10,-687],[118,-281],[250,-39],[-31,-496],[116,-734],[239,79]],[[85769,53785],[-1,-1]],[[86649,60511],[-7,-27]],[[86643,60484],[-1,0]],[[88070,54000],[-2,-2]],[[86254,62109],[50,35]],[[82982,54723],[0,-2]],[[83085,54754],[0,-16]],[[44605,61570],[-317,-566],[-486,-294],[-97,-246],[9,-368],[-278,-86]],[[40389,58952],[-547,-65],[-188,-104],[-125,208]],[[40389,58952],[-546,-65],[-189,-104],[-125,208]],[[40389,58952],[164,32]],[[43436,60010],[-366,-449],[-745,-658],[-13,-139],[-924,-63],[-242,383],[-687,-55],[-70,-77]],[[43436,60010],[-366,-449],[-744,-659],[-14,-138],[-924,-63],[-242,383],[-687,-55],[-70,-77]],[[82172,61282],[0,1]],[[82172,61282],[0,1]],[[81764,61102],[9,-25]],[[81943,61266],[1,-1]],[[42869,53882],[-34,-43]],[[42835,53839],[-1112,-110]],[[42564,55390],[20,-1199],[251,-352]],[[80368,38833],[7,-14]],[[83612,56840],[124,-11]],[[83289,57978],[46,-82]],[[83674,57217],[-1,-1]],[[83467,57701],[0,1]],[[85158,58829],[0,4]],[[46760,57956],[13,-231]],[[69794,39180],[-22,-361],[-249,-352],[-739,-630]],[[89162,32603],[-20,634],[115,479],[156,79]],[[51377,60655],[-113,305],[-672,-105],[-161,-240],[-404,-303]],[[51377,60655],[-3,0]],[[51374,60655],[3,0]],[[89413,33795],[52,237]],[[51369,69233],[-198,228],[-638,6],[-462,-283],[-560,-108],[-384,-240],[-327,-498],[-1179,42],[-115,178]],[[51894,69348],[-433,35],[-92,-150]],[[87938,52078],[146,-131]],[[87719,52136],[91,-43]],[[87810,52093],[2,2]],[[56801,79371],[-1101,1060]],[[81415,30121],[0,-3]],[[80439,29952],[-119,-528]],[[87812,52073],[0,22]],[[61766,64796],[18,8]],[[62336,64032],[-155,323],[-34,318],[-348,228],[-33,-105]],[[61536,65043],[230,-247]],[[61548,64602],[218,194]],[[61784,64804],[-18,-8]],[[61825,62195],[85,578],[278,439]],[[49070,28350],[110,-6],[109,-551],[1158,-42],[108,271]],[[48191,18326],[-19,769],[175,201],[341,88],[568,4],[140,227],[106,518],[268,599],[11,216],[330,535],[93,333],[418,372],[378,452]],[[52021,27839],[-28,318],[-1438,-135]],[[54346,25322],[-383,-162],[-1,-199],[-247,-224],[-127,-308]],[[53673,24586],[6,12]],[[52936,23793],[215,189],[287,466],[241,150]],[[54672,27436],[-622,188]],[[54050,27624],[-243,-116],[-26,-240],[-593,91],[-280,179],[-264,7],[2,169],[-622,20],[-3,105]],[[87795,52067],[224,-350]],[[85655,50495],[2,3]],[[55807,28842],[-100,-384],[-288,-369],[-232,-844]],[[85436,51033],[31,159]],[[85022,49747],[-1,-1]],[[85596,50074],[-153,-159]],[[86916,50402],[-126,-105]],[[62843,47207],[-439,-264],[-320,-370]],[[62348,48654],[389,-1058],[106,-389]],[[62873,43047],[152,18]],[[60872,52478],[4,5]],[[60872,52478],[18,80]],[[86460,49374],[25,42]],[[84420,43746],[1,-5]],[[84813,50100],[-203,-52]],[[84952,50175],[0,-137]],[[84952,50175],[19,87]],[[71837,46085],[1,-1]],[[64009,37524],[0,1]],[[63932,37531],[77,-6]],[[64300,37197],[-304,-7],[-7,157]],[[64300,37197],[-66,-123]],[[63986,37346],[-50,100]],[[64374,36852],[-74,345]],[[64300,37197],[-1,378]],[[64536,36547],[-118,72],[-118,578]],[[64374,36852],[-74,345]],[[63989,37347],[23,181]],[[64300,37197],[217,-138]],[[64300,37197],[217,-138]],[[64300,37197],[-304,-7],[-11,434]],[[64012,37528],[-27,96]],[[63988,37347],[-2,-1]],[[63986,37346],[3,1]],[[64890,37386],[-2,-8]],[[65011,37276],[-123,102]],[[65011,37276],[-123,102]],[[64888,37378],[-96,85]],[[84418,45093],[-3,-6]],[[80728,51813],[336,-169],[469,330],[488,-141],[348,-457],[-30,-221]],[[64888,37378],[-152,123],[-199,446],[24,284]],[[64890,37386],[-2,-8]],[[64561,38231],[222,-84],[50,-494]],[[87799,40350],[411,298]],[[88210,40648],[1,1]],[[88211,40649],[58,18]],[[88269,40667],[236,8],[426,479]],[[88279,39523],[-95,136]],[[80740,51804],[-9,-19]],[[80740,51804],[-9,-241],[434,-1131],[260,-790]],[[87336,51782],[0,-3]],[[88314,51584],[-105,82]],[[88212,51936],[167,-134]],[[64536,36547],[-162,305]],[[64651,36515],[-115,32]],[[64536,36547],[-162,305]],[[64536,36547],[-152,399],[-150,128]],[[64788,36518],[-137,-3]],[[64651,36515],[-115,32]],[[64651,36515],[137,3]],[[65235,38441],[22,-341]],[[65230,38899],[-9,3]],[[65230,38899],[-47,-213]],[[65231,38900],[-10,2]],[[65257,38100],[-20,-321]],[[65257,38100],[-20,-321]],[[88741,39746],[-232,-186],[-45,-201]],[[87909,35762],[-41,391]],[[87937,36688],[-68,-509],[40,-417]],[[91470,20102],[-1,-14]],[[54360,75516],[-444,-43],[-137,-339],[-573,-600],[-371,-270],[-192,-34]],[[65467,38112],[-46,256],[274,-65],[367,-327]],[[65257,38100],[-22,341]],[[93397,24110],[611,-370]],[[96347,13582],[102,-339],[-21,-393],[266,-573],[77,-410],[260,-431],[207,-142],[620,-1019],[750,-502]],[[65257,38100],[-219,18]],[[93944,26930],[-64,-261]],[[93944,26930],[130,-60]],[[94074,26870],[38,145]],[[93768,25567],[3,0]],[[64119,44095],[85,544],[464,-84]],[[64922,46416],[-125,-909],[-60,-921],[-69,-31]],[[64668,44555],[666,34]],[[63570,38121],[133,-143],[-2,-333],[284,-21]],[[63570,38121],[133,-143],[-2,-333],[284,-21]],[[63570,38121],[-11,12]],[[63559,38133],[-49,-2],[53,921],[-45,295],[-153,26],[-52,526]],[[63570,38121],[-9,12]],[[63561,38133],[-51,-3],[53,922],[-45,294],[-153,26],[-52,527]],[[65709,44732],[248,-721],[171,-679],[356,-802]],[[60494,83747],[-34,8]],[[60577,83901],[153,210]],[[60577,83901],[-83,-154]],[[60494,83747],[-8,19]],[[61666,84356],[-7,-13]],[[61665,84463],[1,-107]],[[69672,42920],[-152,-2182],[-120,-733]],[[69400,40005],[-615,-641],[-347,-430],[-1085,-1146],[-203,-265]],[[69151,39730],[249,275]],[[69400,40005],[135,-721],[259,-104]],[[69461,39638],[-61,367]],[[69773,38824],[279,-470]],[[68244,45682],[-1,-3]],[[8652,91900],[108,-253]],[[75226,66707],[-14,34]],[[80217,72101],[-2,0]],[[60681,81011],[-1,-4]],[[62319,84542],[-123,-24]],[[66717,78060],[-183,72],[-489,-20]],[[73970,31995],[6,-127]],[[62331,84630],[-47,197],[135,246]],[[73568,69045],[74,357]],[[73970,31995],[6,-127]],[[62633,84489],[-84,-32]],[[62765,84342],[15,284]],[[62656,84498],[-22,-8]],[[62549,84457],[-88,136]],[[62633,84489],[1,1]],[[62765,84342],[-109,156]],[[61692,84591],[-12,-63]],[[79868,65699],[-45,-239]],[[79516,65413],[-63,-268],[-304,-221],[41,-376]],[[79214,64519],[730,583]],[[91868,30323],[60,854]],[[77795,68161],[72,-161]],[[80728,70507],[301,805]],[[68403,70687],[0,-1]],[[86745,56185],[450,-16]],[[69528,51675],[257,-223],[53,-568]],[[69138,51689],[400,-28],[247,-209],[53,-568]],[[69138,51689],[390,-14]],[[79068,40128],[-354,-234],[83,-338]],[[71680,52879],[130,-34],[248,-548],[220,-157],[315,-429]],[[80760,65968],[-242,-872],[-360,-217]],[[81961,67513],[-241,-651],[-172,-161],[-404,-608],[-100,-1034]],[[79669,61674],[-340,15]],[[73598,55844],[556,6],[813,-254]],[[72563,50814],[-70,890],[100,7]],[[40315,16813],[-3,-9]],[[44213,10323],[7,4]],[[40735,17796],[284,-33],[27,-243],[274,-30]],[[38783,12033],[870,79],[156,209],[248,72]],[[38788,12036],[-5,-3]],[[41149,16652],[-26,-519],[461,-530],[14,-437],[-147,-367],[43,-1350],[-56,-16]],[[40998,15798],[622,810]],[[41545,16579],[-547,-781]],[[40998,15798],[324,281],[578,374],[642,337],[1065,703],[733,638],[397,30],[522,195],[240,176]],[[41125,16636],[161,-372],[145,58]],[[41526,16334],[-95,-12]],[[41298,16209],[299,-634],[364,-1725]],[[41125,16636],[173,-427]],[[41128,16636],[-3,0]],[[40293,16229],[100,195],[471,-66],[291,296]],[[40293,16229],[275,443],[591,71],[-4,-89]],[[38164,18060],[533,75]],[[40338,16786],[150,19],[30,280],[284,249],[346,-10],[172,149]],[[38105,16101],[308,33],[324,406],[1019,110],[219,-496],[318,75]],[[37979,14392],[39,871],[-45,600],[132,238]],[[38783,12033],[10,256],[-744,-80]],[[38049,12209],[-374,-54],[-19,206],[-293,200],[-48,316]],[[85057,49508],[18,-166]],[[48191,18326],[-735,-50]],[[48528,18461],[4,-185],[546,-756],[199,-506],[689,-1033]],[[48528,18461],[-31,-137],[-301,-4],[-97,-439],[-653,-102],[-71,-209],[-434,-295]],[[48527,19019],[1,-558]],[[48528,18461],[2,-136],[-339,1]],[[48528,18461],[21,333]],[[45499,18532],[249,167],[2653,83]],[[48974,20917],[549,28],[88,-83]],[[49611,20862],[313,-46]],[[73512,31484],[26,198],[-218,199],[-300,91],[-196,225],[-72,-607],[-168,-184],[-462,117],[-43,-398],[-127,-251],[-144,32]],[[72556,32440],[471,-219],[-7,-249],[300,-91],[218,-199],[-26,-198]],[[73556,31676],[-44,-192]],[[73512,31484],[-58,-717]],[[73512,31484],[-58,-717]],[[62530,84964],[45,236]],[[80439,29952],[-119,648],[-421,874],[-249,299],[-68,-127]],[[79582,31646],[68,127],[248,-300],[422,-874],[119,-647]],[[80096,29570],[25,-30]],[[80248,29880],[-152,-310]],[[80121,29538],[-25,32]],[[80120,29539],[-24,31]],[[79742,89935],[-270,65],[-192,-164]],[[79742,89935],[78,-452]],[[79528,89986],[779,-103]],[[79742,89935],[-83,333]],[[79659,90268],[-313,-10]],[[79838,90263],[-179,5]],[[80242,90305],[90,352]],[[80242,90305],[65,-422]],[[80241,90326],[1,-21]],[[80307,89883],[64,-257]],[[80424,89899],[-117,-16]],[[80307,89883],[-565,58]],[[80494,27935],[202,936],[693,-216],[160,74],[707,-137]],[[79860,28970],[247,-16]],[[80107,28954],[588,-83],[-31,-132]],[[80664,28739],[-170,-804]],[[72799,67335],[39,226]],[[81503,30136],[349,-7]],[[60743,86040],[-158,-260],[-94,119]],[[60754,86018],[169,-19],[122,264]],[[84473,44381],[62,-216]],[[81086,30110],[-144,42],[-167,-220]],[[74365,81200],[-104,-323]],[[71978,36104],[261,-247]],[[71999,36567],[-21,-463]],[[69400,40005],[69,411],[1017,838],[837,-34],[789,355],[423,-53],[538,345]],[[51063,62655],[-498,569],[-269,133],[-115,204],[36,264],[-31,1054]],[[60912,52427],[179,-113],[560,-3],[-7,-193]],[[86674,49339],[388,-288]],[[59914,83233],[31,-96]],[[74750,81826],[-11,-2]],[[51898,47789],[202,-795],[190,-339]],[[41526,16334],[255,-86],[125,-215],[330,29],[271,-801],[265,-108],[10,-339],[598,25]],[[78090,39881],[-92,-5],[-308,-838],[-197,-1092],[-16,-378]],[[74337,81920],[28,-720]],[[52290,46655],[-65,-430]],[[83734,57306],[-80,117]],[[74337,81920],[402,-96]],[[85830,62734],[69,65]],[[74619,42887],[-28,-286],[-192,-81]],[[84383,43975],[27,372]],[[79838,90263],[347,-193],[57,235]],[[38566,14374],[-143,-20],[-213,-295],[-521,-49]],[[37689,14010],[16,-130],[-352,-453],[28,-267],[-129,-310]],[[37252,12850],[63,27]],[[80339,29920],[92,35]],[[79742,89935],[-83,333]],[[79843,90316],[-5,-53]],[[79912,90488],[-69,-172]],[[79912,90488],[330,-183]],[[60184,82984],[-85,-136]],[[60184,82984],[88,90]],[[60072,82735],[27,113]],[[60078,82698],[-1,0]],[[60072,82735],[23,-31]],[[60078,82698],[-6,37]],[[60077,82698],[-5,37]],[[60077,82698],[-1,-31]],[[60027,82765],[46,-67]],[[60001,82828],[26,-63]],[[59945,83137],[56,-309]],[[60076,82667],[-262,195]],[[86179,40808],[75,785]],[[81265,32337],[245,198],[164,324],[-37,418],[-198,376],[-75,730],[-160,446],[100,873],[-404,656],[174,464],[-33,431],[148,877],[-22,313],[-463,781]],[[60073,82692],[22,12]],[[60095,82704],[30,-24]],[[60184,82683],[-59,-3]],[[60184,82683],[104,130]],[[60428,82935],[-79,-42]],[[80775,29932],[81,403],[-55,337],[268,424],[114,983],[82,258]],[[85904,40947],[275,-139]],[[86253,41588],[41,323]],[[86254,41593],[-3,0]],[[86251,41593],[2,-5]],[[58302,83818],[-52,254]],[[84231,26072],[-8,40]],[[52219,40960],[669,-19]],[[52888,40941],[891,-37],[8,-609]],[[82036,62939],[-14,-63]],[[86102,45219],[-153,-359],[-109,-543]],[[54468,39401],[-2,57]],[[69100,45980],[101,-499]],[[89813,38158],[-103,-262]],[[88537,37789],[-267,-59]],[[84315,43038],[44,-150]],[[84359,42888],[69,-152]],[[41545,16579],[75,29]],[[84438,45060],[-1,0]],[[41149,16652],[396,-73]],[[69750,67236],[-251,361],[-150,62]],[[80255,88926],[180,-334]],[[41149,16652],[396,-73]],[[56312,67444],[1,0]],[[84418,45093],[19,-33]],[[71889,46198],[-377,-12]],[[90039,39475],[-62,-254],[87,-256]],[[84437,45060],[26,-34]],[[62424,84550],[-31,-3]],[[60316,38369],[-51,-39]],[[77984,61137],[272,-32],[149,-220]],[[86341,49943],[-138,-64],[-334,148]],[[79176,54209],[342,-310],[492,-716],[218,-432],[70,-538],[430,-400]],[[89418,36298],[-142,153],[-37,424]],[[81948,36655],[261,433],[310,368],[416,311]],[[73638,66749],[42,206]],[[74299,80811],[-38,66]],[[83948,60905],[10,542]],[[42072,18559],[168,255],[258,730],[204,1343],[128,589],[-17,608]],[[42813,22084],[-37,1527]],[[84428,42736],[-40,-151]],[[78421,39440],[-168,-181],[-311,-33],[-184,-342],[-406,-425],[-354,-243],[-208,-349]],[[74488,66797],[-226,35]],[[65008,80685],[270,-180],[284,-463]],[[71559,46510],[-64,166]],[[85590,44735],[179,82]],[[68969,69680],[311,1055]],[[87873,51857],[16,32]],[[73169,67182],[-228,61]],[[87935,34947],[129,-291],[246,25],[117,-139]],[[60256,83518],[-113,94]],[[61085,49718],[-149,554]],[[85973,43508],[-110,90],[-127,-277],[-168,-60]],[[56891,71885],[-4,34]],[[81663,86667],[66,271]],[[86791,40350],[-136,346]],[[73315,67704],[14,140]],[[81583,85551],[-79,-276]],[[71575,78059],[-68,-284],[-72,-1369],[-679,-656]],[[80728,70507],[112,-371],[233,-1179]],[[65709,44732],[104,53]],[[79671,80272],[-269,16]],[[87387,19457],[292,-117]],[[85607,50505],[-141,-123]],[[84100,91228],[-182,-43]],[[81643,87262],[-327,250]],[[48238,14320],[-260,486],[-367,450],[-521,793],[-116,106]],[[83280,89418],[-133,-399],[185,-12]],[[83623,60429],[173,669],[1,859],[-98,178]],[[42869,53882],[-285,309],[-20,1199]],[[80507,89545],[166,-350]],[[60416,82989],[-67,-96]],[[60407,83071],[-58,-178]],[[78077,68369],[-37,139]],[[80793,91810],[16,355]],[[65574,81970],[-4,-4]],[[84611,95876],[-38,139]],[[72796,67194],[5,193]],[[60362,83701],[-3,-1]],[[64110,39795],[113,-339],[168,-31],[183,-315],[-27,-354],[235,-40]],[[94096,23985],[-28,-17]],[[64010,38884],[5,1]],[[72364,69338],[-18,2]],[[80946,72239],[-238,-8],[-375,-312]],[[86491,41701],[4,3]],[[56887,71919],[260,654],[523,769],[322,811]],[[51646,18807],[-183,76],[-1055,16],[-88,-181],[-316,-26]],[[79398,59281],[-4,447],[113,222]],[[62537,84380],[-34,22]],[[62536,84346],[1,34]],[[64773,47535],[964,27]],[[62509,84682],[-2,-84]],[[62507,84622],[2,60]],[[62506,84619],[1,3]],[[62507,84598],[-1,21]],[[78725,90104],[36,55]],[[89981,37211],[149,78]],[[62580,84332],[-6,1]],[[86578,40598],[2,-6]],[[56447,78138],[-317,-485]],[[84898,47777],[2,-1]],[[87633,43570],[138,770],[61,785]],[[72862,68353],[307,-21]],[[81181,94870],[131,1291]],[[64483,33401],[-2,30]],[[82841,57931],[0,2]],[[64924,38905],[-142,-189]],[[85073,44450],[96,-31]],[[72550,78159],[-128,564]],[[86642,37757],[293,-184],[-29,-151]],[[85120,43207],[125,-20]],[[79668,42144],[-30,18]],[[59961,83608],[-27,-249]],[[84864,42962],[-109,160]],[[67989,69410],[-316,-40],[-1161,300],[-941,-1]],[[83536,31460],[-615,-459]],[[63295,71367],[-480,1144]],[[87633,43570],[1,-648],[-238,-674],[61,-687],[-138,-785],[84,-115]],[[87403,40661],[1,-6]],[[82391,48404],[-504,326],[-359,578],[-103,334]],[[78619,33459],[-99,163]],[[83628,57468],[-115,168]],[[84223,26112],[-4,-29]],[[61329,37982],[-11,115],[-822,113],[-231,120]],[[77332,34659],[-24,-66]],[[83737,56833],[-1,-4]],[[67782,37567],[-57,589],[1426,1574]],[[80242,90305],[65,-422]],[[78662,61210],[-4,11]],[[87240,52211],[-8,243]],[[72081,69607],[16,12]],[[84376,47988],[467,-87]],[[76815,80670],[3,-16]],[[82391,48404],[-169,-158],[-150,-581]],[[81149,94559],[58,92]],[[78844,89417],[27,-326],[120,6]],[[81239,85677],[-106,228]],[[80430,64292],[132,151]],[[80424,89899],[50,118]],[[83284,48695],[-133,-254]],[[84643,35302],[348,367]],[[91327,26428],[629,-325]],[[69917,33158],[67,1078],[-650,93],[12,192]],[[53588,24429],[-1,-670],[-248,-77]],[[53339,23682],[-1,-3]],[[81239,85677],[22,196]],[[68568,81418],[-187,-159]],[[77969,68413],[36,-127]],[[83619,49634],[-335,-939]],[[79298,91234],[72,747],[-59,11]],[[44353,42129],[-366,-22]],[[43987,42107],[-645,-40],[-129,-144]],[[86183,42913],[1,-5]],[[61772,86093],[-305,-601]],[[78658,61221],[-253,-336]],[[61467,85492],[-241,508]],[[87868,36153],[-11,6]],[[47876,55131],[0,-621],[-116,-178]],[[83681,57880],[4,5]],[[78991,89097],[172,-47]],[[60577,83901],[-55,-47]],[[64269,39007],[-278,225]],[[46941,17275],[-111,338]],[[60684,82661],[1,271],[-154,197]],[[64784,38147],[20,84]],[[63037,83289],[-281,829],[9,224]],[[71908,47449],[-415,633],[-425,483],[-437,390]],[[70631,48955],[-280,201],[-484,-314]],[[43693,49684],[1059,54],[664,237],[402,85]],[[91276,20215],[-100,374],[-281,310],[-62,270],[-271,157]],[[84556,59327],[29,-108]],[[87375,37338],[269,510],[153,63]],[[91550,32413],[-4,-2]],[[83900,92132],[305,-136]],[[79598,76376],[27,75]],[[70336,68752],[48,193]],[[82197,69161],[177,303]],[[69280,70735],[-160,-102],[-456,4],[-124,-126]],[[89131,36138],[-2,-326]],[[71908,47449],[-414,633],[-430,488],[-610,543],[-288,0],[-299,-271]],[[61406,81993],[52,-448]],[[82097,36100],[69,-277],[260,-58],[474,-506]],[[89749,35341],[-4,-2]],[[89441,41702],[-206,-414],[-304,-134]],[[68188,42135],[195,-33]],[[68383,42102],[110,86]],[[82691,59182],[-144,335]],[[93223,25255],[-91,-13]],[[85967,62502],[27,285]],[[80793,91810],[-415,30],[-226,-175],[-46,-476],[-90,22]],[[62196,84518],[101,7]],[[80517,88975],[-82,-383]],[[90072,57022],[-14,349]],[[47556,37410],[3,-20]],[[47559,37390],[358,-164]],[[47917,37226],[443,-418],[12,-257],[299,5],[418,-455]],[[80674,57288],[-178,561],[3,691]],[[65679,82510],[2,-86]],[[55370,21415],[32,1204],[-42,160]],[[81999,88303],[17,-67]],[[85371,39188],[-84,-342]],[[51387,62385],[-99,630]],[[55605,15788],[-314,182],[112,568],[82,41]],[[60316,38369],[132,58],[1078,-106],[-10,-254]],[[62619,27456],[-30,-50],[-792,132],[-191,106],[-441,-93],[-93,-230]],[[67619,65213],[317,-177],[173,-295],[567,-165],[99,98]],[[84949,28041],[14,-6]],[[80525,90171],[9,4]],[[80507,89545],[-200,338]],[[95208,28210],[2,-5]],[[84949,28041],[-455,-121]],[[84579,35307],[-221,183]],[[86649,60511],[-6,54]],[[73148,33334],[-41,-470]],[[68528,34401],[-422,-727],[-214,-535],[-8,-572],[147,-190]],[[63706,70948],[-395,390]],[[65880,45568],[-17,-269],[202,-196],[-26,-466],[-190,142]],[[73204,67916],[-105,-153]],[[93164,26542],[1,-5]],[[93165,26537],[0,0]],[[93165,26537],[-166,31],[-129,498],[-1,447]],[[86596,38583],[128,-414]],[[79346,90258],[57,-51],[-66,-935]],[[86877,50808],[23,240],[-213,157],[-339,-358],[-641,-174]],[[62827,72515],[-12,-4]],[[83668,55040],[-113,-21]],[[84161,26189],[-5,15]],[[84376,47988],[-404,342]],[[83780,91033],[-59,-48]],[[89401,27122],[201,-72],[111,-292],[1018,110],[-89,237]],[[80407,82773],[56,-29],[-5,-933]],[[71806,45932],[32,152]],[[72529,67281],[72,133]],[[87609,19364],[473,-128],[429,316]],[[61604,75407],[-93,-186]],[[44560,51792],[270,-118],[374,724],[1050,473],[181,228]],[[60751,66993],[263,-89],[136,-764]],[[83494,57343],[0,-2]],[[84227,95973],[72,-112]],[[59740,81683],[4,44]],[[91469,20088],[-193,127]],[[73474,67467],[116,-236]],[[81611,84135],[-161,-131]],[[87883,38312],[54,253]],[[80367,80141],[-192,-498]],[[76604,62403],[186,329]],[[55953,31747],[-128,-290]],[[81717,86962],[12,-24]],[[88748,27253],[131,-125],[243,95],[279,-101]],[[87938,52078],[146,-131]],[[87719,52136],[-182,-392]],[[85790,45600],[-6,740]],[[73949,67530],[-179,-89]],[[85332,49979],[100,-268]],[[64481,33431],[7,-6]],[[86877,50808],[-10,597]],[[89938,32771],[-4,-230],[-191,-564]],[[71448,29808],[24,323],[162,-24]],[[65805,46890],[31,-43]],[[87812,52095],[207,-378]],[[88241,51928],[-29,8]],[[88350,51889],[-109,39]],[[88314,51584],[36,305]],[[62613,35843],[-42,-2]],[[79798,78303],[-15,247],[216,389]],[[66615,79456],[-101,149]],[[78077,68369],[106,-162]],[[60577,83901],[221,182]],[[60798,84083],[0,3]],[[68569,50681],[128,74],[476,-75]],[[85390,39229],[-19,-41]],[[57786,82057],[-2,-583]],[[60684,82661],[-306,82],[-174,-273],[-125,118]],[[84288,31734],[5,-3]],[[84293,31731],[860,-427]],[[80046,72348],[-129,524]],[[41320,17490],[-25,14]],[[78352,56699],[546,385]],[[94437,27996],[244,355],[108,-128],[356,163]],[[82097,36100],[-19,363],[-130,192]],[[62318,33176],[-62,-1501],[-515,-471],[-172,51]],[[89570,34906],[-9,25]],[[87694,36202],[215,-440]],[[64814,82197],[-212,249]],[[80333,71919],[0,32]],[[85107,45783],[-101,-660]],[[78000,61152],[-3,0]],[[82514,61619],[-229,-113],[-206,69]],[[62565,84339],[-29,7]],[[81317,87506],[-1,6]],[[64561,38231],[223,-84]],[[87923,39681],[-1,17]],[[68528,34401],[-105,214],[-376,110],[-50,150],[-682,188]],[[55236,23197],[20,0]],[[55256,23197],[7,1415],[39,1212],[-160,447]],[[72866,67128],[385,33]],[[73516,48299],[-40,-326]],[[85153,31304],[357,-211],[151,66]],[[72931,34062],[-12,-17]],[[84843,47901],[57,-125]],[[62573,36148],[3,9]],[[62576,36157],[2,-4]],[[67150,37523],[268,682]],[[87502,38443],[-5,89]],[[86368,40528],[-24,-26]],[[58303,83754],[-1,64]],[[48735,19046],[-334,-264]],[[91469,20089],[13,-20]],[[85973,43508],[-157,173]],[[40088,28211],[-15,867]],[[84099,59090],[-115,-35]],[[86183,42670],[0,29]],[[71808,30906],[-135,-310],[-39,-489]],[[85361,44909],[-80,54]],[[63521,47868],[0,6]],[[69674,74183],[53,-41]],[[85171,46907],[6,2]],[[74188,67644],[-157,-86]],[[49771,48465],[-493,174],[-10,372],[-512,573],[-655,201],[-288,367],[-599,47],[-126,421]],[[61865,37770],[3,-6]],[[85805,47038],[339,306]],[[82485,86741],[86,81]],[[80148,80636],[186,108]],[[84521,96425],[103,-632],[114,-99]],[[88322,38814],[-57,15]],[[84789,27186],[-2,-1]],[[84787,27185],[0,-1]],[[84787,27184],[0,-1]],[[84787,27183],[-412,-657]],[[84375,26526],[0,-2]],[[84375,26524],[-155,-406]],[[84220,26118],[-4,-30]],[[84696,98203],[-68,-334],[-139,-35]],[[84489,97834],[-125,-1019]],[[84364,96815],[-41,5]],[[85868,44939],[-31,-16]],[[85837,44923],[-54,-81]],[[85783,44842],[0,-1]],[[85783,44841],[0,-1]],[[85783,44840],[0,0]],[[85783,44840],[-14,-23]],[[85478,43835],[-55,161]],[[60505,52192],[3,-1]],[[89570,34906],[-8,203]],[[54433,26700],[-432,-87],[-1143,34]],[[80232,72011],[98,-84]],[[49628,41023],[0,-7]],[[85022,49747],[-1,0]],[[85050,45387],[-3,-234]],[[94652,20955],[-154,-171],[55,-397]],[[86169,19786],[-244,233],[-181,1145]],[[85744,21164],[-1,1]],[[85743,21165],[19,478]],[[85762,21643],[0,1]],[[85762,21644],[47,503]],[[85809,22147],[0,1]],[[85809,22148],[-123,359],[121,409]],[[85807,22916],[1,1]],[[85808,22917],[32,155]],[[85840,23072],[-1,1]],[[85839,23073],[-20,463],[93,981]],[[85912,24517],[0,1]],[[85912,24518],[155,742]],[[86067,25260],[1,0]],[[86068,25260],[208,587],[164,820]],[[86440,26667],[1,2]],[[86441,26669],[-2,21]],[[79771,78188],[27,115]],[[89938,32771],[80,621]],[[65257,38100],[-74,586]],[[74003,68851],[-136,-325]],[[44224,10328],[15,-675],[199,10],[171,-394],[39,-1053],[71,-46]],[[88402,38882],[-60,-49]],[[66017,42202],[0,2]],[[60872,52478],[4,5]],[[87604,38236],[-102,207]],[[83948,60905],[-325,-476]],[[63261,27582],[263,146]],[[74482,66792],[6,5]],[[64415,34641],[31,271],[171,64]],[[85868,44939],[-1,-7]],[[57545,53468],[-243,11],[-270,193],[-321,460],[-52,313],[-243,517],[-235,47]],[[72574,72679],[-91,-232]],[[87895,38138],[-102,39]],[[79236,92293],[175,-35]],[[85364,39256],[-9,1]],[[86439,26690],[-353,-485],[-472,-42],[-514,186],[-243,-114],[-377,101],[-97,177]],[[61692,84591],[15,-55]],[[81069,86766],[38,365]],[[62703,84165],[62,177]],[[50761,26632],[41,95]],[[81415,30121],[-329,-11]],[[63244,82178],[148,-10]],[[86208,53289],[194,-220]],[[90404,31511],[203,849]],[[87048,39881],[0,-1]],[[84533,97204],[10,-265]],[[80458,81811],[-64,-441]],[[61565,31256],[4,-1]],[[61898,75499],[-76,190],[-218,-282]],[[89486,32047],[9,13]],[[64113,61715],[-2,1]],[[77323,64942],[-43,12]],[[81163,60845],[0,-1]],[[84890,49444],[-293,-63],[-16,254]],[[83557,57868],[-1,-1]],[[59476,82938],[10,-405],[206,-112],[-24,-607]],[[83798,91268],[-18,-235]],[[59527,35733],[-14,166],[-296,-16],[-95,-208],[-31,-460],[-1215,59],[-15,-99],[-564,11]],[[77332,34659],[-658,525]],[[78505,83508],[62,-43]],[[62042,36771],[226,-11],[308,-603]],[[62576,36157],[-3,-9]],[[48735,19046],[254,566]],[[48989,19612],[340,759],[282,491]],[[49611,20862],[9,1996],[342,815]],[[47109,47555],[-205,-17],[-68,-271]],[[84107,93417],[-10,-60]],[[81358,90628],[-115,66],[-282,-412],[-361,-130]],[[85607,50505],[50,-7]],[[83220,57127],[180,-50],[15,-222]],[[68471,67105],[3,9]],[[87833,51779],[36,-100]],[[73451,68555],[-116,-457]],[[70832,39951],[261,-35],[295,156],[285,21],[163,169]],[[66084,81260],[-296,427],[-112,324],[-102,-41]],[[81944,61266],[1,0]],[[60160,83629],[102,-106]],[[59735,50879],[-77,257]],[[89610,35862],[-12,-32]],[[58090,83012],[1,-6]],[[58091,83006],[-21,-341]],[[59853,71473],[3,9]],[[60822,83836],[-244,-433]],[[42072,18559],[265,94],[1053,77],[299,-209]],[[80328,34235],[258,518],[519,616]],[[50004,18692],[-370,159],[-1086,23],[1,-80]],[[68373,73771],[714,144],[168,231]],[[61112,85888],[108,128],[247,-524]],[[57992,74153],[119,35]],[[72096,65334],[-224,-685]],[[85320,56866],[-178,-71]],[[81029,71312],[1,1]],[[86402,53069],[157,-106]],[[84721,94374],[45,-13]],[[64105,39801],[5,-6]],[[87633,43570],[769,-226]],[[88402,43344],[2,1]],[[59397,55237],[345,873],[12,576],[201,495],[6,286],[281,505],[273,354]],[[70173,69228],[0,6]],[[79258,81882],[98,407],[501,108]],[[79857,82397],[1,0]],[[79858,82397],[140,107]],[[80536,87019],[-69,-228]],[[87336,51782],[-166,9],[-301,-382],[8,-601]],[[86351,45399],[27,-19]],[[83580,59963],[-145,-25]],[[55063,24459],[-1,594],[-197,44]],[[61536,65043],[245,-4]],[[89465,36616],[-31,-112]],[[85916,57375],[-1,-1]],[[85915,57374],[-508,-560],[-87,52]],[[89294,27873],[0,-3]],[[77961,74044],[79,401]],[[82680,87650],[-129,-432]],[[73251,67161],[23,87]],[[61853,75558],[-31,127]],[[87679,19340],[5,-1]],[[85121,43847],[-323,-320]],[[59744,81727],[-61,139]],[[73711,66720],[-73,29]],[[79190,64548],[33,115],[444,366],[141,292]],[[67219,81663],[7,104],[782,-105]],[[92194,31448],[-505,89]],[[86059,62987],[53,-117]],[[59945,83137],[-110,-85],[-23,-581],[-112,-461]],[[79398,59281],[-114,-702]],[[47088,50620],[-484,-180],[-786,-380]],[[75896,36844],[185,236]],[[72364,69699],[1,0]],[[58019,50569],[-170,373],[-80,449]],[[52336,11718],[424,-35],[360,209],[5,433],[733,-20],[45,379]],[[65561,38778],[335,-84],[214,-349],[577,-121],[173,-159],[290,-542]],[[89682,35145],[17,119]],[[84610,50048],[-17,104]],[[84561,97357],[-84,102]],[[59853,71473],[-143,333],[-199,-296]],[[79346,90258],[-16,10]],[[87020,59002],[-99,269]],[[88388,53229],[-244,-266],[-142,-443],[66,-209]],[[88096,38404],[-213,-92]],[[83468,60052],[-33,-114]],[[73027,72671],[2,-3]],[[85994,62787],[0,1]],[[63140,30088],[491,19],[889,-125]],[[84412,58531],[-236,231]],[[64000,39235],[-9,-3]],[[86173,19444],[276,244],[306,-168],[632,-63]],[[88848,44382],[7,5]],[[73590,67231],[100,68]],[[50761,26632],[-235,-650],[-6,-1276],[-558,-1033]],[[89461,34922],[-176,257]],[[80337,80749],[-3,-5]],[[85053,44814],[-98,26]],[[77482,69167],[-1500,634],[-328,-74]],[[86579,52937],[76,-31]],[[85568,43261],[50,-200]],[[85902,44872],[-7,154]],[[85895,45026],[-105,574]],[[47876,55131],[1039,367]],[[86790,50297],[-113,-93]],[[87470,58138],[-20,11]],[[84696,98203],[-67,-335],[-112,32],[-40,-441]],[[68919,49101],[112,1598],[180,137]],[[93094,25007],[-49,55]],[[84223,26112],[-7,-24]],[[84397,38453],[221,697]],[[52939,73810],[426,571],[722,432]],[[84602,95522],[48,109]],[[93130,25313],[-1,4]],[[82691,59182],[1,-4]],[[70524,48790],[6,-24]],[[85417,39463],[3,-10]],[[67315,35063],[206,-260],[-44,-797],[319,-677],[-14,-160],[239,37],[513,-111],[-14,-197],[225,-122],[-28,-641]],[[83464,60567],[159,-138]],[[82172,61282],[-141,67]],[[81207,94651],[-26,219]],[[70527,34112],[-702,155],[-1297,134]],[[88778,38897],[-25,-353]],[[91327,26428],[8,10]],[[87754,40086],[1,-3]],[[83234,55910],[2,-1]],[[87883,38312],[12,-174]],[[84743,95706],[5,-6]],[[87937,38565],[-54,-253]],[[79398,59281],[5,-6]],[[64268,38250],[-108,186],[100,359]],[[84100,42327],[69,460],[146,251]],[[55799,83603],[-115,192]],[[81455,63515],[169,-277],[335,-194],[-15,-640]],[[45467,33456],[-2,9]],[[79582,31646],[-22,398],[-582,945]],[[89717,33217],[-13,-20]],[[85840,44317],[62,555]],[[84074,55239],[216,218],[369,153],[226,210]],[[77552,68405],[-211,-75]],[[59968,71301],[-61,142]],[[80103,92862],[-4,-120],[-476,53]],[[82264,69071],[110,393]],[[73425,48056],[-292,541]],[[84815,36679],[49,59],[415,-478],[682,-983]],[[70052,39762],[-69,-611],[-189,29]],[[66380,49669],[-79,-199],[130,-297]],[[74197,43460],[306,-50],[114,-281],[625,-207],[124,-158],[48,-400],[320,-158]],[[81055,86594],[14,172]],[[68858,73148],[0,-4]],[[93880,26669],[-253,-545]],[[66612,79970],[14,252]],[[48195,26400],[9,-348],[-279,-226],[-407,-25],[-374,-128],[-290,-310],[-231,-774],[-232,-157]],[[65709,44732],[-375,-143]],[[93892,28013],[22,-5]],[[85308,44780],[93,-79]],[[67954,31560],[-63,-723],[-116,-147],[-114,-648],[-113,20],[-33,-515],[-455,-84],[-35,-399],[-283,40],[-53,-139]],[[78383,88954],[95,89],[70,842],[-50,108]],[[66555,79922],[224,-502],[780,-156],[841,-304]],[[80809,92165],[-1,-7]],[[67418,38205],[-1300,872],[-307,172],[-1142,203],[-97,-326]],[[48551,65496],[-11,2]],[[58898,40084],[-251,-81],[-15,-852]],[[86178,42911],[-12,-13]],[[66186,58738],[-565,67],[-243,172],[-199,-332],[-251,-616],[-96,-1259],[-197,-329]],[[73545,66911],[49,170]],[[83057,63243],[-94,-174]],[[66484,42530],[104,-744]],[[77258,51578],[-658,-1796],[-163,-619],[-212,-359]],[[80833,92447],[-24,-282]],[[87849,41188],[5,-4]],[[83412,89878],[-132,-460]],[[81434,95912],[130,-197]],[[80919,87890],[101,78]],[[71808,30906],[4,0]],[[64055,32754],[-14,758],[351,-29]],[[59731,50884],[4,-5]],[[80202,72429],[15,-328]],[[79128,68755],[482,53],[233,162],[418,-29],[606,64],[206,-48]],[[71561,51161],[-294,-771],[-329,-709],[-347,-1006]],[[53753,25456],[624,-100],[-10,538]],[[80281,80142],[-8,144]],[[85006,45123],[-17,243],[-325,207],[-150,353]],[[84505,95896],[-278,77]],[[57594,22158],[-190,-429],[-326,-942],[-398,-1457],[-197,10],[-280,-236],[-4,-261]],[[71318,29135],[91,420],[-694,-70]],[[64483,33401],[-2,30]],[[79411,92258],[1,0]],[[81607,57305],[-4,13]],[[62084,46573],[254,-1048]],[[85873,64006],[18,49]],[[56266,41139],[-62,-2038]],[[66689,28965],[69,54],[35,-514],[88,-172],[-35,-533],[157,-293],[180,-577],[154,-103],[375,-575],[198,-671]],[[75954,46881],[-314,-198],[-520,11],[-386,132],[-432,-13]],[[84383,26513],[-160,-401]],[[73997,66936],[-99,70]],[[84790,44270],[-158,-118]],[[82340,59996],[2,3]],[[85132,49214],[210,40]],[[84863,95706],[-125,-12]],[[87937,38565],[-71,69]],[[74616,43059],[-380,-392],[-34,-225],[-467,-251]],[[84420,97275],[69,559]],[[84489,97834],[139,36],[68,333]],[[60116,83658],[20,-11]],[[67901,44235],[176,473]],[[63868,39400],[-80,-589],[-235,54],[6,-732]],[[63559,38133],[2,0]],[[63561,38133],[4,-2]],[[83556,57867],[1,-6]],[[61688,61384],[-41,-696],[445,-888],[340,-1079]],[[78198,69576],[26,-226],[173,118],[387,-227]],[[52251,16650],[-203,5],[-320,-412]],[[63129,44688],[518,-331]],[[69280,70735],[61,-334],[191,-395],[291,-248],[350,-524]],[[58144,84250],[-264,-195],[-231,-332],[-52,-613],[-72,8]],[[87050,58891],[-133,81],[-733,56],[-221,-115]],[[84615,44590],[20,-241]],[[79269,36527],[-453,-773]],[[83364,56319],[51,536]],[[69021,69057],[-61,-231]],[[85815,43686],[-283,-208]],[[79311,91992],[59,-8]],[[79370,91984],[17,-4]],[[79387,91980],[12,100]],[[85120,43207],[74,213]],[[73225,65737],[386,-144],[3,-137]],[[77537,70547],[35,564],[209,1970]],[[91470,20102],[-1,-13]],[[61766,64796],[64,106]],[[79400,80282],[2,6]],[[75265,67170],[127,-131]],[[80728,51813],[3,-28]],[[75401,49246],[529,-150],[144,-344],[-71,-867],[164,-528],[141,-757]],[[74031,67558],[-82,-28]],[[60079,82588],[8,-135]],[[40338,16786],[-26,18]],[[79526,92005],[-139,-25]],[[79387,91980],[-17,4]],[[79370,91984],[0,-1]],[[79370,91983],[-59,9]],[[50392,43193],[-440,-110],[-1,-113]],[[49951,42970],[-25,-976],[125,-105]],[[93277,25125],[-99,263],[111,193]],[[81706,59604],[-35,687],[400,819]],[[79730,82472],[483,10]],[[82534,86737],[37,85]],[[41322,41005],[17,19]],[[41339,41024],[129,68]],[[41468,41092],[443,169],[713,10],[589,652]],[[70707,67564],[-350,769],[-21,419]],[[75922,63307],[232,270]],[[85436,51033],[13,-285]],[[73350,67767],[85,-214]],[[68039,40468],[87,-703],[151,-530],[17,-436]],[[85769,44817],[13,25]],[[85782,44842],[1,0]],[[85783,44842],[54,81]],[[85837,44923],[-25,164]],[[93575,28116],[419,-47],[436,362]],[[86183,42670],[0,29]],[[45465,33465],[143,24]],[[45608,33489],[1585,67]],[[69239,74170],[16,-24]],[[61665,84463],[-26,81]],[[59734,49690],[256,127]],[[89259,36703],[-20,172]],[[89326,29315],[-152,318],[-12,1072]],[[78859,87307],[-95,1229],[-104,347],[42,495]],[[58531,54324],[170,427],[696,486]],[[55687,83787],[-3,8]],[[44560,51792],[-892,1001],[-833,1046]],[[81163,60845],[236,166]],[[90078,35036],[-11,-4]],[[83024,91550],[482,445],[58,135]],[[84705,95684],[33,10]],[[61868,37764],[-97,239],[-251,29]],[[61520,38032],[-4,35]],[[84534,44731],[-126,-107]],[[68266,37337],[518,500]],[[66431,49173],[14,-267],[673,-1974],[135,-1033],[121,-494]],[[87250,50727],[3,8]],[[85568,43261],[59,-232]],[[78844,89417],[242,13]],[[71836,40262],[293,-802],[281,-495],[347,-239]],[[51386,62364],[1,21]],[[76308,46600],[-15,328],[1025,1634],[220,762]],[[80273,82411],[-275,93]],[[50118,61492],[-2,-2]],[[71387,63674],[-175,-51]],[[69672,42920],[665,2030],[277,1493],[76,587],[130,260]],[[84596,44642],[-47,101]],[[80760,65968],[5,29]],[[87909,35762],[-10,-437]],[[82982,54723],[-260,110]],[[85403,54030],[-43,34]],[[85466,50382],[9,-5]],[[62815,72511],[-865,-632],[-222,22],[-293,-435],[-413,-229],[-197,-203]],[[66955,36495],[3,-11]],[[80331,90640],[2,2]],[[88404,43345],[-2,-1]],[[88402,43344],[-157,-801],[-138,-392]],[[55456,64016],[-134,-105],[30,545],[-43,512],[708,318],[316,81],[500,838],[295,394]],[[60265,38330],[10,-256]],[[73598,55844],[-928,-224],[-197,-248],[-450,-210]],[[89418,36298],[74,-159]],[[81510,87442],[-160,-52]],[[82839,88094],[-133,-219],[-49,-481],[-106,-176]],[[86139,42795],[44,-96]],[[56447,78138],[-15,-386],[482,-552]],[[72101,35001],[-513,88],[-94,-961],[-60,-48]],[[47088,50620],[847,15],[95,92]],[[80329,90659],[3,-2]],[[85243,44889],[65,-109]],[[83478,57546],[35,90]],[[94008,23740],[88,245]],[[94291,29544],[1,3]],[[61590,42879],[-14,3]],[[48849,31449],[42,496],[-372,209]],[[59935,82130],[-191,-403]],[[85038,45666],[1,-4]],[[91928,31177],[74,148]],[[69773,38824],[-250,-358],[-739,-629]],[[87684,19339],[398,-104],[144,136]],[[61688,61384],[16,746],[121,65]],[[72563,50814],[-422,410]],[[72101,35001],[-513,88],[-94,-961],[-60,-48]],[[90520,28027],[-130,-127],[-318,18],[-324,-105]],[[86193,45396],[18,62]],[[60315,38375],[23,632],[-129,121]],[[46852,37633],[726,2178]],[[48022,50851],[8,-124]],[[73267,67774],[-168,-11]],[[85006,45123],[163,-147]],[[85006,45123],[167,-115]],[[56130,77653],[-338,-524]],[[64120,61741],[-7,-26]],[[50564,59741],[8,2]],[[60478,83811],[-95,-85]],[[78592,88832],[69,50]],[[84674,40620],[545,-470]],[[72349,69373],[15,-35]],[[80381,38753],[174,39],[239,583],[208,273]],[[80273,82411],[-60,71]],[[83751,57363],[-1,1]],[[79546,85871],[218,281],[160,-50]],[[80476,90023],[-2,-6]],[[64009,37525],[0,-1]],[[60081,50678],[-253,311],[-93,-110]],[[60081,50678],[317,-344]],[[70516,48793],[8,-3]],[[88230,38491],[-134,-87]],[[59930,83351],[15,-214]],[[62083,46578],[1,-5]],[[78869,85766],[340,-237]],[[75922,63307],[155,-215],[549,-423],[164,63]],[[68540,70511],[-148,-385],[63,-160]],[[85021,49747],[0,-1]],[[85376,46792],[429,246]],[[81969,63981],[0,0]],[[84462,42495],[-8,-77]],[[83212,53133],[-2,12]],[[82100,61594],[-21,-19]],[[85930,63212],[-123,165],[68,633]],[[84477,97459],[39,441],[113,-31],[67,334]],[[65635,60273],[-283,175],[-217,-258],[-769,-628]],[[70752,79283],[-206,424],[-553,664],[-299,291]],[[73854,68347],[82,21]],[[70820,47290],[-5,-6]],[[60872,52478],[-238,-23],[-149,-301],[-51,-739],[-75,-322]],[[76497,64601],[-184,400]],[[88182,29037],[-301,618],[-380,487]],[[87501,30142],[-178,-47]],[[64561,38231],[-76,484],[-405,573],[-107,297]],[[63973,39585],[-199,180]],[[63774,39765],[-1083,1737],[-214,452],[-419,613],[-340,361],[-142,-46]],[[84474,95275],[-66,278]],[[83380,56287],[-16,32]],[[73154,80258],[-402,639],[-358,262],[-770,781],[-27,154]],[[80704,39224],[285,177],[57,167]],[[67810,41492],[-168,-144]],[[86169,19786],[4,-342]],[[73053,36976],[222,-183]],[[82197,69161],[-191,214],[-447,-297],[-486,-121]],[[48542,43399],[-528,291],[-313,-7],[-2,229],[-661,-17],[-283,163],[-976,25],[-123,-140]],[[84543,96939],[22,-153]],[[89823,35144],[15,-108]],[[71634,30107],[-162,24],[-100,-994],[-54,-2]],[[72348,71073],[-99,20]],[[78414,61605],[-471,424],[-134,1]],[[71488,72174],[-15,488]],[[81095,94264],[17,180]],[[81527,86944],[202,-6]],[[82071,61110],[-40,239]],[[72866,67128],[75,115]],[[92151,31354],[-149,-29]],[[87610,19367],[-1,-3]],[[82292,64025],[-120,39]],[[84723,94573],[9,85]],[[70909,64277],[-193,-21]],[[85815,43681],[5,2]],[[80424,89899],[-313,-744]],[[84543,96939],[-12,-446]],[[60508,52191],[-2,4]],[[55868,83597],[-69,8]],[[69687,31122],[528,-97]],[[79329,59955],[4,-4]],[[81527,86944],[-1,-32]],[[81526,86912],[-14,-108]],[[87762,40106],[-2,-3]],[[68969,69680],[120,582],[191,473]],[[69674,74183],[-133,-610]],[[89453,34921],[8,1]],[[46391,24432],[-228,-427],[-506,-754],[-277,-671],[-566,-758],[-157,-315],[-418,-519],[-202,-400],[-367,-1211],[-254,-695],[-361,-78],[-761,-905],[-458,-380],[-123,-10],[-213,-341],[-262,-32],[-83,-282]],[[72373,69771],[-8,-72]],[[82072,47665],[-214,545]],[[86623,37743],[2,-3]],[[84323,96820],[154,639]],[[91806,28623],[192,-113],[197,124],[187,-165],[246,86]],[[80206,73390],[101,-330]],[[85869,50027],[-261,47],[-138,306]],[[87214,51770],[245,-572]],[[82552,87227],[1,-10]],[[82553,87217],[0,-1]],[[82553,87216],[-2,2]],[[81729,86938],[-9,43]],[[83467,57701],[-132,195]],[[84556,59327],[-121,27],[-336,-264]],[[86192,35818],[-231,-541]],[[73516,48299],[-91,-243]],[[86677,50204],[-336,-261]],[[74318,65943],[22,53]],[[86894,57599],[-289,-388],[-256,-43]],[[58531,54324],[19,101]],[[91079,31279],[299,-170],[57,126]],[[53085,64148],[-5,150],[504,427],[702,318],[229,-61],[793,-14],[43,-512],[-29,-546],[134,106]],[[80791,87585],[-67,-362]],[[55527,25692],[-444,6]],[[51685,56264],[182,-1087],[-10,-998],[376,-1596],[368,-221],[-39,-236]],[[77320,62358],[193,263],[277,70],[299,-124],[48,-176]],[[89748,27813],[0,0]],[[84631,95788],[107,-94]],[[50126,66620],[-5,0]],[[86349,57168],[-123,86]],[[79660,42761],[-4,0]],[[85881,64069],[2,0]],[[83014,54572],[-5,-9]],[[63510,41466],[8,142],[-302,1331]],[[83839,65582],[198,-175]],[[88226,19371],[1,1]],[[82036,62939],[265,-412]],[[86183,42670],[0,29]],[[82203,68704],[-30,-4]],[[79075,64727],[0,-1]],[[71495,46676],[-421,267],[-177,314],[60,469],[-71,245]],[[43466,13639],[1128,85],[116,-415],[212,-20],[430,529]],[[84710,93868],[-211,39],[-46,-502],[-356,-48]],[[85973,43508],[-47,-81],[240,-529]],[[80046,72348],[186,-337]],[[86166,42898],[-27,-103]],[[83003,48367],[148,74]],[[61386,84271],[-9,5]],[[62168,52015],[-181,-176]],[[61987,51839],[-525,-521]],[[61462,51318],[-199,-216]],[[61263,51102],[-340,-355]],[[60923,50747],[43,-128]],[[93768,25567],[2,4]],[[81799,61108],[144,158]],[[67703,69399],[-9,3]],[[45858,41974],[-101,165],[-319,96],[-832,-37],[-253,-69]],[[85903,35285],[-12,8]],[[85120,43207],[125,-20]],[[71416,67327],[13,63]],[[68588,45710],[306,1014],[7,272]],[[59930,83351],[64,16]],[[78902,65054],[288,-506]],[[73958,79410],[-583,-315],[-19,-298],[-613,-708],[-193,70]],[[80499,58540],[14,304],[-288,731],[-92,99]],[[64013,38891],[-145,522]],[[66493,50227],[165,-448],[168,-956],[189,-710],[325,-995],[52,-374],[397,-1224],[152,-141]],[[83848,59010],[89,-711]],[[61639,84544],[26,-81]],[[62815,72511],[-670,1435],[-424,793],[108,366]],[[44000,29186],[0,-205],[-232,-550],[-786,-558],[-580,-34]],[[42402,27839],[-26,-2]],[[42376,27837],[-1,0]],[[42375,27837],[-3,-1]],[[81286,66677],[-67,651]],[[86368,40528],[210,70]],[[81034,88585],[-47,462]],[[85679,49892],[23,28]],[[89473,36652],[1,-1]],[[41620,16608],[71,13],[302,759]],[[84789,27186],[258,187],[40,315]],[[61377,84276],[-422,55]],[[74800,43259],[380,467],[300,248],[321,-8],[546,144],[188,-67]],[[55233,78728],[109,283]],[[69794,39180],[-21,-356]],[[84251,31770],[-109,-416],[-606,106]],[[84109,57497],[-123,-224]],[[78803,88144],[-1,-3]],[[43517,12685],[0,-522]],[[63471,65273],[-688,-749],[-206,-535],[-241,43]],[[79757,67458],[-575,-133],[-244,28]],[[83638,55304],[-83,-285]],[[89219,36668],[40,35]],[[89928,37800],[-218,96]],[[89162,32603],[-321,317],[-257,101],[-160,-265],[-78,-396],[-290,-163]],[[77907,68640],[62,-227]],[[85367,39187],[557,-535],[-84,-279]],[[72159,66355],[181,-118]],[[61639,84544],[270,255]],[[83910,57877],[102,-224],[-23,-362],[192,-82]],[[85388,44531],[-8,-3]],[[91693,28657],[4,-2]],[[54797,25874],[32,-349],[-175,-209]],[[56199,18843],[-312,-129],[-72,-190],[-308,-102],[-866,66],[-390,122],[-399,-20]],[[53852,18590],[-225,-57],[-217,161],[-459,71],[-122,229],[-473,-17]],[[52356,18977],[-294,-114],[-587,15],[-117,174],[-966,14],[-543,570],[-572,92],[-288,-116]],[[48989,19612],[-1270,-21],[-68,-283],[-361,-7],[2,-112],[-811,-31],[-108,165],[-617,-23],[-102,-174],[-752,-35],[-386,-870],[-665,-128],[-357,-337],[-933,-71],[-107,-178],[-764,-62],[-365,45]],[[78302,85914],[567,-148]],[[84310,95635],[152,45]],[[67619,65213],[-830,1135],[-701,1439],[-550,614],[-259,466],[-267,675],[-233,292]],[[86460,49374],[1,-5]],[[61692,84591],[13,15]],[[63862,35835],[62,745]],[[83694,62127],[-1,6]],[[87883,38312],[-272,-519],[122,-142]],[[79346,90258],[-16,10]],[[65783,47521],[-46,41]],[[48157,14606],[81,-286]],[[64115,28066],[261,-277],[317,-60]],[[40293,16229],[30,98]],[[76705,66290],[69,-105]],[[84161,26189],[213,337]],[[84374,26526],[0,2]],[[84374,26528],[413,655]],[[84787,27183],[2,3]],[[65150,82471],[259,-500],[165,-1]],[[64693,27729],[-141,308],[-429,87],[95,1755]],[[73064,59043],[-294,400],[-342,627],[-373,1121],[-94,-268]],[[78330,68804],[423,414]],[[73225,65737],[-129,43],[-168,585]],[[78124,58549],[25,-81]],[[36241,37141],[-363,89],[-195,267]],[[40614,40960],[348,102],[377,-38]],[[41339,41024],[129,57]],[[41468,41081],[304,83],[2236,151]],[[81429,63458],[26,57]],[[64927,38904],[-3,1]],[[78658,61221],[127,243],[614,-8]],[[73225,65737],[168,-38],[346,187],[-63,266]],[[75794,66840],[607,-448],[373,-207]],[[87827,51892],[6,-113]],[[93892,28013],[284,-164]],[[79774,85540],[118,155],[32,407]],[[40614,40960],[708,45]],[[72231,72743],[-107,366]],[[51861,26682],[-1060,35]],[[78024,42665],[27,19]],[[74645,67390],[-142,-417]],[[50761,26632],[8,1]],[[50769,26633],[32,84]],[[79407,80471],[-5,-183]],[[83046,36824],[42,446]],[[78555,89429],[147,-51]],[[82534,86737],[-315,32],[-490,169]],[[68077,44708],[-123,305]],[[79507,59950],[325,7],[211,290]],[[88710,39109],[31,637]],[[72094,69594],[-13,13]],[[84161,26189],[59,-71]],[[84220,26118],[3,-6]],[[73251,67161],[-32,9]],[[93745,27071],[-220,166]],[[85071,45218],[38,-18]],[[52857,60388],[14,-200],[319,-220]],[[78224,68652],[-126,-2]],[[71808,30906],[-14,-177],[-723,177],[-302,4],[-73,-864]],[[62348,48654],[5,-12]],[[82630,68778],[-5,-3]],[[82625,68775],[-154,-7]],[[62348,35604],[7,171]],[[72124,66765],[-537,147],[-327,-270],[-1,-529]],[[84394,43900],[26,-154]],[[74060,66421],[147,-70]],[[90018,33392],[-298,-174]],[[89720,33218],[-3,-1]],[[59853,71473],[243,238],[688,-579],[41,-98]],[[46748,62396],[-22,-174],[586,-1293],[627,-1288]],[[80290,88932],[-2,3]],[[85009,45248],[-13,371],[115,209]],[[87318,52483],[-18,510],[-186,588],[-221,410]],[[84953,46259],[0,-21]],[[62188,63212],[301,102],[216,-472],[239,-785]],[[60157,66276],[-546,-907]],[[71429,67390],[128,-69]],[[61827,75192],[2,-87]],[[79288,91124],[233,-146]],[[79337,89272],[-8,18]],[[90062,38959],[2,6]],[[64415,34641],[10,-59]],[[85342,49254],[258,65]],[[66148,43322],[0,-86],[550,-102],[146,-243],[-56,-257]],[[81249,85806],[79,188]],[[80273,82411],[-196,-499]],[[55684,83795],[-234,14],[117,346]],[[76220,65014],[3,34]],[[62168,52015],[-12,20]],[[83587,47978],[-18,33]],[[72430,67172],[12,167]],[[74873,48500],[-37,169],[440,1266],[38,11]],[[73514,68824],[-63,-269]],[[74539,80605],[-240,206]],[[77809,62030],[-201,33],[-288,295]],[[67989,69410],[-9,-3]],[[77984,61137],[178,1176],[-25,78]],[[83900,92132],[305,-136]],[[62164,35697],[183,-93]],[[76154,63577],[-232,-270]],[[65880,45568],[61,769]],[[83848,59011],[-87,1064]],[[85661,31159],[-407,-1100]],[[84808,50099],[-472,-159]],[[85057,58570],[14,9]],[[49335,36447],[1381,-19],[319,-117],[1818,-28],[506,-53]],[[91119,33059],[-1,-9]],[[79399,61456],[-26,-39]],[[67590,61383],[540,-395],[243,-342]],[[84845,59914],[-289,-587]],[[72490,28170],[136,-141],[290,-24]],[[90052,34334],[8,66]],[[73352,67298],[52,13]],[[87601,54997],[0,-3]],[[85969,62500],[-2,2]],[[60136,83647],[24,-18]],[[62196,84518],[-143,-236]],[[86169,19786],[4,-342]],[[79984,88417],[-340,-45]],[[88910,37871],[-46,42]],[[76267,37022],[-84,80],[-287,-258]],[[80765,65997],[-419,54],[-195,-144]],[[94138,21664],[217,-18]],[[50906,10813],[173,219]],[[55083,25698],[-271,68],[17,-242],[-175,-208]],[[50900,10818],[96,521],[496,-66],[851,1481],[288,396],[166,371],[572,-13],[608,843],[471,19],[171,287],[-9,1015],[296,289]],[[54906,15961],[142,-35]],[[55048,15926],[83,313],[248,71],[106,269]],[[81107,87131],[-44,498]],[[64015,38886],[-69,139],[140,446],[-114,113]],[[63972,39584],[-199,181]],[[63773,39765],[-1082,1737],[-215,451],[-418,614],[-213,200]],[[75886,69065],[0,-4]],[[84549,44743],[-141,-119]],[[84827,94197],[-10,142]],[[82844,57930],[-3,1]],[[89808,35213],[20,-111]],[[84410,44347],[-20,-444]],[[55799,83605],[0,-2]],[[78753,69218],[6,-211],[244,137],[125,-389]],[[89288,35169],[-3,10]],[[71903,82338],[5,-285],[-219,-175],[-92,216]],[[85332,49979],[20,144]],[[80417,82778],[-374,217],[-45,-491]],[[78236,40153],[242,311],[161,632],[261,1468],[117,1445],[85,211]],[[76226,65054],[-3,-6]],[[60116,83658],[9,-44]],[[86495,41704],[122,-4]],[[78051,42684],[-16,21]],[[76154,63577],[338,-283],[150,-280]],[[85367,39187],[-27,68]],[[89365,35217],[-80,-38]],[[78802,88141],[-20,8]],[[78785,69241],[-1,0]],[[67619,65213],[483,-30],[50,-106]],[[88741,39746],[242,-120],[74,-414],[-61,-615],[-80,-184],[354,-882]],[[89460,36617],[2,-2]],[[81503,30136],[-88,-15]],[[91276,20215],[198,-135]],[[68130,43754],[355,-74]],[[87431,55871],[205,-336]],[[80871,56160],[420,-320]],[[93060,25099],[-15,-37]],[[82900,35259],[1,3]],[[67240,71089],[60,-651],[110,-449],[292,-596]],[[83220,57127],[2,8]],[[79473,60217],[34,-267]],[[79516,79303],[-109,1104]],[[79407,80407],[-1,0]],[[79406,80407],[1,64]],[[83540,60624],[-1,-2]],[[87292,50464],[82,321]],[[60751,66993],[1,7]],[[72475,64750],[-254,-547],[-235,54]],[[67954,31560],[1037,-393],[73,95],[623,-140]],[[62477,69729],[-68,-91],[-189,-817]],[[54433,26700],[-20,-298]],[[89670,33489],[-135,123]],[[65787,38700],[323,-355],[577,-122],[173,-158],[290,-542]],[[64561,38231],[-24,-284],[187,-435]],[[82172,64064],[-203,-83]],[[85878,23898],[36,620],[154,742]],[[86068,25260],[207,587],[165,820]],[[86440,26667],[13,96]],[[86453,26763],[-1,8]],[[86452,26771],[-1,10]],[[86451,26781],[-1,2]],[[86450,26783],[-1,7]],[[62086,84662],[-17,-6]],[[62703,84625],[77,1]],[[78059,82605],[221,514]],[[82823,38841],[-360,228],[-168,-109]],[[66640,79406],[-25,50]],[[87782,39980],[68,-218]],[[83002,48366],[80,29]],[[89217,36287],[-23,-25]],[[83364,56319],[51,536]],[[73325,32298],[-280,89]],[[51799,48530],[-532,6],[-196,124],[-482,-169]],[[88223,39286],[-65,22]],[[60505,52192],[-146,-1099]],[[85815,43686],[-283,-208]],[[62384,84369],[-14,-3]],[[76604,62403],[337,-144],[379,99]],[[83905,57880],[5,-3]],[[79695,42708],[14,25]],[[70749,79280],[3,3]],[[81255,39519],[-209,49]],[[81455,63515],[169,-276],[334,-184],[84,98]],[[83569,48011],[3,1]],[[74151,74395],[-132,-622]],[[70021,64917],[-54,-101]],[[71908,47449],[-113,100],[-478,42]],[[82340,59996],[-274,522],[122,624],[-157,207]],[[91928,31177],[1,3]],[[84376,47988],[100,772],[103,365],[45,710],[189,265]],[[80988,88027],[32,-59]],[[81720,86981],[9,-43]],[[92960,29450],[2,11]],[[64004,37979],[-19,-355]],[[63868,39400],[0,13]],[[88705,38316],[-19,75]],[[81328,85994],[184,428],[308,386],[469,419]],[[88238,38816],[2,-43]],[[78005,68286],[-2,-109]],[[65813,44785],[36,-6]],[[67634,36733],[-610,-68],[-66,-181]],[[93880,26669],[-183,148]],[[85883,64069],[-2,0]],[[74800,43259],[380,468],[300,247],[321,-7],[546,144],[188,-68]],[[72586,83725],[-202,-594],[-9,-351],[-472,-442]],[[85360,54064],[47,-995]],[[60577,83901],[-22,-34]],[[84696,98203],[-9,7]],[[88270,38724],[-40,-233]],[[83827,90775],[-77,64]],[[89219,36668],[40,35]],[[83250,44687],[-1,-4]],[[83821,57410],[-70,-47]],[[74661,67484],[0,10]],[[80988,88027],[41,1007],[-42,13]],[[86642,37757],[-329,-22],[-565,489]],[[91276,20215],[1,158],[437,1571],[308,746],[202,688],[310,662],[307,829],[288,448]],[[49116,24768],[2,6]],[[45857,41955],[1,19]],[[85805,63975],[-2,-4]],[[71192,80562],[-56,238]],[[85885,38278],[2,-2]],[[80674,57288],[-874,1262],[-402,731]],[[92151,31354],[316,129],[291,-169]],[[92758,31314],[2,0]],[[92760,31314],[110,-11]],[[64339,35811],[143,492]],[[49830,41020],[-202,3]],[[47193,33556],[1428,1132]],[[87935,34947],[-36,378]],[[85820,43683],[-67,245]],[[81729,86938],[-303,43]],[[72249,71093],[113,-567],[11,-755]],[[83761,60075],[-12,349],[-126,5]],[[87909,34637],[154,19],[-128,291]],[[84669,47088],[-155,-1162]],[[53894,17057],[7,-3]],[[89938,32771],[-4,-230],[-191,-564]],[[90052,34334],[-25,-476]],[[83002,48365],[1,2]],[[61698,84343],[-33,120]],[[83250,58957],[9,-4]],[[67239,71509],[-76,-155]],[[88224,39121],[-1,165]],[[81249,85669],[-10,8]],[[86223,60589],[0,1]],[[64579,39121],[-381,860]],[[64198,39981],[-433,976]],[[83532,56724],[-99,194]],[[80560,88989],[-43,-14]],[[82957,63433],[100,-190]],[[82871,57928],[-27,2]],[[81452,56412],[161,70],[-6,823]],[[42869,53876],[0,6]],[[48188,26404],[-816,804],[-211,-4],[-503,267]],[[73731,42208],[4,-17]],[[88479,37429],[-74,-120],[-135,421]],[[82928,54942],[-11,24]],[[73696,58504],[230,-91],[468,-588],[135,-258],[431,2],[366,-398],[202,-411]],[[72068,47914],[-90,-652],[36,-600],[-161,-517],[-341,41]],[[91335,26438],[-8,-10]],[[74318,65943],[-27,-168]],[[66682,28950],[7,15]],[[95441,28819],[-127,26],[-200,-344]],[[85478,43835],[-55,161]],[[70886,47971],[70,-245],[-59,-468],[-77,32]],[[61644,52118],[-182,-800]],[[61462,51318],[-57,-274]],[[66514,79605],[-37,-614]],[[77962,68062],[41,115]],[[89434,36504],[123,-90]],[[46543,30416],[1022,327],[732,375],[369,23],[183,308]],[[77320,62358],[192,264],[278,69],[299,-123],[48,-177]],[[87573,36599],[21,-247],[315,-590]],[[80121,29540],[199,-116]],[[75831,62689],[8,-12]],[[79075,64726],[115,-178]],[[65295,37815],[-38,285]],[[79913,29118],[207,421]],[[95114,28501],[-240,39]],[[60966,50619],[-30,-347]],[[81720,86981],[9,-43]],[[69867,48842],[-30,-13]],[[80333,71919],[-3,8]],[[84577,58066],[-188,-562]],[[65339,38103],[128,9]],[[57361,79639],[-80,-379]],[[72084,44987],[110,-1],[-125,1042],[-180,170]],[[68284,43677],[5,420]],[[44000,29186],[-27,369]],[[66084,81260],[64,-186],[413,-145]],[[70913,47158],[195,-845],[-5,-489],[175,-145],[86,-410],[-34,-294],[228,-362],[-12,-858]],[[73027,72671],[505,796]],[[61475,82522],[-69,-529]],[[84397,38453],[243,-1306],[16,-442],[159,-26]],[[85367,39187],[-27,68]],[[73125,65520],[-156,-253]],[[63444,25706],[-804,569]],[[43573,49387],[12,-6]],[[86650,33394],[87,27]],[[70384,68945],[-1,-6]],[[89576,37577],[-306,-46]],[[60703,49398],[-282,487],[-23,449]],[[72438,72677],[-207,66]],[[77537,70547],[34,564],[210,1970]],[[58368,84064],[51,-37]],[[84890,49444],[242,-230]],[[68540,70511],[-137,176]],[[70022,64916],[244,-854]],[[87318,52483],[-663,423]],[[50900,10818],[-2,-20]],[[50898,10798],[-109,-318]],[[50789,10480],[-56,-354],[-410,-247],[-515,-672],[-286,-675],[-166,-1088],[-88,-352],[-779,-21]],[[80337,80749],[15,-56]],[[62944,62057],[6,23]],[[76308,46600],[-252,308],[-102,-27]],[[86442,26774],[7,8]],[[86449,26782],[1,1]],[[86450,26783],[1,2]],[[86451,26785],[327,491],[36,895],[110,138],[-35,675],[195,832],[239,279]],[[85905,54149],[-434,-88]],[[60491,85899],[-400,-29]],[[85245,43187],[-452,-542]],[[79473,60217],[-426,318],[-389,686]],[[46841,16817],[95,-7],[5,465]],[[85073,44450],[-124,-47]],[[62619,27456],[-39,-70],[60,-1111]],[[78784,69241],[-31,-23]],[[58873,67106],[47,477],[-720,121],[-333,432]],[[59968,71301],[-115,172]],[[89631,35120],[153,159]],[[53901,17054],[-7,3]],[[60539,53245],[333,-767]],[[84863,95706],[-115,-6]],[[70815,47284],[5,6]],[[85217,49513],[181,88],[44,248]],[[87933,36698],[4,-10]],[[89682,35145],[17,119]],[[53944,39012],[-197,0],[4,611],[-132,106],[-875,94],[-1575,15],[-122,109],[-689,958]],[[84358,35490],[-71,-190]],[[86442,26774],[7,16]],[[83283,35025],[415,-455],[330,-454]],[[88763,35021],[184,151]],[[62704,84647],[-1,-22]],[[72186,68399],[179,-169]],[[83986,57273],[-77,-610]],[[82551,87218],[-262,9]],[[81095,94264],[19,173]],[[72224,44528],[24,-236]],[[81691,61183],[-5,2]],[[89699,35264],[46,75]],[[85295,56187],[68,223],[-43,456]],[[84812,42155],[-1,-2]],[[69457,70335],[-177,400]],[[63205,44150],[5,-5]],[[85568,43261],[122,-405]],[[64113,61715],[767,-628],[755,-814]],[[81261,85873],[251,550],[207,222]],[[80367,80141],[-18,-152]],[[91868,29981],[0,342]],[[48540,65498],[596,-1352],[363,-160],[142,-573],[646,-44],[5,-275],[950,8],[46,-87]],[[88002,38056],[-107,82]],[[87497,38532],[217,70]],[[79872,40689],[159,-1003],[208,-317],[136,-550]],[[57784,81474],[-98,26],[-615,-346],[-117,-160],[-219,-770],[66,-853]],[[78020,42654],[5,1]],[[54180,24707],[-412,68],[-89,-177]],[[73958,79410],[74,283],[191,196],[76,922]],[[80133,59674],[-735,-393]],[[95442,28812],[-1,7]],[[83848,58795],[1,-3]],[[82551,87218],[-262,9]],[[73113,68831],[-38,-123]],[[85963,58913],[-672,-157],[-133,73]],[[57769,51391],[-297,-284]],[[46759,62817],[-293,486]],[[84742,42497],[-113,-69]],[[81205,85443],[29,560]],[[61879,57383],[-37,-196],[-16,-1344]],[[68437,45211],[192,-58],[342,172],[747,613],[586,584],[516,768]],[[63521,47879],[0,-5]],[[84471,43346],[-18,0]],[[58090,83012],[-565,106]],[[84299,95861],[11,-226]],[[57128,66599],[-4,1135]],[[80833,92447],[19,226],[-289,183],[-16,435],[509,733],[37,233]],[[81093,94257],[2,7]],[[90079,33575],[-141,-804]],[[84334,46232],[180,-324],[-106,-1284]],[[86294,41911],[-23,213]],[[50906,10813],[-1,1]],[[62393,84547],[-3,8]],[[62615,52379],[-2,1]],[[61642,84513],[-3,31]],[[78836,89331],[8,86]],[[62331,84630],[-187,77]],[[63210,44145],[-83,72],[2,471]],[[62437,84733],[-106,-103]],[[86642,37757],[-19,-14]],[[84227,95973],[404,-185]],[[86393,34354],[-22,366],[-410,557]],[[82841,57931],[-461,125]],[[88212,51936],[147,280]],[[74604,66030],[48,64]],[[84161,26189],[-5,15]],[[88848,44382],[-162,-754],[-282,-283]],[[64268,38250],[355,-472],[101,-266]],[[89201,35213],[47,332]],[[68176,45268],[50,134],[211,-191]],[[80514,88976],[3,-1]],[[62273,84459],[21,-88]],[[88122,38914],[65,108]],[[80418,56421],[269,124],[184,-385]],[[79311,91992],[-5,-401]],[[85443,49915],[3,0]],[[89338,35021],[-53,158]],[[93269,28769],[2,3]],[[83984,59055],[-135,-263]],[[41961,13850],[249,3],[574,-202],[682,-12]],[[78880,90121],[-3,-12]],[[79176,54209],[393,52],[278,-276],[770,-183],[657,364],[135,424]],[[83986,57273],[192,-74]],[[53787,40295],[407,-499]],[[51387,62385],[-20,258],[-304,12]],[[83473,57545],[5,1]],[[87651,38865],[0,1]],[[85401,55834],[-1,-2]],[[58324,83683],[-21,71]],[[72895,69013],[123,-108]],[[85600,49319],[77,374],[192,334]],[[69935,74644],[441,926],[380,180]],[[86344,40502],[-581,-442],[-272,-360],[-11,-327],[-119,-110]],[[85868,39594],[191,332]],[[86271,42124],[-88,546]],[[80770,60431],[-174,30],[-553,-214]],[[62125,74274],[106,-136]],[[89791,35288],[32,-144]],[[72186,78118],[364,41]],[[50708,58214],[-77,14],[-29,1353],[-38,160]],[[72757,38726],[11,-127],[-141,-2039]],[[94553,20387],[3,-676],[-110,-129]],[[87064,60034],[13,13]],[[84749,94876],[51,-159]],[[84316,45224],[102,-131]],[[78660,88884],[1,-2]],[[62164,35697],[-3,-353],[103,-311],[-51,-1404],[114,-16],[-9,-437]],[[85245,43187],[-452,-542]],[[60125,83614],[-9,44]],[[73594,42833],[161,171]],[[74939,78942],[-566,91],[-415,377]],[[80273,82411],[-1,-9]],[[88187,39022],[18,-48]],[[87793,38177],[4,-266]],[[75699,56204],[-114,282],[157,161],[563,147],[245,-194]],[[68039,40468],[123,-406]],[[70021,64917],[1,-1]],[[71900,29053],[-8,-6]],[[44008,41315],[1863,84],[-14,556]],[[91281,20204],[-5,11]],[[87386,55924],[45,-53]],[[77795,82108],[-980,-1438]],[[57124,67734],[-526,-280],[-285,-10]],[[59856,71482],[-12,51]],[[73712,71258],[-8,48]],[[83529,56970],[2,1]],[[89928,37800],[74,186]],[[75745,65535],[-294,392]],[[55485,16579],[-118,335]],[[55367,16914],[-130,183],[-777,58]],[[73799,43584],[-109,-15],[-96,-736]],[[47370,64034],[-347,239],[-375,-457],[-182,-513]],[[89710,37896],[-397,341]],[[89646,31320],[97,657]],[[77320,62358],[-263,17],[-267,357]],[[79473,60217],[34,-267]],[[60754,86018],[334,-143]],[[48922,42813],[725,161],[304,-4]],[[49951,42970],[212,47]],[[50163,43017],[229,176]],[[83529,56970],[3,-246]],[[81512,86804],[-34,-207]],[[54413,26402],[-46,-508]],[[41315,44090],[-55,569],[-83,2031],[-341,492],[-35,797]],[[62967,80717],[-25,284],[-243,24],[9,276]],[[71908,47449],[373,197],[1214,-268],[512,-279],[286,-253]],[[80876,56151],[-5,9]],[[48517,23423],[-36,-225],[5,-1617]],[[64561,38231],[-76,484],[-405,573],[-32,284],[-172,34],[-405,676]],[[49867,51774],[-195,595],[-758,614],[-1032,786],[-377,-6],[-413,548]],[[79623,92795],[-121,32],[-82,-478]],[[80235,85868],[3,-2]],[[69567,41412],[-47,-674],[-120,-733]],[[51494,31166],[-178,126],[-465,6],[-12,-284],[-357,-3]],[[82976,58555],[-98,195]],[[81002,39648],[0,21]],[[77537,70547],[-820,-270]],[[74125,66872],[-128,64]],[[75839,62677],[-10,-3]],[[67810,41492],[77,-147],[152,-877]],[[75401,49246],[-120,437],[33,263]],[[73045,32387],[-179,264]],[[66749,73656],[1,-4]],[[85840,44317],[62,555]],[[86292,54318],[1,1]],[[80152,61422],[0,-1]],[[80273,82411],[-74,226]],[[60359,51093],[-302,253],[-299,47],[-100,-257]],[[65561,38778],[226,-78]],[[89437,36523],[594,-268],[409,-386],[465,-221],[-198,-768]],[[85783,33044],[349,87]],[[81078,87108],[-280,187],[-262,-276]],[[79507,59950],[325,7],[211,290]],[[67989,69410],[375,392]],[[89678,36744],[37,-102]],[[60181,76738],[4,6]],[[64779,69834],[-590,527],[-483,587]],[[84176,58762],[-192,293]],[[91540,29154],[-43,-218],[309,-313]],[[84632,44152],[-81,-101]],[[60407,83071],[-25,110]],[[85625,43028],[29,68]],[[82322,62484],[17,54]],[[55501,84151],[66,4]],[[86869,50795],[8,13]],[[63602,53187],[-89,-1443],[-186,-81],[-35,-240]],[[88920,37903],[-10,-32]],[[49771,48465],[-797,366]],[[60081,50678],[-253,310],[-93,-109]],[[85229,44465],[-60,-46]],[[79606,44202],[-52,-1206],[141,-288]],[[84798,43527],[-345,-181]],[[82471,68768],[-313,202],[-116,-109]],[[81286,66677],[87,-9]],[[85746,62635],[-52,-69]],[[54460,17155],[-202,428],[-134,619],[-272,388]],[[53852,18590],[-301,828],[-259,512],[-46,302]],[[90987,25816],[0,-368],[-254,-695],[-34,-689]],[[82680,87650],[133,278],[52,494]],[[84451,93399],[-18,-236],[-434,-575]],[[80324,92997],[-221,-135]],[[67770,32964],[12,201],[239,41],[513,-111],[-12,-204]],[[69239,74170],[-368,-1022]],[[68373,73771],[-395,-71],[-197,72],[-1031,-120]],[[96432,16224],[97,-625],[103,-253],[366,-418],[289,-38],[154,-300],[297,-230],[285,-368],[61,-371],[436,-539],[376,-254],[534,-230],[468,70],[77,445]],[[72096,69598],[-15,9]],[[55607,84177],[-40,-22]],[[62348,35604],[-1,0]],[[81452,56412],[25,211]],[[75375,77533],[348,-732],[-22,-264]],[[92960,29450],[5,-28]],[[89967,38439],[-284,107]],[[66923,57829],[194,-529],[44,-326],[-38,-799],[46,-490],[132,-551]],[[91518,27050],[17,61]],[[91535,27111],[72,571],[199,941]],[[79581,31643],[1,3]],[[84381,96963],[39,312]],[[47939,59641],[296,197],[378,-6],[77,169],[379,-6]],[[82042,63153],[-54,330]],[[82977,56505],[3,4]],[[71806,45932],[-2,0]],[[84477,97459],[40,439],[112,-31],[67,336]],[[75983,38500],[67,157],[513,1],[443,334],[790,851],[294,38]],[[88238,38816],[27,13]],[[73050,67463],[-212,98]],[[78506,67532],[4,0]],[[88240,38773],[32,-41]],[[84560,96476],[28,205]],[[71788,63173],[-8,22]],[[87883,38312],[-141,-76],[-377,60]],[[89313,38237],[-410,602]],[[74279,46825],[5,1]],[[93543,28322],[-11,15]],[[86344,40502],[18,3]],[[76324,69984],[433,189],[-40,104]],[[74315,68461],[10,-307]],[[60160,83629],[10,-72]],[[70132,78526],[-49,-264],[-377,-306]],[[88068,52311],[-65,211]],[[52753,60413],[-102,79],[-1197,48],[-77,115]],[[62387,34739],[-134,50],[-40,-1160],[114,-16],[-9,-437]],[[58301,84146],[67,-82]],[[85396,54168],[-36,-104]],[[72101,35001],[138,856]],[[84798,43527],[323,320]],[[85985,62806],[12,-145]],[[78224,68652],[62,141],[467,425]],[[79913,29118],[-23,-84]],[[90052,34334],[8,66]],[[80076,78312],[23,-108]],[[67581,37783],[-27,200],[170,172],[58,-588]],[[71473,81869],[124,225]],[[57124,67734],[24,905],[-75,1619],[5,1227],[-191,434]],[[81880,62343],[-74,-54]],[[52524,50407],[300,129]],[[66039,43946],[0,690],[-190,143]],[[85677,50472],[11,21]],[[68915,47274],[-21,-550],[-203,-764],[-225,58]],[[77323,64942],[-43,12]],[[90058,57371],[-2,1]],[[73125,65520],[100,217]],[[80407,82773],[-409,-269]],[[87599,58693],[-2,-1]],[[84749,94876],[-162,241]],[[66573,80012],[-489,655]],[[63295,71367],[0,8]],[[59735,50879],[-77,257]],[[55267,24016],[30,1672],[230,4]],[[75839,62677],[346,-140]],[[76185,62537],[419,-134]],[[60111,83112],[-166,25]],[[80536,87019],[-69,-228]],[[72365,68230],[148,-93]],[[72815,66916],[59,-38]],[[86341,49943],[119,-569]],[[89746,27813],[-374,-166]],[[80474,90017],[222,-173],[181,-366]],[[86006,45953],[-222,387]],[[83675,92166],[-5,2]],[[72594,46967],[539,1630]],[[93511,28467],[21,-130]],[[88591,38762],[-119,172]],[[85888,64066],[2,-6]],[[72224,44528],[337,-304],[728,-257],[510,-383]],[[59731,50884],[4,-5]],[[85746,62635],[13,-25]],[[72866,67128],[-181,-232]],[[42379,27832],[-4,5]],[[42375,27837],[-3,-1]],[[79398,59281],[5,-6]],[[85483,39379],[-63,74]],[[73062,68598],[107,-266]],[[84037,26407],[-1,-14]],[[76081,37080],[389,198],[342,434],[-22,155]],[[89282,35925],[76,86]],[[45839,27939],[-305,-167],[-279,-517],[-208,-12],[-405,-774],[-207,-235],[-246,-806],[-243,-1285],[-357,-452],[25,-1028],[-501,-397],[-516,-556],[-121,-386],[27,-999],[-132,-284],[-409,-39],[-219,-362],[-457,-514],[-771,-702],[-136,-493],[-321,-493],[44,-1187],[191,-22]],[[76154,63577],[338,-283],[150,-280]],[[52224,49825],[-131,-157]],[[88097,51700],[112,-34]],[[87210,50654],[40,73]],[[85997,62660],[-30,-158]],[[51387,62385],[-20,257],[-334,-102]],[[81034,88585],[-46,-558]],[[78492,59011],[-391,303],[-639,257]],[[87499,58117],[95,568]],[[85411,55809],[-2,-1]],[[61475,82522],[-91,-110],[-540,102],[-160,147]],[[73729,68120],[-70,5]],[[85702,49920],[-23,-28]],[[94047,26422],[15,130]],[[86341,49943],[-138,-64],[-334,148]],[[84672,44851],[75,-92]],[[85050,45387],[16,-307],[176,-191]],[[80474,90017],[-50,-118]],[[47193,33556],[429,-384],[168,-249],[729,-769]],[[85409,55808],[2,1]],[[72574,72679],[-136,-2]],[[73269,67416],[5,100]],[[58111,74188],[-119,-35]],[[62336,64032],[45,-539],[-200,-43],[7,-238]],[[60872,52478],[-238,-23],[-128,-260]],[[88525,45672],[140,-962],[183,-328]],[[88356,39364],[60,-101]],[[91518,27050],[18,-15]],[[67901,44235],[-966,195]],[[67565,59824],[66,472],[-85,861],[44,226]],[[50564,59741],[8,2]],[[81084,85038],[115,120]],[[80389,81357],[-21,-270]],[[48401,18782],[148,12]],[[64342,35538],[-4,395],[144,370]],[[89033,28034],[-10,6]],[[89023,28040],[-1,0]],[[89022,28040],[-458,-758]],[[88564,27282],[-1,-1]],[[88563,27281],[-535,-162],[-214,-151],[-664,-104],[-367,133],[-331,-226]],[[86452,26771],[-1,1]],[[86451,26772],[-3,2]],[[86448,26774],[-6,0]],[[60515,58326],[139,49],[446,428],[178,-16]],[[87384,37342],[-167,-422]],[[81118,94479],[-4,-42]],[[52659,56135],[-349,-89],[-506,-10],[-119,228]],[[81957,60732],[-184,345]],[[73435,67553],[39,-86]],[[64579,39121],[210,-421],[15,-469]],[[65806,46896],[-1,-6]],[[55684,83795],[-13,3]],[[67371,32703],[382,-17],[278,-309]],[[85625,43028],[-94,-46]],[[84721,94374],[2,199]],[[87856,34730],[-154,372]],[[73684,68009],[-77,0]],[[58303,83754],[-213,-742]],[[65231,38900],[28,455],[-589,95],[17,406]],[[66017,42202],[-27,-144]],[[83388,48276],[-194,-158]],[[83949,57093],[-30,-117]],[[83210,53145],[-34,196],[-341,257]],[[49343,36555],[-8,-108]],[[75250,72317],[161,54],[142,-702],[-102,-396],[86,-378],[181,62]],[[65571,69669],[-28,16]],[[83513,57636],[3,-2]],[[68784,37837],[-518,-500]],[[80332,90657],[119,418]],[[87937,36688],[43,-190],[329,-398]],[[73590,67231],[-339,-70]],[[79526,92005],[-103,-37]],[[83283,35025],[0,1]],[[88721,39473],[20,273]],[[58514,49563],[-349,276],[-241,411]],[[80871,56160],[5,-9]],[[84895,38473],[256,59],[136,314]],[[73169,68332],[84,-399]],[[73522,66748],[-40,-151]],[[85420,39453],[-53,-266]],[[47088,50620],[-181,-73],[-114,360],[-9,1046],[-213,502],[18,575]],[[73113,68831],[-95,74]],[[85690,42856],[-158,-382]],[[68901,46996],[14,278]],[[73419,69053],[372,-113],[95,-145],[-32,-448]],[[77962,68062],[-95,-62]],[[88266,38868],[-61,106]],[[81441,96026],[-7,-114]],[[84521,96425],[52,-410]],[[79070,40131],[-2,-3]],[[68031,32377],[-82,-513],[-273,-461],[-135,-375],[-71,-698],[-290,-238],[-279,-565],[-26,-341],[-186,-221]],[[81061,94169],[34,95]],[[64013,38891],[1,-2]],[[80871,56160],[562,248],[44,215]],[[52839,49033],[37,-354],[-231,-432],[-82,-843],[-338,-1179]],[[71259,66113],[-13,299]],[[64266,38218],[2,32]],[[82440,68614],[31,154]],[[89986,38118],[-19,321]],[[58514,49563],[-159,-890],[-23,-632]],[[82289,87227],[21,224]],[[82310,87451],[-1,2]],[[82309,87453],[-293,783]],[[80988,88027],[-69,-157],[144,-241]],[[74188,67644],[183,114]],[[91293,20214],[-17,1]],[[86677,50204],[-336,-261]],[[82270,67921],[172,-976],[21,-773]],[[79405,82392],[325,80]],[[86271,42124],[-88,546]],[[62633,84489],[0,2]],[[60555,83867],[-6,7]],[[64602,82446],[84,-109],[375,-35],[89,169]],[[79328,91525],[-51,-484],[244,-63]],[[80046,72348],[-5,10]],[[49444,35371],[2,10]],[[65574,81970],[-46,-452]],[[63392,82168],[50,0]],[[65881,48182],[-59,-340],[-29,-943],[43,-52]],[[66291,39582],[7,-590],[-511,-292]],[[72969,65267],[-203,-508]],[[87937,38565],[-162,158]],[[66935,44430],[-98,69],[-798,136],[-190,144]],[[75114,71334],[362,79],[76,256],[-141,701],[-161,-53]],[[72099,69602],[10,-18]],[[68536,45327],[15,-410],[163,-92]],[[75175,66422],[-250,95]],[[62967,80717],[194,-753],[337,-321],[278,-409]],[[84495,96705],[93,-24]],[[80876,56151],[-5,9]],[[88945,36551],[169,46]],[[76642,63014],[218,218]],[[74439,72247],[502,-110],[87,76]],[[86593,54550],[-7,-13]],[[86586,54537],[307,-546]],[[72081,69607],[-183,-108]],[[83958,61447],[169,667]],[[71680,52879],[-216,-581]],[[89465,36615],[-31,-111]],[[84580,97176],[-47,28]],[[76242,78723],[-389,238]],[[65881,48182],[862,-208],[67,46]],[[87380,55880],[6,44]],[[41802,18299],[-507,-795]],[[86642,37757],[-329,-21],[-565,488]],[[61982,51798],[1,8]],[[89580,36135],[-162,163]],[[83456,62231],[237,-98]],[[76679,35178],[-5,6]],[[72912,68197],[-255,-186]],[[93543,28322],[0,-3]],[[63959,31451],[0,0]],[[70266,64062],[-65,-85],[-475,304]],[[89434,36504],[123,-90]],[[78224,68652],[-44,-186]],[[57545,53468],[74,-380],[478,-851],[175,-404],[240,-151]],[[84394,43900],[68,77]],[[86867,51405],[-688,67],[-332,163],[-274,-96]],[[85380,44528],[-83,2]],[[79860,28970],[-38,1]],[[56781,78841],[-334,-703]],[[52093,49668],[-222,-443],[-8,-707],[-64,12]],[[72757,38726],[331,399]],[[60262,83523],[250,-373],[-96,-161]],[[87228,37289],[156,53]],[[80354,80686],[-2,7]],[[78170,40974],[234,-103],[-40,-617],[-128,-101]],[[86578,40598],[2,-6]],[[71768,45691],[-159,-30]],[[65257,38100],[-219,18]],[[85707,50673],[-5,-31]],[[73204,67916],[-105,-153]],[[68915,47274],[-105,935],[66,174],[43,718]],[[50872,62152],[-303,-773]],[[67045,52515],[-47,-180],[-114,-1370],[-148,-429],[-400,-766],[-140,-393],[-160,-761],[-198,-637],[-55,-458]],[[43676,49663],[5,6]],[[50643,44208],[472,34],[1137,840],[500,242],[303,240]],[[80467,86791],[-187,-257],[-275,-175],[-81,-257]],[[60512,83792],[9,20]],[[89365,35217],[-80,-38]],[[75303,66700],[89,339]],[[73590,67231],[123,-85]],[[87470,58138],[-575,-538]],[[85466,50382],[9,-5]],[[45637,21919],[-602,-79],[-31,-298],[-203,-63]],[[89981,37211],[38,-358]],[[87050,58891],[-610,-74],[-477,96]],[[74419,66371],[50,319]],[[73148,33334],[-41,-470]],[[72215,67168],[56,3]],[[80600,90152],[165,138]],[[63936,36900],[75,625]],[[89606,35770],[2,82]],[[78458,39377],[339,179]],[[76733,39385],[-133,125]],[[74101,40203],[562,702],[611,596],[460,705]],[[79280,89836],[66,422]],[[64773,47535],[186,-657],[-37,-462]],[[85790,45600],[-6,740]],[[47992,30975],[305,143],[369,22],[183,309]],[[44018,28201],[-4,4]],[[50564,59741],[-296,35],[-241,536]],[[60116,83658],[27,-46]],[[82271,69571],[103,-107]],[[93523,28829],[-259,-56]],[[87573,36599],[74,-14]],[[67703,69399],[-9,3]],[[86584,40840],[0,-4]],[[83413,49013],[65,-48]],[[83673,57216],[-144,-246]],[[65329,38436],[-98,-80]],[[87292,50464],[-82,190]],[[71292,29082],[26,53]],[[83377,49074],[-2,2]],[[86184,42908],[-6,3]],[[59476,82938],[-603,-35],[-583,144],[-199,-41]],[[58091,83006],[-1,6]],[[85748,38224],[-353,235]],[[62331,84630],[-61,82]],[[95397,18515],[413,-389],[308,-1044],[314,-858]],[[80724,87223],[-188,-204]],[[48156,14611],[151,355],[1119,736],[540,279]],[[86474,60448],[-251,141]],[[85767,44838],[14,2]],[[85781,44840],[2,0]],[[85783,44840],[119,32]],[[93619,26123],[-15,-145],[-475,-660]],[[84635,44349],[155,-79]],[[91697,28655],[109,-32]],[[61386,84271],[-9,5]],[[70716,64256],[-224,12],[-229,-197]],[[66611,79966],[1,4]],[[79603,92948],[97,155]],[[75974,65286],[-229,249]],[[60262,83523],[-151,-411]],[[88741,39746],[208,461],[-680,460]],[[88269,40667],[-129,343],[-286,174]],[[49444,35371],[42,959],[-151,117]],[[89928,37800],[-352,-223]],[[58019,50569],[-95,-319]],[[88003,39523],[-2,-3]],[[91276,20215],[2,158],[437,1569],[308,747],[204,693],[308,657],[235,652]],[[54433,26700],[-66,-806]],[[80704,39224],[73,137],[478,158]],[[69935,74644],[-120,-257]],[[62439,84732],[-2,1]],[[64415,34641],[-97,141],[-32,-550],[-79,-55],[-51,-568],[-291,-212],[-17,-537]],[[47370,64034],[199,61],[971,1403]],[[83685,57885],[70,0]],[[66958,36484],[-3,11]],[[85534,43459],[1,2]],[[78302,85914],[-2,-26]],[[87223,36357],[-144,-353]],[[86869,50795],[8,13]],[[87060,58837],[1,1]],[[79671,80272],[-269,16]],[[86166,42898],[12,13]],[[78687,61163],[-29,58]],[[54988,76947],[10,37]],[[64055,32754],[-15,758],[448,-87]],[[81988,36026],[-589,-404]],[[73561,69015],[-47,-191]],[[47578,39811],[90,174]],[[78189,68149],[-6,58]],[[87870,39700],[36,16]],[[85111,45828],[-61,-441]],[[85142,56795],[-3,4]],[[74419,66371],[-79,-375]],[[86541,54490],[-249,-172]],[[88223,51904],[-11,32]],[[89981,37211],[-507,-560]],[[78352,56699],[546,385]],[[83619,49634],[14,47]],[[84028,34116],[374,-438]],[[64784,38147],[254,-29]],[[83569,38109],[454,287],[374,57]],[[48542,43399],[380,-586]],[[48540,65498],[1,-1356],[-386,-654],[-508,-178],[-277,724]],[[56422,49693],[275,-159],[81,-230],[254,-56],[502,153]],[[45992,64118],[-3,0]],[[63440,53163],[-78,-5],[-492,-576]],[[86166,42898],[-3,4]],[[64415,34641],[36,-667]],[[79771,78188],[-149,-704],[-37,-779],[40,-254]],[[63025,43065],[485,-1599]],[[80175,79643],[174,346]],[[80273,82411],[-1,-9]],[[76113,81820],[288,-364],[414,-786]],[[81969,63981],[-485,-397]],[[78185,37444],[-308,-160],[-385,173]],[[84817,94339],[-51,22]],[[63261,27582],[-327,255],[-272,970],[190,353]],[[68485,43680],[224,-25],[502,322]],[[86344,40502],[-22,-369],[572,-568],[7,-161],[330,-961],[134,-147]],[[82551,87218],[105,176],[49,481],[109,52],[51,495]],[[80232,72011],[98,-84]],[[73561,69015],[-142,38]],[[72329,66494],[-205,271]],[[83212,53133],[-2,12]],[[61909,84799],[160,-143]],[[58514,49563],[1220,127]],[[78020,61098],[-559,432],[-624,355],[-298,262]],[[76539,62147],[-354,390]],[[76185,62537],[-84,151],[-259,-7]],[[75842,62681],[-13,15]],[[64452,34913],[0,-4]],[[71808,30906],[40,-244],[-174,-67],[-40,-488]],[[62827,72510],[0,5]],[[84672,44851],[19,19]],[[66588,41786],[-104,744]],[[87318,52483],[143,1033]],[[79041,57055],[-143,29]],[[83194,48118],[-37,-23]],[[81603,57318],[114,141],[870,-85],[346,45],[289,-284]],[[81267,83090],[-141,36],[-275,-364],[-443,5]],[[80408,82767],[-1,6]],[[79998,82504],[-140,-107]],[[79858,82397],[-117,-755],[-45,-635],[-302,-300],[13,-236]],[[57679,67393],[146,-449],[23,-416]],[[72666,37411],[-18,-3]],[[83984,59055],[-136,-45]],[[69214,51198],[-108,-38]],[[65150,82471],[529,39]],[[57073,79485],[-272,-114]],[[72862,34052],[4,-133]],[[74262,66832],[-137,40]],[[82100,61594],[-21,-19]],[[73329,67844],[-62,-70]],[[85815,43686],[25,631]],[[65543,69685],[-1,-4]],[[85471,42007],[61,467]],[[82865,88422],[-2,3]],[[82666,54868],[-1,-5]],[[66211,51082],[296,-114],[460,44]],[[75954,46881],[-314,-198],[-520,11],[-386,132],[-450,0]],[[89682,35145],[-121,-210],[-223,86]],[[60262,83523],[423,-584],[-1,-278]],[[82534,86737],[37,85]],[[88945,36551],[-243,-41]],[[81267,83090],[21,72]],[[83736,58439],[-73,-202]],[[83685,57885],[-128,-17]],[[73590,67231],[265,250],[113,368],[-114,498]],[[83750,90839],[-84,285],[95,881],[-84,160]],[[83677,92165],[133,682],[270,321],[17,189]],[[81607,57305],[-4,13]],[[84737,36120],[-2,2]],[[81238,86342],[1,-665]],[[85420,39453],[448,141]],[[84817,94339],[-77,-73]],[[80467,86791],[-187,-258],[-275,-175],[-81,-256]],[[50027,60312],[-182,45],[-291,437]],[[91956,26103],[189,164],[239,-244],[299,-119],[224,-233]],[[92832,31782],[-72,-467]],[[92760,31315],[110,-12]],[[82391,48404],[291,2]],[[58512,51682],[-48,-267],[-409,-718],[-131,-447]],[[53250,33091],[-103,-77],[-935,21],[-1,-43],[-1482,-2]],[[66017,42202],[-143,-12]],[[61569,31255],[79,504],[-39,396]],[[84694,61243],[-1,4]],[[83948,60905],[-337,185],[-723,197],[-809,288]],[[79398,59281],[5,-6]],[[84334,46232],[-126,-69]],[[64010,38884],[4,5]],[[68031,32377],[-77,-817]],[[72475,64750],[-2,-9]],[[73837,66651],[-126,69]],[[84382,43956],[28,391]],[[80395,93076],[-71,-79]],[[59930,83353],[0,-2]],[[84825,95272],[-177,78],[-116,-219]],[[83388,48276],[98,-186]],[[89338,35021],[-53,158]],[[85869,50027],[-167,-107]],[[70815,47284],[-364,294],[-197,445],[-425,656],[38,163]],[[76497,64601],[-343,-1024]],[[84691,44870],[0,0]],[[85475,50377],[-9,5]],[[84454,42418],[-353,-88],[68,457],[146,251]],[[89275,36343],[-58,-56]],[[87938,34940],[-1,1]],[[48156,14611],[9,-3]],[[89649,31312],[-3,8]],[[64231,66967],[159,-175],[711,-101],[368,-497],[707,68],[251,-315],[144,-32],[468,-607],[380,75],[200,-170]],[[69211,43977],[449,-601],[12,-456]],[[51685,56264],[-22,328],[-289,881],[-438,719],[-228,22]],[[88464,39359],[-48,-96]],[[87441,40401],[-99,54]],[[86656,40696],[59,1]],[[84873,95949],[-10,-243]],[[55446,83159],[-5,-388],[165,-810],[-141,-169],[18,-253]],[[60333,41298],[-526,-1627]],[[61511,41923],[-78,-480],[-868,104],[-232,-249]],[[73064,59043],[-326,460],[-99,-82]],[[61605,42653],[1,11]],[[68859,73160],[12,-12]],[[81504,87367],[6,75]],[[66573,80012],[18,-23]],[[89646,31320],[97,657]],[[71471,62498],[-352,-222],[-497,56],[-314,-102],[-452,300],[-208,-146],[-212,43]],[[41155,16654],[-6,-2]],[[88070,54000],[121,-212]],[[51377,60655],[67,-117]],[[89639,35869],[-29,-7]],[[82256,28592],[451,-58],[50,-107]],[[84710,93868],[-212,39],[-51,-513],[-350,-37]],[[62506,84682],[-45,-89]],[[60281,67021],[-495,286],[-103,170],[-664,30],[-99,76],[-47,-477]],[[80517,88975],[44,419],[-178,86]],[[94201,22722],[75,-238],[79,-838]],[[73744,69914],[-295,-559]],[[85903,35285],[-2,18]],[[76860,63232],[-218,-218]],[[43436,60010],[55,262],[-35,2008],[-323,231],[-318,958],[-489,445],[-94,408]],[[85532,43478],[-287,-291]],[[44605,61570],[-249,-399],[4,-221],[-218,-129]],[[44605,61570],[-2,-564]],[[44605,61570],[93,-192]],[[89201,35213],[-254,-41]],[[70336,68752],[6,-14]],[[60281,85872],[-2,3]],[[85020,45450],[-11,-202]],[[71986,64257],[-102,-395],[-150,56]],[[93072,25208],[-12,-109]],[[40519,53467],[-57,169],[-24,905],[-100,-7]],[[95308,28824],[1,-1]],[[79473,60217],[232,371]],[[87795,52067],[0,-2]],[[63306,39895],[7,4]],[[83587,47978],[381,342]],[[59930,83353],[32,9]],[[85532,43478],[-287,-291]],[[81249,85669],[-10,8]],[[83115,58286],[-244,-358]],[[46726,59110],[34,-1154]],[[83619,49634],[-17,881]],[[88629,37952],[-393,282]],[[81880,62343],[-6,-56]],[[81316,87512],[-22,161]],[[59968,71301],[346,-129]],[[71963,64460],[-8,5]],[[68381,81259],[-44,203]],[[77061,76017],[7,315],[235,-57],[199,123]],[[49444,35371],[-283,-334],[-301,-552],[4,-2339],[147,-527]],[[49011,31619],[-131,-175]],[[83412,89878],[-257,-831],[-252,-105],[-40,-517]],[[49554,60794],[298,417]],[[72231,72743],[-29,5]],[[73275,36793],[79,541],[96,173],[522,-28],[217,147],[557,-180],[71,-329]],[[81429,63458],[-4,-50]],[[84380,62987],[-199,180]],[[69189,50984],[-82,174]],[[68249,37226],[-494,-30],[27,371]],[[79507,59950],[-34,267]],[[74151,74395],[315,583],[914,1093],[321,466]],[[72194,31756],[-112,206],[-21,434],[-825,262],[63,754]],[[85476,54179],[-73,-149]],[[67249,46842],[-772,-316],[-3,-60]],[[89838,35036],[-1,-121]],[[83167,65778],[419,-331],[253,135]],[[63936,36900],[52,447]],[[75654,69727],[-244,-379]],[[72459,67110],[-29,62]],[[87608,19364],[2,3]],[[61898,75499],[-145,4]],[[41315,44090],[-103,-313],[49,-2226],[-674,-28],[27,-563]],[[62432,58721],[33,-8]],[[84505,95896],[126,-108]],[[48503,42346],[33,-248],[433,-50],[20,266]],[[82436,66193],[-29,-254]],[[64339,35810],[0,1]],[[45735,50000],[0,-11]],[[68068,71024],[-54,-957],[66,-498],[-91,-159]],[[84846,46863],[367,-96],[-42,140]],[[56801,79371],[-20,-530]],[[85830,62734],[0,-2]],[[66612,79970],[-9,941],[-42,18]],[[81611,84135],[-107,1140]],[[71781,63196],[7,-23]],[[85158,58829],[-101,-259]],[[94138,21664],[-353,795],[-354,1345],[-154,1321]],[[86674,49337],[0,2]],[[73889,42292],[285,-259]],[[79272,36527],[-3,0]],[[52857,60388],[-104,25]],[[71808,30906],[144,-32],[127,251],[67,632],[107,-20],[176,728],[127,-25]],[[76200,35811],[110,44],[364,-671]],[[85904,40947],[275,-139]],[[80919,87890],[-57,359],[-427,343]],[[86896,57599],[-2,0]],[[81607,57305],[-390,-187],[-543,170]],[[71480,63821],[-93,-147]],[[84383,26513],[-160,-401]],[[54654,25316],[-308,6]],[[83988,57472],[-2,-199]],[[79398,59281],[5,-6]],[[84615,44590],[82,-52]],[[86492,41709],[-1,-8]],[[89437,36523],[-3,-19]],[[80007,81643],[70,269]],[[82097,36100],[-109,-74]],[[63705,55802],[-23,-90]],[[63682,55712],[-216,-14],[-648,373],[-400,21]],[[89461,34922],[-8,-1]],[[82110,47270],[85,-30]],[[81399,61011],[0,0]],[[54346,25322],[-383,-161],[-1,-199],[-283,-364]],[[86193,45396],[-5,-5]],[[86188,45391],[0,0]],[[86188,45391],[0,1]],[[86188,45392],[0,1]],[[86188,45393],[-135,15],[-157,-381]],[[85896,45027],[0,0]],[[85896,45027],[-1,-1]],[[85895,45026],[0,0]],[[85895,45026],[-27,-87]],[[82270,67921],[-105,277],[8,502]],[[80152,61422],[-42,-332]],[[81399,61011],[0,0]],[[48849,31449],[13,-3]],[[48862,31446],[18,-2]],[[40998,15798],[-3,-9]],[[92832,31782],[-2,19]],[[82921,31001],[-126,-116]],[[89579,35997],[31,-135]],[[83151,48441],[237,-165]],[[65295,37815],[19,176]],[[83392,57177],[41,-259]],[[69837,48829],[-75,-290],[-99,-942],[-312,-850],[-98,-572],[-96,-1257],[-66,-294],[-485,-1001],[-113,-1435]],[[93397,24110],[-120,1015]],[[86390,38529],[313,-92],[21,-268]],[[61569,31255],[79,504],[-39,396]],[[62026,74986],[-157,-167]],[[61639,84544],[-11,132]],[[61628,84676],[14,367],[-118,461]],[[61524,85504],[65,340],[183,249]],[[88019,39522],[-16,1]],[[93132,25242],[-60,-34]],[[95208,28210],[-63,176]],[[62944,62057],[218,-745],[353,-917],[55,-313],[358,-585]],[[73995,37517],[194,109],[557,-180],[71,-329]],[[68751,47336],[164,-62]],[[75250,72317],[195,48],[210,451],[357,485],[317,66],[313,202],[233,-6],[381,307],[550,132],[199,210]],[[93770,25571],[1,-4]],[[81719,86645],[570,582]],[[63959,31451],[97,-22],[59,915]],[[73365,66864],[61,93]],[[80775,29932],[10,-519],[-89,-540]],[[80696,28873],[-32,-134]],[[80664,28739],[-259,82]],[[87694,36202],[-121,397]],[[82682,54845],[-17,18]],[[84798,43527],[323,320]],[[50980,20657],[654,-134]],[[69980,50204],[1,-9]],[[65323,38414],[376,-112],[53,104]],[[61548,64602],[-75,-258]],[[86901,51126],[-24,-318]],[[62108,67381],[2,-4]],[[85327,49967],[0,-3]],[[73970,31995],[-39,-22]],[[88947,35172],[-296,222],[-342,60]],[[79638,42162],[359,173],[458,90],[599,321],[408,87],[191,196]],[[84551,44051],[-89,-74]],[[65941,46337],[-4,-9]],[[83115,58286],[171,-212]],[[85028,44914],[-19,334]],[[58250,84072],[51,74]],[[64268,38250],[-108,186],[100,359]],[[41125,16636],[195,854]],[[79808,65321],[15,139]],[[85120,43207],[125,-20]],[[81030,71313],[-2,1]],[[64218,29879],[12,216],[-279,42],[-61,528],[69,786]],[[64602,82446],[-586,-794],[-107,-269],[-33,-709]],[[65329,38436],[-6,-22]],[[69687,31122],[-16,97]],[[89608,35852],[-2,-82]],[[78785,88153],[-3,-4]],[[71634,30107],[7,-468],[199,-574]],[[81095,94264],[-24,-102],[378,-105]],[[95114,28501],[31,-115]],[[66588,41786],[92,-486]],[[72915,34087],[16,-25]],[[89194,36262],[-63,-124]],[[73251,67161],[23,87]],[[54907,16084],[2,-120]],[[54909,15964],[-3,-3]],[[54906,15961],[-295,-290],[9,-1014],[-174,-293],[-499,-77],[-44,-1603]],[[84691,44870],[88,-281]],[[82630,68778],[-23,118]],[[44555,51793],[5,-1]],[[62419,85073],[111,-109]],[[73075,68708],[94,-376]],[[64268,38250],[-2,-32]],[[81426,86981],[43,139]],[[75654,69727],[-21,-57]],[[62331,84630],[-45,190],[-200,-158]],[[71318,29135],[201,110],[115,862]],[[60751,66993],[-408,20]],[[84383,26513],[92,280],[314,393]],[[73665,67499],[-41,-138]],[[66958,36484],[66,182],[610,67]],[[81504,87367],[-35,-247]],[[67954,31560],[668,-236],[95,811]],[[44224,10328],[-4,-1]],[[85120,43207],[74,213]],[[85443,49915],[-11,-204]],[[84494,27920],[-39,-540]],[[84455,27380],[-1,-1]],[[84454,27379],[-144,-225],[-273,-747]],[[80988,88027],[-69,-157],[144,-241]],[[74616,43059],[3,-172]],[[79495,38424],[-394,432],[-119,24]],[[80430,64292],[310,-189]],[[69935,74644],[263,-69],[110,-389],[-43,-235],[-259,-87]],[[89791,35288],[32,-144]],[[46759,62817],[-11,-421]],[[84598,94786],[24,202]],[[85891,35293],[-111,-54],[-289,262],[-500,168]],[[78693,64844],[-4,434],[162,960]],[[88068,52311],[144,-375]],[[85767,44838],[15,3]],[[85782,44841],[1,-1]],[[85783,44840],[119,32]],[[81399,61011],[-15,86]],[[41295,17508],[0,-4]],[[84101,93382],[-4,-25]],[[88703,38333],[31,-218]],[[78302,85914],[-2,-26]],[[63924,36584],[12,316]],[[85901,35303],[-457,736],[-580,701],[-49,-61]],[[84738,95694],[-122,172],[-389,107]],[[83948,60905],[117,-13],[630,348]],[[84749,94876],[-163,-183]],[[52824,50536],[363,-198]],[[48401,18782],[-458,73],[-1412,-8],[-857,-70],[-175,-245]],[[63995,37561],[-10,63]],[[66077,38372],[132,-165],[330,-32],[141,104],[342,-65]],[[84107,93417],[174,20]],[[74736,68023],[469,-628],[60,-225]],[[74587,77195],[483,-223],[631,-435]],[[42072,18559],[156,-87],[1127,-27],[406,-85],[550,39],[73,91],[1115,42]],[[81221,44348],[-92,23]],[[78492,59011],[-391,303],[-639,257]],[[81961,67513],[-240,234],[-586,-220],[-184,124],[-570,-91]],[[74212,68446],[-119,-49]],[[65543,69685],[0,6]],[[93575,28116],[5,-528]],[[67619,65213],[482,-32],[102,-482],[-31,-709],[40,-301],[-159,-870],[-190,-554],[-191,-850],[-82,-32]],[[61909,84799],[-159,230]],[[71259,66113],[41,-124]],[[66561,80929],[312,-131],[346,865]],[[83468,60052],[1,-3]],[[79808,65321],[136,-219]],[[69346,34521],[-13,-192],[-805,72]],[[80770,60431],[-250,408],[-225,211],[-143,371]],[[84691,44870],[83,96]],[[89182,37530],[-247,-44]],[[40301,16231],[-8,-2]],[[67675,46995],[-426,-153]],[[71198,82246],[289,-288],[110,136]],[[74587,77195],[-107,447]],[[64306,37745],[-57,216]],[[78421,39440],[316,289],[60,-173]],[[46543,30416],[-527,-167],[-1097,-650],[-919,-413]],[[85532,43478],[-54,357]],[[73493,69059],[75,-14]],[[85994,62788],[15,-3]],[[78739,69223],[195,258],[287,812],[253,168],[202,811],[505,587],[40,148]],[[72866,67128],[-436,40],[-306,-403]],[[79598,76376],[35,20],[-332,1482],[-119,222],[225,2307]],[[79407,80407],[0,64]],[[80988,88027],[6,5]],[[72843,34212],[3,-69]],[[62352,84595],[-21,35]],[[83380,56288],[-144,-379]],[[59731,49672],[3,18]],[[88137,38151],[-141,-94],[-113,255]],[[61639,84544],[-13,130]],[[61626,84674],[2,2]],[[61628,84676],[189,340],[481,-77],[33,-309]],[[81717,86962],[12,-24]],[[87875,39787],[-27,-34]],[[73690,68801],[-176,23]],[[84846,46863],[27,-207]],[[87831,39827],[-82,273]],[[57518,66734],[330,-206]],[[57525,83118],[-159,129],[-1093,51],[-226,292],[-352,18],[-24,190]],[[86102,45219],[109,-40]],[[73713,67146],[105,-64]],[[73931,31973],[-269,-127],[-150,-362]],[[82691,59182],[130,-302]],[[79798,78303],[231,-5]],[[88935,37486],[-116,41]],[[62270,84712],[-33,-49]],[[89194,36262],[-63,-124]],[[76081,37080],[33,314],[-521,-123],[-410,-239],[-20,-291]],[[86537,60691],[64,20]],[[73799,43584],[322,16],[76,-140]],[[82079,61575],[-48,-226]],[[85355,39257],[-15,-2]],[[66689,28965],[122,-243]],[[83532,56724],[80,116]],[[85388,44531],[-8,-3]],[[66291,39582],[-322,-27],[-344,-384],[-64,-393]],[[81142,63652],[-402,451]],[[66380,49669],[-643,-2107]],[[82391,48404],[291,2]],[[76602,39527],[-2,-17]],[[72819,34828],[-145,691],[44,215]],[[47088,50620],[-25,1297],[-163,302]],[[79214,64519],[118,109],[203,-421]],[[71454,45709],[155,-48]],[[85901,35303],[-71,-247],[364,-651],[149,-421],[307,-590]],[[67798,48663],[280,514],[397,-558],[312,-829],[128,-516]],[[67703,69399],[-1,-6]],[[89114,36597],[105,71]],[[59735,50879],[-126,148],[-146,-354],[-949,-1110]],[[82391,48404],[138,32],[373,431],[484,199]],[[78647,90047],[-92,-618]],[[47909,11975],[0,2044],[227,320],[20,272]],[[87340,39321],[4,-2]],[[57848,66528],[-33,-1246]],[[89430,35239],[3,7]],[[82547,59517],[-208,478]],[[93137,25185],[-7,128]],[[95208,28210],[-63,176]],[[83502,57348],[27,26]],[[81002,39648],[-131,-1042],[623,160],[602,-251],[565,84],[190,-86],[235,130],[825,-35],[486,-155]],[[62092,74742],[-16,-170]],[[74004,68081],[67,-219]],[[87909,35762],[-2,9]],[[66573,80012],[-18,-90]],[[49196,32329],[379,-80]],[[60872,52478],[4,5]],[[80221,72027],[0,-20]],[[75226,66707],[77,-7]],[[66750,73652],[-175,234],[-271,141],[-217,453],[-491,624],[-436,724]],[[69189,50984],[-4,-332],[213,-227]],[[73997,66936],[-32,-52]],[[65737,47562],[94,-469],[-123,-2440],[249,-642],[171,-679],[356,-802]],[[84205,91996],[-15,-152]],[[79745,60039],[-238,-89]],[[89198,35214],[3,-1]],[[68266,37337],[-17,-111]],[[81058,94091],[-293,152]],[[49844,40587],[-92,-205],[-2,-445],[93,-295]],[[85702,49920],[-106,154]],[[37175,40170],[117,97]],[[37292,40267],[661,113]],[[37953,40380],[311,258],[85,202],[486,54],[365,-189]],[[39200,40705],[231,-222],[267,90]],[[64015,38886],[-5,-2]],[[81106,86267],[90,-142]],[[61072,27321],[-324,22],[-18,-201],[-254,14]],[[82513,61621],[1,-2]],[[62220,68821],[-345,651],[-926,1414],[-124,148]],[[79398,59281],[5,-6]],[[89532,40724],[134,-25],[2,-386],[135,-459],[236,-379]],[[77984,61137],[178,1176],[-25,78]],[[61827,75192],[-127,19]],[[65558,50968],[381,-980],[361,-516],[-379,-1291],[-40,1]],[[84603,58122],[-494,-625]],[[50392,43193],[8,-9]],[[72838,67561],[-88,289],[-237,287]],[[79598,76376],[256,-9]],[[89928,37800],[74,186]],[[56199,18843],[-154,80],[-269,831],[5,206],[-409,932],[-2,523]],[[80686,70396],[-288,-220]],[[79176,54209],[-120,-472],[-259,-288],[-278,-78],[-2,-148],[-260,-156],[-239,254],[-180,-32],[-216,-1084],[-364,-627]],[[93173,26529],[-8,8]],[[93165,26537],[-1,5]],[[45992,64118],[-209,-286]],[[71454,45709],[-350,115],[4,489],[-195,845]],[[90027,33858],[-7,-454],[-301,-188]],[[89719,33216],[-2,1]],[[60423,43774],[248,-311],[369,-216]],[[41320,17490],[0,-17]],[[81384,61097],[-28,84]],[[75938,63292],[-16,15]],[[63261,27582],[-553,-1],[-89,-125]],[[76737,39263],[-4,122]],[[84227,95973],[96,847]],[[62815,72511],[-504,379]],[[90699,24064],[34,684],[80,366],[175,334],[87,827],[252,153]],[[72847,35428],[-130,-54],[102,-546]],[[85297,44530],[-68,-65]],[[87608,40686],[-6,1]],[[52225,46225],[192,-101],[638,-560]],[[63440,83090],[-278,199]],[[71899,67112],[-342,209]],[[86280,38987],[316,-404]],[[68915,47274],[257,-130],[-72,-1164]],[[45858,41974],[-131,293],[-59,978]],[[81591,84348],[103,560],[540,1213]],[[76817,68736],[-858,1049],[-305,-58]],[[55816,27264],[-59,47]],[[55757,27311],[-236,-334],[-62,-437],[-317,-269]],[[40614,40960],[-916,-387]],[[71836,40262],[197,266],[-93,204],[-347,69]],[[66484,42530],[-376,-140],[-91,-186]],[[86282,40335],[62,167]],[[53085,64148],[-367,20],[-733,-922],[-362,-42],[-335,-189],[99,-630]],[[86059,62987],[-129,225]],[[84301,97509],[-17,-166]],[[76780,66180],[-6,5]],[[61536,65043],[-174,325]],[[84596,44642],[1,2]],[[68401,69689],[60,-17]],[[80136,88987],[-25,168]],[[79311,91992],[20,-139]],[[84201,46102],[-68,-597]],[[55456,64016],[163,-175],[855,392]],[[89430,35239],[3,7]],[[78161,40060],[75,93]],[[72430,67172],[-159,-1]],[[84043,41612],[57,715]],[[83456,62231],[4,-39]],[[66923,57829],[401,153],[378,240],[612,197],[140,270],[86,434]],[[80333,90642],[6,1]],[[88714,38393],[6,8]],[[64338,35811],[1,0]],[[85961,35277],[-58,8]],[[60262,83523],[33,84]],[[89838,35036],[-1,-121]],[[63991,39232],[-181,-50],[58,231]],[[85910,24517],[-326,142]],[[76604,62403],[-137,-515],[-285,-481]],[[73325,32298],[44,-88],[601,-215]],[[61869,74819],[-40,286]],[[71317,47591],[-259,-51],[-243,-256]],[[64299,37575],[-31,675]],[[59968,71301],[47,-66]],[[81285,87223],[-144,-50]],[[73267,67774],[-168,-11]],[[89434,36504],[-159,-161]],[[76496,44274],[39,-231]],[[44008,41315],[-21,792]],[[43987,42107],[32,943],[208,14],[32,266]],[[61984,51798],[-1,8]],[[93043,28141],[229,-99],[303,74]],[[73274,67248],[39,25]],[[66591,79989],[-18,23]],[[85047,45153],[-41,-30]],[[88170,51843],[53,61]],[[73210,66618],[-174,62]],[[82380,58056],[-87,-142]],[[83115,58286],[-1,5]],[[81643,87262],[86,-324]],[[86183,42670],[0,29]],[[84388,42585],[74,-90]],[[88686,38391],[17,-58]],[[81129,44371],[-474,156],[-442,-459],[-235,62],[-374,-90],[-85,-570],[-15,-800]],[[61386,84271],[114,-45]],[[78661,88882],[124,-729]],[[79603,92948],[20,-153]],[[82072,47665],[123,-425]],[[66039,43946],[109,-624]],[[86280,38987],[316,-404],[-87,-358]],[[63848,32860],[-65,479],[373,270],[51,568],[79,55],[32,550],[299,194]],[[83494,57341],[8,7]],[[89318,29293],[0,-4]],[[67262,53169],[-239,-111]],[[60938,85260],[-94,234],[244,381]],[[88643,35521],[-83,356],[-251,223]],[[86002,62937],[7,2]],[[64617,34976],[-17,267]],[[76253,73498],[0,-154],[389,227],[233,-7],[381,307],[550,133],[199,208]],[[84742,94772],[58,-55]],[[60531,83129],[47,274]],[[94096,23985],[1,-7]],[[72192,69806],[5,-31]],[[80331,80902],[-121,160]],[[56199,18843],[-10,-40]],[[86492,41709],[3,-5]],[[70132,78526],[-302,-139],[-124,-431]],[[72843,34212],[-1,-2]],[[52562,52126],[-40,45],[-433,-833],[-144,-89],[-52,-847]],[[91276,20215],[1,-17]],[[48157,14606],[-1,5]],[[76673,48461],[-67,-993],[-545,-817],[218,-100]],[[80221,72027],[0,-20]],[[65806,46896],[8,-10]],[[75925,63317],[175,-627],[-271,6]],[[66689,28965],[186,221],[26,341],[279,565],[290,238],[71,698],[135,375],[273,461],[82,513]],[[85308,44780],[93,-79]],[[84789,27186],[572,43],[444,-292],[413,19],[224,-182]],[[87719,52136],[124,-17]],[[79062,89617],[159,16]],[[67371,39264],[-625,58],[-209,204],[-246,56]],[[78602,76101],[-290,-814]],[[74619,42887],[-28,-286],[-192,-81]],[[59873,38546],[261,-41],[131,-175]],[[81030,71313],[89,134]],[[78000,74207],[-131,-912],[-88,-214]],[[75250,72317],[58,307]],[[88270,38724],[2,8]],[[66750,73652],[84,-44],[356,-1646],[142,-136]],[[84505,95561],[-10,-90]],[[53338,23679],[1,3]],[[53339,23682],[344,503],[-4,413]],[[78699,90511],[22,-70]],[[81129,44371],[-495,-281],[-1028,112]],[[85401,55834],[47,-645],[-52,-1021]],[[65558,50968],[981,-588],[-46,-153]],[[79518,84571],[9,275]],[[80274,52486],[-157,-390],[-848,181],[-383,-93],[-475,-1020],[-250,-366],[-207,-595],[-385,-697],[-31,-182]],[[75739,78150],[-13,-130],[-351,-487]],[[62437,84733],[1,4]],[[62779,41367],[-479,882],[-582,678],[-142,-45]],[[85875,64010],[-75,-740],[-105,-321],[-14,-403],[228,-258]],[[63396,42997],[198,-45]],[[73936,68368],[157,29]],[[64299,37575],[-31,675]],[[64561,38231],[-293,19]],[[88917,37909],[1,-4]],[[73476,47973],[-51,83]],[[87899,35325],[-6,-11]],[[79346,80453],[56,-165]],[[41320,17473],[465,235],[530,33],[184,-141],[2888,228],[128,110]],[[73426,66957],[63,146]],[[81114,94437],[231,318],[478,78],[43,445],[-260,66],[-42,371]],[[68858,73148],[13,0]],[[84534,96402],[26,74]],[[82340,59996],[1,-1]],[[80333,90642],[-1,15]],[[71488,72174],[-816,-618],[-208,-56]],[[50872,62152],[666,-90],[467,-159],[260,-363],[780,-581]],[[87599,58693],[63,-29]],[[61516,38067],[-187,-85]],[[66514,79118],[-120,19],[-639,601],[-193,304]],[[85961,35277],[231,541]],[[71251,64429],[-38,-340]],[[79815,80567],[-147,-29],[3,-266]],[[84421,43741],[32,-395]],[[48165,14608],[-9,3]],[[87386,55924],[-6,-44]],[[61007,66909],[-128,698],[-15,486]],[[94437,27996],[244,355],[108,-128],[356,163]],[[72475,64750],[-2,-9]],[[46900,52219],[-189,247],[-276,633]],[[67989,69410],[88,180],[-78,668],[158,464],[246,-35]],[[60382,83181],[-120,342]],[[85917,57378],[-2,-4]],[[85915,57374],[0,-3]],[[75410,69348],[476,-283]],[[82468,46323],[-31,516],[-242,401]],[[49867,51774],[388,-889],[505,-684]],[[86294,41911],[198,-202]],[[73148,33334],[-100,-961],[277,-75]],[[83334,59297],[-2,-1]],[[80133,59674],[-388,365]],[[60382,75637],[923,-43],[299,-187]],[[89294,27873],[0,-3]],[[75410,69348],[-219,-436],[-264,-353],[-191,-536]],[[87833,51779],[40,78]],[[84953,46259],[0,-1]],[[72224,44528],[-21,680],[-134,820],[-180,170]],[[84674,40620],[-4,-15]],[[79407,80471],[-5,-183]],[[69010,81723],[197,106],[353,-79]],[[79373,61417],[-751,732],[-485,242]],[[86877,50808],[10,14]],[[74318,65943],[286,87]],[[92832,31782],[-74,-468]],[[92758,31314],[-91,-441],[-206,-466],[-325,104],[-268,-188]],[[50359,40988],[1860,-28]],[[79498,59910],[9,40]],[[85769,44817],[-179,-82]],[[64269,39007],[297,-487],[-5,-289]],[[80029,78298],[10,-38]],[[46658,27471],[503,-268],[211,5],[816,-804]],[[93043,28141],[230,-98],[302,73]],[[89326,29315],[-14,3]],[[89312,29318],[-79,-733],[-210,-545]],[[89023,28040],[10,-6]],[[79329,59955],[4,-4]],[[85707,50673],[21,-16]],[[79062,89617],[24,-187]],[[72124,66765],[-82,-218],[85,-827]],[[86006,45953],[-222,387]],[[80871,56160],[581,252]],[[85707,50673],[-241,-169]],[[75175,66422],[51,285]],[[84464,96763],[82,-68]],[[69838,50884],[145,-481],[-46,-959]],[[72866,67128],[-70,66]],[[75163,36741],[-81,375],[-265,1]],[[87318,52483],[-78,-272]],[[79352,90571],[-6,-313]],[[94138,21664],[415,-1277]],[[64927,38904],[-1,-3]],[[54654,25316],[-769,61],[-132,79]],[[89557,35800],[-100,-22]],[[78555,89429],[2,209]],[[92869,27513],[174,628]],[[74212,42449],[243,91],[311,-106],[1193,-627]],[[85902,44872],[-6,155]],[[85896,45027],[-106,573]],[[82547,59517],[-1,-2]],[[79102,44220],[-3,-14]],[[68294,38799],[97,-288],[393,-674]],[[72674,72894],[-100,-215]],[[87384,37342],[-9,-4]],[[84587,44046],[161,130]],[[80232,72011],[7,-24]],[[73995,37517],[-545,-11],[-96,-172],[-79,-541]],[[78224,68652],[-184,-144]],[[87846,41548],[-149,-62],[-89,-800]],[[83474,57499],[4,47]],[[75727,36918],[169,-74]],[[49279,33541],[2,554],[135,417],[28,859]],[[67332,71826],[-93,-317]],[[72023,55162],[-68,-141],[-129,-916],[-112,-1121],[-250,-686]],[[86308,40551],[40,-50]],[[72866,67128],[75,115]],[[84695,61240],[-1,3]],[[59744,81727],[147,404],[221,19],[-25,303]],[[44259,43330],[113,288],[330,189],[42,322],[-24,1304],[-102,1518],[-141,246],[-252,1495],[-198,219],[-351,752]],[[86226,57254],[-310,121]],[[84190,91844],[-126,-283]],[[87754,40086],[-1,4]],[[91482,20069],[-13,19]],[[88735,38587],[-144,175]],[[83085,54754],[-63,-20]],[[84301,97509],[176,-50]],[[77316,44824],[17,-92]],[[84331,57209],[1,-4]],[[85407,53069],[99,-942]],[[82339,59995],[3,4]],[[83909,56663],[13,203]],[[81291,55840],[352,-337]],[[64215,29880],[3,-1]],[[67619,65213],[91,-40],[54,400]],[[91868,29981],[36,-708],[-98,-650]],[[67581,37783],[-27,200],[-369,-458],[-62,-1061],[-165,20]],[[68969,69680],[52,-623]],[[79913,29118],[-53,-148]],[[76790,37867],[-4,-543],[-656,-31],[-48,-197],[185,-74]],[[83286,58074],[-10,-3]],[[85150,48709],[3,326]],[[78498,89993],[149,54]],[[81773,61077],[26,31]],[[80454,91071],[-1,1]],[[85078,44705],[-5,-255]],[[72365,69699],[-1,-361]],[[86166,42898],[-3,4]],[[60680,81007],[1,4]],[[85600,49319],[1,0]],[[64366,59562],[-438,-65]],[[71836,40262],[679,818],[559,516],[-1,271]],[[89318,29293],[0,-4]],[[80674,57288],[-178,561],[3,691]],[[68640,69687],[329,-7]],[[83113,62065],[343,166]],[[78739,69223],[-242,202],[-160,395],[-434,261],[-299,409],[-569,-91],[-338,-495],[-136,-74]],[[80871,56160],[210,27],[371,225]],[[76017,68016],[-238,182],[-221,5]],[[85073,44450],[82,-288]],[[94096,23985],[-36,620]],[[60521,83812],[1,42]],[[86348,40501],[15,7]],[[85568,43261],[-36,217]],[[59731,50884],[4,-5]],[[69400,40005],[248,201],[440,-95],[-36,-349]],[[79333,59951],[174,-1]],[[82407,65939],[4,-2]],[[85153,49035],[-21,179]],[[73590,67231],[-52,101]],[[85961,35277],[-58,8]],[[81967,67502],[-6,11]],[[85078,44705],[-7,-129]],[[85973,43508],[-110,92],[-134,-287],[-484,-126]],[[87387,19457],[221,-93]],[[49771,48465],[-128,317],[-40,1569],[-340,17],[-146,608]],[[73319,68028],[7,-81]],[[71889,46198],[382,144],[323,625]],[[79329,89290],[81,399],[-130,147]],[[79521,90978],[-244,62],[118,-487],[-49,-295]],[[55485,16579],[568,1808],[17,358]],[[56070,18745],[129,98]],[[68401,69689],[-3,2]],[[88238,38816],[-53,-48]],[[79518,84571],[216,-641],[-38,-379],[90,-337],[290,-301],[197,-502]],[[59735,50879],[-171,277],[-217,29],[-835,497]],[[84227,95973],[165,-156]],[[62509,84682],[-3,0]],[[57297,35186],[-372,-1189],[-520,-1135],[-452,-1115]],[[86112,62870],[-17,-172]],[[67820,42393],[3,-246],[253,-77]],[[64043,66344],[-70,-474],[-173,-327],[-329,-270]],[[72097,69619],[6,-38]],[[72666,37411],[130,-316],[257,-119]],[[84366,42884],[-51,154]],[[88731,43824],[-45,-197],[-282,-282]],[[84991,35669],[-2,14]],[[85210,63889],[2,5]],[[89201,35213],[-254,-41]],[[84477,97459],[56,-255]],[[82123,65202],[266,129]],[[50643,44208],[459,-655]],[[62042,36771],[-108,-37],[-28,-582]],[[63823,79573],[-47,-339]],[[66682,28950],[7,15]],[[80045,72368],[-90,184],[-21,533],[168,216],[-2,351],[-246,249],[-92,448],[53,485],[-82,735],[-151,425],[16,382]],[[89404,35917],[-22,170]],[[81199,85158],[6,285]],[[59856,71482],[51,-39]],[[65829,44803],[20,-24]],[[69053,68160],[296,-501]],[[60476,27156],[-369,-95],[-270,-180],[-1493,-482],[-312,-131],[-282,28]],[[89646,31320],[-71,-154],[13,-643],[-169,-1115],[-101,-115]],[[88107,42151],[-111,-44],[-160,-576],[-139,-45],[-95,-799]],[[89769,37693],[-193,-116]],[[84991,35669],[-348,-367]],[[85228,44765],[14,124]],[[83002,48365],[0,1]],[[64974,51089],[584,-121]],[[82835,53598],[-74,30],[-39,1205]],[[70660,79400],[-250,-230],[-278,-644]],[[67418,38205],[161,-45],[203,-593]],[[81239,85677],[-22,-267],[303,-104]],[[80760,65968],[-1,5]],[[87846,41548],[150,558],[164,100],[62,405],[230,639],[-48,95]],[[61698,84343],[0,0]],[[83589,47976],[-2,2]],[[87667,51722],[-44,11]],[[72159,66355],[-360,-492]],[[85078,44705],[-5,-255]],[[69845,74278],[-171,-95]],[[77320,62358],[-263,17],[-267,357]],[[64452,34909],[1,4]],[[70463,71504],[1,-4]],[[46852,37633],[-261,-702],[-257,-839],[-460,-1303]],[[45874,34789],[-414,-1195],[5,-129]],[[63473,40278],[-2,4]],[[87833,51779],[186,-62]],[[45992,64118],[-527,758],[-25,781],[46,275],[-10,772],[-92,141]],[[82980,56509],[-527,331],[-109,164],[-575,158],[-162,143]],[[75839,62677],[-10,-3]],[[85449,50748],[17,-244]],[[85627,43029],[0,0]],[[85627,43029],[-2,-1]],[[86254,41593],[40,318]],[[69725,64281],[1,0]],[[75175,66422],[4,39]],[[86132,33131],[454,158],[64,105]],[[88184,39659],[242,404],[237,-28]],[[87228,37289],[147,49]],[[91868,30323],[-36,-100]],[[84516,97162],[45,195]],[[53756,39617],[31,678]],[[75925,63317],[-3,-10]],[[78520,33622],[206,259],[454,340],[755,-170],[204,53]],[[85967,62502],[287,-393]],[[66474,46466],[-472,-152]],[[85006,45123],[72,-418]],[[47023,42744],[-305,-41],[-578,-454],[-283,-294]],[[55799,83603],[-115,192]],[[71259,66113],[319,-349],[221,99]],[[66923,57829],[114,305],[-80,327],[-564,278],[-207,-1]],[[84823,45006],[-49,-40]],[[72886,48417],[67,-111],[180,291]],[[83220,57127],[2,8]],[[61825,62195],[35,-43]],[[83286,58074],[-171,212]],[[85979,39085],[77,-164],[224,66]],[[72201,72751],[1,-3]],[[71434,34080],[152,93],[491,-128]],[[85618,43061],[36,35]],[[73319,68028],[16,70]],[[63570,38121],[-5,10]],[[81663,86667],[56,-22]],[[87719,52136],[-401,347]],[[75701,76537],[-320,-468],[-915,-1090],[-642,-1111],[-502,-683],[-314,-518],[-440,5]],[[61639,84544],[-9,-3]],[[61630,84541],[-204,-101],[-307,168]],[[75265,67170],[223,-67],[306,-263]],[[79333,59951],[174,-1]],[[84381,96963],[-17,-148]],[[84364,96815],[-1,-5]],[[84363,96810],[80,-41]],[[61119,84608],[-187,130],[-179,-174]],[[81112,94444],[144,278],[-226,261]],[[77333,44732],[-17,92]],[[81426,86981],[303,-43]],[[81207,95110],[49,-388],[-138,-243]],[[61639,52117],[5,1]],[[81187,65543],[-19,-153]],[[67150,37523],[268,682]],[[79504,42670],[-196,658],[-206,892]],[[72192,69806],[36,490],[214,534],[44,702],[-123,473],[205,667]],[[64043,66344],[-3,2]],[[78510,67532],[45,582],[-202,55]],[[55684,83795],[18,153]],[[79209,85529],[337,342]],[[82073,61584],[6,-9]],[[66967,51012],[823,-268],[496,-111],[283,48]],[[72550,78159],[-739,-1046],[-420,-474],[-1091,-1430],[-365,-565]],[[88686,38391],[29,8]],[[73854,68347],[-397,-37],[-6,245]],[[63565,38131],[5,-10]],[[41802,18299],[149,-25]],[[73735,42191],[-4,17]],[[76497,64601],[77,-37],[467,406],[282,-28]],[[60299,83093],[143,142],[-180,288]],[[89506,37385],[70,192]],[[83386,49066],[-9,8]],[[76737,39263],[-4,122]],[[83628,57388],[26,35]],[[83555,55019],[-833,-186]],[[81239,85677],[109,517],[430,454],[42,160],[469,419]],[[95394,19918],[-55,-149],[39,-621],[-64,-218],[83,-415]],[[85447,44404],[64,66]],[[85511,44470],[-64,-66]],[[87508,59656],[1,3]],[[86691,45824],[-340,-425]],[[87483,51026],[78,86]],[[81477,56623],[-25,-211]],[[89615,35862],[2,-1]],[[78520,33622],[-542,686]],[[79507,59950],[-34,267]],[[86710,46349],[-19,-525]],[[86223,60589],[-499,221],[-108,210]],[[88741,39746],[14,431],[-216,109],[-329,362]],[[88210,40648],[-84,298],[-277,224]],[[60315,38375],[-50,-45]],[[80221,72007],[-176,361]],[[71251,64429],[353,53]],[[78091,75732],[511,369]],[[80871,56160],[420,-320]],[[79815,80567],[-111,23]],[[68237,81335],[-255,-360],[-401,-412],[-136,-32],[-410,-392],[-372,23],[-51,-192]],[[79745,60039],[-238,-89]],[[44000,29186],[919,412],[514,302]],[[83734,57306],[17,57]],[[85815,43686],[25,631]],[[64693,27729],[-16,-243]],[[80133,59674],[-388,365]],[[66717,78060],[-21,143],[391,-58],[503,-182],[-40,-411]],[[69794,39180],[189,-29],[105,960],[421,-94]],[[88388,53229],[45,192]],[[84205,91996],[8,538]],[[41431,16305],[0,17]],[[92960,29450],[2,11]],[[89743,31977],[-208,97]],[[84545,95321],[46,108]],[[87384,37342],[227,451],[122,-142]],[[73712,71258],[2,0]],[[68588,45710],[-52,-383]],[[87892,39945],[-2,-3]],[[80240,88908],[-104,79]],[[87537,51744],[86,-11]],[[89492,36139],[-43,78]],[[73419,69053],[30,302]],[[78647,90047],[-90,-409]],[[85973,43508],[-110,91],[-127,-278],[-168,-60]],[[66637,79356],[-22,100]],[[87793,38177],[-189,59]],[[55142,26271],[-44,413]],[[80375,38819],[6,-66]],[[88226,19371],[3,-2]],[[74986,66896],[-120,194]],[[72845,34212],[-3,-2]],[[89162,32603],[-320,317],[-258,102],[-160,-266],[-78,-396],[-290,-163]],[[66062,37976],[15,396]],[[61369,32830],[225,202],[285,-78],[439,222]],[[67298,35588],[17,454],[-181,412],[-176,30]],[[91518,27050],[46,-531],[-237,-91]],[[87682,19338],[2,1]],[[69930,49436],[7,8]],[[84454,42418],[-46,-3]],[[62505,84620],[2,2]],[[47456,18276],[-611,-22],[-182,-143],[-985,-46],[-163,-127]],[[89699,35264],[46,75]],[[72364,69338],[531,-325]],[[72109,69584],[88,191]],[[79498,59910],[9,40]],[[84798,43527],[-327,-181]],[[88056,32197],[-42,-325],[-205,-355]],[[87809,31517],[-109,-682],[-152,-399]],[[87548,30436],[-48,-291],[-177,-50]],[[84873,46656],[80,-397]],[[87431,55871],[3,-24]],[[68337,81462],[-109,395]],[[83654,57423],[-26,45]],[[84535,44165],[-17,-8]],[[84473,44381],[-63,-34]],[[84954,50177],[126,73]],[[84525,93954],[-54,-296]],[[93627,26124],[345,133],[75,165]],[[85132,49214],[-57,128]],[[80871,56160],[562,247],[44,216]],[[47583,62638],[1414,-387],[292,-15],[833,-579],[-30,-187]],[[85890,64060],[1,-5]],[[62077,84624],[9,38]],[[75250,72317],[-467,-306],[75,-129]],[[88433,53421],[213,-45],[395,919],[280,107]],[[67954,49357],[124,-179],[-280,-515]],[[84798,43527],[-345,-181]],[[61604,75407],[96,-196]],[[84464,96763],[0,0]],[[84464,96763],[10,97]],[[89492,36557],[1,0]],[[78777,89347],[0,-3]],[[68389,78072],[550,-76],[473,105],[294,-145]],[[73740,44194],[-51,-506],[110,-104]],[[80367,80141],[-119,-405]],[[84462,95680],[43,-119]],[[73512,31484],[-58,-717]],[[63862,35835],[22,-208],[458,-89]],[[85109,45200],[-2,3]],[[80448,34020],[18,-22]],[[83922,56866],[-3,110]],[[62164,35697],[-3,-352],[112,-425]],[[58058,40065],[-82,465],[21,707],[-48,318],[25,2227],[61,452],[29,1139],[89,608]],[[71246,66412],[14,230],[327,271],[537,-148]],[[62042,36771],[9,-1]],[[85229,44465],[-60,-46]],[[90002,37986],[-16,132]],[[79704,80590],[-257,-137]],[[79447,80453],[-40,18]],[[83502,57348],[-28,151]],[[83289,57978],[-6,-4]],[[54433,26700],[571,-67],[187,248],[-4,364]],[[84866,95705],[25,-98]],[[84372,96910],[-49,-90]],[[60494,83747],[-8,19]],[[75839,62677],[-10,-3]],[[62359,26300],[281,-25]],[[76225,48804],[-305,474],[-606,668]],[[53245,20692],[-9,9]],[[64111,61716],[-275,167],[-483,579]],[[41134,17491],[161,13]],[[81611,84135],[-20,213]],[[69725,64281],[65,316],[177,219]],[[86400,49644],[0,-1]],[[44000,29186],[311,-284],[1617,-948]],[[72916,28005],[107,5],[133,946],[31,747]],[[44000,29186],[-27,369]],[[66084,81260],[203,-493]],[[85815,43686],[25,631]],[[74349,66424],[70,-53]],[[80871,56160],[-174,412],[87,557],[-110,159]],[[83950,57092],[-1,1]],[[79412,92258],[-102,86]],[[86192,35818],[290,-102],[601,215],[140,426]],[[72231,72743],[219,459]],[[91121,33061],[-2,-2]],[[80451,91075],[-119,-418]],[[79774,80086],[-71,-343]],[[79703,79743],[249,-125]],[[79952,79618],[175,-34]],[[80127,79584],[64,119]],[[47023,42744],[337,72],[916,538],[266,45]],[[85411,55809],[407,436]],[[72186,68399],[156,-19],[-261,1227]],[[78013,74215],[-8,-3]],[[90052,34334],[-25,-476]],[[68871,73148],[-339,-952],[-464,-1016],[0,-156]],[[74619,42887],[-117,523],[-305,50]],[[56891,71885],[-4,34]],[[75654,69727],[-244,-379]],[[79476,60207],[-3,10]],[[64225,77572],[616,-940],[319,-804]],[[88702,36510],[403,84],[134,281]],[[80333,80563],[-60,-277]],[[78753,69218],[1,11]],[[88379,51802],[-65,-218]],[[49844,40587],[201,431]],[[88715,38399],[5,2]],[[58126,84687],[18,-437]],[[83633,49681],[-14,-47]],[[75051,64989],[-289,191]],[[76600,39510],[-411,77],[-110,-936],[-96,-151]],[[90018,33392],[9,466]],[[77984,61137],[7,2]],[[92960,29450],[0,219],[-174,310],[-228,81],[-84,293]],[[81944,62404],[-64,-61]],[[46841,16817],[0,0]],[[83980,57478],[8,-5]],[[73646,67863],[38,146]],[[64110,39795],[65,190],[506,-16],[6,-113]],[[63440,53163],[128,383],[76,1073],[38,1093]],[[63682,55712],[21,98]],[[87843,41175],[6,-5]],[[85474,50373],[1,4]],[[61826,55843],[-195,-752],[-396,-1294],[-696,-552]],[[78844,89417],[32,147]],[[62347,35604],[8,171]],[[87594,58685],[5,8]],[[79041,57055],[-143,29]],[[64450,34875],[-1,0]],[[47668,39985],[35,-309],[-134,-109]],[[89506,37385],[70,192]],[[67371,39264],[540,-316],[383,-149]],[[85901,35303],[207,-14],[336,-272],[98,298],[344,207],[341,737],[-97,320],[87,341]],[[87323,30095],[-1462,497],[-230,464],[30,103]],[[85973,40210],[86,-284]],[[84451,93399],[-136,-386]],[[79521,90978],[-244,63],[75,-470]],[[63210,44145],[-88,80],[7,463]],[[84471,43346],[-18,0]],[[68775,64674],[-99,-96],[-472,138],[-52,361]],[[73045,32387],[62,477]],[[89285,35179],[-84,34]],[[73590,67231],[280,-205],[331,-651],[117,-432]],[[93289,25581],[-1,4]],[[57583,79714],[-32,-8]],[[44004,29201],[203,197],[613,1632],[200,388],[438,1828],[150,243]],[[45608,33489],[261,592],[5,708]],[[45874,34789],[-30,1037],[24,860],[-37,1733],[65,857],[21,1410],[-54,1224]],[[45863,41910],[-2,42]],[[45861,41952],[-4,3]],[[81889,39338],[15,94]],[[69211,50836],[-180,-137],[-155,-2315],[-66,-175],[105,-935]],[[82173,68700],[4,-544],[93,-235]],[[84227,95973],[68,-15]],[[73740,44194],[53,594]],[[74302,46813],[-194,-67],[-573,70],[-1327,570],[-300,63]],[[79774,85540],[-103,-560],[-144,-134]],[[88726,39780],[15,-34]],[[81149,94559],[-54,-295]],[[49335,36447],[-119,210],[130,846],[241,512],[121,556],[-6,425],[141,646]],[[71480,63821],[508,-29],[75,239]],[[68337,81462],[-100,-127]],[[80273,82411],[-1,-9]],[[72271,67171],[57,10]],[[79623,92795],[-97,-790]],[[86584,60399],[-110,49]],[[82936,37768],[-1,-1]],[[77795,68161],[-124,168]],[[89606,35770],[2,82]],[[81350,87390],[-34,122]],[[80307,73060],[105,142]],[[80232,72011],[-13,560],[137,221]],[[62412,69500],[-192,-679]],[[80015,65010],[143,-131]],[[72340,72987],[110,215]],[[84287,35300],[71,190]],[[89493,36557],[-28,58]],[[67820,42393],[-492,675]],[[44008,41315],[-18,-120],[-555,-23],[-138,-74],[-1122,-23],[-44,-84],[-505,-84],[-158,174]],[[41468,41081],[0,11]],[[41468,41092],[-122,465],[-758,-35],[26,-562]],[[77549,83505],[247,-83]],[[80175,79643],[-48,-74],[-431,118],[-46,285]],[[62056,84535],[-260,-88]],[[45968,62805],[231,420],[267,78]],[[81316,87512],[-172,-27]],[[73419,69053],[-187,28]],[[60288,82813],[61,80]],[[48540,65498],[-971,-1404],[-199,-60]],[[67044,54421],[176,-789],[42,-463]],[[79924,86102],[136,1482],[-136,86],[60,747]],[[83088,37270],[-47,282]],[[55083,25698],[-286,176]],[[88473,38661],[-71,221]],[[62870,52582],[-257,-202]],[[93770,25571],[195,-137],[-8,-308]],[[80876,56151],[-5,9]],[[61705,84606],[204,193]],[[42835,53839],[581,-743],[65,-3426],[195,-7]],[[80352,80693],[-18,51]],[[88019,51717],[-150,-38]],[[79944,65102],[71,-92]],[[89129,35812],[106,-229]],[[60927,25973],[-414,96],[-226,-372],[-646,64],[-468,104],[-6,-418],[-312,-436],[-4,-133],[-554,-1006],[-147,-495],[-556,-1219]],[[85060,44194],[-60,92]],[[83611,57249],[72,32]],[[91293,20214],[-17,1]],[[73867,68526],[0,-1]],[[77526,54454],[-839,-261],[-337,-300],[-497,-732],[-762,-869],[-89,-789],[312,-1557]],[[75654,69727],[163,-39],[507,296]],[[92770,24691],[140,-369]],[[89486,32047],[21,12]],[[84288,31734],[-37,36]],[[89562,35109],[120,36]],[[89270,37531],[62,-462],[-93,-194]],[[89928,37800],[-352,-223]],[[85506,52127],[67,-588]],[[42283,63606],[45,-377]],[[55527,25692],[-116,334],[8,357],[-277,-112]],[[73435,67553],[39,-86]],[[62634,84490],[-1,1]],[[72556,32440],[-127,25],[-154,-687],[-81,-22]],[[85790,45600],[-6,740]],[[67418,38205],[35,579],[165,532],[518,1054],[143,412],[58,586],[156,820]],[[84043,41612],[58,718],[307,85]],[[81036,86401],[-124,-93]],[[62530,84964],[79,-118]],[[85449,50748],[17,-244]],[[79473,60217],[232,371]],[[81607,57305],[6,-823],[-161,-70]],[[62084,46573],[-159,81]],[[74985,66895],[0,3]],[[73329,67844],[-62,-70]],[[79671,80272],[-162,54]],[[86584,40840],[72,-142]],[[86656,40698],[0,-1]],[[86656,40697],[0,-1]],[[86472,60599],[112,-200]],[[57128,66599],[8,201],[382,-66]],[[79808,65321],[-11,-345],[-583,-457]],[[69151,39730],[202,-256]],[[84037,26407],[-1,-14]],[[89172,34845],[-11,-117],[-663,-29],[-71,-157]],[[73704,71306],[244,82],[835,623],[75,-129]],[[84672,44851],[-123,-108]],[[89532,40724],[-143,-8],[-53,-300],[-336,-316],[-259,-354]],[[73219,67170],[-278,73]],[[84315,43038],[160,304]],[[84475,43342],[-4,4]],[[84462,42495],[-8,-77]],[[87292,50464],[82,321]],[[81058,94091],[-514,-797]],[[80544,93294],[-836,-1017],[-182,-272]],[[85902,44872],[-7,154]],[[85895,45026],[-105,574]],[[63216,42939],[180,58]],[[74163,42043],[11,-10]],[[83564,92130],[77,143],[259,-141]],[[82871,57928],[74,-495]],[[80381,67560],[-624,-102]],[[44948,21513],[-67,644]],[[69106,51160],[-2,15]],[[42663,63655],[633,-5]],[[89326,29315],[-8,-22]],[[84863,95706],[-125,-12]],[[65235,38441],[-4,459]],[[89717,33217],[-182,395]],[[78902,65054],[235,154]],[[68528,34401],[-422,-727],[-214,-534],[-8,-573],[147,-190]],[[69255,74146],[225,-134],[194,171]],[[71889,42289],[48,1023],[-95,365]],[[66573,80012],[-59,-407]],[[84540,58326],[-128,205]],[[88224,39121],[-61,68]],[[69280,70735],[-311,-1055]],[[49444,35371],[2,10]],[[88726,39780],[15,-34]],[[60262,83523],[-12,11]],[[93892,28013],[22,-5]],[[60751,66993],[-140,-1],[-223,-268],[-231,-448]],[[84181,57209],[150,0]],[[88236,38234],[-99,-83]],[[53425,48858],[-417,-40],[-169,215]],[[89235,35583],[13,-38]],[[81425,49642],[-218,647],[-282,286],[-348,-331]],[[60136,83647],[126,-124]],[[37274,40298],[7,-8]],[[74662,70473],[-95,-2],[-68,-903],[-151,-419],[-494,-802]],[[63676,28106],[-7,-351],[-145,-27]],[[65737,47562],[77,-676]],[[71575,78059],[-823,1224]],[[55604,71796],[82,-747],[-13,-938],[143,-341],[11,-878],[220,-282],[-1,-215],[195,-420]],[[91327,26428],[-253,-152],[-87,-460]],[[57786,38616],[-270,-634],[-35,-885],[84,-15]],[[79476,60207],[-3,10]],[[84248,43793],[146,107]],[[80418,56421],[269,125],[184,-386]],[[57124,67734],[555,-341]],[[72740,72672],[19,-50]],[[72632,35795],[82,-57]],[[63862,35835],[-338,36]],[[79724,60883],[-254,2]],[[67954,31560],[-63,-723],[-116,-147],[-113,-648],[-113,19],[-34,-514],[-454,-84],[-36,-399],[-283,40],[-53,-139]],[[47814,58180],[-12,-1065],[-145,-142],[7,-1120],[137,-79],[75,-643]],[[76313,65001],[184,-400]],[[89562,35109],[0,-173],[-224,85]],[[73594,42833],[161,171]],[[82682,48406],[321,-39]],[[61692,84591],[1,-15]],[[84208,46163],[-19,-41]],[[61750,85029],[-226,475]],[[61524,85504],[-57,-12]],[[45858,41974],[-1,-19]],[[68266,37337],[-17,-112]],[[73590,67231],[-62,-3]],[[61639,84544],[-8,-51]],[[64004,37979],[63,338],[-76,915]],[[84971,46032],[54,-149]],[[69838,50884],[143,-689]],[[63602,53187],[96,-11],[960,-727]],[[64602,82446],[-764,202]],[[57551,79706],[-3,16]],[[66062,37976],[316,-390]],[[83472,57874],[-27,-2]],[[86895,57600],[-1,-1]],[[79506,65409],[-316,-861]],[[85475,50377],[-9,5]],[[84650,45132],[29,-21]],[[88322,38814],[-56,54]],[[85297,44530],[-68,-65]],[[79506,65409],[-316,-861]],[[64110,39795],[112,-339],[169,-31],[183,-315],[-27,-354],[235,-40]],[[79854,76367],[-128,224],[86,200]],[[75175,66422],[-523,-328]],[[68188,42135],[-112,-65]],[[85890,64060],[12,10]],[[94290,29554],[1,-10]],[[89748,27813],[-2,0]],[[79163,89050],[174,222]],[[84625,44809],[-217,-185]],[[72799,67387],[2,1]],[[85769,44817],[-2,21]],[[81957,60732],[1,0]],[[68031,32377],[-77,-817]],[[88158,39308],[-139,214]],[[42372,27836],[587,133],[785,557],[256,660]],[[80451,91075],[275,1405],[66,669],[-248,145]],[[52858,26647],[-997,35]],[[86390,38529],[119,-304]],[[84996,28022],[272,951],[-142,431],[128,655]],[[85053,44814],[25,-109]],[[80871,56160],[-173,412],[86,557],[-110,159]],[[62577,45025],[2,1]],[[93043,28141],[-415,414]],[[76324,69984],[4,8]],[[91121,33061],[-2,-2]],[[85816,43681],[-1,5]],[[80152,61422],[-376,304],[-334,-132],[-113,95]],[[81239,85677],[-22,-267],[274,-257],[120,-1018]],[[84189,46122],[12,-20]],[[94355,21646],[22,-240],[275,-451]],[[81163,60845],[-393,-414]],[[73602,67801],[44,62]],[[84732,94658],[10,114]],[[51000,22640],[448,56],[258,504],[512,213],[-10,444],[575,109],[153,-173]],[[51494,31166],[521,-538]],[[87883,38312],[-90,-135]],[[37274,40298],[679,82]],[[37953,40380],[227,216],[1020,109]],[[39200,40705],[394,79]],[[85869,50027],[-208,45],[-1,376]],[[78978,32989],[-122,157]],[[63313,39899],[670,-172],[127,68]],[[85625,43028],[3,-3]],[[71986,64482],[141,1238]],[[82645,61730],[-131,-111]],[[87938,52078],[-49,-189]],[[72365,68230],[292,-219]],[[67702,69393],[-4,6]],[[87883,38312],[-255,-83],[-263,67]],[[78696,39819],[-275,-379]],[[81107,87131],[-383,92]],[[49117,50976],[184,-159],[1005,-611],[454,-5]],[[84453,43346],[-33,400]],[[78302,85914],[185,-41],[265,325],[107,1109]],[[82876,58753],[-55,127]],[[81269,86165],[122,101]],[[59376,39048],[-744,103]],[[88918,37905],[40,-132]],[[81537,64530],[60,71]],[[94553,20387],[372,-285],[181,-278],[219,-63],[69,157]],[[59988,83705],[128,-47]],[[71986,64257],[-31,208]],[[71471,62498],[-524,83],[-186,188],[-353,1038],[-142,255]],[[83968,48320],[0,2]],[[84866,95705],[25,-98]],[[72124,66765],[110,153],[-14,672],[145,640]],[[50292,40992],[67,-4]],[[80877,89478],[110,-431]],[[84181,57209],[208,295]],[[89294,27873],[0,-3]],[[88720,38401],[32,142]],[[80273,82411],[-1,-9]],[[45928,27954],[-89,-15]],[[87461,53516],[328,775]],[[72866,67128],[3,-135]],[[58593,45775],[-436,198]],[[58593,45775],[72,123],[371,-29],[29,115],[1003,-59],[1,-47]],[[93523,28829],[-259,-56]],[[88958,37773],[-135,-242]],[[42714,25663],[62,-2052]],[[79527,84846],[-9,-275]],[[85028,44914],[25,-100]],[[88591,38762],[144,-175]],[[69937,49444],[-71,62],[-116,-568],[69,-277],[259,-200],[258,3],[255,211]],[[81694,58159],[-45,807],[57,638]],[[89457,35778],[-53,139]],[[44000,29186],[266,636],[865,2379],[344,1144],[-10,120]],[[44004,29201],[-4,-15]],[[77280,64954],[-239,16],[-236,-180],[-492,211]],[[81961,67513],[-85,401],[135,281],[259,-274]],[[85694,62566],[-73,-134],[-47,-836],[42,-576]],[[89285,35179],[-186,-480],[-450,21]],[[62237,84663],[-182,-125]],[[84181,57209],[-79,-426],[-245,-292],[-325,233]],[[84181,63167],[0,2]],[[79190,64548],[24,-29]],[[89318,29293],[0,-4]],[[83721,90985],[29,-146]],[[80690,50069],[287,-104],[136,-516],[126,-151],[186,344]],[[85173,45008],[55,-243]],[[78421,39440],[37,-63]],[[84694,61243],[1,0]],[[69332,24003],[-621,1053],[-603,483],[-198,42]],[[87602,40687],[6,-1]],[[67697,65475],[67,98]],[[85136,50001],[-56,249]],[[60069,45878],[196,20],[43,626],[827,-54],[17,372],[144,68],[607,-72],[22,-184]],[[74985,66895],[1,1]],[[84603,58122],[-63,204]],[[61925,46654],[-23,-53]],[[61925,46654],[383,284],[535,269]],[[62843,47207],[109,-13],[28,-1050],[241,-176]],[[64720,36225],[68,293]],[[75354,71409],[-240,-75]],[[69021,69057],[0,0]],[[81061,94169],[2,-5]],[[81063,94164],[-5,-73]],[[72348,71073],[111,12],[28,447],[-98,331]],[[59914,83233],[16,118]],[[61633,84495],[6,49]],[[85904,40947],[-107,34]],[[85797,40981],[-326,1026]],[[73099,67598],[-8,-85]],[[89608,35852],[7,10]],[[66585,41784],[-122,-189]],[[84540,58326],[-1,-1]],[[76006,81673],[-35,100],[-664,168],[-230,-141],[-327,26]],[[84208,46163],[-7,-61]],[[88309,35454],[-370,-153],[-4,-354]],[[60315,38379],[0,-4]],[[63295,71375],[2,4]],[[87537,51744],[-367,47],[-145,-216]],[[73665,67499],[-7,148]],[[68389,78072],[-349,-232],[-449,123],[-41,-411]],[[71593,40801],[142,280],[154,1208]],[[65168,38914],[1,6]],[[82079,61575],[21,19]],[[81969,63908],[0,73]],[[84502,97856],[128,11],[66,336]],[[84626,44808],[-1,1]],[[37689,14010],[110,95],[-16,462],[228,249],[53,272],[-24,835],[65,178]],[[83250,58957],[84,340]],[[94430,28431],[444,109]],[[85904,40947],[-93,-26],[162,-711]],[[60872,52478],[40,-51]],[[60872,52478],[40,-51]],[[81331,65563],[-102,369],[-371,-144],[-93,209]],[[60262,83523],[-6,-5]],[[75829,62696],[10,-19]],[[84691,44870],[88,-281]],[[81478,86597],[-61,-79]],[[91276,20215],[1,-17]],[[83113,62065],[-25,381]],[[40057,12393],[440,689],[126,332],[814,76],[1,-57]],[[85961,35277],[-60,26]],[[61766,64796],[18,55]],[[68067,42288],[-539,1133],[-224,391]],[[76324,69984],[4,8]],[[88070,54001],[0,-1]],[[71575,78059],[-304,222],[-1139,245]],[[79526,80425],[-79,28]],[[79447,80453],[-45,-165]],[[89461,34922],[-173,247]],[[69917,33158],[67,1078],[1157,-266],[293,110]],[[61278,58787],[-9,-232]],[[74667,66086],[-15,8]],[[85062,32881],[72,-50]],[[78592,88832],[68,52]],[[88187,39022],[26,88]],[[60091,85870],[1,0]],[[79405,82392],[243,-496],[-63,-763],[119,-68]],[[89465,36615],[-3,0]],[[63129,44688],[19,483]],[[35644,37576],[73,15],[284,655],[416,715]],[[36417,38961],[645,578]],[[37062,39539],[-24,524],[137,107]],[[70581,26742],[-49,-590],[-80,-149],[-38,-747],[-405,-655],[-385,-435],[-292,-163]],[[79530,84837],[-3,9]],[[85532,43478],[-287,-291]],[[61112,85888],[-24,-13]],[[79398,59281],[-114,-702]],[[66380,49669],[113,558]],[[64009,37525],[2,0]],[[86402,53069],[0,-1]],[[86102,45219],[-153,-359],[-109,-543]],[[67694,69402],[4,-3]],[[78658,61221],[127,244],[614,-9]],[[84643,95300],[-21,-312]],[[71300,65988],[0,1]],[[82242,55263],[190,-486]],[[89114,36597],[105,71]],[[43213,41923],[-7,754]],[[85618,43061],[9,-32]],[[85627,43029],[1,-4]],[[85051,58577],[6,-7]],[[44801,21479],[-228,-54],[-345,-385],[-220,-13],[-91,-179]],[[71986,64482],[-108,-1110],[-97,-176]],[[75922,63307],[232,270]],[[59858,71469],[-5,4]],[[62084,46573],[237,-505],[256,-1043]],[[88753,38544],[-33,-143]],[[82432,54777],[-329,-258]],[[84178,57199],[-24,-309]],[[59731,50884],[4,-5]],[[81187,65543],[1,-2]],[[88848,44382],[-117,-558]],[[84097,93357],[-108,490],[45,459],[-141,562]],[[83893,94868],[203,359],[131,746]],[[82123,64777],[0,425]],[[82936,37768],[405,413],[228,-72]],[[88019,51717],[78,-17]],[[46508,60070],[434,-25],[275,-321],[437,7],[285,-90]],[[64110,39795],[88,186]],[[64198,39981],[483,-12],[6,-113]],[[57534,49401],[465,161],[515,1]],[[71292,29082],[26,53]],[[81028,94977],[2,6]],[[72895,69013],[-531,325]],[[79346,90258],[65,-591]],[[72639,59421],[-346,752],[-317,583],[-15,167]],[[48156,14611],[-655,-21],[-1066,-332],[-973,-437],[-110,-3]],[[77280,64954],[-239,16],[-236,-180],[-492,211]],[[41322,41005],[-708,-45]],[[49165,26545],[21,-1653],[-68,-118]],[[82928,54942],[684,1033],[297,688]],[[88918,37905],[33,-197]],[[80674,57288],[-874,1262],[-402,731]],[[50582,52568],[-35,268],[-381,440],[-202,121],[-981,1182],[-500,301],[-211,-6],[-396,257]],[[84651,95628],[54,56]],[[88070,54001],[2,-1]],[[78059,82605],[-264,-497]],[[90019,36853],[-5,-22]],[[83666,56999],[-1,-1]],[[84588,96681],[217,-171]],[[81095,94264],[179,483],[2000,309],[612,-167],[208,340],[133,744]],[[63936,36900],[-52,-1272],[458,-90]],[[49446,35381],[-1377,-1147],[-876,-678]],[[84336,49940],[-717,-306]],[[49117,50976],[33,-461],[-221,-472],[-126,-525]],[[89784,35279],[24,-66]],[[88778,38897],[21,-331],[-327,368]],[[93578,28125],[314,-112]],[[85818,56245],[0,-2]],[[80333,71919],[0,32]],[[84428,42736],[122,199]],[[84550,42935],[205,187]],[[53246,20232],[-1,460]],[[88702,36510],[97,-232]],[[85905,54149],[1,-2]],[[78950,72085],[254,23],[205,-130],[530,-44],[291,74]],[[91482,20069],[0,-1]],[[82571,86822],[-18,394]],[[82553,87216],[-2,2]],[[88019,51717],[151,126]],[[87637,36592],[10,-7]],[[78761,90159],[-40,282]],[[85466,50382],[9,-5]],[[55039,56691],[-192,-32],[-16,-341],[-188,-419],[-97,-447]],[[93137,25185],[-2,2]],[[79280,89836],[248,150]],[[72127,65720],[566,-101],[238,210],[294,-92]],[[82391,48404],[-394,-57],[-139,-137]],[[71986,64257],[-102,-396],[-670,225]],[[86584,40840],[70,-142]],[[86654,40698],[1,-2]],[[81058,94091],[-293,152]],[[81239,85677],[10,129]],[[66291,39582],[8,-591],[-204,-117],[-34,-302]],[[76279,46551],[14,-17]],[[81291,55840],[6,2]],[[46508,60070],[207,-171],[11,-789]],[[61629,84545],[1,-4]],[[61630,84541],[50,-161]],[[61680,84380],[-55,-339],[-805,-135]],[[60820,83906],[-564,-388]],[[79329,61689],[70,-233]],[[64269,39007],[296,-487],[-4,-289]],[[72948,66751],[88,-71]],[[82131,64242],[2,-3]],[[62352,84595],[2,-4]],[[80569,48513],[439,-522],[382,105],[682,-431]],[[85657,50498],[31,-5]],[[80544,93294],[24,-362]],[[62042,36771],[-108,-38],[-28,-581]],[[63705,55802],[168,237]],[[80367,80141],[-74,27],[59,525]],[[81718,88661],[298,-425]],[[66522,42627],[-38,-97]],[[62094,67387],[-294,-211],[-793,-267]],[[72632,35795],[-390,65],[-141,-859]],[[91276,20215],[1,-17]],[[53425,48858],[-4,1147],[-234,333]],[[89579,35997],[31,-135]],[[61516,38067],[4,-35]],[[61520,38032],[-2,-16]],[[95441,28819],[-127,26],[-200,-344]],[[72097,69619],[276,152]],[[65543,69685],[-1,-4]],[[43681,49669],[12,15]],[[71246,66412],[28,309],[-180,129],[-387,714]],[[69249,53196],[-134,-4],[-254,-320],[-26,-390],[141,-366],[236,-338],[-116,-135],[10,-483]],[[85281,62723],[69,319],[253,569],[26,213],[244,182]],[[63647,44357],[3,-1]],[[49771,48465],[153,101],[665,-75]],[[80704,39224],[-266,-382]],[[85997,62661],[-1,0]],[[73077,68060],[22,-297]],[[64561,38231],[222,-84]],[[68220,43017],[64,660]],[[87228,37289],[-571,166],[-1188,731],[-148,213],[-428,-3],[-185,-144],[-311,201]],[[65737,47562],[46,-41]],[[73313,67273],[39,25]],[[73725,42019],[9,138],[-593,-494],[-68,204]],[[64482,48877],[-60,243],[-388,762]],[[68568,81418],[3,1]],[[63494,29441],[66,-367],[-28,-833],[144,-135]],[[71768,45691],[38,241]],[[80191,79703],[57,33]],[[88362,39405],[-6,-41]],[[68717,32135],[28,641],[-223,115]],[[58066,39133],[-1048,-39],[-814,7]],[[93173,26529],[-58,-209],[211,-599],[-39,-189],[-445,-664],[-308,-828],[-309,-662],[-203,-688],[-308,-747],[-397,-1401],[-24,-328]],[[78785,88153],[0,-5]],[[67022,38214],[396,-9]],[[59968,71301],[111,-46]],[[83602,50515],[1,724]],[[84181,57209],[-114,592],[-86,917],[56,849],[-90,401],[59,663],[-58,274]],[[82795,30885],[-369,-354]],[[78699,90511],[-70,12]],[[83532,56724],[-23,-734],[-73,-244],[-335,-573],[-87,-601]],[[84097,93357],[354,42]],[[93575,28116],[317,-103]],[[81106,86267],[-70,134]],[[81103,87522],[-40,107]],[[84894,42444],[11,30]],[[84905,42474],[-41,488]],[[72639,59421],[-212,-134],[-528,336],[-428,-154],[-410,-260],[-318,10],[-261,129],[-561,-80],[-1226,55],[-155,-200]],[[80569,48513],[345,365],[259,547],[252,217]],[[76604,62403],[-65,-256]],[[76539,62147],[-72,-259],[-285,-481]],[[81447,61194],[352,-86]],[[82977,56505],[3,4]],[[72365,68230],[25,145],[534,-31],[189,487]],[[86710,45739],[-218,-249],[-185,-785],[-136,-804],[-198,-393]],[[93892,28013],[22,-5]],[[89486,32047],[9,13]],[[86650,33394],[-275,582]],[[73454,30767],[-111,-848],[-156,-216]],[[73261,67332],[8,84]],[[67954,45013],[-13,366]],[[73454,30767],[-111,-848],[-156,-216]],[[76219,64993],[1,21]],[[86714,45728],[-4,11]],[[42372,27836],[2,3]],[[42374,27839],[1,0]],[[42375,27839],[1,-2]],[[42376,27837],[3,-5]],[[60549,83874],[-71,-63]],[[59988,83705],[-27,-97]],[[85075,49342],[57,-128]],[[72916,28005],[107,5],[133,946],[31,747]],[[63873,56039],[-55,-218],[-38,-1356],[-178,-1278]],[[87909,35762],[-425,51],[-261,544]],[[79411,92258],[9,91]],[[79102,44220],[504,-18]],[[83094,63887],[-44,-22]],[[84679,45111],[95,-145]],[[64561,38231],[221,485]],[[65941,46337],[61,-23]],[[85295,56187],[116,-378]],[[35683,37497],[4,52]],[[35687,37549],[300,663],[430,749]],[[36417,38961],[645,578]],[[37062,39539],[252,224],[-22,504]],[[37292,40267],[-18,31]],[[49335,36447],[125,8],[409,-976],[215,-672],[459,-1222]],[[82878,58750],[1,-1]],[[73931,31973],[-1146,312],[-229,155]],[[64792,37463],[-5,0]],[[79329,61689],[70,-233]],[[88472,38934],[-65,-61]],[[79521,90978],[202,-43],[15,183],[278,93]],[[60030,71370],[-62,-69]],[[83961,91316],[-43,-131]],[[69560,81750],[245,-509],[-111,-579]],[[74631,77110],[-111,-675]],[[65542,69681],[29,-12]],[[80600,90152],[-126,-135]],[[79209,85529],[-340,237]],[[80989,88031],[-1,-4]],[[80466,33998],[0,0]],[[80556,94526],[71,-418],[-83,-814]],[[83332,89007],[-185,12],[-118,-205]],[[73154,80258],[-256,-369],[-260,-798],[-216,-368]],[[76219,64993],[278,-392]],[[93588,28232],[-4,-4]],[[79581,31643],[1,3]],[[84578,58064],[-1,2]],[[66493,50227],[46,153],[603,-52],[499,-544],[313,-427]],[[87937,34941],[-2,6]],[[87719,52136],[-216,52],[-277,-132],[-54,-264],[-305,-387]],[[42749,53867],[8,-55]],[[81546,84125],[65,10]],[[73463,67734],[-28,-181]],[[85815,43681],[0,5]],[[85380,44528],[-83,2]],[[45735,49989],[83,71]],[[82571,86822],[-17,397]],[[69239,74170],[16,-13]],[[80417,82778],[-10,-5]],[[87909,39836],[2,-4]],[[90002,37986],[-16,132]],[[64600,35243],[-94,-11],[57,568],[157,425]],[[52659,56135],[-123,51],[-385,937],[2,149],[-293,488],[-360,816],[-56,1962]],[[57545,53468],[394,144],[339,494],[253,218]],[[61983,51806],[4,33]],[[61987,51839],[-226,30],[-117,249]],[[65681,82424],[-107,-454]],[[81297,55842],[-6,-2]],[[94068,23968],[2,1]],[[84119,90841],[-369,-2]],[[80809,92165],[-30,-348],[-176,56],[-152,-798]],[[89294,27873],[78,-226]],[[60539,53245],[333,-767]],[[79776,74271],[77,-371],[249,-251],[104,-259]],[[80877,89478],[-204,-283]],[[78505,83508],[139,352],[406,433],[194,54]],[[62042,36771],[30,451],[-204,542]],[[84863,95706],[3,-1]],[[79068,40128],[116,-268]],[[75896,36844],[43,-196]],[[70820,47290],[-17,-30]],[[61642,84513],[-3,31]],[[77832,73163],[129,881]],[[85281,62723],[-27,74],[375,1027],[174,147]],[[83335,57896],[-49,178]],[[88720,38401],[18,180]],[[73854,68347],[13,178]],[[83687,90222],[-100,26],[-175,-370]],[[56887,71919],[-429,-9],[-854,-114]],[[42372,27836],[3,3]],[[42375,27839],[27,0]],[[42402,27839],[110,-1000]],[[83750,90839],[-103,-259]],[[58330,48040],[-4,1]],[[81504,85275],[16,31]],[[84226,65220],[-189,187]],[[84615,44590],[-207,34]],[[64004,37979],[63,338],[-76,915]],[[73594,67081],[-4,150]],[[74060,66421],[-118,-50]],[[64300,37197],[6,548]],[[67619,65213],[78,262]],[[84323,96820],[40,-10]],[[84363,96810],[1,0]],[[84364,96810],[100,-47]],[[84464,96763],[124,-82]],[[86368,40528],[-62,74]],[[64482,36303],[54,244]],[[92832,31782],[-2,19]],[[53246,20232],[-237,-81],[-43,-370],[-199,-198],[-411,-606]],[[52356,18977],[-223,-365]],[[80525,90171],[75,-19]],[[54610,24990],[44,326]],[[84227,95973],[389,-107],[122,-172]],[[62026,74986],[-36,8]],[[69674,74183],[141,204]],[[60676,82360],[8,301]],[[84873,95949],[15,118]],[[85878,23898],[-38,-826]],[[85840,23072],[-32,-155]],[[85808,22917],[68,-351],[-67,-419]],[[85809,22147],[-47,-503]],[[85762,21644],[-18,-480]],[[85744,21164],[220,-1343],[209,-377]],[[79399,61456],[-290,-614]],[[73275,67597],[36,61]],[[61665,84463],[-26,81]],[[58898,40084],[-831,57],[-9,-76]],[[75175,66422],[-170,-706],[46,-727]],[[84495,95471],[-21,-196]],[[67601,44698],[300,-463]],[[88225,39115],[-1,6]],[[79190,64548],[24,-29]],[[86166,42898],[-3,4]],[[50358,40905],[-66,87]],[[81484,63584],[2,1]],[[78376,88955],[7,-1]],[[74873,48500],[-16,-12]],[[62348,48654],[-315,60],[-369,477],[-617,102],[38,425]],[[62035,75134],[-9,-148]],[[89808,35213],[30,-177]],[[53459,29043],[-240,-26],[-253,394],[2,285],[-196,210]],[[80307,73060],[49,-268]],[[81129,44371],[15,4]],[[75640,69995],[14,-268]],[[78498,89993],[-34,-603]],[[66612,79970],[-306,391],[-778,1157]],[[73518,67807],[84,-6]],[[90018,33392],[9,466]],[[54460,17155],[-559,-101]],[[71214,64086],[78,357],[-2,841],[-128,598],[97,231]],[[78851,66238],[87,1115]],[[82471,68768],[-3,-1]],[[82468,68767],[-204,304]],[[81450,84004],[-44,-390]],[[73958,79410],[-402,469]],[[67989,69410],[119,-81],[313,259],[-23,103]],[[84749,94876],[-88,24]],[[70815,47284],[-364,294],[-197,445],[-425,655],[38,164]],[[60272,83074],[27,19]],[[82322,62484],[-21,43]],[[62506,84682],[-67,50]],[[50292,40992],[67,5]],[[50359,40988],[0,9]],[[80987,89047],[-110,431]],[[56754,74727],[-40,-1655],[176,-711],[-3,-442]],[[85660,50448],[17,24]],[[64423,34640],[-8,1]],[[65167,38908],[394,-130]],[[80323,29422],[-3,2]],[[85420,39453],[-53,-266]],[[79771,78188],[263,51]],[[73765,71028],[44,15]],[[77601,74792],[404,-580]],[[87318,52483],[-216,-39],[-238,-868],[13,-768]],[[76324,69984],[4,8]],[[87841,39352],[7,-4]],[[65166,38908],[-212,38],[-172,-230]],[[88703,38333],[-1,1]],[[87937,36688],[251,-506],[372,-305],[34,-276],[180,-331],[-11,-249]],[[89275,36343],[-58,-56]],[[79495,56597],[31,86],[-237,1522],[-5,374]],[[62338,45525],[86,-493],[601,-1967]],[[65574,81970],[-258,-66],[-439,86],[-336,-51],[-544,45],[-353,-131],[-264,150],[-866,-145],[-286,-331],[-519,62],[-200,-161],[-323,30],[-8,123],[-494,51]],[[47578,39811],[-144,47]],[[84453,43346],[-4,-2]],[[89938,32771],[141,804]],[[83364,56319],[16,-31]],[[82172,61282],[0,0]],[[81207,95110],[102,1053]],[[85690,42856],[270,-71]],[[88019,39522],[144,-333]],[[83986,57273],[-37,-180]],[[74488,66797],[-19,-107]],[[74004,68081],[-62,151]],[[85327,49967],[5,12]],[[64602,82446],[0,3]],[[50045,41018],[5,459],[111,279],[2,1261]],[[50163,43017],[229,176]],[[65788,42198],[-64,65]],[[89703,33203],[14,14]],[[72745,68162],[-162,-172],[-218,240]],[[84894,42444],[-152,53]],[[84451,93399],[74,555]],[[75267,72631],[2,-1]],[[50582,52568],[-1065,694],[-499,527],[-578,-22],[-636,180],[-44,385]],[[76555,78708],[-162,-154],[-151,169]],[[61680,84528],[-41,16]],[[88322,38814],[20,19]],[[80569,48515],[0,-2]],[[64452,34913],[-110,625]],[[69302,76437],[70,6],[415,-1213],[148,-586]],[[74662,70473],[265,278],[233,-195],[249,-497],[-27,-293],[322,-532],[194,-16],[663,612]],[[73522,66748],[23,163]],[[86211,39642],[-6,-2]],[[85765,46347],[-4,1]],[[62432,58721],[33,-8]],[[63521,47879],[-495,201]],[[71434,34080],[-293,-110],[-614,142]],[[79999,78939],[-278,74],[-186,243]],[[72895,69013],[218,-182]],[[84334,46232],[180,-306]],[[83392,57182],[0,-5]],[[77537,70547],[-603,714]],[[78421,39440],[-331,441]],[[52555,52123],[7,3]],[[85006,45123],[167,-115]],[[80256,88885],[34,47]],[[61639,84544],[66,62]],[[72365,68230],[24,146],[535,-30],[189,485]],[[82289,87227],[-338,-308],[-82,-666],[-385,-1476],[-266,-682],[-124,-851],[-291,-374],[-386,-92]],[[78458,39377],[-194,-249],[-184,-452],[-193,-148],[-116,-284],[-276,-317],[-3,-470]],[[65814,46886],[-105,-2154]],[[40614,40960],[708,45]],[[84631,95788],[107,-94]],[[61644,52118],[-350,-525],[-372,-708],[1,-138]],[[60923,50747],[43,-128]],[[73113,68831],[59,208],[247,14]],[[83694,92166],[206,-34]],[[49196,32329],[-185,-710]],[[49011,31619],[-149,-173]],[[48862,31446],[-13,3]],[[87210,37807],[174,-465]],[[73357,66755],[8,109]],[[84124,90832],[-5,9]],[[79671,80272],[32,-529]],[[79703,79743],[249,-125]],[[79952,79618],[175,-34]],[[80127,79584],[64,119]],[[86094,62701],[1,-3]],[[96347,13582],[6,-4]],[[94430,28431],[-322,-178],[-216,-240]],[[72801,67388],[37,173]],[[60188,83260],[-77,-148]],[[66084,81260],[0,-593]],[[59740,81683],[4,44]],[[62056,84535],[-1,3]],[[79984,88417],[24,560]],[[85784,46340],[-23,8]],[[83210,53145],[48,187],[397,-77],[86,-298],[-93,-431],[-45,-1287]],[[85128,39039],[-136,309],[-75,-105]],[[61666,84356],[-280,-85]],[[87719,52136],[76,-69]],[[47556,37410],[-529,-147],[-279,-7],[2,-199],[-241,-83]],[[79337,89272],[123,-11]],[[62616,52369],[-3,11]],[[55236,23197],[-189,475],[16,787]],[[73366,67428],[69,125]],[[76555,78708],[-184,-437],[-413,-776],[-257,-958]],[[67976,69396],[-274,-3]],[[87598,57779],[-99,338]],[[85466,50382],[9,-5]],[[83736,58443],[0,-4]],[[47226,21637],[239,-45],[1021,-11]],[[85702,50642],[0,1]],[[63471,40282],[-780,1221],[-214,451],[-419,614],[-340,360],[-142,-46]],[[49118,24774],[-227,-14],[-78,-367],[-280,-256],[-16,-714]],[[44560,51792],[-249,-500],[-277,-734],[-251,-473]],[[82197,69161],[-195,215]],[[72866,33919],[-113,-144]],[[85471,54061],[-68,-31]],[[84383,26513],[-8,13]],[[84375,26526],[-1,2]],[[84374,26528],[-224,159],[-113,-280]],[[81445,61193],[-61,-96]],[[70803,47260],[17,30]],[[62220,68821],[-34,-446]],[[86471,60599],[1,0]],[[89129,35812],[119,-267]],[[75451,65927],[-276,495]],[[62697,84626],[-9,28]],[[89201,35213],[47,332]],[[69400,40005],[-83,322],[-220,-145],[-672,-730],[-350,-600],[-657,-647]],[[66186,58738],[177,307],[494,228],[253,224],[377,72],[78,255]],[[60343,67013],[-62,8]],[[85164,62367],[2,-1]],[[76081,37080],[34,314],[-195,120],[63,986]],[[84227,95973],[-131,-747],[-202,-357]],[[83894,94869],[141,-564],[-45,-458],[107,-490]],[[82271,69571],[-159,105],[-524,-37],[-178,280],[-242,-26]],[[75954,46881],[-980,41],[-442,139],[-239,-215]],[[80568,92932],[283,-259],[-42,-508]],[[68400,78960],[-841,303],[-780,159],[-223,435],[17,155]],[[63140,30088],[-55,148],[-455,59],[-227,252],[-254,455],[-346,261],[-234,-8]],[[82525,62070],[24,33]],[[58305,83754],[-2,0]],[[75922,63307],[-80,-626]],[[75842,62681],[-3,-4]],[[45499,18532],[130,-142],[347,-945],[348,-667],[242,-350],[408,-273]],[[85361,44909],[-80,54]],[[84815,36679],[-78,-559]],[[67418,38205],[161,-45],[203,-593]],[[73765,71028],[-61,278]],[[50643,44208],[-178,-97],[-154,-571],[81,-347]],[[63991,39232],[57,339],[-173,34],[-562,866],[-534,896]],[[76600,39510],[496,-71],[334,288],[204,297],[456,-143]],[[78228,83956],[131,1591],[-57,367]],[[66810,48020],[808,-1043],[57,18]],[[64015,38886],[0,-1]],[[84949,44403],[-159,-133]],[[83242,44681],[-173,-299]],[[70591,48675],[-7,-10]],[[66612,79970],[-39,42]],[[80151,65907],[-186,117]],[[42372,27836],[587,133],[785,557],[256,660]],[[66322,81891],[-238,-631]],[[85889,56246],[-71,-1]],[[92867,27062],[-225,324],[-304,254],[-803,-529]],[[91535,27111],[-1,-1]],[[91534,27110],[-631,-129],[-171,-112],[-90,236]],[[74371,67758],[365,265]],[[84843,47901],[137,-420],[9,-319],[122,-167],[-147,-410],[-2,-762],[145,-40]],[[54360,75516],[-254,-58],[-19,-645]],[[81943,61266],[1,0]],[[88533,36688],[169,-178]],[[85000,44286],[-210,-16]],[[83828,90770],[-1,5]],[[79924,86102],[-160,52],[-497,-637],[-319,238],[-646,159]],[[55816,27264],[-49,59],[40,1519]],[[83486,48090],[68,-111]],[[68401,69690],[-3,1]],[[86790,50297],[-113,-93]],[[72364,69338],[531,-325]],[[84471,43346],[4,-3]],[[84475,43343],[8,-73]],[[57545,53468],[0,-669],[224,-1408]],[[74597,77968],[-117,-326]],[[85478,43835],[-55,161]],[[49117,50976],[-619,-58],[-468,-191]],[[64804,38231],[-15,469],[-210,421]],[[67820,42393],[247,-105]],[[64015,38885],[55,-409],[198,-226]],[[88227,19372],[2,-3]],[[53944,39012],[243,-55]],[[80871,56160],[5,-9]],[[72202,72748],[29,-5]],[[67565,59824],[-112,-498],[-132,-251],[-398,-1246]],[[88702,36510],[-587,70],[-483,524],[-404,185]],[[79518,84571],[-274,-224]],[[49771,48465],[408,608],[-2,511],[158,26]],[[61150,66140],[212,-772]],[[78114,83285],[114,671]],[[52133,18612],[-487,195]],[[59527,35733],[107,15],[483,1255],[115,208],[43,863]],[[73849,72580],[-11,-104],[601,-229]],[[81208,85438],[-3,5]],[[67901,44235],[-29,-371],[258,-110]],[[62138,67944],[-44,-557]],[[80448,34020],[200,89],[413,-454]],[[79854,76367],[-229,84]],[[60328,84195],[-309,-489],[117,-59]],[[90060,34400],[19,-825]],[[86710,45739],[-219,-247],[-185,-787],[-136,-803],[-197,-394]],[[69541,73573],[-46,-809],[-84,-597],[-35,-1151],[-96,-281]],[[81944,61266],[87,83]],[[63311,71338],[-16,29]],[[84526,96261],[8,141]],[[50579,52582],[3,-14]],[[68474,67114],[-2,1]],[[72981,68086],[-69,111]],[[43466,13639],[-86,1200]],[[47193,33556],[-1728,-91]],[[63025,43065],[133,94],[52,986]],[[85784,46340],[-19,7]],[[61784,64804],[2,-2]],[[62352,84595],[-21,35]],[[61606,42664],[-177,19]],[[61606,42664],[-1,-12]],[[82928,54942],[-206,-109]],[[78785,88148],[-3,1]],[[85590,44735],[179,82]],[[82682,48408],[0,-2]],[[73614,65456],[97,-78]],[[64268,38250],[355,-472],[98,-270]],[[75410,69348],[223,322]],[[69280,70735],[-484,-61]],[[87608,19364],[1,0]],[[94430,28431],[444,109]],[[83673,57216],[10,65]],[[82977,56505],[134,-353],[253,167]],[[72382,66967],[-54,214]],[[51358,49561],[54,-121]],[[85568,43261],[-34,198]],[[79209,85529],[59,-13],[496,636],[160,-50]],[[64120,61741],[-9,-25]],[[84532,95131],[-58,144]],[[85371,39188],[-4,-1]],[[78147,76999],[-645,-601]],[[74095,68916],[-92,-65]],[[70591,48675],[57,-67]],[[85606,51068],[-143,94],[-14,-414]],[[68203,41226],[-393,266]],[[78702,89378],[-147,51]],[[80394,81370],[-5,-13]],[[94291,29544],[-115,-665],[-330,-393]],[[88735,38587],[3,-6]],[[83115,58286],[-139,269]],[[81238,95474],[-52,-553],[-158,56]],[[80111,89155],[-103,-178]],[[84227,95973],[96,847]],[[80328,34235],[0,0]],[[88266,38868],[-49,-8]],[[72365,68230],[-146,-639],[15,-672],[-110,-154]],[[75896,36844],[185,236]],[[61119,84608],[-181,652]],[[85779,62746],[-326,63],[-172,-86]],[[68068,71024],[243,-773]],[[73073,41867],[400,293],[416,132]],[[73064,59043],[370,-397],[262,-142]],[[84798,43527],[322,-320]],[[49062,28327],[-5,32]],[[76497,64601],[-343,-1024]],[[84097,93357],[-134,474],[37,485],[-107,552]],[[83893,94868],[1,1]],[[83894,94869],[205,342],[84,337],[170,14],[121,-287]],[[74151,74395],[51,3],[78,883],[9,918]],[[73219,67170],[-50,12]],[[67565,59824],[-223,127],[-566,104],[-357,-44],[-415,60],[-369,202]],[[79703,81061],[-107,184]],[[68067,42288],[127,355],[26,374]],[[63442,82168],[387,315],[9,165]],[[73854,68347],[88,-115]],[[89981,37211],[-222,-218],[-81,-249]],[[87020,59002],[-51,-33]],[[87868,36153],[69,535]],[[85994,62788],[8,149]],[[79373,61417],[-752,732],[-484,242]],[[78005,74212],[95,575],[212,500]],[[72757,38726],[-91,-1315]],[[50292,40992],[-247,26]],[[85361,39263],[281,-322],[423,-234],[613,-191],[209,-221],[85,-338],[271,-244],[132,-375]],[[60383,83726],[-24,-26]],[[81141,87448],[-13,-139]],[[73735,42191],[-10,-172]],[[79109,60842],[290,614]],[[68249,37225],[-494,-29],[-121,-463]],[[81028,94977],[229,-255],[-145,-344]],[[68528,34401],[-253,261],[67,1067],[13,808],[-106,689]],[[83750,90839],[-29,146]],[[66615,79456],[25,-50]],[[87062,49051],[-439,309],[-162,9]],[[85145,48714],[5,-5]],[[61069,78553],[-113,948],[-262,1150],[-10,981]],[[86877,50808],[23,241],[-213,157],[-339,-359],[-641,-174]],[[86714,45728],[-4,11]],[[74349,66424],[-181,284]],[[85812,45087],[-1,0]],[[63919,36582],[5,2]],[[79509,80326],[20,104]],[[93846,28486],[330,393],[115,665]],[[79509,80326],[20,104]],[[79529,80430],[-3,-5]],[[46974,16155],[2,2]],[[75308,72624],[-39,6]],[[81358,90628],[17,659],[282,506]],[[89938,32771],[-5,-230],[-232,-715],[-55,-506]],[[78702,89378],[142,39]],[[57815,65282],[50,-592],[548,-1150],[569,-1041],[6,-157]],[[73867,68526],[1,-1]],[[81291,55840],[352,-337]],[[52225,46225],[-280,-312],[-449,-93],[-449,-428],[-126,-518],[-328,-441],[50,-225]],[[61879,57383],[1,0]],[[67565,59824],[43,276],[465,23],[232,-333]],[[58512,51682],[-48,-266],[-445,-847]],[[95309,28823],[-195,-322]],[[52335,11718],[1,0]],[[71955,64465],[-83,184]],[[79507,59950],[-30,-44]],[[90620,27102],[22,3]],[[73225,65737],[-310,85],[-532,542]],[[76561,69830],[497,-926],[246,-305],[37,-269]],[[67304,43812],[-315,642]],[[90058,57371],[0,-1]],[[73378,66313],[21,68]],[[74736,68023],[191,537],[483,788]],[[73419,69053],[-15,447],[443,46],[360,709],[361,266],[94,-48]],[[88470,38648],[3,13]],[[91276,20215],[193,-126]],[[85120,43207],[74,213]],[[79407,80471],[-1,-64]],[[79406,80407],[-219,-2170],[-67,-360],[-178,-294],[-184,-1316],[-171,-288],[-369,-916],[-72,-803],[-141,-48]],[[84812,42155],[-18,-354]],[[78702,89378],[-147,51]],[[76550,56600],[-269,250],[-469,168],[-343,252],[-145,-92],[204,-418]],[[88735,38587],[17,-44]],[[76225,48804],[2,-511],[92,-547],[-82,-773],[-275,-209]],[[65166,38908],[2,6]],[[83984,42273],[116,54]],[[85454,51196],[13,-4]],[[80217,72101],[15,-90]],[[89108,35190],[93,23]],[[85062,32881],[-56,40],[-469,-865],[-286,-286]],[[86102,45219],[-154,-359],[-108,-543]],[[67810,41492],[13,655],[253,-77]],[[81269,86165],[-73,-40]],[[86351,45399],[-140,-220]],[[90079,33575],[-19,825]],[[85878,23898],[-39,-825]],[[85839,23073],[-32,-157]],[[85807,22916],[68,-350],[-66,-418]],[[85809,22148],[-47,-505]],[[85762,21643],[-19,-478]],[[85743,21165],[220,-1344],[210,-377]],[[78759,90153],[-112,-106]],[[94652,20955],[99,77]],[[59731,50884],[4,-5]],[[89012,36332],[182,-70]],[[72867,68576],[-5,-223]],[[85769,44817],[13,24]],[[85782,44841],[1,0]],[[85783,44841],[119,31]],[[72685,66896],[-356,-402]],[[64561,38231],[221,485]],[[84358,35490],[185,703],[272,486]],[[49771,48454],[0,11]],[[70913,47158],[-93,132]],[[89717,33217],[-14,-14]],[[88084,51947],[128,-11]],[[73634,68340],[220,7]],[[84383,43975],[-2,1]],[[85390,44696],[-82,84]],[[80055,58571],[3,32]],[[72328,67181],[102,-9]],[[78005,74212],[-560,799],[-387,433],[-900,423],[-487,488],[30,182]],[[71429,67390],[37,181]],[[82042,63153],[263,734],[-13,138]],[[57924,50250],[4,-8]],[[72866,67128],[-436,41],[-306,-404]],[[75528,56760],[-62,-117],[233,-439]],[[84866,95705],[25,-98]],[[72231,72743],[343,-64]],[[51358,49561],[3,-18]],[[73538,67332],[-64,135]],[[85219,40150],[126,153],[337,-376]],[[83194,48118],[2,1]],[[51387,62385],[8,-186],[-464,108],[-59,-155]],[[89326,29315],[-14,3]],[[89312,29318],[-353,-365],[-261,-41],[-223,149],[-293,-24]],[[94437,27996],[-100,-321]],[[80772,85844],[-380,-114],[-155,132]],[[89486,32047],[-115,13],[-114,-392],[-29,-754],[-66,-209]],[[81107,87131],[-29,-23]],[[84234,26068],[-3,4]],[[82270,67921],[165,536],[195,321]],[[80731,51785],[-338,60],[-276,251],[157,390]],[[82471,68768],[-158,384]],[[83909,56663],[-110,183]],[[64300,37197],[6,548]],[[89580,36135],[-88,4]],[[74661,67484],[-16,-94]],[[70061,67560],[-148,-333],[-163,9]],[[65542,69681],[-87,18]],[[42835,53839],[4,-14]],[[87047,55459],[66,250],[273,215]],[[92832,31782],[-3,15]],[[81969,63981],[0,-73]],[[80191,79703],[148,192]],[[75701,76537],[-192,-1981]],[[72801,67387],[0,1]],[[85006,45123],[-232,-157]],[[47409,62622],[250,682],[496,183],[386,655],[-1,1356]],[[65558,50968],[68,80],[585,34]],[[65805,46890],[-26,-58],[-115,-1839],[165,-190]],[[57532,49404],[63,210]],[[85790,45600],[-6,740]],[[83094,63887],[-44,-22]],[[81371,44316],[868,-57],[453,-650],[507,-174],[369,14],[747,-411]],[[72592,45690],[-84,-225],[-40,-558],[-207,-141],[-13,-474]],[[73704,71306],[-105,-249],[-210,-136],[-805,-1100],[-235,-448]],[[79041,57055],[444,-290],[10,-168]],[[80175,79643],[16,60]],[[88591,38762],[-119,172]],[[85287,38846],[-57,-161],[165,-226]],[[42072,18559],[-80,-368],[1,-811]],[[83849,58792],[-113,-353]],[[40735,17796],[-371,-61]],[[81694,58159],[12,-397],[-99,-457]],[[85364,39256],[-24,-1]],[[81133,85905],[136,260]],[[80371,89626],[12,-146]],[[65528,81518],[-714,679]],[[89413,33795],[307,-577]],[[89720,33218],[0,-1]],[[89720,33217],[-1,-1]],[[89719,33216],[-2,1]],[[91340,26441],[-5,-3]],[[83286,58074],[-171,212]],[[93173,26529],[-9,13]],[[88349,51887],[1,2]],[[81331,65563],[-49,360],[4,754]],[[85961,35277],[-70,16]],[[72563,50814],[185,-482],[138,-1915]],[[79070,40131],[114,-271]],[[89285,35179],[-84,34]],[[81141,87173],[-13,136]],[[47909,11975],[15,-1926],[-54,-197]],[[69750,67236],[0,-1]],[[69211,43977],[-473,877],[-152,42],[-38,-314]],[[53944,39012],[-196,1],[8,604]],[[86094,62698],[0,3]],[[61822,75685],[-42,-67]],[[86193,45396],[18,62]],[[63838,82648],[-45,281],[-353,161]],[[83472,57874],[-186,200]],[[45656,43943],[-432,-82],[-241,-155],[3,-172],[-245,-12],[-49,-174],[-433,-18]],[[87800,51922],[27,-30]],[[85979,39085],[-559,368]],[[72890,68270],[-28,83]],[[85682,39927],[-262,-474]],[[58303,83754],[-142,11],[-17,485]],[[85532,42474],[158,382]],[[61364,82746],[-423,681]],[[93132,25242],[5,-57]],[[84408,95553],[-4,374],[-177,46]],[[79745,60039],[298,208]],[[78702,89378],[3,210]],[[89608,35852],[7,10]],[[66958,36484],[164,-19],[28,1058]],[[78785,88148],[74,-841]],[[89828,35102],[9,-187]],[[80240,88908],[16,-23]],[[86208,53289],[-439,496]],[[61753,75503],[-149,-96]],[[60927,25973],[11,-48]],[[83041,37552],[-106,215]],[[77867,68000],[4,-10]],[[82256,28592],[452,-57],[49,-108]],[[50801,26717],[1,10]],[[78161,40060],[-71,-179]],[[62613,35843],[-12,-277],[-253,38]],[[78629,90523],[-148,-194]],[[67262,53169],[176,-811]],[[88629,37952],[-92,-163]],[[62438,84737],[1,-5]],[[53245,20693],[0,-1]],[[84789,27186],[572,41],[444,-291],[413,18],[224,-180]],[[50092,61470],[30,279],[583,583],[99,181],[229,27]],[[71634,30107],[7,-468],[315,-847],[195,-361],[339,-261]],[[55283,77568],[-26,944],[68,304]],[[55325,78816],[17,195]],[[85360,54064],[-276,-4]],[[68969,69680],[-244,-283],[-216,188]],[[83532,56724],[-152,-436]],[[80995,82522],[46,236]],[[78411,61602],[3,3]],[[93957,25126],[-12,-286],[172,-60]],[[74925,66517],[60,378]],[[73451,68555],[-338,276]],[[83999,92588],[316,425]],[[81691,61183],[340,166]],[[64013,38891],[-3,-7]],[[89418,36298],[74,-159]],[[88591,38453],[114,-137]],[[85025,45883],[86,-55]],[[87679,19340],[3,-2]],[[84793,42645],[-243,290]],[[84550,42935],[-229,110]],[[84321,43045],[-6,-7]],[[68381,81259],[269,-250],[175,-14],[188,511],[-3,217]],[[83475,42419],[191,42],[247,-141],[207,258],[195,460]],[[75613,48697],[146,-122],[608,-213],[306,99]],[[80499,58540],[14,304],[-288,731],[-92,99]],[[79623,92795],[-63,-738],[-249,-65]],[[58303,83754],[-1,64]],[[85532,43478],[-54,357]],[[73113,68831],[-51,-233]],[[64152,31385],[-96,44],[59,915]],[[66682,28950],[7,15]],[[64773,47535],[-455,91],[-276,-33]],[[73878,66733],[-41,-82]],[[73731,42208],[165,-250],[404,-121],[610,114],[435,-121],[614,-23]],[[80339,29920],[-91,-40]],[[88702,36510],[-285,761],[-368,191],[-252,449]],[[70173,69234],[211,-289]],[[60751,66993],[256,-84]],[[84389,47985],[-13,3]],[[53338,23679],[-51,-2822],[-42,-164]],[[73624,67361],[-34,-130]],[[76604,62403],[337,-144],[379,99]],[[50186,64879],[-14,771],[176,306],[-204,629]],[[85840,44317],[62,555]],[[71559,46510],[-64,166]],[[72981,68086],[96,-26]],[[84477,97459],[-154,-639]],[[43332,60486],[-326,98]],[[79495,56597],[923,-176]],[[80686,70396],[42,111]],[[51618,25626],[-412,533],[-437,474]],[[50769,26633],[-8,-1]],[[46658,27471],[-730,483]],[[59744,81727],[191,403]],[[83475,42419],[-491,31],[-171,411],[-305,60],[-157,266],[-384,-211],[-314,53]],[[78114,83285],[-223,-40],[-95,177]],[[87404,40655],[-1,6]],[[87403,40661],[0,1]],[[87403,40662],[-747,36]],[[86656,40698],[-2,0]],[[86654,40698],[-76,-100]],[[80544,93294],[-149,-218]],[[86442,26774],[-356,-567],[-472,-43],[-514,187],[-243,-114],[-392,105],[-234,-270]],[[83999,92588],[316,425]],[[96432,16224],[117,-798],[-134,-992],[-154,-513],[86,-339]],[[55605,15788],[-314,182],[-243,-44]],[[55048,15926],[-139,38]],[[54909,15964],[-2,120]],[[72197,28424],[430,-394],[289,-25]],[[56181,55009],[-191,114],[-580,124],[-301,180],[-563,25]],[[88224,39121],[-11,-11]],[[68960,68826],[103,-218],[-10,-448]],[[75739,78150],[238,159],[265,414]],[[74587,77195],[-356,176],[-930,252],[-561,465],[-190,71]],[[50729,32990],[497,-1269],[268,-555]],[[81168,69893],[-440,614]],[[60281,67021],[-495,286],[-103,170],[-664,30],[-284,123],[-535,74],[-333,432]],[[64783,38147],[255,-29]],[[70464,71500],[-750,-229],[-434,-536]],[[66717,78060],[2,-6]],[[82099,69212],[59,-241],[313,-203]],[[65558,50968],[80,1319],[99,507]],[[83411,60650],[53,-83]],[[42283,63606],[380,49]],[[72895,69013],[-531,325]],[[44515,64638],[-46,55],[-630,-58],[-263,-342],[-660,-640],[-253,2]],[[87831,39827],[18,-65]],[[75314,49946],[-11,43]],[[84538,44729],[-4,2]],[[93575,28116],[42,-278],[-92,-601]],[[40992,15783],[3,6]],[[88649,34720],[54,-372],[236,-53],[291,-444],[183,-56]],[[81239,85677],[3,0]],[[74302,46813],[-194,-67],[-573,70],[-1327,570],[-300,63]],[[73942,66371],[-266,-219]],[[79598,76376],[256,-9]],[[79695,42708],[107,-543],[-134,-21]],[[84798,43527],[322,-320]],[[73435,66602],[64,-134]],[[77526,54454],[136,105],[419,9],[563,-234],[532,-125]],[[68031,32377],[-283,254],[22,333]],[[81002,39648],[376,-205],[256,-3],[76,172],[509,23],[97,93],[843,232],[591,226],[395,362],[288,119],[241,-47]],[[86439,26690],[9,84]],[[86448,26774],[2,5]],[[86450,26779],[1,2]],[[86451,26781],[1,4]],[[86452,26785],[326,490],[36,896],[110,138],[-35,675],[195,831],[221,281],[196,46]],[[87501,30142],[47,294]],[[87548,30436],[-250,506],[193,404],[318,171]],[[87809,31517],[206,355],[41,325]],[[55283,77568],[-35,-370],[-260,-251]],[[73931,31973],[-562,237],[-44,88]],[[83474,57499],[-2,0]],[[72364,69338],[-335,105],[52,164]],[[86102,45219],[-154,-359],[-108,-543]],[[69280,70735],[2,2]],[[62370,84366],[-76,5]],[[70266,64062],[-3,9]],[[76324,69984],[4,8]],[[84845,59914],[140,-474],[132,-125]],[[62432,58721],[-70,39],[-483,-1377]],[[54988,76947],[381,-187]],[[83041,37552],[-105,216]],[[84591,95429],[11,93]],[[82131,64242],[-8,535]],[[79399,61456],[-70,233]],[[84477,97459],[40,440],[112,-31],[67,335]],[[88799,36278],[259,-346],[227,-753]],[[68536,45327],[155,632],[-225,59]],[[85904,40947],[-108,34]],[[85796,40981],[-325,1026]],[[83646,91208],[75,-223]],[[66291,39582],[8,-590],[-494,-259],[-53,-327]],[[61983,51806],[-243,30],[-96,282]],[[85020,45450],[18,216]],[[62579,45026],[516,-313]],[[89413,33795],[52,237]],[[79298,91234],[-10,-110]],[[61906,36152],[256,-106],[2,-349]],[[50760,50201],[46,-835]],[[83663,58237],[-133,-9]],[[82716,61734],[-71,-4]],[[59744,81727],[-76,87]],[[91546,32411],[131,-188],[-60,-353],[61,-493]],[[91678,31377],[240,-24]],[[91918,31353],[81,-25]],[[91999,31328],[3,-3]],[[78761,90159],[-2,-6]],[[82716,61734],[397,331]],[[86166,42898],[-3,4]],[[73659,68125],[-52,-116]],[[64034,49882],[-2,0]],[[79808,65321],[15,139]],[[84953,46238],[18,-206]],[[83242,44681],[8,6]],[[69138,51689],[-31,-531]],[[86439,26690],[5,15]],[[86444,26705],[9,58]],[[86453,26763],[331,232],[366,-133],[664,103],[215,153],[536,163]],[[88565,27281],[0,0]],[[88565,27281],[468,753]],[[65752,38406],[23,120],[302,-154]],[[76555,78708],[23,184]],[[86439,26690],[3,84]],[[81266,95788],[-28,-314]],[[61475,82522],[-111,224]],[[86013,63164],[-83,48]],[[62069,84656],[8,-32]],[[78602,76101],[230,210],[238,36],[256,-124],[272,153]],[[95394,19918],[16,-160]],[[44801,21479],[147,34]],[[50906,10813],[-8,-15]],[[50898,10798],[-109,-318]],[[50789,10480],[-955,-1173],[-581,-1306]],[[54549,16649],[-324,-51]],[[43783,50085],[-140,-83],[38,-333]],[[86368,40528],[-24,-26]],[[87938,52078],[130,233]],[[78224,68652],[57,-77]],[[87623,51733],[48,-110]],[[61683,61385],[5,-1]],[[42072,18559],[-80,-368],[-3,-877],[-298,-693],[-71,-13]],[[67262,53169],[1340,71],[248,73],[399,-117]],[[59667,82017],[33,-7]],[[93523,28829],[-361,-378],[-119,-310]],[[47092,54311],[280,-57],[388,78]],[[57365,80653],[18,-268],[-244,-546],[-66,-354]],[[71597,82094],[-108,-136],[-291,288]],[[73077,68060],[22,-297]],[[83557,57868],[0,-7]],[[89967,38439],[97,526]],[[55360,22779],[-104,417]],[[55256,23196],[-20,1]],[[88272,38732],[50,82]],[[89326,29315],[-92,-730],[-201,-551]],[[79410,61454],[-11,2]],[[83395,60303],[1,1]],[[76642,63014],[148,-282]],[[66561,80929],[391,-88],[267,822]],[[81141,87448],[3,37]],[[75853,78961],[-768,86],[-146,-105]],[[84538,44492],[-3,-327]],[[65455,69699],[-321,-119],[-355,254]],[[53901,17054],[98,-332],[226,-124]],[[57924,50250],[242,-410],[348,-277]],[[70022,64916],[-55,-100]],[[66287,80767],[127,146]],[[74463,65189],[299,-9]],[[47409,62622],[174,16]],[[71908,47449],[-113,101],[-511,51],[-226,-60],[-243,-257]],[[87849,41170],[5,14]],[[63862,35835],[-375,69],[9,163],[-918,86]],[[52335,11718],[0,-30]],[[85087,27688],[-91,334]],[[76219,64993],[278,-392]],[[76535,44043],[56,20]],[[41149,16652],[-22,21]],[[80453,91072],[-2,3]],[[79398,59281],[5,-6]],[[90052,34334],[-25,-476]],[[87214,51770],[26,441]],[[84315,93013],[136,386]],[[86559,52963],[20,-26]],[[84577,58066],[26,56]],[[62697,84626],[6,-1]],[[90018,33392],[-80,-621]],[[88735,38587],[-144,175]],[[73045,32387],[-19,-234],[-202,44],[-72,-607],[-168,-184],[-386,99],[-4,251]],[[63924,36580],[0,4]],[[94553,20387],[-415,1277]],[[60751,66993],[-408,20]],[[84877,44327],[72,76]],[[85997,62660],[0,1]],[[71668,72311],[563,432]],[[63959,31451],[-509,48],[-30,-651],[131,-574],[-57,-833]],[[64687,39856],[-17,-407],[589,-95],[-29,-455]],[[83392,57182],[27,102]],[[58332,48041],[-2,-1]],[[79423,91968],[-53,15]],[[79370,91983],[-59,9]],[[63706,70948],[1,25]],[[80120,29539],[1,1]],[[81129,44371],[242,-55]],[[83734,57306],[-60,-89]],[[85779,62746],[51,-12]],[[79095,91002],[130,-31],[127,-400]],[[65166,38908],[1,0]],[[84643,35302],[-64,5]],[[79890,29034],[-30,-64]],[[86094,62698],[-127,-196]],[[66201,53778],[328,451],[515,192]],[[86166,42898],[12,13]],[[89418,36298],[-179,577]],[[86166,42898],[-27,-103]],[[74262,66832],[-94,-124]],[[81691,61183],[340,166]],[[62470,58711],[-5,2]],[[84737,36120],[254,-451]],[[92151,31354],[-233,-1]],[[91918,31353],[-240,24]],[[91678,31377],[11,160]],[[82980,56509],[-527,331],[-109,165],[-575,157],[-162,143]],[[41320,17490],[-25,14]],[[86006,45953],[187,-557]],[[86714,45728],[-4,11]],[[72097,69619],[6,-38]],[[58332,48039],[-2,1]],[[77477,37568],[-2,1]],[[64677,27486],[-373,-44],[-627,53],[-205,-427],[-172,240],[-39,274]],[[51799,48530],[64,-13],[35,-728]],[[49062,28324],[0,3]],[[78647,90047],[112,106]],[[77477,37568],[15,-111]],[[56204,39101],[-877,-1],[-458,-226],[-358,57]],[[60382,75637],[-46,838],[-155,263]],[[71986,64482],[-23,-22]],[[84318,97152],[54,-242]],[[87812,52073],[-93,63]],[[64493,33423],[-5,2]],[[68284,43677],[201,3]],[[80232,72011],[-11,16]],[[71892,29047],[-52,18]],[[79518,84571],[9,275]],[[60549,83874],[-14,-21]],[[89603,35352],[0,4]],[[85217,49513],[-85,-299]],[[81107,87131],[-4,391]],[[89703,35358],[-100,-2]],[[83999,92588],[-99,-456]],[[73561,69015],[7,30]],[[75829,62696],[-177,-173]],[[78236,40153],[-146,-272]],[[80281,80142],[83,-1]],[[80364,80141],[3,0]],[[74318,65943],[-111,408]],[[93277,25125],[307,-332],[130,167],[403,-180]],[[71495,46676],[-421,267],[-161,215]],[[68305,59790],[197,-403],[38,-264]],[[60684,82661],[0,-1029]],[[80152,61421],[-42,-331]],[[50569,61379],[-445,278],[-32,-187]],[[69815,74387],[-37,59]],[[84392,95817],[82,-542]],[[85893,62906],[6,-107]],[[85899,62799],[86,7]],[[73251,67161],[-32,9]],[[82002,69376],[199,143],[73,444]],[[90064,38965],[6,-4]],[[60703,49398],[382,320]],[[79280,89836],[66,422]],[[64783,38147],[21,84]],[[58070,82665],[-188,-583],[-96,-25]],[[86962,50491],[-46,-89]],[[62371,84421],[-1,-55]],[[72459,64738],[16,12]],[[84284,97343],[34,-191]],[[81429,63458],[4,-5]],[[47409,62622],[174,16]],[[76668,71996],[-120,127]],[[74661,67484],[-391,-136]],[[89603,35356],[-170,-110]],[[76279,46551],[-317,213]],[[72895,69013],[556,-458]],[[76081,37080],[186,-58]],[[81017,87971],[3,-3]],[[51494,31166],[5,-5]],[[88002,38056],[173,-158]],[[73818,67082],[80,-76]],[[87497,38532],[-148,-250]],[[87937,38565],[185,349]],[[71604,64483],[0,-1]],[[52224,49825],[-316,295],[-15,282]],[[93271,28772],[2,-3]],[[82031,61349],[-93,182],[47,386],[-41,487]],[[83980,57478],[8,-6]],[[41817,18336],[193,9],[41,221],[398,361],[341,518],[749,886],[378,517]],[[80041,72358],[4,10]],[[69981,50195],[-44,-751]],[[52336,11718],[-1,-30]],[[79470,60885],[3,-668]],[[83633,49681],[0,3]],[[87318,52483],[185,-294],[216,-53]],[[72866,67128],[75,115]],[[83115,58286],[-111,534]],[[84749,94876],[-280,-139]],[[67328,43068],[-1183,1554],[-296,157]],[[40724,17801],[11,-5]],[[78170,40974],[-221,-414],[-338,-422],[-874,-875]],[[49335,36447],[-314,284],[-10,284],[-446,-5],[-5,227],[-643,-11]],[[47917,37226],[-296,-7],[-62,171]],[[47559,37390],[-3,20]],[[79086,89430],[89,-102],[105,508]],[[85136,50001],[96,345]],[[66612,79970],[-39,42]],[[72239,35857],[393,-61]],[[76324,69984],[433,189],[252,224],[528,150]],[[84891,95607],[-25,98]],[[82097,36100],[949,724]],[[78414,61605],[-471,424],[-134,1]],[[79695,42708],[-53,-25]],[[72475,64750],[-2,-9]],[[47668,39985],[33,-12],[-14,1533],[329,9],[116,803],[371,28]],[[73965,66884],[-87,-151]],[[85053,44814],[18,-238]],[[78302,85914],[567,-148]],[[81886,39341],[3,-3]],[[78492,59011],[261,403],[556,591],[24,-54]],[[84790,44270],[-137,176]],[[74631,77110],[-44,85]],[[73854,68347],[-125,-227]],[[83286,58074],[-109,508],[73,375]],[[51095,43542],[7,11]],[[62578,36153],[-5,-5]],[[87439,51150],[-81,-185]],[[85883,64069],[8,-14]],[[75701,76537],[296,-306],[439,-90]],[[85625,43028],[-94,-46]],[[73225,65737],[153,576]],[[85784,46340],[-23,8]],[[55446,83159],[6,319],[232,317]],[[78224,68652],[106,152]],[[93511,28467],[-247,306]],[[89050,35344],[-148,-152],[-251,203],[-362,72],[-390,-142]],[[83750,90839],[369,2]],[[60262,83523],[-74,-263]],[[81363,83419],[43,195]],[[90052,34334],[-25,-476]],[[69280,70735],[144,48],[365,-206],[466,-75],[461,-406],[552,-203],[630,-394]],[[48989,42314],[135,-34],[361,-568],[19,-651],[124,-38]],[[86211,39642],[158,-176],[50,-343],[-139,-136]],[[87909,34637],[-53,93]],[[72866,34130],[-20,13]],[[86292,54318],[-387,-169]],[[83386,49066],[-9,8]],[[85769,53785],[-298,276]],[[49866,51765],[1,9]],[[83666,56999],[-134,-275]],[[80043,60247],[-298,-208]],[[48947,55303],[-32,195]],[[88918,37905],[40,-132]],[[85071,44576],[2,-126]],[[89108,35190],[-58,154]],[[80600,90152],[306,-382],[-29,-292]],[[84358,35490],[285,-188]],[[84643,35302],[-17,58]],[[48915,55498],[272,116]],[[50771,52475],[-189,93]],[[52562,52126],[-170,55],[-1078,11],[-543,283]],[[80775,29932],[-336,20]],[[67315,35063],[25,12]],[[60372,85871],[-91,1]],[[62317,84529],[-20,-4]],[[62354,84595],[0,-4]],[[62393,84547],[-38,49]],[[62359,84606],[65,-53]],[[62359,84606],[-4,-10]],[[62297,84525],[-24,-66]],[[62355,84596],[-3,-1]],[[62331,84630],[28,-24]],[[62543,84437],[6,20]],[[62537,84380],[1,13]],[[67340,35075],[-25,967],[-181,412],[-176,30]],[[62424,84550],[119,-113]],[[62543,84437],[0,-5]],[[67298,35588],[42,-513]],[[67340,35075],[-25,-12]],[[79404,90209],[-58,49]],[[81074,94389],[21,-125]],[[78647,90047],[-24,-22]],[[79671,84979],[-8,-10]],[[80556,94526],[209,-283]],[[81180,94871],[1,-1]],[[81112,94378],[-38,11]],[[81118,94479],[-44,-90]],[[81141,87173],[-17,117]],[[81301,85551],[44,-24]],[[81301,85552],[44,-25]],[[53372,37275],[28,741],[392,-14],[-6,298],[158,712]],[[63776,79234],[331,-251],[17,-403],[125,-264],[-24,-744]],[[66493,50227],[101,-4],[400,-1181],[9,-410],[205,-346],[227,-776],[-20,-320],[392,-817],[-1,-153],[303,-272],[303,-588]],[[68714,44825],[89,-60]],[[72570,35400],[-105,-453]],[[72464,34949],[111,454]],[[72575,35403],[-5,-3]],[[72569,35400],[1,0]],[[73970,31995],[-67,-29],[-872,259],[14,162]],[[83419,57284],[-3,1]],[[93627,26124],[-23,-147],[-425,-589],[98,-263]],[[89580,36135],[-20,-40]],[[79535,64207],[58,-323],[231,-424],[-86,-547]],[[81142,63652],[-221,-625],[-203,-395]],[[79738,62913],[157,-93],[238,145],[334,-68],[251,-265]],[[83024,91550],[510,-125]],[[83534,91425],[112,-217]],[[83419,89992],[202,311],[26,277]],[[83412,89878],[7,114]],[[68197,81851],[-292,-206],[-146,45]],[[68197,81851],[-189,-189]],[[68295,81854],[-98,-3]],[[68228,81857],[-31,-6]],[[79806,64815],[401,-402],[223,-121]],[[79806,64815],[-61,122],[-531,-418]],[[79083,64839],[107,-291]],[[79083,64839],[-8,-112]],[[79083,64839],[247,-210],[415,311],[-35,113]],[[51894,69348],[284,286],[430,812],[35,546],[346,-50],[683,332]],[[79803,65801],[20,-341]],[[79803,65801],[-51,-315],[-262,-113],[-82,-281],[-259,-168],[41,-376]],[[84551,44051],[36,-5]],[[84518,44157],[1,-7]],[[84599,44157],[-80,-7]],[[84512,44104],[7,46]],[[84535,44165],[-16,-15]],[[84587,44046],[12,111]],[[87346,50929],[12,36]],[[87157,50714],[135,-250]],[[87014,50544],[-224,-247]],[[86877,50808],[137,-264]],[[87014,50544],[196,110]],[[87014,50544],[-52,-53]],[[87157,50714],[-143,-170]],[[87250,50727],[96,202]],[[87195,50230],[105,42]],[[87346,50929],[-21,-189],[-311,-196]],[[61822,75685],[34,-10]],[[62668,44711],[548,-1772]],[[62577,45025],[91,-314]],[[83683,57281],[6,-2]],[[83736,56829],[63,17]],[[82463,66172],[20,-712]],[[52772,29906],[-703,665]],[[52069,30571],[-54,57]],[[39826,18256],[379,-101],[1597,144]],[[38697,18135],[1129,121]],[[37042,20562],[27,-95],[677,-169],[168,-695],[120,14],[136,-295],[-44,-546]],[[81044,65059],[-304,-956]],[[83167,65778],[199,-82],[459,-490],[5,-393],[398,-190]],[[54546,55452],[-261,513],[-256,220],[-846,-1]],[[84226,65220],[2,-597]],[[84226,65220],[-3,-223]],[[83839,65582],[198,-175]],[[83487,67230],[-158,-130],[-481,508],[-345,86],[-233,227]],[[83487,67230],[-303,471],[-241,620],[-313,457]],[[83487,67230],[-113,-8],[-196,-836],[-11,-608]],[[83643,66580],[-197,390],[41,260]],[[83643,66580],[63,-656],[133,-342]],[[62687,84689],[7,0]],[[62694,84689],[-6,-35]],[[83411,60650],[-2,0]],[[83170,60924],[241,-274]],[[73327,67880],[0,1]],[[73334,67886],[-7,-5]],[[73334,67886],[-7,-6]],[[73329,67844],[-2,36]],[[83699,62135],[-160,517],[-482,591]],[[83699,62135],[212,211],[577,57],[775,313],[366,1109],[246,185]],[[83435,59938],[-103,89]],[[83172,60924],[368,-300]],[[82079,61575],[372,-66],[467,-347],[209,-386],[43,148]],[[83359,60099],[11,-1]],[[84695,61240],[174,228],[179,512]],[[85875,64010],[-68,-633],[118,-161]],[[82842,90032],[-95,-90],[-176,-564],[-117,-900],[2,-404],[-146,-623]],[[82310,87451],[-21,-224]],[[82289,87227],[20,226]],[[82309,87453],[146,621],[-2,404],[117,900],[177,566],[95,88]],[[64269,39007],[0,-10]],[[75701,76537],[-255,204],[-938,158]],[[74587,77195],[-79,-296]],[[59683,81866],[-54,-301]],[[89737,35344],[-31,8]],[[87010,60225],[-188,370],[-173,-84]],[[87064,60034],[-54,191]],[[87010,60225],[2,0]],[[87509,59659],[-193,-99],[-252,474]],[[85324,46780],[-1,2]],[[49165,26545],[-835,-20],[-142,-121]],[[75320,49910],[0,-2]],[[75314,49946],[6,-36]],[[75314,49946],[7,-43]],[[49335,36447],[-22,17]],[[84315,43038],[44,-150]],[[84359,42888],[7,-4]],[[84315,43038],[6,7]],[[84321,43045],[162,225]],[[79595,81246],[1,-1]],[[85236,58985],[46,-111]],[[77061,76017],[-2,-573],[197,-216]],[[60498,61880],[-410,97],[-69,175],[-519,154],[-512,36]],[[58234,29736],[-22,-460],[-378,89],[-539,-542],[-185,-355],[-303,427],[-746,142],[-254,-195]],[[89382,36087],[178,8]],[[46199,67561],[1216,773],[91,224]],[[69903,43613],[434,1337],[276,1484],[78,596],[129,260]],[[62703,84165],[-165,228]],[[85282,58874],[497,140],[184,-101]],[[59853,71473],[187,216],[691,1024],[264,540],[443,1707]],[[49187,55614],[851,308],[1494,6],[153,336]],[[83380,56287],[-335,-908],[-117,-39]],[[68249,37225],[106,-688],[-66,-1419]],[[80946,72239],[-201,-99],[-61,-633],[-130,-277]],[[83172,60924],[-630,548],[-463,103]],[[80704,39224],[440,-724],[173,-423],[423,-737],[84,-327],[272,-402],[388,-908],[496,-535],[328,-162],[513,-1241],[215,-763]],[[62538,84393],[5,39]],[[64922,46416],[-294,-182],[-706,122],[-33,-169],[-273,-140],[-305,47],[-90,-126]],[[85057,58570],[225,304]],[[89560,36095],[19,-98]],[[87292,50464],[8,-192]],[[80548,71232],[6,-2]],[[80554,71230],[-36,-345],[168,-489]],[[83170,60924],[2,0]],[[82842,90032],[60,271],[247,-49],[281,231],[88,546],[104,1075],[-58,24]],[[83750,90839],[-281,32],[-39,-388],[-281,-231],[-246,50],[-61,-270]],[[77256,75228],[345,-436]],[[69672,42920],[231,693]],[[69903,43613],[314,-101]],[[38619,23247],[3,0]],[[38619,23247],[-13,300],[146,310],[-46,1093],[-54,287]],[[57871,68138],[-244,49],[-4,-706],[56,-88]],[[57871,68138],[-4,-2]],[[47814,58180],[-106,-89]],[[47939,59641],[31,-492],[-142,-348],[-14,-621]],[[44605,61570],[180,336],[412,42],[158,139],[663,154],[297,7],[160,199]],[[46475,62447],[33,-2377]],[[48431,68072],[-167,103],[-613,122],[-145,261]],[[48431,68072],[265,-159],[425,-598],[333,-326],[576,-203],[114,-201]],[[42758,63366],[-255,-13],[-7,228],[-213,25]],[[42283,63606],[227,-535]],[[44605,61570],[180,336],[412,42],[158,139],[663,154],[297,7],[160,199]],[[46759,62817],[-284,-370]],[[46466,63303],[9,-856]],[[46466,63303],[9,-856]],[[45256,56221],[-558,-211],[-984,-934],[-98,110],[-725,-40],[-327,244]],[[45256,56221],[-558,-211],[-984,-934],[-98,110],[-725,-39],[-327,243]],[[45256,56221],[7,-72],[819,2],[709,-437],[13,-1092]],[[45256,56221],[7,-71],[819,1],[709,-437],[13,-1092]],[[46771,56124],[28,-1510],[293,-303]],[[46804,54622],[288,-311]],[[46804,54622],[288,-311]],[[46804,54622],[-457,2],[1,381],[-236,105],[-1057,-54]],[[46760,57956],[11,-1832]],[[46771,56124],[-661,-31],[-210,-169]],[[45900,55924],[-381,11]],[[52524,50407],[-761,-21],[-253,-109],[-437,30],[-313,-106]],[[84323,96820],[41,-10]],[[84364,96810],[66,-38]],[[60966,50619],[-45,135],[342,348]],[[61263,51102],[142,-58]],[[84474,96860],[-44,-88]],[[84430,96772],[34,-9]],[[83414,60253],[-17,14]],[[83395,60303],[2,-36]],[[89402,54615],[-81,-213]],[[84780,57026],[-13,-73]],[[84767,56953],[-275,110]],[[82689,54842],[6,-6]],[[82682,54845],[7,-3]],[[82721,54841],[3,-4]],[[62709,81310],[-330,-325],[-21,-498],[-834,-1282],[-455,-652]],[[81077,68417],[-548,-1066]],[[80333,71951],[198,52]],[[81263,65378],[7,-39]],[[81270,65339],[14,-5]],[[64687,75653],[101,-21],[59,-509]],[[61069,78553],[47,-475],[400,-2605],[88,-66]],[[61781,65039],[172,269]],[[81447,61192],[-2,1]],[[81447,61194],[-2,-1]],[[79041,57055],[-20,-828],[-133,-683],[175,-953],[113,-382]],[[86891,55383],[-59,-3]],[[86887,55174],[160,285]],[[86832,55380],[-146,633],[59,172]],[[86887,55174],[-55,206]],[[63626,21898],[33,-175],[486,-390],[214,-541]],[[86745,56185],[-60,-171],[165,-709],[-30,-302],[-227,-453]],[[86593,54550],[294,624]],[[68669,44208],[45,617]],[[86059,39926],[119,-127]],[[86178,39799],[2,11]],[[84492,57063],[-161,146]],[[78155,58418],[-6,50]],[[78492,59011],[-168,-164],[-169,-429]],[[79041,57055],[140,870],[111,1521],[215,504]],[[87601,54997],[35,538]],[[78020,61098],[141,-317],[237,-246],[322,-93],[787,-492]],[[83405,60154],[63,-102]],[[83170,60924],[212,-429],[-23,-396]],[[83359,60099],[-27,-72]],[[83405,60154],[-73,-127]],[[83761,60075],[-181,-112]],[[83334,59297],[58,492]],[[83392,59789],[43,149]],[[83392,59789],[0,1]],[[88388,53229],[45,192]],[[90026,56155],[46,867]],[[83397,60267],[8,-113]],[[83540,60624],[83,-195]],[[83623,60429],[-157,327],[-723,578],[-292,176],[-279,-228]],[[89573,54902],[-91,-196]],[[89482,54706],[-80,-91]],[[89754,55327],[147,289],[125,539]],[[89573,54902],[181,425]],[[85142,56795],[-375,158]],[[83909,57362],[77,-89]],[[83841,57362],[68,0]],[[83909,57362],[0,-1]],[[84036,33002],[303,-933],[-46,-338]],[[84293,31731],[-5,3]],[[86893,53991],[169,22]],[[85057,58570],[-54,-217],[-400,-231]],[[85963,58913],[285,-151],[79,-527]],[[80005,65727],[-137,-28]],[[89745,35339],[-8,5]],[[89233,36578],[6,297]],[[88277,38051],[-1,-1]],[[88591,38453],[-7,10]],[[76196,59868],[31,-574],[139,-295],[259,-273]],[[83082,48395],[69,46]],[[86410,61358],[-53,-200],[180,-467]],[[86254,62109],[156,-750]],[[86410,61359],[0,-1]],[[86410,61359],[3,0]],[[86410,61358],[3,1]],[[79704,81065],[-1,-4]],[[86851,59691],[-30,238],[-237,470]],[[86584,60399],[58,85]],[[88191,53788],[242,-367]],[[87601,54994],[188,-703]],[[82689,54842],[33,-9]],[[82920,55300],[8,40]],[[82928,55340],[-246,-495]],[[84001,55149],[-140,-146],[-776,-249]],[[86395,58142],[138,-606]],[[82682,54845],[39,-4]],[[82721,54841],[1,-8]],[[86533,57536],[-27,-313],[-157,-55]],[[86533,57536],[-1,0]],[[68289,35118],[-13,-455],[252,-262]],[[79507,59950],[225,-275],[326,-1072]],[[63676,28106],[439,-40]],[[63261,27582],[-74,-928],[229,-74],[-175,-720],[203,-154]],[[62387,34739],[-114,181]],[[76378,60510],[-196,897]],[[76182,61407],[196,-897]],[[82073,61584],[-458,143],[-665,-131],[-440,191],[-578,79],[-490,-268],[-116,82]],[[79326,61680],[3,9]],[[83666,56999],[28,167]],[[83694,57166],[2,-1]],[[83694,57166],[40,140]],[[45384,66845],[518,552],[297,164]],[[43436,60010],[-104,476]],[[83530,58228],[-244,-154]],[[84181,57209],[66,-460],[436,-994],[314,-1161],[353,-2042],[223,-1013]],[[78003,68177],[-208,-16]],[[53359,36230],[13,1045]],[[87749,40100],[33,-120]],[[84603,58122],[454,448]],[[85117,59315],[-60,-745]],[[76625,58726],[-76,-773],[-307,-883],[-655,-619],[112,-247]],[[76625,58726],[-76,-773],[-307,-883],[-655,-619],[112,-247]],[[38126,18776],[38,-716]],[[53183,56184],[-524,-49]],[[85925,63216],[5,-4]],[[85925,63216],[0,-1]],[[59667,82017],[16,-151]],[[78616,66357],[7,595],[-117,580]],[[63148,45171],[-53,-458]],[[63095,44713],[34,-25]],[[82173,68700],[8,386],[-179,290]],[[78658,61221],[-244,384]],[[81073,68957],[-366,2],[-619,-667],[52,-295]],[[81168,65390],[102,-51]],[[81429,63458],[336,-86],[271,-433]],[[81455,63515],[-26,-57]],[[82292,64025],[9,-101],[-731,-44],[-174,-174],[33,-248]],[[82957,63433],[93,432]],[[82002,69376],[-110,-72],[-143,316],[-161,19],[-180,281],[-237,-43],[-431,593],[-54,-74]],[[81284,65334],[126,-1021]],[[81410,64313],[102,-331],[-83,-524]],[[81410,64313],[-5,6]],[[82042,68861],[-397,-240],[-552,-126],[-16,-78]],[[82042,68861],[-397,-239],[-552,-127],[-16,-78]],[[81077,68417],[-78,-153],[-126,-747],[-38,-689],[-77,-349],[7,-482]],[[81077,68417],[-4,540]],[[80140,67997],[285,-183],[167,-326],[-63,-137]],[[81219,67328],[-142,1089]],[[81077,68417],[-551,-1068]],[[80765,65997],[-13,316],[-210,508],[-13,530]],[[79214,64519],[-240,-352],[118,-401],[51,-1051],[186,-1026]],[[82292,64025],[-161,217]],[[82292,64025],[274,-448],[391,-144]],[[86282,40335],[0,1]],[[80531,72003],[116,-594],[-122,-537],[203,-365]],[[80529,72002],[1,-2]],[[80531,72003],[-2,-1]],[[80529,72002],[-1,7]],[[80728,70507],[-204,365],[122,537],[-117,605],[-196,-63]],[[86178,39799],[191,-333],[50,-343],[-139,-136]],[[84181,63167],[-101,164],[-360,101],[-670,433]],[[82525,62070],[191,-336]],[[82525,62070],[-203,414]],[[83094,63887],[-272,-246],[-418,-1065],[-65,-38]],[[78573,64852],[163,-75],[235,-605],[219,376]],[[75925,63317],[-465,583],[-350,1046],[-227,113],[-307,342],[-78,321],[-180,221]],[[75347,61561],[438,684],[54,432]],[[75839,62677],[-54,-432],[-438,-684]],[[80765,65997],[-738,-120],[-22,-150]],[[81187,65543],[144,20]],[[81961,67513],[26,-210],[203,-164],[59,-448],[223,-35],[-9,-484]],[[82463,66172],[-27,21]],[[81961,67513],[26,-210],[203,-164],[59,-448],[222,-36],[-8,-483]],[[83167,65778],[-704,394]],[[79329,61689],[136,-733],[42,-1006]],[[54610,24990],[-45,-267],[-270,-10]],[[54295,24713],[0,0]],[[54295,24713],[-115,-6]],[[79399,61456],[71,-571]],[[79399,61456],[71,-571]],[[75925,63317],[586,218],[437,95],[493,-104],[148,-157],[794,-557],[512,-492],[434,-631]],[[71471,62498],[209,-365],[359,-51]],[[72039,62082],[-76,-36],[162,-549],[-164,-574]],[[67590,61383],[411,48],[954,331],[174,717],[307,-52]],[[71961,60923],[59,-163],[642,-442],[290,-86],[250,-224],[250,-30],[-106,-430],[-225,-344],[30,-204],[268,-559],[277,63]],[[62188,63212],[299,106],[-151,714]],[[62336,64032],[488,-588],[529,-982]],[[65635,60273],[217,-461],[109,-794],[225,-280]],[[64359,20792],[70,-861],[-99,-158],[-24,-955],[109,-67]],[[93807,29875],[-284,-1046]],[[93807,29875],[-284,-1046]],[[54865,25097],[-254,89]],[[53588,24429],[123,136],[353,-126],[231,274]],[[54295,24713],[312,44],[3,233]],[[53588,24429],[123,135],[353,-126],[231,275]],[[54295,24713],[312,43],[3,234]],[[54050,27624],[132,-301],[6,-566]],[[54188,26757],[245,-57]],[[86059,39926],[121,-116]],[[86282,40335],[62,167]],[[87049,39414],[-133,306],[-144,635],[-428,147]],[[87049,39414],[300,-94]],[[87049,39414],[291,-93]],[[86180,39810],[31,-168]],[[87344,39319],[5,1]],[[87340,39321],[9,-1]],[[55801,30501],[4,-919]],[[87602,40687],[-168,-32],[76,-293],[239,-262]],[[50980,20657],[-96,115]],[[88107,42151],[-45,76]],[[41431,16322],[152,209],[334,197],[387,101],[100,334],[133,19],[768,685],[438,329],[90,168],[249,17],[61,269],[1191,820],[398,225],[706,614],[352,446],[803,105],[163,457],[364,207],[380,29],[234,653],[396,129],[614,1],[285,220],[441,714],[407,-29],[314,-174],[413,-6],[108,309],[22,453],[299,-2],[40,764],[93,214],[407,416],[488,95],[437,-24],[255,170]],[[53901,17054],[-209,-244],[-328,21],[-1113,-181]],[[54607,16127],[300,-43]],[[54225,16598],[94,-394],[288,-77]],[[54607,16127],[7,412]],[[50109,26531],[458,-9],[194,110]],[[50109,26531],[-944,14]],[[50761,26632],[-194,-110],[-458,9]],[[48188,26404],[143,121],[1778,6]],[[53459,29043],[125,-195],[326,-887]],[[53910,27961],[140,-337]],[[50482,31011],[-7,288],[-925,15],[-145,103],[-525,27]],[[55805,29582],[2,-740]],[[50884,20772],[-581,2]],[[50303,20774],[-379,42]],[[55267,24016],[-11,-819]],[[55256,23197],[0,-1]],[[55256,23196],[-38,-1119],[-105,-201],[25,-746],[-25,-1488],[-106,-1473],[82,-420]],[[55089,17749],[46,-285],[232,-550]],[[55367,16914],[118,-335]],[[74174,42033],[578,59],[1656,304],[70,225],[215,-2],[186,-174],[666,121],[419,189],[87,-71]],[[78051,42684],[-132,-366],[-19,-985],[-168,-689],[-367,-500],[-449,-435],[-314,-182]],[[77976,41949],[44,705]],[[77976,41949],[44,705]],[[78170,40974],[-211,757],[17,218]],[[73793,44788],[-137,1126],[-359,1219],[-43,794],[-121,670]],[[71802,37088],[-237,183]],[[75519,46294],[443,470]],[[71802,37088],[-10,-468],[207,-53]],[[71826,37584],[-34,-964],[207,-53]],[[72666,37411],[-840,173]],[[72339,37484],[-523,102],[-14,-498]],[[72666,37411],[-327,73]],[[73073,41867],[135,1162],[153,415],[650,1124],[648,619],[860,1107]],[[75613,48697],[-374,-296],[-339,-62],[-27,161]],[[75983,38500],[-51,-551],[-340,14]],[[75592,37963],[-153,19],[-260,-395]],[[76308,46600],[65,-57],[-50,-589],[27,-469],[101,-351],[45,-860]],[[76535,44043],[-83,1092],[-90,273],[-39,546],[51,589],[-66,57]],[[71842,43677],[-296,78]],[[76591,44063],[552,-183],[831,-992],[51,-233]],[[76535,44043],[181,13],[427,-176],[831,-992],[51,-233]],[[75734,42206],[323,322],[148,519],[41,596],[289,400]],[[78458,39377],[-515,-152],[-184,-342],[-406,-425],[-355,-243],[-208,-348]],[[77492,37457],[-37,168],[-436,222],[-195,14],[-38,-538],[-509,-61]],[[76790,37867],[229,-19],[436,-223],[40,302],[276,318],[116,284],[193,147],[184,453],[194,248]],[[73988,45397],[-169,-818],[134,-943],[244,-176]],[[74284,46826],[-808,1147]],[[74873,48500],[-118,-170],[-301,203],[-686,204],[-66,-277],[-135,11],[-176,459],[-429,-46],[-614,180],[-1167,83],[-704,199],[-243,-59],[-298,-228],[-99,-230]],[[74873,48500],[-131,-624],[-336,-652],[-127,-399]],[[71838,46084],[51,114]],[[79495,38424],[210,-55],[248,196],[428,188]],[[85062,32881],[404,101]],[[85466,32982],[317,62]],[[87937,36688],[-290,414]],[[84402,33678],[608,-728]],[[85010,32950],[52,-69]],[[81889,39338],[-170,212],[-464,-31]],[[87335,38277],[162,255]],[[87349,38282],[-14,-5]],[[87439,39527],[188,85]],[[87349,39320],[90,207]],[[88021,39393],[142,-204]],[[88021,39393],[-1,-1]],[[88003,39523],[18,-130]],[[87841,39352],[-214,260]],[[87850,39762],[-2,-9]],[[78816,35754],[-735,-1394],[-103,-52]],[[86737,33421],[536,-129]],[[87375,37338],[264,-287],[8,-466]],[[87085,37059],[143,230]],[[87217,36920],[-132,139]],[[86650,33394],[-277,578]],[[86373,33972],[2,4]],[[86393,34354],[-18,-378]],[[86393,34354],[-18,-378]],[[86138,34509],[229,-534]],[[86367,33975],[-229,534]],[[86373,33972],[-6,3]],[[87273,33292],[236,-75],[18,350]],[[86650,33394],[859,-177],[21,410],[378,1006],[741,87]],[[87527,33567],[382,1070]],[[79891,40857],[-88,1302],[-165,3]],[[79872,40689],[19,168]],[[73091,67513],[-41,-50]],[[73091,67513],[2,2]],[[86851,59691],[-1,-2]],[[86921,59271],[-70,420]],[[89702,35356],[4,-4]],[[89460,35550],[242,-194]],[[89382,36087],[-149,491]],[[88270,37730],[6,320]],[[88584,38463],[-111,198]],[[88276,38050],[-13,37]],[[79840,90297],[-181,-29]],[[78084,69805],[-547,742]],[[79843,90316],[-3,-19]],[[78198,69576],[-114,229]],[[71955,64465],[-38,44]],[[71917,64509],[-22,748]],[[71917,64509],[-2,0]],[[86327,58235],[68,-93]],[[86395,58142],[-1,-2]],[[79703,81061],[-308,-354],[12,-236]],[[37485,29084],[235,30],[182,-204],[183,2]],[[79473,60217],[-426,319],[-389,685]],[[55576,84282],[-9,-127]],[[55376,83820],[-633,77]],[[55567,84155],[-108,-76]],[[55459,84079],[-83,-259]],[[55671,83798],[-295,22]],[[68514,46107],[-48,-89]],[[89900,23554],[-201,-567],[-94,-698],[-172,-514]],[[38620,23241],[2,6]],[[38620,23241],[-1,6]]]} +{"type":"Topology","bbox":[32.7348757108162,10.5201803725231,963.4905374023898,590.663576099949],"transform":{"scale":[0.00930764969341267,0.0058014919721939805],"translate":[32.7348757108162,10.5201803725231]},"objects":{"overlay":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0],"id":2,"properties":{"V":230}},{"type":"LineString","arcs":[1],"id":101,"properties":{"V":500}},{"type":"LineString","arcs":[2],"id":102,"properties":{"V":500}},{"type":"LineString","arcs":[3],"id":103,"properties":{"V":500}},{"type":"LineString","arcs":[4],"id":104,"properties":{"V":500}},{"type":"LineString","arcs":[5],"id":105,"properties":{"V":500}},{"type":"LineString","arcs":[6],"id":106,"properties":{"V":500}},{"type":"LineString","arcs":[7],"id":107,"properties":{"V":500}},{"type":"LineString","arcs":[8],"id":108,"properties":{"V":500}},{"type":"LineString","arcs":[9],"id":109,"properties":{"V":500}},{"type":"LineString","arcs":[10],"id":110,"properties":{"V":500}},{"type":"LineString","arcs":[11],"id":111,"properties":{"V":500}},{"type":"LineString","arcs":[12],"id":112,"properties":{"V":500}},{"type":"LineString","arcs":[13],"id":113,"properties":{"V":500}},{"type":"LineString","arcs":[14],"id":114,"properties":{"V":500}},{"type":"LineString","arcs":[15],"id":115,"properties":{"V":500}},{"type":"LineString","arcs":[16],"id":116,"properties":{"V":500}},{"type":"LineString","arcs":[17],"id":117,"properties":{"V":500}},{"type":"LineString","arcs":[18],"id":118,"properties":{"V":500}},{"type":"LineString","arcs":[19],"id":119,"properties":{"V":500}},{"type":"LineString","arcs":[20],"id":120,"properties":{"V":500}},{"type":"LineString","arcs":[21],"id":121,"properties":{"V":500}},{"type":"LineString","arcs":[22],"id":122,"properties":{"V":500}},{"type":"LineString","arcs":[23],"id":123,"properties":{"V":500}},{"type":"LineString","arcs":[24],"id":124,"properties":{"V":500}},{"type":"LineString","arcs":[25],"id":125,"properties":{"V":500}},{"type":"LineString","arcs":[26],"id":126,"properties":{"V":500}},{"type":"LineString","arcs":[27],"id":127,"properties":{"V":500}},{"type":"LineString","arcs":[28],"id":128,"properties":{"V":500}},{"type":"LineString","arcs":[29],"id":129,"properties":{"V":500}},{"type":"LineString","arcs":[30],"id":130,"properties":{"V":500}},{"type":"LineString","arcs":[31],"id":131,"properties":{"V":500}},{"type":"LineString","arcs":[32],"id":132,"properties":{"V":500}},{"type":"LineString","arcs":[33],"id":133,"properties":{"V":500}},{"type":"LineString","arcs":[34],"id":134,"properties":{"V":500}},{"type":"LineString","arcs":[35],"id":135,"properties":{"V":500}},{"type":"LineString","arcs":[36],"id":136,"properties":{"V":500}},{"type":"LineString","arcs":[37],"id":137,"properties":{"V":500}},{"type":"LineString","arcs":[38],"id":138,"properties":{"V":500}},{"type":"LineString","arcs":[39],"id":139,"properties":{"V":500}},{"type":"LineString","arcs":[40],"id":140,"properties":{"V":500}},{"type":"LineString","arcs":[41],"id":141,"properties":{"V":500}},{"type":"LineString","arcs":[42],"id":142,"properties":{"V":500}},{"type":"LineString","arcs":[43],"id":143,"properties":{"V":500}},{"type":"LineString","arcs":[44],"id":144,"properties":{"V":500}},{"type":"LineString","arcs":[45],"id":145,"properties":{"V":500}},{"type":"LineString","arcs":[46],"id":146,"properties":{"V":500}},{"type":"LineString","arcs":[47],"id":147,"properties":{"V":500}},{"type":"LineString","arcs":[48],"id":148,"properties":{"V":500}},{"type":"LineString","arcs":[49],"id":149,"properties":{"V":500}},{"type":"LineString","arcs":[50],"id":150,"properties":{"V":500}},{"type":"LineString","arcs":[51],"id":151,"properties":{"V":500}},{"type":"LineString","arcs":[52],"id":152,"properties":{"V":500}},{"type":"LineString","arcs":[53],"id":153,"properties":{"V":500}},{"type":"LineString","arcs":[54],"id":154,"properties":{"V":500}},{"type":"LineString","arcs":[55],"id":155,"properties":{"V":500}},{"type":"LineString","arcs":[56],"id":156,"properties":{"V":500}},{"type":"LineString","arcs":[57],"id":157,"properties":{"V":500}},{"type":"LineString","arcs":[58],"id":158,"properties":{"V":500}},{"type":"LineString","arcs":[59],"id":159,"properties":{"V":500}},{"type":"LineString","arcs":[60],"id":160,"properties":{"V":500}},{"type":"LineString","arcs":[61],"id":161,"properties":{"V":500}},{"type":"LineString","arcs":[62],"id":162,"properties":{"V":500}},{"type":"LineString","arcs":[63],"id":163,"properties":{"V":500}},{"type":"LineString","arcs":[64,65],"id":164,"properties":{"V":500}},{"type":"LineString","arcs":[66],"id":165,"properties":{"V":500}},{"type":"LineString","arcs":[67,68],"id":166,"properties":{"V":500}},{"type":"LineString","arcs":[69],"id":167,"properties":{"V":500}},{"type":"LineString","arcs":[70],"id":168,"properties":{"V":500}},{"type":"LineString","arcs":[71],"id":169,"properties":{"V":500}},{"type":"LineString","arcs":[72],"id":170,"properties":{"V":500}},{"type":"LineString","arcs":[73],"id":171,"properties":{"V":500}},{"type":"LineString","arcs":[74],"id":172,"properties":{"V":500}},{"type":"LineString","arcs":[75],"id":173,"properties":{"V":500}},{"type":"LineString","arcs":[76],"id":174,"properties":{"V":500}},{"type":"LineString","arcs":[77],"id":175,"properties":{"V":500}},{"type":"LineString","arcs":[78],"id":176,"properties":{"V":500}},{"type":"LineString","arcs":[79],"id":177,"properties":{"V":500}},{"type":"LineString","arcs":[80],"id":178,"properties":{"V":500}},{"type":"LineString","arcs":[81],"id":179,"properties":{"V":500}},{"type":"LineString","arcs":[82],"id":180,"properties":{"V":500}},{"type":"LineString","arcs":[83],"id":181,"properties":{"V":500}},{"type":"LineString","arcs":[84],"id":182,"properties":{"V":500}},{"type":"LineString","arcs":[85],"id":183,"properties":{"V":500}},{"type":"LineString","arcs":[86],"id":184,"properties":{"V":500}},{"type":"LineString","arcs":[87],"id":185,"properties":{"V":500}},{"type":"LineString","arcs":[88],"id":186,"properties":{"V":500}},{"type":"LineString","arcs":[89],"id":187,"properties":{"V":500}},{"type":"LineString","arcs":[90],"id":188,"properties":{"V":500}},{"type":"LineString","arcs":[91],"id":189,"properties":{"V":500}},{"type":"LineString","arcs":[92],"id":190,"properties":{"V":500}},{"type":"LineString","arcs":[93],"id":191,"properties":{"V":500}},{"type":"LineString","arcs":[94],"id":192,"properties":{"V":500}},{"type":"LineString","arcs":[95],"id":193,"properties":{"V":500}},{"type":"LineString","arcs":[96],"id":194,"properties":{"V":500}},{"type":"LineString","arcs":[97],"id":195,"properties":{"V":500}},{"type":"LineString","arcs":[98],"id":196,"properties":{"V":500}},{"type":"LineString","arcs":[99],"id":197,"properties":{"V":500}},{"type":"LineString","arcs":[100],"id":198,"properties":{"V":500}},{"type":"LineString","arcs":[101],"id":199,"properties":{"V":500}},{"type":"LineString","arcs":[102],"id":200,"properties":{"V":500}},{"type":"LineString","arcs":[103],"id":201,"properties":{"V":500}},{"type":"LineString","arcs":[104],"id":202,"properties":{"V":500}},{"type":"LineString","arcs":[105],"id":203,"properties":{"V":500}},{"type":"LineString","arcs":[106],"id":204,"properties":{"V":500}},{"type":"LineString","arcs":[107],"id":205,"properties":{"V":500}},{"type":"LineString","arcs":[108],"id":206,"properties":{"V":500}},{"type":"LineString","arcs":[109],"id":207,"properties":{"V":500}},{"type":"LineString","arcs":[110],"id":208,"properties":{"V":500}},{"type":"LineString","arcs":[111],"id":209,"properties":{"V":500}},{"type":"LineString","arcs":[112],"id":210,"properties":{"V":500}},{"type":"LineString","arcs":[113],"id":211,"properties":{"V":500}},{"type":"LineString","arcs":[114],"id":212,"properties":{"V":500}},{"type":"LineString","arcs":[115],"id":213,"properties":{"V":500}},{"type":"LineString","arcs":[116],"id":214,"properties":{"V":345}},{"type":"LineString","arcs":[117],"id":215,"properties":{"V":345}},{"type":"LineString","arcs":[118],"id":216,"properties":{"V":345}},{"type":"LineString","arcs":[119],"id":217,"properties":{"V":345}},{"type":"LineString","arcs":[120],"id":218,"properties":{"V":345}},{"type":"LineString","arcs":[121],"id":219,"properties":{"V":345}},{"type":"LineString","arcs":[122],"id":220,"properties":{"V":345}},{"type":"LineString","arcs":[123],"id":221,"properties":{"V":345}},{"type":"LineString","arcs":[124],"id":222,"properties":{"V":345}},{"type":"LineString","arcs":[125],"id":223,"properties":{"V":230}},{"type":"LineString","arcs":[126],"id":224,"properties":{"V":345}},{"type":"LineString","arcs":[127],"id":225,"properties":{"V":345}},{"type":"LineString","arcs":[128],"id":226,"properties":{"V":345}},{"type":"LineString","arcs":[129],"id":227,"properties":{"V":345}},{"type":"LineString","arcs":[130],"id":228,"properties":{"V":345}},{"type":"LineString","arcs":[131],"id":229,"properties":{"V":345}},{"type":"LineString","arcs":[132],"id":230,"properties":{"V":345}},{"type":"LineString","arcs":[133],"id":231,"properties":{"V":345}},{"type":"LineString","arcs":[134],"id":232,"properties":{"V":345}},{"type":"LineString","arcs":[135],"id":233,"properties":{"V":345}},{"type":"LineString","arcs":[136],"id":234,"properties":{"V":345}},{"type":"LineString","arcs":[137],"id":235,"properties":{"V":345}},{"type":"LineString","arcs":[138],"id":236,"properties":{"V":345}},{"type":"LineString","arcs":[139],"id":237,"properties":{"V":345}},{"type":"LineString","arcs":[140],"id":238,"properties":{"V":345}},{"type":"LineString","arcs":[141],"id":239,"properties":{"V":345}},{"type":"LineString","arcs":[142],"id":240,"properties":{"V":345}},{"type":"LineString","arcs":[143],"id":241,"properties":{"V":345}},{"type":"LineString","arcs":[144],"id":242,"properties":{"V":345}},{"type":"LineString","arcs":[145],"id":243,"properties":{"V":345}},{"type":"LineString","arcs":[146],"id":244,"properties":{"V":345}},{"type":"LineString","arcs":[147],"id":245,"properties":{"V":345}},{"type":"LineString","arcs":[148],"id":246,"properties":{"V":345}},{"type":"LineString","arcs":[149],"id":247,"properties":{"V":345}},{"type":"LineString","arcs":[150],"id":248,"properties":{"V":345}},{"type":"LineString","arcs":[151],"id":249,"properties":{"V":345}},{"type":"LineString","arcs":[152],"id":250,"properties":{"V":345}},{"type":"LineString","arcs":[153],"id":251,"properties":{"V":345}},{"type":"LineString","arcs":[154],"id":252,"properties":{"V":345}},{"type":"LineString","arcs":[155],"id":253,"properties":{"V":345}},{"type":"LineString","arcs":[156],"id":254,"properties":{"V":345}},{"type":"LineString","arcs":[157],"id":255,"properties":{"V":345}},{"type":"LineString","arcs":[158],"id":256,"properties":{"V":345}},{"type":"LineString","arcs":[159],"id":257,"properties":{"V":345}},{"type":"LineString","arcs":[160],"id":258,"properties":{"V":345}},{"type":"LineString","arcs":[161],"id":259,"properties":{"V":345}},{"type":"LineString","arcs":[162],"id":260,"properties":{"V":345}},{"type":"LineString","arcs":[163],"id":261,"properties":{"V":345}},{"type":"LineString","arcs":[164],"id":262,"properties":{"V":345}},{"type":"LineString","arcs":[165],"id":263,"properties":{"V":345}},{"type":"LineString","arcs":[166],"id":264,"properties":{"V":345}},{"type":"LineString","arcs":[167],"id":265,"properties":{"V":345}},{"type":"LineString","arcs":[168],"id":266,"properties":{"V":345}},{"type":"LineString","arcs":[169],"id":267,"properties":{"V":345}},{"type":"LineString","arcs":[170],"id":268,"properties":{"V":345}},{"type":"LineString","arcs":[171],"id":269,"properties":{"V":345}},{"type":"LineString","arcs":[172],"id":270,"properties":{"V":345}},{"type":"LineString","arcs":[173],"id":271,"properties":{"V":345}},{"type":"LineString","arcs":[174],"id":272,"properties":{"V":345}},{"type":"LineString","arcs":[175],"id":273,"properties":{"V":345}},{"type":"LineString","arcs":[176],"id":274,"properties":{"V":345}},{"type":"LineString","arcs":[177],"id":275,"properties":{"V":345}},{"type":"LineString","arcs":[178],"id":276,"properties":{"V":345}},{"type":"LineString","arcs":[179],"id":277,"properties":{"V":345}},{"type":"LineString","arcs":[180],"id":278,"properties":{"V":345}},{"type":"LineString","arcs":[181],"id":279,"properties":{"V":345}},{"type":"LineString","arcs":[182],"id":280,"properties":{"V":230}},{"type":"LineString","arcs":[183],"id":281,"properties":{"V":345}},{"type":"LineString","arcs":[184],"id":282,"properties":{"V":345}},{"type":"LineString","arcs":[185],"id":283,"properties":{"V":345}},{"type":"LineString","arcs":[186],"id":284,"properties":{"V":345}},{"type":"LineString","arcs":[187],"id":285,"properties":{"V":345}},{"type":"LineString","arcs":[188],"id":286,"properties":{"V":345}},{"type":"LineString","arcs":[189],"id":287,"properties":{"V":345}},{"type":"LineString","arcs":[190],"id":288,"properties":{"V":345}},{"type":"LineString","arcs":[191],"id":289,"properties":{"V":345}},{"type":"LineString","arcs":[192],"id":290,"properties":{"V":230}},{"type":"LineString","arcs":[193],"id":291,"properties":{"V":345}},{"type":"LineString","arcs":[194],"id":292,"properties":{"V":345}},{"type":"LineString","arcs":[195],"id":293,"properties":{"V":230}},{"type":"LineString","arcs":[196],"id":294,"properties":{"V":345}},{"type":"LineString","arcs":[197],"id":295,"properties":{"V":230}},{"type":"LineString","arcs":[198],"id":296,"properties":{"V":345}},{"type":"LineString","arcs":[199],"id":297,"properties":{"V":230}},{"type":"LineString","arcs":[200],"id":298,"properties":{"V":345}},{"type":"LineString","arcs":[201],"id":299,"properties":{"V":345}},{"type":"LineString","arcs":[202],"id":300,"properties":{"V":345}},{"type":"LineString","arcs":[203],"id":301,"properties":{"V":345}},{"type":"LineString","arcs":[204],"id":302,"properties":{"V":287}},{"type":"LineString","arcs":[205],"id":303,"properties":{"V":500}},{"type":"LineString","arcs":[206],"id":304,"properties":{"V":230}},{"type":"LineString","arcs":[207],"id":305,"properties":{"V":230}},{"type":"LineString","arcs":[208],"id":310,"properties":{"V":230}},{"type":"LineString","arcs":[209],"id":311,"properties":{"V":230}},{"type":"LineString","arcs":[210],"id":312,"properties":{"V":230}},{"type":"LineString","arcs":[211],"id":313,"properties":{"V":230}},{"type":"LineString","arcs":[212],"id":315,"properties":{"V":230}},{"type":"LineString","arcs":[213],"id":316,"properties":{"V":230}},{"type":"LineString","arcs":[214],"id":317,"properties":{"V":230}},{"type":"LineString","arcs":[215],"id":318,"properties":{"V":230}},{"type":"LineString","arcs":[216],"id":319,"properties":{"V":230}},{"type":"LineString","arcs":[217],"id":320,"properties":{"V":230}},{"type":"LineString","arcs":[218],"id":321,"properties":{"V":230}},{"type":"LineString","arcs":[219],"id":322,"properties":{"V":230}},{"type":"LineString","arcs":[220],"id":323,"properties":{"V":230}},{"type":"LineString","arcs":[221],"id":324,"properties":{"V":230}},{"type":"LineString","arcs":[222],"id":325,"properties":{"V":230}},{"type":"LineString","arcs":[223],"id":326,"properties":{"V":230}},{"type":"LineString","arcs":[224],"id":327,"properties":{"V":230}},{"type":"LineString","arcs":[225],"id":328,"properties":{"V":230}},{"type":"LineString","arcs":[226],"id":329,"properties":{"V":230}},{"type":"LineString","arcs":[227],"id":330,"properties":{"V":230}},{"type":"LineString","arcs":[228],"id":331,"properties":{"V":230}},{"type":"LineString","arcs":[229],"id":332,"properties":{"V":230}},{"type":"LineString","arcs":[230],"id":333,"properties":{"V":230}},{"type":"LineString","arcs":[231],"id":334,"properties":{"V":230}},{"type":"LineString","arcs":[232],"id":335,"properties":{"V":230}},{"type":"LineString","arcs":[233],"id":336,"properties":{"V":230}},{"type":"LineString","arcs":[234],"id":337,"properties":{"V":230}},{"type":"LineString","arcs":[235],"id":338,"properties":{"V":230}},{"type":"LineString","arcs":[236],"id":339,"properties":{"V":230}},{"type":"LineString","arcs":[237],"id":340,"properties":{"V":230}},{"type":"LineString","arcs":[238],"id":341,"properties":{"V":230}},{"type":"LineString","arcs":[239],"id":342,"properties":{"V":230}},{"type":"LineString","arcs":[240],"id":343,"properties":{"V":230}},{"type":"LineString","arcs":[241],"id":344,"properties":{"V":230}},{"type":"LineString","arcs":[242],"id":345,"properties":{"V":230}},{"type":"LineString","arcs":[243],"id":346,"properties":{"V":230}},{"type":"LineString","arcs":[244],"id":347,"properties":{"V":230}},{"type":"LineString","arcs":[245],"id":348,"properties":{"V":230}},{"type":"LineString","arcs":[246],"id":349,"properties":{"V":230}},{"type":"LineString","arcs":[247],"id":350,"properties":{"V":230}},{"type":"LineString","arcs":[248],"id":351,"properties":{"V":230}},{"type":"LineString","arcs":[249],"id":352,"properties":{"V":230}},{"type":"LineString","arcs":[250],"id":353,"properties":{"V":230}},{"type":"LineString","arcs":[251],"id":354,"properties":{"V":230}},{"type":"LineString","arcs":[252],"id":355,"properties":{"V":230}},{"type":"LineString","arcs":[253],"id":356,"properties":{"V":230}},{"type":"LineString","arcs":[254],"id":357,"properties":{"V":230}},{"type":"LineString","arcs":[255],"id":358,"properties":{"V":230}},{"type":"LineString","arcs":[256],"id":359,"properties":{"V":230}},{"type":"LineString","arcs":[257],"id":360,"properties":{"V":230}},{"type":"LineString","arcs":[258],"id":361,"properties":{"V":230}},{"type":"LineString","arcs":[259],"id":362,"properties":{"V":230}},{"type":"LineString","arcs":[260],"id":363,"properties":{"V":230}},{"type":"LineString","arcs":[261],"id":364,"properties":{"V":230}},{"type":"LineString","arcs":[262],"id":365,"properties":{"V":230}},{"type":"LineString","arcs":[263],"id":366,"properties":{"V":230}},{"type":"LineString","arcs":[264],"id":367,"properties":{"V":230}},{"type":"LineString","arcs":[265],"id":368,"properties":{"V":230}},{"type":"LineString","arcs":[266],"id":369,"properties":{"V":230}},{"type":"LineString","arcs":[267],"id":370,"properties":{"V":230}},{"type":"LineString","arcs":[268],"id":371,"properties":{"V":230}},{"type":"LineString","arcs":[269],"id":372,"properties":{"V":230}},{"type":"LineString","arcs":[270],"id":373,"properties":{"V":230}},{"type":"LineString","arcs":[271],"id":374,"properties":{"V":230}},{"type":"LineString","arcs":[272],"id":375,"properties":{"V":230}},{"type":"LineString","arcs":[273],"id":376,"properties":{"V":230}},{"type":"LineString","arcs":[274],"id":377,"properties":{"V":230}},{"type":"LineString","arcs":[275],"id":378,"properties":{"V":230}},{"type":"LineString","arcs":[276],"id":379,"properties":{"V":230}},{"type":"LineString","arcs":[277],"id":380,"properties":{"V":230}},{"type":"LineString","arcs":[278],"id":381,"properties":{"V":230}},{"type":"LineString","arcs":[279],"id":382,"properties":{"V":230}},{"type":"LineString","arcs":[280],"id":383,"properties":{"V":230}},{"type":"LineString","arcs":[281],"id":384,"properties":{"V":230}},{"type":"LineString","arcs":[282],"id":385,"properties":{"V":230}},{"type":"LineString","arcs":[283],"id":386,"properties":{"V":230}},{"type":"LineString","arcs":[284],"id":387,"properties":{"V":230}},{"type":"LineString","arcs":[285],"id":388,"properties":{"V":230}},{"type":"LineString","arcs":[286],"id":389,"properties":{"V":230}},{"type":"LineString","arcs":[287],"id":390,"properties":{"V":230}},{"type":"LineString","arcs":[288],"id":391,"properties":{"V":230}},{"type":"LineString","arcs":[289],"id":392,"properties":{"V":230}},{"type":"LineString","arcs":[290],"id":393,"properties":{"V":230}},{"type":"LineString","arcs":[291],"id":394,"properties":{"V":230}},{"type":"LineString","arcs":[292],"id":395,"properties":{"V":230}},{"type":"LineString","arcs":[293],"id":396,"properties":{"V":230}},{"type":"LineString","arcs":[294],"id":397,"properties":{"V":230}},{"type":"LineString","arcs":[295],"id":398,"properties":{"V":230}},{"type":"LineString","arcs":[296],"id":399,"properties":{"V":230}},{"type":"LineString","arcs":[297],"id":400,"properties":{"V":230}},{"type":"LineString","arcs":[298],"id":401,"properties":{"V":230}},{"type":"LineString","arcs":[299],"id":402,"properties":{"V":230}},{"type":"LineString","arcs":[300],"id":403,"properties":{"V":230}},{"type":"LineString","arcs":[301],"id":404,"properties":{"V":230}},{"type":"LineString","arcs":[302],"id":405,"properties":{"V":230}},{"type":"LineString","arcs":[303],"id":406,"properties":{"V":230}},{"type":"LineString","arcs":[304],"id":407,"properties":{"V":230}},{"type":"LineString","arcs":[305],"id":408,"properties":{"V":230}},{"type":"LineString","arcs":[306],"id":409,"properties":{"V":230}},{"type":"LineString","arcs":[307],"id":410,"properties":{"V":230}},{"type":"LineString","arcs":[308],"id":411,"properties":{"V":230}},{"type":"LineString","arcs":[309],"id":412,"properties":{"V":230}},{"type":"LineString","arcs":[310],"id":413,"properties":{"V":230}},{"type":"LineString","arcs":[311],"id":414,"properties":{"V":230}},{"type":"LineString","arcs":[312],"id":415,"properties":{"V":230}},{"type":"LineString","arcs":[313],"id":416,"properties":{"V":230}},{"type":"LineString","arcs":[314],"id":417,"properties":{"V":230}},{"type":"LineString","arcs":[315],"id":418,"properties":{"V":230}},{"type":"LineString","arcs":[316],"id":419,"properties":{"V":230}},{"type":"LineString","arcs":[317],"id":420,"properties":{"V":230}},{"type":"LineString","arcs":[318],"id":421,"properties":{"V":230}},{"type":"LineString","arcs":[319],"id":422,"properties":{"V":230}},{"type":"LineString","arcs":[320],"id":423,"properties":{"V":230}},{"type":"LineString","arcs":[321],"id":424,"properties":{"V":230}},{"type":"LineString","arcs":[322],"id":425,"properties":{"V":230}},{"type":"LineString","arcs":[323],"id":426,"properties":{"V":230}},{"type":"LineString","arcs":[324],"id":427,"properties":{"V":230}},{"type":"LineString","arcs":[325],"id":428,"properties":{"V":230}},{"type":"LineString","arcs":[326],"id":429,"properties":{"V":230}},{"type":"LineString","arcs":[327],"id":430,"properties":{"V":230}},{"type":"LineString","arcs":[328],"id":431,"properties":{"V":230}},{"type":"LineString","arcs":[329],"id":432,"properties":{"V":230}},{"type":"LineString","arcs":[330],"id":433,"properties":{"V":230}},{"type":"LineString","arcs":[331],"id":434,"properties":{"V":230}},{"type":"LineString","arcs":[332],"id":435,"properties":{"V":230}},{"type":"LineString","arcs":[333],"id":436,"properties":{"V":230}},{"type":"LineString","arcs":[334],"id":437,"properties":{"V":230}},{"type":"LineString","arcs":[335],"id":438,"properties":{"V":230}},{"type":"LineString","arcs":[336],"id":439,"properties":{"V":230}},{"type":"LineString","arcs":[337],"id":440,"properties":{"V":230}},{"type":"LineString","arcs":[338],"id":441,"properties":{"V":230}},{"type":"LineString","arcs":[339],"id":442,"properties":{"V":230}},{"type":"LineString","arcs":[340],"id":443,"properties":{"V":230}},{"type":"LineString","arcs":[341],"id":444,"properties":{"V":230}},{"type":"LineString","arcs":[342],"id":445,"properties":{"V":230}},{"type":"LineString","arcs":[343],"id":446,"properties":{"V":230}},{"type":"LineString","arcs":[344],"id":447,"properties":{"V":230}},{"type":"LineString","arcs":[345,346],"id":448,"properties":{"V":230}},{"type":"LineString","arcs":[347,348],"id":449,"properties":{"V":230}},{"type":"LineString","arcs":[349],"id":450,"properties":{"V":230}},{"type":"LineString","arcs":[350],"id":451,"properties":{"V":500}},{"type":"LineString","arcs":[351],"id":452,"properties":{"V":500}},{"type":"LineString","arcs":[352],"id":453,"properties":{"V":500}},{"type":"LineString","arcs":[353],"id":454,"properties":{"V":500}},{"type":"LineString","arcs":[354],"id":458,"properties":{"V":230}},{"type":"LineString","arcs":[355],"id":459,"properties":{"V":500}},{"type":"LineString","arcs":[356],"id":460,"properties":{"V":230}},{"type":"LineString","arcs":[357],"id":637,"properties":{"V":230}},{"type":"LineString","arcs":[358],"id":799,"properties":{"V":230}},{"type":"LineString","arcs":[359],"id":800,"properties":{"V":230}},{"type":"LineString","arcs":[360],"id":839,"properties":{"V":230}},{"type":"LineString","arcs":[361],"id":873,"properties":{"V":1000}},{"type":"LineString","arcs":[362],"id":917,"properties":{"V":230}},{"type":"LineString","arcs":[363],"id":922,"properties":{"V":230}},{"type":"LineString","arcs":[364],"id":923,"properties":{"V":230}},{"type":"LineString","arcs":[365],"id":930,"properties":{"V":230}},{"type":"LineString","arcs":[366],"id":931,"properties":{"V":230}},{"type":"LineString","arcs":[367],"id":933,"properties":{"V":230}},{"type":"LineString","arcs":[368],"id":934,"properties":{"V":230}},{"type":"LineString","arcs":[369],"id":936,"properties":{"V":230}},{"type":"LineString","arcs":[370],"id":937,"properties":{"V":230}},{"type":"LineString","arcs":[371],"id":938,"properties":{"V":230}},{"type":"LineString","arcs":[372],"id":959,"properties":{"V":230}},{"type":"LineString","arcs":[373],"id":960,"properties":{"V":230}},{"type":"LineString","arcs":[374],"id":961,"properties":{"V":230}},{"type":"LineString","arcs":[375],"id":962,"properties":{"V":230}},{"type":"LineString","arcs":[376],"id":1001,"properties":{"V":230}},{"type":"LineString","arcs":[377],"id":1003,"properties":{"V":230}},{"type":"LineString","arcs":[378],"id":1004,"properties":{"V":230}},{"type":"LineString","arcs":[379],"id":1005,"properties":{"V":230}},{"type":"LineString","arcs":[380],"id":1006,"properties":{"V":230}},{"type":"LineString","arcs":[381],"id":1007,"properties":{"V":230}},{"type":"LineString","arcs":[382],"id":1008,"properties":{"V":230}},{"type":"LineString","arcs":[383],"id":1009,"properties":{"V":230}},{"type":"LineString","arcs":[384],"id":1010,"properties":{"V":230}},{"type":"LineString","arcs":[385],"id":1011,"properties":{"V":230}},{"type":"LineString","arcs":[386],"id":1013,"properties":{"V":230}},{"type":"LineString","arcs":[387],"id":1014,"properties":{"V":230}},{"type":"LineString","arcs":[388],"id":1015,"properties":{"V":230}},{"type":"LineString","arcs":[389,390],"id":1016,"properties":{"V":230}},{"type":"LineString","arcs":[391],"id":1017,"properties":{"V":230}},{"type":"LineString","arcs":[392],"id":1018,"properties":{"V":230}},{"type":"LineString","arcs":[393],"id":1019,"properties":{"V":230}},{"type":"LineString","arcs":[394],"id":1021,"properties":{"V":230}},{"type":"LineString","arcs":[395],"id":1022,"properties":{"V":230}},{"type":"LineString","arcs":[396],"id":1023,"properties":{"V":230}},{"type":"LineString","arcs":[397],"id":1024,"properties":{"V":230}},{"type":"LineString","arcs":[398],"id":1025,"properties":{"V":230}},{"type":"LineString","arcs":[399],"id":1026,"properties":{"V":230}},{"type":"LineString","arcs":[400],"id":1027,"properties":{"V":230}},{"type":"LineString","arcs":[401],"id":1028,"properties":{"V":230}},{"type":"LineString","arcs":[402],"id":1031,"properties":{"V":230}},{"type":"LineString","arcs":[403],"id":1032,"properties":{"V":230}},{"type":"LineString","arcs":[404],"id":1033,"properties":{"V":230}},{"type":"LineString","arcs":[405],"id":1034,"properties":{"V":230}},{"type":"LineString","arcs":[406],"id":1035,"properties":{"V":230}},{"type":"LineString","arcs":[407],"id":1055,"properties":{"V":230}},{"type":"LineString","arcs":[408],"id":1056,"properties":{"V":230}},{"type":"LineString","arcs":[409],"id":1057,"properties":{"V":230}},{"type":"LineString","arcs":[410],"id":1058,"properties":{"V":230}},{"type":"LineString","arcs":[411],"id":1059,"properties":{"V":230}},{"type":"LineString","arcs":[412],"id":1060,"properties":{"V":230}},{"type":"LineString","arcs":[413],"id":1061,"properties":{"V":230}},{"type":"LineString","arcs":[414],"id":1062,"properties":{"V":230}},{"type":"LineString","arcs":[415],"id":1067,"properties":{"V":230}},{"type":"LineString","arcs":[416],"id":1068,"properties":{"V":230}},{"type":"LineString","arcs":[417],"id":1079,"properties":{"V":500}},{"type":"LineString","arcs":[418],"id":1082,"properties":{"V":230}},{"type":"LineString","arcs":[419],"id":1083,"properties":{"V":230}},{"type":"LineString","arcs":[420],"id":1084,"properties":{"V":230}},{"type":"LineString","arcs":[421],"id":1085,"properties":{"V":230}},{"type":"LineString","arcs":[422,423],"id":1091,"properties":{"V":230}},{"type":"LineString","arcs":[424,425],"id":1092,"properties":{"V":230}},{"type":"LineString","arcs":[426],"id":1093,"properties":{"V":230}},{"type":"LineString","arcs":[427],"id":1094,"properties":{"V":230}},{"type":"LineString","arcs":[428],"id":1096,"properties":{"V":230}},{"type":"LineString","arcs":[429],"id":1101,"properties":{"V":230}},{"type":"LineString","arcs":[430],"id":1108,"properties":{"V":230}},{"type":"LineString","arcs":[431],"id":1112,"properties":{"V":500}},{"type":"LineString","arcs":[432],"id":1113,"properties":{"V":230}},{"type":"LineString","arcs":[433],"id":1114,"properties":{"V":230}},{"type":"LineString","arcs":[434],"id":1181,"properties":{"V":230}},{"type":"MultiLineString","arcs":[[435],[436,437]],"id":1197,"properties":{"V":230}},{"type":"LineString","arcs":[438],"id":1198,"properties":{"V":230}},{"type":"LineString","arcs":[439],"id":1199,"properties":{"V":230}},{"type":"LineString","arcs":[440],"id":1200,"properties":{"V":230}},{"type":"LineString","arcs":[441],"id":1201,"properties":{"V":230}},{"type":"LineString","arcs":[442],"id":1202,"properties":{"V":230}},{"type":"LineString","arcs":[443],"id":1203,"properties":{"V":230}},{"type":"LineString","arcs":[444],"id":1207,"properties":{"V":230}},{"type":"LineString","arcs":[445],"id":1222,"properties":{"V":230}},{"type":"LineString","arcs":[446],"id":1245,"properties":{"V":230}},{"type":"LineString","arcs":[447],"id":1246,"properties":{"V":230}},{"type":"LineString","arcs":[448],"id":1247,"properties":{"V":230}},{"type":"LineString","arcs":[449],"id":1250,"properties":{"V":230}},{"type":"LineString","arcs":[450],"id":1251,"properties":{"V":230}},{"type":"LineString","arcs":[451],"id":1252,"properties":{"V":230}},{"type":"LineString","arcs":[452],"id":1253,"properties":{"V":230}},{"type":"LineString","arcs":[453],"id":1254,"properties":{"V":230}},{"type":"LineString","arcs":[454],"id":1255,"properties":{"V":230}},{"type":"LineString","arcs":[455],"id":1256,"properties":{"V":230}},{"type":"LineString","arcs":[456],"id":1257,"properties":{"V":230}},{"type":"LineString","arcs":[457],"id":1261,"properties":{"V":230}},{"type":"LineString","arcs":[458],"id":1262,"properties":{"V":230}},{"type":"LineString","arcs":[459],"id":1263,"properties":{"V":230}},{"type":"LineString","arcs":[460],"id":1264,"properties":{"V":230}},{"type":"LineString","arcs":[461],"id":1265,"properties":{"V":230}},{"type":"LineString","arcs":[462],"id":1283,"properties":{"V":230}},{"type":"LineString","arcs":[463],"id":1284,"properties":{"V":230}},{"type":"LineString","arcs":[464],"id":1306,"properties":{"V":230}},{"type":"LineString","arcs":[465],"id":1307,"properties":{"V":230}},{"type":"LineString","arcs":[466],"id":1308,"properties":{"V":230}},{"type":"LineString","arcs":[467],"id":1309,"properties":{"V":230}},{"type":"LineString","arcs":[468],"id":1413,"properties":{"V":230}},{"type":"LineString","arcs":[469],"id":1414,"properties":{"V":230}},{"type":"LineString","arcs":[470,471,472],"id":1415,"properties":{"V":230}},{"type":"LineString","arcs":[473],"id":1417,"properties":{"V":230}},{"type":"LineString","arcs":[474],"id":1418,"properties":{"V":230}},{"type":"LineString","arcs":[475],"id":1419,"properties":{"V":230}},{"type":"LineString","arcs":[476],"id":1420,"properties":{"V":230}},{"type":"LineString","arcs":[477,478],"id":1421,"properties":{"V":230}},{"type":"LineString","arcs":[479],"id":1422,"properties":{"V":230}},{"type":"LineString","arcs":[480],"id":1423,"properties":{"V":230}},{"type":"LineString","arcs":[481],"id":1424,"properties":{"V":230}},{"type":"LineString","arcs":[482],"id":1425,"properties":{"V":230}},{"type":"LineString","arcs":[483],"id":1426,"properties":{"V":230}},{"type":"LineString","arcs":[484],"id":1427,"properties":{"V":230}},{"type":"LineString","arcs":[485],"id":1428,"properties":{"V":230}},{"type":"LineString","arcs":[486],"id":1429,"properties":{"V":230}},{"type":"LineString","arcs":[487],"id":1430,"properties":{"V":230}},{"type":"LineString","arcs":[-479,488],"id":1431,"properties":{"V":230}},{"type":"LineString","arcs":[489],"id":1432,"properties":{"V":230}},{"type":"LineString","arcs":[490],"id":1433,"properties":{"V":230}},{"type":"LineString","arcs":[491],"id":1434,"properties":{"V":230}},{"type":"LineString","arcs":[492],"id":1435,"properties":{"V":230}},{"type":"LineString","arcs":[493],"id":1436,"properties":{"V":230}},{"type":"LineString","arcs":[494],"id":1437,"properties":{"V":230}},{"type":"LineString","arcs":[495],"id":1438,"properties":{"V":230}},{"type":"LineString","arcs":[496],"id":1439,"properties":{"V":230}},{"type":"LineString","arcs":[497],"id":1440,"properties":{"V":230}},{"type":"LineString","arcs":[498],"id":1441,"properties":{"V":230}},{"type":"LineString","arcs":[499],"id":1442,"properties":{"V":230}},{"type":"LineString","arcs":[500],"id":1443,"properties":{"V":230}},{"type":"LineString","arcs":[501],"id":1444,"properties":{"V":230}},{"type":"LineString","arcs":[502],"id":1445,"properties":{"V":230}},{"type":"LineString","arcs":[503],"id":1446,"properties":{"V":230}},{"type":"LineString","arcs":[504],"id":1447,"properties":{"V":230}},{"type":"LineString","arcs":[505],"id":1448,"properties":{"V":230}},{"type":"LineString","arcs":[506],"id":1449,"properties":{"V":230}},{"type":"LineString","arcs":[507],"id":1450,"properties":{"V":230}},{"type":"LineString","arcs":[508],"id":1451,"properties":{"V":230}},{"type":"LineString","arcs":[509],"id":1452,"properties":{"V":230}},{"type":"LineString","arcs":[510],"id":1453,"properties":{"V":230}},{"type":"LineString","arcs":[511],"id":1454,"properties":{"V":230}},{"type":"LineString","arcs":[512],"id":1455,"properties":{"V":230}},{"type":"LineString","arcs":[513],"id":1456,"properties":{"V":230}},{"type":"LineString","arcs":[514],"id":1457,"properties":{"V":230}},{"type":"LineString","arcs":[515],"id":1458,"properties":{"V":230}},{"type":"LineString","arcs":[516],"id":1459,"properties":{"V":230}},{"type":"LineString","arcs":[517],"id":1460,"properties":{"V":230}},{"type":"LineString","arcs":[518],"id":1461,"properties":{"V":230}},{"type":"LineString","arcs":[519],"id":1462,"properties":{"V":230}},{"type":"LineString","arcs":[520],"id":1552,"properties":{"V":230}},{"type":"MultiLineString","arcs":[[521],[522]],"id":1553,"properties":{"V":230}},{"type":"LineString","arcs":[523],"id":1554,"properties":{"V":345}},{"type":"LineString","arcs":[524],"id":1561,"properties":{"V":230}},{"type":"LineString","arcs":[525],"id":1562,"properties":{"V":230}},{"type":"LineString","arcs":[526],"id":1563,"properties":{"V":230}},{"type":"LineString","arcs":[527],"id":1564,"properties":{"V":230}},{"type":"LineString","arcs":[528],"id":1565,"properties":{"V":230}},{"type":"LineString","arcs":[529],"id":1566,"properties":{"V":230}},{"type":"LineString","arcs":[530],"id":1567,"properties":{"V":230}},{"type":"LineString","arcs":[531],"id":1568,"properties":{"V":230}},{"type":"LineString","arcs":[532],"id":1569,"properties":{"V":230}},{"type":"LineString","arcs":[533],"id":1570,"properties":{"V":230}},{"type":"LineString","arcs":[534],"id":1571,"properties":{"V":230}},{"type":"LineString","arcs":[535],"id":1572,"properties":{"V":230}},{"type":"LineString","arcs":[536],"id":1573,"properties":{"V":230}},{"type":"LineString","arcs":[537],"id":1576,"properties":{"V":230}},{"type":"LineString","arcs":[538],"id":1577,"properties":{"V":230}},{"type":"LineString","arcs":[539],"id":1578,"properties":{"V":230}},{"type":"LineString","arcs":[540],"id":1579,"properties":{"V":230}},{"type":"LineString","arcs":[541],"id":1580,"properties":{"V":230}},{"type":"LineString","arcs":[542],"id":1581,"properties":{"V":230}},{"type":"LineString","arcs":[543],"id":1582,"properties":{"V":230}},{"type":"LineString","arcs":[544],"id":1583,"properties":{"V":230}},{"type":"LineString","arcs":[545],"id":1584,"properties":{"V":230}},{"type":"LineString","arcs":[546],"id":1585,"properties":{"V":230}},{"type":"LineString","arcs":[547],"id":1586,"properties":{"V":230}},{"type":"LineString","arcs":[548],"id":1591,"properties":{"V":230}},{"type":"LineString","arcs":[549],"id":1592,"properties":{"V":230}},{"type":"LineString","arcs":[550],"id":1593,"properties":{"V":230}},{"type":"LineString","arcs":[551],"id":1594,"properties":{"V":230}},{"type":"LineString","arcs":[552],"id":1595,"properties":{"V":230}},{"type":"LineString","arcs":[553],"id":1596,"properties":{"V":230}},{"type":"LineString","arcs":[554],"id":1598,"properties":{"V":230}},{"type":"LineString","arcs":[555],"id":1599,"properties":{"V":230}},{"type":"LineString","arcs":[556],"id":1600,"properties":{"V":230}},{"type":"LineString","arcs":[557],"id":1601,"properties":{"V":230}},{"type":"LineString","arcs":[558],"id":1602,"properties":{"V":230}},{"type":"LineString","arcs":[559],"id":1603,"properties":{"V":230}},{"type":"LineString","arcs":[560],"id":1604,"properties":{"V":230}},{"type":"LineString","arcs":[561],"id":1605,"properties":{"V":230}},{"type":"LineString","arcs":[562],"id":1606,"properties":{"V":230}},{"type":"LineString","arcs":[563],"id":1607,"properties":{"V":230}},{"type":"LineString","arcs":[564],"id":1608,"properties":{"V":230}},{"type":"LineString","arcs":[565],"id":1609,"properties":{"V":230}},{"type":"LineString","arcs":[566],"id":1610,"properties":{"V":230}},{"type":"LineString","arcs":[567],"id":1611,"properties":{"V":230}},{"type":"LineString","arcs":[568],"id":1612,"properties":{"V":230}},{"type":"LineString","arcs":[569],"id":1613,"properties":{"V":230}},{"type":"LineString","arcs":[570],"id":1617,"properties":{"V":230}},{"type":"LineString","arcs":[571],"id":1618,"properties":{"V":230}},{"type":"LineString","arcs":[572],"id":1619,"properties":{"V":230}},{"type":"LineString","arcs":[573],"id":1620,"properties":{"V":230}},{"type":"LineString","arcs":[574],"id":1621,"properties":{"V":230}},{"type":"LineString","arcs":[575],"id":1622,"properties":{"V":230}},{"type":"LineString","arcs":[576],"id":1623,"properties":{"V":230}},{"type":"LineString","arcs":[577],"id":1624,"properties":{"V":230}},{"type":"LineString","arcs":[578],"id":1626,"properties":{"V":230}},{"type":"LineString","arcs":[579],"id":1627,"properties":{"V":230}},{"type":"LineString","arcs":[580],"id":1628,"properties":{"V":230}},{"type":"LineString","arcs":[581],"id":1629,"properties":{"V":230}},{"type":"LineString","arcs":[582],"id":1630,"properties":{"V":230}},{"type":"LineString","arcs":[583],"id":1631,"properties":{"V":230}},{"type":"LineString","arcs":[584],"id":1632,"properties":{"V":230}},{"type":"LineString","arcs":[585],"id":1633,"properties":{"V":230}},{"type":"LineString","arcs":[586],"id":1634,"properties":{"V":230}},{"type":"LineString","arcs":[587],"id":1635,"properties":{"V":230}},{"type":"LineString","arcs":[588],"id":1636,"properties":{"V":230}},{"type":"LineString","arcs":[589],"id":1637,"properties":{"V":230}},{"type":"LineString","arcs":[590],"id":1638,"properties":{"V":230}},{"type":"LineString","arcs":[591],"id":1639,"properties":{"V":230}},{"type":"LineString","arcs":[592],"id":1640,"properties":{"V":230}},{"type":"LineString","arcs":[593],"id":1641,"properties":{"V":230}},{"type":"LineString","arcs":[594],"id":1642,"properties":{"V":230}},{"type":"LineString","arcs":[595],"id":1643,"properties":{"V":230}},{"type":"LineString","arcs":[596],"id":1644,"properties":{"V":230}},{"type":"LineString","arcs":[597],"id":1645,"properties":{"V":230}},{"type":"LineString","arcs":[598],"id":1646,"properties":{"V":230}},{"type":"LineString","arcs":[599],"id":1648,"properties":{"V":230}},{"type":"LineString","arcs":[600],"id":1649,"properties":{"V":230}},{"type":"LineString","arcs":[601],"id":1650,"properties":{"V":230}},{"type":"LineString","arcs":[602],"id":1653,"properties":{"V":230}},{"type":"LineString","arcs":[603],"id":1656,"properties":{"V":345}},{"type":"LineString","arcs":[604],"id":1657,"properties":{"V":230}},{"type":"LineString","arcs":[605],"id":1658,"properties":{"V":230}},{"type":"LineString","arcs":[606],"id":1660,"properties":{"V":230}},{"type":"LineString","arcs":[607],"id":1661,"properties":{"V":230}},{"type":"LineString","arcs":[608],"id":1662,"properties":{"V":230}},{"type":"LineString","arcs":[609],"id":1663,"properties":{"V":230}},{"type":"LineString","arcs":[610],"id":1664,"properties":{"V":230}},{"type":"LineString","arcs":[611,612],"id":1665,"properties":{"V":230}},{"type":"LineString","arcs":[-613,613],"id":1666,"properties":{"V":230}},{"type":"LineString","arcs":[614],"id":1667,"properties":{"V":230}},{"type":"LineString","arcs":[615],"id":1668,"properties":{"V":230}},{"type":"LineString","arcs":[616],"id":1669,"properties":{"V":230}},{"type":"LineString","arcs":[617],"id":1670,"properties":{"V":230}},{"type":"LineString","arcs":[618],"id":1671,"properties":{"V":230}},{"type":"LineString","arcs":[619],"id":1673,"properties":{"V":230}},{"type":"LineString","arcs":[620],"id":1674,"properties":{"V":230}},{"type":"LineString","arcs":[621],"id":1678,"properties":{"V":230}},{"type":"LineString","arcs":[622],"id":1679,"properties":{"V":345}},{"type":"LineString","arcs":[623],"id":1680,"properties":{"V":230}},{"type":"LineString","arcs":[624],"id":1681,"properties":{"V":230}},{"type":"LineString","arcs":[625],"id":1685,"properties":{"V":230}},{"type":"LineString","arcs":[626],"id":1686,"properties":{"V":230}},{"type":"LineString","arcs":[627],"id":1688,"properties":{"V":230}},{"type":"LineString","arcs":[628],"id":1689,"properties":{"V":230}},{"type":"LineString","arcs":[629],"id":1690,"properties":{"V":230}},{"type":"LineString","arcs":[630],"id":1691,"properties":{"V":230}},{"type":"LineString","arcs":[631],"id":1692,"properties":{"V":230}},{"type":"LineString","arcs":[632],"id":1693,"properties":{"V":230}},{"type":"LineString","arcs":[633],"id":1694,"properties":{"V":230}},{"type":"LineString","arcs":[634],"id":1698,"properties":{"V":230}},{"type":"LineString","arcs":[635],"id":1711,"properties":{"V":230}},{"type":"LineString","arcs":[636],"id":1714,"properties":{"V":230}},{"type":"LineString","arcs":[637],"id":1716,"properties":{"V":230}},{"type":"LineString","arcs":[638],"id":1717,"properties":{"V":230}},{"type":"LineString","arcs":[639],"id":1718,"properties":{"V":345}},{"type":"LineString","arcs":[640],"id":1720,"properties":{"V":230}},{"type":"LineString","arcs":[641],"id":1721,"properties":{"V":230}},{"type":"LineString","arcs":[642],"id":1722,"properties":{"V":230}},{"type":"LineString","arcs":[643],"id":1724,"properties":{"V":230}},{"type":"LineString","arcs":[644],"id":1725,"properties":{"V":230}},{"type":"LineString","arcs":[645],"id":1750,"properties":{"V":230}},{"type":"LineString","arcs":[646],"id":1751,"properties":{"V":230}},{"type":"LineString","arcs":[647],"id":1752,"properties":{"V":230}},{"type":"LineString","arcs":[648],"id":1753,"properties":{"V":230}},{"type":"LineString","arcs":[649],"id":1754,"properties":{"V":230}},{"type":"LineString","arcs":[650],"id":1755,"properties":{"V":230}},{"type":"LineString","arcs":[651],"id":1756,"properties":{"V":230}},{"type":"LineString","arcs":[652],"id":1757,"properties":{"V":230}},{"type":"LineString","arcs":[653],"id":1758,"properties":{"V":230}},{"type":"LineString","arcs":[654],"id":1759,"properties":{"V":230}},{"type":"LineString","arcs":[655],"id":1775,"properties":{"V":230}},{"type":"LineString","arcs":[656],"id":1814,"properties":{"V":230}},{"type":"LineString","arcs":[657],"id":1815,"properties":{"V":230}},{"type":"LineString","arcs":[658],"id":1816,"properties":{"V":230}},{"type":"LineString","arcs":[659],"id":1826,"properties":{"V":230}},{"type":"LineString","arcs":[660],"id":1830,"properties":{"V":230}},{"type":"LineString","arcs":[661],"id":1841,"properties":{"V":230}},{"type":"LineString","arcs":[662],"id":1842,"properties":{"V":230}},{"type":"LineString","arcs":[663],"id":1843,"properties":{"V":230}},{"type":"LineString","arcs":[664],"id":1844,"properties":{"V":230}},{"type":"LineString","arcs":[665],"id":1845,"properties":{"V":230}},{"type":"LineString","arcs":[666],"id":1850,"properties":{"V":230}},{"type":"LineString","arcs":[667],"id":1852,"properties":{"V":230}},{"type":"LineString","arcs":[668],"id":1853,"properties":{"V":230}},{"type":"LineString","arcs":[669],"id":1856,"properties":{"V":230}},{"type":"LineString","arcs":[670],"id":1863,"properties":{"V":230}},{"type":"LineString","arcs":[671],"id":1866,"properties":{"V":230}},{"type":"LineString","arcs":[672],"id":1876,"properties":{"V":230}},{"type":"LineString","arcs":[673],"id":1877,"properties":{"V":230}},{"type":"LineString","arcs":[674],"id":1878,"properties":{"V":230}},{"type":"LineString","arcs":[675],"id":1879,"properties":{"V":230}},{"type":"LineString","arcs":[676],"id":1880,"properties":{"V":230}},{"type":"LineString","arcs":[677],"id":1881,"properties":{"V":230}},{"type":"LineString","arcs":[678],"id":1882,"properties":{"V":230}},{"type":"LineString","arcs":[679],"id":1884,"properties":{"V":230}},{"type":"LineString","arcs":[680],"id":1887,"properties":{"V":230}},{"type":"LineString","arcs":[681],"id":1890,"properties":{"V":230}},{"type":"LineString","arcs":[682],"id":1891,"properties":{"V":230}},{"type":"LineString","arcs":[683],"id":1892,"properties":{"V":230}},{"type":"LineString","arcs":[684],"id":1893,"properties":{"V":230}},{"type":"LineString","arcs":[685],"id":1895,"properties":{"V":230}},{"type":"LineString","arcs":[686],"id":1896,"properties":{"V":230}},{"type":"LineString","arcs":[687],"id":1903,"properties":{"V":230}},{"type":"LineString","arcs":[688],"id":1904,"properties":{"V":230}},{"type":"LineString","arcs":[689],"id":1905,"properties":{"V":230}},{"type":"LineString","arcs":[690],"id":1908,"properties":{"V":230}},{"type":"LineString","arcs":[691],"id":1910,"properties":{"V":230}},{"type":"LineString","arcs":[692],"id":1911,"properties":{"V":230}},{"type":"LineString","arcs":[693],"id":1912,"properties":{"V":230}},{"type":"LineString","arcs":[694],"id":1915,"properties":{"V":230}},{"type":"LineString","arcs":[695],"id":1924,"properties":{"V":230}},{"type":"LineString","arcs":[696],"id":1925,"properties":{"V":230}},{"type":"LineString","arcs":[697],"id":1926,"properties":{"V":230}},{"type":"LineString","arcs":[698],"id":1928,"properties":{"V":230}},{"type":"LineString","arcs":[699],"id":1929,"properties":{"V":230}},{"type":"LineString","arcs":[700],"id":1930,"properties":{"V":230}},{"type":"LineString","arcs":[701],"id":1931,"properties":{"V":230}},{"type":"LineString","arcs":[702],"id":1932,"properties":{"V":230}},{"type":"LineString","arcs":[703],"id":1933,"properties":{"V":230}},{"type":"LineString","arcs":[704],"id":1934,"properties":{"V":230}},{"type":"LineString","arcs":[705],"id":1936,"properties":{"V":230}},{"type":"LineString","arcs":[706],"id":1938,"properties":{"V":230}},{"type":"LineString","arcs":[707],"id":1939,"properties":{"V":230}},{"type":"LineString","arcs":[708],"id":1940,"properties":{"V":230}},{"type":"LineString","arcs":[709],"id":1941,"properties":{"V":230}},{"type":"LineString","arcs":[710],"id":1942,"properties":{"V":230}},{"type":"LineString","arcs":[711],"id":1943,"properties":{"V":230}},{"type":"LineString","arcs":[712],"id":1944,"properties":{"V":230}},{"type":"LineString","arcs":[713],"id":1945,"properties":{"V":230}},{"type":"LineString","arcs":[714],"id":1946,"properties":{"V":230}},{"type":"LineString","arcs":[715],"id":1947,"properties":{"V":230}},{"type":"LineString","arcs":[716],"id":1948,"properties":{"V":230}},{"type":"LineString","arcs":[717],"id":1949,"properties":{"V":230}},{"type":"LineString","arcs":[718],"id":1950,"properties":{"V":230}},{"type":"LineString","arcs":[719],"id":1951,"properties":{"V":230}},{"type":"LineString","arcs":[720],"id":1952,"properties":{"V":230}},{"type":"LineString","arcs":[721],"id":1953,"properties":{"V":230}},{"type":"LineString","arcs":[722],"id":1954,"properties":{"V":230}},{"type":"LineString","arcs":[723],"id":1955,"properties":{"V":230}},{"type":"LineString","arcs":[724],"id":1956,"properties":{"V":230}},{"type":"LineString","arcs":[725],"id":1961,"properties":{"V":230}},{"type":"LineString","arcs":[726],"id":1973,"properties":{"V":230}},{"type":"LineString","arcs":[727],"id":1974,"properties":{"V":230}},{"type":"LineString","arcs":[728],"id":1975,"properties":{"V":230}},{"type":"LineString","arcs":[729],"id":1976,"properties":{"V":230}},{"type":"LineString","arcs":[730],"id":1977,"properties":{"V":230}},{"type":"LineString","arcs":[731],"id":1978,"properties":{"V":230}},{"type":"LineString","arcs":[732],"id":1985,"properties":{"V":230}},{"type":"LineString","arcs":[733],"id":1986,"properties":{"V":230}},{"type":"LineString","arcs":[734],"id":1987,"properties":{"V":230}},{"type":"LineString","arcs":[735],"id":1988,"properties":{"V":230}},{"type":"LineString","arcs":[736],"id":1989,"properties":{"V":230}},{"type":"LineString","arcs":[737],"id":2023,"properties":{"V":230}},{"type":"LineString","arcs":[738],"id":2047,"properties":{"V":230}},{"type":"LineString","arcs":[739],"id":2086,"properties":{"V":230}},{"type":"LineString","arcs":[740],"id":2087,"properties":{"V":230}},{"type":"LineString","arcs":[741],"id":2091,"properties":{"V":230}},{"type":"LineString","arcs":[742],"id":2092,"properties":{"V":230}},{"type":"LineString","arcs":[743],"id":2093,"properties":{"V":230}},{"type":"LineString","arcs":[744],"id":2094,"properties":{"V":230}},{"type":"LineString","arcs":[745],"id":2095,"properties":{"V":230}},{"type":"LineString","arcs":[746],"id":2096,"properties":{"V":230}},{"type":"LineString","arcs":[747],"id":2097,"properties":{"V":230}},{"type":"LineString","arcs":[748],"id":2102,"properties":{"V":230}},{"type":"LineString","arcs":[749],"id":2103,"properties":{"V":230}},{"type":"LineString","arcs":[750],"id":2104,"properties":{"V":230}},{"type":"LineString","arcs":[751],"id":2123,"properties":{"V":230}},{"type":"LineString","arcs":[752],"id":2126,"properties":{"V":230}},{"type":"LineString","arcs":[753],"id":2127,"properties":{"V":230}},{"type":"LineString","arcs":[754],"id":2128,"properties":{"V":230}},{"type":"LineString","arcs":[755],"id":2137,"properties":{"V":230}},{"type":"LineString","arcs":[756],"id":2138,"properties":{"V":230}},{"type":"LineString","arcs":[757],"id":2139,"properties":{"V":230}},{"type":"LineString","arcs":[758],"id":2151,"properties":{"V":230}},{"type":"LineString","arcs":[759],"id":2152,"properties":{"V":230}},{"type":"LineString","arcs":[760],"id":2153,"properties":{"V":230}},{"type":"LineString","arcs":[761],"id":2154,"properties":{"V":230}},{"type":"LineString","arcs":[762],"id":2155,"properties":{"V":230}},{"type":"LineString","arcs":[763],"id":2156,"properties":{"V":230}},{"type":"LineString","arcs":[764],"id":2159,"properties":{"V":230}},{"type":"LineString","arcs":[765],"id":2164,"properties":{"V":230}},{"type":"LineString","arcs":[766],"id":2170,"properties":{"V":230}},{"type":"LineString","arcs":[767],"id":2174,"properties":{"V":230}},{"type":"LineString","arcs":[768],"id":2180,"properties":{"V":230}},{"type":"LineString","arcs":[769],"id":2189,"properties":{"V":230}},{"type":"LineString","arcs":[770],"id":2190,"properties":{"V":230}},{"type":"LineString","arcs":[771],"id":2191,"properties":{"V":230}},{"type":"LineString","arcs":[772],"id":2192,"properties":{"V":230}},{"type":"LineString","arcs":[773],"id":2193,"properties":{"V":230}},{"type":"LineString","arcs":[774],"id":2197,"properties":{"V":230}},{"type":"LineString","arcs":[775],"id":2198,"properties":{"V":230}},{"type":"LineString","arcs":[776],"id":2199,"properties":{"V":230}},{"type":"LineString","arcs":[777],"id":2200,"properties":{"V":230}},{"type":"LineString","arcs":[778],"id":2201,"properties":{"V":230}},{"type":"LineString","arcs":[779],"id":2202,"properties":{"V":230}},{"type":"LineString","arcs":[780],"id":2203,"properties":{"V":230}},{"type":"LineString","arcs":[781],"id":2204,"properties":{"V":230}},{"type":"LineString","arcs":[782],"id":2205,"properties":{"V":230}},{"type":"LineString","arcs":[783],"id":2206,"properties":{"V":230}},{"type":"LineString","arcs":[784],"id":2207,"properties":{"V":230}},{"type":"LineString","arcs":[785],"id":2208,"properties":{"V":230}},{"type":"LineString","arcs":[786],"id":2209,"properties":{"V":230}},{"type":"LineString","arcs":[787],"id":2211,"properties":{"V":230}},{"type":"LineString","arcs":[788],"id":2212,"properties":{"V":230}},{"type":"LineString","arcs":[789],"id":2213,"properties":{"V":230}},{"type":"LineString","arcs":[790],"id":2215,"properties":{"V":230}},{"type":"LineString","arcs":[791],"id":2216,"properties":{"V":230}},{"type":"LineString","arcs":[792],"id":2217,"properties":{"V":230}},{"type":"LineString","arcs":[793],"id":2218,"properties":{"V":230}},{"type":"LineString","arcs":[794],"id":2219,"properties":{"V":230}},{"type":"LineString","arcs":[795],"id":2220,"properties":{"V":230}},{"type":"LineString","arcs":[796],"id":2221,"properties":{"V":230}},{"type":"LineString","arcs":[797],"id":2222,"properties":{"V":230}},{"type":"LineString","arcs":[798],"id":2223,"properties":{"V":230}},{"type":"LineString","arcs":[799],"id":2224,"properties":{"V":230}},{"type":"LineString","arcs":[800],"id":2227,"properties":{"V":230}},{"type":"LineString","arcs":[801],"id":2231,"properties":{"V":230}},{"type":"LineString","arcs":[802],"id":2232,"properties":{"V":230}},{"type":"LineString","arcs":[803],"id":2233,"properties":{"V":230}},{"type":"LineString","arcs":[804],"id":2234,"properties":{"V":230}},{"type":"LineString","arcs":[805],"id":2239,"properties":{"V":230}},{"type":"LineString","arcs":[806],"id":2240,"properties":{"V":230}},{"type":"LineString","arcs":[807],"id":2248,"properties":{"V":230}},{"type":"LineString","arcs":[808],"id":2249,"properties":{"V":230}},{"type":"LineString","arcs":[809],"id":2250,"properties":{"V":230}},{"type":"LineString","arcs":[810],"id":2251,"properties":{"V":230}},{"type":"LineString","arcs":[811],"id":2252,"properties":{"V":230}},{"type":"LineString","arcs":[812],"id":2253,"properties":{"V":230}},{"type":"LineString","arcs":[813],"id":2254,"properties":{"V":230}},{"type":"LineString","arcs":[814],"id":2255,"properties":{"V":230}},{"type":"LineString","arcs":[815],"id":2257,"properties":{"V":230}},{"type":"LineString","arcs":[816],"id":2265,"properties":{"V":230}},{"type":"LineString","arcs":[817],"id":2271,"properties":{"V":230}},{"type":"LineString","arcs":[818],"id":2272,"properties":{"V":230}},{"type":"LineString","arcs":[819],"id":2273,"properties":{"V":230}},{"type":"LineString","arcs":[820],"id":2274,"properties":{"V":230}},{"type":"LineString","arcs":[821],"id":2275,"properties":{"V":230}},{"type":"LineString","arcs":[822],"id":2276,"properties":{"V":230}},{"type":"LineString","arcs":[823],"id":2277,"properties":{"V":230}},{"type":"LineString","arcs":[824],"id":2278,"properties":{"V":230}},{"type":"LineString","arcs":[825],"id":2279,"properties":{"V":230}},{"type":"LineString","arcs":[826],"id":2280,"properties":{"V":230}},{"type":"LineString","arcs":[827],"id":2286,"properties":{"V":230}},{"type":"LineString","arcs":[828],"id":2287,"properties":{"V":230}},{"type":"LineString","arcs":[829],"id":2353,"properties":{"V":230}},{"type":"LineString","arcs":[830],"id":2378,"properties":{"V":230}},{"type":"LineString","arcs":[831],"id":2379,"properties":{"V":230}},{"type":"LineString","arcs":[832],"id":2382,"properties":{"V":230}},{"type":"LineString","arcs":[833],"id":2385,"properties":{"V":230}},{"type":"LineString","arcs":[834],"id":2390,"properties":{"V":230}},{"type":"LineString","arcs":[835],"id":2442,"properties":{"V":230}},{"type":"LineString","arcs":[836],"id":2443,"properties":{"V":230}},{"type":"LineString","arcs":[837],"id":2452,"properties":{"V":230}},{"type":"LineString","arcs":[838],"id":2465,"properties":{"V":230}},{"type":"LineString","arcs":[462],"id":2535,"properties":{"V":230}},{"type":"LineString","arcs":[463],"id":2536,"properties":{"V":230}},{"type":"LineString","arcs":[839],"id":2635,"properties":{"V":230}},{"type":"LineString","arcs":[840],"id":2636,"properties":{"V":230}},{"type":"LineString","arcs":[841],"id":2638,"properties":{"V":230}},{"type":"LineString","arcs":[842],"id":2639,"properties":{"V":230}},{"type":"LineString","arcs":[843],"id":2642,"properties":{"V":230}},{"type":"LineString","arcs":[844],"id":2643,"properties":{"V":230}},{"type":"LineString","arcs":[845],"id":2644,"properties":{"V":230}},{"type":"LineString","arcs":[846],"id":2645,"properties":{"V":230}},{"type":"LineString","arcs":[847],"id":2646,"properties":{"V":230}},{"type":"LineString","arcs":[848],"id":2653,"properties":{"V":230}},{"type":"LineString","arcs":[849],"id":2658,"properties":{"V":230}},{"type":"LineString","arcs":[850],"id":2659,"properties":{"V":230}},{"type":"LineString","arcs":[851],"id":2660,"properties":{"V":230}},{"type":"LineString","arcs":[852],"id":2661,"properties":{"V":230}},{"type":"LineString","arcs":[853],"id":2663,"properties":{"V":230}},{"type":"LineString","arcs":[854],"id":2664,"properties":{"V":230}},{"type":"LineString","arcs":[855],"id":2665,"properties":{"V":230}},{"type":"LineString","arcs":[856],"id":2666,"properties":{"V":230}},{"type":"LineString","arcs":[857],"id":2670,"properties":{"V":230}},{"type":"LineString","arcs":[858],"id":2671,"properties":{"V":230}},{"type":"LineString","arcs":[859],"id":2672,"properties":{"V":230}},{"type":"LineString","arcs":[860],"id":2712,"properties":{"V":230}},{"type":"LineString","arcs":[861],"id":2717,"properties":{"V":230}},{"type":"LineString","arcs":[862],"id":2718,"properties":{"V":230}},{"type":"LineString","arcs":[863],"id":2719,"properties":{"V":230}},{"type":"LineString","arcs":[864],"id":2720,"properties":{"V":230}},{"type":"LineString","arcs":[865],"id":2721,"properties":{"V":230}},{"type":"LineString","arcs":[866],"id":2814,"properties":{"V":230}},{"type":"LineString","arcs":[867],"id":2815,"properties":{"V":230}},{"type":"LineString","arcs":[868],"id":2819,"properties":{"V":230}},{"type":"LineString","arcs":[869],"id":2891,"properties":{"V":230}},{"type":"LineString","arcs":[870],"id":3100,"properties":{"V":230}},{"type":"LineString","arcs":[871],"id":3119,"properties":{"V":230}},{"type":"LineString","arcs":[872],"id":3176,"properties":{"V":230}},{"type":"LineString","arcs":[873],"id":3182,"properties":{"V":230}},{"type":"LineString","arcs":[874],"id":3188,"properties":{"V":230}},{"type":"LineString","arcs":[875],"id":3189,"properties":{"V":230}},{"type":"LineString","arcs":[876],"id":3190,"properties":{"V":230}},{"type":"LineString","arcs":[877],"id":3191,"properties":{"V":230}},{"type":"LineString","arcs":[878],"id":3192,"properties":{"V":230}},{"type":"LineString","arcs":[879],"id":3198,"properties":{"V":230}},{"type":"LineString","arcs":[880],"id":3199,"properties":{"V":230}},{"type":"LineString","arcs":[881],"id":3200,"properties":{"V":230}},{"type":"LineString","arcs":[882],"id":3201,"properties":{"V":230}},{"type":"LineString","arcs":[883],"id":3223,"properties":{"V":230}},{"type":"LineString","arcs":[884],"id":3224,"properties":{"V":230}},{"type":"LineString","arcs":[885,886],"id":3226,"properties":{"V":230}},{"type":"LineString","arcs":[887],"id":3227,"properties":{"V":230}},{"type":"LineString","arcs":[888],"id":3239,"properties":{"V":345}},{"type":"LineString","arcs":[889],"id":3243,"properties":{"V":230}},{"type":"LineString","arcs":[890],"id":3245,"properties":{"V":230}},{"type":"LineString","arcs":[891],"id":3247,"properties":{"V":230}},{"type":"LineString","arcs":[892],"id":3250,"properties":{"V":230}},{"type":"LineString","arcs":[893],"id":3251,"properties":{"V":230}},{"type":"LineString","arcs":[894],"id":3255,"properties":{"V":230}},{"type":"LineString","arcs":[895],"id":3259,"properties":{"V":230}},{"type":"LineString","arcs":[896],"id":3260,"properties":{"V":230}},{"type":"LineString","arcs":[897],"id":3261,"properties":{"V":230}},{"type":"LineString","arcs":[898],"id":3262,"properties":{"V":230}},{"type":"LineString","arcs":[899,886],"id":3263,"properties":{"V":230}},{"type":"LineString","arcs":[900],"id":3268,"properties":{"V":230}},{"type":"LineString","arcs":[901],"id":3269,"properties":{"V":230}},{"type":"LineString","arcs":[902],"id":3270,"properties":{"V":230}},{"type":"LineString","arcs":[903],"id":3271,"properties":{"V":230}},{"type":"LineString","arcs":[904],"id":3285,"properties":{"V":230}},{"type":"LineString","arcs":[905],"id":3354,"properties":{"V":230}},{"type":"LineString","arcs":[906],"id":3363,"properties":{"V":230}},{"type":"LineString","arcs":[907],"id":3367,"properties":{"V":230}},{"type":"LineString","arcs":[908],"id":3369,"properties":{"V":230}},{"type":"LineString","arcs":[909],"id":3370,"properties":{"V":230}},{"type":"LineString","arcs":[910],"id":3371,"properties":{"V":230}},{"type":"LineString","arcs":[911],"id":3398,"properties":{"V":230}},{"type":"LineString","arcs":[912],"id":3401,"properties":{"V":230}},{"type":"LineString","arcs":[913],"id":3402,"properties":{"V":230}},{"type":"LineString","arcs":[914],"id":3409,"properties":{"V":230}},{"type":"LineString","arcs":[915],"id":3410,"properties":{"V":230}},{"type":"LineString","arcs":[916],"id":3411,"properties":{"V":230}},{"type":"LineString","arcs":[917],"id":3412,"properties":{"V":230}},{"type":"LineString","arcs":[918],"id":3413,"properties":{"V":230}},{"type":"LineString","arcs":[919],"id":3414,"properties":{"V":230}},{"type":"LineString","arcs":[920],"id":3415,"properties":{"V":230}},{"type":"LineString","arcs":[921],"id":3427,"properties":{"V":230}},{"type":"LineString","arcs":[922],"id":3432,"properties":{"V":230}},{"type":"LineString","arcs":[923],"id":3433,"properties":{"V":230}},{"type":"LineString","arcs":[924],"id":3438,"properties":{"V":230}},{"type":"LineString","arcs":[925],"id":3458,"properties":{"V":230}},{"type":"LineString","arcs":[926],"id":3459,"properties":{"V":230}},{"type":"LineString","arcs":[927],"id":3463,"properties":{"V":230}},{"type":"LineString","arcs":[928],"id":3467,"properties":{"V":230}},{"type":"LineString","arcs":[929],"id":3468,"properties":{"V":230}},{"type":"LineString","arcs":[930],"id":3478,"properties":{"V":230}},{"type":"LineString","arcs":[931],"id":3479,"properties":{"V":230}},{"type":"LineString","arcs":[932],"id":3480,"properties":{"V":230}},{"type":"LineString","arcs":[933],"id":3481,"properties":{"V":230}},{"type":"LineString","arcs":[934],"id":3482,"properties":{"V":230}},{"type":"LineString","arcs":[935],"id":3483,"properties":{"V":230}},{"type":"LineString","arcs":[936],"id":3484,"properties":{"V":230}},{"type":"LineString","arcs":[937],"id":3505,"properties":{"V":230}},{"type":"LineString","arcs":[938],"id":3579,"properties":{"V":230}},{"type":"LineString","arcs":[939],"id":3589,"properties":{"V":230}},{"type":"LineString","arcs":[940],"id":3611,"properties":{"V":230}},{"type":"LineString","arcs":[941],"id":3612,"properties":{"V":230}},{"type":"LineString","arcs":[942],"id":3613,"properties":{"V":230}},{"type":"LineString","arcs":[943],"id":3614,"properties":{"V":230}},{"type":"LineString","arcs":[944],"id":3615,"properties":{"V":230}},{"type":"LineString","arcs":[945],"id":3648,"properties":{"V":230}},{"type":"LineString","arcs":[946],"id":3657,"properties":{"V":230}},{"type":"LineString","arcs":[947],"id":3670,"properties":{"V":230}},{"type":"LineString","arcs":[948],"id":3895,"properties":{"V":230}},{"type":"LineString","arcs":[949],"id":3896,"properties":{"V":345}},{"type":"LineString","arcs":[950],"id":3907,"properties":{"V":230}},{"type":"LineString","arcs":[951],"id":3908,"properties":{"V":230}},{"type":"LineString","arcs":[952],"id":3929,"properties":{"V":230}},{"type":"LineString","arcs":[953],"id":3960,"properties":{"V":500}},{"type":"LineString","arcs":[954],"id":3961,"properties":{"V":500}},{"type":"LineString","arcs":[955],"id":3968,"properties":{"V":230}},{"type":"LineString","arcs":[956],"id":3981,"properties":{"V":230}},{"type":"LineString","arcs":[957],"id":4359,"properties":{"V":230}},{"type":"LineString","arcs":[958],"id":4360,"properties":{"V":230}},{"type":"LineString","arcs":[959],"id":4397,"properties":{"V":230}},{"type":"LineString","arcs":[960],"id":4404,"properties":{"V":230}},{"type":"LineString","arcs":[961],"id":4443,"properties":{"V":230}},{"type":"LineString","arcs":[962],"id":4444,"properties":{"V":230}},{"type":"LineString","arcs":[963],"id":4445,"properties":{"V":230}},{"type":"LineString","arcs":[964],"id":4486,"properties":{"V":230}},{"type":"LineString","arcs":[965],"id":4487,"properties":{"V":230}},{"type":"LineString","arcs":[966],"id":4499,"properties":{"V":230}},{"type":"LineString","arcs":[967],"id":4500,"properties":{"V":230}},{"type":"LineString","arcs":[968],"id":4501,"properties":{"V":230}},{"type":"LineString","arcs":[969],"id":4550,"properties":{"V":230}},{"type":"LineString","arcs":[970],"id":4615,"properties":{"V":230}},{"type":"LineString","arcs":[971],"id":4639,"properties":{"V":230}},{"type":"LineString","arcs":[972],"id":4661,"properties":{"V":230}},{"type":"LineString","arcs":[973],"id":4662,"properties":{"V":230}},{"type":"LineString","arcs":[974],"id":4677,"properties":{"V":230}},{"type":"LineString","arcs":[975],"id":4681,"properties":{"V":230}},{"type":"LineString","arcs":[976],"id":4812,"properties":{"V":230}},{"type":"LineString","arcs":[977],"id":4813,"properties":{"V":230}},{"type":"LineString","arcs":[978],"id":4831,"properties":{"V":230}},{"type":"LineString","arcs":[979],"id":4832,"properties":{"V":230}},{"type":"LineString","arcs":[980],"id":4849,"properties":{"V":230}},{"type":"LineString","arcs":[981],"id":4850,"properties":{"V":230}},{"type":"LineString","arcs":[982],"id":4851,"properties":{"V":230}},{"type":"LineString","arcs":[983],"id":4852,"properties":{"V":230}},{"type":"LineString","arcs":[984],"id":4895,"properties":{"V":230}},{"type":"LineString","arcs":[985],"id":4900,"properties":{"V":230}},{"type":"LineString","arcs":[986],"id":4901,"properties":{"V":230}},{"type":"LineString","arcs":[987,-471],"id":4904,"properties":{"V":230}},{"type":"LineString","arcs":[988],"id":4910,"properties":{"V":230}},{"type":"LineString","arcs":[989],"id":4911,"properties":{"V":230}},{"type":"LineString","arcs":[990],"id":4912,"properties":{"V":230}},{"type":"LineString","arcs":[991],"id":4913,"properties":{"V":230}},{"type":"LineString","arcs":[992],"id":4914,"properties":{"V":230}},{"type":"LineString","arcs":[993],"id":4915,"properties":{"V":230}},{"type":"LineString","arcs":[994],"id":4916,"properties":{"V":230}},{"type":"LineString","arcs":[995],"id":4943,"properties":{"V":345}},{"type":"LineString","arcs":[996],"id":5088,"properties":{"V":230}},{"type":"LineString","arcs":[997],"id":5089,"properties":{"V":230}},{"type":"LineString","arcs":[998],"id":5090,"properties":{"V":230}},{"type":"LineString","arcs":[999],"id":5091,"properties":{"V":230}},{"type":"LineString","arcs":[1000],"id":5092,"properties":{"V":230}},{"type":"LineString","arcs":[1001],"id":5093,"properties":{"V":230}},{"type":"LineString","arcs":[1002],"id":5100,"properties":{"V":230}},{"type":"LineString","arcs":[1003],"id":5169,"properties":{"V":230}},{"type":"LineString","arcs":[1004],"id":5172,"properties":{"V":230}},{"type":"LineString","arcs":[1005],"id":5186,"properties":{"V":230}},{"type":"LineString","arcs":[1006],"id":5187,"properties":{"V":230}},{"type":"LineString","arcs":[1007],"id":5188,"properties":{"V":230}},{"type":"LineString","arcs":[1008],"id":5189,"properties":{"V":230}},{"type":"LineString","arcs":[1009],"id":5190,"properties":{"V":230}},{"type":"LineString","arcs":[1010],"id":5195,"properties":{"V":230}},{"type":"LineString","arcs":[1011],"id":5196,"properties":{"V":230}},{"type":"LineString","arcs":[1012],"id":5200,"properties":{"V":230}},{"type":"LineString","arcs":[1013],"id":5214,"properties":{"V":230}},{"type":"LineString","arcs":[1014],"id":5250,"properties":{"V":230}},{"type":"LineString","arcs":[1015],"id":5252,"properties":{"V":230}},{"type":"LineString","arcs":[1016],"id":5271,"properties":{"V":230}},{"type":"LineString","arcs":[1017],"id":5293,"properties":{"V":230}},{"type":"LineString","arcs":[1018,472],"id":5296,"properties":{"V":230}},{"type":"LineString","arcs":[1019],"id":5297,"properties":{"V":230}},{"type":"LineString","arcs":[1020],"id":5300,"properties":{"V":230}},{"type":"LineString","arcs":[1021],"id":5303,"properties":{"V":230}},{"type":"LineString","arcs":[1022],"id":5304,"properties":{"V":230}},{"type":"LineString","arcs":[1023],"id":5305,"properties":{"V":230}},{"type":"LineString","arcs":[1024],"id":5306,"properties":{"V":230}},{"type":"LineString","arcs":[1025],"id":5307,"properties":{"V":230}},{"type":"LineString","arcs":[1026],"id":5308,"properties":{"V":230}},{"type":"LineString","arcs":[1027],"id":5312,"properties":{"V":230}},{"type":"LineString","arcs":[1028],"id":5320,"properties":{"V":230}},{"type":"LineString","arcs":[1029],"id":5323,"properties":{"V":230}},{"type":"LineString","arcs":[1030],"id":5324,"properties":{"V":230}},{"type":"LineString","arcs":[1031],"id":5336,"properties":{"V":230}},{"type":"LineString","arcs":[1032],"id":5337,"properties":{"V":230}},{"type":"LineString","arcs":[1033],"id":5338,"properties":{"V":230}},{"type":"LineString","arcs":[1034],"id":5339,"properties":{"V":230}},{"type":"LineString","arcs":[1035],"id":5340,"properties":{"V":230}},{"type":"LineString","arcs":[1036],"id":5364,"properties":{"V":230}},{"type":"LineString","arcs":[1037],"id":5371,"properties":{"V":230}},{"type":"LineString","arcs":[1038],"id":5378,"properties":{"V":230}},{"type":"LineString","arcs":[1039],"id":5416,"properties":{"V":230}},{"type":"LineString","arcs":[1040],"id":5417,"properties":{"V":230}},{"type":"LineString","arcs":[1041],"id":5418,"properties":{"V":230}},{"type":"LineString","arcs":[1042],"id":5419,"properties":{"V":230}},{"type":"LineString","arcs":[1043],"id":5420,"properties":{"V":230}},{"type":"LineString","arcs":[1044],"id":5431,"properties":{"V":230}},{"type":"LineString","arcs":[1045],"id":5432,"properties":{"V":230}},{"type":"LineString","arcs":[1046],"id":5433,"properties":{"V":230}},{"type":"LineString","arcs":[1047],"id":5434,"properties":{"V":230}},{"type":"LineString","arcs":[1048],"id":5435,"properties":{"V":230}},{"type":"LineString","arcs":[1049],"id":5436,"properties":{"V":230}},{"type":"LineString","arcs":[1050],"id":5437,"properties":{"V":230}},{"type":"LineString","arcs":[1051],"id":5438,"properties":{"V":230}},{"type":"LineString","arcs":[1052],"id":5439,"properties":{"V":230}},{"type":"LineString","arcs":[1053],"id":5440,"properties":{"V":230}},{"type":"LineString","arcs":[1054,1055],"id":5441,"properties":{"V":230}},{"type":"LineString","arcs":[1056],"id":5442,"properties":{"V":230}},{"type":"LineString","arcs":[1057],"id":5443,"properties":{"V":230}},{"type":"LineString","arcs":[1058],"id":5444,"properties":{"V":230}},{"type":"LineString","arcs":[1059],"id":5445,"properties":{"V":230}},{"type":"LineString","arcs":[1060],"id":5446,"properties":{"V":230}},{"type":"LineString","arcs":[1061],"id":5447,"properties":{"V":230}},{"type":"LineString","arcs":[1062],"id":5448,"properties":{"V":230}},{"type":"LineString","arcs":[1063],"id":5449,"properties":{"V":230}},{"type":"LineString","arcs":[1064],"id":5450,"properties":{"V":230}},{"type":"LineString","arcs":[1065],"id":5451,"properties":{"V":230}},{"type":"LineString","arcs":[1066],"id":5452,"properties":{"V":230}},{"type":"LineString","arcs":[1067],"id":5453,"properties":{"V":230}},{"type":"LineString","arcs":[1068],"id":5454,"properties":{"V":230}},{"type":"LineString","arcs":[1069],"id":5455,"properties":{"V":230}},{"type":"LineString","arcs":[1070],"id":5456,"properties":{"V":230}},{"type":"LineString","arcs":[1071],"id":5457,"properties":{"V":230}},{"type":"LineString","arcs":[1072],"id":5458,"properties":{"V":230}},{"type":"LineString","arcs":[1073],"id":5459,"properties":{"V":230}},{"type":"LineString","arcs":[1074],"id":5460,"properties":{"V":230}},{"type":"LineString","arcs":[1075],"id":5461,"properties":{"V":230}},{"type":"LineString","arcs":[1076],"id":5462,"properties":{"V":230}},{"type":"LineString","arcs":[1077],"id":5463,"properties":{"V":230}},{"type":"LineString","arcs":[1078],"id":5464,"properties":{"V":230}},{"type":"LineString","arcs":[1079],"id":5465,"properties":{"V":230}},{"type":"LineString","arcs":[1080],"id":5466,"properties":{"V":230}},{"type":"LineString","arcs":[1081],"id":5467,"properties":{"V":230}},{"type":"LineString","arcs":[1082],"id":5468,"properties":{"V":230}},{"type":"LineString","arcs":[1083],"id":5469,"properties":{"V":230}},{"type":"LineString","arcs":[1084],"id":5470,"properties":{"V":230}},{"type":"LineString","arcs":[1085],"id":5471,"properties":{"V":230}},{"type":"LineString","arcs":[1086],"id":5481,"properties":{"V":230}},{"type":"LineString","arcs":[1087],"id":5482,"properties":{"V":230}},{"type":"LineString","arcs":[1088],"id":5497,"properties":{"V":230}},{"type":"LineString","arcs":[1089],"id":5498,"properties":{"V":230}},{"type":"LineString","arcs":[1090],"id":5499,"properties":{"V":230}},{"type":"LineString","arcs":[1091],"id":5501,"properties":{"V":230}},{"type":"LineString","arcs":[1092],"id":5537,"properties":{"V":230}},{"type":"LineString","arcs":[1093],"id":5538,"properties":{"V":230}},{"type":"LineString","arcs":[1094],"id":5539,"properties":{"V":230}},{"type":"LineString","arcs":[1095],"id":5540,"properties":{"V":230}},{"type":"LineString","arcs":[1096],"id":5541,"properties":{"V":230}},{"type":"LineString","arcs":[1097],"id":5542,"properties":{"V":230}},{"type":"LineString","arcs":[1098],"id":5543,"properties":{"V":230}},{"type":"LineString","arcs":[1099],"id":5544,"properties":{"V":230}},{"type":"LineString","arcs":[1100],"id":5567,"properties":{"V":230}},{"type":"LineString","arcs":[1101],"id":5568,"properties":{"V":230}},{"type":"LineString","arcs":[1102],"id":5569,"properties":{"V":230}},{"type":"LineString","arcs":[1103],"id":5571,"properties":{"V":230}},{"type":"LineString","arcs":[1104],"id":5586,"properties":{"V":500}},{"type":"LineString","arcs":[1105],"id":5589,"properties":{"V":230}},{"type":"LineString","arcs":[1106],"id":5590,"properties":{"V":230}},{"type":"LineString","arcs":[1107],"id":5598,"properties":{"V":230}},{"type":"LineString","arcs":[1108],"id":5599,"properties":{"V":230}},{"type":"LineString","arcs":[1109],"id":5600,"properties":{"V":230}},{"type":"LineString","arcs":[1110],"id":5601,"properties":{"V":230}},{"type":"LineString","arcs":[1111],"id":5602,"properties":{"V":230}},{"type":"LineString","arcs":[1112],"id":5625,"properties":{"V":230}},{"type":"LineString","arcs":[1113],"id":5630,"properties":{"V":230}},{"type":"LineString","arcs":[1114],"id":5631,"properties":{"V":230}},{"type":"LineString","arcs":[1115],"id":5632,"properties":{"V":230}},{"type":"LineString","arcs":[1116],"id":5633,"properties":{"V":230}},{"type":"LineString","arcs":[1117],"id":5634,"properties":{"V":230}},{"type":"LineString","arcs":[1118],"id":5635,"properties":{"V":230}},{"type":"LineString","arcs":[1119],"id":5656,"properties":{"V":230}},{"type":"LineString","arcs":[1120],"id":5657,"properties":{"V":230}},{"type":"LineString","arcs":[1121],"id":5663,"properties":{"V":500}},{"type":"LineString","arcs":[1122],"id":5664,"properties":{"V":230}},{"type":"LineString","arcs":[1123],"id":5665,"properties":{"V":345}},{"type":"LineString","arcs":[1124],"id":5683,"properties":{"V":230}},{"type":"LineString","arcs":[1125],"id":5686,"properties":{"V":230}},{"type":"LineString","arcs":[1126],"id":5689,"properties":{"V":230}},{"type":"LineString","arcs":[1127],"id":5690,"properties":{"V":230}},{"type":"LineString","arcs":[1128],"id":5693,"properties":{"V":230}},{"type":"LineString","arcs":[1129],"id":5717,"properties":{"V":230}},{"type":"LineString","arcs":[1130],"id":5718,"properties":{"V":230}},{"type":"LineString","arcs":[1131],"id":5719,"properties":{"V":230}},{"type":"LineString","arcs":[1132],"id":5720,"properties":{"V":230}},{"type":"LineString","arcs":[1133],"id":5722,"properties":{"V":230}},{"type":"LineString","arcs":[1134],"id":5730,"properties":{"V":230}},{"type":"LineString","arcs":[1135],"id":5731,"properties":{"V":230}},{"type":"LineString","arcs":[1136],"id":5732,"properties":{"V":230}},{"type":"LineString","arcs":[1137],"id":5741,"properties":{"V":230}},{"type":"LineString","arcs":[1138],"id":5744,"properties":{"V":230}},{"type":"LineString","arcs":[1139],"id":5748,"properties":{"V":230}},{"type":"LineString","arcs":[1140],"id":5749,"properties":{"V":230}},{"type":"LineString","arcs":[1141],"id":5760,"properties":{"V":230}},{"type":"LineString","arcs":[1142],"id":5761,"properties":{"V":230}},{"type":"LineString","arcs":[1143],"id":5762,"properties":{"V":230}},{"type":"LineString","arcs":[1144],"id":5764,"properties":{"V":230}},{"type":"LineString","arcs":[1145],"id":5765,"properties":{"V":230}},{"type":"LineString","arcs":[1146],"id":5766,"properties":{"V":230}},{"type":"LineString","arcs":[1147],"id":5767,"properties":{"V":230}},{"type":"LineString","arcs":[1148],"id":5768,"properties":{"V":230}},{"type":"LineString","arcs":[1149],"id":5769,"properties":{"V":230}},{"type":"LineString","arcs":[1150],"id":5770,"properties":{"V":230}},{"type":"LineString","arcs":[1151],"id":5775,"properties":{"V":230}},{"type":"LineString","arcs":[1152],"id":5776,"properties":{"V":230}},{"type":"LineString","arcs":[1153],"id":5777,"properties":{"V":230}},{"type":"LineString","arcs":[1154],"id":5779,"properties":{"V":230}},{"type":"LineString","arcs":[1155],"id":5780,"properties":{"V":230}},{"type":"LineString","arcs":[1156],"id":5782,"properties":{"V":230}},{"type":"LineString","arcs":[1157],"id":5794,"properties":{"V":230}},{"type":"LineString","arcs":[1158],"id":5800,"properties":{"V":230}},{"type":"LineString","arcs":[1159],"id":5812,"properties":{"V":230}},{"type":"LineString","arcs":[1160],"id":5813,"properties":{"V":230}},{"type":"LineString","arcs":[1161],"id":5822,"properties":{"V":230}},{"type":"LineString","arcs":[1162],"id":5823,"properties":{"V":230}},{"type":"LineString","arcs":[1163],"id":5846,"properties":{"V":230}},{"type":"LineString","arcs":[1164],"id":5849,"properties":{"V":230}},{"type":"LineString","arcs":[1165],"id":5855,"properties":{"V":230}},{"type":"LineString","arcs":[1166],"id":5856,"properties":{"V":230}},{"type":"LineString","arcs":[1167],"id":5857,"properties":{"V":230}},{"type":"LineString","arcs":[1168],"id":5880,"properties":{"V":230}},{"type":"LineString","arcs":[1169],"id":5882,"properties":{"V":230}},{"type":"LineString","arcs":[1170],"id":5884,"properties":{"V":230}},{"type":"LineString","arcs":[1171],"id":5902,"properties":{"V":230}},{"type":"LineString","arcs":[1172],"id":5907,"properties":{"V":275}},{"type":"LineString","arcs":[1173],"id":5920,"properties":{"V":230}},{"type":"LineString","arcs":[1174],"id":5921,"properties":{"V":230}},{"type":"LineString","arcs":[1175],"id":5932,"properties":{"V":230}},{"type":"LineString","arcs":[1176],"id":5985,"properties":{"V":230}},{"type":"LineString","arcs":[1177],"id":5987,"properties":{"V":230}},{"type":"LineString","arcs":[1178],"id":5988,"properties":{"V":345}},{"type":"LineString","arcs":[1179],"id":5989,"properties":{"V":230}},{"type":"LineString","arcs":[1180],"id":5999,"properties":{"V":230}},{"type":"LineString","arcs":[1181],"id":6002,"properties":{"V":230}},{"type":"LineString","arcs":[1182],"id":6003,"properties":{"V":230}},{"type":"LineString","arcs":[1183],"id":6004,"properties":{"V":230}},{"type":"LineString","arcs":[1184],"id":6005,"properties":{"V":230}},{"type":"LineString","arcs":[1185],"id":6030,"properties":{"V":345}},{"type":"LineString","arcs":[1186],"id":6031,"properties":{"V":345}},{"type":"LineString","arcs":[1187],"id":6032,"properties":{"V":345}},{"type":"LineString","arcs":[1188],"id":6036,"properties":{"V":230}},{"type":"LineString","arcs":[1189],"id":6037,"properties":{"V":230}},{"type":"LineString","arcs":[1190],"id":6053,"properties":{"V":230}},{"type":"LineString","arcs":[1191],"id":6056,"properties":{"V":230}},{"type":"LineString","arcs":[1192],"id":6057,"properties":{"V":230}},{"type":"LineString","arcs":[1193],"id":6058,"properties":{"V":230}},{"type":"LineString","arcs":[1194],"id":6059,"properties":{"V":345}},{"type":"LineString","arcs":[1195],"id":6060,"properties":{"V":230}},{"type":"LineString","arcs":[1196],"id":6061,"properties":{"V":230}},{"type":"LineString","arcs":[1197],"id":6062,"properties":{"V":230}},{"type":"LineString","arcs":[1198],"id":6063,"properties":{"V":230}},{"type":"LineString","arcs":[1199],"id":6064,"properties":{"V":230}},{"type":"LineString","arcs":[1200],"id":6065,"properties":{"V":230}},{"type":"LineString","arcs":[1201],"id":6066,"properties":{"V":245}},{"type":"LineString","arcs":[1202],"id":6071,"properties":{"V":230}},{"type":"LineString","arcs":[1203],"id":6072,"properties":{"V":230}},{"type":"LineString","arcs":[1204],"id":6073,"properties":{"V":230}},{"type":"LineString","arcs":[1205],"id":6074,"properties":{"V":230}},{"type":"LineString","arcs":[1206],"id":6081,"properties":{"V":230}},{"type":"LineString","arcs":[1207],"id":6084,"properties":{"V":500}},{"type":"LineString","arcs":[1208],"id":6085,"properties":{"V":500}},{"type":"LineString","arcs":[1209],"id":6086,"properties":{"V":500}},{"type":"LineString","arcs":[1210],"id":6087,"properties":{"V":500}},{"type":"LineString","arcs":[1211],"id":6088,"properties":{"V":500}},{"type":"LineString","arcs":[1212],"id":6089,"properties":{"V":500}},{"type":"LineString","arcs":[1213],"id":6090,"properties":{"V":500}},{"type":"LineString","arcs":[1214],"id":6091,"properties":{"V":500}},{"type":"LineString","arcs":[1215],"id":6092,"properties":{"V":500}},{"type":"LineString","arcs":[1216],"id":6093,"properties":{"V":500}},{"type":"LineString","arcs":[1217],"id":6094,"properties":{"V":500}},{"type":"LineString","arcs":[1218],"id":6101,"properties":{"V":230}},{"type":"LineString","arcs":[1219],"id":6104,"properties":{"V":230}},{"type":"LineString","arcs":[1220],"id":6105,"properties":{"V":230}},{"type":"LineString","arcs":[1221],"id":6106,"properties":{"V":230}},{"type":"LineString","arcs":[1222],"id":6107,"properties":{"V":230}},{"type":"LineString","arcs":[1223],"id":6108,"properties":{"V":230}},{"type":"LineString","arcs":[1224],"id":6110,"properties":{"V":230}},{"type":"LineString","arcs":[1225],"id":6111,"properties":{"V":230}},{"type":"LineString","arcs":[1226],"id":6112,"properties":{"V":230}},{"type":"LineString","arcs":[1227],"id":6113,"properties":{"V":230}},{"type":"LineString","arcs":[1228],"id":6114,"properties":{"V":230}},{"type":"LineString","arcs":[1229],"id":6115,"properties":{"V":500}},{"type":"LineString","arcs":[1230],"id":6116,"properties":{"V":500}},{"type":"LineString","arcs":[1231],"id":6117,"properties":{"V":500}},{"type":"LineString","arcs":[1232],"id":6118,"properties":{"V":230}},{"type":"LineString","arcs":[1233],"id":6120,"properties":{"V":230}},{"type":"LineString","arcs":[1234],"id":6123,"properties":{"V":230}},{"type":"LineString","arcs":[1235],"id":6124,"properties":{"V":230}},{"type":"LineString","arcs":[1236],"id":6125,"properties":{"V":230}},{"type":"LineString","arcs":[1237],"id":6133,"properties":{"V":230}},{"type":"LineString","arcs":[1238],"id":6134,"properties":{"V":230}},{"type":"LineString","arcs":[1239],"id":6135,"properties":{"V":500}},{"type":"LineString","arcs":[1240],"id":6136,"properties":{"V":230}},{"type":"LineString","arcs":[1241],"id":6138,"properties":{"V":230}},{"type":"LineString","arcs":[1242],"id":6139,"properties":{"V":230}},{"type":"LineString","arcs":[1243],"id":6140,"properties":{"V":230}},{"type":"LineString","arcs":[1244],"id":6141,"properties":{"V":230}},{"type":"LineString","arcs":[1245],"id":6142,"properties":{"V":230}},{"type":"LineString","arcs":[1246],"id":6143,"properties":{"V":230}},{"type":"LineString","arcs":[1247],"id":6144,"properties":{"V":230}},{"type":"LineString","arcs":[1248],"id":6145,"properties":{"V":230}},{"type":"LineString","arcs":[1249],"id":6146,"properties":{"V":240}},{"type":"LineString","arcs":[1250],"id":6147,"properties":{"V":240}},{"type":"LineString","arcs":[1251],"id":6148,"properties":{"V":240}},{"type":"LineString","arcs":[1252],"id":6149,"properties":{"V":240}},{"type":"LineString","arcs":[1253],"id":6151,"properties":{"V":500}},{"type":"LineString","arcs":[1254],"id":6152,"properties":{"V":500}},{"type":"LineString","arcs":[1255],"id":6153,"properties":{"V":500}},{"type":"LineString","arcs":[1256],"id":6154,"properties":{"V":500}},{"type":"LineString","arcs":[1257],"id":6155,"properties":{"V":500}},{"type":"LineString","arcs":[1258],"id":6156,"properties":{"V":500}},{"type":"LineString","arcs":[1259],"id":6157,"properties":{"V":500}},{"type":"LineString","arcs":[1260],"id":6165,"properties":{"V":230}},{"type":"LineString","arcs":[1261],"id":6167,"properties":{"V":230}},{"type":"LineString","arcs":[1262],"id":6168,"properties":{"V":230}},{"type":"LineString","arcs":[1263],"id":6169,"properties":{"V":230}},{"type":"LineString","arcs":[1264],"id":6173,"properties":{"V":345}},{"type":"LineString","arcs":[1265],"id":6174,"properties":{"V":345}},{"type":"LineString","arcs":[1266],"id":6175,"properties":{"V":345}},{"type":"LineString","arcs":[1267],"id":6176,"properties":{"V":345}},{"type":"LineString","arcs":[1268],"id":6177,"properties":{"V":345}},{"type":"LineString","arcs":[1269],"id":6178,"properties":{"V":345}},{"type":"LineString","arcs":[1270],"id":6179,"properties":{"V":345}},{"type":"LineString","arcs":[1271],"id":6180,"properties":{"V":230}},{"type":"LineString","arcs":[1272],"id":6181,"properties":{"V":230}},{"type":"LineString","arcs":[1273],"id":6182,"properties":{"V":230}},{"type":"LineString","arcs":[1274],"id":6183,"properties":{"V":230}},{"type":"LineString","arcs":[1275],"id":6185,"properties":{"V":230}},{"type":"LineString","arcs":[1276],"id":6186,"properties":{"V":230}},{"type":"LineString","arcs":[1277],"id":6187,"properties":{"V":230}},{"type":"LineString","arcs":[1278],"id":6188,"properties":{"V":230}},{"type":"LineString","arcs":[1279],"id":6191,"properties":{"V":345}},{"type":"LineString","arcs":[1280],"id":6192,"properties":{"V":345}},{"type":"LineString","arcs":[1281],"id":6193,"properties":{"V":345}},{"type":"LineString","arcs":[1282],"id":6194,"properties":{"V":230}},{"type":"LineString","arcs":[1283],"id":6195,"properties":{"V":230}},{"type":"LineString","arcs":[1284],"id":6196,"properties":{"V":230}},{"type":"LineString","arcs":[1285],"id":6197,"properties":{"V":230}},{"type":"LineString","arcs":[1286],"id":6198,"properties":{"V":230}},{"type":"LineString","arcs":[1287],"id":6199,"properties":{"V":230}},{"type":"LineString","arcs":[1288],"id":6200,"properties":{"V":500}},{"type":"LineString","arcs":[1289],"id":6201,"properties":{"V":230}},{"type":"LineString","arcs":[1290],"id":6202,"properties":{"V":230}},{"type":"LineString","arcs":[1291],"id":6203,"properties":{"V":500}},{"type":"LineString","arcs":[1292],"id":6204,"properties":{"V":230}},{"type":"LineString","arcs":[1293],"id":6205,"properties":{"V":230}},{"type":"LineString","arcs":[1294],"id":6206,"properties":{"V":230}},{"type":"LineString","arcs":[1295],"id":6207,"properties":{"V":230}},{"type":"LineString","arcs":[1296],"id":6208,"properties":{"V":500}},{"type":"LineString","arcs":[1297],"id":6209,"properties":{"V":230}},{"type":"LineString","arcs":[1298],"id":6210,"properties":{"V":230}},{"type":"LineString","arcs":[1299],"id":6211,"properties":{"V":230}},{"type":"LineString","arcs":[1300],"id":6212,"properties":{"V":230}},{"type":"LineString","arcs":[1301],"id":6220,"properties":{"V":345}},{"type":"LineString","arcs":[1302],"id":6221,"properties":{"V":345}},{"type":"LineString","arcs":[1303],"id":6222,"properties":{"V":345}},{"type":"LineString","arcs":[1304],"id":6223,"properties":{"V":230}},{"type":"LineString","arcs":[1305],"id":6224,"properties":{"V":230}},{"type":"LineString","arcs":[1306],"id":6226,"properties":{"V":230}},{"type":"LineString","arcs":[1307],"id":6227,"properties":{"V":230}},{"type":"LineString","arcs":[1308],"id":6228,"properties":{"V":230}},{"type":"LineString","arcs":[1309],"id":6229,"properties":{"V":500}},{"type":"LineString","arcs":[1310],"id":6230,"properties":{"V":500}},{"type":"LineString","arcs":[1311],"id":6231,"properties":{"V":345}},{"type":"LineString","arcs":[1312],"id":6232,"properties":{"V":345}},{"type":"LineString","arcs":[1313],"id":6233,"properties":{"V":230}},{"type":"LineString","arcs":[1314],"id":6234,"properties":{"V":230}},{"type":"LineString","arcs":[1315],"id":6235,"properties":{"V":230}},{"type":"LineString","arcs":[1316],"id":6236,"properties":{"V":230}},{"type":"LineString","arcs":[1317],"id":6237,"properties":{"V":230}},{"type":"LineString","arcs":[1318],"id":6242,"properties":{"V":230}},{"type":"LineString","arcs":[1319],"id":6243,"properties":{"V":230}},{"type":"LineString","arcs":[1320],"id":6244,"properties":{"V":230}},{"type":"LineString","arcs":[1321],"id":6246,"properties":{"V":230}},{"type":"LineString","arcs":[1322],"id":6247,"properties":{"V":230}},{"type":"LineString","arcs":[1323],"id":6248,"properties":{"V":230}},{"type":"LineString","arcs":[1324],"id":6249,"properties":{"V":230}},{"type":"LineString","arcs":[1325],"id":6252,"properties":{"V":230}},{"type":"LineString","arcs":[1326],"id":6253,"properties":{"V":500}},{"type":"LineString","arcs":[1327],"id":6254,"properties":{"V":500}},{"type":"LineString","arcs":[1328],"id":6255,"properties":{"V":230}},{"type":"LineString","arcs":[1329],"id":6256,"properties":{"V":230}},{"type":"LineString","arcs":[1330],"id":6257,"properties":{"V":230}},{"type":"LineString","arcs":[1331],"id":6259,"properties":{"V":230}},{"type":"LineString","arcs":[1332],"id":6262,"properties":{"V":230}},{"type":"LineString","arcs":[1333],"id":6263,"properties":{"V":230}},{"type":"LineString","arcs":[1334],"id":6264,"properties":{"V":230}},{"type":"LineString","arcs":[1335],"id":6265,"properties":{"V":230}},{"type":"LineString","arcs":[1336],"id":6266,"properties":{"V":230}},{"type":"LineString","arcs":[1337],"id":6267,"properties":{"V":230}},{"type":"LineString","arcs":[1338],"id":6268,"properties":{"V":230}},{"type":"LineString","arcs":[1339],"id":6269,"properties":{"V":230}},{"type":"LineString","arcs":[1340],"id":6270,"properties":{"V":230}},{"type":"LineString","arcs":[1341],"id":6271,"properties":{"V":230}},{"type":"LineString","arcs":[1342],"id":6273,"properties":{"V":345}},{"type":"LineString","arcs":[1343],"id":6274,"properties":{"V":345}},{"type":"LineString","arcs":[1344],"id":6275,"properties":{"V":230}},{"type":"LineString","arcs":[1345],"id":6276,"properties":{"V":230}},{"type":"LineString","arcs":[1346],"id":6281,"properties":{"V":230}},{"type":"LineString","arcs":[1347],"id":6284,"properties":{"V":230}},{"type":"LineString","arcs":[1348],"id":6285,"properties":{"V":230}},{"type":"LineString","arcs":[1349],"id":6286,"properties":{"V":230}},{"type":"LineString","arcs":[1350],"id":6287,"properties":{"V":230}},{"type":"LineString","arcs":[1351],"id":6290,"properties":{"V":230}},{"type":"LineString","arcs":[1352],"id":6294,"properties":{"V":230}},{"type":"LineString","arcs":[1353],"id":6295,"properties":{"V":230}},{"type":"LineString","arcs":[1354],"id":6296,"properties":{"V":230}},{"type":"LineString","arcs":[1355],"id":6298,"properties":{"V":230}},{"type":"LineString","arcs":[1356],"id":6299,"properties":{"V":230}},{"type":"LineString","arcs":[1357],"id":6300,"properties":{"V":230}},{"type":"LineString","arcs":[1358],"id":6301,"properties":{"V":230}},{"type":"LineString","arcs":[1359],"id":6302,"properties":{"V":230}},{"type":"LineString","arcs":[1360],"id":6303,"properties":{"V":230}},{"type":"LineString","arcs":[1361],"id":6304,"properties":{"V":230}},{"type":"LineString","arcs":[1362],"id":6306,"properties":{"V":230}},{"type":"LineString","arcs":[1363],"id":6309,"properties":{"V":230}},{"type":"LineString","arcs":[1364],"id":6310,"properties":{"V":230}},{"type":"LineString","arcs":[1365],"id":6311,"properties":{"V":230}},{"type":"LineString","arcs":[1366],"id":6316,"properties":{"V":500}},{"type":"LineString","arcs":[1367],"id":6317,"properties":{"V":230}},{"type":"LineString","arcs":[1368],"id":6318,"properties":{"V":230}},{"type":"LineString","arcs":[1369],"id":6325,"properties":{"V":230}},{"type":"LineString","arcs":[1370],"id":6326,"properties":{"V":345}},{"type":"LineString","arcs":[1371],"id":6328,"properties":{"V":230}},{"type":"LineString","arcs":[1372],"id":6329,"properties":{"V":230}},{"type":"LineString","arcs":[1373],"id":6330,"properties":{"V":230}},{"type":"LineString","arcs":[1374],"id":6334,"properties":{"V":230}},{"type":"LineString","arcs":[1375],"id":6335,"properties":{"V":230}},{"type":"LineString","arcs":[1376],"id":6336,"properties":{"V":345}},{"type":"LineString","arcs":[1377],"id":6337,"properties":{"V":230}},{"type":"LineString","arcs":[1378],"id":6338,"properties":{"V":230}},{"type":"LineString","arcs":[1379],"id":6339,"properties":{"V":230}},{"type":"LineString","arcs":[1380],"id":6340,"properties":{"V":230}},{"type":"LineString","arcs":[1381],"id":6341,"properties":{"V":230}},{"type":"LineString","arcs":[1382],"id":6344,"properties":{"V":230}},{"type":"LineString","arcs":[1383],"id":6368,"properties":{"V":230}},{"type":"LineString","arcs":[1384],"id":6387,"properties":{"V":230}},{"type":"LineString","arcs":[1385],"id":6393,"properties":{"V":230}},{"type":"LineString","arcs":[1386],"id":6395,"properties":{"V":500}},{"type":"LineString","arcs":[1387],"id":6398,"properties":{"V":230}},{"type":"LineString","arcs":[1388],"id":6399,"properties":{"V":230}},{"type":"LineString","arcs":[1389],"id":6400,"properties":{"V":230}},{"type":"LineString","arcs":[1390],"id":6401,"properties":{"V":230}},{"type":"LineString","arcs":[1391],"id":6402,"properties":{"V":500}},{"type":"LineString","arcs":[1392],"id":6403,"properties":{"V":500}},{"type":"LineString","arcs":[1393],"id":6404,"properties":{"V":345}},{"type":"LineString","arcs":[1394],"id":6405,"properties":{"V":345}},{"type":"LineString","arcs":[1395],"id":6406,"properties":{"V":230}},{"type":"LineString","arcs":[1396],"id":6408,"properties":{"V":230}},{"type":"LineString","arcs":[1397],"id":6409,"properties":{"V":230}},{"type":"LineString","arcs":[1398],"id":6411,"properties":{"V":230}},{"type":"LineString","arcs":[1399],"id":6412,"properties":{"V":230}},{"type":"LineString","arcs":[1400],"id":6413,"properties":{"V":230}},{"type":"LineString","arcs":[1401],"id":6416,"properties":{"V":230}},{"type":"LineString","arcs":[1402],"id":6417,"properties":{"V":230}},{"type":"LineString","arcs":[1403],"id":6420,"properties":{"V":230}},{"type":"LineString","arcs":[1404],"id":6421,"properties":{"V":230}},{"type":"LineString","arcs":[1405],"id":6442,"properties":{"V":500}},{"type":"LineString","arcs":[1406],"id":6443,"properties":{"V":500}},{"type":"LineString","arcs":[1407],"id":6444,"properties":{"V":500}},{"type":"LineString","arcs":[1408],"id":6445,"properties":{"V":500}},{"type":"LineString","arcs":[1409],"id":6446,"properties":{"V":500}},{"type":"LineString","arcs":[1410],"id":6447,"properties":{"V":500}},{"type":"LineString","arcs":[1411],"id":6448,"properties":{"V":345}},{"type":"LineString","arcs":[1412],"id":6449,"properties":{"V":345}},{"type":"LineString","arcs":[1413],"id":6450,"properties":{"V":345}},{"type":"LineString","arcs":[1414],"id":6452,"properties":{"V":230}},{"type":"LineString","arcs":[1415],"id":6453,"properties":{"V":230}},{"type":"LineString","arcs":[1416],"id":6454,"properties":{"V":230}},{"type":"LineString","arcs":[1417],"id":6455,"properties":{"V":230}},{"type":"LineString","arcs":[1418],"id":6456,"properties":{"V":230}},{"type":"LineString","arcs":[1419],"id":6457,"properties":{"V":230}},{"type":"LineString","arcs":[1420],"id":6458,"properties":{"V":230}},{"type":"LineString","arcs":[1421],"id":6459,"properties":{"V":230}},{"type":"LineString","arcs":[1422],"id":6460,"properties":{"V":230}},{"type":"LineString","arcs":[1423],"id":6461,"properties":{"V":230}},{"type":"LineString","arcs":[1424],"id":6462,"properties":{"V":230}},{"type":"LineString","arcs":[1425],"id":6463,"properties":{"V":230}},{"type":"LineString","arcs":[1426],"id":6464,"properties":{"V":230}},{"type":"LineString","arcs":[1427],"id":6465,"properties":{"V":230}},{"type":"LineString","arcs":[1428],"id":6466,"properties":{"V":500}},{"type":"LineString","arcs":[1429],"id":6467,"properties":{"V":500}},{"type":"LineString","arcs":[1430],"id":6468,"properties":{"V":230}},{"type":"LineString","arcs":[1431],"id":6469,"properties":{"V":230}},{"type":"LineString","arcs":[1432],"id":6470,"properties":{"V":230}},{"type":"LineString","arcs":[1433],"id":6471,"properties":{"V":230}},{"type":"LineString","arcs":[1434],"id":6472,"properties":{"V":230}},{"type":"LineString","arcs":[1435],"id":6475,"properties":{"V":230}},{"type":"LineString","arcs":[1436],"id":6481,"properties":{"V":230}},{"type":"LineString","arcs":[1437],"id":6482,"properties":{"V":230}},{"type":"LineString","arcs":[1438],"id":6483,"properties":{"V":230}},{"type":"LineString","arcs":[1439],"id":6484,"properties":{"V":230}},{"type":"LineString","arcs":[1440],"id":6485,"properties":{"V":230}},{"type":"LineString","arcs":[1441],"id":6486,"properties":{"V":230}},{"type":"LineString","arcs":[1442],"id":6487,"properties":{"V":230}},{"type":"LineString","arcs":[1443],"id":6488,"properties":{"V":230}},{"type":"LineString","arcs":[1444],"id":6489,"properties":{"V":230}},{"type":"LineString","arcs":[1445],"id":6490,"properties":{"V":230}},{"type":"LineString","arcs":[1446],"id":6491,"properties":{"V":230}},{"type":"LineString","arcs":[1447],"id":6492,"properties":{"V":230}},{"type":"LineString","arcs":[1448],"id":6493,"properties":{"V":230}},{"type":"LineString","arcs":[1449],"id":6494,"properties":{"V":230}},{"type":"LineString","arcs":[1450],"id":6497,"properties":{"V":230}},{"type":"LineString","arcs":[1451],"id":6501,"properties":{"V":230}},{"type":"LineString","arcs":[1452],"id":6514,"properties":{"V":230}},{"type":"LineString","arcs":[1453],"id":6515,"properties":{"V":230}},{"type":"LineString","arcs":[1454],"id":6536,"properties":{"V":230}},{"type":"LineString","arcs":[1455],"id":6537,"properties":{"V":230}},{"type":"LineString","arcs":[1456],"id":6539,"properties":{"V":230}},{"type":"LineString","arcs":[1457],"id":6540,"properties":{"V":230}},{"type":"LineString","arcs":[1458],"id":6542,"properties":{"V":230}},{"type":"LineString","arcs":[1459],"id":6543,"properties":{"V":230}},{"type":"LineString","arcs":[1460],"id":6555,"properties":{"V":230}},{"type":"LineString","arcs":[1461],"id":6556,"properties":{"V":230}},{"type":"LineString","arcs":[1462],"id":6685,"properties":{"V":230}},{"type":"LineString","arcs":[1463],"id":6709,"properties":{"V":230}},{"type":"LineString","arcs":[1464],"id":6710,"properties":{"V":230}},{"type":"LineString","arcs":[1465],"id":6713,"properties":{"V":230}},{"type":"LineString","arcs":[1466],"id":6717,"properties":{"V":230}},{"type":"LineString","arcs":[1467],"id":6719,"properties":{"V":230}},{"type":"LineString","arcs":[1468],"id":6742,"properties":{"V":230}},{"type":"LineString","arcs":[1469],"id":6749,"properties":{"V":275}},{"type":"LineString","arcs":[1470],"id":6751,"properties":{"V":230}},{"type":"LineString","arcs":[1471],"id":6762,"properties":{"V":230}},{"type":"LineString","arcs":[1472],"id":6768,"properties":{"V":345}},{"type":"LineString","arcs":[1473],"id":6774,"properties":{"V":230}},{"type":"LineString","arcs":[1474],"id":6793,"properties":{"V":230}},{"type":"LineString","arcs":[1475],"id":6794,"properties":{"V":230}},{"type":"LineString","arcs":[1476],"id":6795,"properties":{"V":230}},{"type":"LineString","arcs":[1477],"id":6796,"properties":{"V":230}},{"type":"LineString","arcs":[1478],"id":6797,"properties":{"V":230}},{"type":"LineString","arcs":[1479],"id":6813,"properties":{"V":230}},{"type":"LineString","arcs":[1480],"id":6822,"properties":{"V":230}},{"type":"LineString","arcs":[1481],"id":6827,"properties":{"V":230}},{"type":"LineString","arcs":[1482],"id":6828,"properties":{"V":230}},{"type":"MultiLineString","arcs":[[1483],[1484]],"id":6848,"properties":{"V":230}},{"type":"LineString","arcs":[1485],"id":6849,"properties":{"V":230}},{"type":"LineString","arcs":[1486],"id":6855,"properties":{"V":230}},{"type":"LineString","arcs":[1487],"id":6888,"properties":{"V":230}},{"type":"LineString","arcs":[1488],"id":6892,"properties":{"V":230}},{"type":"LineString","arcs":[1489],"id":6893,"properties":{"V":230}},{"type":"LineString","arcs":[1490],"id":6894,"properties":{"V":230}},{"type":"LineString","arcs":[1491],"id":6935,"properties":{"V":230}},{"type":"LineString","arcs":[1492],"id":6951,"properties":{"V":345}},{"type":"LineString","arcs":[1493],"id":7005,"properties":{"V":230}},{"type":"LineString","arcs":[1494],"id":7006,"properties":{"V":230}},{"type":"LineString","arcs":[1495],"id":7139,"properties":{"V":230}},{"type":"LineString","arcs":[1496],"id":7140,"properties":{"V":230}},{"type":"LineString","arcs":[1497],"id":7141,"properties":{"V":230}},{"type":"LineString","arcs":[1498],"id":7142,"properties":{"V":230}},{"type":"LineString","arcs":[1499],"id":7143,"properties":{"V":230}},{"type":"LineString","arcs":[1500],"id":7144,"properties":{"V":230}},{"type":"LineString","arcs":[1501],"id":7145,"properties":{"V":230}},{"type":"LineString","arcs":[1502],"id":7146,"properties":{"V":230}},{"type":"LineString","arcs":[1503],"id":7147,"properties":{"V":230}},{"type":"LineString","arcs":[1504],"id":7148,"properties":{"V":230}},{"type":"LineString","arcs":[1505],"id":7149,"properties":{"V":230}},{"type":"LineString","arcs":[1506],"id":7150,"properties":{"V":230}},{"type":"LineString","arcs":[1507],"id":7151,"properties":{"V":230}},{"type":"LineString","arcs":[1508],"id":7152,"properties":{"V":230}},{"type":"LineString","arcs":[1509],"id":7153,"properties":{"V":230}},{"type":"LineString","arcs":[1510],"id":7154,"properties":{"V":230}},{"type":"LineString","arcs":[1511],"id":7155,"properties":{"V":230}},{"type":"LineString","arcs":[1512],"id":7156,"properties":{"V":230}},{"type":"LineString","arcs":[1513],"id":7157,"properties":{"V":230}},{"type":"LineString","arcs":[1514],"id":7158,"properties":{"V":230}},{"type":"LineString","arcs":[1515],"id":7159,"properties":{"V":230}},{"type":"LineString","arcs":[1516],"id":7160,"properties":{"V":230}},{"type":"LineString","arcs":[1517],"id":7190,"properties":{"V":230}},{"type":"LineString","arcs":[1518],"id":7191,"properties":{"V":230}},{"type":"LineString","arcs":[1519],"id":7192,"properties":{"V":230}},{"type":"LineString","arcs":[1520],"id":7193,"properties":{"V":230}},{"type":"LineString","arcs":[1521],"id":7198,"properties":{"V":230}},{"type":"LineString","arcs":[1522],"id":7200,"properties":{"V":230}},{"type":"LineString","arcs":[1523],"id":7201,"properties":{"V":230}},{"type":"LineString","arcs":[1524],"id":7202,"properties":{"V":230}},{"type":"LineString","arcs":[1525],"id":7203,"properties":{"V":230}},{"type":"LineString","arcs":[1526],"id":7204,"properties":{"V":230}},{"type":"LineString","arcs":[1527],"id":7205,"properties":{"V":230}},{"type":"LineString","arcs":[1528],"id":7206,"properties":{"V":230}},{"type":"LineString","arcs":[1529],"id":7207,"properties":{"V":230}},{"type":"LineString","arcs":[1530],"id":7208,"properties":{"V":230}},{"type":"LineString","arcs":[1531],"id":7209,"properties":{"V":230}},{"type":"LineString","arcs":[1532],"id":7210,"properties":{"V":230}},{"type":"LineString","arcs":[1533],"id":7212,"properties":{"V":230}},{"type":"LineString","arcs":[1534],"id":7213,"properties":{"V":230}},{"type":"LineString","arcs":[1535],"id":7214,"properties":{"V":230}},{"type":"LineString","arcs":[1536],"id":7215,"properties":{"V":230}},{"type":"LineString","arcs":[1537],"id":7216,"properties":{"V":230}},{"type":"LineString","arcs":[1538],"id":7217,"properties":{"V":230}},{"type":"LineString","arcs":[1539],"id":7218,"properties":{"V":230}},{"type":"LineString","arcs":[1540],"id":7219,"properties":{"V":230}},{"type":"LineString","arcs":[1541],"id":7220,"properties":{"V":230}},{"type":"LineString","arcs":[1542],"id":7221,"properties":{"V":230}},{"type":"LineString","arcs":[1543],"id":7222,"properties":{"V":230}},{"type":"LineString","arcs":[1544],"id":7223,"properties":{"V":230}},{"type":"LineString","arcs":[1545],"id":7224,"properties":{"V":230}},{"type":"LineString","arcs":[1546],"id":7225,"properties":{"V":230}},{"type":"LineString","arcs":[1547],"id":7226,"properties":{"V":230}},{"type":"LineString","arcs":[1548],"id":7409,"properties":{"V":230}},{"type":"LineString","arcs":[1549],"id":7410,"properties":{"V":230}},{"type":"LineString","arcs":[1550],"id":7411,"properties":{"V":230}},{"type":"LineString","arcs":[1551],"id":7412,"properties":{"V":230}},{"type":"LineString","arcs":[1552],"id":7423,"properties":{"V":230}},{"type":"LineString","arcs":[1553],"id":7464,"properties":{"V":230}},{"type":"LineString","arcs":[1554],"id":7465,"properties":{"V":230}},{"type":"LineString","arcs":[1555],"id":7468,"properties":{"V":230}},{"type":"LineString","arcs":[1556],"id":7469,"properties":{"V":230}},{"type":"LineString","arcs":[1557],"id":7470,"properties":{"V":230}},{"type":"LineString","arcs":[1558],"id":7471,"properties":{"V":230}},{"type":"LineString","arcs":[1559],"id":7475,"properties":{"V":230}},{"type":"LineString","arcs":[1560],"id":7476,"properties":{"V":230}},{"type":"LineString","arcs":[1561],"id":7477,"properties":{"V":230}},{"type":"LineString","arcs":[1562],"id":7480,"properties":{"V":230}},{"type":"LineString","arcs":[1563],"id":7496,"properties":{"V":275}},{"type":"LineString","arcs":[1564],"id":7497,"properties":{"V":230}},{"type":"LineString","arcs":[1565],"id":7521,"properties":{"V":230}},{"type":"LineString","arcs":[1566],"id":7675,"properties":{"V":230}},{"type":"LineString","arcs":[1567],"id":7723,"properties":{"V":230}},{"type":"LineString","arcs":[1568],"id":7757,"properties":{"V":230}},{"type":"LineString","arcs":[1569],"id":7758,"properties":{"V":230}},{"type":"LineString","arcs":[1570],"id":7810,"properties":{"V":230}},{"type":"LineString","arcs":[1571],"id":7891,"properties":{"V":230}},{"type":"LineString","arcs":[1572],"id":7968,"properties":{"V":230}},{"type":"LineString","arcs":[1573],"id":8395,"properties":{"V":230}},{"type":"LineString","arcs":[1574],"id":8440,"properties":{"V":500}},{"type":"LineString","arcs":[1575],"id":8626,"properties":{"V":230}},{"type":"LineString","arcs":[1576],"id":8627,"properties":{"V":230}},{"type":"LineString","arcs":[1577],"id":8852,"properties":{"V":500}},{"type":"LineString","arcs":[1578],"id":9232,"properties":{"V":500}},{"type":"LineString","arcs":[1579],"id":9494,"properties":{"V":230}},{"type":"LineString","arcs":[1580],"id":10090,"properties":{"V":230}},{"type":"LineString","arcs":[1581],"id":10427,"properties":{"V":500}},{"type":"LineString","arcs":[1582],"id":10472,"properties":{"V":230}},{"type":"LineString","arcs":[1583],"id":10491,"properties":{"V":230}},{"type":"LineString","arcs":[1584],"id":10648,"properties":{"V":230}},{"type":"LineString","arcs":[1585],"id":10649,"properties":{"V":230}},{"type":"LineString","arcs":[1586],"id":10650,"properties":{"V":230}},{"type":"LineString","arcs":[1587],"id":10651,"properties":{"V":230}},{"type":"LineString","arcs":[1588],"id":10652,"properties":{"V":230}},{"type":"LineString","arcs":[1589],"id":10653,"properties":{"V":230}},{"type":"LineString","arcs":[1590],"id":10654,"properties":{"V":230}},{"type":"LineString","arcs":[1591],"id":10655,"properties":{"V":230}},{"type":"LineString","arcs":[1592],"id":10658,"properties":{"V":230}},{"type":"LineString","arcs":[1593],"id":10723,"properties":{"V":230}},{"type":"LineString","arcs":[1594],"id":10724,"properties":{"V":230}},{"type":"LineString","arcs":[1595],"id":10725,"properties":{"V":230}},{"type":"LineString","arcs":[1596],"id":10726,"properties":{"V":345}},{"type":"LineString","arcs":[1597],"id":10804,"properties":{"V":230}},{"type":"LineString","arcs":[1598],"id":10981,"properties":{"V":230}},{"type":"LineString","arcs":[1599],"id":11383,"properties":{"V":230}},{"type":"LineString","arcs":[1600],"id":11389,"properties":{"V":230}},{"type":"LineString","arcs":[1601],"id":11390,"properties":{"V":230}},{"type":"LineString","arcs":[1602],"id":11392,"properties":{"V":230}},{"type":"LineString","arcs":[1603],"id":11393,"properties":{"V":345}},{"type":"LineString","arcs":[1604],"id":11395,"properties":{"V":345}},{"type":"LineString","arcs":[1605],"id":11981,"properties":{"V":230}},{"type":"LineString","arcs":[1606],"id":11982,"properties":{"V":230}},{"type":"LineString","arcs":[1607],"id":12061,"properties":{"V":230}},{"type":"LineString","arcs":[1608],"id":12096,"properties":{"V":230}},{"type":"LineString","arcs":[1609],"id":12116,"properties":{"V":230}},{"type":"LineString","arcs":[1610,1611],"id":12117,"properties":{"V":230}},{"type":"LineString","arcs":[1612],"id":12118,"properties":{"V":230}},{"type":"LineString","arcs":[1613],"id":12119,"properties":{"V":230}},{"type":"LineString","arcs":[1614],"id":12142,"properties":{"V":230}},{"type":"LineString","arcs":[1615],"id":12144,"properties":{"V":230}},{"type":"LineString","arcs":[1616],"id":12145,"properties":{"V":230}},{"type":"LineString","arcs":[1617],"id":12153,"properties":{"V":230}},{"type":"LineString","arcs":[1618],"id":12258,"properties":{"V":230}},{"type":"LineString","arcs":[1619],"id":12268,"properties":{"V":230}},{"type":"LineString","arcs":[1620],"id":12315,"properties":{"V":230}},{"type":"LineString","arcs":[1621],"id":12339,"properties":{"V":230}},{"type":"LineString","arcs":[1622],"id":12371,"properties":{"V":230}},{"type":"LineString","arcs":[1623],"id":12378,"properties":{"V":230}},{"type":"LineString","arcs":[1624],"id":12386,"properties":{"V":230}},{"type":"LineString","arcs":[1625],"id":12421,"properties":{"V":345}},{"type":"LineString","arcs":[1626],"id":12546,"properties":{"V":345}},{"type":"LineString","arcs":[1627],"id":12610,"properties":{"V":345}},{"type":"LineString","arcs":[1628],"id":12635,"properties":{"V":230}},{"type":"LineString","arcs":[1629],"id":12653,"properties":{"V":230}},{"type":"LineString","arcs":[1630],"id":12654,"properties":{"V":230}},{"type":"LineString","arcs":[1631],"id":12655,"properties":{"V":230}},{"type":"LineString","arcs":[1632],"id":12682,"properties":{"V":345}},{"type":"LineString","arcs":[1633],"id":12683,"properties":{"V":345}},{"type":"LineString","arcs":[1634],"id":12691,"properties":{"V":230}},{"type":"LineString","arcs":[1635],"id":12697,"properties":{"V":230}},{"type":"LineString","arcs":[1636],"id":12698,"properties":{"V":230}},{"type":"LineString","arcs":[1637],"id":12813,"properties":{"V":230}},{"type":"LineString","arcs":[1638],"id":12824,"properties":{"V":345}},{"type":"LineString","arcs":[1639],"id":12853,"properties":{"V":230}},{"type":"LineString","arcs":[1640],"id":12863,"properties":{"V":230}},{"type":"LineString","arcs":[1641],"id":12875,"properties":{"V":345}},{"type":"LineString","arcs":[1642],"id":12903,"properties":{"V":230}},{"type":"LineString","arcs":[1643],"id":12913,"properties":{"V":230}},{"type":"LineString","arcs":[1644],"id":12920,"properties":{"V":230}},{"type":"LineString","arcs":[1645],"id":12944,"properties":{"V":345}},{"type":"LineString","arcs":[1646],"id":12953,"properties":{"V":500}},{"type":"LineString","arcs":[1647],"id":12989,"properties":{"V":230}},{"type":"LineString","arcs":[1648],"id":12992,"properties":{"V":230}},{"type":"LineString","arcs":[1649],"id":13003,"properties":{"V":230}},{"type":"LineString","arcs":[1650],"id":13016,"properties":{"V":230}},{"type":"LineString","arcs":[1651],"id":13026,"properties":{"V":345}},{"type":"LineString","arcs":[1652],"id":13046,"properties":{"V":230}},{"type":"LineString","arcs":[1653],"id":13083,"properties":{"V":230}},{"type":"LineString","arcs":[1654],"id":13090,"properties":{"V":345}},{"type":"LineString","arcs":[1655,1656],"id":13095,"properties":{"V":230}},{"type":"LineString","arcs":[1657],"id":13113,"properties":{"V":230}},{"type":"LineString","arcs":[1658],"id":13131,"properties":{"V":500}},{"type":"LineString","arcs":[1659],"id":13133,"properties":{"V":345}},{"type":"LineString","arcs":[1660,1661],"id":13134,"properties":{"V":230}},{"type":"LineString","arcs":[1662],"id":13137,"properties":{"V":230}},{"type":"LineString","arcs":[1663],"id":13143,"properties":{"V":345}},{"type":"LineString","arcs":[1664],"id":13148,"properties":{"V":500}},{"type":"LineString","arcs":[1665],"id":13162,"properties":{"V":230}},{"type":"LineString","arcs":[1666],"id":13166,"properties":{"V":345}},{"type":"LineString","arcs":[1667],"id":13172,"properties":{"V":230}},{"type":"LineString","arcs":[1668],"id":13184,"properties":{"V":230}},{"type":"LineString","arcs":[1669],"id":13190,"properties":{"V":230}},{"type":"LineString","arcs":[1670],"id":13210,"properties":{"V":500}},{"type":"LineString","arcs":[1671],"id":13220,"properties":{"V":230}},{"type":"LineString","arcs":[1672],"id":13223,"properties":{"V":230}},{"type":"LineString","arcs":[1673],"id":13242,"properties":{"V":230}},{"type":"LineString","arcs":[1674],"id":13246,"properties":{"V":500}},{"type":"LineString","arcs":[1675],"id":13247,"properties":{"V":230}},{"type":"LineString","arcs":[1676],"id":13264,"properties":{"V":230}},{"type":"LineString","arcs":[1677],"id":13280,"properties":{"V":230}},{"type":"LineString","arcs":[1678],"id":13288,"properties":{"V":500}},{"type":"LineString","arcs":[1679],"id":13295,"properties":{"V":230}},{"type":"LineString","arcs":[1680],"id":13318,"properties":{"V":230}},{"type":"LineString","arcs":[1681],"id":13332,"properties":{"V":345}},{"type":"LineString","arcs":[1682],"id":13333,"properties":{"V":230}},{"type":"LineString","arcs":[1683],"id":13340,"properties":{"V":345}},{"type":"LineString","arcs":[1684],"id":13352,"properties":{"V":345}},{"type":"LineString","arcs":[1685],"id":13354,"properties":{"V":230}},{"type":"LineString","arcs":[1686],"id":13361,"properties":{"V":230}},{"type":"LineString","arcs":[1687],"id":13364,"properties":{"V":345}},{"type":"LineString","arcs":[1688],"id":13371,"properties":{"V":230}},{"type":"LineString","arcs":[1689],"id":13372,"properties":{"V":230}},{"type":"LineString","arcs":[1690],"id":13381,"properties":{"V":345}},{"type":"LineString","arcs":[1691],"id":13386,"properties":{"V":230}},{"type":"LineString","arcs":[1692],"id":13442,"properties":{"V":230}},{"type":"LineString","arcs":[1693],"id":13446,"properties":{"V":230}},{"type":"LineString","arcs":[1694],"id":13456,"properties":{"V":345}},{"type":"LineString","arcs":[1695,1696],"id":13457,"properties":{"V":230}},{"type":"LineString","arcs":[1697],"id":13460,"properties":{"V":230}},{"type":"LineString","arcs":[1698],"id":13475,"properties":{"V":230}},{"type":"LineString","arcs":[1699],"id":13478,"properties":{"V":230}},{"type":"LineString","arcs":[1700],"id":13492,"properties":{"V":230}},{"type":"LineString","arcs":[1701],"id":13493,"properties":{"V":345}},{"type":"LineString","arcs":[1702],"id":13496,"properties":{"V":345}},{"type":"LineString","arcs":[1703,1704,1705],"id":13512,"properties":{"V":345}},{"type":"LineString","arcs":[1706],"id":13515,"properties":{"V":230}},{"type":"LineString","arcs":[1707],"id":13520,"properties":{"V":230}},{"type":"LineString","arcs":[1708],"id":13527,"properties":{"V":230}},{"type":"LineString","arcs":[1709],"id":13528,"properties":{"V":230}},{"type":"LineString","arcs":[1710],"id":13529,"properties":{"V":230}},{"type":"LineString","arcs":[1711],"id":13559,"properties":{"V":345}},{"type":"LineString","arcs":[1712],"id":13563,"properties":{"V":230}},{"type":"LineString","arcs":[1713],"id":13571,"properties":{"V":345}},{"type":"LineString","arcs":[1714],"id":13587,"properties":{"V":230}},{"type":"LineString","arcs":[1715],"id":13630,"properties":{"V":345}},{"type":"LineString","arcs":[1716],"id":13638,"properties":{"V":230}},{"type":"LineString","arcs":[1717],"id":13650,"properties":{"V":500}},{"type":"LineString","arcs":[1718],"id":13670,"properties":{"V":230}},{"type":"LineString","arcs":[1719],"id":13678,"properties":{"V":230}},{"type":"LineString","arcs":[1720],"id":13681,"properties":{"V":230}},{"type":"LineString","arcs":[1721],"id":13686,"properties":{"V":230}},{"type":"LineString","arcs":[1722],"id":13695,"properties":{"V":345}},{"type":"LineString","arcs":[1723],"id":13698,"properties":{"V":345}},{"type":"LineString","arcs":[1724],"id":13714,"properties":{"V":230}},{"type":"LineString","arcs":[1725],"id":13721,"properties":{"V":345}},{"type":"LineString","arcs":[1726],"id":13751,"properties":{"V":230}},{"type":"LineString","arcs":[1727],"id":13771,"properties":{"V":230}},{"type":"LineString","arcs":[1728],"id":13775,"properties":{"V":230}},{"type":"LineString","arcs":[1729],"id":13777,"properties":{"V":230}},{"type":"LineString","arcs":[1730],"id":13808,"properties":{"V":230}},{"type":"LineString","arcs":[1731],"id":13840,"properties":{"V":230}},{"type":"LineString","arcs":[1732],"id":13849,"properties":{"V":345}},{"type":"LineString","arcs":[1733],"id":13851,"properties":{"V":230}},{"type":"LineString","arcs":[1734],"id":13857,"properties":{"V":230}},{"type":"LineString","arcs":[1735],"id":13888,"properties":{"V":345}},{"type":"LineString","arcs":[1736,1737,1738,1739,1740,1741],"id":13912,"properties":{"V":500}},{"type":"LineString","arcs":[1742],"id":13923,"properties":{"V":230}},{"type":"LineString","arcs":[1743],"id":13926,"properties":{"V":345}},{"type":"LineString","arcs":[1744],"id":13930,"properties":{"V":500}},{"type":"LineString","arcs":[1745],"id":13943,"properties":{"V":230}},{"type":"LineString","arcs":[1746],"id":13949,"properties":{"V":345}},{"type":"LineString","arcs":[1747],"id":13961,"properties":{"V":230}},{"type":"LineString","arcs":[1748],"id":13981,"properties":{"V":345}},{"type":"LineString","arcs":[1749],"id":13987,"properties":{"V":345}},{"type":"LineString","arcs":[1750],"id":13989,"properties":{"V":345}},{"type":"LineString","arcs":[1751],"id":13990,"properties":{"V":345}},{"type":"LineString","arcs":[1752],"id":13993,"properties":{"V":230}},{"type":"LineString","arcs":[1753],"id":14002,"properties":{"V":345}},{"type":"LineString","arcs":[1754],"id":14029,"properties":{"V":345}},{"type":"LineString","arcs":[1755],"id":14049,"properties":{"V":230}},{"type":"LineString","arcs":[1756,1757,1758,1759,1760],"id":14051,"properties":{"V":500}},{"type":"LineString","arcs":[1761],"id":14056,"properties":{"V":345}},{"type":"LineString","arcs":[1762],"id":14062,"properties":{"V":230}},{"type":"LineString","arcs":[1763],"id":14079,"properties":{"V":230}},{"type":"LineString","arcs":[1764],"id":14091,"properties":{"V":230}},{"type":"LineString","arcs":[1765],"id":14095,"properties":{"V":345}},{"type":"LineString","arcs":[1766],"id":14098,"properties":{"V":230}},{"type":"LineString","arcs":[1767],"id":14100,"properties":{"V":230}},{"type":"LineString","arcs":[1768],"id":14111,"properties":{"V":230}},{"type":"LineString","arcs":[1769],"id":14112,"properties":{"V":345}},{"type":"LineString","arcs":[1770],"id":14119,"properties":{"V":345}},{"type":"LineString","arcs":[1771],"id":14125,"properties":{"V":345}},{"type":"LineString","arcs":[1772],"id":14132,"properties":{"V":230}},{"type":"LineString","arcs":[1773],"id":14137,"properties":{"V":345}},{"type":"LineString","arcs":[1774],"id":14140,"properties":{"V":345}},{"type":"LineString","arcs":[1775],"id":14141,"properties":{"V":345}},{"type":"LineString","arcs":[1776],"id":14144,"properties":{"V":230}},{"type":"LineString","arcs":[1777],"id":14153,"properties":{"V":230}},{"type":"LineString","arcs":[1778],"id":14154,"properties":{"V":230}},{"type":"LineString","arcs":[1779],"id":14156,"properties":{"V":230}},{"type":"LineString","arcs":[1780],"id":14177,"properties":{"V":345}},{"type":"LineString","arcs":[1781],"id":14208,"properties":{"V":230}},{"type":"LineString","arcs":[1782],"id":14209,"properties":{"V":500}},{"type":"LineString","arcs":[1783],"id":14210,"properties":{"V":230}},{"type":"LineString","arcs":[1784],"id":14222,"properties":{"V":230}},{"type":"LineString","arcs":[1785],"id":14223,"properties":{"V":230}},{"type":"LineString","arcs":[1786],"id":14225,"properties":{"V":230}},{"type":"LineString","arcs":[1787],"id":14244,"properties":{"V":230}},{"type":"LineString","arcs":[1788],"id":14255,"properties":{"V":345}},{"type":"LineString","arcs":[1789],"id":14265,"properties":{"V":230}},{"type":"LineString","arcs":[1790],"id":14271,"properties":{"V":345}},{"type":"LineString","arcs":[1791],"id":14272,"properties":{"V":230}},{"type":"LineString","arcs":[1792],"id":14273,"properties":{"V":345}},{"type":"LineString","arcs":[1793],"id":14279,"properties":{"V":230}},{"type":"LineString","arcs":[1794],"id":14280,"properties":{"V":230}},{"type":"LineString","arcs":[1795],"id":14292,"properties":{"V":230}},{"type":"LineString","arcs":[1796],"id":14300,"properties":{"V":230}},{"type":"LineString","arcs":[1797],"id":14306,"properties":{"V":230}},{"type":"LineString","arcs":[1798],"id":14310,"properties":{"V":345}},{"type":"LineString","arcs":[1799],"id":14311,"properties":{"V":345}},{"type":"LineString","arcs":[1800],"id":14312,"properties":{"V":230}},{"type":"LineString","arcs":[1801],"id":14326,"properties":{"V":500}},{"type":"LineString","arcs":[1802],"id":14329,"properties":{"V":230}},{"type":"LineString","arcs":[1803],"id":14332,"properties":{"V":230}},{"type":"LineString","arcs":[1804],"id":14343,"properties":{"V":345}},{"type":"LineString","arcs":[1805],"id":14350,"properties":{"V":230}},{"type":"LineString","arcs":[1806],"id":14360,"properties":{"V":230}},{"type":"LineString","arcs":[1807],"id":14364,"properties":{"V":230}},{"type":"LineString","arcs":[1808],"id":14375,"properties":{"V":230}},{"type":"LineString","arcs":[1809],"id":14382,"properties":{"V":345}},{"type":"LineString","arcs":[1810],"id":14387,"properties":{"V":500}},{"type":"LineString","arcs":[1811,1812,1813,1814],"id":14389,"properties":{"V":230}},{"type":"LineString","arcs":[1815],"id":14391,"properties":{"V":345}},{"type":"LineString","arcs":[1816],"id":14400,"properties":{"V":345}},{"type":"LineString","arcs":[1817],"id":14402,"properties":{"V":345}},{"type":"LineString","arcs":[1818],"id":14405,"properties":{"V":230}},{"type":"LineString","arcs":[1819],"id":14408,"properties":{"V":230}},{"type":"LineString","arcs":[1820],"id":14416,"properties":{"V":230}},{"type":"LineString","arcs":[1821],"id":14426,"properties":{"V":230}},{"type":"LineString","arcs":[1822],"id":14438,"properties":{"V":500}},{"type":"LineString","arcs":[1823],"id":14441,"properties":{"V":345}},{"type":"LineString","arcs":[1824],"id":14444,"properties":{"V":230}},{"type":"LineString","arcs":[1825],"id":14452,"properties":{"V":230}},{"type":"LineString","arcs":[1826],"id":14457,"properties":{"V":345}},{"type":"LineString","arcs":[1827],"id":14461,"properties":{"V":345}},{"type":"LineString","arcs":[1828],"id":14473,"properties":{"V":230}},{"type":"LineString","arcs":[1829],"id":14485,"properties":{"V":230}},{"type":"LineString","arcs":[1830],"id":14499,"properties":{"V":230}},{"type":"LineString","arcs":[1831],"id":14514,"properties":{"V":230}},{"type":"LineString","arcs":[1832],"id":14516,"properties":{"V":230}},{"type":"LineString","arcs":[1833,1834],"id":14517,"properties":{"V":230}},{"type":"LineString","arcs":[1835],"id":14519,"properties":{"V":230}},{"type":"LineString","arcs":[1836],"id":14527,"properties":{"V":500}},{"type":"LineString","arcs":[1837],"id":14532,"properties":{"V":345}},{"type":"LineString","arcs":[1838],"id":14537,"properties":{"V":230}},{"type":"LineString","arcs":[1839],"id":14550,"properties":{"V":230}},{"type":"LineString","arcs":[1840],"id":14566,"properties":{"V":500}},{"type":"LineString","arcs":[1841],"id":14572,"properties":{"V":230}},{"type":"LineString","arcs":[1842],"id":14573,"properties":{"V":500}},{"type":"LineString","arcs":[1843],"id":14590,"properties":{"V":345}},{"type":"LineString","arcs":[1844],"id":14596,"properties":{"V":230}},{"type":"LineString","arcs":[1845],"id":14602,"properties":{"V":500}},{"type":"LineString","arcs":[1846],"id":14604,"properties":{"V":500}},{"type":"LineString","arcs":[1847],"id":14610,"properties":{"V":230}},{"type":"LineString","arcs":[1848],"id":14611,"properties":{"V":345}},{"type":"LineString","arcs":[1849,1850],"id":14612,"properties":{"V":345}},{"type":"LineString","arcs":[1851],"id":14613,"properties":{"V":230}},{"type":"LineString","arcs":[1852],"id":14624,"properties":{"V":230}},{"type":"LineString","arcs":[1853],"id":14626,"properties":{"V":345}},{"type":"LineString","arcs":[1854],"id":14636,"properties":{"V":230}},{"type":"LineString","arcs":[1855],"id":14641,"properties":{"V":230}},{"type":"LineString","arcs":[1856],"id":14646,"properties":{"V":500}},{"type":"LineString","arcs":[1857,1858,1859],"id":14656,"properties":{"V":345}},{"type":"LineString","arcs":[1860],"id":14658,"properties":{"V":230}},{"type":"LineString","arcs":[1861],"id":14662,"properties":{"V":345}},{"type":"LineString","arcs":[1862],"id":14669,"properties":{"V":230}},{"type":"LineString","arcs":[1863,1864,1865],"id":14671,"properties":{"V":345}},{"type":"LineString","arcs":[1866],"id":14675,"properties":{"V":230}},{"type":"LineString","arcs":[1867],"id":14682,"properties":{"V":230}},{"type":"LineString","arcs":[1868],"id":14684,"properties":{"V":230}},{"type":"LineString","arcs":[1869],"id":14697,"properties":{"V":230}},{"type":"LineString","arcs":[1870],"id":14704,"properties":{"V":230}},{"type":"LineString","arcs":[1871],"id":14707,"properties":{"V":345}},{"type":"LineString","arcs":[1872],"id":14714,"properties":{"V":345}},{"type":"LineString","arcs":[1873,1874],"id":14718,"properties":{"V":230}},{"type":"LineString","arcs":[1875],"id":14719,"properties":{"V":345}},{"type":"LineString","arcs":[1876],"id":14730,"properties":{"V":345}},{"type":"LineString","arcs":[1877],"id":14740,"properties":{"V":230}},{"type":"LineString","arcs":[1878],"id":14751,"properties":{"V":500}},{"type":"LineString","arcs":[1879],"id":14752,"properties":{"V":230}},{"type":"LineString","arcs":[1880],"id":14758,"properties":{"V":345}},{"type":"LineString","arcs":[1881],"id":14762,"properties":{"V":230}},{"type":"LineString","arcs":[1882],"id":14764,"properties":{"V":230}},{"type":"LineString","arcs":[1883],"id":14768,"properties":{"V":345}},{"type":"LineString","arcs":[1884],"id":14775,"properties":{"V":345}},{"type":"LineString","arcs":[1885],"id":14808,"properties":{"V":345}},{"type":"LineString","arcs":[1886],"id":14816,"properties":{"V":345}},{"type":"LineString","arcs":[1887],"id":14822,"properties":{"V":230}},{"type":"LineString","arcs":[1888],"id":14827,"properties":{"V":345}},{"type":"LineString","arcs":[1889],"id":14829,"properties":{"V":230}},{"type":"LineString","arcs":[1890],"id":14838,"properties":{"V":230}},{"type":"LineString","arcs":[1891],"id":14849,"properties":{"V":500}},{"type":"LineString","arcs":[1892],"id":14851,"properties":{"V":230}},{"type":"LineString","arcs":[1893],"id":14852,"properties":{"V":345}},{"type":"LineString","arcs":[1894],"id":14863,"properties":{"V":230}},{"type":"LineString","arcs":[1895],"id":14865,"properties":{"V":230}},{"type":"LineString","arcs":[1896],"id":14867,"properties":{"V":230}},{"type":"LineString","arcs":[1897],"id":14868,"properties":{"V":230}},{"type":"LineString","arcs":[1898],"id":14876,"properties":{"V":230}},{"type":"LineString","arcs":[1899],"id":14891,"properties":{"V":345}},{"type":"LineString","arcs":[1900,1901,1902,1903,1904,1905,1906,1907],"id":14892,"properties":{"V":345}},{"type":"LineString","arcs":[1908],"id":14895,"properties":{"V":500}},{"type":"LineString","arcs":[1909],"id":14896,"properties":{"V":500}},{"type":"LineString","arcs":[1910],"id":14898,"properties":{"V":230}},{"type":"LineString","arcs":[1911],"id":14933,"properties":{"V":230}},{"type":"LineString","arcs":[1912],"id":14939,"properties":{"V":230}},{"type":"LineString","arcs":[1913],"id":14942,"properties":{"V":230}},{"type":"LineString","arcs":[1914],"id":14946,"properties":{"V":345}},{"type":"LineString","arcs":[1915],"id":14953,"properties":{"V":500}},{"type":"LineString","arcs":[1916],"id":14964,"properties":{"V":345}},{"type":"LineString","arcs":[1917],"id":14967,"properties":{"V":345}},{"type":"LineString","arcs":[1918],"id":14974,"properties":{"V":230}},{"type":"LineString","arcs":[1919],"id":14975,"properties":{"V":230}},{"type":"LineString","arcs":[1920],"id":14976,"properties":{"V":230}},{"type":"LineString","arcs":[1921],"id":14977,"properties":{"V":345}},{"type":"LineString","arcs":[1922],"id":14980,"properties":{"V":230}},{"type":"LineString","arcs":[1923],"id":14984,"properties":{"V":230}},{"type":"LineString","arcs":[1924],"id":14990,"properties":{"V":230}},{"type":"LineString","arcs":[1925],"id":14991,"properties":{"V":230}},{"type":"LineString","arcs":[1926,1927,1928],"id":14992,"properties":{"V":500}},{"type":"LineString","arcs":[1929],"id":14996,"properties":{"V":230}},{"type":"LineString","arcs":[1930],"id":15002,"properties":{"V":230}},{"type":"LineString","arcs":[1931],"id":15005,"properties":{"V":230}},{"type":"LineString","arcs":[1932],"id":15013,"properties":{"V":230}},{"type":"LineString","arcs":[1933],"id":15022,"properties":{"V":230}},{"type":"LineString","arcs":[1934],"id":15023,"properties":{"V":345}},{"type":"LineString","arcs":[1935],"id":15047,"properties":{"V":345}},{"type":"LineString","arcs":[1936],"id":15054,"properties":{"V":230}},{"type":"LineString","arcs":[1937],"id":15063,"properties":{"V":345}},{"type":"LineString","arcs":[1938],"id":15079,"properties":{"V":230}},{"type":"LineString","arcs":[1939],"id":15083,"properties":{"V":230}},{"type":"LineString","arcs":[1940,1941],"id":15084,"properties":{"V":230}},{"type":"LineString","arcs":[1942],"id":15108,"properties":{"V":345}},{"type":"LineString","arcs":[1943],"id":15148,"properties":{"V":230}},{"type":"LineString","arcs":[1944],"id":15152,"properties":{"V":345}},{"type":"LineString","arcs":[1945],"id":15162,"properties":{"V":230}},{"type":"LineString","arcs":[1946],"id":15174,"properties":{"V":230}},{"type":"LineString","arcs":[1947],"id":15176,"properties":{"V":230}},{"type":"LineString","arcs":[1948],"id":15186,"properties":{"V":345}},{"type":"LineString","arcs":[1949],"id":15195,"properties":{"V":345}},{"type":"LineString","arcs":[1950,1951],"id":15202,"properties":{"V":230}},{"type":"LineString","arcs":[1952],"id":15216,"properties":{"V":230}},{"type":"LineString","arcs":[1953],"id":15221,"properties":{"V":230}},{"type":"LineString","arcs":[1954],"id":15234,"properties":{"V":230}},{"type":"LineString","arcs":[1955],"id":15236,"properties":{"V":230}},{"type":"LineString","arcs":[1956],"id":15237,"properties":{"V":345}},{"type":"LineString","arcs":[1957],"id":15270,"properties":{"V":230}},{"type":"LineString","arcs":[1958],"id":15280,"properties":{"V":345}},{"type":"LineString","arcs":[1959],"id":15282,"properties":{"V":345}},{"type":"LineString","arcs":[1960],"id":15307,"properties":{"V":230}},{"type":"LineString","arcs":[1961],"id":15310,"properties":{"V":345}},{"type":"LineString","arcs":[1962],"id":15327,"properties":{"V":345}},{"type":"LineString","arcs":[1963],"id":15328,"properties":{"V":230}},{"type":"LineString","arcs":[1964],"id":15339,"properties":{"V":230}},{"type":"LineString","arcs":[1965],"id":15347,"properties":{"V":345}},{"type":"LineString","arcs":[1966],"id":15348,"properties":{"V":230}},{"type":"LineString","arcs":[1967],"id":15353,"properties":{"V":230}},{"type":"LineString","arcs":[1968],"id":15354,"properties":{"V":345}},{"type":"LineString","arcs":[1969],"id":15357,"properties":{"V":230}},{"type":"LineString","arcs":[1970],"id":15363,"properties":{"V":230}},{"type":"LineString","arcs":[1971],"id":15367,"properties":{"V":230}},{"type":"LineString","arcs":[1972],"id":15368,"properties":{"V":345}},{"type":"LineString","arcs":[1973],"id":15381,"properties":{"V":230}},{"type":"LineString","arcs":[1974],"id":15384,"properties":{"V":230}},{"type":"LineString","arcs":[1975],"id":15393,"properties":{"V":230}},{"type":"LineString","arcs":[1976],"id":15394,"properties":{"V":230}},{"type":"LineString","arcs":[1977,1978],"id":15407,"properties":{"V":345}},{"type":"LineString","arcs":[1979],"id":15413,"properties":{"V":500}},{"type":"LineString","arcs":[1980],"id":15414,"properties":{"V":345}},{"type":"LineString","arcs":[1981],"id":15417,"properties":{"V":230}},{"type":"LineString","arcs":[1982],"id":15420,"properties":{"V":230}},{"type":"LineString","arcs":[1983],"id":15430,"properties":{"V":230}},{"type":"LineString","arcs":[1984],"id":15433,"properties":{"V":230}},{"type":"LineString","arcs":[1985],"id":15437,"properties":{"V":345}},{"type":"LineString","arcs":[1986],"id":15439,"properties":{"V":230}},{"type":"LineString","arcs":[1987],"id":15440,"properties":{"V":230}},{"type":"LineString","arcs":[1988],"id":15441,"properties":{"V":230}},{"type":"LineString","arcs":[1989],"id":15452,"properties":{"V":345}},{"type":"LineString","arcs":[1990],"id":15456,"properties":{"V":230}},{"type":"LineString","arcs":[1991],"id":15475,"properties":{"V":230}},{"type":"LineString","arcs":[1992],"id":15479,"properties":{"V":230}},{"type":"LineString","arcs":[1993],"id":15489,"properties":{"V":345}},{"type":"LineString","arcs":[1994],"id":15495,"properties":{"V":345}},{"type":"LineString","arcs":[1995],"id":15534,"properties":{"V":230}},{"type":"LineString","arcs":[1996],"id":15536,"properties":{"V":230}},{"type":"LineString","arcs":[1997],"id":15537,"properties":{"V":230}},{"type":"LineString","arcs":[1998],"id":15545,"properties":{"V":345}},{"type":"LineString","arcs":[1999],"id":15554,"properties":{"V":230}},{"type":"LineString","arcs":[2000],"id":15564,"properties":{"V":230}},{"type":"LineString","arcs":[2001],"id":15567,"properties":{"V":230}},{"type":"LineString","arcs":[2002],"id":15581,"properties":{"V":500}},{"type":"LineString","arcs":[2003],"id":15609,"properties":{"V":345}},{"type":"LineString","arcs":[2004],"id":15610,"properties":{"V":230}},{"type":"LineString","arcs":[2005],"id":15617,"properties":{"V":230}},{"type":"LineString","arcs":[2006],"id":15621,"properties":{"V":230}},{"type":"LineString","arcs":[2007],"id":15622,"properties":{"V":230}},{"type":"LineString","arcs":[2008],"id":15623,"properties":{"V":230}},{"type":"LineString","arcs":[2009],"id":15624,"properties":{"V":230}},{"type":"LineString","arcs":[2010],"id":15627,"properties":{"V":230}},{"type":"LineString","arcs":[2011],"id":15631,"properties":{"V":345}},{"type":"LineString","arcs":[2012],"id":15632,"properties":{"V":230}},{"type":"LineString","arcs":[2013,2014],"id":15634,"properties":{"V":500}},{"type":"LineString","arcs":[2015,2016],"id":15636,"properties":{"V":345}},{"type":"LineString","arcs":[2017,2018],"id":15657,"properties":{"V":345}},{"type":"LineString","arcs":[2019],"id":15658,"properties":{"V":345}},{"type":"LineString","arcs":[2020],"id":15659,"properties":{"V":230}},{"type":"LineString","arcs":[2021],"id":15661,"properties":{"V":230}},{"type":"LineString","arcs":[2022],"id":15664,"properties":{"V":230}},{"type":"LineString","arcs":[2023],"id":15680,"properties":{"V":230}},{"type":"LineString","arcs":[2024],"id":15697,"properties":{"V":345}},{"type":"LineString","arcs":[2025],"id":15700,"properties":{"V":230}},{"type":"LineString","arcs":[2026],"id":15702,"properties":{"V":230}},{"type":"LineString","arcs":[2027],"id":15716,"properties":{"V":345}},{"type":"LineString","arcs":[2028],"id":15717,"properties":{"V":230}},{"type":"LineString","arcs":[2029],"id":15718,"properties":{"V":230}},{"type":"LineString","arcs":[2030],"id":15732,"properties":{"V":345}},{"type":"LineString","arcs":[2031],"id":15735,"properties":{"V":345}},{"type":"LineString","arcs":[2032],"id":15739,"properties":{"V":345}},{"type":"LineString","arcs":[2033],"id":15748,"properties":{"V":345}},{"type":"LineString","arcs":[2034],"id":15759,"properties":{"V":230}},{"type":"LineString","arcs":[2035],"id":15760,"properties":{"V":230}},{"type":"LineString","arcs":[2036],"id":15765,"properties":{"V":345}},{"type":"LineString","arcs":[2037],"id":15769,"properties":{"V":230}},{"type":"LineString","arcs":[2038],"id":15778,"properties":{"V":230}},{"type":"MultiLineString","arcs":[[2039],[2040]],"id":15791,"properties":{"V":345}},{"type":"LineString","arcs":[2041],"id":15816,"properties":{"V":230}},{"type":"LineString","arcs":[2042],"id":15838,"properties":{"V":345}},{"type":"LineString","arcs":[2043],"id":15843,"properties":{"V":230}},{"type":"LineString","arcs":[2044],"id":15847,"properties":{"V":230}},{"type":"LineString","arcs":[2045],"id":15849,"properties":{"V":345}},{"type":"LineString","arcs":[2046],"id":15852,"properties":{"V":230}},{"type":"LineString","arcs":[-1662,2047],"id":15855,"properties":{"V":230}},{"type":"LineString","arcs":[2048],"id":15861,"properties":{"V":345}},{"type":"LineString","arcs":[2049],"id":15867,"properties":{"V":230}},{"type":"LineString","arcs":[2050],"id":15872,"properties":{"V":230}},{"type":"LineString","arcs":[2051],"id":15876,"properties":{"V":230}},{"type":"LineString","arcs":[2052],"id":15878,"properties":{"V":230}},{"type":"LineString","arcs":[2053],"id":15888,"properties":{"V":345}},{"type":"LineString","arcs":[2054],"id":15898,"properties":{"V":345}},{"type":"LineString","arcs":[2055,2056],"id":15902,"properties":{"V":345}},{"type":"LineString","arcs":[2057],"id":15912,"properties":{"V":230}},{"type":"LineString","arcs":[2058],"id":15914,"properties":{"V":345}},{"type":"LineString","arcs":[2059],"id":15916,"properties":{"V":500}},{"type":"LineString","arcs":[2060],"id":15921,"properties":{"V":345}},{"type":"LineString","arcs":[2061],"id":15922,"properties":{"V":345}},{"type":"LineString","arcs":[2062],"id":15925,"properties":{"V":345}},{"type":"LineString","arcs":[2063],"id":15934,"properties":{"V":230}},{"type":"LineString","arcs":[2064],"id":15939,"properties":{"V":230}},{"type":"LineString","arcs":[2065],"id":15959,"properties":{"V":230}},{"type":"LineString","arcs":[2066],"id":15961,"properties":{"V":230}},{"type":"LineString","arcs":[2067],"id":15966,"properties":{"V":230}},{"type":"MultiLineString","arcs":[[2068],[2069]],"id":15967,"properties":{"V":230}},{"type":"LineString","arcs":[2070],"id":15968,"properties":{"V":230}},{"type":"LineString","arcs":[2071],"id":15971,"properties":{"V":500}},{"type":"LineString","arcs":[2072],"id":15976,"properties":{"V":230}},{"type":"LineString","arcs":[2073],"id":15977,"properties":{"V":500}},{"type":"LineString","arcs":[2074],"id":15986,"properties":{"V":345}},{"type":"LineString","arcs":[2075],"id":15994,"properties":{"V":230}},{"type":"LineString","arcs":[2076,2077,2078],"id":16012,"properties":{"V":345}},{"type":"LineString","arcs":[2079],"id":16014,"properties":{"V":230}},{"type":"LineString","arcs":[2080],"id":16015,"properties":{"V":345}},{"type":"LineString","arcs":[2081],"id":16027,"properties":{"V":230}},{"type":"LineString","arcs":[2082],"id":16033,"properties":{"V":230}},{"type":"LineString","arcs":[2083,2084,2085,2086],"id":16035,"properties":{"V":230}},{"type":"LineString","arcs":[2087],"id":16039,"properties":{"V":500}},{"type":"LineString","arcs":[2088],"id":16082,"properties":{"V":500}},{"type":"LineString","arcs":[2089],"id":16090,"properties":{"V":345}},{"type":"LineString","arcs":[2090],"id":16092,"properties":{"V":230}},{"type":"LineString","arcs":[2091],"id":16100,"properties":{"V":230}},{"type":"LineString","arcs":[2092],"id":16117,"properties":{"V":230}},{"type":"LineString","arcs":[2093],"id":16121,"properties":{"V":230}},{"type":"LineString","arcs":[2094],"id":16125,"properties":{"V":230}},{"type":"LineString","arcs":[2095],"id":16128,"properties":{"V":230}},{"type":"LineString","arcs":[2096],"id":16147,"properties":{"V":230}},{"type":"LineString","arcs":[2097],"id":16166,"properties":{"V":345}},{"type":"LineString","arcs":[2098],"id":16172,"properties":{"V":230}},{"type":"LineString","arcs":[2099],"id":16196,"properties":{"V":345}},{"type":"LineString","arcs":[2100],"id":16199,"properties":{"V":230}},{"type":"LineString","arcs":[2101,2102],"id":16202,"properties":{"V":230}},{"type":"LineString","arcs":[2103],"id":16207,"properties":{"V":230}},{"type":"LineString","arcs":[2104],"id":16209,"properties":{"V":230}},{"type":"LineString","arcs":[2105],"id":16213,"properties":{"V":230}},{"type":"LineString","arcs":[2106],"id":16216,"properties":{"V":500}},{"type":"LineString","arcs":[2107],"id":16217,"properties":{"V":230}},{"type":"LineString","arcs":[2108],"id":16221,"properties":{"V":345}},{"type":"LineString","arcs":[2109],"id":16232,"properties":{"V":230}},{"type":"LineString","arcs":[2110],"id":16237,"properties":{"V":230}},{"type":"LineString","arcs":[2111],"id":16238,"properties":{"V":230}},{"type":"LineString","arcs":[2112],"id":16239,"properties":{"V":345}},{"type":"LineString","arcs":[2113,2114],"id":16245,"properties":{"V":230}},{"type":"LineString","arcs":[2115],"id":16251,"properties":{"V":230}},{"type":"LineString","arcs":[2116],"id":16263,"properties":{"V":345}},{"type":"LineString","arcs":[2117],"id":16268,"properties":{"V":230}},{"type":"LineString","arcs":[2118],"id":16272,"properties":{"V":345}},{"type":"LineString","arcs":[2119],"id":16279,"properties":{"V":230}},{"type":"LineString","arcs":[2120],"id":16294,"properties":{"V":230}},{"type":"LineString","arcs":[2121],"id":16319,"properties":{"V":230}},{"type":"LineString","arcs":[2122],"id":16335,"properties":{"V":345}},{"type":"LineString","arcs":[2123],"id":16337,"properties":{"V":345}},{"type":"LineString","arcs":[2124],"id":16338,"properties":{"V":345}},{"type":"LineString","arcs":[2125],"id":16342,"properties":{"V":230}},{"type":"LineString","arcs":[2126],"id":16346,"properties":{"V":230}},{"type":"LineString","arcs":[2127,2128,2129,2130],"id":16354,"properties":{"V":230}},{"type":"LineString","arcs":[2131],"id":16362,"properties":{"V":345}},{"type":"LineString","arcs":[2132],"id":16375,"properties":{"V":230}},{"type":"LineString","arcs":[2133],"id":16381,"properties":{"V":230}},{"type":"LineString","arcs":[2134],"id":16411,"properties":{"V":230}},{"type":"LineString","arcs":[2135],"id":16413,"properties":{"V":345}},{"type":"LineString","arcs":[2136],"id":16421,"properties":{"V":345}},{"type":"LineString","arcs":[2137],"id":16444,"properties":{"V":500}},{"type":"LineString","arcs":[2138],"id":16459,"properties":{"V":230}},{"type":"LineString","arcs":[2139],"id":16461,"properties":{"V":230}},{"type":"LineString","arcs":[2140],"id":16462,"properties":{"V":230}},{"type":"LineString","arcs":[2141],"id":16470,"properties":{"V":345}},{"type":"LineString","arcs":[2142],"id":16480,"properties":{"V":500}},{"type":"LineString","arcs":[2143],"id":16508,"properties":{"V":345}},{"type":"LineString","arcs":[2144],"id":16513,"properties":{"V":230}},{"type":"LineString","arcs":[2145],"id":16518,"properties":{"V":230}},{"type":"LineString","arcs":[2146,2147,2148],"id":16535,"properties":{"V":230}},{"type":"LineString","arcs":[2149],"id":16551,"properties":{"V":345}},{"type":"LineString","arcs":[2150],"id":16554,"properties":{"V":345}},{"type":"LineString","arcs":[2151],"id":16560,"properties":{"V":230}},{"type":"LineString","arcs":[2152,2153],"id":16562,"properties":{"V":345}},{"type":"LineString","arcs":[2154],"id":16567,"properties":{"V":230}},{"type":"LineString","arcs":[2155],"id":16568,"properties":{"V":345}},{"type":"LineString","arcs":[2156],"id":16571,"properties":{"V":230}},{"type":"LineString","arcs":[2157,2158,2159],"id":16573,"properties":{"V":345}},{"type":"LineString","arcs":[2160],"id":16593,"properties":{"V":230}},{"type":"LineString","arcs":[2161],"id":16598,"properties":{"V":230}},{"type":"LineString","arcs":[2162],"id":16600,"properties":{"V":345}},{"type":"LineString","arcs":[2163],"id":16602,"properties":{"V":230}},{"type":"LineString","arcs":[2164],"id":16612,"properties":{"V":230}},{"type":"LineString","arcs":[2165],"id":16619,"properties":{"V":230}},{"type":"LineString","arcs":[2166],"id":16624,"properties":{"V":230}},{"type":"LineString","arcs":[2167,2168],"id":16636,"properties":{"V":345}},{"type":"LineString","arcs":[2169],"id":16655,"properties":{"V":500}},{"type":"LineString","arcs":[2170],"id":16666,"properties":{"V":230}},{"type":"LineString","arcs":[2171],"id":16681,"properties":{"V":230}},{"type":"LineString","arcs":[2172],"id":16684,"properties":{"V":230}},{"type":"LineString","arcs":[2173],"id":16709,"properties":{"V":230}},{"type":"LineString","arcs":[2174],"id":16726,"properties":{"V":230}},{"type":"LineString","arcs":[2175],"id":16743,"properties":{"V":345}},{"type":"LineString","arcs":[2176],"id":16749,"properties":{"V":345}},{"type":"LineString","arcs":[2177],"id":16760,"properties":{"V":345}},{"type":"LineString","arcs":[2178],"id":16765,"properties":{"V":230}},{"type":"LineString","arcs":[2179],"id":16771,"properties":{"V":345}},{"type":"LineString","arcs":[2180],"id":16774,"properties":{"V":230}},{"type":"LineString","arcs":[2181],"id":16777,"properties":{"V":230}},{"type":"LineString","arcs":[2182],"id":16781,"properties":{"V":230}},{"type":"LineString","arcs":[2183],"id":16807,"properties":{"V":230}},{"type":"LineString","arcs":[2184],"id":16811,"properties":{"V":345}},{"type":"LineString","arcs":[2185],"id":16819,"properties":{"V":345}},{"type":"LineString","arcs":[2186],"id":16821,"properties":{"V":345}},{"type":"LineString","arcs":[2187],"id":16824,"properties":{"V":230}},{"type":"LineString","arcs":[2188],"id":16829,"properties":{"V":345}},{"type":"LineString","arcs":[2189],"id":16830,"properties":{"V":345}},{"type":"LineString","arcs":[2190],"id":16842,"properties":{"V":230}},{"type":"LineString","arcs":[2191,2192,2193,2194,2195,2196,2197,2198,2199],"id":16843,"properties":{"V":345}},{"type":"LineString","arcs":[2200],"id":16844,"properties":{"V":230}},{"type":"LineString","arcs":[2201],"id":16851,"properties":{"V":230}},{"type":"LineString","arcs":[2202],"id":16855,"properties":{"V":230}},{"type":"LineString","arcs":[2203],"id":16859,"properties":{"V":230}},{"type":"LineString","arcs":[2204],"id":16861,"properties":{"V":345}},{"type":"LineString","arcs":[2205],"id":16864,"properties":{"V":230}},{"type":"LineString","arcs":[2206],"id":16879,"properties":{"V":230}},{"type":"LineString","arcs":[2207],"id":16887,"properties":{"V":345}},{"type":"LineString","arcs":[2208],"id":16889,"properties":{"V":345}},{"type":"LineString","arcs":[2209],"id":16893,"properties":{"V":500}},{"type":"LineString","arcs":[2210],"id":16896,"properties":{"V":230}},{"type":"LineString","arcs":[2211],"id":16898,"properties":{"V":230}},{"type":"LineString","arcs":[2212],"id":16899,"properties":{"V":345}},{"type":"LineString","arcs":[2213,2214,2215],"id":16915,"properties":{"V":500}},{"type":"LineString","arcs":[2216],"id":16918,"properties":{"V":230}},{"type":"LineString","arcs":[2217],"id":16924,"properties":{"V":230}},{"type":"LineString","arcs":[2218],"id":16935,"properties":{"V":345}},{"type":"LineString","arcs":[2219],"id":16936,"properties":{"V":500}},{"type":"LineString","arcs":[2220],"id":16940,"properties":{"V":345}},{"type":"LineString","arcs":[2221],"id":16943,"properties":{"V":230}},{"type":"LineString","arcs":[2222],"id":16958,"properties":{"V":230}},{"type":"LineString","arcs":[2223],"id":16969,"properties":{"V":345}},{"type":"LineString","arcs":[2224],"id":16971,"properties":{"V":345}},{"type":"LineString","arcs":[2225],"id":16982,"properties":{"V":230}},{"type":"LineString","arcs":[2226],"id":16985,"properties":{"V":345}},{"type":"LineString","arcs":[2227],"id":16989,"properties":{"V":230}},{"type":"LineString","arcs":[2228],"id":17016,"properties":{"V":230}},{"type":"LineString","arcs":[2229],"id":17024,"properties":{"V":230}},{"type":"LineString","arcs":[2230],"id":17027,"properties":{"V":345}},{"type":"LineString","arcs":[2231],"id":17033,"properties":{"V":230}},{"type":"LineString","arcs":[2232],"id":17037,"properties":{"V":345}},{"type":"LineString","arcs":[2233],"id":17054,"properties":{"V":345}},{"type":"LineString","arcs":[2234],"id":17075,"properties":{"V":230}},{"type":"LineString","arcs":[2235],"id":17078,"properties":{"V":230}},{"type":"LineString","arcs":[2236],"id":17083,"properties":{"V":230}},{"type":"LineString","arcs":[2237],"id":17095,"properties":{"V":345}},{"type":"LineString","arcs":[2238],"id":17097,"properties":{"V":230}},{"type":"LineString","arcs":[2239],"id":17099,"properties":{"V":230}},{"type":"LineString","arcs":[2240],"id":17105,"properties":{"V":230}},{"type":"LineString","arcs":[2241],"id":17114,"properties":{"V":230}},{"type":"LineString","arcs":[2242],"id":17122,"properties":{"V":230}},{"type":"LineString","arcs":[2243],"id":17125,"properties":{"V":345}},{"type":"LineString","arcs":[2244,2245,2246],"id":17134,"properties":{"V":230}},{"type":"MultiLineString","arcs":[[2247],[2248]],"id":17138,"properties":{"V":345}},{"type":"LineString","arcs":[2249],"id":17141,"properties":{"V":230}},{"type":"LineString","arcs":[2250],"id":17157,"properties":{"V":230}},{"type":"LineString","arcs":[2251],"id":17160,"properties":{"V":230}},{"type":"LineString","arcs":[2252],"id":17167,"properties":{"V":500}},{"type":"LineString","arcs":[2253],"id":17170,"properties":{"V":230}},{"type":"LineString","arcs":[2254],"id":17181,"properties":{"V":230}},{"type":"LineString","arcs":[2255],"id":17184,"properties":{"V":345}},{"type":"LineString","arcs":[2256],"id":17187,"properties":{"V":500}},{"type":"LineString","arcs":[2257],"id":17188,"properties":{"V":345}},{"type":"LineString","arcs":[2258],"id":17194,"properties":{"V":230}},{"type":"LineString","arcs":[2259],"id":17198,"properties":{"V":230}},{"type":"LineString","arcs":[2260],"id":17201,"properties":{"V":230}},{"type":"LineString","arcs":[2261],"id":17203,"properties":{"V":230}},{"type":"LineString","arcs":[2262],"id":17206,"properties":{"V":230}},{"type":"LineString","arcs":[2263],"id":17207,"properties":{"V":345}},{"type":"LineString","arcs":[2264,2265,2266],"id":17210,"properties":{"V":230}},{"type":"LineString","arcs":[2267,2268,2269],"id":17215,"properties":{"V":345}},{"type":"LineString","arcs":[2270],"id":17223,"properties":{"V":500}},{"type":"LineString","arcs":[2271],"id":17232,"properties":{"V":230}},{"type":"LineString","arcs":[2272],"id":17234,"properties":{"V":500}},{"type":"LineString","arcs":[2273],"id":17242,"properties":{"V":345}},{"type":"LineString","arcs":[2274],"id":17243,"properties":{"V":230}},{"type":"LineString","arcs":[2275],"id":17253,"properties":{"V":345}},{"type":"LineString","arcs":[2276],"id":17262,"properties":{"V":230}},{"type":"LineString","arcs":[2277],"id":17267,"properties":{"V":500}},{"type":"LineString","arcs":[2278],"id":17269,"properties":{"V":345}},{"type":"LineString","arcs":[2279],"id":17276,"properties":{"V":230}},{"type":"LineString","arcs":[2280],"id":17285,"properties":{"V":230}},{"type":"LineString","arcs":[2281],"id":17286,"properties":{"V":345}},{"type":"LineString","arcs":[2282],"id":17289,"properties":{"V":345}},{"type":"LineString","arcs":[2283],"id":17291,"properties":{"V":230}},{"type":"LineString","arcs":[2284],"id":17292,"properties":{"V":230}},{"type":"LineString","arcs":[2285],"id":17305,"properties":{"V":345}},{"type":"LineString","arcs":[2286],"id":17311,"properties":{"V":345}},{"type":"LineString","arcs":[2287],"id":17328,"properties":{"V":230}},{"type":"LineString","arcs":[2288],"id":17329,"properties":{"V":230}},{"type":"LineString","arcs":[2289],"id":17331,"properties":{"V":230}},{"type":"LineString","arcs":[2290],"id":17339,"properties":{"V":500}},{"type":"LineString","arcs":[2291],"id":17342,"properties":{"V":345}},{"type":"LineString","arcs":[2292],"id":17352,"properties":{"V":230}},{"type":"LineString","arcs":[2293,2294],"id":17365,"properties":{"V":345}},{"type":"LineString","arcs":[2295],"id":17381,"properties":{"V":345}},{"type":"LineString","arcs":[2296],"id":17385,"properties":{"V":345}},{"type":"LineString","arcs":[2297],"id":17404,"properties":{"V":230}},{"type":"LineString","arcs":[2298],"id":17423,"properties":{"V":230}},{"type":"LineString","arcs":[2299],"id":17427,"properties":{"V":345}},{"type":"LineString","arcs":[2300],"id":17438,"properties":{"V":500}},{"type":"LineString","arcs":[2301],"id":17443,"properties":{"V":500}},{"type":"LineString","arcs":[2302],"id":17454,"properties":{"V":345}},{"type":"LineString","arcs":[2303],"id":17462,"properties":{"V":345}},{"type":"LineString","arcs":[2304],"id":17465,"properties":{"V":230}},{"type":"LineString","arcs":[2305],"id":17467,"properties":{"V":230}},{"type":"LineString","arcs":[2306],"id":17469,"properties":{"V":230}},{"type":"LineString","arcs":[2307],"id":17477,"properties":{"V":230}},{"type":"LineString","arcs":[2308],"id":17489,"properties":{"V":345}},{"type":"LineString","arcs":[2309],"id":17507,"properties":{"V":230}},{"type":"LineString","arcs":[2310],"id":17512,"properties":{"V":230}},{"type":"LineString","arcs":[2311],"id":17519,"properties":{"V":345}},{"type":"LineString","arcs":[2312],"id":17535,"properties":{"V":230}},{"type":"LineString","arcs":[2313],"id":17548,"properties":{"V":345}},{"type":"LineString","arcs":[2314],"id":17568,"properties":{"V":230}},{"type":"LineString","arcs":[2315],"id":17572,"properties":{"V":230}},{"type":"LineString","arcs":[2316],"id":17576,"properties":{"V":345}},{"type":"LineString","arcs":[2317,2318],"id":17578,"properties":{"V":345}},{"type":"LineString","arcs":[2319],"id":17585,"properties":{"V":230}},{"type":"LineString","arcs":[2320],"id":17593,"properties":{"V":345}},{"type":"LineString","arcs":[2321],"id":17600,"properties":{"V":230}},{"type":"LineString","arcs":[2322],"id":17605,"properties":{"V":500}},{"type":"LineString","arcs":[2323],"id":17607,"properties":{"V":345}},{"type":"LineString","arcs":[2324],"id":17609,"properties":{"V":345}},{"type":"LineString","arcs":[2325],"id":17612,"properties":{"V":230}},{"type":"LineString","arcs":[2326],"id":17618,"properties":{"V":230}},{"type":"LineString","arcs":[2327],"id":17619,"properties":{"V":500}},{"type":"LineString","arcs":[2328],"id":17629,"properties":{"V":230}},{"type":"LineString","arcs":[2329],"id":17638,"properties":{"V":230}},{"type":"LineString","arcs":[2330],"id":17653,"properties":{"V":230}},{"type":"LineString","arcs":[2331],"id":17665,"properties":{"V":500}},{"type":"LineString","arcs":[2332],"id":17671,"properties":{"V":230}},{"type":"LineString","arcs":[2333],"id":17673,"properties":{"V":230}},{"type":"LineString","arcs":[2334],"id":17679,"properties":{"V":345}},{"type":"LineString","arcs":[2335],"id":17680,"properties":{"V":345}},{"type":"LineString","arcs":[2336],"id":17681,"properties":{"V":230}},{"type":"LineString","arcs":[2337],"id":17685,"properties":{"V":230}},{"type":"LineString","arcs":[2338],"id":17691,"properties":{"V":500}},{"type":"LineString","arcs":[2339],"id":17700,"properties":{"V":500}},{"type":"LineString","arcs":[2340],"id":17702,"properties":{"V":345}},{"type":"LineString","arcs":[2341],"id":17704,"properties":{"V":345}},{"type":"LineString","arcs":[2342],"id":17708,"properties":{"V":345}},{"type":"LineString","arcs":[2343],"id":17714,"properties":{"V":345}},{"type":"LineString","arcs":[2344],"id":17724,"properties":{"V":230}},{"type":"LineString","arcs":[2345],"id":17726,"properties":{"V":230}},{"type":"LineString","arcs":[2346],"id":17737,"properties":{"V":230}},{"type":"LineString","arcs":[2347],"id":17750,"properties":{"V":345}},{"type":"LineString","arcs":[2348],"id":17768,"properties":{"V":230}},{"type":"LineString","arcs":[2349],"id":17779,"properties":{"V":230}},{"type":"LineString","arcs":[2350],"id":17803,"properties":{"V":230}},{"type":"LineString","arcs":[2351],"id":17814,"properties":{"V":345}},{"type":"LineString","arcs":[2352],"id":17821,"properties":{"V":345}},{"type":"LineString","arcs":[2353],"id":17831,"properties":{"V":345}},{"type":"LineString","arcs":[2354],"id":17832,"properties":{"V":230}},{"type":"LineString","arcs":[2355],"id":17839,"properties":{"V":230}},{"type":"LineString","arcs":[2356],"id":17848,"properties":{"V":230}},{"type":"LineString","arcs":[2357],"id":17850,"properties":{"V":230}},{"type":"LineString","arcs":[2358],"id":17854,"properties":{"V":345}},{"type":"LineString","arcs":[2359],"id":17859,"properties":{"V":345}},{"type":"LineString","arcs":[2360],"id":17862,"properties":{"V":230}},{"type":"LineString","arcs":[2361],"id":17894,"properties":{"V":500}},{"type":"LineString","arcs":[2362],"id":17909,"properties":{"V":345}},{"type":"LineString","arcs":[2363],"id":17914,"properties":{"V":345}},{"type":"LineString","arcs":[2364],"id":17920,"properties":{"V":230}},{"type":"LineString","arcs":[2365],"id":17934,"properties":{"V":345}},{"type":"LineString","arcs":[2366],"id":17935,"properties":{"V":230}},{"type":"LineString","arcs":[2367],"id":17937,"properties":{"V":345}},{"type":"LineString","arcs":[2368],"id":17951,"properties":{"V":230}},{"type":"LineString","arcs":[2369,2370],"id":17953,"properties":{"V":345}},{"type":"LineString","arcs":[2371],"id":17957,"properties":{"V":345}},{"type":"LineString","arcs":[2372],"id":17973,"properties":{"V":230}},{"type":"LineString","arcs":[2373],"id":17974,"properties":{"V":230}},{"type":"LineString","arcs":[2374],"id":17975,"properties":{"V":500}},{"type":"LineString","arcs":[2375],"id":17976,"properties":{"V":230}},{"type":"LineString","arcs":[2376],"id":17980,"properties":{"V":345}},{"type":"LineString","arcs":[2377],"id":17992,"properties":{"V":230}},{"type":"LineString","arcs":[2378],"id":17995,"properties":{"V":230}},{"type":"LineString","arcs":[2379],"id":18003,"properties":{"V":345}},{"type":"LineString","arcs":[2380],"id":18009,"properties":{"V":230}},{"type":"LineString","arcs":[2381],"id":18025,"properties":{"V":345}},{"type":"LineString","arcs":[2382],"id":18028,"properties":{"V":230}},{"type":"LineString","arcs":[2383],"id":18032,"properties":{"V":230}},{"type":"LineString","arcs":[2384],"id":18042,"properties":{"V":230}},{"type":"LineString","arcs":[2385],"id":18044,"properties":{"V":230}},{"type":"LineString","arcs":[2386],"id":18046,"properties":{"V":500}},{"type":"LineString","arcs":[2387],"id":18048,"properties":{"V":230}},{"type":"LineString","arcs":[2388],"id":18049,"properties":{"V":230}},{"type":"LineString","arcs":[2389],"id":18050,"properties":{"V":230}},{"type":"LineString","arcs":[2390],"id":18062,"properties":{"V":230}},{"type":"LineString","arcs":[2391],"id":18071,"properties":{"V":500}},{"type":"LineString","arcs":[2392],"id":18076,"properties":{"V":230}},{"type":"LineString","arcs":[2393],"id":18077,"properties":{"V":345}},{"type":"LineString","arcs":[2394],"id":18081,"properties":{"V":230}},{"type":"LineString","arcs":[2395],"id":18091,"properties":{"V":345}},{"type":"LineString","arcs":[2396],"id":18098,"properties":{"V":230}},{"type":"LineString","arcs":[2397],"id":18099,"properties":{"V":500}},{"type":"LineString","arcs":[2398],"id":18112,"properties":{"V":230}},{"type":"LineString","arcs":[2399],"id":18120,"properties":{"V":345}},{"type":"LineString","arcs":[2400],"id":18135,"properties":{"V":345}},{"type":"LineString","arcs":[2401],"id":18145,"properties":{"V":345}},{"type":"LineString","arcs":[2402],"id":18150,"properties":{"V":230}},{"type":"LineString","arcs":[2403],"id":18159,"properties":{"V":500}},{"type":"LineString","arcs":[2404],"id":18185,"properties":{"V":345}},{"type":"LineString","arcs":[2405],"id":18192,"properties":{"V":230}},{"type":"LineString","arcs":[2406],"id":18197,"properties":{"V":230}},{"type":"LineString","arcs":[2407],"id":18204,"properties":{"V":230}},{"type":"LineString","arcs":[-1808],"id":18215,"properties":{"V":230}},{"type":"LineString","arcs":[2408],"id":18220,"properties":{"V":230}},{"type":"LineString","arcs":[2409],"id":18231,"properties":{"V":345}},{"type":"LineString","arcs":[2410],"id":18233,"properties":{"V":345}},{"type":"LineString","arcs":[2411],"id":18236,"properties":{"V":345}},{"type":"LineString","arcs":[2412],"id":18243,"properties":{"V":230}},{"type":"LineString","arcs":[2413],"id":18248,"properties":{"V":345}},{"type":"LineString","arcs":[2414],"id":18254,"properties":{"V":230}},{"type":"LineString","arcs":[2415],"id":18276,"properties":{"V":230}},{"type":"LineString","arcs":[2416],"id":18284,"properties":{"V":230}},{"type":"LineString","arcs":[2417],"id":18285,"properties":{"V":345}},{"type":"LineString","arcs":[2418],"id":18289,"properties":{"V":345}},{"type":"LineString","arcs":[2419],"id":18290,"properties":{"V":230}},{"type":"LineString","arcs":[2420],"id":18298,"properties":{"V":230}},{"type":"LineString","arcs":[2421],"id":18306,"properties":{"V":345}},{"type":"LineString","arcs":[2422],"id":18307,"properties":{"V":230}},{"type":"LineString","arcs":[2423],"id":18315,"properties":{"V":345}},{"type":"LineString","arcs":[2424],"id":18316,"properties":{"V":345}},{"type":"LineString","arcs":[2425],"id":18320,"properties":{"V":345}},{"type":"LineString","arcs":[2426],"id":18323,"properties":{"V":230}},{"type":"LineString","arcs":[2427],"id":18329,"properties":{"V":230}},{"type":"LineString","arcs":[2428],"id":18340,"properties":{"V":230}},{"type":"LineString","arcs":[2429],"id":18343,"properties":{"V":500}},{"type":"LineString","arcs":[2430],"id":18352,"properties":{"V":230}},{"type":"LineString","arcs":[2431],"id":18354,"properties":{"V":345}},{"type":"LineString","arcs":[2432],"id":18372,"properties":{"V":230}},{"type":"LineString","arcs":[2433],"id":18377,"properties":{"V":345}},{"type":"LineString","arcs":[2434],"id":18378,"properties":{"V":345}},{"type":"LineString","arcs":[2435],"id":18381,"properties":{"V":230}},{"type":"LineString","arcs":[2436],"id":18387,"properties":{"V":230}},{"type":"LineString","arcs":[2437],"id":18394,"properties":{"V":230}},{"type":"LineString","arcs":[2438],"id":18395,"properties":{"V":345}},{"type":"LineString","arcs":[2439],"id":18397,"properties":{"V":230}},{"type":"LineString","arcs":[2440],"id":18422,"properties":{"V":345}},{"type":"LineString","arcs":[2441],"id":18433,"properties":{"V":345}},{"type":"LineString","arcs":[2442],"id":18440,"properties":{"V":345}},{"type":"LineString","arcs":[2443],"id":18444,"properties":{"V":230}},{"type":"LineString","arcs":[2444],"id":18445,"properties":{"V":230}},{"type":"LineString","arcs":[2445],"id":18447,"properties":{"V":230}},{"type":"LineString","arcs":[2446],"id":18455,"properties":{"V":230}},{"type":"LineString","arcs":[2447],"id":18462,"properties":{"V":230}},{"type":"LineString","arcs":[2448],"id":18463,"properties":{"V":230}},{"type":"LineString","arcs":[2449],"id":18476,"properties":{"V":230}},{"type":"LineString","arcs":[2450],"id":18479,"properties":{"V":345}},{"type":"LineString","arcs":[2451],"id":18499,"properties":{"V":230}},{"type":"LineString","arcs":[2452],"id":18504,"properties":{"V":345}},{"type":"LineString","arcs":[2453],"id":18510,"properties":{"V":345}},{"type":"LineString","arcs":[2454],"id":18513,"properties":{"V":230}},{"type":"LineString","arcs":[2455],"id":18516,"properties":{"V":230}},{"type":"LineString","arcs":[2456],"id":18520,"properties":{"V":230}},{"type":"LineString","arcs":[2457],"id":18521,"properties":{"V":230}},{"type":"LineString","arcs":[2458],"id":18531,"properties":{"V":230}},{"type":"LineString","arcs":[2459],"id":18535,"properties":{"V":230}},{"type":"LineString","arcs":[2460],"id":18596,"properties":{"V":230}},{"type":"LineString","arcs":[2461],"id":18599,"properties":{"V":345}},{"type":"LineString","arcs":[2462],"id":18612,"properties":{"V":230}},{"type":"LineString","arcs":[2463],"id":18617,"properties":{"V":345}},{"type":"LineString","arcs":[2464],"id":18624,"properties":{"V":230}},{"type":"LineString","arcs":[2465],"id":18635,"properties":{"V":230}},{"type":"LineString","arcs":[2466],"id":18642,"properties":{"V":345}},{"type":"LineString","arcs":[2467],"id":18662,"properties":{"V":230}},{"type":"LineString","arcs":[2468,2469],"id":18668,"properties":{"V":230}},{"type":"LineString","arcs":[2470],"id":18674,"properties":{"V":345}},{"type":"LineString","arcs":[2471],"id":18676,"properties":{"V":345}},{"type":"LineString","arcs":[2472],"id":18681,"properties":{"V":345}},{"type":"LineString","arcs":[2473],"id":18686,"properties":{"V":230}},{"type":"LineString","arcs":[2474],"id":18694,"properties":{"V":500}},{"type":"LineString","arcs":[2475],"id":18713,"properties":{"V":230}},{"type":"LineString","arcs":[2476],"id":18725,"properties":{"V":345}},{"type":"LineString","arcs":[2477],"id":18740,"properties":{"V":500}},{"type":"LineString","arcs":[2478],"id":18744,"properties":{"V":345}},{"type":"LineString","arcs":[2479,2480,2481],"id":18746,"properties":{"V":230}},{"type":"LineString","arcs":[2482],"id":18747,"properties":{"V":230}},{"type":"LineString","arcs":[2483],"id":18750,"properties":{"V":230}},{"type":"LineString","arcs":[2484],"id":18752,"properties":{"V":230}},{"type":"LineString","arcs":[2485],"id":18758,"properties":{"V":230}},{"type":"LineString","arcs":[2486],"id":18776,"properties":{"V":230}},{"type":"LineString","arcs":[2487],"id":18791,"properties":{"V":230}},{"type":"LineString","arcs":[2488],"id":18805,"properties":{"V":230}},{"type":"LineString","arcs":[2489],"id":18806,"properties":{"V":230}},{"type":"LineString","arcs":[2490],"id":18816,"properties":{"V":230}},{"type":"LineString","arcs":[2491,2492],"id":18824,"properties":{"V":230}},{"type":"LineString","arcs":[2493],"id":18836,"properties":{"V":230}},{"type":"LineString","arcs":[2494],"id":18850,"properties":{"V":230}},{"type":"LineString","arcs":[2495],"id":18853,"properties":{"V":230}},{"type":"LineString","arcs":[2496],"id":18865,"properties":{"V":345}},{"type":"LineString","arcs":[2497],"id":18866,"properties":{"V":345}},{"type":"LineString","arcs":[2498],"id":18871,"properties":{"V":230}},{"type":"LineString","arcs":[2499],"id":18875,"properties":{"V":345}},{"type":"LineString","arcs":[2500],"id":18880,"properties":{"V":345}},{"type":"LineString","arcs":[2501],"id":18886,"properties":{"V":230}},{"type":"LineString","arcs":[2502],"id":18906,"properties":{"V":345}},{"type":"LineString","arcs":[2503],"id":18911,"properties":{"V":230}},{"type":"LineString","arcs":[2504],"id":18928,"properties":{"V":230}},{"type":"LineString","arcs":[2505],"id":18943,"properties":{"V":230}},{"type":"LineString","arcs":[2506],"id":18949,"properties":{"V":230}},{"type":"LineString","arcs":[2507],"id":18971,"properties":{"V":345}},{"type":"LineString","arcs":[2508],"id":18974,"properties":{"V":345}},{"type":"LineString","arcs":[2509],"id":18981,"properties":{"V":230}},{"type":"LineString","arcs":[2510],"id":18985,"properties":{"V":345}},{"type":"LineString","arcs":[2511],"id":18995,"properties":{"V":345}},{"type":"LineString","arcs":[2512],"id":18997,"properties":{"V":230}},{"type":"LineString","arcs":[2513],"id":18998,"properties":{"V":230}},{"type":"LineString","arcs":[2514],"id":19022,"properties":{"V":500}},{"type":"LineString","arcs":[2515],"id":19041,"properties":{"V":230}},{"type":"LineString","arcs":[2516],"id":19049,"properties":{"V":230}},{"type":"LineString","arcs":[2517],"id":19057,"properties":{"V":230}},{"type":"LineString","arcs":[2518],"id":19060,"properties":{"V":500}},{"type":"LineString","arcs":[2519],"id":19062,"properties":{"V":230}},{"type":"LineString","arcs":[2520,2521],"id":19063,"properties":{"V":230}},{"type":"LineString","arcs":[2522],"id":19069,"properties":{"V":230}},{"type":"LineString","arcs":[2523],"id":19075,"properties":{"V":230}},{"type":"LineString","arcs":[2524,2525],"id":19077,"properties":{"V":345}},{"type":"LineString","arcs":[2526],"id":19079,"properties":{"V":345}},{"type":"LineString","arcs":[2527],"id":19082,"properties":{"V":500}},{"type":"LineString","arcs":[2528],"id":19083,"properties":{"V":230}},{"type":"LineString","arcs":[2529],"id":19090,"properties":{"V":230}},{"type":"LineString","arcs":[2530],"id":19099,"properties":{"V":345}},{"type":"LineString","arcs":[2531],"id":19104,"properties":{"V":345}},{"type":"LineString","arcs":[2532],"id":19106,"properties":{"V":230}},{"type":"LineString","arcs":[2533],"id":19107,"properties":{"V":345}},{"type":"LineString","arcs":[2534],"id":19110,"properties":{"V":230}},{"type":"LineString","arcs":[2535],"id":19119,"properties":{"V":500}},{"type":"LineString","arcs":[2536,2537,2538,2539,2540,2541,2542,2543,2544,2545],"id":19129,"properties":{"V":500}},{"type":"LineString","arcs":[2546],"id":19135,"properties":{"V":345}},{"type":"LineString","arcs":[2547],"id":19136,"properties":{"V":500}},{"type":"LineString","arcs":[2548],"id":19144,"properties":{"V":230}},{"type":"LineString","arcs":[2549],"id":19162,"properties":{"V":230}},{"type":"LineString","arcs":[2550],"id":19163,"properties":{"V":230}},{"type":"LineString","arcs":[2551],"id":19165,"properties":{"V":230}},{"type":"LineString","arcs":[2552],"id":19169,"properties":{"V":345}},{"type":"LineString","arcs":[2553],"id":19170,"properties":{"V":230}},{"type":"LineString","arcs":[2554],"id":19173,"properties":{"V":230}},{"type":"LineString","arcs":[2555],"id":19178,"properties":{"V":230}},{"type":"LineString","arcs":[2556],"id":19185,"properties":{"V":230}},{"type":"LineString","arcs":[2557],"id":19186,"properties":{"V":230}},{"type":"LineString","arcs":[2558],"id":19187,"properties":{"V":345}},{"type":"LineString","arcs":[2559],"id":19199,"properties":{"V":230}},{"type":"LineString","arcs":[2560],"id":19210,"properties":{"V":345}},{"type":"LineString","arcs":[2561],"id":19211,"properties":{"V":230}},{"type":"LineString","arcs":[2562],"id":19213,"properties":{"V":500}},{"type":"LineString","arcs":[2563],"id":19231,"properties":{"V":345}},{"type":"LineString","arcs":[2564],"id":19250,"properties":{"V":500}},{"type":"LineString","arcs":[2565,2566,2567],"id":19253,"properties":{"V":230}},{"type":"LineString","arcs":[2568],"id":19257,"properties":{"V":345}},{"type":"LineString","arcs":[2569],"id":19274,"properties":{"V":230}},{"type":"LineString","arcs":[2570],"id":19275,"properties":{"V":230}},{"type":"LineString","arcs":[2571],"id":19276,"properties":{"V":500}},{"type":"LineString","arcs":[2572],"id":19296,"properties":{"V":345}},{"type":"LineString","arcs":[2573],"id":19300,"properties":{"V":345}},{"type":"LineString","arcs":[2574,2575],"id":19308,"properties":{"V":345}},{"type":"LineString","arcs":[2576],"id":19311,"properties":{"V":230}},{"type":"LineString","arcs":[2577],"id":19324,"properties":{"V":230}},{"type":"LineString","arcs":[2578],"id":19325,"properties":{"V":345}},{"type":"LineString","arcs":[2579],"id":19327,"properties":{"V":230}},{"type":"LineString","arcs":[2580],"id":19329,"properties":{"V":345}},{"type":"LineString","arcs":[2581],"id":19333,"properties":{"V":500}},{"type":"LineString","arcs":[2582],"id":19344,"properties":{"V":230}},{"type":"LineString","arcs":[2583],"id":19352,"properties":{"V":230}},{"type":"LineString","arcs":[2584],"id":19357,"properties":{"V":345}},{"type":"LineString","arcs":[2585],"id":19358,"properties":{"V":345}},{"type":"LineString","arcs":[2586],"id":19368,"properties":{"V":345}},{"type":"LineString","arcs":[2587],"id":19370,"properties":{"V":345}},{"type":"LineString","arcs":[2588],"id":19372,"properties":{"V":230}},{"type":"LineString","arcs":[2589],"id":19374,"properties":{"V":230}},{"type":"LineString","arcs":[2590],"id":19384,"properties":{"V":345}},{"type":"LineString","arcs":[2591],"id":19386,"properties":{"V":230}},{"type":"LineString","arcs":[2592],"id":19388,"properties":{"V":345}},{"type":"LineString","arcs":[2593],"id":19402,"properties":{"V":230}},{"type":"LineString","arcs":[2399],"id":19406,"properties":{"V":345}},{"type":"LineString","arcs":[2594],"id":19409,"properties":{"V":230}},{"type":"LineString","arcs":[2595],"id":19412,"properties":{"V":345}},{"type":"LineString","arcs":[2596],"id":19419,"properties":{"V":345}},{"type":"LineString","arcs":[2597],"id":19429,"properties":{"V":500}},{"type":"LineString","arcs":[2598],"id":19430,"properties":{"V":230}},{"type":"LineString","arcs":[2599],"id":19438,"properties":{"V":230}},{"type":"LineString","arcs":[2600],"id":19441,"properties":{"V":345}},{"type":"LineString","arcs":[2601],"id":19460,"properties":{"V":230}},{"type":"LineString","arcs":[2602],"id":19466,"properties":{"V":230}},{"type":"LineString","arcs":[2603],"id":19468,"properties":{"V":230}},{"type":"LineString","arcs":[2604],"id":19471,"properties":{"V":230}},{"type":"LineString","arcs":[2605],"id":19479,"properties":{"V":345}},{"type":"LineString","arcs":[2606],"id":19484,"properties":{"V":230}},{"type":"LineString","arcs":[2607],"id":19493,"properties":{"V":500}},{"type":"LineString","arcs":[2608],"id":19502,"properties":{"V":230}},{"type":"LineString","arcs":[2609],"id":19505,"properties":{"V":230}},{"type":"LineString","arcs":[2610],"id":19507,"properties":{"V":230}},{"type":"LineString","arcs":[2611],"id":19528,"properties":{"V":345}},{"type":"LineString","arcs":[2612],"id":19549,"properties":{"V":345}},{"type":"LineString","arcs":[2613],"id":19555,"properties":{"V":230}},{"type":"LineString","arcs":[2614],"id":19562,"properties":{"V":345}},{"type":"LineString","arcs":[2615],"id":19563,"properties":{"V":345}},{"type":"LineString","arcs":[2616],"id":19565,"properties":{"V":230}},{"type":"LineString","arcs":[2617],"id":19570,"properties":{"V":230}},{"type":"LineString","arcs":[2618,2619,2620,2621],"id":19574,"properties":{"V":230}},{"type":"LineString","arcs":[2622],"id":19585,"properties":{"V":345}},{"type":"LineString","arcs":[2623],"id":19587,"properties":{"V":345}},{"type":"LineString","arcs":[2624],"id":19588,"properties":{"V":345}},{"type":"LineString","arcs":[2625],"id":19594,"properties":{"V":230}},{"type":"LineString","arcs":[2626],"id":19596,"properties":{"V":230}},{"type":"LineString","arcs":[2627],"id":19603,"properties":{"V":230}},{"type":"LineString","arcs":[2628],"id":19605,"properties":{"V":345}},{"type":"LineString","arcs":[2629],"id":19607,"properties":{"V":230}},{"type":"LineString","arcs":[2630],"id":19608,"properties":{"V":345}},{"type":"LineString","arcs":[2631],"id":19612,"properties":{"V":345}},{"type":"LineString","arcs":[2632],"id":19627,"properties":{"V":230}},{"type":"LineString","arcs":[2633],"id":19634,"properties":{"V":230}},{"type":"LineString","arcs":[2634],"id":19636,"properties":{"V":230}},{"type":"LineString","arcs":[2635],"id":19637,"properties":{"V":230}},{"type":"LineString","arcs":[2636],"id":19652,"properties":{"V":230}},{"type":"LineString","arcs":[2637],"id":19656,"properties":{"V":230}},{"type":"LineString","arcs":[2638],"id":19657,"properties":{"V":345}},{"type":"LineString","arcs":[2639],"id":19661,"properties":{"V":500}},{"type":"LineString","arcs":[2640],"id":19664,"properties":{"V":500}},{"type":"LineString","arcs":[2641],"id":19671,"properties":{"V":345}},{"type":"LineString","arcs":[2642],"id":19675,"properties":{"V":230}},{"type":"LineString","arcs":[2643],"id":19677,"properties":{"V":230}},{"type":"LineString","arcs":[2644,2645],"id":19681,"properties":{"V":345}},{"type":"LineString","arcs":[2646],"id":19685,"properties":{"V":345}},{"type":"LineString","arcs":[2647,2648],"id":19690,"properties":{"V":345}},{"type":"LineString","arcs":[2649,2650],"id":19703,"properties":{"V":345}},{"type":"LineString","arcs":[2651],"id":19710,"properties":{"V":230}},{"type":"LineString","arcs":[2652],"id":19718,"properties":{"V":345}},{"type":"LineString","arcs":[2653],"id":19726,"properties":{"V":230}},{"type":"LineString","arcs":[2654],"id":19739,"properties":{"V":500}},{"type":"LineString","arcs":[2655],"id":19741,"properties":{"V":345}},{"type":"LineString","arcs":[2656],"id":19768,"properties":{"V":230}},{"type":"LineString","arcs":[2657],"id":19769,"properties":{"V":345}},{"type":"LineString","arcs":[2658],"id":19773,"properties":{"V":230}},{"type":"LineString","arcs":[2659],"id":19775,"properties":{"V":230}},{"type":"LineString","arcs":[2660],"id":19786,"properties":{"V":230}},{"type":"LineString","arcs":[2661],"id":19792,"properties":{"V":345}},{"type":"LineString","arcs":[2662],"id":19807,"properties":{"V":230}},{"type":"LineString","arcs":[2663],"id":19814,"properties":{"V":345}},{"type":"LineString","arcs":[2664],"id":19836,"properties":{"V":230}},{"type":"LineString","arcs":[2665],"id":19840,"properties":{"V":230}},{"type":"LineString","arcs":[2666],"id":19853,"properties":{"V":230}},{"type":"LineString","arcs":[2667],"id":19854,"properties":{"V":230}},{"type":"LineString","arcs":[2668],"id":19857,"properties":{"V":345}},{"type":"LineString","arcs":[2669],"id":19859,"properties":{"V":230}},{"type":"LineString","arcs":[2670],"id":19885,"properties":{"V":345}},{"type":"LineString","arcs":[2671],"id":19886,"properties":{"V":500}},{"type":"LineString","arcs":[2672],"id":19900,"properties":{"V":345}},{"type":"LineString","arcs":[2673],"id":19909,"properties":{"V":345}},{"type":"LineString","arcs":[2674],"id":19912,"properties":{"V":230}},{"type":"LineString","arcs":[2675],"id":19915,"properties":{"V":230}},{"type":"LineString","arcs":[2676],"id":19918,"properties":{"V":230}},{"type":"LineString","arcs":[2677],"id":19920,"properties":{"V":230}},{"type":"LineString","arcs":[2678],"id":19921,"properties":{"V":230}},{"type":"LineString","arcs":[2679],"id":19927,"properties":{"V":345}},{"type":"LineString","arcs":[2680],"id":19941,"properties":{"V":230}},{"type":"LineString","arcs":[2681],"id":19944,"properties":{"V":345}},{"type":"LineString","arcs":[2682],"id":19953,"properties":{"V":230}},{"type":"LineString","arcs":[2683],"id":19954,"properties":{"V":230}},{"type":"LineString","arcs":[2684],"id":19955,"properties":{"V":500}},{"type":"LineString","arcs":[2685],"id":19957,"properties":{"V":345}},{"type":"LineString","arcs":[2686],"id":19969,"properties":{"V":230}},{"type":"LineString","arcs":[2687],"id":19979,"properties":{"V":230}},{"type":"LineString","arcs":[2688],"id":19993,"properties":{"V":345}},{"type":"LineString","arcs":[2689],"id":19998,"properties":{"V":230}},{"type":"LineString","arcs":[2690],"id":20000,"properties":{"V":230}},{"type":"LineString","arcs":[2691],"id":20005,"properties":{"V":230}},{"type":"LineString","arcs":[2692],"id":20007,"properties":{"V":230}},{"type":"LineString","arcs":[2693],"id":20008,"properties":{"V":345}},{"type":"LineString","arcs":[2694],"id":20009,"properties":{"V":230}},{"type":"LineString","arcs":[2695],"id":20024,"properties":{"V":345}},{"type":"LineString","arcs":[2696],"id":20027,"properties":{"V":230}},{"type":"LineString","arcs":[2697],"id":20028,"properties":{"V":345}},{"type":"LineString","arcs":[2698],"id":20032,"properties":{"V":345}},{"type":"LineString","arcs":[2699],"id":20033,"properties":{"V":230}},{"type":"LineString","arcs":[2700,-2246,2701],"id":20048,"properties":{"V":230}},{"type":"LineString","arcs":[2702],"id":20057,"properties":{"V":230}},{"type":"LineString","arcs":[2703,2215],"id":20072,"properties":{"V":500}},{"type":"LineString","arcs":[2704],"id":20076,"properties":{"V":500}},{"type":"LineString","arcs":[2705],"id":20082,"properties":{"V":230}},{"type":"LineString","arcs":[2706],"id":20083,"properties":{"V":230}},{"type":"LineString","arcs":[2707],"id":20094,"properties":{"V":230}},{"type":"LineString","arcs":[2708],"id":20097,"properties":{"V":230}},{"type":"LineString","arcs":[2709],"id":20100,"properties":{"V":230}},{"type":"LineString","arcs":[2710],"id":20106,"properties":{"V":500}},{"type":"LineString","arcs":[2711],"id":20122,"properties":{"V":345}},{"type":"LineString","arcs":[2712],"id":20126,"properties":{"V":230}},{"type":"LineString","arcs":[2713],"id":20128,"properties":{"V":230}},{"type":"LineString","arcs":[2714],"id":20130,"properties":{"V":345}},{"type":"LineString","arcs":[2715],"id":20137,"properties":{"V":345}},{"type":"LineString","arcs":[2716],"id":20159,"properties":{"V":230}},{"type":"LineString","arcs":[2717],"id":20181,"properties":{"V":230}},{"type":"LineString","arcs":[2718],"id":20184,"properties":{"V":230}},{"type":"LineString","arcs":[2719],"id":20192,"properties":{"V":345}},{"type":"LineString","arcs":[2720,2721],"id":20197,"properties":{"V":345}},{"type":"LineString","arcs":[2722],"id":20201,"properties":{"V":345}},{"type":"LineString","arcs":[2723],"id":20208,"properties":{"V":230}},{"type":"LineString","arcs":[2724],"id":20225,"properties":{"V":345}},{"type":"LineString","arcs":[2725],"id":20227,"properties":{"V":500}},{"type":"LineString","arcs":[2726],"id":20231,"properties":{"V":345}},{"type":"LineString","arcs":[2727],"id":20241,"properties":{"V":230}},{"type":"LineString","arcs":[2728],"id":20246,"properties":{"V":287}},{"type":"LineString","arcs":[2729],"id":20248,"properties":{"V":345}},{"type":"LineString","arcs":[2730],"id":20249,"properties":{"V":230}},{"type":"LineString","arcs":[2731],"id":20254,"properties":{"V":230}},{"type":"LineString","arcs":[2732],"id":20261,"properties":{"V":230}},{"type":"LineString","arcs":[2733],"id":20266,"properties":{"V":345}},{"type":"LineString","arcs":[2734],"id":20284,"properties":{"V":230}},{"type":"LineString","arcs":[2735],"id":20290,"properties":{"V":345}},{"type":"LineString","arcs":[2736],"id":20292,"properties":{"V":345}},{"type":"LineString","arcs":[2737],"id":20307,"properties":{"V":230}},{"type":"LineString","arcs":[2738],"id":20317,"properties":{"V":230}},{"type":"LineString","arcs":[2739],"id":20321,"properties":{"V":230}},{"type":"LineString","arcs":[2740],"id":20322,"properties":{"V":230}},{"type":"LineString","arcs":[2741],"id":20324,"properties":{"V":345}},{"type":"LineString","arcs":[2742],"id":20331,"properties":{"V":230}},{"type":"LineString","arcs":[2743],"id":20350,"properties":{"V":345}},{"type":"MultiLineString","arcs":[[2744],[2745]],"id":20357,"properties":{"V":345}},{"type":"LineString","arcs":[2746],"id":20362,"properties":{"V":230}},{"type":"LineString","arcs":[2747],"id":20364,"properties":{"V":345}},{"type":"LineString","arcs":[2748],"id":20369,"properties":{"V":230}},{"type":"LineString","arcs":[2749],"id":20372,"properties":{"V":230}},{"type":"LineString","arcs":[2750],"id":20381,"properties":{"V":345}},{"type":"LineString","arcs":[2751],"id":20386,"properties":{"V":230}},{"type":"LineString","arcs":[2752],"id":20411,"properties":{"V":345}},{"type":"LineString","arcs":[2753],"id":20424,"properties":{"V":345}},{"type":"LineString","arcs":[2754],"id":20439,"properties":{"V":230}},{"type":"LineString","arcs":[2755],"id":20445,"properties":{"V":345}},{"type":"LineString","arcs":[2756],"id":20455,"properties":{"V":230}},{"type":"LineString","arcs":[2757],"id":20461,"properties":{"V":230}},{"type":"LineString","arcs":[2758],"id":20462,"properties":{"V":500}},{"type":"LineString","arcs":[2759],"id":20470,"properties":{"V":230}},{"type":"LineString","arcs":[2760],"id":20472,"properties":{"V":345}},{"type":"LineString","arcs":[2761],"id":20474,"properties":{"V":345}},{"type":"LineString","arcs":[2762],"id":20484,"properties":{"V":230}},{"type":"LineString","arcs":[2763],"id":20485,"properties":{"V":230}},{"type":"LineString","arcs":[2764],"id":20494,"properties":{"V":345}},{"type":"LineString","arcs":[2765],"id":20500,"properties":{"V":500}},{"type":"LineString","arcs":[2766],"id":20503,"properties":{"V":345}},{"type":"LineString","arcs":[2767,2768],"id":20506,"properties":{"V":345}},{"type":"LineString","arcs":[2769],"id":20511,"properties":{"V":230}},{"type":"LineString","arcs":[2770],"id":20512,"properties":{"V":230}},{"type":"LineString","arcs":[2771],"id":20516,"properties":{"V":230}},{"type":"LineString","arcs":[2772],"id":20538,"properties":{"V":345}},{"type":"LineString","arcs":[2773],"id":20546,"properties":{"V":230}},{"type":"LineString","arcs":[2774],"id":20561,"properties":{"V":345}},{"type":"LineString","arcs":[2775],"id":20575,"properties":{"V":345}},{"type":"LineString","arcs":[2776],"id":20576,"properties":{"V":345}},{"type":"LineString","arcs":[2777],"id":20577,"properties":{"V":230}},{"type":"LineString","arcs":[2778],"id":20580,"properties":{"V":230}},{"type":"LineString","arcs":[2779],"id":20591,"properties":{"V":230}},{"type":"LineString","arcs":[2780],"id":20603,"properties":{"V":230}},{"type":"LineString","arcs":[2781],"id":20612,"properties":{"V":345}},{"type":"LineString","arcs":[2782],"id":20614,"properties":{"V":345}},{"type":"LineString","arcs":[2783],"id":20676,"properties":{"V":345}},{"type":"LineString","arcs":[2784],"id":20691,"properties":{"V":345}},{"type":"LineString","arcs":[2785],"id":20694,"properties":{"V":230}},{"type":"LineString","arcs":[2786],"id":20710,"properties":{"V":345}},{"type":"LineString","arcs":[2787],"id":20715,"properties":{"V":345}},{"type":"LineString","arcs":[2788],"id":20722,"properties":{"V":230}},{"type":"LineString","arcs":[2789],"id":20726,"properties":{"V":345}},{"type":"LineString","arcs":[2790],"id":20738,"properties":{"V":230}},{"type":"LineString","arcs":[2791],"id":20742,"properties":{"V":230}},{"type":"LineString","arcs":[2792],"id":20744,"properties":{"V":345}},{"type":"LineString","arcs":[2793],"id":20745,"properties":{"V":230}},{"type":"LineString","arcs":[2794],"id":20763,"properties":{"V":230}},{"type":"LineString","arcs":[2795],"id":20766,"properties":{"V":345}},{"type":"LineString","arcs":[2796],"id":20771,"properties":{"V":230}},{"type":"LineString","arcs":[2797],"id":20791,"properties":{"V":345}},{"type":"LineString","arcs":[2798],"id":20794,"properties":{"V":230}},{"type":"LineString","arcs":[2799],"id":20796,"properties":{"V":230}},{"type":"LineString","arcs":[2800,2801],"id":20797,"properties":{"V":345}},{"type":"LineString","arcs":[2802],"id":20802,"properties":{"V":345}},{"type":"LineString","arcs":[2803],"id":20806,"properties":{"V":230}},{"type":"LineString","arcs":[2804],"id":20827,"properties":{"V":230}},{"type":"LineString","arcs":[2805,2806],"id":20830,"properties":{"V":345}},{"type":"LineString","arcs":[2807],"id":20835,"properties":{"V":230}},{"type":"LineString","arcs":[2808],"id":20836,"properties":{"V":345}},{"type":"LineString","arcs":[2809],"id":20839,"properties":{"V":230}},{"type":"LineString","arcs":[2810],"id":20841,"properties":{"V":230}},{"type":"LineString","arcs":[2811],"id":20842,"properties":{"V":230}},{"type":"LineString","arcs":[2812],"id":20846,"properties":{"V":230}},{"type":"LineString","arcs":[2813],"id":20847,"properties":{"V":345}},{"type":"LineString","arcs":[2814],"id":20862,"properties":{"V":345}},{"type":"LineString","arcs":[2815],"id":20867,"properties":{"V":230}},{"type":"LineString","arcs":[2816],"id":20872,"properties":{"V":230}},{"type":"LineString","arcs":[2817],"id":20880,"properties":{"V":230}},{"type":"LineString","arcs":[2818],"id":20884,"properties":{"V":230}},{"type":"LineString","arcs":[2819],"id":20887,"properties":{"V":230}},{"type":"LineString","arcs":[2820],"id":20893,"properties":{"V":230}},{"type":"LineString","arcs":[2821],"id":20916,"properties":{"V":230}},{"type":"LineString","arcs":[2822],"id":20917,"properties":{"V":345}},{"type":"LineString","arcs":[2823],"id":20918,"properties":{"V":230}},{"type":"LineString","arcs":[2824],"id":20922,"properties":{"V":230}},{"type":"LineString","arcs":[2825],"id":20941,"properties":{"V":230}},{"type":"LineString","arcs":[2826],"id":20957,"properties":{"V":230}},{"type":"LineString","arcs":[2827],"id":20962,"properties":{"V":230}},{"type":"LineString","arcs":[2828],"id":20965,"properties":{"V":230}},{"type":"LineString","arcs":[2829,2830,2831],"id":20973,"properties":{"V":230}},{"type":"LineString","arcs":[2832],"id":20974,"properties":{"V":345}},{"type":"LineString","arcs":[2833],"id":20976,"properties":{"V":230}},{"type":"LineString","arcs":[2834],"id":20979,"properties":{"V":230}},{"type":"LineString","arcs":[2835,2836,2837],"id":20993,"properties":{"V":345}},{"type":"LineString","arcs":[2838],"id":21001,"properties":{"V":230}},{"type":"LineString","arcs":[2839,2840],"id":21007,"properties":{"V":230}},{"type":"LineString","arcs":[2841],"id":21010,"properties":{"V":230}},{"type":"LineString","arcs":[2842],"id":21016,"properties":{"V":345}},{"type":"LineString","arcs":[2843],"id":21034,"properties":{"V":345}},{"type":"LineString","arcs":[2844,2845],"id":21047,"properties":{"V":345}},{"type":"LineString","arcs":[2846],"id":21050,"properties":{"V":230}},{"type":"LineString","arcs":[2847],"id":21051,"properties":{"V":345}},{"type":"LineString","arcs":[2848],"id":21059,"properties":{"V":345}},{"type":"LineString","arcs":[2849],"id":21065,"properties":{"V":500}},{"type":"LineString","arcs":[2850],"id":21070,"properties":{"V":230}},{"type":"LineString","arcs":[2851,2566,2852],"id":21073,"properties":{"V":230}},{"type":"LineString","arcs":[2853],"id":21084,"properties":{"V":230}},{"type":"LineString","arcs":[2854],"id":21086,"properties":{"V":230}},{"type":"LineString","arcs":[2855],"id":21087,"properties":{"V":230}},{"type":"LineString","arcs":[2856],"id":21091,"properties":{"V":345}},{"type":"LineString","arcs":[2857,2858],"id":21098,"properties":{"V":230}},{"type":"LineString","arcs":[2859],"id":21100,"properties":{"V":345}},{"type":"LineString","arcs":[2860],"id":21114,"properties":{"V":345}},{"type":"LineString","arcs":[2861],"id":21118,"properties":{"V":230}},{"type":"LineString","arcs":[2862],"id":21120,"properties":{"V":500}},{"type":"LineString","arcs":[2863],"id":21149,"properties":{"V":345}},{"type":"LineString","arcs":[2864],"id":21156,"properties":{"V":345}},{"type":"LineString","arcs":[2865],"id":21159,"properties":{"V":230}},{"type":"LineString","arcs":[2866],"id":21160,"properties":{"V":230}},{"type":"LineString","arcs":[2867],"id":21176,"properties":{"V":345}},{"type":"LineString","arcs":[2868],"id":21180,"properties":{"V":230}},{"type":"LineString","arcs":[2869],"id":21181,"properties":{"V":230}},{"type":"LineString","arcs":[2870],"id":21185,"properties":{"V":345}},{"type":"LineString","arcs":[2871],"id":21195,"properties":{"V":230}},{"type":"LineString","arcs":[2872],"id":21196,"properties":{"V":500}},{"type":"LineString","arcs":[2873],"id":21198,"properties":{"V":500}},{"type":"LineString","arcs":[2874],"id":21201,"properties":{"V":500}},{"type":"LineString","arcs":[2875],"id":21203,"properties":{"V":345}},{"type":"LineString","arcs":[2876],"id":21206,"properties":{"V":345}},{"type":"LineString","arcs":[2877],"id":21210,"properties":{"V":345}},{"type":"LineString","arcs":[2878],"id":21230,"properties":{"V":230}},{"type":"LineString","arcs":[2879],"id":21242,"properties":{"V":230}},{"type":"LineString","arcs":[2880,2881,2882],"id":21247,"properties":{"V":345}},{"type":"LineString","arcs":[2883],"id":21249,"properties":{"V":230}},{"type":"LineString","arcs":[2884,2885,2886,2887,2888,-1903,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,-1738,2899],"id":21262,"properties":{"V":500}},{"type":"LineString","arcs":[2900],"id":21275,"properties":{"V":230}},{"type":"LineString","arcs":[2901],"id":21289,"properties":{"V":230}},{"type":"LineString","arcs":[2902],"id":21297,"properties":{"V":345}},{"type":"LineString","arcs":[2903],"id":21300,"properties":{"V":230}},{"type":"LineString","arcs":[2904],"id":21301,"properties":{"V":230}},{"type":"LineString","arcs":[2905],"id":21304,"properties":{"V":345}},{"type":"LineString","arcs":[2906],"id":21329,"properties":{"V":345}},{"type":"LineString","arcs":[2907,2908],"id":21334,"properties":{"V":230}},{"type":"LineString","arcs":[2909],"id":21336,"properties":{"V":230}},{"type":"LineString","arcs":[2910],"id":21350,"properties":{"V":345}},{"type":"LineString","arcs":[2911],"id":21357,"properties":{"V":345}},{"type":"LineString","arcs":[2912],"id":21362,"properties":{"V":230}},{"type":"LineString","arcs":[2913],"id":21363,"properties":{"V":345}},{"type":"LineString","arcs":[2914],"id":21365,"properties":{"V":230}},{"type":"LineString","arcs":[2915],"id":21370,"properties":{"V":345}},{"type":"LineString","arcs":[2916],"id":21372,"properties":{"V":345}},{"type":"LineString","arcs":[2917],"id":21373,"properties":{"V":345}},{"type":"LineString","arcs":[2918],"id":21379,"properties":{"V":230}},{"type":"LineString","arcs":[2919],"id":21381,"properties":{"V":345}},{"type":"LineString","arcs":[2920],"id":21383,"properties":{"V":230}},{"type":"LineString","arcs":[2921],"id":21384,"properties":{"V":230}},{"type":"LineString","arcs":[2922],"id":21387,"properties":{"V":230}},{"type":"LineString","arcs":[2923],"id":21394,"properties":{"V":230}},{"type":"LineString","arcs":[2924],"id":21437,"properties":{"V":230}},{"type":"LineString","arcs":[2925],"id":21442,"properties":{"V":345}},{"type":"LineString","arcs":[2926],"id":21454,"properties":{"V":345}},{"type":"LineString","arcs":[2927],"id":21459,"properties":{"V":230}},{"type":"LineString","arcs":[2928,2929],"id":21460,"properties":{"V":230}},{"type":"LineString","arcs":[2930],"id":21507,"properties":{"V":500}},{"type":"LineString","arcs":[2931],"id":21513,"properties":{"V":230}},{"type":"LineString","arcs":[2932],"id":21516,"properties":{"V":230}},{"type":"LineString","arcs":[2933],"id":21529,"properties":{"V":230}},{"type":"LineString","arcs":[2934],"id":21535,"properties":{"V":230}},{"type":"LineString","arcs":[2935],"id":21538,"properties":{"V":345}},{"type":"LineString","arcs":[2936],"id":21539,"properties":{"V":500}},{"type":"LineString","arcs":[2937],"id":21542,"properties":{"V":345}},{"type":"LineString","arcs":[2938],"id":21552,"properties":{"V":345}},{"type":"LineString","arcs":[2939],"id":21557,"properties":{"V":230}},{"type":"LineString","arcs":[2940],"id":21559,"properties":{"V":345}},{"type":"LineString","arcs":[2941],"id":21565,"properties":{"V":230}},{"type":"LineString","arcs":[2942],"id":21567,"properties":{"V":230}},{"type":"LineString","arcs":[2943],"id":21584,"properties":{"V":230}},{"type":"LineString","arcs":[2944],"id":21588,"properties":{"V":230}},{"type":"LineString","arcs":[2945],"id":21605,"properties":{"V":230}},{"type":"LineString","arcs":[2946],"id":21619,"properties":{"V":345}},{"type":"LineString","arcs":[2947],"id":21624,"properties":{"V":230}},{"type":"LineString","arcs":[2948],"id":21625,"properties":{"V":345}},{"type":"LineString","arcs":[2949],"id":21626,"properties":{"V":345}},{"type":"LineString","arcs":[2950],"id":21628,"properties":{"V":230}},{"type":"LineString","arcs":[2951],"id":21629,"properties":{"V":345}},{"type":"LineString","arcs":[2952],"id":21637,"properties":{"V":230}},{"type":"LineString","arcs":[2953],"id":21641,"properties":{"V":230}},{"type":"LineString","arcs":[2954],"id":21643,"properties":{"V":230}},{"type":"LineString","arcs":[2955],"id":21654,"properties":{"V":345}},{"type":"LineString","arcs":[2956],"id":21656,"properties":{"V":500}},{"type":"LineString","arcs":[2957],"id":21664,"properties":{"V":230}},{"type":"LineString","arcs":[2958],"id":21665,"properties":{"V":230}},{"type":"LineString","arcs":[2959],"id":21669,"properties":{"V":500}},{"type":"LineString","arcs":[2960],"id":21673,"properties":{"V":345}},{"type":"LineString","arcs":[2961],"id":21675,"properties":{"V":230}},{"type":"LineString","arcs":[2962],"id":21682,"properties":{"V":230}},{"type":"LineString","arcs":[2963],"id":21688,"properties":{"V":345}},{"type":"LineString","arcs":[2964],"id":21690,"properties":{"V":500}},{"type":"LineString","arcs":[2965],"id":21694,"properties":{"V":230}},{"type":"LineString","arcs":[2966],"id":21701,"properties":{"V":230}},{"type":"LineString","arcs":[2967],"id":21702,"properties":{"V":230}},{"type":"LineString","arcs":[2968],"id":21714,"properties":{"V":230}},{"type":"LineString","arcs":[2969],"id":21717,"properties":{"V":345}},{"type":"LineString","arcs":[2970],"id":21723,"properties":{"V":230}},{"type":"LineString","arcs":[2971],"id":21731,"properties":{"V":345}},{"type":"LineString","arcs":[2972],"id":21736,"properties":{"V":230}},{"type":"LineString","arcs":[2973],"id":21742,"properties":{"V":230}},{"type":"LineString","arcs":[2974],"id":21746,"properties":{"V":230}},{"type":"LineString","arcs":[2975],"id":21757,"properties":{"V":345}},{"type":"LineString","arcs":[2976],"id":21766,"properties":{"V":230}},{"type":"LineString","arcs":[2977],"id":21773,"properties":{"V":230}},{"type":"LineString","arcs":[2978],"id":21776,"properties":{"V":230}},{"type":"LineString","arcs":[2979],"id":21779,"properties":{"V":230}},{"type":"LineString","arcs":[2980],"id":21796,"properties":{"V":500}},{"type":"LineString","arcs":[2981],"id":21803,"properties":{"V":230}},{"type":"LineString","arcs":[2982],"id":21809,"properties":{"V":500}},{"type":"LineString","arcs":[2983],"id":21817,"properties":{"V":230}},{"type":"LineString","arcs":[2984],"id":21819,"properties":{"V":345}},{"type":"LineString","arcs":[2985],"id":21821,"properties":{"V":230}},{"type":"LineString","arcs":[2986],"id":21831,"properties":{"V":230}},{"type":"LineString","arcs":[2987],"id":21833,"properties":{"V":230}},{"type":"LineString","arcs":[2988],"id":21838,"properties":{"V":230}},{"type":"LineString","arcs":[2989],"id":21845,"properties":{"V":230}},{"type":"LineString","arcs":[2990],"id":21850,"properties":{"V":230}},{"type":"LineString","arcs":[2991],"id":21853,"properties":{"V":500}},{"type":"LineString","arcs":[2992,2993,2994,2077,2995],"id":21854,"properties":{"V":345}},{"type":"LineString","arcs":[2996],"id":21863,"properties":{"V":230}},{"type":"LineString","arcs":[2997],"id":21865,"properties":{"V":345}},{"type":"LineString","arcs":[2998],"id":21875,"properties":{"V":230}},{"type":"LineString","arcs":[2999],"id":21890,"properties":{"V":230}},{"type":"LineString","arcs":[3000],"id":21895,"properties":{"V":345}},{"type":"LineString","arcs":[3001],"id":21904,"properties":{"V":345}},{"type":"LineString","arcs":[3002],"id":21918,"properties":{"V":230}},{"type":"LineString","arcs":[3003],"id":21937,"properties":{"V":500}},{"type":"LineString","arcs":[3004],"id":21941,"properties":{"V":345}},{"type":"LineString","arcs":[3005],"id":21948,"properties":{"V":345}},{"type":"LineString","arcs":[3006],"id":21957,"properties":{"V":230}},{"type":"LineString","arcs":[3007],"id":21976,"properties":{"V":345}},{"type":"LineString","arcs":[3008],"id":21981,"properties":{"V":230}},{"type":"LineString","arcs":[3009],"id":21989,"properties":{"V":230}},{"type":"LineString","arcs":[3010],"id":21991,"properties":{"V":230}},{"type":"LineString","arcs":[3011],"id":21992,"properties":{"V":345}},{"type":"LineString","arcs":[3012],"id":21998,"properties":{"V":230}},{"type":"LineString","arcs":[3013],"id":22001,"properties":{"V":230}},{"type":"LineString","arcs":[3014],"id":22009,"properties":{"V":345}},{"type":"LineString","arcs":[3015],"id":22011,"properties":{"V":345}},{"type":"LineString","arcs":[3016],"id":22021,"properties":{"V":345}},{"type":"LineString","arcs":[3017],"id":22022,"properties":{"V":345}},{"type":"LineString","arcs":[3018],"id":22026,"properties":{"V":345}},{"type":"LineString","arcs":[3019],"id":22035,"properties":{"V":345}},{"type":"LineString","arcs":[3020],"id":22040,"properties":{"V":230}},{"type":"LineString","arcs":[3021],"id":22070,"properties":{"V":345}},{"type":"LineString","arcs":[3022],"id":22080,"properties":{"V":345}},{"type":"LineString","arcs":[3023],"id":22091,"properties":{"V":345}},{"type":"LineString","arcs":[3024],"id":22092,"properties":{"V":230}},{"type":"LineString","arcs":[3025],"id":22094,"properties":{"V":230}},{"type":"LineString","arcs":[3026],"id":22102,"properties":{"V":500}},{"type":"LineString","arcs":[3027],"id":22109,"properties":{"V":230}},{"type":"LineString","arcs":[3028],"id":22122,"properties":{"V":500}},{"type":"LineString","arcs":[3029],"id":22127,"properties":{"V":345}},{"type":"LineString","arcs":[3030],"id":22128,"properties":{"V":230}},{"type":"LineString","arcs":[3031],"id":22132,"properties":{"V":230}},{"type":"LineString","arcs":[3032],"id":22144,"properties":{"V":230}},{"type":"LineString","arcs":[3033],"id":22161,"properties":{"V":230}},{"type":"LineString","arcs":[3034],"id":22164,"properties":{"V":230}},{"type":"LineString","arcs":[3035],"id":22169,"properties":{"V":345}},{"type":"LineString","arcs":[3036],"id":22176,"properties":{"V":230}},{"type":"LineString","arcs":[3037],"id":22186,"properties":{"V":230}},{"type":"LineString","arcs":[3038],"id":22199,"properties":{"V":345}},{"type":"LineString","arcs":[3039],"id":22208,"properties":{"V":345}},{"type":"LineString","arcs":[3040],"id":22210,"properties":{"V":230}},{"type":"LineString","arcs":[3041],"id":22213,"properties":{"V":230}},{"type":"LineString","arcs":[3042],"id":22222,"properties":{"V":287}},{"type":"LineString","arcs":[3043],"id":22238,"properties":{"V":345}},{"type":"LineString","arcs":[3044],"id":22245,"properties":{"V":230}},{"type":"LineString","arcs":[1822],"id":22249,"properties":{"V":500}},{"type":"LineString","arcs":[3045],"id":22251,"properties":{"V":345}},{"type":"LineString","arcs":[3046],"id":22253,"properties":{"V":230}},{"type":"LineString","arcs":[3047],"id":22265,"properties":{"V":230}},{"type":"LineString","arcs":[3048,3049],"id":22285,"properties":{"V":230}},{"type":"LineString","arcs":[3050],"id":22287,"properties":{"V":230}},{"type":"LineString","arcs":[3051],"id":22294,"properties":{"V":345}},{"type":"LineString","arcs":[3052],"id":22311,"properties":{"V":345}},{"type":"LineString","arcs":[3053],"id":22314,"properties":{"V":230}},{"type":"LineString","arcs":[3054],"id":22323,"properties":{"V":230}},{"type":"LineString","arcs":[3055],"id":22334,"properties":{"V":230}},{"type":"LineString","arcs":[3056],"id":22346,"properties":{"V":230}},{"type":"LineString","arcs":[3057],"id":22359,"properties":{"V":345}},{"type":"LineString","arcs":[3058],"id":22378,"properties":{"V":230}},{"type":"LineString","arcs":[3059],"id":22391,"properties":{"V":230}},{"type":"LineString","arcs":[3060],"id":22393,"properties":{"V":500}},{"type":"LineString","arcs":[3061],"id":22401,"properties":{"V":230}},{"type":"LineString","arcs":[3062],"id":22402,"properties":{"V":345}},{"type":"LineString","arcs":[3063],"id":22404,"properties":{"V":230}},{"type":"LineString","arcs":[3064],"id":22414,"properties":{"V":230}},{"type":"LineString","arcs":[3065],"id":22420,"properties":{"V":345}},{"type":"LineString","arcs":[3066],"id":22451,"properties":{"V":230}},{"type":"LineString","arcs":[3067],"id":22456,"properties":{"V":230}},{"type":"LineString","arcs":[3068],"id":22464,"properties":{"V":500}},{"type":"LineString","arcs":[3069],"id":22493,"properties":{"V":345}},{"type":"LineString","arcs":[3070],"id":22497,"properties":{"V":345}},{"type":"LineString","arcs":[3071],"id":22510,"properties":{"V":230}},{"type":"LineString","arcs":[3072],"id":22522,"properties":{"V":230}},{"type":"LineString","arcs":[3073],"id":22528,"properties":{"V":230}},{"type":"LineString","arcs":[3074],"id":22533,"properties":{"V":230}},{"type":"LineString","arcs":[3075],"id":22545,"properties":{"V":230}},{"type":"LineString","arcs":[3076],"id":22553,"properties":{"V":345}},{"type":"LineString","arcs":[3077],"id":22554,"properties":{"V":230}},{"type":"LineString","arcs":[3078],"id":22584,"properties":{"V":345}},{"type":"LineString","arcs":[3079],"id":22587,"properties":{"V":345}},{"type":"LineString","arcs":[3080],"id":22588,"properties":{"V":230}},{"type":"LineString","arcs":[3081],"id":22593,"properties":{"V":345}},{"type":"LineString","arcs":[3082],"id":22600,"properties":{"V":230}},{"type":"LineString","arcs":[3083],"id":22615,"properties":{"V":345}},{"type":"LineString","arcs":[3084],"id":22617,"properties":{"V":345}},{"type":"LineString","arcs":[3085],"id":22621,"properties":{"V":230}},{"type":"LineString","arcs":[3086],"id":22628,"properties":{"V":500}},{"type":"LineString","arcs":[3087],"id":22634,"properties":{"V":230}},{"type":"LineString","arcs":[3088],"id":22646,"properties":{"V":345}},{"type":"LineString","arcs":[3089,3090],"id":22647,"properties":{"V":230}},{"type":"LineString","arcs":[3091],"id":22649,"properties":{"V":230}},{"type":"LineString","arcs":[3092],"id":22653,"properties":{"V":345}},{"type":"LineString","arcs":[3093],"id":22659,"properties":{"V":230}},{"type":"LineString","arcs":[3094],"id":22660,"properties":{"V":230}},{"type":"LineString","arcs":[3095],"id":22671,"properties":{"V":345}},{"type":"LineString","arcs":[3096],"id":22672,"properties":{"V":345}},{"type":"LineString","arcs":[3097],"id":22681,"properties":{"V":230}},{"type":"LineString","arcs":[3098],"id":22683,"properties":{"V":345}},{"type":"LineString","arcs":[3099],"id":22684,"properties":{"V":230}},{"type":"LineString","arcs":[3100],"id":22689,"properties":{"V":345}},{"type":"LineString","arcs":[3101,3102],"id":22691,"properties":{"V":345}},{"type":"LineString","arcs":[3103],"id":22700,"properties":{"V":230}},{"type":"LineString","arcs":[3104],"id":22701,"properties":{"V":230}},{"type":"LineString","arcs":[3105],"id":22709,"properties":{"V":230}},{"type":"LineString","arcs":[3106],"id":22725,"properties":{"V":230}},{"type":"LineString","arcs":[3107],"id":22727,"properties":{"V":345}},{"type":"LineString","arcs":[3108],"id":22737,"properties":{"V":230}},{"type":"LineString","arcs":[3109],"id":22738,"properties":{"V":230}},{"type":"LineString","arcs":[3110,3111],"id":22747,"properties":{"V":345}},{"type":"LineString","arcs":[3112],"id":22752,"properties":{"V":345}},{"type":"LineString","arcs":[3113],"id":22756,"properties":{"V":230}},{"type":"LineString","arcs":[3114],"id":22760,"properties":{"V":500}},{"type":"LineString","arcs":[3115],"id":22765,"properties":{"V":345}},{"type":"LineString","arcs":[3116],"id":22770,"properties":{"V":230}},{"type":"LineString","arcs":[3117],"id":22775,"properties":{"V":345}},{"type":"LineString","arcs":[3118],"id":22786,"properties":{"V":345}},{"type":"LineString","arcs":[3119,3120],"id":22790,"properties":{"V":345}},{"type":"LineString","arcs":[3121],"id":22791,"properties":{"V":230}},{"type":"LineString","arcs":[3122],"id":22793,"properties":{"V":345}},{"type":"LineString","arcs":[3123],"id":22797,"properties":{"V":500}},{"type":"LineString","arcs":[3124],"id":22799,"properties":{"V":230}},{"type":"LineString","arcs":[3125],"id":22804,"properties":{"V":230}},{"type":"LineString","arcs":[3126],"id":22825,"properties":{"V":230}},{"type":"LineString","arcs":[3127,3128,3129],"id":22842,"properties":{"V":345}},{"type":"LineString","arcs":[3130],"id":22843,"properties":{"V":345}},{"type":"LineString","arcs":[3131],"id":22858,"properties":{"V":230}},{"type":"LineString","arcs":[3132],"id":22876,"properties":{"V":230}},{"type":"LineString","arcs":[3133],"id":22887,"properties":{"V":345}},{"type":"LineString","arcs":[3134],"id":22934,"properties":{"V":345}},{"type":"LineString","arcs":[3135],"id":22944,"properties":{"V":345}},{"type":"LineString","arcs":[3136],"id":22961,"properties":{"V":230}},{"type":"LineString","arcs":[3137],"id":22965,"properties":{"V":345}},{"type":"LineString","arcs":[3138],"id":22970,"properties":{"V":230}},{"type":"LineString","arcs":[3139],"id":22972,"properties":{"V":230}},{"type":"LineString","arcs":[3140],"id":22975,"properties":{"V":345}},{"type":"LineString","arcs":[3141],"id":22982,"properties":{"V":345}},{"type":"LineString","arcs":[3142],"id":23006,"properties":{"V":230}},{"type":"LineString","arcs":[3143],"id":23009,"properties":{"V":345}},{"type":"LineString","arcs":[3144],"id":23017,"properties":{"V":345}},{"type":"LineString","arcs":[3145,3146],"id":23020,"properties":{"V":230}},{"type":"LineString","arcs":[3147],"id":23021,"properties":{"V":230}},{"type":"LineString","arcs":[3148],"id":23024,"properties":{"V":345}},{"type":"LineString","arcs":[3149],"id":23031,"properties":{"V":230}},{"type":"LineString","arcs":[3150],"id":23037,"properties":{"V":500}},{"type":"LineString","arcs":[3151],"id":23050,"properties":{"V":230}},{"type":"LineString","arcs":[3152],"id":23055,"properties":{"V":500}},{"type":"LineString","arcs":[3153],"id":23063,"properties":{"V":345}},{"type":"LineString","arcs":[3154],"id":23065,"properties":{"V":230}},{"type":"LineString","arcs":[3155],"id":23079,"properties":{"V":230}},{"type":"LineString","arcs":[3156],"id":23086,"properties":{"V":230}},{"type":"LineString","arcs":[3157],"id":23089,"properties":{"V":230}},{"type":"LineString","arcs":[3158],"id":23090,"properties":{"V":230}},{"type":"LineString","arcs":[3159],"id":23094,"properties":{"V":230}},{"type":"LineString","arcs":[3160],"id":23095,"properties":{"V":230}},{"type":"LineString","arcs":[3161],"id":23097,"properties":{"V":230}},{"type":"LineString","arcs":[3162],"id":23111,"properties":{"V":230}},{"type":"LineString","arcs":[3163],"id":23124,"properties":{"V":345}},{"type":"LineString","arcs":[3164],"id":23132,"properties":{"V":345}},{"type":"LineString","arcs":[3165],"id":23142,"properties":{"V":345}},{"type":"LineString","arcs":[3166],"id":23145,"properties":{"V":230}},{"type":"LineString","arcs":[3167],"id":23146,"properties":{"V":345}},{"type":"LineString","arcs":[3168],"id":23152,"properties":{"V":230}},{"type":"LineString","arcs":[3169],"id":23157,"properties":{"V":230}},{"type":"LineString","arcs":[3170],"id":23162,"properties":{"V":230}},{"type":"LineString","arcs":[3171],"id":23164,"properties":{"V":230}},{"type":"LineString","arcs":[3172],"id":23174,"properties":{"V":345}},{"type":"LineString","arcs":[3173],"id":23177,"properties":{"V":230}},{"type":"LineString","arcs":[3174],"id":23179,"properties":{"V":230}},{"type":"LineString","arcs":[3175],"id":23184,"properties":{"V":345}},{"type":"LineString","arcs":[3176],"id":23187,"properties":{"V":230}},{"type":"LineString","arcs":[3177],"id":23191,"properties":{"V":230}},{"type":"LineString","arcs":[3178],"id":23193,"properties":{"V":230}},{"type":"LineString","arcs":[3179],"id":23196,"properties":{"V":230}},{"type":"LineString","arcs":[3180],"id":23199,"properties":{"V":500}},{"type":"LineString","arcs":[3181],"id":23202,"properties":{"V":345}},{"type":"LineString","arcs":[3182],"id":23227,"properties":{"V":345}},{"type":"LineString","arcs":[3183],"id":23228,"properties":{"V":230}},{"type":"LineString","arcs":[3184],"id":23231,"properties":{"V":230}},{"type":"LineString","arcs":[3185],"id":23233,"properties":{"V":345}},{"type":"LineString","arcs":[3186],"id":23254,"properties":{"V":230}},{"type":"LineString","arcs":[3187],"id":23268,"properties":{"V":230}},{"type":"LineString","arcs":[3188],"id":23278,"properties":{"V":230}},{"type":"LineString","arcs":[3189],"id":23280,"properties":{"V":230}},{"type":"LineString","arcs":[3190],"id":23300,"properties":{"V":230}},{"type":"LineString","arcs":[3191],"id":23306,"properties":{"V":345}},{"type":"LineString","arcs":[3192],"id":23323,"properties":{"V":230}},{"type":"LineString","arcs":[3193],"id":23336,"properties":{"V":345}},{"type":"LineString","arcs":[3194],"id":23337,"properties":{"V":230}},{"type":"LineString","arcs":[3195],"id":23359,"properties":{"V":230}},{"type":"LineString","arcs":[3196],"id":23376,"properties":{"V":230}},{"type":"LineString","arcs":[3197],"id":23378,"properties":{"V":345}},{"type":"LineString","arcs":[3198],"id":23380,"properties":{"V":230}},{"type":"LineString","arcs":[3199],"id":23387,"properties":{"V":230}},{"type":"LineString","arcs":[3200],"id":23388,"properties":{"V":230}},{"type":"LineString","arcs":[3201,3202],"id":23394,"properties":{"V":230}},{"type":"LineString","arcs":[3203],"id":23398,"properties":{"V":230}},{"type":"LineString","arcs":[3204],"id":23400,"properties":{"V":230}},{"type":"LineString","arcs":[3205],"id":23405,"properties":{"V":230}},{"type":"LineString","arcs":[3206],"id":23406,"properties":{"V":230}},{"type":"LineString","arcs":[3207],"id":23407,"properties":{"V":230}},{"type":"LineString","arcs":[3208],"id":23425,"properties":{"V":230}},{"type":"LineString","arcs":[3209],"id":23436,"properties":{"V":230}},{"type":"LineString","arcs":[3210],"id":23440,"properties":{"V":500}},{"type":"LineString","arcs":[3211],"id":23448,"properties":{"V":230}},{"type":"LineString","arcs":[3212],"id":23459,"properties":{"V":500}},{"type":"LineString","arcs":[3213],"id":23472,"properties":{"V":230}},{"type":"LineString","arcs":[3214],"id":23475,"properties":{"V":345}},{"type":"LineString","arcs":[3215],"id":23476,"properties":{"V":500}},{"type":"LineString","arcs":[3216],"id":23489,"properties":{"V":345}},{"type":"LineString","arcs":[3217],"id":23493,"properties":{"V":345}},{"type":"LineString","arcs":[3218],"id":23497,"properties":{"V":345}},{"type":"LineString","arcs":[3219],"id":23506,"properties":{"V":230}},{"type":"LineString","arcs":[3220],"id":23513,"properties":{"V":230}},{"type":"LineString","arcs":[3221],"id":23526,"properties":{"V":230}},{"type":"LineString","arcs":[3222],"id":23531,"properties":{"V":345}},{"type":"LineString","arcs":[3223],"id":23538,"properties":{"V":230}},{"type":"LineString","arcs":[3224],"id":23542,"properties":{"V":230}},{"type":"LineString","arcs":[3225],"id":23544,"properties":{"V":345}},{"type":"LineString","arcs":[3226],"id":23551,"properties":{"V":345}},{"type":"LineString","arcs":[3227],"id":23552,"properties":{"V":230}},{"type":"LineString","arcs":[3228],"id":23558,"properties":{"V":500}},{"type":"LineString","arcs":[3229],"id":23578,"properties":{"V":230}},{"type":"LineString","arcs":[3230],"id":23587,"properties":{"V":230}},{"type":"LineString","arcs":[3231],"id":23593,"properties":{"V":230}},{"type":"LineString","arcs":[3232],"id":23600,"properties":{"V":345}},{"type":"LineString","arcs":[3233],"id":23603,"properties":{"V":230}},{"type":"LineString","arcs":[3234],"id":23620,"properties":{"V":230}},{"type":"LineString","arcs":[3235],"id":23622,"properties":{"V":230}},{"type":"LineString","arcs":[3236],"id":23626,"properties":{"V":230}},{"type":"LineString","arcs":[3237,3238],"id":23628,"properties":{"V":230}},{"type":"LineString","arcs":[3239],"id":23641,"properties":{"V":230}},{"type":"LineString","arcs":[3240],"id":23642,"properties":{"V":345}},{"type":"LineString","arcs":[3241],"id":23657,"properties":{"V":345}},{"type":"LineString","arcs":[3242],"id":23659,"properties":{"V":230}},{"type":"LineString","arcs":[3243],"id":23672,"properties":{"V":345}},{"type":"LineString","arcs":[3244],"id":23676,"properties":{"V":230}},{"type":"LineString","arcs":[3245],"id":23692,"properties":{"V":230}},{"type":"LineString","arcs":[3246],"id":23699,"properties":{"V":500}},{"type":"LineString","arcs":[3247],"id":23700,"properties":{"V":345}},{"type":"LineString","arcs":[3248],"id":23701,"properties":{"V":230}},{"type":"LineString","arcs":[3249],"id":23708,"properties":{"V":230}},{"type":"LineString","arcs":[3250],"id":23709,"properties":{"V":230}},{"type":"LineString","arcs":[3251,3252],"id":23717,"properties":{"V":230}},{"type":"LineString","arcs":[3253],"id":23718,"properties":{"V":345}},{"type":"LineString","arcs":[3254],"id":23721,"properties":{"V":345}},{"type":"LineString","arcs":[3255],"id":23727,"properties":{"V":230}},{"type":"LineString","arcs":[3256],"id":23732,"properties":{"V":345}},{"type":"LineString","arcs":[3257],"id":23734,"properties":{"V":230}},{"type":"LineString","arcs":[3258,3259,3260],"id":23741,"properties":{"V":230}},{"type":"LineString","arcs":[3261],"id":23758,"properties":{"V":230}},{"type":"LineString","arcs":[3262],"id":23771,"properties":{"V":345}},{"type":"LineString","arcs":[3263],"id":23773,"properties":{"V":230}},{"type":"LineString","arcs":[3264],"id":23774,"properties":{"V":230}},{"type":"LineString","arcs":[3265],"id":23777,"properties":{"V":230}},{"type":"LineString","arcs":[3266],"id":23797,"properties":{"V":230}},{"type":"LineString","arcs":[3267],"id":23798,"properties":{"V":230}},{"type":"LineString","arcs":[3268],"id":23819,"properties":{"V":345}},{"type":"LineString","arcs":[3269],"id":23832,"properties":{"V":500}},{"type":"LineString","arcs":[3270],"id":23843,"properties":{"V":230}},{"type":"LineString","arcs":[3271],"id":23852,"properties":{"V":345}},{"type":"LineString","arcs":[3272],"id":23867,"properties":{"V":230}},{"type":"LineString","arcs":[3273],"id":23869,"properties":{"V":230}},{"type":"LineString","arcs":[3274],"id":23872,"properties":{"V":230}},{"type":"LineString","arcs":[3275],"id":23876,"properties":{"V":345}},{"type":"MultiLineString","arcs":[[3276],[3277]],"id":23880,"properties":{"V":230}},{"type":"LineString","arcs":[3278],"id":23881,"properties":{"V":230}},{"type":"LineString","arcs":[3279],"id":23892,"properties":{"V":230}},{"type":"LineString","arcs":[3280],"id":23905,"properties":{"V":345}},{"type":"LineString","arcs":[3281],"id":23907,"properties":{"V":345}},{"type":"LineString","arcs":[3282],"id":23910,"properties":{"V":230}},{"type":"LineString","arcs":[3283],"id":23912,"properties":{"V":500}},{"type":"LineString","arcs":[3284],"id":23917,"properties":{"V":230}},{"type":"LineString","arcs":[3285],"id":23932,"properties":{"V":230}},{"type":"LineString","arcs":[3286],"id":23934,"properties":{"V":230}},{"type":"LineString","arcs":[3287],"id":23936,"properties":{"V":230}},{"type":"LineString","arcs":[3288],"id":23941,"properties":{"V":230}},{"type":"LineString","arcs":[3289],"id":23945,"properties":{"V":230}},{"type":"LineString","arcs":[3290],"id":23951,"properties":{"V":345}},{"type":"LineString","arcs":[3291],"id":23955,"properties":{"V":345}},{"type":"LineString","arcs":[3292],"id":23967,"properties":{"V":345}},{"type":"LineString","arcs":[3293],"id":23972,"properties":{"V":230}},{"type":"LineString","arcs":[3294],"id":23974,"properties":{"V":345}},{"type":"LineString","arcs":[3295],"id":23977,"properties":{"V":230}},{"type":"LineString","arcs":[3296],"id":23979,"properties":{"V":345}},{"type":"LineString","arcs":[3297],"id":23986,"properties":{"V":230}},{"type":"LineString","arcs":[3298],"id":23993,"properties":{"V":230}},{"type":"LineString","arcs":[3299],"id":23994,"properties":{"V":230}},{"type":"LineString","arcs":[3300],"id":24002,"properties":{"V":345}},{"type":"LineString","arcs":[3301],"id":24021,"properties":{"V":230}},{"type":"LineString","arcs":[3302],"id":24031,"properties":{"V":345}},{"type":"LineString","arcs":[3303],"id":24032,"properties":{"V":500}},{"type":"LineString","arcs":[3304],"id":24044,"properties":{"V":345}},{"type":"LineString","arcs":[3305],"id":24045,"properties":{"V":230}},{"type":"LineString","arcs":[3306],"id":24050,"properties":{"V":230}},{"type":"LineString","arcs":[3307],"id":24052,"properties":{"V":230}},{"type":"LineString","arcs":[3308],"id":24055,"properties":{"V":230}},{"type":"LineString","arcs":[3309],"id":24056,"properties":{"V":500}},{"type":"LineString","arcs":[3310],"id":24070,"properties":{"V":345}},{"type":"LineString","arcs":[3311],"id":24071,"properties":{"V":500}},{"type":"LineString","arcs":[3312],"id":24072,"properties":{"V":345}},{"type":"LineString","arcs":[3313],"id":24077,"properties":{"V":345}},{"type":"LineString","arcs":[3314],"id":24082,"properties":{"V":230}},{"type":"LineString","arcs":[3315],"id":24090,"properties":{"V":500}},{"type":"LineString","arcs":[3316],"id":24094,"properties":{"V":230}},{"type":"LineString","arcs":[3317],"id":24099,"properties":{"V":345}},{"type":"LineString","arcs":[3318],"id":24101,"properties":{"V":230}},{"type":"LineString","arcs":[3319],"id":24111,"properties":{"V":230}},{"type":"LineString","arcs":[3320],"id":24119,"properties":{"V":230}},{"type":"LineString","arcs":[3321],"id":24126,"properties":{"V":345}},{"type":"LineString","arcs":[3322],"id":24128,"properties":{"V":230}},{"type":"LineString","arcs":[3323],"id":24136,"properties":{"V":230}},{"type":"LineString","arcs":[3324],"id":24137,"properties":{"V":230}},{"type":"LineString","arcs":[3325],"id":24140,"properties":{"V":230}},{"type":"LineString","arcs":[3326],"id":24141,"properties":{"V":230}},{"type":"LineString","arcs":[3327],"id":24177,"properties":{"V":230}},{"type":"LineString","arcs":[3328],"id":24183,"properties":{"V":230}},{"type":"LineString","arcs":[3329],"id":24214,"properties":{"V":230}},{"type":"LineString","arcs":[3330],"id":24226,"properties":{"V":230}},{"type":"LineString","arcs":[3331],"id":24230,"properties":{"V":230}},{"type":"LineString","arcs":[3332,3333],"id":24233,"properties":{"V":345}},{"type":"LineString","arcs":[3334],"id":24257,"properties":{"V":230}},{"type":"LineString","arcs":[3335],"id":24258,"properties":{"V":345}},{"type":"LineString","arcs":[3336],"id":24261,"properties":{"V":230}},{"type":"LineString","arcs":[3337],"id":24264,"properties":{"V":345}},{"type":"LineString","arcs":[3338],"id":24267,"properties":{"V":345}},{"type":"LineString","arcs":[3339],"id":24269,"properties":{"V":230}},{"type":"LineString","arcs":[3340],"id":24271,"properties":{"V":230}},{"type":"LineString","arcs":[3341],"id":24282,"properties":{"V":345}},{"type":"LineString","arcs":[3342],"id":24283,"properties":{"V":345}},{"type":"LineString","arcs":[3343],"id":24291,"properties":{"V":230}},{"type":"LineString","arcs":[3344],"id":24292,"properties":{"V":230}},{"type":"LineString","arcs":[3345],"id":24305,"properties":{"V":230}},{"type":"LineString","arcs":[3346],"id":24307,"properties":{"V":345}},{"type":"LineString","arcs":[3347],"id":24312,"properties":{"V":500}},{"type":"LineString","arcs":[3348],"id":24321,"properties":{"V":230}},{"type":"LineString","arcs":[3349],"id":24328,"properties":{"V":230}},{"type":"LineString","arcs":[3350],"id":24330,"properties":{"V":230}},{"type":"LineString","arcs":[3351],"id":24331,"properties":{"V":345}},{"type":"LineString","arcs":[3352],"id":24333,"properties":{"V":345}},{"type":"LineString","arcs":[3353],"id":24344,"properties":{"V":230}},{"type":"LineString","arcs":[3354],"id":24351,"properties":{"V":345}},{"type":"LineString","arcs":[3355],"id":24360,"properties":{"V":345}},{"type":"LineString","arcs":[3356],"id":24373,"properties":{"V":230}},{"type":"LineString","arcs":[3357],"id":24380,"properties":{"V":345}},{"type":"LineString","arcs":[3358],"id":24386,"properties":{"V":230}},{"type":"LineString","arcs":[3359],"id":24392,"properties":{"V":230}},{"type":"LineString","arcs":[3360],"id":24400,"properties":{"V":230}},{"type":"LineString","arcs":[3361],"id":24404,"properties":{"V":345}},{"type":"LineString","arcs":[3362],"id":24409,"properties":{"V":345}},{"type":"LineString","arcs":[3363],"id":24411,"properties":{"V":230}},{"type":"LineString","arcs":[3364],"id":24425,"properties":{"V":345}},{"type":"LineString","arcs":[3365],"id":24431,"properties":{"V":345}},{"type":"LineString","arcs":[3366],"id":24435,"properties":{"V":230}},{"type":"LineString","arcs":[-1625],"id":24441,"properties":{"V":230}},{"type":"LineString","arcs":[3367],"id":24448,"properties":{"V":230}},{"type":"LineString","arcs":[3368],"id":24459,"properties":{"V":345}},{"type":"LineString","arcs":[3369],"id":24461,"properties":{"V":345}},{"type":"LineString","arcs":[3370],"id":24468,"properties":{"V":230}},{"type":"LineString","arcs":[3371],"id":24476,"properties":{"V":345}},{"type":"LineString","arcs":[3372],"id":24479,"properties":{"V":230}},{"type":"LineString","arcs":[3373],"id":24488,"properties":{"V":230}},{"type":"LineString","arcs":[3374],"id":24492,"properties":{"V":230}},{"type":"LineString","arcs":[3375],"id":24494,"properties":{"V":345}},{"type":"LineString","arcs":[3376],"id":24500,"properties":{"V":230}},{"type":"LineString","arcs":[3377],"id":24509,"properties":{"V":230}},{"type":"LineString","arcs":[3378],"id":24513,"properties":{"V":230}},{"type":"LineString","arcs":[3379],"id":24516,"properties":{"V":345}},{"type":"LineString","arcs":[3380],"id":24519,"properties":{"V":230}},{"type":"LineString","arcs":[3381],"id":24520,"properties":{"V":500}},{"type":"LineString","arcs":[3382],"id":24521,"properties":{"V":345}},{"type":"LineString","arcs":[3383],"id":24522,"properties":{"V":500}},{"type":"LineString","arcs":[3384],"id":24524,"properties":{"V":345}},{"type":"LineString","arcs":[3385],"id":24525,"properties":{"V":345}},{"type":"LineString","arcs":[3386],"id":24532,"properties":{"V":230}},{"type":"LineString","arcs":[3387],"id":24535,"properties":{"V":230}},{"type":"LineString","arcs":[3388],"id":24539,"properties":{"V":230}},{"type":"LineString","arcs":[3389],"id":24540,"properties":{"V":500}},{"type":"LineString","arcs":[3390],"id":24543,"properties":{"V":345}},{"type":"LineString","arcs":[3391],"id":24547,"properties":{"V":230}},{"type":"LineString","arcs":[3392],"id":24555,"properties":{"V":230}},{"type":"LineString","arcs":[3393],"id":24556,"properties":{"V":345}},{"type":"LineString","arcs":[3394],"id":24562,"properties":{"V":345}},{"type":"LineString","arcs":[3395],"id":24564,"properties":{"V":345}},{"type":"LineString","arcs":[3396],"id":24574,"properties":{"V":230}},{"type":"LineString","arcs":[3397],"id":24576,"properties":{"V":500}},{"type":"LineString","arcs":[3398],"id":24594,"properties":{"V":500}},{"type":"LineString","arcs":[3399],"id":24598,"properties":{"V":230}},{"type":"LineString","arcs":[3400],"id":24601,"properties":{"V":230}},{"type":"LineString","arcs":[3401],"id":24604,"properties":{"V":230}},{"type":"LineString","arcs":[3402],"id":24609,"properties":{"V":500}},{"type":"LineString","arcs":[3403],"id":24612,"properties":{"V":230}},{"type":"LineString","arcs":[3404],"id":24617,"properties":{"V":230}},{"type":"LineString","arcs":[3405],"id":24618,"properties":{"V":230}},{"type":"LineString","arcs":[3406],"id":24624,"properties":{"V":345}},{"type":"LineString","arcs":[3407],"id":24628,"properties":{"V":345}},{"type":"LineString","arcs":[3408],"id":24630,"properties":{"V":230}},{"type":"LineString","arcs":[3409],"id":24633,"properties":{"V":230}},{"type":"LineString","arcs":[3410],"id":24636,"properties":{"V":345}},{"type":"LineString","arcs":[3411],"id":24651,"properties":{"V":230}},{"type":"LineString","arcs":[3412],"id":24658,"properties":{"V":345}},{"type":"LineString","arcs":[3413,1812,3414,3415],"id":24675,"properties":{"V":500}},{"type":"LineString","arcs":[2213,3416],"id":24676,"properties":{"V":500}},{"type":"LineString","arcs":[3417],"id":24681,"properties":{"V":345}},{"type":"LineString","arcs":[3418],"id":24701,"properties":{"V":230}},{"type":"LineString","arcs":[3419],"id":24708,"properties":{"V":230}},{"type":"LineString","arcs":[3420],"id":24713,"properties":{"V":345}},{"type":"LineString","arcs":[3421],"id":24731,"properties":{"V":230}},{"type":"LineString","arcs":[3422],"id":24743,"properties":{"V":230}},{"type":"LineString","arcs":[3423],"id":24744,"properties":{"V":230}},{"type":"LineString","arcs":[3424],"id":24745,"properties":{"V":345}},{"type":"LineString","arcs":[3425],"id":24754,"properties":{"V":345}},{"type":"LineString","arcs":[3426],"id":24759,"properties":{"V":345}},{"type":"LineString","arcs":[3427],"id":24761,"properties":{"V":230}},{"type":"LineString","arcs":[3428],"id":24767,"properties":{"V":345}},{"type":"LineString","arcs":[3429],"id":24768,"properties":{"V":230}},{"type":"LineString","arcs":[3430],"id":24774,"properties":{"V":230}},{"type":"LineString","arcs":[3431],"id":24787,"properties":{"V":230}},{"type":"LineString","arcs":[3432],"id":24795,"properties":{"V":230}},{"type":"LineString","arcs":[3433],"id":24797,"properties":{"V":230}},{"type":"LineString","arcs":[3434],"id":24801,"properties":{"V":230}},{"type":"LineString","arcs":[3435],"id":24803,"properties":{"V":345}},{"type":"LineString","arcs":[3436],"id":24811,"properties":{"V":230}},{"type":"LineString","arcs":[3437],"id":24826,"properties":{"V":230}},{"type":"LineString","arcs":[3438],"id":24837,"properties":{"V":230}},{"type":"LineString","arcs":[3439],"id":24845,"properties":{"V":230}},{"type":"LineString","arcs":[3440],"id":24846,"properties":{"V":230}},{"type":"LineString","arcs":[3441],"id":24847,"properties":{"V":230}},{"type":"LineString","arcs":[3442],"id":24860,"properties":{"V":230}},{"type":"LineString","arcs":[3443],"id":24862,"properties":{"V":230}},{"type":"LineString","arcs":[3444],"id":24864,"properties":{"V":345}},{"type":"LineString","arcs":[3445],"id":24865,"properties":{"V":500}},{"type":"LineString","arcs":[3446],"id":24893,"properties":{"V":345}},{"type":"LineString","arcs":[3447],"id":24897,"properties":{"V":230}},{"type":"LineString","arcs":[3448],"id":24898,"properties":{"V":345}},{"type":"LineString","arcs":[3449],"id":24908,"properties":{"V":230}},{"type":"LineString","arcs":[3450],"id":24919,"properties":{"V":230}},{"type":"LineString","arcs":[3451],"id":24922,"properties":{"V":500}},{"type":"LineString","arcs":[3452],"id":24923,"properties":{"V":230}},{"type":"LineString","arcs":[3453],"id":24930,"properties":{"V":230}},{"type":"LineString","arcs":[3454],"id":24956,"properties":{"V":345}},{"type":"LineString","arcs":[3455],"id":24962,"properties":{"V":230}},{"type":"LineString","arcs":[3456],"id":24967,"properties":{"V":345}},{"type":"LineString","arcs":[3457],"id":24971,"properties":{"V":345}},{"type":"LineString","arcs":[3458],"id":24977,"properties":{"V":230}},{"type":"LineString","arcs":[3459],"id":24992,"properties":{"V":230}},{"type":"LineString","arcs":[3460],"id":24993,"properties":{"V":230}},{"type":"LineString","arcs":[3461],"id":24997,"properties":{"V":345}},{"type":"LineString","arcs":[3462],"id":25005,"properties":{"V":230}},{"type":"LineString","arcs":[3463],"id":25009,"properties":{"V":230}},{"type":"LineString","arcs":[3464],"id":25016,"properties":{"V":345}},{"type":"LineString","arcs":[3465],"id":25027,"properties":{"V":230}},{"type":"LineString","arcs":[3466],"id":25028,"properties":{"V":345}},{"type":"LineString","arcs":[3467],"id":25029,"properties":{"V":345}},{"type":"LineString","arcs":[3468],"id":25031,"properties":{"V":230}},{"type":"LineString","arcs":[3469],"id":25035,"properties":{"V":345}},{"type":"LineString","arcs":[3470],"id":25036,"properties":{"V":230}},{"type":"LineString","arcs":[3471],"id":25052,"properties":{"V":500}},{"type":"LineString","arcs":[3472,3473],"id":25057,"properties":{"V":345}},{"type":"LineString","arcs":[3474],"id":25059,"properties":{"V":230}},{"type":"LineString","arcs":[3475],"id":25068,"properties":{"V":230}},{"type":"LineString","arcs":[3476],"id":25070,"properties":{"V":500}},{"type":"LineString","arcs":[3477],"id":25073,"properties":{"V":230}},{"type":"LineString","arcs":[3478],"id":25080,"properties":{"V":230}},{"type":"LineString","arcs":[3479],"id":25081,"properties":{"V":345}},{"type":"LineString","arcs":[3480],"id":25089,"properties":{"V":345}},{"type":"LineString","arcs":[3481],"id":25095,"properties":{"V":345}},{"type":"LineString","arcs":[3482],"id":25097,"properties":{"V":345}},{"type":"LineString","arcs":[3483],"id":25104,"properties":{"V":345}},{"type":"LineString","arcs":[3484,3485,3486,3487,3488,3489],"id":25105,"properties":{"V":500}},{"type":"LineString","arcs":[3490],"id":25125,"properties":{"V":345}},{"type":"LineString","arcs":[3491,3492],"id":25133,"properties":{"V":230}},{"type":"LineString","arcs":[3493],"id":25144,"properties":{"V":230}},{"type":"LineString","arcs":[3494],"id":25147,"properties":{"V":230}},{"type":"LineString","arcs":[3495],"id":25148,"properties":{"V":230}},{"type":"LineString","arcs":[3496],"id":25153,"properties":{"V":345}},{"type":"LineString","arcs":[3497],"id":25164,"properties":{"V":345}},{"type":"LineString","arcs":[3498],"id":25172,"properties":{"V":230}},{"type":"LineString","arcs":[3499],"id":25174,"properties":{"V":230}},{"type":"LineString","arcs":[3500],"id":25195,"properties":{"V":230}},{"type":"LineString","arcs":[3501],"id":25217,"properties":{"V":345}},{"type":"LineString","arcs":[-2200,3502,3503,3504,3505,3506,-2194,3507,3508],"id":25223,"properties":{"V":345}},{"type":"LineString","arcs":[3509],"id":25244,"properties":{"V":230}},{"type":"LineString","arcs":[3510],"id":25250,"properties":{"V":230}},{"type":"LineString","arcs":[3511],"id":25257,"properties":{"V":230}},{"type":"LineString","arcs":[3512,3513,3514],"id":25258,"properties":{"V":345}},{"type":"LineString","arcs":[3515],"id":25268,"properties":{"V":345}},{"type":"LineString","arcs":[3516],"id":25270,"properties":{"V":230}},{"type":"LineString","arcs":[3517],"id":25272,"properties":{"V":230}},{"type":"LineString","arcs":[3518],"id":25279,"properties":{"V":345}},{"type":"LineString","arcs":[1730],"id":25282,"properties":{"V":230}},{"type":"LineString","arcs":[3519],"id":25303,"properties":{"V":230}},{"type":"LineString","arcs":[3520],"id":25307,"properties":{"V":345}},{"type":"LineString","arcs":[3521],"id":25310,"properties":{"V":230}},{"type":"LineString","arcs":[3522],"id":25322,"properties":{"V":238}},{"type":"LineString","arcs":[3523],"id":25334,"properties":{"V":345}},{"type":"LineString","arcs":[3524],"id":25335,"properties":{"V":230}},{"type":"LineString","arcs":[3525],"id":25339,"properties":{"V":345}},{"type":"LineString","arcs":[3526],"id":25345,"properties":{"V":230}},{"type":"LineString","arcs":[3527],"id":25347,"properties":{"V":345}},{"type":"LineString","arcs":[3528],"id":25356,"properties":{"V":230}},{"type":"LineString","arcs":[3529],"id":25358,"properties":{"V":345}},{"type":"LineString","arcs":[3530],"id":25391,"properties":{"V":230}},{"type":"LineString","arcs":[3531,3532],"id":25407,"properties":{"V":230}},{"type":"LineString","arcs":[3533],"id":25499,"properties":{"V":345}},{"type":"LineString","arcs":[3534],"id":25502,"properties":{"V":230}},{"type":"LineString","arcs":[3535],"id":25513,"properties":{"V":345}},{"type":"LineString","arcs":[3536],"id":25518,"properties":{"V":230}},{"type":"LineString","arcs":[3537],"id":25528,"properties":{"V":230}},{"type":"LineString","arcs":[3538],"id":25538,"properties":{"V":230}},{"type":"LineString","arcs":[3539],"id":25542,"properties":{"V":230}},{"type":"LineString","arcs":[3540],"id":25543,"properties":{"V":230}},{"type":"LineString","arcs":[3541],"id":25545,"properties":{"V":230}},{"type":"LineString","arcs":[3542],"id":25555,"properties":{"V":230}},{"type":"LineString","arcs":[3543],"id":25558,"properties":{"V":230}},{"type":"LineString","arcs":[3544],"id":25567,"properties":{"V":230}},{"type":"LineString","arcs":[3545],"id":25577,"properties":{"V":230}},{"type":"LineString","arcs":[3546],"id":25578,"properties":{"V":230}},{"type":"LineString","arcs":[3547],"id":25585,"properties":{"V":500}},{"type":"LineString","arcs":[3548],"id":25614,"properties":{"V":345}},{"type":"LineString","arcs":[3549],"id":25621,"properties":{"V":230}},{"type":"LineString","arcs":[3550],"id":25631,"properties":{"V":230}},{"type":"LineString","arcs":[3551],"id":25642,"properties":{"V":230}},{"type":"LineString","arcs":[3552],"id":25655,"properties":{"V":230}},{"type":"LineString","arcs":[3553],"id":25670,"properties":{"V":345}},{"type":"LineString","arcs":[3554],"id":25681,"properties":{"V":230}},{"type":"LineString","arcs":[3555],"id":25682,"properties":{"V":345}},{"type":"LineString","arcs":[3556],"id":25685,"properties":{"V":230}},{"type":"LineString","arcs":[3557],"id":25686,"properties":{"V":500}},{"type":"LineString","arcs":[3558],"id":25692,"properties":{"V":345}},{"type":"LineString","arcs":[3559],"id":25694,"properties":{"V":230}},{"type":"LineString","arcs":[3560],"id":25697,"properties":{"V":345}},{"type":"LineString","arcs":[3561],"id":25699,"properties":{"V":230}},{"type":"LineString","arcs":[3562],"id":25710,"properties":{"V":230}},{"type":"LineString","arcs":[3563],"id":25712,"properties":{"V":230}},{"type":"LineString","arcs":[3564],"id":25717,"properties":{"V":230}},{"type":"LineString","arcs":[3565],"id":25723,"properties":{"V":345}},{"type":"LineString","arcs":[3566],"id":25726,"properties":{"V":345}},{"type":"LineString","arcs":[3567],"id":25746,"properties":{"V":345}},{"type":"LineString","arcs":[3568],"id":25771,"properties":{"V":230}},{"type":"LineString","arcs":[3569],"id":25776,"properties":{"V":230}},{"type":"LineString","arcs":[3570],"id":25780,"properties":{"V":230}},{"type":"LineString","arcs":[3571],"id":25816,"properties":{"V":230}},{"type":"LineString","arcs":[3572],"id":25829,"properties":{"V":230}},{"type":"LineString","arcs":[3573],"id":25839,"properties":{"V":345}},{"type":"LineString","arcs":[3574],"id":25843,"properties":{"V":230}},{"type":"LineString","arcs":[3575],"id":25849,"properties":{"V":345}},{"type":"LineString","arcs":[3576],"id":25850,"properties":{"V":230}},{"type":"LineString","arcs":[3577],"id":25855,"properties":{"V":230}},{"type":"LineString","arcs":[3578],"id":25869,"properties":{"V":230}},{"type":"LineString","arcs":[3579],"id":25871,"properties":{"V":230}},{"type":"LineString","arcs":[3580],"id":25874,"properties":{"V":345}},{"type":"LineString","arcs":[3581],"id":25879,"properties":{"V":230}},{"type":"LineString","arcs":[3582],"id":25883,"properties":{"V":230}},{"type":"LineString","arcs":[3583],"id":25884,"properties":{"V":345}},{"type":"LineString","arcs":[3584],"id":25903,"properties":{"V":230}},{"type":"LineString","arcs":[3585],"id":25910,"properties":{"V":230}},{"type":"LineString","arcs":[3586],"id":25928,"properties":{"V":345}},{"type":"LineString","arcs":[3587],"id":25933,"properties":{"V":230}},{"type":"LineString","arcs":[3588],"id":25956,"properties":{"V":230}},{"type":"LineString","arcs":[3589],"id":25975,"properties":{"V":230}},{"type":"LineString","arcs":[3590],"id":26012,"properties":{"V":230}},{"type":"LineString","arcs":[3591],"id":26021,"properties":{"V":345}},{"type":"LineString","arcs":[3592],"id":26029,"properties":{"V":230}},{"type":"LineString","arcs":[3593],"id":26036,"properties":{"V":230}},{"type":"LineString","arcs":[3594],"id":26038,"properties":{"V":230}},{"type":"LineString","arcs":[3595],"id":26046,"properties":{"V":230}},{"type":"LineString","arcs":[3596],"id":26058,"properties":{"V":230}},{"type":"LineString","arcs":[3597],"id":26062,"properties":{"V":230}},{"type":"LineString","arcs":[3598],"id":26071,"properties":{"V":230}},{"type":"LineString","arcs":[3599],"id":26075,"properties":{"V":230}},{"type":"LineString","arcs":[3600],"id":26076,"properties":{"V":230}},{"type":"LineString","arcs":[3601],"id":26077,"properties":{"V":765}},{"type":"LineString","arcs":[3602],"id":26113,"properties":{"V":345}},{"type":"LineString","arcs":[3603],"id":26125,"properties":{"V":230}},{"type":"LineString","arcs":[3604],"id":26127,"properties":{"V":230}},{"type":"LineString","arcs":[3605],"id":26134,"properties":{"V":345}},{"type":"LineString","arcs":[3606],"id":26137,"properties":{"V":345}},{"type":"LineString","arcs":[3607],"id":26145,"properties":{"V":230}},{"type":"LineString","arcs":[3608],"id":26149,"properties":{"V":345}},{"type":"LineString","arcs":[3609],"id":26152,"properties":{"V":230}},{"type":"LineString","arcs":[3610],"id":26157,"properties":{"V":345}},{"type":"LineString","arcs":[3611],"id":26178,"properties":{"V":500}},{"type":"LineString","arcs":[3612],"id":26179,"properties":{"V":230}},{"type":"LineString","arcs":[3613],"id":26180,"properties":{"V":345}},{"type":"LineString","arcs":[3614],"id":26188,"properties":{"V":500}},{"type":"LineString","arcs":[3615],"id":26190,"properties":{"V":230}},{"type":"LineString","arcs":[3616],"id":26197,"properties":{"V":230}},{"type":"LineString","arcs":[3617],"id":26209,"properties":{"V":230}},{"type":"LineString","arcs":[3618],"id":26211,"properties":{"V":230}},{"type":"LineString","arcs":[3619],"id":26214,"properties":{"V":230}},{"type":"LineString","arcs":[3620],"id":26215,"properties":{"V":345}},{"type":"LineString","arcs":[3621],"id":26216,"properties":{"V":230}},{"type":"LineString","arcs":[3622],"id":26219,"properties":{"V":345}},{"type":"LineString","arcs":[3623],"id":26234,"properties":{"V":230}},{"type":"LineString","arcs":[3624,3625],"id":26237,"properties":{"V":230}},{"type":"LineString","arcs":[3626],"id":26242,"properties":{"V":345}},{"type":"LineString","arcs":[3627],"id":26244,"properties":{"V":230}},{"type":"LineString","arcs":[3628],"id":26272,"properties":{"V":230}},{"type":"LineString","arcs":[3629],"id":26277,"properties":{"V":230}},{"type":"LineString","arcs":[3630],"id":26280,"properties":{"V":230}},{"type":"LineString","arcs":[3631],"id":26282,"properties":{"V":230}},{"type":"LineString","arcs":[3632],"id":26290,"properties":{"V":230}},{"type":"LineString","arcs":[3633],"id":26292,"properties":{"V":230}},{"type":"LineString","arcs":[3634],"id":26294,"properties":{"V":500}},{"type":"LineString","arcs":[3635],"id":26301,"properties":{"V":345}},{"type":"LineString","arcs":[3636],"id":26321,"properties":{"V":230}},{"type":"LineString","arcs":[3637],"id":26327,"properties":{"V":230}},{"type":"LineString","arcs":[3638,3639],"id":26333,"properties":{"V":230}},{"type":"LineString","arcs":[3640,3641,3642],"id":26371,"properties":{"V":230}},{"type":"LineString","arcs":[3643],"id":26383,"properties":{"V":230}},{"type":"LineString","arcs":[3644],"id":26401,"properties":{"V":230}},{"type":"LineString","arcs":[3645],"id":26402,"properties":{"V":345}},{"type":"LineString","arcs":[3646],"id":26408,"properties":{"V":345}},{"type":"LineString","arcs":[3647],"id":26409,"properties":{"V":230}},{"type":"LineString","arcs":[3648],"id":26411,"properties":{"V":345}},{"type":"LineString","arcs":[3649],"id":26417,"properties":{"V":230}},{"type":"LineString","arcs":[3650],"id":26444,"properties":{"V":345}},{"type":"LineString","arcs":[3651],"id":26453,"properties":{"V":230}},{"type":"LineString","arcs":[3652],"id":26463,"properties":{"V":230}},{"type":"LineString","arcs":[3653],"id":26466,"properties":{"V":230}},{"type":"LineString","arcs":[3654],"id":26470,"properties":{"V":230}},{"type":"LineString","arcs":[3655],"id":26471,"properties":{"V":230}},{"type":"LineString","arcs":[3656],"id":26474,"properties":{"V":230}},{"type":"LineString","arcs":[3657],"id":26477,"properties":{"V":230}},{"type":"LineString","arcs":[3658],"id":26478,"properties":{"V":345}},{"type":"LineString","arcs":[3659],"id":26479,"properties":{"V":230}},{"type":"LineString","arcs":[3660],"id":26488,"properties":{"V":230}},{"type":"LineString","arcs":[3661],"id":26490,"properties":{"V":230}},{"type":"LineString","arcs":[3662],"id":26499,"properties":{"V":345}},{"type":"LineString","arcs":[3663],"id":26504,"properties":{"V":230}},{"type":"LineString","arcs":[3664,3665,3666],"id":26518,"properties":{"V":345}},{"type":"LineString","arcs":[3667],"id":26530,"properties":{"V":345}},{"type":"LineString","arcs":[3668],"id":26532,"properties":{"V":230}},{"type":"LineString","arcs":[3669],"id":26535,"properties":{"V":230}},{"type":"LineString","arcs":[3670,3671],"id":26539,"properties":{"V":500}},{"type":"LineString","arcs":[3672],"id":26544,"properties":{"V":345}},{"type":"LineString","arcs":[3673],"id":26546,"properties":{"V":345}},{"type":"LineString","arcs":[3674],"id":26547,"properties":{"V":230}},{"type":"LineString","arcs":[3675],"id":26550,"properties":{"V":345}},{"type":"LineString","arcs":[3676],"id":26564,"properties":{"V":230}},{"type":"LineString","arcs":[3677],"id":26575,"properties":{"V":230}},{"type":"LineString","arcs":[3678],"id":26580,"properties":{"V":345}},{"type":"LineString","arcs":[3679],"id":26587,"properties":{"V":230}},{"type":"LineString","arcs":[3680],"id":26589,"properties":{"V":230}},{"type":"LineString","arcs":[3681],"id":26597,"properties":{"V":230}},{"type":"LineString","arcs":[3682],"id":26602,"properties":{"V":345}},{"type":"LineString","arcs":[3683,3684,3685],"id":26603,"properties":{"V":230}},{"type":"LineString","arcs":[3686],"id":26606,"properties":{"V":230}},{"type":"LineString","arcs":[3687],"id":26614,"properties":{"V":230}},{"type":"LineString","arcs":[3688],"id":26619,"properties":{"V":230}},{"type":"LineString","arcs":[3689],"id":26631,"properties":{"V":345}},{"type":"LineString","arcs":[3690],"id":26645,"properties":{"V":230}},{"type":"LineString","arcs":[3691],"id":26655,"properties":{"V":345}},{"type":"LineString","arcs":[3692],"id":26656,"properties":{"V":500}},{"type":"LineString","arcs":[3693],"id":26673,"properties":{"V":230}},{"type":"LineString","arcs":[3694],"id":26683,"properties":{"V":230}},{"type":"LineString","arcs":[3695],"id":26685,"properties":{"V":345}},{"type":"LineString","arcs":[3696],"id":26688,"properties":{"V":230}},{"type":"LineString","arcs":[3697],"id":26693,"properties":{"V":230}},{"type":"LineString","arcs":[3698],"id":26701,"properties":{"V":230}},{"type":"LineString","arcs":[3699],"id":26703,"properties":{"V":500}},{"type":"LineString","arcs":[3700],"id":26708,"properties":{"V":230}},{"type":"LineString","arcs":[3701],"id":26723,"properties":{"V":230}},{"type":"LineString","arcs":[3702],"id":26751,"properties":{"V":230}},{"type":"LineString","arcs":[3703],"id":26763,"properties":{"V":345}},{"type":"LineString","arcs":[3704],"id":26766,"properties":{"V":230}},{"type":"LineString","arcs":[3705],"id":26770,"properties":{"V":345}},{"type":"LineString","arcs":[3706],"id":26772,"properties":{"V":230}},{"type":"LineString","arcs":[3707],"id":26787,"properties":{"V":230}},{"type":"LineString","arcs":[3708],"id":26794,"properties":{"V":230}},{"type":"LineString","arcs":[3709],"id":26796,"properties":{"V":345}},{"type":"LineString","arcs":[3710],"id":26799,"properties":{"V":230}},{"type":"LineString","arcs":[3711],"id":26800,"properties":{"V":345}},{"type":"LineString","arcs":[3712],"id":26813,"properties":{"V":230}},{"type":"LineString","arcs":[3713],"id":26819,"properties":{"V":230}},{"type":"LineString","arcs":[3714],"id":26824,"properties":{"V":345}},{"type":"LineString","arcs":[3715],"id":26825,"properties":{"V":230}},{"type":"LineString","arcs":[3716],"id":26827,"properties":{"V":230}},{"type":"LineString","arcs":[3717],"id":26831,"properties":{"V":230}},{"type":"LineString","arcs":[3718],"id":26835,"properties":{"V":230}},{"type":"LineString","arcs":[3719],"id":26838,"properties":{"V":230}},{"type":"LineString","arcs":[3720],"id":26841,"properties":{"V":765}},{"type":"LineString","arcs":[3721],"id":26849,"properties":{"V":230}},{"type":"LineString","arcs":[3722],"id":26858,"properties":{"V":500}},{"type":"LineString","arcs":[3723],"id":26864,"properties":{"V":230}},{"type":"LineString","arcs":[3724],"id":26865,"properties":{"V":230}},{"type":"LineString","arcs":[3725],"id":26872,"properties":{"V":230}},{"type":"LineString","arcs":[3726],"id":26888,"properties":{"V":345}},{"type":"LineString","arcs":[3727],"id":26895,"properties":{"V":230}},{"type":"LineString","arcs":[3728],"id":26904,"properties":{"V":230}},{"type":"LineString","arcs":[3729,3730,3731],"id":26907,"properties":{"V":230}},{"type":"LineString","arcs":[3732],"id":26917,"properties":{"V":500}},{"type":"LineString","arcs":[3733],"id":26921,"properties":{"V":230}},{"type":"LineString","arcs":[3734],"id":26923,"properties":{"V":230}},{"type":"LineString","arcs":[3735],"id":26927,"properties":{"V":230}},{"type":"LineString","arcs":[3736],"id":26928,"properties":{"V":230}},{"type":"LineString","arcs":[3737],"id":26934,"properties":{"V":230}},{"type":"LineString","arcs":[3738],"id":26938,"properties":{"V":230}},{"type":"LineString","arcs":[3739,3740],"id":26946,"properties":{"V":230}},{"type":"LineString","arcs":[3741],"id":26949,"properties":{"V":230}},{"type":"LineString","arcs":[3742],"id":26952,"properties":{"V":345}},{"type":"LineString","arcs":[3743],"id":26953,"properties":{"V":230}},{"type":"LineString","arcs":[3744],"id":26956,"properties":{"V":230}},{"type":"LineString","arcs":[3745],"id":26958,"properties":{"V":230}},{"type":"LineString","arcs":[3746],"id":26965,"properties":{"V":345}},{"type":"LineString","arcs":[3747],"id":26977,"properties":{"V":230}},{"type":"LineString","arcs":[3748],"id":26981,"properties":{"V":230}},{"type":"LineString","arcs":[3749],"id":26982,"properties":{"V":230}},{"type":"LineString","arcs":[3750],"id":26983,"properties":{"V":345}},{"type":"LineString","arcs":[3751],"id":26996,"properties":{"V":230}},{"type":"LineString","arcs":[3752],"id":27002,"properties":{"V":230}},{"type":"LineString","arcs":[3753],"id":27004,"properties":{"V":230}},{"type":"LineString","arcs":[3754],"id":27005,"properties":{"V":230}},{"type":"LineString","arcs":[3755],"id":27007,"properties":{"V":230}},{"type":"LineString","arcs":[3756],"id":27009,"properties":{"V":230}},{"type":"LineString","arcs":[3757],"id":27021,"properties":{"V":345}},{"type":"LineString","arcs":[3758],"id":27024,"properties":{"V":345}},{"type":"LineString","arcs":[3759],"id":27029,"properties":{"V":765}},{"type":"LineString","arcs":[3760],"id":27034,"properties":{"V":230}},{"type":"LineString","arcs":[3761],"id":27048,"properties":{"V":230}},{"type":"LineString","arcs":[3762],"id":27050,"properties":{"V":230}},{"type":"LineString","arcs":[3763],"id":27059,"properties":{"V":230}},{"type":"LineString","arcs":[3764],"id":27065,"properties":{"V":345}},{"type":"LineString","arcs":[3765],"id":27070,"properties":{"V":345}},{"type":"LineString","arcs":[3766],"id":27073,"properties":{"V":230}},{"type":"LineString","arcs":[3767],"id":27079,"properties":{"V":345}},{"type":"LineString","arcs":[3768],"id":27088,"properties":{"V":230}},{"type":"LineString","arcs":[3769],"id":27111,"properties":{"V":345}},{"type":"LineString","arcs":[3770],"id":27115,"properties":{"V":230}},{"type":"LineString","arcs":[3771],"id":27118,"properties":{"V":230}},{"type":"LineString","arcs":[3772],"id":27125,"properties":{"V":230}},{"type":"LineString","arcs":[3773],"id":27130,"properties":{"V":230}},{"type":"LineString","arcs":[3774],"id":27137,"properties":{"V":230}},{"type":"LineString","arcs":[3775],"id":27145,"properties":{"V":345}},{"type":"LineString","arcs":[3776],"id":27156,"properties":{"V":345}},{"type":"LineString","arcs":[3777],"id":27170,"properties":{"V":345}},{"type":"LineString","arcs":[3778],"id":27176,"properties":{"V":230}},{"type":"LineString","arcs":[3779],"id":27190,"properties":{"V":230}},{"type":"LineString","arcs":[3780],"id":27192,"properties":{"V":345}},{"type":"LineString","arcs":[3781,3782],"id":27202,"properties":{"V":230}},{"type":"LineString","arcs":[3783],"id":27208,"properties":{"V":345}},{"type":"LineString","arcs":[3784],"id":27214,"properties":{"V":345}},{"type":"LineString","arcs":[3785],"id":27223,"properties":{"V":230}},{"type":"LineString","arcs":[3786],"id":27226,"properties":{"V":230}},{"type":"LineString","arcs":[3787],"id":27236,"properties":{"V":230}},{"type":"LineString","arcs":[3788],"id":27244,"properties":{"V":230}},{"type":"LineString","arcs":[3789],"id":27245,"properties":{"V":345}},{"type":"LineString","arcs":[3790],"id":27251,"properties":{"V":345}},{"type":"LineString","arcs":[3791],"id":27254,"properties":{"V":230}},{"type":"LineString","arcs":[3792],"id":27255,"properties":{"V":230}},{"type":"LineString","arcs":[3793],"id":27262,"properties":{"V":230}},{"type":"LineString","arcs":[3794],"id":27264,"properties":{"V":230}},{"type":"LineString","arcs":[3795],"id":27265,"properties":{"V":345}},{"type":"LineString","arcs":[3796],"id":27282,"properties":{"V":345}},{"type":"LineString","arcs":[3797],"id":27285,"properties":{"V":345}},{"type":"LineString","arcs":[3798],"id":27296,"properties":{"V":345}},{"type":"LineString","arcs":[3799],"id":27305,"properties":{"V":230}},{"type":"LineString","arcs":[3800],"id":27310,"properties":{"V":345}},{"type":"LineString","arcs":[3801],"id":27316,"properties":{"V":345}},{"type":"LineString","arcs":[3802],"id":27325,"properties":{"V":230}},{"type":"LineString","arcs":[3803],"id":27327,"properties":{"V":230}},{"type":"LineString","arcs":[3804],"id":27338,"properties":{"V":230}},{"type":"LineString","arcs":[3805],"id":27343,"properties":{"V":230}},{"type":"LineString","arcs":[3806],"id":27352,"properties":{"V":345}},{"type":"LineString","arcs":[3807],"id":27359,"properties":{"V":345}},{"type":"LineString","arcs":[3808],"id":27364,"properties":{"V":345}},{"type":"LineString","arcs":[3809],"id":27366,"properties":{"V":230}},{"type":"LineString","arcs":[3810],"id":27367,"properties":{"V":345}},{"type":"LineString","arcs":[3811],"id":27380,"properties":{"V":230}},{"type":"LineString","arcs":[3812],"id":27385,"properties":{"V":230}},{"type":"LineString","arcs":[3813],"id":27398,"properties":{"V":230}},{"type":"LineString","arcs":[3814],"id":27407,"properties":{"V":230}},{"type":"LineString","arcs":[3815],"id":27413,"properties":{"V":230}},{"type":"LineString","arcs":[3816],"id":27424,"properties":{"V":500}},{"type":"LineString","arcs":[3817],"id":27426,"properties":{"V":345}},{"type":"LineString","arcs":[3818],"id":27427,"properties":{"V":230}},{"type":"LineString","arcs":[3819],"id":27448,"properties":{"V":230}},{"type":"LineString","arcs":[3820],"id":27449,"properties":{"V":230}},{"type":"LineString","arcs":[3821],"id":27451,"properties":{"V":230}},{"type":"LineString","arcs":[3822],"id":27455,"properties":{"V":230}},{"type":"LineString","arcs":[3823],"id":27459,"properties":{"V":230}},{"type":"LineString","arcs":[3824],"id":27467,"properties":{"V":230}},{"type":"LineString","arcs":[3825],"id":27468,"properties":{"V":230}},{"type":"LineString","arcs":[3826,3827],"id":27475,"properties":{"V":345}},{"type":"LineString","arcs":[3828],"id":27476,"properties":{"V":230}},{"type":"LineString","arcs":[3829],"id":27489,"properties":{"V":230}},{"type":"LineString","arcs":[3830],"id":27494,"properties":{"V":230}},{"type":"LineString","arcs":[3831],"id":27497,"properties":{"V":230}},{"type":"LineString","arcs":[3832],"id":27520,"properties":{"V":345}},{"type":"LineString","arcs":[3833],"id":27522,"properties":{"V":230}},{"type":"LineString","arcs":[3834],"id":27539,"properties":{"V":230}},{"type":"LineString","arcs":[3835],"id":27558,"properties":{"V":345}},{"type":"LineString","arcs":[3836],"id":27561,"properties":{"V":230}},{"type":"LineString","arcs":[3837],"id":27569,"properties":{"V":230}},{"type":"LineString","arcs":[3838],"id":27584,"properties":{"V":345}},{"type":"LineString","arcs":[3839],"id":27598,"properties":{"V":230}},{"type":"LineString","arcs":[3840],"id":27602,"properties":{"V":230}},{"type":"LineString","arcs":[3841],"id":27607,"properties":{"V":230}},{"type":"LineString","arcs":[3842],"id":27614,"properties":{"V":345}},{"type":"LineString","arcs":[3843],"id":27634,"properties":{"V":345}},{"type":"LineString","arcs":[3844],"id":27637,"properties":{"V":230}},{"type":"LineString","arcs":[3845],"id":27646,"properties":{"V":345}},{"type":"LineString","arcs":[3846],"id":27649,"properties":{"V":230}},{"type":"LineString","arcs":[3847],"id":27670,"properties":{"V":230}},{"type":"LineString","arcs":[3848],"id":27680,"properties":{"V":230}},{"type":"LineString","arcs":[3849],"id":27684,"properties":{"V":230}},{"type":"LineString","arcs":[3850],"id":27694,"properties":{"V":230}},{"type":"LineString","arcs":[3851,3852],"id":27700,"properties":{"V":230}},{"type":"LineString","arcs":[3853],"id":27714,"properties":{"V":230}},{"type":"LineString","arcs":[3854],"id":27719,"properties":{"V":345}},{"type":"LineString","arcs":[3855,3856,3857,3858],"id":27728,"properties":{"V":500}},{"type":"LineString","arcs":[3859],"id":27742,"properties":{"V":230}},{"type":"LineString","arcs":[3860],"id":27750,"properties":{"V":500}},{"type":"LineString","arcs":[3861],"id":27763,"properties":{"V":345}},{"type":"LineString","arcs":[3862],"id":27764,"properties":{"V":230}},{"type":"LineString","arcs":[3863],"id":27766,"properties":{"V":345}},{"type":"LineString","arcs":[3864],"id":27782,"properties":{"V":230}},{"type":"LineString","arcs":[3865],"id":27789,"properties":{"V":230}},{"type":"LineString","arcs":[3866],"id":27799,"properties":{"V":230}},{"type":"LineString","arcs":[3867],"id":27801,"properties":{"V":230}},{"type":"LineString","arcs":[3868],"id":27808,"properties":{"V":230}},{"type":"LineString","arcs":[3869],"id":27818,"properties":{"V":230}},{"type":"LineString","arcs":[3870],"id":27822,"properties":{"V":500}},{"type":"LineString","arcs":[3871],"id":27848,"properties":{"V":230}},{"type":"LineString","arcs":[3872],"id":27850,"properties":{"V":345}},{"type":"LineString","arcs":[3873],"id":27851,"properties":{"V":500}},{"type":"LineString","arcs":[3874],"id":27852,"properties":{"V":345}},{"type":"LineString","arcs":[3875],"id":27855,"properties":{"V":230}},{"type":"LineString","arcs":[3876],"id":27861,"properties":{"V":230}},{"type":"LineString","arcs":[3877],"id":27867,"properties":{"V":230}},{"type":"LineString","arcs":[3878],"id":27876,"properties":{"V":230}},{"type":"LineString","arcs":[3879],"id":27890,"properties":{"V":230}},{"type":"LineString","arcs":[3880],"id":27891,"properties":{"V":230}},{"type":"LineString","arcs":[3881],"id":27896,"properties":{"V":230}},{"type":"LineString","arcs":[3882],"id":27922,"properties":{"V":230}},{"type":"LineString","arcs":[3883],"id":27923,"properties":{"V":230}},{"type":"LineString","arcs":[3884],"id":27931,"properties":{"V":230}},{"type":"LineString","arcs":[3885],"id":27937,"properties":{"V":230}},{"type":"LineString","arcs":[3886],"id":27944,"properties":{"V":230}},{"type":"LineString","arcs":[3887],"id":27945,"properties":{"V":230}},{"type":"LineString","arcs":[3888],"id":27951,"properties":{"V":500}},{"type":"LineString","arcs":[3889],"id":27964,"properties":{"V":230}},{"type":"LineString","arcs":[3890],"id":27988,"properties":{"V":345}},{"type":"LineString","arcs":[3891],"id":28000,"properties":{"V":230}},{"type":"LineString","arcs":[3892,3893],"id":28002,"properties":{"V":230}},{"type":"LineString","arcs":[3894],"id":28011,"properties":{"V":230}},{"type":"LineString","arcs":[3895],"id":28023,"properties":{"V":230}},{"type":"LineString","arcs":[3896],"id":28027,"properties":{"V":230}},{"type":"LineString","arcs":[3897],"id":28030,"properties":{"V":230}},{"type":"LineString","arcs":[3898],"id":28033,"properties":{"V":230}},{"type":"LineString","arcs":[3899],"id":28035,"properties":{"V":345}},{"type":"LineString","arcs":[3900],"id":28041,"properties":{"V":230}},{"type":"LineString","arcs":[3901],"id":28057,"properties":{"V":230}},{"type":"LineString","arcs":[3902],"id":28066,"properties":{"V":345}},{"type":"LineString","arcs":[3903,3904],"id":28069,"properties":{"V":230}},{"type":"LineString","arcs":[3905],"id":28071,"properties":{"V":230}},{"type":"LineString","arcs":[3906],"id":28075,"properties":{"V":230}},{"type":"LineString","arcs":[3907],"id":28092,"properties":{"V":230}},{"type":"LineString","arcs":[3908],"id":28153,"properties":{"V":230}},{"type":"LineString","arcs":[3909],"id":28157,"properties":{"V":345}},{"type":"LineString","arcs":[3910],"id":28167,"properties":{"V":230}},{"type":"LineString","arcs":[3911],"id":28168,"properties":{"V":230}},{"type":"LineString","arcs":[3912],"id":28169,"properties":{"V":230}},{"type":"LineString","arcs":[3913],"id":28173,"properties":{"V":345}},{"type":"LineString","arcs":[3914],"id":28179,"properties":{"V":230}},{"type":"LineString","arcs":[3915],"id":28187,"properties":{"V":230}},{"type":"LineString","arcs":[3916],"id":28197,"properties":{"V":230}},{"type":"LineString","arcs":[3917],"id":28200,"properties":{"V":345}},{"type":"LineString","arcs":[3918],"id":28213,"properties":{"V":230}},{"type":"LineString","arcs":[3919],"id":28214,"properties":{"V":345}},{"type":"LineString","arcs":[3920],"id":28215,"properties":{"V":230}},{"type":"LineString","arcs":[3921],"id":28216,"properties":{"V":230}},{"type":"LineString","arcs":[3922],"id":28219,"properties":{"V":345}},{"type":"LineString","arcs":[3923],"id":28222,"properties":{"V":230}},{"type":"LineString","arcs":[3924],"id":28224,"properties":{"V":230}},{"type":"LineString","arcs":[3925],"id":28231,"properties":{"V":230}},{"type":"LineString","arcs":[3926],"id":28247,"properties":{"V":345}},{"type":"LineString","arcs":[3927],"id":28249,"properties":{"V":230}},{"type":"LineString","arcs":[3928],"id":28266,"properties":{"V":230}},{"type":"LineString","arcs":[3929],"id":28271,"properties":{"V":345}},{"type":"LineString","arcs":[3930],"id":28281,"properties":{"V":230}},{"type":"LineString","arcs":[3931],"id":28289,"properties":{"V":230}},{"type":"LineString","arcs":[3932],"id":28291,"properties":{"V":230}},{"type":"LineString","arcs":[3933],"id":28292,"properties":{"V":345}},{"type":"LineString","arcs":[3934,3935],"id":28293,"properties":{"V":345}},{"type":"LineString","arcs":[3936],"id":28294,"properties":{"V":345}},{"type":"LineString","arcs":[3937],"id":28298,"properties":{"V":230}},{"type":"LineString","arcs":[3938],"id":28300,"properties":{"V":500}},{"type":"LineString","arcs":[3939],"id":28310,"properties":{"V":230}},{"type":"LineString","arcs":[3940],"id":28314,"properties":{"V":345}},{"type":"LineString","arcs":[3941],"id":28318,"properties":{"V":345}},{"type":"LineString","arcs":[3942],"id":28319,"properties":{"V":345}},{"type":"LineString","arcs":[3943],"id":28350,"properties":{"V":230}},{"type":"LineString","arcs":[3944],"id":28355,"properties":{"V":230}},{"type":"LineString","arcs":[3945],"id":28358,"properties":{"V":230}},{"type":"LineString","arcs":[3946],"id":28363,"properties":{"V":345}},{"type":"LineString","arcs":[3947],"id":28372,"properties":{"V":230}},{"type":"LineString","arcs":[3948],"id":28377,"properties":{"V":345}},{"type":"LineString","arcs":[3949,3950,3951],"id":28380,"properties":{"V":230}},{"type":"LineString","arcs":[3952],"id":28383,"properties":{"V":230}},{"type":"LineString","arcs":[3953],"id":28385,"properties":{"V":230}},{"type":"LineString","arcs":[3954],"id":28394,"properties":{"V":230}},{"type":"LineString","arcs":[3955],"id":28399,"properties":{"V":230}},{"type":"LineString","arcs":[3956,3957],"id":28410,"properties":{"V":345}},{"type":"LineString","arcs":[3958],"id":28416,"properties":{"V":345}},{"type":"LineString","arcs":[3959],"id":28418,"properties":{"V":230}},{"type":"LineString","arcs":[3960],"id":28420,"properties":{"V":345}},{"type":"LineString","arcs":[3961],"id":28422,"properties":{"V":345}},{"type":"LineString","arcs":[3962],"id":28433,"properties":{"V":345}},{"type":"MultiLineString","arcs":[[3963],[3964,3965]],"id":28443,"properties":{"V":230}},{"type":"LineString","arcs":[3966],"id":28458,"properties":{"V":230}},{"type":"LineString","arcs":[3967],"id":28462,"properties":{"V":230}},{"type":"LineString","arcs":[3968],"id":28472,"properties":{"V":230}},{"type":"LineString","arcs":[3969],"id":28473,"properties":{"V":230}},{"type":"LineString","arcs":[3970],"id":28476,"properties":{"V":230}},{"type":"LineString","arcs":[3971],"id":28492,"properties":{"V":345}},{"type":"LineString","arcs":[3972],"id":28501,"properties":{"V":345}},{"type":"LineString","arcs":[3973,3974],"id":28506,"properties":{"V":230}},{"type":"LineString","arcs":[3975],"id":28512,"properties":{"V":345}},{"type":"LineString","arcs":[3976],"id":28535,"properties":{"V":230}},{"type":"LineString","arcs":[3977],"id":28536,"properties":{"V":230}},{"type":"LineString","arcs":[3978],"id":28561,"properties":{"V":230}},{"type":"LineString","arcs":[3979],"id":28563,"properties":{"V":230}},{"type":"LineString","arcs":[3980],"id":28565,"properties":{"V":230}},{"type":"LineString","arcs":[3981],"id":28576,"properties":{"V":230}},{"type":"LineString","arcs":[3982],"id":28580,"properties":{"V":230}},{"type":"LineString","arcs":[3983],"id":28582,"properties":{"V":230}},{"type":"LineString","arcs":[3984],"id":28589,"properties":{"V":230}},{"type":"LineString","arcs":[3985],"id":28597,"properties":{"V":230}},{"type":"LineString","arcs":[3986],"id":28600,"properties":{"V":230}},{"type":"LineString","arcs":[3987],"id":28606,"properties":{"V":500}},{"type":"LineString","arcs":[3988],"id":28609,"properties":{"V":230}},{"type":"LineString","arcs":[3989],"id":28619,"properties":{"V":230}},{"type":"LineString","arcs":[3990],"id":28621,"properties":{"V":230}},{"type":"LineString","arcs":[3991],"id":28627,"properties":{"V":230}},{"type":"LineString","arcs":[3992],"id":28647,"properties":{"V":230}},{"type":"LineString","arcs":[3993],"id":28651,"properties":{"V":345}},{"type":"LineString","arcs":[3994,3995],"id":28656,"properties":{"V":230}},{"type":"LineString","arcs":[3996],"id":28659,"properties":{"V":500}},{"type":"LineString","arcs":[3997],"id":28676,"properties":{"V":500}},{"type":"LineString","arcs":[3998],"id":28689,"properties":{"V":230}},{"type":"LineString","arcs":[3999],"id":28699,"properties":{"V":230}},{"type":"LineString","arcs":[4000],"id":28702,"properties":{"V":230}},{"type":"LineString","arcs":[4001],"id":28704,"properties":{"V":230}},{"type":"LineString","arcs":[4002],"id":28720,"properties":{"V":230}},{"type":"LineString","arcs":[4003],"id":28724,"properties":{"V":230}},{"type":"LineString","arcs":[4004],"id":28733,"properties":{"V":230}},{"type":"LineString","arcs":[4005],"id":28740,"properties":{"V":345}},{"type":"LineString","arcs":[4006],"id":28742,"properties":{"V":230}},{"type":"LineString","arcs":[4007],"id":28753,"properties":{"V":230}},{"type":"LineString","arcs":[4008],"id":28754,"properties":{"V":345}},{"type":"LineString","arcs":[4009],"id":28755,"properties":{"V":230}},{"type":"LineString","arcs":[4010],"id":28758,"properties":{"V":345}},{"type":"LineString","arcs":[4011],"id":28763,"properties":{"V":230}},{"type":"LineString","arcs":[4012],"id":28768,"properties":{"V":230}},{"type":"LineString","arcs":[4013],"id":28786,"properties":{"V":500}},{"type":"LineString","arcs":[4014,4015,4016],"id":28789,"properties":{"V":345}},{"type":"LineString","arcs":[4017],"id":28794,"properties":{"V":345}},{"type":"LineString","arcs":[4018],"id":28816,"properties":{"V":230}},{"type":"LineString","arcs":[4019],"id":28818,"properties":{"V":230}},{"type":"LineString","arcs":[4020],"id":28820,"properties":{"V":230}},{"type":"LineString","arcs":[4021],"id":28824,"properties":{"V":500}},{"type":"LineString","arcs":[4022],"id":28860,"properties":{"V":230}},{"type":"LineString","arcs":[4023],"id":28868,"properties":{"V":500}},{"type":"LineString","arcs":[4024],"id":28877,"properties":{"V":230}},{"type":"LineString","arcs":[4025],"id":28891,"properties":{"V":230}},{"type":"LineString","arcs":[4026],"id":28895,"properties":{"V":345}},{"type":"LineString","arcs":[4027],"id":28905,"properties":{"V":345}},{"type":"LineString","arcs":[4028],"id":28908,"properties":{"V":345}},{"type":"LineString","arcs":[4029],"id":28944,"properties":{"V":230}},{"type":"LineString","arcs":[4030],"id":28947,"properties":{"V":230}},{"type":"LineString","arcs":[4031],"id":28953,"properties":{"V":230}},{"type":"LineString","arcs":[4032],"id":28954,"properties":{"V":230}},{"type":"LineString","arcs":[4033],"id":28978,"properties":{"V":230}},{"type":"LineString","arcs":[4034],"id":28987,"properties":{"V":230}},{"type":"LineString","arcs":[4035],"id":28997,"properties":{"V":345}},{"type":"LineString","arcs":[4036],"id":29002,"properties":{"V":230}},{"type":"LineString","arcs":[4037],"id":29003,"properties":{"V":230}},{"type":"LineString","arcs":[4038],"id":29040,"properties":{"V":345}},{"type":"LineString","arcs":[4039,4040],"id":29045,"properties":{"V":345}},{"type":"LineString","arcs":[4041],"id":29049,"properties":{"V":230}},{"type":"LineString","arcs":[4042],"id":29050,"properties":{"V":345}},{"type":"LineString","arcs":[4043],"id":29051,"properties":{"V":500}},{"type":"LineString","arcs":[4044],"id":29054,"properties":{"V":230}},{"type":"LineString","arcs":[4045],"id":29066,"properties":{"V":230}},{"type":"LineString","arcs":[4046],"id":29076,"properties":{"V":230}},{"type":"LineString","arcs":[4047],"id":29087,"properties":{"V":230}},{"type":"LineString","arcs":[4048],"id":29088,"properties":{"V":230}},{"type":"LineString","arcs":[4049],"id":29089,"properties":{"V":345}},{"type":"LineString","arcs":[4050],"id":29098,"properties":{"V":230}},{"type":"LineString","arcs":[4051],"id":29114,"properties":{"V":345}},{"type":"LineString","arcs":[4052],"id":29130,"properties":{"V":230}},{"type":"LineString","arcs":[4053],"id":29133,"properties":{"V":500}},{"type":"LineString","arcs":[4054],"id":29141,"properties":{"V":230}},{"type":"LineString","arcs":[4055],"id":29144,"properties":{"V":230}},{"type":"LineString","arcs":[4056],"id":29151,"properties":{"V":230}},{"type":"LineString","arcs":[4057],"id":29154,"properties":{"V":345}},{"type":"LineString","arcs":[4058],"id":29161,"properties":{"V":230}},{"type":"LineString","arcs":[4059],"id":29171,"properties":{"V":345}},{"type":"LineString","arcs":[4060],"id":29176,"properties":{"V":230}},{"type":"LineString","arcs":[4061],"id":29180,"properties":{"V":230}},{"type":"LineString","arcs":[4062],"id":29186,"properties":{"V":230}},{"type":"LineString","arcs":[4063],"id":29191,"properties":{"V":230}},{"type":"LineString","arcs":[4064],"id":29192,"properties":{"V":345}},{"type":"LineString","arcs":[4065],"id":29198,"properties":{"V":230}},{"type":"LineString","arcs":[4066],"id":29200,"properties":{"V":230}},{"type":"LineString","arcs":[4067],"id":29203,"properties":{"V":345}},{"type":"LineString","arcs":[4068],"id":29204,"properties":{"V":230}},{"type":"LineString","arcs":[4069],"id":29216,"properties":{"V":230}},{"type":"LineString","arcs":[4070],"id":29219,"properties":{"V":230}},{"type":"LineString","arcs":[4071],"id":29251,"properties":{"V":230}},{"type":"LineString","arcs":[4072],"id":29258,"properties":{"V":230}},{"type":"LineString","arcs":[4073],"id":29260,"properties":{"V":230}},{"type":"LineString","arcs":[4074],"id":29262,"properties":{"V":345}},{"type":"LineString","arcs":[4075],"id":29278,"properties":{"V":345}},{"type":"LineString","arcs":[4076],"id":29279,"properties":{"V":230}},{"type":"LineString","arcs":[4077],"id":29281,"properties":{"V":345}},{"type":"LineString","arcs":[4078],"id":29287,"properties":{"V":230}},{"type":"LineString","arcs":[4079],"id":29293,"properties":{"V":230}},{"type":"LineString","arcs":[4080],"id":29311,"properties":{"V":230}},{"type":"LineString","arcs":[4081,4082,4083],"id":29334,"properties":{"V":500}},{"type":"LineString","arcs":[4084],"id":29350,"properties":{"V":230}},{"type":"LineString","arcs":[4085],"id":29351,"properties":{"V":230}},{"type":"LineString","arcs":[4086],"id":29358,"properties":{"V":345}},{"type":"LineString","arcs":[4087],"id":29361,"properties":{"V":500}},{"type":"LineString","arcs":[4088,4089],"id":29366,"properties":{"V":230}},{"type":"LineString","arcs":[4090],"id":29381,"properties":{"V":230}},{"type":"LineString","arcs":[4091],"id":29382,"properties":{"V":230}},{"type":"LineString","arcs":[4092],"id":29383,"properties":{"V":230}},{"type":"LineString","arcs":[4093],"id":29386,"properties":{"V":230}},{"type":"LineString","arcs":[4094],"id":29393,"properties":{"V":230}},{"type":"LineString","arcs":[4095],"id":29394,"properties":{"V":230}},{"type":"LineString","arcs":[4096],"id":29401,"properties":{"V":500}},{"type":"LineString","arcs":[4097],"id":29422,"properties":{"V":230}},{"type":"LineString","arcs":[4098],"id":29423,"properties":{"V":230}},{"type":"LineString","arcs":[4099],"id":29428,"properties":{"V":345}},{"type":"LineString","arcs":[4100],"id":29430,"properties":{"V":230}},{"type":"LineString","arcs":[4101],"id":29432,"properties":{"V":500}},{"type":"LineString","arcs":[4102],"id":29443,"properties":{"V":230}},{"type":"LineString","arcs":[4103,4104,4105],"id":29447,"properties":{"V":345}},{"type":"LineString","arcs":[4106],"id":29452,"properties":{"V":345}},{"type":"LineString","arcs":[4107],"id":29453,"properties":{"V":765}},{"type":"LineString","arcs":[4108],"id":29456,"properties":{"V":230}},{"type":"LineString","arcs":[4109],"id":29458,"properties":{"V":345}},{"type":"LineString","arcs":[4110],"id":29468,"properties":{"V":345}},{"type":"LineString","arcs":[4111],"id":29482,"properties":{"V":230}},{"type":"LineString","arcs":[4112],"id":29491,"properties":{"V":230}},{"type":"LineString","arcs":[4113],"id":29494,"properties":{"V":230}},{"type":"LineString","arcs":[4114],"id":29510,"properties":{"V":230}},{"type":"LineString","arcs":[4115],"id":29519,"properties":{"V":230}},{"type":"LineString","arcs":[4116,4117],"id":29532,"properties":{"V":345}},{"type":"LineString","arcs":[4118],"id":29544,"properties":{"V":230}},{"type":"LineString","arcs":[4119],"id":29549,"properties":{"V":230}},{"type":"LineString","arcs":[4120],"id":29561,"properties":{"V":230}},{"type":"LineString","arcs":[4121],"id":29562,"properties":{"V":345}},{"type":"LineString","arcs":[4122,4123],"id":29572,"properties":{"V":230}},{"type":"LineString","arcs":[4124],"id":29583,"properties":{"V":230}},{"type":"LineString","arcs":[4125],"id":29584,"properties":{"V":345}},{"type":"LineString","arcs":[4126],"id":29601,"properties":{"V":230}},{"type":"LineString","arcs":[4127],"id":29625,"properties":{"V":230}},{"type":"LineString","arcs":[4128],"id":29638,"properties":{"V":230}},{"type":"LineString","arcs":[4129],"id":29651,"properties":{"V":230}},{"type":"LineString","arcs":[4130],"id":29665,"properties":{"V":230}},{"type":"LineString","arcs":[4131],"id":29666,"properties":{"V":230}},{"type":"LineString","arcs":[4132],"id":29667,"properties":{"V":345}},{"type":"LineString","arcs":[4133],"id":29671,"properties":{"V":345}},{"type":"LineString","arcs":[4134],"id":29686,"properties":{"V":345}},{"type":"LineString","arcs":[4135],"id":29690,"properties":{"V":345}},{"type":"LineString","arcs":[4136],"id":29694,"properties":{"V":230}},{"type":"LineString","arcs":[4137],"id":29695,"properties":{"V":230}},{"type":"LineString","arcs":[4138],"id":29715,"properties":{"V":500}},{"type":"LineString","arcs":[4139],"id":29716,"properties":{"V":230}},{"type":"LineString","arcs":[4140],"id":29718,"properties":{"V":345}},{"type":"LineString","arcs":[4141],"id":29731,"properties":{"V":345}},{"type":"LineString","arcs":[4142],"id":29748,"properties":{"V":230}},{"type":"LineString","arcs":[4143],"id":29757,"properties":{"V":345}},{"type":"LineString","arcs":[4144],"id":29777,"properties":{"V":500}},{"type":"LineString","arcs":[4145],"id":29792,"properties":{"V":230}},{"type":"LineString","arcs":[4146],"id":29795,"properties":{"V":230}},{"type":"LineString","arcs":[4147],"id":29803,"properties":{"V":230}},{"type":"LineString","arcs":[4148],"id":29813,"properties":{"V":345}},{"type":"LineString","arcs":[4149],"id":29814,"properties":{"V":230}},{"type":"LineString","arcs":[4150],"id":29818,"properties":{"V":345}},{"type":"LineString","arcs":[4151],"id":29827,"properties":{"V":345}},{"type":"LineString","arcs":[4152],"id":29834,"properties":{"V":230}},{"type":"LineString","arcs":[4153],"id":29837,"properties":{"V":345}},{"type":"LineString","arcs":[4154],"id":29840,"properties":{"V":500}},{"type":"LineString","arcs":[4155],"id":29845,"properties":{"V":230}},{"type":"LineString","arcs":[4156],"id":29885,"properties":{"V":230}},{"type":"LineString","arcs":[4157],"id":29895,"properties":{"V":230}},{"type":"LineString","arcs":[4158],"id":29897,"properties":{"V":345}},{"type":"LineString","arcs":[4159],"id":29918,"properties":{"V":230}},{"type":"LineString","arcs":[4160],"id":29920,"properties":{"V":230}},{"type":"LineString","arcs":[4161],"id":29923,"properties":{"V":230}},{"type":"LineString","arcs":[4162],"id":29932,"properties":{"V":230}},{"type":"LineString","arcs":[4163],"id":29933,"properties":{"V":230}},{"type":"LineString","arcs":[4164],"id":29935,"properties":{"V":230}},{"type":"LineString","arcs":[4165],"id":29948,"properties":{"V":230}},{"type":"LineString","arcs":[4166],"id":29990,"properties":{"V":230}},{"type":"LineString","arcs":[4167],"id":29994,"properties":{"V":230}},{"type":"LineString","arcs":[4168],"id":30005,"properties":{"V":345}},{"type":"LineString","arcs":[4169],"id":30021,"properties":{"V":500}},{"type":"LineString","arcs":[4170],"id":30030,"properties":{"V":230}},{"type":"LineString","arcs":[4171],"id":30044,"properties":{"V":230}},{"type":"LineString","arcs":[4172],"id":30049,"properties":{"V":345}},{"type":"LineString","arcs":[4173],"id":30050,"properties":{"V":230}},{"type":"LineString","arcs":[4174],"id":30054,"properties":{"V":500}},{"type":"LineString","arcs":[4175],"id":30067,"properties":{"V":230}},{"type":"LineString","arcs":[4176],"id":30068,"properties":{"V":230}},{"type":"LineString","arcs":[4177],"id":30072,"properties":{"V":230}},{"type":"LineString","arcs":[4178],"id":30073,"properties":{"V":230}},{"type":"LineString","arcs":[4179],"id":30081,"properties":{"V":345}},{"type":"LineString","arcs":[4180],"id":30090,"properties":{"V":345}},{"type":"LineString","arcs":[4181,4182],"id":30093,"properties":{"V":500}},{"type":"LineString","arcs":[4183],"id":30099,"properties":{"V":230}},{"type":"LineString","arcs":[4184],"id":30116,"properties":{"V":345}},{"type":"LineString","arcs":[4185],"id":30122,"properties":{"V":230}},{"type":"LineString","arcs":[4186],"id":30141,"properties":{"V":230}},{"type":"LineString","arcs":[4187],"id":30142,"properties":{"V":230}},{"type":"LineString","arcs":[4188],"id":30149,"properties":{"V":345}},{"type":"LineString","arcs":[4189],"id":30157,"properties":{"V":345}},{"type":"LineString","arcs":[4190],"id":30166,"properties":{"V":345}},{"type":"LineString","arcs":[4191],"id":30178,"properties":{"V":230}},{"type":"LineString","arcs":[4192],"id":30179,"properties":{"V":230}},{"type":"LineString","arcs":[4193],"id":30181,"properties":{"V":345}},{"type":"LineString","arcs":[4194],"id":30182,"properties":{"V":230}},{"type":"LineString","arcs":[4195],"id":30184,"properties":{"V":230}},{"type":"LineString","arcs":[4196],"id":30189,"properties":{"V":230}},{"type":"LineString","arcs":[4197],"id":30194,"properties":{"V":500}},{"type":"LineString","arcs":[4198],"id":30215,"properties":{"V":345}},{"type":"LineString","arcs":[4199,4200],"id":30218,"properties":{"V":230}},{"type":"LineString","arcs":[4201],"id":30219,"properties":{"V":230}},{"type":"LineString","arcs":[4202],"id":30227,"properties":{"V":230}},{"type":"LineString","arcs":[4203],"id":30256,"properties":{"V":500}},{"type":"LineString","arcs":[4204],"id":30257,"properties":{"V":230}},{"type":"LineString","arcs":[4205],"id":30266,"properties":{"V":345}},{"type":"LineString","arcs":[4206],"id":30286,"properties":{"V":230}},{"type":"LineString","arcs":[4207],"id":30294,"properties":{"V":500}},{"type":"LineString","arcs":[4208],"id":30302,"properties":{"V":345}},{"type":"LineString","arcs":[4209],"id":30303,"properties":{"V":230}},{"type":"LineString","arcs":[4210],"id":30308,"properties":{"V":230}},{"type":"LineString","arcs":[4211],"id":30320,"properties":{"V":230}},{"type":"LineString","arcs":[4212],"id":30325,"properties":{"V":230}},{"type":"LineString","arcs":[4213],"id":30328,"properties":{"V":230}},{"type":"LineString","arcs":[4214],"id":30338,"properties":{"V":230}},{"type":"LineString","arcs":[4215],"id":30347,"properties":{"V":230}},{"type":"LineString","arcs":[4216],"id":30348,"properties":{"V":230}},{"type":"LineString","arcs":[4217],"id":30361,"properties":{"V":230}},{"type":"LineString","arcs":[4218],"id":30364,"properties":{"V":230}},{"type":"LineString","arcs":[4219],"id":30367,"properties":{"V":500}},{"type":"LineString","arcs":[4220],"id":30370,"properties":{"V":230}},{"type":"LineString","arcs":[4221],"id":30383,"properties":{"V":230}},{"type":"LineString","arcs":[4222],"id":30385,"properties":{"V":230}},{"type":"LineString","arcs":[4223],"id":30387,"properties":{"V":345}},{"type":"LineString","arcs":[4224],"id":30391,"properties":{"V":230}},{"type":"LineString","arcs":[4225],"id":30392,"properties":{"V":230}},{"type":"LineString","arcs":[4226],"id":30399,"properties":{"V":230}},{"type":"LineString","arcs":[4227],"id":30406,"properties":{"V":345}},{"type":"LineString","arcs":[4228,4229],"id":30407,"properties":{"V":345}},{"type":"LineString","arcs":[4230],"id":30410,"properties":{"V":230}},{"type":"LineString","arcs":[4231],"id":30414,"properties":{"V":345}},{"type":"LineString","arcs":[4232],"id":30423,"properties":{"V":230}},{"type":"LineString","arcs":[4233],"id":30426,"properties":{"V":230}},{"type":"LineString","arcs":[4234],"id":30456,"properties":{"V":230}},{"type":"LineString","arcs":[4235],"id":30457,"properties":{"V":500}},{"type":"LineString","arcs":[4236],"id":30470,"properties":{"V":230}},{"type":"LineString","arcs":[4237],"id":30479,"properties":{"V":230}},{"type":"LineString","arcs":[4238],"id":30482,"properties":{"V":230}},{"type":"LineString","arcs":[4239],"id":30492,"properties":{"V":230}},{"type":"LineString","arcs":[4240],"id":30511,"properties":{"V":345}},{"type":"LineString","arcs":[4241],"id":30516,"properties":{"V":230}},{"type":"LineString","arcs":[4242,4243],"id":30519,"properties":{"V":230}},{"type":"LineString","arcs":[4244],"id":30539,"properties":{"V":345}},{"type":"LineString","arcs":[4245],"id":30551,"properties":{"V":230}},{"type":"LineString","arcs":[4246],"id":30554,"properties":{"V":500}},{"type":"LineString","arcs":[4247],"id":30571,"properties":{"V":230}},{"type":"LineString","arcs":[4248],"id":30578,"properties":{"V":230}},{"type":"LineString","arcs":[4249],"id":30582,"properties":{"V":230}},{"type":"LineString","arcs":[4250],"id":30590,"properties":{"V":230}},{"type":"LineString","arcs":[4251],"id":30595,"properties":{"V":230}},{"type":"LineString","arcs":[4252],"id":30611,"properties":{"V":230}},{"type":"LineString","arcs":[4253],"id":30620,"properties":{"V":230}},{"type":"LineString","arcs":[4254],"id":30624,"properties":{"V":230}},{"type":"LineString","arcs":[4255],"id":30632,"properties":{"V":230}},{"type":"LineString","arcs":[4256],"id":30635,"properties":{"V":230}},{"type":"LineString","arcs":[4257],"id":30641,"properties":{"V":230}},{"type":"LineString","arcs":[4258],"id":30644,"properties":{"V":230}},{"type":"LineString","arcs":[4259],"id":30649,"properties":{"V":230}},{"type":"LineString","arcs":[4260],"id":30652,"properties":{"V":230}},{"type":"LineString","arcs":[4261],"id":30654,"properties":{"V":345}},{"type":"LineString","arcs":[4262],"id":30656,"properties":{"V":230}},{"type":"LineString","arcs":[4263],"id":30665,"properties":{"V":230}},{"type":"LineString","arcs":[4264],"id":30666,"properties":{"V":230}},{"type":"LineString","arcs":[4265],"id":30671,"properties":{"V":230}},{"type":"LineString","arcs":[4266],"id":30672,"properties":{"V":500}},{"type":"LineString","arcs":[4267],"id":30684,"properties":{"V":230}},{"type":"LineString","arcs":[4268],"id":30687,"properties":{"V":230}},{"type":"LineString","arcs":[4269],"id":30689,"properties":{"V":230}},{"type":"LineString","arcs":[4270],"id":30693,"properties":{"V":345}},{"type":"LineString","arcs":[4271],"id":30694,"properties":{"V":230}},{"type":"LineString","arcs":[4272],"id":30702,"properties":{"V":230}},{"type":"LineString","arcs":[4273],"id":30712,"properties":{"V":500}},{"type":"LineString","arcs":[4274],"id":30717,"properties":{"V":345}},{"type":"LineString","arcs":[4275],"id":30726,"properties":{"V":230}},{"type":"LineString","arcs":[4276],"id":30732,"properties":{"V":345}},{"type":"LineString","arcs":[4277],"id":30737,"properties":{"V":345}},{"type":"LineString","arcs":[4278,4279],"id":30741,"properties":{"V":345}},{"type":"LineString","arcs":[4280],"id":30767,"properties":{"V":230}},{"type":"LineString","arcs":[4281],"id":30774,"properties":{"V":230}},{"type":"LineString","arcs":[4282],"id":30775,"properties":{"V":230}},{"type":"LineString","arcs":[4283],"id":30782,"properties":{"V":230}},{"type":"LineString","arcs":[4284],"id":30794,"properties":{"V":500}},{"type":"LineString","arcs":[4285],"id":30795,"properties":{"V":230}},{"type":"LineString","arcs":[4286],"id":30799,"properties":{"V":345}},{"type":"LineString","arcs":[4287],"id":30804,"properties":{"V":230}},{"type":"LineString","arcs":[4288],"id":30811,"properties":{"V":230}},{"type":"LineString","arcs":[4289],"id":30816,"properties":{"V":230}},{"type":"LineString","arcs":[4290],"id":30828,"properties":{"V":230}},{"type":"LineString","arcs":[4291],"id":30838,"properties":{"V":230}},{"type":"LineString","arcs":[4292],"id":30842,"properties":{"V":230}},{"type":"LineString","arcs":[4293],"id":30852,"properties":{"V":230}},{"type":"LineString","arcs":[4294],"id":30855,"properties":{"V":230}},{"type":"LineString","arcs":[4295],"id":30876,"properties":{"V":345}},{"type":"LineString","arcs":[4296],"id":30877,"properties":{"V":230}},{"type":"LineString","arcs":[4297],"id":30907,"properties":{"V":230}},{"type":"LineString","arcs":[4298],"id":30908,"properties":{"V":230}},{"type":"LineString","arcs":[4299],"id":30918,"properties":{"V":230}},{"type":"LineString","arcs":[4300],"id":30936,"properties":{"V":230}},{"type":"LineString","arcs":[4301],"id":30947,"properties":{"V":345}},{"type":"LineString","arcs":[4302],"id":30949,"properties":{"V":230}},{"type":"LineString","arcs":[4303],"id":30953,"properties":{"V":230}},{"type":"LineString","arcs":[4304],"id":30961,"properties":{"V":230}},{"type":"LineString","arcs":[4305,4306],"id":30966,"properties":{"V":230}},{"type":"LineString","arcs":[4307],"id":30971,"properties":{"V":345}},{"type":"LineString","arcs":[4308],"id":30980,"properties":{"V":500}},{"type":"LineString","arcs":[4309],"id":30988,"properties":{"V":345}},{"type":"LineString","arcs":[4310],"id":31001,"properties":{"V":230}},{"type":"LineString","arcs":[4311],"id":31002,"properties":{"V":345}},{"type":"LineString","arcs":[4312],"id":31003,"properties":{"V":230}},{"type":"LineString","arcs":[4313],"id":31011,"properties":{"V":230}},{"type":"LineString","arcs":[4314],"id":31015,"properties":{"V":345}},{"type":"LineString","arcs":[4315],"id":31035,"properties":{"V":230}},{"type":"LineString","arcs":[4316],"id":31057,"properties":{"V":230}},{"type":"LineString","arcs":[4317],"id":31062,"properties":{"V":230}},{"type":"LineString","arcs":[4318],"id":31069,"properties":{"V":230}},{"type":"LineString","arcs":[4319],"id":31073,"properties":{"V":230}},{"type":"LineString","arcs":[4320],"id":31076,"properties":{"V":230}},{"type":"LineString","arcs":[4321],"id":31079,"properties":{"V":230}},{"type":"LineString","arcs":[4322],"id":31084,"properties":{"V":345}},{"type":"LineString","arcs":[4323],"id":31088,"properties":{"V":230}},{"type":"LineString","arcs":[4324],"id":31096,"properties":{"V":230}},{"type":"LineString","arcs":[4325],"id":31100,"properties":{"V":500}},{"type":"LineString","arcs":[4326],"id":31103,"properties":{"V":230}},{"type":"LineString","arcs":[4327],"id":31116,"properties":{"V":500}},{"type":"LineString","arcs":[4328],"id":31122,"properties":{"V":345}},{"type":"LineString","arcs":[4329],"id":31126,"properties":{"V":345}},{"type":"LineString","arcs":[4330],"id":31127,"properties":{"V":230}},{"type":"LineString","arcs":[4331],"id":31130,"properties":{"V":345}},{"type":"LineString","arcs":[4332],"id":31164,"properties":{"V":230}},{"type":"LineString","arcs":[4333],"id":31165,"properties":{"V":230}},{"type":"LineString","arcs":[4334],"id":31178,"properties":{"V":345}},{"type":"LineString","arcs":[4335],"id":31186,"properties":{"V":345}},{"type":"LineString","arcs":[4336],"id":31202,"properties":{"V":230}},{"type":"LineString","arcs":[4337],"id":31203,"properties":{"V":230}},{"type":"LineString","arcs":[4338],"id":31205,"properties":{"V":230}},{"type":"LineString","arcs":[4339],"id":31229,"properties":{"V":500}},{"type":"LineString","arcs":[4340],"id":31237,"properties":{"V":230}},{"type":"LineString","arcs":[4341],"id":31242,"properties":{"V":230}},{"type":"LineString","arcs":[4342],"id":31245,"properties":{"V":230}},{"type":"LineString","arcs":[4343],"id":31250,"properties":{"V":230}},{"type":"LineString","arcs":[4344],"id":31254,"properties":{"V":500}},{"type":"LineString","arcs":[4345],"id":31258,"properties":{"V":230}},{"type":"LineString","arcs":[4346],"id":31265,"properties":{"V":230}},{"type":"LineString","arcs":[4347],"id":31273,"properties":{"V":230}},{"type":"LineString","arcs":[4348],"id":31285,"properties":{"V":230}},{"type":"LineString","arcs":[4349],"id":31292,"properties":{"V":230}},{"type":"LineString","arcs":[4350],"id":31303,"properties":{"V":345}},{"type":"LineString","arcs":[4351],"id":31317,"properties":{"V":230}},{"type":"LineString","arcs":[4352],"id":31318,"properties":{"V":230}},{"type":"LineString","arcs":[4353],"id":31319,"properties":{"V":345}},{"type":"LineString","arcs":[4354],"id":31322,"properties":{"V":345}},{"type":"LineString","arcs":[4355],"id":31356,"properties":{"V":230}},{"type":"LineString","arcs":[4356,4357],"id":31359,"properties":{"V":230}},{"type":"LineString","arcs":[4358],"id":31360,"properties":{"V":230}},{"type":"LineString","arcs":[4359],"id":31389,"properties":{"V":230}},{"type":"LineString","arcs":[4360],"id":31391,"properties":{"V":230}},{"type":"LineString","arcs":[4361],"id":31404,"properties":{"V":345}},{"type":"LineString","arcs":[4362],"id":31405,"properties":{"V":230}},{"type":"LineString","arcs":[4363],"id":31406,"properties":{"V":765}},{"type":"LineString","arcs":[4364],"id":31416,"properties":{"V":230}},{"type":"LineString","arcs":[4365],"id":31417,"properties":{"V":230}},{"type":"LineString","arcs":[4366],"id":31419,"properties":{"V":500}},{"type":"LineString","arcs":[4367],"id":31421,"properties":{"V":345}},{"type":"LineString","arcs":[4368],"id":31426,"properties":{"V":230}},{"type":"LineString","arcs":[4369],"id":31439,"properties":{"V":230}},{"type":"LineString","arcs":[4370],"id":31459,"properties":{"V":345}},{"type":"LineString","arcs":[4371],"id":31463,"properties":{"V":230}},{"type":"LineString","arcs":[4372],"id":31466,"properties":{"V":230}},{"type":"LineString","arcs":[4373],"id":31468,"properties":{"V":230}},{"type":"LineString","arcs":[4374],"id":31474,"properties":{"V":230}},{"type":"LineString","arcs":[4375],"id":31480,"properties":{"V":230}},{"type":"LineString","arcs":[4376],"id":31485,"properties":{"V":230}},{"type":"LineString","arcs":[4377],"id":31499,"properties":{"V":230}},{"type":"LineString","arcs":[4378],"id":31500,"properties":{"V":230}},{"type":"LineString","arcs":[4379],"id":31509,"properties":{"V":230}},{"type":"LineString","arcs":[4380],"id":31512,"properties":{"V":500}},{"type":"LineString","arcs":[4381],"id":31520,"properties":{"V":230}},{"type":"LineString","arcs":[4382,4383],"id":31524,"properties":{"V":345}},{"type":"LineString","arcs":[4384],"id":31532,"properties":{"V":230}},{"type":"LineString","arcs":[4385],"id":31537,"properties":{"V":230}},{"type":"LineString","arcs":[4386],"id":31544,"properties":{"V":230}},{"type":"LineString","arcs":[4387],"id":31547,"properties":{"V":345}},{"type":"LineString","arcs":[4388],"id":31565,"properties":{"V":500}},{"type":"LineString","arcs":[4389],"id":31569,"properties":{"V":230}},{"type":"LineString","arcs":[4390],"id":31578,"properties":{"V":230}},{"type":"LineString","arcs":[4391],"id":31594,"properties":{"V":230}},{"type":"LineString","arcs":[4392],"id":31611,"properties":{"V":345}},{"type":"LineString","arcs":[4393],"id":31628,"properties":{"V":345}},{"type":"LineString","arcs":[4394],"id":31631,"properties":{"V":230}},{"type":"LineString","arcs":[4395],"id":31638,"properties":{"V":345}},{"type":"LineString","arcs":[4396],"id":31639,"properties":{"V":230}},{"type":"LineString","arcs":[4397],"id":31640,"properties":{"V":345}},{"type":"LineString","arcs":[4398],"id":31653,"properties":{"V":345}},{"type":"LineString","arcs":[4399],"id":31656,"properties":{"V":230}},{"type":"LineString","arcs":[4400],"id":31673,"properties":{"V":230}},{"type":"LineString","arcs":[4401,4402,4403],"id":31678,"properties":{"V":345}},{"type":"LineString","arcs":[4404],"id":31693,"properties":{"V":345}},{"type":"LineString","arcs":[4405],"id":31694,"properties":{"V":230}},{"type":"LineString","arcs":[4406],"id":31700,"properties":{"V":345}},{"type":"LineString","arcs":[4407],"id":31707,"properties":{"V":230}},{"type":"LineString","arcs":[4408],"id":31709,"properties":{"V":500}},{"type":"LineString","arcs":[4409],"id":31715,"properties":{"V":230}},{"type":"LineString","arcs":[4410],"id":31719,"properties":{"V":230}},{"type":"LineString","arcs":[4411],"id":31722,"properties":{"V":230}},{"type":"LineString","arcs":[4412],"id":31728,"properties":{"V":230}},{"type":"LineString","arcs":[4413],"id":31732,"properties":{"V":230}},{"type":"LineString","arcs":[4414],"id":31764,"properties":{"V":230}},{"type":"LineString","arcs":[4415],"id":31769,"properties":{"V":230}},{"type":"LineString","arcs":[4416],"id":31772,"properties":{"V":345}},{"type":"LineString","arcs":[4417],"id":31789,"properties":{"V":345}},{"type":"LineString","arcs":[4418],"id":31794,"properties":{"V":230}},{"type":"LineString","arcs":[4419],"id":31800,"properties":{"V":230}},{"type":"LineString","arcs":[4420],"id":31804,"properties":{"V":230}},{"type":"LineString","arcs":[4421],"id":31806,"properties":{"V":230}},{"type":"LineString","arcs":[4422],"id":31810,"properties":{"V":230}},{"type":"LineString","arcs":[4423],"id":31826,"properties":{"V":230}},{"type":"LineString","arcs":[4424],"id":31832,"properties":{"V":345}},{"type":"LineString","arcs":[4425],"id":31839,"properties":{"V":230}},{"type":"LineString","arcs":[4426],"id":31843,"properties":{"V":345}},{"type":"LineString","arcs":[4427],"id":31857,"properties":{"V":230}},{"type":"LineString","arcs":[4428],"id":31872,"properties":{"V":230}},{"type":"LineString","arcs":[4429],"id":31880,"properties":{"V":230}},{"type":"LineString","arcs":[4430],"id":31883,"properties":{"V":345}},{"type":"LineString","arcs":[4431],"id":31891,"properties":{"V":345}},{"type":"LineString","arcs":[4432],"id":31892,"properties":{"V":345}},{"type":"LineString","arcs":[4433],"id":31897,"properties":{"V":345}},{"type":"LineString","arcs":[4434],"id":31905,"properties":{"V":230}},{"type":"LineString","arcs":[4435],"id":31909,"properties":{"V":230}},{"type":"LineString","arcs":[4436],"id":31910,"properties":{"V":345}},{"type":"LineString","arcs":[4437],"id":31945,"properties":{"V":230}},{"type":"LineString","arcs":[4438],"id":31948,"properties":{"V":230}},{"type":"LineString","arcs":[4439],"id":31951,"properties":{"V":345}},{"type":"LineString","arcs":[4440],"id":31956,"properties":{"V":230}},{"type":"LineString","arcs":[4441],"id":31958,"properties":{"V":345}},{"type":"LineString","arcs":[4442],"id":31965,"properties":{"V":345}},{"type":"LineString","arcs":[4443],"id":31966,"properties":{"V":345}},{"type":"LineString","arcs":[4444],"id":31970,"properties":{"V":230}},{"type":"LineString","arcs":[4445],"id":31983,"properties":{"V":500}},{"type":"LineString","arcs":[4446],"id":31985,"properties":{"V":500}},{"type":"LineString","arcs":[4447],"id":31991,"properties":{"V":230}},{"type":"LineString","arcs":[4448],"id":31992,"properties":{"V":345}},{"type":"LineString","arcs":[4449],"id":32002,"properties":{"V":500}},{"type":"LineString","arcs":[4450],"id":32009,"properties":{"V":345}},{"type":"LineString","arcs":[4451],"id":32053,"properties":{"V":230}},{"type":"LineString","arcs":[4452],"id":32067,"properties":{"V":345}},{"type":"LineString","arcs":[4453,4454,4455],"id":32068,"properties":{"V":230}},{"type":"LineString","arcs":[4456],"id":32081,"properties":{"V":230}},{"type":"LineString","arcs":[4457],"id":32087,"properties":{"V":345}},{"type":"LineString","arcs":[4458],"id":32093,"properties":{"V":230}},{"type":"LineString","arcs":[4459],"id":32097,"properties":{"V":230}},{"type":"LineString","arcs":[4460],"id":32104,"properties":{"V":230}},{"type":"LineString","arcs":[4461],"id":32107,"properties":{"V":230}},{"type":"LineString","arcs":[4462],"id":32108,"properties":{"V":500}},{"type":"LineString","arcs":[4463],"id":32110,"properties":{"V":230}},{"type":"LineString","arcs":[4464],"id":32115,"properties":{"V":230}},{"type":"LineString","arcs":[4465],"id":32116,"properties":{"V":345}},{"type":"LineString","arcs":[4466],"id":32127,"properties":{"V":345}},{"type":"LineString","arcs":[4467],"id":32129,"properties":{"V":230}},{"type":"LineString","arcs":[4468],"id":32130,"properties":{"V":345}},{"type":"LineString","arcs":[4469],"id":32135,"properties":{"V":230}},{"type":"LineString","arcs":[4470],"id":32138,"properties":{"V":765}},{"type":"LineString","arcs":[4471],"id":32141,"properties":{"V":500}},{"type":"LineString","arcs":[4472],"id":32144,"properties":{"V":230}},{"type":"LineString","arcs":[4473],"id":32148,"properties":{"V":230}},{"type":"LineString","arcs":[4474],"id":32172,"properties":{"V":345}},{"type":"LineString","arcs":[4475],"id":32180,"properties":{"V":230}},{"type":"LineString","arcs":[4476],"id":32183,"properties":{"V":230}},{"type":"LineString","arcs":[4477],"id":32185,"properties":{"V":765}},{"type":"LineString","arcs":[4478],"id":32187,"properties":{"V":230}},{"type":"LineString","arcs":[4479],"id":32188,"properties":{"V":230}},{"type":"LineString","arcs":[4480],"id":32189,"properties":{"V":230}},{"type":"LineString","arcs":[4481],"id":32190,"properties":{"V":230}},{"type":"LineString","arcs":[4482],"id":32194,"properties":{"V":345}},{"type":"LineString","arcs":[4483],"id":32195,"properties":{"V":345}},{"type":"LineString","arcs":[4484],"id":32196,"properties":{"V":230}},{"type":"LineString","arcs":[4485],"id":32201,"properties":{"V":230}},{"type":"LineString","arcs":[4486],"id":32237,"properties":{"V":230}},{"type":"LineString","arcs":[4487],"id":32247,"properties":{"V":230}},{"type":"LineString","arcs":[4488],"id":32255,"properties":{"V":230}},{"type":"LineString","arcs":[4489],"id":32267,"properties":{"V":230}},{"type":"LineString","arcs":[4490],"id":32268,"properties":{"V":230}},{"type":"LineString","arcs":[4491],"id":32271,"properties":{"V":230}},{"type":"LineString","arcs":[4492],"id":32274,"properties":{"V":230}},{"type":"LineString","arcs":[4493],"id":32280,"properties":{"V":345}},{"type":"LineString","arcs":[4494],"id":32300,"properties":{"V":230}},{"type":"LineString","arcs":[4495],"id":32303,"properties":{"V":230}},{"type":"LineString","arcs":[4496],"id":32309,"properties":{"V":345}},{"type":"LineString","arcs":[4497],"id":32311,"properties":{"V":230}},{"type":"LineString","arcs":[4498],"id":32312,"properties":{"V":230}},{"type":"LineString","arcs":[4499],"id":32313,"properties":{"V":345}},{"type":"LineString","arcs":[4500],"id":32314,"properties":{"V":230}},{"type":"LineString","arcs":[4501],"id":32317,"properties":{"V":230}},{"type":"LineString","arcs":[4502],"id":32321,"properties":{"V":230}},{"type":"LineString","arcs":[4503,4504,4505],"id":32323,"properties":{"V":345}},{"type":"LineString","arcs":[4506],"id":32351,"properties":{"V":230}},{"type":"LineString","arcs":[4507],"id":32353,"properties":{"V":230}},{"type":"LineString","arcs":[4508],"id":32362,"properties":{"V":230}},{"type":"LineString","arcs":[4509],"id":32367,"properties":{"V":230}},{"type":"LineString","arcs":[4510],"id":32374,"properties":{"V":345}},{"type":"LineString","arcs":[4511],"id":32375,"properties":{"V":345}},{"type":"LineString","arcs":[4512],"id":32392,"properties":{"V":345}},{"type":"LineString","arcs":[4513],"id":32396,"properties":{"V":230}},{"type":"LineString","arcs":[4514],"id":32405,"properties":{"V":230}},{"type":"LineString","arcs":[4515],"id":32411,"properties":{"V":230}},{"type":"LineString","arcs":[4516],"id":32413,"properties":{"V":230}},{"type":"LineString","arcs":[4517],"id":32428,"properties":{"V":230}},{"type":"LineString","arcs":[4518],"id":32429,"properties":{"V":230}},{"type":"LineString","arcs":[4519],"id":32431,"properties":{"V":500}},{"type":"LineString","arcs":[4520,4521],"id":32436,"properties":{"V":230}},{"type":"LineString","arcs":[4522],"id":32442,"properties":{"V":500}},{"type":"LineString","arcs":[4523],"id":32445,"properties":{"V":230}},{"type":"LineString","arcs":[4524],"id":32459,"properties":{"V":345}},{"type":"LineString","arcs":[4525],"id":32464,"properties":{"V":230}},{"type":"LineString","arcs":[4526],"id":32466,"properties":{"V":345}},{"type":"LineString","arcs":[4527],"id":32470,"properties":{"V":230}},{"type":"LineString","arcs":[4528],"id":32479,"properties":{"V":230}},{"type":"LineString","arcs":[4529],"id":32485,"properties":{"V":230}},{"type":"LineString","arcs":[4530],"id":32487,"properties":{"V":345}},{"type":"LineString","arcs":[4531],"id":32488,"properties":{"V":345}},{"type":"LineString","arcs":[4532],"id":32494,"properties":{"V":345}},{"type":"LineString","arcs":[4533],"id":32498,"properties":{"V":230}},{"type":"LineString","arcs":[4534],"id":32504,"properties":{"V":345}},{"type":"LineString","arcs":[4535],"id":32509,"properties":{"V":230}},{"type":"LineString","arcs":[4536],"id":32519,"properties":{"V":230}},{"type":"LineString","arcs":[4537],"id":32525,"properties":{"V":230}},{"type":"LineString","arcs":[4538],"id":32527,"properties":{"V":500}},{"type":"LineString","arcs":[4539],"id":32536,"properties":{"V":345}},{"type":"LineString","arcs":[4540],"id":32537,"properties":{"V":230}},{"type":"LineString","arcs":[4541],"id":32544,"properties":{"V":230}},{"type":"LineString","arcs":[4542],"id":32545,"properties":{"V":230}},{"type":"LineString","arcs":[4543],"id":32548,"properties":{"V":230}},{"type":"LineString","arcs":[4544],"id":32556,"properties":{"V":230}},{"type":"LineString","arcs":[4545],"id":32563,"properties":{"V":230}},{"type":"LineString","arcs":[4546],"id":32567,"properties":{"V":345}},{"type":"LineString","arcs":[4547,4548],"id":32568,"properties":{"V":500}},{"type":"LineString","arcs":[4549],"id":32585,"properties":{"V":230}},{"type":"LineString","arcs":[4550],"id":32592,"properties":{"V":230}},{"type":"LineString","arcs":[4551],"id":32599,"properties":{"V":500}},{"type":"LineString","arcs":[4552],"id":32629,"properties":{"V":500}},{"type":"LineString","arcs":[4553],"id":32643,"properties":{"V":345}},{"type":"LineString","arcs":[4554,4555],"id":32650,"properties":{"V":230}},{"type":"LineString","arcs":[4556],"id":32662,"properties":{"V":230}},{"type":"LineString","arcs":[4557],"id":32669,"properties":{"V":345}},{"type":"LineString","arcs":[4558,4559,4560],"id":32671,"properties":{"V":345}},{"type":"LineString","arcs":[4561],"id":32682,"properties":{"V":345}},{"type":"LineString","arcs":[4562],"id":32684,"properties":{"V":230}},{"type":"LineString","arcs":[4563],"id":32714,"properties":{"V":500}},{"type":"LineString","arcs":[4564],"id":32716,"properties":{"V":345}},{"type":"LineString","arcs":[4565],"id":32720,"properties":{"V":230}},{"type":"LineString","arcs":[4566],"id":32728,"properties":{"V":230}},{"type":"LineString","arcs":[4567],"id":32739,"properties":{"V":230}},{"type":"LineString","arcs":[4568],"id":32741,"properties":{"V":345}},{"type":"LineString","arcs":[4569],"id":32745,"properties":{"V":500}},{"type":"LineString","arcs":[4570],"id":32747,"properties":{"V":230}},{"type":"LineString","arcs":[4571],"id":32752,"properties":{"V":230}},{"type":"LineString","arcs":[4572],"id":32756,"properties":{"V":345}},{"type":"LineString","arcs":[4573],"id":32768,"properties":{"V":230}},{"type":"LineString","arcs":[4574],"id":32773,"properties":{"V":230}},{"type":"LineString","arcs":[4575],"id":32781,"properties":{"V":345}},{"type":"LineString","arcs":[4576],"id":32800,"properties":{"V":345}},{"type":"LineString","arcs":[4577],"id":32810,"properties":{"V":230}},{"type":"LineString","arcs":[4578],"id":32813,"properties":{"V":345}},{"type":"LineString","arcs":[4579],"id":32832,"properties":{"V":500}},{"type":"LineString","arcs":[4580,4581],"id":32836,"properties":{"V":345}},{"type":"LineString","arcs":[4582],"id":32840,"properties":{"V":345}},{"type":"LineString","arcs":[4583],"id":32848,"properties":{"V":230}},{"type":"LineString","arcs":[4584],"id":32857,"properties":{"V":500}},{"type":"LineString","arcs":[4585,4586],"id":32867,"properties":{"V":230}},{"type":"LineString","arcs":[4587],"id":32886,"properties":{"V":230}},{"type":"LineString","arcs":[4588],"id":32896,"properties":{"V":230}},{"type":"LineString","arcs":[4589],"id":32902,"properties":{"V":230}},{"type":"LineString","arcs":[4590],"id":32910,"properties":{"V":500}},{"type":"LineString","arcs":[4591],"id":32914,"properties":{"V":230}},{"type":"LineString","arcs":[4592],"id":32927,"properties":{"V":230}},{"type":"LineString","arcs":[4593,4594,4595,4596,4597,4598,4599,4600],"id":32933,"properties":{"V":230}},{"type":"LineString","arcs":[4601],"id":32951,"properties":{"V":230}},{"type":"LineString","arcs":[4602],"id":32959,"properties":{"V":500}},{"type":"LineString","arcs":[4603],"id":32967,"properties":{"V":230}},{"type":"LineString","arcs":[4604],"id":32977,"properties":{"V":500}},{"type":"LineString","arcs":[4605],"id":32978,"properties":{"V":230}},{"type":"LineString","arcs":[4606],"id":32980,"properties":{"V":230}},{"type":"LineString","arcs":[4607],"id":32998,"properties":{"V":230}},{"type":"LineString","arcs":[4608],"id":33010,"properties":{"V":230}},{"type":"LineString","arcs":[4609,4610],"id":33023,"properties":{"V":230}},{"type":"LineString","arcs":[4611],"id":33029,"properties":{"V":500}},{"type":"LineString","arcs":[4612],"id":33034,"properties":{"V":345}},{"type":"LineString","arcs":[4613],"id":33043,"properties":{"V":345}},{"type":"LineString","arcs":[4614],"id":33047,"properties":{"V":500}},{"type":"LineString","arcs":[4615],"id":33049,"properties":{"V":345}},{"type":"LineString","arcs":[4616],"id":33052,"properties":{"V":230}},{"type":"LineString","arcs":[4617],"id":33060,"properties":{"V":230}},{"type":"LineString","arcs":[4618],"id":33061,"properties":{"V":230}},{"type":"LineString","arcs":[4619],"id":33065,"properties":{"V":230}},{"type":"LineString","arcs":[4620],"id":33073,"properties":{"V":230}},{"type":"LineString","arcs":[4621],"id":33084,"properties":{"V":230}},{"type":"LineString","arcs":[4622],"id":33085,"properties":{"V":345}},{"type":"LineString","arcs":[4623],"id":33094,"properties":{"V":230}},{"type":"LineString","arcs":[4624],"id":33108,"properties":{"V":230}},{"type":"LineString","arcs":[4625],"id":33109,"properties":{"V":230}},{"type":"LineString","arcs":[4626],"id":33112,"properties":{"V":230}},{"type":"LineString","arcs":[4627],"id":33119,"properties":{"V":230}},{"type":"LineString","arcs":[4628],"id":33129,"properties":{"V":500}},{"type":"LineString","arcs":[4629],"id":33137,"properties":{"V":230}},{"type":"LineString","arcs":[4630],"id":33146,"properties":{"V":230}},{"type":"LineString","arcs":[4631],"id":33158,"properties":{"V":230}},{"type":"LineString","arcs":[4632],"id":33166,"properties":{"V":345}},{"type":"LineString","arcs":[4633],"id":33167,"properties":{"V":230}},{"type":"LineString","arcs":[4634],"id":33170,"properties":{"V":345}},{"type":"LineString","arcs":[4635],"id":33173,"properties":{"V":500}},{"type":"LineString","arcs":[4636],"id":33189,"properties":{"V":230}},{"type":"LineString","arcs":[4637],"id":33199,"properties":{"V":230}},{"type":"LineString","arcs":[4638],"id":33200,"properties":{"V":345}},{"type":"LineString","arcs":[4639],"id":33203,"properties":{"V":230}},{"type":"LineString","arcs":[4640],"id":33247,"properties":{"V":230}},{"type":"LineString","arcs":[4641],"id":33256,"properties":{"V":230}},{"type":"LineString","arcs":[4642],"id":33272,"properties":{"V":230}},{"type":"LineString","arcs":[4643],"id":33277,"properties":{"V":345}},{"type":"LineString","arcs":[4644],"id":33281,"properties":{"V":345}},{"type":"LineString","arcs":[4645],"id":33283,"properties":{"V":230}},{"type":"LineString","arcs":[4646],"id":33286,"properties":{"V":345}},{"type":"LineString","arcs":[4647],"id":33313,"properties":{"V":230}},{"type":"LineString","arcs":[4648],"id":33319,"properties":{"V":230}},{"type":"LineString","arcs":[4649],"id":33338,"properties":{"V":230}},{"type":"LineString","arcs":[4650],"id":33345,"properties":{"V":230}},{"type":"LineString","arcs":[4651],"id":33348,"properties":{"V":230}},{"type":"LineString","arcs":[4652],"id":33361,"properties":{"V":345}},{"type":"LineString","arcs":[4653],"id":33372,"properties":{"V":230}},{"type":"LineString","arcs":[4654],"id":33377,"properties":{"V":500}},{"type":"LineString","arcs":[4655],"id":33385,"properties":{"V":230}},{"type":"LineString","arcs":[4656],"id":33407,"properties":{"V":230}},{"type":"LineString","arcs":[4657],"id":33416,"properties":{"V":230}},{"type":"LineString","arcs":[4658],"id":33421,"properties":{"V":500}},{"type":"LineString","arcs":[4659],"id":33434,"properties":{"V":230}},{"type":"LineString","arcs":[4660],"id":33440,"properties":{"V":230}},{"type":"LineString","arcs":[4661],"id":33458,"properties":{"V":345}},{"type":"LineString","arcs":[4662,4663],"id":33470,"properties":{"V":500}},{"type":"LineString","arcs":[4664],"id":33473,"properties":{"V":230}},{"type":"LineString","arcs":[4665],"id":33475,"properties":{"V":500}},{"type":"LineString","arcs":[4666,4667],"id":33478,"properties":{"V":230}},{"type":"LineString","arcs":[4668],"id":33493,"properties":{"V":230}},{"type":"LineString","arcs":[4669],"id":33495,"properties":{"V":230}},{"type":"LineString","arcs":[4670],"id":33555,"properties":{"V":230}},{"type":"LineString","arcs":[4671],"id":33575,"properties":{"V":230}},{"type":"LineString","arcs":[4672],"id":33577,"properties":{"V":230}},{"type":"LineString","arcs":[4673],"id":33585,"properties":{"V":230}},{"type":"LineString","arcs":[4674],"id":33587,"properties":{"V":345}},{"type":"LineString","arcs":[4675],"id":33588,"properties":{"V":230}},{"type":"LineString","arcs":[4676],"id":33591,"properties":{"V":230}},{"type":"LineString","arcs":[4677],"id":33603,"properties":{"V":230}},{"type":"LineString","arcs":[4678],"id":33609,"properties":{"V":230}},{"type":"LineString","arcs":[4679],"id":33613,"properties":{"V":230}},{"type":"LineString","arcs":[4680],"id":33617,"properties":{"V":230}},{"type":"LineString","arcs":[4681],"id":33628,"properties":{"V":230}},{"type":"LineString","arcs":[4682],"id":33630,"properties":{"V":230}},{"type":"LineString","arcs":[4683],"id":33637,"properties":{"V":230}},{"type":"LineString","arcs":[4684],"id":33641,"properties":{"V":230}},{"type":"LineString","arcs":[4685],"id":33646,"properties":{"V":230}},{"type":"LineString","arcs":[4686],"id":33657,"properties":{"V":345}},{"type":"LineString","arcs":[4687],"id":33663,"properties":{"V":230}},{"type":"LineString","arcs":[4688,4689],"id":33669,"properties":{"V":230}},{"type":"LineString","arcs":[4690],"id":33675,"properties":{"V":230}},{"type":"LineString","arcs":[4691],"id":33687,"properties":{"V":230}},{"type":"LineString","arcs":[4692],"id":33702,"properties":{"V":230}},{"type":"LineString","arcs":[4693],"id":33705,"properties":{"V":230}},{"type":"LineString","arcs":[4694],"id":33708,"properties":{"V":230}},{"type":"LineString","arcs":[4695],"id":33709,"properties":{"V":230}},{"type":"LineString","arcs":[4696],"id":33719,"properties":{"V":230}},{"type":"LineString","arcs":[4697],"id":33728,"properties":{"V":345}},{"type":"LineString","arcs":[4698],"id":33733,"properties":{"V":230}},{"type":"LineString","arcs":[4699],"id":33738,"properties":{"V":345}},{"type":"LineString","arcs":[4700],"id":33747,"properties":{"V":230}},{"type":"LineString","arcs":[4701],"id":33750,"properties":{"V":230}},{"type":"LineString","arcs":[4702],"id":33751,"properties":{"V":345}},{"type":"LineString","arcs":[4703],"id":33752,"properties":{"V":230}},{"type":"LineString","arcs":[4704],"id":33770,"properties":{"V":230}},{"type":"LineString","arcs":[4705],"id":33775,"properties":{"V":345}},{"type":"LineString","arcs":[4706],"id":33780,"properties":{"V":230}},{"type":"LineString","arcs":[4707],"id":33782,"properties":{"V":500}},{"type":"LineString","arcs":[4708],"id":33794,"properties":{"V":230}},{"type":"LineString","arcs":[4709],"id":33809,"properties":{"V":230}},{"type":"LineString","arcs":[4710],"id":33819,"properties":{"V":230}},{"type":"LineString","arcs":[4711],"id":33820,"properties":{"V":230}},{"type":"LineString","arcs":[4712],"id":33829,"properties":{"V":345}},{"type":"LineString","arcs":[4713],"id":33843,"properties":{"V":230}},{"type":"LineString","arcs":[4714],"id":33850,"properties":{"V":230}},{"type":"LineString","arcs":[4715],"id":33852,"properties":{"V":230}},{"type":"LineString","arcs":[4716],"id":33856,"properties":{"V":230}},{"type":"LineString","arcs":[4717],"id":33863,"properties":{"V":230}},{"type":"LineString","arcs":[4718],"id":33864,"properties":{"V":345}},{"type":"LineString","arcs":[4719],"id":33865,"properties":{"V":345}},{"type":"LineString","arcs":[4720],"id":33871,"properties":{"V":345}},{"type":"LineString","arcs":[4721],"id":33873,"properties":{"V":230}},{"type":"LineString","arcs":[4722],"id":33879,"properties":{"V":230}},{"type":"LineString","arcs":[4723],"id":33901,"properties":{"V":230}},{"type":"LineString","arcs":[4724],"id":33902,"properties":{"V":500}},{"type":"LineString","arcs":[4725],"id":33940,"properties":{"V":230}},{"type":"LineString","arcs":[4726],"id":33942,"properties":{"V":230}},{"type":"LineString","arcs":[4727],"id":33981,"properties":{"V":345}},{"type":"LineString","arcs":[4728],"id":34000,"properties":{"V":345}},{"type":"LineString","arcs":[4729],"id":34007,"properties":{"V":230}},{"type":"LineString","arcs":[4730],"id":34046,"properties":{"V":230}},{"type":"LineString","arcs":[4731],"id":34047,"properties":{"V":230}},{"type":"LineString","arcs":[4732],"id":34053,"properties":{"V":230}},{"type":"LineString","arcs":[4733],"id":34081,"properties":{"V":230}},{"type":"LineString","arcs":[4734],"id":34082,"properties":{"V":230}},{"type":"LineString","arcs":[4735],"id":34083,"properties":{"V":230}},{"type":"LineString","arcs":[4736],"id":34084,"properties":{"V":230}},{"type":"LineString","arcs":[4737],"id":34092,"properties":{"V":230}},{"type":"LineString","arcs":[4738],"id":34102,"properties":{"V":230}},{"type":"LineString","arcs":[4739],"id":34103,"properties":{"V":230}},{"type":"LineString","arcs":[4740],"id":34129,"properties":{"V":230}},{"type":"LineString","arcs":[4741],"id":34168,"properties":{"V":230}},{"type":"LineString","arcs":[4742],"id":34186,"properties":{"V":230}},{"type":"LineString","arcs":[4743],"id":34201,"properties":{"V":500}},{"type":"LineString","arcs":[4744],"id":34202,"properties":{"V":500}},{"type":"LineString","arcs":[4745],"id":34203,"properties":{"V":230}},{"type":"LineString","arcs":[4746],"id":34205,"properties":{"V":230}},{"type":"LineString","arcs":[4747],"id":34207,"properties":{"V":230}},{"type":"LineString","arcs":[4748],"id":34208,"properties":{"V":230}},{"type":"LineString","arcs":[4749],"id":34210,"properties":{"V":230}},{"type":"LineString","arcs":[4750],"id":34211,"properties":{"V":230}},{"type":"LineString","arcs":[4751],"id":34215,"properties":{"V":230}},{"type":"LineString","arcs":[4752],"id":34216,"properties":{"V":230}},{"type":"LineString","arcs":[4753],"id":34224,"properties":{"V":230}},{"type":"LineString","arcs":[4754],"id":34229,"properties":{"V":230}},{"type":"LineString","arcs":[4755],"id":34232,"properties":{"V":230}},{"type":"LineString","arcs":[4756],"id":34236,"properties":{"V":230}},{"type":"LineString","arcs":[4757],"id":34241,"properties":{"V":230}},{"type":"LineString","arcs":[4758],"id":34243,"properties":{"V":230}},{"type":"LineString","arcs":[4759],"id":34251,"properties":{"V":230}},{"type":"LineString","arcs":[4760],"id":34255,"properties":{"V":230}},{"type":"LineString","arcs":[4761],"id":34259,"properties":{"V":230}},{"type":"LineString","arcs":[4762],"id":34264,"properties":{"V":230}},{"type":"LineString","arcs":[4763],"id":34265,"properties":{"V":230}},{"type":"LineString","arcs":[4764],"id":34267,"properties":{"V":230}},{"type":"LineString","arcs":[4765],"id":34318,"properties":{"V":230}},{"type":"LineString","arcs":[4766],"id":34320,"properties":{"V":230}},{"type":"LineString","arcs":[4767],"id":34322,"properties":{"V":230}},{"type":"LineString","arcs":[4768],"id":34323,"properties":{"V":230}},{"type":"LineString","arcs":[4769],"id":34324,"properties":{"V":230}},{"type":"LineString","arcs":[4770],"id":34335,"properties":{"V":230}},{"type":"LineString","arcs":[4771],"id":34341,"properties":{"V":230}},{"type":"LineString","arcs":[4772],"id":34343,"properties":{"V":230}},{"type":"LineString","arcs":[4773],"id":34400,"properties":{"V":345}},{"type":"LineString","arcs":[4774],"id":34407,"properties":{"V":500}},{"type":"LineString","arcs":[4775],"id":34618,"properties":{"V":230}},{"type":"LineString","arcs":[4776],"id":34619,"properties":{"V":230}},{"type":"LineString","arcs":[4777],"id":34781,"properties":{"V":345}},{"type":"LineString","arcs":[4778],"id":34782,"properties":{"V":230}},{"type":"LineString","arcs":[4779],"id":34787,"properties":{"V":230}},{"type":"LineString","arcs":[4780],"id":34788,"properties":{"V":230}},{"type":"LineString","arcs":[4781],"id":34799,"properties":{"V":345}},{"type":"LineString","arcs":[4782],"id":34808,"properties":{"V":345}},{"type":"LineString","arcs":[4783],"id":34809,"properties":{"V":345}},{"type":"LineString","arcs":[4784],"id":34810,"properties":{"V":345}},{"type":"LineString","arcs":[4785],"id":34826,"properties":{"V":230}},{"type":"LineString","arcs":[4786],"id":34827,"properties":{"V":500}},{"type":"LineString","arcs":[4787],"id":34835,"properties":{"V":230}},{"type":"LineString","arcs":[4788],"id":34851,"properties":{"V":345}},{"type":"LineString","arcs":[4789],"id":34861,"properties":{"V":230}},{"type":"LineString","arcs":[4790],"id":34863,"properties":{"V":230}},{"type":"LineString","arcs":[4791],"id":34864,"properties":{"V":230}},{"type":"LineString","arcs":[4792],"id":34868,"properties":{"V":230}},{"type":"LineString","arcs":[4793],"id":34885,"properties":{"V":345}},{"type":"LineString","arcs":[4794],"id":34886,"properties":{"V":345}},{"type":"LineString","arcs":[4795],"id":34888,"properties":{"V":345}},{"type":"LineString","arcs":[4796],"id":34893,"properties":{"V":345}},{"type":"LineString","arcs":[4797],"id":34897,"properties":{"V":345}},{"type":"LineString","arcs":[4798],"id":34901,"properties":{"V":345}},{"type":"LineString","arcs":[4799],"id":34904,"properties":{"V":345}},{"type":"LineString","arcs":[4800],"id":34905,"properties":{"V":345}},{"type":"LineString","arcs":[4801],"id":34906,"properties":{"V":345}},{"type":"LineString","arcs":[4802],"id":34908,"properties":{"V":345}},{"type":"LineString","arcs":[4803],"id":34909,"properties":{"V":345}},{"type":"LineString","arcs":[4804],"id":34911,"properties":{"V":230}},{"type":"LineString","arcs":[4805],"id":34912,"properties":{"V":230}},{"type":"LineString","arcs":[4806],"id":34913,"properties":{"V":230}},{"type":"LineString","arcs":[4807],"id":34914,"properties":{"V":230}},{"type":"LineString","arcs":[4808],"id":34916,"properties":{"V":230}},{"type":"LineString","arcs":[4809],"id":34920,"properties":{"V":230}},{"type":"LineString","arcs":[4810],"id":34921,"properties":{"V":230}},{"type":"LineString","arcs":[4811],"id":34922,"properties":{"V":230}},{"type":"LineString","arcs":[4812],"id":34925,"properties":{"V":345}},{"type":"LineString","arcs":[4813],"id":34926,"properties":{"V":345}},{"type":"LineString","arcs":[4814],"id":34927,"properties":{"V":345}},{"type":"LineString","arcs":[4815],"id":34928,"properties":{"V":345}},{"type":"LineString","arcs":[4816],"id":34929,"properties":{"V":230}},{"type":"LineString","arcs":[4817],"id":34934,"properties":{"V":230}},{"type":"LineString","arcs":[4818],"id":34935,"properties":{"V":230}},{"type":"LineString","arcs":[4819],"id":34936,"properties":{"V":230}},{"type":"LineString","arcs":[4820],"id":34937,"properties":{"V":230}},{"type":"LineString","arcs":[4821],"id":34938,"properties":{"V":230}},{"type":"LineString","arcs":[4822],"id":34939,"properties":{"V":230}},{"type":"LineString","arcs":[4823],"id":34940,"properties":{"V":230}},{"type":"LineString","arcs":[4824],"id":34941,"properties":{"V":230}},{"type":"LineString","arcs":[4825],"id":34942,"properties":{"V":230}},{"type":"LineString","arcs":[4826],"id":34943,"properties":{"V":230}},{"type":"LineString","arcs":[4827],"id":34945,"properties":{"V":230}},{"type":"LineString","arcs":[4828],"id":34950,"properties":{"V":345}},{"type":"LineString","arcs":[4829],"id":34951,"properties":{"V":345}},{"type":"LineString","arcs":[4830],"id":34957,"properties":{"V":345}},{"type":"LineString","arcs":[4831],"id":34960,"properties":{"V":345}},{"type":"LineString","arcs":[4832],"id":34988,"properties":{"V":345}},{"type":"LineString","arcs":[4833],"id":35008,"properties":{"V":230}},{"type":"LineString","arcs":[4834],"id":35010,"properties":{"V":230}},{"type":"LineString","arcs":[4835],"id":35011,"properties":{"V":500}},{"type":"LineString","arcs":[4836],"id":35024,"properties":{"V":230}},{"type":"LineString","arcs":[4837],"id":35025,"properties":{"V":230}},{"type":"LineString","arcs":[4838],"id":35039,"properties":{"V":230}},{"type":"LineString","arcs":[4839],"id":35042,"properties":{"V":230}},{"type":"LineString","arcs":[4840],"id":35043,"properties":{"V":230}},{"type":"LineString","arcs":[4841],"id":35044,"properties":{"V":230}},{"type":"LineString","arcs":[4842],"id":35045,"properties":{"V":230}},{"type":"LineString","arcs":[4843],"id":35047,"properties":{"V":230}},{"type":"LineString","arcs":[4844],"id":35065,"properties":{"V":345}},{"type":"LineString","arcs":[4845],"id":35066,"properties":{"V":345}},{"type":"LineString","arcs":[4846],"id":35070,"properties":{"V":230}},{"type":"LineString","arcs":[4847],"id":35078,"properties":{"V":230}},{"type":"LineString","arcs":[4848],"id":35082,"properties":{"V":230}},{"type":"LineString","arcs":[4849],"id":35083,"properties":{"V":345}},{"type":"LineString","arcs":[4850],"id":35098,"properties":{"V":230}},{"type":"LineString","arcs":[4851],"id":35099,"properties":{"V":230}},{"type":"LineString","arcs":[4852],"id":35101,"properties":{"V":230}},{"type":"LineString","arcs":[4853],"id":35102,"properties":{"V":230}},{"type":"LineString","arcs":[4854],"id":35103,"properties":{"V":230}},{"type":"LineString","arcs":[4855],"id":35104,"properties":{"V":230}},{"type":"LineString","arcs":[4856],"id":35105,"properties":{"V":230}},{"type":"LineString","arcs":[4857],"id":35107,"properties":{"V":230}},{"type":"LineString","arcs":[4858],"id":35137,"properties":{"V":230}},{"type":"LineString","arcs":[4859],"id":35138,"properties":{"V":230}},{"type":"LineString","arcs":[4860],"id":35309,"properties":{"V":230}},{"type":"LineString","arcs":[4861],"id":35310,"properties":{"V":345}},{"type":"LineString","arcs":[4862],"id":35311,"properties":{"V":345}},{"type":"LineString","arcs":[4863],"id":35312,"properties":{"V":345}},{"type":"LineString","arcs":[4864],"id":35315,"properties":{"V":230}},{"type":"LineString","arcs":[4865],"id":35316,"properties":{"V":230}},{"type":"LineString","arcs":[4866],"id":35318,"properties":{"V":345}},{"type":"LineString","arcs":[4867],"id":35319,"properties":{"V":230}},{"type":"LineString","arcs":[4868],"id":35321,"properties":{"V":345}},{"type":"LineString","arcs":[4869],"id":35322,"properties":{"V":345}},{"type":"LineString","arcs":[4870],"id":35324,"properties":{"V":345}},{"type":"LineString","arcs":[4871],"id":35326,"properties":{"V":345}},{"type":"LineString","arcs":[4872],"id":35363,"properties":{"V":230}},{"type":"LineString","arcs":[4873],"id":35364,"properties":{"V":230}},{"type":"LineString","arcs":[4874],"id":35365,"properties":{"V":230}},{"type":"LineString","arcs":[4875],"id":35366,"properties":{"V":230}},{"type":"LineString","arcs":[4876],"id":35367,"properties":{"V":230}},{"type":"LineString","arcs":[4877],"id":35388,"properties":{"V":345}},{"type":"LineString","arcs":[4878],"id":35391,"properties":{"V":230}},{"type":"LineString","arcs":[4879],"id":35407,"properties":{"V":230}},{"type":"LineString","arcs":[4880],"id":35408,"properties":{"V":230}},{"type":"LineString","arcs":[4881,4882],"id":35416,"properties":{"V":230}},{"type":"LineString","arcs":[4883],"id":35427,"properties":{"V":230}},{"type":"LineString","arcs":[4884],"id":35428,"properties":{"V":230}},{"type":"LineString","arcs":[4885],"id":35429,"properties":{"V":230}},{"type":"LineString","arcs":[4886],"id":35437,"properties":{"V":345}},{"type":"LineString","arcs":[4887],"id":35438,"properties":{"V":230}},{"type":"LineString","arcs":[4888],"id":35469,"properties":{"V":230}},{"type":"LineString","arcs":[4889],"id":35473,"properties":{"V":230}},{"type":"LineString","arcs":[4890],"id":35474,"properties":{"V":230}},{"type":"LineString","arcs":[4891],"id":35521,"properties":{"V":230}},{"type":"LineString","arcs":[4892],"id":35546,"properties":{"V":230}},{"type":"LineString","arcs":[4893],"id":35576,"properties":{"V":230}},{"type":"LineString","arcs":[4894],"id":35577,"properties":{"V":230}},{"type":"LineString","arcs":[4895],"id":35578,"properties":{"V":230}},{"type":"LineString","arcs":[4896],"id":35587,"properties":{"V":230}},{"type":"LineString","arcs":[4897],"id":35593,"properties":{"V":230}},{"type":"LineString","arcs":[4898],"id":35595,"properties":{"V":230}},{"type":"LineString","arcs":[4899],"id":35606,"properties":{"V":230}},{"type":"LineString","arcs":[4900],"id":35607,"properties":{"V":230}},{"type":"LineString","arcs":[4901],"id":35610,"properties":{"V":230}},{"type":"LineString","arcs":[4902],"id":35626,"properties":{"V":230}},{"type":"LineString","arcs":[4903],"id":35629,"properties":{"V":230}},{"type":"LineString","arcs":[4904],"id":35632,"properties":{"V":230}},{"type":"LineString","arcs":[4905],"id":35633,"properties":{"V":230}},{"type":"LineString","arcs":[4906],"id":35658,"properties":{"V":230}},{"type":"LineString","arcs":[4907],"id":35660,"properties":{"V":230}},{"type":"LineString","arcs":[4908],"id":35668,"properties":{"V":230}},{"type":"LineString","arcs":[4909],"id":35698,"properties":{"V":345}},{"type":"LineString","arcs":[4910],"id":35738,"properties":{"V":230}},{"type":"LineString","arcs":[4911],"id":35763,"properties":{"V":230}},{"type":"LineString","arcs":[4912],"id":35788,"properties":{"V":230}},{"type":"LineString","arcs":[4913],"id":35789,"properties":{"V":230}},{"type":"LineString","arcs":[4914],"id":35790,"properties":{"V":230}},{"type":"LineString","arcs":[4915],"id":35791,"properties":{"V":230}},{"type":"LineString","arcs":[4916],"id":35792,"properties":{"V":230}},{"type":"LineString","arcs":[4917],"id":35794,"properties":{"V":230}},{"type":"LineString","arcs":[4918],"id":35798,"properties":{"V":230}},{"type":"LineString","arcs":[4919],"id":35810,"properties":{"V":230}},{"type":"LineString","arcs":[4920],"id":35811,"properties":{"V":230}},{"type":"LineString","arcs":[4921],"id":35812,"properties":{"V":230}},{"type":"LineString","arcs":[4922],"id":35814,"properties":{"V":230}},{"type":"LineString","arcs":[4923],"id":35816,"properties":{"V":230}},{"type":"LineString","arcs":[4924],"id":35826,"properties":{"V":230}},{"type":"LineString","arcs":[4925],"id":35827,"properties":{"V":345}},{"type":"LineString","arcs":[4926],"id":35857,"properties":{"V":230}},{"type":"LineString","arcs":[4927],"id":35922,"properties":{"V":230}},{"type":"LineString","arcs":[4928],"id":35938,"properties":{"V":230}},{"type":"LineString","arcs":[4929],"id":35964,"properties":{"V":230}},{"type":"LineString","arcs":[4930],"id":35965,"properties":{"V":230}},{"type":"LineString","arcs":[4931],"id":35969,"properties":{"V":345}},{"type":"LineString","arcs":[4932],"id":35972,"properties":{"V":230}},{"type":"LineString","arcs":[4933],"id":35983,"properties":{"V":230}},{"type":"LineString","arcs":[4934],"id":35990,"properties":{"V":230}},{"type":"LineString","arcs":[4935],"id":35992,"properties":{"V":345}},{"type":"LineString","arcs":[4936],"id":36005,"properties":{"V":230}},{"type":"LineString","arcs":[4937],"id":36009,"properties":{"V":345}},{"type":"LineString","arcs":[4938],"id":36021,"properties":{"V":230}},{"type":"LineString","arcs":[4939],"id":36027,"properties":{"V":345}},{"type":"LineString","arcs":[4940],"id":36028,"properties":{"V":230}},{"type":"LineString","arcs":[4941],"id":36031,"properties":{"V":230}},{"type":"LineString","arcs":[4942],"id":36040,"properties":{"V":230}},{"type":"LineString","arcs":[4943],"id":36045,"properties":{"V":230}},{"type":"LineString","arcs":[4944],"id":36061,"properties":{"V":345}},{"type":"LineString","arcs":[4945],"id":36064,"properties":{"V":450}},{"type":"LineString","arcs":[4946],"id":36067,"properties":{"V":230}},{"type":"LineString","arcs":[4947],"id":36068,"properties":{"V":230}},{"type":"LineString","arcs":[4948],"id":36069,"properties":{"V":345}},{"type":"LineString","arcs":[4949],"id":36083,"properties":{"V":230}},{"type":"LineString","arcs":[4950],"id":36088,"properties":{"V":230}},{"type":"LineString","arcs":[4951],"id":36093,"properties":{"V":765}},{"type":"LineString","arcs":[4952],"id":36114,"properties":{"V":230}},{"type":"LineString","arcs":[4953],"id":36115,"properties":{"V":345}},{"type":"LineString","arcs":[4954],"id":36117,"properties":{"V":230}},{"type":"LineString","arcs":[4955],"id":36124,"properties":{"V":230}},{"type":"LineString","arcs":[4956,4957],"id":36125,"properties":{"V":500}},{"type":"LineString","arcs":[4958,4959],"id":36128,"properties":{"V":500}},{"type":"LineString","arcs":[4960],"id":36144,"properties":{"V":230}},{"type":"LineString","arcs":[4961],"id":36149,"properties":{"V":230}},{"type":"LineString","arcs":[4962],"id":36154,"properties":{"V":230}},{"type":"LineString","arcs":[4963],"id":36155,"properties":{"V":230}},{"type":"LineString","arcs":[4964],"id":36156,"properties":{"V":230}},{"type":"LineString","arcs":[4965],"id":36157,"properties":{"V":230}},{"type":"LineString","arcs":[4966],"id":36163,"properties":{"V":230}},{"type":"LineString","arcs":[4967],"id":36180,"properties":{"V":230}},{"type":"LineString","arcs":[4968],"id":36190,"properties":{"V":230}},{"type":"LineString","arcs":[4969],"id":36228,"properties":{"V":230}},{"type":"LineString","arcs":[4970],"id":36236,"properties":{"V":230}},{"type":"LineString","arcs":[4971],"id":36294,"properties":{"V":230}},{"type":"LineString","arcs":[4972],"id":36402,"properties":{"V":500}},{"type":"LineString","arcs":[4973,4974],"id":36424,"properties":{"V":345}},{"type":"LineString","arcs":[4975],"id":36426,"properties":{"V":345}},{"type":"LineString","arcs":[4976],"id":36427,"properties":{"V":345}},{"type":"LineString","arcs":[4977,4978,4979],"id":36522,"properties":{"V":230}},{"type":"LineString","arcs":[4980,4981,4982,4983,4984],"id":36528,"properties":{"V":230}},{"type":"LineString","arcs":[4985],"id":36533,"properties":{"V":230}},{"type":"LineString","arcs":[4986],"id":36534,"properties":{"V":230}},{"type":"LineString","arcs":[4987],"id":36538,"properties":{"V":230}},{"type":"LineString","arcs":[4988],"id":36541,"properties":{"V":230}},{"type":"LineString","arcs":[4989],"id":36548,"properties":{"V":230}},{"type":"LineString","arcs":[4990],"id":36549,"properties":{"V":230}},{"type":"LineString","arcs":[4991],"id":36551,"properties":{"V":230}},{"type":"LineString","arcs":[4992],"id":36552,"properties":{"V":230}},{"type":"LineString","arcs":[4993],"id":36553,"properties":{"V":230}},{"type":"LineString","arcs":[4994],"id":36554,"properties":{"V":230}},{"type":"LineString","arcs":[4995],"id":36555,"properties":{"V":230}},{"type":"LineString","arcs":[4996],"id":36556,"properties":{"V":230}},{"type":"LineString","arcs":[4997],"id":36557,"properties":{"V":230}},{"type":"LineString","arcs":[4998],"id":36558,"properties":{"V":230}},{"type":"LineString","arcs":[4999],"id":36559,"properties":{"V":230}},{"type":"LineString","arcs":[5000],"id":36560,"properties":{"V":230}},{"type":"LineString","arcs":[5001],"id":36561,"properties":{"V":230}},{"type":"LineString","arcs":[5002],"id":36562,"properties":{"V":230}},{"type":"LineString","arcs":[5003],"id":36563,"properties":{"V":230}},{"type":"LineString","arcs":[5004],"id":36587,"properties":{"V":230}},{"type":"LineString","arcs":[5005],"id":36603,"properties":{"V":345}},{"type":"LineString","arcs":[5006,5007,5008],"id":36634,"properties":{"V":345}},{"type":"LineString","arcs":[5009],"id":36673,"properties":{"V":345}},{"type":"LineString","arcs":[5010],"id":36701,"properties":{"V":230}},{"type":"LineString","arcs":[5011],"id":36773,"properties":{"V":230}},{"type":"LineString","arcs":[5012],"id":36774,"properties":{"V":500}},{"type":"LineString","arcs":[5013],"id":36775,"properties":{"V":230}},{"type":"LineString","arcs":[5014,5015],"id":36777,"properties":{"V":500}},{"type":"LineString","arcs":[5016],"id":36929,"properties":{"V":345}},{"type":"LineString","arcs":[5017],"id":36936,"properties":{"V":345}},{"type":"LineString","arcs":[5018],"id":36950,"properties":{"V":345}},{"type":"LineString","arcs":[5019],"id":36973,"properties":{"V":230}},{"type":"LineString","arcs":[5020],"id":36974,"properties":{"V":230}},{"type":"LineString","arcs":[5021],"id":36978,"properties":{"V":230}},{"type":"LineString","arcs":[5022],"id":36979,"properties":{"V":230}},{"type":"LineString","arcs":[5023],"id":36980,"properties":{"V":230}},{"type":"LineString","arcs":[5024],"id":36984,"properties":{"V":230}},{"type":"LineString","arcs":[5025],"id":36987,"properties":{"V":230}},{"type":"LineString","arcs":[5026],"id":36988,"properties":{"V":230}},{"type":"LineString","arcs":[5027],"id":36998,"properties":{"V":345}},{"type":"LineString","arcs":[5028],"id":37170,"properties":{"V":230}},{"type":"LineString","arcs":[5029],"id":37185,"properties":{"V":345}},{"type":"LineString","arcs":[5030],"id":37202,"properties":{"V":345}},{"type":"LineString","arcs":[5031],"id":37262,"properties":{"V":345}},{"type":"LineString","arcs":[5032],"id":37263,"properties":{"V":230}},{"type":"LineString","arcs":[5033],"id":37282,"properties":{"V":230}},{"type":"LineString","arcs":[5034],"id":37283,"properties":{"V":230}},{"type":"LineString","arcs":[5035],"id":37286,"properties":{"V":230}},{"type":"LineString","arcs":[5036],"id":37287,"properties":{"V":230}},{"type":"LineString","arcs":[5037],"id":37288,"properties":{"V":230}},{"type":"LineString","arcs":[5038],"id":37289,"properties":{"V":230}},{"type":"LineString","arcs":[5039],"id":37290,"properties":{"V":230}},{"type":"LineString","arcs":[5040],"id":37293,"properties":{"V":230}},{"type":"LineString","arcs":[5041],"id":37294,"properties":{"V":230}},{"type":"LineString","arcs":[5042],"id":37319,"properties":{"V":230}},{"type":"LineString","arcs":[5043,5044,5045,5046,5047],"id":37320,"properties":{"V":500}},{"type":"LineString","arcs":[5048],"id":37322,"properties":{"V":500}},{"type":"LineString","arcs":[5049,5050],"id":37323,"properties":{"V":230}},{"type":"LineString","arcs":[5051,5052],"id":37324,"properties":{"V":230}},{"type":"LineString","arcs":[5053,5054],"id":37327,"properties":{"V":230}},{"type":"LineString","arcs":[5055],"id":37329,"properties":{"V":230}},{"type":"LineString","arcs":[5056],"id":37330,"properties":{"V":230}},{"type":"LineString","arcs":[5057],"id":37331,"properties":{"V":230}},{"type":"LineString","arcs":[5058],"id":37334,"properties":{"V":230}},{"type":"LineString","arcs":[5059],"id":37335,"properties":{"V":230}},{"type":"LineString","arcs":[5060],"id":37339,"properties":{"V":230}},{"type":"LineString","arcs":[5061],"id":37340,"properties":{"V":230}},{"type":"LineString","arcs":[5062],"id":37370,"properties":{"V":345}},{"type":"LineString","arcs":[5063],"id":37433,"properties":{"V":345}},{"type":"LineString","arcs":[5064],"id":37574,"properties":{"V":345}},{"type":"LineString","arcs":[5065],"id":37575,"properties":{"V":345}},{"type":"LineString","arcs":[5066],"id":37601,"properties":{"V":345}},{"type":"LineString","arcs":[5067],"id":37604,"properties":{"V":345}},{"type":"LineString","arcs":[5068],"id":37607,"properties":{"V":345}},{"type":"LineString","arcs":[5069],"id":37629,"properties":{"V":345}},{"type":"LineString","arcs":[5070],"id":37640,"properties":{"V":345}},{"type":"LineString","arcs":[5071],"id":37641,"properties":{"V":345}},{"type":"LineString","arcs":[5072],"id":37642,"properties":{"V":345}},{"type":"LineString","arcs":[5073],"id":37644,"properties":{"V":345}},{"type":"LineString","arcs":[5074],"id":37645,"properties":{"V":345}},{"type":"LineString","arcs":[5075],"id":37646,"properties":{"V":345}},{"type":"LineString","arcs":[5076],"id":37670,"properties":{"V":230}},{"type":"LineString","arcs":[5077],"id":37681,"properties":{"V":345}},{"type":"LineString","arcs":[5078],"id":37707,"properties":{"V":230}},{"type":"LineString","arcs":[5079],"id":37718,"properties":{"V":230}},{"type":"LineString","arcs":[5080],"id":37723,"properties":{"V":230}},{"type":"LineString","arcs":[5081],"id":37724,"properties":{"V":230}},{"type":"LineString","arcs":[5082],"id":37725,"properties":{"V":230}},{"type":"LineString","arcs":[5083],"id":37726,"properties":{"V":230}},{"type":"LineString","arcs":[5084],"id":37727,"properties":{"V":230}},{"type":"LineString","arcs":[5085],"id":37761,"properties":{"V":230}},{"type":"LineString","arcs":[5086],"id":37762,"properties":{"V":230}},{"type":"LineString","arcs":[5087],"id":37836,"properties":{"V":230}},{"type":"LineString","arcs":[5088],"id":37840,"properties":{"V":230}},{"type":"LineString","arcs":[5089],"id":37841,"properties":{"V":230}},{"type":"LineString","arcs":[5090],"id":37866,"properties":{"V":345}},{"type":"LineString","arcs":[5091],"id":37867,"properties":{"V":345}},{"type":"LineString","arcs":[5092],"id":37870,"properties":{"V":345}},{"type":"LineString","arcs":[5093],"id":37871,"properties":{"V":345}},{"type":"LineString","arcs":[5094],"id":37878,"properties":{"V":345}},{"type":"LineString","arcs":[5095],"id":37879,"properties":{"V":345}},{"type":"LineString","arcs":[5096],"id":37880,"properties":{"V":345}},{"type":"LineString","arcs":[5097],"id":37921,"properties":{"V":345}},{"type":"LineString","arcs":[5098],"id":37922,"properties":{"V":345}},{"type":"LineString","arcs":[5099],"id":37986,"properties":{"V":345}},{"type":"LineString","arcs":[5100],"id":37998,"properties":{"V":230}},{"type":"LineString","arcs":[5101],"id":38011,"properties":{"V":230}},{"type":"LineString","arcs":[5102],"id":38085,"properties":{"V":345}},{"type":"LineString","arcs":[5103],"id":38086,"properties":{"V":345}},{"type":"LineString","arcs":[5104],"id":38087,"properties":{"V":345}},{"type":"LineString","arcs":[5105],"id":38088,"properties":{"V":345}},{"type":"LineString","arcs":[5106],"id":38107,"properties":{"V":345}},{"type":"LineString","arcs":[5107],"id":38139,"properties":{"V":230}},{"type":"LineString","arcs":[5108],"id":38140,"properties":{"V":230}},{"type":"LineString","arcs":[5109,5110],"id":38145,"properties":{"V":230}},{"type":"LineString","arcs":[5111],"id":38171,"properties":{"V":345}},{"type":"LineString","arcs":[5112],"id":38173,"properties":{"V":230}},{"type":"LineString","arcs":[5113],"id":38180,"properties":{"V":345}},{"type":"LineString","arcs":[5114,5115],"id":38191,"properties":{"V":230}},{"type":"LineString","arcs":[5116],"id":38215,"properties":{"V":230}},{"type":"LineString","arcs":[5117],"id":38272,"properties":{"V":230}},{"type":"LineString","arcs":[5118],"id":38288,"properties":{"V":230}},{"type":"LineString","arcs":[5119],"id":38344,"properties":{"V":230}},{"type":"LineString","arcs":[5120],"id":38424,"properties":{"V":230}},{"type":"LineString","arcs":[5121],"id":38519,"properties":{"V":230}},{"type":"LineString","arcs":[5122],"id":38520,"properties":{"V":230}},{"type":"LineString","arcs":[5123],"id":38571,"properties":{"V":345}},{"type":"LineString","arcs":[5124],"id":38572,"properties":{"V":345}},{"type":"LineString","arcs":[5125],"id":38573,"properties":{"V":345}},{"type":"LineString","arcs":[5126],"id":38590,"properties":{"V":230}},{"type":"LineString","arcs":[5127],"id":38641,"properties":{"V":230}},{"type":"LineString","arcs":[5128],"id":38664,"properties":{"V":230}},{"type":"LineString","arcs":[5129],"id":38679,"properties":{"V":230}},{"type":"LineString","arcs":[5130],"id":38738,"properties":{"V":230}},{"type":"LineString","arcs":[5131],"id":38824,"properties":{"V":230}},{"type":"LineString","arcs":[5132],"id":38825,"properties":{"V":230}},{"type":"LineString","arcs":[5133],"id":38851,"properties":{"V":230}},{"type":"LineString","arcs":[5134],"id":38859,"properties":{"V":230}},{"type":"LineString","arcs":[5135],"id":38867,"properties":{"V":345}},{"type":"LineString","arcs":[5136],"id":38907,"properties":{"V":230}},{"type":"LineString","arcs":[5137],"id":38908,"properties":{"V":230}},{"type":"LineString","arcs":[5138],"id":38909,"properties":{"V":230}},{"type":"LineString","arcs":[5139],"id":38962,"properties":{"V":230}},{"type":"LineString","arcs":[5140],"id":38985,"properties":{"V":345}},{"type":"LineString","arcs":[5141],"id":38986,"properties":{"V":230}},{"type":"LineString","arcs":[5142],"id":38989,"properties":{"V":345}},{"type":"LineString","arcs":[5143],"id":38996,"properties":{"V":345}},{"type":"LineString","arcs":[5144],"id":39000,"properties":{"V":230}},{"type":"LineString","arcs":[5145],"id":39034,"properties":{"V":230}},{"type":"LineString","arcs":[5146],"id":39059,"properties":{"V":230}},{"type":"LineString","arcs":[5147],"id":39064,"properties":{"V":230}},{"type":"LineString","arcs":[5148],"id":39068,"properties":{"V":345}},{"type":"LineString","arcs":[5149],"id":39076,"properties":{"V":345}},{"type":"LineString","arcs":[5150],"id":39079,"properties":{"V":345}},{"type":"LineString","arcs":[5151],"id":39123,"properties":{"V":230}},{"type":"LineString","arcs":[5152],"id":39294,"properties":{"V":230}},{"type":"LineString","arcs":[5153],"id":39315,"properties":{"V":230}},{"type":"LineString","arcs":[5154],"id":39316,"properties":{"V":230}},{"type":"LineString","arcs":[5155],"id":39319,"properties":{"V":230}},{"type":"LineString","arcs":[5156],"id":39324,"properties":{"V":230}},{"type":"LineString","arcs":[5157],"id":39342,"properties":{"V":230}},{"type":"LineString","arcs":[5158],"id":39350,"properties":{"V":230}},{"type":"LineString","arcs":[5159],"id":39351,"properties":{"V":230}},{"type":"LineString","arcs":[5160],"id":39352,"properties":{"V":230}},{"type":"LineString","arcs":[5161],"id":39353,"properties":{"V":230}},{"type":"LineString","arcs":[5162],"id":39354,"properties":{"V":230}},{"type":"LineString","arcs":[5163],"id":39355,"properties":{"V":230}},{"type":"LineString","arcs":[5164],"id":39358,"properties":{"V":230}},{"type":"LineString","arcs":[5165,5166],"id":39375,"properties":{"V":230}},{"type":"LineString","arcs":[5167],"id":39376,"properties":{"V":230}},{"type":"LineString","arcs":[5168],"id":39383,"properties":{"V":230}},{"type":"LineString","arcs":[5169],"id":39432,"properties":{"V":230}},{"type":"LineString","arcs":[5170],"id":39434,"properties":{"V":230}},{"type":"LineString","arcs":[5171],"id":39435,"properties":{"V":500}},{"type":"LineString","arcs":[5172],"id":39449,"properties":{"V":230}},{"type":"LineString","arcs":[5173],"id":39450,"properties":{"V":500}},{"type":"LineString","arcs":[5174],"id":39452,"properties":{"V":230}},{"type":"LineString","arcs":[5175],"id":39459,"properties":{"V":500}},{"type":"LineString","arcs":[5176],"id":39462,"properties":{"V":230}},{"type":"LineString","arcs":[5177],"id":39507,"properties":{"V":230}},{"type":"LineString","arcs":[5178],"id":39541,"properties":{"V":230}},{"type":"LineString","arcs":[5179],"id":39543,"properties":{"V":230}},{"type":"LineString","arcs":[5180],"id":39544,"properties":{"V":230}},{"type":"LineString","arcs":[5181],"id":39548,"properties":{"V":345}},{"type":"LineString","arcs":[5182],"id":39551,"properties":{"V":345}},{"type":"LineString","arcs":[5183],"id":39553,"properties":{"V":230}},{"type":"LineString","arcs":[5184],"id":39557,"properties":{"V":230}},{"type":"LineString","arcs":[5185],"id":39561,"properties":{"V":345}},{"type":"LineString","arcs":[5186],"id":39567,"properties":{"V":345}},{"type":"LineString","arcs":[5187],"id":39569,"properties":{"V":345}},{"type":"LineString","arcs":[5188],"id":39570,"properties":{"V":345}},{"type":"LineString","arcs":[5189],"id":39571,"properties":{"V":230}},{"type":"LineString","arcs":[5190],"id":39584,"properties":{"V":230}},{"type":"LineString","arcs":[5191],"id":39585,"properties":{"V":230}},{"type":"LineString","arcs":[5192],"id":39589,"properties":{"V":230}},{"type":"LineString","arcs":[5193],"id":39600,"properties":{"V":345}},{"type":"LineString","arcs":[5194],"id":39602,"properties":{"V":345}},{"type":"LineString","arcs":[5195],"id":39603,"properties":{"V":345}},{"type":"LineString","arcs":[5196],"id":39605,"properties":{"V":345}},{"type":"LineString","arcs":[5197],"id":39607,"properties":{"V":345}},{"type":"LineString","arcs":[5198],"id":39614,"properties":{"V":230}},{"type":"LineString","arcs":[5199],"id":39647,"properties":{"V":230}},{"type":"LineString","arcs":[5200],"id":39648,"properties":{"V":230}},{"type":"LineString","arcs":[5201],"id":39649,"properties":{"V":345}},{"type":"LineString","arcs":[5202],"id":39650,"properties":{"V":345}},{"type":"LineString","arcs":[5203],"id":39655,"properties":{"V":230}},{"type":"LineString","arcs":[5204],"id":39656,"properties":{"V":230}},{"type":"LineString","arcs":[5205],"id":39657,"properties":{"V":230}},{"type":"LineString","arcs":[5206],"id":39658,"properties":{"V":230}},{"type":"LineString","arcs":[5207],"id":39659,"properties":{"V":230}},{"type":"LineString","arcs":[5208],"id":39660,"properties":{"V":230}},{"type":"LineString","arcs":[5209],"id":39661,"properties":{"V":230}},{"type":"LineString","arcs":[5210],"id":39664,"properties":{"V":345}},{"type":"LineString","arcs":[5211],"id":39670,"properties":{"V":345}},{"type":"LineString","arcs":[5212],"id":39671,"properties":{"V":345}},{"type":"LineString","arcs":[5213],"id":39677,"properties":{"V":345}},{"type":"LineString","arcs":[5214],"id":39678,"properties":{"V":345}},{"type":"LineString","arcs":[5215],"id":39680,"properties":{"V":345}},{"type":"LineString","arcs":[5216],"id":39681,"properties":{"V":230}},{"type":"LineString","arcs":[5217],"id":39682,"properties":{"V":230}},{"type":"LineString","arcs":[5218],"id":39683,"properties":{"V":230}},{"type":"LineString","arcs":[5219],"id":39684,"properties":{"V":230}},{"type":"LineString","arcs":[5220],"id":39713,"properties":{"V":345}},{"type":"LineString","arcs":[5221],"id":39719,"properties":{"V":345}},{"type":"LineString","arcs":[5222],"id":39721,"properties":{"V":345}},{"type":"LineString","arcs":[5223],"id":39726,"properties":{"V":500}},{"type":"LineString","arcs":[5224],"id":39763,"properties":{"V":230}},{"type":"LineString","arcs":[5225],"id":39768,"properties":{"V":230}},{"type":"LineString","arcs":[5226],"id":39773,"properties":{"V":230}},{"type":"LineString","arcs":[5227],"id":39774,"properties":{"V":230}},{"type":"LineString","arcs":[5228],"id":39865,"properties":{"V":230}},{"type":"LineString","arcs":[5229],"id":39878,"properties":{"V":345}},{"type":"LineString","arcs":[5230],"id":40005,"properties":{"V":345}},{"type":"LineString","arcs":[5231],"id":40099,"properties":{"V":345}},{"type":"LineString","arcs":[5232],"id":40167,"properties":{"V":345}},{"type":"LineString","arcs":[5233],"id":40170,"properties":{"V":345}},{"type":"LineString","arcs":[5234],"id":40171,"properties":{"V":345}},{"type":"LineString","arcs":[5235],"id":40193,"properties":{"V":345}},{"type":"LineString","arcs":[5236],"id":40198,"properties":{"V":345}},{"type":"LineString","arcs":[5237],"id":40199,"properties":{"V":345}},{"type":"LineString","arcs":[5238],"id":40215,"properties":{"V":230}},{"type":"LineString","arcs":[5239,5240],"id":40220,"properties":{"V":230}},{"type":"LineString","arcs":[5241],"id":40283,"properties":{"V":230}},{"type":"LineString","arcs":[5242],"id":40293,"properties":{"V":230}},{"type":"LineString","arcs":[5243],"id":40311,"properties":{"V":230}},{"type":"LineString","arcs":[5244],"id":40314,"properties":{"V":230}},{"type":"LineString","arcs":[5245],"id":40331,"properties":{"V":500}},{"type":"LineString","arcs":[5246],"id":40332,"properties":{"V":500}},{"type":"LineString","arcs":[5247],"id":40333,"properties":{"V":230}},{"type":"LineString","arcs":[5248],"id":40334,"properties":{"V":500}},{"type":"LineString","arcs":[5249],"id":40342,"properties":{"V":230}},{"type":"LineString","arcs":[5250],"id":40343,"properties":{"V":500}},{"type":"LineString","arcs":[5251],"id":40398,"properties":{"V":345}},{"type":"LineString","arcs":[5252],"id":40400,"properties":{"V":345}},{"type":"LineString","arcs":[5253],"id":40410,"properties":{"V":345}},{"type":"LineString","arcs":[5254],"id":40414,"properties":{"V":345}},{"type":"LineString","arcs":[5255],"id":40415,"properties":{"V":345}},{"type":"LineString","arcs":[5256],"id":40417,"properties":{"V":345}},{"type":"LineString","arcs":[5257],"id":40418,"properties":{"V":345}},{"type":"LineString","arcs":[5258],"id":40427,"properties":{"V":345}},{"type":"LineString","arcs":[5259],"id":40452,"properties":{"V":230}},{"type":"LineString","arcs":[5260],"id":40461,"properties":{"V":230}},{"type":"LineString","arcs":[5261],"id":40471,"properties":{"V":345}},{"type":"LineString","arcs":[5262],"id":40484,"properties":{"V":230}},{"type":"LineString","arcs":[5263],"id":40485,"properties":{"V":230}},{"type":"LineString","arcs":[5264],"id":40489,"properties":{"V":230}},{"type":"LineString","arcs":[5265],"id":40510,"properties":{"V":230}},{"type":"LineString","arcs":[5266],"id":40519,"properties":{"V":345}},{"type":"LineString","arcs":[5267],"id":40528,"properties":{"V":345}},{"type":"LineString","arcs":[5268],"id":40554,"properties":{"V":345}},{"type":"LineString","arcs":[5269],"id":40558,"properties":{"V":345}},{"type":"LineString","arcs":[5270],"id":40559,"properties":{"V":345}},{"type":"LineString","arcs":[5271],"id":40574,"properties":{"V":230}},{"type":"LineString","arcs":[5272],"id":40576,"properties":{"V":230}},{"type":"LineString","arcs":[5273],"id":40605,"properties":{"V":230}},{"type":"LineString","arcs":[5274],"id":40606,"properties":{"V":230}},{"type":"LineString","arcs":[5275],"id":40607,"properties":{"V":230}},{"type":"LineString","arcs":[5276],"id":40623,"properties":{"V":345}},{"type":"LineString","arcs":[5277],"id":40650,"properties":{"V":345}},{"type":"LineString","arcs":[5278],"id":40651,"properties":{"V":345}},{"type":"LineString","arcs":[5279],"id":40660,"properties":{"V":345}},{"type":"LineString","arcs":[5280],"id":40661,"properties":{"V":345}},{"type":"LineString","arcs":[5281],"id":40662,"properties":{"V":345}},{"type":"LineString","arcs":[5282],"id":40663,"properties":{"V":345}},{"type":"LineString","arcs":[5283],"id":40664,"properties":{"V":345}},{"type":"LineString","arcs":[5284],"id":40665,"properties":{"V":345}},{"type":"LineString","arcs":[5285],"id":40666,"properties":{"V":345}},{"type":"LineString","arcs":[5286],"id":40669,"properties":{"V":345}},{"type":"LineString","arcs":[5287],"id":40670,"properties":{"V":345}},{"type":"LineString","arcs":[5288],"id":40671,"properties":{"V":345}},{"type":"LineString","arcs":[5289],"id":40673,"properties":{"V":345}},{"type":"LineString","arcs":[5290],"id":40674,"properties":{"V":345}},{"type":"LineString","arcs":[5291],"id":40677,"properties":{"V":345}},{"type":"LineString","arcs":[5292],"id":40678,"properties":{"V":345}},{"type":"LineString","arcs":[5293],"id":40697,"properties":{"V":345}},{"type":"LineString","arcs":[5294],"id":40706,"properties":{"V":345}},{"type":"LineString","arcs":[5295],"id":40708,"properties":{"V":345}},{"type":"LineString","arcs":[5296],"id":40710,"properties":{"V":345}},{"type":"LineString","arcs":[5297],"id":40711,"properties":{"V":230}},{"type":"LineString","arcs":[5298],"id":40712,"properties":{"V":765}},{"type":"LineString","arcs":[5299],"id":40713,"properties":{"V":345}},{"type":"LineString","arcs":[5300],"id":40714,"properties":{"V":345}},{"type":"LineString","arcs":[5301],"id":40717,"properties":{"V":345}},{"type":"LineString","arcs":[5302,5303,5304,5305],"id":40722,"properties":{"V":230}},{"type":"LineString","arcs":[5306],"id":40723,"properties":{"V":230}},{"type":"LineString","arcs":[5307],"id":40736,"properties":{"V":345}},{"type":"LineString","arcs":[5308],"id":40742,"properties":{"V":500}},{"type":"LineString","arcs":[5309],"id":40747,"properties":{"V":230}},{"type":"LineString","arcs":[5310],"id":40774,"properties":{"V":230}},{"type":"LineString","arcs":[5311],"id":40775,"properties":{"V":230}},{"type":"LineString","arcs":[5312],"id":40780,"properties":{"V":345}},{"type":"LineString","arcs":[5313],"id":40781,"properties":{"V":345}},{"type":"LineString","arcs":[5314],"id":40782,"properties":{"V":345}},{"type":"LineString","arcs":[5315],"id":40783,"properties":{"V":345}},{"type":"LineString","arcs":[5316],"id":40784,"properties":{"V":345}},{"type":"LineString","arcs":[5317],"id":40785,"properties":{"V":345}},{"type":"LineString","arcs":[5318],"id":40803,"properties":{"V":345}},{"type":"LineString","arcs":[5319],"id":40848,"properties":{"V":345}},{"type":"LineString","arcs":[5320],"id":40850,"properties":{"V":345}},{"type":"LineString","arcs":[5321],"id":40851,"properties":{"V":345}},{"type":"LineString","arcs":[5322],"id":40852,"properties":{"V":345}},{"type":"LineString","arcs":[5323],"id":40858,"properties":{"V":345}},{"type":"LineString","arcs":[5324],"id":40859,"properties":{"V":345}},{"type":"LineString","arcs":[5325],"id":40867,"properties":{"V":230}},{"type":"LineString","arcs":[5326],"id":40868,"properties":{"V":230}},{"type":"LineString","arcs":[5327],"id":40869,"properties":{"V":230}},{"type":"LineString","arcs":[5328],"id":40871,"properties":{"V":230}},{"type":"LineString","arcs":[5329],"id":40916,"properties":{"V":345}},{"type":"LineString","arcs":[5330],"id":40917,"properties":{"V":345}},{"type":"LineString","arcs":[5331],"id":40939,"properties":{"V":345}},{"type":"LineString","arcs":[5332],"id":40952,"properties":{"V":345}},{"type":"LineString","arcs":[5333],"id":40987,"properties":{"V":345}},{"type":"LineString","arcs":[5334],"id":40999,"properties":{"V":345}},{"type":"LineString","arcs":[5335],"id":41007,"properties":{"V":345}},{"type":"LineString","arcs":[5336],"id":41009,"properties":{"V":345}},{"type":"LineString","arcs":[5337],"id":41032,"properties":{"V":345}},{"type":"LineString","arcs":[5338],"id":41052,"properties":{"V":345}},{"type":"LineString","arcs":[5339],"id":41072,"properties":{"V":345}},{"type":"LineString","arcs":[5340],"id":41078,"properties":{"V":345}},{"type":"LineString","arcs":[5341],"id":41079,"properties":{"V":345}},{"type":"LineString","arcs":[5342],"id":41090,"properties":{"V":345}},{"type":"LineString","arcs":[5343],"id":41091,"properties":{"V":345}},{"type":"LineString","arcs":[5344,5345],"id":41092,"properties":{"V":345}},{"type":"LineString","arcs":[5346,5347],"id":41093,"properties":{"V":345}},{"type":"LineString","arcs":[5348],"id":41119,"properties":{"V":345}},{"type":"LineString","arcs":[5349],"id":41132,"properties":{"V":230}},{"type":"LineString","arcs":[5350],"id":41134,"properties":{"V":230}},{"type":"LineString","arcs":[5351],"id":41135,"properties":{"V":230}},{"type":"LineString","arcs":[5352],"id":41137,"properties":{"V":230}},{"type":"LineString","arcs":[5353],"id":41152,"properties":{"V":230}},{"type":"LineString","arcs":[5354],"id":41153,"properties":{"V":230}},{"type":"LineString","arcs":[5355],"id":41172,"properties":{"V":345}},{"type":"LineString","arcs":[5356],"id":41173,"properties":{"V":345}},{"type":"LineString","arcs":[5357],"id":41174,"properties":{"V":345}},{"type":"LineString","arcs":[5358],"id":41178,"properties":{"V":345}},{"type":"LineString","arcs":[5359],"id":41179,"properties":{"V":345}},{"type":"LineString","arcs":[5360],"id":41196,"properties":{"V":345}},{"type":"LineString","arcs":[5361],"id":41287,"properties":{"V":345}},{"type":"LineString","arcs":[5362],"id":41400,"properties":{"V":230}},{"type":"LineString","arcs":[5363],"id":41413,"properties":{"V":230}},{"type":"LineString","arcs":[5364],"id":41461,"properties":{"V":230}},{"type":"LineString","arcs":[5365],"id":41465,"properties":{"V":230}},{"type":"LineString","arcs":[5366],"id":41468,"properties":{"V":230}},{"type":"LineString","arcs":[5367],"id":41471,"properties":{"V":230}},{"type":"LineString","arcs":[5368],"id":41474,"properties":{"V":345}},{"type":"LineString","arcs":[5369],"id":41512,"properties":{"V":230}},{"type":"LineString","arcs":[5370],"id":41518,"properties":{"V":230}},{"type":"LineString","arcs":[5371],"id":41576,"properties":{"V":230}},{"type":"LineString","arcs":[5372],"id":41584,"properties":{"V":230}},{"type":"LineString","arcs":[5373],"id":41585,"properties":{"V":230}},{"type":"LineString","arcs":[5374],"id":41586,"properties":{"V":230}},{"type":"LineString","arcs":[5375],"id":41590,"properties":{"V":230}},{"type":"LineString","arcs":[5376],"id":41591,"properties":{"V":230}},{"type":"LineString","arcs":[5377],"id":41592,"properties":{"V":230}},{"type":"LineString","arcs":[5378],"id":41594,"properties":{"V":230}},{"type":"LineString","arcs":[5379],"id":41754,"properties":{"V":230}},{"type":"LineString","arcs":[5380],"id":41786,"properties":{"V":230}},{"type":"LineString","arcs":[5381],"id":41835,"properties":{"V":230}},{"type":"LineString","arcs":[5382],"id":41848,"properties":{"V":345}},{"type":"LineString","arcs":[5383],"id":41869,"properties":{"V":230}},{"type":"LineString","arcs":[5384],"id":41899,"properties":{"V":230}},{"type":"LineString","arcs":[5385],"id":41905,"properties":{"V":230}},{"type":"LineString","arcs":[5386],"id":41951,"properties":{"V":230}},{"type":"LineString","arcs":[5387],"id":42014,"properties":{"V":345}},{"type":"LineString","arcs":[5388],"id":42015,"properties":{"V":345}},{"type":"LineString","arcs":[5389],"id":42016,"properties":{"V":345}},{"type":"LineString","arcs":[5390],"id":42019,"properties":{"V":345}},{"type":"LineString","arcs":[5391],"id":42190,"properties":{"V":345}},{"type":"LineString","arcs":[5392],"id":42309,"properties":{"V":230}},{"type":"LineString","arcs":[5393],"id":42314,"properties":{"V":230}},{"type":"LineString","arcs":[5394],"id":42317,"properties":{"V":230}},{"type":"LineString","arcs":[5395],"id":42324,"properties":{"V":500}},{"type":"LineString","arcs":[5396],"id":42459,"properties":{"V":345}},{"type":"LineString","arcs":[5397],"id":42505,"properties":{"V":345}},{"type":"LineString","arcs":[5398],"id":42506,"properties":{"V":230}},{"type":"LineString","arcs":[5399],"id":42507,"properties":{"V":230}},{"type":"LineString","arcs":[5400],"id":42560,"properties":{"V":230}},{"type":"LineString","arcs":[5401],"id":42583,"properties":{"V":230}},{"type":"LineString","arcs":[5402],"id":42609,"properties":{"V":230}},{"type":"LineString","arcs":[5403],"id":42668,"properties":{"V":230}},{"type":"LineString","arcs":[5404],"id":42669,"properties":{"V":230}},{"type":"LineString","arcs":[5405],"id":42670,"properties":{"V":230}},{"type":"LineString","arcs":[5406],"id":42672,"properties":{"V":230}},{"type":"LineString","arcs":[5407],"id":42673,"properties":{"V":230}},{"type":"LineString","arcs":[5408],"id":42674,"properties":{"V":230}},{"type":"LineString","arcs":[5409],"id":42675,"properties":{"V":230}},{"type":"LineString","arcs":[5410],"id":42676,"properties":{"V":230}},{"type":"LineString","arcs":[5411],"id":42677,"properties":{"V":345}},{"type":"LineString","arcs":[5412],"id":42678,"properties":{"V":345}},{"type":"LineString","arcs":[5413],"id":42701,"properties":{"V":230}},{"type":"LineString","arcs":[5414],"id":42727,"properties":{"V":345}},{"type":"LineString","arcs":[5415],"id":42745,"properties":{"V":345}},{"type":"LineString","arcs":[5416],"id":42746,"properties":{"V":230}},{"type":"LineString","arcs":[5417],"id":42761,"properties":{"V":230}},{"type":"LineString","arcs":[5418],"id":42764,"properties":{"V":230}},{"type":"LineString","arcs":[5419],"id":42818,"properties":{"V":230}},{"type":"LineString","arcs":[5420],"id":42851,"properties":{"V":345}},{"type":"LineString","arcs":[5421],"id":42854,"properties":{"V":230}},{"type":"LineString","arcs":[5422],"id":42856,"properties":{"V":230}},{"type":"LineString","arcs":[5423],"id":42857,"properties":{"V":230}},{"type":"LineString","arcs":[5424],"id":42858,"properties":{"V":345}},{"type":"LineString","arcs":[5425],"id":42872,"properties":{"V":230}},{"type":"LineString","arcs":[5426],"id":42882,"properties":{"V":230}},{"type":"LineString","arcs":[5427,5428],"id":42900,"properties":{"V":230}},{"type":"LineString","arcs":[5429],"id":42962,"properties":{"V":345}},{"type":"LineString","arcs":[5430],"id":42967,"properties":{"V":345}},{"type":"LineString","arcs":[5431],"id":42968,"properties":{"V":345}},{"type":"LineString","arcs":[5432],"id":42969,"properties":{"V":345}},{"type":"LineString","arcs":[5433],"id":42979,"properties":{"V":345}},{"type":"LineString","arcs":[5434],"id":43033,"properties":{"V":230}},{"type":"LineString","arcs":[5435],"id":43041,"properties":{"V":230}},{"type":"LineString","arcs":[5436],"id":43049,"properties":{"V":230}},{"type":"LineString","arcs":[5437],"id":43062,"properties":{"V":230}},{"type":"LineString","arcs":[5438],"id":43063,"properties":{"V":230}},{"type":"LineString","arcs":[5439],"id":43065,"properties":{"V":230}},{"type":"LineString","arcs":[5440],"id":43066,"properties":{"V":230}},{"type":"LineString","arcs":[5441],"id":43074,"properties":{"V":230}},{"type":"LineString","arcs":[5442],"id":43075,"properties":{"V":230}},{"type":"LineString","arcs":[5443],"id":43076,"properties":{"V":230}},{"type":"LineString","arcs":[5444],"id":43077,"properties":{"V":230}},{"type":"LineString","arcs":[5445],"id":43079,"properties":{"V":230}},{"type":"LineString","arcs":[5446],"id":43080,"properties":{"V":230}},{"type":"LineString","arcs":[5447],"id":43083,"properties":{"V":230}},{"type":"LineString","arcs":[5448],"id":43084,"properties":{"V":230}},{"type":"LineString","arcs":[5449],"id":43085,"properties":{"V":230}},{"type":"LineString","arcs":[5450],"id":43086,"properties":{"V":230}},{"type":"LineString","arcs":[5451],"id":43087,"properties":{"V":230}},{"type":"LineString","arcs":[5452],"id":43088,"properties":{"V":230}},{"type":"LineString","arcs":[5453],"id":43092,"properties":{"V":345}},{"type":"LineString","arcs":[5454,5455,5456],"id":43093,"properties":{"V":345}},{"type":"LineString","arcs":[5457],"id":43102,"properties":{"V":230}},{"type":"LineString","arcs":[5458],"id":43122,"properties":{"V":230}},{"type":"LineString","arcs":[5459],"id":43152,"properties":{"V":230}},{"type":"LineString","arcs":[5460],"id":43153,"properties":{"V":230}},{"type":"LineString","arcs":[5461],"id":43170,"properties":{"V":230}},{"type":"LineString","arcs":[5462],"id":43177,"properties":{"V":230}},{"type":"LineString","arcs":[5463],"id":43188,"properties":{"V":230}},{"type":"LineString","arcs":[5464],"id":43195,"properties":{"V":345}},{"type":"LineString","arcs":[5465],"id":43196,"properties":{"V":345}},{"type":"LineString","arcs":[5466],"id":43197,"properties":{"V":765}},{"type":"LineString","arcs":[5467],"id":43204,"properties":{"V":345}},{"type":"LineString","arcs":[5468],"id":43206,"properties":{"V":345}},{"type":"LineString","arcs":[5469],"id":43207,"properties":{"V":230}},{"type":"LineString","arcs":[5470],"id":43218,"properties":{"V":230}},{"type":"LineString","arcs":[5471],"id":43222,"properties":{"V":230}},{"type":"LineString","arcs":[5472],"id":43228,"properties":{"V":345}},{"type":"LineString","arcs":[5473],"id":43241,"properties":{"V":230}},{"type":"LineString","arcs":[5474],"id":43244,"properties":{"V":345}},{"type":"LineString","arcs":[5475],"id":43246,"properties":{"V":230}},{"type":"LineString","arcs":[5476],"id":43291,"properties":{"V":345}},{"type":"LineString","arcs":[5477],"id":43337,"properties":{"V":230}},{"type":"LineString","arcs":[5478],"id":43346,"properties":{"V":230}},{"type":"LineString","arcs":[5479],"id":43353,"properties":{"V":230}},{"type":"LineString","arcs":[5480],"id":43382,"properties":{"V":345}},{"type":"LineString","arcs":[5481],"id":43385,"properties":{"V":230}},{"type":"LineString","arcs":[5482],"id":43431,"properties":{"V":230}},{"type":"LineString","arcs":[5483],"id":43499,"properties":{"V":345}},{"type":"LineString","arcs":[5484],"id":43500,"properties":{"V":345}},{"type":"LineString","arcs":[5485],"id":43501,"properties":{"V":230}},{"type":"LineString","arcs":[5486],"id":43571,"properties":{"V":230}},{"type":"LineString","arcs":[5487],"id":43573,"properties":{"V":230}},{"type":"LineString","arcs":[5488],"id":43574,"properties":{"V":230}},{"type":"LineString","arcs":[5489],"id":43575,"properties":{"V":230}},{"type":"LineString","arcs":[5490],"id":43576,"properties":{"V":230}},{"type":"LineString","arcs":[5491],"id":43631,"properties":{"V":230}},{"type":"LineString","arcs":[5492],"id":43633,"properties":{"V":230}},{"type":"LineString","arcs":[5493],"id":43634,"properties":{"V":230}},{"type":"LineString","arcs":[5494],"id":43662,"properties":{"V":230}},{"type":"LineString","arcs":[5495],"id":43663,"properties":{"V":230}},{"type":"LineString","arcs":[5496],"id":43664,"properties":{"V":230}},{"type":"LineString","arcs":[5497],"id":43665,"properties":{"V":230}},{"type":"LineString","arcs":[5498],"id":43666,"properties":{"V":230}},{"type":"LineString","arcs":[5499],"id":43667,"properties":{"V":230}},{"type":"LineString","arcs":[5500],"id":43668,"properties":{"V":230}},{"type":"LineString","arcs":[5501],"id":43669,"properties":{"V":230}},{"type":"LineString","arcs":[5502],"id":43670,"properties":{"V":230}},{"type":"LineString","arcs":[5503],"id":43704,"properties":{"V":230}},{"type":"LineString","arcs":[5504],"id":43718,"properties":{"V":345}},{"type":"LineString","arcs":[5505],"id":43968,"properties":{"V":230}},{"type":"LineString","arcs":[5506],"id":43980,"properties":{"V":230}},{"type":"LineString","arcs":[5507],"id":43981,"properties":{"V":230}},{"type":"LineString","arcs":[5508],"id":43983,"properties":{"V":230}},{"type":"LineString","arcs":[5509],"id":43984,"properties":{"V":230}},{"type":"LineString","arcs":[5510],"id":43998,"properties":{"V":345}},{"type":"LineString","arcs":[5511],"id":44001,"properties":{"V":230}},{"type":"LineString","arcs":[5512],"id":44025,"properties":{"V":230}},{"type":"LineString","arcs":[5513],"id":44026,"properties":{"V":230}},{"type":"LineString","arcs":[5514],"id":44027,"properties":{"V":230}},{"type":"LineString","arcs":[5515],"id":44078,"properties":{"V":230}},{"type":"LineString","arcs":[5516],"id":44083,"properties":{"V":345}},{"type":"LineString","arcs":[5517,5518],"id":44093,"properties":{"V":345}},{"type":"LineString","arcs":[5519],"id":44095,"properties":{"V":230}},{"type":"LineString","arcs":[5520],"id":44103,"properties":{"V":230}},{"type":"LineString","arcs":[5521],"id":44109,"properties":{"V":345}},{"type":"LineString","arcs":[5522],"id":44111,"properties":{"V":345}},{"type":"LineString","arcs":[5523],"id":44112,"properties":{"V":230}},{"type":"LineString","arcs":[5524],"id":44115,"properties":{"V":230}},{"type":"LineString","arcs":[5525,5526],"id":44117,"properties":{"V":230}},{"type":"LineString","arcs":[5527],"id":44118,"properties":{"V":230}},{"type":"LineString","arcs":[5528],"id":44121,"properties":{"V":230}},{"type":"LineString","arcs":[5529],"id":44128,"properties":{"V":230}},{"type":"LineString","arcs":[5530],"id":44138,"properties":{"V":230}},{"type":"LineString","arcs":[5531],"id":44139,"properties":{"V":230}},{"type":"LineString","arcs":[5532],"id":44142,"properties":{"V":230}},{"type":"LineString","arcs":[5533],"id":44143,"properties":{"V":500}},{"type":"LineString","arcs":[5534],"id":44145,"properties":{"V":230}},{"type":"LineString","arcs":[5535],"id":44147,"properties":{"V":345}},{"type":"LineString","arcs":[5536],"id":44150,"properties":{"V":230}},{"type":"LineString","arcs":[5537],"id":44161,"properties":{"V":230}},{"type":"LineString","arcs":[5538],"id":44178,"properties":{"V":230}},{"type":"LineString","arcs":[5539],"id":44179,"properties":{"V":345}},{"type":"LineString","arcs":[5540],"id":44181,"properties":{"V":230}},{"type":"LineString","arcs":[5541],"id":44194,"properties":{"V":230}},{"type":"LineString","arcs":[5542],"id":44201,"properties":{"V":765}},{"type":"LineString","arcs":[5543],"id":44211,"properties":{"V":230}},{"type":"LineString","arcs":[5544],"id":44215,"properties":{"V":230}},{"type":"LineString","arcs":[5545],"id":44219,"properties":{"V":230}},{"type":"LineString","arcs":[5546],"id":44234,"properties":{"V":230}},{"type":"LineString","arcs":[5547],"id":44255,"properties":{"V":230}},{"type":"LineString","arcs":[5548,5549],"id":44257,"properties":{"V":230}},{"type":"LineString","arcs":[5550],"id":44261,"properties":{"V":230}},{"type":"LineString","arcs":[5551],"id":44274,"properties":{"V":345}},{"type":"LineString","arcs":[5552],"id":44278,"properties":{"V":230}},{"type":"LineString","arcs":[5553],"id":44280,"properties":{"V":230}},{"type":"LineString","arcs":[5554],"id":44287,"properties":{"V":345}},{"type":"LineString","arcs":[5555],"id":44296,"properties":{"V":230}},{"type":"LineString","arcs":[5556],"id":44299,"properties":{"V":230}},{"type":"LineString","arcs":[5557],"id":44304,"properties":{"V":230}},{"type":"LineString","arcs":[5558],"id":44324,"properties":{"V":230}},{"type":"LineString","arcs":[5559],"id":44325,"properties":{"V":230}},{"type":"LineString","arcs":[5560],"id":44326,"properties":{"V":500}},{"type":"LineString","arcs":[5561],"id":44329,"properties":{"V":345}},{"type":"LineString","arcs":[5562],"id":44334,"properties":{"V":230}},{"type":"LineString","arcs":[5563],"id":44336,"properties":{"V":500}},{"type":"LineString","arcs":[5564],"id":44365,"properties":{"V":230}},{"type":"LineString","arcs":[5565],"id":44381,"properties":{"V":230}},{"type":"LineString","arcs":[5566],"id":44396,"properties":{"V":230}},{"type":"LineString","arcs":[5567],"id":44397,"properties":{"V":230}},{"type":"LineString","arcs":[5568],"id":44403,"properties":{"V":230}},{"type":"LineString","arcs":[5569],"id":44413,"properties":{"V":230}},{"type":"LineString","arcs":[5570],"id":44421,"properties":{"V":345}},{"type":"LineString","arcs":[5571],"id":44426,"properties":{"V":230}},{"type":"LineString","arcs":[5572],"id":44436,"properties":{"V":230}},{"type":"LineString","arcs":[5573],"id":44438,"properties":{"V":230}},{"type":"LineString","arcs":[5574],"id":44443,"properties":{"V":230}},{"type":"LineString","arcs":[5575],"id":44448,"properties":{"V":230}},{"type":"LineString","arcs":[5576],"id":44451,"properties":{"V":230}},{"type":"LineString","arcs":[5577],"id":44454,"properties":{"V":230}},{"type":"LineString","arcs":[5578],"id":44474,"properties":{"V":230}},{"type":"LineString","arcs":[5579],"id":44480,"properties":{"V":345}},{"type":"LineString","arcs":[5580],"id":44484,"properties":{"V":230}},{"type":"LineString","arcs":[5581],"id":44487,"properties":{"V":230}},{"type":"LineString","arcs":[5582],"id":44488,"properties":{"V":230}},{"type":"LineString","arcs":[5583],"id":44494,"properties":{"V":230}},{"type":"LineString","arcs":[5584],"id":44504,"properties":{"V":230}},{"type":"LineString","arcs":[5585],"id":44510,"properties":{"V":230}},{"type":"LineString","arcs":[5586],"id":44521,"properties":{"V":230}},{"type":"LineString","arcs":[5587],"id":44537,"properties":{"V":230}},{"type":"LineString","arcs":[5588],"id":44542,"properties":{"V":230}},{"type":"LineString","arcs":[5589],"id":44545,"properties":{"V":345}},{"type":"LineString","arcs":[5590],"id":44546,"properties":{"V":345}},{"type":"LineString","arcs":[5591],"id":44554,"properties":{"V":345}},{"type":"LineString","arcs":[5592],"id":44577,"properties":{"V":230}},{"type":"LineString","arcs":[5593],"id":44582,"properties":{"V":230}},{"type":"LineString","arcs":[5594],"id":44586,"properties":{"V":230}},{"type":"LineString","arcs":[5595],"id":44589,"properties":{"V":500}},{"type":"LineString","arcs":[5596],"id":44595,"properties":{"V":230}},{"type":"LineString","arcs":[5597],"id":44598,"properties":{"V":230}},{"type":"LineString","arcs":[5598],"id":44602,"properties":{"V":230}},{"type":"LineString","arcs":[5599],"id":44603,"properties":{"V":230}},{"type":"LineString","arcs":[5600],"id":44619,"properties":{"V":345}},{"type":"LineString","arcs":[5601],"id":44625,"properties":{"V":230}},{"type":"LineString","arcs":[5602],"id":44630,"properties":{"V":230}},{"type":"LineString","arcs":[5603],"id":44631,"properties":{"V":230}},{"type":"LineString","arcs":[5604],"id":44632,"properties":{"V":230}},{"type":"LineString","arcs":[5605],"id":44638,"properties":{"V":230}},{"type":"LineString","arcs":[5606],"id":44641,"properties":{"V":230}},{"type":"LineString","arcs":[5607],"id":44648,"properties":{"V":230}},{"type":"LineString","arcs":[5608],"id":44655,"properties":{"V":500}},{"type":"LineString","arcs":[5609],"id":44662,"properties":{"V":230}},{"type":"LineString","arcs":[5610],"id":44671,"properties":{"V":230}},{"type":"LineString","arcs":[5611],"id":44677,"properties":{"V":230}},{"type":"LineString","arcs":[5612],"id":44683,"properties":{"V":230}},{"type":"LineString","arcs":[5613],"id":44689,"properties":{"V":230}},{"type":"LineString","arcs":[5614],"id":44690,"properties":{"V":345}},{"type":"LineString","arcs":[5615],"id":44693,"properties":{"V":230}},{"type":"LineString","arcs":[5616],"id":44708,"properties":{"V":345}},{"type":"LineString","arcs":[5617],"id":44710,"properties":{"V":230}},{"type":"LineString","arcs":[5618],"id":44714,"properties":{"V":230}},{"type":"LineString","arcs":[5619],"id":44717,"properties":{"V":230}},{"type":"LineString","arcs":[5620],"id":44723,"properties":{"V":230}},{"type":"LineString","arcs":[5621],"id":44725,"properties":{"V":500}},{"type":"LineString","arcs":[5622],"id":44727,"properties":{"V":230}},{"type":"LineString","arcs":[5623],"id":44732,"properties":{"V":230}},{"type":"LineString","arcs":[5624],"id":44737,"properties":{"V":500}},{"type":"LineString","arcs":[5625],"id":44744,"properties":{"V":230}},{"type":"LineString","arcs":[5626],"id":44767,"properties":{"V":500}},{"type":"LineString","arcs":[5627,5628],"id":44781,"properties":{"V":230}},{"type":"LineString","arcs":[5629],"id":44782,"properties":{"V":500}},{"type":"LineString","arcs":[5630],"id":44792,"properties":{"V":230}},{"type":"LineString","arcs":[5631],"id":44795,"properties":{"V":230}},{"type":"LineString","arcs":[5632],"id":44798,"properties":{"V":345}},{"type":"LineString","arcs":[5633],"id":44803,"properties":{"V":345}},{"type":"LineString","arcs":[5634],"id":44804,"properties":{"V":345}},{"type":"LineString","arcs":[5635],"id":44806,"properties":{"V":230}},{"type":"LineString","arcs":[5636],"id":44810,"properties":{"V":345}},{"type":"LineString","arcs":[5637],"id":44815,"properties":{"V":230}},{"type":"LineString","arcs":[5638],"id":44821,"properties":{"V":230}},{"type":"LineString","arcs":[5639],"id":44831,"properties":{"V":230}},{"type":"LineString","arcs":[5640],"id":44832,"properties":{"V":230}},{"type":"LineString","arcs":[5641],"id":44833,"properties":{"V":500}},{"type":"LineString","arcs":[5642],"id":44836,"properties":{"V":230}},{"type":"LineString","arcs":[5643],"id":44841,"properties":{"V":500}},{"type":"LineString","arcs":[5644],"id":44850,"properties":{"V":230}},{"type":"LineString","arcs":[5645],"id":44853,"properties":{"V":230}},{"type":"LineString","arcs":[5646],"id":44863,"properties":{"V":230}},{"type":"LineString","arcs":[5647],"id":44867,"properties":{"V":230}},{"type":"LineString","arcs":[5648],"id":44874,"properties":{"V":230}},{"type":"LineString","arcs":[5649],"id":44876,"properties":{"V":230}},{"type":"LineString","arcs":[5650],"id":44878,"properties":{"V":230}},{"type":"LineString","arcs":[5651],"id":44897,"properties":{"V":345}},{"type":"LineString","arcs":[5652],"id":44923,"properties":{"V":345}},{"type":"LineString","arcs":[5653,5654],"id":44924,"properties":{"V":345}},{"type":"LineString","arcs":[5655],"id":44928,"properties":{"V":230}},{"type":"LineString","arcs":[5656],"id":44933,"properties":{"V":230}},{"type":"LineString","arcs":[5657],"id":44946,"properties":{"V":230}},{"type":"LineString","arcs":[5658],"id":44948,"properties":{"V":230}},{"type":"LineString","arcs":[5659],"id":44956,"properties":{"V":230}},{"type":"LineString","arcs":[5660,5661],"id":44967,"properties":{"V":230}},{"type":"LineString","arcs":[5662],"id":44975,"properties":{"V":230}},{"type":"LineString","arcs":[5663],"id":44979,"properties":{"V":230}},{"type":"LineString","arcs":[5664],"id":44982,"properties":{"V":230}},{"type":"LineString","arcs":[5665],"id":45009,"properties":{"V":230}},{"type":"LineString","arcs":[5666],"id":45016,"properties":{"V":230}},{"type":"LineString","arcs":[5667],"id":45017,"properties":{"V":345}},{"type":"LineString","arcs":[5668],"id":45021,"properties":{"V":230}},{"type":"LineString","arcs":[5669],"id":45039,"properties":{"V":230}},{"type":"LineString","arcs":[5670],"id":45043,"properties":{"V":230}},{"type":"LineString","arcs":[5671],"id":45045,"properties":{"V":345}},{"type":"LineString","arcs":[5672],"id":45046,"properties":{"V":230}},{"type":"LineString","arcs":[5673],"id":45066,"properties":{"V":230}},{"type":"LineString","arcs":[5674],"id":45077,"properties":{"V":345}},{"type":"LineString","arcs":[5675],"id":45088,"properties":{"V":230}},{"type":"LineString","arcs":[5676,5677],"id":45096,"properties":{"V":345}},{"type":"LineString","arcs":[5678],"id":45111,"properties":{"V":230}},{"type":"LineString","arcs":[5679],"id":45112,"properties":{"V":230}},{"type":"LineString","arcs":[5680],"id":45116,"properties":{"V":230}},{"type":"LineString","arcs":[5681],"id":45119,"properties":{"V":500}},{"type":"LineString","arcs":[5682],"id":45123,"properties":{"V":345}},{"type":"LineString","arcs":[5683],"id":45133,"properties":{"V":230}},{"type":"LineString","arcs":[5684],"id":45146,"properties":{"V":230}},{"type":"LineString","arcs":[5685],"id":45168,"properties":{"V":230}},{"type":"LineString","arcs":[5686],"id":45175,"properties":{"V":230}},{"type":"LineString","arcs":[5687],"id":45192,"properties":{"V":230}},{"type":"LineString","arcs":[5688],"id":45270,"properties":{"V":230}},{"type":"LineString","arcs":[5689],"id":45274,"properties":{"V":345}},{"type":"LineString","arcs":[5690],"id":45299,"properties":{"V":230}},{"type":"LineString","arcs":[5691],"id":45303,"properties":{"V":230}},{"type":"LineString","arcs":[5692],"id":45304,"properties":{"V":230}},{"type":"LineString","arcs":[5693],"id":45308,"properties":{"V":230}},{"type":"LineString","arcs":[5694,5695],"id":45318,"properties":{"V":230}},{"type":"LineString","arcs":[5696],"id":45322,"properties":{"V":230}},{"type":"LineString","arcs":[5697],"id":45324,"properties":{"V":230}},{"type":"LineString","arcs":[5698],"id":45343,"properties":{"V":230}},{"type":"LineString","arcs":[5699],"id":45344,"properties":{"V":230}},{"type":"LineString","arcs":[5700],"id":45367,"properties":{"V":230}},{"type":"LineString","arcs":[5701],"id":45368,"properties":{"V":230}},{"type":"LineString","arcs":[5702],"id":45382,"properties":{"V":230}},{"type":"LineString","arcs":[5703,5704,5705],"id":45384,"properties":{"V":230}},{"type":"LineString","arcs":[5706],"id":45385,"properties":{"V":230}},{"type":"LineString","arcs":[5707],"id":45392,"properties":{"V":230}},{"type":"LineString","arcs":[5708],"id":45393,"properties":{"V":230}},{"type":"LineString","arcs":[5709],"id":45400,"properties":{"V":230}},{"type":"LineString","arcs":[5710],"id":45404,"properties":{"V":230}},{"type":"LineString","arcs":[5711],"id":45410,"properties":{"V":345}},{"type":"LineString","arcs":[5712],"id":45419,"properties":{"V":230}},{"type":"LineString","arcs":[5713],"id":45422,"properties":{"V":345}},{"type":"LineString","arcs":[5714],"id":45425,"properties":{"V":345}},{"type":"LineString","arcs":[5715],"id":45438,"properties":{"V":500}},{"type":"LineString","arcs":[5716],"id":45439,"properties":{"V":345}},{"type":"LineString","arcs":[5717],"id":45441,"properties":{"V":230}},{"type":"LineString","arcs":[5718],"id":45450,"properties":{"V":230}},{"type":"LineString","arcs":[5719],"id":45458,"properties":{"V":345}},{"type":"LineString","arcs":[5720],"id":45459,"properties":{"V":345}},{"type":"LineString","arcs":[5721],"id":45466,"properties":{"V":230}},{"type":"LineString","arcs":[5722],"id":45470,"properties":{"V":230}},{"type":"LineString","arcs":[5723],"id":45475,"properties":{"V":345}},{"type":"LineString","arcs":[5724],"id":45487,"properties":{"V":345}},{"type":"LineString","arcs":[5725],"id":45495,"properties":{"V":500}},{"type":"LineString","arcs":[5726],"id":45509,"properties":{"V":230}},{"type":"LineString","arcs":[5727],"id":45519,"properties":{"V":230}},{"type":"LineString","arcs":[5728,5729,5730],"id":45524,"properties":{"V":345}},{"type":"LineString","arcs":[5731],"id":45526,"properties":{"V":230}},{"type":"LineString","arcs":[5732],"id":45527,"properties":{"V":230}},{"type":"LineString","arcs":[5733],"id":45530,"properties":{"V":230}},{"type":"LineString","arcs":[5734],"id":45540,"properties":{"V":500}},{"type":"LineString","arcs":[5735],"id":45546,"properties":{"V":230}},{"type":"LineString","arcs":[5736],"id":45547,"properties":{"V":345}},{"type":"LineString","arcs":[5737],"id":45550,"properties":{"V":230}},{"type":"LineString","arcs":[5738],"id":45553,"properties":{"V":230}},{"type":"LineString","arcs":[5739],"id":45555,"properties":{"V":230}},{"type":"LineString","arcs":[5740],"id":45559,"properties":{"V":230}},{"type":"LineString","arcs":[5741],"id":45567,"properties":{"V":345}},{"type":"LineString","arcs":[5742],"id":45568,"properties":{"V":230}},{"type":"LineString","arcs":[5743],"id":45570,"properties":{"V":230}},{"type":"LineString","arcs":[5744],"id":45571,"properties":{"V":230}},{"type":"LineString","arcs":[5745],"id":45573,"properties":{"V":230}},{"type":"LineString","arcs":[5746],"id":45574,"properties":{"V":230}},{"type":"LineString","arcs":[5747],"id":45577,"properties":{"V":230}},{"type":"LineString","arcs":[5748],"id":45582,"properties":{"V":230}},{"type":"LineString","arcs":[5749],"id":45602,"properties":{"V":230}},{"type":"LineString","arcs":[5750],"id":45622,"properties":{"V":230}},{"type":"LineString","arcs":[5751],"id":45647,"properties":{"V":230}},{"type":"LineString","arcs":[5752],"id":45652,"properties":{"V":230}},{"type":"LineString","arcs":[5753],"id":45653,"properties":{"V":230}},{"type":"LineString","arcs":[5754],"id":45661,"properties":{"V":230}},{"type":"LineString","arcs":[5755],"id":45678,"properties":{"V":230}},{"type":"LineString","arcs":[5756],"id":45684,"properties":{"V":345}},{"type":"LineString","arcs":[5757],"id":45688,"properties":{"V":230}},{"type":"LineString","arcs":[5758],"id":45716,"properties":{"V":230}},{"type":"LineString","arcs":[5759],"id":45728,"properties":{"V":230}},{"type":"LineString","arcs":[5760],"id":45762,"properties":{"V":230}},{"type":"LineString","arcs":[5761],"id":45784,"properties":{"V":230}},{"type":"LineString","arcs":[5762],"id":45785,"properties":{"V":230}},{"type":"LineString","arcs":[5763],"id":45789,"properties":{"V":230}},{"type":"LineString","arcs":[5764],"id":45794,"properties":{"V":230}},{"type":"LineString","arcs":[5765],"id":45795,"properties":{"V":500}},{"type":"LineString","arcs":[5766],"id":45796,"properties":{"V":345}},{"type":"LineString","arcs":[5767],"id":45809,"properties":{"V":345}},{"type":"LineString","arcs":[5768],"id":45819,"properties":{"V":345}},{"type":"LineString","arcs":[5769],"id":45821,"properties":{"V":230}},{"type":"LineString","arcs":[5770],"id":45828,"properties":{"V":230}},{"type":"LineString","arcs":[5771],"id":45831,"properties":{"V":230}},{"type":"LineString","arcs":[5772],"id":45832,"properties":{"V":230}},{"type":"LineString","arcs":[5773],"id":45833,"properties":{"V":345}},{"type":"LineString","arcs":[5774],"id":45876,"properties":{"V":230}},{"type":"LineString","arcs":[5775],"id":45900,"properties":{"V":230}},{"type":"LineString","arcs":[5776],"id":45915,"properties":{"V":230}},{"type":"LineString","arcs":[5777,5778],"id":45925,"properties":{"V":230}},{"type":"LineString","arcs":[5779],"id":45941,"properties":{"V":345}},{"type":"LineString","arcs":[5780],"id":45942,"properties":{"V":230}},{"type":"LineString","arcs":[5781],"id":45948,"properties":{"V":230}},{"type":"LineString","arcs":[5782],"id":45969,"properties":{"V":230}},{"type":"LineString","arcs":[5783,5784],"id":45974,"properties":{"V":230}},{"type":"LineString","arcs":[5785],"id":45978,"properties":{"V":230}},{"type":"LineString","arcs":[5786],"id":45979,"properties":{"V":230}},{"type":"LineString","arcs":[5787],"id":45982,"properties":{"V":230}},{"type":"LineString","arcs":[5788],"id":45992,"properties":{"V":345}},{"type":"LineString","arcs":[5789],"id":46020,"properties":{"V":230}},{"type":"LineString","arcs":[5790],"id":46027,"properties":{"V":345}},{"type":"LineString","arcs":[5791],"id":46031,"properties":{"V":230}},{"type":"LineString","arcs":[5792],"id":46045,"properties":{"V":230}},{"type":"LineString","arcs":[5793],"id":46063,"properties":{"V":230}},{"type":"LineString","arcs":[5794],"id":46067,"properties":{"V":230}},{"type":"LineString","arcs":[5795],"id":46077,"properties":{"V":500}},{"type":"LineString","arcs":[5796],"id":46079,"properties":{"V":500}},{"type":"LineString","arcs":[5797],"id":46081,"properties":{"V":230}},{"type":"LineString","arcs":[5798],"id":46082,"properties":{"V":230}},{"type":"LineString","arcs":[5799],"id":46095,"properties":{"V":230}},{"type":"LineString","arcs":[5800],"id":46103,"properties":{"V":345}},{"type":"LineString","arcs":[5801],"id":46106,"properties":{"V":230}},{"type":"LineString","arcs":[5802],"id":46108,"properties":{"V":345}},{"type":"LineString","arcs":[5803,5804],"id":46111,"properties":{"V":230}},{"type":"LineString","arcs":[5805],"id":46120,"properties":{"V":500}},{"type":"LineString","arcs":[5806],"id":46128,"properties":{"V":345}},{"type":"LineString","arcs":[5807],"id":46137,"properties":{"V":230}},{"type":"LineString","arcs":[5808],"id":46141,"properties":{"V":230}},{"type":"LineString","arcs":[5809],"id":46154,"properties":{"V":230}},{"type":"LineString","arcs":[5810,5811],"id":46159,"properties":{"V":345}},{"type":"LineString","arcs":[5812],"id":46167,"properties":{"V":345}},{"type":"LineString","arcs":[5813],"id":46168,"properties":{"V":230}},{"type":"LineString","arcs":[5814],"id":46170,"properties":{"V":500}},{"type":"LineString","arcs":[5815],"id":46173,"properties":{"V":230}},{"type":"LineString","arcs":[5816],"id":46195,"properties":{"V":230}},{"type":"LineString","arcs":[5817],"id":46197,"properties":{"V":230}},{"type":"LineString","arcs":[5818],"id":46234,"properties":{"V":230}},{"type":"LineString","arcs":[5819],"id":46240,"properties":{"V":230}},{"type":"LineString","arcs":[5820],"id":46243,"properties":{"V":230}},{"type":"LineString","arcs":[5821],"id":46245,"properties":{"V":230}},{"type":"LineString","arcs":[5822],"id":46249,"properties":{"V":345}},{"type":"LineString","arcs":[5823],"id":46252,"properties":{"V":230}},{"type":"LineString","arcs":[5824],"id":46267,"properties":{"V":345}},{"type":"LineString","arcs":[5825],"id":46270,"properties":{"V":230}},{"type":"LineString","arcs":[5826],"id":46277,"properties":{"V":230}},{"type":"LineString","arcs":[5827],"id":46279,"properties":{"V":230}},{"type":"LineString","arcs":[5828],"id":46282,"properties":{"V":345}},{"type":"LineString","arcs":[5829],"id":46284,"properties":{"V":345}},{"type":"LineString","arcs":[5830],"id":46308,"properties":{"V":230}},{"type":"LineString","arcs":[5831],"id":46338,"properties":{"V":230}},{"type":"LineString","arcs":[5832],"id":46345,"properties":{"V":230}},{"type":"LineString","arcs":[5833],"id":46350,"properties":{"V":230}},{"type":"LineString","arcs":[5834],"id":46357,"properties":{"V":230}},{"type":"LineString","arcs":[5835,5836,5837,5838,5839,5840,5841],"id":46360,"properties":{"V":345}},{"type":"LineString","arcs":[5842,5843,5844],"id":46363,"properties":{"V":230}},{"type":"LineString","arcs":[5845,5846,5847,5848,5849,5850],"id":46373,"properties":{"V":500}},{"type":"LineString","arcs":[5851],"id":46379,"properties":{"V":230}},{"type":"LineString","arcs":[5852],"id":46385,"properties":{"V":345}},{"type":"LineString","arcs":[5853],"id":46402,"properties":{"V":230}},{"type":"LineString","arcs":[5854],"id":46405,"properties":{"V":230}},{"type":"LineString","arcs":[5855],"id":46429,"properties":{"V":230}},{"type":"LineString","arcs":[5856],"id":46431,"properties":{"V":345}},{"type":"LineString","arcs":[5857],"id":46444,"properties":{"V":230}},{"type":"LineString","arcs":[5858],"id":46446,"properties":{"V":230}},{"type":"LineString","arcs":[5859],"id":46452,"properties":{"V":345}},{"type":"LineString","arcs":[5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876],"id":46456,"properties":{"V":765}},{"type":"LineString","arcs":[5877],"id":46479,"properties":{"V":230}},{"type":"LineString","arcs":[5878],"id":46482,"properties":{"V":345}},{"type":"LineString","arcs":[5879],"id":46485,"properties":{"V":345}},{"type":"LineString","arcs":[5880],"id":46487,"properties":{"V":230}},{"type":"LineString","arcs":[5881],"id":46505,"properties":{"V":230}},{"type":"LineString","arcs":[5882],"id":46531,"properties":{"V":230}},{"type":"LineString","arcs":[5883],"id":46542,"properties":{"V":345}},{"type":"LineString","arcs":[5884],"id":46544,"properties":{"V":345}},{"type":"LineString","arcs":[5885],"id":46545,"properties":{"V":230}},{"type":"LineString","arcs":[5886],"id":46552,"properties":{"V":230}},{"type":"LineString","arcs":[5887],"id":46566,"properties":{"V":345}},{"type":"LineString","arcs":[5888],"id":46569,"properties":{"V":230}},{"type":"LineString","arcs":[5889],"id":46576,"properties":{"V":345}},{"type":"LineString","arcs":[5890],"id":46580,"properties":{"V":500}},{"type":"LineString","arcs":[5891],"id":46581,"properties":{"V":345}},{"type":"LineString","arcs":[5892],"id":46586,"properties":{"V":230}},{"type":"LineString","arcs":[5893],"id":46589,"properties":{"V":230}},{"type":"LineString","arcs":[5894],"id":46595,"properties":{"V":230}},{"type":"LineString","arcs":[5895],"id":46596,"properties":{"V":230}},{"type":"LineString","arcs":[5896],"id":46598,"properties":{"V":345}},{"type":"LineString","arcs":[5897],"id":46611,"properties":{"V":230}},{"type":"LineString","arcs":[5898],"id":46617,"properties":{"V":230}},{"type":"LineString","arcs":[5899],"id":46624,"properties":{"V":230}},{"type":"LineString","arcs":[5900],"id":46632,"properties":{"V":230}},{"type":"LineString","arcs":[5901],"id":46637,"properties":{"V":230}},{"type":"LineString","arcs":[5902],"id":46641,"properties":{"V":230}},{"type":"LineString","arcs":[5903],"id":46656,"properties":{"V":230}},{"type":"LineString","arcs":[5904],"id":46657,"properties":{"V":345}},{"type":"LineString","arcs":[5905],"id":46695,"properties":{"V":230}},{"type":"LineString","arcs":[5906],"id":46700,"properties":{"V":230}},{"type":"LineString","arcs":[5907],"id":46707,"properties":{"V":230}},{"type":"LineString","arcs":[5908],"id":46720,"properties":{"V":345}},{"type":"LineString","arcs":[5909],"id":46735,"properties":{"V":230}},{"type":"LineString","arcs":[5910],"id":46736,"properties":{"V":345}},{"type":"LineString","arcs":[5911],"id":46761,"properties":{"V":500}},{"type":"LineString","arcs":[5912],"id":46769,"properties":{"V":230}},{"type":"LineString","arcs":[5913],"id":46781,"properties":{"V":230}},{"type":"LineString","arcs":[5914],"id":46783,"properties":{"V":230}},{"type":"LineString","arcs":[5915],"id":46806,"properties":{"V":230}},{"type":"LineString","arcs":[5916],"id":46810,"properties":{"V":500}},{"type":"LineString","arcs":[5917],"id":46817,"properties":{"V":230}},{"type":"LineString","arcs":[5918],"id":46829,"properties":{"V":345}},{"type":"LineString","arcs":[5919],"id":46836,"properties":{"V":345}},{"type":"LineString","arcs":[5920],"id":46839,"properties":{"V":230}},{"type":"LineString","arcs":[5921,5922],"id":46851,"properties":{"V":345}},{"type":"LineString","arcs":[5923,5924,5925],"id":46856,"properties":{"V":230}},{"type":"LineString","arcs":[5926],"id":46874,"properties":{"V":230}},{"type":"LineString","arcs":[5927],"id":46878,"properties":{"V":230}},{"type":"LineString","arcs":[5928],"id":46881,"properties":{"V":230}},{"type":"LineString","arcs":[5929],"id":46887,"properties":{"V":230}},{"type":"LineString","arcs":[5930],"id":46904,"properties":{"V":230}},{"type":"LineString","arcs":[5931],"id":46946,"properties":{"V":500}},{"type":"LineString","arcs":[5932],"id":46969,"properties":{"V":230}},{"type":"LineString","arcs":[5933],"id":46974,"properties":{"V":230}},{"type":"LineString","arcs":[5934],"id":46984,"properties":{"V":345}},{"type":"LineString","arcs":[5935],"id":46985,"properties":{"V":500}},{"type":"LineString","arcs":[5936],"id":46991,"properties":{"V":230}},{"type":"LineString","arcs":[5937],"id":46996,"properties":{"V":230}},{"type":"LineString","arcs":[5938],"id":47015,"properties":{"V":345}},{"type":"LineString","arcs":[5939],"id":47022,"properties":{"V":230}},{"type":"LineString","arcs":[5940,5941],"id":47025,"properties":{"V":230}},{"type":"LineString","arcs":[5942],"id":47042,"properties":{"V":230}},{"type":"LineString","arcs":[5943],"id":47081,"properties":{"V":230}},{"type":"LineString","arcs":[5944],"id":47098,"properties":{"V":230}},{"type":"LineString","arcs":[5945],"id":47101,"properties":{"V":230}},{"type":"LineString","arcs":[5946],"id":47117,"properties":{"V":230}},{"type":"LineString","arcs":[5947],"id":47118,"properties":{"V":230}},{"type":"LineString","arcs":[5948],"id":47120,"properties":{"V":230}},{"type":"LineString","arcs":[5949],"id":47127,"properties":{"V":500}},{"type":"LineString","arcs":[5950],"id":47133,"properties":{"V":230}},{"type":"LineString","arcs":[5951],"id":47155,"properties":{"V":230}},{"type":"LineString","arcs":[5952],"id":47161,"properties":{"V":230}},{"type":"LineString","arcs":[5953],"id":47166,"properties":{"V":230}},{"type":"LineString","arcs":[5954],"id":47179,"properties":{"V":230}},{"type":"LineString","arcs":[5955],"id":47182,"properties":{"V":345}},{"type":"LineString","arcs":[5956,5957],"id":47183,"properties":{"V":230}},{"type":"LineString","arcs":[5958],"id":47185,"properties":{"V":345}},{"type":"LineString","arcs":[5959],"id":47186,"properties":{"V":230}},{"type":"LineString","arcs":[5960,5961,5962],"id":47197,"properties":{"V":230}},{"type":"LineString","arcs":[5963],"id":47212,"properties":{"V":230}},{"type":"LineString","arcs":[5964],"id":47221,"properties":{"V":230}},{"type":"LineString","arcs":[5965],"id":47226,"properties":{"V":230}},{"type":"LineString","arcs":[5966],"id":47232,"properties":{"V":230}},{"type":"LineString","arcs":[5967],"id":47233,"properties":{"V":230}},{"type":"LineString","arcs":[5968],"id":47251,"properties":{"V":230}},{"type":"LineString","arcs":[5969],"id":47252,"properties":{"V":230}},{"type":"LineString","arcs":[5970,5971],"id":47269,"properties":{"V":230}},{"type":"LineString","arcs":[5972],"id":47273,"properties":{"V":345}},{"type":"LineString","arcs":[5973],"id":47282,"properties":{"V":230}},{"type":"LineString","arcs":[5974],"id":47284,"properties":{"V":230}},{"type":"LineString","arcs":[5975],"id":47299,"properties":{"V":230}},{"type":"LineString","arcs":[5976],"id":47300,"properties":{"V":230}},{"type":"LineString","arcs":[5977],"id":47301,"properties":{"V":230}},{"type":"LineString","arcs":[5978],"id":47304,"properties":{"V":230}},{"type":"LineString","arcs":[5979],"id":47317,"properties":{"V":230}},{"type":"LineString","arcs":[5980],"id":47318,"properties":{"V":230}},{"type":"LineString","arcs":[5981],"id":47327,"properties":{"V":230}},{"type":"LineString","arcs":[5982],"id":47336,"properties":{"V":230}},{"type":"LineString","arcs":[5983],"id":47342,"properties":{"V":345}},{"type":"LineString","arcs":[5984],"id":47346,"properties":{"V":230}},{"type":"LineString","arcs":[5985],"id":47348,"properties":{"V":230}},{"type":"LineString","arcs":[5986],"id":47352,"properties":{"V":230}},{"type":"LineString","arcs":[5987],"id":47358,"properties":{"V":230}},{"type":"LineString","arcs":[5988],"id":47363,"properties":{"V":345}},{"type":"LineString","arcs":[5989],"id":47373,"properties":{"V":230}},{"type":"LineString","arcs":[5990],"id":47374,"properties":{"V":345}},{"type":"LineString","arcs":[5991],"id":47376,"properties":{"V":230}},{"type":"LineString","arcs":[5992],"id":47381,"properties":{"V":345}},{"type":"LineString","arcs":[5993],"id":47383,"properties":{"V":230}},{"type":"LineString","arcs":[5994],"id":47388,"properties":{"V":230}},{"type":"LineString","arcs":[5995],"id":47391,"properties":{"V":230}},{"type":"LineString","arcs":[5996],"id":47416,"properties":{"V":230}},{"type":"LineString","arcs":[5997],"id":47418,"properties":{"V":230}},{"type":"LineString","arcs":[5998],"id":47424,"properties":{"V":230}},{"type":"LineString","arcs":[5999],"id":47426,"properties":{"V":230}},{"type":"LineString","arcs":[6000],"id":47436,"properties":{"V":230}},{"type":"LineString","arcs":[6001],"id":47443,"properties":{"V":230}},{"type":"LineString","arcs":[6002],"id":47466,"properties":{"V":230}},{"type":"LineString","arcs":[6003],"id":47474,"properties":{"V":230}},{"type":"LineString","arcs":[6004],"id":47482,"properties":{"V":345}},{"type":"LineString","arcs":[6005],"id":47483,"properties":{"V":230}},{"type":"LineString","arcs":[6006],"id":47484,"properties":{"V":345}},{"type":"LineString","arcs":[6007],"id":47494,"properties":{"V":230}},{"type":"LineString","arcs":[6008],"id":47497,"properties":{"V":230}},{"type":"LineString","arcs":[6009],"id":47505,"properties":{"V":230}},{"type":"LineString","arcs":[6010],"id":47511,"properties":{"V":230}},{"type":"LineString","arcs":[6011],"id":47531,"properties":{"V":230}},{"type":"LineString","arcs":[6012],"id":47539,"properties":{"V":230}},{"type":"LineString","arcs":[6013],"id":47556,"properties":{"V":230}},{"type":"LineString","arcs":[6014],"id":47573,"properties":{"V":230}},{"type":"LineString","arcs":[6015],"id":47600,"properties":{"V":230}},{"type":"LineString","arcs":[6016],"id":47617,"properties":{"V":230}},{"type":"LineString","arcs":[6017,6018],"id":47619,"properties":{"V":230}},{"type":"LineString","arcs":[6019],"id":47640,"properties":{"V":345}},{"type":"LineString","arcs":[6020],"id":47643,"properties":{"V":230}},{"type":"LineString","arcs":[6021],"id":47646,"properties":{"V":230}},{"type":"LineString","arcs":[6022],"id":47660,"properties":{"V":230}},{"type":"LineString","arcs":[6023],"id":47667,"properties":{"V":230}},{"type":"LineString","arcs":[6024],"id":47676,"properties":{"V":230}},{"type":"LineString","arcs":[6025],"id":47684,"properties":{"V":345}},{"type":"LineString","arcs":[6026],"id":47710,"properties":{"V":230}},{"type":"LineString","arcs":[6027],"id":47712,"properties":{"V":345}},{"type":"LineString","arcs":[6028],"id":47725,"properties":{"V":230}},{"type":"LineString","arcs":[6029],"id":47732,"properties":{"V":230}},{"type":"LineString","arcs":[6030],"id":47735,"properties":{"V":230}},{"type":"LineString","arcs":[6031],"id":47740,"properties":{"V":345}},{"type":"LineString","arcs":[6032],"id":47744,"properties":{"V":230}},{"type":"LineString","arcs":[6033],"id":47750,"properties":{"V":345}},{"type":"LineString","arcs":[6034],"id":47751,"properties":{"V":230}},{"type":"LineString","arcs":[6035],"id":47754,"properties":{"V":230}},{"type":"LineString","arcs":[6036],"id":47763,"properties":{"V":230}},{"type":"LineString","arcs":[6037],"id":47764,"properties":{"V":345}},{"type":"LineString","arcs":[6038],"id":47780,"properties":{"V":230}},{"type":"LineString","arcs":[6039],"id":47781,"properties":{"V":345}},{"type":"LineString","arcs":[6040],"id":47784,"properties":{"V":230}},{"type":"LineString","arcs":[6041],"id":47786,"properties":{"V":230}},{"type":"LineString","arcs":[6042],"id":47791,"properties":{"V":230}},{"type":"LineString","arcs":[6043],"id":47793,"properties":{"V":230}},{"type":"LineString","arcs":[6044],"id":47794,"properties":{"V":230}},{"type":"LineString","arcs":[6045],"id":47795,"properties":{"V":230}},{"type":"LineString","arcs":[6046],"id":47801,"properties":{"V":345}},{"type":"LineString","arcs":[6047],"id":47804,"properties":{"V":230}},{"type":"LineString","arcs":[6048],"id":47809,"properties":{"V":230}},{"type":"LineString","arcs":[6049],"id":47811,"properties":{"V":230}},{"type":"LineString","arcs":[6050],"id":47812,"properties":{"V":230}},{"type":"LineString","arcs":[6051],"id":47839,"properties":{"V":230}},{"type":"LineString","arcs":[6052],"id":47841,"properties":{"V":345}},{"type":"LineString","arcs":[6053],"id":47849,"properties":{"V":230}},{"type":"LineString","arcs":[6054],"id":47856,"properties":{"V":230}},{"type":"LineString","arcs":[6055],"id":47860,"properties":{"V":230}},{"type":"LineString","arcs":[6056],"id":47863,"properties":{"V":230}},{"type":"LineString","arcs":[6057],"id":47871,"properties":{"V":230}},{"type":"LineString","arcs":[6058],"id":47881,"properties":{"V":230}},{"type":"LineString","arcs":[6059],"id":47882,"properties":{"V":345}},{"type":"LineString","arcs":[6060],"id":47883,"properties":{"V":230}},{"type":"LineString","arcs":[6061],"id":47889,"properties":{"V":345}},{"type":"LineString","arcs":[6062],"id":47899,"properties":{"V":345}},{"type":"LineString","arcs":[6063],"id":47906,"properties":{"V":345}},{"type":"LineString","arcs":[6064],"id":47909,"properties":{"V":230}},{"type":"LineString","arcs":[6065],"id":47910,"properties":{"V":500}},{"type":"LineString","arcs":[6066],"id":47913,"properties":{"V":345}},{"type":"LineString","arcs":[6067],"id":47917,"properties":{"V":230}},{"type":"LineString","arcs":[6068],"id":47919,"properties":{"V":345}},{"type":"LineString","arcs":[6069],"id":47935,"properties":{"V":345}},{"type":"LineString","arcs":[6070],"id":47939,"properties":{"V":230}},{"type":"LineString","arcs":[6071],"id":47942,"properties":{"V":230}},{"type":"LineString","arcs":[6072],"id":47944,"properties":{"V":345}},{"type":"LineString","arcs":[6073],"id":47950,"properties":{"V":230}},{"type":"LineString","arcs":[6074],"id":47961,"properties":{"V":230}},{"type":"LineString","arcs":[6075],"id":47963,"properties":{"V":230}},{"type":"LineString","arcs":[6076],"id":47970,"properties":{"V":765}},{"type":"LineString","arcs":[6077],"id":47972,"properties":{"V":345}},{"type":"LineString","arcs":[6078],"id":47977,"properties":{"V":345}},{"type":"LineString","arcs":[6079],"id":47981,"properties":{"V":230}},{"type":"LineString","arcs":[6080],"id":47987,"properties":{"V":500}},{"type":"LineString","arcs":[6081],"id":48002,"properties":{"V":230}},{"type":"LineString","arcs":[6082],"id":48007,"properties":{"V":230}},{"type":"LineString","arcs":[6083],"id":48011,"properties":{"V":345}},{"type":"LineString","arcs":[6084],"id":48021,"properties":{"V":765}},{"type":"LineString","arcs":[6085],"id":48027,"properties":{"V":230}},{"type":"LineString","arcs":[6086],"id":48029,"properties":{"V":500}},{"type":"LineString","arcs":[6087],"id":48044,"properties":{"V":230}},{"type":"LineString","arcs":[6088],"id":48057,"properties":{"V":230}},{"type":"LineString","arcs":[6089],"id":48066,"properties":{"V":230}},{"type":"LineString","arcs":[6090],"id":48074,"properties":{"V":345}},{"type":"LineString","arcs":[6091],"id":48078,"properties":{"V":230}},{"type":"LineString","arcs":[6092],"id":48079,"properties":{"V":345}},{"type":"LineString","arcs":[6093],"id":48088,"properties":{"V":230}},{"type":"LineString","arcs":[6094],"id":48089,"properties":{"V":230}},{"type":"LineString","arcs":[6095],"id":48102,"properties":{"V":345}},{"type":"LineString","arcs":[6096],"id":48103,"properties":{"V":345}},{"type":"LineString","arcs":[6097],"id":48126,"properties":{"V":230}},{"type":"LineString","arcs":[6098],"id":48127,"properties":{"V":500}},{"type":"LineString","arcs":[6099],"id":48129,"properties":{"V":230}},{"type":"LineString","arcs":[6100],"id":48134,"properties":{"V":345}},{"type":"LineString","arcs":[6101],"id":48139,"properties":{"V":345}},{"type":"LineString","arcs":[6102],"id":48145,"properties":{"V":345}},{"type":"LineString","arcs":[6103],"id":48149,"properties":{"V":230}},{"type":"LineString","arcs":[6104],"id":48151,"properties":{"V":230}},{"type":"LineString","arcs":[6105],"id":48156,"properties":{"V":345}},{"type":"LineString","arcs":[6106],"id":48160,"properties":{"V":230}},{"type":"LineString","arcs":[6107],"id":48166,"properties":{"V":345}},{"type":"LineString","arcs":[6108],"id":48167,"properties":{"V":345}},{"type":"LineString","arcs":[6109],"id":48171,"properties":{"V":345}},{"type":"LineString","arcs":[6110],"id":48176,"properties":{"V":345}},{"type":"LineString","arcs":[6111],"id":48177,"properties":{"V":230}},{"type":"LineString","arcs":[6112],"id":48198,"properties":{"V":230}},{"type":"LineString","arcs":[6113],"id":48216,"properties":{"V":230}},{"type":"LineString","arcs":[6114],"id":48220,"properties":{"V":230}},{"type":"LineString","arcs":[6115],"id":48232,"properties":{"V":230}},{"type":"LineString","arcs":[6116],"id":48239,"properties":{"V":230}},{"type":"LineString","arcs":[6117],"id":48263,"properties":{"V":345}},{"type":"LineString","arcs":[6118,6119],"id":48273,"properties":{"V":230}},{"type":"LineString","arcs":[6120],"id":48275,"properties":{"V":230}},{"type":"LineString","arcs":[6121],"id":48292,"properties":{"V":345}},{"type":"LineString","arcs":[6122,6123,6124],"id":48295,"properties":{"V":765}},{"type":"LineString","arcs":[6125],"id":48305,"properties":{"V":230}},{"type":"LineString","arcs":[6126],"id":48310,"properties":{"V":500}},{"type":"LineString","arcs":[6127],"id":48320,"properties":{"V":230}},{"type":"LineString","arcs":[6128],"id":48334,"properties":{"V":230}},{"type":"LineString","arcs":[6129],"id":48339,"properties":{"V":345}},{"type":"LineString","arcs":[6130],"id":48351,"properties":{"V":230}},{"type":"LineString","arcs":[6131],"id":48354,"properties":{"V":230}},{"type":"LineString","arcs":[6132],"id":48356,"properties":{"V":230}},{"type":"LineString","arcs":[6133],"id":48368,"properties":{"V":230}},{"type":"LineString","arcs":[6134],"id":48383,"properties":{"V":345}},{"type":"LineString","arcs":[6135],"id":48387,"properties":{"V":230}},{"type":"LineString","arcs":[6136],"id":48400,"properties":{"V":230}},{"type":"LineString","arcs":[6137],"id":48431,"properties":{"V":230}},{"type":"LineString","arcs":[6138,6139,6140],"id":48443,"properties":{"V":230}},{"type":"LineString","arcs":[6141],"id":48446,"properties":{"V":230}},{"type":"LineString","arcs":[6142],"id":48450,"properties":{"V":230}},{"type":"LineString","arcs":[6143],"id":48455,"properties":{"V":230}},{"type":"LineString","arcs":[6144],"id":48478,"properties":{"V":230}},{"type":"LineString","arcs":[6145],"id":48487,"properties":{"V":230}},{"type":"LineString","arcs":[6146],"id":48492,"properties":{"V":230}},{"type":"LineString","arcs":[6147],"id":48494,"properties":{"V":230}},{"type":"LineString","arcs":[6148],"id":48503,"properties":{"V":345}},{"type":"LineString","arcs":[6149],"id":48514,"properties":{"V":345}},{"type":"LineString","arcs":[6150],"id":48515,"properties":{"V":230}},{"type":"LineString","arcs":[6151],"id":48522,"properties":{"V":230}},{"type":"LineString","arcs":[6152],"id":48524,"properties":{"V":345}},{"type":"LineString","arcs":[6153,6154,6155,6156],"id":48539,"properties":{"V":230}},{"type":"LineString","arcs":[6157,6158],"id":48548,"properties":{"V":345}},{"type":"LineString","arcs":[6159],"id":48570,"properties":{"V":345}},{"type":"LineString","arcs":[6160],"id":48575,"properties":{"V":230}},{"type":"LineString","arcs":[6161],"id":48582,"properties":{"V":230}},{"type":"LineString","arcs":[6162],"id":48585,"properties":{"V":230}},{"type":"LineString","arcs":[6163,6164,6165],"id":48592,"properties":{"V":230}},{"type":"LineString","arcs":[6166],"id":48612,"properties":{"V":230}},{"type":"LineString","arcs":[6167],"id":48619,"properties":{"V":230}},{"type":"LineString","arcs":[6168],"id":48627,"properties":{"V":230}},{"type":"LineString","arcs":[6169],"id":48629,"properties":{"V":230}},{"type":"LineString","arcs":[6170],"id":48632,"properties":{"V":345}},{"type":"LineString","arcs":[6171,6172,6173,6174],"id":48634,"properties":{"V":230}},{"type":"LineString","arcs":[6175],"id":48645,"properties":{"V":345}},{"type":"LineString","arcs":[6176],"id":48657,"properties":{"V":230}},{"type":"LineString","arcs":[6177,6178],"id":48668,"properties":{"V":230}},{"type":"LineString","arcs":[6179],"id":48670,"properties":{"V":230}},{"type":"LineString","arcs":[6180],"id":48677,"properties":{"V":230}},{"type":"LineString","arcs":[6181],"id":48685,"properties":{"V":345}},{"type":"LineString","arcs":[6182],"id":48697,"properties":{"V":230}},{"type":"LineString","arcs":[6183],"id":48721,"properties":{"V":345}},{"type":"LineString","arcs":[6184],"id":48725,"properties":{"V":500}},{"type":"LineString","arcs":[6185],"id":48730,"properties":{"V":345}},{"type":"LineString","arcs":[6186],"id":48734,"properties":{"V":230}},{"type":"LineString","arcs":[6187],"id":48740,"properties":{"V":230}},{"type":"LineString","arcs":[6188],"id":48771,"properties":{"V":230}},{"type":"LineString","arcs":[6189],"id":48772,"properties":{"V":345}},{"type":"LineString","arcs":[6190],"id":48796,"properties":{"V":230}},{"type":"LineString","arcs":[6191],"id":48803,"properties":{"V":230}},{"type":"LineString","arcs":[6192,6193],"id":48810,"properties":{"V":345}},{"type":"LineString","arcs":[6194],"id":48822,"properties":{"V":230}},{"type":"LineString","arcs":[6195],"id":48844,"properties":{"V":345}},{"type":"LineString","arcs":[6196],"id":48855,"properties":{"V":345}},{"type":"LineString","arcs":[6197],"id":48856,"properties":{"V":230}},{"type":"LineString","arcs":[6198],"id":48864,"properties":{"V":230}},{"type":"LineString","arcs":[6199],"id":48877,"properties":{"V":230}},{"type":"LineString","arcs":[6200],"id":48889,"properties":{"V":345}},{"type":"LineString","arcs":[6201],"id":48891,"properties":{"V":345}},{"type":"LineString","arcs":[6202],"id":48900,"properties":{"V":345}},{"type":"LineString","arcs":[6203],"id":48908,"properties":{"V":230}},{"type":"LineString","arcs":[6204],"id":48912,"properties":{"V":345}},{"type":"LineString","arcs":[6205],"id":48918,"properties":{"V":230}},{"type":"LineString","arcs":[6206],"id":48919,"properties":{"V":345}},{"type":"LineString","arcs":[6207],"id":48920,"properties":{"V":230}},{"type":"LineString","arcs":[6208],"id":48958,"properties":{"V":230}},{"type":"LineString","arcs":[6209],"id":48975,"properties":{"V":230}},{"type":"LineString","arcs":[6210],"id":48982,"properties":{"V":230}},{"type":"LineString","arcs":[6211],"id":48987,"properties":{"V":230}},{"type":"LineString","arcs":[6212],"id":48991,"properties":{"V":230}},{"type":"LineString","arcs":[6213],"id":48997,"properties":{"V":230}},{"type":"LineString","arcs":[6214],"id":49001,"properties":{"V":345}},{"type":"LineString","arcs":[6215],"id":49002,"properties":{"V":230}},{"type":"LineString","arcs":[6216,6217],"id":49015,"properties":{"V":230}},{"type":"LineString","arcs":[6218],"id":49023,"properties":{"V":500}},{"type":"LineString","arcs":[6219],"id":49025,"properties":{"V":345}},{"type":"LineString","arcs":[6220],"id":49028,"properties":{"V":345}},{"type":"LineString","arcs":[6221],"id":49034,"properties":{"V":230}},{"type":"LineString","arcs":[6222],"id":49036,"properties":{"V":230}},{"type":"LineString","arcs":[6223],"id":49038,"properties":{"V":230}},{"type":"LineString","arcs":[6224],"id":49040,"properties":{"V":230}},{"type":"LineString","arcs":[6225],"id":49057,"properties":{"V":230}},{"type":"LineString","arcs":[6226],"id":49065,"properties":{"V":345}},{"type":"LineString","arcs":[6227],"id":49071,"properties":{"V":230}},{"type":"LineString","arcs":[6228],"id":49072,"properties":{"V":230}},{"type":"LineString","arcs":[6229],"id":49096,"properties":{"V":230}},{"type":"LineString","arcs":[6230],"id":49097,"properties":{"V":230}},{"type":"LineString","arcs":[6231],"id":49100,"properties":{"V":345}},{"type":"LineString","arcs":[6232],"id":49101,"properties":{"V":345}},{"type":"LineString","arcs":[6233],"id":49124,"properties":{"V":345}},{"type":"LineString","arcs":[6234],"id":49127,"properties":{"V":230}},{"type":"LineString","arcs":[6235],"id":49131,"properties":{"V":230}},{"type":"LineString","arcs":[6236],"id":49134,"properties":{"V":230}},{"type":"LineString","arcs":[6237],"id":49136,"properties":{"V":345}},{"type":"LineString","arcs":[6238],"id":49161,"properties":{"V":345}},{"type":"LineString","arcs":[6239],"id":49168,"properties":{"V":230}},{"type":"LineString","arcs":[6240],"id":49186,"properties":{"V":500}},{"type":"LineString","arcs":[6241],"id":49200,"properties":{"V":345}},{"type":"LineString","arcs":[6242],"id":49205,"properties":{"V":345}},{"type":"LineString","arcs":[6243],"id":49209,"properties":{"V":345}},{"type":"LineString","arcs":[6244],"id":49211,"properties":{"V":230}},{"type":"LineString","arcs":[6245],"id":49215,"properties":{"V":345}},{"type":"LineString","arcs":[6246],"id":49216,"properties":{"V":230}},{"type":"LineString","arcs":[6247],"id":49238,"properties":{"V":345}},{"type":"LineString","arcs":[6248],"id":49245,"properties":{"V":230}},{"type":"LineString","arcs":[6249],"id":49249,"properties":{"V":230}},{"type":"LineString","arcs":[6250],"id":49253,"properties":{"V":230}},{"type":"LineString","arcs":[6251],"id":49302,"properties":{"V":230}},{"type":"LineString","arcs":[6252],"id":49309,"properties":{"V":500}},{"type":"LineString","arcs":[6253],"id":49310,"properties":{"V":345}},{"type":"LineString","arcs":[6254],"id":49319,"properties":{"V":230}},{"type":"LineString","arcs":[6255],"id":49320,"properties":{"V":230}},{"type":"LineString","arcs":[6256],"id":49324,"properties":{"V":230}},{"type":"LineString","arcs":[6257],"id":49332,"properties":{"V":230}},{"type":"LineString","arcs":[6258],"id":49334,"properties":{"V":500}},{"type":"LineString","arcs":[6259],"id":49340,"properties":{"V":230}},{"type":"LineString","arcs":[6260],"id":49344,"properties":{"V":230}},{"type":"LineString","arcs":[6261],"id":49353,"properties":{"V":230}},{"type":"LineString","arcs":[6262],"id":49355,"properties":{"V":230}},{"type":"LineString","arcs":[6263],"id":49356,"properties":{"V":345}},{"type":"LineString","arcs":[6264],"id":49358,"properties":{"V":345}},{"type":"LineString","arcs":[6265],"id":49368,"properties":{"V":345}},{"type":"LineString","arcs":[6266],"id":49370,"properties":{"V":345}},{"type":"LineString","arcs":[6267],"id":49381,"properties":{"V":230}},{"type":"LineString","arcs":[6268],"id":49388,"properties":{"V":230}},{"type":"LineString","arcs":[6269],"id":49423,"properties":{"V":345}},{"type":"LineString","arcs":[6270],"id":49441,"properties":{"V":230}},{"type":"LineString","arcs":[6271],"id":49443,"properties":{"V":230}},{"type":"LineString","arcs":[6272],"id":49460,"properties":{"V":230}},{"type":"LineString","arcs":[6273],"id":49474,"properties":{"V":230}},{"type":"LineString","arcs":[6274],"id":49505,"properties":{"V":230}},{"type":"LineString","arcs":[6275],"id":49522,"properties":{"V":230}},{"type":"LineString","arcs":[6276],"id":49524,"properties":{"V":230}},{"type":"LineString","arcs":[6277],"id":49532,"properties":{"V":230}},{"type":"LineString","arcs":[6278],"id":49536,"properties":{"V":230}},{"type":"LineString","arcs":[6279],"id":49537,"properties":{"V":230}},{"type":"LineString","arcs":[6280],"id":49559,"properties":{"V":230}},{"type":"LineString","arcs":[6281],"id":49581,"properties":{"V":500}},{"type":"LineString","arcs":[6282],"id":49614,"properties":{"V":230}},{"type":"LineString","arcs":[6283],"id":49621,"properties":{"V":230}},{"type":"LineString","arcs":[6284],"id":49625,"properties":{"V":345}},{"type":"LineString","arcs":[6285],"id":49637,"properties":{"V":345}},{"type":"LineString","arcs":[6286],"id":49643,"properties":{"V":230}},{"type":"LineString","arcs":[6287,6288],"id":49645,"properties":{"V":345}},{"type":"LineString","arcs":[6289,6290,6291],"id":49669,"properties":{"V":345}},{"type":"LineString","arcs":[6292],"id":49678,"properties":{"V":230}},{"type":"LineString","arcs":[6293],"id":49680,"properties":{"V":230}},{"type":"LineString","arcs":[6294],"id":49682,"properties":{"V":230}},{"type":"LineString","arcs":[6295],"id":49692,"properties":{"V":230}},{"type":"LineString","arcs":[6296],"id":49693,"properties":{"V":230}},{"type":"LineString","arcs":[6297],"id":49716,"properties":{"V":230}},{"type":"LineString","arcs":[6298],"id":49723,"properties":{"V":345}},{"type":"LineString","arcs":[6299],"id":49726,"properties":{"V":230}},{"type":"LineString","arcs":[6300],"id":49738,"properties":{"V":345}},{"type":"LineString","arcs":[6301],"id":49740,"properties":{"V":230}},{"type":"LineString","arcs":[6302],"id":49752,"properties":{"V":345}},{"type":"LineString","arcs":[6303],"id":49764,"properties":{"V":345}},{"type":"LineString","arcs":[6304],"id":49765,"properties":{"V":230}},{"type":"LineString","arcs":[6305],"id":49774,"properties":{"V":230}},{"type":"LineString","arcs":[6306],"id":49777,"properties":{"V":230}},{"type":"LineString","arcs":[6307],"id":49795,"properties":{"V":230}},{"type":"LineString","arcs":[6308],"id":49796,"properties":{"V":230}},{"type":"LineString","arcs":[6309],"id":49797,"properties":{"V":230}},{"type":"LineString","arcs":[6310],"id":49798,"properties":{"V":230}},{"type":"LineString","arcs":[6311],"id":49809,"properties":{"V":345}},{"type":"LineString","arcs":[6312],"id":49813,"properties":{"V":230}},{"type":"LineString","arcs":[6313],"id":49823,"properties":{"V":230}},{"type":"LineString","arcs":[6314],"id":49835,"properties":{"V":230}},{"type":"LineString","arcs":[6315],"id":49843,"properties":{"V":230}},{"type":"LineString","arcs":[6316],"id":49859,"properties":{"V":230}},{"type":"LineString","arcs":[6317],"id":49862,"properties":{"V":230}},{"type":"LineString","arcs":[6318],"id":49883,"properties":{"V":230}},{"type":"LineString","arcs":[6319],"id":49894,"properties":{"V":345}},{"type":"LineString","arcs":[6320],"id":49910,"properties":{"V":230}},{"type":"LineString","arcs":[6321],"id":49918,"properties":{"V":345}},{"type":"LineString","arcs":[6322],"id":49953,"properties":{"V":230}},{"type":"LineString","arcs":[6323,6324],"id":49959,"properties":{"V":230}},{"type":"LineString","arcs":[6325],"id":49960,"properties":{"V":230}},{"type":"LineString","arcs":[6326],"id":49970,"properties":{"V":230}},{"type":"LineString","arcs":[6327],"id":49980,"properties":{"V":230}},{"type":"LineString","arcs":[6328],"id":49989,"properties":{"V":230}},{"type":"LineString","arcs":[6329],"id":50003,"properties":{"V":345}},{"type":"LineString","arcs":[6330],"id":50004,"properties":{"V":230}},{"type":"LineString","arcs":[6331],"id":50033,"properties":{"V":230}},{"type":"LineString","arcs":[6332],"id":50035,"properties":{"V":230}},{"type":"LineString","arcs":[6333],"id":50036,"properties":{"V":230}},{"type":"LineString","arcs":[6334],"id":50049,"properties":{"V":345}},{"type":"LineString","arcs":[6335],"id":50055,"properties":{"V":230}},{"type":"LineString","arcs":[6336],"id":50072,"properties":{"V":230}},{"type":"LineString","arcs":[6337],"id":50096,"properties":{"V":230}},{"type":"LineString","arcs":[6338,6339,6340],"id":50110,"properties":{"V":230}},{"type":"LineString","arcs":[6341],"id":50126,"properties":{"V":230}},{"type":"LineString","arcs":[6342],"id":50141,"properties":{"V":230}},{"type":"LineString","arcs":[6343],"id":50149,"properties":{"V":230}},{"type":"LineString","arcs":[6344],"id":50152,"properties":{"V":230}},{"type":"LineString","arcs":[6345],"id":50160,"properties":{"V":345}},{"type":"LineString","arcs":[6346],"id":50175,"properties":{"V":230}},{"type":"LineString","arcs":[6347],"id":50178,"properties":{"V":230}},{"type":"LineString","arcs":[6348],"id":50179,"properties":{"V":230}},{"type":"LineString","arcs":[6349],"id":50187,"properties":{"V":345}},{"type":"LineString","arcs":[6350],"id":50188,"properties":{"V":345}},{"type":"LineString","arcs":[6351],"id":50194,"properties":{"V":500}},{"type":"LineString","arcs":[6352],"id":50196,"properties":{"V":230}},{"type":"LineString","arcs":[6353],"id":50202,"properties":{"V":345}},{"type":"LineString","arcs":[6354],"id":50209,"properties":{"V":345}},{"type":"LineString","arcs":[6355],"id":50214,"properties":{"V":230}},{"type":"LineString","arcs":[6356],"id":50219,"properties":{"V":345}},{"type":"LineString","arcs":[6357],"id":50220,"properties":{"V":230}},{"type":"LineString","arcs":[6358],"id":50238,"properties":{"V":345}},{"type":"LineString","arcs":[6359],"id":50245,"properties":{"V":230}},{"type":"LineString","arcs":[6360],"id":50252,"properties":{"V":500}},{"type":"LineString","arcs":[6361],"id":50254,"properties":{"V":230}},{"type":"LineString","arcs":[6362],"id":50258,"properties":{"V":500}},{"type":"LineString","arcs":[6363],"id":50263,"properties":{"V":345}},{"type":"LineString","arcs":[6364],"id":50280,"properties":{"V":230}},{"type":"LineString","arcs":[6365],"id":50284,"properties":{"V":230}},{"type":"LineString","arcs":[6366],"id":50296,"properties":{"V":230}},{"type":"LineString","arcs":[6367],"id":50302,"properties":{"V":230}},{"type":"LineString","arcs":[6368],"id":50323,"properties":{"V":230}},{"type":"LineString","arcs":[6369],"id":50326,"properties":{"V":230}},{"type":"LineString","arcs":[6370],"id":50329,"properties":{"V":345}},{"type":"LineString","arcs":[6371],"id":50333,"properties":{"V":230}},{"type":"LineString","arcs":[6372],"id":50347,"properties":{"V":230}},{"type":"LineString","arcs":[6373],"id":50361,"properties":{"V":230}},{"type":"LineString","arcs":[6374],"id":50362,"properties":{"V":230}},{"type":"LineString","arcs":[6375],"id":50367,"properties":{"V":230}},{"type":"LineString","arcs":[6376],"id":50389,"properties":{"V":230}},{"type":"LineString","arcs":[6377],"id":50390,"properties":{"V":230}},{"type":"LineString","arcs":[6378,6379,6380,6381,6382],"id":50395,"properties":{"V":230}},{"type":"LineString","arcs":[6383],"id":50396,"properties":{"V":345}},{"type":"LineString","arcs":[6384],"id":50399,"properties":{"V":230}},{"type":"LineString","arcs":[6385],"id":50406,"properties":{"V":230}},{"type":"LineString","arcs":[6386],"id":50409,"properties":{"V":230}},{"type":"LineString","arcs":[6387],"id":50413,"properties":{"V":230}},{"type":"LineString","arcs":[6388],"id":50414,"properties":{"V":230}},{"type":"LineString","arcs":[6389],"id":50417,"properties":{"V":230}},{"type":"LineString","arcs":[6390],"id":50425,"properties":{"V":230}},{"type":"LineString","arcs":[6391],"id":50426,"properties":{"V":230}},{"type":"LineString","arcs":[6392],"id":50427,"properties":{"V":230}},{"type":"LineString","arcs":[6393],"id":50440,"properties":{"V":230}},{"type":"LineString","arcs":[6394],"id":50446,"properties":{"V":230}},{"type":"LineString","arcs":[6395],"id":50448,"properties":{"V":345}},{"type":"LineString","arcs":[6396],"id":50453,"properties":{"V":345}},{"type":"LineString","arcs":[6397],"id":50458,"properties":{"V":230}},{"type":"LineString","arcs":[6398],"id":50467,"properties":{"V":230}},{"type":"LineString","arcs":[6399],"id":50477,"properties":{"V":500}},{"type":"LineString","arcs":[6400,6401,6402,6403],"id":50485,"properties":{"V":230}},{"type":"LineString","arcs":[6404],"id":50486,"properties":{"V":230}},{"type":"LineString","arcs":[6405],"id":50487,"properties":{"V":500}},{"type":"LineString","arcs":[6406],"id":50490,"properties":{"V":230}},{"type":"LineString","arcs":[6407],"id":50496,"properties":{"V":230}},{"type":"LineString","arcs":[6408],"id":50501,"properties":{"V":230}},{"type":"LineString","arcs":[6409],"id":50510,"properties":{"V":230}},{"type":"LineString","arcs":[6410],"id":50516,"properties":{"V":345}},{"type":"LineString","arcs":[6411],"id":50532,"properties":{"V":230}},{"type":"LineString","arcs":[6412],"id":50534,"properties":{"V":345}},{"type":"LineString","arcs":[6413],"id":50538,"properties":{"V":230}},{"type":"LineString","arcs":[6414],"id":50564,"properties":{"V":345}},{"type":"LineString","arcs":[6415],"id":50571,"properties":{"V":230}},{"type":"LineString","arcs":[6416],"id":50572,"properties":{"V":230}},{"type":"LineString","arcs":[6417],"id":50582,"properties":{"V":230}},{"type":"LineString","arcs":[6418],"id":50590,"properties":{"V":230}},{"type":"LineString","arcs":[6419],"id":50595,"properties":{"V":500}},{"type":"LineString","arcs":[6420],"id":50597,"properties":{"V":230}},{"type":"LineString","arcs":[6421],"id":50604,"properties":{"V":230}},{"type":"LineString","arcs":[6422],"id":50616,"properties":{"V":230}},{"type":"LineString","arcs":[6423],"id":50622,"properties":{"V":230}},{"type":"LineString","arcs":[6424],"id":50637,"properties":{"V":345}},{"type":"LineString","arcs":[6425],"id":50649,"properties":{"V":230}},{"type":"LineString","arcs":[6426],"id":50655,"properties":{"V":230}},{"type":"LineString","arcs":[6427],"id":50656,"properties":{"V":230}},{"type":"LineString","arcs":[6428],"id":50668,"properties":{"V":230}},{"type":"LineString","arcs":[6429],"id":50680,"properties":{"V":230}},{"type":"LineString","arcs":[6430],"id":50683,"properties":{"V":230}},{"type":"LineString","arcs":[6431],"id":50695,"properties":{"V":345}},{"type":"LineString","arcs":[6432],"id":50697,"properties":{"V":345}},{"type":"LineString","arcs":[6433,6434,6435,6436],"id":50699,"properties":{"V":250}},{"type":"LineString","arcs":[6437],"id":50703,"properties":{"V":230}},{"type":"LineString","arcs":[6438],"id":50719,"properties":{"V":230}},{"type":"LineString","arcs":[6439],"id":50727,"properties":{"V":500}},{"type":"LineString","arcs":[6440],"id":50737,"properties":{"V":230}},{"type":"LineString","arcs":[6441],"id":50765,"properties":{"V":230}},{"type":"LineString","arcs":[6442],"id":50769,"properties":{"V":345}},{"type":"LineString","arcs":[6443],"id":50770,"properties":{"V":230}},{"type":"LineString","arcs":[6444],"id":50787,"properties":{"V":230}},{"type":"LineString","arcs":[6445],"id":50794,"properties":{"V":230}},{"type":"LineString","arcs":[6446],"id":50795,"properties":{"V":345}},{"type":"LineString","arcs":[6447],"id":50805,"properties":{"V":230}},{"type":"LineString","arcs":[6448],"id":50820,"properties":{"V":345}},{"type":"LineString","arcs":[6449],"id":50827,"properties":{"V":345}},{"type":"LineString","arcs":[6450],"id":50833,"properties":{"V":230}},{"type":"LineString","arcs":[6451,6452,6453,6454],"id":50836,"properties":{"V":345}},{"type":"LineString","arcs":[6455],"id":50839,"properties":{"V":230}},{"type":"LineString","arcs":[6456],"id":50841,"properties":{"V":345}},{"type":"LineString","arcs":[6457],"id":50844,"properties":{"V":500}},{"type":"LineString","arcs":[6458],"id":50847,"properties":{"V":230}},{"type":"LineString","arcs":[6459],"id":50848,"properties":{"V":230}},{"type":"LineString","arcs":[6460],"id":50855,"properties":{"V":230}},{"type":"LineString","arcs":[6461],"id":50861,"properties":{"V":230}},{"type":"LineString","arcs":[6462,6463,6464],"id":50864,"properties":{"V":345}},{"type":"LineString","arcs":[6465],"id":50865,"properties":{"V":230}},{"type":"LineString","arcs":[6466],"id":50882,"properties":{"V":345}},{"type":"LineString","arcs":[6467],"id":50891,"properties":{"V":230}},{"type":"LineString","arcs":[6468],"id":50898,"properties":{"V":230}},{"type":"LineString","arcs":[6469],"id":50900,"properties":{"V":230}},{"type":"LineString","arcs":[6470],"id":50904,"properties":{"V":230}},{"type":"LineString","arcs":[6471],"id":50906,"properties":{"V":345}},{"type":"LineString","arcs":[6472],"id":50908,"properties":{"V":230}},{"type":"LineString","arcs":[6473],"id":50909,"properties":{"V":230}},{"type":"LineString","arcs":[6474],"id":50910,"properties":{"V":230}},{"type":"LineString","arcs":[6475],"id":50913,"properties":{"V":230}},{"type":"LineString","arcs":[6476],"id":50915,"properties":{"V":765}},{"type":"LineString","arcs":[6477],"id":50937,"properties":{"V":230}},{"type":"LineString","arcs":[6478,6479],"id":50940,"properties":{"V":230}},{"type":"LineString","arcs":[6480],"id":50955,"properties":{"V":230}},{"type":"LineString","arcs":[6481],"id":50967,"properties":{"V":230}},{"type":"LineString","arcs":[6482],"id":50978,"properties":{"V":230}},{"type":"LineString","arcs":[6483],"id":50983,"properties":{"V":230}},{"type":"LineString","arcs":[6484],"id":50989,"properties":{"V":345}},{"type":"LineString","arcs":[6485],"id":51006,"properties":{"V":230}},{"type":"LineString","arcs":[6486],"id":51014,"properties":{"V":230}},{"type":"LineString","arcs":[6487],"id":51015,"properties":{"V":230}},{"type":"LineString","arcs":[6488,6489],"id":51038,"properties":{"V":345}},{"type":"LineString","arcs":[6490],"id":51041,"properties":{"V":230}},{"type":"LineString","arcs":[6491],"id":51044,"properties":{"V":230}},{"type":"LineString","arcs":[6492],"id":51047,"properties":{"V":230}},{"type":"LineString","arcs":[6493],"id":51055,"properties":{"V":345}},{"type":"LineString","arcs":[6494],"id":51062,"properties":{"V":230}},{"type":"LineString","arcs":[6495],"id":51064,"properties":{"V":345}},{"type":"LineString","arcs":[6496],"id":51066,"properties":{"V":345}},{"type":"LineString","arcs":[6497,6498],"id":51080,"properties":{"V":230}},{"type":"LineString","arcs":[6499],"id":51091,"properties":{"V":345}},{"type":"LineString","arcs":[6500],"id":51105,"properties":{"V":230}},{"type":"LineString","arcs":[6501],"id":51107,"properties":{"V":230}},{"type":"LineString","arcs":[6502],"id":51112,"properties":{"V":230}},{"type":"LineString","arcs":[6503,6504],"id":51117,"properties":{"V":345}},{"type":"LineString","arcs":[6505],"id":51125,"properties":{"V":230}},{"type":"LineString","arcs":[6506],"id":51127,"properties":{"V":345}},{"type":"LineString","arcs":[6507],"id":51133,"properties":{"V":230}},{"type":"LineString","arcs":[6508],"id":51137,"properties":{"V":230}},{"type":"LineString","arcs":[6509],"id":51142,"properties":{"V":230}},{"type":"LineString","arcs":[6510],"id":51153,"properties":{"V":230}},{"type":"LineString","arcs":[6511],"id":51155,"properties":{"V":500}},{"type":"LineString","arcs":[6512],"id":51161,"properties":{"V":230}},{"type":"LineString","arcs":[6513],"id":51162,"properties":{"V":230}},{"type":"LineString","arcs":[6514],"id":51170,"properties":{"V":230}},{"type":"LineString","arcs":[6515],"id":51174,"properties":{"V":230}},{"type":"LineString","arcs":[6516],"id":51210,"properties":{"V":230}},{"type":"LineString","arcs":[6517],"id":51223,"properties":{"V":230}},{"type":"LineString","arcs":[6518],"id":51233,"properties":{"V":345}},{"type":"LineString","arcs":[6519],"id":51242,"properties":{"V":230}},{"type":"LineString","arcs":[6520],"id":51251,"properties":{"V":230}},{"type":"LineString","arcs":[6521],"id":51260,"properties":{"V":230}},{"type":"LineString","arcs":[6522],"id":51261,"properties":{"V":230}},{"type":"LineString","arcs":[6523],"id":51263,"properties":{"V":230}},{"type":"LineString","arcs":[6524],"id":51272,"properties":{"V":230}},{"type":"LineString","arcs":[6525],"id":51273,"properties":{"V":230}},{"type":"LineString","arcs":[6526],"id":51278,"properties":{"V":230}},{"type":"LineString","arcs":[6527],"id":51288,"properties":{"V":230}},{"type":"LineString","arcs":[6528],"id":51291,"properties":{"V":765}},{"type":"LineString","arcs":[6529],"id":51293,"properties":{"V":230}},{"type":"LineString","arcs":[6530],"id":51294,"properties":{"V":230}},{"type":"LineString","arcs":[6531],"id":51295,"properties":{"V":230}},{"type":"LineString","arcs":[6532],"id":51299,"properties":{"V":500}},{"type":"LineString","arcs":[6533],"id":51301,"properties":{"V":230}},{"type":"LineString","arcs":[6534],"id":51305,"properties":{"V":230}},{"type":"LineString","arcs":[6535],"id":51313,"properties":{"V":345}},{"type":"LineString","arcs":[6536],"id":51316,"properties":{"V":230}},{"type":"LineString","arcs":[6537],"id":51359,"properties":{"V":230}},{"type":"LineString","arcs":[6538],"id":51369,"properties":{"V":230}},{"type":"LineString","arcs":[6539],"id":51376,"properties":{"V":345}},{"type":"LineString","arcs":[6540],"id":51386,"properties":{"V":230}},{"type":"LineString","arcs":[6541],"id":51387,"properties":{"V":230}},{"type":"LineString","arcs":[6542],"id":51389,"properties":{"V":345}},{"type":"LineString","arcs":[6543],"id":51390,"properties":{"V":345}},{"type":"LineString","arcs":[6544],"id":51397,"properties":{"V":230}},{"type":"LineString","arcs":[6545],"id":51422,"properties":{"V":500}},{"type":"LineString","arcs":[6546],"id":51423,"properties":{"V":230}},{"type":"LineString","arcs":[6547],"id":51426,"properties":{"V":345}},{"type":"LineString","arcs":[6548],"id":51430,"properties":{"V":345}},{"type":"LineString","arcs":[6549],"id":51433,"properties":{"V":230}},{"type":"LineString","arcs":[6550],"id":51439,"properties":{"V":230}},{"type":"LineString","arcs":[6551],"id":51441,"properties":{"V":230}},{"type":"LineString","arcs":[6552],"id":51453,"properties":{"V":230}},{"type":"LineString","arcs":[6553],"id":51459,"properties":{"V":230}},{"type":"LineString","arcs":[6554],"id":51460,"properties":{"V":230}},{"type":"LineString","arcs":[6555],"id":51461,"properties":{"V":230}},{"type":"LineString","arcs":[6556],"id":51489,"properties":{"V":230}},{"type":"LineString","arcs":[6557],"id":51492,"properties":{"V":345}},{"type":"LineString","arcs":[6558],"id":51496,"properties":{"V":230}},{"type":"LineString","arcs":[6559],"id":51502,"properties":{"V":345}},{"type":"LineString","arcs":[6560],"id":51507,"properties":{"V":230}},{"type":"LineString","arcs":[6561],"id":51512,"properties":{"V":345}},{"type":"LineString","arcs":[6562,6563,6564],"id":51528,"properties":{"V":500}},{"type":"LineString","arcs":[6565],"id":51529,"properties":{"V":230}},{"type":"LineString","arcs":[6566,6567,6568],"id":51531,"properties":{"V":345}},{"type":"LineString","arcs":[6569],"id":51532,"properties":{"V":230}},{"type":"LineString","arcs":[6570],"id":51535,"properties":{"V":230}},{"type":"LineString","arcs":[6571],"id":51554,"properties":{"V":230}},{"type":"LineString","arcs":[6572],"id":51565,"properties":{"V":230}},{"type":"LineString","arcs":[6573],"id":51570,"properties":{"V":230}},{"type":"LineString","arcs":[6574],"id":51577,"properties":{"V":500}},{"type":"LineString","arcs":[6575],"id":51582,"properties":{"V":230}},{"type":"LineString","arcs":[6576],"id":51587,"properties":{"V":230}},{"type":"LineString","arcs":[6577],"id":51591,"properties":{"V":230}},{"type":"LineString","arcs":[6578],"id":51597,"properties":{"V":230}},{"type":"LineString","arcs":[6579],"id":51608,"properties":{"V":230}},{"type":"LineString","arcs":[6580],"id":51615,"properties":{"V":500}},{"type":"LineString","arcs":[6581],"id":51624,"properties":{"V":500}},{"type":"LineString","arcs":[6582],"id":51632,"properties":{"V":230}},{"type":"LineString","arcs":[6583],"id":51640,"properties":{"V":230}},{"type":"LineString","arcs":[6584],"id":51641,"properties":{"V":230}},{"type":"LineString","arcs":[6585],"id":51650,"properties":{"V":765}},{"type":"LineString","arcs":[6586],"id":51651,"properties":{"V":230}},{"type":"LineString","arcs":[6587],"id":51652,"properties":{"V":230}},{"type":"LineString","arcs":[6588],"id":51655,"properties":{"V":230}},{"type":"LineString","arcs":[6589],"id":51659,"properties":{"V":230}},{"type":"LineString","arcs":[6590],"id":51665,"properties":{"V":230}},{"type":"LineString","arcs":[6591],"id":51667,"properties":{"V":500}},{"type":"LineString","arcs":[6592],"id":51677,"properties":{"V":500}},{"type":"LineString","arcs":[6593],"id":51697,"properties":{"V":230}},{"type":"LineString","arcs":[6594],"id":51698,"properties":{"V":230}},{"type":"LineString","arcs":[6595],"id":51702,"properties":{"V":230}},{"type":"LineString","arcs":[6596],"id":51714,"properties":{"V":345}},{"type":"LineString","arcs":[6597],"id":51725,"properties":{"V":230}},{"type":"LineString","arcs":[6598],"id":51726,"properties":{"V":230}},{"type":"LineString","arcs":[6599],"id":51728,"properties":{"V":230}},{"type":"LineString","arcs":[6600],"id":51729,"properties":{"V":230}},{"type":"LineString","arcs":[6601],"id":51754,"properties":{"V":230}},{"type":"LineString","arcs":[6602],"id":51757,"properties":{"V":230}},{"type":"LineString","arcs":[6603],"id":51795,"properties":{"V":230}},{"type":"LineString","arcs":[6604,6605,6606],"id":51799,"properties":{"V":230}},{"type":"LineString","arcs":[6607],"id":51807,"properties":{"V":230}},{"type":"LineString","arcs":[6608],"id":51817,"properties":{"V":230}},{"type":"LineString","arcs":[6609],"id":51841,"properties":{"V":230}},{"type":"LineString","arcs":[6610],"id":51861,"properties":{"V":230}},{"type":"LineString","arcs":[6611],"id":51907,"properties":{"V":345}},{"type":"LineString","arcs":[6612],"id":51909,"properties":{"V":230}},{"type":"LineString","arcs":[6613],"id":51912,"properties":{"V":345}},{"type":"LineString","arcs":[6614],"id":51916,"properties":{"V":345}},{"type":"LineString","arcs":[6615],"id":51930,"properties":{"V":345}},{"type":"LineString","arcs":[6616],"id":51943,"properties":{"V":345}},{"type":"LineString","arcs":[6617],"id":51946,"properties":{"V":230}},{"type":"LineString","arcs":[6618,6619,6620,6621,6622,6623,6624],"id":51952,"properties":{"V":230}},{"type":"LineString","arcs":[6625],"id":51954,"properties":{"V":230}},{"type":"LineString","arcs":[6626],"id":51961,"properties":{"V":230}},{"type":"LineString","arcs":[6627],"id":51962,"properties":{"V":230}},{"type":"LineString","arcs":[6628],"id":51979,"properties":{"V":230}},{"type":"LineString","arcs":[6629],"id":51980,"properties":{"V":230}},{"type":"LineString","arcs":[6630],"id":51989,"properties":{"V":230}},{"type":"LineString","arcs":[6631],"id":51990,"properties":{"V":230}},{"type":"LineString","arcs":[6632],"id":51995,"properties":{"V":230}},{"type":"LineString","arcs":[6633],"id":52000,"properties":{"V":230}},{"type":"LineString","arcs":[6634],"id":52011,"properties":{"V":345}},{"type":"LineString","arcs":[6635],"id":52023,"properties":{"V":345}},{"type":"LineString","arcs":[6636],"id":52040,"properties":{"V":230}},{"type":"LineString","arcs":[6637],"id":52048,"properties":{"V":345}},{"type":"LineString","arcs":[6638],"id":52054,"properties":{"V":230}},{"type":"LineString","arcs":[6639],"id":52066,"properties":{"V":230}},{"type":"LineString","arcs":[6640],"id":52081,"properties":{"V":230}},{"type":"LineString","arcs":[6641],"id":52106,"properties":{"V":230}},{"type":"LineString","arcs":[6642],"id":52108,"properties":{"V":500}},{"type":"LineString","arcs":[6643],"id":52110,"properties":{"V":230}},{"type":"LineString","arcs":[6644],"id":52127,"properties":{"V":230}},{"type":"LineString","arcs":[6645],"id":52128,"properties":{"V":230}},{"type":"LineString","arcs":[6646],"id":52135,"properties":{"V":230}},{"type":"LineString","arcs":[6647],"id":52140,"properties":{"V":230}},{"type":"LineString","arcs":[6648],"id":52141,"properties":{"V":500}},{"type":"LineString","arcs":[6649],"id":52147,"properties":{"V":345}},{"type":"LineString","arcs":[6650],"id":52157,"properties":{"V":230}},{"type":"LineString","arcs":[6651],"id":52165,"properties":{"V":345}},{"type":"LineString","arcs":[6652],"id":52177,"properties":{"V":500}},{"type":"LineString","arcs":[6653],"id":52188,"properties":{"V":230}},{"type":"LineString","arcs":[6654],"id":52197,"properties":{"V":230}},{"type":"LineString","arcs":[6655],"id":52214,"properties":{"V":345}},{"type":"LineString","arcs":[6656],"id":52227,"properties":{"V":345}},{"type":"LineString","arcs":[6657],"id":52228,"properties":{"V":345}},{"type":"LineString","arcs":[6658],"id":52234,"properties":{"V":230}},{"type":"LineString","arcs":[6659],"id":52243,"properties":{"V":230}},{"type":"LineString","arcs":[6660],"id":52247,"properties":{"V":230}},{"type":"LineString","arcs":[6661],"id":52250,"properties":{"V":230}},{"type":"LineString","arcs":[6662],"id":52256,"properties":{"V":345}},{"type":"LineString","arcs":[6663],"id":52259,"properties":{"V":345}},{"type":"LineString","arcs":[6664],"id":52261,"properties":{"V":345}},{"type":"LineString","arcs":[6665],"id":52267,"properties":{"V":230}},{"type":"LineString","arcs":[6666],"id":52269,"properties":{"V":345}},{"type":"LineString","arcs":[6667],"id":52272,"properties":{"V":230}},{"type":"LineString","arcs":[6668],"id":52275,"properties":{"V":230}},{"type":"LineString","arcs":[6669],"id":52289,"properties":{"V":230}},{"type":"LineString","arcs":[6670],"id":52291,"properties":{"V":230}},{"type":"LineString","arcs":[6671],"id":52297,"properties":{"V":230}},{"type":"LineString","arcs":[6672],"id":52299,"properties":{"V":230}},{"type":"LineString","arcs":[6673],"id":52301,"properties":{"V":230}},{"type":"LineString","arcs":[6674],"id":52313,"properties":{"V":500}},{"type":"LineString","arcs":[6675],"id":52335,"properties":{"V":230}},{"type":"LineString","arcs":[6676],"id":52350,"properties":{"V":230}},{"type":"LineString","arcs":[6677],"id":52352,"properties":{"V":230}},{"type":"LineString","arcs":[6678],"id":52372,"properties":{"V":230}},{"type":"LineString","arcs":[6679],"id":52380,"properties":{"V":230}},{"type":"LineString","arcs":[6680],"id":52383,"properties":{"V":230}},{"type":"LineString","arcs":[6681],"id":52398,"properties":{"V":230}},{"type":"LineString","arcs":[6682],"id":52426,"properties":{"V":230}},{"type":"LineString","arcs":[6683],"id":52436,"properties":{"V":230}},{"type":"LineString","arcs":[6684],"id":52439,"properties":{"V":230}},{"type":"LineString","arcs":[6685],"id":52449,"properties":{"V":230}},{"type":"LineString","arcs":[6686,6687,6688],"id":52459,"properties":{"V":345}},{"type":"LineString","arcs":[6689],"id":52466,"properties":{"V":345}},{"type":"LineString","arcs":[6690],"id":52491,"properties":{"V":345}},{"type":"LineString","arcs":[6691],"id":52492,"properties":{"V":230}},{"type":"LineString","arcs":[6692],"id":52503,"properties":{"V":230}},{"type":"LineString","arcs":[6693],"id":52505,"properties":{"V":230}},{"type":"LineString","arcs":[6694],"id":52508,"properties":{"V":230}},{"type":"LineString","arcs":[6695],"id":52523,"properties":{"V":230}},{"type":"LineString","arcs":[6696],"id":52524,"properties":{"V":230}},{"type":"LineString","arcs":[6697],"id":52531,"properties":{"V":230}},{"type":"LineString","arcs":[6698],"id":52539,"properties":{"V":500}},{"type":"LineString","arcs":[6699],"id":52542,"properties":{"V":230}},{"type":"LineString","arcs":[6700],"id":52543,"properties":{"V":345}},{"type":"LineString","arcs":[6701],"id":52545,"properties":{"V":345}},{"type":"LineString","arcs":[6702],"id":52549,"properties":{"V":230}},{"type":"LineString","arcs":[6703],"id":52554,"properties":{"V":230}},{"type":"LineString","arcs":[6704],"id":52570,"properties":{"V":230}},{"type":"LineString","arcs":[6705],"id":52577,"properties":{"V":230}},{"type":"LineString","arcs":[6706],"id":52586,"properties":{"V":230}},{"type":"LineString","arcs":[6707],"id":52602,"properties":{"V":230}},{"type":"LineString","arcs":[6708],"id":52605,"properties":{"V":230}},{"type":"LineString","arcs":[6709,6710],"id":52619,"properties":{"V":345}},{"type":"LineString","arcs":[6711],"id":52620,"properties":{"V":230}},{"type":"LineString","arcs":[6712],"id":52626,"properties":{"V":230}},{"type":"LineString","arcs":[6713],"id":52628,"properties":{"V":230}},{"type":"LineString","arcs":[6714],"id":52633,"properties":{"V":230}},{"type":"LineString","arcs":[6715],"id":52646,"properties":{"V":230}},{"type":"LineString","arcs":[6716],"id":52651,"properties":{"V":345}},{"type":"LineString","arcs":[6717],"id":52665,"properties":{"V":230}},{"type":"LineString","arcs":[6718],"id":52673,"properties":{"V":345}},{"type":"LineString","arcs":[6719],"id":52684,"properties":{"V":230}},{"type":"LineString","arcs":[6720],"id":52691,"properties":{"V":230}},{"type":"LineString","arcs":[6721],"id":52715,"properties":{"V":500}},{"type":"LineString","arcs":[6722],"id":52718,"properties":{"V":345}},{"type":"LineString","arcs":[6723],"id":52721,"properties":{"V":345}},{"type":"LineString","arcs":[6724],"id":52729,"properties":{"V":230}},{"type":"LineString","arcs":[6725],"id":52740,"properties":{"V":345}},{"type":"LineString","arcs":[6726],"id":52746,"properties":{"V":345}},{"type":"LineString","arcs":[6727],"id":52748,"properties":{"V":230}},{"type":"LineString","arcs":[6728],"id":52758,"properties":{"V":345}},{"type":"LineString","arcs":[6729,6730],"id":52765,"properties":{"V":345}},{"type":"LineString","arcs":[6731],"id":52790,"properties":{"V":230}},{"type":"LineString","arcs":[6732],"id":52800,"properties":{"V":230}},{"type":"LineString","arcs":[6733],"id":52810,"properties":{"V":230}},{"type":"LineString","arcs":[6734],"id":52818,"properties":{"V":230}},{"type":"LineString","arcs":[6735],"id":52820,"properties":{"V":230}},{"type":"LineString","arcs":[6736],"id":52825,"properties":{"V":230}},{"type":"LineString","arcs":[6737],"id":52836,"properties":{"V":230}},{"type":"LineString","arcs":[6738],"id":52841,"properties":{"V":230}},{"type":"LineString","arcs":[6739],"id":52843,"properties":{"V":230}},{"type":"LineString","arcs":[6740],"id":52845,"properties":{"V":345}},{"type":"LineString","arcs":[6741],"id":52848,"properties":{"V":230}},{"type":"LineString","arcs":[6742],"id":52849,"properties":{"V":345}},{"type":"LineString","arcs":[6743],"id":52856,"properties":{"V":345}},{"type":"LineString","arcs":[6744],"id":52876,"properties":{"V":230}},{"type":"LineString","arcs":[6745],"id":52879,"properties":{"V":345}},{"type":"LineString","arcs":[6746],"id":52882,"properties":{"V":230}},{"type":"LineString","arcs":[6747],"id":52884,"properties":{"V":230}},{"type":"LineString","arcs":[6748],"id":52895,"properties":{"V":345}},{"type":"LineString","arcs":[6749],"id":52903,"properties":{"V":230}},{"type":"LineString","arcs":[6750],"id":52906,"properties":{"V":345}},{"type":"LineString","arcs":[6751],"id":52910,"properties":{"V":230}},{"type":"LineString","arcs":[6752],"id":52920,"properties":{"V":230}},{"type":"LineString","arcs":[6753],"id":52923,"properties":{"V":230}},{"type":"LineString","arcs":[6754],"id":52924,"properties":{"V":345}},{"type":"LineString","arcs":[6755],"id":52926,"properties":{"V":230}},{"type":"LineString","arcs":[6756],"id":52930,"properties":{"V":230}},{"type":"LineString","arcs":[6757],"id":52933,"properties":{"V":500}},{"type":"LineString","arcs":[6758],"id":52942,"properties":{"V":230}},{"type":"LineString","arcs":[6759],"id":52976,"properties":{"V":230}},{"type":"LineString","arcs":[6760],"id":52980,"properties":{"V":345}},{"type":"LineString","arcs":[6761],"id":52992,"properties":{"V":230}},{"type":"LineString","arcs":[6762],"id":53009,"properties":{"V":230}},{"type":"LineString","arcs":[6763],"id":53012,"properties":{"V":230}},{"type":"LineString","arcs":[6764],"id":53015,"properties":{"V":230}},{"type":"LineString","arcs":[6765],"id":53021,"properties":{"V":345}},{"type":"LineString","arcs":[6766],"id":53022,"properties":{"V":230}},{"type":"LineString","arcs":[6767],"id":53036,"properties":{"V":230}},{"type":"LineString","arcs":[6768],"id":53045,"properties":{"V":230}},{"type":"LineString","arcs":[6769],"id":53051,"properties":{"V":230}},{"type":"LineString","arcs":[6770],"id":53054,"properties":{"V":230}},{"type":"LineString","arcs":[6771],"id":53059,"properties":{"V":500}},{"type":"LineString","arcs":[6772],"id":53069,"properties":{"V":230}},{"type":"LineString","arcs":[6773,6774,6775],"id":53073,"properties":{"V":500}},{"type":"LineString","arcs":[6776],"id":53077,"properties":{"V":230}},{"type":"LineString","arcs":[6777],"id":53091,"properties":{"V":500}},{"type":"LineString","arcs":[6778],"id":53101,"properties":{"V":345}},{"type":"LineString","arcs":[6779,6780,6781,6782],"id":53104,"properties":{"V":345}},{"type":"LineString","arcs":[6783],"id":53106,"properties":{"V":230}},{"type":"LineString","arcs":[6784],"id":53119,"properties":{"V":230}},{"type":"LineString","arcs":[6785],"id":53124,"properties":{"V":500}},{"type":"LineString","arcs":[6786],"id":53133,"properties":{"V":230}},{"type":"LineString","arcs":[6787],"id":53136,"properties":{"V":230}},{"type":"LineString","arcs":[6788],"id":53149,"properties":{"V":230}},{"type":"LineString","arcs":[6789],"id":53150,"properties":{"V":345}},{"type":"LineString","arcs":[6790],"id":53157,"properties":{"V":230}},{"type":"LineString","arcs":[6791],"id":53160,"properties":{"V":230}},{"type":"LineString","arcs":[6792],"id":53164,"properties":{"V":230}},{"type":"LineString","arcs":[6793],"id":53168,"properties":{"V":230}},{"type":"LineString","arcs":[6794],"id":53192,"properties":{"V":230}},{"type":"LineString","arcs":[6795],"id":53194,"properties":{"V":345}},{"type":"LineString","arcs":[6796],"id":53209,"properties":{"V":230}},{"type":"LineString","arcs":[6797],"id":53232,"properties":{"V":345}},{"type":"LineString","arcs":[6798],"id":53236,"properties":{"V":230}},{"type":"LineString","arcs":[6799],"id":53238,"properties":{"V":230}},{"type":"LineString","arcs":[6800],"id":53240,"properties":{"V":230}},{"type":"LineString","arcs":[6801],"id":53261,"properties":{"V":345}},{"type":"LineString","arcs":[6802],"id":53266,"properties":{"V":230}},{"type":"LineString","arcs":[6803],"id":53275,"properties":{"V":230}},{"type":"LineString","arcs":[6804],"id":53285,"properties":{"V":230}},{"type":"LineString","arcs":[6805],"id":53300,"properties":{"V":230}},{"type":"LineString","arcs":[6806],"id":53325,"properties":{"V":230}},{"type":"LineString","arcs":[6807],"id":53338,"properties":{"V":230}},{"type":"LineString","arcs":[6808],"id":53339,"properties":{"V":230}},{"type":"LineString","arcs":[6809],"id":53353,"properties":{"V":230}},{"type":"LineString","arcs":[6810],"id":53371,"properties":{"V":230}},{"type":"LineString","arcs":[6811],"id":53374,"properties":{"V":345}},{"type":"LineString","arcs":[6812],"id":53377,"properties":{"V":230}},{"type":"LineString","arcs":[6813],"id":53382,"properties":{"V":230}},{"type":"LineString","arcs":[6814],"id":53400,"properties":{"V":230}},{"type":"LineString","arcs":[6815],"id":53416,"properties":{"V":230}},{"type":"LineString","arcs":[6816],"id":53417,"properties":{"V":230}},{"type":"LineString","arcs":[6817],"id":53419,"properties":{"V":345}},{"type":"LineString","arcs":[6818],"id":53424,"properties":{"V":230}},{"type":"LineString","arcs":[6819],"id":53426,"properties":{"V":500}},{"type":"LineString","arcs":[6820],"id":53447,"properties":{"V":230}},{"type":"LineString","arcs":[6821],"id":53458,"properties":{"V":230}},{"type":"LineString","arcs":[6822],"id":53469,"properties":{"V":345}},{"type":"LineString","arcs":[6823],"id":53479,"properties":{"V":345}},{"type":"LineString","arcs":[6824],"id":53481,"properties":{"V":230}},{"type":"LineString","arcs":[6825],"id":53498,"properties":{"V":230}},{"type":"LineString","arcs":[6826],"id":53531,"properties":{"V":500}},{"type":"LineString","arcs":[6827],"id":53535,"properties":{"V":230}},{"type":"LineString","arcs":[6828],"id":53552,"properties":{"V":345}},{"type":"LineString","arcs":[6829],"id":53566,"properties":{"V":230}},{"type":"LineString","arcs":[6830],"id":53567,"properties":{"V":230}},{"type":"LineString","arcs":[6831],"id":53569,"properties":{"V":230}},{"type":"LineString","arcs":[6832],"id":53576,"properties":{"V":345}},{"type":"LineString","arcs":[6833],"id":53602,"properties":{"V":230}},{"type":"LineString","arcs":[6834],"id":53603,"properties":{"V":230}},{"type":"LineString","arcs":[6835],"id":53608,"properties":{"V":230}},{"type":"LineString","arcs":[6836],"id":53613,"properties":{"V":230}},{"type":"LineString","arcs":[6837],"id":53624,"properties":{"V":345}},{"type":"LineString","arcs":[6838],"id":53628,"properties":{"V":345}},{"type":"LineString","arcs":[6839],"id":53631,"properties":{"V":230}},{"type":"LineString","arcs":[6840],"id":53633,"properties":{"V":230}},{"type":"LineString","arcs":[6841],"id":53637,"properties":{"V":345}},{"type":"LineString","arcs":[6842],"id":53641,"properties":{"V":345}},{"type":"LineString","arcs":[6843],"id":53642,"properties":{"V":345}},{"type":"LineString","arcs":[6844],"id":53643,"properties":{"V":230}},{"type":"LineString","arcs":[6845],"id":53644,"properties":{"V":500}},{"type":"LineString","arcs":[6846],"id":53649,"properties":{"V":230}},{"type":"LineString","arcs":[6847],"id":53685,"properties":{"V":500}},{"type":"LineString","arcs":[6848,6849],"id":53694,"properties":{"V":230}},{"type":"LineString","arcs":[6850],"id":53696,"properties":{"V":345}},{"type":"LineString","arcs":[6851],"id":53706,"properties":{"V":500}},{"type":"LineString","arcs":[6852],"id":53727,"properties":{"V":230}},{"type":"LineString","arcs":[6853],"id":53736,"properties":{"V":230}},{"type":"LineString","arcs":[6854],"id":53739,"properties":{"V":230}},{"type":"LineString","arcs":[6855],"id":53758,"properties":{"V":230}},{"type":"LineString","arcs":[6856],"id":53780,"properties":{"V":230}},{"type":"LineString","arcs":[6857],"id":53809,"properties":{"V":230}},{"type":"LineString","arcs":[6858],"id":53820,"properties":{"V":230}},{"type":"LineString","arcs":[6859],"id":53845,"properties":{"V":345}},{"type":"LineString","arcs":[6860],"id":53855,"properties":{"V":230}},{"type":"LineString","arcs":[6861],"id":53861,"properties":{"V":230}},{"type":"LineString","arcs":[6862],"id":53877,"properties":{"V":230}},{"type":"LineString","arcs":[6863],"id":53883,"properties":{"V":230}},{"type":"LineString","arcs":[6864],"id":53889,"properties":{"V":230}},{"type":"LineString","arcs":[6865],"id":53897,"properties":{"V":230}},{"type":"LineString","arcs":[6866],"id":53901,"properties":{"V":230}},{"type":"LineString","arcs":[6867],"id":53908,"properties":{"V":345}},{"type":"LineString","arcs":[6868],"id":53911,"properties":{"V":230}},{"type":"LineString","arcs":[6869],"id":53920,"properties":{"V":345}},{"type":"LineString","arcs":[6870],"id":53930,"properties":{"V":230}},{"type":"LineString","arcs":[6871],"id":53940,"properties":{"V":345}},{"type":"LineString","arcs":[6872],"id":53942,"properties":{"V":230}},{"type":"LineString","arcs":[6873],"id":53945,"properties":{"V":230}},{"type":"LineString","arcs":[6874],"id":53949,"properties":{"V":230}},{"type":"LineString","arcs":[6875],"id":53951,"properties":{"V":230}},{"type":"LineString","arcs":[6876],"id":53954,"properties":{"V":230}},{"type":"LineString","arcs":[6877],"id":53962,"properties":{"V":230}},{"type":"LineString","arcs":[6878],"id":53971,"properties":{"V":230}},{"type":"LineString","arcs":[6879],"id":53975,"properties":{"V":345}},{"type":"LineString","arcs":[6880],"id":53992,"properties":{"V":230}},{"type":"LineString","arcs":[6881],"id":53996,"properties":{"V":230}},{"type":"LineString","arcs":[6882],"id":54000,"properties":{"V":230}},{"type":"LineString","arcs":[6883],"id":54003,"properties":{"V":765}},{"type":"LineString","arcs":[6884],"id":54010,"properties":{"V":230}},{"type":"LineString","arcs":[6885],"id":54012,"properties":{"V":345}},{"type":"LineString","arcs":[6886],"id":54026,"properties":{"V":345}},{"type":"LineString","arcs":[6887],"id":54034,"properties":{"V":230}},{"type":"LineString","arcs":[6888],"id":54041,"properties":{"V":230}},{"type":"LineString","arcs":[6889],"id":54042,"properties":{"V":230}},{"type":"LineString","arcs":[6890],"id":54045,"properties":{"V":230}},{"type":"LineString","arcs":[6891],"id":54048,"properties":{"V":230}},{"type":"LineString","arcs":[6892],"id":54056,"properties":{"V":230}},{"type":"LineString","arcs":[6893],"id":54060,"properties":{"V":230}},{"type":"LineString","arcs":[6894],"id":54062,"properties":{"V":500}},{"type":"LineString","arcs":[6895],"id":54076,"properties":{"V":230}},{"type":"LineString","arcs":[6896],"id":54083,"properties":{"V":230}},{"type":"LineString","arcs":[6897],"id":54105,"properties":{"V":230}},{"type":"LineString","arcs":[6898],"id":54111,"properties":{"V":230}},{"type":"LineString","arcs":[6899],"id":54117,"properties":{"V":345}},{"type":"LineString","arcs":[6900],"id":54125,"properties":{"V":230}},{"type":"LineString","arcs":[6901],"id":54131,"properties":{"V":345}},{"type":"LineString","arcs":[6902],"id":54137,"properties":{"V":345}},{"type":"LineString","arcs":[6903],"id":54145,"properties":{"V":345}},{"type":"LineString","arcs":[6904],"id":54157,"properties":{"V":230}},{"type":"LineString","arcs":[6905],"id":54178,"properties":{"V":230}},{"type":"LineString","arcs":[6906],"id":54183,"properties":{"V":230}},{"type":"LineString","arcs":[6907],"id":54196,"properties":{"V":230}},{"type":"LineString","arcs":[6908],"id":54197,"properties":{"V":345}},{"type":"LineString","arcs":[6909],"id":54204,"properties":{"V":500}},{"type":"LineString","arcs":[6910],"id":54206,"properties":{"V":230}},{"type":"LineString","arcs":[6911],"id":54207,"properties":{"V":345}},{"type":"LineString","arcs":[6912],"id":54208,"properties":{"V":230}},{"type":"LineString","arcs":[6913],"id":54218,"properties":{"V":230}},{"type":"LineString","arcs":[6914],"id":54226,"properties":{"V":230}},{"type":"LineString","arcs":[6915],"id":54229,"properties":{"V":500}},{"type":"LineString","arcs":[6916],"id":54238,"properties":{"V":500}},{"type":"LineString","arcs":[6917],"id":54250,"properties":{"V":345}},{"type":"LineString","arcs":[6918],"id":54257,"properties":{"V":500}},{"type":"LineString","arcs":[6919],"id":54261,"properties":{"V":345}},{"type":"LineString","arcs":[6920],"id":54266,"properties":{"V":345}},{"type":"LineString","arcs":[6921],"id":54270,"properties":{"V":230}},{"type":"LineString","arcs":[6922],"id":54273,"properties":{"V":230}},{"type":"LineString","arcs":[6923],"id":54294,"properties":{"V":230}},{"type":"LineString","arcs":[6924],"id":54302,"properties":{"V":500}},{"type":"LineString","arcs":[6925],"id":54305,"properties":{"V":230}},{"type":"LineString","arcs":[6926],"id":54318,"properties":{"V":230}},{"type":"LineString","arcs":[6927],"id":54319,"properties":{"V":230}},{"type":"LineString","arcs":[6928],"id":54325,"properties":{"V":230}},{"type":"LineString","arcs":[6929],"id":54334,"properties":{"V":230}},{"type":"LineString","arcs":[6930,6931],"id":54335,"properties":{"V":230}},{"type":"LineString","arcs":[6932],"id":54341,"properties":{"V":345}},{"type":"LineString","arcs":[6933],"id":54343,"properties":{"V":345}},{"type":"LineString","arcs":[6934],"id":54349,"properties":{"V":230}},{"type":"LineString","arcs":[6935],"id":54356,"properties":{"V":345}},{"type":"LineString","arcs":[6936],"id":54359,"properties":{"V":230}},{"type":"LineString","arcs":[6937],"id":54360,"properties":{"V":230}},{"type":"LineString","arcs":[6938],"id":54362,"properties":{"V":230}},{"type":"LineString","arcs":[6939,6940,6941],"id":54365,"properties":{"V":345}},{"type":"LineString","arcs":[6942],"id":54396,"properties":{"V":230}},{"type":"LineString","arcs":[6943],"id":54397,"properties":{"V":230}},{"type":"LineString","arcs":[6944],"id":54401,"properties":{"V":345}},{"type":"LineString","arcs":[6945],"id":54406,"properties":{"V":345}},{"type":"LineString","arcs":[6946],"id":54407,"properties":{"V":230}},{"type":"LineString","arcs":[6947],"id":54423,"properties":{"V":345}},{"type":"LineString","arcs":[6948],"id":54425,"properties":{"V":230}},{"type":"LineString","arcs":[6949],"id":54442,"properties":{"V":230}},{"type":"LineString","arcs":[6950],"id":54455,"properties":{"V":345}},{"type":"LineString","arcs":[6951],"id":54460,"properties":{"V":345}},{"type":"LineString","arcs":[6952],"id":54480,"properties":{"V":230}},{"type":"LineString","arcs":[6953],"id":54483,"properties":{"V":230}},{"type":"LineString","arcs":[6954],"id":54486,"properties":{"V":345}},{"type":"LineString","arcs":[6955],"id":54487,"properties":{"V":345}},{"type":"LineString","arcs":[6956],"id":54493,"properties":{"V":230}},{"type":"LineString","arcs":[6957],"id":54510,"properties":{"V":500}},{"type":"LineString","arcs":[6958],"id":54525,"properties":{"V":230}},{"type":"LineString","arcs":[6959],"id":54528,"properties":{"V":230}},{"type":"LineString","arcs":[6960],"id":54529,"properties":{"V":230}},{"type":"LineString","arcs":[6961],"id":54540,"properties":{"V":345}},{"type":"LineString","arcs":[6962],"id":54541,"properties":{"V":345}},{"type":"LineString","arcs":[6963],"id":54546,"properties":{"V":345}},{"type":"LineString","arcs":[6964],"id":54571,"properties":{"V":230}},{"type":"LineString","arcs":[6965],"id":54590,"properties":{"V":230}},{"type":"LineString","arcs":[6966],"id":54593,"properties":{"V":230}},{"type":"LineString","arcs":[6967],"id":54610,"properties":{"V":230}},{"type":"LineString","arcs":[6968],"id":54630,"properties":{"V":230}},{"type":"LineString","arcs":[6969],"id":54638,"properties":{"V":345}},{"type":"LineString","arcs":[6970],"id":54650,"properties":{"V":345}},{"type":"LineString","arcs":[6971],"id":54676,"properties":{"V":500}},{"type":"LineString","arcs":[6972],"id":54690,"properties":{"V":230}},{"type":"LineString","arcs":[6973],"id":54691,"properties":{"V":230}},{"type":"LineString","arcs":[6974],"id":54706,"properties":{"V":230}},{"type":"LineString","arcs":[6975],"id":54707,"properties":{"V":230}},{"type":"LineString","arcs":[6976],"id":54713,"properties":{"V":230}},{"type":"LineString","arcs":[6977],"id":54717,"properties":{"V":500}},{"type":"LineString","arcs":[6978],"id":54726,"properties":{"V":500}},{"type":"LineString","arcs":[6979],"id":54735,"properties":{"V":230}},{"type":"LineString","arcs":[6980],"id":54736,"properties":{"V":345}},{"type":"LineString","arcs":[6981],"id":54744,"properties":{"V":230}},{"type":"LineString","arcs":[6982],"id":54748,"properties":{"V":230}},{"type":"LineString","arcs":[6983],"id":54753,"properties":{"V":230}},{"type":"LineString","arcs":[6984],"id":54754,"properties":{"V":230}},{"type":"LineString","arcs":[6985],"id":54758,"properties":{"V":230}},{"type":"LineString","arcs":[6986],"id":54761,"properties":{"V":230}},{"type":"LineString","arcs":[6987],"id":54762,"properties":{"V":345}},{"type":"LineString","arcs":[6988],"id":54773,"properties":{"V":230}},{"type":"LineString","arcs":[6989],"id":54782,"properties":{"V":230}},{"type":"LineString","arcs":[6990],"id":54785,"properties":{"V":345}},{"type":"LineString","arcs":[6991],"id":54788,"properties":{"V":230}},{"type":"LineString","arcs":[6992],"id":54800,"properties":{"V":500}},{"type":"LineString","arcs":[6993],"id":54807,"properties":{"V":230}},{"type":"LineString","arcs":[6994],"id":54832,"properties":{"V":230}},{"type":"LineString","arcs":[6995],"id":54834,"properties":{"V":230}},{"type":"LineString","arcs":[6996],"id":54842,"properties":{"V":230}},{"type":"LineString","arcs":[6997,6998],"id":54848,"properties":{"V":230}},{"type":"LineString","arcs":[6999],"id":54850,"properties":{"V":345}},{"type":"LineString","arcs":[7000],"id":54859,"properties":{"V":230}},{"type":"LineString","arcs":[7001],"id":54860,"properties":{"V":230}},{"type":"LineString","arcs":[7002],"id":54864,"properties":{"V":230}},{"type":"LineString","arcs":[7003],"id":54868,"properties":{"V":345}},{"type":"LineString","arcs":[7004],"id":54871,"properties":{"V":500}},{"type":"LineString","arcs":[7005],"id":54886,"properties":{"V":230}},{"type":"LineString","arcs":[7006],"id":54889,"properties":{"V":345}},{"type":"LineString","arcs":[7007],"id":54897,"properties":{"V":230}},{"type":"LineString","arcs":[7008],"id":54909,"properties":{"V":230}},{"type":"LineString","arcs":[7009],"id":54912,"properties":{"V":345}},{"type":"LineString","arcs":[7010],"id":54918,"properties":{"V":230}},{"type":"LineString","arcs":[7011],"id":54925,"properties":{"V":230}},{"type":"LineString","arcs":[7012],"id":54928,"properties":{"V":345}},{"type":"LineString","arcs":[7013],"id":54930,"properties":{"V":230}},{"type":"LineString","arcs":[7014],"id":54934,"properties":{"V":500}},{"type":"LineString","arcs":[7015,7016],"id":54935,"properties":{"V":345}},{"type":"LineString","arcs":[7017],"id":54939,"properties":{"V":230}},{"type":"LineString","arcs":[7018],"id":54957,"properties":{"V":230}},{"type":"LineString","arcs":[7019],"id":54961,"properties":{"V":345}},{"type":"LineString","arcs":[7020],"id":54968,"properties":{"V":230}},{"type":"LineString","arcs":[7021],"id":54972,"properties":{"V":230}},{"type":"LineString","arcs":[7022],"id":54984,"properties":{"V":345}},{"type":"LineString","arcs":[7023],"id":54996,"properties":{"V":230}},{"type":"LineString","arcs":[7024],"id":55007,"properties":{"V":345}},{"type":"LineString","arcs":[7025],"id":55014,"properties":{"V":230}},{"type":"LineString","arcs":[7026],"id":55018,"properties":{"V":230}},{"type":"LineString","arcs":[7027],"id":55020,"properties":{"V":230}},{"type":"LineString","arcs":[7028],"id":55025,"properties":{"V":230}},{"type":"LineString","arcs":[7029],"id":55031,"properties":{"V":230}},{"type":"LineString","arcs":[7030],"id":55033,"properties":{"V":500}},{"type":"LineString","arcs":[7031],"id":55037,"properties":{"V":500}},{"type":"LineString","arcs":[7032],"id":55057,"properties":{"V":230}},{"type":"LineString","arcs":[7033],"id":55058,"properties":{"V":345}},{"type":"LineString","arcs":[7034],"id":55062,"properties":{"V":345}},{"type":"LineString","arcs":[7035],"id":55064,"properties":{"V":500}},{"type":"LineString","arcs":[7036],"id":55070,"properties":{"V":230}},{"type":"LineString","arcs":[7037],"id":55072,"properties":{"V":230}},{"type":"LineString","arcs":[7038],"id":55081,"properties":{"V":230}},{"type":"LineString","arcs":[7039],"id":55082,"properties":{"V":230}},{"type":"LineString","arcs":[7040],"id":55084,"properties":{"V":230}},{"type":"LineString","arcs":[7041],"id":55086,"properties":{"V":345}},{"type":"LineString","arcs":[7042],"id":55093,"properties":{"V":345}},{"type":"LineString","arcs":[7043],"id":55101,"properties":{"V":230}},{"type":"LineString","arcs":[7044],"id":55111,"properties":{"V":230}},{"type":"LineString","arcs":[7045],"id":55114,"properties":{"V":345}},{"type":"LineString","arcs":[7046],"id":55116,"properties":{"V":230}},{"type":"LineString","arcs":[7047],"id":55121,"properties":{"V":230}},{"type":"LineString","arcs":[7048],"id":55122,"properties":{"V":230}},{"type":"LineString","arcs":[7049],"id":55123,"properties":{"V":230}},{"type":"LineString","arcs":[7050],"id":55129,"properties":{"V":345}},{"type":"LineString","arcs":[7051],"id":55131,"properties":{"V":230}},{"type":"LineString","arcs":[7052],"id":55148,"properties":{"V":345}},{"type":"LineString","arcs":[7053],"id":55149,"properties":{"V":230}},{"type":"LineString","arcs":[7054],"id":55156,"properties":{"V":500}},{"type":"LineString","arcs":[7055],"id":55176,"properties":{"V":230}},{"type":"LineString","arcs":[7056],"id":55177,"properties":{"V":345}},{"type":"LineString","arcs":[7057],"id":55179,"properties":{"V":230}},{"type":"LineString","arcs":[7058],"id":55185,"properties":{"V":230}},{"type":"LineString","arcs":[7059],"id":55194,"properties":{"V":230}},{"type":"LineString","arcs":[7060],"id":55200,"properties":{"V":230}},{"type":"LineString","arcs":[7061],"id":55207,"properties":{"V":230}},{"type":"LineString","arcs":[7062],"id":55208,"properties":{"V":230}},{"type":"LineString","arcs":[7063],"id":55212,"properties":{"V":230}},{"type":"LineString","arcs":[7064],"id":55216,"properties":{"V":230}},{"type":"LineString","arcs":[7065],"id":55221,"properties":{"V":230}},{"type":"LineString","arcs":[7066],"id":55225,"properties":{"V":230}},{"type":"LineString","arcs":[7067],"id":55232,"properties":{"V":500}},{"type":"LineString","arcs":[7068],"id":55236,"properties":{"V":345}},{"type":"LineString","arcs":[7069],"id":55242,"properties":{"V":345}},{"type":"LineString","arcs":[7070,7071],"id":55247,"properties":{"V":230}},{"type":"LineString","arcs":[7072],"id":55250,"properties":{"V":230}},{"type":"LineString","arcs":[7073],"id":55251,"properties":{"V":230}},{"type":"LineString","arcs":[7074],"id":55267,"properties":{"V":230}},{"type":"LineString","arcs":[7075],"id":55283,"properties":{"V":230}},{"type":"LineString","arcs":[7076],"id":55295,"properties":{"V":230}},{"type":"LineString","arcs":[7077],"id":55307,"properties":{"V":345}},{"type":"LineString","arcs":[7078],"id":55323,"properties":{"V":230}},{"type":"LineString","arcs":[7079],"id":55330,"properties":{"V":230}},{"type":"LineString","arcs":[7080],"id":55347,"properties":{"V":230}},{"type":"LineString","arcs":[7081],"id":55352,"properties":{"V":345}},{"type":"LineString","arcs":[7082],"id":55366,"properties":{"V":345}},{"type":"LineString","arcs":[7083],"id":55369,"properties":{"V":230}},{"type":"LineString","arcs":[7084],"id":55374,"properties":{"V":230}},{"type":"LineString","arcs":[7085],"id":55383,"properties":{"V":345}},{"type":"LineString","arcs":[7086],"id":55388,"properties":{"V":345}},{"type":"LineString","arcs":[7087],"id":55393,"properties":{"V":230}},{"type":"LineString","arcs":[7088],"id":55394,"properties":{"V":230}},{"type":"LineString","arcs":[7089,7090],"id":55395,"properties":{"V":230}},{"type":"LineString","arcs":[7091],"id":55402,"properties":{"V":230}},{"type":"LineString","arcs":[7092],"id":55419,"properties":{"V":230}},{"type":"LineString","arcs":[7093],"id":55421,"properties":{"V":230}},{"type":"LineString","arcs":[7094],"id":55425,"properties":{"V":345}},{"type":"LineString","arcs":[7095],"id":55445,"properties":{"V":345}},{"type":"LineString","arcs":[7096],"id":55453,"properties":{"V":230}},{"type":"LineString","arcs":[7097],"id":55463,"properties":{"V":345}},{"type":"LineString","arcs":[7098],"id":55467,"properties":{"V":230}},{"type":"LineString","arcs":[7099],"id":55470,"properties":{"V":345}},{"type":"LineString","arcs":[7100],"id":55471,"properties":{"V":230}},{"type":"LineString","arcs":[7101],"id":55475,"properties":{"V":230}},{"type":"LineString","arcs":[7102],"id":55480,"properties":{"V":230}},{"type":"LineString","arcs":[7103],"id":55523,"properties":{"V":345}},{"type":"LineString","arcs":[7104],"id":55547,"properties":{"V":230}},{"type":"LineString","arcs":[7105],"id":55551,"properties":{"V":230}},{"type":"LineString","arcs":[7106],"id":55558,"properties":{"V":230}},{"type":"LineString","arcs":[7107],"id":55560,"properties":{"V":230}},{"type":"LineString","arcs":[7108],"id":55581,"properties":{"V":230}},{"type":"LineString","arcs":[7109],"id":55582,"properties":{"V":230}},{"type":"LineString","arcs":[7110],"id":55595,"properties":{"V":230}},{"type":"LineString","arcs":[7111],"id":55598,"properties":{"V":345}},{"type":"LineString","arcs":[7112],"id":55609,"properties":{"V":230}},{"type":"LineString","arcs":[7113],"id":55619,"properties":{"V":230}},{"type":"LineString","arcs":[7114],"id":55626,"properties":{"V":230}},{"type":"LineString","arcs":[7115],"id":55627,"properties":{"V":230}},{"type":"LineString","arcs":[7116],"id":55631,"properties":{"V":230}},{"type":"LineString","arcs":[7117],"id":55632,"properties":{"V":230}},{"type":"LineString","arcs":[7118],"id":55648,"properties":{"V":230}},{"type":"LineString","arcs":[7119],"id":55651,"properties":{"V":230}},{"type":"LineString","arcs":[7120],"id":55661,"properties":{"V":500}},{"type":"LineString","arcs":[7121],"id":55678,"properties":{"V":500}},{"type":"LineString","arcs":[7122],"id":55688,"properties":{"V":345}},{"type":"LineString","arcs":[7123],"id":55723,"properties":{"V":230}},{"type":"LineString","arcs":[7124],"id":55728,"properties":{"V":230}},{"type":"LineString","arcs":[7125],"id":55730,"properties":{"V":345}},{"type":"LineString","arcs":[7126],"id":55733,"properties":{"V":345}},{"type":"LineString","arcs":[7127],"id":55737,"properties":{"V":500}},{"type":"LineString","arcs":[7128],"id":55767,"properties":{"V":345}},{"type":"LineString","arcs":[7129],"id":55769,"properties":{"V":230}},{"type":"LineString","arcs":[7130],"id":55770,"properties":{"V":230}},{"type":"LineString","arcs":[7131],"id":55771,"properties":{"V":230}},{"type":"LineString","arcs":[7132],"id":55774,"properties":{"V":345}},{"type":"LineString","arcs":[7133,7134,7135,7136,7137,7138,7139,7140],"id":55775,"properties":{"V":345}},{"type":"LineString","arcs":[7141],"id":55777,"properties":{"V":345}},{"type":"LineString","arcs":[7142],"id":55784,"properties":{"V":230}},{"type":"LineString","arcs":[7143],"id":55788,"properties":{"V":230}},{"type":"LineString","arcs":[7144],"id":55792,"properties":{"V":345}},{"type":"LineString","arcs":[7145],"id":55796,"properties":{"V":230}},{"type":"LineString","arcs":[7146],"id":55809,"properties":{"V":230}},{"type":"LineString","arcs":[7147],"id":55819,"properties":{"V":345}},{"type":"LineString","arcs":[7148],"id":55821,"properties":{"V":345}},{"type":"LineString","arcs":[7149],"id":55827,"properties":{"V":230}},{"type":"LineString","arcs":[7150],"id":55837,"properties":{"V":345}},{"type":"LineString","arcs":[7151],"id":55856,"properties":{"V":230}},{"type":"LineString","arcs":[7152],"id":55860,"properties":{"V":230}},{"type":"LineString","arcs":[7153],"id":55861,"properties":{"V":230}},{"type":"LineString","arcs":[7154],"id":55874,"properties":{"V":230}},{"type":"LineString","arcs":[7155],"id":55888,"properties":{"V":230}},{"type":"LineString","arcs":[7156],"id":55900,"properties":{"V":345}},{"type":"LineString","arcs":[7157],"id":55901,"properties":{"V":345}},{"type":"LineString","arcs":[7158],"id":55904,"properties":{"V":230}},{"type":"LineString","arcs":[7159],"id":55905,"properties":{"V":230}},{"type":"LineString","arcs":[7160],"id":55915,"properties":{"V":230}},{"type":"LineString","arcs":[7161],"id":55923,"properties":{"V":345}},{"type":"LineString","arcs":[7162],"id":55924,"properties":{"V":230}},{"type":"LineString","arcs":[7163],"id":55929,"properties":{"V":500}},{"type":"LineString","arcs":[7164],"id":55930,"properties":{"V":230}},{"type":"LineString","arcs":[7165],"id":55941,"properties":{"V":345}},{"type":"LineString","arcs":[7166],"id":55944,"properties":{"V":230}},{"type":"LineString","arcs":[7167],"id":55953,"properties":{"V":230}},{"type":"LineString","arcs":[7168],"id":55958,"properties":{"V":500}},{"type":"LineString","arcs":[7169],"id":55961,"properties":{"V":230}},{"type":"LineString","arcs":[7170],"id":55984,"properties":{"V":230}},{"type":"LineString","arcs":[7171],"id":55997,"properties":{"V":230}},{"type":"LineString","arcs":[7172],"id":56019,"properties":{"V":345}},{"type":"LineString","arcs":[7173],"id":56023,"properties":{"V":230}},{"type":"LineString","arcs":[7174],"id":56038,"properties":{"V":230}},{"type":"LineString","arcs":[7175],"id":56042,"properties":{"V":230}},{"type":"LineString","arcs":[7176],"id":56060,"properties":{"V":230}},{"type":"LineString","arcs":[7177],"id":56064,"properties":{"V":230}},{"type":"LineString","arcs":[7178],"id":56074,"properties":{"V":345}},{"type":"LineString","arcs":[7179],"id":56075,"properties":{"V":230}},{"type":"LineString","arcs":[7180],"id":56080,"properties":{"V":230}},{"type":"LineString","arcs":[7181],"id":56082,"properties":{"V":230}},{"type":"LineString","arcs":[7182],"id":56083,"properties":{"V":500}},{"type":"LineString","arcs":[7183],"id":56094,"properties":{"V":230}},{"type":"LineString","arcs":[7184],"id":56096,"properties":{"V":230}},{"type":"LineString","arcs":[7185],"id":56111,"properties":{"V":230}},{"type":"LineString","arcs":[7186],"id":56113,"properties":{"V":230}},{"type":"LineString","arcs":[7187],"id":56114,"properties":{"V":345}},{"type":"LineString","arcs":[7188],"id":56116,"properties":{"V":345}},{"type":"LineString","arcs":[7189],"id":56119,"properties":{"V":230}},{"type":"LineString","arcs":[7190],"id":56126,"properties":{"V":345}},{"type":"LineString","arcs":[7191],"id":56130,"properties":{"V":230}},{"type":"LineString","arcs":[7192],"id":56133,"properties":{"V":345}},{"type":"LineString","arcs":[7193],"id":56151,"properties":{"V":230}},{"type":"LineString","arcs":[7194],"id":56160,"properties":{"V":345}},{"type":"LineString","arcs":[7195],"id":56175,"properties":{"V":230}},{"type":"LineString","arcs":[7196],"id":56184,"properties":{"V":230}},{"type":"LineString","arcs":[7197],"id":56187,"properties":{"V":345}},{"type":"LineString","arcs":[7198,7199,7200],"id":56202,"properties":{"V":230}},{"type":"LineString","arcs":[7201],"id":56211,"properties":{"V":230}},{"type":"LineString","arcs":[7202],"id":56215,"properties":{"V":230}},{"type":"LineString","arcs":[7203],"id":56220,"properties":{"V":230}},{"type":"LineString","arcs":[7204],"id":56246,"properties":{"V":230}},{"type":"LineString","arcs":[7205],"id":56252,"properties":{"V":230}},{"type":"LineString","arcs":[7206],"id":56261,"properties":{"V":230}},{"type":"LineString","arcs":[7207],"id":56267,"properties":{"V":230}},{"type":"LineString","arcs":[7208],"id":56276,"properties":{"V":230}},{"type":"LineString","arcs":[7209],"id":56278,"properties":{"V":230}},{"type":"LineString","arcs":[7210],"id":56284,"properties":{"V":230}},{"type":"LineString","arcs":[7211],"id":56292,"properties":{"V":230}},{"type":"LineString","arcs":[7212],"id":56307,"properties":{"V":230}},{"type":"LineString","arcs":[7213],"id":56310,"properties":{"V":230}},{"type":"LineString","arcs":[7214],"id":56314,"properties":{"V":230}},{"type":"LineString","arcs":[7215],"id":56327,"properties":{"V":230}},{"type":"LineString","arcs":[7216],"id":56340,"properties":{"V":345}},{"type":"LineString","arcs":[7217],"id":56350,"properties":{"V":345}},{"type":"LineString","arcs":[7218],"id":56357,"properties":{"V":230}},{"type":"LineString","arcs":[7219],"id":56358,"properties":{"V":230}},{"type":"LineString","arcs":[7220],"id":56361,"properties":{"V":345}},{"type":"LineString","arcs":[7221],"id":56372,"properties":{"V":230}},{"type":"LineString","arcs":[7222],"id":56388,"properties":{"V":500}},{"type":"LineString","arcs":[7223],"id":56391,"properties":{"V":230}},{"type":"LineString","arcs":[7224],"id":56432,"properties":{"V":230}},{"type":"LineString","arcs":[7225],"id":56433,"properties":{"V":230}},{"type":"LineString","arcs":[7226],"id":56438,"properties":{"V":230}},{"type":"LineString","arcs":[7227],"id":56439,"properties":{"V":230}},{"type":"LineString","arcs":[7228],"id":56478,"properties":{"V":230}},{"type":"LineString","arcs":[7229],"id":56482,"properties":{"V":230}},{"type":"LineString","arcs":[7230],"id":56491,"properties":{"V":230}},{"type":"LineString","arcs":[7231,7232],"id":56508,"properties":{"V":230}},{"type":"LineString","arcs":[7233],"id":56510,"properties":{"V":230}},{"type":"LineString","arcs":[7234],"id":56511,"properties":{"V":230}},{"type":"LineString","arcs":[7235],"id":56512,"properties":{"V":345}},{"type":"LineString","arcs":[7236],"id":56526,"properties":{"V":230}},{"type":"LineString","arcs":[7237],"id":56528,"properties":{"V":230}},{"type":"LineString","arcs":[7238],"id":56534,"properties":{"V":230}},{"type":"LineString","arcs":[7239],"id":56542,"properties":{"V":345}},{"type":"LineString","arcs":[7240],"id":56549,"properties":{"V":230}},{"type":"LineString","arcs":[7241],"id":56552,"properties":{"V":230}},{"type":"LineString","arcs":[7242],"id":56558,"properties":{"V":230}},{"type":"LineString","arcs":[7243],"id":56562,"properties":{"V":345}},{"type":"LineString","arcs":[7244],"id":56572,"properties":{"V":230}},{"type":"LineString","arcs":[7245],"id":56579,"properties":{"V":230}},{"type":"LineString","arcs":[7246],"id":56587,"properties":{"V":345}},{"type":"LineString","arcs":[7247],"id":56589,"properties":{"V":230}},{"type":"LineString","arcs":[7248],"id":56591,"properties":{"V":345}},{"type":"LineString","arcs":[7249],"id":56592,"properties":{"V":345}},{"type":"LineString","arcs":[7250],"id":56595,"properties":{"V":500}},{"type":"LineString","arcs":[7251],"id":56597,"properties":{"V":230}},{"type":"LineString","arcs":[7252],"id":56603,"properties":{"V":230}},{"type":"LineString","arcs":[7253],"id":56605,"properties":{"V":345}},{"type":"LineString","arcs":[7254],"id":56608,"properties":{"V":230}},{"type":"LineString","arcs":[7255],"id":56609,"properties":{"V":500}},{"type":"LineString","arcs":[7256],"id":56615,"properties":{"V":230}},{"type":"LineString","arcs":[7257],"id":56621,"properties":{"V":230}},{"type":"LineString","arcs":[7258],"id":56628,"properties":{"V":230}},{"type":"LineString","arcs":[7259],"id":56642,"properties":{"V":345}},{"type":"LineString","arcs":[7260],"id":56644,"properties":{"V":345}},{"type":"LineString","arcs":[7261],"id":56668,"properties":{"V":230}},{"type":"LineString","arcs":[7262],"id":56669,"properties":{"V":230}},{"type":"LineString","arcs":[7263],"id":56676,"properties":{"V":230}},{"type":"LineString","arcs":[7264],"id":56688,"properties":{"V":345}},{"type":"LineString","arcs":[7265],"id":56712,"properties":{"V":500}},{"type":"LineString","arcs":[7266],"id":56723,"properties":{"V":345}},{"type":"LineString","arcs":[7267],"id":56728,"properties":{"V":345}},{"type":"LineString","arcs":[7268],"id":56773,"properties":{"V":230}},{"type":"LineString","arcs":[7269],"id":56784,"properties":{"V":230}},{"type":"LineString","arcs":[7270],"id":56786,"properties":{"V":230}},{"type":"LineString","arcs":[7271],"id":56795,"properties":{"V":345}},{"type":"LineString","arcs":[7272],"id":56797,"properties":{"V":765}},{"type":"LineString","arcs":[7273],"id":56800,"properties":{"V":345}},{"type":"LineString","arcs":[7274],"id":56801,"properties":{"V":345}},{"type":"LineString","arcs":[7275],"id":56802,"properties":{"V":230}},{"type":"LineString","arcs":[7276],"id":56817,"properties":{"V":230}},{"type":"LineString","arcs":[7277],"id":56829,"properties":{"V":230}},{"type":"LineString","arcs":[7278],"id":56840,"properties":{"V":230}},{"type":"LineString","arcs":[7279],"id":56849,"properties":{"V":230}},{"type":"LineString","arcs":[7280],"id":56859,"properties":{"V":230}},{"type":"LineString","arcs":[7281],"id":56862,"properties":{"V":230}},{"type":"LineString","arcs":[7282],"id":56871,"properties":{"V":230}},{"type":"LineString","arcs":[7283],"id":56878,"properties":{"V":230}},{"type":"LineString","arcs":[7284],"id":56880,"properties":{"V":230}},{"type":"LineString","arcs":[7285],"id":56885,"properties":{"V":230}},{"type":"LineString","arcs":[7286],"id":56893,"properties":{"V":345}},{"type":"LineString","arcs":[7287],"id":56894,"properties":{"V":230}},{"type":"LineString","arcs":[7288],"id":56932,"properties":{"V":230}},{"type":"LineString","arcs":[7289],"id":56933,"properties":{"V":345}},{"type":"LineString","arcs":[7290],"id":56940,"properties":{"V":230}},{"type":"LineString","arcs":[7291],"id":56946,"properties":{"V":345}},{"type":"LineString","arcs":[7292],"id":56948,"properties":{"V":345}},{"type":"LineString","arcs":[7293],"id":56955,"properties":{"V":345}},{"type":"LineString","arcs":[7294],"id":56962,"properties":{"V":230}},{"type":"LineString","arcs":[7295],"id":56969,"properties":{"V":345}},{"type":"LineString","arcs":[7296],"id":56978,"properties":{"V":230}},{"type":"LineString","arcs":[7297],"id":56979,"properties":{"V":230}},{"type":"LineString","arcs":[7298],"id":56981,"properties":{"V":230}},{"type":"LineString","arcs":[7299],"id":56986,"properties":{"V":345}},{"type":"LineString","arcs":[7300],"id":56988,"properties":{"V":230}},{"type":"LineString","arcs":[7301],"id":56997,"properties":{"V":230}},{"type":"LineString","arcs":[7302],"id":57005,"properties":{"V":345}},{"type":"LineString","arcs":[7303],"id":57011,"properties":{"V":230}},{"type":"LineString","arcs":[7304],"id":57013,"properties":{"V":230}},{"type":"LineString","arcs":[7305],"id":57027,"properties":{"V":230}},{"type":"LineString","arcs":[7306],"id":57035,"properties":{"V":230}},{"type":"LineString","arcs":[7307],"id":57049,"properties":{"V":230}},{"type":"LineString","arcs":[7308],"id":57050,"properties":{"V":345}},{"type":"LineString","arcs":[7309],"id":57051,"properties":{"V":230}},{"type":"LineString","arcs":[7310],"id":57052,"properties":{"V":345}},{"type":"LineString","arcs":[7311],"id":57054,"properties":{"V":500}},{"type":"LineString","arcs":[7312],"id":57061,"properties":{"V":230}},{"type":"LineString","arcs":[7313,7314],"id":57068,"properties":{"V":500}},{"type":"LineString","arcs":[7315],"id":57078,"properties":{"V":230}},{"type":"LineString","arcs":[7316],"id":57089,"properties":{"V":230}},{"type":"LineString","arcs":[7317],"id":57093,"properties":{"V":345}},{"type":"LineString","arcs":[7318],"id":57094,"properties":{"V":230}},{"type":"LineString","arcs":[7319],"id":57114,"properties":{"V":230}},{"type":"LineString","arcs":[7320],"id":57115,"properties":{"V":230}},{"type":"LineString","arcs":[7321,7322,7323],"id":57131,"properties":{"V":230}},{"type":"LineString","arcs":[7324],"id":57149,"properties":{"V":230}},{"type":"LineString","arcs":[7325],"id":57152,"properties":{"V":230}},{"type":"LineString","arcs":[7326],"id":57171,"properties":{"V":345}},{"type":"LineString","arcs":[7327],"id":57177,"properties":{"V":230}},{"type":"LineString","arcs":[7328],"id":57185,"properties":{"V":230}},{"type":"LineString","arcs":[7329],"id":57209,"properties":{"V":230}},{"type":"LineString","arcs":[7330],"id":57217,"properties":{"V":230}},{"type":"LineString","arcs":[7331],"id":57218,"properties":{"V":230}},{"type":"LineString","arcs":[7332],"id":57220,"properties":{"V":230}},{"type":"LineString","arcs":[7333,7334],"id":57223,"properties":{"V":500}},{"type":"LineString","arcs":[7335],"id":57241,"properties":{"V":345}},{"type":"LineString","arcs":[7336],"id":57263,"properties":{"V":230}},{"type":"LineString","arcs":[7337],"id":57307,"properties":{"V":345}},{"type":"LineString","arcs":[7338],"id":57308,"properties":{"V":230}},{"type":"LineString","arcs":[7339],"id":57326,"properties":{"V":230}},{"type":"LineString","arcs":[7340],"id":57338,"properties":{"V":345}},{"type":"LineString","arcs":[7341],"id":57358,"properties":{"V":230}},{"type":"LineString","arcs":[7342],"id":57359,"properties":{"V":230}},{"type":"LineString","arcs":[7343],"id":57360,"properties":{"V":230}},{"type":"LineString","arcs":[7344],"id":57367,"properties":{"V":345}},{"type":"LineString","arcs":[7345],"id":57381,"properties":{"V":345}},{"type":"LineString","arcs":[7346],"id":57397,"properties":{"V":230}},{"type":"LineString","arcs":[7347],"id":57399,"properties":{"V":345}},{"type":"LineString","arcs":[7348],"id":57407,"properties":{"V":230}},{"type":"LineString","arcs":[7349],"id":57409,"properties":{"V":230}},{"type":"LineString","arcs":[7350],"id":57415,"properties":{"V":230}},{"type":"LineString","arcs":[7351],"id":57424,"properties":{"V":500}},{"type":"LineString","arcs":[7352],"id":57428,"properties":{"V":230}},{"type":"LineString","arcs":[7353],"id":57434,"properties":{"V":230}},{"type":"LineString","arcs":[7354],"id":57444,"properties":{"V":230}},{"type":"LineString","arcs":[7355],"id":57462,"properties":{"V":230}},{"type":"LineString","arcs":[7356],"id":57467,"properties":{"V":230}},{"type":"LineString","arcs":[7357],"id":57481,"properties":{"V":230}},{"type":"LineString","arcs":[7358],"id":57491,"properties":{"V":230}},{"type":"LineString","arcs":[7359],"id":57497,"properties":{"V":230}},{"type":"LineString","arcs":[7360],"id":57500,"properties":{"V":230}},{"type":"LineString","arcs":[7361],"id":57502,"properties":{"V":230}},{"type":"LineString","arcs":[7362],"id":57506,"properties":{"V":230}},{"type":"LineString","arcs":[7363],"id":57507,"properties":{"V":230}},{"type":"LineString","arcs":[7364],"id":57516,"properties":{"V":230}},{"type":"LineString","arcs":[7365],"id":57518,"properties":{"V":230}},{"type":"LineString","arcs":[7366],"id":57519,"properties":{"V":230}},{"type":"LineString","arcs":[7367],"id":57521,"properties":{"V":230}},{"type":"LineString","arcs":[7368],"id":57528,"properties":{"V":230}},{"type":"LineString","arcs":[7369],"id":57531,"properties":{"V":230}},{"type":"LineString","arcs":[7370],"id":57536,"properties":{"V":230}},{"type":"LineString","arcs":[7371],"id":57541,"properties":{"V":230}},{"type":"LineString","arcs":[7372],"id":57560,"properties":{"V":345}},{"type":"LineString","arcs":[7373],"id":57562,"properties":{"V":230}},{"type":"LineString","arcs":[7374],"id":57564,"properties":{"V":345}},{"type":"LineString","arcs":[7375],"id":57573,"properties":{"V":345}},{"type":"LineString","arcs":[7376],"id":57583,"properties":{"V":345}},{"type":"LineString","arcs":[7377],"id":57589,"properties":{"V":345}},{"type":"LineString","arcs":[7378],"id":57594,"properties":{"V":230}},{"type":"LineString","arcs":[7379],"id":57597,"properties":{"V":230}},{"type":"LineString","arcs":[7380],"id":57601,"properties":{"V":345}},{"type":"LineString","arcs":[7381],"id":57603,"properties":{"V":230}},{"type":"LineString","arcs":[7382],"id":57605,"properties":{"V":345}},{"type":"LineString","arcs":[7383],"id":57607,"properties":{"V":230}},{"type":"LineString","arcs":[7384],"id":57611,"properties":{"V":230}},{"type":"LineString","arcs":[7385],"id":57621,"properties":{"V":230}},{"type":"LineString","arcs":[7386],"id":57625,"properties":{"V":230}},{"type":"LineString","arcs":[7387],"id":57632,"properties":{"V":345}},{"type":"LineString","arcs":[7388],"id":57636,"properties":{"V":230}},{"type":"LineString","arcs":[7389],"id":57641,"properties":{"V":345}},{"type":"LineString","arcs":[7390],"id":57644,"properties":{"V":345}},{"type":"LineString","arcs":[7391],"id":57647,"properties":{"V":500}},{"type":"LineString","arcs":[7392],"id":57650,"properties":{"V":230}},{"type":"LineString","arcs":[7393],"id":57663,"properties":{"V":230}},{"type":"LineString","arcs":[7394],"id":57677,"properties":{"V":230}},{"type":"LineString","arcs":[7395],"id":57678,"properties":{"V":230}},{"type":"LineString","arcs":[7396],"id":57687,"properties":{"V":230}},{"type":"LineString","arcs":[7397],"id":57698,"properties":{"V":230}},{"type":"LineString","arcs":[7398],"id":57716,"properties":{"V":345}},{"type":"LineString","arcs":[7399,7400,7401,7402],"id":57730,"properties":{"V":500}},{"type":"LineString","arcs":[7403],"id":57734,"properties":{"V":345}},{"type":"LineString","arcs":[7404],"id":57738,"properties":{"V":345}},{"type":"LineString","arcs":[7405],"id":57739,"properties":{"V":500}},{"type":"LineString","arcs":[7406],"id":57742,"properties":{"V":230}},{"type":"LineString","arcs":[7407],"id":57746,"properties":{"V":345}},{"type":"LineString","arcs":[7408],"id":57747,"properties":{"V":230}},{"type":"LineString","arcs":[7409],"id":57750,"properties":{"V":230}},{"type":"LineString","arcs":[7410],"id":57755,"properties":{"V":230}},{"type":"LineString","arcs":[7411],"id":57764,"properties":{"V":500}},{"type":"LineString","arcs":[7412,7413],"id":57774,"properties":{"V":230}},{"type":"LineString","arcs":[7414,7415],"id":57786,"properties":{"V":500}},{"type":"LineString","arcs":[7416],"id":57792,"properties":{"V":500}},{"type":"LineString","arcs":[7417],"id":57808,"properties":{"V":345}},{"type":"LineString","arcs":[7418],"id":57817,"properties":{"V":230}},{"type":"LineString","arcs":[7419],"id":57823,"properties":{"V":345}},{"type":"LineString","arcs":[7420],"id":57831,"properties":{"V":230}},{"type":"LineString","arcs":[7421],"id":57875,"properties":{"V":230}},{"type":"LineString","arcs":[7422],"id":57880,"properties":{"V":230}},{"type":"LineString","arcs":[7423],"id":57885,"properties":{"V":230}},{"type":"LineString","arcs":[7424],"id":57888,"properties":{"V":230}},{"type":"LineString","arcs":[7425],"id":57893,"properties":{"V":230}},{"type":"LineString","arcs":[7426],"id":57895,"properties":{"V":230}},{"type":"LineString","arcs":[7427],"id":57912,"properties":{"V":500}},{"type":"LineString","arcs":[7428],"id":57918,"properties":{"V":230}},{"type":"LineString","arcs":[7429],"id":57927,"properties":{"V":230}},{"type":"LineString","arcs":[7430],"id":57940,"properties":{"V":230}},{"type":"LineString","arcs":[7431],"id":57961,"properties":{"V":345}},{"type":"LineString","arcs":[7432],"id":57973,"properties":{"V":345}},{"type":"LineString","arcs":[7433],"id":57976,"properties":{"V":230}},{"type":"LineString","arcs":[7434],"id":57993,"properties":{"V":230}},{"type":"LineString","arcs":[7435],"id":57996,"properties":{"V":230}},{"type":"LineString","arcs":[7436],"id":58002,"properties":{"V":230}},{"type":"LineString","arcs":[7437],"id":58006,"properties":{"V":230}},{"type":"LineString","arcs":[7438],"id":58009,"properties":{"V":230}},{"type":"LineString","arcs":[7439],"id":58035,"properties":{"V":230}},{"type":"LineString","arcs":[7440],"id":58040,"properties":{"V":500}},{"type":"LineString","arcs":[7441,7442],"id":58044,"properties":{"V":500}},{"type":"LineString","arcs":[7443],"id":58050,"properties":{"V":230}},{"type":"LineString","arcs":[7444],"id":58056,"properties":{"V":230}},{"type":"LineString","arcs":[7445],"id":58060,"properties":{"V":230}},{"type":"LineString","arcs":[7446],"id":58062,"properties":{"V":230}},{"type":"LineString","arcs":[7447],"id":58081,"properties":{"V":230}},{"type":"LineString","arcs":[7448],"id":58084,"properties":{"V":230}},{"type":"LineString","arcs":[7449],"id":58091,"properties":{"V":345}},{"type":"LineString","arcs":[7450],"id":58095,"properties":{"V":345}},{"type":"LineString","arcs":[7451,7452],"id":58096,"properties":{"V":345}},{"type":"LineString","arcs":[7453],"id":58098,"properties":{"V":230}},{"type":"LineString","arcs":[7454],"id":58100,"properties":{"V":345}},{"type":"LineString","arcs":[7455],"id":58101,"properties":{"V":345}},{"type":"LineString","arcs":[7456],"id":58109,"properties":{"V":345}},{"type":"LineString","arcs":[7457],"id":58115,"properties":{"V":345}},{"type":"LineString","arcs":[7458],"id":58131,"properties":{"V":230}},{"type":"LineString","arcs":[7459],"id":58132,"properties":{"V":500}},{"type":"LineString","arcs":[7460],"id":58143,"properties":{"V":230}},{"type":"LineString","arcs":[7461],"id":58145,"properties":{"V":230}},{"type":"LineString","arcs":[7462],"id":58154,"properties":{"V":345}},{"type":"LineString","arcs":[7463],"id":58156,"properties":{"V":345}},{"type":"LineString","arcs":[7464],"id":58161,"properties":{"V":230}},{"type":"LineString","arcs":[7465],"id":58165,"properties":{"V":230}},{"type":"LineString","arcs":[7466],"id":58169,"properties":{"V":230}},{"type":"LineString","arcs":[7467],"id":58173,"properties":{"V":230}},{"type":"LineString","arcs":[7468],"id":58187,"properties":{"V":230}},{"type":"LineString","arcs":[7469],"id":58192,"properties":{"V":230}},{"type":"LineString","arcs":[7470],"id":58204,"properties":{"V":230}},{"type":"LineString","arcs":[7471],"id":58223,"properties":{"V":230}},{"type":"LineString","arcs":[7472],"id":58242,"properties":{"V":230}},{"type":"LineString","arcs":[7473],"id":58257,"properties":{"V":345}},{"type":"LineString","arcs":[7474],"id":58261,"properties":{"V":230}},{"type":"LineString","arcs":[7475],"id":58262,"properties":{"V":230}},{"type":"LineString","arcs":[7476],"id":58263,"properties":{"V":230}},{"type":"LineString","arcs":[7477],"id":58265,"properties":{"V":230}},{"type":"LineString","arcs":[7478],"id":58266,"properties":{"V":230}},{"type":"LineString","arcs":[7479],"id":58271,"properties":{"V":230}},{"type":"LineString","arcs":[7480],"id":58279,"properties":{"V":230}},{"type":"LineString","arcs":[7481],"id":58283,"properties":{"V":345}},{"type":"LineString","arcs":[7482],"id":58291,"properties":{"V":500}},{"type":"LineString","arcs":[7483],"id":58301,"properties":{"V":345}},{"type":"LineString","arcs":[7484],"id":58304,"properties":{"V":345}},{"type":"LineString","arcs":[7485],"id":58306,"properties":{"V":230}},{"type":"LineString","arcs":[7486],"id":58324,"properties":{"V":230}},{"type":"LineString","arcs":[7487],"id":58339,"properties":{"V":230}},{"type":"LineString","arcs":[7488],"id":58355,"properties":{"V":230}},{"type":"LineString","arcs":[7489],"id":58362,"properties":{"V":230}},{"type":"LineString","arcs":[7490],"id":58380,"properties":{"V":345}},{"type":"LineString","arcs":[7491],"id":58385,"properties":{"V":345}},{"type":"LineString","arcs":[7492],"id":58390,"properties":{"V":500}},{"type":"LineString","arcs":[7493],"id":58400,"properties":{"V":345}},{"type":"LineString","arcs":[7494],"id":58404,"properties":{"V":500}},{"type":"LineString","arcs":[7495],"id":58426,"properties":{"V":230}},{"type":"LineString","arcs":[7496],"id":58440,"properties":{"V":230}},{"type":"LineString","arcs":[7497],"id":58447,"properties":{"V":345}},{"type":"LineString","arcs":[7498],"id":58448,"properties":{"V":500}},{"type":"LineString","arcs":[7499],"id":58455,"properties":{"V":230}},{"type":"LineString","arcs":[7500],"id":58464,"properties":{"V":230}},{"type":"LineString","arcs":[7501],"id":58474,"properties":{"V":345}},{"type":"LineString","arcs":[7502],"id":58498,"properties":{"V":230}},{"type":"LineString","arcs":[7503],"id":58512,"properties":{"V":345}},{"type":"LineString","arcs":[7504],"id":58520,"properties":{"V":230}},{"type":"LineString","arcs":[7505],"id":58530,"properties":{"V":230}},{"type":"LineString","arcs":[7506],"id":58537,"properties":{"V":230}},{"type":"LineString","arcs":[7507],"id":58553,"properties":{"V":230}},{"type":"LineString","arcs":[7508],"id":58560,"properties":{"V":345}},{"type":"LineString","arcs":[7509],"id":58607,"properties":{"V":230}},{"type":"LineString","arcs":[7510],"id":58620,"properties":{"V":500}},{"type":"LineString","arcs":[7511],"id":58626,"properties":{"V":230}},{"type":"LineString","arcs":[7512],"id":58628,"properties":{"V":345}},{"type":"LineString","arcs":[7513],"id":58642,"properties":{"V":230}},{"type":"LineString","arcs":[7514],"id":58644,"properties":{"V":345}},{"type":"LineString","arcs":[7515],"id":58647,"properties":{"V":345}},{"type":"LineString","arcs":[7516],"id":58649,"properties":{"V":345}},{"type":"LineString","arcs":[7517],"id":58657,"properties":{"V":230}},{"type":"LineString","arcs":[7518],"id":58672,"properties":{"V":230}},{"type":"LineString","arcs":[7519],"id":58684,"properties":{"V":230}},{"type":"LineString","arcs":[7520],"id":58691,"properties":{"V":230}},{"type":"LineString","arcs":[7521],"id":58710,"properties":{"V":230}},{"type":"LineString","arcs":[7522],"id":58715,"properties":{"V":230}},{"type":"LineString","arcs":[7523],"id":58721,"properties":{"V":345}},{"type":"LineString","arcs":[7524],"id":58736,"properties":{"V":345}},{"type":"LineString","arcs":[7525],"id":58744,"properties":{"V":230}},{"type":"LineString","arcs":[7526],"id":58769,"properties":{"V":230}},{"type":"LineString","arcs":[7527],"id":58771,"properties":{"V":345}},{"type":"LineString","arcs":[7528],"id":58783,"properties":{"V":230}},{"type":"LineString","arcs":[7529],"id":58795,"properties":{"V":230}},{"type":"LineString","arcs":[7530],"id":58823,"properties":{"V":230}},{"type":"LineString","arcs":[7531],"id":58828,"properties":{"V":230}},{"type":"LineString","arcs":[7532],"id":58833,"properties":{"V":230}},{"type":"LineString","arcs":[7533],"id":58834,"properties":{"V":345}},{"type":"LineString","arcs":[7534],"id":58842,"properties":{"V":230}},{"type":"LineString","arcs":[7535],"id":58844,"properties":{"V":230}},{"type":"LineString","arcs":[7536],"id":58880,"properties":{"V":230}},{"type":"LineString","arcs":[7537],"id":58899,"properties":{"V":230}},{"type":"LineString","arcs":[7538],"id":58908,"properties":{"V":230}},{"type":"LineString","arcs":[7539],"id":58909,"properties":{"V":230}},{"type":"LineString","arcs":[7540],"id":58926,"properties":{"V":230}},{"type":"LineString","arcs":[7541],"id":58939,"properties":{"V":230}},{"type":"LineString","arcs":[7542,7543],"id":58967,"properties":{"V":345}},{"type":"LineString","arcs":[7544],"id":58977,"properties":{"V":230}},{"type":"LineString","arcs":[7545],"id":58985,"properties":{"V":345}},{"type":"LineString","arcs":[7546],"id":59005,"properties":{"V":230}},{"type":"LineString","arcs":[7547],"id":59025,"properties":{"V":345}},{"type":"LineString","arcs":[7548],"id":59031,"properties":{"V":230}},{"type":"LineString","arcs":[7549],"id":59040,"properties":{"V":230}},{"type":"LineString","arcs":[7550],"id":59050,"properties":{"V":345}},{"type":"LineString","arcs":[7551],"id":59053,"properties":{"V":345}},{"type":"LineString","arcs":[7552],"id":59063,"properties":{"V":230}},{"type":"LineString","arcs":[7553],"id":59070,"properties":{"V":230}},{"type":"LineString","arcs":[7554],"id":59078,"properties":{"V":345}},{"type":"LineString","arcs":[7555],"id":59084,"properties":{"V":230}},{"type":"LineString","arcs":[7556],"id":59112,"properties":{"V":230}},{"type":"LineString","arcs":[7557],"id":59124,"properties":{"V":230}},{"type":"LineString","arcs":[7558],"id":59143,"properties":{"V":230}},{"type":"LineString","arcs":[7559],"id":59144,"properties":{"V":345}},{"type":"LineString","arcs":[7560],"id":59151,"properties":{"V":230}},{"type":"LineString","arcs":[7561],"id":59162,"properties":{"V":230}},{"type":"LineString","arcs":[7562],"id":59170,"properties":{"V":230}},{"type":"LineString","arcs":[7563],"id":59194,"properties":{"V":230}},{"type":"LineString","arcs":[7564],"id":59196,"properties":{"V":345}},{"type":"LineString","arcs":[7565],"id":59198,"properties":{"V":345}},{"type":"LineString","arcs":[7566],"id":59201,"properties":{"V":230}},{"type":"LineString","arcs":[7567],"id":59203,"properties":{"V":345}},{"type":"LineString","arcs":[7568],"id":59204,"properties":{"V":230}},{"type":"LineString","arcs":[7569],"id":59205,"properties":{"V":345}},{"type":"LineString","arcs":[7570],"id":59261,"properties":{"V":230}},{"type":"LineString","arcs":[7571],"id":59270,"properties":{"V":500}},{"type":"LineString","arcs":[7572],"id":59271,"properties":{"V":230}},{"type":"LineString","arcs":[7573],"id":59273,"properties":{"V":230}},{"type":"LineString","arcs":[7574],"id":59280,"properties":{"V":230}},{"type":"LineString","arcs":[7575],"id":59289,"properties":{"V":230}},{"type":"LineString","arcs":[7576],"id":59291,"properties":{"V":230}},{"type":"LineString","arcs":[7577],"id":59304,"properties":{"V":500}},{"type":"LineString","arcs":[7578],"id":59305,"properties":{"V":230}},{"type":"LineString","arcs":[7579],"id":59306,"properties":{"V":345}},{"type":"LineString","arcs":[7580],"id":59313,"properties":{"V":230}},{"type":"LineString","arcs":[7581],"id":59317,"properties":{"V":765}},{"type":"LineString","arcs":[7582],"id":59325,"properties":{"V":345}},{"type":"LineString","arcs":[7583],"id":59328,"properties":{"V":345}},{"type":"LineString","arcs":[7584],"id":59337,"properties":{"V":345}},{"type":"LineString","arcs":[7585],"id":59345,"properties":{"V":345}},{"type":"LineString","arcs":[7586],"id":59350,"properties":{"V":230}},{"type":"LineString","arcs":[7587],"id":59356,"properties":{"V":230}},{"type":"LineString","arcs":[7588],"id":59357,"properties":{"V":230}},{"type":"LineString","arcs":[7589],"id":59408,"properties":{"V":230}},{"type":"LineString","arcs":[7590],"id":59413,"properties":{"V":230}},{"type":"LineString","arcs":[7591],"id":59433,"properties":{"V":345}},{"type":"LineString","arcs":[7592],"id":59438,"properties":{"V":345}},{"type":"LineString","arcs":[7593],"id":59443,"properties":{"V":230}},{"type":"LineString","arcs":[7594],"id":59445,"properties":{"V":230}},{"type":"LineString","arcs":[7595],"id":59449,"properties":{"V":230}},{"type":"LineString","arcs":[7596],"id":59465,"properties":{"V":230}},{"type":"LineString","arcs":[7597],"id":59478,"properties":{"V":230}},{"type":"LineString","arcs":[7598],"id":59493,"properties":{"V":230}},{"type":"LineString","arcs":[7599],"id":59497,"properties":{"V":230}},{"type":"LineString","arcs":[7600,7601],"id":59499,"properties":{"V":345}},{"type":"LineString","arcs":[7602],"id":59525,"properties":{"V":230}},{"type":"LineString","arcs":[7603],"id":59531,"properties":{"V":230}},{"type":"LineString","arcs":[7604],"id":59555,"properties":{"V":230}},{"type":"LineString","arcs":[7605],"id":59558,"properties":{"V":345}},{"type":"LineString","arcs":[7606,7607,7608,7609,7610,7611,7612,7613,7614],"id":59559,"properties":{"V":500}},{"type":"LineString","arcs":[7615],"id":59563,"properties":{"V":230}},{"type":"LineString","arcs":[7616],"id":59571,"properties":{"V":230}},{"type":"LineString","arcs":[7617],"id":59575,"properties":{"V":230}},{"type":"LineString","arcs":[7618,7619],"id":59582,"properties":{"V":230}},{"type":"LineString","arcs":[7620],"id":59595,"properties":{"V":230}},{"type":"LineString","arcs":[7621],"id":59604,"properties":{"V":345}},{"type":"LineString","arcs":[7622],"id":59609,"properties":{"V":230}},{"type":"LineString","arcs":[7623],"id":59626,"properties":{"V":230}},{"type":"LineString","arcs":[7624],"id":59630,"properties":{"V":230}},{"type":"LineString","arcs":[7625],"id":59631,"properties":{"V":345}},{"type":"LineString","arcs":[7626],"id":59643,"properties":{"V":230}},{"type":"LineString","arcs":[7627],"id":59652,"properties":{"V":765}},{"type":"LineString","arcs":[7628],"id":59655,"properties":{"V":345}},{"type":"LineString","arcs":[7629],"id":59661,"properties":{"V":230}},{"type":"LineString","arcs":[7630],"id":59684,"properties":{"V":345}},{"type":"LineString","arcs":[7631],"id":59685,"properties":{"V":230}},{"type":"LineString","arcs":[7632,7633,7634],"id":59687,"properties":{"V":230}},{"type":"LineString","arcs":[7635],"id":59720,"properties":{"V":230}},{"type":"LineString","arcs":[7636],"id":59724,"properties":{"V":230}},{"type":"LineString","arcs":[7637],"id":59733,"properties":{"V":345}},{"type":"LineString","arcs":[7638],"id":59736,"properties":{"V":500}},{"type":"LineString","arcs":[7639],"id":59740,"properties":{"V":345}},{"type":"LineString","arcs":[7640],"id":59777,"properties":{"V":230}},{"type":"LineString","arcs":[7641],"id":59785,"properties":{"V":500}},{"type":"LineString","arcs":[7642],"id":59792,"properties":{"V":345}},{"type":"LineString","arcs":[7643],"id":59797,"properties":{"V":230}},{"type":"LineString","arcs":[7644],"id":59798,"properties":{"V":345}},{"type":"LineString","arcs":[7645],"id":59811,"properties":{"V":230}},{"type":"LineString","arcs":[7646,7647,7648],"id":59812,"properties":{"V":230}},{"type":"LineString","arcs":[7649],"id":59813,"properties":{"V":230}},{"type":"LineString","arcs":[7650],"id":59816,"properties":{"V":230}},{"type":"LineString","arcs":[7651],"id":59832,"properties":{"V":230}},{"type":"LineString","arcs":[7652],"id":59837,"properties":{"V":230}},{"type":"LineString","arcs":[7653],"id":59849,"properties":{"V":345}},{"type":"LineString","arcs":[7654],"id":59850,"properties":{"V":345}},{"type":"LineString","arcs":[7655],"id":59865,"properties":{"V":500}},{"type":"LineString","arcs":[7656],"id":59877,"properties":{"V":230}},{"type":"LineString","arcs":[7657],"id":59893,"properties":{"V":230}},{"type":"LineString","arcs":[7658],"id":59906,"properties":{"V":230}},{"type":"LineString","arcs":[7659],"id":59909,"properties":{"V":345}},{"type":"LineString","arcs":[7660],"id":59925,"properties":{"V":230}},{"type":"LineString","arcs":[7661],"id":59928,"properties":{"V":500}},{"type":"LineString","arcs":[7662],"id":59955,"properties":{"V":230}},{"type":"LineString","arcs":[7663],"id":59961,"properties":{"V":230}},{"type":"LineString","arcs":[7664],"id":59980,"properties":{"V":230}},{"type":"LineString","arcs":[7665],"id":60000,"properties":{"V":230}},{"type":"LineString","arcs":[7666],"id":60019,"properties":{"V":230}},{"type":"LineString","arcs":[7667],"id":60022,"properties":{"V":345}},{"type":"LineString","arcs":[7668],"id":60033,"properties":{"V":230}},{"type":"LineString","arcs":[7669],"id":60036,"properties":{"V":230}},{"type":"LineString","arcs":[7670],"id":60037,"properties":{"V":230}},{"type":"LineString","arcs":[7671],"id":60044,"properties":{"V":230}},{"type":"LineString","arcs":[7672],"id":60068,"properties":{"V":345}},{"type":"LineString","arcs":[7673],"id":60072,"properties":{"V":230}},{"type":"LineString","arcs":[7674],"id":60082,"properties":{"V":345}},{"type":"LineString","arcs":[7675],"id":60087,"properties":{"V":345}},{"type":"LineString","arcs":[7676],"id":60093,"properties":{"V":230}},{"type":"LineString","arcs":[7677],"id":60098,"properties":{"V":230}},{"type":"LineString","arcs":[7678],"id":60125,"properties":{"V":345}},{"type":"LineString","arcs":[7679],"id":60128,"properties":{"V":230}},{"type":"LineString","arcs":[7680],"id":60135,"properties":{"V":345}},{"type":"LineString","arcs":[7681],"id":60136,"properties":{"V":345}},{"type":"LineString","arcs":[7682],"id":60144,"properties":{"V":230}},{"type":"LineString","arcs":[7683],"id":60147,"properties":{"V":230}},{"type":"LineString","arcs":[7684],"id":60149,"properties":{"V":230}},{"type":"LineString","arcs":[7685,7686,7687],"id":60150,"properties":{"V":230}},{"type":"LineString","arcs":[7688],"id":60173,"properties":{"V":230}},{"type":"LineString","arcs":[7689],"id":60184,"properties":{"V":230}},{"type":"LineString","arcs":[7690],"id":60192,"properties":{"V":230}},{"type":"LineString","arcs":[7691],"id":60216,"properties":{"V":230}},{"type":"LineString","arcs":[7692],"id":60220,"properties":{"V":230}},{"type":"LineString","arcs":[7693],"id":60230,"properties":{"V":345}},{"type":"LineString","arcs":[7694],"id":60244,"properties":{"V":230}},{"type":"LineString","arcs":[7695],"id":60247,"properties":{"V":230}},{"type":"LineString","arcs":[7696],"id":60271,"properties":{"V":230}},{"type":"LineString","arcs":[7697],"id":60302,"properties":{"V":345}},{"type":"LineString","arcs":[7698],"id":60310,"properties":{"V":230}},{"type":"LineString","arcs":[7699],"id":60324,"properties":{"V":345}},{"type":"LineString","arcs":[7700],"id":60329,"properties":{"V":230}},{"type":"LineString","arcs":[7701],"id":60332,"properties":{"V":345}},{"type":"LineString","arcs":[7702],"id":60346,"properties":{"V":230}},{"type":"LineString","arcs":[7703],"id":60350,"properties":{"V":345}},{"type":"LineString","arcs":[7704],"id":60351,"properties":{"V":230}},{"type":"LineString","arcs":[7705],"id":60356,"properties":{"V":230}},{"type":"LineString","arcs":[7706],"id":60360,"properties":{"V":230}},{"type":"LineString","arcs":[7707,7708,7709],"id":60367,"properties":{"V":345}},{"type":"LineString","arcs":[7710],"id":60374,"properties":{"V":230}},{"type":"LineString","arcs":[7711],"id":60375,"properties":{"V":345}},{"type":"LineString","arcs":[7712],"id":60378,"properties":{"V":500}},{"type":"LineString","arcs":[7713],"id":60382,"properties":{"V":230}},{"type":"LineString","arcs":[7714],"id":60389,"properties":{"V":230}},{"type":"LineString","arcs":[7715],"id":60393,"properties":{"V":345}},{"type":"LineString","arcs":[7716],"id":60400,"properties":{"V":345}},{"type":"LineString","arcs":[7717],"id":60403,"properties":{"V":230}},{"type":"LineString","arcs":[7718],"id":60453,"properties":{"V":230}},{"type":"LineString","arcs":[7719],"id":60460,"properties":{"V":230}},{"type":"LineString","arcs":[7720],"id":60461,"properties":{"V":230}},{"type":"LineString","arcs":[7721,7722,7723],"id":60463,"properties":{"V":230}},{"type":"LineString","arcs":[7724],"id":60464,"properties":{"V":230}},{"type":"LineString","arcs":[7725],"id":60468,"properties":{"V":230}},{"type":"LineString","arcs":[7726],"id":60482,"properties":{"V":230}},{"type":"LineString","arcs":[7727],"id":60483,"properties":{"V":230}},{"type":"LineString","arcs":[7728],"id":60488,"properties":{"V":500}},{"type":"LineString","arcs":[7729],"id":60490,"properties":{"V":345}},{"type":"LineString","arcs":[7730],"id":60508,"properties":{"V":500}},{"type":"LineString","arcs":[7731],"id":60514,"properties":{"V":230}},{"type":"LineString","arcs":[7732],"id":60528,"properties":{"V":230}},{"type":"LineString","arcs":[7733],"id":60530,"properties":{"V":230}},{"type":"LineString","arcs":[7734],"id":60552,"properties":{"V":345}},{"type":"LineString","arcs":[7735],"id":60557,"properties":{"V":230}},{"type":"LineString","arcs":[7736],"id":60560,"properties":{"V":345}},{"type":"LineString","arcs":[7737],"id":60568,"properties":{"V":345}},{"type":"LineString","arcs":[7738],"id":60577,"properties":{"V":230}},{"type":"LineString","arcs":[7739],"id":60588,"properties":{"V":230}},{"type":"LineString","arcs":[7740],"id":60611,"properties":{"V":500}},{"type":"LineString","arcs":[7741],"id":60620,"properties":{"V":230}},{"type":"LineString","arcs":[7742],"id":60633,"properties":{"V":500}},{"type":"LineString","arcs":[7743],"id":60634,"properties":{"V":230}},{"type":"LineString","arcs":[7744],"id":60640,"properties":{"V":230}},{"type":"LineString","arcs":[7745],"id":60641,"properties":{"V":230}},{"type":"LineString","arcs":[7746],"id":60643,"properties":{"V":500}},{"type":"LineString","arcs":[7747],"id":60650,"properties":{"V":230}},{"type":"LineString","arcs":[7748],"id":60651,"properties":{"V":500}},{"type":"LineString","arcs":[7749],"id":60664,"properties":{"V":230}},{"type":"LineString","arcs":[7750],"id":60671,"properties":{"V":230}},{"type":"LineString","arcs":[7751],"id":60674,"properties":{"V":230}},{"type":"LineString","arcs":[7752],"id":60700,"properties":{"V":230}},{"type":"LineString","arcs":[7753],"id":60714,"properties":{"V":230}},{"type":"LineString","arcs":[7754],"id":60716,"properties":{"V":345}},{"type":"LineString","arcs":[7755],"id":60721,"properties":{"V":230}},{"type":"LineString","arcs":[7756],"id":60726,"properties":{"V":230}},{"type":"LineString","arcs":[7757],"id":60730,"properties":{"V":230}},{"type":"LineString","arcs":[7758],"id":60737,"properties":{"V":345}},{"type":"LineString","arcs":[7759],"id":60748,"properties":{"V":230}},{"type":"LineString","arcs":[7760],"id":60769,"properties":{"V":230}},{"type":"LineString","arcs":[7761],"id":60780,"properties":{"V":230}},{"type":"LineString","arcs":[7762],"id":60814,"properties":{"V":345}},{"type":"LineString","arcs":[7763],"id":60823,"properties":{"V":345}},{"type":"LineString","arcs":[7764],"id":60833,"properties":{"V":230}},{"type":"LineString","arcs":[7765],"id":60877,"properties":{"V":230}},{"type":"LineString","arcs":[7766],"id":60881,"properties":{"V":230}},{"type":"LineString","arcs":[7767],"id":60905,"properties":{"V":230}},{"type":"LineString","arcs":[7768],"id":60910,"properties":{"V":500}},{"type":"LineString","arcs":[7769],"id":60940,"properties":{"V":500}},{"type":"LineString","arcs":[7770,7771],"id":60958,"properties":{"V":500}},{"type":"LineString","arcs":[7772],"id":60960,"properties":{"V":230}},{"type":"LineString","arcs":[7773],"id":60965,"properties":{"V":230}},{"type":"LineString","arcs":[7774],"id":60980,"properties":{"V":230}},{"type":"LineString","arcs":[7775],"id":60981,"properties":{"V":230}},{"type":"LineString","arcs":[7776],"id":60983,"properties":{"V":345}},{"type":"LineString","arcs":[7777],"id":60989,"properties":{"V":230}},{"type":"LineString","arcs":[7778,7779,7780],"id":60999,"properties":{"V":230}},{"type":"LineString","arcs":[7781],"id":61001,"properties":{"V":230}},{"type":"LineString","arcs":[7782],"id":61011,"properties":{"V":230}},{"type":"LineString","arcs":[7783],"id":61016,"properties":{"V":230}},{"type":"LineString","arcs":[7784],"id":61035,"properties":{"V":230}},{"type":"LineString","arcs":[7785],"id":61053,"properties":{"V":230}},{"type":"LineString","arcs":[7786],"id":61064,"properties":{"V":500}},{"type":"LineString","arcs":[7787],"id":61084,"properties":{"V":500}},{"type":"LineString","arcs":[7788],"id":61085,"properties":{"V":230}},{"type":"LineString","arcs":[7789],"id":61094,"properties":{"V":230}},{"type":"LineString","arcs":[7790],"id":61101,"properties":{"V":345}},{"type":"LineString","arcs":[7791],"id":61105,"properties":{"V":230}},{"type":"LineString","arcs":[7792],"id":61146,"properties":{"V":230}},{"type":"LineString","arcs":[7793],"id":61154,"properties":{"V":230}},{"type":"LineString","arcs":[7794],"id":61159,"properties":{"V":230}},{"type":"LineString","arcs":[7795],"id":61169,"properties":{"V":230}},{"type":"LineString","arcs":[7796],"id":61184,"properties":{"V":345}},{"type":"LineString","arcs":[7797],"id":61186,"properties":{"V":230}},{"type":"LineString","arcs":[7798],"id":61188,"properties":{"V":345}},{"type":"LineString","arcs":[7799],"id":61189,"properties":{"V":230}},{"type":"LineString","arcs":[7800],"id":61191,"properties":{"V":230}},{"type":"LineString","arcs":[7801],"id":61192,"properties":{"V":345}},{"type":"LineString","arcs":[7802],"id":61195,"properties":{"V":230}},{"type":"LineString","arcs":[7803],"id":61207,"properties":{"V":230}},{"type":"LineString","arcs":[7804],"id":61213,"properties":{"V":345}},{"type":"LineString","arcs":[7805],"id":61226,"properties":{"V":230}},{"type":"LineString","arcs":[7806],"id":61248,"properties":{"V":345}},{"type":"LineString","arcs":[7807],"id":61253,"properties":{"V":230}},{"type":"LineString","arcs":[7808],"id":61264,"properties":{"V":345}},{"type":"LineString","arcs":[7809],"id":61269,"properties":{"V":345}},{"type":"LineString","arcs":[7810],"id":61279,"properties":{"V":230}},{"type":"LineString","arcs":[7811],"id":61283,"properties":{"V":230}},{"type":"LineString","arcs":[7812],"id":61284,"properties":{"V":345}},{"type":"LineString","arcs":[7813],"id":61296,"properties":{"V":500}},{"type":"LineString","arcs":[7814],"id":61298,"properties":{"V":345}},{"type":"LineString","arcs":[7815],"id":61299,"properties":{"V":230}},{"type":"LineString","arcs":[7816],"id":61306,"properties":{"V":230}},{"type":"LineString","arcs":[7817],"id":61326,"properties":{"V":345}},{"type":"LineString","arcs":[7818],"id":61328,"properties":{"V":500}},{"type":"LineString","arcs":[7819],"id":61329,"properties":{"V":230}},{"type":"LineString","arcs":[7820],"id":61339,"properties":{"V":230}},{"type":"LineString","arcs":[7821],"id":61349,"properties":{"V":230}},{"type":"LineString","arcs":[7822],"id":61368,"properties":{"V":500}},{"type":"LineString","arcs":[7823],"id":61372,"properties":{"V":230}},{"type":"LineString","arcs":[7824],"id":61375,"properties":{"V":230}},{"type":"LineString","arcs":[7825],"id":61383,"properties":{"V":230}},{"type":"LineString","arcs":[7826],"id":61384,"properties":{"V":345}},{"type":"LineString","arcs":[7827],"id":61387,"properties":{"V":230}},{"type":"LineString","arcs":[7828],"id":61406,"properties":{"V":500}},{"type":"LineString","arcs":[7829],"id":61410,"properties":{"V":230}},{"type":"LineString","arcs":[7830],"id":61419,"properties":{"V":230}},{"type":"LineString","arcs":[7831],"id":61423,"properties":{"V":230}},{"type":"LineString","arcs":[7832],"id":61446,"properties":{"V":230}},{"type":"LineString","arcs":[7833],"id":61485,"properties":{"V":230}},{"type":"LineString","arcs":[7834],"id":61504,"properties":{"V":345}},{"type":"LineString","arcs":[7835],"id":61507,"properties":{"V":230}},{"type":"LineString","arcs":[7836],"id":61509,"properties":{"V":230}},{"type":"LineString","arcs":[7837],"id":61513,"properties":{"V":230}},{"type":"LineString","arcs":[7838],"id":61517,"properties":{"V":345}},{"type":"LineString","arcs":[7839],"id":61531,"properties":{"V":230}},{"type":"LineString","arcs":[7840],"id":61550,"properties":{"V":345}},{"type":"LineString","arcs":[7841],"id":61560,"properties":{"V":230}},{"type":"LineString","arcs":[7842],"id":61576,"properties":{"V":230}},{"type":"LineString","arcs":[7843],"id":61577,"properties":{"V":230}},{"type":"LineString","arcs":[7844],"id":61601,"properties":{"V":345}},{"type":"LineString","arcs":[7845],"id":61613,"properties":{"V":230}},{"type":"LineString","arcs":[7846],"id":61622,"properties":{"V":345}},{"type":"LineString","arcs":[7847],"id":61643,"properties":{"V":230}},{"type":"LineString","arcs":[7848,7849,7850,7851],"id":61658,"properties":{"V":345}},{"type":"LineString","arcs":[7852],"id":61661,"properties":{"V":345}},{"type":"LineString","arcs":[7853],"id":61671,"properties":{"V":230}},{"type":"LineString","arcs":[7854],"id":61683,"properties":{"V":345}},{"type":"LineString","arcs":[7855],"id":61684,"properties":{"V":230}},{"type":"LineString","arcs":[7856],"id":61710,"properties":{"V":230}},{"type":"LineString","arcs":[7857],"id":61712,"properties":{"V":230}},{"type":"LineString","arcs":[7858],"id":61713,"properties":{"V":230}},{"type":"LineString","arcs":[7859],"id":61716,"properties":{"V":230}},{"type":"LineString","arcs":[7860],"id":61732,"properties":{"V":230}},{"type":"LineString","arcs":[7861],"id":61733,"properties":{"V":345}},{"type":"LineString","arcs":[7862],"id":61742,"properties":{"V":230}},{"type":"LineString","arcs":[7863],"id":61744,"properties":{"V":345}},{"type":"LineString","arcs":[7864],"id":61747,"properties":{"V":230}},{"type":"LineString","arcs":[7865],"id":61754,"properties":{"V":230}},{"type":"LineString","arcs":[7866],"id":61756,"properties":{"V":230}},{"type":"LineString","arcs":[7867],"id":61777,"properties":{"V":230}},{"type":"LineString","arcs":[7868],"id":61779,"properties":{"V":230}},{"type":"LineString","arcs":[7869],"id":61780,"properties":{"V":765}},{"type":"LineString","arcs":[7870,7871],"id":61782,"properties":{"V":345}},{"type":"LineString","arcs":[7872],"id":61793,"properties":{"V":345}},{"type":"LineString","arcs":[7873],"id":61795,"properties":{"V":345}},{"type":"LineString","arcs":[7874,7875],"id":61805,"properties":{"V":345}},{"type":"LineString","arcs":[7876],"id":61806,"properties":{"V":345}},{"type":"LineString","arcs":[7877],"id":61809,"properties":{"V":230}},{"type":"LineString","arcs":[7878],"id":61816,"properties":{"V":230}},{"type":"LineString","arcs":[7879],"id":61819,"properties":{"V":230}},{"type":"LineString","arcs":[7880],"id":61825,"properties":{"V":345}},{"type":"LineString","arcs":[7881],"id":61830,"properties":{"V":345}},{"type":"LineString","arcs":[7882],"id":61832,"properties":{"V":500}},{"type":"LineString","arcs":[7883],"id":61843,"properties":{"V":230}},{"type":"LineString","arcs":[7884],"id":61846,"properties":{"V":345}},{"type":"LineString","arcs":[7885],"id":61859,"properties":{"V":345}},{"type":"LineString","arcs":[7886],"id":61864,"properties":{"V":230}},{"type":"LineString","arcs":[7887],"id":61866,"properties":{"V":230}},{"type":"LineString","arcs":[7888],"id":61869,"properties":{"V":345}},{"type":"LineString","arcs":[7889],"id":61883,"properties":{"V":230}},{"type":"LineString","arcs":[7890],"id":61888,"properties":{"V":230}},{"type":"LineString","arcs":[7891],"id":61889,"properties":{"V":230}},{"type":"LineString","arcs":[7892],"id":61891,"properties":{"V":345}},{"type":"LineString","arcs":[7893],"id":61918,"properties":{"V":230}},{"type":"LineString","arcs":[7894],"id":61926,"properties":{"V":230}},{"type":"LineString","arcs":[7895],"id":61930,"properties":{"V":230}},{"type":"LineString","arcs":[7896,7897],"id":61944,"properties":{"V":345}},{"type":"LineString","arcs":[7898],"id":61960,"properties":{"V":345}},{"type":"LineString","arcs":[7899],"id":61966,"properties":{"V":345}},{"type":"LineString","arcs":[7900],"id":61976,"properties":{"V":345}},{"type":"LineString","arcs":[7901],"id":61979,"properties":{"V":230}},{"type":"LineString","arcs":[7902],"id":61980,"properties":{"V":345}},{"type":"LineString","arcs":[7903],"id":61984,"properties":{"V":230}},{"type":"LineString","arcs":[7904],"id":61993,"properties":{"V":230}},{"type":"LineString","arcs":[7905],"id":61994,"properties":{"V":230}},{"type":"LineString","arcs":[7906],"id":62002,"properties":{"V":230}},{"type":"LineString","arcs":[7907],"id":62003,"properties":{"V":230}},{"type":"LineString","arcs":[7908],"id":62004,"properties":{"V":230}},{"type":"LineString","arcs":[7909],"id":62022,"properties":{"V":230}},{"type":"LineString","arcs":[7910],"id":62025,"properties":{"V":230}},{"type":"LineString","arcs":[7911],"id":62027,"properties":{"V":230}},{"type":"LineString","arcs":[7912],"id":62036,"properties":{"V":500}},{"type":"LineString","arcs":[7913],"id":62040,"properties":{"V":230}},{"type":"LineString","arcs":[7914],"id":62041,"properties":{"V":345}},{"type":"LineString","arcs":[7915],"id":62043,"properties":{"V":230}},{"type":"LineString","arcs":[7916],"id":62055,"properties":{"V":230}},{"type":"LineString","arcs":[7917],"id":62056,"properties":{"V":230}},{"type":"LineString","arcs":[7918],"id":62061,"properties":{"V":500}},{"type":"LineString","arcs":[7919],"id":62062,"properties":{"V":230}},{"type":"LineString","arcs":[7920],"id":62069,"properties":{"V":230}},{"type":"LineString","arcs":[7921],"id":62074,"properties":{"V":345}},{"type":"LineString","arcs":[7922],"id":62088,"properties":{"V":230}},{"type":"LineString","arcs":[7923],"id":62089,"properties":{"V":230}},{"type":"LineString","arcs":[7924],"id":62090,"properties":{"V":345}},{"type":"LineString","arcs":[7925],"id":62099,"properties":{"V":345}},{"type":"LineString","arcs":[7926],"id":62108,"properties":{"V":230}},{"type":"LineString","arcs":[7927],"id":62111,"properties":{"V":230}},{"type":"LineString","arcs":[7928],"id":62112,"properties":{"V":345}},{"type":"LineString","arcs":[7929],"id":62116,"properties":{"V":230}},{"type":"LineString","arcs":[7930],"id":62120,"properties":{"V":345}},{"type":"LineString","arcs":[7931],"id":62128,"properties":{"V":345}},{"type":"LineString","arcs":[7932],"id":62143,"properties":{"V":230}},{"type":"LineString","arcs":[7933],"id":62160,"properties":{"V":230}},{"type":"LineString","arcs":[7934],"id":62168,"properties":{"V":230}},{"type":"LineString","arcs":[7935],"id":62173,"properties":{"V":230}},{"type":"LineString","arcs":[7936],"id":62183,"properties":{"V":345}},{"type":"LineString","arcs":[7937,7938],"id":62195,"properties":{"V":345}},{"type":"LineString","arcs":[7939],"id":62205,"properties":{"V":345}},{"type":"LineString","arcs":[7940],"id":62216,"properties":{"V":345}},{"type":"LineString","arcs":[7941],"id":62218,"properties":{"V":230}},{"type":"LineString","arcs":[7942],"id":62219,"properties":{"V":230}},{"type":"LineString","arcs":[7943],"id":62228,"properties":{"V":230}},{"type":"LineString","arcs":[7944],"id":62243,"properties":{"V":230}},{"type":"LineString","arcs":[7945],"id":62256,"properties":{"V":230}},{"type":"LineString","arcs":[7946],"id":62275,"properties":{"V":230}},{"type":"LineString","arcs":[7947],"id":62288,"properties":{"V":230}},{"type":"LineString","arcs":[7948],"id":62290,"properties":{"V":230}},{"type":"LineString","arcs":[7949],"id":62329,"properties":{"V":230}},{"type":"LineString","arcs":[7950],"id":62338,"properties":{"V":230}},{"type":"LineString","arcs":[7951],"id":62339,"properties":{"V":230}},{"type":"LineString","arcs":[7952],"id":62348,"properties":{"V":500}},{"type":"LineString","arcs":[7953],"id":62350,"properties":{"V":230}},{"type":"LineString","arcs":[7954],"id":62362,"properties":{"V":230}},{"type":"LineString","arcs":[7955],"id":62368,"properties":{"V":230}},{"type":"LineString","arcs":[7956],"id":62373,"properties":{"V":230}},{"type":"LineString","arcs":[7957],"id":62378,"properties":{"V":230}},{"type":"LineString","arcs":[7958],"id":62383,"properties":{"V":230}},{"type":"LineString","arcs":[7959],"id":62390,"properties":{"V":345}},{"type":"LineString","arcs":[7960],"id":62394,"properties":{"V":230}},{"type":"LineString","arcs":[7961],"id":62402,"properties":{"V":345}},{"type":"LineString","arcs":[7962],"id":62413,"properties":{"V":345}},{"type":"LineString","arcs":[7963],"id":62414,"properties":{"V":230}},{"type":"LineString","arcs":[7964],"id":62424,"properties":{"V":230}},{"type":"LineString","arcs":[7965],"id":62440,"properties":{"V":230}},{"type":"LineString","arcs":[7966],"id":62458,"properties":{"V":345}},{"type":"LineString","arcs":[7967],"id":62459,"properties":{"V":230}},{"type":"LineString","arcs":[7968],"id":62470,"properties":{"V":230}},{"type":"LineString","arcs":[7969],"id":62474,"properties":{"V":230}},{"type":"LineString","arcs":[7970],"id":62475,"properties":{"V":345}},{"type":"LineString","arcs":[7971],"id":62480,"properties":{"V":500}},{"type":"LineString","arcs":[7972],"id":62495,"properties":{"V":230}},{"type":"LineString","arcs":[7973],"id":62497,"properties":{"V":230}},{"type":"LineString","arcs":[7974],"id":62499,"properties":{"V":230}},{"type":"LineString","arcs":[7975],"id":62502,"properties":{"V":230}},{"type":"LineString","arcs":[7976],"id":62504,"properties":{"V":230}},{"type":"LineString","arcs":[7977],"id":62508,"properties":{"V":345}},{"type":"LineString","arcs":[7978],"id":62509,"properties":{"V":230}},{"type":"LineString","arcs":[7979],"id":62513,"properties":{"V":230}},{"type":"LineString","arcs":[7980],"id":62514,"properties":{"V":765}},{"type":"LineString","arcs":[7981],"id":62521,"properties":{"V":230}},{"type":"LineString","arcs":[7982],"id":62523,"properties":{"V":345}},{"type":"LineString","arcs":[7983],"id":62525,"properties":{"V":500}},{"type":"LineString","arcs":[7984],"id":62545,"properties":{"V":345}},{"type":"LineString","arcs":[7985],"id":62547,"properties":{"V":230}},{"type":"LineString","arcs":[7986],"id":62558,"properties":{"V":345}},{"type":"LineString","arcs":[7987],"id":62560,"properties":{"V":230}},{"type":"LineString","arcs":[7988],"id":62564,"properties":{"V":230}},{"type":"LineString","arcs":[7989],"id":62573,"properties":{"V":345}},{"type":"LineString","arcs":[7990],"id":62586,"properties":{"V":230}},{"type":"LineString","arcs":[7991],"id":62587,"properties":{"V":345}},{"type":"LineString","arcs":[7992],"id":62598,"properties":{"V":345}},{"type":"LineString","arcs":[7993],"id":62602,"properties":{"V":230}},{"type":"LineString","arcs":[7994],"id":62608,"properties":{"V":230}},{"type":"LineString","arcs":[7995],"id":62614,"properties":{"V":230}},{"type":"LineString","arcs":[7996],"id":62615,"properties":{"V":230}},{"type":"LineString","arcs":[7997],"id":62622,"properties":{"V":230}},{"type":"LineString","arcs":[7998],"id":62638,"properties":{"V":230}},{"type":"LineString","arcs":[7999,8000],"id":62650,"properties":{"V":230}},{"type":"LineString","arcs":[8001],"id":62655,"properties":{"V":230}},{"type":"LineString","arcs":[8002],"id":62661,"properties":{"V":500}},{"type":"LineString","arcs":[8003],"id":62670,"properties":{"V":230}},{"type":"LineString","arcs":[8004],"id":62672,"properties":{"V":345}},{"type":"LineString","arcs":[8005],"id":62675,"properties":{"V":230}},{"type":"LineString","arcs":[8006],"id":62676,"properties":{"V":345}},{"type":"LineString","arcs":[8007],"id":62680,"properties":{"V":230}},{"type":"LineString","arcs":[8008],"id":62683,"properties":{"V":230}},{"type":"LineString","arcs":[8009],"id":62684,"properties":{"V":345}},{"type":"LineString","arcs":[8010],"id":62692,"properties":{"V":230}},{"type":"LineString","arcs":[8011],"id":62704,"properties":{"V":345}},{"type":"LineString","arcs":[8012],"id":62710,"properties":{"V":230}},{"type":"LineString","arcs":[8013],"id":62714,"properties":{"V":345}},{"type":"LineString","arcs":[8014],"id":62718,"properties":{"V":345}},{"type":"LineString","arcs":[8015],"id":62721,"properties":{"V":230}},{"type":"LineString","arcs":[8016],"id":62723,"properties":{"V":345}},{"type":"LineString","arcs":[8017],"id":62728,"properties":{"V":230}},{"type":"LineString","arcs":[8018],"id":62730,"properties":{"V":230}},{"type":"LineString","arcs":[8019],"id":62731,"properties":{"V":345}},{"type":"LineString","arcs":[8020],"id":62738,"properties":{"V":230}},{"type":"LineString","arcs":[8021],"id":62739,"properties":{"V":230}},{"type":"LineString","arcs":[8022],"id":62763,"properties":{"V":500}},{"type":"LineString","arcs":[8023],"id":62772,"properties":{"V":230}},{"type":"LineString","arcs":[8024],"id":62776,"properties":{"V":230}},{"type":"LineString","arcs":[8025],"id":62777,"properties":{"V":230}},{"type":"LineString","arcs":[8026],"id":62789,"properties":{"V":230}},{"type":"LineString","arcs":[8027],"id":62822,"properties":{"V":345}},{"type":"LineString","arcs":[8028],"id":62846,"properties":{"V":230}},{"type":"LineString","arcs":[8029],"id":62851,"properties":{"V":345}},{"type":"LineString","arcs":[8030],"id":62860,"properties":{"V":230}},{"type":"LineString","arcs":[8031],"id":62885,"properties":{"V":230}},{"type":"LineString","arcs":[8032],"id":62909,"properties":{"V":230}},{"type":"LineString","arcs":[8033],"id":62924,"properties":{"V":230}},{"type":"LineString","arcs":[8034],"id":62927,"properties":{"V":230}},{"type":"LineString","arcs":[8035],"id":62932,"properties":{"V":230}},{"type":"LineString","arcs":[8036],"id":62947,"properties":{"V":230}},{"type":"LineString","arcs":[8037],"id":62958,"properties":{"V":230}},{"type":"LineString","arcs":[8038],"id":62995,"properties":{"V":345}},{"type":"LineString","arcs":[8039],"id":63000,"properties":{"V":230}},{"type":"LineString","arcs":[8040],"id":63015,"properties":{"V":230}},{"type":"LineString","arcs":[8041],"id":63021,"properties":{"V":230}},{"type":"LineString","arcs":[8042],"id":63025,"properties":{"V":230}},{"type":"LineString","arcs":[8043,8044],"id":63030,"properties":{"V":230}},{"type":"LineString","arcs":[8045],"id":63035,"properties":{"V":230}},{"type":"LineString","arcs":[8046],"id":63053,"properties":{"V":230}},{"type":"LineString","arcs":[8047],"id":63060,"properties":{"V":345}},{"type":"LineString","arcs":[8048],"id":63077,"properties":{"V":230}},{"type":"LineString","arcs":[8049],"id":63086,"properties":{"V":345}},{"type":"LineString","arcs":[8050],"id":63094,"properties":{"V":230}},{"type":"LineString","arcs":[8051],"id":63097,"properties":{"V":230}},{"type":"LineString","arcs":[8052],"id":63098,"properties":{"V":500}},{"type":"LineString","arcs":[8053],"id":63123,"properties":{"V":345}},{"type":"LineString","arcs":[8054],"id":63139,"properties":{"V":230}},{"type":"LineString","arcs":[8055],"id":63146,"properties":{"V":230}},{"type":"LineString","arcs":[8056],"id":63153,"properties":{"V":230}},{"type":"LineString","arcs":[8057],"id":63161,"properties":{"V":345}},{"type":"LineString","arcs":[8058],"id":63171,"properties":{"V":500}},{"type":"LineString","arcs":[8059],"id":63174,"properties":{"V":230}},{"type":"LineString","arcs":[8060],"id":63184,"properties":{"V":230}},{"type":"LineString","arcs":[8061],"id":63194,"properties":{"V":230}},{"type":"LineString","arcs":[8062],"id":63202,"properties":{"V":230}},{"type":"LineString","arcs":[8063],"id":63203,"properties":{"V":230}},{"type":"LineString","arcs":[8064,8065],"id":63208,"properties":{"V":345}},{"type":"LineString","arcs":[8066],"id":63213,"properties":{"V":345}},{"type":"LineString","arcs":[8067],"id":63214,"properties":{"V":230}},{"type":"LineString","arcs":[8068],"id":63230,"properties":{"V":230}},{"type":"LineString","arcs":[8069],"id":63250,"properties":{"V":345}},{"type":"LineString","arcs":[8070],"id":63251,"properties":{"V":230}},{"type":"LineString","arcs":[8071],"id":63252,"properties":{"V":230}},{"type":"LineString","arcs":[8072],"id":63258,"properties":{"V":345}},{"type":"LineString","arcs":[8073,8074,8075],"id":63270,"properties":{"V":345}},{"type":"LineString","arcs":[8076],"id":63282,"properties":{"V":230}},{"type":"LineString","arcs":[8077],"id":63305,"properties":{"V":230}},{"type":"LineString","arcs":[8078],"id":63310,"properties":{"V":230}},{"type":"LineString","arcs":[8079],"id":63311,"properties":{"V":500}},{"type":"LineString","arcs":[8080],"id":63315,"properties":{"V":230}},{"type":"LineString","arcs":[8081],"id":63321,"properties":{"V":230}},{"type":"LineString","arcs":[8082],"id":63325,"properties":{"V":230}},{"type":"LineString","arcs":[8083],"id":63328,"properties":{"V":230}},{"type":"LineString","arcs":[8084],"id":63331,"properties":{"V":230}},{"type":"LineString","arcs":[8085],"id":63351,"properties":{"V":345}},{"type":"LineString","arcs":[8086],"id":63355,"properties":{"V":230}},{"type":"LineString","arcs":[8087],"id":63373,"properties":{"V":345}},{"type":"LineString","arcs":[8088],"id":63377,"properties":{"V":230}},{"type":"LineString","arcs":[8089],"id":63384,"properties":{"V":230}},{"type":"LineString","arcs":[8090],"id":63386,"properties":{"V":345}},{"type":"LineString","arcs":[8091],"id":63387,"properties":{"V":345}},{"type":"LineString","arcs":[8092],"id":63425,"properties":{"V":345}},{"type":"LineString","arcs":[8093],"id":63427,"properties":{"V":230}},{"type":"LineString","arcs":[8094],"id":63433,"properties":{"V":230}},{"type":"LineString","arcs":[8095],"id":63459,"properties":{"V":345}},{"type":"LineString","arcs":[8096],"id":63466,"properties":{"V":345}},{"type":"LineString","arcs":[8097,8098],"id":63477,"properties":{"V":230}},{"type":"LineString","arcs":[8099],"id":63481,"properties":{"V":230}},{"type":"LineString","arcs":[8100],"id":63483,"properties":{"V":500}},{"type":"LineString","arcs":[8101],"id":63484,"properties":{"V":345}},{"type":"LineString","arcs":[8102],"id":63485,"properties":{"V":230}},{"type":"LineString","arcs":[8103],"id":63486,"properties":{"V":500}},{"type":"LineString","arcs":[8104],"id":63488,"properties":{"V":230}},{"type":"LineString","arcs":[8105],"id":63491,"properties":{"V":230}},{"type":"LineString","arcs":[8106],"id":63493,"properties":{"V":345}},{"type":"LineString","arcs":[8107],"id":63502,"properties":{"V":230}},{"type":"LineString","arcs":[8108],"id":63525,"properties":{"V":230}},{"type":"LineString","arcs":[8109],"id":63543,"properties":{"V":230}},{"type":"LineString","arcs":[8110],"id":63554,"properties":{"V":345}},{"type":"LineString","arcs":[8111],"id":63559,"properties":{"V":230}},{"type":"LineString","arcs":[8112],"id":63568,"properties":{"V":230}},{"type":"LineString","arcs":[8113],"id":63583,"properties":{"V":345}},{"type":"LineString","arcs":[8114],"id":63602,"properties":{"V":230}},{"type":"LineString","arcs":[8115],"id":63608,"properties":{"V":230}},{"type":"LineString","arcs":[8116],"id":63617,"properties":{"V":230}},{"type":"LineString","arcs":[8117],"id":63620,"properties":{"V":230}},{"type":"LineString","arcs":[8118],"id":63627,"properties":{"V":345}},{"type":"LineString","arcs":[8119],"id":63650,"properties":{"V":230}},{"type":"LineString","arcs":[8120],"id":63676,"properties":{"V":230}},{"type":"LineString","arcs":[8121],"id":63696,"properties":{"V":230}},{"type":"LineString","arcs":[8122],"id":63698,"properties":{"V":230}},{"type":"LineString","arcs":[8123],"id":63723,"properties":{"V":230}},{"type":"LineString","arcs":[8124],"id":63729,"properties":{"V":230}},{"type":"LineString","arcs":[8125],"id":63731,"properties":{"V":230}},{"type":"LineString","arcs":[8126],"id":63732,"properties":{"V":500}},{"type":"LineString","arcs":[8127],"id":63733,"properties":{"V":230}},{"type":"LineString","arcs":[8128],"id":63734,"properties":{"V":230}},{"type":"LineString","arcs":[8129],"id":63739,"properties":{"V":230}},{"type":"LineString","arcs":[8130],"id":63742,"properties":{"V":230}},{"type":"LineString","arcs":[8131],"id":63752,"properties":{"V":230}},{"type":"LineString","arcs":[8132],"id":63760,"properties":{"V":345}},{"type":"LineString","arcs":[8133],"id":63773,"properties":{"V":500}},{"type":"LineString","arcs":[8134],"id":63794,"properties":{"V":345}},{"type":"LineString","arcs":[8135],"id":63796,"properties":{"V":345}},{"type":"LineString","arcs":[8136],"id":63797,"properties":{"V":230}},{"type":"LineString","arcs":[8137],"id":63799,"properties":{"V":230}},{"type":"LineString","arcs":[8138],"id":63806,"properties":{"V":345}},{"type":"LineString","arcs":[8139],"id":63815,"properties":{"V":230}},{"type":"LineString","arcs":[8140],"id":63822,"properties":{"V":230}},{"type":"LineString","arcs":[8141],"id":63827,"properties":{"V":230}},{"type":"LineString","arcs":[8142],"id":63829,"properties":{"V":230}},{"type":"LineString","arcs":[8143],"id":63834,"properties":{"V":230}},{"type":"LineString","arcs":[8144],"id":63835,"properties":{"V":230}},{"type":"LineString","arcs":[8145],"id":63851,"properties":{"V":230}},{"type":"LineString","arcs":[8146],"id":63852,"properties":{"V":230}},{"type":"LineString","arcs":[8147],"id":63863,"properties":{"V":230}},{"type":"LineString","arcs":[8148],"id":63864,"properties":{"V":230}},{"type":"LineString","arcs":[8149],"id":63866,"properties":{"V":500}},{"type":"LineString","arcs":[8150],"id":63867,"properties":{"V":345}},{"type":"LineString","arcs":[8151],"id":63875,"properties":{"V":345}},{"type":"LineString","arcs":[8152],"id":63877,"properties":{"V":230}},{"type":"LineString","arcs":[8153],"id":63885,"properties":{"V":230}},{"type":"LineString","arcs":[8154],"id":63887,"properties":{"V":230}},{"type":"LineString","arcs":[8155],"id":63893,"properties":{"V":500}},{"type":"LineString","arcs":[8156],"id":63897,"properties":{"V":230}},{"type":"LineString","arcs":[8157],"id":63901,"properties":{"V":230}},{"type":"LineString","arcs":[8158],"id":63908,"properties":{"V":230}},{"type":"LineString","arcs":[8159],"id":63915,"properties":{"V":345}},{"type":"LineString","arcs":[8160],"id":63924,"properties":{"V":230}},{"type":"LineString","arcs":[8161],"id":63925,"properties":{"V":230}},{"type":"LineString","arcs":[8162],"id":63934,"properties":{"V":230}},{"type":"LineString","arcs":[8163],"id":63958,"properties":{"V":345}},{"type":"LineString","arcs":[8164],"id":63960,"properties":{"V":345}},{"type":"LineString","arcs":[8165],"id":63964,"properties":{"V":230}},{"type":"LineString","arcs":[8166],"id":63986,"properties":{"V":230}},{"type":"LineString","arcs":[8167],"id":63991,"properties":{"V":230}},{"type":"LineString","arcs":[8168],"id":63996,"properties":{"V":230}},{"type":"LineString","arcs":[8169],"id":64002,"properties":{"V":230}},{"type":"LineString","arcs":[8170],"id":64005,"properties":{"V":230}},{"type":"LineString","arcs":[8171],"id":64016,"properties":{"V":230}},{"type":"LineString","arcs":[8172],"id":64023,"properties":{"V":500}},{"type":"LineString","arcs":[8173],"id":64037,"properties":{"V":230}},{"type":"LineString","arcs":[8174],"id":64044,"properties":{"V":345}},{"type":"LineString","arcs":[8175],"id":64077,"properties":{"V":230}},{"type":"LineString","arcs":[8176],"id":64078,"properties":{"V":345}},{"type":"LineString","arcs":[8177],"id":64079,"properties":{"V":230}},{"type":"LineString","arcs":[8178],"id":64088,"properties":{"V":230}},{"type":"LineString","arcs":[8179,8180],"id":64091,"properties":{"V":230}},{"type":"LineString","arcs":[8181],"id":64093,"properties":{"V":230}},{"type":"LineString","arcs":[8182],"id":64114,"properties":{"V":230}},{"type":"LineString","arcs":[8183],"id":64119,"properties":{"V":230}},{"type":"LineString","arcs":[8184],"id":64136,"properties":{"V":345}},{"type":"LineString","arcs":[8185],"id":64138,"properties":{"V":230}},{"type":"LineString","arcs":[8186],"id":64139,"properties":{"V":230}},{"type":"LineString","arcs":[8187],"id":64184,"properties":{"V":345}},{"type":"LineString","arcs":[8188],"id":64189,"properties":{"V":230}},{"type":"LineString","arcs":[8189],"id":64195,"properties":{"V":230}},{"type":"LineString","arcs":[8190],"id":64196,"properties":{"V":500}},{"type":"LineString","arcs":[8191],"id":64197,"properties":{"V":230}},{"type":"LineString","arcs":[8192],"id":64202,"properties":{"V":345}},{"type":"LineString","arcs":[8193],"id":64242,"properties":{"V":230}},{"type":"LineString","arcs":[8194],"id":64246,"properties":{"V":230}},{"type":"LineString","arcs":[8195],"id":64255,"properties":{"V":230}},{"type":"LineString","arcs":[8196],"id":64264,"properties":{"V":230}},{"type":"LineString","arcs":[8197],"id":64278,"properties":{"V":230}},{"type":"LineString","arcs":[8198],"id":64281,"properties":{"V":230}},{"type":"LineString","arcs":[8199],"id":64285,"properties":{"V":230}},{"type":"LineString","arcs":[8200],"id":64309,"properties":{"V":345}},{"type":"LineString","arcs":[8201],"id":64332,"properties":{"V":345}},{"type":"LineString","arcs":[8202],"id":64337,"properties":{"V":230}},{"type":"LineString","arcs":[8203],"id":64345,"properties":{"V":345}},{"type":"LineString","arcs":[8204],"id":64350,"properties":{"V":500}},{"type":"LineString","arcs":[8205],"id":64356,"properties":{"V":230}},{"type":"LineString","arcs":[8206],"id":64357,"properties":{"V":230}},{"type":"LineString","arcs":[8207],"id":64371,"properties":{"V":230}},{"type":"LineString","arcs":[8208],"id":64374,"properties":{"V":345}},{"type":"LineString","arcs":[8209],"id":64378,"properties":{"V":230}},{"type":"LineString","arcs":[8210],"id":64393,"properties":{"V":345}},{"type":"LineString","arcs":[8211],"id":64398,"properties":{"V":345}},{"type":"LineString","arcs":[8212],"id":64401,"properties":{"V":230}},{"type":"LineString","arcs":[8213],"id":64402,"properties":{"V":230}},{"type":"LineString","arcs":[8214],"id":64410,"properties":{"V":230}},{"type":"LineString","arcs":[8215],"id":64412,"properties":{"V":230}},{"type":"LineString","arcs":[8216],"id":64442,"properties":{"V":230}},{"type":"LineString","arcs":[8217],"id":64449,"properties":{"V":345}},{"type":"LineString","arcs":[8218],"id":64451,"properties":{"V":230}},{"type":"LineString","arcs":[8219],"id":64453,"properties":{"V":230}},{"type":"LineString","arcs":[8220],"id":64454,"properties":{"V":345}},{"type":"LineString","arcs":[8221],"id":64483,"properties":{"V":230}},{"type":"LineString","arcs":[8222],"id":64488,"properties":{"V":230}},{"type":"LineString","arcs":[8223],"id":64506,"properties":{"V":230}},{"type":"LineString","arcs":[8224],"id":64507,"properties":{"V":230}},{"type":"LineString","arcs":[8225],"id":64524,"properties":{"V":230}},{"type":"LineString","arcs":[8226],"id":64538,"properties":{"V":230}},{"type":"LineString","arcs":[8227],"id":64540,"properties":{"V":230}},{"type":"LineString","arcs":[8228],"id":64542,"properties":{"V":230}},{"type":"LineString","arcs":[8229],"id":64543,"properties":{"V":230}},{"type":"LineString","arcs":[8230],"id":64551,"properties":{"V":230}},{"type":"LineString","arcs":[8231],"id":64558,"properties":{"V":345}},{"type":"LineString","arcs":[8232],"id":64569,"properties":{"V":230}},{"type":"LineString","arcs":[8233,8234],"id":64572,"properties":{"V":230}},{"type":"LineString","arcs":[8235],"id":64573,"properties":{"V":345}},{"type":"LineString","arcs":[8236],"id":64578,"properties":{"V":230}},{"type":"LineString","arcs":[8237],"id":64584,"properties":{"V":345}},{"type":"LineString","arcs":[8238],"id":64585,"properties":{"V":230}},{"type":"LineString","arcs":[8239],"id":64598,"properties":{"V":230}},{"type":"LineString","arcs":[8240],"id":64615,"properties":{"V":230}},{"type":"LineString","arcs":[8241,8242],"id":64620,"properties":{"V":230}},{"type":"LineString","arcs":[8243],"id":64626,"properties":{"V":230}},{"type":"LineString","arcs":[8244],"id":64631,"properties":{"V":500}},{"type":"LineString","arcs":[8245],"id":64634,"properties":{"V":230}},{"type":"LineString","arcs":[8246],"id":64662,"properties":{"V":230}},{"type":"LineString","arcs":[8247],"id":64664,"properties":{"V":230}},{"type":"LineString","arcs":[8248],"id":64671,"properties":{"V":500}},{"type":"LineString","arcs":[8249],"id":64685,"properties":{"V":345}},{"type":"LineString","arcs":[8250],"id":64687,"properties":{"V":230}},{"type":"LineString","arcs":[8251],"id":64694,"properties":{"V":345}},{"type":"LineString","arcs":[8252],"id":64699,"properties":{"V":230}},{"type":"LineString","arcs":[8253],"id":64709,"properties":{"V":230}},{"type":"LineString","arcs":[8254],"id":64720,"properties":{"V":230}},{"type":"LineString","arcs":[8255],"id":64727,"properties":{"V":230}},{"type":"LineString","arcs":[8256],"id":64737,"properties":{"V":230}},{"type":"LineString","arcs":[8257],"id":64741,"properties":{"V":345}},{"type":"LineString","arcs":[8258],"id":64753,"properties":{"V":230}},{"type":"LineString","arcs":[8259],"id":64765,"properties":{"V":230}},{"type":"LineString","arcs":[8260],"id":64769,"properties":{"V":500}},{"type":"LineString","arcs":[8261],"id":64776,"properties":{"V":230}},{"type":"LineString","arcs":[8262],"id":64788,"properties":{"V":345}},{"type":"LineString","arcs":[8263],"id":64789,"properties":{"V":230}},{"type":"LineString","arcs":[8264],"id":64798,"properties":{"V":500}},{"type":"LineString","arcs":[8265],"id":64816,"properties":{"V":230}},{"type":"LineString","arcs":[8266],"id":64825,"properties":{"V":230}},{"type":"LineString","arcs":[8267],"id":64834,"properties":{"V":230}},{"type":"LineString","arcs":[8268],"id":64836,"properties":{"V":345}},{"type":"LineString","arcs":[8269],"id":64854,"properties":{"V":230}},{"type":"LineString","arcs":[8270],"id":64861,"properties":{"V":230}},{"type":"LineString","arcs":[8271],"id":64865,"properties":{"V":345}},{"type":"LineString","arcs":[8272],"id":64872,"properties":{"V":230}},{"type":"LineString","arcs":[8273],"id":64888,"properties":{"V":500}},{"type":"LineString","arcs":[8274],"id":64893,"properties":{"V":500}},{"type":"LineString","arcs":[8275,8276],"id":64896,"properties":{"V":230}},{"type":"LineString","arcs":[8277],"id":64897,"properties":{"V":230}},{"type":"LineString","arcs":[8278],"id":64898,"properties":{"V":230}},{"type":"LineString","arcs":[8279,8280,8281],"id":64927,"properties":{"V":230}},{"type":"LineString","arcs":[8282],"id":64930,"properties":{"V":230}},{"type":"LineString","arcs":[8283],"id":64932,"properties":{"V":230}},{"type":"LineString","arcs":[8284],"id":64943,"properties":{"V":500}},{"type":"LineString","arcs":[8285],"id":64950,"properties":{"V":230}},{"type":"LineString","arcs":[8286],"id":64955,"properties":{"V":230}},{"type":"LineString","arcs":[8287],"id":64975,"properties":{"V":345}},{"type":"LineString","arcs":[8288],"id":64981,"properties":{"V":230}},{"type":"LineString","arcs":[8289],"id":64982,"properties":{"V":345}},{"type":"LineString","arcs":[8290],"id":64983,"properties":{"V":500}},{"type":"LineString","arcs":[8291],"id":64990,"properties":{"V":500}},{"type":"LineString","arcs":[8292],"id":64995,"properties":{"V":500}},{"type":"LineString","arcs":[8293],"id":64999,"properties":{"V":230}},{"type":"LineString","arcs":[8294],"id":65001,"properties":{"V":230}},{"type":"LineString","arcs":[8295],"id":65007,"properties":{"V":230}},{"type":"LineString","arcs":[8296],"id":65012,"properties":{"V":500}},{"type":"LineString","arcs":[8297],"id":65020,"properties":{"V":345}},{"type":"LineString","arcs":[8298],"id":65023,"properties":{"V":500}},{"type":"LineString","arcs":[8299],"id":65031,"properties":{"V":230}},{"type":"LineString","arcs":[8300],"id":65033,"properties":{"V":230}},{"type":"LineString","arcs":[8301],"id":65040,"properties":{"V":345}},{"type":"LineString","arcs":[8302],"id":65051,"properties":{"V":230}},{"type":"LineString","arcs":[8303],"id":65057,"properties":{"V":345}},{"type":"LineString","arcs":[8304],"id":65062,"properties":{"V":230}},{"type":"LineString","arcs":[8305],"id":65069,"properties":{"V":230}},{"type":"LineString","arcs":[8306],"id":65090,"properties":{"V":230}},{"type":"LineString","arcs":[8307],"id":65103,"properties":{"V":500}},{"type":"LineString","arcs":[8308],"id":65113,"properties":{"V":345}},{"type":"LineString","arcs":[8309],"id":65116,"properties":{"V":230}},{"type":"LineString","arcs":[8310],"id":65127,"properties":{"V":230}},{"type":"LineString","arcs":[8311],"id":65133,"properties":{"V":230}},{"type":"LineString","arcs":[8312],"id":65150,"properties":{"V":345}},{"type":"LineString","arcs":[8313],"id":65152,"properties":{"V":230}},{"type":"LineString","arcs":[8314],"id":65153,"properties":{"V":230}},{"type":"LineString","arcs":[8315],"id":65165,"properties":{"V":230}},{"type":"LineString","arcs":[8316],"id":65168,"properties":{"V":230}},{"type":"LineString","arcs":[8317],"id":65175,"properties":{"V":230}},{"type":"LineString","arcs":[8318],"id":65185,"properties":{"V":230}},{"type":"LineString","arcs":[8319],"id":65191,"properties":{"V":230}},{"type":"LineString","arcs":[8320],"id":65198,"properties":{"V":345}},{"type":"LineString","arcs":[8321],"id":65199,"properties":{"V":230}},{"type":"LineString","arcs":[8322],"id":65204,"properties":{"V":230}},{"type":"LineString","arcs":[8323],"id":65205,"properties":{"V":230}},{"type":"LineString","arcs":[8324,8325],"id":65216,"properties":{"V":500}},{"type":"LineString","arcs":[8326],"id":65222,"properties":{"V":345}},{"type":"LineString","arcs":[8327],"id":65229,"properties":{"V":500}},{"type":"LineString","arcs":[8328],"id":65236,"properties":{"V":230}},{"type":"LineString","arcs":[8329],"id":65238,"properties":{"V":230}},{"type":"LineString","arcs":[8330],"id":65245,"properties":{"V":230}},{"type":"LineString","arcs":[8331],"id":65248,"properties":{"V":230}},{"type":"LineString","arcs":[8332],"id":65253,"properties":{"V":230}},{"type":"LineString","arcs":[8333],"id":65258,"properties":{"V":230}},{"type":"LineString","arcs":[8334],"id":65260,"properties":{"V":230}},{"type":"LineString","arcs":[8335],"id":65266,"properties":{"V":230}},{"type":"LineString","arcs":[8336],"id":65273,"properties":{"V":230}},{"type":"LineString","arcs":[8337],"id":65274,"properties":{"V":345}},{"type":"LineString","arcs":[8338],"id":65279,"properties":{"V":230}},{"type":"LineString","arcs":[8339],"id":65280,"properties":{"V":230}},{"type":"LineString","arcs":[8340],"id":65296,"properties":{"V":345}},{"type":"LineString","arcs":[8341],"id":65305,"properties":{"V":230}},{"type":"LineString","arcs":[8342],"id":65307,"properties":{"V":230}},{"type":"LineString","arcs":[8343],"id":65310,"properties":{"V":230}},{"type":"LineString","arcs":[8344],"id":65341,"properties":{"V":345}},{"type":"LineString","arcs":[8345],"id":65356,"properties":{"V":345}},{"type":"LineString","arcs":[8346],"id":65377,"properties":{"V":230}},{"type":"LineString","arcs":[8347],"id":65380,"properties":{"V":230}},{"type":"LineString","arcs":[8348],"id":65381,"properties":{"V":230}},{"type":"LineString","arcs":[8349],"id":65396,"properties":{"V":230}},{"type":"LineString","arcs":[8350],"id":65407,"properties":{"V":230}},{"type":"LineString","arcs":[8351],"id":65418,"properties":{"V":230}},{"type":"LineString","arcs":[8352],"id":65422,"properties":{"V":230}},{"type":"LineString","arcs":[8353],"id":65448,"properties":{"V":230}},{"type":"LineString","arcs":[8354],"id":65468,"properties":{"V":230}},{"type":"LineString","arcs":[8355],"id":65472,"properties":{"V":230}},{"type":"LineString","arcs":[8356],"id":65473,"properties":{"V":230}},{"type":"LineString","arcs":[8357],"id":65487,"properties":{"V":230}},{"type":"LineString","arcs":[8358],"id":65495,"properties":{"V":230}},{"type":"LineString","arcs":[8359],"id":65500,"properties":{"V":345}},{"type":"LineString","arcs":[8360],"id":65513,"properties":{"V":500}},{"type":"LineString","arcs":[8361],"id":65522,"properties":{"V":230}},{"type":"LineString","arcs":[8362],"id":65527,"properties":{"V":230}},{"type":"LineString","arcs":[8363],"id":65536,"properties":{"V":230}},{"type":"LineString","arcs":[8364],"id":65541,"properties":{"V":345}},{"type":"LineString","arcs":[8365],"id":65543,"properties":{"V":345}},{"type":"LineString","arcs":[8366],"id":65546,"properties":{"V":345}},{"type":"LineString","arcs":[8367],"id":65550,"properties":{"V":345}},{"type":"LineString","arcs":[8368],"id":65552,"properties":{"V":345}},{"type":"LineString","arcs":[8369],"id":65562,"properties":{"V":230}},{"type":"LineString","arcs":[8370],"id":65568,"properties":{"V":345}},{"type":"LineString","arcs":[8371],"id":65574,"properties":{"V":230}},{"type":"LineString","arcs":[8372],"id":65581,"properties":{"V":230}},{"type":"LineString","arcs":[8373],"id":65584,"properties":{"V":345}},{"type":"LineString","arcs":[8374],"id":65587,"properties":{"V":230}},{"type":"LineString","arcs":[8375],"id":65607,"properties":{"V":230}},{"type":"LineString","arcs":[8376],"id":65630,"properties":{"V":500}},{"type":"LineString","arcs":[8377],"id":65634,"properties":{"V":230}},{"type":"LineString","arcs":[8378],"id":65645,"properties":{"V":230}},{"type":"LineString","arcs":[8379,8380,8381],"id":65650,"properties":{"V":345}},{"type":"LineString","arcs":[8382],"id":65658,"properties":{"V":230}},{"type":"LineString","arcs":[8383],"id":65660,"properties":{"V":230}},{"type":"LineString","arcs":[8384],"id":65663,"properties":{"V":230}},{"type":"LineString","arcs":[8385],"id":65687,"properties":{"V":230}},{"type":"LineString","arcs":[8386],"id":65688,"properties":{"V":230}},{"type":"LineString","arcs":[8387],"id":65695,"properties":{"V":230}},{"type":"LineString","arcs":[8388],"id":65696,"properties":{"V":230}},{"type":"LineString","arcs":[8389],"id":65706,"properties":{"V":230}},{"type":"LineString","arcs":[8390],"id":65713,"properties":{"V":345}},{"type":"LineString","arcs":[8391],"id":65718,"properties":{"V":230}},{"type":"LineString","arcs":[8392],"id":65727,"properties":{"V":230}},{"type":"LineString","arcs":[8393],"id":65740,"properties":{"V":345}},{"type":"LineString","arcs":[8394],"id":65741,"properties":{"V":230}},{"type":"LineString","arcs":[8395],"id":65743,"properties":{"V":230}},{"type":"LineString","arcs":[8396],"id":65744,"properties":{"V":230}},{"type":"LineString","arcs":[8397],"id":65748,"properties":{"V":230}},{"type":"LineString","arcs":[8398],"id":65750,"properties":{"V":345}},{"type":"LineString","arcs":[8399],"id":65751,"properties":{"V":230}},{"type":"LineString","arcs":[8400],"id":65757,"properties":{"V":230}},{"type":"LineString","arcs":[8401,8402],"id":65763,"properties":{"V":230}},{"type":"LineString","arcs":[8403],"id":65765,"properties":{"V":230}},{"type":"LineString","arcs":[8404],"id":65770,"properties":{"V":230}},{"type":"LineString","arcs":[8405],"id":65785,"properties":{"V":230}},{"type":"LineString","arcs":[8406],"id":65786,"properties":{"V":345}},{"type":"LineString","arcs":[8407],"id":65787,"properties":{"V":230}},{"type":"LineString","arcs":[8408],"id":65800,"properties":{"V":230}},{"type":"LineString","arcs":[8409],"id":65804,"properties":{"V":345}},{"type":"LineString","arcs":[8410],"id":65817,"properties":{"V":345}},{"type":"LineString","arcs":[8411],"id":65818,"properties":{"V":230}},{"type":"LineString","arcs":[8412],"id":65821,"properties":{"V":230}},{"type":"LineString","arcs":[8413],"id":65822,"properties":{"V":230}},{"type":"LineString","arcs":[8414],"id":65826,"properties":{"V":345}},{"type":"LineString","arcs":[8415],"id":65828,"properties":{"V":345}},{"type":"LineString","arcs":[8416],"id":65843,"properties":{"V":230}},{"type":"LineString","arcs":[8417],"id":65850,"properties":{"V":345}},{"type":"LineString","arcs":[8418],"id":65868,"properties":{"V":230}},{"type":"LineString","arcs":[8419],"id":65871,"properties":{"V":230}},{"type":"LineString","arcs":[8420,8421],"id":65878,"properties":{"V":230}},{"type":"LineString","arcs":[8422],"id":65879,"properties":{"V":230}},{"type":"LineString","arcs":[8423],"id":65888,"properties":{"V":230}},{"type":"LineString","arcs":[8424],"id":65891,"properties":{"V":345}},{"type":"LineString","arcs":[8425],"id":65894,"properties":{"V":230}},{"type":"LineString","arcs":[8426],"id":65912,"properties":{"V":230}},{"type":"LineString","arcs":[8427],"id":65914,"properties":{"V":230}},{"type":"LineString","arcs":[8428],"id":65923,"properties":{"V":230}},{"type":"LineString","arcs":[8429],"id":65930,"properties":{"V":345}},{"type":"LineString","arcs":[8430],"id":65931,"properties":{"V":765}},{"type":"LineString","arcs":[8431],"id":65932,"properties":{"V":230}},{"type":"LineString","arcs":[8432],"id":65937,"properties":{"V":500}},{"type":"LineString","arcs":[8433],"id":65946,"properties":{"V":230}},{"type":"LineString","arcs":[8434],"id":65950,"properties":{"V":230}},{"type":"LineString","arcs":[8435],"id":65951,"properties":{"V":500}},{"type":"LineString","arcs":[8436],"id":65982,"properties":{"V":230}},{"type":"LineString","arcs":[8437],"id":65984,"properties":{"V":230}},{"type":"LineString","arcs":[8438],"id":65996,"properties":{"V":345}},{"type":"LineString","arcs":[8439],"id":66019,"properties":{"V":230}},{"type":"LineString","arcs":[8440],"id":66024,"properties":{"V":230}},{"type":"LineString","arcs":[8441],"id":66038,"properties":{"V":230}},{"type":"LineString","arcs":[8442],"id":66042,"properties":{"V":230}},{"type":"LineString","arcs":[8443],"id":66043,"properties":{"V":230}},{"type":"LineString","arcs":[8444],"id":66053,"properties":{"V":230}},{"type":"LineString","arcs":[8445],"id":66055,"properties":{"V":230}},{"type":"LineString","arcs":[8446],"id":66070,"properties":{"V":230}},{"type":"LineString","arcs":[8447],"id":66072,"properties":{"V":230}},{"type":"LineString","arcs":[8448],"id":66087,"properties":{"V":345}},{"type":"LineString","arcs":[8449],"id":66096,"properties":{"V":230}},{"type":"LineString","arcs":[8450,8451,8452,8453],"id":66108,"properties":{"V":230}},{"type":"LineString","arcs":[8454],"id":66109,"properties":{"V":345}},{"type":"LineString","arcs":[8455],"id":66110,"properties":{"V":230}},{"type":"LineString","arcs":[8456],"id":66115,"properties":{"V":230}},{"type":"LineString","arcs":[8457],"id":66121,"properties":{"V":500}},{"type":"LineString","arcs":[8458],"id":66145,"properties":{"V":345}},{"type":"LineString","arcs":[8459],"id":66152,"properties":{"V":500}},{"type":"LineString","arcs":[8460],"id":66159,"properties":{"V":345}},{"type":"LineString","arcs":[8461],"id":66185,"properties":{"V":500}},{"type":"LineString","arcs":[8462],"id":66186,"properties":{"V":230}},{"type":"LineString","arcs":[8463],"id":66197,"properties":{"V":230}},{"type":"LineString","arcs":[8464],"id":66199,"properties":{"V":230}},{"type":"LineString","arcs":[8465],"id":66205,"properties":{"V":500}},{"type":"LineString","arcs":[8466],"id":66206,"properties":{"V":230}},{"type":"LineString","arcs":[8467],"id":66212,"properties":{"V":500}},{"type":"LineString","arcs":[8468],"id":66215,"properties":{"V":230}},{"type":"LineString","arcs":[8469],"id":66216,"properties":{"V":345}},{"type":"LineString","arcs":[8470],"id":66221,"properties":{"V":230}},{"type":"LineString","arcs":[8471],"id":66224,"properties":{"V":230}},{"type":"LineString","arcs":[8472],"id":66225,"properties":{"V":230}},{"type":"LineString","arcs":[8473],"id":66227,"properties":{"V":230}},{"type":"LineString","arcs":[8474],"id":66230,"properties":{"V":345}},{"type":"LineString","arcs":[8475],"id":66233,"properties":{"V":345}},{"type":"LineString","arcs":[8476],"id":66235,"properties":{"V":230}},{"type":"LineString","arcs":[8477],"id":66236,"properties":{"V":345}},{"type":"LineString","arcs":[8478],"id":66246,"properties":{"V":230}},{"type":"LineString","arcs":[8479],"id":66251,"properties":{"V":230}},{"type":"LineString","arcs":[8480],"id":66255,"properties":{"V":230}},{"type":"LineString","arcs":[8481],"id":66267,"properties":{"V":230}},{"type":"LineString","arcs":[8482],"id":66268,"properties":{"V":345}},{"type":"LineString","arcs":[8483,8484],"id":66275,"properties":{"V":230}},{"type":"LineString","arcs":[8485],"id":66282,"properties":{"V":500}},{"type":"LineString","arcs":[8486],"id":66285,"properties":{"V":230}},{"type":"LineString","arcs":[8487],"id":66305,"properties":{"V":345}},{"type":"LineString","arcs":[8488],"id":66307,"properties":{"V":230}},{"type":"LineString","arcs":[8489],"id":66322,"properties":{"V":345}},{"type":"LineString","arcs":[8490],"id":66323,"properties":{"V":230}},{"type":"LineString","arcs":[8491],"id":66332,"properties":{"V":230}},{"type":"LineString","arcs":[8492],"id":66338,"properties":{"V":345}},{"type":"LineString","arcs":[8493],"id":66358,"properties":{"V":345}},{"type":"LineString","arcs":[8494],"id":66366,"properties":{"V":230}},{"type":"LineString","arcs":[8495],"id":66396,"properties":{"V":345}},{"type":"LineString","arcs":[8496],"id":66407,"properties":{"V":500}},{"type":"LineString","arcs":[8497],"id":66415,"properties":{"V":345}},{"type":"LineString","arcs":[8498],"id":66423,"properties":{"V":230}},{"type":"LineString","arcs":[8499],"id":66425,"properties":{"V":230}},{"type":"LineString","arcs":[8500],"id":66428,"properties":{"V":230}},{"type":"LineString","arcs":[8501],"id":66442,"properties":{"V":345}},{"type":"LineString","arcs":[8502],"id":66452,"properties":{"V":230}},{"type":"LineString","arcs":[8503],"id":66453,"properties":{"V":500}},{"type":"LineString","arcs":[8504],"id":66472,"properties":{"V":345}},{"type":"LineString","arcs":[8505],"id":66474,"properties":{"V":230}},{"type":"LineString","arcs":[8506],"id":66478,"properties":{"V":500}},{"type":"LineString","arcs":[8507],"id":66482,"properties":{"V":345}},{"type":"LineString","arcs":[8508],"id":66495,"properties":{"V":230}},{"type":"LineString","arcs":[8509,8510,8511,8512,8513],"id":66497,"properties":{"V":345}},{"type":"LineString","arcs":[8514],"id":66535,"properties":{"V":230}},{"type":"LineString","arcs":[8515],"id":66541,"properties":{"V":230}},{"type":"LineString","arcs":[8516],"id":66545,"properties":{"V":230}},{"type":"LineString","arcs":[8517],"id":66555,"properties":{"V":230}},{"type":"LineString","arcs":[8518],"id":66556,"properties":{"V":345}},{"type":"LineString","arcs":[8519],"id":66568,"properties":{"V":345}},{"type":"LineString","arcs":[8520],"id":66608,"properties":{"V":230}},{"type":"LineString","arcs":[8521],"id":66616,"properties":{"V":230}},{"type":"LineString","arcs":[8522],"id":66619,"properties":{"V":230}},{"type":"LineString","arcs":[8523],"id":66627,"properties":{"V":345}},{"type":"LineString","arcs":[8524],"id":66638,"properties":{"V":230}},{"type":"LineString","arcs":[8525],"id":66641,"properties":{"V":230}},{"type":"LineString","arcs":[8526],"id":66643,"properties":{"V":230}},{"type":"LineString","arcs":[8527],"id":66657,"properties":{"V":230}},{"type":"LineString","arcs":[8528],"id":66658,"properties":{"V":230}},{"type":"LineString","arcs":[8529],"id":66673,"properties":{"V":230}},{"type":"LineString","arcs":[8530],"id":66675,"properties":{"V":230}},{"type":"LineString","arcs":[8531],"id":66682,"properties":{"V":230}},{"type":"LineString","arcs":[8532],"id":66684,"properties":{"V":230}},{"type":"LineString","arcs":[8533],"id":66691,"properties":{"V":230}},{"type":"LineString","arcs":[8534],"id":66693,"properties":{"V":230}},{"type":"LineString","arcs":[8535],"id":66704,"properties":{"V":230}},{"type":"LineString","arcs":[8536],"id":66706,"properties":{"V":230}},{"type":"LineString","arcs":[8537],"id":66712,"properties":{"V":230}},{"type":"LineString","arcs":[8538],"id":66718,"properties":{"V":230}},{"type":"LineString","arcs":[8539],"id":66723,"properties":{"V":230}},{"type":"LineString","arcs":[8540],"id":66726,"properties":{"V":230}},{"type":"LineString","arcs":[8541],"id":66731,"properties":{"V":230}},{"type":"LineString","arcs":[8542,8543,8544],"id":66742,"properties":{"V":345}},{"type":"LineString","arcs":[8545],"id":66743,"properties":{"V":230}},{"type":"LineString","arcs":[8546],"id":66770,"properties":{"V":230}},{"type":"LineString","arcs":[8547],"id":66773,"properties":{"V":230}},{"type":"LineString","arcs":[8548],"id":66774,"properties":{"V":345}},{"type":"LineString","arcs":[8549],"id":66780,"properties":{"V":230}},{"type":"LineString","arcs":[8550],"id":66786,"properties":{"V":230}},{"type":"LineString","arcs":[8551],"id":66787,"properties":{"V":230}},{"type":"LineString","arcs":[8552],"id":66795,"properties":{"V":345}},{"type":"LineString","arcs":[8553],"id":66805,"properties":{"V":345}},{"type":"LineString","arcs":[8554],"id":66815,"properties":{"V":500}},{"type":"LineString","arcs":[8555],"id":66816,"properties":{"V":230}},{"type":"LineString","arcs":[8556],"id":66854,"properties":{"V":345}},{"type":"LineString","arcs":[8557],"id":66863,"properties":{"V":230}},{"type":"LineString","arcs":[8558],"id":66864,"properties":{"V":230}},{"type":"LineString","arcs":[8559],"id":66871,"properties":{"V":345}},{"type":"LineString","arcs":[8560],"id":66873,"properties":{"V":230}},{"type":"LineString","arcs":[8561],"id":66909,"properties":{"V":230}},{"type":"LineString","arcs":[8562],"id":66913,"properties":{"V":345}},{"type":"LineString","arcs":[8563],"id":66918,"properties":{"V":230}},{"type":"LineString","arcs":[8564],"id":66922,"properties":{"V":230}},{"type":"LineString","arcs":[8565],"id":66926,"properties":{"V":230}},{"type":"LineString","arcs":[8566],"id":66933,"properties":{"V":230}},{"type":"LineString","arcs":[8567],"id":66937,"properties":{"V":345}},{"type":"LineString","arcs":[8568],"id":66951,"properties":{"V":230}},{"type":"LineString","arcs":[8569],"id":66958,"properties":{"V":230}},{"type":"LineString","arcs":[8570],"id":66967,"properties":{"V":230}},{"type":"LineString","arcs":[8571],"id":66971,"properties":{"V":230}},{"type":"LineString","arcs":[8572],"id":66995,"properties":{"V":765}},{"type":"LineString","arcs":[8573],"id":67002,"properties":{"V":230}},{"type":"LineString","arcs":[8574],"id":67004,"properties":{"V":230}},{"type":"LineString","arcs":[8575],"id":67007,"properties":{"V":345}},{"type":"LineString","arcs":[8576],"id":67008,"properties":{"V":230}},{"type":"LineString","arcs":[8577],"id":67013,"properties":{"V":230}},{"type":"LineString","arcs":[8578],"id":67020,"properties":{"V":500}},{"type":"LineString","arcs":[8579],"id":67026,"properties":{"V":230}},{"type":"LineString","arcs":[8580],"id":67029,"properties":{"V":230}},{"type":"LineString","arcs":[8581],"id":67041,"properties":{"V":230}},{"type":"LineString","arcs":[8582],"id":67045,"properties":{"V":345}},{"type":"LineString","arcs":[8583],"id":67050,"properties":{"V":230}},{"type":"LineString","arcs":[8584],"id":67070,"properties":{"V":230}},{"type":"LineString","arcs":[8585],"id":67073,"properties":{"V":345}},{"type":"LineString","arcs":[8586],"id":67081,"properties":{"V":230}},{"type":"LineString","arcs":[8587],"id":67105,"properties":{"V":765}},{"type":"LineString","arcs":[8588],"id":67133,"properties":{"V":230}},{"type":"LineString","arcs":[8589],"id":67138,"properties":{"V":230}},{"type":"LineString","arcs":[8590],"id":67139,"properties":{"V":230}},{"type":"LineString","arcs":[8591],"id":67140,"properties":{"V":230}},{"type":"LineString","arcs":[8592],"id":67153,"properties":{"V":230}},{"type":"LineString","arcs":[8593],"id":67154,"properties":{"V":230}},{"type":"LineString","arcs":[8594],"id":67160,"properties":{"V":345}},{"type":"LineString","arcs":[8595],"id":67166,"properties":{"V":230}},{"type":"LineString","arcs":[8596],"id":67178,"properties":{"V":230}},{"type":"LineString","arcs":[8597],"id":67182,"properties":{"V":230}},{"type":"LineString","arcs":[8598,8599,8600],"id":67202,"properties":{"V":230}},{"type":"LineString","arcs":[8601],"id":67204,"properties":{"V":230}},{"type":"LineString","arcs":[8602],"id":67236,"properties":{"V":500}},{"type":"LineString","arcs":[8603],"id":67263,"properties":{"V":230}},{"type":"LineString","arcs":[8604],"id":67266,"properties":{"V":345}},{"type":"LineString","arcs":[8605],"id":67271,"properties":{"V":345}},{"type":"LineString","arcs":[8606],"id":67277,"properties":{"V":230}},{"type":"LineString","arcs":[8607],"id":67281,"properties":{"V":230}},{"type":"LineString","arcs":[8608],"id":67282,"properties":{"V":230}},{"type":"LineString","arcs":[8609],"id":67289,"properties":{"V":230}},{"type":"LineString","arcs":[8610],"id":67305,"properties":{"V":230}},{"type":"LineString","arcs":[8611,8612],"id":67306,"properties":{"V":230}},{"type":"LineString","arcs":[8613],"id":67317,"properties":{"V":230}},{"type":"LineString","arcs":[8614],"id":67328,"properties":{"V":230}},{"type":"LineString","arcs":[8615],"id":67331,"properties":{"V":230}},{"type":"LineString","arcs":[8616],"id":67336,"properties":{"V":230}},{"type":"LineString","arcs":[8617,8618],"id":67339,"properties":{"V":230}},{"type":"LineString","arcs":[8619],"id":67350,"properties":{"V":345}},{"type":"LineString","arcs":[8620],"id":67352,"properties":{"V":345}},{"type":"LineString","arcs":[8621],"id":67360,"properties":{"V":230}},{"type":"LineString","arcs":[8622],"id":67368,"properties":{"V":230}},{"type":"LineString","arcs":[8623],"id":67372,"properties":{"V":230}},{"type":"LineString","arcs":[8624],"id":67378,"properties":{"V":230}},{"type":"LineString","arcs":[8625],"id":67389,"properties":{"V":345}},{"type":"LineString","arcs":[8626],"id":67391,"properties":{"V":230}},{"type":"LineString","arcs":[8627],"id":67397,"properties":{"V":345}},{"type":"LineString","arcs":[8628],"id":67399,"properties":{"V":230}},{"type":"LineString","arcs":[8629],"id":67401,"properties":{"V":345}},{"type":"LineString","arcs":[8630],"id":67415,"properties":{"V":345}},{"type":"LineString","arcs":[8631],"id":67417,"properties":{"V":230}},{"type":"LineString","arcs":[8632],"id":67431,"properties":{"V":345}},{"type":"LineString","arcs":[8633],"id":67440,"properties":{"V":230}},{"type":"LineString","arcs":[8634],"id":67455,"properties":{"V":345}},{"type":"LineString","arcs":[8635],"id":67459,"properties":{"V":230}},{"type":"LineString","arcs":[8636],"id":67464,"properties":{"V":230}},{"type":"LineString","arcs":[8637],"id":67465,"properties":{"V":230}},{"type":"LineString","arcs":[8638],"id":67472,"properties":{"V":230}},{"type":"LineString","arcs":[8639],"id":67504,"properties":{"V":230}},{"type":"LineString","arcs":[8640],"id":67517,"properties":{"V":230}},{"type":"LineString","arcs":[8641],"id":67518,"properties":{"V":230}},{"type":"LineString","arcs":[8642],"id":67519,"properties":{"V":230}},{"type":"LineString","arcs":[8643],"id":67541,"properties":{"V":230}},{"type":"LineString","arcs":[8644],"id":67548,"properties":{"V":230}},{"type":"LineString","arcs":[8645],"id":67562,"properties":{"V":230}},{"type":"LineString","arcs":[8646],"id":67564,"properties":{"V":345}},{"type":"LineString","arcs":[8647],"id":67565,"properties":{"V":230}},{"type":"LineString","arcs":[8648],"id":67568,"properties":{"V":230}},{"type":"LineString","arcs":[8649],"id":67571,"properties":{"V":230}},{"type":"LineString","arcs":[8650],"id":67585,"properties":{"V":230}},{"type":"LineString","arcs":[8651],"id":67587,"properties":{"V":500}},{"type":"LineString","arcs":[8652],"id":67588,"properties":{"V":345}},{"type":"LineString","arcs":[8653],"id":67616,"properties":{"V":345}},{"type":"LineString","arcs":[8654],"id":67623,"properties":{"V":230}},{"type":"LineString","arcs":[8655],"id":67633,"properties":{"V":500}},{"type":"LineString","arcs":[8656],"id":67645,"properties":{"V":345}},{"type":"LineString","arcs":[8657],"id":67655,"properties":{"V":345}},{"type":"LineString","arcs":[8658],"id":67662,"properties":{"V":230}},{"type":"LineString","arcs":[8659],"id":67671,"properties":{"V":230}},{"type":"LineString","arcs":[8660],"id":67675,"properties":{"V":230}},{"type":"LineString","arcs":[8661],"id":67686,"properties":{"V":500}},{"type":"LineString","arcs":[8662],"id":67694,"properties":{"V":230}},{"type":"LineString","arcs":[8663],"id":67697,"properties":{"V":345}},{"type":"LineString","arcs":[8664],"id":67701,"properties":{"V":345}},{"type":"LineString","arcs":[8665],"id":67715,"properties":{"V":230}},{"type":"LineString","arcs":[8666],"id":67726,"properties":{"V":345}},{"type":"LineString","arcs":[8667],"id":67728,"properties":{"V":345}},{"type":"LineString","arcs":[8668],"id":67730,"properties":{"V":230}},{"type":"LineString","arcs":[8669],"id":67732,"properties":{"V":230}},{"type":"LineString","arcs":[8670],"id":67734,"properties":{"V":345}},{"type":"LineString","arcs":[8671],"id":67737,"properties":{"V":230}},{"type":"LineString","arcs":[8672],"id":67740,"properties":{"V":230}},{"type":"LineString","arcs":[8673],"id":67745,"properties":{"V":230}},{"type":"LineString","arcs":[8674,8675],"id":67764,"properties":{"V":230}},{"type":"LineString","arcs":[8676],"id":67768,"properties":{"V":230}},{"type":"LineString","arcs":[8677],"id":67790,"properties":{"V":345}},{"type":"LineString","arcs":[8678],"id":67804,"properties":{"V":230}},{"type":"LineString","arcs":[8679],"id":67809,"properties":{"V":230}},{"type":"LineString","arcs":[8680],"id":67821,"properties":{"V":345}},{"type":"LineString","arcs":[8681],"id":67827,"properties":{"V":230}},{"type":"LineString","arcs":[8682],"id":67830,"properties":{"V":345}},{"type":"LineString","arcs":[8683],"id":67832,"properties":{"V":345}},{"type":"LineString","arcs":[8684],"id":67853,"properties":{"V":230}},{"type":"LineString","arcs":[8685],"id":67872,"properties":{"V":230}},{"type":"LineString","arcs":[8686],"id":67873,"properties":{"V":345}},{"type":"LineString","arcs":[8687],"id":67878,"properties":{"V":230}},{"type":"LineString","arcs":[8688],"id":67880,"properties":{"V":230}},{"type":"LineString","arcs":[8689],"id":67887,"properties":{"V":230}},{"type":"LineString","arcs":[8690],"id":67889,"properties":{"V":230}},{"type":"LineString","arcs":[8691],"id":67893,"properties":{"V":230}},{"type":"LineString","arcs":[8692],"id":67903,"properties":{"V":230}},{"type":"LineString","arcs":[8693],"id":67906,"properties":{"V":230}},{"type":"LineString","arcs":[8694],"id":67911,"properties":{"V":230}},{"type":"LineString","arcs":[8695],"id":67923,"properties":{"V":345}},{"type":"LineString","arcs":[8696],"id":67938,"properties":{"V":230}},{"type":"LineString","arcs":[8697],"id":67941,"properties":{"V":230}},{"type":"LineString","arcs":[8698],"id":67968,"properties":{"V":230}},{"type":"LineString","arcs":[8699],"id":67972,"properties":{"V":230}},{"type":"LineString","arcs":[8700],"id":67986,"properties":{"V":345}},{"type":"LineString","arcs":[8701],"id":67991,"properties":{"V":345}},{"type":"LineString","arcs":[8702],"id":68015,"properties":{"V":230}},{"type":"LineString","arcs":[8703],"id":68023,"properties":{"V":230}},{"type":"LineString","arcs":[8704],"id":68051,"properties":{"V":230}},{"type":"LineString","arcs":[8705],"id":68052,"properties":{"V":230}},{"type":"LineString","arcs":[8706],"id":68056,"properties":{"V":230}},{"type":"LineString","arcs":[8707],"id":68066,"properties":{"V":345}},{"type":"LineString","arcs":[8708],"id":68069,"properties":{"V":230}},{"type":"LineString","arcs":[8709],"id":68077,"properties":{"V":230}},{"type":"LineString","arcs":[8710],"id":68087,"properties":{"V":230}},{"type":"LineString","arcs":[8711],"id":68093,"properties":{"V":230}},{"type":"LineString","arcs":[8712],"id":68097,"properties":{"V":230}},{"type":"LineString","arcs":[8713],"id":68100,"properties":{"V":345}},{"type":"LineString","arcs":[8714],"id":68108,"properties":{"V":230}},{"type":"LineString","arcs":[8715],"id":68111,"properties":{"V":230}},{"type":"LineString","arcs":[8716],"id":68112,"properties":{"V":345}},{"type":"LineString","arcs":[8717],"id":68113,"properties":{"V":345}},{"type":"LineString","arcs":[8718],"id":68119,"properties":{"V":230}},{"type":"LineString","arcs":[8719],"id":68125,"properties":{"V":345}},{"type":"LineString","arcs":[8720],"id":68137,"properties":{"V":230}},{"type":"LineString","arcs":[8721],"id":68164,"properties":{"V":230}},{"type":"LineString","arcs":[8722],"id":68174,"properties":{"V":230}},{"type":"LineString","arcs":[8723],"id":68186,"properties":{"V":230}},{"type":"LineString","arcs":[8724],"id":68206,"properties":{"V":345}},{"type":"LineString","arcs":[8725],"id":68209,"properties":{"V":230}},{"type":"LineString","arcs":[8726],"id":68221,"properties":{"V":230}},{"type":"LineString","arcs":[8727],"id":68222,"properties":{"V":230}},{"type":"LineString","arcs":[8728],"id":68229,"properties":{"V":345}},{"type":"LineString","arcs":[8729],"id":68231,"properties":{"V":345}},{"type":"LineString","arcs":[8730],"id":68245,"properties":{"V":500}},{"type":"LineString","arcs":[8731,8732,8733],"id":68248,"properties":{"V":230}},{"type":"LineString","arcs":[8734],"id":68264,"properties":{"V":230}},{"type":"LineString","arcs":[8735],"id":68270,"properties":{"V":230}},{"type":"LineString","arcs":[8736],"id":68275,"properties":{"V":345}},{"type":"LineString","arcs":[8737],"id":68276,"properties":{"V":230}},{"type":"LineString","arcs":[8738],"id":68286,"properties":{"V":500}},{"type":"LineString","arcs":[8739],"id":68292,"properties":{"V":230}},{"type":"LineString","arcs":[8740],"id":68296,"properties":{"V":230}},{"type":"LineString","arcs":[8741],"id":68299,"properties":{"V":230}},{"type":"LineString","arcs":[8742],"id":68303,"properties":{"V":230}},{"type":"LineString","arcs":[8743],"id":68306,"properties":{"V":500}},{"type":"LineString","arcs":[8744],"id":68316,"properties":{"V":345}},{"type":"LineString","arcs":[8745],"id":68339,"properties":{"V":230}},{"type":"LineString","arcs":[8746],"id":68352,"properties":{"V":230}},{"type":"LineString","arcs":[8747],"id":68392,"properties":{"V":230}},{"type":"LineString","arcs":[8748],"id":68398,"properties":{"V":500}},{"type":"LineString","arcs":[8749],"id":68402,"properties":{"V":230}},{"type":"LineString","arcs":[8750],"id":68416,"properties":{"V":230}},{"type":"LineString","arcs":[8751],"id":68430,"properties":{"V":345}},{"type":"LineString","arcs":[8752],"id":68440,"properties":{"V":230}},{"type":"LineString","arcs":[8753],"id":68450,"properties":{"V":230}},{"type":"LineString","arcs":[8754],"id":68454,"properties":{"V":345}},{"type":"LineString","arcs":[8755],"id":68456,"properties":{"V":230}},{"type":"LineString","arcs":[8756],"id":68457,"properties":{"V":230}},{"type":"LineString","arcs":[8757],"id":68463,"properties":{"V":500}},{"type":"LineString","arcs":[8758],"id":68467,"properties":{"V":230}},{"type":"LineString","arcs":[8759],"id":68476,"properties":{"V":230}},{"type":"LineString","arcs":[8760],"id":68485,"properties":{"V":500}},{"type":"LineString","arcs":[8761],"id":68498,"properties":{"V":345}},{"type":"LineString","arcs":[8762],"id":68499,"properties":{"V":230}},{"type":"LineString","arcs":[8763],"id":68509,"properties":{"V":230}},{"type":"LineString","arcs":[8764],"id":68526,"properties":{"V":345}},{"type":"LineString","arcs":[8765],"id":68540,"properties":{"V":230}},{"type":"LineString","arcs":[8766],"id":68556,"properties":{"V":230}},{"type":"LineString","arcs":[8767],"id":68567,"properties":{"V":230}},{"type":"LineString","arcs":[8768],"id":68568,"properties":{"V":230}},{"type":"LineString","arcs":[8769],"id":68569,"properties":{"V":230}},{"type":"LineString","arcs":[8770],"id":68576,"properties":{"V":345}},{"type":"LineString","arcs":[8771],"id":68577,"properties":{"V":345}},{"type":"LineString","arcs":[8772],"id":68583,"properties":{"V":345}},{"type":"LineString","arcs":[8773],"id":68592,"properties":{"V":230}},{"type":"LineString","arcs":[8774],"id":68595,"properties":{"V":230}},{"type":"LineString","arcs":[8775],"id":68597,"properties":{"V":230}},{"type":"LineString","arcs":[8776],"id":68599,"properties":{"V":230}},{"type":"LineString","arcs":[8777],"id":68608,"properties":{"V":230}},{"type":"LineString","arcs":[8778],"id":68612,"properties":{"V":345}},{"type":"LineString","arcs":[8779],"id":68618,"properties":{"V":230}},{"type":"LineString","arcs":[8780],"id":68619,"properties":{"V":230}},{"type":"LineString","arcs":[8781],"id":68640,"properties":{"V":230}},{"type":"LineString","arcs":[8782],"id":68645,"properties":{"V":230}},{"type":"LineString","arcs":[8783],"id":68648,"properties":{"V":230}},{"type":"LineString","arcs":[8784],"id":68656,"properties":{"V":230}},{"type":"LineString","arcs":[8785],"id":68657,"properties":{"V":230}},{"type":"LineString","arcs":[8786],"id":68660,"properties":{"V":500}},{"type":"LineString","arcs":[8787],"id":68666,"properties":{"V":230}},{"type":"LineString","arcs":[8788],"id":68671,"properties":{"V":500}},{"type":"LineString","arcs":[8789],"id":68682,"properties":{"V":230}},{"type":"LineString","arcs":[8790],"id":68683,"properties":{"V":230}},{"type":"LineString","arcs":[8791],"id":68690,"properties":{"V":345}},{"type":"LineString","arcs":[8792],"id":68706,"properties":{"V":230}},{"type":"LineString","arcs":[8793],"id":68709,"properties":{"V":230}},{"type":"LineString","arcs":[8794],"id":68714,"properties":{"V":230}},{"type":"LineString","arcs":[8795],"id":68727,"properties":{"V":345}},{"type":"LineString","arcs":[8796],"id":68736,"properties":{"V":230}},{"type":"LineString","arcs":[8797],"id":68737,"properties":{"V":345}},{"type":"LineString","arcs":[8798],"id":68746,"properties":{"V":230}},{"type":"LineString","arcs":[8799],"id":68749,"properties":{"V":500}},{"type":"LineString","arcs":[8800],"id":68751,"properties":{"V":230}},{"type":"LineString","arcs":[8801],"id":68755,"properties":{"V":345}},{"type":"LineString","arcs":[8802],"id":68757,"properties":{"V":230}},{"type":"LineString","arcs":[8803],"id":68762,"properties":{"V":230}},{"type":"LineString","arcs":[8804],"id":68784,"properties":{"V":345}},{"type":"LineString","arcs":[8805],"id":68786,"properties":{"V":345}},{"type":"LineString","arcs":[8806],"id":68790,"properties":{"V":345}},{"type":"LineString","arcs":[8807],"id":68813,"properties":{"V":345}},{"type":"LineString","arcs":[8808],"id":68827,"properties":{"V":230}},{"type":"LineString","arcs":[8809],"id":68830,"properties":{"V":230}},{"type":"LineString","arcs":[8810,8811],"id":68833,"properties":{"V":230}},{"type":"LineString","arcs":[8812],"id":68848,"properties":{"V":230}},{"type":"LineString","arcs":[8813],"id":68865,"properties":{"V":230}},{"type":"LineString","arcs":[8814],"id":68883,"properties":{"V":230}},{"type":"LineString","arcs":[8815,8816],"id":68902,"properties":{"V":230}},{"type":"LineString","arcs":[8817],"id":68903,"properties":{"V":230}},{"type":"LineString","arcs":[8818],"id":68910,"properties":{"V":230}},{"type":"LineString","arcs":[8819],"id":68913,"properties":{"V":345}},{"type":"LineString","arcs":[8820],"id":68915,"properties":{"V":230}},{"type":"LineString","arcs":[8821],"id":68917,"properties":{"V":230}},{"type":"LineString","arcs":[8822],"id":68921,"properties":{"V":230}},{"type":"LineString","arcs":[8823],"id":68928,"properties":{"V":230}},{"type":"LineString","arcs":[8824],"id":68930,"properties":{"V":345}},{"type":"LineString","arcs":[8825],"id":68951,"properties":{"V":500}},{"type":"LineString","arcs":[8826],"id":68955,"properties":{"V":230}},{"type":"LineString","arcs":[8827],"id":68957,"properties":{"V":230}},{"type":"LineString","arcs":[8828],"id":68961,"properties":{"V":230}},{"type":"LineString","arcs":[8829],"id":68964,"properties":{"V":345}},{"type":"LineString","arcs":[8830],"id":68975,"properties":{"V":345}},{"type":"LineString","arcs":[8831],"id":68990,"properties":{"V":230}},{"type":"LineString","arcs":[8832],"id":68992,"properties":{"V":230}},{"type":"LineString","arcs":[8833],"id":69008,"properties":{"V":230}},{"type":"LineString","arcs":[8834],"id":69010,"properties":{"V":230}},{"type":"LineString","arcs":[8835],"id":69011,"properties":{"V":345}},{"type":"LineString","arcs":[8836],"id":69016,"properties":{"V":230}},{"type":"LineString","arcs":[8837],"id":69028,"properties":{"V":345}},{"type":"LineString","arcs":[8838],"id":69053,"properties":{"V":230}},{"type":"LineString","arcs":[8839],"id":69061,"properties":{"V":345}},{"type":"LineString","arcs":[8840],"id":69062,"properties":{"V":345}},{"type":"LineString","arcs":[8841],"id":69076,"properties":{"V":230}},{"type":"LineString","arcs":[8842],"id":69080,"properties":{"V":230}},{"type":"LineString","arcs":[8843],"id":69081,"properties":{"V":230}},{"type":"LineString","arcs":[8844],"id":69095,"properties":{"V":230}},{"type":"LineString","arcs":[8845],"id":69102,"properties":{"V":230}},{"type":"LineString","arcs":[8846],"id":69104,"properties":{"V":230}},{"type":"LineString","arcs":[8847],"id":69109,"properties":{"V":230}},{"type":"LineString","arcs":[8848],"id":69110,"properties":{"V":230}},{"type":"LineString","arcs":[8849],"id":69120,"properties":{"V":230}},{"type":"LineString","arcs":[8850],"id":69131,"properties":{"V":230}},{"type":"LineString","arcs":[8851],"id":69137,"properties":{"V":230}},{"type":"LineString","arcs":[8852],"id":69140,"properties":{"V":230}},{"type":"LineString","arcs":[8853],"id":69143,"properties":{"V":230}},{"type":"LineString","arcs":[8854],"id":69152,"properties":{"V":230}},{"type":"LineString","arcs":[8855,8856],"id":69159,"properties":{"V":230}},{"type":"LineString","arcs":[8857],"id":69166,"properties":{"V":230}},{"type":"LineString","arcs":[8858],"id":69168,"properties":{"V":345}},{"type":"LineString","arcs":[8859],"id":69186,"properties":{"V":345}},{"type":"LineString","arcs":[8860],"id":69191,"properties":{"V":230}},{"type":"LineString","arcs":[8861],"id":69197,"properties":{"V":230}},{"type":"LineString","arcs":[8862],"id":69199,"properties":{"V":230}},{"type":"LineString","arcs":[8863],"id":69206,"properties":{"V":230}},{"type":"LineString","arcs":[8864],"id":69212,"properties":{"V":230}},{"type":"LineString","arcs":[8865],"id":69217,"properties":{"V":230}},{"type":"LineString","arcs":[8866],"id":69218,"properties":{"V":230}},{"type":"LineString","arcs":[8867],"id":69234,"properties":{"V":345}},{"type":"LineString","arcs":[8868,8869,8870],"id":69243,"properties":{"V":345}},{"type":"LineString","arcs":[8871],"id":69253,"properties":{"V":345}},{"type":"LineString","arcs":[8872],"id":69265,"properties":{"V":230}},{"type":"LineString","arcs":[8873],"id":69277,"properties":{"V":230}},{"type":"LineString","arcs":[8874],"id":69280,"properties":{"V":230}},{"type":"LineString","arcs":[8875],"id":69300,"properties":{"V":230}},{"type":"LineString","arcs":[8876],"id":69301,"properties":{"V":345}},{"type":"LineString","arcs":[8877],"id":69305,"properties":{"V":345}},{"type":"LineString","arcs":[8878],"id":69308,"properties":{"V":230}},{"type":"LineString","arcs":[8879],"id":69314,"properties":{"V":230}},{"type":"LineString","arcs":[8880],"id":69318,"properties":{"V":230}},{"type":"LineString","arcs":[8881],"id":69324,"properties":{"V":230}},{"type":"LineString","arcs":[8882],"id":69327,"properties":{"V":230}},{"type":"LineString","arcs":[8883],"id":69333,"properties":{"V":230}},{"type":"LineString","arcs":[8884],"id":69337,"properties":{"V":230}},{"type":"LineString","arcs":[8885],"id":69340,"properties":{"V":230}},{"type":"LineString","arcs":[8886],"id":69343,"properties":{"V":230}},{"type":"LineString","arcs":[8887,8888],"id":69382,"properties":{"V":230}},{"type":"LineString","arcs":[8889],"id":69386,"properties":{"V":230}},{"type":"LineString","arcs":[8890],"id":69389,"properties":{"V":230}},{"type":"LineString","arcs":[8891],"id":69397,"properties":{"V":500}},{"type":"LineString","arcs":[8892],"id":69410,"properties":{"V":230}},{"type":"LineString","arcs":[8893],"id":69415,"properties":{"V":230}},{"type":"LineString","arcs":[8894],"id":69432,"properties":{"V":345}},{"type":"LineString","arcs":[8895],"id":69439,"properties":{"V":230}},{"type":"LineString","arcs":[8896],"id":69440,"properties":{"V":230}},{"type":"LineString","arcs":[8897],"id":69454,"properties":{"V":230}},{"type":"LineString","arcs":[8898],"id":69458,"properties":{"V":345}},{"type":"LineString","arcs":[8899],"id":69464,"properties":{"V":230}},{"type":"LineString","arcs":[8900],"id":69484,"properties":{"V":230}},{"type":"LineString","arcs":[8901,8902],"id":69485,"properties":{"V":500}},{"type":"LineString","arcs":[8903],"id":69487,"properties":{"V":230}},{"type":"LineString","arcs":[8904],"id":69510,"properties":{"V":230}},{"type":"LineString","arcs":[8905],"id":69517,"properties":{"V":230}},{"type":"LineString","arcs":[8906],"id":69536,"properties":{"V":345}},{"type":"LineString","arcs":[8907,8908],"id":69546,"properties":{"V":345}},{"type":"LineString","arcs":[8909],"id":69548,"properties":{"V":345}},{"type":"LineString","arcs":[8910],"id":69552,"properties":{"V":345}},{"type":"LineString","arcs":[8911],"id":69556,"properties":{"V":230}},{"type":"LineString","arcs":[8912],"id":69560,"properties":{"V":230}},{"type":"LineString","arcs":[8913],"id":69565,"properties":{"V":230}},{"type":"LineString","arcs":[8914],"id":69568,"properties":{"V":500}},{"type":"LineString","arcs":[8915],"id":69587,"properties":{"V":230}},{"type":"LineString","arcs":[8916],"id":69592,"properties":{"V":230}},{"type":"LineString","arcs":[8917],"id":69626,"properties":{"V":230}},{"type":"LineString","arcs":[8918],"id":69636,"properties":{"V":230}},{"type":"LineString","arcs":[8919],"id":69647,"properties":{"V":230}},{"type":"LineString","arcs":[8920],"id":69650,"properties":{"V":230}},{"type":"LineString","arcs":[8921],"id":69658,"properties":{"V":230}},{"type":"LineString","arcs":[8922],"id":69661,"properties":{"V":345}},{"type":"LineString","arcs":[8923],"id":69671,"properties":{"V":230}},{"type":"LineString","arcs":[8924],"id":69673,"properties":{"V":230}},{"type":"LineString","arcs":[8925],"id":69680,"properties":{"V":230}},{"type":"LineString","arcs":[8926],"id":69693,"properties":{"V":230}},{"type":"LineString","arcs":[8927],"id":69702,"properties":{"V":230}},{"type":"LineString","arcs":[8928],"id":69704,"properties":{"V":230}},{"type":"LineString","arcs":[8929],"id":69715,"properties":{"V":500}},{"type":"LineString","arcs":[8930],"id":69717,"properties":{"V":345}},{"type":"LineString","arcs":[8931],"id":69722,"properties":{"V":230}},{"type":"LineString","arcs":[8932],"id":69723,"properties":{"V":230}},{"type":"LineString","arcs":[8933],"id":69732,"properties":{"V":230}},{"type":"LineString","arcs":[8934],"id":69738,"properties":{"V":230}},{"type":"LineString","arcs":[8935],"id":69739,"properties":{"V":230}},{"type":"LineString","arcs":[8936],"id":69752,"properties":{"V":230}},{"type":"LineString","arcs":[8937],"id":69753,"properties":{"V":230}},{"type":"LineString","arcs":[8938],"id":69755,"properties":{"V":230}},{"type":"LineString","arcs":[8939,8940],"id":69758,"properties":{"V":230}},{"type":"LineString","arcs":[8941],"id":69760,"properties":{"V":230}},{"type":"LineString","arcs":[8942],"id":69761,"properties":{"V":230}},{"type":"LineString","arcs":[8943],"id":69767,"properties":{"V":230}},{"type":"LineString","arcs":[8944],"id":69774,"properties":{"V":230}},{"type":"LineString","arcs":[8945],"id":69778,"properties":{"V":230}},{"type":"LineString","arcs":[8946,8947],"id":69798,"properties":{"V":230}},{"type":"LineString","arcs":[8948],"id":69801,"properties":{"V":230}},{"type":"LineString","arcs":[8949],"id":69810,"properties":{"V":500}},{"type":"LineString","arcs":[8950],"id":69812,"properties":{"V":230}},{"type":"LineString","arcs":[8951],"id":69816,"properties":{"V":230}},{"type":"LineString","arcs":[8952],"id":69843,"properties":{"V":345}},{"type":"LineString","arcs":[8953],"id":69853,"properties":{"V":230}},{"type":"LineString","arcs":[8954],"id":69877,"properties":{"V":230}},{"type":"LineString","arcs":[8955],"id":69882,"properties":{"V":500}},{"type":"LineString","arcs":[8956],"id":69906,"properties":{"V":230}},{"type":"LineString","arcs":[8957],"id":69908,"properties":{"V":230}},{"type":"LineString","arcs":[8958,8959],"id":69909,"properties":{"V":230}},{"type":"LineString","arcs":[8960],"id":69916,"properties":{"V":230}},{"type":"LineString","arcs":[8961],"id":69930,"properties":{"V":230}},{"type":"LineString","arcs":[8962],"id":69934,"properties":{"V":345}},{"type":"LineString","arcs":[8963],"id":69936,"properties":{"V":765}},{"type":"LineString","arcs":[8964],"id":69937,"properties":{"V":230}},{"type":"LineString","arcs":[8965],"id":69946,"properties":{"V":345}},{"type":"LineString","arcs":[8966,8967,8968,8969],"id":69953,"properties":{"V":500}},{"type":"LineString","arcs":[8970],"id":69957,"properties":{"V":230}},{"type":"LineString","arcs":[8971],"id":69959,"properties":{"V":345}},{"type":"LineString","arcs":[8972],"id":69990,"properties":{"V":230}},{"type":"LineString","arcs":[8973],"id":69992,"properties":{"V":230}},{"type":"LineString","arcs":[8974],"id":69995,"properties":{"V":230}},{"type":"LineString","arcs":[8975],"id":70005,"properties":{"V":500}},{"type":"LineString","arcs":[8976],"id":70013,"properties":{"V":230}},{"type":"LineString","arcs":[8977],"id":70021,"properties":{"V":230}},{"type":"LineString","arcs":[8978],"id":70026,"properties":{"V":345}},{"type":"LineString","arcs":[8979],"id":70029,"properties":{"V":345}},{"type":"LineString","arcs":[8980],"id":70038,"properties":{"V":230}},{"type":"LineString","arcs":[8981],"id":70055,"properties":{"V":230}},{"type":"LineString","arcs":[8982],"id":70058,"properties":{"V":345}},{"type":"LineString","arcs":[8983],"id":70063,"properties":{"V":230}},{"type":"LineString","arcs":[8984],"id":70067,"properties":{"V":345}},{"type":"LineString","arcs":[8985],"id":70070,"properties":{"V":230}},{"type":"LineString","arcs":[8986],"id":70076,"properties":{"V":345}},{"type":"LineString","arcs":[8987],"id":70079,"properties":{"V":230}},{"type":"LineString","arcs":[8988,8989],"id":70090,"properties":{"V":345}},{"type":"LineString","arcs":[8990],"id":70102,"properties":{"V":345}},{"type":"LineString","arcs":[8991],"id":70110,"properties":{"V":230}},{"type":"LineString","arcs":[8992],"id":70111,"properties":{"V":500}},{"type":"LineString","arcs":[8993],"id":70133,"properties":{"V":230}},{"type":"LineString","arcs":[8994],"id":70154,"properties":{"V":230}},{"type":"LineString","arcs":[8995],"id":70158,"properties":{"V":345}},{"type":"LineString","arcs":[8996],"id":70172,"properties":{"V":230}},{"type":"LineString","arcs":[8997],"id":70176,"properties":{"V":345}},{"type":"LineString","arcs":[8998],"id":70177,"properties":{"V":345}},{"type":"LineString","arcs":[8999],"id":70179,"properties":{"V":230}},{"type":"LineString","arcs":[9000],"id":70193,"properties":{"V":230}},{"type":"LineString","arcs":[9001],"id":70208,"properties":{"V":230}},{"type":"LineString","arcs":[9002],"id":70226,"properties":{"V":345}},{"type":"LineString","arcs":[9003],"id":70234,"properties":{"V":230}},{"type":"LineString","arcs":[9004],"id":70239,"properties":{"V":500}},{"type":"LineString","arcs":[9005],"id":70255,"properties":{"V":345}},{"type":"LineString","arcs":[9006],"id":70275,"properties":{"V":230}},{"type":"LineString","arcs":[9007],"id":70304,"properties":{"V":345}},{"type":"LineString","arcs":[9008],"id":70317,"properties":{"V":345}},{"type":"LineString","arcs":[9009],"id":70325,"properties":{"V":230}},{"type":"LineString","arcs":[9010],"id":70339,"properties":{"V":345}},{"type":"LineString","arcs":[9011],"id":70356,"properties":{"V":345}},{"type":"LineString","arcs":[9012],"id":70370,"properties":{"V":230}},{"type":"LineString","arcs":[9013],"id":70372,"properties":{"V":230}},{"type":"LineString","arcs":[9014],"id":70377,"properties":{"V":345}},{"type":"LineString","arcs":[9015],"id":70381,"properties":{"V":345}},{"type":"LineString","arcs":[9016],"id":70387,"properties":{"V":450}},{"type":"LineString","arcs":[9017],"id":70403,"properties":{"V":230}},{"type":"LineString","arcs":[9018],"id":70417,"properties":{"V":345}},{"type":"LineString","arcs":[9019],"id":70443,"properties":{"V":230}},{"type":"LineString","arcs":[9020],"id":70452,"properties":{"V":230}},{"type":"LineString","arcs":[9021],"id":70454,"properties":{"V":500}},{"type":"LineString","arcs":[9022],"id":70455,"properties":{"V":230}},{"type":"LineString","arcs":[9023],"id":70457,"properties":{"V":230}},{"type":"LineString","arcs":[9024],"id":70483,"properties":{"V":500}},{"type":"LineString","arcs":[9025],"id":70499,"properties":{"V":230}},{"type":"LineString","arcs":[9026],"id":70502,"properties":{"V":345}},{"type":"LineString","arcs":[9027],"id":70516,"properties":{"V":230}},{"type":"LineString","arcs":[9028],"id":70532,"properties":{"V":230}},{"type":"LineString","arcs":[9029,9030],"id":70542,"properties":{"V":230}},{"type":"LineString","arcs":[9031],"id":70545,"properties":{"V":500}},{"type":"LineString","arcs":[9032],"id":70551,"properties":{"V":500}},{"type":"LineString","arcs":[9033,9034],"id":70560,"properties":{"V":230}},{"type":"LineString","arcs":[9035],"id":70568,"properties":{"V":230}},{"type":"LineString","arcs":[9036],"id":70570,"properties":{"V":230}},{"type":"LineString","arcs":[9037],"id":70580,"properties":{"V":500}},{"type":"LineString","arcs":[9038],"id":70583,"properties":{"V":500}},{"type":"LineString","arcs":[9039],"id":70585,"properties":{"V":230}},{"type":"LineString","arcs":[9040],"id":70589,"properties":{"V":345}},{"type":"LineString","arcs":[9041],"id":70600,"properties":{"V":230}},{"type":"LineString","arcs":[9042],"id":70616,"properties":{"V":345}},{"type":"LineString","arcs":[9043],"id":70619,"properties":{"V":230}},{"type":"LineString","arcs":[9044],"id":70624,"properties":{"V":345}},{"type":"LineString","arcs":[9045],"id":70625,"properties":{"V":345}},{"type":"LineString","arcs":[9046],"id":70631,"properties":{"V":230}},{"type":"LineString","arcs":[9047],"id":70633,"properties":{"V":500}},{"type":"LineString","arcs":[9048,9049,9050,9051],"id":70635,"properties":{"V":230}},{"type":"LineString","arcs":[9052],"id":70636,"properties":{"V":230}},{"type":"LineString","arcs":[9053],"id":70640,"properties":{"V":230}},{"type":"LineString","arcs":[9054],"id":70650,"properties":{"V":230}},{"type":"LineString","arcs":[9055],"id":70652,"properties":{"V":345}},{"type":"LineString","arcs":[9056],"id":70659,"properties":{"V":345}},{"type":"LineString","arcs":[9057],"id":70663,"properties":{"V":230}},{"type":"LineString","arcs":[9058],"id":70665,"properties":{"V":230}},{"type":"LineString","arcs":[9059],"id":70668,"properties":{"V":500}},{"type":"LineString","arcs":[9060],"id":70670,"properties":{"V":230}},{"type":"LineString","arcs":[9061],"id":70672,"properties":{"V":230}},{"type":"LineString","arcs":[9062],"id":70684,"properties":{"V":345}},{"type":"LineString","arcs":[9063],"id":70686,"properties":{"V":230}},{"type":"LineString","arcs":[9064],"id":70689,"properties":{"V":230}},{"type":"LineString","arcs":[9065,9066,9067,9068,9069],"id":70697,"properties":{"V":230}},{"type":"LineString","arcs":[9070],"id":70706,"properties":{"V":345}},{"type":"LineString","arcs":[9071],"id":70719,"properties":{"V":230}},{"type":"LineString","arcs":[9072],"id":70734,"properties":{"V":345}},{"type":"LineString","arcs":[9073],"id":70755,"properties":{"V":345}},{"type":"LineString","arcs":[9074],"id":70758,"properties":{"V":230}},{"type":"LineString","arcs":[9075],"id":70784,"properties":{"V":230}},{"type":"LineString","arcs":[9076],"id":70785,"properties":{"V":230}},{"type":"LineString","arcs":[9077],"id":70791,"properties":{"V":230}},{"type":"LineString","arcs":[9078],"id":70797,"properties":{"V":230}},{"type":"LineString","arcs":[9079],"id":70822,"properties":{"V":230}},{"type":"LineString","arcs":[9080],"id":70823,"properties":{"V":230}},{"type":"LineString","arcs":[9081],"id":70825,"properties":{"V":500}},{"type":"LineString","arcs":[9082],"id":70829,"properties":{"V":230}},{"type":"LineString","arcs":[9083],"id":70844,"properties":{"V":230}},{"type":"LineString","arcs":[9084],"id":70845,"properties":{"V":230}},{"type":"LineString","arcs":[9085],"id":70848,"properties":{"V":230}},{"type":"LineString","arcs":[9086],"id":70859,"properties":{"V":230}},{"type":"LineString","arcs":[9087],"id":70866,"properties":{"V":230}},{"type":"LineString","arcs":[9088],"id":70876,"properties":{"V":230}},{"type":"LineString","arcs":[9089],"id":70879,"properties":{"V":230}},{"type":"LineString","arcs":[9090],"id":70881,"properties":{"V":345}},{"type":"LineString","arcs":[9091],"id":70882,"properties":{"V":230}},{"type":"LineString","arcs":[9092],"id":70885,"properties":{"V":230}},{"type":"LineString","arcs":[9093],"id":70893,"properties":{"V":345}},{"type":"LineString","arcs":[9094],"id":70910,"properties":{"V":230}},{"type":"LineString","arcs":[9095],"id":70911,"properties":{"V":500}},{"type":"LineString","arcs":[9096],"id":70912,"properties":{"V":230}},{"type":"LineString","arcs":[9097],"id":70917,"properties":{"V":230}},{"type":"LineString","arcs":[9098],"id":70918,"properties":{"V":230}},{"type":"LineString","arcs":[9099],"id":70920,"properties":{"V":230}},{"type":"LineString","arcs":[9100],"id":70931,"properties":{"V":230}},{"type":"LineString","arcs":[9101],"id":70953,"properties":{"V":230}},{"type":"LineString","arcs":[9102],"id":70958,"properties":{"V":230}},{"type":"LineString","arcs":[9103],"id":70970,"properties":{"V":500}},{"type":"LineString","arcs":[9104],"id":70996,"properties":{"V":230}},{"type":"LineString","arcs":[9105],"id":71005,"properties":{"V":230}},{"type":"LineString","arcs":[9106],"id":71011,"properties":{"V":230}},{"type":"LineString","arcs":[9107],"id":71018,"properties":{"V":345}},{"type":"LineString","arcs":[9108],"id":71019,"properties":{"V":345}},{"type":"LineString","arcs":[9109],"id":71027,"properties":{"V":345}},{"type":"LineString","arcs":[9110,9111],"id":71038,"properties":{"V":345}},{"type":"LineString","arcs":[9112],"id":71040,"properties":{"V":230}},{"type":"LineString","arcs":[9113],"id":71045,"properties":{"V":230}},{"type":"LineString","arcs":[9114],"id":71046,"properties":{"V":345}},{"type":"LineString","arcs":[9115],"id":71047,"properties":{"V":230}},{"type":"LineString","arcs":[9116],"id":71049,"properties":{"V":230}},{"type":"LineString","arcs":[9117],"id":71057,"properties":{"V":345}},{"type":"LineString","arcs":[9118],"id":71060,"properties":{"V":345}},{"type":"LineString","arcs":[9119],"id":71071,"properties":{"V":230}},{"type":"LineString","arcs":[9120],"id":71083,"properties":{"V":230}},{"type":"LineString","arcs":[9121],"id":71094,"properties":{"V":230}},{"type":"LineString","arcs":[9122],"id":71120,"properties":{"V":345}},{"type":"LineString","arcs":[9123],"id":71124,"properties":{"V":230}},{"type":"LineString","arcs":[9124],"id":71153,"properties":{"V":345}},{"type":"LineString","arcs":[9125],"id":71154,"properties":{"V":345}},{"type":"LineString","arcs":[9126],"id":71160,"properties":{"V":345}},{"type":"LineString","arcs":[9127],"id":71165,"properties":{"V":230}},{"type":"LineString","arcs":[9128],"id":71167,"properties":{"V":230}},{"type":"LineString","arcs":[9129],"id":71192,"properties":{"V":230}},{"type":"LineString","arcs":[9130],"id":71193,"properties":{"V":230}},{"type":"LineString","arcs":[9131],"id":71219,"properties":{"V":230}},{"type":"LineString","arcs":[9132],"id":71220,"properties":{"V":230}},{"type":"LineString","arcs":[9133],"id":71239,"properties":{"V":230}},{"type":"LineString","arcs":[9134],"id":71248,"properties":{"V":500}},{"type":"LineString","arcs":[9135,9136,9137],"id":71251,"properties":{"V":230}},{"type":"LineString","arcs":[9138],"id":71262,"properties":{"V":230}},{"type":"LineString","arcs":[9139],"id":71270,"properties":{"V":345}},{"type":"LineString","arcs":[9140],"id":71282,"properties":{"V":230}},{"type":"LineString","arcs":[9141],"id":71288,"properties":{"V":230}},{"type":"LineString","arcs":[9142],"id":71292,"properties":{"V":230}},{"type":"LineString","arcs":[9143],"id":71302,"properties":{"V":345}},{"type":"LineString","arcs":[9144],"id":71312,"properties":{"V":230}},{"type":"LineString","arcs":[9145],"id":71324,"properties":{"V":230}},{"type":"LineString","arcs":[9146],"id":71333,"properties":{"V":345}},{"type":"LineString","arcs":[9147],"id":71340,"properties":{"V":500}},{"type":"LineString","arcs":[9148,9149,9150,9151],"id":71349,"properties":{"V":230}},{"type":"LineString","arcs":[9152],"id":71353,"properties":{"V":500}},{"type":"LineString","arcs":[9153],"id":71356,"properties":{"V":345}},{"type":"LineString","arcs":[9154],"id":71371,"properties":{"V":345}},{"type":"LineString","arcs":[9155,9156],"id":71376,"properties":{"V":230}},{"type":"LineString","arcs":[9157],"id":71380,"properties":{"V":230}},{"type":"LineString","arcs":[9158],"id":71382,"properties":{"V":345}},{"type":"LineString","arcs":[9159],"id":71389,"properties":{"V":230}},{"type":"LineString","arcs":[9160],"id":71394,"properties":{"V":230}},{"type":"LineString","arcs":[9161],"id":71403,"properties":{"V":230}},{"type":"LineString","arcs":[9162],"id":71405,"properties":{"V":230}},{"type":"LineString","arcs":[9163],"id":71408,"properties":{"V":230}},{"type":"LineString","arcs":[9164,9165,9166,9167,9168,9169],"id":71422,"properties":{"V":230}},{"type":"LineString","arcs":[9170],"id":71436,"properties":{"V":230}},{"type":"LineString","arcs":[9171],"id":71466,"properties":{"V":230}},{"type":"LineString","arcs":[9172],"id":71475,"properties":{"V":230}},{"type":"LineString","arcs":[9173],"id":71476,"properties":{"V":345}},{"type":"LineString","arcs":[9174],"id":71489,"properties":{"V":230}},{"type":"LineString","arcs":[9175],"id":71503,"properties":{"V":230}},{"type":"LineString","arcs":[9176],"id":71511,"properties":{"V":345}},{"type":"LineString","arcs":[9177],"id":71526,"properties":{"V":230}},{"type":"LineString","arcs":[9178],"id":71539,"properties":{"V":230}},{"type":"LineString","arcs":[9179],"id":71553,"properties":{"V":230}},{"type":"LineString","arcs":[9180],"id":71554,"properties":{"V":345}},{"type":"LineString","arcs":[9181],"id":71557,"properties":{"V":230}},{"type":"LineString","arcs":[9182],"id":71576,"properties":{"V":230}},{"type":"LineString","arcs":[9183],"id":71578,"properties":{"V":765}},{"type":"LineString","arcs":[9184],"id":71603,"properties":{"V":345}},{"type":"LineString","arcs":[9185],"id":71606,"properties":{"V":230}},{"type":"LineString","arcs":[9186],"id":71616,"properties":{"V":230}},{"type":"LineString","arcs":[9187],"id":71618,"properties":{"V":345}},{"type":"LineString","arcs":[9188],"id":71622,"properties":{"V":230}},{"type":"LineString","arcs":[9189],"id":71623,"properties":{"V":500}},{"type":"LineString","arcs":[9190],"id":71630,"properties":{"V":230}},{"type":"LineString","arcs":[9191],"id":71631,"properties":{"V":230}},{"type":"LineString","arcs":[9192],"id":71643,"properties":{"V":230}},{"type":"LineString","arcs":[9193],"id":71644,"properties":{"V":230}},{"type":"LineString","arcs":[9194],"id":71650,"properties":{"V":345}},{"type":"LineString","arcs":[9195],"id":71669,"properties":{"V":230}},{"type":"LineString","arcs":[9196],"id":71670,"properties":{"V":230}},{"type":"LineString","arcs":[9197],"id":71683,"properties":{"V":230}},{"type":"LineString","arcs":[9198,9199],"id":71714,"properties":{"V":230}},{"type":"LineString","arcs":[9200],"id":71748,"properties":{"V":230}},{"type":"LineString","arcs":[9201],"id":71749,"properties":{"V":230}},{"type":"LineString","arcs":[9202],"id":71776,"properties":{"V":230}},{"type":"LineString","arcs":[9203],"id":71780,"properties":{"V":230}},{"type":"LineString","arcs":[9204],"id":71791,"properties":{"V":345}},{"type":"LineString","arcs":[9205],"id":71801,"properties":{"V":230}},{"type":"LineString","arcs":[9206],"id":71806,"properties":{"V":230}},{"type":"LineString","arcs":[9207],"id":71807,"properties":{"V":230}},{"type":"LineString","arcs":[9208],"id":71812,"properties":{"V":345}},{"type":"LineString","arcs":[9209],"id":71813,"properties":{"V":345}},{"type":"LineString","arcs":[9210],"id":71818,"properties":{"V":230}},{"type":"LineString","arcs":[9211],"id":71820,"properties":{"V":500}},{"type":"LineString","arcs":[9212],"id":71834,"properties":{"V":230}},{"type":"LineString","arcs":[9213],"id":71842,"properties":{"V":345}},{"type":"LineString","arcs":[9214],"id":71856,"properties":{"V":345}},{"type":"LineString","arcs":[9215],"id":71857,"properties":{"V":230}},{"type":"LineString","arcs":[9216],"id":71861,"properties":{"V":230}},{"type":"LineString","arcs":[9217],"id":71895,"properties":{"V":230}},{"type":"LineString","arcs":[9218],"id":71896,"properties":{"V":230}},{"type":"LineString","arcs":[9219],"id":71909,"properties":{"V":230}},{"type":"LineString","arcs":[9220],"id":71925,"properties":{"V":500}},{"type":"LineString","arcs":[9221],"id":71926,"properties":{"V":230}},{"type":"LineString","arcs":[9222],"id":71927,"properties":{"V":230}},{"type":"LineString","arcs":[9223],"id":71931,"properties":{"V":345}},{"type":"LineString","arcs":[9224],"id":71935,"properties":{"V":230}},{"type":"LineString","arcs":[9225],"id":71936,"properties":{"V":230}},{"type":"LineString","arcs":[9226],"id":71951,"properties":{"V":230}},{"type":"LineString","arcs":[9227],"id":71970,"properties":{"V":230}},{"type":"LineString","arcs":[9228],"id":71980,"properties":{"V":345}},{"type":"LineString","arcs":[9229],"id":71991,"properties":{"V":500}},{"type":"LineString","arcs":[9230],"id":72001,"properties":{"V":230}},{"type":"LineString","arcs":[9231],"id":72004,"properties":{"V":230}},{"type":"LineString","arcs":[9232],"id":72005,"properties":{"V":345}},{"type":"LineString","arcs":[9233],"id":72010,"properties":{"V":230}},{"type":"LineString","arcs":[9234],"id":72012,"properties":{"V":230}},{"type":"LineString","arcs":[9235],"id":72021,"properties":{"V":230}},{"type":"LineString","arcs":[9236],"id":72025,"properties":{"V":230}},{"type":"LineString","arcs":[9237],"id":72052,"properties":{"V":230}},{"type":"LineString","arcs":[9238],"id":72056,"properties":{"V":230}},{"type":"LineString","arcs":[9239],"id":72088,"properties":{"V":230}},{"type":"LineString","arcs":[9240],"id":72094,"properties":{"V":230}},{"type":"LineString","arcs":[9241],"id":72116,"properties":{"V":230}},{"type":"LineString","arcs":[9242],"id":72120,"properties":{"V":230}},{"type":"LineString","arcs":[9243,9244],"id":72127,"properties":{"V":345}},{"type":"LineString","arcs":[9245],"id":72134,"properties":{"V":345}},{"type":"LineString","arcs":[9246],"id":72138,"properties":{"V":345}},{"type":"LineString","arcs":[9247],"id":72143,"properties":{"V":230}},{"type":"LineString","arcs":[9248],"id":72152,"properties":{"V":230}},{"type":"LineString","arcs":[9249],"id":72158,"properties":{"V":230}},{"type":"LineString","arcs":[9250],"id":72162,"properties":{"V":230}},{"type":"LineString","arcs":[9251],"id":72168,"properties":{"V":345}},{"type":"LineString","arcs":[9252],"id":72195,"properties":{"V":230}},{"type":"LineString","arcs":[9253],"id":72196,"properties":{"V":230}},{"type":"LineString","arcs":[9254],"id":72197,"properties":{"V":230}},{"type":"LineString","arcs":[9255],"id":72198,"properties":{"V":500}},{"type":"LineString","arcs":[9256],"id":72203,"properties":{"V":345}},{"type":"LineString","arcs":[9257],"id":72232,"properties":{"V":230}},{"type":"LineString","arcs":[9258],"id":72244,"properties":{"V":500}},{"type":"LineString","arcs":[9259],"id":72248,"properties":{"V":230}},{"type":"LineString","arcs":[9260],"id":72254,"properties":{"V":230}},{"type":"LineString","arcs":[9261],"id":72255,"properties":{"V":230}},{"type":"LineString","arcs":[9262],"id":72259,"properties":{"V":500}},{"type":"LineString","arcs":[9263],"id":72286,"properties":{"V":345}},{"type":"LineString","arcs":[9264],"id":72293,"properties":{"V":345}},{"type":"LineString","arcs":[9265],"id":72298,"properties":{"V":230}},{"type":"LineString","arcs":[9266],"id":72301,"properties":{"V":230}},{"type":"LineString","arcs":[9267],"id":72303,"properties":{"V":500}},{"type":"LineString","arcs":[9268],"id":72305,"properties":{"V":230}},{"type":"LineString","arcs":[9269],"id":72319,"properties":{"V":230}},{"type":"LineString","arcs":[9270],"id":72325,"properties":{"V":345}},{"type":"LineString","arcs":[9271],"id":72335,"properties":{"V":345}},{"type":"LineString","arcs":[9272],"id":72343,"properties":{"V":230}},{"type":"LineString","arcs":[9273],"id":72349,"properties":{"V":230}},{"type":"LineString","arcs":[9274],"id":72368,"properties":{"V":230}},{"type":"LineString","arcs":[9275],"id":72375,"properties":{"V":500}},{"type":"LineString","arcs":[9276],"id":72377,"properties":{"V":500}},{"type":"LineString","arcs":[9277],"id":72378,"properties":{"V":345}},{"type":"LineString","arcs":[9278],"id":72382,"properties":{"V":345}},{"type":"LineString","arcs":[9279],"id":72396,"properties":{"V":230}},{"type":"LineString","arcs":[9280],"id":72397,"properties":{"V":230}},{"type":"LineString","arcs":[9281,9282],"id":72400,"properties":{"V":345}},{"type":"LineString","arcs":[9283],"id":72401,"properties":{"V":500}},{"type":"LineString","arcs":[9284],"id":72405,"properties":{"V":230}},{"type":"LineString","arcs":[9285,9286,9287],"id":72420,"properties":{"V":230}},{"type":"LineString","arcs":[9288],"id":72430,"properties":{"V":230}},{"type":"LineString","arcs":[9289],"id":72432,"properties":{"V":230}},{"type":"LineString","arcs":[9290],"id":72437,"properties":{"V":230}},{"type":"LineString","arcs":[9291,9292,9293,9294],"id":72442,"properties":{"V":230}},{"type":"LineString","arcs":[9295],"id":72448,"properties":{"V":230}},{"type":"LineString","arcs":[9296],"id":72451,"properties":{"V":345}},{"type":"LineString","arcs":[9297],"id":72480,"properties":{"V":345}},{"type":"LineString","arcs":[9298],"id":72485,"properties":{"V":230}},{"type":"LineString","arcs":[9299],"id":72487,"properties":{"V":230}},{"type":"LineString","arcs":[9300],"id":72499,"properties":{"V":230}},{"type":"LineString","arcs":[9301],"id":72513,"properties":{"V":230}},{"type":"LineString","arcs":[9302],"id":72514,"properties":{"V":230}},{"type":"LineString","arcs":[9303],"id":72523,"properties":{"V":230}},{"type":"LineString","arcs":[9304],"id":72525,"properties":{"V":230}},{"type":"LineString","arcs":[9305],"id":72531,"properties":{"V":230}},{"type":"LineString","arcs":[9306],"id":72547,"properties":{"V":230}},{"type":"LineString","arcs":[9307],"id":72567,"properties":{"V":230}},{"type":"LineString","arcs":[9308],"id":72569,"properties":{"V":230}},{"type":"LineString","arcs":[9309],"id":72576,"properties":{"V":345}},{"type":"LineString","arcs":[9310],"id":72591,"properties":{"V":230}},{"type":"LineString","arcs":[9311],"id":72595,"properties":{"V":230}},{"type":"LineString","arcs":[9312],"id":72614,"properties":{"V":230}},{"type":"LineString","arcs":[9313],"id":72620,"properties":{"V":230}},{"type":"LineString","arcs":[9314],"id":72621,"properties":{"V":230}},{"type":"LineString","arcs":[9315],"id":72625,"properties":{"V":230}},{"type":"LineString","arcs":[9316],"id":72626,"properties":{"V":230}},{"type":"LineString","arcs":[9317],"id":72627,"properties":{"V":230}},{"type":"LineString","arcs":[9318],"id":72629,"properties":{"V":230}},{"type":"LineString","arcs":[9319],"id":72630,"properties":{"V":230}},{"type":"LineString","arcs":[9320],"id":72641,"properties":{"V":230}},{"type":"LineString","arcs":[9321],"id":72666,"properties":{"V":345}},{"type":"LineString","arcs":[9322],"id":72687,"properties":{"V":230}},{"type":"LineString","arcs":[9323],"id":72698,"properties":{"V":230}},{"type":"LineString","arcs":[9324],"id":72701,"properties":{"V":230}},{"type":"LineString","arcs":[9325],"id":72718,"properties":{"V":230}},{"type":"LineString","arcs":[9326],"id":72719,"properties":{"V":230}},{"type":"LineString","arcs":[9327,9328,9329],"id":72721,"properties":{"V":345}},{"type":"LineString","arcs":[9330],"id":72722,"properties":{"V":230}},{"type":"LineString","arcs":[9331],"id":72727,"properties":{"V":345}},{"type":"LineString","arcs":[9332],"id":72733,"properties":{"V":230}},{"type":"LineString","arcs":[9333],"id":72745,"properties":{"V":230}},{"type":"LineString","arcs":[9334],"id":72754,"properties":{"V":230}},{"type":"LineString","arcs":[9335],"id":72779,"properties":{"V":230}},{"type":"LineString","arcs":[9336],"id":72783,"properties":{"V":230}},{"type":"LineString","arcs":[9337],"id":72787,"properties":{"V":230}},{"type":"LineString","arcs":[9338],"id":72789,"properties":{"V":765}},{"type":"LineString","arcs":[9339],"id":72794,"properties":{"V":500}},{"type":"LineString","arcs":[9340],"id":72802,"properties":{"V":230}},{"type":"LineString","arcs":[9341],"id":72812,"properties":{"V":230}},{"type":"LineString","arcs":[9342],"id":72815,"properties":{"V":345}},{"type":"LineString","arcs":[9343,9344],"id":72823,"properties":{"V":500}},{"type":"LineString","arcs":[9345],"id":72827,"properties":{"V":230}},{"type":"LineString","arcs":[9346],"id":72839,"properties":{"V":345}},{"type":"LineString","arcs":[9347],"id":72840,"properties":{"V":230}},{"type":"LineString","arcs":[9348],"id":72845,"properties":{"V":500}},{"type":"LineString","arcs":[9349],"id":72850,"properties":{"V":345}},{"type":"LineString","arcs":[9350],"id":72930,"properties":{"V":230}},{"type":"LineString","arcs":[9351],"id":72933,"properties":{"V":230}},{"type":"LineString","arcs":[9352,9353],"id":72934,"properties":{"V":230}},{"type":"LineString","arcs":[9354],"id":72943,"properties":{"V":230}},{"type":"LineString","arcs":[9355],"id":72950,"properties":{"V":230}},{"type":"LineString","arcs":[9356],"id":72951,"properties":{"V":230}},{"type":"LineString","arcs":[9357],"id":72956,"properties":{"V":345}},{"type":"LineString","arcs":[9358],"id":72961,"properties":{"V":230}},{"type":"LineString","arcs":[9359],"id":72969,"properties":{"V":345}},{"type":"LineString","arcs":[9360],"id":72977,"properties":{"V":345}},{"type":"LineString","arcs":[9361],"id":72979,"properties":{"V":345}},{"type":"LineString","arcs":[9362],"id":73007,"properties":{"V":230}},{"type":"LineString","arcs":[9363],"id":73013,"properties":{"V":345}},{"type":"LineString","arcs":[9364],"id":73015,"properties":{"V":345}},{"type":"LineString","arcs":[9365],"id":73016,"properties":{"V":230}},{"type":"LineString","arcs":[9366],"id":73018,"properties":{"V":500}},{"type":"LineString","arcs":[9367],"id":73037,"properties":{"V":345}},{"type":"LineString","arcs":[9368],"id":73038,"properties":{"V":230}},{"type":"LineString","arcs":[9369],"id":73059,"properties":{"V":230}},{"type":"LineString","arcs":[9370],"id":73061,"properties":{"V":230}},{"type":"LineString","arcs":[9371],"id":73068,"properties":{"V":230}},{"type":"LineString","arcs":[9372],"id":73069,"properties":{"V":230}},{"type":"LineString","arcs":[9373,9374,9375],"id":73079,"properties":{"V":230}},{"type":"LineString","arcs":[9376],"id":73083,"properties":{"V":230}},{"type":"LineString","arcs":[9377],"id":73084,"properties":{"V":500}},{"type":"LineString","arcs":[9378],"id":73113,"properties":{"V":345}},{"type":"LineString","arcs":[9379],"id":73115,"properties":{"V":230}},{"type":"LineString","arcs":[9380],"id":73117,"properties":{"V":230}},{"type":"LineString","arcs":[9381],"id":73125,"properties":{"V":230}},{"type":"LineString","arcs":[9382],"id":73132,"properties":{"V":230}},{"type":"LineString","arcs":[9383],"id":73135,"properties":{"V":500}},{"type":"LineString","arcs":[9384],"id":73136,"properties":{"V":345}},{"type":"LineString","arcs":[9385],"id":73144,"properties":{"V":230}},{"type":"LineString","arcs":[9386],"id":73149,"properties":{"V":230}},{"type":"LineString","arcs":[9387],"id":73150,"properties":{"V":230}},{"type":"LineString","arcs":[9388],"id":73152,"properties":{"V":230}},{"type":"LineString","arcs":[9389,9390],"id":73160,"properties":{"V":230}},{"type":"LineString","arcs":[9391],"id":73176,"properties":{"V":345}},{"type":"LineString","arcs":[9392],"id":73177,"properties":{"V":230}},{"type":"LineString","arcs":[9393],"id":73198,"properties":{"V":230}},{"type":"LineString","arcs":[9394],"id":73219,"properties":{"V":230}},{"type":"LineString","arcs":[9395],"id":73220,"properties":{"V":345}},{"type":"LineString","arcs":[9396],"id":73257,"properties":{"V":230}},{"type":"LineString","arcs":[9397],"id":73267,"properties":{"V":345}},{"type":"LineString","arcs":[9398],"id":73271,"properties":{"V":230}},{"type":"LineString","arcs":[9399],"id":73280,"properties":{"V":345}},{"type":"LineString","arcs":[9400],"id":73281,"properties":{"V":230}},{"type":"LineString","arcs":[9401],"id":73284,"properties":{"V":230}},{"type":"LineString","arcs":[9402],"id":73291,"properties":{"V":500}},{"type":"LineString","arcs":[9403],"id":73294,"properties":{"V":500}},{"type":"LineString","arcs":[9404],"id":73296,"properties":{"V":230}},{"type":"LineString","arcs":[9405],"id":73302,"properties":{"V":230}},{"type":"LineString","arcs":[9406],"id":73314,"properties":{"V":230}},{"type":"LineString","arcs":[9407],"id":73327,"properties":{"V":230}},{"type":"LineString","arcs":[9408],"id":73328,"properties":{"V":230}},{"type":"LineString","arcs":[9409],"id":73330,"properties":{"V":345}},{"type":"LineString","arcs":[9410],"id":73343,"properties":{"V":230}},{"type":"LineString","arcs":[9411],"id":73350,"properties":{"V":230}},{"type":"LineString","arcs":[9412],"id":73351,"properties":{"V":345}},{"type":"LineString","arcs":[9413],"id":73360,"properties":{"V":230}},{"type":"LineString","arcs":[9414],"id":73363,"properties":{"V":230}},{"type":"LineString","arcs":[9415],"id":73379,"properties":{"V":230}},{"type":"LineString","arcs":[9416],"id":73385,"properties":{"V":230}},{"type":"LineString","arcs":[9417],"id":73417,"properties":{"V":345}},{"type":"LineString","arcs":[9418],"id":73420,"properties":{"V":500}},{"type":"LineString","arcs":[9419],"id":73429,"properties":{"V":230}},{"type":"LineString","arcs":[9420],"id":73437,"properties":{"V":230}},{"type":"LineString","arcs":[9421],"id":73444,"properties":{"V":500}},{"type":"LineString","arcs":[9422],"id":73445,"properties":{"V":230}},{"type":"LineString","arcs":[9423],"id":73447,"properties":{"V":345}},{"type":"LineString","arcs":[9424],"id":73456,"properties":{"V":500}},{"type":"LineString","arcs":[9425],"id":73473,"properties":{"V":230}},{"type":"LineString","arcs":[9426],"id":73474,"properties":{"V":230}},{"type":"LineString","arcs":[9427],"id":73486,"properties":{"V":230}},{"type":"LineString","arcs":[9428],"id":73491,"properties":{"V":345}},{"type":"LineString","arcs":[9429],"id":73492,"properties":{"V":230}},{"type":"LineString","arcs":[9430],"id":73496,"properties":{"V":500}},{"type":"LineString","arcs":[9431],"id":73498,"properties":{"V":230}},{"type":"LineString","arcs":[9432],"id":73512,"properties":{"V":345}},{"type":"LineString","arcs":[9433],"id":73515,"properties":{"V":345}},{"type":"LineString","arcs":[9434],"id":73521,"properties":{"V":230}},{"type":"LineString","arcs":[9435],"id":73524,"properties":{"V":230}},{"type":"LineString","arcs":[9436],"id":73551,"properties":{"V":230}},{"type":"LineString","arcs":[9437],"id":73552,"properties":{"V":230}},{"type":"LineString","arcs":[9438],"id":73569,"properties":{"V":230}},{"type":"LineString","arcs":[9439],"id":73574,"properties":{"V":345}},{"type":"LineString","arcs":[9440],"id":73575,"properties":{"V":230}},{"type":"LineString","arcs":[9441],"id":73584,"properties":{"V":230}},{"type":"LineString","arcs":[9442],"id":73603,"properties":{"V":230}},{"type":"LineString","arcs":[9443],"id":73604,"properties":{"V":345}},{"type":"LineString","arcs":[9444],"id":73609,"properties":{"V":230}},{"type":"LineString","arcs":[9445],"id":73630,"properties":{"V":230}},{"type":"LineString","arcs":[9446],"id":73639,"properties":{"V":230}},{"type":"LineString","arcs":[9447],"id":73648,"properties":{"V":230}},{"type":"LineString","arcs":[9448],"id":73654,"properties":{"V":230}},{"type":"LineString","arcs":[9449],"id":73655,"properties":{"V":230}},{"type":"LineString","arcs":[9450],"id":73671,"properties":{"V":500}},{"type":"LineString","arcs":[9451],"id":73672,"properties":{"V":230}},{"type":"LineString","arcs":[9452],"id":73697,"properties":{"V":230}},{"type":"LineString","arcs":[9453],"id":73702,"properties":{"V":230}},{"type":"LineString","arcs":[9454],"id":73713,"properties":{"V":230}},{"type":"LineString","arcs":[9455],"id":73714,"properties":{"V":345}},{"type":"LineString","arcs":[9456],"id":73717,"properties":{"V":230}},{"type":"LineString","arcs":[9457],"id":73724,"properties":{"V":230}},{"type":"LineString","arcs":[9458],"id":73728,"properties":{"V":230}},{"type":"LineString","arcs":[9459],"id":73732,"properties":{"V":230}},{"type":"LineString","arcs":[9460],"id":73738,"properties":{"V":345}},{"type":"LineString","arcs":[9461],"id":73739,"properties":{"V":230}},{"type":"LineString","arcs":[9462],"id":73744,"properties":{"V":230}},{"type":"LineString","arcs":[9463],"id":73752,"properties":{"V":230}},{"type":"LineString","arcs":[9464],"id":73759,"properties":{"V":230}},{"type":"LineString","arcs":[9465],"id":73766,"properties":{"V":500}},{"type":"LineString","arcs":[9466],"id":73769,"properties":{"V":230}},{"type":"LineString","arcs":[9467],"id":73773,"properties":{"V":230}},{"type":"LineString","arcs":[9468],"id":73798,"properties":{"V":500}},{"type":"LineString","arcs":[9469],"id":73800,"properties":{"V":345}},{"type":"LineString","arcs":[9470],"id":73811,"properties":{"V":230}},{"type":"LineString","arcs":[9471],"id":73825,"properties":{"V":230}},{"type":"LineString","arcs":[9472],"id":73837,"properties":{"V":230}},{"type":"LineString","arcs":[9473],"id":73849,"properties":{"V":765}},{"type":"LineString","arcs":[9474],"id":73859,"properties":{"V":500}},{"type":"LineString","arcs":[9475],"id":73863,"properties":{"V":230}},{"type":"LineString","arcs":[9476],"id":73882,"properties":{"V":345}},{"type":"LineString","arcs":[9477],"id":73893,"properties":{"V":230}},{"type":"LineString","arcs":[9478,9479,9480],"id":73898,"properties":{"V":500}},{"type":"LineString","arcs":[9481],"id":73905,"properties":{"V":230}},{"type":"LineString","arcs":[9482],"id":73907,"properties":{"V":230}},{"type":"LineString","arcs":[9483],"id":73909,"properties":{"V":500}},{"type":"LineString","arcs":[9484],"id":73926,"properties":{"V":230}},{"type":"LineString","arcs":[9485],"id":73937,"properties":{"V":230}},{"type":"LineString","arcs":[9486],"id":73942,"properties":{"V":230}},{"type":"LineString","arcs":[9487],"id":73950,"properties":{"V":230}},{"type":"LineString","arcs":[9488],"id":73951,"properties":{"V":230}},{"type":"LineString","arcs":[9489],"id":73957,"properties":{"V":230}},{"type":"LineString","arcs":[9490],"id":73960,"properties":{"V":230}},{"type":"LineString","arcs":[9491],"id":73972,"properties":{"V":230}},{"type":"LineString","arcs":[9492],"id":73978,"properties":{"V":230}},{"type":"LineString","arcs":[9493],"id":73982,"properties":{"V":230}},{"type":"LineString","arcs":[9494],"id":73985,"properties":{"V":345}},{"type":"LineString","arcs":[9495],"id":73986,"properties":{"V":345}},{"type":"LineString","arcs":[9496],"id":73992,"properties":{"V":500}},{"type":"LineString","arcs":[9497],"id":73997,"properties":{"V":230}},{"type":"LineString","arcs":[9498],"id":74000,"properties":{"V":230}},{"type":"LineString","arcs":[9499],"id":74020,"properties":{"V":345}},{"type":"LineString","arcs":[9500],"id":74031,"properties":{"V":230}},{"type":"LineString","arcs":[9501],"id":74055,"properties":{"V":345}},{"type":"LineString","arcs":[9502],"id":74079,"properties":{"V":230}},{"type":"LineString","arcs":[9503],"id":74087,"properties":{"V":345}},{"type":"LineString","arcs":[9504],"id":74096,"properties":{"V":230}},{"type":"LineString","arcs":[9505],"id":74108,"properties":{"V":230}},{"type":"LineString","arcs":[9506],"id":74114,"properties":{"V":230}},{"type":"LineString","arcs":[9507],"id":74120,"properties":{"V":230}},{"type":"LineString","arcs":[9508],"id":74123,"properties":{"V":500}},{"type":"LineString","arcs":[9509],"id":74132,"properties":{"V":230}},{"type":"LineString","arcs":[9510],"id":74136,"properties":{"V":500}},{"type":"LineString","arcs":[9511],"id":74143,"properties":{"V":230}},{"type":"LineString","arcs":[9512],"id":74153,"properties":{"V":230}},{"type":"LineString","arcs":[9513],"id":74158,"properties":{"V":345}},{"type":"LineString","arcs":[9514],"id":74173,"properties":{"V":230}},{"type":"LineString","arcs":[9515],"id":74176,"properties":{"V":345}},{"type":"LineString","arcs":[9516],"id":74180,"properties":{"V":230}},{"type":"LineString","arcs":[9517],"id":74182,"properties":{"V":230}},{"type":"LineString","arcs":[9518],"id":74198,"properties":{"V":230}},{"type":"LineString","arcs":[9519],"id":74200,"properties":{"V":230}},{"type":"LineString","arcs":[9520],"id":74201,"properties":{"V":230}},{"type":"LineString","arcs":[9521],"id":74202,"properties":{"V":345}},{"type":"LineString","arcs":[9522],"id":74204,"properties":{"V":230}},{"type":"LineString","arcs":[9523],"id":74212,"properties":{"V":500}},{"type":"LineString","arcs":[9524],"id":74221,"properties":{"V":230}},{"type":"LineString","arcs":[9525],"id":74228,"properties":{"V":230}},{"type":"LineString","arcs":[9526],"id":74234,"properties":{"V":345}},{"type":"LineString","arcs":[9527],"id":74242,"properties":{"V":345}},{"type":"LineString","arcs":[9528],"id":74245,"properties":{"V":500}},{"type":"LineString","arcs":[9529],"id":74255,"properties":{"V":345}},{"type":"LineString","arcs":[9530],"id":74271,"properties":{"V":345}},{"type":"LineString","arcs":[9531],"id":74277,"properties":{"V":230}},{"type":"LineString","arcs":[9532],"id":74283,"properties":{"V":230}},{"type":"LineString","arcs":[9533],"id":74289,"properties":{"V":230}},{"type":"LineString","arcs":[9534],"id":74290,"properties":{"V":230}},{"type":"LineString","arcs":[9535],"id":74298,"properties":{"V":230}},{"type":"LineString","arcs":[9536],"id":74306,"properties":{"V":500}},{"type":"LineString","arcs":[9537],"id":74314,"properties":{"V":230}},{"type":"LineString","arcs":[9538],"id":74315,"properties":{"V":230}},{"type":"LineString","arcs":[9539],"id":74316,"properties":{"V":230}},{"type":"LineString","arcs":[9540],"id":74324,"properties":{"V":230}},{"type":"LineString","arcs":[9541],"id":74330,"properties":{"V":500}},{"type":"LineString","arcs":[9542],"id":74332,"properties":{"V":230}},{"type":"LineString","arcs":[9543],"id":74341,"properties":{"V":230}},{"type":"LineString","arcs":[9544],"id":74350,"properties":{"V":230}},{"type":"LineString","arcs":[9545,9546],"id":74357,"properties":{"V":500}},{"type":"LineString","arcs":[9547],"id":74362,"properties":{"V":230}},{"type":"LineString","arcs":[9548],"id":74364,"properties":{"V":230}},{"type":"LineString","arcs":[9549],"id":74389,"properties":{"V":500}},{"type":"LineString","arcs":[9550],"id":74390,"properties":{"V":230}},{"type":"LineString","arcs":[9551],"id":74401,"properties":{"V":765}},{"type":"LineString","arcs":[9552],"id":74411,"properties":{"V":345}},{"type":"LineString","arcs":[9553],"id":74415,"properties":{"V":230}},{"type":"LineString","arcs":[9554],"id":74425,"properties":{"V":230}},{"type":"LineString","arcs":[9555],"id":74435,"properties":{"V":230}},{"type":"LineString","arcs":[9556],"id":74441,"properties":{"V":230}},{"type":"LineString","arcs":[9557],"id":74447,"properties":{"V":230}},{"type":"LineString","arcs":[9558],"id":74448,"properties":{"V":230}},{"type":"LineString","arcs":[9559],"id":74453,"properties":{"V":230}},{"type":"LineString","arcs":[9560],"id":74454,"properties":{"V":230}},{"type":"LineString","arcs":[9561],"id":74474,"properties":{"V":230}},{"type":"LineString","arcs":[9562],"id":74478,"properties":{"V":345}},{"type":"LineString","arcs":[9563,9564,9565,9566,9567,9568],"id":74480,"properties":{"V":230}},{"type":"LineString","arcs":[9569],"id":74482,"properties":{"V":230}},{"type":"LineString","arcs":[9570],"id":74497,"properties":{"V":345}},{"type":"LineString","arcs":[9571],"id":74506,"properties":{"V":345}},{"type":"LineString","arcs":[9572],"id":74509,"properties":{"V":230}},{"type":"LineString","arcs":[9573],"id":74516,"properties":{"V":230}},{"type":"LineString","arcs":[9574,9575,9576],"id":74570,"properties":{"V":230}},{"type":"LineString","arcs":[9577],"id":74590,"properties":{"V":230}},{"type":"LineString","arcs":[9578],"id":74613,"properties":{"V":345}},{"type":"LineString","arcs":[9579],"id":74643,"properties":{"V":230}},{"type":"LineString","arcs":[9580],"id":74650,"properties":{"V":230}},{"type":"LineString","arcs":[9581],"id":74661,"properties":{"V":345}},{"type":"LineString","arcs":[9582],"id":74692,"properties":{"V":345}},{"type":"LineString","arcs":[9583],"id":74703,"properties":{"V":230}},{"type":"LineString","arcs":[9584],"id":74711,"properties":{"V":230}},{"type":"LineString","arcs":[9585],"id":74715,"properties":{"V":230}},{"type":"LineString","arcs":[9586],"id":74716,"properties":{"V":230}},{"type":"LineString","arcs":[9587],"id":74731,"properties":{"V":230}},{"type":"LineString","arcs":[9588],"id":74735,"properties":{"V":230}},{"type":"LineString","arcs":[9589],"id":74747,"properties":{"V":500}},{"type":"LineString","arcs":[9590],"id":74748,"properties":{"V":230}},{"type":"LineString","arcs":[9591],"id":74758,"properties":{"V":230}},{"type":"LineString","arcs":[9592],"id":74760,"properties":{"V":345}},{"type":"LineString","arcs":[9593],"id":74767,"properties":{"V":500}},{"type":"LineString","arcs":[9594],"id":74775,"properties":{"V":500}},{"type":"LineString","arcs":[9595],"id":74777,"properties":{"V":230}},{"type":"LineString","arcs":[9596],"id":74807,"properties":{"V":230}},{"type":"LineString","arcs":[9597],"id":74827,"properties":{"V":230}},{"type":"LineString","arcs":[9598],"id":74830,"properties":{"V":230}},{"type":"LineString","arcs":[9599],"id":74836,"properties":{"V":230}},{"type":"LineString","arcs":[9600],"id":74846,"properties":{"V":230}},{"type":"LineString","arcs":[9601],"id":74849,"properties":{"V":345}},{"type":"LineString","arcs":[9602,9603],"id":74850,"properties":{"V":345}},{"type":"LineString","arcs":[9604],"id":74855,"properties":{"V":345}},{"type":"LineString","arcs":[9605],"id":74865,"properties":{"V":230}},{"type":"LineString","arcs":[9606],"id":74884,"properties":{"V":345}},{"type":"LineString","arcs":[9607],"id":74885,"properties":{"V":230}},{"type":"LineString","arcs":[9608],"id":74891,"properties":{"V":345}},{"type":"LineString","arcs":[9609],"id":74898,"properties":{"V":230}},{"type":"LineString","arcs":[9610],"id":74900,"properties":{"V":345}},{"type":"LineString","arcs":[9611],"id":74916,"properties":{"V":230}},{"type":"LineString","arcs":[9612],"id":74918,"properties":{"V":230}},{"type":"LineString","arcs":[9613],"id":74924,"properties":{"V":345}},{"type":"LineString","arcs":[9614],"id":74931,"properties":{"V":230}},{"type":"LineString","arcs":[9615],"id":74938,"properties":{"V":230}},{"type":"LineString","arcs":[9616],"id":74949,"properties":{"V":230}},{"type":"LineString","arcs":[9617],"id":74954,"properties":{"V":500}},{"type":"LineString","arcs":[9618],"id":74963,"properties":{"V":230}},{"type":"LineString","arcs":[9619],"id":74977,"properties":{"V":230}},{"type":"LineString","arcs":[9620],"id":74997,"properties":{"V":345}},{"type":"LineString","arcs":[9621],"id":75013,"properties":{"V":230}},{"type":"LineString","arcs":[9622],"id":75016,"properties":{"V":230}},{"type":"LineString","arcs":[9623],"id":75021,"properties":{"V":230}},{"type":"LineString","arcs":[9624],"id":75033,"properties":{"V":230}},{"type":"LineString","arcs":[9625],"id":75034,"properties":{"V":500}},{"type":"LineString","arcs":[9626],"id":75045,"properties":{"V":345}},{"type":"LineString","arcs":[9627],"id":75051,"properties":{"V":345}},{"type":"LineString","arcs":[9628],"id":75067,"properties":{"V":345}},{"type":"LineString","arcs":[9629],"id":75079,"properties":{"V":345}},{"type":"LineString","arcs":[9630],"id":75084,"properties":{"V":230}},{"type":"LineString","arcs":[9631],"id":75092,"properties":{"V":230}},{"type":"LineString","arcs":[9632],"id":75098,"properties":{"V":500}},{"type":"LineString","arcs":[9633],"id":75101,"properties":{"V":345}},{"type":"LineString","arcs":[9634],"id":75108,"properties":{"V":230}},{"type":"LineString","arcs":[9635],"id":75118,"properties":{"V":230}},{"type":"LineString","arcs":[9636],"id":75121,"properties":{"V":230}},{"type":"LineString","arcs":[9637],"id":75123,"properties":{"V":230}},{"type":"LineString","arcs":[9638],"id":75141,"properties":{"V":230}},{"type":"LineString","arcs":[9639],"id":75144,"properties":{"V":230}},{"type":"LineString","arcs":[9640],"id":75146,"properties":{"V":230}},{"type":"LineString","arcs":[9641],"id":75148,"properties":{"V":230}},{"type":"LineString","arcs":[9642],"id":75158,"properties":{"V":230}},{"type":"LineString","arcs":[9643],"id":75161,"properties":{"V":230}},{"type":"LineString","arcs":[9644],"id":75162,"properties":{"V":230}},{"type":"LineString","arcs":[9645],"id":75163,"properties":{"V":230}},{"type":"LineString","arcs":[9646],"id":75164,"properties":{"V":230}},{"type":"LineString","arcs":[9647,9648,9649,9650],"id":75165,"properties":{"V":345}},{"type":"LineString","arcs":[9651],"id":75183,"properties":{"V":345}},{"type":"LineString","arcs":[9652],"id":75186,"properties":{"V":230}},{"type":"LineString","arcs":[9653],"id":75195,"properties":{"V":345}},{"type":"LineString","arcs":[9654],"id":75200,"properties":{"V":230}},{"type":"LineString","arcs":[9655],"id":75228,"properties":{"V":230}},{"type":"LineString","arcs":[9656],"id":75229,"properties":{"V":230}},{"type":"LineString","arcs":[9657],"id":75238,"properties":{"V":345}},{"type":"LineString","arcs":[9658],"id":75242,"properties":{"V":345}},{"type":"LineString","arcs":[9659],"id":75248,"properties":{"V":230}},{"type":"LineString","arcs":[9660],"id":75250,"properties":{"V":230}},{"type":"LineString","arcs":[9661],"id":75277,"properties":{"V":230}},{"type":"LineString","arcs":[9662],"id":75279,"properties":{"V":230}},{"type":"LineString","arcs":[9663],"id":75280,"properties":{"V":345}},{"type":"LineString","arcs":[9664],"id":75281,"properties":{"V":345}},{"type":"LineString","arcs":[9665],"id":75292,"properties":{"V":230}},{"type":"LineString","arcs":[9666],"id":75306,"properties":{"V":230}},{"type":"LineString","arcs":[9667],"id":75311,"properties":{"V":230}},{"type":"LineString","arcs":[9668],"id":75318,"properties":{"V":230}},{"type":"LineString","arcs":[9669],"id":75323,"properties":{"V":230}},{"type":"LineString","arcs":[9670],"id":75324,"properties":{"V":345}},{"type":"LineString","arcs":[9671],"id":75329,"properties":{"V":230}},{"type":"LineString","arcs":[9672],"id":75335,"properties":{"V":230}},{"type":"LineString","arcs":[9673],"id":75340,"properties":{"V":230}},{"type":"LineString","arcs":[9674],"id":75345,"properties":{"V":230}},{"type":"LineString","arcs":[9675],"id":75346,"properties":{"V":230}},{"type":"LineString","arcs":[9676],"id":75351,"properties":{"V":230}},{"type":"LineString","arcs":[9677],"id":75353,"properties":{"V":230}},{"type":"LineString","arcs":[9678],"id":75365,"properties":{"V":230}},{"type":"LineString","arcs":[9679],"id":75369,"properties":{"V":230}},{"type":"LineString","arcs":[9680],"id":75377,"properties":{"V":230}},{"type":"LineString","arcs":[9681],"id":75379,"properties":{"V":230}},{"type":"LineString","arcs":[9682],"id":75382,"properties":{"V":230}},{"type":"LineString","arcs":[9683],"id":75385,"properties":{"V":345}},{"type":"LineString","arcs":[9684],"id":75401,"properties":{"V":230}},{"type":"LineString","arcs":[9685],"id":75403,"properties":{"V":230}},{"type":"LineString","arcs":[9686],"id":75412,"properties":{"V":230}},{"type":"LineString","arcs":[9687],"id":75421,"properties":{"V":230}},{"type":"LineString","arcs":[9688],"id":75436,"properties":{"V":230}},{"type":"LineString","arcs":[9689],"id":75445,"properties":{"V":345}},{"type":"LineString","arcs":[9690],"id":75447,"properties":{"V":230}},{"type":"LineString","arcs":[9691],"id":75452,"properties":{"V":230}},{"type":"LineString","arcs":[9692],"id":75460,"properties":{"V":345}},{"type":"LineString","arcs":[9693],"id":75475,"properties":{"V":230}},{"type":"LineString","arcs":[9694],"id":75493,"properties":{"V":345}},{"type":"LineString","arcs":[9695],"id":75496,"properties":{"V":345}},{"type":"LineString","arcs":[9696],"id":75507,"properties":{"V":230}},{"type":"LineString","arcs":[9697],"id":75508,"properties":{"V":345}},{"type":"LineString","arcs":[9698],"id":75509,"properties":{"V":230}},{"type":"LineString","arcs":[9699],"id":75536,"properties":{"V":230}},{"type":"LineString","arcs":[9700],"id":75538,"properties":{"V":230}},{"type":"LineString","arcs":[9701],"id":75542,"properties":{"V":345}},{"type":"LineString","arcs":[9702],"id":75545,"properties":{"V":345}},{"type":"LineString","arcs":[9703],"id":75547,"properties":{"V":345}},{"type":"LineString","arcs":[9704,9705],"id":75564,"properties":{"V":230}},{"type":"LineString","arcs":[9706],"id":75567,"properties":{"V":230}},{"type":"LineString","arcs":[9707],"id":75576,"properties":{"V":230}},{"type":"LineString","arcs":[9708],"id":75596,"properties":{"V":230}},{"type":"LineString","arcs":[9709],"id":75600,"properties":{"V":230}},{"type":"LineString","arcs":[9710],"id":75613,"properties":{"V":230}},{"type":"LineString","arcs":[9711],"id":75623,"properties":{"V":345}},{"type":"LineString","arcs":[9712],"id":75631,"properties":{"V":230}},{"type":"LineString","arcs":[9713],"id":75637,"properties":{"V":230}},{"type":"LineString","arcs":[9714],"id":75646,"properties":{"V":230}},{"type":"LineString","arcs":[9715],"id":75651,"properties":{"V":230}},{"type":"LineString","arcs":[9716],"id":75663,"properties":{"V":345}},{"type":"LineString","arcs":[9717],"id":75666,"properties":{"V":230}},{"type":"LineString","arcs":[9718],"id":75670,"properties":{"V":230}},{"type":"LineString","arcs":[9719],"id":75674,"properties":{"V":230}},{"type":"LineString","arcs":[9720],"id":75683,"properties":{"V":230}},{"type":"LineString","arcs":[9721,9722,9723],"id":75692,"properties":{"V":500}},{"type":"LineString","arcs":[9724],"id":75699,"properties":{"V":230}},{"type":"LineString","arcs":[9725],"id":75700,"properties":{"V":500}},{"type":"LineString","arcs":[9726],"id":75702,"properties":{"V":765}},{"type":"LineString","arcs":[9727],"id":75709,"properties":{"V":230}},{"type":"LineString","arcs":[9728],"id":75710,"properties":{"V":230}},{"type":"LineString","arcs":[9729],"id":75712,"properties":{"V":230}},{"type":"LineString","arcs":[9730],"id":75729,"properties":{"V":230}},{"type":"LineString","arcs":[9731],"id":75731,"properties":{"V":230}},{"type":"LineString","arcs":[9732],"id":75743,"properties":{"V":345}},{"type":"LineString","arcs":[9733],"id":75753,"properties":{"V":345}},{"type":"LineString","arcs":[9734],"id":75783,"properties":{"V":345}},{"type":"LineString","arcs":[9735],"id":75794,"properties":{"V":230}},{"type":"LineString","arcs":[9736],"id":75795,"properties":{"V":345}},{"type":"LineString","arcs":[9737],"id":75799,"properties":{"V":230}},{"type":"LineString","arcs":[9738],"id":75806,"properties":{"V":500}},{"type":"LineString","arcs":[9739],"id":75820,"properties":{"V":230}},{"type":"LineString","arcs":[9740],"id":75822,"properties":{"V":230}},{"type":"LineString","arcs":[9741],"id":75825,"properties":{"V":500}},{"type":"LineString","arcs":[9742],"id":75833,"properties":{"V":230}},{"type":"LineString","arcs":[9743],"id":75842,"properties":{"V":230}},{"type":"LineString","arcs":[9744],"id":75843,"properties":{"V":230}},{"type":"LineString","arcs":[9745],"id":75845,"properties":{"V":345}},{"type":"LineString","arcs":[9746],"id":75852,"properties":{"V":230}},{"type":"LineString","arcs":[9747],"id":75855,"properties":{"V":345}},{"type":"LineString","arcs":[9748],"id":75857,"properties":{"V":230}},{"type":"LineString","arcs":[9749],"id":75865,"properties":{"V":230}},{"type":"LineString","arcs":[9750],"id":75872,"properties":{"V":345}},{"type":"LineString","arcs":[9751],"id":75873,"properties":{"V":230}},{"type":"LineString","arcs":[9752],"id":75876,"properties":{"V":230}},{"type":"LineString","arcs":[9753,9754],"id":75882,"properties":{"V":230}},{"type":"LineString","arcs":[9755],"id":75887,"properties":{"V":230}},{"type":"LineString","arcs":[9756],"id":75888,"properties":{"V":230}},{"type":"LineString","arcs":[9757],"id":75889,"properties":{"V":500}},{"type":"LineString","arcs":[9758],"id":75890,"properties":{"V":230}},{"type":"LineString","arcs":[9759,9760,9761,9762,9763],"id":75891,"properties":{"V":500}},{"type":"LineString","arcs":[9764],"id":75893,"properties":{"V":230}},{"type":"LineString","arcs":[9765],"id":75897,"properties":{"V":345}},{"type":"LineString","arcs":[9766],"id":75901,"properties":{"V":230}},{"type":"LineString","arcs":[9767],"id":75910,"properties":{"V":345}},{"type":"LineString","arcs":[9768,9769,9770],"id":75922,"properties":{"V":230}},{"type":"LineString","arcs":[9771],"id":75951,"properties":{"V":345}},{"type":"LineString","arcs":[9772],"id":75954,"properties":{"V":345}},{"type":"LineString","arcs":[9773],"id":75956,"properties":{"V":230}},{"type":"LineString","arcs":[9774],"id":75957,"properties":{"V":230}},{"type":"LineString","arcs":[9775],"id":75991,"properties":{"V":230}},{"type":"LineString","arcs":[9776],"id":75997,"properties":{"V":500}},{"type":"LineString","arcs":[9777],"id":75998,"properties":{"V":345}},{"type":"LineString","arcs":[9778],"id":76009,"properties":{"V":230}},{"type":"LineString","arcs":[9779],"id":76018,"properties":{"V":230}},{"type":"LineString","arcs":[9780],"id":76022,"properties":{"V":345}},{"type":"LineString","arcs":[9781],"id":76023,"properties":{"V":230}},{"type":"LineString","arcs":[9782],"id":76029,"properties":{"V":230}},{"type":"LineString","arcs":[9783],"id":76032,"properties":{"V":230}},{"type":"LineString","arcs":[9784],"id":76047,"properties":{"V":345}},{"type":"LineString","arcs":[9785],"id":76057,"properties":{"V":230}},{"type":"LineString","arcs":[9786],"id":76061,"properties":{"V":230}},{"type":"LineString","arcs":[9787],"id":76064,"properties":{"V":230}},{"type":"LineString","arcs":[9788],"id":76065,"properties":{"V":345}},{"type":"LineString","arcs":[9789],"id":76067,"properties":{"V":230}},{"type":"LineString","arcs":[9790],"id":76073,"properties":{"V":345}},{"type":"LineString","arcs":[9791],"id":76074,"properties":{"V":230}},{"type":"LineString","arcs":[9792],"id":76081,"properties":{"V":230}},{"type":"LineString","arcs":[9793],"id":76095,"properties":{"V":230}},{"type":"LineString","arcs":[9794],"id":76100,"properties":{"V":500}},{"type":"LineString","arcs":[9795],"id":76102,"properties":{"V":230}},{"type":"LineString","arcs":[9796],"id":76121,"properties":{"V":345}},{"type":"LineString","arcs":[9797],"id":76122,"properties":{"V":230}},{"type":"LineString","arcs":[9798],"id":76127,"properties":{"V":230}},{"type":"LineString","arcs":[9799],"id":76156,"properties":{"V":500}},{"type":"LineString","arcs":[9800],"id":76159,"properties":{"V":230}},{"type":"LineString","arcs":[9801],"id":76165,"properties":{"V":230}},{"type":"LineString","arcs":[9802],"id":76168,"properties":{"V":765}},{"type":"LineString","arcs":[9803],"id":76177,"properties":{"V":345}},{"type":"LineString","arcs":[9804],"id":76191,"properties":{"V":500}},{"type":"LineString","arcs":[9805,9806,9807,9808,9809,9810,9811,9812],"id":76196,"properties":{"V":345}},{"type":"LineString","arcs":[9813],"id":76203,"properties":{"V":230}},{"type":"LineString","arcs":[9814],"id":76208,"properties":{"V":345}},{"type":"LineString","arcs":[9815],"id":76213,"properties":{"V":230}},{"type":"LineString","arcs":[9816],"id":76221,"properties":{"V":230}},{"type":"LineString","arcs":[9817],"id":76224,"properties":{"V":230}},{"type":"LineString","arcs":[9818],"id":76245,"properties":{"V":230}},{"type":"LineString","arcs":[9819],"id":76249,"properties":{"V":230}},{"type":"LineString","arcs":[9820],"id":76283,"properties":{"V":500}},{"type":"LineString","arcs":[9821],"id":76284,"properties":{"V":230}},{"type":"LineString","arcs":[9822],"id":76309,"properties":{"V":230}},{"type":"LineString","arcs":[9823],"id":76321,"properties":{"V":345}},{"type":"LineString","arcs":[9824],"id":76324,"properties":{"V":230}},{"type":"LineString","arcs":[9825],"id":76326,"properties":{"V":230}},{"type":"LineString","arcs":[9826],"id":76328,"properties":{"V":230}},{"type":"LineString","arcs":[9827],"id":76337,"properties":{"V":230}},{"type":"LineString","arcs":[9828],"id":76349,"properties":{"V":230}},{"type":"LineString","arcs":[9829],"id":76350,"properties":{"V":230}},{"type":"LineString","arcs":[9830],"id":76360,"properties":{"V":230}},{"type":"LineString","arcs":[9831],"id":76368,"properties":{"V":230}},{"type":"LineString","arcs":[9832,9833],"id":76384,"properties":{"V":230}},{"type":"LineString","arcs":[9834],"id":76387,"properties":{"V":230}},{"type":"LineString","arcs":[9835],"id":76412,"properties":{"V":345}},{"type":"LineString","arcs":[9836],"id":76419,"properties":{"V":345}},{"type":"LineString","arcs":[9837],"id":76436,"properties":{"V":230}},{"type":"LineString","arcs":[9838],"id":76442,"properties":{"V":345}},{"type":"LineString","arcs":[9839],"id":76456,"properties":{"V":345}},{"type":"LineString","arcs":[9840],"id":76461,"properties":{"V":230}},{"type":"LineString","arcs":[9841],"id":76463,"properties":{"V":345}},{"type":"LineString","arcs":[9842],"id":76465,"properties":{"V":230}},{"type":"LineString","arcs":[9843],"id":76473,"properties":{"V":230}},{"type":"LineString","arcs":[9844],"id":76474,"properties":{"V":230}},{"type":"LineString","arcs":[9845],"id":76491,"properties":{"V":500}},{"type":"LineString","arcs":[9846,9847,9848,9849],"id":76504,"properties":{"V":345}},{"type":"LineString","arcs":[9850],"id":76507,"properties":{"V":230}},{"type":"LineString","arcs":[9851],"id":76511,"properties":{"V":230}},{"type":"LineString","arcs":[9852],"id":76512,"properties":{"V":230}},{"type":"LineString","arcs":[9853],"id":76516,"properties":{"V":230}},{"type":"LineString","arcs":[9854],"id":76521,"properties":{"V":345}},{"type":"LineString","arcs":[9855],"id":76523,"properties":{"V":230}},{"type":"LineString","arcs":[9856],"id":76533,"properties":{"V":230}},{"type":"LineString","arcs":[9857],"id":76534,"properties":{"V":500}},{"type":"LineString","arcs":[9858],"id":76538,"properties":{"V":345}},{"type":"LineString","arcs":[9859,9860,9861,9862,9863],"id":76540,"properties":{"V":345}},{"type":"LineString","arcs":[9864],"id":76543,"properties":{"V":345}},{"type":"LineString","arcs":[9865],"id":76545,"properties":{"V":230}},{"type":"LineString","arcs":[9866],"id":76549,"properties":{"V":345}},{"type":"LineString","arcs":[9867],"id":76556,"properties":{"V":230}},{"type":"LineString","arcs":[9868],"id":76559,"properties":{"V":230}},{"type":"LineString","arcs":[9869],"id":76572,"properties":{"V":230}},{"type":"LineString","arcs":[9870],"id":76575,"properties":{"V":230}},{"type":"LineString","arcs":[9871],"id":76592,"properties":{"V":230}},{"type":"LineString","arcs":[9872],"id":76598,"properties":{"V":345}},{"type":"LineString","arcs":[9873],"id":76599,"properties":{"V":230}},{"type":"LineString","arcs":[9874,9875,9876],"id":76600,"properties":{"V":230}},{"type":"LineString","arcs":[9877],"id":76607,"properties":{"V":230}},{"type":"LineString","arcs":[9878],"id":76609,"properties":{"V":230}},{"type":"LineString","arcs":[9879],"id":76613,"properties":{"V":500}},{"type":"LineString","arcs":[9880],"id":76623,"properties":{"V":230}},{"type":"LineString","arcs":[9881],"id":76633,"properties":{"V":230}},{"type":"LineString","arcs":[9882],"id":76643,"properties":{"V":230}},{"type":"LineString","arcs":[9883],"id":76661,"properties":{"V":500}},{"type":"LineString","arcs":[9884],"id":76702,"properties":{"V":230}},{"type":"LineString","arcs":[9885],"id":76709,"properties":{"V":345}},{"type":"LineString","arcs":[9886],"id":76713,"properties":{"V":230}},{"type":"LineString","arcs":[9887],"id":76723,"properties":{"V":345}},{"type":"LineString","arcs":[9888],"id":76730,"properties":{"V":345}},{"type":"LineString","arcs":[9889],"id":76739,"properties":{"V":230}},{"type":"LineString","arcs":[9890],"id":76748,"properties":{"V":230}},{"type":"LineString","arcs":[9891],"id":76761,"properties":{"V":230}},{"type":"LineString","arcs":[9892],"id":76766,"properties":{"V":230}},{"type":"LineString","arcs":[9893],"id":76768,"properties":{"V":230}},{"type":"LineString","arcs":[9894,9895],"id":76777,"properties":{"V":230}},{"type":"LineString","arcs":[9896],"id":76781,"properties":{"V":230}},{"type":"LineString","arcs":[9897],"id":76809,"properties":{"V":345}},{"type":"LineString","arcs":[9898],"id":76815,"properties":{"V":230}},{"type":"LineString","arcs":[9899],"id":76821,"properties":{"V":230}},{"type":"LineString","arcs":[9900],"id":76839,"properties":{"V":230}},{"type":"LineString","arcs":[9901],"id":76842,"properties":{"V":230}},{"type":"LineString","arcs":[9902],"id":76843,"properties":{"V":230}},{"type":"LineString","arcs":[9903],"id":76846,"properties":{"V":230}},{"type":"LineString","arcs":[9904],"id":76860,"properties":{"V":230}},{"type":"LineString","arcs":[9905],"id":76874,"properties":{"V":500}},{"type":"LineString","arcs":[9906],"id":76882,"properties":{"V":230}},{"type":"LineString","arcs":[9907],"id":76888,"properties":{"V":345}},{"type":"LineString","arcs":[9908],"id":76892,"properties":{"V":500}},{"type":"LineString","arcs":[9909],"id":76893,"properties":{"V":230}},{"type":"LineString","arcs":[9910],"id":76894,"properties":{"V":230}},{"type":"LineString","arcs":[9911],"id":76896,"properties":{"V":345}},{"type":"LineString","arcs":[9912],"id":76905,"properties":{"V":345}},{"type":"LineString","arcs":[9913],"id":76916,"properties":{"V":500}},{"type":"LineString","arcs":[9914],"id":76922,"properties":{"V":345}},{"type":"LineString","arcs":[9915],"id":76923,"properties":{"V":230}},{"type":"LineString","arcs":[9916],"id":76926,"properties":{"V":345}},{"type":"LineString","arcs":[9917],"id":76933,"properties":{"V":230}},{"type":"LineString","arcs":[9918],"id":76934,"properties":{"V":345}},{"type":"LineString","arcs":[9919],"id":76938,"properties":{"V":230}},{"type":"LineString","arcs":[9920],"id":76948,"properties":{"V":230}},{"type":"LineString","arcs":[9921],"id":76961,"properties":{"V":230}},{"type":"LineString","arcs":[9922],"id":76964,"properties":{"V":345}},{"type":"LineString","arcs":[9923],"id":76966,"properties":{"V":230}},{"type":"LineString","arcs":[9924],"id":76989,"properties":{"V":230}},{"type":"LineString","arcs":[9925],"id":76990,"properties":{"V":230}},{"type":"LineString","arcs":[9926],"id":76991,"properties":{"V":230}},{"type":"LineString","arcs":[9927],"id":76992,"properties":{"V":230}},{"type":"LineString","arcs":[9928],"id":76996,"properties":{"V":345}},{"type":"LineString","arcs":[9929],"id":76999,"properties":{"V":230}},{"type":"LineString","arcs":[9930],"id":77000,"properties":{"V":345}},{"type":"LineString","arcs":[9931],"id":77009,"properties":{"V":345}},{"type":"LineString","arcs":[9932],"id":77011,"properties":{"V":345}},{"type":"LineString","arcs":[9933],"id":77013,"properties":{"V":230}},{"type":"LineString","arcs":[9934],"id":77017,"properties":{"V":230}},{"type":"LineString","arcs":[9935],"id":77023,"properties":{"V":230}},{"type":"LineString","arcs":[9936],"id":77024,"properties":{"V":230}},{"type":"LineString","arcs":[9937],"id":77025,"properties":{"V":345}},{"type":"LineString","arcs":[9938],"id":77026,"properties":{"V":345}},{"type":"LineString","arcs":[9939],"id":77028,"properties":{"V":230}},{"type":"LineString","arcs":[9940],"id":77029,"properties":{"V":345}},{"type":"LineString","arcs":[9941,9942],"id":77036,"properties":{"V":230}},{"type":"LineString","arcs":[9943],"id":77038,"properties":{"V":500}},{"type":"LineString","arcs":[9944],"id":77045,"properties":{"V":230}},{"type":"LineString","arcs":[9945],"id":77047,"properties":{"V":500}},{"type":"LineString","arcs":[9946],"id":77055,"properties":{"V":230}},{"type":"LineString","arcs":[9947],"id":77056,"properties":{"V":230}},{"type":"LineString","arcs":[9948],"id":77066,"properties":{"V":230}},{"type":"LineString","arcs":[9949],"id":77083,"properties":{"V":345}},{"type":"LineString","arcs":[9950],"id":77091,"properties":{"V":230}},{"type":"LineString","arcs":[9951],"id":77092,"properties":{"V":230}},{"type":"LineString","arcs":[9952],"id":77098,"properties":{"V":230}},{"type":"LineString","arcs":[9953],"id":77109,"properties":{"V":345}},{"type":"LineString","arcs":[9954],"id":77118,"properties":{"V":230}},{"type":"LineString","arcs":[9955],"id":77126,"properties":{"V":230}},{"type":"LineString","arcs":[9956],"id":77132,"properties":{"V":230}},{"type":"LineString","arcs":[9957],"id":77148,"properties":{"V":230}},{"type":"LineString","arcs":[9958],"id":77155,"properties":{"V":230}},{"type":"LineString","arcs":[9959],"id":77179,"properties":{"V":345}},{"type":"LineString","arcs":[9960],"id":77186,"properties":{"V":230}},{"type":"LineString","arcs":[9961,9962,9963],"id":77199,"properties":{"V":345}},{"type":"LineString","arcs":[9964],"id":77204,"properties":{"V":230}},{"type":"LineString","arcs":[9965],"id":77212,"properties":{"V":230}},{"type":"LineString","arcs":[9966],"id":77217,"properties":{"V":230}},{"type":"LineString","arcs":[9967],"id":77219,"properties":{"V":500}},{"type":"LineString","arcs":[9968],"id":77224,"properties":{"V":230}},{"type":"LineString","arcs":[9969],"id":77232,"properties":{"V":345}},{"type":"LineString","arcs":[9970],"id":77237,"properties":{"V":345}},{"type":"LineString","arcs":[9971],"id":77238,"properties":{"V":345}},{"type":"LineString","arcs":[9972],"id":77248,"properties":{"V":345}},{"type":"LineString","arcs":[9973],"id":77250,"properties":{"V":345}},{"type":"LineString","arcs":[9974],"id":77251,"properties":{"V":230}},{"type":"LineString","arcs":[9975],"id":77260,"properties":{"V":345}},{"type":"LineString","arcs":[9976],"id":77263,"properties":{"V":345}},{"type":"LineString","arcs":[9977],"id":77270,"properties":{"V":500}},{"type":"LineString","arcs":[9978],"id":77279,"properties":{"V":500}},{"type":"LineString","arcs":[9979],"id":77282,"properties":{"V":230}},{"type":"LineString","arcs":[9980],"id":77291,"properties":{"V":230}},{"type":"LineString","arcs":[9981],"id":77308,"properties":{"V":230}},{"type":"LineString","arcs":[9982],"id":77311,"properties":{"V":230}},{"type":"LineString","arcs":[9983],"id":77319,"properties":{"V":230}},{"type":"LineString","arcs":[9984],"id":77320,"properties":{"V":345}},{"type":"LineString","arcs":[9985],"id":77336,"properties":{"V":230}},{"type":"LineString","arcs":[9986],"id":77347,"properties":{"V":230}},{"type":"LineString","arcs":[9987],"id":77349,"properties":{"V":230}},{"type":"LineString","arcs":[9988],"id":77353,"properties":{"V":230}},{"type":"LineString","arcs":[9989],"id":77356,"properties":{"V":230}},{"type":"LineString","arcs":[9990],"id":77361,"properties":{"V":230}},{"type":"LineString","arcs":[9991],"id":77364,"properties":{"V":230}},{"type":"LineString","arcs":[9992],"id":77383,"properties":{"V":230}},{"type":"LineString","arcs":[9993],"id":77387,"properties":{"V":500}},{"type":"LineString","arcs":[9994],"id":77392,"properties":{"V":345}},{"type":"LineString","arcs":[9995,9996],"id":77398,"properties":{"V":230}},{"type":"LineString","arcs":[9997],"id":77402,"properties":{"V":230}},{"type":"LineString","arcs":[9998],"id":77416,"properties":{"V":345}},{"type":"LineString","arcs":[9999],"id":77420,"properties":{"V":345}},{"type":"LineString","arcs":[10000],"id":77425,"properties":{"V":500}},{"type":"LineString","arcs":[10001],"id":77433,"properties":{"V":500}},{"type":"LineString","arcs":[10002],"id":77439,"properties":{"V":230}},{"type":"LineString","arcs":[10003],"id":77446,"properties":{"V":345}},{"type":"LineString","arcs":[10004],"id":77447,"properties":{"V":230}},{"type":"LineString","arcs":[10005],"id":77467,"properties":{"V":230}},{"type":"LineString","arcs":[10006],"id":77476,"properties":{"V":230}},{"type":"LineString","arcs":[10007],"id":77484,"properties":{"V":230}},{"type":"LineString","arcs":[10008],"id":77495,"properties":{"V":230}},{"type":"LineString","arcs":[10009],"id":77501,"properties":{"V":230}},{"type":"LineString","arcs":[10010],"id":77514,"properties":{"V":230}},{"type":"LineString","arcs":[10011],"id":77517,"properties":{"V":345}},{"type":"LineString","arcs":[10012],"id":77522,"properties":{"V":230}},{"type":"LineString","arcs":[10013],"id":77526,"properties":{"V":345}},{"type":"LineString","arcs":[10014],"id":77529,"properties":{"V":230}},{"type":"LineString","arcs":[10015],"id":77534,"properties":{"V":230}},{"type":"LineString","arcs":[10016],"id":77542,"properties":{"V":230}},{"type":"LineString","arcs":[10017],"id":77544,"properties":{"V":230}},{"type":"LineString","arcs":[10018],"id":77557,"properties":{"V":230}},{"type":"LineString","arcs":[10019],"id":77560,"properties":{"V":230}},{"type":"LineString","arcs":[10020],"id":77566,"properties":{"V":345}},{"type":"LineString","arcs":[10021],"id":77569,"properties":{"V":230}},{"type":"LineString","arcs":[10022],"id":77570,"properties":{"V":230}},{"type":"LineString","arcs":[10023],"id":77573,"properties":{"V":230}},{"type":"LineString","arcs":[10024],"id":77584,"properties":{"V":765}},{"type":"LineString","arcs":[10025],"id":77601,"properties":{"V":230}},{"type":"LineString","arcs":[10026],"id":77605,"properties":{"V":345}},{"type":"LineString","arcs":[10027],"id":77610,"properties":{"V":230}},{"type":"LineString","arcs":[10028],"id":77612,"properties":{"V":345}},{"type":"LineString","arcs":[10029],"id":77617,"properties":{"V":230}},{"type":"LineString","arcs":[10030],"id":77623,"properties":{"V":230}},{"type":"LineString","arcs":[10031],"id":77625,"properties":{"V":230}},{"type":"LineString","arcs":[10032],"id":77631,"properties":{"V":230}},{"type":"LineString","arcs":[10033],"id":77646,"properties":{"V":230}},{"type":"LineString","arcs":[10034],"id":77651,"properties":{"V":345}},{"type":"LineString","arcs":[10035],"id":77660,"properties":{"V":345}},{"type":"LineString","arcs":[10036],"id":77662,"properties":{"V":230}},{"type":"LineString","arcs":[10037],"id":77663,"properties":{"V":230}},{"type":"LineString","arcs":[10038],"id":77670,"properties":{"V":230}},{"type":"LineString","arcs":[10039],"id":77672,"properties":{"V":230}},{"type":"LineString","arcs":[10040],"id":77678,"properties":{"V":345}},{"type":"LineString","arcs":[10041],"id":77679,"properties":{"V":230}},{"type":"LineString","arcs":[10042],"id":77699,"properties":{"V":230}},{"type":"LineString","arcs":[10043],"id":77700,"properties":{"V":230}},{"type":"LineString","arcs":[10044],"id":77719,"properties":{"V":230}},{"type":"LineString","arcs":[10045],"id":77746,"properties":{"V":230}},{"type":"LineString","arcs":[10046],"id":77768,"properties":{"V":230}},{"type":"LineString","arcs":[10047],"id":77769,"properties":{"V":230}},{"type":"LineString","arcs":[10048],"id":77774,"properties":{"V":230}},{"type":"LineString","arcs":[10049],"id":77776,"properties":{"V":230}},{"type":"LineString","arcs":[10050],"id":77778,"properties":{"V":345}},{"type":"LineString","arcs":[10051,10052,10053],"id":77781,"properties":{"V":345}},{"type":"LineString","arcs":[10054],"id":77797,"properties":{"V":230}},{"type":"LineString","arcs":[10055],"id":77801,"properties":{"V":230}},{"type":"LineString","arcs":[10056],"id":77802,"properties":{"V":230}},{"type":"LineString","arcs":[10057],"id":77803,"properties":{"V":345}},{"type":"LineString","arcs":[10058],"id":77818,"properties":{"V":230}},{"type":"LineString","arcs":[10059],"id":77819,"properties":{"V":230}},{"type":"LineString","arcs":[10060],"id":77828,"properties":{"V":230}},{"type":"LineString","arcs":[10061],"id":77831,"properties":{"V":230}},{"type":"LineString","arcs":[10062],"id":77832,"properties":{"V":500}},{"type":"LineString","arcs":[10063],"id":77836,"properties":{"V":230}},{"type":"LineString","arcs":[10064],"id":77840,"properties":{"V":345}},{"type":"LineString","arcs":[10065],"id":77855,"properties":{"V":230}},{"type":"LineString","arcs":[10066],"id":77863,"properties":{"V":230}},{"type":"LineString","arcs":[10067],"id":77872,"properties":{"V":230}},{"type":"LineString","arcs":[10068],"id":77873,"properties":{"V":230}},{"type":"LineString","arcs":[10069],"id":77878,"properties":{"V":230}},{"type":"LineString","arcs":[10070],"id":77881,"properties":{"V":230}},{"type":"LineString","arcs":[10071],"id":77885,"properties":{"V":230}},{"type":"LineString","arcs":[10072],"id":77894,"properties":{"V":230}},{"type":"LineString","arcs":[10073],"id":77895,"properties":{"V":230}},{"type":"LineString","arcs":[10074],"id":77900,"properties":{"V":345}},{"type":"LineString","arcs":[10075],"id":77908,"properties":{"V":345}},{"type":"LineString","arcs":[10076],"id":77910,"properties":{"V":230}},{"type":"LineString","arcs":[10077],"id":77917,"properties":{"V":230}},{"type":"LineString","arcs":[10078],"id":77921,"properties":{"V":230}},{"type":"LineString","arcs":[10079],"id":77937,"properties":{"V":230}},{"type":"LineString","arcs":[10080],"id":77941,"properties":{"V":230}},{"type":"LineString","arcs":[10081],"id":77955,"properties":{"V":230}},{"type":"LineString","arcs":[10082],"id":77958,"properties":{"V":230}},{"type":"LineString","arcs":[10083],"id":77960,"properties":{"V":230}},{"type":"LineString","arcs":[10084],"id":77961,"properties":{"V":345}},{"type":"LineString","arcs":[10085],"id":77963,"properties":{"V":230}},{"type":"LineString","arcs":[10086],"id":77991,"properties":{"V":230}},{"type":"LineString","arcs":[10087],"id":77996,"properties":{"V":230}},{"type":"LineString","arcs":[10088],"id":78000,"properties":{"V":230}},{"type":"LineString","arcs":[10089],"id":78012,"properties":{"V":345}},{"type":"LineString","arcs":[10090],"id":78016,"properties":{"V":230}},{"type":"LineString","arcs":[10091],"id":78019,"properties":{"V":345}},{"type":"LineString","arcs":[10092],"id":78032,"properties":{"V":230}},{"type":"LineString","arcs":[10093],"id":78037,"properties":{"V":230}},{"type":"LineString","arcs":[10094],"id":78048,"properties":{"V":230}},{"type":"LineString","arcs":[10095],"id":78052,"properties":{"V":230}},{"type":"LineString","arcs":[10096],"id":78053,"properties":{"V":500}},{"type":"LineString","arcs":[10097],"id":78058,"properties":{"V":230}},{"type":"LineString","arcs":[10098],"id":78068,"properties":{"V":345}},{"type":"LineString","arcs":[10099],"id":78071,"properties":{"V":230}},{"type":"LineString","arcs":[10100],"id":78092,"properties":{"V":230}},{"type":"LineString","arcs":[10101],"id":78105,"properties":{"V":345}},{"type":"LineString","arcs":[10102],"id":78125,"properties":{"V":230}},{"type":"LineString","arcs":[10103],"id":78126,"properties":{"V":230}},{"type":"LineString","arcs":[10104],"id":78150,"properties":{"V":230}},{"type":"LineString","arcs":[10105],"id":78151,"properties":{"V":230}},{"type":"LineString","arcs":[10106],"id":78181,"properties":{"V":230}},{"type":"LineString","arcs":[10107],"id":78182,"properties":{"V":230}},{"type":"LineString","arcs":[10108],"id":78209,"properties":{"V":345}},{"type":"LineString","arcs":[10109],"id":78283,"properties":{"V":345}},{"type":"LineString","arcs":[10110],"id":78286,"properties":{"V":345}},{"type":"LineString","arcs":[10111],"id":78296,"properties":{"V":230}},{"type":"LineString","arcs":[10112],"id":78399,"properties":{"V":345}},{"type":"LineString","arcs":[10113],"id":78404,"properties":{"V":230}},{"type":"LineString","arcs":[10114],"id":78407,"properties":{"V":230}},{"type":"LineString","arcs":[10115],"id":78408,"properties":{"V":230}},{"type":"LineString","arcs":[10116],"id":78410,"properties":{"V":230}},{"type":"LineString","arcs":[10117],"id":78411,"properties":{"V":230}},{"type":"LineString","arcs":[10118],"id":78412,"properties":{"V":230}},{"type":"LineString","arcs":[10119],"id":78415,"properties":{"V":230}},{"type":"LineString","arcs":[10120],"id":78416,"properties":{"V":230}},{"type":"LineString","arcs":[10121],"id":78417,"properties":{"V":230}},{"type":"LineString","arcs":[10122],"id":78418,"properties":{"V":230}},{"type":"LineString","arcs":[10123],"id":78419,"properties":{"V":230}},{"type":"LineString","arcs":[10124],"id":78422,"properties":{"V":345}},{"type":"LineString","arcs":[10125],"id":78423,"properties":{"V":230}},{"type":"LineString","arcs":[10126],"id":78424,"properties":{"V":230}},{"type":"LineString","arcs":[10127],"id":78426,"properties":{"V":345}},{"type":"LineString","arcs":[10128],"id":78428,"properties":{"V":345}},{"type":"LineString","arcs":[10129],"id":78450,"properties":{"V":230}},{"type":"LineString","arcs":[10130],"id":78473,"properties":{"V":230}},{"type":"LineString","arcs":[10131],"id":78489,"properties":{"V":230}},{"type":"LineString","arcs":[10132],"id":78496,"properties":{"V":230}},{"type":"LineString","arcs":[10133],"id":78501,"properties":{"V":230}},{"type":"LineString","arcs":[10134],"id":78504,"properties":{"V":230}},{"type":"LineString","arcs":[10135],"id":78505,"properties":{"V":230}},{"type":"LineString","arcs":[10136],"id":78506,"properties":{"V":230}},{"type":"LineString","arcs":[10137],"id":78526,"properties":{"V":230}},{"type":"LineString","arcs":[10138],"id":78529,"properties":{"V":230}},{"type":"LineString","arcs":[10139],"id":78531,"properties":{"V":230}},{"type":"LineString","arcs":[10140],"id":78554,"properties":{"V":345}},{"type":"LineString","arcs":[10141],"id":78583,"properties":{"V":230}},{"type":"LineString","arcs":[10142],"id":78594,"properties":{"V":345}},{"type":"LineString","arcs":[10143],"id":78603,"properties":{"V":230}},{"type":"LineString","arcs":[10144],"id":78645,"properties":{"V":345}},{"type":"LineString","arcs":[10145],"id":78664,"properties":{"V":345}},{"type":"LineString","arcs":[10146],"id":78669,"properties":{"V":345}},{"type":"LineString","arcs":[10147],"id":78670,"properties":{"V":345}},{"type":"LineString","arcs":[10148],"id":78673,"properties":{"V":345}},{"type":"LineString","arcs":[10149],"id":78723,"properties":{"V":230}},{"type":"LineString","arcs":[10150],"id":78756,"properties":{"V":345}},{"type":"LineString","arcs":[10151],"id":78768,"properties":{"V":230}},{"type":"LineString","arcs":[10152],"id":78778,"properties":{"V":230}},{"type":"LineString","arcs":[10153],"id":78794,"properties":{"V":230}},{"type":"LineString","arcs":[10154],"id":78795,"properties":{"V":230}},{"type":"LineString","arcs":[10155],"id":78832,"properties":{"V":230}},{"type":"LineString","arcs":[10156],"id":78834,"properties":{"V":230}},{"type":"LineString","arcs":[10157],"id":78839,"properties":{"V":230}},{"type":"LineString","arcs":[10158],"id":78840,"properties":{"V":230}},{"type":"LineString","arcs":[10159],"id":78844,"properties":{"V":230}},{"type":"LineString","arcs":[10160],"id":78846,"properties":{"V":230}},{"type":"LineString","arcs":[10161],"id":78847,"properties":{"V":230}},{"type":"LineString","arcs":[10162],"id":78848,"properties":{"V":230}},{"type":"LineString","arcs":[10163],"id":78908,"properties":{"V":230}},{"type":"LineString","arcs":[10164],"id":78910,"properties":{"V":230}},{"type":"LineString","arcs":[10165],"id":78915,"properties":{"V":230}},{"type":"LineString","arcs":[10166],"id":78916,"properties":{"V":230}},{"type":"LineString","arcs":[10167],"id":78917,"properties":{"V":230}},{"type":"LineString","arcs":[10168],"id":78923,"properties":{"V":345}},{"type":"LineString","arcs":[10169],"id":78928,"properties":{"V":230}},{"type":"LineString","arcs":[10170],"id":78938,"properties":{"V":230}},{"type":"LineString","arcs":[10171],"id":78985,"properties":{"V":230}},{"type":"LineString","arcs":[10172],"id":78986,"properties":{"V":230}},{"type":"LineString","arcs":[10173],"id":78987,"properties":{"V":230}},{"type":"LineString","arcs":[10174],"id":78988,"properties":{"V":230}},{"type":"LineString","arcs":[10175],"id":78989,"properties":{"V":230}},{"type":"LineString","arcs":[10176],"id":78990,"properties":{"V":230}},{"type":"LineString","arcs":[10177],"id":79001,"properties":{"V":230}},{"type":"LineString","arcs":[10178],"id":79008,"properties":{"V":230}},{"type":"LineString","arcs":[10179],"id":79036,"properties":{"V":230}},{"type":"LineString","arcs":[10180],"id":79037,"properties":{"V":500}},{"type":"LineString","arcs":[10181],"id":79038,"properties":{"V":230}},{"type":"LineString","arcs":[10182],"id":79040,"properties":{"V":230}},{"type":"LineString","arcs":[10183],"id":79042,"properties":{"V":230}},{"type":"LineString","arcs":[10184],"id":79043,"properties":{"V":230}},{"type":"LineString","arcs":[10185],"id":79044,"properties":{"V":230}},{"type":"LineString","arcs":[10186],"id":79048,"properties":{"V":230}},{"type":"LineString","arcs":[10187],"id":79052,"properties":{"V":230}},{"type":"LineString","arcs":[10188],"id":79069,"properties":{"V":345}},{"type":"LineString","arcs":[10189],"id":79070,"properties":{"V":345}},{"type":"LineString","arcs":[10190],"id":79093,"properties":{"V":230}},{"type":"LineString","arcs":[10191],"id":79095,"properties":{"V":230}},{"type":"LineString","arcs":[10192],"id":79098,"properties":{"V":230}},{"type":"LineString","arcs":[10193],"id":79108,"properties":{"V":345}},{"type":"LineString","arcs":[10194],"id":79109,"properties":{"V":345}},{"type":"LineString","arcs":[10195],"id":79114,"properties":{"V":230}},{"type":"LineString","arcs":[10196],"id":79116,"properties":{"V":230}},{"type":"LineString","arcs":[10197],"id":79124,"properties":{"V":230}},{"type":"LineString","arcs":[10198],"id":79265,"properties":{"V":230}},{"type":"LineString","arcs":[10199],"id":79296,"properties":{"V":230}},{"type":"LineString","arcs":[10200],"id":79302,"properties":{"V":345}},{"type":"LineString","arcs":[10201],"id":79432,"properties":{"V":230}},{"type":"LineString","arcs":[10202],"id":79436,"properties":{"V":230}},{"type":"LineString","arcs":[10203],"id":79439,"properties":{"V":230}},{"type":"LineString","arcs":[10204],"id":79456,"properties":{"V":230}},{"type":"LineString","arcs":[10205],"id":79457,"properties":{"V":230}},{"type":"LineString","arcs":[10206],"id":79458,"properties":{"V":230}},{"type":"LineString","arcs":[10207],"id":79464,"properties":{"V":230}},{"type":"LineString","arcs":[10208],"id":79469,"properties":{"V":230}},{"type":"LineString","arcs":[10209],"id":79513,"properties":{"V":230}},{"type":"LineString","arcs":[10210],"id":79514,"properties":{"V":230}},{"type":"LineString","arcs":[10211],"id":79552,"properties":{"V":230}},{"type":"LineString","arcs":[10212],"id":79555,"properties":{"V":230}},{"type":"LineString","arcs":[10213],"id":79563,"properties":{"V":230}},{"type":"LineString","arcs":[10214],"id":79564,"properties":{"V":230}},{"type":"LineString","arcs":[10215],"id":79565,"properties":{"V":230}},{"type":"LineString","arcs":[10216],"id":79566,"properties":{"V":230}},{"type":"LineString","arcs":[10217],"id":79580,"properties":{"V":230}},{"type":"LineString","arcs":[10218],"id":79581,"properties":{"V":230}},{"type":"LineString","arcs":[10219],"id":79586,"properties":{"V":230}},{"type":"LineString","arcs":[10220],"id":79587,"properties":{"V":230}},{"type":"LineString","arcs":[10221],"id":79590,"properties":{"V":230}},{"type":"LineString","arcs":[10222],"id":79612,"properties":{"V":230}},{"type":"LineString","arcs":[10223],"id":79615,"properties":{"V":230}},{"type":"LineString","arcs":[10224],"id":79633,"properties":{"V":230}},{"type":"LineString","arcs":[10225,10226],"id":79652,"properties":{"V":500}},{"type":"LineString","arcs":[10227,10228],"id":79653,"properties":{"V":500}},{"type":"LineString","arcs":[10229],"id":79656,"properties":{"V":345}},{"type":"LineString","arcs":[10230],"id":79666,"properties":{"V":230}},{"type":"LineString","arcs":[10231],"id":79667,"properties":{"V":230}},{"type":"LineString","arcs":[10232],"id":79678,"properties":{"V":230}},{"type":"LineString","arcs":[10233],"id":79685,"properties":{"V":230}},{"type":"LineString","arcs":[10234],"id":79709,"properties":{"V":230}},{"type":"LineString","arcs":[10235],"id":79710,"properties":{"V":230}},{"type":"LineString","arcs":[10236],"id":79711,"properties":{"V":230}},{"type":"LineString","arcs":[10237],"id":79715,"properties":{"V":230}},{"type":"LineString","arcs":[10238],"id":79747,"properties":{"V":230}},{"type":"LineString","arcs":[10239],"id":79772,"properties":{"V":230}},{"type":"LineString","arcs":[10240],"id":79936,"properties":{"V":345}},{"type":"LineString","arcs":[10241],"id":79937,"properties":{"V":345}},{"type":"LineString","arcs":[10242],"id":79938,"properties":{"V":345}},{"type":"LineString","arcs":[10243],"id":80191,"properties":{"V":345}},{"type":"LineString","arcs":[10244,10245],"id":80289,"properties":{"V":230}},{"type":"LineString","arcs":[10246,10247],"id":80290,"properties":{"V":230}},{"type":"LineString","arcs":[10248],"id":80353,"properties":{"V":230}},{"type":"LineString","arcs":[10249],"id":80400,"properties":{"V":230}},{"type":"LineString","arcs":[10250],"id":80447,"properties":{"V":230}},{"type":"LineString","arcs":[10251],"id":80500,"properties":{"V":500}},{"type":"LineString","arcs":[10252],"id":80544,"properties":{"V":345}},{"type":"LineString","arcs":[10253],"id":80555,"properties":{"V":230}},{"type":"LineString","arcs":[10254],"id":80580,"properties":{"V":345}},{"type":"LineString","arcs":[10255],"id":80618,"properties":{"V":345}},{"type":"LineString","arcs":[10256],"id":80626,"properties":{"V":230}},{"type":"LineString","arcs":[10257],"id":80638,"properties":{"V":230}},{"type":"LineString","arcs":[10258],"id":80650,"properties":{"V":230}},{"type":"LineString","arcs":[10259],"id":80660,"properties":{"V":345}},{"type":"LineString","arcs":[10260],"id":80661,"properties":{"V":230}},{"type":"LineString","arcs":[10261],"id":80664,"properties":{"V":345}},{"type":"LineString","arcs":[10262],"id":80669,"properties":{"V":230}},{"type":"LineString","arcs":[10263],"id":80674,"properties":{"V":230}},{"type":"LineString","arcs":[10264],"id":80685,"properties":{"V":345}},{"type":"LineString","arcs":[10265],"id":80724,"properties":{"V":230}},{"type":"LineString","arcs":[10266],"id":80731,"properties":{"V":345}},{"type":"LineString","arcs":[10267],"id":80753,"properties":{"V":230}},{"type":"LineString","arcs":[10268],"id":80759,"properties":{"V":230}},{"type":"LineString","arcs":[10269],"id":80779,"properties":{"V":230}},{"type":"LineString","arcs":[10270],"id":80879,"properties":{"V":230}},{"type":"LineString","arcs":[10271],"id":80880,"properties":{"V":230}},{"type":"LineString","arcs":[10272],"id":80896,"properties":{"V":230}},{"type":"LineString","arcs":[10273],"id":80930,"properties":{"V":500}},{"type":"LineString","arcs":[10274],"id":80931,"properties":{"V":500}},{"type":"LineString","arcs":[10275],"id":80932,"properties":{"V":230}},{"type":"LineString","arcs":[10276],"id":80933,"properties":{"V":345}},{"type":"LineString","arcs":[10277],"id":80934,"properties":{"V":345}},{"type":"LineString","arcs":[10278],"id":81057,"properties":{"V":230}},{"type":"LineString","arcs":[10279],"id":81058,"properties":{"V":230}},{"type":"LineString","arcs":[10280],"id":81638,"properties":{"V":230}},{"type":"LineString","arcs":[10281],"id":81639,"properties":{"V":230}},{"type":"LineString","arcs":[10282],"id":81726,"properties":{"V":345}},{"type":"LineString","arcs":[10283],"id":81748,"properties":{"V":345}},{"type":"LineString","arcs":[10284],"id":81891,"properties":{"V":345}},{"type":"LineString","arcs":[10285],"id":81901,"properties":{"V":345}},{"type":"LineString","arcs":[10286],"id":82197,"properties":{"V":345}},{"type":"LineString","arcs":[10287],"id":82198,"properties":{"V":345}},{"type":"LineString","arcs":[10288],"id":82254,"properties":{"V":230}},{"type":"LineString","arcs":[10289],"id":82255,"properties":{"V":230}},{"type":"LineString","arcs":[10290],"id":82298,"properties":{"V":345}},{"type":"LineString","arcs":[10291],"id":82299,"properties":{"V":345}},{"type":"LineString","arcs":[10292],"id":82300,"properties":{"V":345}},{"type":"LineString","arcs":[10293],"id":82313,"properties":{"V":345}},{"type":"LineString","arcs":[10294],"id":82363,"properties":{"V":345}},{"type":"LineString","arcs":[10295],"id":82364,"properties":{"V":345}},{"type":"LineString","arcs":[10296],"id":82425,"properties":{"V":345}},{"type":"LineString","arcs":[10297],"id":82426,"properties":{"V":345}},{"type":"LineString","arcs":[10298],"id":82457,"properties":{"V":345}},{"type":"LineString","arcs":[10299],"id":82498,"properties":{"V":345}},{"type":"LineString","arcs":[10300],"id":82499,"properties":{"V":345}},{"type":"LineString","arcs":[10301],"id":82500,"properties":{"V":345}},{"type":"LineString","arcs":[10302],"id":82501,"properties":{"V":345}},{"type":"LineString","arcs":[10303],"id":82502,"properties":{"V":345}},{"type":"LineString","arcs":[10304],"id":82503,"properties":{"V":345}},{"type":"LineString","arcs":[10305],"id":82560,"properties":{"V":345}},{"type":"LineString","arcs":[10306,10307],"id":82777,"properties":{"V":230}},{"type":"LineString","arcs":[10308,10309],"id":83288,"properties":{"V":345}},{"type":"LineString","arcs":[10310],"id":83339,"properties":{"V":230}},{"type":"LineString","arcs":[10311],"id":83340,"properties":{"V":230}},{"type":"LineString","arcs":[10312],"id":83948,"properties":{"V":230}},{"type":"LineString","arcs":[10313],"id":83949,"properties":{"V":230}},{"type":"LineString","arcs":[10314],"id":83975,"properties":{"V":230}},{"type":"LineString","arcs":[10315],"id":84075,"properties":{"V":230}},{"type":"LineString","arcs":[10316],"id":84092,"properties":{"V":230}},{"type":"LineString","arcs":[10317],"id":84100,"properties":{"V":230}},{"type":"LineString","arcs":[10318],"id":84111,"properties":{"V":230}},{"type":"LineString","arcs":[10319],"id":84113,"properties":{"V":230}},{"type":"LineString","arcs":[10320],"id":84199,"properties":{"V":500}},{"type":"LineString","arcs":[10321],"id":84258,"properties":{"V":230}},{"type":"LineString","arcs":[10322],"id":84279,"properties":{"V":230}},{"type":"LineString","arcs":[10323],"id":84307,"properties":{"V":230}},{"type":"LineString","arcs":[10324],"id":84308,"properties":{"V":230}},{"type":"LineString","arcs":[10325],"id":84318,"properties":{"V":230}},{"type":"LineString","arcs":[10326],"id":84336,"properties":{"V":500}},{"type":"LineString","arcs":[10327],"id":84374,"properties":{"V":230}},{"type":"LineString","arcs":[10328],"id":84439,"properties":{"V":230}},{"type":"LineString","arcs":[10329],"id":84440,"properties":{"V":230}},{"type":"LineString","arcs":[10330],"id":84444,"properties":{"V":500}},{"type":"LineString","arcs":[10331],"id":84485,"properties":{"V":230}},{"type":"LineString","arcs":[10332],"id":84504,"properties":{"V":230}},{"type":"LineString","arcs":[10333],"id":84505,"properties":{"V":230}},{"type":"LineString","arcs":[10334],"id":84506,"properties":{"V":230}},{"type":"LineString","arcs":[10335],"id":84508,"properties":{"V":345}},{"type":"LineString","arcs":[10336],"id":84530,"properties":{"V":230}},{"type":"LineString","arcs":[10337],"id":84531,"properties":{"V":230}},{"type":"LineString","arcs":[10338],"id":84613,"properties":{"V":230}},{"type":"LineString","arcs":[10339],"id":84636,"properties":{"V":230}},{"type":"LineString","arcs":[10340],"id":84637,"properties":{"V":230}},{"type":"LineString","arcs":[10341],"id":84655,"properties":{"V":230}},{"type":"LineString","arcs":[10342],"id":84660,"properties":{"V":230}},{"type":"LineString","arcs":[10343],"id":84662,"properties":{"V":230}},{"type":"LineString","arcs":[10344],"id":84715,"properties":{"V":500}},{"type":"LineString","arcs":[10345],"id":84730,"properties":{"V":230}},{"type":"LineString","arcs":[10346],"id":84741,"properties":{"V":500}},{"type":"LineString","arcs":[10347],"id":84767,"properties":{"V":230}},{"type":"LineString","arcs":[10348],"id":84774,"properties":{"V":230}},{"type":"LineString","arcs":[10349],"id":84786,"properties":{"V":230}},{"type":"LineString","arcs":[10350],"id":84788,"properties":{"V":230}},{"type":"LineString","arcs":[10351],"id":84795,"properties":{"V":230}},{"type":"LineString","arcs":[10352],"id":84797,"properties":{"V":230}},{"type":"LineString","arcs":[10353],"id":84798,"properties":{"V":230}},{"type":"LineString","arcs":[10354],"id":84799,"properties":{"V":230}},{"type":"LineString","arcs":[10355],"id":84800,"properties":{"V":230}},{"type":"LineString","arcs":[10356],"id":84801,"properties":{"V":230}},{"type":"LineString","arcs":[10357],"id":84804,"properties":{"V":230}},{"type":"LineString","arcs":[10358],"id":84809,"properties":{"V":230}},{"type":"LineString","arcs":[10359],"id":84853,"properties":{"V":230}},{"type":"LineString","arcs":[10360],"id":84871,"properties":{"V":230}},{"type":"LineString","arcs":[10361],"id":84872,"properties":{"V":230}},{"type":"LineString","arcs":[10362],"id":84875,"properties":{"V":230}},{"type":"LineString","arcs":[10363],"id":84876,"properties":{"V":230}},{"type":"LineString","arcs":[10364],"id":84992,"properties":{"V":230}},{"type":"LineString","arcs":[10365],"id":85167,"properties":{"V":230}},{"type":"LineString","arcs":[10366],"id":85169,"properties":{"V":230}},{"type":"LineString","arcs":[10367],"id":85180,"properties":{"V":230}},{"type":"LineString","arcs":[10368,10369],"id":85195,"properties":{"V":345}},{"type":"LineString","arcs":[10370],"id":85246,"properties":{"V":230}},{"type":"LineString","arcs":[10371],"id":85280,"properties":{"V":230}},{"type":"LineString","arcs":[10372],"id":85286,"properties":{"V":230}},{"type":"LineString","arcs":[10373],"id":85289,"properties":{"V":230}},{"type":"LineString","arcs":[10374],"id":85338,"properties":{"V":230}},{"type":"LineString","arcs":[10375],"id":85342,"properties":{"V":230}},{"type":"LineString","arcs":[10376],"id":85349,"properties":{"V":230}},{"type":"LineString","arcs":[10377],"id":85350,"properties":{"V":230}},{"type":"LineString","arcs":[10378],"id":85364,"properties":{"V":230}},{"type":"LineString","arcs":[10379],"id":85402,"properties":{"V":230}},{"type":"LineString","arcs":[10380],"id":85403,"properties":{"V":230}},{"type":"LineString","arcs":[10381],"id":85411,"properties":{"V":230}},{"type":"LineString","arcs":[10382],"id":85412,"properties":{"V":230}},{"type":"LineString","arcs":[10383],"id":85413,"properties":{"V":230}},{"type":"LineString","arcs":[10384],"id":85414,"properties":{"V":230}},{"type":"LineString","arcs":[10385],"id":85418,"properties":{"V":230}},{"type":"LineString","arcs":[10386],"id":85422,"properties":{"V":230}},{"type":"LineString","arcs":[10387],"id":85427,"properties":{"V":230}},{"type":"LineString","arcs":[10388],"id":85443,"properties":{"V":230}},{"type":"LineString","arcs":[10389],"id":85450,"properties":{"V":230}},{"type":"LineString","arcs":[10390],"id":85451,"properties":{"V":230}},{"type":"LineString","arcs":[10391],"id":85452,"properties":{"V":230}},{"type":"LineString","arcs":[10392],"id":85453,"properties":{"V":230}},{"type":"LineString","arcs":[10393],"id":85455,"properties":{"V":230}},{"type":"LineString","arcs":[10394],"id":85456,"properties":{"V":230}},{"type":"LineString","arcs":[10395],"id":85458,"properties":{"V":230}},{"type":"LineString","arcs":[10396],"id":85459,"properties":{"V":230}},{"type":"LineString","arcs":[10397],"id":85462,"properties":{"V":230}},{"type":"LineString","arcs":[10398],"id":85463,"properties":{"V":230}},{"type":"LineString","arcs":[10399],"id":85473,"properties":{"V":345}},{"type":"LineString","arcs":[10400],"id":85490,"properties":{"V":500}},{"type":"LineString","arcs":[10401],"id":85527,"properties":{"V":345}},{"type":"LineString","arcs":[10402],"id":85532,"properties":{"V":345}},{"type":"LineString","arcs":[10403],"id":85540,"properties":{"V":345}},{"type":"LineString","arcs":[10404],"id":85544,"properties":{"V":230}},{"type":"LineString","arcs":[10405],"id":85545,"properties":{"V":230}},{"type":"LineString","arcs":[10406,10407],"id":85576,"properties":{"V":500}},{"type":"LineString","arcs":[10408],"id":85580,"properties":{"V":230}},{"type":"LineString","arcs":[10409],"id":85581,"properties":{"V":230}},{"type":"LineString","arcs":[10410],"id":85582,"properties":{"V":230}},{"type":"LineString","arcs":[10411],"id":85585,"properties":{"V":345}},{"type":"LineString","arcs":[10412],"id":85586,"properties":{"V":345}},{"type":"LineString","arcs":[10413],"id":85587,"properties":{"V":230}},{"type":"LineString","arcs":[10414],"id":85600,"properties":{"V":500}},{"type":"LineString","arcs":[10415],"id":85612,"properties":{"V":230}},{"type":"LineString","arcs":[10416],"id":85624,"properties":{"V":345}},{"type":"LineString","arcs":[10417],"id":85642,"properties":{"V":230}},{"type":"LineString","arcs":[10418],"id":85647,"properties":{"V":230}},{"type":"LineString","arcs":[10419],"id":85656,"properties":{"V":230}},{"type":"LineString","arcs":[10420],"id":85671,"properties":{"V":230}},{"type":"LineString","arcs":[10421],"id":85672,"properties":{"V":230}},{"type":"LineString","arcs":[10422],"id":85703,"properties":{"V":230}},{"type":"LineString","arcs":[10423],"id":85730,"properties":{"V":345}},{"type":"LineString","arcs":[10424],"id":85755,"properties":{"V":230}},{"type":"LineString","arcs":[10425],"id":85756,"properties":{"V":230}},{"type":"LineString","arcs":[10426],"id":85757,"properties":{"V":230}},{"type":"LineString","arcs":[10427],"id":85773,"properties":{"V":230}},{"type":"LineString","arcs":[10428],"id":85822,"properties":{"V":345}},{"type":"LineString","arcs":[10429],"id":85823,"properties":{"V":345}},{"type":"LineString","arcs":[10430],"id":85864,"properties":{"V":230}},{"type":"LineString","arcs":[10431],"id":85884,"properties":{"V":230}},{"type":"LineString","arcs":[10432],"id":85914,"properties":{"V":230}},{"type":"LineString","arcs":[10433],"id":85923,"properties":{"V":230}},{"type":"LineString","arcs":[10434],"id":85925,"properties":{"V":230}},{"type":"LineString","arcs":[10435],"id":85926,"properties":{"V":230}},{"type":"LineString","arcs":[10436],"id":85927,"properties":{"V":230}},{"type":"LineString","arcs":[10437],"id":85935,"properties":{"V":230}},{"type":"LineString","arcs":[10438],"id":85936,"properties":{"V":230}},{"type":"LineString","arcs":[10439],"id":85939,"properties":{"V":230}},{"type":"LineString","arcs":[10440],"id":85943,"properties":{"V":230}},{"type":"LineString","arcs":[10441],"id":85944,"properties":{"V":230}},{"type":"LineString","arcs":[10442],"id":85962,"properties":{"V":230}},{"type":"LineString","arcs":[10443],"id":85963,"properties":{"V":230}},{"type":"LineString","arcs":[10444],"id":85980,"properties":{"V":230}},{"type":"LineString","arcs":[10445],"id":86002,"properties":{"V":230}},{"type":"LineString","arcs":[10446],"id":86013,"properties":{"V":230}},{"type":"LineString","arcs":[10447],"id":86016,"properties":{"V":230}},{"type":"LineString","arcs":[10448],"id":86018,"properties":{"V":230}},{"type":"LineString","arcs":[10449],"id":86019,"properties":{"V":230}},{"type":"LineString","arcs":[10450],"id":86025,"properties":{"V":230}},{"type":"LineString","arcs":[10451],"id":86028,"properties":{"V":230}},{"type":"LineString","arcs":[10452],"id":86033,"properties":{"V":230}},{"type":"LineString","arcs":[10453],"id":86062,"properties":{"V":230}},{"type":"LineString","arcs":[10454],"id":86064,"properties":{"V":230}},{"type":"LineString","arcs":[10455],"id":86065,"properties":{"V":230}},{"type":"LineString","arcs":[10456],"id":86066,"properties":{"V":230}},{"type":"LineString","arcs":[10457],"id":86067,"properties":{"V":230}},{"type":"LineString","arcs":[10458],"id":86068,"properties":{"V":230}},{"type":"LineString","arcs":[10459],"id":86109,"properties":{"V":230}},{"type":"LineString","arcs":[10460],"id":86114,"properties":{"V":230}},{"type":"LineString","arcs":[10461],"id":86115,"properties":{"V":230}},{"type":"LineString","arcs":[10462],"id":86116,"properties":{"V":230}},{"type":"LineString","arcs":[10463],"id":86117,"properties":{"V":230}},{"type":"LineString","arcs":[10464],"id":86121,"properties":{"V":230}},{"type":"LineString","arcs":[10465],"id":86133,"properties":{"V":500}},{"type":"LineString","arcs":[10466],"id":86149,"properties":{"V":230}},{"type":"LineString","arcs":[10467],"id":86150,"properties":{"V":230}},{"type":"LineString","arcs":[10468],"id":86154,"properties":{"V":230}},{"type":"LineString","arcs":[10469],"id":86166,"properties":{"V":230}},{"type":"LineString","arcs":[10470],"id":86183,"properties":{"V":230}},{"type":"LineString","arcs":[10471],"id":86184,"properties":{"V":230}},{"type":"LineString","arcs":[10472],"id":86185,"properties":{"V":230}},{"type":"LineString","arcs":[10473],"id":86201,"properties":{"V":230}},{"type":"LineString","arcs":[10474],"id":86202,"properties":{"V":500}},{"type":"LineString","arcs":[10475,10476,10477],"id":86207,"properties":{"V":230}},{"type":"LineString","arcs":[10478],"id":86208,"properties":{"V":230}},{"type":"LineString","arcs":[10479],"id":86209,"properties":{"V":230}},{"type":"LineString","arcs":[10480],"id":86231,"properties":{"V":500}},{"type":"LineString","arcs":[10481],"id":86418,"properties":{"V":500}},{"type":"LineString","arcs":[10482],"id":86419,"properties":{"V":500}},{"type":"LineString","arcs":[10483],"id":86738,"properties":{"V":500}},{"type":"LineString","arcs":[10484],"id":86741,"properties":{"V":500}},{"type":"LineString","arcs":[10485],"id":87004,"properties":{"V":500}},{"type":"LineString","arcs":[10486],"id":87005,"properties":{"V":500}},{"type":"LineString","arcs":[10487],"id":87029,"properties":{"V":500}},{"type":"LineString","arcs":[10488],"id":87059,"properties":{"V":345}},{"type":"LineString","arcs":[10489],"id":87180,"properties":{"V":345}},{"type":"LineString","arcs":[10490],"id":87183,"properties":{"V":345}},{"type":"LineString","arcs":[10491],"id":87295,"properties":{"V":230}},{"type":"LineString","arcs":[10492,10493],"id":87308,"properties":{"V":345}},{"type":"LineString","arcs":[10494,10495],"id":87309,"properties":{"V":345}},{"type":"LineString","arcs":[10496],"id":87403,"properties":{"V":345}},{"type":"LineString","arcs":[10497],"id":87404,"properties":{"V":345}},{"type":"LineString","arcs":[10498],"id":87410,"properties":{"V":230}},{"type":"LineString","arcs":[10499],"id":87426,"properties":{"V":230}},{"type":"LineString","arcs":[10500],"id":87427,"properties":{"V":230}},{"type":"LineString","arcs":[10501],"id":87428,"properties":{"V":230}},{"type":"LineString","arcs":[10502],"id":87429,"properties":{"V":230}},{"type":"LineString","arcs":[10503],"id":87430,"properties":{"V":230}},{"type":"LineString","arcs":[10504],"id":87432,"properties":{"V":230}},{"type":"LineString","arcs":[10505],"id":87434,"properties":{"V":230}},{"type":"LineString","arcs":[10506],"id":87533,"properties":{"V":345}},{"type":"LineString","arcs":[10507],"id":87554,"properties":{"V":230}},{"type":"LineString","arcs":[10508],"id":87573,"properties":{"V":230}},{"type":"LineString","arcs":[10509],"id":87586,"properties":{"V":230}},{"type":"LineString","arcs":[10510],"id":87716,"properties":{"V":400}},{"type":"LineString","arcs":[10511],"id":87762,"properties":{"V":230}},{"type":"LineString","arcs":[10512],"id":87772,"properties":{"V":230}},{"type":"LineString","arcs":[10513],"id":87776,"properties":{"V":230}},{"type":"LineString","arcs":[10514],"id":87778,"properties":{"V":230}},{"type":"LineString","arcs":[10515],"id":87859,"properties":{"V":230}},{"type":"LineString","arcs":[10516],"id":87860,"properties":{"V":230}},{"type":"LineString","arcs":[10517],"id":87862,"properties":{"V":230}},{"type":"LineString","arcs":[10518],"id":87864,"properties":{"V":230}},{"type":"LineString","arcs":[10519],"id":87893,"properties":{"V":345}},{"type":"LineString","arcs":[10520],"id":87894,"properties":{"V":345}},{"type":"LineString","arcs":[10521],"id":88027,"properties":{"V":345}},{"type":"LineString","arcs":[10522],"id":88073,"properties":{"V":345}},{"type":"LineString","arcs":[10523],"id":88074,"properties":{"V":230}},{"type":"LineString","arcs":[10524],"id":88075,"properties":{"V":230}},{"type":"LineString","arcs":[10525,10526,10527,10528,10529],"id":88153,"properties":{"V":500}},{"type":"LineString","arcs":[10530],"id":88292,"properties":{"V":765}},{"type":"LineString","arcs":[10531],"id":88301,"properties":{"V":765}},{"type":"LineString","arcs":[10532],"id":88302,"properties":{"V":345}},{"type":"LineString","arcs":[10533],"id":88303,"properties":{"V":345}},{"type":"LineString","arcs":[10534],"id":88307,"properties":{"V":345}},{"type":"LineString","arcs":[10535],"id":88402,"properties":{"V":345}},{"type":"LineString","arcs":[10536],"id":88409,"properties":{"V":345}},{"type":"LineString","arcs":[10537],"id":88424,"properties":{"V":765}},{"type":"LineString","arcs":[10538],"id":88425,"properties":{"V":345}},{"type":"LineString","arcs":[10539],"id":88426,"properties":{"V":345}},{"type":"LineString","arcs":[10540],"id":88427,"properties":{"V":345}},{"type":"LineString","arcs":[10541],"id":88428,"properties":{"V":345}},{"type":"LineString","arcs":[10542],"id":88430,"properties":{"V":345}},{"type":"LineString","arcs":[10543],"id":88454,"properties":{"V":765}},{"type":"LineString","arcs":[10544],"id":88459,"properties":{"V":765}},{"type":"LineString","arcs":[10545],"id":88557,"properties":{"V":345}},{"type":"LineString","arcs":[10546],"id":88558,"properties":{"V":345}},{"type":"LineString","arcs":[10547],"id":88560,"properties":{"V":345}},{"type":"LineString","arcs":[10548],"id":88561,"properties":{"V":345}},{"type":"LineString","arcs":[10549],"id":88566,"properties":{"V":345}},{"type":"LineString","arcs":[10550],"id":88567,"properties":{"V":345}},{"type":"LineString","arcs":[10551],"id":88568,"properties":{"V":345}},{"type":"LineString","arcs":[10552],"id":88578,"properties":{"V":345}},{"type":"LineString","arcs":[10553],"id":88627,"properties":{"V":345}},{"type":"LineString","arcs":[10554],"id":88629,"properties":{"V":345}},{"type":"LineString","arcs":[10555],"id":88630,"properties":{"V":345}},{"type":"LineString","arcs":[10556],"id":88643,"properties":{"V":345}},{"type":"LineString","arcs":[10557],"id":88648,"properties":{"V":345}},{"type":"LineString","arcs":[10558],"id":88658,"properties":{"V":765}},{"type":"LineString","arcs":[10559],"id":88659,"properties":{"V":765}},{"type":"LineString","arcs":[10560],"id":88716,"properties":{"V":345}},{"type":"LineString","arcs":[10561],"id":88731,"properties":{"V":500}},{"type":"LineString","arcs":[10562],"id":88747,"properties":{"V":230}},{"type":"LineString","arcs":[10563],"id":88751,"properties":{"V":230}},{"type":"LineString","arcs":[10564],"id":88754,"properties":{"V":230}},{"type":"LineString","arcs":[10565],"id":88756,"properties":{"V":230}},{"type":"LineString","arcs":[10566],"id":88757,"properties":{"V":230}},{"type":"LineString","arcs":[10567],"id":88776,"properties":{"V":230}},{"type":"LineString","arcs":[10568],"id":88785,"properties":{"V":230}},{"type":"LineString","arcs":[10569],"id":88786,"properties":{"V":230}},{"type":"LineString","arcs":[10570],"id":88789,"properties":{"V":230}},{"type":"LineString","arcs":[10571],"id":88790,"properties":{"V":230}},{"type":"LineString","arcs":[10572],"id":88863,"properties":{"V":230}},{"type":"LineString","arcs":[10573],"id":88866,"properties":{"V":230}},{"type":"LineString","arcs":[10574],"id":88867,"properties":{"V":230}},{"type":"LineString","arcs":[10575],"id":88868,"properties":{"V":230}},{"type":"LineString","arcs":[10576],"id":88887,"properties":{"V":230}},{"type":"LineString","arcs":[10577],"id":88890,"properties":{"V":345}},{"type":"LineString","arcs":[10578],"id":88959,"properties":{"V":230}},{"type":"LineString","arcs":[10579],"id":89004,"properties":{"V":500}},{"type":"LineString","arcs":[10580],"id":89005,"properties":{"V":500}},{"type":"LineString","arcs":[10581],"id":89006,"properties":{"V":500}},{"type":"LineString","arcs":[10582],"id":89025,"properties":{"V":230}},{"type":"LineString","arcs":[10583],"id":89026,"properties":{"V":230}},{"type":"LineString","arcs":[10584],"id":89027,"properties":{"V":230}},{"type":"LineString","arcs":[10585],"id":89028,"properties":{"V":230}},{"type":"LineString","arcs":[10586],"id":89029,"properties":{"V":230}},{"type":"LineString","arcs":[10587],"id":89030,"properties":{"V":230}},{"type":"LineString","arcs":[10588],"id":89031,"properties":{"V":230}},{"type":"LineString","arcs":[10589],"id":89165,"properties":{"V":230}},{"type":"LineString","arcs":[10590],"id":89180,"properties":{"V":500}},{"type":"LineString","arcs":[10591],"id":89182,"properties":{"V":230}},{"type":"LineString","arcs":[10592],"id":89238,"properties":{"V":500}},{"type":"LineString","arcs":[10593],"id":89239,"properties":{"V":500}},{"type":"LineString","arcs":[10594],"id":89250,"properties":{"V":230}},{"type":"LineString","arcs":[10595],"id":89251,"properties":{"V":230}},{"type":"LineString","arcs":[10596],"id":89294,"properties":{"V":230}},{"type":"LineString","arcs":[10597],"id":89295,"properties":{"V":230}},{"type":"LineString","arcs":[10598],"id":89337,"properties":{"V":230}},{"type":"LineString","arcs":[10599],"id":89338,"properties":{"V":230}},{"type":"LineString","arcs":[10600],"id":89345,"properties":{"V":230}},{"type":"LineString","arcs":[10601],"id":89348,"properties":{"V":230}},{"type":"LineString","arcs":[10602],"id":89349,"properties":{"V":230}},{"type":"LineString","arcs":[10603],"id":89352,"properties":{"V":230}},{"type":"LineString","arcs":[10604],"id":89361,"properties":{"V":230}},{"type":"LineString","arcs":[10605],"id":89363,"properties":{"V":230}},{"type":"LineString","arcs":[10606],"id":89364,"properties":{"V":230}},{"type":"LineString","arcs":[10607],"id":89366,"properties":{"V":230}},{"type":"LineString","arcs":[10608],"id":89376,"properties":{"V":230}},{"type":"LineString","arcs":[10609],"id":89384,"properties":{"V":230}},{"type":"LineString","arcs":[10610],"id":89385,"properties":{"V":230}},{"type":"LineString","arcs":[10611],"id":89387,"properties":{"V":230}},{"type":"LineString","arcs":[10612],"id":89388,"properties":{"V":230}},{"type":"LineString","arcs":[10613],"id":89392,"properties":{"V":230}},{"type":"LineString","arcs":[10614],"id":89424,"properties":{"V":230}},{"type":"LineString","arcs":[10615],"id":89428,"properties":{"V":230}},{"type":"LineString","arcs":[10616],"id":89520,"properties":{"V":230}},{"type":"LineString","arcs":[10617],"id":89526,"properties":{"V":500}},{"type":"LineString","arcs":[10618],"id":89529,"properties":{"V":230}},{"type":"LineString","arcs":[10619],"id":89530,"properties":{"V":500}},{"type":"LineString","arcs":[10620],"id":89531,"properties":{"V":500}},{"type":"LineString","arcs":[10621],"id":89532,"properties":{"V":230}},{"type":"LineString","arcs":[10622],"id":89627,"properties":{"V":345}},{"type":"LineString","arcs":[10623],"id":89702,"properties":{"V":230}},{"type":"LineString","arcs":[10624],"id":89703,"properties":{"V":230}}]}},"arcs":[[[7543,5149],[5,-1]],[[4992,28050],[-80,-337]],[[4992,28050],[-39,-520],[99,-313],[560,-1222],[108,-381],[385,-536]],[[4992,28050],[-38,-519],[99,-313],[560,-1222],[107,-381],[385,-537]],[[4912,27713],[140,-497],[559,-1222],[108,-381],[386,-535]],[[4912,27713],[-493,-198],[-177,-483]],[[6105,25078],[362,-1432]],[[6105,25078],[362,-1432]],[[6105,25078],[155,-587]],[[6260,24491],[368,-24],[677,-155],[736,261],[855,-405],[565,-414],[363,-416],[96,15]],[[6260,24491],[207,-845]],[[6467,23646],[244,-683],[172,-1079]],[[6467,23646],[245,-683],[171,-1079]],[[6467,23646],[246,-682],[170,-1080]],[[6883,21884],[63,-340],[-32,-677],[154,-853],[17,-1137]],[[6883,21884],[64,-340],[-32,-676],[154,-854],[16,-1137]],[[6883,21884],[65,-340],[-33,-677],[154,-955]],[[7069,19912],[16,-1035]],[[7085,18877],[-49,-294],[-289,-340]],[[4242,27032],[-99,-92],[-345,93],[-712,-479],[-339,-980]],[[2747,25574],[-47,-254],[-185,-104],[-21,-578],[-223,-914],[-7,-448],[247,-826],[20,-479]],[[2531,21971],[179,-602],[58,-506],[284,-397],[149,-830],[220,-437]],[[3421,19199],[261,-27],[112,-176],[266,-1254],[120,-207],[94,-514],[224,-594]],[[4498,16427],[-225,593],[-94,515],[-120,206],[-125,664],[-110,189],[-554,-108],[-176,343]],[[4498,16427],[19,119]],[[4498,16427],[68,-691],[246,-1279],[-87,-84]],[[4725,14373],[-129,-310],[85,-608]],[[4681,13455],[30,-496],[-146,-566],[271,-1138]],[[8310,14556],[-298,72],[-55,453],[-505,800],[-679,387],[-463,-27],[-570,-148],[-407,106],[-449,302],[-386,-74]],[[4498,16427],[385,72],[444,-303],[414,-105],[569,148],[506,10],[271,209],[397,-311],[563,-103],[119,-308],[239,-17],[111,-188],[586,-551],[670,-287],[171,-298],[574,-699],[76,-470],[204,-389],[300,-359]],[[4498,16427],[386,72],[444,-303],[412,-104],[570,148],[506,10],[271,209],[397,-312],[276,-17]],[[7760,16130],[287,-85],[119,-309],[239,-16],[111,-189],[771,-663]],[[9287,14868],[485,-175],[171,-298],[574,-699],[76,-471],[203,-388],[301,-359]],[[9287,14868],[-552,-105],[-214,-232],[-211,25]],[[7085,18877],[122,-748],[237,-318],[143,-637],[173,-1044]],[[8310,14556],[-134,568],[-113,73],[-192,482],[-237,1040],[-191,1091],[-238,318],[-120,749]],[[8310,14556],[-133,570],[-113,72],[-230,583],[-390,2030],[-238,318],[-121,748]],[[5355,14538],[-326,43],[-304,-208]],[[5355,14538],[354,-188],[-216,-557]],[[10304,12012],[-55,-18],[-582,528],[-503,17],[-392,557],[-190,491],[-127,89],[-529,33],[-886,-26],[-294,-169],[-333,32],[-233,539],[-825,453]],[[7653,14574],[-224,109],[-803,-238],[-207,275],[-318,150],[-144,-177],[-463,-209],[-139,54]],[[8310,14556],[-328,74],[-329,-56]],[[8310,14556],[-328,77],[-329,-59]],[[10805,14596],[-467,-260],[-1141,328],[-438,-51],[-210,-279],[-239,222]],[[8715,14302],[-339,109],[-66,145]],[[10304,12012],[-159,492],[-212,340],[-45,278],[-401,330],[-229,44],[-448,436],[-95,370]],[[10166,14648],[-316,-16],[-563,236]],[[10805,14596],[-639,52]],[[9853,15139],[-566,-271]],[[11097,12478],[-271,-872]],[[10826,11606],[-73,253],[-449,153]],[[10826,11606],[-71,254],[-451,152]],[[4836,11255],[193,-540],[200,-1115],[145,-185]],[[5532,8954],[37,128],[-341,516],[-201,1116],[-191,541]],[[5532,8954],[-85,-739],[124,-254],[-159,-209],[-681,-44]],[[5532,8954],[-84,-739],[125,-241]],[[7430,7469],[-189,725],[-460,193],[-610,46],[-599,649],[-40,-128]],[[5532,8954],[38,130],[-196,331]],[[6681,7450],[260,-207],[489,226]],[[7430,7469],[-293,-179]],[[7430,7469],[-293,-179]],[[7430,7469],[199,-543]],[[7629,6926],[-180,90],[-335,-230]],[[7608,6929],[-159,88],[-335,-231]],[[7764,5730],[0,0]],[[7764,5730],[-66,270],[72,301],[-141,625]],[[7866,5401],[-102,329]],[[7764,5730],[0,0]],[[7764,5730],[-425,-227]],[[7866,5401],[-190,-425],[105,-814],[-88,-693],[139,-569],[23,-608],[-483,-1169]],[[7866,5401],[-189,-426],[104,-808],[-89,-698],[162,-1178],[-453,-1184],[-29,16]],[[11481,6590],[-89,182],[-533,494],[-753,-80],[-297,-213],[-378,-436],[-550,55],[-308,-144],[-409,-815],[-298,-232]],[[9580,9272],[-435,-318],[-451,-231],[-344,-636],[-405,122],[-268,-386],[-158,-426]],[[9580,9272],[-435,-318],[-451,-231],[-344,-636],[-405,122],[-268,-386],[-77,-363],[-170,9]],[[9580,9272],[-888,-546],[-342,-642],[-402,125],[-273,-384],[-77,-363],[-168,7]],[[9580,9272],[-438,-316],[-449,-231],[-343,-642],[-401,125],[-273,-384],[-77,-363],[-169,8]],[[7430,7469],[89,-72]],[[9580,9272],[205,270],[316,1001],[246,55],[109,964],[-152,450]],[[9580,9272],[325,-215],[405,-489],[-105,-703]],[[12477,7070],[-324,101],[-438,923],[-318,298],[-678,498],[-336,24]],[[10352,10575],[-312,-191],[-259,-845],[-201,-267]],[[11481,6590],[-88,183],[-856,799],[-251,368],[-81,-75]],[[12477,7070],[-67,-120],[-592,-293],[-337,-67]],[[10352,10575],[26,322],[448,709]],[[12477,7070],[-15,205],[-316,686],[-1064,2074],[-256,1571]],[[11832,13850],[-334,695],[-148,174],[-324,75],[-221,-198]],[[11692,13681],[140,169]],[[11832,13850],[268,-357],[330,-771]],[[10805,14596],[75,507],[-149,-11]],[[12430,12722],[-547,-261],[-408,-75],[-378,92]],[[12430,12722],[-250,-412],[-594,-276],[-143,-234],[-617,-194]],[[12430,12722],[823,186]],[[13253,12908],[-823,-186]],[[13663,13010],[-410,-102]],[[14327,13032],[-511,-101],[-153,79]],[[13663,13010],[153,-78],[511,100]],[[14327,13032],[251,448],[51,471],[434,78]],[[15063,14029],[210,40],[196,-141],[519,192]],[[12477,7070],[21,238],[410,428],[434,612],[1144,418],[509,132]],[[17729,11022],[-525,-516],[-154,-520],[-514,-600],[-193,-366],[-357,-195],[-500,372],[-491,-299]],[[15988,14120],[-75,-689],[34,-211],[493,-815],[175,-182],[115,-529],[230,-211],[116,71],[190,-364],[454,-51],[9,-117]],[[17729,11022],[117,-292],[194,-62],[382,97],[379,441],[326,13],[219,-142]],[[17729,11022],[861,723],[64,313],[193,243],[282,755],[218,119],[260,523],[82,540],[211,117],[250,436],[442,121],[520,1254],[612,-170]],[[17729,11022],[861,723],[64,313],[193,243],[282,756],[218,119],[260,522],[82,540],[211,118],[250,435],[442,122],[520,1253],[612,-170]],[[28279,19489],[-160,-42],[-325,-318],[-422,-215],[-588,-587],[-810,-435],[-112,-161],[-538,-124],[-609,235],[-460,-211],[-282,22],[-426,227],[-203,-27],[-331,-517],[-37,-282],[-318,-3],[-279,145],[-265,-151],[50,-531],[-132,-417],[-308,-101]],[[28279,19489],[-160,-41],[-325,-318],[-422,-214],[-589,-587],[-810,-435],[-111,-161],[-538,-125],[-609,236],[-460,-211],[-287,21],[-421,226],[-203,-27],[-331,-517],[-37,-282],[-318,-2],[-279,144],[-265,-151],[50,-531],[-132,-416],[-308,-102]],[[28279,19489],[973,54],[662,182],[31,148],[757,487],[709,140],[344,138],[245,224]],[[28279,19489],[504,78],[469,-22],[661,181],[31,148],[758,487],[710,140],[343,138],[245,223]],[[9920,23353],[566,201],[734,686],[753,313],[428,55],[439,-144],[143,56],[271,399],[575,1182]],[[13829,26101],[271,282],[349,-150],[657,228],[562,1235],[291,407],[253,652],[183,225],[1052,403]],[[16095,14213],[-107,-93]],[[12447,12675],[-17,47]],[[8409,14453],[-99,103]],[[8409,14453],[-99,103]],[[8409,14453],[-99,103]],[[8409,14453],[-99,103]],[[10805,14596],[-467,-258],[-1141,328],[-439,-51],[-213,-282],[-521,134],[-334,-94],[-547,-678],[-383,-179],[-457,6],[-269,111],[-890,-418]],[[10183,7882],[134,649],[-412,527],[-288,209],[-439,-491],[-383,-117],[-459,-692],[-68,-358],[-159,-51],[-454,-659],[-206,119],[-335,-232]],[[11481,6590],[-91,180],[-532,493],[-754,-80],[-295,-212],[-404,-449],[-437,102],[-399,-187],[-152,-441],[-253,-364],[-621,-483]],[[11481,6590],[-90,182],[-533,493],[-754,-82],[-295,-212],[-404,-449],[-411,99],[-425,-184],[-152,-441],[-253,-364],[-621,-483]],[[17458,29383],[391,221],[384,-274],[171,132],[581,159],[481,914],[603,-72],[251,109],[297,-80],[118,-359]],[[18697,30129],[775,397],[498,-140],[53,113]],[[17458,29383],[1239,746]],[[18697,30129],[14,162]],[[17458,29383],[960,816],[293,92]],[[17458,29383],[253,718],[-20,168]],[[17447,29383],[11,0]],[[20023,30499],[192,71],[388,603],[292,300],[352,672]],[[20023,30499],[194,70],[387,602],[293,300],[350,674]],[[20735,30133],[-14,587],[250,980],[276,445]],[[20735,30133],[54,-445],[351,-72],[474,-636],[58,-236]],[[21672,28744],[121,48],[206,812],[17,531],[153,316],[178,851]],[[22347,31302],[365,956],[53,627],[129,474],[287,672],[740,1031],[1122,650],[527,129],[272,162],[1123,298]],[[21247,32145],[180,326],[234,84],[431,-105],[311,157],[137,313],[353,440],[287,672],[322,565],[285,181],[134,286],[1121,650],[528,128],[272,163],[1123,296]],[[21247,32145],[180,328],[234,83],[431,-104],[310,156],[137,313],[353,439],[288,673],[322,566],[285,180],[134,289],[1121,647],[528,129],[272,162],[1123,295]],[[21247,32145],[-117,202],[-114,552],[-31,643],[48,437],[-156,946],[218,436],[74,417],[-179,631]],[[21247,32145],[-117,202],[-114,552],[-32,643],[49,437],[-156,946],[178,427],[-65,1057]],[[21247,32145],[447,920],[-159,271],[-211,829],[-223,604],[-46,582],[114,427],[-179,631]],[[20990,36409],[-108,816],[197,736],[-255,730]],[[20990,36409],[-95,956]],[[20990,36409],[-108,816],[196,736],[-254,730]],[[20990,36409],[-108,816],[196,736],[-254,730]],[[20895,37365],[184,596],[-255,730]],[[20824,38691],[-120,743]],[[20824,38691],[-120,743]],[[20824,38691],[119,237]],[[20824,38691],[117,240],[-24,461]],[[20943,38928],[-26,464]],[[20704,39434],[104,417]],[[20704,39434],[104,417]],[[20917,39392],[-109,459]],[[20917,39392],[-109,459]],[[20917,39392],[-109,459]],[[20917,39392],[-109,459]],[[20808,39851],[-143,528],[-98,711],[-15,813],[73,473]],[[20808,39851],[-142,528],[-99,711],[-15,813],[73,473]],[[20808,39851],[-142,528],[-98,711],[-15,813],[72,473]],[[20808,39851],[-52,483],[64,255],[-149,560],[-60,758],[14,469]],[[20625,42376],[3,139]],[[20625,42376],[3,139]],[[20628,42515],[-173,934],[-186,2054],[-211,642]],[[20628,42515],[-174,934],[-185,2053],[-211,643]],[[19250,43288],[604,209],[238,-122],[230,-349],[242,-171],[61,-479]],[[19250,43288],[604,211],[299,-163],[212,-350],[199,-123],[61,-487]],[[20639,42389],[-14,-13]],[[20808,39851],[73,354],[210,266],[-8,183],[182,462],[49,373]],[[21093,40476],[-10,178],[182,462],[49,373]],[[20808,39851],[74,353],[211,272]],[[21093,40476],[7,-4]],[[21951,44489],[-234,-100],[-158,-515],[-401,-376],[-151,-489],[-197,-217],[-185,-416]],[[25506,42542],[-16,-293],[-148,-307],[-307,-101],[-184,-201],[-984,-209],[-402,8],[-98,126],[-667,-232],[-496,498],[-478,209],[-284,-88],[-350,1012],[-242,-97],[-225,-491]],[[21951,44489],[98,238],[127,-397],[-1,-986],[-207,-1124],[-438,-311],[-216,-420]],[[21977,45320],[200,-990],[-1,-986],[-207,-1125],[-439,-312],[-216,-418]],[[21977,45320],[113,-76],[-13,-471],[-126,-284]],[[21977,45320],[35,129],[-287,623],[-366,284],[-138,217],[-497,-210],[-85,-212],[-507,-200],[-74,194]],[[21977,45320],[34,128],[-286,622],[-366,285],[-138,217],[-481,-176],[-101,-246],[-507,-200],[-74,195]],[[18185,46750],[-197,-98],[98,-546],[282,-415],[197,-760],[-32,-719],[85,-748],[214,-293],[418,117]],[[20058,46145],[-143,518],[-388,871],[12,384],[-304,567],[-267,332],[-576,22],[-608,844],[-347,-93]],[[21951,44489],[-5,63],[610,943],[400,239],[379,873],[372,139],[522,964],[72,321],[247,451],[187,513],[131,640],[-135,807],[-37,758]],[[17437,49590],[-552,-140],[-396,752],[-139,621]],[[25506,42542],[181,88],[511,-499],[643,77],[321,-369],[451,-376],[160,-21],[960,213]],[[28734,41686],[-1,-31]],[[28733,41655],[1,31]],[[28734,41686],[-159,-80],[-330,615],[-105,435],[-204,370],[-54,335]],[[27882,43361],[-293,437],[-129,48],[-240,-389]],[[27882,43361],[-37,1109],[321,699],[6,192]],[[28172,45361],[-105,175],[-515,92],[-457,919],[-43,302],[-275,110]],[[26777,46959],[165,763],[125,203],[62,574],[177,717],[-20,361],[163,-56]],[[27449,49521],[-173,81],[-28,326],[-168,253],[-35,643],[-459,610],[-209,775],[-26,375],[222,579],[84,533],[144,92],[140,622]],[[28734,41686],[155,204],[588,-21],[195,304],[406,-150],[366,-257],[557,-578],[123,-290],[579,-755],[157,-102],[942,129],[405,703],[436,504],[200,656]],[[33843,42033],[-121,-251],[73,-1229],[-142,-691],[57,-279],[167,-2798],[220,-487],[-45,-172]],[[34052,36126],[75,431],[299,381],[-32,1207],[-107,1838],[275,38],[-15,248],[176,1096],[544,700],[125,554],[336,415],[328,41],[33,669],[-74,-11]],[[33419,46383],[-308,-59]],[[33419,46383],[202,761],[181,278],[61,335],[-127,2190],[131,569],[258,648],[-26,518],[-351,-51],[-3,-113]],[[33419,46383],[201,761],[182,278],[61,335],[-127,2190],[131,569],[258,648],[-26,517],[-350,-50],[-4,-113]],[[33805,48651],[57,-894],[-60,-334],[-182,-278],[-201,-762]],[[33607,50111],[127,-121],[128,-2233],[-60,-334],[-182,-278],[-199,-757],[-310,-64]],[[33805,48651],[-71,1339],[-127,121]],[[34052,36126],[75,431],[173,149],[797,1290],[10,185],[704,523],[275,140],[358,446],[-14,321],[365,384],[380,175]],[[34052,36126],[299,318],[99,441],[328,512],[866,179]],[[33803,45897],[843,155],[284,-20],[171,-168]],[[35101,45864],[108,-1346],[118,-161],[378,50],[134,-546]],[[35101,45864],[163,322],[10,761],[439,229]],[[35713,47176],[112,76]],[[5573,7974],[209,176],[204,-12],[91,222],[225,107],[481,-79],[911,-378],[253,204],[498,-34],[249,544],[449,230],[241,238],[439,163],[468,-428],[426,-34],[680,-498],[319,-299],[438,-923],[162,-128],[189,81]],[[4992,28050],[-80,-337]],[[4992,28050],[-67,-266],[-400,-163],[-235,-262],[19,-397]],[[4309,26962],[107,-606],[48,-909]],[[3742,27136],[450,-228],[117,54]],[[3742,27136],[-113,156],[-429,-91],[-37,150]],[[3163,27351],[-144,-630],[-352,-837],[-49,-298]],[[2747,25574],[-129,12]],[[2747,25574],[-129,12]],[[2747,25574],[-44,-255],[-215,-306],[-583,-174]],[[1905,24839],[43,-701],[-60,-539]],[[1888,23599],[367,-418],[-1,-102]],[[2254,23079],[-238,-174]],[[2502,22008],[-40,672],[-208,399]],[[2531,21971],[-29,37]],[[2502,22008],[-258,6],[-318,-163]],[[1926,21851],[-139,104],[-590,-399],[-110,-257]],[[1925,21849],[1,2]],[[1925,21849],[-138,107],[-591,-399],[-109,-258]],[[1087,21299],[-436,255],[-167,-104],[-345,973],[-1,767],[-138,576]],[[3074,20076],[-190,247],[-294,603],[-220,298],[-121,-10],[-324,635]],[[1087,21299],[-112,-196],[9,-382]],[[2502,22008],[207,-639],[59,-510],[283,-393],[150,-831],[220,-436]],[[3421,19199],[-193,-86],[-134,-284]],[[3094,18829],[-409,-63],[-132,-150],[-358,-35],[-124,-153],[-310,-62]],[[1761,18366],[-35,257],[-275,678]],[[1761,18366],[240,-419],[30,-892],[127,-713],[184,-208]],[[4517,16546],[-162,128],[-510,-150],[-507,175],[-197,-56]],[[4464,25447],[22,-359],[437,-2028],[90,-252],[675,-670],[139,-471]],[[6456,20330],[-291,618],[-218,328],[-120,391]],[[7069,19912],[-269,-52],[-299,278],[-45,192]],[[6630,19540],[-174,790]],[[7512,16173],[13,985],[-360,955],[-125,179],[-93,502],[-271,393],[-46,353]],[[3421,19199],[162,-65]],[[3583,19134],[1,1]],[[3584,19135],[185,-479]],[[3769,18656],[1,2]],[[3769,18656],[165,-252],[44,-672],[142,-739],[176,-294],[215,-127]],[[3583,19134],[52,-233],[298,-498],[80,-513],[4,-496],[102,-402],[177,-292],[215,-128]],[[4511,16572],[6,-26]],[[4517,16546],[-340,348],[-414,-5],[-100,-125]],[[3792,16954],[-94,780]],[[3698,17734],[-160,499]],[[3538,18233],[-97,576]],[[3441,18809],[-20,390]],[[3792,16954],[272,-607]],[[4064,16347],[105,-606]],[[6630,19540],[96,-573],[21,-724]],[[6747,18243],[121,-322]],[[6747,18243],[-242,-923],[-151,-349],[-413,-38],[-214,109],[-354,-2],[-342,-296],[-264,-76],[-198,-237],[-400,-690]],[[5185,17047],[-668,-501]],[[4517,16546],[-246,-862],[-102,57]],[[4145,15384],[114,251],[258,911]],[[4145,15384],[-157,-56],[-48,299]],[[7642,14557],[-206,118],[-810,-233],[-208,287],[-318,143],[-143,-178],[-464,-209],[-464,95],[-306,-206],[-71,267],[-507,743]],[[4725,14373],[1,-6]],[[4726,14367],[-72,-192]],[[4726,14367],[-72,-192]],[[4654,14175],[3,-7]],[[5355,14538],[-264,-34]],[[7642,14557],[-206,116],[-810,-231],[-209,287],[-317,143],[-396,-288],[-11,-435],[-200,-356]],[[4657,14168],[-583,98]],[[4074,14266],[-147,-50],[-150,-310],[-464,-349],[-225,-485]],[[4657,14168],[54,-244]],[[4657,14168],[54,-244]],[[4657,14168],[71,188]],[[4728,14356],[-3,17]],[[4657,14168],[71,188]],[[4728,14356],[363,148]],[[7642,14557],[-214,122],[-802,-235],[-208,286],[-318,143],[-78,-130],[-529,-257],[-296,108],[-106,-90]],[[6867,14542],[-241,-98],[-208,286],[-318,144],[-395,-288]],[[4388,14192],[-316,73],[-50,184]],[[4517,16546],[399,310],[229,50],[85,266],[324,-195],[388,-43],[296,80],[548,-194],[526,-569],[734,-207],[119,-309],[240,-17],[110,-188],[654,-597]],[[6971,16578],[-184,243],[-548,195],[-297,-80],[-388,41],[-323,195],[-64,-215],[-357,-154],[-270,-240]],[[7642,14557],[16,448],[-119,693],[-27,475]],[[4711,13924],[25,-271]],[[4736,13653],[-55,-198]],[[4681,13455],[-33,-32]],[[4681,13455],[253,-145]],[[5144,13215],[-210,95]],[[5144,13215],[-206,98]],[[5091,14504],[96,-217]],[[5091,14504],[96,-217]],[[5187,14287],[166,-278]],[[5353,14009],[133,-221]],[[5353,14009],[133,-221]],[[6281,13786],[-687,-258],[-101,265]],[[6281,13786],[-627,-320],[-161,327]],[[5493,13793],[-46,-3]],[[5144,13215],[242,219]],[[5144,13215],[242,218]],[[5386,13433],[268,33],[627,320]],[[6281,13786],[-87,11],[-808,-363]],[[5386,13433],[14,-66]],[[5386,13434],[14,-67]],[[5144,13215],[-119,-16]],[[5144,13215],[66,-100],[144,-938]],[[5354,12177],[-34,-379],[-238,-728]],[[5354,12177],[226,-96],[253,105],[226,-169]],[[6059,12017],[97,32]],[[4934,13310],[-164,-271],[-1,-277],[255,-1141]],[[4736,13653],[137,-353],[-104,-538],[255,-1141]],[[5024,11621],[-188,-366]],[[5024,11621],[-188,-366]],[[4836,11255],[-295,-79],[-301,-359]],[[4836,11255],[-295,-79],[-301,-359]],[[4240,10817],[6,-8]],[[4240,10817],[6,-8]],[[4246,10809],[9,-19]],[[4240,10817],[-29,-92],[-488,-251],[-173,29]],[[4836,11255],[90,-95]],[[4836,11255],[86,-88]],[[4836,11255],[86,-88]],[[5024,11621],[-200,-280],[-167,-455]],[[5024,11621],[-200,-280],[-167,-455]],[[4657,10886],[-3,16]],[[4926,11160],[9,19]],[[5082,11070],[-160,97]],[[4922,11167],[136,-219],[-30,-233],[202,-1114],[81,-120]],[[4905,11086],[123,-372],[200,-1115],[83,-118]],[[5311,9481],[32,139],[434,222],[55,191]],[[5832,10033],[-14,64]],[[6099,10115],[-150,-246],[-605,-250],[-33,-138]],[[6099,10115],[-150,-246],[-131,228]],[[5311,9481],[-85,-263],[50,-387],[297,-857]],[[5573,7974],[-161,-223],[-681,-43]],[[4707,7698],[24,10]],[[5573,7974],[-158,-283],[40,-695]],[[5573,7974],[-159,-282],[41,-696]],[[5573,7974],[-162,-280],[44,-698]],[[4731,7708],[681,41],[43,-753]],[[5455,6996],[-62,-284],[107,-472],[272,-451],[225,-200],[214,-389],[127,-496],[4,-315]],[[5455,6996],[-62,-284],[107,-472],[272,-452],[224,-199],[215,-389],[127,-496],[4,-315]],[[6342,4389],[-304,-413]],[[6038,3976],[-451,-448]],[[6342,4389],[-246,-362],[-509,-499]],[[5455,6996],[428,-256],[133,-251],[337,-325]],[[5455,6996],[428,-258],[133,-251],[315,-310]],[[5455,6996],[428,-257],[133,-251],[315,-311]],[[6281,13786],[148,-176],[634,85],[1392,-20],[357,-376],[248,-527],[182,-180],[306,-29]],[[7642,14557],[-127,-172]],[[7639,14604],[5,1]],[[7644,14605],[-2,-48]],[[7639,14604],[5,1]],[[7644,14605],[-2,-48]],[[7642,14557],[753,-171]],[[7653,14574],[-11,-17]],[[7653,14574],[-11,-17]],[[7653,14574],[-14,30]],[[7653,14574],[-14,30]],[[7642,14557],[41,-181],[311,-43],[834,-423],[251,-250]],[[8310,14556],[1,10]],[[8499,14755],[-188,-189]],[[4922,11167],[3,35]],[[3074,20076],[6,10]],[[3421,19199],[-319,696],[-28,181]],[[3141,16643],[-334,-287],[-465,-222]],[[7639,14604],[18,401],[-119,692],[-14,1461],[-252,642],[9,389],[-179,830],[15,985],[-177,916],[98,747],[228,1000],[9,1026],[252,723],[35,1862],[-174,929],[19,1112],[-78,494],[120,1744],[-17,1392],[-102,252],[-19,1035],[216,1267],[-239,604],[82,589],[115,231],[68,566],[-49,641],[-195,755],[-24,722],[176,635],[-73,722],[-231,1280],[28,1377],[-86,737],[65,1738],[242,621],[20,651],[-212,1299],[171,495],[120,831],[-38,482],[82,283],[152,1303],[-122,382],[-113,1589],[122,512],[-143,1254],[-441,1083],[-184,540],[-333,414],[-89,291],[-344,632],[-179,657],[-334,377],[-44,804]],[[8499,14755],[-23,248]],[[9579,14747],[-410,186]],[[9579,14747],[270,-118],[356,60]],[[10208,14673],[-3,16]],[[10205,14689],[600,-93]],[[10805,14596],[-522,-250]],[[10805,14596],[-16,-75],[644,-909]],[[10805,14596],[216,1112],[554,345]],[[11575,16053],[453,434],[27,536],[201,553],[254,150]],[[11135,14746],[1,18]],[[5311,9481],[260,-399]],[[6569,8066],[-147,322],[-250,43],[-601,651]],[[6569,8066],[61,-339]],[[6569,8066],[336,-197],[55,-311],[177,-268]],[[6567,8065],[338,-197],[18,-234]],[[6923,7634],[214,-344]],[[7137,7290],[-214,344]],[[7137,7290],[-195,-46]],[[6942,7244],[-261,206]],[[7137,7290],[-196,-45],[-260,205]],[[7137,7290],[-196,-45],[-260,205]],[[7137,7290],[202,-337],[-225,-167]],[[7137,7290],[-128,-699]],[[6951,6532],[156,332],[30,426]],[[7543,5149],[-165,204]],[[7858,5373],[-294,-265]],[[7866,5401],[-323,-252]],[[7543,5149],[189,-844]],[[7732,4305],[-5,-2]],[[7767,2910],[88,-618],[-455,-1183],[-28,14]],[[7771,2915],[84,-623],[-238,-626]],[[7617,1666],[-245,-543]],[[7372,1123],[-160,148]],[[7372,1123],[-160,148]],[[9279,9082],[-585,-358],[-310,-599],[-437,89],[-271,-390],[-101,-399],[-438,-135]],[[9580,9272],[-301,-190]],[[10383,8914],[-560,441],[-243,-83]],[[9079,13660],[408,-210],[402,-337]],[[9889,13113],[0,0]],[[9889,13113],[92,-342]],[[9548,12563],[0,-1]],[[9822,12377],[519,-467],[112,-260]],[[9548,12563],[274,-186]],[[9822,12377],[-2,0]],[[9981,12771],[164,-267],[308,-854]],[[10383,8914],[1,-238],[-201,-794]],[[10383,8914],[335,-25],[678,-498],[318,-298],[438,-923],[353,-44]],[[10383,8914],[334,-22],[680,-498],[361,-376]],[[11758,8018],[395,-846],[163,-128],[189,82]],[[10383,8914],[131,323],[-16,437],[-146,901]],[[10352,10575],[101,1075]],[[10205,7865],[-19,18]],[[11481,6590],[127,-776],[375,-792]],[[11481,6590],[341,66],[589,292],[94,178]],[[11481,6590],[341,65],[590,292],[93,179]],[[12477,7070],[28,56]],[[12505,7126],[-6,181],[410,428],[434,611],[1144,418],[508,134]],[[12505,7126],[-7,181],[411,429],[433,611],[1144,418],[509,133]],[[12505,7126],[-7,182],[411,428],[433,611],[1433,554]],[[14775,8901],[220,-3]],[[12505,7126],[-32,44]],[[12473,7170],[-328,790],[-1029,2005],[37,23]],[[12505,7126],[-32,44]],[[12473,7170],[-329,789],[-771,1499]],[[10453,11650],[144,-670],[776,-1522]],[[10453,11650],[144,-670],[517,-1011],[39,19]],[[10453,11650],[550,342],[184,609]],[[11097,12478],[-103,-440]],[[11097,12478],[31,59]],[[11097,12478],[-3,30]],[[11097,12478],[-3,30]],[[11097,12478],[-112,427]],[[14995,8898],[34,-160],[-235,-1024],[-81,-992],[-148,-408]],[[15746,9027],[1,5]],[[15748,9032],[-1,0]],[[15747,9032],[-261,167],[-491,-301]],[[14995,8898],[87,-89],[299,-1468]],[[15381,7341],[-104,-377],[149,-671],[44,-789],[-31,-604],[244,-645]],[[14995,8898],[86,-90],[289,-1545],[-54,-499],[135,153]],[[15451,6917],[-142,-210]],[[15309,6707],[116,-414],[44,-789],[-31,-598],[245,-651]],[[14565,6314],[10,131],[430,43],[304,219]],[[14565,6314],[16,-637],[248,-285],[77,-277],[283,-275],[260,38],[234,-623]],[[15746,9027],[363,-319],[341,7],[201,-186],[62,-365],[337,-49],[107,194],[420,342],[161,378]],[[17738,9029],[95,249],[474,-150],[237,-268],[474,-246],[-22,-763],[-351,-241]],[[18645,7610],[351,241],[22,763],[340,39],[218,379]],[[19576,9032],[214,64],[110,-215],[432,-368],[30,-316]],[[20170,8691],[202,-398],[127,36]],[[20499,8329],[24,-104]],[[20685,8467],[-162,-242]],[[20685,8467],[-186,-138]],[[20362,8197],[-1,-1]],[[20362,8197],[161,28]],[[20170,8691],[-120,202],[151,372]],[[17738,9029],[513,1622],[550,556],[326,13],[221,-150]],[[20201,9265],[-32,276]],[[20169,9541],[-196,354],[-97,547],[-528,628]],[[19346,11077],[2,-7]],[[19348,11070],[215,293],[193,898]],[[19756,12261],[279,802],[-33,593],[115,297]],[[19772,26300],[-72,-523],[-142,-45],[-425,-543],[-177,-929],[-140,-295]],[[18816,23965],[-110,-632]],[[5486,13788],[7,5]],[[5486,13786],[7,7]],[[5486,13786],[0,2]],[[5486,13788],[0,-2]],[[30090,41883],[-382,396]],[[29477,41797],[-142,128],[-446,-35],[-155,-204]],[[34263,39966],[-106,285],[-178,71]],[[33979,40322],[-57,49]],[[33922,40371],[-342,3],[-507,-183],[-1213,-151],[-132,70],[-528,685]],[[29708,42279],[382,-396]],[[31200,40795],[-198,394],[-558,578],[-351,250],[-421,155],[-195,-375]],[[32901,12714],[325,-216],[516,172],[322,-61]],[[32901,12714],[325,-217],[470,167],[368,-55]],[[33515,19092],[-121,227],[-691,225],[-390,-73]],[[32313,19471],[0,-2]],[[32903,12709],[139,13],[224,462],[24,445],[181,583],[778,954],[374,649],[765,839]],[[32901,12714],[-364,-62],[-234,-557],[27,-319]],[[30694,10936],[178,239],[579,119],[106,132],[301,18],[472,332]],[[30694,10936],[-132,-136],[-403,-86],[-190,-291],[-276,-83],[-321,-328],[-187,-45]],[[29185,9967],[-96,102],[-484,-274],[-630,-141],[-83,156],[-346,-134]],[[35388,16654],[-45,-19],[-591,1051],[-659,622],[-575,769]],[[35388,16654],[-11,-135],[432,-5],[580,1111],[777,80],[242,212]],[[38164,18060],[-588,29],[-168,-172]],[[36071,19579],[-51,-58],[-1186,-186],[-359,-171],[-136,83],[-315,-103],[-129,76],[-377,-143]],[[32313,19471],[-283,117],[-438,-42],[-513,119],[-225,195],[-290,-183]],[[30564,19677],[-152,566],[-131,224],[-132,549]],[[30149,21016],[-231,814],[-355,858]],[[30149,21016],[148,11]],[[30149,21016],[-849,-206],[32,-38]],[[29332,20772],[-517,-73]],[[29576,22643],[-236,-829],[-525,-1115]],[[30297,21027],[792,-50],[311,-166],[476,-52],[124,103]],[[28815,20699],[-45,-218]],[[28815,20699],[-160,-364]],[[28279,19489],[-448,-704],[-434,-451],[-447,-1199]],[[26950,17135],[-48,-407]],[[28655,20335],[-376,-846]],[[28770,20481],[-118,-151],[-373,-841]],[[21724,15996],[-17,534],[-142,1071]],[[21724,15996],[-19,522],[-139,1063]],[[21566,17581],[207,726],[-85,1012],[-175,875],[-430,1374],[-197,316],[-202,924],[336,1085],[166,218],[107,457],[-10,484],[-135,421]],[[21724,15996],[-81,26],[-591,-926],[-525,-344],[-410,-799]],[[21724,15996],[-59,15],[-103,-614],[-7,-1096]],[[22474,14382],[232,-206],[337,-484],[752,-672],[720,-380],[369,169]],[[23774,18861],[-596,38],[-301,-65],[-426,-283],[-229,-32],[-396,-401],[-260,-537]],[[23774,18861],[844,24],[583,266]],[[25201,19151],[950,517],[547,206],[759,211],[413,54],[572,184]],[[28442,20323],[213,12]],[[21555,14301],[-22,-249],[-282,-224],[-424,-548]],[[20827,13280],[-446,-393],[-348,-517],[-61,-273],[-320,-350],[-90,-392],[-214,-285]],[[21555,14301],[256,80],[663,1]],[[19343,11068],[-216,154],[-326,-13],[-550,-555],[-364,-1097],[-176,-212],[27,-316]],[[17738,9029],[-449,-660]],[[17289,8369],[-239,-253],[-336,49],[-111,449]],[[16603,8614],[-494,95],[-274,275]],[[19756,12261],[0,0]],[[23739,35456],[-130,277],[-435,71],[-206,225],[-662,285],[-325,49],[-479,339],[-512,-293]],[[20990,36409],[107,8]],[[21097,36417],[405,286],[479,-339],[325,-49],[439,-219]],[[34050,36115],[302,329],[98,441],[328,512],[844,176],[61,-76]],[[24912,12826],[14,13]],[[24912,12826],[14,13]],[[31147,24892],[179,-534]],[[31326,24358],[75,-204]],[[31401,24154],[-53,-339]],[[31326,24358],[177,31],[427,538],[210,101],[334,554],[491,101],[274,222],[305,605],[32,520]],[[33576,27030],[298,34],[133,369]],[[32811,27190],[-371,-346],[-86,-209],[-300,-11],[-541,203]],[[31513,26827],[-219,-547],[52,-505],[-72,-830],[-127,-53]],[[31147,24892],[-267,-327],[-724,-1039],[-580,-883]],[[32811,27190],[830,178],[48,78]],[[32811,27190],[542,-224],[223,64]],[[32811,27190],[85,199],[-114,396]],[[28054,31437],[-100,-154],[51,-739],[159,-773],[383,-564],[26,-166]],[[28573,29041],[-343,-787],[-20,-343]],[[28573,29041],[163,325],[311,16],[360,997],[126,201]],[[28210,27911],[-132,-810],[-140,-257],[-315,-1012]],[[27623,25832],[-7,-649],[117,-342],[443,91],[149,-481]],[[27472,25827],[114,-29],[69,-864],[238,-122],[289,130],[114,-246],[448,-137]],[[28325,24451],[-129,-344],[28,-313]],[[28224,23794],[62,-963],[422,60],[388,-172],[480,-76]],[[23950,10251],[-98,1158],[-113,421]],[[23739,11830],[620,85],[154,218],[-28,260],[211,125],[188,291]],[[23950,10251],[191,-10],[130,-1007],[-63,-237]],[[26035,36883],[85,-354]],[[26035,36883],[-165,1178],[22,349],[-153,287]],[[25739,38697],[-160,171],[-35,389]],[[26035,36883],[-392,-77]],[[25179,36634],[430,-62]],[[25179,36634],[-404,-374],[-46,-308]],[[24729,35952],[44,-717]],[[24729,35952],[-878,-377],[-112,-119]],[[24729,35952],[227,96]],[[24956,36048],[335,146]],[[25291,36194],[16,5]],[[25307,36199],[359,156]],[[25666,36355],[454,174]],[[24729,35952],[-167,-401],[-314,-229]],[[23739,35456],[-130,278],[-434,71],[-430,291]],[[23739,35456],[-269,-293],[-700,-1274],[-224,-202],[-268,-511],[-219,98],[-356,-197]],[[26120,36529],[704,219],[160,-24]],[[26120,36529],[705,218],[199,-100],[-59,-346]],[[24248,35322],[343,-1612]],[[24248,35322],[-509,134]],[[24591,33710],[266,-868]],[[24591,33710],[119,-275],[631,38],[232,-213]],[[26120,36529],[158,-1090],[497,-1057],[108,-459],[240,-524],[152,-170]],[[27275,33229],[313,-277],[-75,-977]],[[27513,31975],[470,-276],[71,-262]],[[28054,31437],[-1,140],[2358,383],[861,167],[237,202],[116,377]],[[31625,32706],[-310,78],[-134,198],[-605,414],[-7,100]],[[30569,33496],[-219,-362],[-184,-1084],[29,-528],[-149,-564],[-513,-378]],[[28649,34787],[442,-1675],[1478,384]],[[28649,34787],[101,16]],[[28649,34787],[-325,565],[-71,860],[-454,566],[-638,-137],[-196,-340]],[[26984,36724],[-19,-423]],[[26984,36724],[419,144]],[[27403,36868],[213,42]],[[27616,36910],[59,133],[744,7],[250,-56]],[[28669,36994],[155,-32]],[[28824,36962],[1165,-270]],[[29990,36684],[-1,8]],[[29989,36692],[-123,-958],[-267,-715],[-196,-176]],[[29989,36692],[451,174],[214,-184],[356,-66]],[[31010,36616],[94,25],[215,-377]],[[31010,36616],[499,223],[-19,285],[113,407]],[[31319,36264],[0,-5]],[[31319,36264],[31,-339],[322,-471]],[[31672,35454],[44,-661]],[[31716,34793],[154,-717],[312,-725],[460,-334]],[[32642,33017],[5,-95]],[[32642,33017],[5,-95]],[[32642,33017],[-675,-148],[-62,-145],[-280,-18]],[[31625,32706],[13,-120],[715,205]],[[31625,32706],[203,-2012]],[[32641,33097],[-660,-113],[-83,-256],[-316,79]],[[34050,36115],[6,-720],[-480,-1073],[-306,-387],[-141,-402],[-226,-132],[4,-182],[-265,-202]],[[35683,37497],[-208,-346],[18,-550],[-405,-1039],[-752,-1132],[-512,-611],[-919,-419],[-263,-383]],[[31625,32706],[273,22],[83,256],[660,114]],[[34050,36115],[2,11]],[[31513,26827],[-75,1134],[62,1434]],[[24688,11638],[0,0]],[[31500,29395],[328,1061]],[[31828,30456],[0,238]],[[32647,32922],[313,-428],[28,-338]],[[32988,32156],[85,-163],[542,76],[31,-424],[-84,-264],[24,-681]],[[33586,30700],[-38,-401]],[[33548,30299],[46,-690],[-47,-437]],[[33547,29172],[2,0]],[[33547,29172],[44,-624],[-110,-243],[230,-834]],[[33548,30299],[-346,-51],[-346,-437],[20,-451]],[[32876,29360],[272,-503],[124,-425],[40,-606],[377,-48],[22,-307]],[[33689,27446],[318,-13]],[[33689,27446],[22,25]],[[33689,27446],[294,154],[357,52],[515,598],[453,698]],[[28748,34803],[2,0]],[[35302,28886],[-361,-473]],[[28755,41696],[-21,-10]],[[28734,41686],[264,407],[-335,214],[-132,362],[-391,591],[-239,80],[-55,1130],[445,895]],[[29477,41797],[-479,296],[-264,-407]],[[30746,43497],[-195,105],[-455,-325],[-325,-890],[-247,-339],[-47,-251]],[[29477,41797],[231,482]],[[30169,45046],[-27,-544],[-167,-46],[-186,-456],[50,-966],[-131,-755]],[[31212,44845],[-116,-423],[-250,-507],[-100,-418]],[[31435,45610],[-106,-165],[-117,-600]],[[31324,46083],[111,-473]],[[31241,46932],[151,-422],[-68,-427]],[[30704,47153],[266,-90],[104,-199],[167,68]],[[30704,47153],[103,-278],[-514,-195],[-243,-342],[-643,-145]],[[30704,47153],[-517,-707],[-81,-385],[-148,-232],[-197,-54],[-107,-245],[-476,164]],[[31435,45610],[410,62],[125,-150]],[[29407,46193],[49,-631],[192,-30],[105,-323]],[[29178,45694],[-96,40],[-588,-333],[-207,-18]],[[30169,45046],[-416,163]],[[28287,45383],[18,581],[-64,453],[71,95],[30,646],[-39,834],[-154,366],[127,859],[-48,495]],[[28291,45365],[-4,18]],[[26990,46600],[239,-288],[37,-316],[355,-448],[-25,-88]],[[27596,45460],[691,-77]],[[26158,46326],[121,-306],[593,631],[118,-51]],[[36012,43731],[936,68],[630,90]],[[37578,43889],[421,40],[430,756]],[[28287,45383],[-114,-26]],[[28287,45383],[-91,-7]],[[27596,45460],[-123,-122]],[[27506,45411],[90,49]],[[27521,44995],[-15,416]],[[26158,46326],[197,264]],[[26485,46692],[19,146]],[[26355,46590],[130,102]],[[26504,46838],[236,-25]],[[26777,46959],[-37,-146]],[[28228,49712],[-279,21],[-420,408],[-215,353],[-727,941],[-209,775],[-26,355],[-192,702]],[[30934,53137],[14,-684],[122,-1109],[70,-85],[-246,-1161],[67,-202]],[[28228,49712],[87,91],[886,57],[257,-141],[190,85],[521,-96],[326,142],[292,-176],[174,222]],[[30961,49896],[338,109],[925,-51],[188,198]],[[30704,47153],[211,102],[127,345],[490,138]],[[32412,50152],[552,164],[70,190],[439,119],[134,-514]],[[34420,51438],[3,286],[-675,-95],[-3,-111]],[[33745,51518],[3,111],[350,50],[26,-514],[-287,-828],[-240,-33],[10,-193]],[[33187,53788],[34,-553],[303,-169],[132,-458],[89,-1090]],[[33745,51518],[2,112],[351,50],[27,-516],[-288,-828],[-240,-33],[10,-192]],[[34420,51438],[67,-113],[-91,-654],[21,-287],[-810,-273]],[[34420,51438],[82,-131],[420,31],[1770,234],[144,139],[794,79],[-15,241]],[[37615,52031],[-71,341],[-47,1582],[-119,39]],[[37376,53990],[-69,120],[-342,-41]],[[33607,50111],[545,-592],[85,12],[515,-811],[842,-881]],[[31532,47738],[229,126],[395,-101],[207,127]],[[33111,46324],[-50,291],[-299,775],[-215,374],[-184,126]],[[31970,45522],[77,-208],[420,-62],[92,105],[365,-2]],[[32924,45355],[-365,3],[-144,-117]],[[31970,45522],[77,-207],[368,-74]],[[33803,44035],[66,-224],[1821,256],[149,-206]],[[35101,45864],[-172,168],[-283,21],[-828,-155],[-52,471],[-116,-12]],[[35560,44391],[-307,-43],[-152,1516]],[[33111,46324],[-51,-394]],[[32982,45767],[-58,-412]],[[33060,45930],[-78,-163]],[[33068,44722],[-79,-479]],[[32916,44863],[79,-77],[-6,-543]],[[34059,45904],[-256,-7]],[[36012,43731],[-151,177],[-827,640],[-1217,-213],[-1,37]],[[33732,44344],[-120,-39]],[[33612,44305],[-166,-31]],[[33843,42033],[106,-1684],[209,-97],[105,-286]],[[33843,42033],[-30,711]],[[33843,42033],[-30,711]],[[33368,42826],[-15,-424]],[[33352,43437],[16,-611]],[[33138,43768],[26,-206],[199,-146],[286,32]],[[33649,43448],[-297,-11]],[[33649,43448],[164,-704]],[[35727,47472],[225,-290],[1210,263],[1008,78]],[[38170,47523],[174,29]],[[35594,47839],[133,-367]],[[34126,44127],[87,-56]],[[34213,44071],[55,720],[-86,30]],[[34126,44127],[93,-35],[49,698],[-86,31]],[[34182,44821],[87,-29],[-56,-721]],[[34213,44071],[18,-206],[-347,-54],[-52,-319],[-183,-44]],[[33649,43448],[183,44],[-29,543]],[[33649,43448],[183,45],[-29,542]],[[33377,45132],[220,-262]],[[33886,45470],[274,-294],[22,-355]],[[33910,45274],[-24,196]],[[34182,44821],[-99,498]],[[34182,44821],[-22,355],[-250,98]],[[33873,45651],[-70,246]],[[33886,45470],[-83,427]],[[34287,46000],[-228,-96]],[[33274,44136],[-225,-104],[-60,211]],[[33047,44043],[-61,193]],[[33649,43448],[-5,560],[-112,156],[-485,-121]],[[33649,43448],[-4,560],[-85,16]],[[33588,44036],[-28,-12]],[[35841,43872],[241,10],[416,-634],[222,25],[21,-454],[438,-793],[-18,-953]],[[35560,44391],[-233,-34],[-118,161],[-108,1346]],[[35839,43861],[-133,548],[-452,-60],[-153,1515]],[[35101,45864],[-172,167],[-642,-31]],[[35101,45864],[407,128],[-29,462],[160,23],[46,404]],[[35685,46881],[-112,174]],[[37155,41063],[-43,976],[454,45],[31,425],[-53,1366],[34,14]],[[37155,41063],[12,-764],[107,-1]],[[27459,43847],[130,-48],[212,-440],[80,9]],[[27238,43460],[180,326]],[[27220,43457],[23,-19]],[[27220,43457],[-261,61]],[[27238,43460],[5,-22]],[[27238,43460],[-18,-3]],[[35839,43861],[-134,547]],[[35839,43861],[-134,547]],[[35705,44408],[-145,-17]],[[35839,43861],[173,-130]],[[37622,52031],[-7,0]],[[33886,45470],[5,-5]],[[33356,55740],[-344,-62]],[[32991,44240],[-2,3]],[[32986,44236],[3,7]],[[33394,44459],[38,-370],[371,-54]],[[33803,44035],[15,343],[364,443]],[[33816,44372],[138,55],[-153,470],[-317,-40]],[[33803,44035],[13,337]],[[33938,44676],[244,145]],[[33761,44894],[177,-218]],[[33597,44870],[164,24]],[[34213,44071],[0,-5]],[[34213,44066],[1,-2]],[[34213,44066],[18,-198],[244,0],[92,-931],[138,15],[190,-324],[47,-1040],[319,-365]],[[33816,44372],[-84,-28]],[[33484,44857],[-107,275]],[[33007,43984],[40,59]],[[33007,43984],[40,59]],[[33394,44459],[-9,87]],[[33385,44546],[-8,219]],[[33377,44765],[0,367]],[[32924,45355],[-2,-253],[163,60]],[[32924,45355],[-8,-492]],[[32924,45355],[-8,-492]],[[32912,44860],[4,3]],[[32913,44866],[3,-3]],[[32916,44863],[152,-141]],[[32924,45355],[95,19]],[[33019,45374],[245,21]],[[33377,45132],[-292,30]],[[33377,45132],[-73,187]],[[33304,45319],[-40,76]],[[33651,45357],[87,-13]],[[33651,45357],[235,113]],[[33798,45419],[-60,-75]],[[33798,45419],[88,51]],[[34083,45319],[-197,151]],[[33264,45395],[5,10]],[[33264,45395],[44,123]],[[33560,44024],[-286,112]],[[33886,45470],[-13,181]],[[33803,45897],[17,90]],[[33820,45987],[-46,325]],[[33774,46312],[-124,45]],[[33650,46357],[-119,-65]],[[33583,46458],[-164,-75]],[[33531,46292],[-112,91]],[[33650,46357],[-67,101]],[[33803,45897],[-142,5]],[[33803,45897],[-96,-162]],[[33803,45897],[-96,-162]],[[33707,45735],[-101,-74]],[[33707,45735],[-193,-85]],[[33606,45661],[-92,-11]],[[33661,45902],[-7,60]],[[33654,45962],[-46,47]],[[33419,46383],[13,-220]],[[33419,46383],[13,-220]],[[33432,46163],[-20,-207]],[[33432,46163],[-20,-207]],[[33306,46243],[-195,81]],[[33419,46383],[-226,-42],[-14,-209]],[[33419,46383],[-113,-140]],[[33179,46132],[99,-463]],[[33278,45669],[30,-151]],[[32659,38971],[-205,-322],[-792,-2013],[-442,-698],[-384,-66],[-329,-501],[80,-315]],[[32782,27785],[136,116],[22,585],[-64,874]],[[32876,29360],[-21,452],[138,280],[-53,633],[-98,281],[-82,1053],[25,608],[-138,255]],[[33692,27468],[19,3]],[[33711,27471],[-22,-25]],[[34007,27433],[1213,192],[405,-218],[43,-258],[263,-274],[464,-1]],[[35308,28948],[376,907],[184,847],[243,24],[358,458]],[[36787,31265],[-318,-81]],[[36787,31265],[250,616],[-88,1748],[-142,1067],[-415,928],[-415,652],[-147,399],[-80,716],[-67,106]],[[36395,26874],[120,424],[8,434]],[[37339,28635],[-77,-684],[43,-659],[-270,-317],[-640,-101]],[[36787,31265],[298,-294],[239,-1068],[54,-890]],[[37378,29013],[-39,-378]],[[36523,27732],[-83,308],[-475,333],[-657,575]],[[27531,20109],[1110,265],[14,-39]],[[35683,37497],[115,-301],[34,-511],[167,-441],[671,-1057],[271,-1010],[13,-486],[258,-648]],[[37212,33043],[120,-1454],[92,-229],[35,-646],[141,-402],[324,-449],[140,-555],[21,-396]],[[38085,28912],[105,-159],[621,-236],[359,68],[158,-132],[760,-242]],[[38085,28912],[99,-1764],[276,-199],[74,-1397],[118,-253]],[[38622,23247],[-16,300],[145,388],[-45,1015],[-54,349]],[[38622,23247],[79,-1427],[77,-525]],[[38778,21295],[-630,-242],[-154,-188],[-399,-50]],[[37595,20815],[-363,-40],[-190,-213]],[[37042,20562],[-371,-666],[-240,-26]],[[36431,19870],[-141,-220],[-219,-71]],[[27546,9676],[-1271,1452],[-183,264],[-756,802],[-410,645]],[[27546,9676],[-427,694],[-249,526]],[[20117,13953],[443,91],[200,438],[454,525],[506,787],[-14,725],[-140,1062]],[[30907,33856],[-162,258]],[[30907,33856],[-114,818],[-210,376]],[[30587,35056],[207,-382],[113,-818]],[[33962,40052],[-419,-205],[-221,-734],[-663,-142]],[[34263,39966],[18,-245],[1016,-1413],[378,-676],[8,-135]],[[33711,27471],[-14,-29]],[[33698,27442],[13,29]],[[25609,36572],[57,-217]],[[16732,10351],[214,-355],[173,27],[208,-489],[425,-268],[-14,-237]],[[27896,30453],[150,26],[379,-533],[166,22]],[[28633,30094],[346,577],[150,131],[268,512],[532,723]],[[27930,31467],[-433,-481],[-36,-472]],[[28633,30094],[-42,-126]],[[29929,32037],[302,410],[118,687],[334,614],[224,108]],[[30905,33859],[2,-3]],[[30587,35056],[-78,213]],[[30456,35331],[131,-275]],[[30587,35056],[-138,240],[-460,1396]],[[31556,36788],[57,-225]],[[28054,31437],[-124,30]],[[27930,31467],[1,-4]],[[31867,37504],[-104,154],[-160,-127]],[[31603,37531],[-34,177]],[[34872,38893],[-647,369]],[[34872,38893],[101,-435],[331,-275]],[[35304,38183],[0,1]],[[35304,38183],[373,-559],[6,-127]],[[34225,39262],[-65,-85],[41,-1634]],[[34154,36176],[-119,-41]],[[34154,36176],[-119,-41]],[[27896,30453],[-275,-60],[-160,121]],[[30226,31600],[371,319]],[[30597,31919],[0,4]],[[31391,32610],[-405,-603],[-389,-88]],[[31828,30456],[76,-108]],[[31904,30347],[75,-470]],[[24211,35491],[37,-169]],[[24248,35322],[-10,116]],[[27392,37027],[11,-159]],[[36266,12679],[1048,208]],[[22188,27381],[136,-243],[167,33],[138,-352]],[[21148,25473],[-204,158],[-297,812],[-101,639],[-176,387]],[[20139,30441],[-129,-44],[227,-2059],[133,-869]],[[20139,30441],[-116,58]],[[20139,30441],[-116,58]],[[20139,30441],[180,260]],[[20134,30431],[404,570],[-11,1207],[267,453],[66,448]],[[20139,30441],[596,-308]],[[20735,30133],[-596,308]],[[21673,28732],[131,775],[-56,666],[119,984]],[[21867,31157],[-4,-2]],[[21867,31157],[-4,-2]],[[21867,31157],[62,728]],[[21929,31885],[208,-435],[210,-148]],[[22347,31302],[-203,208]],[[21929,31885],[-56,633],[25,435]],[[21898,32953],[0,-1]],[[21898,32952],[-25,-434],[56,-633]],[[20023,30499],[-525,58],[-787,-266]],[[20370,27469],[-6,-5]],[[20370,27469],[-618,-667],[20,-502]],[[20364,27464],[4,13]],[[20861,27368],[74,-792],[-44,-205]],[[20891,26371],[-458,659]],[[20354,27450],[-577,-559]],[[18816,23965],[-496,-28],[-265,-167]],[[21703,33077],[-529,-1113],[-278,-492],[-293,-299],[-284,-472]],[[21703,33077],[195,-125]],[[21898,32952],[-195,125]],[[21703,33077],[195,-124]],[[21703,33077],[-168,262],[-210,827],[-151,324]],[[21703,33077],[-168,261],[-210,828],[-151,324]],[[21703,33077],[-169,261],[-209,828],[-151,324]],[[20860,33109],[158,1014],[156,367]],[[18711,30291],[-635,-199],[-385,177]],[[17458,29383],[-830,-283]],[[15446,27475],[-101,-158]],[[16628,29100],[-133,-298],[-257,-74],[-122,-376],[-431,-691],[-866,-1918]],[[17458,29383],[-325,-851],[-703,-343],[-720,-680],[-256,-556],[-228,-664],[-420,-685]],[[17458,29383],[-703,-495],[-174,-343],[-557,-404],[-456,-744]],[[15568,27397],[-762,-1793]],[[15345,27317],[12,-72],[-882,-1547]],[[14475,25698],[418,107],[-87,-201]],[[14096,25841],[-173,-29],[-94,289]],[[14806,25604],[102,-238],[-129,-895],[3,-609],[-134,-272],[110,-931],[-175,-506],[-219,-850]],[[14364,21303],[-97,-314],[-45,-737]],[[14806,25604],[101,-238],[-129,-895],[3,-609],[-133,-272],[110,-931],[-175,-506],[-316,-1164],[-45,-737]],[[14806,25604],[81,-170],[-328,-1376],[-137,-1061],[-129,-1324],[-71,-1421]],[[14806,25604],[82,-170],[-328,-1376],[-138,-1061],[-129,-1324],[-71,-1421]],[[14806,25604],[13,139]],[[14741,25474],[65,130]],[[14806,25604],[-322,-468]],[[14475,25698],[-361,-635]],[[14114,25063],[-151,-237]],[[14114,25063],[-5,169]],[[14102,24847],[-139,-21]],[[14102,24847],[382,289]],[[13963,24826],[-177,-850],[66,-100]],[[13852,23876],[-67,100],[-122,-759]],[[14357,23067],[-33,-712],[-144,-471],[69,-642],[-72,-583],[45,-407]],[[15150,13048],[-87,981]],[[14594,11065],[-93,713],[165,693]],[[14997,14454],[159,1461],[-147,284],[-28,517],[-252,556],[9,789],[-152,644],[-152,308],[39,481],[-110,224]],[[14363,19718],[6,64]],[[14854,14106],[-314,-1275],[126,-360]],[[14854,14106],[-175,138]],[[14997,14454],[-254,-51],[-64,-159]],[[15835,8984],[-349,216],[-372,-121],[-109,99]],[[18711,30291],[756,243],[556,-35]],[[15446,27475],[122,-78]],[[15150,13048],[-42,-777],[221,-1645]],[[15329,10626],[2,-2]],[[15329,10624],[0,2]],[[15329,10624],[2,0]],[[15331,10624],[-184,-13],[-13,289],[-498,-155],[-42,320]],[[15331,10624],[573,-30],[355,-295],[473,52]],[[15329,10624],[73,-519],[-88,-283],[28,-589]],[[15835,8984],[-493,249]],[[20058,46145],[-143,519],[-388,870],[13,385],[-304,567],[-268,332],[-575,22],[-288,445],[-163,120]],[[20058,46145],[-211,180],[-198,407],[-276,341],[-217,-23],[-678,-541],[-100,0],[-95,593],[-324,-117],[-126,523],[-381,619],[-120,855],[-529,586],[-96,363],[-161,86],[-196,806]],[[7339,5503],[39,-150]],[[7339,5503],[39,-150]],[[7866,5401],[-221,690],[-108,7]],[[7155,0],[-30,158],[247,965]],[[7155,0],[-31,158],[248,965]],[[37408,17917],[0,-2]],[[33515,19092],[3,-15]],[[15005,9178],[-10,-280]],[[15005,9178],[-10,-280]],[[15005,9178],[109,-99],[228,154]],[[15028,9174],[-23,4]],[[20058,46145],[131,748],[8,501],[-226,702],[-149,632],[-16,631],[-140,305],[-101,554],[-149,201],[232,671],[102,725],[-229,664],[-3,334],[338,259],[118,472],[261,306]],[[20058,46145],[54,-309],[-133,-472],[9,-709],[-484,96]],[[19504,44751],[-680,-180]],[[7339,5503],[-225,1283]],[[7339,5503],[-225,1283]],[[7470,6558],[-130,389],[-226,-161]],[[7537,6098],[-223,-91]],[[7537,6098],[-223,-91]],[[32647,32922],[-294,-131]],[[27282,33202],[-7,27]],[[11136,14764],[194,-41],[327,-351]],[[10927,14786],[-122,-190]],[[10927,14786],[209,-22]],[[9012,14866],[155,69]],[[9580,14744],[232,-18],[41,413]],[[33601,49828],[-9,12]],[[33613,50125],[-6,-14]],[[33456,45836],[-13,-292]],[[33477,45765],[37,-115]],[[36012,43731],[3,2]],[[36012,43731],[3,2]],[[36012,43731],[-14,-8]],[[36012,43731],[-14,-8]],[[35796,40958],[-64,283],[-471,-18]],[[35839,43861],[-11,-4]],[[35839,43861],[2,11]],[[33949,40325],[30,-3]],[[33456,45836],[21,-71]],[[33442,45853],[14,-17]],[[33442,45853],[14,-17]],[[33514,45650],[-71,-106]],[[33443,45544],[-46,-47]],[[33397,45497],[-59,-91]],[[33608,46009],[-103,-9]],[[28172,45361],[1,-4]],[[14222,20252],[-551,-84],[-871,-505]],[[12800,19663],[-79,-873]],[[12721,18790],[-161,-442],[-50,-616]],[[14222,20252],[147,-470]],[[14222,20252],[147,-470]],[[12800,19663],[-125,516]],[[13892,17736],[-261,-204],[-109,-518],[-305,-555],[-323,-460],[-247,-143],[-162,-350],[-57,-858]],[[33805,48651],[-285,-61]],[[33601,49828],[-64,-644]],[[33601,49828],[209,42],[54,-648],[-158,30]],[[33601,49828],[209,43],[54,-649],[-158,30],[5,-302]],[[33711,48950],[94,-299]],[[33688,48779],[-168,-189]],[[33601,49828],[-64,-644]],[[37378,53993],[-2,0]],[[37378,53993],[-2,-3]],[[33745,51518],[-62,-227]],[[33711,48950],[-23,-171]],[[33242,42160],[-10,-119]],[[33242,42160],[52,381]],[[33649,43448],[32,-915]],[[33949,40325],[13,-273]],[[33949,40325],[-27,46]],[[33949,40325],[-4,387]],[[33843,42033],[102,-1321]],[[33417,42139],[266,2],[-34,-890],[-127,-270]],[[33843,42033],[-174,-9],[-20,-773],[-127,-270]],[[33314,41981],[-78,-341],[78,-614],[208,-45]],[[33239,41720],[75,-694],[208,-45]],[[33613,42137],[230,-104]],[[33681,42533],[162,-500]],[[33417,42139],[196,-2]],[[33417,42139],[-103,-158]],[[33417,42139],[-16,156]],[[33401,42295],[-48,107]],[[33412,45956],[30,-103]],[[33412,45956],[30,-103]],[[33338,45406],[-27,0]],[[33311,45406],[-42,-1]],[[33505,46000],[-93,-44]],[[33232,42041],[82,-60]],[[30642,47470],[62,-317]],[[29753,45209],[-3,-2]],[[6630,7727],[-192,-109]],[[6630,7727],[-192,-109]],[[6630,7727],[51,-277]],[[6630,7727],[51,-277]],[[6452,7293],[-57,-108]],[[9570,2865],[-492,312],[-372,531],[-138,490],[-510,-182],[-326,301],[-192,731],[-162,305]],[[9570,2865],[-492,312],[-372,531],[-138,490],[-510,-182],[-326,301],[-192,731],[-162,305]],[[9570,2865],[-492,313],[-371,532],[-139,489],[-510,-182],[-325,301],[-192,731],[-163,304]],[[8501,4172],[-443,-154],[-325,300],[-190,831]],[[9570,2865],[-184,85]],[[9386,2950],[-308,229],[-371,531],[-42,358],[-164,104]],[[7543,5149],[-165,204]],[[7560,4963],[4,145]],[[7564,5108],[-21,41]],[[7560,4963],[151,-909],[-68,-370],[124,-774]],[[7727,4303],[5,2]],[[7732,4305],[-41,-836],[80,-554]],[[7771,2915],[-4,-5]],[[7544,4956],[167,-902],[-68,-370],[124,-774]],[[7560,4963],[-16,-7]],[[6880,6358],[71,174]],[[6951,6532],[163,254]],[[6951,6532],[58,59]],[[7114,6786],[-144,-434]],[[6970,6352],[-21,-38]],[[7009,6591],[-60,-277]],[[7105,6789],[-156,-475]],[[7114,6786],[-160,-553]],[[6954,6233],[-5,81]],[[7105,6789],[9,-3]],[[7105,6789],[9,-3]],[[7105,6789],[-127,204]],[[7141,7169],[-36,-380]],[[7141,7169],[-4,121]],[[6978,6993],[-36,251]],[[7537,6098],[-67,460]],[[6880,6358],[69,-44]],[[6949,6314],[74,-154]],[[10352,10575],[-245,-31],[-285,-509]],[[10352,10575],[-91,45],[-459,-236],[-212,100],[-270,574]],[[10545,11225],[53,-243],[274,-534]],[[10453,11650],[92,-425]],[[11001,10192],[160,-203]],[[10872,10448],[129,-256]],[[9320,11058],[-55,344]],[[10453,11650],[-192,231],[-617,-74],[-379,-405]],[[10871,12100],[123,-62]],[[9690,2860],[-120,5]],[[9690,2860],[-120,5]],[[10352,10575],[30,128],[638,241],[396,542],[-29,188],[199,361],[179,57],[-109,678],[140,686],[133,317],[229,201],[270,674]],[[12428,14648],[41,-178],[520,-68],[284,-387],[423,-12]],[[12428,14648],[9,-59],[-611,-271],[-169,54]],[[13696,14003],[59,-48],[833,171],[91,118]],[[6923,7634],[127,111],[474,-105],[144,210]],[[7668,7850],[326,415],[385,-162],[381,566],[131,-15]],[[8891,8654],[457,473],[267,145],[297,-255],[256,-598],[15,-537]],[[4169,15741],[55,22],[338,-565]],[[4562,15198],[-4,-6]],[[4562,15198],[529,-694]],[[8395,14386],[150,-51],[213,281],[439,51],[1086,-321]],[[17942,49405],[-157,279],[-325,-93],[-58,538]],[[10336,8670],[-153,-788]],[[21074,38117],[-191,-892],[107,-816]],[[21074,38117],[-154,-658]],[[20920,37459],[-25,-94]],[[7519,7397],[110,-471]],[[13613,13092],[50,-82]],[[13613,13092],[-66,236]],[[23873,7543],[163,-47]],[[23873,7543],[-68,-22]],[[23805,7521],[179,-1701],[-270,-185],[-83,-267],[112,-1101],[-71,-26],[66,-599],[-118,-94]],[[23625,8697],[-72,-322],[110,-758],[142,-96]],[[28216,49619],[12,93]],[[16461,52062],[-56,43]],[[16363,52031],[-100,-105]],[[16310,51951],[-77,156]],[[16257,51983],[-24,124]],[[16258,51969],[0,0]],[[16258,51969],[-1,14]],[[16257,51983],[0,0]],[[26902,16728],[-36,-230],[-278,-426],[-243,-688],[-93,-428],[-379,-643],[-324,-450],[-219,-528],[-218,-321]],[[25112,13014],[-228,-205]],[[5532,8954],[17,4]],[[5546,8963],[25,119]],[[5549,8964],[0,-6]],[[5493,6445],[0,2]],[[5493,6447],[174,215],[471,4]],[[6261,6722],[0,-1]],[[6358,6795],[-97,-73]],[[6358,6795],[1,-2]],[[21059,37258],[-1,-52]],[[21059,37258],[17,119]],[[21039,37489],[54,-210]],[[21076,37377],[-34,110]],[[21035,37630],[-53,-134]],[[21035,37630],[74,243]],[[21122,37878],[-76,-146]],[[21109,37873],[13,3]],[[21159,36855],[-28,-20]],[[21159,36855],[-2,-222]],[[21058,35968],[75,-171]],[[20990,36409],[68,-441]],[[21092,38143],[0,1]],[[21063,38252],[29,-108]],[[21041,38335],[53,-207]],[[21589,34526],[48,8]],[[21589,34526],[0,-3]],[[21589,34523],[45,354]],[[21589,34523],[-415,-33]],[[21174,34490],[-208,-268]],[[20947,34241],[123,4]],[[20947,34241],[19,-19]],[[21081,34913],[93,-423]],[[21072,35244],[102,-754]],[[21164,34558],[-87,442],[56,797]],[[21057,34929],[-154,-89]],[[21081,34913],[-133,-61]],[[21051,34471],[-1,1]],[[21014,38410],[48,-154]],[[21093,37279],[-31,-20]],[[21103,37047],[37,-58]],[[21140,36989],[10,-65]],[[9035,14333],[9,-52]],[[9044,14281],[-334,-157]],[[14264,26682],[30,16]],[[6808,8574],[-28,-254]],[[4731,7708],[-231,-60],[-312,-338],[-68,61]],[[4120,7371],[68,-60],[339,343]],[[4120,7371],[68,-61],[312,337],[231,61]],[[21511,34910],[-14,41]],[[21505,34878],[1,-26]],[[21506,34879],[0,-27]],[[21638,34536],[39,-269]],[[11972,5095],[0,0]],[[18062,48088],[0,1]],[[18062,48088],[113,51],[205,-270],[196,95]],[[6065,8308],[-300,567],[-372,122]],[[21197,37275],[203,81]],[[21400,37356],[0,0]],[[21400,37356],[144,321]],[[21293,37306],[-96,-31]],[[16638,51929],[-257,-9]],[[16623,51941],[25,-17]],[[16623,51941],[2,2]],[[16530,52009],[93,-68]],[[16530,52009],[-16,-3]],[[34058,36121],[-6,5]],[[34058,36121],[-6,5]],[[34058,36121],[-6,5]],[[33583,27043],[-7,-13]],[[33576,27030],[7,13]],[[24696,35188],[-2,12]],[[33689,27456],[0,-10]],[[32645,33015],[-3,2]],[[23744,35459],[-5,-3]],[[26973,36290],[-8,11]],[[32588,32279],[-29,-228]],[[32592,32260],[-4,19]],[[31906,37518],[-39,-14]],[[31965,37489],[-98,15]],[[31347,36362],[-28,-98]],[[31762,36032],[-5,-18]],[[31559,36806],[-3,-18]],[[33692,27468],[0,0]],[[33698,27444],[0,-2]],[[33697,27444],[0,-2]],[[31775,37324],[92,180]],[[31341,36591],[-22,-327]],[[12545,7124],[-40,2]],[[12505,7126],[40,-2]],[[12505,7126],[40,-2]],[[12505,7126],[40,-2]],[[12513,7113],[-36,-43]],[[12513,7113],[-36,-43]],[[12513,7113],[-36,-43]],[[12513,7113],[-36,-43]],[[12513,7113],[-36,-43]],[[12513,7113],[-36,-43]],[[12505,7126],[40,-2]],[[11674,14610],[33,-111]],[[6577,10601],[0,0]],[[8286,14357],[-10,-84]],[[8529,14104],[-76,181]],[[8179,14340],[18,-31]],[[8236,13986],[-1,-5]],[[6156,12057],[0,-8]],[[6156,12057],[0,-8]],[[6156,12057],[0,-8]],[[6061,12018],[-2,-1]],[[6061,12018],[-2,-1]],[[5377,9419],[-3,-4]],[[5377,9419],[-3,-4]],[[5377,9419],[-3,-4]],[[13591,13870],[-2,-4]],[[8715,14302],[28,19]],[[9155,14137],[8,-113]],[[9188,14024],[-25,0]],[[9210,13917],[-47,107]],[[4936,11172],[-1,7]],[[4936,11172],[-1,7]],[[13609,13187],[4,-95]],[[10022,9816],[-32,9]],[[9390,2947],[-4,3]],[[9390,2947],[-4,3]],[[15702,4240],[-19,15]],[[15683,4255],[19,-15]],[[15702,4240],[-19,15]],[[15702,4240],[-19,15]],[[15702,4240],[-19,15]],[[15702,4240],[-19,15]],[[6099,10115],[11,-5]],[[6099,10115],[11,-5]],[[5818,10105],[0,-8]],[[5818,10105],[0,-8]],[[11503,6563],[-22,27]],[[11481,6590],[22,-27]],[[11481,6590],[22,-27]],[[11481,6590],[22,-27]],[[11503,6563],[-22,27]],[[11481,6590],[22,-27]],[[11095,12510],[-1,-2]],[[4922,11208],[3,-6]],[[4708,7695],[-1,3]],[[9187,14471],[-9,-26]],[[9040,14303],[-4,18]],[[33746,51528],[-1,-10]],[[33746,51528],[-1,-10]],[[33746,51528],[-1,-10]],[[21975,45335],[2,-15]],[[21975,45335],[2,-15]],[[21975,45335],[2,-15]],[[21975,45335],[2,-15]],[[28733,41721],[1,-35]],[[28733,41721],[1,-35]],[[28733,41721],[1,-35]],[[33649,43443],[0,5]],[[6310,13816],[-29,-30]],[[6310,13816],[-29,-30]],[[6310,13816],[-29,-30]],[[6310,13816],[-29,-30]],[[21963,44509],[-12,-20]],[[21963,44509],[-12,-20]],[[21963,44509],[-12,-20]],[[10837,14570],[-32,26]],[[10837,14570],[-32,26]],[[10837,14570],[-32,26]],[[10837,14570],[-32,26]],[[10805,14596],[32,-26]],[[10837,14570],[-32,26]],[[13296,12919],[-43,-11]],[[33514,40983],[8,-2]],[[33514,40983],[8,-2]],[[10729,15092],[2,0]],[[34127,44123],[-1,4]],[[34127,44123],[-1,4]],[[34127,44123],[-1,4]],[[10641,15014],[-3,1]],[[14312,13001],[15,31]],[[4652,10903],[2,-1]],[[4652,10903],[2,-1]],[[4652,10903],[2,-1]],[[4652,10903],[2,-1]],[[20643,42390],[-4,-1]],[[20643,42390],[-4,-1]],[[20643,42390],[-4,-1]],[[35841,43848],[-2,13]],[[35841,43848],[-2,13]],[[33592,49844],[0,-4]],[[33592,49844],[0,-4]],[[33592,49844],[0,-4]],[[4245,27033],[-3,-1]],[[4245,27035],[-3,-3]],[[25512,42542],[-6,0]],[[25512,42542],[-6,0]],[[4659,10884],[-2,2]],[[8514,14750],[-15,5]],[[29480,41774],[-3,23]],[[29477,41797],[3,-23]],[[29480,41774],[0,24]],[[33892,45463],[-1,2]],[[33588,44038],[0,-2]],[[33588,44038],[0,-2]],[[13853,23881],[-1,-5]],[[6573,8090],[1,-2]],[[35343,41113],[-82,110]],[[35828,43856],[0,1]],[[9533,15566],[-77,-154]],[[10167,14645],[-1,3]],[[10165,14644],[1,4]],[[15345,27314],[0,3]],[[17287,8371],[2,-2]],[[9445,14844],[-24,-36]],[[35649,47026],[-76,29]],[[35798,40960],[-2,-2]],[[29553,22692],[10,-4]],[[6747,18243],[-13,-19]],[[6747,18243],[-13,-19]],[[6747,18243],[-13,-19]],[[33613,50128],[0,-3]],[[8585,15110],[-109,-107]],[[8506,14977],[-30,26]],[[8513,15088],[-37,-85]],[[8475,15062],[1,-59]],[[18219,46686],[-34,64]],[[18171,46800],[14,-50]],[[9150,14883],[19,50]],[[9158,14935],[11,-2]],[[36920,41112],[13,-15]],[[14374,19782],[-5,0]],[[14374,19782],[-5,0]],[[23964,7556],[-91,-13]],[[22491,43252],[4,0]],[[32903,12712],[-2,2]],[[36506,40872],[2,3]],[[28228,49624],[-12,-5]],[[15445,27477],[1,-2]],[[15744,9024],[2,3]],[[36963,54065],[2,4]],[[37251,54006],[125,-13]],[[35598,47840],[-4,-1]],[[35598,47840],[-4,-1]],[[33933,44686],[0,-3]],[[33933,44686],[0,-3]],[[21567,17574],[-1,7]],[[26987,17141],[-37,-6]],[[38342,47556],[2,-4]],[[38342,47556],[2,-4]],[[4239,27036],[3,-4]],[[32911,44859],[1,1]],[[32910,44866],[3,0]],[[28195,45376],[1,0]],[[8474,15267],[-1,5]],[[14692,11140],[20,2]],[[9354,14763],[67,45]],[[9235,14892],[-66,41]],[[12817,18806],[-96,-16]],[[9303,9099],[-24,-17]],[[5187,17057],[-2,-10]],[[5185,17047],[2,10]],[[5153,16924],[34,133]],[[32289,32257],[-6,4]],[[11986,15162],[3,-13]],[[3744,27136],[-2,0]],[[9000,14878],[12,-12]],[[37161,41073],[25,81]],[[38159,47515],[11,8]],[[25194,12852],[-5,2]],[[5560,8963],[-14,0]],[[7636,14510],[6,47]],[[7636,14510],[6,47]],[[7636,14510],[6,47]],[[7636,14510],[6,47]],[[5549,8958],[11,5]],[[5532,8954],[28,9]],[[19255,43258],[-5,30]],[[19255,43258],[-5,30]],[[7372,2931],[-4,-5]],[[13853,23881],[-1,-5]],[[6573,8090],[1,-2]],[[15835,8984],[6,1]],[[15835,8984],[6,1]],[[35828,43856],[0,1]],[[33601,49828],[-8,-6]],[[33593,49822],[8,6]],[[33613,50128],[0,-3]],[[33613,50128],[0,-3]],[[12513,7113],[32,11]],[[12513,7113],[32,11]],[[12513,7113],[32,11]],[[12513,7113],[32,11]],[[12513,7113],[32,11]],[[12513,7113],[32,11]],[[26965,36301],[8,-11]],[[26965,36301],[8,-11]],[[26973,36290],[-8,11]],[[33649,43443],[0,5]],[[33649,43443],[0,5]],[[32645,33015],[-3,2]],[[32645,33015],[-3,2]],[[32645,33015],[-3,2]],[[32645,33015],[-3,2]],[[10174,7870],[9,12]],[[10174,7870],[9,12]],[[10174,7870],[9,12]],[[10174,7870],[9,12]],[[10174,7870],[9,12]],[[11117,6598],[362,-27]],[[23744,35459],[-5,-3]],[[23744,35459],[-5,-3]],[[10729,15092],[2,0]],[[10729,15092],[2,0]],[[4708,7695],[-1,3]],[[4708,7695],[-1,3]],[[10641,15014],[-3,1]],[[10641,15014],[-3,1]],[[10641,15014],[-3,1]],[[14222,20252],[-5,14]],[[17746,9027],[-8,2]],[[17746,9027],[-8,2]],[[17746,9027],[-8,2]],[[18639,7543],[6,67]],[[18645,7610],[-6,-67]],[[4658,10880],[-1,6]],[[20694,8473],[-9,-6]],[[20685,8467],[9,6]],[[33892,45463],[-1,2]],[[33892,45463],[-1,2]],[[13892,17736],[256,93],[-10,220],[223,531],[401,248]],[[14222,20252],[169,-305],[82,-452],[-39,-482],[75,-221],[253,36]],[[31970,45522],[-1,-6]],[[17287,8371],[2,-2]],[[29553,22692],[10,-4]],[[32910,44866],[3,0]],[[4255,10790],[7,-2]],[[4262,10788],[-7,2]],[[15746,28107],[102,211]],[[15763,27950],[-23,-27]],[[15833,28099],[38,54]],[[15836,28006],[35,147]],[[15700,28030],[40,-107]],[[15778,28044],[-38,-121]],[[20309,30772],[10,-71]],[[20335,30635],[-16,66]],[[34124,40035],[139,-69]],[[16263,51926],[-5,43]],[[20885,37093],[-1,0]],[[20924,36872],[-35,306]],[[20895,37365],[40,120]],[[20895,37365],[36,119]],[[3108,13255],[37,-172]],[[29761,20048],[-22,-138]],[[19348,11070],[-5,-2]],[[4657,14168],[-269,24]],[[28291,45365],[-119,-4]],[[3145,13083],[4,-16]],[[16434,52172],[2,-18]],[[16332,52353],[102,-181]],[[16386,52426],[-54,-73]],[[16332,52353],[-3,34]],[[16332,52353],[-3,34]],[[16334,51676],[2,-15]],[[17397,50007],[5,122]],[[19662,51057],[94,734],[-343,893]],[[19413,52684],[0,1]],[[18378,51092],[142,35]],[[18520,51127],[17,-11]],[[18378,51092],[159,24]],[[16337,52112],[-1,5]],[[21060,36654],[1,98]],[[21034,36685],[4,-66]],[[21038,36619],[-9,-34]],[[21038,36619],[15,5]],[[20985,37498],[-3,-2]],[[21725,39967],[-68,-32]],[[7462,1729],[24,50]],[[7483,1664],[50,115]],[[10352,10575],[-50,717]],[[10302,11292],[-1,0]],[[10352,10575],[-51,-13]],[[10352,10575],[-51,-13]],[[10301,10562],[51,13]],[[10352,10575],[103,-1096]],[[10455,9479],[135,60]],[[10455,9479],[38,-270],[-110,-295]],[[10453,11650],[-188,-178]],[[10265,11472],[188,178]],[[10453,11650],[-174,-158]],[[10302,11292],[-23,200]],[[10279,11492],[-14,-20]],[[10453,11650],[292,282]],[[11001,10192],[-5,30]],[[10453,11650],[219,61]],[[10672,11711],[92,-39]],[[10745,11932],[126,168]],[[10994,12038],[-102,-491]],[[10745,11932],[25,-261]],[[10764,11672],[13,-4]],[[10777,11668],[115,-121]],[[11657,14372],[47,123]],[[11704,14495],[3,4]],[[11703,14497],[286,652]],[[11704,14495],[-1,2]],[[9579,14747],[1,-3]],[[8715,14302],[114,-138],[207,157]],[[9036,14321],[142,124]],[[8715,14302],[-7,-5]],[[8715,14302],[-44,-18]],[[8671,14284],[-218,1]],[[9079,13660],[84,364]],[[10183,7882],[3,1]],[[10186,7883],[100,59],[160,-305],[725,-666],[-54,-373]],[[10186,7883],[101,61],[159,-306],[726,-667],[-55,-373]],[[10336,8670],[4,-8]],[[10383,8914],[-47,-244]],[[10704,9109],[-321,-195]],[[11373,9458],[-140,-146],[-466,-179]],[[10767,9133],[-63,-24]],[[10767,9133],[-15,118]],[[11613,9830],[103,253]],[[11716,10083],[-9,-3]],[[11716,10083],[-2,12]],[[11714,10095],[-6,-2]],[[11714,10095],[-4,19]],[[11710,10114],[-1,14]],[[11709,10128],[1,2]],[[11709,10128],[-168,145]],[[11541,10273],[-171,-196]],[[11370,10077],[34,-92]],[[11370,10077],[-209,-88]],[[8395,14386],[-123,-170]],[[8272,14216],[4,57]],[[8197,14309],[256,-24]],[[8272,14216],[-37,-235]],[[15683,4255],[41,-84]],[[11688,14686],[19,-187]],[[10054,10151],[-13,-9]],[[14222,20252],[-5,14]],[[14222,20252],[-5,14]],[[14222,20252],[-5,14]],[[14222,20252],[-5,14]],[[11613,9830],[-9,-191],[-231,-181]],[[11156,9987],[-3,1]],[[11161,9989],[-5,-2]],[[21059,36841],[-3,-1]],[[20556,38796],[-35,-36]],[[20557,38791],[-36,-31]],[[4708,13924],[3,0]],[[32447,41306],[-11,-225]],[[4708,13924],[2,-2]],[[3088,13072],[0,2]],[[3088,13072],[0,2]],[[3396,18924],[29,7]],[[3088,13074],[57,9]],[[25242,32318],[189,-127]],[[6424,5566],[-6,-88]],[[13663,13010],[-781,-1],[-459,-204],[7,-83]],[[13663,23217],[694,-150]],[[14357,23067],[65,-59]],[[13253,12908],[410,102]],[[20398,54010],[-98,51],[-316,-490],[-682,-621],[-192,192],[-629,237],[-197,234],[-369,119],[-242,-70],[-792,-557],[-443,-435],[-297,-107],[-31,-226],[-253,-76],[-508,135],[-279,-93],[-529,630],[-354,190],[-518,608]],[[23620,3548],[-2,0]],[[2006,22865],[10,40]],[[9580,9272],[242,80],[561,-438]],[[27418,43786],[41,61]],[[7105,6789],[-127,204]],[[7514,14397],[-17,28]],[[7514,14397],[-17,29]],[[7514,14397],[1,-9]],[[7514,14397],[1,-9]],[[7515,14388],[0,-3]],[[7515,14388],[0,-3]],[[7515,14388],[1,0]],[[7515,14388],[1,0]],[[7642,14557],[157,-58]],[[9226,14064],[-64,-26]],[[9190,14108],[-29,-70]],[[9161,14037],[-28,104]],[[9133,14141],[-1,9]],[[10690,9257],[14,-148]],[[11834,5216],[1,3]],[[33706,49252],[5,-302]],[[21589,34526],[2,-3]],[[21591,34523],[47,13]],[[21058,37206],[1,-3]],[[21534,37690],[0,0]],[[21544,37677],[-10,13]],[[33683,49361],[23,-109]],[[33706,49252],[-23,109]],[[16363,52031],[-53,-80]],[[14316,58616],[77,-121]],[[14461,59387],[31,-72]],[[14462,59365],[30,-50]],[[14492,59315],[1,-171]],[[14461,59387],[1,-22]],[[14493,59144],[68,-47]],[[41313,68998],[-1009,-122]],[[39950,69876],[6,295],[147,156],[-16,689],[99,-30]],[[40203,70709],[101,-1833]],[[40203,70709],[-17,277]],[[16240,68581],[-148,100]],[[40033,74719],[-37,-715]],[[15704,70851],[-58,-211],[144,-1032],[274,-667],[28,-260]],[[17897,70440],[-226,371]],[[38415,70635],[-178,26]],[[48768,70983],[206,992]],[[38662,63647],[0,7]],[[53893,72171],[-184,-14]],[[46315,75152],[156,-144],[-50,-463],[296,153],[9,-386]],[[45240,72985],[385,453]],[[29565,62182],[-26,129]],[[12994,56272],[43,-169],[429,-532],[145,10]],[[13611,55573],[-334,-129]],[[12994,56272],[72,-205],[402,-493],[143,7]],[[37549,76472],[3,-1]],[[47781,74717],[61,-61]],[[12706,55325],[-135,175],[-140,463],[-210,143],[178,325],[-163,326]],[[12233,56501],[129,-385]],[[14209,58968],[-36,433],[157,278]],[[14330,59679],[7,-155],[496,-296],[394,-58]],[[51941,72879],[-7,-2]],[[12989,56243],[83,-596],[-135,-222]],[[5375,59039],[-96,150],[-328,-111],[-251,136],[-41,189]],[[46028,72784],[-303,-698]],[[288,39082],[-8,35]],[[2451,47359],[-36,-15]],[[5719,61686],[128,-198]],[[36955,77124],[-5,9]],[[12994,56272],[-5,-29]],[[14123,53173],[-622,733]],[[911,43229],[289,-215],[346,-89]],[[4139,50035],[104,-664]],[[53914,84357],[-46,3]],[[40314,75312],[-30,-264]],[[54298,85190],[39,61]],[[10080,67700],[34,289]],[[46146,77312],[186,349],[409,-63],[172,380],[278,-257],[150,178],[498,-385],[54,57]],[[1698,36677],[567,-3244]],[[2265,33433],[6,-16]],[[26229,57046],[-60,786]],[[17912,61928],[-120,-1321],[96,-780],[327,-439]],[[49243,70781],[-6,53]],[[2820,40362],[5,-4]],[[2825,40358],[163,82]],[[3160,40943],[-8,-6]],[[51637,76083],[-125,3]],[[7888,59486],[-231,-36]],[[53710,84674],[-7,-314],[165,0]],[[44608,98596],[-71,186]],[[38237,70661],[178,-26]],[[12994,56272],[24,37]],[[36211,72575],[2,26]],[[16067,67050],[15,7]],[[2113,55403],[-37,-376],[-501,-1342]],[[6522,62615],[-17,185],[202,317],[73,788]],[[38535,60991],[-4,-2]],[[13362,54012],[-10,-6]],[[13900,62615],[-738,-1173],[-551,-1461]],[[7216,61161],[13,1]],[[19848,73469],[-126,-179],[-302,-76],[-29,220]],[[16082,67057],[-75,-7]],[[4151,44830],[-972,-136]],[[13131,55347],[-73,-219]],[[46321,75960],[120,-144]],[[17206,66893],[-32,216]],[[46024,72784],[4,0]],[[39844,63344],[658,35]],[[5377,59111],[-2,-72]],[[8041,61955],[483,313],[481,141]],[[49269,70761],[-26,20]],[[54337,85251],[-83,-181]],[[13067,55336],[83,223]],[[39800,73373],[269,44],[92,915],[-95,94]],[[18211,67333],[250,59]],[[5518,60873],[-50,406]],[[10988,67791],[47,-663],[-56,-724],[-102,-346]],[[30205,59286],[115,8],[771,-940],[205,-7]],[[13669,53731],[388,-493]],[[14057,53238],[130,-141]],[[39083,63355],[-1,22]],[[559,45242],[81,223]],[[5584,47863],[-148,191]],[[5992,49175],[-137,21]],[[37306,63567],[155,-239],[764,2],[94,235]],[[37480,65600],[111,113],[360,752],[16,189]],[[40421,74721],[3,-6]],[[40424,74715],[367,-100],[1196,-1066],[344,-248],[113,-206],[245,-81]],[[42689,73014],[350,-178],[94,-154],[1284,36],[281,-126]],[[2449,40930],[44,3]],[[53710,84674],[-8,-322]],[[9005,62409],[-481,-142],[-602,-421],[-313,-352]],[[17206,66890],[57,-388]],[[1108,45906],[-6,-10]],[[48000,79238],[8,-3]],[[1557,41284],[-125,-97],[-179,243],[-431,150]],[[43379,78823],[567,3],[281,-134],[440,611],[364,92],[170,633],[283,451],[7,241],[275,-55],[145,243],[190,-60],[143,267],[159,-207]],[[5436,48054],[183,-138]],[[13061,34924],[-116,85],[-1298,284]],[[8199,66683],[-409,-456],[-72,-251],[-151,41]],[[8199,66683],[-92,560],[412,168],[249,-447],[211,205],[-9,347],[275,246],[253,-487],[290,32],[292,393]],[[5168,56867],[1,-6]],[[5719,61686],[-33,151]],[[21528,73606],[143,-28],[183,-405],[43,-596]],[[36297,72580],[-84,-39]],[[50820,84676],[4,-117],[-778,-2118]],[[46495,93410],[-384,-40],[-214,911],[-218,238],[-9,665],[-94,716],[79,283],[-209,710],[-277,2303]],[[889,44977],[213,919]],[[47649,86270],[55,-94],[150,-944]],[[2327,42908],[-3,0]],[[6883,61401],[229,44]],[[2271,33417],[643,-1045],[197,-194],[373,-104],[533,-305]],[[6358,61164],[19,258]],[[3096,54291],[270,125]],[[16999,66678],[-116,390],[291,41]],[[49882,89726],[-396,-890],[-345,441],[-437,260],[-266,327],[-128,344],[-261,401],[-617,1215],[-329,425],[-373,727],[319,85]],[[3798,42548],[-1,0]],[[1569,37330],[3,-8]],[[49871,77895],[-143,18],[28,-295]],[[7657,59450],[185,12]],[[7842,59462],[12,-42]],[[7854,59420],[150,-50]],[[8004,59370],[328,-322],[186,-15],[480,-325],[699,-645],[401,-563],[1034,-667],[594,-159],[448,27]],[[12174,56701],[187,-238],[316,-138]],[[12677,56325],[323,-140]],[[51399,83395],[-402,-91]],[[52256,85580],[-114,-173],[-408,-4],[-414,-146]],[[7762,62772],[-22,-7]],[[17289,65955],[-26,547]],[[28779,75809],[116,234]],[[17897,70440],[-186,-505],[-158,-229],[81,-675]],[[19770,64402],[-188,294],[-325,729],[-521,483],[-531,103],[-154,170]],[[48119,73966],[-56,-403],[-91,35]],[[47268,80772],[-11,89]],[[38512,73805],[76,194],[397,138]],[[13501,53906],[168,-175]],[[53714,72051],[-84,408],[-324,1063],[-40,580]],[[43208,74047],[-191,-84]],[[5191,54858],[-34,-23]],[[18874,70973],[191,-120],[486,96],[234,-572],[23,-374],[-226,-725],[108,-1177],[107,-427]],[[19797,67674],[183,-225]],[[19980,67449],[15,-332]],[[19995,67117],[218,-299]],[[20213,66818],[95,-155],[51,-773],[138,-773],[-73,-525],[100,-473],[159,-190],[177,-722],[885,-947],[8,-61]],[[47172,77705],[-109,-18],[-196,-705],[-470,-119]],[[7727,59666],[-37,543]],[[2054,33378],[217,39]],[[37376,65402],[-119,2504],[-87,65]],[[48396,85341],[-3,19]],[[18275,67729],[311,-19]],[[2567,40451],[-74,369],[102,161]],[[12611,59981],[359,-2392],[103,-872],[318,-842]],[[47427,73258],[-92,137]],[[36950,77133],[1132,-381],[710,-475]],[[39922,75455],[-25,85],[-1105,737]],[[17617,66943],[4,36]],[[48923,77323],[364,888],[16,743],[175,493]],[[48543,80742],[4,4]],[[43902,84942],[41,299],[241,800],[3,284],[-156,349],[50,482],[137,28]],[[3976,49718],[178,72],[62,-430]],[[911,43229],[-3,-37]],[[3797,44129],[-252,530],[-368,41],[194,1157],[256,862]],[[6190,62405],[-90,128]],[[20945,72949],[-529,437],[-602,-72],[-151,-202]],[[2460,41244],[-24,68]],[[21975,63459],[-222,-1260]],[[5342,60532],[-43,-467]],[[10754,63957],[205,41],[193,-331]],[[17263,66502],[169,91]],[[10080,67700],[5,-67]],[[2672,44882],[-181,43],[-247,288]],[[52063,77413],[133,35],[618,-422],[14,-850],[84,-37]],[[15889,59602],[531,722],[270,62],[212,210],[433,1646],[71,161]],[[47789,74999],[-6,-212]],[[33230,72817],[-34,478],[-111,238],[-232,-39],[-25,190]],[[50787,87061],[107,-926],[76,-6]],[[6377,61422],[340,215],[395,-192]],[[11152,63667],[-4,-6]],[[2792,40633],[45,-22]],[[5531,61410],[319,70],[104,-339]],[[5299,60065],[29,-191]],[[44712,71615],[-17,992]],[[48892,75005],[-17,-472]],[[3797,44129],[-252,530],[-368,40],[-212,-1216]],[[13352,54006],[211,-775],[32,-672]],[[3087,37327],[-270,-211]],[[37984,70343],[-17,-25]],[[46112,72970],[464,998]],[[5480,59601],[-152,273]],[[14685,59298],[542,-128]],[[34290,68438],[5,-8]],[[5436,48054],[-192,-40]],[[42598,71140],[82,-124],[-72,-905],[11,-718],[-202,-100]],[[19872,58152],[-2470,-165],[-618,179],[-426,-79],[-308,84],[-303,-121],[-555,-580],[-423,-319],[-372,32],[-526,-74],[-605,-183],[-346,-187],[74,-467]],[[12994,56272],[-7,37]],[[12987,56309],[-4,12]],[[12983,56321],[-57,133]],[[12926,56454],[-217,651],[-127,183],[-834,768]],[[46112,72970],[-84,-186]],[[41075,62584],[-111,280],[-462,515]],[[46112,72970],[1,-11]],[[54337,85251],[32,66]],[[17873,65591],[-91,-550],[10,-442],[141,-635],[-293,-1296],[-234,-265]],[[36853,67872],[-137,446],[-82,1219],[-121,535],[-169,-22],[-49,952],[-45,-5],[-39,862],[63,119]],[[4151,44830],[503,163],[152,-158]],[[5484,59726],[37,-594],[588,-290],[236,322],[1312,286]],[[48288,74089],[-169,-123]],[[9824,59297],[-94,154],[-725,590],[-482,-3],[-833,171]],[[6301,59206],[45,359],[-84,222],[190,570],[-98,411]],[[47893,77571],[55,1052],[47,218]],[[41367,75055],[-109,25],[-155,642],[7,537],[348,168]],[[7216,61161],[-104,284]],[[5480,59601],[4,125]],[[5118,57942],[103,-39]],[[18801,67379],[-5,248],[216,377],[415,197],[271,-135]],[[1575,53685],[119,216],[-204,389]],[[36853,67872],[0,23]],[[36853,67895],[317,76]],[[2981,49141],[-20,154],[662,284]],[[16082,67057],[-153,-114],[-156,-507],[-153,-40]],[[48998,74202],[-106,803]],[[95,40220],[277,129],[-118,951],[94,347],[-139,352]],[[2324,42908],[178,-691],[165,-879],[205,27],[280,-428]],[[16094,67104],[-12,-47]],[[283,43224],[-87,305]],[[12989,56243],[100,-516],[182,-136],[20,-649],[343,-815],[35,-396]],[[42179,74874],[228,-3],[356,-374]],[[282,39251],[-187,969]],[[3434,51333],[-299,664],[-928,902],[-448,661],[-52,307],[-217,423]],[[7690,60209],[-138,-78],[-216,-496],[-239,-317],[-796,-112]],[[5299,60065],[-88,-75]],[[48923,77323],[402,541],[546,31]],[[49073,72982],[218,-135]],[[49291,72847],[223,-152]],[[5202,51397],[28,1890]],[[911,43229],[-3,-37]],[[47752,82785],[-123,45],[-345,680],[-421,498]],[[13501,53906],[622,-733]],[[3152,40937],[-419,-1319]],[[12291,64959],[125,215],[387,122],[319,-190],[153,235],[397,331],[715,197]],[[48029,74554],[-253,90]],[[47776,74644],[-1,0]],[[47775,74644],[-93,-60]],[[12644,53993],[226,122]],[[44761,69948],[-49,1667]],[[13611,55581],[-220,294]],[[45657,89885],[-115,-558]],[[45542,89327],[-177,-771]],[[45365,88556],[-215,-955],[-94,24]],[[2817,37116],[193,112],[164,-648],[289,-510],[404,-373]],[[15467,64635],[-460,-259],[-919,-1123],[-130,-619]],[[6277,56675],[25,-291],[158,-39]],[[7193,65883],[-28,599]],[[13636,60054],[-169,105]],[[15227,59170],[48,-294],[-133,-855],[-346,-840],[-776,-738],[-427,-129],[-202,-439]],[[48983,80381],[-64,-364],[151,-488],[644,126]],[[36274,71978],[-36,57]],[[36238,72035],[-25,506]],[[49882,89726],[5,17]],[[49305,72501],[1087,-129],[1206,-22],[95,277],[241,250]],[[10877,66058],[-171,-650],[-328,-401],[-346,-746],[-101,-40],[-156,-471]],[[2817,37116],[-198,282],[-248,964],[-281,687],[-127,661],[-267,389],[-139,1185]],[[4125,59104],[-329,-416],[-177,-480],[-449,-411],[-277,-34],[-21,154]],[[26004,55738],[-119,432]],[[13501,53906],[168,-175]],[[280,39117],[-3,20]],[[47795,75421],[123,374],[652,1063],[353,465]],[[44917,87832],[-467,-126],[-232,-522]],[[49819,82593],[227,-152]],[[48307,74117],[105,197]],[[303,39202],[-25,-5]],[[48568,73009],[-215,-8]],[[1572,37322],[-107,696],[177,1780],[54,302],[-139,1184]],[[5531,61410],[-128,20]],[[12291,64959],[-541,-242],[-378,-531]],[[8958,58661],[-235,-548],[-166,-125],[-861,-295]],[[46330,75958],[-9,2]],[[39218,62423],[68,-1469],[172,15]],[[14461,59387],[224,-89]],[[232,38921],[-12,90]],[[54434,85096],[-8,7]],[[3490,38329],[-575,-37],[64,-691]],[[51846,85656],[-4,2]],[[13501,53906],[556,-668]],[[14057,53238],[475,-298],[894,-1052],[232,-355]],[[15658,51533],[235,-339]],[[15893,51194],[111,-36]],[[16004,51158],[81,-115]],[[16085,51043],[125,-178]],[[16210,50865],[53,-1]],[[16263,50864],[87,-41]],[[1557,41284],[-41,252],[0,986],[221,249],[69,397],[-51,1026]],[[16094,67104],[-12,-47]],[[1546,42925],[-6,-516]],[[12238,56739],[-2,18]],[[13958,62634],[-2,-299],[-271,-873]],[[6181,61903],[28,-158],[-229,-77]],[[26004,55738],[-380,909],[-297,2411],[-126,669],[-316,587]],[[7216,61161],[20,-263],[206,-18],[25,-488],[223,-183]],[[45183,72358],[-3,1]],[[47335,73395],[-142,199],[-207,-17]],[[21528,73606],[-503,116]],[[38258,69267],[-1,-15]],[[2955,41279],[-81,86],[-438,-53]],[[37922,75933],[-105,406],[-8,506],[-140,281],[-295,95],[-417,-78]],[[18124,67578],[151,151]],[[54442,85165],[18,-309]],[[2243,47052],[-2,-12]],[[13636,60054],[-169,105]],[[12989,56243],[-911,497],[-352,-61],[-595,163],[-1031,666],[-400,562]],[[9700,58070],[-701,646],[-479,325]],[[8520,59041],[-195,23],[-437,422]],[[12706,55325],[94,-264]],[[13557,58878],[79,1176]],[[2762,42976],[133,43],[70,464]],[[2658,41332],[-84,518]],[[36297,72580],[-23,-150]],[[43379,78823],[567,3],[281,-135],[439,612],[365,91],[170,633],[284,451],[7,242],[274,-55],[145,242],[190,-59],[143,267],[159,-207]],[[51243,79676],[-237,1086],[-61,851],[-766,974]],[[26169,57832],[-99,735],[386,1270]],[[46719,82830],[-183,33]],[[6780,63905],[-84,-647],[68,-329],[14,-705],[-206,-256]],[[12647,54768],[7,-62]],[[38319,63565],[321,95]],[[38640,63660],[22,-6]],[[48998,74202],[279,-830]],[[19391,73434],[-20,226],[-267,-102]],[[40502,63379],[-204,171],[-64,769]],[[4255,48808],[15,-28]],[[2177,32221],[-80,245]],[[2334,47146],[-91,-94]],[[46576,73968],[180,-242]],[[51152,86104],[8,365],[-301,117],[-72,475]],[[5665,52378],[-65,705],[-302,1887]],[[5298,54970],[-41,282]],[[4269,54683],[65,92],[599,274]],[[283,44064],[399,8]],[[13466,60163],[1,-4]],[[6476,61988],[-130,-25]],[[43379,78823],[-5,6]],[[5847,61488],[131,176],[-48,296]],[[50787,87061],[-584,934],[-717,831]],[[45438,86435],[307,610]],[[13391,55875],[-320,844],[-104,865],[-356,2397]],[[49773,76690],[30,-177],[294,-106],[-3,-143]],[[47239,84644],[80,-213]],[[5480,59601],[-105,-562]],[[5202,51397],[28,1890]],[[47995,78841],[-105,67],[-55,-420],[-117,-143]],[[15227,59170],[470,65],[192,367]],[[5631,59934],[24,281]],[[52149,87019],[-324,-2],[-142,217],[239,161]],[[2097,32466],[103,81]],[[3857,40802],[-693,34],[-4,107]],[[12706,55325],[51,-407]],[[51842,85658],[-202,74]],[[5416,61232],[52,47]],[[17289,65955],[373,92],[-17,181]],[[17700,66993],[-83,-50]],[[1360,42688],[-55,185],[297,550],[153,771]],[[49882,89726],[-396,-891]],[[49486,88835],[-393,-261],[-1157,-18],[-696,223],[-322,-167],[-747,-693],[-426,-874]],[[13391,55875],[-391,310]],[[45745,87045],[-368,-598],[-492,122]],[[35344,67214],[52,-244]],[[5954,61141],[120,-211],[192,36],[88,-198]],[[35103,73389],[-27,307],[157,20],[334,503],[-21,456],[503,799],[27,259],[264,84],[796,479],[6,70]],[[1786,43854],[449,-412],[83,-655],[183,-571],[162,-880],[-68,-355]],[[28199,76004],[-228,-88],[-94,-457],[-453,-986],[-1278,-874],[-236,0]],[[283,43224],[-8,120]],[[1360,42688],[-65,581],[-186,493],[-387,290],[-439,12]],[[301,39164],[-4,-6]],[[45867,85854],[592,-893]],[[23104,70281],[199,131]],[[17897,67539],[-69,221]],[[5930,61960],[55,-296],[224,81],[-28,158]],[[48353,73001],[58,192]],[[52639,74230],[-32,-645]],[[2243,47052],[-2,-12]],[[206,44830],[172,-36]],[[4243,49371],[12,-563]],[[51512,76086],[414,35],[256,237],[455,-14],[275,-205]],[[33233,74275],[492,-171]],[[35676,67259],[-4,112],[567,293],[600,110],[14,98]],[[5257,55252],[288,1352],[223,352],[297,1349]],[[54745,83924],[-2,-27]],[[46434,99493],[-1249,-336],[-16,39]],[[18231,70338],[-161,-343],[-28,-555]],[[2817,37116],[270,211]],[[4269,54683],[664,366]],[[6301,59206],[-64,198],[-279,-233],[-554,-231],[-29,99]],[[7223,66791],[69,400],[240,-227]],[[3141,32060],[71,-376]],[[41631,63602],[-895,-63],[-375,-149]],[[47227,74746],[-178,63]],[[54047,84637],[78,-245],[322,-82]],[[12989,56243],[-911,493],[-352,-60],[-594,160],[-1033,666],[-401,564],[-529,447]],[[9169,58513],[-172,199],[-478,324],[-194,22],[-437,428]],[[46459,84961],[-158,233]],[[46301,85194],[-434,660]],[[46266,89609],[19,-9]],[[46285,89600],[432,-70],[654,18],[129,-128]],[[43463,95322],[-341,-82],[-559,9]],[[11984,56958],[378,-390],[632,-296]],[[304,39114],[-3,-1]],[[6522,62615],[-136,-247],[-196,37]],[[4659,59403],[-138,-504],[-173,-10],[-223,215]],[[47995,78841],[-48,-218],[-54,-1052]],[[5480,59601],[-105,-562]],[[2965,43483],[-478,183]],[[24885,60314],[-97,123],[-79,866],[-404,505],[-119,1378],[46,1092],[-55,1027],[-395,-137]],[[856,42046],[246,-536],[330,-323],[125,97]],[[5499,59602],[34,-719],[-180,-182],[-39,-287]],[[42417,69293],[205,-1],[-29,-1095],[-294,-30],[-132,-333],[-333,-273]],[[47950,79259],[50,-21]],[[44683,89032],[-55,0],[30,-1023]],[[47338,71947],[-361,-81],[-239,324],[-824,-1210],[-64,-188],[203,2],[-269,-813],[-318,-751],[-474,-139],[-131,-319],[-477,61],[-91,-186],[-376,-110],[-227,279]],[[2243,47052],[-2,-12]],[[9202,62793],[-197,-384]],[[6142,36417],[-123,-438],[54,-319],[-147,-235],[-75,-747],[156,-501],[-181,-438],[46,-288],[-149,-711],[125,-674],[-87,-655],[78,-236],[28,-736]],[[840,44654],[619,-411],[296,-49]],[[21753,62199],[2,-78],[-1356,-1712],[-53,-16]],[[45745,87045],[-188,-451]],[[45438,86435],[119,159]],[[7223,66791],[-58,-309]],[[26004,55738],[255,182],[339,1258],[476,622],[427,279],[151,-60],[710,90],[320,182],[141,307],[364,174],[584,-93],[294,143],[140,464]],[[750,43189],[161,40]],[[7284,66453],[-16,-368],[89,-623],[-220,-469],[-12,-323]],[[50787,87061],[-19,17]],[[5799,60345],[-94,-16],[-221,-603]],[[2825,40358],[-258,93]],[[54605,81537],[156,-15],[276,-1071]],[[18043,66188],[216,667],[-19,189],[-250,223]],[[22563,55037],[-597,559]],[[840,44654],[248,-153],[-231,-569],[230,-160],[-26,-173]],[[13958,62634],[-58,-19]],[[41458,76427],[276,-288],[24,612],[271,173],[185,293],[214,741],[308,105],[108,336],[391,141],[11,307],[133,-24]],[[41834,67561],[-52,147],[-1560,-152]],[[50833,70735],[576,995],[284,896],[153,140]],[[51846,72766],[88,111]],[[263,39033],[25,49]],[[25885,56170],[-984,1825],[-298,320],[-2595,3470],[-225,389]],[[7657,59450],[-58,97],[-1255,-382],[-235,-322],[-588,290],[-37,593]],[[48506,74981],[-239,-1],[-238,-426]],[[44542,86403],[693,-152],[203,184]],[[46113,72959],[-1,11]],[[281,38965],[-61,46]],[[7112,61445],[172,-87],[325,136]],[[54434,85096],[-8,7]],[[6009,61353],[181,-320],[187,389]],[[2487,43666],[478,-183]],[[8199,66683],[-62,-96]],[[7567,66017],[151,-41],[72,251]],[[5378,61194],[90,85]],[[18586,67710],[95,18],[109,1188],[-76,467],[-250,231]],[[11748,58056],[-948,535],[-296,74],[-680,632]],[[16494,67635],[-115,773],[-139,173]],[[27751,74700],[-1605,-1102],[-236,1]],[[7169,65044],[252,204],[88,-92]],[[37017,63499],[-3,58]],[[37014,63557],[275,10]],[[37289,63567],[17,0]],[[555,44557],[285,97]],[[47795,75421],[-359,-778]],[[17993,67217],[246,-173],[20,-189],[-216,-667]],[[54373,85098],[87,-242]],[[1596,50049],[31,-208],[-190,-611],[146,-600],[-24,-323]],[[1559,48307],[6,-72]],[[1565,48235],[-14,-59]],[[1551,48176],[-387,-295],[-401,-419]],[[19872,58152],[172,-458],[-53,-313],[32,-902],[154,-1167],[221,-1302]],[[17632,69022],[50,492],[549,184],[233,-84]],[[49773,76690],[619,109],[764,298],[565,-32],[342,348]],[[5665,52378],[37,-1121],[-167,-1451],[-173,-317],[-192,-642],[12,-721],[62,-112]],[[6165,48789],[-446,150],[-650,-175],[-566,-260],[-184,31],[-49,245]],[[949,42323],[-11,24]],[[3623,49579],[353,139]],[[17990,67267],[-93,272]],[[2900,49023],[-278,-1142],[-288,-735]],[[13067,41181],[-611,-291],[-882,71],[-139,-193]],[[43379,78823],[-932,298],[-599,-29],[-514,-469],[-284,87]],[[36853,67872],[-307,-105],[-656,-84],[-214,-424]],[[42179,74874],[-182,227],[-162,808],[-99,225]],[[5198,57603],[-39,-660]],[[1360,42688],[-35,53]],[[1325,42741],[-279,-123]],[[4659,59403],[-313,381],[-288,-10]],[[9005,62409],[-480,-143],[-603,-422],[-134,-440]],[[4216,49360],[39,-552]],[[13493,53889],[-109,35]],[[12816,54985],[-59,-67]],[[50768,87078],[6,-25]],[[1061,43599],[32,167]],[[2900,49023],[394,1577],[140,733]],[[38531,60989],[4,2]],[[47795,75421],[-6,-422]],[[2244,45213],[-487,-1012],[42,-103]],[[1799,44098],[-13,-244]],[[2567,40451],[50,-227],[-290,-1150]],[[50787,87061],[404,-41],[267,131]],[[399,39272],[-24,-26]],[[38257,69252],[731,-37],[3,-91],[1794,145],[1032,5],[175,75],[1003,87],[282,-110],[341,-522]],[[6383,62366],[139,249]],[[3126,32122],[15,-62]],[[13880,62104],[-226,-771],[70,-117],[-88,-1162]],[[47518,72536],[-150,-180],[-30,-409]],[[44885,86569],[553,-134]],[[49305,72501],[-68,-1667]],[[95,40220],[277,129],[-119,958]],[[1360,42688],[-57,189],[301,548],[151,769]],[[3581,36019],[-27,7]],[[3554,36026],[-12,32]],[[3542,36058],[-215,268],[-97,302]],[[3230,36628],[11,-15]],[[47827,89757],[137,369]],[[3054,31931],[87,129]],[[17990,67267],[250,-223],[20,-189],[-209,-674]],[[12031,68170],[-119,-513],[-13,-680]],[[53672,71274],[-471,-27],[-625,269]],[[45056,87625],[4,-649],[-175,-407]],[[6065,58305],[236,901]],[[2467,40988],[-32,-14]],[[343,39288],[-6,-19]],[[18474,67402],[-263,-69]],[[39305,67128],[49,331],[868,97]],[[6065,58305],[-23,-90],[164,-1088],[93,-146]],[[46403,80908],[164,240],[274,34]],[[6476,61988],[96,-20]],[[13391,55875],[-114,-431]],[[12994,56272],[23,-131]],[[13017,56141],[68,-420]],[[13085,55721],[-113,-156],[-233,101]],[[47338,71947],[-282,106],[-1087,-161],[-244,194]],[[51842,85658],[4,-2]],[[34244,68307],[-769,829],[-526,1015],[-8,105]],[[49486,88826],[0,9]],[[49486,88835],[396,891]],[[10877,66058],[-171,-649],[-328,-402],[-346,-745],[-101,-41],[-156,-471]],[[44542,86403],[343,166]],[[13557,58878],[79,1176]],[[49305,72501],[-14,346]],[[49291,72847],[-13,507]],[[49278,73354],[-1,18]],[[5380,61152],[-3,-464]],[[1755,44194],[31,-340]],[[51458,87151],[-267,-132],[-404,42]],[[6264,57013],[35,-32]],[[5480,59601],[4,125]],[[16638,66851],[-185,-677],[-353,-784],[-208,-198],[-270,-467],[-155,-90]],[[6299,56981],[-156,-354]],[[37060,79831],[224,-67],[13,-234],[-148,-382],[-122,-1055],[45,-214],[-91,-637]],[[36981,77242],[-24,-99]],[[9005,62409],[-300,120],[-81,-109],[-470,-130],[-392,482]],[[1093,43766],[90,-186]],[[15889,59602],[376,-200],[312,-44],[535,216]],[[36213,72541],[-2,34]],[[2820,40362],[-29,-133]],[[3434,51333],[484,-200]],[[48133,85818],[-110,7],[-932,-520],[-301,-238],[-331,-106]],[[41418,73242],[-920,219],[-200,-173],[-498,85]],[[49773,76690],[30,617],[-47,311]],[[20398,54010],[-163,-160]],[[42417,69293],[207,35],[207,-160],[731,-241],[128,-111]],[[8130,40666],[76,-247]],[[19207,60604],[-193,100],[-539,564],[-136,417]],[[5829,60843],[31,526],[117,329],[-43,296]],[[4367,39959],[-247,-9]],[[47518,72536],[-149,-181],[-31,-408]],[[46988,74456],[-152,144],[-260,-632]],[[38985,74137],[-397,-138],[-76,-194]],[[3857,40802],[-145,59],[-587,-39],[-191,-92]],[[46576,73968],[-68,-33],[-79,540],[-231,525],[22,745],[101,215]],[[51601,76432],[-2,13]],[[949,42323],[-12,24]],[[39614,68629],[4,-53]],[[39618,68576],[-213,-467]],[[39405,68109],[-95,-288]],[[39310,67821],[0,-65]],[[39310,67756],[4,-64]],[[39314,67692],[0,-60]],[[39314,67632],[5,-215]],[[39319,67417],[7,-211]],[[39326,67206],[-21,-78]],[[5683,61890],[164,-402]],[[5168,56867],[-9,76]],[[18590,69098],[-160,269]],[[3152,40937],[-197,342]],[[24694,51200],[-126,808],[82,808],[290,467],[221,510],[-32,392],[125,399],[300,558],[331,1028]],[[5655,60215],[-24,-281]],[[5403,61430],[444,58]],[[45110,69662],[-1,207],[-348,79]],[[48983,80381],[466,1284]],[[6299,56981],[-139,304],[-264,258]],[[5378,61194],[38,38]],[[13058,55128],[73,219]],[[28636,62124],[-36,427],[117,21],[117,434]],[[5484,59726],[37,-593],[588,-290],[235,322],[1255,382],[53,-92]],[[7652,59455],[7,2]],[[7659,59457],[229,29]],[[2487,43666],[-129,-11],[-386,446],[-217,93]],[[54464,84861],[-4,-5]],[[46576,73968],[-464,-998]],[[12989,56243],[11,-58]],[[39800,73373],[32,-794],[122,-881],[7,-836],[264,-294],[-40,-782]],[[5616,60485],[13,77]],[[40361,63390],[56,-176]],[[43690,68816],[28,153],[435,157],[339,688],[269,134]],[[49882,89726],[282,-23],[801,-564],[395,-149]],[[38257,69252],[-266,90],[-24,976]],[[49277,73372],[-350,-198],[-64,-171],[-295,6]],[[1390,41683],[91,-110],[59,836]],[[4643,49921],[-481,-128],[-166,1066],[4,256],[-566,218]],[[17962,65880],[-89,-289]],[[49773,76690],[-90,-350],[-408,-539],[-175,-503],[-267,-362],[-327,45]],[[253,41307],[662,293],[338,-171],[179,-243],[125,98]],[[39305,67128],[84,165]],[[41458,76427],[-348,-168],[-7,-538],[155,-641],[109,-25]],[[7112,61445],[172,-87],[325,136]],[[54426,85103],[8,-7]],[[5202,51397],[134,-819],[-126,-1133],[-30,-612],[206,-312],[181,-541],[174,-31]],[[47427,73258],[203,-337],[310,55]],[[7532,66964],[229,-278],[56,-401],[-248,-97],[-2,-171]],[[34244,68307],[403,-372],[36,-806],[661,85]],[[5800,60810],[29,33]],[[37772,70694],[465,-33]],[[35012,73451],[84,-91]],[[47893,77571],[-108,-1500],[10,-650]],[[253,41307],[-75,71],[29,628],[86,-9]],[[293,41997],[17,-62]],[[310,41935],[136,-159],[280,145],[159,-52],[-13,287],[-171,774]],[[51330,76079],[-568,-787],[-616,-3],[-194,-154]],[[49952,75135],[-540,-73],[-416,73],[-104,-130]],[[13557,58878],[-38,382]],[[3213,31685],[183,-175]],[[4545,40692],[-365,132]],[[11372,64186],[-335,-73],[-626,-21],[-467,-351],[-755,-970],[-184,-362]],[[10877,66058],[-246,10],[-23,-150]],[[4270,48780],[-84,-316]],[[46841,81182],[79,302],[-120,510],[46,586],[-127,250]],[[13446,54064],[47,-175]],[[40185,69786],[40,783],[-264,293],[-7,836],[-122,882],[-32,793]],[[2567,40451],[224,-222]],[[7125,64670],[-129,-440],[-216,-325]],[[3087,37327],[-270,-211]],[[12994,56272],[51,17]],[[54337,85251],[83,42]],[[37552,76471],[-25,-233],[-373,124]],[[4904,56459],[-1,12]],[[4903,56471],[0,0]],[[4903,56471],[-471,-212],[-117,-691],[133,-581],[-179,-304]],[[45973,89430],[-431,-103]],[[45542,89327],[-443,-146]],[[45099,89181],[-416,-149]],[[18874,70973],[17,56]],[[3616,52903],[238,-145],[415,1925]],[[18586,67710],[209,47],[108,352],[265,-81],[259,175],[271,-137]],[[54656,83860],[-79,-702],[16,-948]],[[10112,67987],[-32,-287]],[[44537,98782],[-179,132],[-387,-211]],[[16240,68581],[-536,-129],[-58,176]],[[1786,43854],[-31,340]],[[48539,85169],[481,-570],[74,-6]],[[2097,32466],[165,448]],[[5655,60215],[-126,-30]],[[44658,88009],[-141,-554]],[[52942,73813],[-3,-3]],[[1194,44120],[-105,-324],[-222,133],[190,542],[-217,183]],[[36274,71978],[103,-678],[210,25],[348,-219],[26,-319]],[[46719,82830],[127,-250],[-47,-586],[120,-509],[-78,-303]],[[49871,77895],[-127,221],[-30,1539]],[[13501,53906],[-126,364],[-315,100]],[[13611,55581],[-220,294]],[[2567,40451],[185,-122],[237,90],[-55,311]],[[10080,67700],[-298,-388],[-282,-33],[-269,494]],[[50892,85723],[-12,-450],[91,-10]],[[5867,60948],[-7,421],[117,329],[-43,296]],[[43384,89054],[254,-143],[259,42],[278,-146]],[[44175,88807],[247,-136]],[[47807,74360],[-27,132]],[[48267,74981],[-238,-427]],[[16811,66998],[-213,-185],[-143,-632]],[[40417,63214],[-341,-218]],[[46146,77312],[186,348],[409,-62],[172,379],[278,-256],[150,177],[498,-384],[54,57]],[[18874,70973],[17,56]],[[2334,47146],[-328,286],[-313,411],[-670,-146],[-260,-235]],[[50458,85383],[130,927]],[[47049,74809],[-212,-208],[151,-145]],[[8162,57832],[-466,-139]],[[38319,63565],[-252,193],[-75,1990],[-44,12],[-96,1212],[-249,-32],[-108,747],[-173,-22],[-152,306]],[[5531,61410],[-13,-537]],[[7229,61162],[-3,173],[383,159]],[[42480,83500],[-348,-643],[-212,-159],[-319,81],[-134,-580],[-246,-204]],[[3139,40728],[-310,-483]],[[2551,40683],[16,-232]],[[45782,85810],[-579,101],[-898,-241],[-403,-728]],[[5531,61410],[-128,20]],[[50768,72913],[277,-56],[889,20]],[[5499,59602],[-171,272]],[[7509,65156],[144,-635],[41,-499],[-557,-226],[-187,-258],[-159,33]],[[49882,89726],[-394,-892],[716,-839],[583,-934]],[[49277,73372],[2,-18]],[[49279,73354],[5,-70],[614,-49],[596,-271],[551,-107],[889,20]],[[3434,51333],[216,638],[204,785],[-238,147]],[[52912,76139],[-275,205],[-455,14],[-256,-237],[-414,-35]],[[12541,54571],[103,-578]],[[5655,60215],[-20,-270],[155,-360],[697,-391],[1170,256]],[[40222,67556],[-868,-96],[-49,-332]],[[50046,82441],[-332,-2786]],[[13045,56289],[-56,-46]],[[5709,49221],[-436,131],[-630,569]],[[16085,66902],[-3,155]],[[37376,65402],[465,-322],[106,-910]],[[54460,84856],[-8,-540],[226,1],[60,-230]],[[6277,56675],[-45,20]],[[2817,37116],[-71,-886],[-27,-1560],[166,-1305],[241,-1243]],[[7727,59666],[-37,543]],[[7112,61445],[104,-284]],[[26562,72796],[75,-922],[217,-638],[128,-1363],[-402,-574],[-45,-359],[-217,-106],[-216,-361],[-717,-108],[-181,-697],[-4,-671],[-305,-118],[-103,-247],[-290,-58],[-15,-218],[-317,-504],[8,-545],[-396,-139]],[[47427,73258],[143,-237],[-52,-485]],[[11148,63661],[269,-222],[552,-873]],[[6572,61968],[-226,-5]],[[17632,69022],[-285,-53],[-104,-192]],[[4269,54683],[-336,130],[-285,-81],[-258,171],[-388,-33],[-303,94],[-519,-150],[-690,-524]],[[46459,84961],[278,-530]],[[6649,38710],[-214,40],[-308,-234]],[[52861,78786],[33,-530],[-108,-483],[33,-677]],[[48083,73300],[78,-276],[192,-23]],[[11358,54114],[-73,-979],[168,-528],[143,33]],[[363,39151],[12,95]],[[2829,40245],[-38,-16]],[[42667,73026],[61,-399],[24,-893],[-143,-171],[-11,-423]],[[5377,60688],[-35,-156]],[[5375,59039],[-96,149],[-328,-111],[-252,136],[-40,190]],[[5682,48154],[59,-205]],[[47892,84914],[18,-73]],[[47257,80861],[11,-89]],[[41367,75055],[812,-181]],[[38433,67178],[-37,1115],[-139,959]],[[12989,56243],[402,-368]],[[5853,60734],[-24,109]],[[2987,40947],[68,-47]],[[48660,73807],[-20,-59]],[[43900,84930],[-24,-307],[-403,-307],[-94,-555],[-127,5],[-174,-437],[-308,-78],[-87,-503],[-118,-73],[-160,-1163],[46,-1928],[142,-143],[-41,-437],[67,-1046],[-248,-187],[-230,-678],[-16,-471],[-242,-81],[-136,-382]],[[5683,61890],[3,-53]],[[7690,60209],[-132,-76],[-207,-471],[-253,-346],[-797,-110]],[[49714,79655],[-647,-127],[-1067,-290]],[[38877,75599],[0,-3]],[[1575,53685],[90,26],[513,-767],[954,-936],[302,-675]],[[46730,84420],[-271,541]],[[5677,61677],[42,9]],[[29371,62171],[-243,61],[-492,-108]],[[3434,51333],[216,638],[204,785],[224,1045]],[[45718,86324],[6,-169],[577,-961]],[[46301,85194],[396,-1391],[-10,-421]],[[44218,87184],[3,-274],[189,-491],[132,-16]],[[3744,35759],[-163,260]],[[13611,55581],[-220,294]],[[54748,83930],[-3,-6]],[[17754,66613],[42,-315]],[[51644,85352],[-8,-298],[-342,-381],[-470,-114],[-665,-1854]],[[3126,32122],[87,-437]],[[21528,73606],[-111,-20],[-472,-637]],[[39922,75455],[188,-94],[218,-622],[93,-18]],[[6017,60170],[-71,144],[-124,-303],[-342,-410]],[[41418,73242],[816,127],[433,-343]],[[2762,42976],[133,42],[-307,-1871],[145,-1529]],[[5729,61168],[138,-220]],[[7083,64954],[42,-284]],[[3416,36269],[-164,220],[-266,853],[-101,1359],[-152,917]],[[14639,68201],[-530,281],[-767,136],[-498,-308],[-304,79]],[[2974,42142],[123,1245],[-132,96]],[[7609,61494],[179,-90]],[[1238,43831],[-145,-65]],[[2244,45213],[240,-128],[334,154],[8,332]],[[7112,61445],[356,-614],[30,-497],[192,-125]],[[38664,63705],[135,-381],[127,-40],[1435,106]],[[25935,55743],[-50,427]],[[2244,45213],[-465,-970],[7,-389]],[[52350,73014],[-14,-13]],[[5855,49196],[-146,25]],[[4269,54683],[327,202],[390,1217],[483,314],[298,542],[129,585]],[[2965,43483],[-70,-464],[-133,-43]],[[52149,87019],[-89,-229],[-35,-577],[-206,-68]],[[40066,74426],[355,295]],[[52264,85997],[-8,-417]],[[7788,61404],[-28,182],[281,369]],[[11372,64186],[-335,-74],[-626,-22],[-467,-350],[-754,-970],[-185,-361]],[[49277,73372],[28,-871]],[[7532,66964],[230,-278],[56,-402],[-249,-96],[-2,-171]],[[750,43189],[-76,-191],[46,-458],[127,-414],[102,197]],[[5631,59934],[2,-6]],[[2762,42976],[133,42],[-307,-1871],[145,-1529]],[[51152,86104],[-182,25]],[[11647,35293],[707,273],[254,333],[179,53]],[[35670,67261],[-885,-121],[-72,-554],[-488,-178],[-212,-492]],[[9350,63017],[-345,-608]],[[50458,85383],[-274,-1853],[-138,-1089]],[[17796,66298],[129,-18]],[[6522,62615],[-17,185],[202,317],[73,788]],[[18341,70644],[-137,-32],[27,-274]],[[44698,72592],[291,-62],[194,-172]],[[48696,71995],[-98,-349],[-163,-183],[0,-335],[-570,-62],[-258,45],[-2,205],[-220,80],[-47,551]],[[6181,61903],[-73,278],[82,224]],[[18590,69098],[29,-1016],[-45,-631],[-100,-49]],[[51640,85732],[-14,384]],[[10555,43683],[-225,638],[-409,683]],[[42763,74497],[445,-450]],[[46949,75596],[117,-127],[729,-48]],[[48547,80746],[357,-510],[79,145]],[[2113,55403],[-156,-721],[-467,-392]],[[2262,32914],[9,503]],[[6358,61164],[-297,-230]],[[2334,47146],[-60,-121],[8,-1287],[-146,-755],[-381,-789]],[[5822,60550],[45,398]],[[40479,75246],[-58,-525]],[[2402,38991],[-75,83]],[[45725,72086],[-964,-2138]],[[45657,89885],[190,-92],[216,127],[370,-63],[672,8],[288,157]],[[54426,85103],[8,-7]],[[911,43229],[289,-216],[346,-88]],[[1540,42409],[-4,-398]],[[50787,87061],[-13,-8]],[[2335,43304],[-8,-276]],[[41736,76134],[-278,293]],[[47335,73395],[92,-137]],[[48119,73966],[-90,588]],[[1755,44194],[217,-93],[378,-444],[137,9]],[[6572,61968],[-226,-5]],[[1102,45896],[77,172],[-122,1139],[-294,255]],[[2327,39074],[225,910],[35,384],[-75,318]],[[17634,69031],[34,-696],[78,-426]],[[13501,53906],[-126,364],[-315,100]],[[54460,84856],[-18,309]],[[41050,78710],[-483,-112],[-91,129]],[[5930,61960],[55,-297],[224,81],[-28,159]],[[37967,66654],[437,464],[816,106],[85,-96]],[[47319,84431],[274,-285],[-455,-780]],[[38433,67178],[101,-2669],[-132,-103]],[[2208,32087],[-31,134]],[[3179,44694],[972,136]],[[6476,61988],[-295,-85]],[[11027,40536],[-526,-293],[-365,-129],[-936,355],[-401,-32],[-303,320],[-366,-91]],[[17897,67539],[56,-511]],[[17217,66219],[142,27]],[[18045,66178],[250,-383],[94,-430],[-89,-359],[193,-622],[259,-503],[727,-1157],[138,-440],[99,-1573]],[[7827,59335],[-100,331]],[[52310,85895],[-46,102]],[[5741,47949],[-122,-33]],[[5867,60948],[-38,-105]],[[50833,70735],[-415,43],[-1175,3]],[[278,39149],[0,48]],[[35096,73360],[530,-882],[239,28],[89,-391],[284,-80]],[[36238,72035],[36,-57]],[[45745,87045],[61,473],[-945,2222],[-171,248]],[[49094,84593],[-74,6],[-624,742]],[[43698,88553],[-208,-88]],[[12937,55425],[-73,-23]],[[7690,60209],[45,-442],[153,-281]],[[5198,57603],[56,881],[121,555]],[[21753,62199],[-1472,1604],[-240,187],[-458,707],[-325,728],[-522,484],[-531,103],[-154,169]],[[17289,65955],[552,-1181],[182,-740],[1,-431],[-119,-1064],[7,-611]],[[39922,75455],[-564,763],[-205,146]],[[2073,35870],[-205,-180],[397,-2257]],[[2265,33433],[3,-7]],[[2268,33426],[3,-9]],[[12236,56757],[168,-325],[-181,-325],[209,-139],[140,-466],[134,-177]],[[16811,66998],[188,-320]],[[33230,72817],[104,-1906],[-47,-204],[-302,-165],[-44,-286]],[[5468,61279],[63,131]],[[11596,52640],[473,327],[158,-10],[230,410],[113,410]],[[33187,53788],[228,523],[287,141],[465,822],[23,1199],[172,517],[-25,311],[131,994],[-111,137],[3,660]],[[4186,48464],[-559,-1745]],[[2208,32087],[-119,472],[-43,731],[225,127]],[[5375,59039],[189,-41],[165,-288],[153,-36],[183,-369]],[[2271,33417],[-3,9]],[[2268,33426],[-684,3896],[-12,0]],[[4992,28050],[-111,1102],[60,595],[267,363],[129,15]],[[4830,40318],[-285,374]],[[5853,60734],[62,385],[-55,250],[117,329],[-43,296]],[[46687,83382],[451,-16]],[[25910,73599],[-475,66],[-779,-321],[-381,-483]],[[12994,56272],[-284,834],[-128,183],[-799,748],[-758,456],[-521,170],[-680,634]],[[41221,81995],[-488,-726],[6,-220],[-204,-484]],[[42598,71140],[11,422],[143,172],[-24,893],[-61,399]],[[13611,55581],[-220,294]],[[49756,77618],[47,-311],[-30,-617]],[[2244,45213],[240,-128],[334,153],[102,-354]],[[33726,74100],[47,98]],[[25885,56170],[371,547],[-27,329]],[[5211,59990],[88,75]],[[45867,85854],[-85,-44]],[[47058,79112],[-22,230]],[[4993,56253],[-74,232]],[[26004,55738],[-64,448],[328,416],[412,780],[353,367],[85,374],[407,1114],[613,816],[509,1906],[-12,175],[493,99],[243,-62]],[[48506,74981],[63,294],[-109,711],[463,1337]],[[1046,42618],[-345,312]],[[7083,64954],[42,-284]],[[7657,59450],[-1312,-286],[-236,-322],[-588,290],[-37,594]],[[5619,47916],[-35,-53]],[[33725,74104],[-8,-268]],[[3126,32122],[356,-50]],[[20398,54010],[-219,1308],[-95,925],[-77,303],[-25,728],[61,420],[-191,565],[-632,395],[-496,184],[-433,460],[-402,530],[-96,779],[152,1661],[-38,271],[96,817]],[[12706,55325],[-94,-342]],[[1546,42925],[4,609]],[[1550,43534],[-42,227]],[[1438,44101],[-27,165],[298,30],[-36,160],[-303,-123],[-530,321]],[[38662,63654],[63,-413],[299,-658],[194,-160]],[[52063,77413],[264,324]],[[52327,77737],[295,718],[-23,933],[-56,246]],[[48393,85360],[-260,456],[-110,9],[-932,-520],[-301,-238],[-331,-106]],[[12291,64959],[-542,-241],[-377,-532]],[[6181,61903],[-73,278],[82,224]],[[5377,59111],[-2,-72]],[[35676,67259],[-6,2]],[[40314,75312],[-392,143]],[[7240,48003],[-36,-186],[224,-1444],[-22,-668],[-243,-603],[-39,-1345],[420,-213],[597,-1022],[86,-318],[32,-555],[122,-698],[204,-342],[215,-179],[210,15],[165,-1102],[77,-278],[235,-249],[161,-387],[235,-94]],[[46756,73726],[333,33],[-106,-177]],[[53416,84801],[3,155],[319,11],[-28,-293]],[[4269,54683],[-413,-1909],[-190,-754],[-154,-361],[-179,-818],[-599,-1910],[-36,-383],[-152,-317],[-212,-1085]],[[18464,69614],[166,-483],[312,-34],[423,89],[568,218],[-299,-722],[124,-693]],[[19758,67989],[39,-315]],[[19797,67674],[14,-35]],[[19811,67639],[169,-190]],[[19980,67449],[15,-332]],[[19995,67117],[218,-299]],[[20213,66818],[97,-166],[55,-775],[131,-745],[-66,-512],[110,-512],[289,-599]],[[20829,63509],[117,-156]],[[20946,63353],[147,80]],[[21093,63433],[493,92],[120,-1225],[47,-101]],[[47783,74787],[6,212]],[[17289,65955],[-9,2]],[[3180,31390],[33,295]],[[5221,57903],[-62,-960]],[[36345,71989],[-71,-11]],[[6620,56244],[227,127]],[[49305,72501],[-12,-323],[-151,-127],[-446,-56]],[[53702,84352],[-51,-563]],[[9350,63017],[364,443],[61,290]],[[3152,40937],[-419,-1319]],[[20117,73644],[-269,-175]],[[17912,61928],[-446,180],[-60,295]],[[40535,80565],[-164,-658],[-11,-509],[116,-671]],[[2900,49023],[534,2310]],[[42417,69293],[-63,154],[-1010,-241],[-31,540],[-231,161],[-360,-30],[-212,-176],[-325,85]],[[12864,55402],[-158,-77]],[[12540,68389],[-48,-376],[-363,-107],[-470,364],[-614,-182],[-965,-388]],[[50820,84676],[167,3]],[[4992,28050],[-140,1108],[-195,556],[-863,1248],[-386,263],[-137,296],[-145,601]],[[1093,43766],[-237,160],[-18,-290]],[[838,43636],[-10,-141]],[[828,43495],[-78,-306]],[[47436,74643],[-209,103]],[[2920,44884],[-94,687]],[[2244,45213],[32,356],[11,1312],[47,265]],[[16085,66902],[-3,155]],[[47964,90126],[-137,-369]],[[49478,79447],[-175,-493],[-16,-743],[-364,-888]],[[36957,77143],[24,99]],[[36981,77242],[-313,143],[-63,-198]],[[4216,49360],[27,11]],[[2334,47146],[333,925]],[[39922,75455],[-699,279],[-275,190],[-71,-328]],[[38319,63565],[-365,384],[-7,221]],[[11647,35293],[-177,276],[-464,343],[-615,178],[-183,265],[-684,374],[-179,-92],[-494,156],[-239,285],[-956,591],[-262,212],[-174,326],[-571,503]],[[6572,61968],[184,-329],[356,-194]],[[17623,67365],[274,174]],[[26715,61453],[579,243],[860,719],[569,298],[111,293]],[[40066,74426],[-417,-150],[-664,-139]],[[25885,56170],[83,62],[486,859],[214,487],[317,322],[256,734],[66,349],[255,587],[463,463],[616,1989],[-42,530],[117,21],[118,433]],[[51152,86104],[8,366],[-301,117],[-69,500]],[[46112,72970],[-387,-884]],[[6190,62405],[-90,128]],[[297,39158],[-19,-9]],[[45183,72358],[305,-31],[237,-241]],[[209,41999],[128,-158],[-84,-534]],[[48539,85169],[-143,172]],[[17700,66993],[-34,125]],[[1258,46245],[-132,-318],[-206,95],[-385,-352],[24,-428]],[[52350,73014],[-7,360],[300,856]],[[37492,65603],[-12,-3]],[[1755,44194],[52,-1026],[-162,-563],[195,-727],[255,-634],[259,-1982],[-19,-372],[179,-1189],[303,-585]],[[18043,66188],[8,-7]],[[12870,54115],[32,73]],[[34013,65916],[-523,-766],[-544,-926],[-556,-225],[-101,-419],[-106,39]],[[5655,60215],[-126,-30]],[[712,45609],[390,287]],[[5867,30439],[20,-96]],[[2965,43483],[166,-119],[492,154],[187,210],[398,-242]],[[52607,73585],[-431,-413],[-71,57]],[[3857,40802],[-693,36],[-209,441]],[[13446,54064],[-74,201],[-405,-53],[-323,-219]],[[6181,61903],[-73,278],[82,224]],[[6847,56371],[158,-485],[441,-1083],[142,-1255],[-121,-513],[112,-1587],[122,-383],[-151,-1303],[-83,-284],[39,-481],[-188,-990]],[[5436,48054],[138,-239]],[[44537,98782],[573,114],[59,300]],[[48983,80381],[-79,-144],[-357,509]],[[5436,48054],[-51,466],[-205,308],[-47,267],[94,490],[107,1002],[-132,810]],[[51565,87134],[-1,-5]],[[26004,55738],[5,-58]],[[2327,39074],[226,910],[14,467]],[[17911,67535],[213,43]],[[2900,49023],[-442,-7],[-907,-840]],[[1551,48176],[14,59]],[[1565,48235],[-6,72]],[[1559,48307],[18,323],[-143,602],[192,609],[-30,208]],[[42417,69293],[206,-1],[-30,-1095],[-294,-31],[-132,-333],[-333,-272]],[[38877,75596],[0,3]],[[50059,73554],[106,-189]],[[253,41307],[95,340],[-139,352]],[[33725,74104],[1287,-653]],[[13557,58878],[40,-255],[-429,-1182],[-80,-610],[-209,-269],[110,-319]],[[47172,77705],[-64,93],[52,512],[-102,802]],[[17513,67078],[153,40]],[[48400,85347],[-4,-6]],[[50179,82587],[-20,118]],[[17206,66890],[-33,204],[325,-25]],[[5800,60810],[29,33]],[[196,43529],[87,-305]],[[5655,60215],[167,335]],[[17174,67109],[262,32]],[[10988,67791],[47,-663],[-56,-724],[-102,-346]],[[40476,78727],[91,-129],[483,112]],[[16082,67057],[-23,321],[112,191],[368,83],[342,349],[362,776]],[[54743,83897],[-69,-83],[-674,27],[-349,-52]],[[51184,85750],[-27,347],[-187,32]],[[2969,42163],[5,-21]],[[4208,43486],[-399,241],[-186,-208],[-495,-151],[-163,115]],[[43618,68820],[-261,617],[-251,951],[-293,1973],[-124,653]],[[42689,73014],[-401,1316],[-109,544]],[[40421,74721],[353,-104],[304,429],[289,9]],[[46440,75806],[107,-199]],[[46547,75607],[53,-44],[236,-962],[213,208]],[[40421,74721],[3,-6]],[[40424,74715],[-15,-187]],[[34295,68430],[-51,-123]],[[42763,74497],[-356,374],[-228,3]],[[26308,57030],[-79,16]],[[6065,58305],[236,901]],[[51320,85257],[-349,6]],[[6883,61401],[229,44]],[[46366,94505],[-237,423],[-40,1380],[27,13]],[[18043,66188],[2,-10]],[[11984,56958],[378,-391],[632,-295]],[[18275,67729],[18,271],[-222,12]],[[46434,99493],[40,-1022],[-376,-14],[19,-819],[-47,-898],[46,-419]],[[5531,61410],[-128,20]],[[48568,73009],[295,-6],[65,171],[349,198]],[[2327,43028],[-91,415],[-481,751]],[[13277,55444],[-210,-108]],[[3817,35705],[-236,314]],[[822,41580],[-569,-273]],[[46949,75596],[-395,398],[-233,-34]],[[5257,55252],[46,-272],[-140,-459],[67,-1234]],[[47795,75421],[107,-1457]],[[16082,67057],[-24,321],[110,190],[326,67]],[[52643,74230],[-300,-856],[7,-360]],[[45438,86435],[236,-36],[193,-545]],[[2271,33417],[855,-1295]],[[12800,55061],[4,-131]],[[17489,66693],[-57,-100]],[[1572,37322],[-108,696],[177,1780],[54,302],[-138,1184]],[[26456,59837],[250,713],[9,903]],[[41090,75138],[-2,0]],[[2449,40930],[44,3]],[[41736,76134],[-300,827],[-329,1265],[-57,484]],[[278,39197],[4,54]],[[7169,65044],[252,204],[88,-92]],[[7112,61445],[148,-350],[192,-127],[44,-592],[194,-167]],[[47175,73596],[-185,-530],[-424,44],[-64,-146],[-390,6]],[[5257,55252],[42,-263],[-137,-468],[68,-1234]],[[7125,64670],[44,374]],[[39305,67128],[-85,96],[-816,-106],[-437,-464]],[[38415,70635],[-7,584],[88,8],[-22,765]],[[17432,66593],[-159,-36],[-67,336]],[[7276,65008],[-151,-338]],[[253,39105],[24,32]],[[39419,63889],[343,-142],[90,-398],[650,30]],[[5257,55252],[344,-2168],[64,-706]],[[48998,74202],[-149,-302],[-189,-93]],[[196,43529],[-118,294],[179,744]],[[18045,66178],[251,-382],[97,-420],[-92,-370],[193,-621],[256,-498],[729,-1162],[139,-441],[98,-1573]],[[41050,78710],[284,-86],[514,468],[599,30],[932,-299]],[[17746,67909],[-301,-291],[68,-540]],[[989,41856],[-258,66],[-284,-144],[-137,157]],[[293,41997],[-84,2]],[[1652,31514],[149,670]],[[7657,59450],[2,7]],[[16005,67051],[2,-1]],[[3582,31549],[-24,483],[459,-263]],[[2271,33417],[-687,3906],[-12,-1]],[[36297,72580],[138,49],[-34,713]],[[17426,65610],[27,-50]],[[4683,40613],[-138,79]],[[6065,58305],[-169,-762]],[[24275,72861],[-221,-265],[-456,-98],[-81,-99],[-213,-1062],[-1,-925]],[[6301,59206],[398,58]],[[949,42323],[-102,-197],[255,-615],[330,-324],[125,97]],[[51626,86116],[14,-384]],[[45867,85854],[428,-452],[62,-695],[74,-29],[266,-875],[-10,-421]],[[1102,45896],[-182,126],[-384,-352],[23,-428]],[[2567,40451],[-74,369],[102,161]],[[5655,60215],[-126,-30]],[[50787,87061],[-146,-299],[-53,-452]],[[47393,90022],[68,-198],[-473,-178],[-703,-46]],[[46285,89600],[-225,-100]],[[49277,73372],[3,-82],[618,-55],[596,-270],[274,-52]],[[51399,83395],[356,204],[564,1],[665,763],[429,302],[3,136]],[[42563,95249],[2,906],[149,444],[262,270],[63,337],[320,653],[56,-59],[287,802],[269,101]],[[17453,65560],[-164,395]],[[47795,75421],[40,62]],[[340,39200],[-39,-36]],[[5729,61168],[185,79],[356,-276],[111,-199],[1057,85],[-5,-560],[455,-811]],[[48083,73300],[80,-277],[190,-22]],[[4648,40789],[-103,-97]],[[5799,60345],[23,205]],[[5719,61686],[-42,-9]],[[49277,73372],[-279,830]],[[1341,43848],[-103,-17]],[[51644,85352],[-4,380]],[[50971,85263],[-513,120]],[[54447,84310],[-533,47]],[[7620,67421],[-88,-457]],[[6476,61988],[96,-20]],[[283,44064],[272,493]],[[36950,77133],[5,-9]],[[18051,66181],[-363,-128],[-11,-299],[-251,-144]],[[51512,76086],[-182,-7]],[[47271,88770],[665,-214],[1157,18],[344,261],[445,891]],[[45745,87045],[426,873],[747,694],[353,158]],[[1102,45896],[77,172],[-121,1139],[-295,255]],[[15093,42694],[-332,120]],[[6181,61903],[-73,278],[82,224]],[[2436,41312],[-46,519],[584,311]],[[38792,76277],[-710,474],[-1104,370]],[[36961,70787],[13,-292]],[[51644,85352],[498,55],[168,488]],[[51360,88990],[-395,149],[-801,565],[-282,22]],[[18043,66188],[-381,-140],[-17,180]],[[51639,76088],[-2,-5]],[[5375,59039],[-124,-576],[-94,-992],[2,-528]],[[38281,63796],[196,-157]],[[13478,59042],[-78,-47],[-677,450],[-463,56],[-791,-169],[-534,34],[-761,210],[-298,-256],[-612,447],[-237,-44],[-418,89],[-322,422],[-232,108],[-365,-133]],[[3160,40943],[-290,423],[-410,-122]],[[41834,67561],[-260,-393],[61,-462],[5,-919],[-97,-7],[4,-1262],[-52,-516],[-392,-433],[-368,-29],[-233,-161]],[[47845,86287],[-196,-17]],[[220,39011],[-5,749],[-120,460]],[[5195,56932],[-36,11]],[[46599,83791],[155,120]],[[13493,53889],[176,-158]],[[46321,75960],[119,-154]],[[51934,72877],[-88,-111]],[[51846,72766],[-248,-416],[-1206,22],[-1087,129]],[[13611,55581],[-220,294]],[[5299,60065],[88,-363],[97,24]],[[2799,40817],[135,-87]],[[24885,60314],[-98,122],[-79,866],[-404,505],[-119,1379],[46,1092],[-54,1026],[-395,-136]],[[355,39308],[-12,-20]],[[44690,89988],[556,-106],[411,3]],[[29307,73373],[477,-31],[443,387],[525,-164],[265,-247],[217,40],[466,-240],[728,271],[699,-37],[103,-535]],[[45438,86435],[280,-111]],[[11435,40768],[-381,1588],[-499,1327]],[[2595,40981],[-83,-295]],[[5822,60550],[31,184]],[[18106,66671],[133,373],[-249,223]],[[45056,87625],[62,175],[-201,32]],[[48083,73300],[-143,-324]],[[28089,73896],[106,438],[365,1024]],[[41367,75055],[-289,-8],[-304,-430],[-353,104]],[[5377,59111],[-2,-72]],[[47367,80576],[583,-1317]],[[36853,67872],[-175,145],[-385,-55],[-285,283],[-601,303],[-23,486],[-782,1141],[-50,905],[-454,1204],[-621,-85],[-247,618]],[[2900,49023],[-404,18],[-884,-854],[-455,-307],[-394,-418]],[[28895,76043],[-128,-24],[-3,-863],[148,-162],[298,-699],[97,-922]],[[17993,67217],[-4,62]],[[5800,60810],[29,33]],[[23782,65168],[395,140],[20,176],[-92,1058],[53,1077],[-205,642],[-51,381],[-250,820],[-349,950]],[[1572,37322],[298,-1640],[203,188]],[[17728,66896],[26,-283]],[[46863,84008],[421,-499],[345,-680],[106,-81]],[[18464,69614],[-412,-119],[-35,-134]],[[44885,86569],[174,407],[-3,649]],[[11027,40536],[408,232]],[[5800,60810],[29,33]],[[46576,73968],[180,-242],[333,34],[86,-164]],[[47175,73596],[160,-201]],[[52819,77096],[7,-13]],[[37170,67971],[-317,-99]],[[3798,42548],[-833,935]],[[47783,74787],[-7,-143]],[[47776,74644],[4,-152]],[[13557,58878],[41,-257],[-430,-1181],[-92,-747],[315,-818]],[[47049,74809],[302,32],[85,-198]],[[16455,66181],[-355,-790],[-209,-198],[-269,-467],[-636,-381]],[[13391,55875],[-153,-67],[-58,-382]],[[17634,69031],[-4,-1]],[[18045,66178],[6,3]],[[48412,74314],[94,667]],[[36892,80438],[2,72]],[[17432,66593],[-158,-38],[88,-579],[-73,-21]],[[5422,51397],[-220,0]],[[11358,54114],[495,931],[273,669],[99,410],[181,318],[396,-85],[307,-187],[282,-295]],[[12937,55425],[231,379],[223,71]],[[2574,41850],[400,292]],[[9005,62409],[-75,-19]],[[196,43529],[-43,305],[130,230]],[[47780,74492],[27,-132]],[[1755,44194],[31,-340]],[[1575,53685],[383,135],[231,214],[465,87],[442,170]],[[13067,55336],[-9,-208]],[[15093,42694],[-336,-349],[-574,-340],[-71,-176],[-859,-311],[-186,-337]],[[3126,32122],[-647,905],[-208,390]],[[2793,40838],[6,-21]],[[4946,56539],[-27,-54]],[[4919,56485],[-16,-14]],[[4903,56471],[0,0]],[[42771,74471],[-73,-451],[-152,-16],[18,-503],[103,-475]],[[2817,37116],[245,149],[-170,1337],[-159,1016]],[[4125,59104],[-406,-532],[-113,-376],[-434,-397],[-280,-28],[-20,146]],[[48746,73413],[257,-201],[275,142]],[[49278,73354],[1,0]],[[49279,73354],[-2,18]],[[12706,55325],[-158,-360],[-7,-394]],[[3366,54416],[211,128]],[[3577,54544],[136,-31],[556,170]],[[2955,41279],[-297,53]],[[50165,73365],[-1,1]],[[51360,88990],[-84,-542],[12,-785],[170,-512]],[[47780,74492],[-5,152]],[[47775,74644],[-262,13]],[[38307,70632],[3,-2]],[[39922,75455],[187,-93],[979,-224]],[[47902,73964],[-107,1457]],[[17453,65560],[224,194],[11,299],[363,128]],[[18051,66181],[163,524],[-108,-34]],[[682,44072],[171,-134],[-15,-302]],[[828,43495],[-58,-329],[532,-283],[58,-195]],[[6165,48789],[-446,151],[-651,-168],[-567,-260],[-184,31],[-47,237]],[[2512,40686],[39,-3]],[[1546,42925],[-6,-516]],[[6649,38710],[571,-514],[158,-319],[281,-220],[952,-592],[245,-286],[476,-148],[192,95],[744,-431],[121,-218],[420,-193],[192,20],[465,-344],[181,-267]],[[3366,54416],[211,128]],[[3577,54544],[692,139]],[[19663,73112],[-242,104],[-125,299],[-192,43]],[[16811,66998],[-146,-191],[-419,-1310],[-250,-2063],[-105,-580],[-513,-920],[-193,-785],[-8,-645],[50,-1334]],[[38563,74439],[-105,-1000],[2,-871]],[[16082,67057],[-276,222],[-408,550],[-759,372]],[[48696,71995],[547,-1214]],[[47789,74999],[6,422]],[[820,45740],[-261,-498]],[[17436,67141],[187,224]],[[51458,87145],[107,-11]],[[37169,67967],[1,4]],[[2271,33417],[-225,-129],[44,-729],[118,-472]],[[49582,89385],[32,303],[268,38]],[[1258,46245],[-156,-349]],[[6572,61968],[184,-328],[356,-195]],[[6572,61968],[208,338],[445,82],[79,205],[458,179]],[[2817,37116],[-70,-892],[-27,-1556],[166,-1303],[240,-1243]],[[51458,87145],[106,-16]],[[39419,63889],[47,367],[7,1037],[-81,493],[88,210],[-145,366],[-30,766]],[[42179,74874],[-812,181]],[[253,41307],[119,-1005],[-170,-482],[80,-569]],[[17206,66890],[-32,219]],[[47436,74643],[3,-2]],[[47439,74641],[1,1]],[[47440,74642],[-347,479],[-156,518],[-383,355],[-233,-34]],[[7216,61161],[13,1]],[[19250,43288],[-418,-119],[-215,294],[-86,749],[33,718],[-202,765],[-319,472],[-117,1020],[-336,763],[-147,168],[-119,853],[-527,580],[-309,650],[-137,602],[-88,61]],[[16263,50864],[-53,1]],[[16210,50865],[-125,178]],[[16085,51043],[-81,115]],[[16004,51158],[-111,36]],[[15658,51533],[-232,353],[-893,1057],[-343,183],[-489,500],[-66,501],[-311,785],[-54,678],[-185,131]],[[13085,55721],[-68,420]],[[13017,56141],[-340,184]],[[12677,56325],[-317,128],[-186,248]],[[12174,56701],[-297,32]],[[11877,56733],[-156,-50],[-582,153],[-667,403],[-338,263],[-434,568]],[[9700,58070],[-531,443]],[[9169,58513],[-158,193],[-491,335]],[[8520,59041],[-196,30],[-320,299]],[[8004,59370],[-150,50]],[[7842,59462],[-185,-12]],[[301,39113],[-21,4]],[[1575,53685],[181,-130],[442,-645],[934,-913],[302,-664]],[[46754,83911],[-155,-120]],[[4659,59403],[-313,379],[-288,-8]],[[2934,40730],[205,-2]],[[41736,76134],[22,616],[271,174],[186,293],[214,740],[308,105],[107,337],[391,140],[11,308],[133,-24]],[[48506,74981],[-239,0]],[[37286,69113],[-290,-64]],[[36996,69049],[-167,-21],[24,-1156]],[[5436,48054],[2,1038],[64,290],[170,1911],[-250,104]],[[43490,88465],[-1373,-655]],[[40421,74721],[-355,-295]],[[11969,62566],[642,-2585]],[[49819,82593],[-147,-661],[-191,-187],[-498,-1364]],[[206,44830],[99,280],[254,132]],[[40535,80565],[-548,-41],[-758,45],[-99,184],[-793,-64],[-688,-239],[-677,113],[-78,-53]],[[23642,64083],[140,1085]],[[21783,62174],[-30,25]],[[6301,59206],[-41,584],[191,567],[-97,411]],[[43690,68816],[227,-279],[377,110],[90,185],[477,-60],[131,318],[474,139],[318,752],[269,813],[-203,-2],[64,188],[824,1210],[239,-324],[361,81]],[[1102,45896],[-282,-156]],[[17990,67267],[-324,-149]],[[5159,56943],[6,-1105],[92,-586]],[[5362,49309],[493,-113]],[[1503,44160],[283,-306]],[[46576,73959],[0,9]],[[37154,76362],[-314,120],[-269,426],[34,279]],[[7157,47556],[161,451]],[[38257,69252],[-446,-181],[18,-556],[-594,-526],[-382,-94]],[[36853,67895],[0,-23]],[[17289,65955],[-264,54],[-381,-108],[-94,142],[-53,484],[-412,375]],[[6346,61963],[-165,-60]],[[16811,66998],[-194,-88],[-237,1499],[-140,172]],[[6190,62405],[-90,128]],[[555,44557],[431,64],[470,-379],[299,-48]],[[51564,87129],[585,-110]],[[1786,43854],[84,-90],[-6,-448],[-187,-749],[98,-102],[-161,-759],[98,-1595],[-210,-1766],[-26,-638],[252,-1313],[351,-2066],[-25,-950]],[[42563,95249],[339,-357],[-23,-604]],[[45805,86554],[-87,-230]],[[17912,61928],[236,-276],[191,33]],[[51518,75526],[-109,-472],[-204,199]],[[7748,53592],[-197,579],[57,1572],[97,437],[-9,1513]],[[7125,64670],[-129,-438],[-216,-327]],[[26160,53267],[-155,412],[-210,186],[-216,520],[-89,522],[78,558],[367,278]],[[21025,73722],[-90,1001],[-289,799]],[[38664,63705],[-3,0]],[[53266,74102],[-112,285]],[[5221,57903],[32,581],[122,555]],[[39419,63889],[-135,-405],[-812,-127],[-404,170]],[[21782,62173],[-29,26]],[[5953,61130],[-104,350],[-318,-70]],[[52912,76139],[-405,-175],[-350,15],[-377,-352],[-262,-101]],[[18043,66188],[2,-10]],[[1508,43761],[-115,165]],[[2567,40451],[253,-89]],[[47028,84975],[211,-331]],[[4269,54683],[236,428],[155,444],[242,362],[-108,702],[86,199],[110,692],[214,266],[29,473],[363,248],[387,138],[229,244],[89,327]],[[4269,54683],[664,366]],[[277,39137],[1,12]],[[54743,83897],[2,27]],[[44286,98602],[-64,248],[-251,-147]],[[2097,32466],[-43,912]],[[2900,49023],[-277,-1143],[-208,-536]],[[40445,74963],[5,0]],[[5896,57543],[165,777],[240,886]],[[12612,54983],[-81,-219],[113,-771]],[[6190,62405],[193,-39]],[[18824,44571],[-342,-76],[-623,-617],[-166,-39],[-423,186],[-85,163],[-423,-124],[-345,52],[-874,-323]],[[12706,55325],[33,341]],[[51330,76079],[-568,-786],[-616,-3],[-98,-141],[-636,-86],[-416,72],[-104,-130]],[[4270,48780],[-137,-585],[-506,-1476]],[[45718,86324],[87,230]],[[13150,55559],[-60,143],[301,173]],[[6791,63571],[-11,334]],[[6791,63571],[-11,334]],[[48983,80381],[103,-27],[278,-546],[114,-361]],[[6883,61401],[229,44]],[[17993,67217],[-40,-189]],[[35103,73389],[-7,-29]],[[17746,67909],[-302,-291],[44,-445],[-593,-89],[-84,-86]],[[13493,53889],[-47,175]],[[2327,43028],[-3,-120]],[[25885,56170],[-146,96],[-1122,338],[-85,132],[-485,310],[-899,750],[-539,201],[-963,-231],[-590,152],[-1184,234]],[[2567,40451],[273,-90],[-48,272]],[[49759,77617],[-3,1]],[[6061,60934],[129,99],[-181,320]],[[2243,47052],[-2,-12]],[[5257,55252],[289,1350],[222,354],[297,1349]],[[7696,57693],[14,1272],[-81,598],[98,35],[-37,611]],[[17897,67539],[96,-322]],[[12864,55402],[73,23]],[[763,47462],[292,-249],[76,-636],[-77,-522],[54,-149]],[[36767,63451],[107,14]],[[36874,63465],[100,63]],[[36974,63528],[40,29]],[[37289,63567],[172,-238],[626,-12],[-19,210]],[[54047,84637],[57,-287],[-236,10]],[[48998,74202],[-123,331]],[[9775,63750],[-61,-290],[-360,-440]],[[1575,53685],[379,134],[231,215],[465,87],[446,170]],[[49819,82593],[-147,-661],[-223,-267]],[[46536,82863],[183,-33]],[[17289,65955],[756,223]],[[17897,67539],[-67,226],[-338,-91],[-155,-474],[-352,-87],[-104,291],[-387,231]],[[50987,84679],[77,-7]],[[42667,73026],[115,-324],[399,-23],[1240,40],[521,-111],[338,412],[182,-153],[449,-30],[201,133]],[[1183,43580],[-90,186]],[[43902,84942],[-347,-344],[-171,-36],[-213,-362],[-307,-176],[-384,-524]],[[2493,40933],[-26,55]],[[6061,60934],[117,-558],[-205,-216],[9,283]],[[21897,72577],[209,-253],[40,-833],[182,-535]],[[41088,75138],[279,-83]],[[1046,42618],[0,6]],[[3482,32072],[100,-523]],[[47257,80861],[-416,321]],[[39305,67128],[31,-766],[144,-366],[-88,-210],[82,-493],[-8,-1037],[-47,-367]],[[51640,85732],[202,-74]],[[49237,70834],[471,-83],[710,27],[415,-43]],[[17458,29383],[253,717],[-154,1032],[-373,-29],[-219,597],[-366,461],[-203,1145],[-144,566],[-282,493],[-560,668],[-421,36],[-198,-246],[-801,-113]],[[48119,73966],[-217,-2]],[[5480,59601],[4,125]],[[47940,72976],[143,324]],[[49714,79655],[31,-1539],[126,-221]],[[40421,74721],[29,242]],[[2415,47344],[-81,-198]],[[16811,66998],[-173,-147]],[[7216,61161],[-104,284]],[[3160,40943],[-21,-215]],[[14387,65869],[604,77],[127,-114],[650,267],[13,356],[149,486],[155,-39]],[[28834,63006],[-108,108],[31,313],[383,45],[57,-152]],[[12644,53993],[226,122]],[[6770,62698],[-73,560],[83,647]],[[5480,59601],[17,1]],[[13067,55336],[50,177],[-128,730]],[[17289,65955],[-28,700],[-158,440],[-292,-97]],[[47783,74787],[246,-233]],[[17359,66246],[-142,-27]],[[16811,66998],[363,111]],[[37552,76471],[286,-177],[1110,-370],[-71,-328]],[[49478,79447],[-115,361],[-277,546],[-103,27]],[[5468,61279],[63,131]],[[13611,55581],[-220,294]],[[5729,61168],[185,78],[356,-276],[111,-199],[1053,81],[-2,-555],[456,-811]],[[40421,74721],[174,144]],[[1360,42688],[-65,580],[-112,312]],[[47835,75483],[-40,-62]],[[6190,62405],[-90,128]],[[38415,70635],[-108,-3]],[[1551,43146],[-1,388]],[[1550,43534],[-112,567]],[[4180,40824],[-323,-22]],[[46576,73968],[150,344]],[[13990,34710],[-356,17],[-316,-111],[-257,308]],[[2567,40451],[50,-227],[-290,-1150]],[[1360,42688],[-245,-94],[-414,336]],[[1488,38301],[207,1799],[-138,1184]],[[36974,70495],[396,154],[402,45]],[[46060,89500],[85,-373]],[[7696,57693],[14,1272],[-82,598],[99,36],[-37,610]],[[2791,40229],[-201,156],[299,-1871],[92,-1265],[-269,-706],[-89,-970],[-216,-964],[-136,-1192]],[[17289,65955],[-264,52],[-388,-109],[-38,-438],[-373,-107],[-229,-1919],[-106,-581],[-512,-919],[-193,-786],[-8,-644],[56,-1342],[42,-286],[-133,-856],[-346,-840],[-783,-745],[-433,-166],[-190,-394]],[[5799,60345],[23,205]],[[51458,87145],[0,6]],[[12570,64907],[-157,251],[-112,-223],[-551,-220],[-197,-336],[-298,-267],[-572,-10],[71,-145]],[[25935,55743],[-261,-109],[-275,-443],[-424,-351],[-382,50],[-534,-213],[-492,34],[-382,398],[-622,-72]],[[46863,84008],[-126,423]],[[36959,70786],[2,1]],[[39314,62390],[-96,33]],[[13595,52559],[73,-1747],[136,-165],[696,-1778],[139,-1095],[-163,-815],[-633,-458],[-40,-189],[139,-1029],[205,-717],[-54,-349],[77,-324],[132,-36],[459,-1043]],[[39419,63889],[342,-143],[83,-402]],[[40066,74426],[95,-93],[-91,-917],[-270,-43]],[[18874,70973],[-207,50],[-680,-230],[-90,-353]],[[13685,61462],[40,-244],[-89,-1164]],[[6017,60170],[153,343]],[[5484,59726],[147,208]],[[17630,69030],[226,92],[161,239]],[[54690,84314],[26,-260]],[[2493,40933],[-26,55]],[[52310,85895],[-1,5]],[[26004,55738],[-379,910],[-297,2410],[-127,669],[-316,587]],[[30006,65194],[-50,11]],[[50046,82441],[-227,152]],[[5867,60948],[87,193]],[[25935,55743],[69,-5]],[[39844,63344],[-200,-67]],[[7229,61162],[-2,172],[532,251],[29,-181]],[[2054,33378],[233,5],[743,-1145],[366,-1605],[297,-27],[108,-273],[231,76],[395,-496],[474,-1262],[80,-757],[-68,-179]],[[257,44567],[-31,446],[333,229]],[[48506,74981],[-94,-667]],[[5257,55252],[41,-282]],[[5298,54970],[-107,-112]],[[323,39122],[-22,42]],[[47436,74643],[359,778]],[[257,44567],[-51,263]],[[4120,39950],[-301,245],[-417,654],[-250,88]],[[23782,65168],[395,138],[22,177],[-93,1058],[53,1079],[-205,642],[-51,382],[-249,819],[-243,566],[-129,634],[-99,93],[-51,531],[-1423,1178],[-264,-25],[-64,137],[-965,807],[-602,-72],[-151,-200]],[[49871,77895],[-546,-30],[-402,-542]],[[36274,72430],[71,-441]],[[45110,69662],[-85,-503],[-624,-127],[-243,-191],[-468,-25]],[[26467,56950],[-159,80]],[[46730,84420],[133,-412]],[[47436,74643],[-343,478],[-140,452],[-406,34]],[[46547,75607],[-31,-53]],[[2595,40981],[63,351]],[[17448,65445],[-22,165]],[[1536,42011],[21,-727]],[[2200,32547],[34,123]],[[50046,82441],[137,1089],[275,1853]],[[7284,66453],[284,-265],[249,97],[-56,401],[-229,278]],[[5375,59039],[-96,151],[-328,-111],[-251,135],[-41,189]],[[47513,74657],[-73,-15]],[[47440,74642],[-4,1]],[[47682,74584],[-169,73]],[[9350,63017],[-148,-224]],[[18586,67710],[-689,-171]],[[38319,63565],[14,-989],[130,-234],[28,-779],[158,17],[69,-1557],[263,-71],[191,-562],[357,-399]],[[13501,53906],[-127,363],[-472,-81]],[[25910,73599],[303,-124],[349,-679]],[[40535,80565],[204,484],[-7,220],[489,726]],[[51243,79676],[81,-485],[330,-597],[409,-397],[264,-460]],[[52327,77737],[499,-680]],[[18042,69440],[-160,-62],[-248,-347]],[[50892,85723],[292,27]],[[7657,59450],[51,-487],[10,-1296],[838,322],[110,97],[259,-212],[461,437],[189,-159],[414,76],[340,-176],[136,-275],[669,-547],[120,56],[657,-241],[344,-259],[102,-292],[256,-169],[376,-82]],[[38415,70635],[-1,-6]],[[750,43189],[161,40]],[[12719,54488],[-109,-215],[34,-280]],[[45745,87045],[61,473],[-441,1038]],[[45365,88556],[-266,625]],[[45099,89181],[-409,807]],[[46495,93410],[-25,918],[-104,177]],[[19250,43288],[-418,-121],[-266,399],[-873,272],[-423,186],[-85,163],[-423,-125],[-345,53],[-1041,-391],[-310,-442],[27,-588]],[[6180,60473],[-119,461]],[[36894,80510],[-15,-458],[181,-221]],[[49514,72695],[0,0]],[[23303,70412],[-121,343],[-51,531],[-1422,1178],[-264,-25],[-500,510]],[[3102,31643],[110,41]],[[28560,75358],[208,41],[11,410]],[[375,39246],[-38,23]],[[7284,66453],[-16,-369],[89,-622],[-220,-469],[-12,-323]],[[44761,69948],[-269,-134],[-339,-687],[-435,-158],[-28,-153]],[[42879,94288],[55,-636],[318,-740],[221,-310],[8,-425],[353,-545],[124,-74],[5,-310],[122,-40],[68,-455],[333,-310],[204,-455]],[[7125,64670],[-129,-438],[-216,-327]],[[51644,85352],[-324,-95]],[[44698,72592],[14,-977]],[[37170,67971],[-99,6],[-75,1072]],[[36996,69049],[-22,1446]],[[3425,31919],[57,153]],[[47795,75421],[-11,650],[109,1500]],[[17656,66597],[-11,-369]],[[7888,59486],[-231,-36]],[[13277,55444],[114,431]],[[16085,66902],[279,-205],[588,411],[222,1]],[[39844,63344],[-425,-199]],[[35009,73451],[3,0]],[[14461,59387],[-131,292]],[[6770,62698],[113,-1297]],[[9005,62409],[-480,-143],[-603,-420],[-313,-352]],[[7169,65044],[255,449],[19,396],[124,128]],[[3798,42548],[-1,0]],[[8930,62390],[-6,0]],[[4125,59104],[-180,313]],[[3055,40900],[84,-172]],[[48640,73748],[106,-335]],[[36957,77143],[-7,-10]],[[47175,73847],[-1,107]],[[3798,42548],[-833,935]],[[53672,71274],[-171,444],[-449,242],[-11,230],[-345,440],[45,181],[-391,203]],[[17621,66979],[-132,-286]],[[18718,68060],[41,519]],[[3918,51133],[141,-776]],[[4365,40736],[-318,173],[-190,-107]],[[47995,78841],[-45,418]],[[5314,58414],[39,288],[180,181],[-51,846],[-154,145]],[[2327,39074],[-9,-355],[-225,-385],[-618,-442],[2,-185],[252,-1313],[351,-2066],[-26,-950]],[[17289,65955],[-28,701],[-171,465],[-106,-10],[-43,396],[167,174],[161,739],[-26,357]],[[1633,42468],[-92,-54]],[[17630,69030],[136,-1283],[62,13]],[[1755,44194],[-299,48],[-616,412]],[[5480,59601],[53,-718],[-179,-182],[-40,-287]],[[17453,65560],[390,-784],[183,-734],[-23,-686]],[[48923,77323],[-353,-465],[-652,-1062],[-123,-375]],[[29371,62171],[287,8],[66,234],[373,239],[714,782],[967,346],[405,-161]],[[12654,54706],[65,-218]],[[5655,60215],[-39,270]],[[47338,71947],[47,-551],[220,-80],[3,-205],[257,-45],[570,63],[-1,334],[164,183],[98,349]],[[5982,60443],[-160,-431],[-342,-411]],[[6358,61164],[-22,129],[381,344],[395,-192]],[[4078,53801],[191,882]],[[6354,60768],[-88,198],[-205,-32]],[[3179,44694],[-214,-1211]],[[42725,72719],[0,-48],[1696,49],[521,-112],[338,413],[182,-154],[449,-29],[201,132]],[[7250,66257],[54,-420],[-111,46]],[[48348,72459],[348,-464]],[[33233,74275],[25,-147],[-392,-153],[-38,-291]],[[4659,59403],[-313,380],[-288,-9]],[[5337,30125],[55,389]],[[50588,86310],[53,452],[146,299]],[[38477,63639],[187,66]],[[13958,62634],[-78,-530]],[[21025,73722],[-504,-206],[-199,183],[-205,-55]],[[3241,36613],[-11,15]],[[3230,36628],[-244,715],[-104,1379],[-149,896]],[[18590,69098],[-160,269]],[[5930,61960],[79,-607]],[[5847,61488],[214,-554]],[[13067,55336],[210,108]],[[2097,32466],[-208,-45],[-88,-237]],[[10754,63957],[-155,67],[-656,-283],[-521,-704],[-72,-20]],[[1572,37322],[126,-645]],[[2334,47146],[-59,-122],[8,-1286],[-146,-756],[-362,-723],[11,-405]],[[8958,58661],[-235,-549],[-561,-280]],[[16494,67635],[-116,772],[-138,174]],[[5159,56943],[7,-1105],[91,-586]],[[47940,72976],[-428,-57],[6,-383]],[[6301,59206],[-115,-337],[-204,-231],[-386,-139],[-364,-249],[-29,-473],[-214,-265],[-110,-694],[-86,-199],[108,-702],[-241,-361],[-155,-445],[-236,-428]],[[5830,37996],[250,281],[47,239]],[[46440,75806],[76,-252]],[[49714,79655],[332,2786]],[[19207,60604],[221,-153],[344,-27],[258,-136],[316,105]],[[283,44064],[272,493]],[[1572,37322],[-107,697],[177,1779],[53,302],[-138,1184]],[[45867,85854],[-85,-44]],[[38415,70635],[-98,-201]],[[1592,42881],[-46,44]],[[51064,84672],[-77,7]],[[48411,73193],[157,-184]],[[35396,66970],[142,-163]],[[12994,56272],[-282,834],[-224,274],[-699,655],[-784,474],[-496,154],[-592,530],[-155,227],[-475,357],[-258,-49],[-414,84],[-307,421],[-249,114],[-369,-138]],[[12706,55325],[158,77]],[[4195,42236],[-191,26],[-206,286]],[[17174,67109],[262,32]],[[47718,78345],[-542,-643]],[[9824,59297],[-93,156],[-726,589],[-482,-3],[-833,170]],[[32828,73684],[20,-312],[186,-205],[12,-518],[-111,-39]],[[2097,32466],[-59,524],[42,1338],[-352,2066],[-251,1313],[-2,185],[618,443],[225,384],[9,355]],[[9350,63017],[4,3]],[[38662,63654],[-22,6]],[[38640,63660],[-321,-95]],[[12994,56272],[397,-397]],[[41834,67561],[486,28],[342,322],[348,44],[118,249],[444,268],[118,344]],[[52350,73014],[345,-384],[-64,-175],[-55,-939]],[[17993,67217],[-4,62]],[[51518,75526],[-2,-343],[-317,-376],[-506,-244],[-155,-189],[-507,-215],[-357,-69],[-397,-718]],[[18589,69464],[-125,150]],[[12566,64908],[4,-1]],[[12994,56272],[-116,290],[132,791],[-71,401],[77,137],[91,905],[365,241]],[[54716,84054],[-60,-194]],[[337,39269],[-55,-18]],[[4643,49921],[-31,54],[-1643,-671],[-69,-281]],[[36959,70786],[-205,-70]],[[1360,42688],[-35,53]],[[1325,42741],[-343,-77],[-281,266]],[[47910,84841],[-473,-135],[-118,-275]],[[19323,73313],[-146,183],[-182,-46],[-257,-460],[-45,-366],[-138,-29],[-341,-768],[-349,-1508],[-155,-383],[-438,-581],[-29,-578]],[[3867,35697],[183,-212]],[[45745,87045],[-448,-733],[-755,91]],[[1393,43926],[-52,-78]],[[3581,36019],[-27,7]],[[3554,36026],[-12,32]],[[3542,36058],[-126,211]],[[6572,61968],[210,291],[101,-858]],[[42417,69293],[202,100],[-11,718],[72,905],[-82,124]],[[3821,55220],[116,-411],[332,-126]],[[2974,42142],[-584,-310],[46,-520]],[[196,43529],[-30,419],[117,116]],[[17174,67109],[324,-40]],[[17700,66993],[28,-97]],[[48412,74314],[-105,-197]],[[4992,28050],[-128,1054],[-207,612],[-862,1247],[-387,264],[-136,296],[-146,599]],[[1755,44194],[-158,-776],[-5,-537]],[[52939,73810],[-198,-999],[-391,203]],[[3490,38329],[-575,-36],[-182,1325]],[[15543,43793],[-403,-303],[-75,-208],[28,-588]],[[2969,42163],[5,-21]],[[46576,73968],[-549,-323],[-585,-451],[-532,-559],[-212,-43]],[[5409,59015],[-607,-36],[-150,-146],[-304,55],[-223,216]],[[6301,59206],[-107,168],[-236,-204],[-482,-205],[-67,50]],[[10080,67700],[201,-308],[196,103]],[[10080,67700],[36,292]],[[46841,81182],[-274,-34],[-164,-240]],[[41221,81995],[246,205],[134,580],[319,-82],[212,160],[348,642]],[[2965,43483],[132,-97],[-123,-1244]],[[17280,65957],[-247,57],[-389,-111],[-93,141],[-54,484],[-263,329],[-149,45]],[[54743,83897],[-9,193]],[[38415,70635],[-18,-1203],[-140,-180]],[[22328,70956],[73,-384]],[[54442,85165],[-16,-62]],[[18051,66181],[-126,99]],[[5954,61141],[-105,350],[131,177]],[[28834,63006],[-136,190],[-264,1522],[-244,1251],[-268,567],[-10,807],[-119,1534],[-92,741],[122,3177],[135,352],[131,749]],[[39614,68629],[250,489],[-15,407],[331,34],[5,227]],[[53267,75023],[-594,142]],[[38664,63705],[250,-768],[400,-547]],[[50159,82705],[-113,-264]],[[5655,60215],[-126,-30]],[[6649,38710],[-424,265]],[[21966,55596],[-798,-252],[-632,-883],[-138,-451]],[[35103,73389],[-7,-29]],[[13557,58878],[904,509]],[[50787,87061],[3,26]],[[38664,63705],[5,3]],[[52826,77057],[209,-257],[182,-663],[-22,-548]],[[16082,67057],[3,-155]],[[36950,77133],[7,10]],[[13611,55581],[-220,294]],[[17953,67028],[-9,194],[295,-178],[20,-189],[-216,-667]],[[12644,53993],[-74,-216]],[[18043,66188],[8,-7]],[[4269,54683],[-416,-1924],[-179,-715],[-240,-711]],[[50588,86310],[127,-471],[177,-116]],[[21975,63459],[555,265],[464,331],[648,28]],[[40314,75312],[1053,-257]],[[46321,75966],[0,-6]],[[6301,59206],[-282,960],[161,307]],[[3434,51333],[-79,-420],[-395,-1311],[-134,-301],[-127,-754],[-152,-317],[-213,-1084]],[[13180,55426],[-49,-79]],[[37480,65600],[69,-344],[45,-1116],[56,-337],[137,16],[281,-292]],[[4180,40824],[-133,87],[-883,-73],[-4,105]],[[840,44654],[49,323]],[[1183,43580],[115,-313],[62,-579]],[[30213,60669],[25,328],[-325,554],[-21,344],[-346,310],[-175,-34]],[[2900,49023],[81,118]],[[13087,54907],[-29,221]],[[750,43189],[64,53],[49,633]],[[7532,66964],[229,-279],[36,-352]],[[5822,60550],[93,569],[-56,250],[118,329],[-43,296]],[[17436,67141],[187,224]],[[30417,61105],[-26,119]],[[6259,57102],[-249,977],[291,1127]],[[54460,84856],[-137,-136],[-167,307],[-738,-70],[-2,-156]],[[13067,55336],[20,-429]],[[47513,74657],[-74,-16]],[[47439,74641],[-3,2]],[[4659,59403],[-138,-505],[-173,-9],[-223,215]],[[27751,74700],[4,0]],[[40909,62392],[-220,-29],[-254,280]],[[47972,73598],[111,-298]],[[21753,62199],[-1473,1603],[-239,187],[-271,413]],[[18874,70973],[-359,-105],[-174,-224]],[[1557,41284],[-167,399]],[[43379,78823],[567,1],[229,-228],[13,-517],[541,-491]],[[47104,91824],[17,-210],[562,-743],[60,-380]],[[29416,62033],[1,-1]],[[4545,40692],[-180,44]],[[18461,67392],[340,-13]],[[5830,37996],[57,-876],[244,-316],[11,-387]],[[26004,55738],[7,7]],[[2335,43304],[-580,890]],[[13277,55458],[114,417]],[[54426,85103],[8,-7]],[[36978,77121],[-28,12]],[[51640,85732],[4,-380]],[[12994,56272],[24,37]],[[14761,42814],[-150,-545],[-438,-270],[-65,-160],[-856,-321],[-140,-321],[-276,-155],[-64,-961],[113,-396],[-9,-509],[80,-617],[160,-414],[85,-634],[-297,-280],[-222,-76],[-146,-388],[118,-165],[133,-650]],[[46441,75816],[-1,-10]],[[18275,67729],[18,271],[-222,12]],[[46112,72970],[389,-6],[65,147],[424,-45],[185,530]],[[5299,60065],[87,-363],[98,24]],[[14986,64345],[-899,-1091],[-129,-620]],[[18051,66181],[-163,-72],[-92,189]],[[38792,76277],[1105,-736],[25,-86]],[[47950,79259],[-583,1317]],[[18211,67333],[50,-478],[-216,-677]],[[42667,73026],[-433,343],[-816,-127]],[[48083,73300],[265,-841]],[[2979,37601],[-162,-485]],[[2244,45213],[-489,-1019]],[[50588,86310],[-130,-927]],[[50458,85383],[513,-120]],[[5299,60065],[-88,-75]],[[25885,56170],[-956,1717],[-1233,1640],[-601,524],[-512,965],[-575,767],[-226,390]],[[8130,40666],[-461,-299],[-347,-75],[-235,364]],[[5954,61141],[176,-301],[40,-327]],[[2327,43028],[-8,-240],[183,-571],[165,-880],[204,28],[281,-428]],[[47138,83366],[-74,-588]],[[1572,37322],[-108,688],[24,291]],[[18399,70144],[-295,-81],[-62,-623]],[[35012,73451],[14,-220],[-1668,-218],[-128,-196]],[[49773,76690],[-90,-351],[-408,-539],[-175,-502],[-208,-293]],[[40435,62643],[-18,571]],[[3434,51333],[-123,-67],[-82,-568],[-259,-974],[-224,-658],[-61,-481],[-174,-387],[-166,-716],[-11,-336]],[[45056,87625],[-52,281],[-554,-200],[-232,-522]],[[18215,59388],[509,-551],[496,-185],[521,-326],[131,-174]],[[44729,77588],[270,-191],[284,-382],[331,-644],[360,-353],[347,-58]],[[48393,85360],[7,-13]],[[5531,61410],[281,62],[-93,214]],[[5115,55088],[-182,-39]],[[4659,59403],[-313,379],[-288,-8]],[[9231,67773],[-824,-120],[-506,-260],[-36,-175],[-333,-254]],[[40066,74426],[161,59],[553,-137],[141,123],[696,-139],[-28,-390],[395,-132],[457,44],[234,119],[96,498]],[[13501,53906],[-126,364],[-315,100]],[[3212,31684],[-40,-274]],[[20235,53850],[-146,1357],[-30,1095],[-197,1863],[-303,954],[122,653],[35,939]],[[39526,67604],[-178,3],[-43,-479]],[[42480,83500],[384,524],[307,176],[213,362],[170,36],[348,344]],[[5337,30125],[550,218]],[[25893,56165],[-8,5]],[[4269,54683],[-340,128],[-270,-76],[-261,175],[-124,-60],[-558,110],[-813,-291],[-413,-379]],[[2667,48071],[-333,-925]],[[4255,48808],[15,-28]],[[54337,85251],[-9,140]],[[13472,59037],[6,5]],[[863,43875],[225,628],[-248,151]],[[4933,55049],[19,261]],[[13611,55581],[-220,294]],[[38985,74137],[664,139],[417,150]],[[46988,74456],[-167,157],[-221,949],[-84,-8]],[[4195,42236],[-191,27],[-206,285]],[[1546,42925],[5,221]],[[51819,86145],[359,42],[86,-190]],[[18045,66178],[216,677],[-50,478]],[[54593,82210],[-193,125]],[[12994,56272],[-7,37]],[[12983,56321],[-57,133]],[[12926,56454],[-217,649],[-128,184],[-807,753],[-748,455],[-523,166],[-554,498],[-220,289],[-465,318],[-237,-44],[-418,89],[-322,422],[-232,107],[-365,-131]],[[7652,59455],[5,-5]],[[44698,72592],[212,43],[532,559],[585,451],[549,323]],[[2595,40981],[68,355],[-161,881],[-184,571],[-82,655],[-450,411]],[[750,43189],[-76,-192],[46,-457],[136,-494]],[[45718,86324],[149,-470]],[[3627,46719],[-256,-862],[-192,-1163]],[[7165,66482],[119,-29]],[[4050,35485],[-233,220]],[[43971,98703],[92,-412]],[[48506,74981],[386,24]],[[24889,60313],[-4,1]],[[5375,59039],[30,-97],[552,230],[280,232],[-290,910],[35,129]],[[40185,69786],[325,-85],[213,176],[359,29],[231,-160],[30,-540],[1011,240],[63,-153]],[[16811,66998],[-173,-147]],[[17426,65610],[-137,345]],[[12994,56272],[397,-397]],[[18586,67710],[132,350]],[[6061,60934],[-108,196]],[[7158,47118],[-1,438]],[[46434,99493],[-70,506]],[[38535,60991],[-73,1351],[-128,231],[-15,992]],[[18461,67392],[340,-13]],[[7620,67421],[-88,-457]],[[2974,42142],[-400,-292]],[[5719,61686],[96,-207],[165,189]],[[8199,66683],[-409,-456],[-72,-251],[-151,41]],[[18042,69440],[-25,-79]],[[13060,54370],[-209,-78],[19,-177]],[[42667,73026],[-103,475],[-18,503],[152,17],[73,450]],[[13391,53909],[102,-20]],[[46949,75596],[0,12]],[[54434,85096],[-8,7]],[[46726,74312],[110,287],[152,-143]],[[26715,61453],[-463,-146]],[[5799,60345],[-94,-17],[-221,-602]],[[9005,62409],[-299,121],[-83,-109],[-469,-130],[-392,481]],[[13180,55426],[62,387],[149,62]],[[54738,84087],[-4,3]],[[50970,86129],[-75,6],[-108,926]],[[2066,32381],[31,85]],[[38911,76194],[-119,83]],[[46863,84008],[448,416]],[[22401,70572],[263,149],[440,-440]],[[18759,68579],[30,338],[-76,465],[-124,82]],[[2900,49023],[-275,-1134],[-291,-743]],[[51740,76730],[-139,-298]],[[4059,50357],[80,-322]],[[18045,66178],[-83,-298]],[[45657,89885],[350,1570],[-1,337],[209,873],[280,745]],[[18275,67729],[18,-378],[168,41]],[[44712,71615],[-104,-50]],[[46321,75960],[-100,-215],[-23,-745],[231,-524],[79,-541],[68,33]],[[5887,30343],[148,222]],[[49882,89726],[-396,-900]],[[5631,59934],[-147,-208]],[[1108,45906],[197,-383],[450,-1329]],[[44683,89032],[-81,50],[-427,-275]],[[44175,88807],[-477,-254]],[[6847,56371],[-360,469],[-88,290],[-344,632],[-180,658],[-333,376],[-58,930]],[[3126,32122],[-855,1295]],[[13391,55875],[-223,-65],[105,-218],[18,-651],[335,-805],[-133,-247]],[[7193,65883],[-9,-729],[-101,-200]],[[18430,69367],[8,-197],[-324,-153],[-57,-152],[-400,-99],[89,-857]],[[44698,72592],[-6,70],[-823,705],[-661,680]],[[47651,77106],[373,-388],[189,-388],[34,-640]],[[42763,74497],[1107,-1129],[823,-706],[5,-70]],[[48923,77323],[-463,-1337],[110,-711],[-64,-294]],[[19663,73112],[-24,153],[-316,48]],[[19698,68066],[60,-77]],[[19758,67989],[53,-350]],[[19811,67639],[156,-118],[27,-406],[314,-453],[52,-772],[138,-773],[-72,-525],[99,-472],[159,-191],[145,-420]],[[20829,63509],[117,-156]],[[20946,63353],[147,80]],[[21093,63433],[485,94],[204,-113],[357,99],[855,544],[648,26]],[[39800,73373],[498,-85],[200,173],[920,-219]],[[1786,43854],[13,244]],[[1799,44098],[-17,129],[462,986]],[[2672,44882],[-181,43],[-247,288]],[[17432,66593],[224,4]],[[5159,56943],[6,-1105],[92,-586]],[[28560,75358],[-218,-576],[-209,52],[-382,-134]],[[49486,88826],[717,-831],[584,-934]],[[13277,55458],[187,-110]],[[828,43866],[35,9]],[[7193,65883],[-9,-729],[-101,-200]],[[51458,87151],[-171,512],[-11,785],[84,542]],[[39326,67206],[-7,211]],[[39319,67417],[-5,215]],[[39314,67632],[0,60]],[[39314,67692],[-4,64]],[[39310,67756],[0,65]],[[39405,68109],[213,467]],[[39618,68576],[246,542],[-15,406],[332,34],[4,228]],[[13131,55347],[49,79]],[[640,45465],[72,144]],[[7216,61161],[29,-306],[-218,106]],[[37017,63499],[-43,29]],[[36974,63528],[-100,-63]],[[36874,63465],[-107,-14]],[[25910,73599],[-10,12]],[[2658,41332],[-222,-20]],[[12989,56243],[402,-368]],[[20235,53850],[-147,1357],[-29,1077],[-198,1881],[-303,954],[122,654],[36,938]],[[16811,66998],[677,175],[25,-95]],[[48696,71995],[446,55],[151,128],[-56,-1344]],[[4125,59104],[-180,313]],[[16346,67936],[-24,399]],[[48133,85818],[260,-458]],[[5980,61668],[29,-315]],[[52269,85987],[-5,10]],[[1592,42881],[5,537],[158,776]],[[42771,74471],[84,305],[815,697],[62,202],[215,31],[559,395]],[[7216,61161],[29,-307],[-218,107]],[[49819,82593],[-1,10]],[[8957,58671],[1,-10]],[[13391,55875],[-278,300],[-477,229],[-377,284],[-382,45]],[[11877,56733],[-152,-50],[-594,161],[-1032,662],[-400,562],[-701,646],[-478,325],[-196,23],[-436,424]],[[61269,58555],[16,231]],[[82071,61110],[-15,25]],[[94553,20387],[372,-286],[160,-269],[240,-73],[69,159]],[[81141,87173],[-34,-42]],[[80704,39224],[157,373],[198,0],[263,747]],[[83693,62133],[6,2]],[[41325,17490],[-5,0]],[[89981,37211],[38,-358]],[[44948,21513],[689,406]],[[87444,51158],[-5,-8]],[[67989,69410],[88,180],[-375,-197]],[[87463,51320],[98,-208]],[[78658,61221],[-244,384]],[[51079,11032],[206,0],[402,375],[172,310],[476,1]],[[83210,53145],[555,-106],[165,-138],[933,-458],[661,-903],[49,-1]],[[65314,37991],[25,112]],[[87223,36357],[405,-521],[281,-74]],[[79535,79256],[-19,47]],[[85306,35847],[-315,-178]],[[87459,51198],[-20,-48]],[[59731,50884],[4,-5]],[[85973,43508],[-158,173]],[[89649,31312],[-3,8]],[[87459,51198],[4,122]],[[56474,64233],[411,425],[53,485],[107,266]],[[68717,32135],[-94,-811],[368,-157],[73,95],[623,-140]],[[84451,93399],[49,509],[322,22],[5,267]],[[92869,27513],[174,628]],[[84790,44270],[87,57]],[[80238,85866],[-1,-4]],[[80368,81087],[-158,-25]],[[56360,18915],[-171,-112]],[[67356,32726],[15,-23]],[[61983,51806],[-243,29],[-24,-1114],[-289,-609],[-227,-50]],[[89748,27813],[-2,0]],[[85985,62806],[0,1]],[[83494,57341],[-75,-57]],[[83580,59963],[-1,-2]],[[86341,49943],[59,-299]],[[69935,74644],[-90,-366]],[[71464,52298],[-156,204],[-821,744],[-1131,109],[-107,-159]],[[89449,36217],[-31,81]],[[89646,31320],[-72,-154],[14,-643],[-170,-1114],[-92,-94]],[[83569,38109],[-238,79],[-200,461],[-308,192]],[[86921,59271],[2,1]],[[87489,50889],[-115,-104]],[[85047,45153],[24,65]],[[66680,41300],[333,-1796],[115,-1235],[22,-746]],[[60535,83853],[-14,-41]],[[71963,64460],[-8,5]],[[93264,28773],[7,-1]],[[72801,67387],[-2,0]],[[87561,51112],[-72,-223]],[[94446,19582],[313,-348],[92,-227],[546,-492]],[[83968,48320],[4,10]],[[59930,83353],[4,6]],[[37175,40170],[99,128]],[[85060,44194],[95,-32]],[[76277,37262],[-196,-182]],[[75718,70957],[-181,-62],[115,-708],[2,-460]],[[79280,89836],[-59,-203]],[[72475,64750],[-2,-9]],[[83532,56724],[-152,-437]],[[82865,88422],[-26,-328]],[[61898,75499],[51,70]],[[84661,94900],[-187,375]],[[69694,80662],[238,-205],[696,-110],[163,50],[345,403]],[[85748,38224],[137,54]],[[66955,36495],[54,55],[70,1146],[339,509]],[[64561,38231],[-293,19]],[[72869,66993],[79,-242]],[[84410,44347],[-2,277]],[[64724,37512],[-3,-4]],[[64449,34875],[3,34]],[[61629,84545],[10,-1]],[[76679,48480],[316,-425],[278,410],[273,742],[-8,117]],[[86677,50204],[-474,-324],[-334,147]],[[71808,30906],[40,-244],[-174,-68],[-155,-1349],[-201,-110]],[[60684,81632],[-940,95]],[[88236,38234],[27,-147]],[[66585,41784],[3,2]],[[83564,92130],[97,370],[110,-29],[37,378],[270,321],[19,187]],[[79650,79972],[21,300]],[[83612,56830],[0,10]],[[82339,59996],[3,3]],[[83984,59055],[-136,-44]],[[86166,42898],[-3,4]],[[49867,51774],[-249,-178],[-276,7],[-225,-627]],[[80237,85862],[-2,6]],[[67770,32964],[26,365],[-320,676],[45,797],[-206,261]],[[73545,66911],[-4,-12]],[[86193,45396],[-5,-3]],[[86188,45393],[-86,-174]],[[67374,45405],[227,-707]],[[84181,57209],[-3,-10]],[[80770,60431],[-174,30],[-553,-214]],[[85111,45828],[-61,-441]],[[79346,90258],[6,313]],[[83694,92166],[-130,-36]],[[82963,63069],[-6,-168]],[[84672,44851],[-138,-120]],[[67989,69410],[165,-293],[-8,-521],[203,-1126],[123,-355]],[[61518,38012],[0,4]],[[85466,50382],[9,-5]],[[88958,37773],[-7,-65]],[[61639,84544],[-13,130]],[[61626,84674],[15,368],[-174,450]],[[79890,29034],[214,-79]],[[80104,28955],[3,-1]],[[80107,28954],[298,-133]],[[87906,39716],[17,-35]],[[66555,79922],[60,-466]],[[54988,76947],[-90,-221],[-542,-739],[4,-471]],[[55177,73487],[-103,198],[-987,1128]],[[58090,83012],[234,671]],[[63924,36580],[-5,2]],[[84099,59090],[-1,0]],[[70591,48675],[-67,115]],[[85534,43459],[-2,19]],[[89967,38439],[97,526]],[[41320,17490],[0,-17]],[[78302,85914],[-2,-26]],[[77323,64942],[-282,27],[-467,-405],[-77,37]],[[84587,95117],[-55,14]],[[68401,69690],[0,-1]],[[63848,32860],[-15,-1215],[126,-194]],[[88096,38404],[-10,11]],[[71802,68461],[-37,19],[-299,-909]],[[84462,43977],[89,74]],[[93892,28013],[-317,103]],[[75654,69727],[163,-40],[507,297]],[[84383,26513],[-8,11]],[[84375,26524],[-1,2]],[[84374,26526],[-223,160],[-114,-279]],[[78185,37444],[-19,277],[144,625],[-7,314],[200,-162]],[[75509,74556],[-163,-1350],[-38,-582]],[[88945,36551],[169,46]],[[79407,80471],[-14,237],[302,300],[45,634],[117,755]],[[79857,82397],[141,130],[44,470],[387,-229],[373,103],[291,374],[124,851],[267,681],[384,1477],[83,666],[338,307]],[[90707,34880],[35,102]],[[40605,51217],[-78,2206]],[[73099,67763],[0,-165]],[[66588,41786],[-146,123]],[[83556,57867],[-84,7]],[[71895,65257],[-96,606]],[[55883,31784],[70,-37]],[[79495,56597],[923,-176]],[[80039,78260],[-5,-21]],[[88224,39121],[12,78]],[[64482,36303],[54,244]],[[47434,39858],[-489,435],[-349,480],[-149,393],[-584,744]],[[45863,41910],[-2,42]],[[45861,41952],[-3,22]],[[84072,55240],[2,-1]],[[80139,34104],[189,131]],[[78383,88954],[95,89],[79,595]],[[93846,28486],[-258,-254]],[[71214,64086],[520,-168]],[[71454,45709],[155,-48]],[[58111,74188],[882,611],[859,537],[516,190],[14,111]],[[89430,35239],[-65,-22]],[[83569,38109],[-2,-213]],[[89486,32047],[-301,122],[-23,434]],[[85532,43478],[-54,357]],[[78405,60885],[-149,220],[-272,32]],[[92770,24691],[360,622]],[[85904,40947],[253,-118],[211,-301]],[[91276,20215],[1,-17]],[[84358,35490],[-71,-190]],[[79999,78939],[186,5]],[[71301,31544],[-50,-680],[543,-134],[14,176]],[[76253,73498],[169,-843]],[[63523,27733],[1,-5]],[[71466,67571],[1,5]],[[79398,59281],[-4,447],[113,222]],[[82682,54845],[221,496],[142,39],[191,529]],[[64152,31385],[13,-685],[65,-605],[290,-113]],[[84697,44538],[-44,-92]],[[55267,24016],[30,1673],[-214,9]],[[64488,33425],[-482,134],[-141,-163],[-15,-542],[205,-100]],[[85885,38278],[-45,95]],[[65874,42190],[-86,8]],[[82103,54519],[410,321],[169,5]],[[74315,68461],[200,871],[381,1]],[[87870,39700],[-21,62]],[[82722,54833],[-40,12]],[[82722,54833],[-40,12]],[[76225,48804],[448,-343]],[[84334,46232],[-126,-69]],[[56313,67444],[-1,4]],[[81105,35369],[206,319],[88,-66]],[[85729,50651],[-1,6]],[[43681,49669],[-108,-282]],[[66061,38572],[16,-200]],[[82172,64064],[0,-1]],[[82821,58880],[91,-16]],[[56189,18803],[-119,-58]],[[56070,18745],[-245,-155],[-124,-309],[-422,29],[-190,-561]],[[55089,17749],[-431,-313],[-198,-281]],[[63471,65273],[-4,-24]],[[82682,54845],[167,17],[762,1114],[298,687]],[[86095,62698],[-1,0]],[[88073,38773],[-190,-461]],[[83999,92588],[-120,-493],[-81,-827]],[[66615,79456],[22,-100]],[[82123,65202],[1,-1]],[[81095,94264],[-2,-7]],[[81093,94257],[-34,-70]],[[85120,43207],[125,-20]],[[76733,39385],[-133,125]],[[73867,68525],[1,0]],[[62161,84368],[-385,-216],[-78,191]],[[73077,68060],[92,272]],[[57786,38616],[280,517]],[[82197,69161],[116,-9]],[[65064,77520],[-1,7]],[[66322,81891],[-49,260],[-364,126],[-230,233]],[[64342,35538],[-3,272]],[[88763,35021],[-120,500]],[[88209,51666],[14,238]],[[84747,44759],[176,-6]],[[86454,47776],[-140,432]],[[70464,71500],[-750,-230],[-434,-535]],[[77781,73081],[677,-495],[492,-501]],[[75727,36918],[169,-74]],[[64482,48877],[-13,-430],[304,-912]],[[67045,52515],[531,-1389],[510,-288],[455,-535],[328,-953],[347,-435],[621,-86]],[[85239,49984],[-103,17]],[[73451,68555],[-338,276]],[[73680,66955],[-90,276]],[[43466,13639],[51,-954]],[[64009,37525],[3,3]],[[64415,34641],[10,-59]],[[83859,91020],[59,165]],[[48503,42346],[39,1053]],[[81391,86266],[-157,-263]],[[95290,17434],[-62,-223],[99,-721],[255,179],[605,236],[248,-446],[-3,-235]],[[72601,67414],[198,-79]],[[79742,89941],[0,-6]],[[84074,55239],[-73,-90]],[[72574,72679],[166,-7]],[[72340,66237],[-11,257]],[[67738,33016],[32,-52]],[[76267,37022],[205,-426],[-87,-603],[-185,-182]],[[93507,28467],[4,0]],[[84588,96681],[-265,139]],[[73435,66602],[47,-5]],[[69488,44362],[-73,659],[-214,460]],[[83675,92166],[2,-1]],[[83677,92165],[223,-33]],[[72224,44528],[-30,458],[-110,1]],[[38164,18060],[71,-576],[47,-1354],[-177,-29]],[[85287,38846],[-159,193]],[[80041,72358],[-1,0]],[[86138,34509],[37,236],[-284,548]],[[85627,43029],[63,-173]],[[62042,36771],[226,-11],[305,-612]],[[64269,39007],[-278,225]],[[84748,95700],[-10,-6]],[[80534,90175],[-9,-4]],[[79724,60883],[-254,2]],[[87700,35109],[-277,739],[486,-86]],[[77978,34308],[-222,61],[-254,310],[-170,-20]],[[64481,33431],[2,-30]],[[51376,60666],[1,-11]],[[63647,44357],[472,-262]],[[81546,84125],[-93,-110],[-165,-853]],[[60888,50256],[48,16]],[[75734,42206],[225,-399]],[[82977,56505],[-109,-758],[-186,-902]],[[87050,58891],[-30,111]],[[81399,35622],[-88,67],[206,418],[171,119],[260,429]],[[85928,63214],[2,-2]],[[73731,42208],[166,-250],[266,85]],[[63026,48080],[-673,562]],[[64617,34976],[-164,-63]],[[79913,29118],[-91,-147]],[[69937,49444],[-70,-602]],[[85171,46907],[153,-127]],[[86596,38583],[-87,-358]],[[82977,56505],[-109,-758],[-186,-902]],[[89108,35190],[93,23]],[[55792,77129],[21,288]],[[83069,44382],[-140,-210],[-303,-79],[-413,209],[-1084,69]],[[75954,46881],[-980,40],[-442,139],[-239,-214]],[[78005,74212],[-5,-5]],[[82682,54845],[-1,-11]],[[82681,54834],[1,11]],[[82681,54834],[1,11]],[[82681,54834],[1,11]],[[55708,80760],[-8,-329]],[[84379,43949],[3,7]],[[79581,31643],[1,3]],[[89033,28034],[-11,6]],[[89022,28040],[-58,135],[-416,318],[-366,544]],[[80332,90657],[1,-15]],[[73489,67103],[-23,101]],[[80320,29424],[3,-2]],[[79041,57055],[444,-290],[10,-168]],[[64042,47593],[-521,286]],[[89217,36287],[-23,-25]],[[84917,39243],[-208,121],[-91,-214]],[[71840,29065],[357,-641]],[[81267,83090],[-139,34],[-87,-366]],[[79868,65699],[97,325]],[[70101,46695],[99,598],[144,362],[106,617],[141,403]],[[85996,62661],[1,-1]],[[88663,40035],[63,-255]],[[87850,39762],[20,-62]],[[95114,28501],[31,-115]],[[49628,41023],[-13,-574],[135,-76],[0,-437],[93,-294]],[[89561,34931],[-108,-10]],[[52562,52126],[29,-162],[-67,-1557]],[[86400,49644],[61,-275]],[[85021,49747],[115,254]],[[71246,66412],[170,915]],[[79214,64519],[-24,29]],[[80121,29538],[0,2]],[[85902,44872],[-6,155]],[[85896,45027],[-106,573]],[[81069,86766],[38,86]],[[67315,35063],[682,-188],[49,-151],[377,-109],[105,-214]],[[84793,42645],[112,-171]],[[84905,42474],[237,-101],[98,-254],[215,-93],[341,-1045]],[[85796,40981],[1,0]],[[85797,40981],[107,-34]],[[62609,84846],[78,-157]],[[84843,47901],[-174,-813]],[[59873,38546],[-175,21],[-104,424]],[[78492,59011],[315,376],[591,-106]],[[61285,58786],[1147,-65]],[[87810,52093],[2,-20]],[[61467,85492],[-230,-26],[-299,-206]],[[86461,49369],[213,-30]],[[84101,93382],[-4,-25]],[[57551,79706],[-190,-67]],[[80328,34235],[120,-215]],[[79504,42670],[138,13]],[[86877,50808],[10,14]],[[64011,37525],[-16,36]],[[80740,51804],[-12,9]],[[80740,51804],[-9,-19]],[[72231,72743],[-743,-569]],[[59979,85902],[112,-32]],[[89631,35120],[-61,-214]],[[84394,43900],[-11,75]],[[83029,88814],[-164,-392]],[[83827,90775],[32,245]],[[60788,84094],[-58,17]],[[71778,64362],[-174,120]],[[84428,42736],[34,-241]],[[75250,72317],[-222,-104]],[[85080,50250],[152,96]],[[85210,63889],[665,121]],[[61665,84463],[109,-63]],[[89239,36875],[249,240],[88,462]],[[81242,85677],[-3,0]],[[55177,73487],[1097,-1255],[337,-332],[276,19]],[[80255,88926],[-15,-18]],[[80407,82773],[1,-6]],[[80408,82767],[-209,-130]],[[85708,50668],[-1,5]],[[62144,84707],[-235,92]],[[85478,43835],[-55,161]],[[62196,84518],[-140,17]],[[84774,44966],[227,156],[27,-208]],[[63129,44688],[19,483]],[[74151,74395],[-278,-430]],[[45637,21919],[62,-112],[749,7]],[[53425,48858],[226,231],[1069,-87],[828,335],[482,345],[392,11]],[[80367,80141],[-3,0]],[[80364,80141],[-173,-438]],[[82571,86822],[-20,396]],[[71575,78059],[49,708]],[[86559,52963],[1,4]],[[89683,38546],[190,-73],[-60,-315]],[[72239,48056],[-171,-142]],[[79258,81882],[10,-695],[113,-313],[26,-403]],[[71751,79304],[-127,-537]],[[84227,95973],[176,-42]],[[71908,47449],[373,196],[1214,-268],[511,-278],[287,-253]],[[83958,61447],[3,1]],[[83659,58213],[4,24]],[[84615,44590],[-19,52]],[[64452,34909],[-37,-268]],[[76516,72269],[-94,386]],[[91119,33059],[2,2]],[[86294,41911],[-23,213]],[[61377,84276],[-5,-32]],[[52857,60388],[38,-674],[260,-1012],[692,-859],[46,-334],[129,-7],[405,-655],[612,-156]],[[80133,59674],[-735,-393]],[[78702,89378],[134,-47]],[[86294,41911],[323,-211]],[[93627,26124],[-150,236],[-313,182]],[[72442,67339],[87,-58]],[[79913,29118],[208,420]],[[50051,41889],[-134,-9],[-87,-860]],[[82682,48406],[320,-40]],[[72373,69771],[171,210],[587,-252]],[[85057,49508],[-35,239]],[[63292,51423],[-796,404],[-513,-21]],[[93289,25581],[37,140],[-212,599],[51,217]],[[93165,26537],[-1,5]],[[66201,53778],[-304,-936],[-160,-48]],[[79093,91260],[2,-258]],[[68472,67115],[-1,-10]],[[89784,35279],[24,-66]],[[58238,45969],[-85,12]],[[53359,36230],[34,-768]],[[57565,37082],[-103,-145],[-40,-1506],[-125,-245]],[[62094,67387],[14,-6]],[[85169,44976],[73,-87]],[[82016,88236],[-17,67]],[[75163,36741],[-82,374],[-264,2]],[[87050,58891],[10,-54]],[[55142,26271],[317,268],[63,438],[294,287]],[[60822,83836],[-2,70]],[[60820,83906],[-22,177]],[[60798,84083],[-68,28]],[[85164,62367],[117,356]],[[75922,63307],[232,270]],[[79399,61456],[-26,-39]],[[85169,44419],[-96,31]],[[90520,28027],[292,-338],[722,-579]],[[91534,27110],[-16,-60]],[[92829,31797],[3,-15]],[[85682,39927],[291,283]],[[57750,26296],[-279,49],[-1230,48],[-457,83],[-364,-93],[-9,-358],[116,-333]],[[85661,31159],[-151,-67],[-551,370],[-671,272]],[[69931,49449],[6,-5]],[[87754,39591],[72,66]],[[87827,39659],[-1,-2]],[[87826,39657],[44,43]],[[86472,60599],[-61,372],[-303,559],[-199,758]],[[89285,35179],[-113,-334]],[[86474,60448],[2,4]],[[81226,87912],[-206,56]],[[78353,68169],[202,-55],[201,302],[197,43],[175,296]],[[72632,35796],[-150,568],[145,196]],[[54187,38957],[324,-26]],[[82554,87219],[-1,-2]],[[82553,87217],[-2,1]],[[64925,38906],[-1,-1]],[[62503,84402],[-119,-33]],[[62164,82759],[5,161],[-227,367],[-167,865],[-110,311]],[[79507,59950],[-30,-44]],[[85396,54168],[-6,-21]],[[83513,57636],[-46,65]],[[80121,29540],[-25,30]],[[85561,36865],[327,-307]],[[87444,51158],[-274,632],[-301,-381],[32,-283]],[[80175,79643],[-48,-74],[-430,118],[-26,585]],[[76604,62403],[186,329]],[[86173,19444],[276,245],[306,-168],[632,-64]],[[84376,47988],[-113,-1144],[71,-612]],[[90072,57022],[-5,0]],[[83755,57883],[0,2]],[[86366,47564],[88,212]],[[60494,83747],[-8,19]],[[85308,44780],[-66,109]],[[94138,21664],[-354,794],[-354,1345],[-33,307]],[[81729,86938],[-203,-26]],[[81526,86912],[-14,-108]],[[79660,42761],[-18,-78]],[[83564,92130],[46,892],[381,360],[106,-25]],[[48486,21581],[89,-1],[5,-618],[394,-45]],[[73463,67734],[55,73]],[[89769,37693],[220,-57],[-8,-425]],[[83179,47914],[17,205]],[[62138,67944],[48,431]],[[85173,45008],[108,-45]],[[87789,54291],[281,-290]],[[64451,33974],[-53,-462],[83,-81]],[[72766,64759],[67,-416]],[[83848,59011],[0,-1]],[[51894,69348],[-683,-1100],[-907,-1531],[-160,-132]],[[68796,70674],[-317,-100],[-168,-323]],[[59731,50884],[4,-5]],[[82173,68700],[-354,-553],[-46,-463],[188,-171]],[[87627,39612],[127,-21]],[[83386,49066],[505,68],[314,-59],[927,139]],[[79860,28970],[244,-15]],[[80104,28955],[592,-82]],[[80696,28873],[693,-216],[160,74],[707,-139]],[[93532,28337],[43,-221]],[[85295,56187],[106,-353]],[[84774,44966],[-149,-157]],[[88184,39659],[242,404],[237,-28]],[[78005,74212],[5,1]],[[82271,69571],[-712,-492],[-486,-122]],[[85361,39263],[-59,373],[-537,-158],[-116,-196],[-252,-829]],[[46448,21814],[778,-177]],[[85038,45666],[73,162]],[[60258,38332],[7,-2]],[[78170,40974],[723,-585],[177,-258]],[[62852,29160],[55,816],[233,112]],[[62331,84630],[-4,3]],[[87060,58837],[534,-152]],[[80876,56151],[-5,9]],[[72866,67128],[-67,207]],[[89474,36651],[-9,-35]],[[85367,39187],[-80,-341]],[[72718,35734],[-44,-215],[145,-691]],[[79470,60885],[3,-668]],[[51634,20523],[462,-59],[558,205],[427,-422],[165,-15]],[[93627,26124],[-51,-362],[192,-195]],[[58332,48041],[0,-2]],[[58332,48039],[-112,-1647],[-67,-411]],[[81465,30374],[38,-238]],[[94008,23740],[49,-475],[144,-543]],[[77316,44824],[255,-104],[1181,-265],[233,10],[117,-245]],[[90026,56155],[-1,0]],[[82203,68704],[-30,-4]],[[67060,71110],[180,-21]],[[73395,67187],[-144,-26]],[[72329,66494],[-205,271]],[[63848,32860],[14,-473],[253,-43]],[[44004,29201],[-4,-15]],[[48945,55303],[2,0]],[[86059,62987],[1,0]],[[77526,54454],[-109,643],[-595,893],[-120,440],[-152,170]],[[57281,79260],[-459,-2],[-21,113]],[[57784,81474],[-46,-306],[-373,-515]],[[85961,35277],[-181,-37],[-289,261],[-500,168]],[[50027,60312],[-772,-36],[-186,-281]],[[88465,38319],[164,-367]],[[92869,27513],[2,-447],[128,-497],[165,-27]],[[84001,55149],[-333,-109]],[[88753,38544],[-33,-143]],[[70132,78526],[-886,254],[-193,164],[-562,95],[-91,-79]],[[84798,43527],[323,320]],[[90404,31511],[-131,-132],[-627,-59]],[[84600,45171],[50,-39]],[[81168,65390],[9,-8]],[[63477,40270],[-4,8]],[[74385,67086],[-115,262]],[[83755,57885],[155,-8]],[[63442,82168],[29,-273]],[[85053,44814],[-25,100]],[[83687,90222],[-35,393],[98,224]],[[72186,78118],[-611,-59]],[[48989,42314],[-67,499]],[[69107,51158],[42,24]],[[84798,43527],[322,-320]],[[64600,35243],[-94,-10],[57,567],[225,718]],[[85109,45841],[2,-13]],[[87870,39700],[149,-178]],[[83395,60303],[69,264]],[[84315,43038],[160,304]],[[84475,43342],[0,1]],[[84475,43343],[-85,560]],[[78383,88954],[209,-122]],[[66615,79456],[22,-100]],[[71812,30906],[-139,-310],[-39,-489]],[[84415,44625],[-5,-278]],[[59988,83370],[1,-2]],[[59989,83368],[-59,-17]],[[86341,49943],[-70,-415],[43,-1320]],[[80525,90171],[-51,-154]],[[67657,81708],[102,-18]],[[84381,43976],[-4,3]],[[82293,57914],[-69,-54],[-419,365],[-111,-66]],[[80535,90178],[-1,-3]],[[86877,50808],[22,240],[-212,156],[-339,-358],[-231,-99],[-248,-720]],[[83212,53133],[-2,12]],[[88720,38401],[18,180]],[[50569,61379],[77,-453],[-2,-716],[-80,-469]],[[72550,78159],[-249,288],[-418,64],[-308,-452]],[[80058,58603],[738,-303],[452,-418],[355,-564]],[[78492,59011],[261,403],[556,591],[24,-54]],[[64110,39795],[-336,-30]],[[63774,39765],[-1,0]],[[63773,39765],[-460,134]],[[69173,50680],[151,-565]],[[76279,46551],[-13,342],[400,341],[231,-564],[294,-1085],[125,-761]],[[67820,42393],[-760,130],[-272,111]],[[66378,37586],[-5,437],[-296,349]],[[64338,35811],[1,-1]],[[85927,63212],[3,0]],[[84111,57494],[-2,3]],[[84205,91996],[213,-56]],[[78280,83119],[225,389]],[[87975,39348],[-127,0]],[[92002,31325],[-3,3]],[[91999,31328],[-321,47],[-243,-140]],[[74488,66797],[-103,289]],[[88686,38391],[-3,4]],[[73634,68340],[-249,-188]],[[73045,32387],[103,947]],[[61386,84271],[294,109]],[[61680,84380],[-41,164]],[[84650,95631],[1,-3]],[[72886,48417],[-45,-271],[-229,-108],[-373,18]],[[84790,44270],[-42,-94]],[[69255,74146],[-16,24]],[[62076,74572],[-110,-5]],[[74212,68446],[103,15]],[[83289,57978],[-3,96]],[[84894,42444],[-82,-289]],[[93575,28116],[13,116]],[[47409,62622],[-521,-12],[-129,207]],[[66493,50227],[101,-4],[400,-1181],[9,-410],[205,-346],[227,-776],[-20,-319],[392,-818],[-1,-153],[303,-271],[135,-267]],[[73088,39125],[503,630],[148,273],[362,175]],[[88663,40035],[63,-255]],[[75839,62677],[-10,-3]],[[79507,59950],[-9,-40]],[[53338,23679],[116,-284],[555,-470]],[[71889,46198],[125,464],[-106,787]],[[76737,39263],[191,51],[1,-637],[-139,-810]],[[87509,59659],[-529,-506],[70,-262]],[[72592,45690],[276,1769],[265,1138]],[[56312,67444],[-94,-8]],[[84454,42418],[175,10]],[[83567,37896],[2,213]],[[62196,84518],[98,-147]],[[59594,38991],[-218,57]],[[73942,82537],[-503,129],[-274,230],[-131,267],[-448,562]],[[61576,42882],[269,-115]],[[50144,66585],[-1068,-944],[-451,-30],[-85,-113]],[[80334,80744],[-3,158]],[[71512,46186],[47,324]],[[83014,54572],[-292,261]],[[81084,85038],[-569,0],[-621,132],[-231,-201]],[[85360,54064],[-276,-4]],[[85532,43478],[-54,357]],[[53045,60959],[294,-312]],[[82099,61579],[-20,-4]],[[62506,84619],[-1,1]],[[82203,68704],[-30,-4]],[[69255,74146],[83,-465],[203,-108]],[[82295,38960],[-58,241],[-348,137]],[[78870,87490],[-11,-183]],[[79596,81245],[-109,357]],[[85071,44576],[2,-126]],[[62125,74274],[-49,298]],[[50643,44208],[-541,0],[-546,-466],[-349,-83],[-234,-236],[-431,-24]],[[78236,40153],[91,-370],[320,-414],[41,-189],[294,-300]],[[80371,89626],[0,-3]],[[81309,96163],[-43,-375]],[[53944,39012],[243,-55]],[[74925,66517],[-312,113],[-125,167]],[[84674,40620],[-4,-15]],[[83922,56866],[2,0]],[[69302,76437],[-37,447],[-219,697],[-534,127],[-123,364]],[[67759,81690],[0,3]],[[82900,35259],[383,-234]],[[67798,48663],[8,3]],[[94060,24605],[57,175]],[[83750,90839],[-121,52],[-73,478],[61,742]],[[83617,92111],[-53,19]],[[81429,63458],[-287,194]],[[50144,66585],[-18,35]],[[57073,79485],[215,-54],[-7,-171]],[[73357,66755],[-147,-137]],[[72740,72672],[287,-1]],[[74163,42043],[49,406]],[[73598,55844],[-928,-224],[-197,-247],[-450,-211]],[[65257,38100],[57,-109]],[[62424,84553],[37,40]],[[62424,84553],[0,-3]],[[94337,27675],[-161,174]],[[80221,72007],[9,1]],[[67219,81663],[8,104],[430,-59]],[[73124,69241],[108,-160]],[[58002,74146],[-10,7]],[[68548,44582],[38,314],[152,-42],[-109,299],[-192,58]],[[87404,40655],[-4,0]],[[87400,40655],[41,-254]],[[85470,50380],[-28,-531]],[[42372,27836],[-419,262],[-365,33],[-935,-36],[-565,116]],[[60181,76738],[-8,-7]],[[82682,48406],[0,2]],[[72023,55162],[-68,-141],[-130,-916],[-43,-661],[-102,-565]],[[87714,38602],[112,-39]],[[78020,61098],[-20,54]],[[65558,50968],[74,-312],[213,-265],[789,-519],[676,-632],[-7,-134],[349,-441],[146,-2]],[[41951,18274],[121,285]],[[45858,41974],[-1,-19]],[[85219,40150],[7,-345],[138,-549]],[[82031,61349],[48,226]],[[66989,44454],[-854,1695],[-194,188]],[[50760,50201],[228,-541],[370,-99]],[[87573,36599],[74,-14]],[[85107,45783],[4,45]],[[89570,34906],[-117,15]],[[76578,78892],[84,1137],[153,641]],[[88308,40528],[448,-350],[-15,-432]],[[79311,91992],[-2,3]],[[82391,48404],[-3,-638]],[[85324,46780],[52,12]],[[72632,35795],[-151,569],[109,290],[76,757]],[[72231,72743],[109,244]],[[83675,92166],[-111,-36]],[[86897,57600],[-2,0]],[[52015,30628],[5,19]],[[70893,50934],[-266,-1582],[4,-397]],[[70631,48955],[-40,-280]],[[81316,87512],[-283,177],[-13,279]],[[63444,25706],[-101,-3208],[317,-424],[-34,-176]],[[87214,51770],[-346,-361],[9,-601]],[[73274,67248],[-13,84]],[[79663,84969],[-136,-123]],[[68859,73160],[0,-4]],[[61639,84544],[-6,-49]],[[60955,84331],[-73,-5]],[[90000,37979],[2,7]],[[83554,47979],[15,32]],[[65558,50968],[74,-313],[213,-265],[517,-351],[18,-370]],[[73311,67658],[4,46]],[[82471,68768],[-3,-1]],[[82468,68767],[-28,-153]],[[64014,38889],[56,-414],[198,-225]],[[75839,62677],[83,630]],[[64231,66967],[-188,-623]],[[48621,34688],[825,693]],[[89981,37211],[149,78]],[[62159,75200],[-133,-214]],[[85401,44701],[-11,-5]],[[86537,60691],[47,-292]],[[45928,27954],[-1617,948],[-311,284]],[[85210,63889],[-416,-413],[-105,-223],[-309,-266]],[[86144,47344],[222,220]],[[80029,78298],[47,14]],[[85628,43025],[62,-169]],[[74270,67348],[-199,514]],[[73690,67299],[80,142]],[[82234,86121],[46,451],[92,-57]],[[85888,36558],[-165,-260],[-168,68],[-249,-519]],[[93523,28829],[323,-343]],[[89430,35239],[-65,-22]],[[87864,60208],[-355,-549]],[[41320,17490],[-1,7]],[[77552,68405],[119,-76]],[[60256,83518],[429,-579],[-1,-278]],[[82072,47665],[38,-395]],[[70707,67564],[2,0]],[[79700,93103],[117,269]],[[67941,45379],[235,-111]],[[73556,79879],[-402,379]],[[83022,54734],[-40,-11]],[[56218,67436],[23,539]],[[94874,28540],[240,-39]],[[83664,55075],[4,-35]],[[54610,24990],[44,326]],[[64579,39121],[10,20]],[[53756,39617],[-151,337],[-717,987]],[[52888,40941],[-552,818],[-564,762],[-670,1032]],[[79470,60885],[-5,-469],[280,-377]],[[85532,43478],[-287,-291]],[[66626,80222],[-339,545]],[[73889,70745],[-124,283]],[[63311,71338],[-16,37]],[[76668,71996],[122,-117],[144,-618]],[[63524,27728],[11,44],[995,-132],[163,89]],[[85471,42007],[61,467]],[[49966,15981],[435,4],[151,222],[397,55],[779,-19]],[[88848,44382],[7,5]],[[46435,53099],[-41,-276],[-279,-275],[-70,-230],[-330,-158],[-152,-430]],[[89986,38118],[-19,321]],[[89131,36138],[-2,-326]],[[81029,71312],[-1,2]],[[80273,82411],[-197,502],[-290,300],[-90,338],[38,379],[-216,641]],[[91079,31279],[-484,244],[-191,-12]],[[93619,26123],[-14,-147],[-475,-663]],[[80877,89478],[621,-486],[220,-331]],[[81537,64530],[-15,-561],[86,-219],[-153,-235]],[[79311,91992],[59,-12],[-92,-938],[243,-64]],[[40614,40960],[-827,-64],[-193,-112]],[[67770,32964],[-32,52]],[[68068,71024],[-174,338],[-562,464]],[[81449,94057],[444,-56],[884,-245],[273,100],[653,-164],[399,-213],[-5,-122]],[[87291,50458],[1,6]],[[35644,37576],[43,-27]],[[35687,37549],[-4,-52]],[[74800,43259],[-184,-200]],[[84334,46232],[-201,-113],[-525,-581],[-136,-522],[-230,-335]],[[72068,47914],[-331,-571]],[[83999,92588],[-99,-456]],[[70886,47971],[2,15]],[[73350,67767],[-21,77]],[[74985,66898],[1,-2]],[[73556,31676],[375,297]],[[85840,38373],[85,279],[465,-123]],[[85533,43460],[2,1]],[[70464,71500],[208,55],[996,756]],[[49196,32329],[89,170],[-6,1042]],[[80273,82411],[-275,93]],[[62870,52582],[0,1]],[[42512,26839],[202,-1176]],[[91959,31162],[43,163]],[[72815,66916],[-130,-20]],[[59935,82130],[366,6],[148,232]],[[88702,36510],[-131,-157],[22,-472],[-159,-606],[215,-555]],[[85769,44817],[-179,-82]],[[84674,40620],[171,335],[319,157],[671,-210],[69,45]],[[89670,33489],[-135,123]],[[61516,38067],[982,-268],[1487,-175]],[[82665,54863],[-233,-86]],[[61200,50062],[-115,-344]],[[79284,58579],[5,-374],[237,-1522],[-31,-86]],[[81134,86445],[104,-103]],[[62432,58721],[33,-8]],[[58632,39151],[-566,-18]],[[80328,34235],[120,-215]],[[85150,48709],[13,8]],[[73329,67844],[90,-255],[99,218]],[[64635,56441],[-158,129],[-409,-45],[-195,-486]],[[81363,83419],[-98,-331],[-139,38],[-275,-363],[-444,10]],[[78702,89378],[75,-31]],[[84176,58762],[0,-1]],[[62319,84542],[-2,-13]],[[75528,56760],[-595,-977],[34,-187]],[[60941,83427],[-119,409]],[[81484,63584],[-29,-69]],[[83988,57473],[0,-1]],[[80333,80563],[19,130]],[[77907,68640],[191,10]],[[53679,24598],[-91,-169]],[[87079,36004],[-223,-171],[-374,-117],[-290,102]],[[73499,66468],[-100,-87]],[[89413,33795],[122,-183]],[[60506,52195],[-1,-3]],[[73077,68060],[92,272]],[[79399,61456],[-73,224]],[[79326,61680],[3,9]],[[80808,92158],[0,-3]],[[67675,46995],[598,-14],[478,355]],[[89270,37531],[-335,-45]],[[90018,33392],[9,466]],[[82963,63069],[0,6]],[[76673,48461],[12,-1]],[[83991,57719],[-3,-246]],[[71386,63674],[1,0]],[[69726,64281],[65,315],[176,220]],[[61072,27321],[-158,-274],[-133,-769],[146,-305]],[[85471,54061],[5,118]],[[60449,82368],[227,-8]],[[64453,34913],[-1,0]],[[41527,16336],[-1,-2]],[[84885,55820],[410,367]],[[84815,36679],[274,380],[472,-194]],[[80704,39224],[-51,-47]],[[87537,51744],[-201,38]],[[80232,72011],[-13,559],[137,222]],[[73219,67170],[103,-10]],[[79337,89272],[45,542],[-102,22]],[[79075,64726],[8,113]],[[71780,63195],[-106,-441],[-203,-256]],[[60250,83534],[12,-11]],[[44004,29201],[-41,-380],[-672,-3245],[-212,-652],[-298,-694],[55,-2096],[-23,-50]],[[42813,22084],[-319,-904],[-74,-405],[-166,-54],[-321,-850],[-228,-865],[-550,-2352]],[[82844,57930],[-1,3]],[[87702,35102],[-2,7]],[[60865,68094],[-1,-1]],[[65167,38908],[1,6]],[[84793,42645],[0,0]],[[67989,69410],[-13,-14]],[[84581,94335],[17,451]],[[74636,77111],[-5,-1]],[[49830,41020],[215,-2]],[[95774,29011],[-359,-60],[-107,-127]],[[89201,35213],[-3,1]],[[66484,42530],[38,97]],[[68669,44208],[-184,-528]],[[67782,37567],[-78,-695],[-70,-139]],[[64927,38904],[-2,2]],[[60681,81011],[-5,1349]],[[85840,44317],[62,555]],[[82757,28427],[463,-461],[739,-255],[495,-332]],[[84454,27379],[333,-195]],[[84787,27184],[2,2]],[[69937,49444],[-170,367],[-275,70],[-168,234]],[[86349,57168],[87,-4],[309,-979]],[[89748,27813],[-238,333],[17,234],[-244,-52],[-250,-294]],[[84315,43038],[113,-302]],[[84397,38453],[-486,154],[-824,34],[-236,-130],[-190,86],[-565,-84],[-602,251],[-675,-155],[-282,196],[-156,-52]],[[80474,90017],[222,-173],[181,-366]],[[73385,68152],[-50,-54]],[[57227,79846],[-154,-361]],[[62613,52380],[-445,-365]],[[77482,69167],[742,-515]],[[86166,42898],[-3,4]],[[79399,92080],[13,178]],[[51288,63015],[-225,-360]],[[72718,35734],[-86,62]],[[49089,36101],[-55,-546],[163,-167],[249,-7]],[[74463,65189],[106,242],[-86,313]],[[86138,34509],[38,236],[-215,532]],[[87647,37102],[-263,240]],[[80015,65010],[-206,-684],[-190,-197],[-405,390]],[[73327,67881],[-1,66]],[[78443,39377],[15,0]],[[87623,51733],[48,-110]],[[63292,51423],[6,-245],[459,-577],[277,-719]],[[86642,37757],[742,-415]],[[57361,79639],[222,75]],[[82293,57914],[5,24]],[[64693,27729],[3,-2]],[[64306,37745],[-40,473]],[[78458,39377],[-155,-717],[200,-162]],[[71593,40801],[347,-69],[93,-204],[482,553],[559,516],[-1,270]],[[83220,57127],[180,-50],[15,-222]],[[60262,83523],[-12,11]],[[74163,42043],[49,406]],[[81607,57305],[-390,-188],[-543,171]],[[62317,84529],[54,-108]],[[72714,35738],[-16,-310],[-129,-28]],[[73522,66748],[-94,17]],[[64249,37961],[17,257]],[[70215,31025],[-528,97]],[[71495,46676],[151,179]],[[85784,46340],[-19,7]],[[71961,60923],[93,270],[-466,947],[-117,358]],[[60181,76738],[58,434],[612,739],[218,642]],[[72383,66364],[-54,130]],[[56244,47252],[501,941],[180,82],[300,707],[307,422]],[[69935,74644],[-34,178],[-477,-188],[-185,-464]],[[64617,34976],[-17,267]],[[60359,83700],[-64,-93]],[[70509,40017],[323,-66]],[[87633,43570],[0,-648],[-237,-674],[61,-687],[-139,-785],[85,-114]],[[87403,40662],[-3,-7]],[[87400,40655],[4,0]],[[93872,27726],[20,287]],[[47092,54311],[-4,-1450],[-499,169]],[[74318,65943],[165,-199]],[[85466,50382],[241,291]],[[60079,82588],[-1,110]],[[71963,64460],[-8,5]],[[70266,64062],[521,-427],[156,-365]],[[62220,68821],[-236,-107]],[[89434,36504],[-159,-161]],[[71842,43677],[349,86],[57,529]],[[76308,46600],[-252,308],[-102,-27]],[[63876,80674],[-53,-1101]],[[57534,49401],[-2,3]],[[72766,64759],[-291,-9]],[[77316,44824],[167,-107],[549,-972],[82,-338],[-63,-723]],[[71780,63195],[1,1]],[[84696,98203],[-67,-336],[-112,32],[-40,-440]],[[86193,45396],[18,62]],[[54466,39458],[-272,338]],[[81417,86518],[-26,-252]],[[62565,84339],[9,-6]],[[63868,39400],[-22,-129],[401,-160],[325,15]],[[81729,86938],[-9,43]],[[79859,65686],[9,13]],[[88227,19372],[284,180]],[[82485,86741],[-113,-226]],[[60703,49398],[-399,406],[-314,13]],[[64342,35538],[104,-624],[171,62]],[[78693,64844],[382,-117]],[[72389,71863],[94,584]],[[84565,96786],[-242,34]],[[87195,56169],[191,-245]],[[60252,83518],[162,-529],[-65,-96]],[[81055,86594],[79,-149]],[[82195,47240],[193,526]],[[77795,82108],[194,454],[125,723]],[[81331,65563],[153,-362],[53,-671]],[[50400,43184],[-8,9]],[[50760,50201],[-311,-219],[-108,-366]],[[83619,49634],[-206,-621]],[[65561,38778],[-48,81],[-588,47]],[[61226,86000],[-138,-125]],[[78702,89378],[-42,-494]],[[59658,51136],[100,257],[299,-47],[302,-253]],[[93578,28125],[314,-112]],[[72843,33984],[23,-65]],[[83948,60905],[-325,-476]],[[63510,41466],[479,-1611],[-16,-270]],[[63973,39585],[-1,-1]],[[63972,39584],[19,-352]],[[77809,62030],[-201,33],[-288,295]],[[82031,61349],[48,226]],[[80320,29424],[-199,116]],[[76642,63014],[148,-282]],[[92832,31782],[-2,19]],[[63765,40957],[-255,509]],[[62573,36148],[40,-305]],[[84462,43977],[-80,-21]],[[42757,53812],[82,13]],[[74939,78942],[-182,-261],[-160,-713]],[[82339,59996],[0,-1]],[[85078,44705],[-69,543]],[[89928,37800],[53,-589]],[[57128,66599],[-311,-437],[149,-175],[7,-531],[72,-47]],[[82630,68778],[-5,-3]],[[82625,68775],[-54,-5]],[[69255,74157],[3,-4]],[[74660,67480],[1,4]],[[64561,38231],[222,-84],[50,-494]],[[84397,38453],[498,20]],[[78696,39819],[127,241],[247,71]],[[72186,68399],[-384,62]],[[82534,86737],[-315,32],[-490,169]],[[76548,72123],[-32,146]],[[69201,45481],[-45,-562],[-127,-420],[-481,83]],[[40605,51217],[19,-825],[88,-638],[56,-1581],[33,-194]],[[52015,30628],[0,0]],[[93130,25313],[-1,5]],[[61826,55843],[592,249]],[[85815,43686],[-283,-208]],[[87499,58117],[99,-338]],[[93129,25317],[0,1]],[[79598,76376],[-23,-459],[-438,-500],[-502,-332],[-84,-258],[-394,-571],[-144,-41]],[[73731,42208],[-589,-544],[-69,203]],[[80458,81811],[358,-36]],[[82878,58750],[-2,3]],[[84798,43527],[322,-320]],[[73274,67516],[1,81]],[[61953,65308],[-123,-406]],[[72745,68162],[145,108]],[[76308,46600],[-15,329],[702,1126],[-316,425]],[[84097,93357],[-18,-188],[-270,-321],[-37,-379],[-110,29],[-45,-387]],[[83617,92111],[-53,19]],[[62354,84591],[-35,-49]],[[85803,63971],[72,39]],[[87719,52136],[189,259],[160,-84]],[[68474,67114],[455,-80],[401,-258],[271,-501],[-17,-412],[457,-628],[-20,-318]],[[51033,62540],[-102,-233],[463,-108],[-7,186]],[[44000,29186],[0,-204],[-232,-551],[-786,-558],[-608,-34]],[[42374,27839],[-2,-3]],[[85873,64006],[2,4]],[[92830,31793],[2,-11]],[[82757,28427],[463,-460],[739,-254],[496,-333]],[[84455,27380],[332,-195]],[[84787,27185],[2,1]],[[95397,18515],[-65,-146],[55,-636],[-97,-299]],[[87499,58117],[-29,21]],[[83069,44382],[-139,-212],[-305,-74],[-399,206],[-540,67],[-465,-21]],[[91689,31537],[-17,-240],[-237,-62]],[[78492,59011],[315,375],[591,-105]],[[73428,66765],[-71,-10]],[[87848,39753],[1,9]],[[89823,35144],[14,-229]],[[87318,52483],[-155,148],[-70,-289],[-851,-734],[-421,60],[-248,-129]],[[78602,76101],[231,210],[237,35],[258,-126],[270,156]],[[62055,84538],[-143,135]],[[61868,37764],[3,-5]],[[67240,71089],[166,-221],[75,-404],[299,-744],[-78,-327]],[[89282,35925],[-106,-291],[109,-455]],[[64479,48884],[3,-7]],[[62353,48642],[-5,12]],[[72339,72989],[1,-2]],[[60081,50678],[317,-344]],[[69725,64281],[-341,50],[-609,343]],[[90018,33392],[-298,-175]],[[89720,33217],[-3,0]],[[84996,28022],[-33,13]],[[71213,64089],[1,-3]],[[72365,68230],[-256,1354]],[[59994,83367],[-5,1]],[[59989,83368],[-59,-17]],[[62161,84368],[35,150]],[[84064,91561],[-103,-245]],[[71623,78767],[1,0]],[[85132,49214],[176,299],[340,144],[221,370]],[[87623,51733],[96,403]],[[78658,61221],[-253,-336]],[[86449,26790],[0,-8]],[[86449,26782],[1,-3]],[[86450,26779],[1,-7]],[[86451,26772],[-7,-67]],[[86444,26705],[-3,-36]],[[86441,26669],[-167,-821],[-207,-588]],[[86067,25260],[-155,-742]],[[85912,24518],[-2,-1]],[[85395,38459],[353,-235]],[[84843,47901],[94,956],[195,357]],[[88209,51666],[-141,645]],[[61473,64344],[-139,42],[-829,597],[-462,254],[-1022,692],[-561,233],[-612,366]],[[88720,38401],[32,142]],[[89610,35862],[-4,-92]],[[84738,95694],[125,12]],[[85815,43686],[25,631]],[[86655,40696],[1,1]],[[86656,40697],[59,0]],[[73419,69053],[-70,646],[-804,281],[-436,-396]],[[58066,39133],[-8,932]],[[55825,31457],[-24,-956]],[[56312,67448],[0,-4]],[[64481,33431],[-475,129],[-223,-221],[65,-479]],[[85815,43686],[-283,-208]],[[77280,64954],[-168,147],[-117,558],[-221,526]],[[88734,38115],[-29,201]],[[71903,82338],[-142,28]],[[88175,37898],[95,-168]],[[72574,72679],[453,-8]],[[53468,29042],[-9,1]],[[74488,66797],[15,176]],[[75640,69995],[12,192],[-201,1086],[-97,136]],[[72948,66751],[-74,127]],[[81036,86401],[33,365]],[[87667,51722],[2,-1]],[[68960,68826],[-829,364],[-142,220]],[[85340,39255],[27,-68]],[[87875,39787],[-27,-34]],[[89462,36615],[3,1]],[[70715,29485],[49,-342],[-134,-1519],[-49,-882]],[[88935,37486],[-456,-57]],[[78421,39440],[37,-63]],[[78051,42684],[1453,-14]],[[75922,63307],[155,-216],[549,-423],[164,64]],[[79774,80086],[-103,186]],[[54346,25322],[21,572]],[[73124,69241],[-11,-410]],[[79470,60885],[-5,-469],[280,-377]],[[43689,18521],[1656,80],[154,-69]],[[78616,66357],[-27,-684],[98,-395],[215,-224]],[[40293,16229],[0,25]],[[91868,30323],[268,187],[338,-157]],[[66477,78991],[-32,-501],[272,-430]],[[92830,31801],[-1,-4]],[[80290,88932],[28,252]],[[80912,86308],[-140,-464]],[[90002,37986],[-3,0]],[[75839,62677],[765,-274]],[[78777,89347],[67,70]],[[90699,24064],[-643,-213],[-156,-297]],[[89482,54706],[-161,-304]],[[60143,83612],[-138,95],[-193,-202],[-336,-567]],[[79913,29118],[-53,-148]],[[84643,95300],[95,394]],[[78702,89378],[-41,-495],[104,-347],[105,-1046]],[[79498,59910],[9,40]],[[64225,77572],[-24,-163],[414,-1662],[72,-94]],[[73493,69059],[-74,-6]],[[50092,61470],[24,20]],[[87854,41184],[272,-237],[85,-298]],[[88211,40649],[97,-121]],[[81729,86938],[20,227],[-239,277]],[[74662,70473],[-54,299],[73,1151],[569,394]],[[85878,23898],[34,619]],[[85912,24517],[-2,0]],[[88910,37871],[41,-163]],[[81239,85677],[10,-8]],[[61595,82775],[-120,-253]],[[80221,72007],[9,1]],[[74337,81920],[-395,617]],[[67989,69410],[97,-93],[423,268]],[[45992,64118],[333,-343],[141,-472]],[[85888,36558],[989,-75],[346,-126]],[[82977,56505],[134,-353],[253,167]],[[85568,43261],[-35,199]],[[86877,50808],[-9,601],[157,166]],[[62231,74138],[107,-833],[-27,-415]],[[87937,38565],[-111,-2]],[[89928,37800],[-352,-223]],[[80318,89184],[65,296]],[[85816,43681],[4,2]],[[85701,62569],[-7,-3]],[[89608,35852],[-2,-82]],[[63988,37347],[-3,277]],[[85355,39257],[6,6]],[[87602,40687],[-190,-43]],[[87412,40644],[-8,11]],[[81583,85551],[-63,-245]],[[73545,66911],[-4,-12]],[[89576,37577],[-306,-46]],[[74318,65943],[-27,-168]],[[71136,80800],[149,194],[188,875]],[[73099,67763],[3,-15]],[[68364,69802],[37,-112]],[[94117,24780],[8,2]],[[85875,64010],[-75,-739],[-180,-838],[-47,-837],[43,-576]],[[49852,61211],[240,259]],[[90000,37979],[1,-2]],[[88212,51936],[-128,11]],[[69672,42920],[-105,-1508]],[[48974,20917],[-211,-46],[-49,-499],[-174,-100],[-13,-1253]],[[78856,33146],[-237,313]],[[89646,31320],[55,506],[233,715],[4,230]],[[71598,82085],[-1,9]],[[83069,44382],[403,633],[137,523],[561,602],[335,-305],[-97,-1211]],[[77280,64954],[421,-380],[873,310],[119,-40]],[[84798,43527],[-327,-181]],[[93575,28116],[3,-5]],[[61898,75499],[-45,59]],[[61278,58787],[7,-1]],[[83937,58299],[54,-580]],[[61774,84400],[22,47]],[[89270,37531],[-88,-1]],[[80099,78204],[-65,35]],[[63392,82168],[1,5]],[[53672,71274],[64,-338],[534,-140],[121,-207]],[[52576,71516],[-286,-1291],[-396,-877]],[[50126,66620],[-60,522],[-297,1314],[-177,952],[-368,1000],[45,353]],[[55501,84151],[-290,532],[-751,173]],[[78486,85871],[1,8]],[[79924,86102],[-123,248]],[[67619,65213],[-3,4]],[[81071,93743],[-154,70],[-373,-519]],[[85045,61981],[3,-1]],[[60316,38369],[-1,6]],[[41723,53729],[-514,-34],[-678,-123],[-4,-149]],[[89012,36332],[-91,38]],[[85237,38717],[130,470]],[[80791,87585],[57,323],[140,119]],[[79644,88372],[340,45]],[[41125,16636],[24,16]],[[42143,17394],[-1,1]],[[42142,17395],[1,4]],[[42143,17399],[0,-5]],[[41817,18336],[-15,-37]],[[73796,72489],[-769,182]],[[76223,65048],[-136,125]],[[81061,94169],[-144,-356],[154,-70]],[[82165,60329],[-208,403]],[[85753,62654],[-7,-19]],[[84408,44624],[7,1]],[[84408,44624],[7,1]],[[84408,44624],[-4,-6]],[[84523,45061],[-60,-35]],[[84514,45926],[-66,-508],[80,-348]],[[84528,45070],[-5,-9]],[[84600,45171],[-72,-101]],[[84600,45171],[17,92]],[[85395,44608],[-5,88]],[[85390,44696],[5,-88]],[[82407,65939],[-18,-608]],[[82389,65331],[2,-3]],[[83035,65020],[1,1]],[[71480,63821],[-76,-397]],[[71789,64353],[-11,9]],[[74692,67590],[44,433]],[[74661,67494],[31,96]],[[77059,76025],[2,-8]],[[80206,73390],[-273,-304],[-16,-214]],[[76436,76141],[625,-124]],[[77061,76017],[-2,8]],[[77061,76017],[820,-318],[210,33]],[[78302,85914],[184,-43]],[[78302,85914],[185,-42],[224,262]],[[78486,85871],[267,326],[106,1110]],[[81301,85551],[-96,-108]],[[81301,85552],[0,-1]],[[80673,89195],[-156,-220]],[[78711,86134],[42,64],[106,1109]],[[84775,92962],[-338,246],[14,191]],[[66588,41786],[92,-486]],[[61688,61384],[-111,133],[-546,91],[-46,122],[-487,150]],[[68381,81259],[269,-251],[525,-78],[519,-268]],[[68337,81462],[44,-203]],[[73594,42833],[-25,-209],[162,-416]],[[87041,34104],[162,-241],[70,-571]],[[68381,81259],[-140,136],[-194,-556],[63,-1094],[290,-785]],[[68381,81259],[1,-9]],[[80704,39224],[-221,-207],[-468,-1178],[21,-72]],[[76674,35184],[52,433]],[[76726,35617],[11,146],[-281,570],[17,263],[-129,396],[-160,109],[-245,-453]],[[76674,35184],[52,433]],[[84408,44624],[-114,-115]],[[84415,44625],[359,341]],[[80439,29952],[-119,-528]],[[89958,35567],[9,-178]],[[89745,35339],[39,-60]],[[88945,36551],[-243,-41]],[[88702,36510],[310,-178]],[[84149,62204],[231,783]],[[89967,35389],[41,-251]],[[89142,33257],[115,459],[156,79]],[[89162,32603],[-20,654]],[[90060,34400],[438,267]],[[90618,35038],[-113,-492],[-453,-212]],[[89912,35163],[140,-829]],[[89606,35770],[43,-116]],[[89757,35512],[-151,258]],[[89791,35288],[-34,224]],[[89972,35296],[-60,-133]],[[89972,35296],[-60,-133]],[[89745,35339],[39,-60]],[[89570,34906],[86,-145]],[[89656,34761],[48,-60]],[[89704,34701],[133,214]],[[88702,36510],[219,-140]],[[89580,36135],[-88,4]],[[89580,36135],[-88,4]],[[89580,36135],[-1,-138]],[[89791,35288],[176,101]],[[89920,35353],[-129,-65]],[[89912,35163],[8,190]],[[89967,35389],[-47,-36]],[[89457,35778],[3,-228]],[[89433,35246],[27,304]],[[88416,39263],[56,-329]],[[88472,38934],[-56,329]],[[89382,36087],[-24,-76]],[[89704,34701],[60,-147]],[[89862,34768],[-98,-214]],[[89837,34915],[25,-147]],[[89573,34547],[-32,-261]],[[89524,34497],[17,-211]],[[89524,34497],[-122,90]],[[89541,34286],[145,-18]],[[93944,26930],[130,-60]],[[93944,26930],[-64,-261]],[[93081,25510],[-174,161]],[[93277,25125],[-196,385]],[[57297,35186],[-808,24]],[[78300,68569],[-44,129],[483,501]],[[78739,69199],[14,19]],[[78753,69218],[-438,96],[-312,-195],[-192,38],[-419,-174],[-51,-653]],[[88362,39405],[-83,118]],[[89522,36626],[-29,-69]],[[83750,90839],[62,614]],[[73849,72580],[48,278]],[[73897,72858],[122,915]],[[73796,72489],[4,1]],[[73849,72580],[-53,-91]],[[75410,69348],[-197,-27]],[[41723,53729],[0,-9]],[[41723,53729],[0,10]],[[48974,48831],[-86,-178]],[[48888,48653],[-277,-184],[-735,-773],[-338,-127],[-429,-14]],[[59741,81687],[3,40]],[[80036,37767],[-208,-215],[-279,-815],[-280,-210]],[[64963,74629],[177,-177]],[[65236,74747],[-389,376]],[[65140,74452],[96,295]],[[65160,75828],[-313,-705]],[[65140,74452],[405,-163],[602,-454],[277,-289],[326,106]],[[64812,74698],[151,-69]],[[64687,75653],[-8,-444],[133,-511]],[[82165,60329],[2,0]],[[85395,44608],[-7,-77]],[[85388,44531],[7,77]],[[89837,34915],[8,5]],[[89845,34920],[67,243]],[[89649,35654],[108,-142]],[[89912,35163],[140,-829]],[[89402,34587],[-12,202]],[[89686,34268],[78,286]],[[89541,34286],[-76,-254]],[[89390,34789],[71,133]],[[94176,27849],[-118,-487]],[[94158,27050],[18,799]],[[94074,26870],[38,145]],[[94158,27050],[18,799]],[[41817,18333],[0,3]],[[88388,53229],[-110,-123]],[[84127,62114],[22,90]],[[84149,62204],[4,-2]],[[85048,61980],[116,387]],[[38105,16101],[401,-231],[264,43]],[[83094,63887],[39,905],[-98,228]],[[85420,39453],[-428,-104],[-75,-106]],[[85395,38459],[-158,258]],[[55776,77127],[0,-14]],[[55776,77113],[-407,-353]],[[89358,36011],[-182,-377],[109,-455]],[[86783,34761],[35,-243],[223,-414]],[[86783,34761],[-390,-407]],[[40293,16229],[-143,-102],[-1249,-135],[-131,-79]],[[38165,18044],[-1,16]],[[81606,88198],[186,-214]],[[41320,17490],[5,0]],[[81083,93539],[-12,204]],[[85243,44889],[65,-109]],[[66962,76921],[-1,-360],[-187,-1896],[-24,-1013]],[[85281,44963],[-38,-74]],[[84408,44624],[-114,-115]],[[82644,61731],[-1,-1]],[[85779,62746],[-26,-92]],[[71955,64465],[146,1],[-38,-435]],[[84600,45171],[17,92]],[[82483,65460],[84,-320],[469,-119]],[[82483,65460],[84,-320],[468,-120]],[[83036,65021],[177,346],[-46,411]],[[80206,73390],[-273,-304],[-16,-214]],[[79025,78154],[-238,-449],[-297,-354],[-325,-154],[-18,-198]],[[73466,67204],[-71,-17]],[[73355,67357],[11,71]],[[73528,67228],[-62,-24]],[[73261,67968],[-8,-35]],[[72117,66749],[7,16]],[[50583,61379],[-5,-1]],[[69619,78123],[1,0]],[[59740,81683],[1,4]],[[64755,73719],[5,-1]],[[64755,73719],[5,-1]],[[64755,73719],[5,-1]],[[64760,73718],[380,734]],[[64760,73718],[82,338],[-30,642]],[[82339,59996],[-174,333]],[[86035,56450],[-146,-204]],[[73355,67357],[-2,-1]],[[73352,67298],[3,59]],[[76087,65173],[-113,113]],[[55792,77129],[-16,-2]],[[86745,56185],[-621,365],[-89,-100]],[[48156,14611],[1,-5]],[[41320,17473],[562,-96],[-7,-370],[194,-11],[88,-430],[16,-505],[325,-390],[983,87],[559,-158],[952,54],[560,100],[-2,179],[434,19],[8,-166],[730,32],[4,-337],[167,-333],[612,10],[309,-128],[134,-388],[208,-31]],[[85767,62633],[-14,21]],[[88220,39533],[-36,126]],[[82645,61730],[-1,1]],[[88362,39405],[-83,118]],[[89678,36744],[-156,-118]],[[50578,61378],[-9,1]],[[78481,90329],[17,-336]],[[81792,87984],[224,252]],[[85420,39453],[-428,-104],[-75,-106]],[[66680,41300],[332,-1796],[116,-1235],[22,-746]],[[83812,91453],[88,679]],[[68244,45682],[193,-471]],[[88279,39523],[-95,136]],[[76726,35617],[12,146],[-281,571],[16,262],[-206,426]],[[81239,85677],[62,-125]],[[88278,53106],[-134,-143],[-141,-441]],[[42142,17395],[-149,-15]],[[75213,69321],[-317,12]],[[43618,68804],[1094,-1025],[547,-205],[130,-244],[-5,-485]],[[91293,20214],[166,-129],[111,-313],[63,-629],[-144,-556],[66,-273],[-248,-588],[141,-846],[-37,-236],[-402,-621],[-127,-369],[-278,-175]],[[86173,19444],[-11,-133]],[[86173,19444],[-12,-133]],[[64004,37979],[-19,-355]],[[76006,81673],[107,147]],[[85120,43207],[74,213]],[[86169,19786],[480,-216],[273,-665],[267,-487],[414,-495]],[[42283,63606],[-652,-4]],[[50126,66620],[-60,522],[-297,1314],[-177,952],[-368,1000],[45,353]],[[83413,49013],[-262,-572]],[[81447,61194],[1,0]],[[56754,74727],[-691,1483],[-287,903]],[[55776,77113],[0,14]],[[55776,77127],[-263,884],[-188,805]],[[55325,78816],[-209,874],[15,622],[-109,259],[-419,1555],[-25,1032],[53,616],[112,123]],[[87210,37807],[-417,432],[-69,-70]],[[38783,12033],[-55,-8],[73,-1377],[-75,-142],[23,-503],[-123,-15],[-78,-570],[82,-80]],[[71136,64204],[-227,73]],[[71134,64188],[2,16]],[[71213,64089],[-77,115]],[[8647,91572],[-156,395]],[[8491,91967],[44,-86]],[[61438,74960],[73,261]],[[8652,91900],[-75,-28]],[[8591,92052],[31,-73]],[[8622,91979],[30,-79]],[[71872,64649],[-94,-287]],[[61829,75105],[-111,-362],[-170,267],[56,397]],[[55187,27245],[570,66]],[[55757,27311],[59,-47]],[[52021,27839],[-28,318],[-1438,-135]],[[55187,27245],[-515,191]],[[86449,26790],[254,434],[287,133],[444,-16],[363,133],[236,-109],[531,-83]],[[88564,27282],[1,-1]],[[88565,27281],[183,-28]],[[86449,26790],[2,-5]],[[86451,26785],[1,0]],[[86452,26785],[252,438],[286,133],[444,-15],[363,132],[411,-178],[355,-14]],[[88563,27281],[2,0]],[[88565,27281],[183,-28]],[[86308,40551],[-129,257]],[[86179,40808],[74,780]],[[86179,40808],[-120,-882]],[[85471,42007],[-3,-14]],[[86656,40696],[327,-722],[180,240]],[[86791,40350],[257,-469]],[[86348,40501],[443,-151]],[[87048,39881],[301,-561]],[[87349,39320],[-365,654],[179,240]],[[87349,39320],[108,-311]],[[87457,39009],[-108,311]],[[87651,38865],[-194,144]],[[87457,39009],[194,-142]],[[87651,38867],[0,-1]],[[87651,38867],[124,-144]],[[87775,38723],[-124,142]],[[87866,38634],[-91,89]],[[87883,38312],[54,253]],[[85471,42007],[-3,-14]],[[61438,74960],[236,-136],[283,-518],[9,261]],[[93264,28773],[-299,649]],[[92832,31782],[-72,-467]],[[92760,31315],[0,-1]],[[92760,31314],[-93,-442],[-193,-519]],[[92832,31782],[-74,-467],[-291,169],[-273,-36]],[[81852,30129],[102,7],[472,395]],[[87441,40401],[-37,254]],[[87608,40686],[248,30],[-7,454]],[[87749,40100],[-308,301]],[[87608,40686],[-196,-42]],[[87412,40644],[-8,11]],[[74284,46826],[-178,-16],[-118,-1413]],[[91832,30223],[-355,-91],[-32,-130]],[[91445,30002],[-53,-224],[148,-624]],[[87890,39942],[-71,322]],[[87799,40350],[20,-86]],[[88184,39659],[-261,22]],[[88184,39659],[-273,173]],[[87911,39832],[-21,110]],[[86178,42911],[-12,-13]],[[86183,42699],[-44,96]],[[86166,42898],[-27,-103]],[[71646,46855],[213,246],[51,296],[-173,-54]],[[86178,42911],[-252,516],[47,81]],[[72627,36560],[332,305],[316,-72]],[[75179,37587],[-345,-106],[-17,-364]],[[74399,42520],[-187,-71]],[[85687,44273],[-147,-27]],[[85590,44735],[-79,-265]],[[85511,44470],[79,265]],[[85687,44273],[-240,131]],[[85840,44317],[-153,-44]],[[85840,44317],[-153,-44]],[[85840,44317],[-153,-44]],[[85840,44317],[-153,-44]],[[85446,44607],[144,128]],[[85446,44607],[-33,-6]],[[85820,43683],[-67,245]],[[85107,45783],[82,132],[407,-519],[186,-554]],[[85782,44842],[0,-1]],[[85782,44841],[0,0]],[[85782,44841],[-1,-1]],[[85781,44840],[-12,-23]],[[86710,45739],[-229,-281],[-288,-62]],[[86193,45396],[-5,-5]],[[86188,45391],[-86,-172]],[[86193,45396],[-5,-5]],[[86188,45391],[-86,-172]],[[86193,45396],[-5,-4]],[[86188,45392],[-86,-173]],[[86006,45953],[187,-557]],[[86193,45396],[18,62]],[[86102,45219],[109,-40]],[[86710,46349],[-543,-187],[-161,-209]],[[86710,46349],[-543,-187],[-161,-209]],[[84825,45005],[-2,1]],[[85006,45123],[-183,-117]],[[59370,39384],[6,-336]],[[62359,26300],[-547,-171]],[[71301,33404],[182,510],[-49,166]],[[72194,31756],[-112,206],[-21,434],[-825,262],[65,746]],[[72257,32587],[299,-147]],[[72194,33386],[-47,-546],[97,-240],[312,-160]],[[72257,32587],[-110,253],[47,546]],[[72714,35738],[-16,-310],[-129,-27],[-105,-452],[-93,-795]],[[72371,34154],[-294,-109]],[[72464,34949],[-93,-795]],[[71434,34080],[152,93],[595,-161],[190,142]],[[72194,33386],[-46,298],[62,506],[161,-36]],[[72819,34828],[-367,-22],[-81,-652]],[[72819,34828],[-367,-22],[-81,-652]],[[72845,34212],[0,553],[85,13]],[[72847,35428],[-144,-11],[116,-589]],[[72935,34075],[84,-6]],[[72931,34062],[4,13]],[[72918,34136],[-73,76]],[[72918,34136],[-52,-217]],[[72919,34137],[-53,-218]],[[72935,34075],[-17,61]],[[72915,34087],[16,-25]],[[72762,34279],[100,-227]],[[72819,34828],[-57,-549]],[[8491,91967],[-214,-144],[-194,264]],[[8491,91967],[-214,-143],[-194,263]],[[8535,91881],[42,-9]],[[70715,29485],[440,46],[293,277]],[[71448,29808],[-3,-7]],[[70636,29460],[79,25]],[[70636,29460],[79,25]],[[70696,30046],[19,-561]],[[70696,30046],[19,-561]],[[70696,30046],[73,864],[-554,115]],[[67770,32964],[-17,-278],[-382,17]],[[67354,32717],[17,-14]],[[59848,36277],[0,0]],[[81269,86165],[-64,-722]],[[80235,85868],[-311,234]],[[48880,31444],[157,-31],[20,-3054]],[[49057,28359],[-73,-457],[-515,-1264],[-274,-238]],[[49070,28350],[-13,9]],[[49070,28350],[-13,9]],[[54511,38931],[-43,470]],[[81095,94264],[-34,-95]],[[81061,94169],[34,95]],[[81061,94169],[2,-5]],[[81063,94164],[-8,-141],[-511,-729]],[[65334,44589],[-1,-2]],[[81058,94091],[3,78]],[[40519,53467],[8,-44]],[[68493,42188],[-110,-86]],[[68383,42102],[-92,-900],[-88,24]],[[84738,95694],[-212,567]],[[83721,90985],[29,-146]],[[83721,90985],[398,-144]],[[79407,80471],[-412,94],[-506,544],[-325,101]],[[79704,80590],[0,475]],[[79949,81527],[58,116]],[[79704,81065],[35,264],[210,198]],[[47556,37410],[-45,231],[-15,1801],[73,125]],[[71464,52298],[97,-1137]],[[71561,51161],[2,3]],[[81309,96163],[3,-2]],[[37378,29013],[107,71]],[[37274,40298],[7,-8]],[[80451,91075],[-31,-273],[213,-51],[-33,-599]],[[71761,82366],[156,-128],[249,-1161],[71,-662],[111,-482],[-597,-629]],[[84588,96681],[-42,14]],[[84531,96493],[57,188]],[[78555,89429],[-91,-39]],[[85533,43460],[-1,18]],[[73031,32225],[14,162]],[[81399,61011],[-476,-364],[-153,-216]],[[81691,61183],[-292,-172]],[[81399,61011],[292,172]],[[78149,58468],[343,543]],[[72569,35400],[-105,-451]],[[72843,34212],[-81,67]],[[54050,27624],[-243,-116],[-26,-240],[-593,91],[-280,179],[-264,7],[2,169],[-622,21],[-3,104]],[[50802,26727],[-129,115],[3,736],[-123,-1],[2,445]],[[85332,49979],[7,418],[-107,-51]],[[53236,20701],[9,-8]],[[90056,57372],[0,-1]],[[90056,57372],[-143,147]],[[55098,26684],[-7,-85],[-434,132],[-224,-31]],[[40519,53467],[-77,217],[-382,-29],[-59,474],[-111,2461],[-69,-6],[-86,1860],[-206,547]],[[52015,30628],[5,19]],[[84538,44492],[-128,-145]],[[84813,50100],[-5,-1]],[[84813,50100],[139,-62]],[[84813,50100],[-5,-1]],[[84813,50100],[-232,-465]],[[65063,77527],[147,302],[835,283]],[[61853,75558],[0,0]],[[84924,50505],[30,-328]],[[84924,50505],[30,-328]],[[84954,50177],[126,73]],[[85466,50382],[-234,-36]],[[58651,84709],[-507,-459]],[[84813,50100],[141,77]],[[84813,50100],[141,77]],[[86593,54550],[-7,-13]],[[86586,54537],[-45,-47]],[[86541,54490],[-5,7]],[[84412,58531],[2,1]],[[85573,51539],[-110,-377],[143,-94]],[[85573,51539],[-106,-347]],[[84813,50100],[141,78],[146,818],[269,478],[204,65]],[[85408,53069],[-1,0]],[[81129,44371],[23,159],[672,1882],[180,1122],[68,131]],[[82976,58555],[-80,-38]],[[84410,44347],[5,278]],[[84408,44624],[2,-277]],[[47992,30975],[-427,-232],[-1651,-561]],[[86341,49943],[-135,-64],[-337,148]],[[44794,31318],[-794,-2132]],[[44794,31318],[337,883],[344,1144],[-10,120]],[[53250,33091],[53,284],[12,1180],[-27,572],[105,335]],[[61511,41923],[-95,397],[13,363]],[[85057,49508],[18,-166]],[[41298,16209],[133,113]],[[50543,33585],[186,-595]],[[61429,42683],[-307,75],[-82,489]],[[58898,40084],[562,-378],[347,-35]],[[60209,39128],[-41,480],[-361,63]],[[37315,12877],[106,371],[-34,853],[100,177],[492,114]],[[86013,63164],[0,0]],[[86002,62937],[11,227]],[[85994,62787],[15,-2]],[[61845,42767],[-240,-114]],[[61845,42767],[-240,-115]],[[61845,42767],[-5,6]],[[47088,50620],[95,-366],[-70,-816],[-4,-1584]],[[61606,42664],[-150,162]],[[43517,12685],[3,-608],[136,-104],[22,-533],[536,-607],[10,-505]],[[47109,47555],[0,299]],[[47109,47854],[-356,3]],[[43436,60010],[209,-44],[115,-541],[481,-433],[148,-485],[165,-128],[10,-687],[118,-281],[250,-39],[-31,-496],[116,-734],[239,79]],[[43436,60010],[209,-44],[115,-541],[481,-432],[148,-486],[165,-128],[10,-687],[118,-281],[250,-39],[-31,-496],[116,-734],[239,79]],[[85769,53785],[-1,-1]],[[86649,60511],[-7,-27]],[[86643,60484],[-1,0]],[[88070,54000],[-2,-2]],[[86254,62109],[50,35]],[[82982,54723],[0,-2]],[[83085,54754],[0,-16]],[[44605,61570],[-317,-566],[-486,-294],[-97,-246],[9,-368],[-278,-86]],[[40389,58952],[-547,-65],[-188,-104],[-125,208]],[[40389,58952],[-546,-65],[-189,-104],[-125,208]],[[40389,58952],[164,32]],[[43436,60010],[-366,-449],[-745,-658],[-13,-139],[-924,-63],[-242,383],[-687,-55],[-70,-77]],[[43436,60010],[-366,-449],[-744,-659],[-14,-138],[-924,-63],[-242,383],[-687,-55],[-70,-77]],[[82172,61282],[0,1]],[[82172,61282],[0,1]],[[81764,61102],[9,-25]],[[81943,61266],[1,-1]],[[42869,53882],[-34,-43]],[[42835,53839],[-1112,-110]],[[42564,55390],[20,-1199],[251,-352]],[[80368,38833],[7,-14]],[[83612,56840],[124,-11]],[[83289,57978],[46,-82]],[[83674,57217],[-1,-1]],[[83467,57701],[0,1]],[[85158,58829],[0,4]],[[46760,57956],[13,-231]],[[69794,39180],[-22,-361],[-249,-352],[-739,-630]],[[89162,32603],[-20,634],[115,479],[156,79]],[[51377,60655],[-113,305],[-672,-105],[-161,-240],[-404,-303]],[[51377,60655],[-3,0]],[[51374,60655],[3,0]],[[89413,33795],[52,237]],[[51369,69233],[-198,228],[-638,6],[-462,-283],[-560,-108],[-384,-240],[-327,-498],[-1179,42],[-115,178]],[[51894,69348],[-433,35],[-92,-150]],[[87938,52078],[146,-131]],[[87719,52136],[91,-43]],[[87810,52093],[2,2]],[[56801,79371],[-1101,1060]],[[81415,30121],[0,-3]],[[80439,29952],[-119,-528]],[[87812,52073],[0,22]],[[61766,64796],[18,8]],[[62336,64032],[-155,323],[-34,318],[-348,228],[-33,-105]],[[61536,65043],[230,-247]],[[61548,64602],[218,194]],[[61784,64804],[-18,-8]],[[61825,62195],[85,578],[278,439]],[[49070,28350],[110,-6],[109,-551],[1158,-42],[108,271]],[[48191,18326],[-19,769],[175,201],[341,88],[568,4],[140,227],[106,518],[268,599],[11,216],[330,535],[93,333],[418,372],[378,452]],[[52021,27839],[-28,318],[-1438,-135]],[[54346,25322],[-383,-162],[-1,-199],[-247,-224],[-127,-308]],[[53673,24586],[6,12]],[[52936,23793],[215,189],[287,466],[241,150]],[[54672,27436],[-622,188]],[[54050,27624],[-243,-116],[-26,-240],[-593,91],[-280,179],[-264,7],[2,169],[-622,20],[-3,105]],[[87795,52067],[224,-350]],[[85655,50495],[2,3]],[[55807,28842],[-100,-384],[-288,-369],[-232,-844]],[[85436,51033],[31,159]],[[85022,49747],[-1,-1]],[[85596,50074],[-153,-159]],[[86916,50402],[-126,-105]],[[62843,47207],[-439,-264],[-320,-370]],[[62348,48654],[389,-1058],[106,-389]],[[62873,43047],[152,18]],[[60872,52478],[4,5]],[[60872,52478],[18,80]],[[86460,49374],[25,42]],[[84420,43746],[1,-5]],[[84813,50100],[-203,-52]],[[84952,50175],[0,-137]],[[84952,50175],[19,87]],[[71837,46085],[1,-1]],[[64009,37524],[0,1]],[[63932,37531],[77,-6]],[[64300,37197],[-304,-7],[-7,157]],[[64300,37197],[-66,-123]],[[63986,37346],[-50,100]],[[64374,36852],[-74,345]],[[64300,37197],[-1,378]],[[64536,36547],[-118,72],[-118,578]],[[64374,36852],[-74,345]],[[63989,37347],[23,181]],[[64300,37197],[217,-138]],[[64300,37197],[217,-138]],[[64300,37197],[-304,-7],[-11,434]],[[64012,37528],[-27,96]],[[63988,37347],[-2,-1]],[[63986,37346],[3,1]],[[64890,37386],[-2,-8]],[[65011,37276],[-123,102]],[[65011,37276],[-123,102]],[[64888,37378],[-96,85]],[[84418,45093],[-3,-6]],[[80728,51813],[336,-169],[469,330],[488,-141],[348,-457],[-30,-221]],[[64888,37378],[-152,123],[-199,446],[24,284]],[[64890,37386],[-2,-8]],[[64561,38231],[222,-84],[50,-494]],[[87799,40350],[411,298]],[[88210,40648],[1,1]],[[88211,40649],[58,18]],[[88269,40667],[236,8],[426,479]],[[88279,39523],[-95,136]],[[80740,51804],[-9,-19]],[[80740,51804],[-9,-241],[434,-1131],[260,-790]],[[87336,51782],[0,-3]],[[88314,51584],[-105,82]],[[88212,51936],[167,-134]],[[64536,36547],[-162,305]],[[64651,36515],[-115,32]],[[64536,36547],[-162,305]],[[64536,36547],[-152,399],[-150,128]],[[64788,36518],[-137,-3]],[[64651,36515],[-115,32]],[[64651,36515],[137,3]],[[65235,38441],[22,-341]],[[65230,38899],[-9,3]],[[65230,38899],[-47,-213]],[[65231,38900],[-10,2]],[[65257,38100],[-20,-321]],[[65257,38100],[-20,-321]],[[88741,39746],[-232,-186],[-45,-201]],[[87909,35762],[-41,391]],[[87937,36688],[-68,-509],[40,-417]],[[91470,20102],[-1,-14]],[[54360,75516],[-444,-43],[-137,-339],[-573,-600],[-371,-270],[-192,-34]],[[65467,38112],[-46,256],[274,-65],[367,-327]],[[65257,38100],[-22,341]],[[93397,24110],[611,-370]],[[96347,13582],[102,-339],[-21,-393],[266,-573],[77,-410],[260,-431],[207,-142],[620,-1019],[750,-502]],[[65257,38100],[-219,18]],[[93944,26930],[-64,-261]],[[93944,26930],[130,-60]],[[94074,26870],[38,145]],[[93768,25567],[3,0]],[[64119,44095],[85,544],[464,-84]],[[64922,46416],[-125,-909],[-60,-921],[-69,-31]],[[64668,44555],[666,34]],[[63570,38121],[133,-143],[-2,-333],[284,-21]],[[63570,38121],[133,-143],[-2,-333],[284,-21]],[[63570,38121],[-11,12]],[[63559,38133],[-49,-2],[53,921],[-45,295],[-153,26],[-52,526]],[[63570,38121],[-9,12]],[[63561,38133],[-51,-3],[53,922],[-45,294],[-153,26],[-52,527]],[[65709,44732],[248,-721],[171,-679],[356,-802]],[[60494,83747],[-34,8]],[[60577,83901],[153,210]],[[60577,83901],[-83,-154]],[[60494,83747],[-8,19]],[[61666,84356],[-7,-13]],[[61665,84463],[1,-107]],[[69672,42920],[-152,-2182],[-120,-733]],[[69400,40005],[-615,-641],[-347,-430],[-1085,-1146],[-203,-265]],[[69151,39730],[249,275]],[[69400,40005],[135,-721],[259,-104]],[[69461,39638],[-61,367]],[[69773,38824],[279,-470]],[[68244,45682],[-1,-3]],[[8652,91900],[108,-253]],[[75226,66707],[-14,34]],[[80217,72101],[-2,0]],[[60681,81011],[-1,-4]],[[62319,84542],[-123,-24]],[[66717,78060],[-183,72],[-489,-20]],[[73970,31995],[6,-127]],[[62331,84630],[-47,197],[135,246]],[[73568,69045],[74,357]],[[73970,31995],[6,-127]],[[62633,84489],[-84,-32]],[[62765,84342],[15,284]],[[62656,84498],[-22,-8]],[[62549,84457],[-88,136]],[[62633,84489],[1,1]],[[62765,84342],[-109,156]],[[61692,84591],[-12,-63]],[[79868,65699],[-45,-239]],[[79516,65413],[-63,-268],[-304,-221],[41,-376]],[[79214,64519],[730,583]],[[91868,30323],[60,854]],[[77795,68161],[72,-161]],[[80728,70507],[301,805]],[[68403,70687],[0,-1]],[[86745,56185],[450,-16]],[[69528,51675],[257,-223],[53,-568]],[[69138,51689],[400,-28],[247,-209],[53,-568]],[[69138,51689],[390,-14]],[[79068,40128],[-354,-234],[83,-338]],[[71680,52879],[130,-34],[248,-548],[220,-157],[315,-429]],[[80760,65968],[-242,-872],[-360,-217]],[[81961,67513],[-241,-651],[-172,-161],[-404,-608],[-100,-1034]],[[79669,61674],[-340,15]],[[73598,55844],[556,6],[813,-254]],[[72563,50814],[-70,890],[100,7]],[[40315,16813],[-3,-9]],[[44213,10323],[7,4]],[[40735,17796],[284,-33],[27,-243],[274,-30]],[[38783,12033],[870,79],[156,209],[248,72]],[[38788,12036],[-5,-3]],[[41149,16652],[-26,-519],[461,-530],[14,-437],[-147,-367],[43,-1350],[-56,-16]],[[40998,15798],[622,810]],[[41545,16579],[-547,-781]],[[40998,15798],[324,281],[578,374],[642,337],[1065,703],[733,638],[397,30],[522,195],[240,176]],[[41125,16636],[161,-372],[145,58]],[[41526,16334],[-95,-12]],[[41298,16209],[299,-634],[364,-1725]],[[41125,16636],[173,-427]],[[41128,16636],[-3,0]],[[40293,16229],[100,195],[471,-66],[291,296]],[[40293,16229],[275,443],[591,71],[-4,-89]],[[38164,18060],[533,75]],[[40338,16786],[150,19],[30,280],[284,249],[346,-10],[172,149]],[[38105,16101],[308,33],[324,406],[1019,110],[219,-496],[318,75]],[[37979,14392],[39,871],[-45,600],[132,238]],[[38783,12033],[10,256],[-744,-80]],[[38049,12209],[-374,-54],[-19,206],[-293,200],[-48,316]],[[85057,49508],[18,-166]],[[48191,18326],[-735,-50]],[[48528,18461],[4,-185],[546,-756],[199,-506],[689,-1033]],[[48528,18461],[-31,-137],[-301,-4],[-97,-439],[-653,-102],[-71,-209],[-434,-295]],[[48527,19019],[1,-558]],[[48528,18461],[2,-136],[-339,1]],[[48528,18461],[21,333]],[[45499,18532],[249,167],[2653,83]],[[48974,20917],[549,28],[88,-83]],[[49611,20862],[313,-46]],[[73512,31484],[26,198],[-218,199],[-300,91],[-196,225],[-72,-607],[-168,-184],[-462,117],[-43,-398],[-127,-251],[-144,32]],[[72556,32440],[471,-219],[-7,-249],[300,-91],[218,-199],[-26,-198]],[[73556,31676],[-44,-192]],[[73512,31484],[-58,-717]],[[73512,31484],[-58,-717]],[[62530,84964],[45,236]],[[80439,29952],[-119,648],[-421,874],[-249,299],[-68,-127]],[[79582,31646],[68,127],[248,-300],[422,-874],[119,-647]],[[80096,29570],[25,-30]],[[80248,29880],[-152,-310]],[[80121,29538],[-25,32]],[[80120,29539],[-24,31]],[[79742,89935],[-270,65],[-192,-164]],[[79742,89935],[78,-452]],[[79528,89986],[779,-103]],[[79742,89935],[-83,333]],[[79659,90268],[-313,-10]],[[79838,90263],[-179,5]],[[80242,90305],[90,352]],[[80242,90305],[65,-422]],[[80241,90326],[1,-21]],[[80307,89883],[64,-257]],[[80424,89899],[-117,-16]],[[80307,89883],[-565,58]],[[80494,27935],[202,936],[693,-216],[160,74],[707,-137]],[[79860,28970],[247,-16]],[[80107,28954],[588,-83],[-31,-132]],[[80664,28739],[-170,-804]],[[72799,67335],[39,226]],[[81503,30136],[349,-7]],[[60743,86040],[-158,-260],[-94,119]],[[60754,86018],[169,-19],[122,264]],[[84473,44381],[62,-216]],[[81086,30110],[-144,42],[-167,-220]],[[74365,81200],[-104,-323]],[[71978,36104],[261,-247]],[[71999,36567],[-21,-463]],[[69400,40005],[69,411],[1017,838],[837,-34],[789,355],[423,-53],[538,345]],[[51063,62655],[-498,569],[-269,133],[-115,204],[36,264],[-31,1054]],[[60912,52427],[179,-113],[560,-3],[-7,-193]],[[86674,49339],[388,-288]],[[59914,83233],[31,-96]],[[74750,81826],[-11,-2]],[[51898,47789],[202,-795],[190,-339]],[[41526,16334],[255,-86],[125,-215],[330,29],[271,-801],[265,-108],[10,-339],[598,25]],[[78090,39881],[-92,-5],[-308,-838],[-197,-1092],[-16,-378]],[[74337,81920],[28,-720]],[[52290,46655],[-65,-430]],[[83734,57306],[-80,117]],[[74337,81920],[402,-96]],[[85830,62734],[69,65]],[[74619,42887],[-28,-286],[-192,-81]],[[84383,43975],[27,372]],[[79838,90263],[347,-193],[57,235]],[[38566,14374],[-143,-20],[-213,-295],[-521,-49]],[[37689,14010],[16,-130],[-352,-453],[28,-267],[-129,-310]],[[37252,12850],[63,27]],[[80339,29920],[92,35]],[[79742,89935],[-83,333]],[[79843,90316],[-5,-53]],[[79912,90488],[-69,-172]],[[79912,90488],[330,-183]],[[60184,82984],[-85,-136]],[[60184,82984],[88,90]],[[60072,82735],[27,113]],[[60078,82698],[-1,0]],[[60072,82735],[23,-31]],[[60078,82698],[-6,37]],[[60077,82698],[-5,37]],[[60077,82698],[-1,-31]],[[60027,82765],[46,-67]],[[60001,82828],[26,-63]],[[59945,83137],[56,-309]],[[60076,82667],[-262,195]],[[86179,40808],[75,785]],[[81265,32337],[245,198],[164,324],[-37,418],[-198,376],[-75,730],[-160,446],[100,873],[-404,656],[174,464],[-33,431],[148,877],[-22,313],[-463,781]],[[60073,82692],[22,12]],[[60095,82704],[30,-24]],[[60184,82683],[-59,-3]],[[60184,82683],[104,130]],[[60428,82935],[-79,-42]],[[80775,29932],[81,403],[-55,337],[268,424],[114,983],[82,258]],[[85904,40947],[275,-139]],[[86253,41588],[41,323]],[[86254,41593],[-3,0]],[[86251,41593],[2,-5]],[[58302,83818],[-52,254]],[[84231,26072],[-8,40]],[[52219,40960],[669,-19]],[[52888,40941],[891,-37],[8,-609]],[[82036,62939],[-14,-63]],[[86102,45219],[-153,-359],[-109,-543]],[[54468,39401],[-2,57]],[[69100,45980],[101,-499]],[[89813,38158],[-103,-262]],[[88537,37789],[-267,-59]],[[84315,43038],[44,-150]],[[84359,42888],[69,-152]],[[41545,16579],[75,29]],[[84438,45060],[-1,0]],[[41149,16652],[396,-73]],[[69750,67236],[-251,361],[-150,62]],[[80255,88926],[180,-334]],[[41149,16652],[396,-73]],[[56312,67444],[1,0]],[[84418,45093],[19,-33]],[[71889,46198],[-377,-12]],[[90039,39475],[-62,-254],[87,-256]],[[84437,45060],[26,-34]],[[62424,84550],[-31,-3]],[[60316,38369],[-51,-39]],[[77984,61137],[272,-32],[149,-220]],[[86341,49943],[-138,-64],[-334,148]],[[79176,54209],[342,-310],[492,-716],[218,-432],[70,-538],[430,-400]],[[89418,36298],[-142,153],[-37,424]],[[81948,36655],[261,433],[310,368],[416,311]],[[73638,66749],[42,206]],[[74299,80811],[-38,66]],[[83948,60905],[10,542]],[[42072,18559],[168,255],[258,730],[204,1343],[128,589],[-17,608]],[[42813,22084],[-37,1527]],[[84428,42736],[-40,-151]],[[78421,39440],[-168,-181],[-311,-33],[-184,-342],[-406,-425],[-354,-243],[-208,-349]],[[74488,66797],[-226,35]],[[65008,80685],[270,-180],[284,-463]],[[71559,46510],[-64,166]],[[85590,44735],[179,82]],[[68969,69680],[311,1055]],[[87873,51857],[16,32]],[[73169,67182],[-228,61]],[[87935,34947],[129,-291],[246,25],[117,-139]],[[60256,83518],[-113,94]],[[61085,49718],[-149,554]],[[85973,43508],[-110,90],[-127,-277],[-168,-60]],[[56891,71885],[-4,34]],[[81663,86667],[66,271]],[[86791,40350],[-136,346]],[[73315,67704],[14,140]],[[81583,85551],[-79,-276]],[[71575,78059],[-68,-284],[-72,-1369],[-679,-656]],[[80728,70507],[112,-371],[233,-1179]],[[65709,44732],[104,53]],[[79671,80272],[-269,16]],[[87387,19457],[292,-117]],[[85607,50505],[-141,-123]],[[84100,91228],[-182,-43]],[[81643,87262],[-327,250]],[[48238,14320],[-260,486],[-367,450],[-521,793],[-116,106]],[[83280,89418],[-133,-399],[185,-12]],[[83623,60429],[173,669],[1,859],[-98,178]],[[42869,53882],[-285,309],[-20,1199]],[[80507,89545],[166,-350]],[[60416,82989],[-67,-96]],[[60407,83071],[-58,-178]],[[78077,68369],[-37,139]],[[80793,91810],[16,355]],[[65574,81970],[-4,-4]],[[84611,95876],[-38,139]],[[72796,67194],[5,193]],[[60362,83701],[-3,-1]],[[64110,39795],[113,-339],[168,-31],[183,-315],[-27,-354],[235,-40]],[[94096,23985],[-28,-17]],[[64010,38884],[5,1]],[[72364,69338],[-18,2]],[[80946,72239],[-238,-8],[-375,-312]],[[86491,41701],[4,3]],[[56887,71919],[260,654],[523,769],[322,811]],[[51646,18807],[-183,76],[-1055,16],[-88,-181],[-316,-26]],[[79398,59281],[-4,447],[113,222]],[[62537,84380],[-34,22]],[[62536,84346],[1,34]],[[64773,47535],[964,27]],[[62509,84682],[-2,-84]],[[62507,84622],[2,60]],[[62506,84619],[1,3]],[[62507,84598],[-1,21]],[[78725,90104],[36,55]],[[89981,37211],[149,78]],[[62580,84332],[-6,1]],[[86578,40598],[2,-6]],[[56447,78138],[-317,-485]],[[84898,47777],[2,-1]],[[87633,43570],[138,770],[61,785]],[[72862,68353],[307,-21]],[[81181,94870],[131,1291]],[[64483,33401],[-2,30]],[[82841,57931],[0,2]],[[64924,38905],[-142,-189]],[[85073,44450],[96,-31]],[[72550,78159],[-128,564]],[[86642,37757],[293,-184],[-29,-151]],[[85120,43207],[125,-20]],[[79668,42144],[-30,18]],[[59961,83608],[-27,-249]],[[84864,42962],[-109,160]],[[67989,69410],[-316,-40],[-1161,300],[-941,-1]],[[83536,31460],[-615,-459]],[[63295,71367],[-480,1144]],[[87633,43570],[1,-648],[-238,-674],[61,-687],[-138,-785],[84,-115]],[[87403,40661],[1,-6]],[[82391,48404],[-504,326],[-359,578],[-103,334]],[[78619,33459],[-99,163]],[[83628,57468],[-115,168]],[[84223,26112],[-4,-29]],[[61329,37982],[-11,115],[-822,113],[-231,120]],[[77332,34659],[-24,-66]],[[83737,56833],[-1,-4]],[[67782,37567],[-57,589],[1426,1574]],[[80242,90305],[65,-422]],[[78662,61210],[-4,11]],[[87240,52211],[-8,243]],[[72081,69607],[16,12]],[[84376,47988],[467,-87]],[[76815,80670],[3,-16]],[[82391,48404],[-169,-158],[-150,-581]],[[81149,94559],[58,92]],[[78844,89417],[27,-326],[120,6]],[[81239,85677],[-106,228]],[[80430,64292],[132,151]],[[80424,89899],[50,118]],[[83284,48695],[-133,-254]],[[84643,35302],[348,367]],[[91327,26428],[629,-325]],[[69917,33158],[67,1078],[-650,93],[12,192]],[[53588,24429],[-1,-670],[-248,-77]],[[53339,23682],[-1,-3]],[[81239,85677],[22,196]],[[68568,81418],[-187,-159]],[[77969,68413],[36,-127]],[[83619,49634],[-335,-939]],[[79298,91234],[72,747],[-59,11]],[[44353,42129],[-366,-22]],[[43987,42107],[-645,-40],[-129,-144]],[[86183,42913],[1,-5]],[[61772,86093],[-305,-601]],[[78658,61221],[-253,-336]],[[61467,85492],[-241,508]],[[87868,36153],[-11,6]],[[47876,55131],[0,-621],[-116,-178]],[[83681,57880],[4,5]],[[78991,89097],[172,-47]],[[60577,83901],[-55,-47]],[[64269,39007],[-278,225]],[[46941,17275],[-111,338]],[[60684,82661],[1,271],[-154,197]],[[64784,38147],[20,84]],[[63037,83289],[-281,829],[9,224]],[[71908,47449],[-415,633],[-425,483],[-437,390]],[[70631,48955],[-280,201],[-484,-314]],[[43693,49684],[1059,54],[664,237],[402,85]],[[91276,20215],[-100,374],[-281,310],[-62,270],[-271,157]],[[84556,59327],[29,-108]],[[87375,37338],[269,510],[153,63]],[[91550,32413],[-4,-2]],[[83900,92132],[305,-136]],[[79598,76376],[27,75]],[[70336,68752],[48,193]],[[82197,69161],[177,303]],[[69280,70735],[-160,-102],[-456,4],[-124,-126]],[[89131,36138],[-2,-326]],[[71908,47449],[-414,633],[-430,488],[-610,543],[-288,0],[-299,-271]],[[61406,81993],[52,-448]],[[82097,36100],[69,-277],[260,-58],[474,-506]],[[89749,35341],[-4,-2]],[[89441,41702],[-206,-414],[-304,-134]],[[68188,42135],[195,-33]],[[68383,42102],[110,86]],[[82691,59182],[-144,335]],[[93223,25255],[-91,-13]],[[85967,62502],[27,285]],[[80793,91810],[-415,30],[-226,-175],[-46,-476],[-90,22]],[[62196,84518],[101,7]],[[80517,88975],[-82,-383]],[[90072,57022],[-14,349]],[[47556,37410],[3,-20]],[[47559,37390],[358,-164]],[[47917,37226],[443,-418],[12,-257],[299,5],[418,-455]],[[80674,57288],[-178,561],[3,691]],[[65679,82510],[2,-86]],[[55370,21415],[32,1204],[-42,160]],[[81999,88303],[17,-67]],[[85371,39188],[-84,-342]],[[51387,62385],[-99,630]],[[55605,15788],[-314,182],[112,568],[82,41]],[[60316,38369],[132,58],[1078,-106],[-10,-254]],[[62619,27456],[-30,-50],[-792,132],[-191,106],[-441,-93],[-93,-230]],[[67619,65213],[317,-177],[173,-295],[567,-165],[99,98]],[[84949,28041],[14,-6]],[[80525,90171],[9,4]],[[80507,89545],[-200,338]],[[95208,28210],[2,-5]],[[84949,28041],[-455,-121]],[[84579,35307],[-221,183]],[[86649,60511],[-6,54]],[[73148,33334],[-41,-470]],[[68528,34401],[-422,-727],[-214,-535],[-8,-572],[147,-190]],[[63706,70948],[-395,390]],[[65880,45568],[-17,-269],[202,-196],[-26,-466],[-190,142]],[[73204,67916],[-105,-153]],[[93164,26542],[1,-5]],[[93165,26537],[0,0]],[[93165,26537],[-166,31],[-129,498],[-1,447]],[[86596,38583],[128,-414]],[[79346,90258],[57,-51],[-66,-935]],[[86877,50808],[23,240],[-213,157],[-339,-358],[-641,-174]],[[62827,72515],[-12,-4]],[[83668,55040],[-113,-21]],[[84161,26189],[-5,15]],[[84376,47988],[-404,342]],[[83780,91033],[-59,-48]],[[89401,27122],[201,-72],[111,-292],[1018,110],[-89,237]],[[80407,82773],[56,-29],[-5,-933]],[[71806,45932],[32,152]],[[72529,67281],[72,133]],[[87609,19364],[473,-128],[429,316]],[[61604,75407],[-93,-186]],[[44560,51792],[270,-118],[374,724],[1050,473],[181,228]],[[60751,66993],[263,-89],[136,-764]],[[83494,57343],[0,-2]],[[84227,95973],[72,-112]],[[59740,81683],[4,44]],[[91469,20088],[-193,127]],[[73474,67467],[116,-236]],[[81611,84135],[-161,-131]],[[87883,38312],[54,253]],[[80367,80141],[-192,-498]],[[76604,62403],[186,329]],[[55953,31747],[-128,-290]],[[81717,86962],[12,-24]],[[88748,27253],[131,-125],[243,95],[279,-101]],[[87938,52078],[146,-131]],[[87719,52136],[-182,-392]],[[85790,45600],[-6,740]],[[73949,67530],[-179,-89]],[[85332,49979],[100,-268]],[[64481,33431],[7,-6]],[[86877,50808],[-10,597]],[[89938,32771],[-4,-230],[-191,-564]],[[71448,29808],[24,323],[162,-24]],[[65805,46890],[31,-43]],[[87812,52095],[207,-378]],[[88241,51928],[-29,8]],[[88350,51889],[-109,39]],[[88314,51584],[36,305]],[[62613,35843],[-42,-2]],[[79798,78303],[-15,247],[216,389]],[[66615,79456],[-101,149]],[[78077,68369],[106,-162]],[[60577,83901],[221,182]],[[60798,84083],[0,3]],[[68569,50681],[128,74],[476,-75]],[[85390,39229],[-19,-41]],[[57786,82057],[-2,-583]],[[60684,82661],[-306,82],[-174,-273],[-125,118]],[[84288,31734],[5,-3]],[[84293,31731],[860,-427]],[[80046,72348],[-129,524]],[[41320,17490],[-25,14]],[[78352,56699],[546,385]],[[94437,27996],[244,355],[108,-128],[356,163]],[[82097,36100],[-19,363],[-130,192]],[[62318,33176],[-62,-1501],[-515,-471],[-172,51]],[[89570,34906],[-9,25]],[[87694,36202],[215,-440]],[[64814,82197],[-212,249]],[[80333,71919],[0,32]],[[85107,45783],[-101,-660]],[[78000,61152],[-3,0]],[[82514,61619],[-229,-113],[-206,69]],[[62565,84339],[-29,7]],[[81317,87506],[-1,6]],[[64561,38231],[223,-84]],[[87923,39681],[-1,17]],[[68528,34401],[-105,214],[-376,110],[-50,150],[-682,188]],[[55236,23197],[20,0]],[[55256,23197],[7,1415],[39,1212],[-160,447]],[[72866,67128],[385,33]],[[73516,48299],[-40,-326]],[[85153,31304],[357,-211],[151,66]],[[72931,34062],[-12,-17]],[[84843,47901],[57,-125]],[[62573,36148],[3,9]],[[62576,36157],[2,-4]],[[67150,37523],[268,682]],[[87502,38443],[-5,89]],[[86368,40528],[-24,-26]],[[58303,83754],[-1,64]],[[48735,19046],[-334,-264]],[[91469,20089],[13,-20]],[[85973,43508],[-157,173]],[[40088,28211],[-15,867]],[[84099,59090],[-115,-35]],[[86183,42670],[0,29]],[[71808,30906],[-135,-310],[-39,-489]],[[85361,44909],[-80,54]],[[63521,47868],[0,6]],[[69674,74183],[53,-41]],[[85171,46907],[6,2]],[[74188,67644],[-157,-86]],[[49771,48465],[-493,174],[-10,372],[-512,573],[-655,201],[-288,367],[-599,47],[-126,421]],[[61865,37770],[3,-6]],[[85805,47038],[339,306]],[[82485,86741],[86,81]],[[80148,80636],[186,108]],[[84521,96425],[103,-632],[114,-99]],[[88322,38814],[-57,15]],[[84789,27186],[-2,-1]],[[84787,27185],[0,-1]],[[84787,27184],[0,-1]],[[84787,27183],[-412,-657]],[[84375,26526],[0,-2]],[[84375,26524],[-155,-406]],[[84220,26118],[-4,-30]],[[84696,98203],[-68,-334],[-139,-35]],[[84489,97834],[-125,-1019]],[[84364,96815],[-41,5]],[[85868,44939],[-31,-16]],[[85837,44923],[-54,-81]],[[85783,44842],[0,-1]],[[85783,44841],[0,-1]],[[85783,44840],[0,0]],[[85783,44840],[-14,-23]],[[85478,43835],[-55,161]],[[60505,52192],[3,-1]],[[89570,34906],[-8,203]],[[54433,26700],[-432,-87],[-1143,34]],[[80232,72011],[98,-84]],[[49628,41023],[0,-7]],[[85022,49747],[-1,0]],[[85050,45387],[-3,-234]],[[94652,20955],[-154,-171],[55,-397]],[[86169,19786],[-244,233],[-181,1145]],[[85744,21164],[-1,1]],[[85743,21165],[19,478]],[[85762,21643],[0,1]],[[85762,21644],[47,503]],[[85809,22147],[0,1]],[[85809,22148],[-123,359],[121,409]],[[85807,22916],[1,1]],[[85808,22917],[32,155]],[[85840,23072],[-1,1]],[[85839,23073],[-20,463],[93,981]],[[85912,24517],[0,1]],[[85912,24518],[155,742]],[[86067,25260],[1,0]],[[86068,25260],[208,587],[164,820]],[[86440,26667],[1,2]],[[86441,26669],[-2,21]],[[79771,78188],[27,115]],[[89938,32771],[80,621]],[[65257,38100],[-74,586]],[[74003,68851],[-136,-325]],[[44224,10328],[15,-675],[199,10],[171,-394],[39,-1053],[71,-46]],[[88402,38882],[-60,-49]],[[66017,42202],[0,2]],[[60872,52478],[4,5]],[[87604,38236],[-102,207]],[[83948,60905],[-325,-476]],[[63261,27582],[263,146]],[[74482,66792],[6,5]],[[64415,34641],[31,271],[171,64]],[[85868,44939],[-1,-7]],[[57545,53468],[-243,11],[-270,193],[-321,460],[-52,313],[-243,517],[-235,47]],[[72574,72679],[-91,-232]],[[87895,38138],[-102,39]],[[79236,92293],[175,-35]],[[85364,39256],[-9,1]],[[86439,26690],[-353,-485],[-472,-42],[-514,186],[-243,-114],[-377,101],[-97,177]],[[61692,84591],[15,-55]],[[81069,86766],[38,365]],[[62703,84165],[62,177]],[[50761,26632],[41,95]],[[81415,30121],[-329,-11]],[[63244,82178],[148,-10]],[[86208,53289],[194,-220]],[[90404,31511],[203,849]],[[87048,39881],[0,-1]],[[84533,97204],[10,-265]],[[80458,81811],[-64,-441]],[[61565,31256],[4,-1]],[[61898,75499],[-76,190],[-218,-282]],[[89486,32047],[9,13]],[[64113,61715],[-2,1]],[[77323,64942],[-43,12]],[[81163,60845],[0,-1]],[[84890,49444],[-293,-63],[-16,254]],[[83557,57868],[-1,-1]],[[59476,82938],[10,-405],[206,-112],[-24,-607]],[[83798,91268],[-18,-235]],[[59527,35733],[-14,166],[-296,-16],[-95,-208],[-31,-460],[-1215,59],[-15,-99],[-564,11]],[[77332,34659],[-658,525]],[[78505,83508],[62,-43]],[[62042,36771],[226,-11],[308,-603]],[[62576,36157],[-3,-9]],[[48735,19046],[254,566]],[[48989,19612],[340,759],[282,491]],[[49611,20862],[9,1996],[342,815]],[[47109,47555],[-205,-17],[-68,-271]],[[84107,93417],[-10,-60]],[[81358,90628],[-115,66],[-282,-412],[-361,-130]],[[85607,50505],[50,-7]],[[83220,57127],[180,-50],[15,-222]],[[68471,67105],[3,9]],[[87833,51779],[36,-100]],[[73451,68555],[-116,-457]],[[70832,39951],[261,-35],[295,156],[285,21],[163,169]],[[66084,81260],[-296,427],[-112,324],[-102,-41]],[[81944,61266],[1,0]],[[60160,83629],[102,-106]],[[59735,50879],[-77,257]],[[89610,35862],[-12,-32]],[[58090,83012],[1,-6]],[[58091,83006],[-21,-341]],[[59853,71473],[3,9]],[[60822,83836],[-244,-433]],[[42072,18559],[265,94],[1053,77],[299,-209]],[[80328,34235],[258,518],[519,616]],[[50004,18692],[-370,159],[-1086,23],[1,-80]],[[68373,73771],[714,144],[168,231]],[[61112,85888],[108,128],[247,-524]],[[57992,74153],[119,35]],[[72096,65334],[-224,-685]],[[85320,56866],[-178,-71]],[[81029,71312],[1,1]],[[86402,53069],[157,-106]],[[84721,94374],[45,-13]],[[64105,39801],[5,-6]],[[87633,43570],[769,-226]],[[88402,43344],[2,1]],[[59397,55237],[345,873],[12,576],[201,495],[6,286],[281,505],[273,354]],[[70173,69228],[0,6]],[[79258,81882],[98,407],[501,108]],[[79857,82397],[1,0]],[[79858,82397],[140,107]],[[80536,87019],[-69,-228]],[[87336,51782],[-166,9],[-301,-382],[8,-601]],[[86351,45399],[27,-19]],[[83580,59963],[-145,-25]],[[55063,24459],[-1,594],[-197,44]],[[61536,65043],[245,-4]],[[89465,36616],[-31,-112]],[[85916,57375],[-1,-1]],[[85915,57374],[-508,-560],[-87,52]],[[89294,27873],[0,-3]],[[77961,74044],[79,401]],[[82680,87650],[-129,-432]],[[73251,67161],[23,87]],[[61853,75558],[-31,127]],[[87679,19340],[5,-1]],[[85121,43847],[-323,-320]],[[59744,81727],[-61,139]],[[73711,66720],[-73,29]],[[79190,64548],[33,115],[444,366],[141,292]],[[67219,81663],[7,104],[782,-105]],[[92194,31448],[-505,89]],[[86059,62987],[53,-117]],[[59945,83137],[-110,-85],[-23,-581],[-112,-461]],[[79398,59281],[-114,-702]],[[47088,50620],[-484,-180],[-786,-380]],[[75896,36844],[185,236]],[[72364,69699],[1,0]],[[58019,50569],[-170,373],[-80,449]],[[52336,11718],[424,-35],[360,209],[5,433],[733,-20],[45,379]],[[65561,38778],[335,-84],[214,-349],[577,-121],[173,-159],[290,-542]],[[89682,35145],[17,119]],[[84610,50048],[-17,104]],[[84561,97357],[-84,102]],[[59853,71473],[-143,333],[-199,-296]],[[79346,90258],[-16,10]],[[87020,59002],[-99,269]],[[88388,53229],[-244,-266],[-142,-443],[66,-209]],[[88096,38404],[-213,-92]],[[83468,60052],[-33,-114]],[[73027,72671],[2,-3]],[[85994,62787],[0,1]],[[63140,30088],[491,19],[889,-125]],[[84412,58531],[-236,231]],[[64000,39235],[-9,-3]],[[86173,19444],[276,244],[306,-168],[632,-63]],[[88848,44382],[7,5]],[[73590,67231],[100,68]],[[50761,26632],[-235,-650],[-6,-1276],[-558,-1033]],[[89461,34922],[-176,257]],[[80337,80749],[-3,-5]],[[85053,44814],[-98,26]],[[77482,69167],[-1500,634],[-328,-74]],[[86579,52937],[76,-31]],[[85568,43261],[50,-200]],[[85902,44872],[-7,154]],[[85895,45026],[-105,574]],[[47876,55131],[1039,367]],[[86790,50297],[-113,-93]],[[87470,58138],[-20,11]],[[84696,98203],[-67,-335],[-112,32],[-40,-441]],[[68919,49101],[112,1598],[180,137]],[[93094,25007],[-49,55]],[[84223,26112],[-7,-24]],[[84397,38453],[221,697]],[[52939,73810],[426,571],[722,432]],[[84602,95522],[48,109]],[[93130,25313],[-1,4]],[[82691,59182],[1,-4]],[[70524,48790],[6,-24]],[[85417,39463],[3,-10]],[[67315,35063],[206,-260],[-44,-797],[319,-677],[-14,-160],[239,37],[513,-111],[-14,-197],[225,-122],[-28,-641]],[[83464,60567],[159,-138]],[[82172,61282],[-141,67]],[[81207,94651],[-26,219]],[[70527,34112],[-702,155],[-1297,134]],[[88778,38897],[-25,-353]],[[91327,26428],[8,10]],[[87754,40086],[1,-3]],[[83234,55910],[2,-1]],[[87883,38312],[12,-174]],[[84743,95706],[5,-6]],[[87937,38565],[-54,-253]],[[79398,59281],[5,-6]],[[64268,38250],[-108,186],[100,359]],[[84100,42327],[69,460],[146,251]],[[55799,83603],[-115,192]],[[81455,63515],[169,-277],[335,-194],[-15,-640]],[[45467,33456],[-2,9]],[[79582,31646],[-22,398],[-582,945]],[[89717,33217],[-13,-20]],[[85840,44317],[62,555]],[[84074,55239],[216,218],[369,153],[226,210]],[[77552,68405],[-211,-75]],[[59968,71301],[-61,142]],[[80103,92862],[-4,-120],[-476,53]],[[82264,69071],[110,393]],[[73425,48056],[-292,541]],[[84815,36679],[49,59],[415,-478],[682,-983]],[[70052,39762],[-69,-611],[-189,29]],[[66380,49669],[-79,-199],[130,-297]],[[74197,43460],[306,-50],[114,-281],[625,-207],[124,-158],[48,-400],[320,-158]],[[81055,86594],[14,172]],[[68858,73148],[0,-4]],[[93880,26669],[-253,-545]],[[66612,79970],[14,252]],[[48195,26400],[9,-348],[-279,-226],[-407,-25],[-374,-128],[-290,-310],[-231,-774],[-232,-157]],[[65709,44732],[-375,-143]],[[93892,28013],[22,-5]],[[85308,44780],[93,-79]],[[67954,31560],[-63,-723],[-116,-147],[-114,-648],[-113,20],[-33,-515],[-455,-84],[-35,-399],[-283,40],[-53,-139]],[[78383,88954],[95,89],[70,842],[-50,108]],[[66555,79922],[224,-502],[780,-156],[841,-304]],[[80809,92165],[-1,-7]],[[67418,38205],[-1300,872],[-307,172],[-1142,203],[-97,-326]],[[48551,65496],[-11,2]],[[58898,40084],[-251,-81],[-15,-852]],[[86178,42911],[-12,-13]],[[66186,58738],[-565,67],[-243,172],[-199,-332],[-251,-616],[-96,-1259],[-197,-329]],[[73545,66911],[49,170]],[[83057,63243],[-94,-174]],[[66484,42530],[104,-744]],[[77258,51578],[-658,-1796],[-163,-619],[-212,-359]],[[80833,92447],[-24,-282]],[[87849,41188],[5,-4]],[[83412,89878],[-132,-460]],[[81434,95912],[130,-197]],[[80919,87890],[101,78]],[[71808,30906],[4,0]],[[64055,32754],[-14,758],[351,-29]],[[59731,50884],[4,-5]],[[80202,72429],[15,-328]],[[79128,68755],[482,53],[233,162],[418,-29],[606,64],[206,-48]],[[71561,51161],[-294,-771],[-329,-709],[-347,-1006]],[[53753,25456],[624,-100],[-10,538]],[[80281,80142],[-8,144]],[[85006,45123],[-17,243],[-325,207],[-150,353]],[[84505,95896],[-278,77]],[[57594,22158],[-190,-429],[-326,-942],[-398,-1457],[-197,10],[-280,-236],[-4,-261]],[[71318,29135],[91,420],[-694,-70]],[[64483,33401],[-2,30]],[[79411,92258],[1,0]],[[81607,57305],[-4,13]],[[62084,46573],[254,-1048]],[[85873,64006],[18,49]],[[56266,41139],[-62,-2038]],[[66689,28965],[69,54],[35,-514],[88,-172],[-35,-533],[157,-293],[180,-577],[154,-103],[375,-575],[198,-671]],[[75954,46881],[-314,-198],[-520,11],[-386,132],[-432,-13]],[[84383,26513],[-160,-401]],[[73997,66936],[-99,70]],[[84790,44270],[-158,-118]],[[82340,59996],[2,3]],[[85132,49214],[210,40]],[[84863,95706],[-125,-12]],[[87937,38565],[-71,69]],[[74616,43059],[-380,-392],[-34,-225],[-467,-251]],[[84420,97275],[69,559]],[[84489,97834],[139,36],[68,333]],[[60116,83658],[20,-11]],[[67901,44235],[176,473]],[[63868,39400],[-80,-589],[-235,54],[6,-732]],[[63559,38133],[2,0]],[[63561,38133],[4,-2]],[[83556,57867],[1,-6]],[[61688,61384],[-41,-696],[445,-888],[340,-1079]],[[78198,69576],[26,-226],[173,118],[387,-227]],[[52251,16650],[-203,5],[-320,-412]],[[63129,44688],[518,-331]],[[69280,70735],[61,-334],[191,-395],[291,-248],[350,-524]],[[58144,84250],[-264,-195],[-231,-332],[-52,-613],[-72,8]],[[87050,58891],[-133,81],[-733,56],[-221,-115]],[[84615,44590],[20,-241]],[[79269,36527],[-453,-773]],[[83364,56319],[51,536]],[[69021,69057],[-61,-231]],[[85815,43686],[-283,-208]],[[79311,91992],[59,-8]],[[79370,91984],[17,-4]],[[79387,91980],[12,100]],[[85120,43207],[74,213]],[[73225,65737],[386,-144],[3,-137]],[[77537,70547],[35,564],[209,1970]],[[91470,20102],[-1,-13]],[[61766,64796],[64,106]],[[79400,80282],[2,6]],[[75265,67170],[127,-131]],[[80728,51813],[3,-28]],[[75401,49246],[529,-150],[144,-344],[-71,-867],[164,-528],[141,-757]],[[74031,67558],[-82,-28]],[[60079,82588],[8,-135]],[[40338,16786],[-26,18]],[[79526,92005],[-139,-25]],[[79387,91980],[-17,4]],[[79370,91984],[0,-1]],[[79370,91983],[-59,9]],[[50392,43193],[-440,-110],[-1,-113]],[[49951,42970],[-25,-976],[125,-105]],[[93277,25125],[-99,263],[111,193]],[[81706,59604],[-35,687],[400,819]],[[79730,82472],[483,10]],[[82534,86737],[37,85]],[[41322,41005],[17,19]],[[41339,41024],[129,68]],[[41468,41092],[443,169],[713,10],[589,652]],[[70707,67564],[-350,769],[-21,419]],[[75922,63307],[232,270]],[[85436,51033],[13,-285]],[[73350,67767],[85,-214]],[[68039,40468],[87,-703],[151,-530],[17,-436]],[[85769,44817],[13,25]],[[85782,44842],[1,0]],[[85783,44842],[54,81]],[[85837,44923],[-25,164]],[[93575,28116],[419,-47],[436,362]],[[86183,42670],[0,29]],[[45465,33465],[143,24]],[[45608,33489],[1585,67]],[[69239,74170],[16,-24]],[[61665,84463],[-26,81]],[[59734,49690],[256,127]],[[89259,36703],[-20,172]],[[89326,29315],[-152,318],[-12,1072]],[[78859,87307],[-95,1229],[-104,347],[42,495]],[[58531,54324],[170,427],[696,486]],[[55687,83787],[-3,8]],[[44560,51792],[-892,1001],[-833,1046]],[[81163,60845],[236,166]],[[90078,35036],[-11,-4]],[[83024,91550],[482,445],[58,135]],[[84705,95684],[33,10]],[[61868,37764],[-97,239],[-251,29]],[[61520,38032],[-4,35]],[[84534,44731],[-126,-107]],[[68266,37337],[518,500]],[[66431,49173],[14,-267],[673,-1974],[135,-1033],[121,-494]],[[87250,50727],[3,8]],[[85568,43261],[59,-232]],[[78844,89417],[242,13]],[[71836,40262],[293,-802],[281,-495],[347,-239]],[[51386,62364],[1,21]],[[76308,46600],[-15,328],[1025,1634],[220,762]],[[80273,82411],[-275,93]],[[50118,61492],[-2,-2]],[[71387,63674],[-175,-51]],[[69672,42920],[665,2030],[277,1493],[76,587],[130,260]],[[84596,44642],[-47,101]],[[80760,65968],[5,29]],[[87909,35762],[-10,-437]],[[82982,54723],[-260,110]],[[85403,54030],[-43,34]],[[85466,50382],[9,-5]],[[62815,72511],[-865,-632],[-222,22],[-293,-435],[-413,-229],[-197,-203]],[[66955,36495],[3,-11]],[[80331,90640],[2,2]],[[88404,43345],[-2,-1]],[[88402,43344],[-157,-801],[-138,-392]],[[55456,64016],[-134,-105],[30,545],[-43,512],[708,318],[316,81],[500,838],[295,394]],[[60265,38330],[10,-256]],[[73598,55844],[-928,-224],[-197,-248],[-450,-210]],[[89418,36298],[74,-159]],[[81510,87442],[-160,-52]],[[82839,88094],[-133,-219],[-49,-481],[-106,-176]],[[86139,42795],[44,-96]],[[56447,78138],[-15,-386],[482,-552]],[[72101,35001],[-513,88],[-94,-961],[-60,-48]],[[47088,50620],[847,15],[95,92]],[[80329,90659],[3,-2]],[[85243,44889],[65,-109]],[[83478,57546],[35,90]],[[94008,23740],[88,245]],[[94291,29544],[1,3]],[[61590,42879],[-14,3]],[[48849,31449],[42,496],[-372,209]],[[59935,82130],[-191,-403]],[[85038,45666],[1,-4]],[[91928,31177],[74,148]],[[69773,38824],[-250,-358],[-739,-629]],[[87684,19339],[398,-104],[144,136]],[[61688,61384],[16,746],[121,65]],[[72563,50814],[-422,410]],[[72101,35001],[-513,88],[-94,-961],[-60,-48]],[[90520,28027],[-130,-127],[-318,18],[-324,-105]],[[86193,45396],[18,62]],[[60315,38375],[23,632],[-129,121]],[[46852,37633],[726,2178]],[[48022,50851],[8,-124]],[[73267,67774],[-168,-11]],[[85006,45123],[163,-147]],[[85006,45123],[167,-115]],[[56130,77653],[-338,-524]],[[64120,61741],[-7,-26]],[[50564,59741],[8,2]],[[60478,83811],[-95,-85]],[[78592,88832],[69,50]],[[84674,40620],[545,-470]],[[72349,69373],[15,-35]],[[80381,38753],[174,39],[239,583],[208,273]],[[80273,82411],[-60,71]],[[83751,57363],[-1,1]],[[79546,85871],[218,281],[160,-50]],[[80476,90023],[-2,-6]],[[64009,37525],[0,-1]],[[60081,50678],[-253,311],[-93,-110]],[[60081,50678],[317,-344]],[[70516,48793],[8,-3]],[[88230,38491],[-134,-87]],[[59930,83351],[15,-214]],[[62083,46578],[1,-5]],[[78869,85766],[340,-237]],[[75922,63307],[155,-215],[549,-423],[164,63]],[[68540,70511],[-148,-385],[63,-160]],[[85021,49747],[0,-1]],[[85376,46792],[429,246]],[[81969,63981],[0,0]],[[84462,42495],[-8,-77]],[[83212,53133],[-2,12]],[[82100,61594],[-21,-19]],[[85930,63212],[-123,165],[68,633]],[[84477,97459],[39,441],[113,-31],[67,334]],[[65635,60273],[-283,175],[-217,-258],[-769,-628]],[[70752,79283],[-206,424],[-553,664],[-299,291]],[[73854,68347],[82,21]],[[70820,47290],[-5,-6]],[[60872,52478],[-238,-23],[-149,-301],[-51,-739],[-75,-322]],[[76497,64601],[-184,400]],[[88182,29037],[-301,618],[-380,487]],[[87501,30142],[-178,-47]],[[64561,38231],[-76,484],[-405,573],[-107,297]],[[63973,39585],[-199,180]],[[63774,39765],[-1083,1737],[-214,452],[-419,613],[-340,361],[-142,-46]],[[84474,95275],[-66,278]],[[83380,56287],[-16,32]],[[73154,80258],[-402,639],[-358,262],[-770,781],[-27,154]],[[80704,39224],[285,177],[57,167]],[[67810,41492],[-168,-144]],[[86169,19786],[4,-342]],[[73053,36976],[222,-183]],[[82197,69161],[-191,214],[-447,-297],[-486,-121]],[[48542,43399],[-528,291],[-313,-7],[-2,229],[-661,-17],[-283,163],[-976,25],[-123,-140]],[[84543,96939],[22,-153]],[[89823,35144],[15,-108]],[[71634,30107],[-162,24],[-100,-994],[-54,-2]],[[72348,71073],[-99,20]],[[78414,61605],[-471,424],[-134,1]],[[71488,72174],[-15,488]],[[81095,94264],[17,180]],[[81527,86944],[202,-6]],[[82071,61110],[-40,239]],[[72866,67128],[75,115]],[[92151,31354],[-149,-29]],[[87610,19367],[-1,-3]],[[82292,64025],[-120,39]],[[84723,94573],[9,85]],[[70909,64277],[-193,-21]],[[85815,43681],[5,2]],[[80424,89899],[-313,-744]],[[84543,96939],[-12,-446]],[[60508,52191],[-2,4]],[[55868,83597],[-69,8]],[[69687,31122],[528,-97]],[[79329,59955],[4,-4]],[[81527,86944],[-1,-32]],[[81526,86912],[-14,-108]],[[87762,40106],[-2,-3]],[[68969,69680],[120,582],[191,473]],[[69674,74183],[-133,-610]],[[89453,34921],[8,1]],[[46391,24432],[-228,-427],[-506,-754],[-277,-671],[-566,-758],[-157,-315],[-418,-519],[-202,-400],[-367,-1211],[-254,-695],[-361,-78],[-761,-905],[-458,-380],[-123,-10],[-213,-341],[-262,-32],[-83,-282]],[[72373,69771],[-8,-72]],[[82072,47665],[-214,545]],[[86623,37743],[2,-3]],[[84323,96820],[154,639]],[[91806,28623],[192,-113],[197,124],[187,-165],[246,86]],[[80206,73390],[101,-330]],[[85869,50027],[-261,47],[-138,306]],[[87214,51770],[245,-572]],[[82552,87227],[1,-10]],[[82553,87217],[0,-1]],[[82553,87216],[-2,2]],[[81729,86938],[-9,43]],[[83467,57701],[-132,195]],[[84556,59327],[-121,27],[-336,-264]],[[86192,35818],[-231,-541]],[[73516,48299],[-91,-243]],[[86677,50204],[-336,-261]],[[74318,65943],[22,53]],[[86894,57599],[-289,-388],[-256,-43]],[[58531,54324],[19,101]],[[91079,31279],[299,-170],[57,126]],[[53085,64148],[-5,150],[504,427],[702,318],[229,-61],[793,-14],[43,-512],[-29,-546],[134,106]],[[80791,87585],[-67,-362]],[[55527,25692],[-444,6]],[[51685,56264],[182,-1087],[-10,-998],[376,-1596],[368,-221],[-39,-236]],[[77320,62358],[193,263],[277,70],[299,-124],[48,-176]],[[89748,27813],[0,0]],[[84631,95788],[107,-94]],[[50126,66620],[-5,0]],[[86349,57168],[-123,86]],[[79660,42761],[-4,0]],[[85881,64069],[2,0]],[[83014,54572],[-5,-9]],[[63510,41466],[8,142],[-302,1331]],[[83839,65582],[198,-175]],[[88226,19371],[1,1]],[[82036,62939],[265,-412]],[[86183,42670],[0,29]],[[82203,68704],[-30,-4]],[[79075,64727],[0,-1]],[[71495,46676],[-421,267],[-177,314],[60,469],[-71,245]],[[43466,13639],[1128,85],[116,-415],[212,-20],[430,529]],[[84710,93868],[-211,39],[-46,-502],[-356,-48]],[[85973,43508],[-47,-81],[240,-529]],[[80046,72348],[186,-337]],[[86166,42898],[-27,-103]],[[83003,48367],[148,74]],[[61386,84271],[-9,5]],[[62168,52015],[-181,-176]],[[61987,51839],[-525,-521]],[[61462,51318],[-199,-216]],[[61263,51102],[-340,-355]],[[60923,50747],[43,-128]],[[93768,25567],[2,4]],[[81799,61108],[144,158]],[[67703,69399],[-9,3]],[[45858,41974],[-101,165],[-319,96],[-832,-37],[-253,-69]],[[85903,35285],[-12,8]],[[85120,43207],[125,-20]],[[71416,67327],[13,63]],[[68588,45710],[306,1014],[7,272]],[[59930,83351],[64,16]],[[78902,65054],[288,-506]],[[73958,79410],[-583,-315],[-19,-298],[-613,-708],[-193,70]],[[80499,58540],[14,304],[-288,731],[-92,99]],[[64013,38891],[-145,522]],[[66493,50227],[165,-448],[168,-956],[189,-710],[325,-995],[52,-374],[397,-1224],[152,-141]],[[83848,59010],[89,-711]],[[61639,84544],[26,-81]],[[62815,72511],[-670,1435],[-424,793],[108,366]],[[44000,29186],[0,-205],[-232,-550],[-786,-558],[-580,-34]],[[42402,27839],[-26,-2]],[[42376,27837],[-1,0]],[[42375,27837],[-3,-1]],[[81286,66677],[-67,651]],[[86368,40528],[210,70]],[[81034,88585],[-47,462]],[[85679,49892],[23,28]],[[89473,36652],[1,-1]],[[41620,16608],[71,13],[302,759]],[[84789,27186],[258,187],[40,315]],[[61377,84276],[-422,55]],[[74800,43259],[380,467],[300,248],[321,-8],[546,144],[188,-67]],[[55233,78728],[109,283]],[[69794,39180],[-21,-356]],[[84251,31770],[-109,-416],[-606,106]],[[84109,57497],[-123,-224]],[[78803,88144],[-1,-3]],[[43517,12685],[0,-522]],[[63471,65273],[-688,-749],[-206,-535],[-241,43]],[[79757,67458],[-575,-133],[-244,28]],[[83638,55304],[-83,-285]],[[89219,36668],[40,35]],[[89928,37800],[-218,96]],[[89162,32603],[-321,317],[-257,101],[-160,-265],[-78,-396],[-290,-163]],[[77907,68640],[62,-227]],[[85367,39187],[557,-535],[-84,-279]],[[72159,66355],[181,-118]],[[61639,84544],[270,255]],[[83910,57877],[102,-224],[-23,-362],[192,-82]],[[85388,44531],[-8,-3]],[[91693,28657],[4,-2]],[[54797,25874],[32,-349],[-175,-209]],[[56199,18843],[-312,-129],[-72,-190],[-308,-102],[-866,66],[-390,122],[-399,-20]],[[53852,18590],[-225,-57],[-217,161],[-459,71],[-122,229],[-473,-17]],[[52356,18977],[-294,-114],[-587,15],[-117,174],[-966,14],[-543,570],[-572,92],[-288,-116]],[[48989,19612],[-1270,-21],[-68,-283],[-361,-7],[2,-112],[-811,-31],[-108,165],[-617,-23],[-102,-174],[-752,-35],[-386,-870],[-665,-128],[-357,-337],[-933,-71],[-107,-178],[-764,-62],[-365,45]],[[78302,85914],[567,-148]],[[84310,95635],[152,45]],[[67619,65213],[-830,1135],[-701,1439],[-550,614],[-259,466],[-267,675],[-233,292]],[[86460,49374],[1,-5]],[[61692,84591],[13,15]],[[63862,35835],[62,745]],[[83694,62127],[-1,6]],[[87883,38312],[-272,-519],[122,-142]],[[79346,90258],[-16,10]],[[65783,47521],[-46,41]],[[48157,14606],[81,-286]],[[64115,28066],[261,-277],[317,-60]],[[40293,16229],[30,98]],[[76705,66290],[69,-105]],[[84161,26189],[213,337]],[[84374,26526],[0,2]],[[84374,26528],[413,655]],[[84787,27183],[2,3]],[[65150,82471],[259,-500],[165,-1]],[[64693,27729],[-141,308],[-429,87],[95,1755]],[[73064,59043],[-294,400],[-342,627],[-373,1121],[-94,-268]],[[78330,68804],[423,414]],[[73225,65737],[-129,43],[-168,585]],[[78124,58549],[25,-81]],[[36241,37141],[-363,89],[-195,267]],[[40614,40960],[348,102],[377,-38]],[[41339,41024],[129,57]],[[41468,41081],[304,83],[2236,151]],[[81429,63458],[26,57]],[[64927,38904],[-3,1]],[[78658,61221],[127,243],[614,-8]],[[73225,65737],[168,-38],[346,187],[-63,266]],[[75794,66840],[607,-448],[373,-207]],[[87827,51892],[6,-113]],[[93892,28013],[284,-164]],[[79774,85540],[118,155],[32,407]],[[40614,40960],[708,45]],[[72231,72743],[-107,366]],[[51861,26682],[-1060,35]],[[78024,42665],[27,19]],[[74645,67390],[-142,-417]],[[50761,26632],[8,1]],[[50769,26633],[32,84]],[[79407,80471],[-5,-183]],[[83046,36824],[42,446]],[[78555,89429],[147,-51]],[[82534,86737],[-315,32],[-490,169]],[[68077,44708],[-123,305]],[[79507,59950],[325,7],[211,290]],[[88710,39109],[31,637]],[[72094,69594],[-13,13]],[[84161,26189],[59,-71]],[[84220,26118],[3,-6]],[[73251,67161],[-32,9]],[[93745,27071],[-220,166]],[[85071,45218],[38,-18]],[[52857,60388],[14,-200],[319,-220]],[[78224,68652],[-126,-2]],[[71808,30906],[-14,-177],[-723,177],[-302,4],[-73,-864]],[[62348,48654],[5,-12]],[[82630,68778],[-5,-3]],[[82625,68775],[-154,-7]],[[62348,35604],[7,171]],[[72124,66765],[-537,147],[-327,-270],[-1,-529]],[[84394,43900],[26,-154]],[[74060,66421],[147,-70]],[[90018,33392],[-298,-174]],[[89720,33218],[-3,-1]],[[59853,71473],[243,238],[688,-579],[41,-98]],[[46748,62396],[-22,-174],[586,-1293],[627,-1288]],[[80290,88932],[-2,3]],[[85009,45248],[-13,371],[115,209]],[[87318,52483],[-18,510],[-186,588],[-221,410]],[[84953,46259],[0,-21]],[[62188,63212],[301,102],[216,-472],[239,-785]],[[60157,66276],[-546,-907]],[[71429,67390],[128,-69]],[[61827,75192],[2,-87]],[[79288,91124],[233,-146]],[[79337,89272],[-8,18]],[[90062,38959],[2,6]],[[64415,34641],[10,-59]],[[85342,49254],[258,65]],[[66148,43322],[0,-86],[550,-102],[146,-243],[-56,-257]],[[81249,85806],[79,188]],[[80273,82411],[-196,-499]],[[55684,83795],[-234,14],[117,346]],[[76220,65014],[3,34]],[[62168,52015],[-12,20]],[[83587,47978],[-18,33]],[[72430,67172],[12,167]],[[74873,48500],[-37,169],[440,1266],[38,11]],[[73514,68824],[-63,-269]],[[74539,80605],[-240,206]],[[77809,62030],[-201,33],[-288,295]],[[67989,69410],[-9,-3]],[[77984,61137],[178,1176],[-25,78]],[[83900,92132],[305,-136]],[[62164,35697],[183,-93]],[[76154,63577],[-232,-270]],[[65880,45568],[61,769]],[[83848,59011],[-87,1064]],[[85661,31159],[-407,-1100]],[[84808,50099],[-472,-159]],[[85057,58570],[14,9]],[[49335,36447],[1381,-19],[319,-117],[1818,-28],[506,-53]],[[91119,33059],[-1,-9]],[[79399,61456],[-26,-39]],[[67590,61383],[540,-395],[243,-342]],[[84845,59914],[-289,-587]],[[72490,28170],[136,-141],[290,-24]],[[90052,34334],[8,66]],[[73352,67298],[52,13]],[[87601,54997],[0,-3]],[[85969,62500],[-2,2]],[[60136,83647],[24,-18]],[[62196,84518],[-143,-236]],[[86169,19786],[4,-342]],[[79984,88417],[-340,-45]],[[88910,37871],[-46,42]],[[76267,37022],[-84,80],[-287,-258]],[[80765,65997],[-419,54],[-195,-144]],[[94138,21664],[217,-18]],[[50906,10813],[173,219]],[[55083,25698],[-271,68],[17,-242],[-175,-208]],[[50900,10818],[96,521],[496,-66],[851,1481],[288,396],[166,371],[572,-13],[608,843],[471,19],[171,287],[-9,1015],[296,289]],[[54906,15961],[142,-35]],[[55048,15926],[83,313],[248,71],[106,269]],[[81107,87131],[-44,498]],[[64015,38886],[-69,139],[140,446],[-114,113]],[[63972,39584],[-199,181]],[[63773,39765],[-1082,1737],[-215,451],[-418,614],[-213,200]],[[75886,69065],[0,-4]],[[84549,44743],[-141,-119]],[[84827,94197],[-10,142]],[[82844,57930],[-3,1]],[[89808,35213],[20,-111]],[[84410,44347],[-20,-444]],[[55799,83605],[0,-2]],[[78753,69218],[6,-211],[244,137],[125,-389]],[[89288,35169],[-3,10]],[[71903,82338],[5,-285],[-219,-175],[-92,216]],[[85332,49979],[20,144]],[[80417,82778],[-374,217],[-45,-491]],[[78236,40153],[242,311],[161,632],[261,1468],[117,1445],[85,211]],[[76226,65054],[-3,-6]],[[60116,83658],[9,-44]],[[86495,41704],[122,-4]],[[78051,42684],[-16,21]],[[76154,63577],[338,-283],[150,-280]],[[85367,39187],[-27,68]],[[89365,35217],[-80,-38]],[[78802,88141],[-20,8]],[[78785,69241],[-1,0]],[[67619,65213],[483,-30],[50,-106]],[[88741,39746],[242,-120],[74,-414],[-61,-615],[-80,-184],[354,-882]],[[89460,36617],[2,-2]],[[81503,30136],[-88,-15]],[[91276,20215],[198,-135]],[[68130,43754],[355,-74]],[[87431,55871],[205,-336]],[[80871,56160],[420,-320]],[[93060,25099],[-15,-37]],[[82900,35259],[1,3]],[[67240,71089],[60,-651],[110,-449],[292,-596]],[[83220,57127],[2,8]],[[79473,60217],[34,-267]],[[79516,79303],[-109,1104]],[[79407,80407],[-1,0]],[[79406,80407],[1,64]],[[83540,60624],[-1,-2]],[[87292,50464],[82,321]],[[60751,66993],[1,7]],[[72475,64750],[-254,-547],[-235,54]],[[67954,31560],[1037,-393],[73,95],[623,-140]],[[62477,69729],[-68,-91],[-189,-817]],[[54433,26700],[-20,-298]],[[89670,33489],[-135,123]],[[65787,38700],[323,-355],[577,-122],[173,-158],[290,-542]],[[64561,38231],[-24,-284],[187,-435]],[[82172,64064],[-203,-83]],[[85878,23898],[36,620],[154,742]],[[86068,25260],[207,587],[165,820]],[[86440,26667],[13,96]],[[86453,26763],[-1,8]],[[86452,26771],[-1,10]],[[86451,26781],[-1,2]],[[86450,26783],[-1,7]],[[62086,84662],[-17,-6]],[[62703,84625],[77,1]],[[78059,82605],[221,514]],[[82823,38841],[-360,228],[-168,-109]],[[66640,79406],[-25,50]],[[87782,39980],[68,-218]],[[83002,48366],[80,29]],[[89217,36287],[-23,-25]],[[83364,56319],[51,536]],[[73325,32298],[-280,89]],[[51799,48530],[-532,6],[-196,124],[-482,-169]],[[88223,39286],[-65,22]],[[60505,52192],[-146,-1099]],[[85815,43686],[-283,-208]],[[62384,84369],[-14,-3]],[[76604,62403],[337,-144],[379,99]],[[83905,57880],[5,-3]],[[79695,42708],[14,25]],[[70749,79280],[3,3]],[[81255,39519],[-209,49]],[[81455,63515],[169,-276],[334,-184],[84,98]],[[83569,48011],[3,1]],[[74151,74395],[-132,-622]],[[70021,64917],[-54,-101]],[[71908,47449],[-113,100],[-478,42]],[[82340,59996],[-274,522],[122,624],[-157,207]],[[91928,31177],[1,3]],[[84376,47988],[100,772],[103,365],[45,710],[189,265]],[[80988,88027],[32,-59]],[[81720,86981],[9,-43]],[[92960,29450],[2,11]],[[64004,37979],[-19,-355]],[[63868,39400],[0,13]],[[88705,38316],[-19,75]],[[81328,85994],[184,428],[308,386],[469,419]],[[88238,38816],[2,-43]],[[78005,68286],[-2,-109]],[[65813,44785],[36,-6]],[[67634,36733],[-610,-68],[-66,-181]],[[93880,26669],[-183,148]],[[85883,64069],[-2,0]],[[74800,43259],[380,468],[300,247],[321,-7],[546,144],[188,-68]],[[72586,83725],[-202,-594],[-9,-351],[-472,-442]],[[85360,54064],[47,-995]],[[60577,83901],[-22,-34]],[[84696,98203],[-9,7]],[[88270,38724],[-40,-233]],[[83827,90775],[-77,64]],[[89219,36668],[40,35]],[[83250,44687],[-1,-4]],[[83821,57410],[-70,-47]],[[74661,67484],[0,10]],[[80988,88027],[41,1007],[-42,13]],[[86642,37757],[-329,-22],[-565,489]],[[91276,20215],[1,158],[437,1571],[308,746],[202,688],[310,662],[307,829],[288,448]],[[49116,24768],[2,6]],[[45857,41955],[1,19]],[[85805,63975],[-2,-4]],[[71192,80562],[-56,238]],[[85885,38278],[2,-2]],[[80674,57288],[-874,1262],[-402,731]],[[92151,31354],[316,129],[291,-169]],[[92758,31314],[2,0]],[[92760,31314],[110,-11]],[[64339,35811],[143,492]],[[49830,41020],[-202,3]],[[47193,33556],[1428,1132]],[[87935,34947],[-36,378]],[[85820,43683],[-67,245]],[[81729,86938],[-303,43]],[[72249,71093],[113,-567],[11,-755]],[[83761,60075],[-12,349],[-126,5]],[[87909,34637],[154,19],[-128,291]],[[84669,47088],[-155,-1162]],[[53894,17057],[7,-3]],[[89938,32771],[-4,-230],[-191,-564]],[[90052,34334],[-25,-476]],[[83002,48365],[1,2]],[[61698,84343],[-33,120]],[[83250,58957],[9,-4]],[[67239,71509],[-76,-155]],[[88224,39121],[-1,165]],[[81249,85669],[-10,8]],[[86223,60589],[0,1]],[[64579,39121],[-381,860]],[[64198,39981],[-433,976]],[[83532,56724],[-99,194]],[[80560,88989],[-43,-14]],[[82957,63433],[100,-190]],[[82871,57928],[-27,2]],[[81452,56412],[161,70],[-6,823]],[[42869,53876],[0,6]],[[48188,26404],[-816,804],[-211,-4],[-503,267]],[[73731,42208],[4,-17]],[[88479,37429],[-74,-120],[-135,421]],[[82928,54942],[-11,24]],[[73696,58504],[230,-91],[468,-588],[135,-258],[431,2],[366,-398],[202,-411]],[[72068,47914],[-90,-652],[36,-600],[-161,-517],[-341,41]],[[91335,26438],[-8,-10]],[[74318,65943],[-27,-168]],[[66682,28950],[7,15]],[[95441,28819],[-127,26],[-200,-344]],[[85478,43835],[-55,161]],[[70886,47971],[70,-245],[-59,-468],[-77,32]],[[61644,52118],[-182,-800]],[[61462,51318],[-57,-274]],[[66514,79605],[-37,-614]],[[77962,68062],[41,115]],[[89434,36504],[123,-90]],[[46543,30416],[1022,327],[732,375],[369,23],[183,308]],[[77320,62358],[192,264],[278,69],[299,-123],[48,-177]],[[87573,36599],[21,-247],[315,-590]],[[80121,29540],[199,-116]],[[75831,62689],[8,-12]],[[79075,64726],[115,-178]],[[65295,37815],[-38,285]],[[79913,29118],[207,421]],[[95114,28501],[-240,39]],[[60966,50619],[-30,-347]],[[81720,86981],[9,-43]],[[69867,48842],[-30,-13]],[[80333,71919],[-3,8]],[[84577,58066],[-188,-562]],[[65339,38103],[128,9]],[[57361,79639],[-80,-379]],[[72084,44987],[110,-1],[-125,1042],[-180,170]],[[68284,43677],[5,420]],[[44000,29186],[-27,369]],[[66084,81260],[64,-186],[413,-145]],[[70913,47158],[195,-845],[-5,-489],[175,-145],[86,-410],[-34,-294],[228,-362],[-12,-858]],[[73027,72671],[505,796]],[[61475,82522],[-69,-529]],[[84397,38453],[243,-1306],[16,-442],[159,-26]],[[85367,39187],[-27,68]],[[73125,65520],[-156,-253]],[[63444,25706],[-804,569]],[[43573,49387],[12,-6]],[[86650,33394],[87,27]],[[70384,68945],[-1,-6]],[[89576,37577],[-306,-46]],[[60703,49398],[-282,487],[-23,449]],[[72438,72677],[-207,66]],[[77537,70547],[34,564],[210,1970]],[[58368,84064],[51,-37]],[[84890,49444],[242,-230]],[[68540,70511],[-137,176]],[[70022,64916],[244,-854]],[[87318,52483],[-663,423]],[[50900,10818],[-2,-20]],[[50898,10798],[-109,-318]],[[50789,10480],[-56,-354],[-410,-247],[-515,-672],[-286,-675],[-166,-1088],[-88,-352],[-779,-21]],[[80337,80749],[15,-56]],[[62944,62057],[6,23]],[[76308,46600],[-252,308],[-102,-27]],[[86442,26774],[7,8]],[[86449,26782],[1,1]],[[86450,26783],[1,2]],[[86451,26785],[327,491],[36,895],[110,138],[-35,675],[195,832],[239,279]],[[85905,54149],[-434,-88]],[[60491,85899],[-400,-29]],[[85245,43187],[-452,-542]],[[79473,60217],[-426,318],[-389,686]],[[46841,16817],[95,-7],[5,465]],[[85073,44450],[-124,-47]],[[62619,27456],[-39,-70],[60,-1111]],[[78784,69241],[-31,-23]],[[58873,67106],[47,477],[-720,121],[-333,432]],[[59968,71301],[-115,172]],[[89631,35120],[153,159]],[[53901,17054],[-7,3]],[[60539,53245],[333,-767]],[[84863,95706],[-115,-6]],[[70815,47284],[5,6]],[[85217,49513],[181,88],[44,248]],[[87933,36698],[4,-10]],[[89682,35145],[17,119]],[[53944,39012],[-197,0],[4,611],[-132,106],[-875,94],[-1575,15],[-122,109],[-689,958]],[[84358,35490],[-71,-190]],[[86442,26774],[7,16]],[[83283,35025],[415,-455],[330,-454]],[[88763,35021],[184,151]],[[62704,84647],[-1,-22]],[[72186,68399],[179,-169]],[[83986,57273],[-77,-610]],[[82551,87218],[-262,9]],[[81095,94264],[19,173]],[[72224,44528],[24,-236]],[[81691,61183],[-5,2]],[[89699,35264],[46,75]],[[85295,56187],[68,223],[-43,456]],[[84812,42155],[-1,-2]],[[69457,70335],[-177,400]],[[63205,44150],[5,-5]],[[85568,43261],[122,-405]],[[64113,61715],[767,-628],[755,-814]],[[81261,85873],[251,550],[207,222]],[[80367,80141],[-18,-152]],[[91868,29981],[0,342]],[[48540,65498],[596,-1352],[363,-160],[142,-573],[646,-44],[5,-275],[950,8],[46,-87]],[[88002,38056],[-107,82]],[[87497,38532],[217,70]],[[79872,40689],[159,-1003],[208,-317],[136,-550]],[[57784,81474],[-98,26],[-615,-346],[-117,-160],[-219,-770],[66,-853]],[[78020,42654],[5,1]],[[54180,24707],[-412,68],[-89,-177]],[[73958,79410],[74,283],[191,196],[76,922]],[[80133,59674],[-735,-393]],[[95442,28812],[-1,7]],[[83848,58795],[1,-3]],[[82551,87218],[-262,9]],[[73113,68831],[-38,-123]],[[85963,58913],[-672,-157],[-133,73]],[[57769,51391],[-297,-284]],[[46759,62817],[-293,486]],[[84742,42497],[-113,-69]],[[81205,85443],[29,560]],[[61879,57383],[-37,-196],[-16,-1344]],[[68437,45211],[192,-58],[342,172],[747,613],[586,584],[516,768]],[[63521,47879],[0,-5]],[[84471,43346],[-18,0]],[[58090,83012],[-565,106]],[[84299,95861],[11,-226]],[[57128,66599],[-4,1135]],[[80833,92447],[19,226],[-289,183],[-16,435],[509,733],[37,233]],[[81093,94257],[2,7]],[[90079,33575],[-141,-804]],[[84334,46232],[180,-324],[-106,-1284]],[[86294,41911],[-23,213]],[[50906,10813],[-1,1]],[[62393,84547],[-3,8]],[[62615,52379],[-2,1]],[[61642,84513],[-3,31]],[[78836,89331],[8,86]],[[62331,84630],[-187,77]],[[63210,44145],[-83,72],[2,471]],[[62437,84733],[-106,-103]],[[86642,37757],[-19,-14]],[[84227,95973],[404,-185]],[[86393,34354],[-22,366],[-410,557]],[[82841,57931],[-461,125]],[[88212,51936],[147,280]],[[74604,66030],[48,64]],[[84161,26189],[-5,15]],[[88848,44382],[-162,-754],[-282,-283]],[[64268,38250],[355,-472],[101,-266]],[[89201,35213],[47,332]],[[68176,45268],[50,134],[211,-191]],[[80514,88976],[3,-1]],[[62273,84459],[21,-88]],[[88122,38914],[65,108]],[[80418,56421],[269,124],[184,-385]],[[79311,91992],[-5,-401]],[[85443,49915],[3,0]],[[89338,35021],[-53,158]],[[93269,28769],[2,3]],[[83984,59055],[-135,-263]],[[41961,13850],[249,3],[574,-202],[682,-12]],[[78880,90121],[-3,-12]],[[79176,54209],[393,52],[278,-276],[770,-183],[657,364],[135,424]],[[83986,57273],[192,-74]],[[53787,40295],[407,-499]],[[51387,62385],[-20,258],[-304,12]],[[83473,57545],[5,1]],[[87651,38865],[0,1]],[[85401,55834],[-1,-2]],[[58324,83683],[-21,71]],[[72895,69013],[123,-108]],[[85600,49319],[77,374],[192,334]],[[69935,74644],[441,926],[380,180]],[[86344,40502],[-581,-442],[-272,-360],[-11,-327],[-119,-110]],[[85868,39594],[191,332]],[[86271,42124],[-88,546]],[[80770,60431],[-174,30],[-553,-214]],[[62125,74274],[106,-136]],[[89791,35288],[32,-144]],[[72186,78118],[364,41]],[[50708,58214],[-77,14],[-29,1353],[-38,160]],[[72757,38726],[11,-127],[-141,-2039]],[[94553,20387],[3,-676],[-110,-129]],[[87064,60034],[13,13]],[[84749,94876],[51,-159]],[[84316,45224],[102,-131]],[[78660,88884],[1,-2]],[[62164,35697],[-3,-353],[103,-311],[-51,-1404],[114,-16],[-9,-437]],[[85245,43187],[-452,-542]],[[60125,83614],[-9,44]],[[73594,42833],[161,171]],[[74939,78942],[-566,91],[-415,377]],[[80273,82411],[-1,-9]],[[88187,39022],[18,-48]],[[87793,38177],[4,-266]],[[75699,56204],[-114,282],[157,161],[563,147],[245,-194]],[[68039,40468],[123,-406]],[[70021,64917],[1,-1]],[[71900,29053],[-8,-6]],[[44008,41315],[1863,84],[-14,556]],[[91281,20204],[-5,11]],[[87386,55924],[45,-53]],[[77795,82108],[-980,-1438]],[[57124,67734],[-526,-280],[-285,-10]],[[59856,71482],[-12,51]],[[73712,71258],[-8,48]],[[83529,56970],[2,1]],[[89928,37800],[74,186]],[[75745,65535],[-294,392]],[[55485,16579],[-118,335]],[[55367,16914],[-130,183],[-777,58]],[[73799,43584],[-109,-15],[-96,-736]],[[47370,64034],[-347,239],[-375,-457],[-182,-513]],[[89710,37896],[-397,341]],[[89646,31320],[97,657]],[[77320,62358],[-263,17],[-267,357]],[[79473,60217],[34,-267]],[[60754,86018],[334,-143]],[[48922,42813],[725,161],[304,-4]],[[49951,42970],[212,47]],[[50163,43017],[229,176]],[[83529,56970],[3,-246]],[[81512,86804],[-34,-207]],[[54413,26402],[-46,-508]],[[41315,44090],[-55,569],[-83,2031],[-341,492],[-35,797]],[[62967,80717],[-25,284],[-243,24],[9,276]],[[71908,47449],[373,197],[1214,-268],[512,-279],[286,-253]],[[80876,56151],[-5,9]],[[48517,23423],[-36,-225],[5,-1617]],[[64561,38231],[-76,484],[-405,573],[-32,284],[-172,34],[-405,676]],[[49867,51774],[-195,595],[-758,614],[-1032,786],[-377,-6],[-413,548]],[[79623,92795],[-121,32],[-82,-478]],[[80235,85868],[3,-2]],[[69567,41412],[-47,-674],[-120,-733]],[[51494,31166],[-178,126],[-465,6],[-12,-284],[-357,-3]],[[82976,58555],[-98,195]],[[81002,39648],[0,21]],[[77537,70547],[-820,-270]],[[74125,66872],[-128,64]],[[75839,62677],[-10,-3]],[[67810,41492],[77,-147],[152,-877]],[[75401,49246],[-120,437],[33,263]],[[73045,32387],[-179,264]],[[66749,73656],[1,-4]],[[85840,44317],[62,555]],[[86292,54318],[1,1]],[[80152,61422],[0,-1]],[[80273,82411],[-74,226]],[[60359,51093],[-302,253],[-299,47],[-100,-257]],[[65561,38778],[226,-78]],[[89437,36523],[594,-268],[409,-386],[465,-221],[-198,-768]],[[85783,33044],[349,87]],[[81078,87108],[-280,187],[-262,-276]],[[79507,59950],[325,7],[211,290]],[[67989,69410],[375,392]],[[89678,36744],[37,-102]],[[60181,76738],[4,6]],[[64779,69834],[-590,527],[-483,587]],[[84176,58762],[-192,293]],[[91540,29154],[-43,-218],[309,-313]],[[84632,44152],[-81,-101]],[[60407,83071],[-25,110]],[[85625,43028],[29,68]],[[82322,62484],[17,54]],[[55501,84151],[66,4]],[[86869,50795],[8,13]],[[63602,53187],[-89,-1443],[-186,-81],[-35,-240]],[[88920,37903],[-10,-32]],[[49771,48465],[-797,366]],[[60081,50678],[-253,310],[-93,-109]],[[85229,44465],[-60,-46]],[[79606,44202],[-52,-1206],[141,-288]],[[84798,43527],[-345,-181]],[[82471,68768],[-313,202],[-116,-109]],[[81286,66677],[87,-9]],[[85746,62635],[-52,-69]],[[54460,17155],[-202,428],[-134,619],[-272,388]],[[53852,18590],[-301,828],[-259,512],[-46,302]],[[90987,25816],[0,-368],[-254,-695],[-34,-689]],[[82680,87650],[133,278],[52,494]],[[84451,93399],[-18,-236],[-434,-575]],[[80324,92997],[-221,-135]],[[67770,32964],[12,201],[239,41],[513,-111],[-12,-204]],[[69239,74170],[-368,-1022]],[[68373,73771],[-395,-71],[-197,72],[-1031,-120]],[[96432,16224],[97,-625],[103,-253],[366,-418],[289,-38],[154,-300],[297,-230],[285,-368],[61,-371],[436,-539],[376,-254],[534,-230],[468,70],[77,445]],[[72096,69598],[-15,9]],[[55607,84177],[-40,-22]],[[62348,35604],[-1,0]],[[81452,56412],[25,211]],[[75375,77533],[348,-732],[-22,-264]],[[92960,29450],[5,-28]],[[89967,38439],[-284,107]],[[66923,57829],[194,-529],[44,-326],[-38,-799],[46,-490],[132,-551]],[[91518,27050],[17,61]],[[91535,27111],[72,571],[199,941]],[[79581,31643],[1,3]],[[84381,96963],[39,312]],[[47939,59641],[296,197],[378,-6],[77,169],[379,-6]],[[82042,63153],[-54,330]],[[82977,56505],[3,4]],[[71806,45932],[-2,0]],[[84477,97459],[40,439],[112,-31],[67,336]],[[75983,38500],[67,157],[513,1],[443,334],[790,851],[294,38]],[[88238,38816],[27,13]],[[73050,67463],[-212,98]],[[78506,67532],[4,0]],[[88240,38773],[32,-41]],[[84560,96476],[28,205]],[[71788,63173],[-8,22]],[[87883,38312],[-141,-76],[-377,60]],[[89313,38237],[-410,602]],[[74279,46825],[5,1]],[[93543,28322],[-11,15]],[[86344,40502],[18,3]],[[76324,69984],[433,189],[-40,104]],[[74315,68461],[10,-307]],[[60160,83629],[10,-72]],[[70132,78526],[-49,-264],[-377,-306]],[[88068,52311],[-65,211]],[[52753,60413],[-102,79],[-1197,48],[-77,115]],[[62387,34739],[-134,50],[-40,-1160],[114,-16],[-9,-437]],[[58301,84146],[67,-82]],[[85396,54168],[-36,-104]],[[72101,35001],[138,856]],[[84798,43527],[323,320]],[[85985,62806],[12,-145]],[[78224,68652],[62,141],[467,425]],[[79913,29118],[-23,-84]],[[90052,34334],[8,66]],[[80076,78312],[23,-108]],[[67581,37783],[-27,200],[170,172],[58,-588]],[[71473,81869],[124,225]],[[57124,67734],[24,905],[-75,1619],[5,1227],[-191,434]],[[81880,62343],[-74,-54]],[[52524,50407],[300,129]],[[66039,43946],[0,690],[-190,143]],[[85677,50472],[11,21]],[[68915,47274],[-21,-550],[-203,-764],[-225,58]],[[77323,64942],[-43,12]],[[90058,57371],[-2,1]],[[73125,65520],[100,217]],[[80407,82773],[-409,-269]],[[87599,58693],[-2,-1]],[[84749,94876],[-162,241]],[[66573,80012],[-489,655]],[[63295,71367],[0,8]],[[59735,50879],[-77,257]],[[55267,24016],[30,1672],[230,4]],[[75839,62677],[346,-140]],[[76185,62537],[419,-134]],[[60111,83112],[-166,25]],[[80536,87019],[-69,-228]],[[72365,68230],[148,-93]],[[72815,66916],[59,-38]],[[86341,49943],[119,-569]],[[89746,27813],[-374,-166]],[[80474,90017],[222,-173],[181,-366]],[[86006,45953],[-222,387]],[[83675,92166],[-5,2]],[[72594,46967],[539,1630]],[[93511,28467],[21,-130]],[[88591,38762],[-119,172]],[[85888,64066],[2,-6]],[[72224,44528],[337,-304],[728,-257],[510,-383]],[[59731,50884],[4,-5]],[[85746,62635],[13,-25]],[[72866,67128],[-181,-232]],[[42379,27832],[-4,5]],[[42375,27837],[-3,-1]],[[79398,59281],[5,-6]],[[85483,39379],[-63,74]],[[73062,68598],[107,-266]],[[84037,26407],[-1,-14]],[[76081,37080],[389,198],[342,434],[-22,155]],[[89282,35925],[76,86]],[[45839,27939],[-305,-167],[-279,-517],[-208,-12],[-405,-774],[-207,-235],[-246,-806],[-243,-1285],[-357,-452],[25,-1028],[-501,-397],[-516,-556],[-121,-386],[27,-999],[-132,-284],[-409,-39],[-219,-362],[-457,-514],[-771,-702],[-136,-493],[-321,-493],[44,-1187],[191,-22]],[[76154,63577],[338,-283],[150,-280]],[[52224,49825],[-131,-157]],[[88097,51700],[112,-34]],[[87210,50654],[40,73]],[[85997,62660],[-30,-158]],[[51387,62385],[-20,257],[-334,-102]],[[81034,88585],[-46,-558]],[[78492,59011],[-391,303],[-639,257]],[[87499,58117],[95,568]],[[85411,55809],[-2,-1]],[[61475,82522],[-91,-110],[-540,102],[-160,147]],[[73729,68120],[-70,5]],[[85702,49920],[-23,-28]],[[94047,26422],[15,130]],[[86341,49943],[-138,-64],[-334,148]],[[84672,44851],[75,-92]],[[85050,45387],[16,-307],[176,-191]],[[80474,90017],[-50,-118]],[[47193,33556],[429,-384],[168,-249],[729,-769]],[[85409,55808],[2,1]],[[72574,72679],[-136,-2]],[[73269,67416],[5,100]],[[58111,74188],[-119,-35]],[[62336,64032],[45,-539],[-200,-43],[7,-238]],[[60872,52478],[-238,-23],[-128,-260]],[[88525,45672],[140,-962],[183,-328]],[[88356,39364],[60,-101]],[[91518,27050],[18,-15]],[[67901,44235],[-966,195]],[[67565,59824],[66,472],[-85,861],[44,226]],[[50564,59741],[8,2]],[[81084,85038],[115,120]],[[80389,81357],[-21,-270]],[[48401,18782],[148,12]],[[64342,35538],[-4,395],[144,370]],[[89033,28034],[-10,6]],[[89023,28040],[-1,0]],[[89022,28040],[-458,-758]],[[88564,27282],[-1,-1]],[[88563,27281],[-535,-162],[-214,-151],[-664,-104],[-367,133],[-331,-226]],[[86452,26771],[-1,1]],[[86451,26772],[-3,2]],[[86448,26774],[-6,0]],[[60515,58326],[139,49],[446,428],[178,-16]],[[87384,37342],[-167,-422]],[[81118,94479],[-4,-42]],[[52659,56135],[-349,-89],[-506,-10],[-119,228]],[[81957,60732],[-184,345]],[[73435,67553],[39,-86]],[[64579,39121],[210,-421],[15,-469]],[[65806,46896],[-1,-6]],[[55684,83795],[-13,3]],[[67371,32703],[382,-17],[278,-309]],[[85625,43028],[-94,-46]],[[84721,94374],[2,199]],[[87856,34730],[-154,372]],[[73684,68009],[-77,0]],[[58303,83754],[-213,-742]],[[65231,38900],[28,455],[-589,95],[17,406]],[[66017,42202],[-27,-144]],[[83388,48276],[-194,-158]],[[83949,57093],[-30,-117]],[[83210,53145],[-34,196],[-341,257]],[[49343,36555],[-8,-108]],[[75250,72317],[161,54],[142,-702],[-102,-396],[86,-378],[181,62]],[[65571,69669],[-28,16]],[[83513,57636],[3,-2]],[[68784,37837],[-518,-500]],[[80332,90657],[119,418]],[[87937,36688],[43,-190],[329,-398]],[[73590,67231],[-339,-70]],[[79526,92005],[-103,-37]],[[83283,35025],[0,1]],[[88721,39473],[20,273]],[[58514,49563],[-349,276],[-241,411]],[[80871,56160],[5,-9]],[[84895,38473],[256,59],[136,314]],[[73169,68332],[84,-399]],[[73522,66748],[-40,-151]],[[85420,39453],[-53,-266]],[[47088,50620],[-181,-73],[-114,360],[-9,1046],[-213,502],[18,575]],[[73113,68831],[-95,74]],[[85690,42856],[-158,-382]],[[68901,46996],[14,278]],[[73419,69053],[372,-113],[95,-145],[-32,-448]],[[77962,68062],[-95,-62]],[[88266,38868],[-61,106]],[[81441,96026],[-7,-114]],[[84521,96425],[52,-410]],[[79070,40131],[-2,-3]],[[68031,32377],[-82,-513],[-273,-461],[-135,-375],[-71,-698],[-290,-238],[-279,-565],[-26,-341],[-186,-221]],[[81061,94169],[34,95]],[[64013,38891],[1,-2]],[[80871,56160],[562,248],[44,215]],[[52839,49033],[37,-354],[-231,-432],[-82,-843],[-338,-1179]],[[71259,66113],[-13,299]],[[64266,38218],[2,32]],[[82440,68614],[31,154]],[[89986,38118],[-19,321]],[[58514,49563],[-159,-890],[-23,-632]],[[82289,87227],[21,224]],[[82310,87451],[-1,2]],[[82309,87453],[-293,783]],[[80988,88027],[-69,-157],[144,-241]],[[74188,67644],[183,114]],[[91293,20214],[-17,1]],[[86677,50204],[-336,-261]],[[82270,67921],[172,-976],[21,-773]],[[79405,82392],[325,80]],[[86271,42124],[-88,546]],[[62633,84489],[0,2]],[[60555,83867],[-6,7]],[[64602,82446],[84,-109],[375,-35],[89,169]],[[79328,91525],[-51,-484],[244,-63]],[[80046,72348],[-5,10]],[[49444,35371],[2,10]],[[65574,81970],[-46,-452]],[[63392,82168],[50,0]],[[65881,48182],[-59,-340],[-29,-943],[43,-52]],[[66291,39582],[7,-590],[-511,-292]],[[72969,65267],[-203,-508]],[[87937,38565],[-162,158]],[[66935,44430],[-98,69],[-798,136],[-190,144]],[[75114,71334],[362,79],[76,256],[-141,701],[-161,-53]],[[72099,69602],[10,-18]],[[68536,45327],[15,-410],[163,-92]],[[75175,66422],[-250,95]],[[62967,80717],[194,-753],[337,-321],[278,-409]],[[84495,96705],[93,-24]],[[80876,56151],[-5,9]],[[88945,36551],[169,46]],[[76642,63014],[218,218]],[[74439,72247],[502,-110],[87,76]],[[86593,54550],[-7,-13]],[[86586,54537],[307,-546]],[[72081,69607],[-183,-108]],[[83958,61447],[169,667]],[[71680,52879],[-216,-581]],[[89465,36615],[-31,-111]],[[84580,97176],[-47,28]],[[76242,78723],[-389,238]],[[65881,48182],[862,-208],[67,46]],[[87380,55880],[6,44]],[[41802,18299],[-507,-795]],[[86642,37757],[-329,-21],[-565,488]],[[61982,51798],[1,8]],[[89580,36135],[-162,163]],[[83456,62231],[237,-98]],[[76679,35178],[-5,6]],[[72912,68197],[-255,-186]],[[93543,28322],[0,-3]],[[63959,31451],[0,0]],[[70266,64062],[-65,-85],[-475,304]],[[89434,36504],[123,-90]],[[78224,68652],[-44,-186]],[[57545,53468],[74,-380],[478,-851],[175,-404],[240,-151]],[[84394,43900],[68,77]],[[86867,51405],[-688,67],[-332,163],[-274,-96]],[[85380,44528],[-83,2]],[[79860,28970],[-38,1]],[[56781,78841],[-334,-703]],[[52093,49668],[-222,-443],[-8,-707],[-64,12]],[[72757,38726],[331,399]],[[60262,83523],[250,-373],[-96,-161]],[[87228,37289],[156,53]],[[80354,80686],[-2,7]],[[78170,40974],[234,-103],[-40,-617],[-128,-101]],[[86578,40598],[2,-6]],[[71768,45691],[-159,-30]],[[65257,38100],[-219,18]],[[85707,50673],[-5,-31]],[[73204,67916],[-105,-153]],[[68915,47274],[-105,935],[66,174],[43,718]],[[50872,62152],[-303,-773]],[[67045,52515],[-47,-180],[-114,-1370],[-148,-429],[-400,-766],[-140,-393],[-160,-761],[-198,-637],[-55,-458]],[[43676,49663],[5,6]],[[50643,44208],[472,34],[1137,840],[500,242],[303,240]],[[80467,86791],[-187,-257],[-275,-175],[-81,-257]],[[60512,83792],[9,20]],[[89365,35217],[-80,-38]],[[75303,66700],[89,339]],[[73590,67231],[123,-85]],[[87470,58138],[-575,-538]],[[85466,50382],[9,-5]],[[45637,21919],[-602,-79],[-31,-298],[-203,-63]],[[89981,37211],[38,-358]],[[87050,58891],[-610,-74],[-477,96]],[[74419,66371],[50,319]],[[73148,33334],[-41,-470]],[[72215,67168],[56,3]],[[80600,90152],[165,138]],[[63936,36900],[75,625]],[[89606,35770],[2,82]],[[78458,39377],[339,179]],[[76733,39385],[-133,125]],[[74101,40203],[562,702],[611,596],[460,705]],[[79280,89836],[66,422]],[[64773,47535],[186,-657],[-37,-462]],[[85790,45600],[-6,740]],[[47992,30975],[305,143],[369,22],[183,309]],[[44018,28201],[-4,4]],[[50564,59741],[-296,35],[-241,536]],[[60116,83658],[27,-46]],[[82271,69571],[103,-107]],[[93523,28829],[-259,-56]],[[87573,36599],[74,-14]],[[67703,69399],[-9,3]],[[86584,40840],[0,-4]],[[83413,49013],[65,-48]],[[83673,57216],[-144,-246]],[[65329,38436],[-98,-80]],[[87292,50464],[-82,190]],[[71292,29082],[26,53]],[[83377,49074],[-2,2]],[[86184,42908],[-6,3]],[[59476,82938],[-603,-35],[-583,144],[-199,-41]],[[58091,83006],[-1,6]],[[85748,38224],[-353,235]],[[62331,84630],[-61,82]],[[95397,18515],[413,-389],[308,-1044],[314,-858]],[[80724,87223],[-188,-204]],[[48156,14611],[151,355],[1119,736],[540,279]],[[86474,60448],[-251,141]],[[85767,44838],[14,2]],[[85781,44840],[2,0]],[[85783,44840],[119,32]],[[93619,26123],[-15,-145],[-475,-660]],[[84635,44349],[155,-79]],[[91697,28655],[109,-32]],[[61386,84271],[-9,5]],[[70716,64256],[-224,12],[-229,-197]],[[66611,79966],[1,4]],[[79603,92948],[97,155]],[[75974,65286],[-229,249]],[[60262,83523],[-151,-411]],[[88741,39746],[208,461],[-680,460]],[[88269,40667],[-129,343],[-286,174]],[[49444,35371],[42,959],[-151,117]],[[89928,37800],[-352,-223]],[[58019,50569],[-95,-319]],[[88003,39523],[-2,-3]],[[91276,20215],[2,158],[437,1569],[308,747],[204,693],[308,657],[235,652]],[[54433,26700],[-66,-806]],[[80704,39224],[73,137],[478,158]],[[69935,74644],[-120,-257]],[[62439,84732],[-2,1]],[[64415,34641],[-97,141],[-32,-550],[-79,-55],[-51,-568],[-291,-212],[-17,-537]],[[47370,64034],[199,61],[971,1403]],[[83685,57885],[70,0]],[[66958,36484],[-3,11]],[[85534,43459],[1,2]],[[78302,85914],[-2,-26]],[[87223,36357],[-144,-353]],[[86869,50795],[8,13]],[[87060,58837],[1,1]],[[79671,80272],[-269,16]],[[86166,42898],[12,13]],[[78687,61163],[-29,58]],[[54988,76947],[10,37]],[[64055,32754],[-15,758],[448,-87]],[[81988,36026],[-589,-404]],[[73561,69015],[-47,-191]],[[47578,39811],[90,174]],[[78189,68149],[-6,58]],[[87870,39700],[36,16]],[[85111,45828],[-61,-441]],[[85142,56795],[-3,4]],[[74419,66371],[-79,-375]],[[86541,54490],[-249,-172]],[[88223,51904],[-11,32]],[[89981,37211],[-507,-560]],[[78352,56699],[546,385]],[[83619,49634],[14,47]],[[84028,34116],[374,-438]],[[64784,38147],[254,-29]],[[83569,38109],[454,287],[374,57]],[[48542,43399],[380,-586]],[[48540,65498],[1,-1356],[-386,-654],[-508,-178],[-277,724]],[[56422,49693],[275,-159],[81,-230],[254,-56],[502,153]],[[45992,64118],[-3,0]],[[63440,53163],[-78,-5],[-492,-576]],[[86166,42898],[-3,4]],[[64415,34641],[36,-667]],[[79771,78188],[-149,-704],[-37,-779],[40,-254]],[[63025,43065],[485,-1599]],[[80175,79643],[174,346]],[[80273,82411],[-1,-9]],[[76113,81820],[288,-364],[414,-786]],[[81969,63981],[-485,-397]],[[78185,37444],[-308,-160],[-385,173]],[[84817,94339],[-51,22]],[[63261,27582],[-327,255],[-272,970],[190,353]],[[68485,43680],[224,-25],[502,322]],[[86344,40502],[-22,-369],[572,-568],[7,-161],[330,-961],[134,-147]],[[82551,87218],[105,176],[49,481],[109,52],[51,495]],[[80232,72011],[98,-84]],[[73561,69015],[-142,38]],[[72329,66494],[-205,271]],[[83212,53133],[-2,12]],[[61909,84799],[160,-143]],[[58514,49563],[1220,127]],[[78020,61098],[-559,432],[-624,355],[-298,262]],[[76539,62147],[-354,390]],[[76185,62537],[-84,151],[-259,-7]],[[75842,62681],[-13,15]],[[64452,34913],[0,-4]],[[71808,30906],[40,-244],[-174,-67],[-40,-488]],[[62827,72510],[0,5]],[[84672,44851],[19,19]],[[66588,41786],[-104,744]],[[87318,52483],[143,1033]],[[79041,57055],[-143,29]],[[83194,48118],[-37,-23]],[[81603,57318],[114,141],[870,-85],[346,45],[289,-284]],[[81267,83090],[-141,36],[-275,-364],[-443,5]],[[80408,82767],[-1,6]],[[79998,82504],[-140,-107]],[[79858,82397],[-117,-755],[-45,-635],[-302,-300],[13,-236]],[[57679,67393],[146,-449],[23,-416]],[[72666,37411],[-18,-3]],[[83984,59055],[-136,-45]],[[69214,51198],[-108,-38]],[[65150,82471],[529,39]],[[57073,79485],[-272,-114]],[[72862,34052],[4,-133]],[[74262,66832],[-137,40]],[[82100,61594],[-21,-19]],[[73329,67844],[-62,-70]],[[85815,43686],[25,631]],[[65543,69685],[-1,-4]],[[85471,42007],[61,467]],[[82865,88422],[-2,3]],[[82666,54868],[-1,-5]],[[66211,51082],[296,-114],[460,44]],[[75954,46881],[-314,-198],[-520,11],[-386,132],[-450,0]],[[89682,35145],[-121,-210],[-223,86]],[[60262,83523],[423,-584],[-1,-278]],[[82534,86737],[37,85]],[[88945,36551],[-243,-41]],[[81267,83090],[21,72]],[[83736,58439],[-73,-202]],[[83685,57885],[-128,-17]],[[73590,67231],[265,250],[113,368],[-114,498]],[[83750,90839],[-84,285],[95,881],[-84,160]],[[83677,92165],[133,682],[270,321],[17,189]],[[81607,57305],[-4,13]],[[84737,36120],[-2,2]],[[81238,86342],[1,-665]],[[85420,39453],[448,141]],[[84817,94339],[-77,-73]],[[80467,86791],[-187,-258],[-275,-175],[-81,-256]],[[50027,60312],[-182,45],[-291,437]],[[91956,26103],[189,164],[239,-244],[299,-119],[224,-233]],[[92832,31782],[-72,-467]],[[92760,31315],[110,-12]],[[82391,48404],[291,2]],[[58512,51682],[-48,-267],[-409,-718],[-131,-447]],[[53250,33091],[-103,-77],[-935,21],[-1,-43],[-1482,-2]],[[66017,42202],[-143,-12]],[[61569,31255],[79,504],[-39,396]],[[84694,61243],[-1,4]],[[83948,60905],[-337,185],[-723,197],[-809,288]],[[79398,59281],[5,-6]],[[84334,46232],[-126,-69]],[[64010,38884],[4,5]],[[68031,32377],[-77,-817]],[[72475,64750],[-2,-9]],[[73837,66651],[-126,69]],[[84382,43956],[28,391]],[[80395,93076],[-71,-79]],[[59930,83353],[0,-2]],[[84825,95272],[-177,78],[-116,-219]],[[83388,48276],[98,-186]],[[89338,35021],[-53,158]],[[85869,50027],[-167,-107]],[[70815,47284],[-364,294],[-197,445],[-425,656],[38,163]],[[76497,64601],[-343,-1024]],[[84691,44870],[0,0]],[[85475,50377],[-9,5]],[[84454,42418],[-353,-88],[68,457],[146,251]],[[89275,36343],[-58,-56]],[[87938,34940],[-1,1]],[[48156,14611],[9,-3]],[[89649,31312],[-3,8]],[[64231,66967],[159,-175],[711,-101],[368,-497],[707,68],[251,-315],[144,-32],[468,-607],[380,75],[200,-170]],[[69211,43977],[449,-601],[12,-456]],[[51685,56264],[-22,328],[-289,881],[-438,719],[-228,22]],[[88464,39359],[-48,-96]],[[87441,40401],[-99,54]],[[86656,40696],[59,1]],[[84873,95949],[-10,-243]],[[55446,83159],[-5,-388],[165,-810],[-141,-169],[18,-253]],[[60333,41298],[-526,-1627]],[[61511,41923],[-78,-480],[-868,104],[-232,-249]],[[73064,59043],[-326,460],[-99,-82]],[[61605,42653],[1,11]],[[68859,73160],[12,-12]],[[81504,87367],[6,75]],[[66573,80012],[18,-23]],[[89646,31320],[97,657]],[[71471,62498],[-352,-222],[-497,56],[-314,-102],[-452,300],[-208,-146],[-212,43]],[[41155,16654],[-6,-2]],[[88070,54000],[121,-212]],[[51377,60655],[67,-117]],[[89639,35869],[-29,-7]],[[82256,28592],[451,-58],[50,-107]],[[84710,93868],[-212,39],[-51,-513],[-350,-37]],[[62506,84682],[-45,-89]],[[60281,67021],[-495,286],[-103,170],[-664,30],[-99,76],[-47,-477]],[[80517,88975],[44,419],[-178,86]],[[94201,22722],[75,-238],[79,-838]],[[73744,69914],[-295,-559]],[[85903,35285],[-2,18]],[[76860,63232],[-218,-218]],[[43436,60010],[55,262],[-35,2008],[-323,231],[-318,958],[-489,445],[-94,408]],[[85532,43478],[-287,-291]],[[44605,61570],[-249,-399],[4,-221],[-218,-129]],[[44605,61570],[-2,-564]],[[44605,61570],[93,-192]],[[89201,35213],[-254,-41]],[[70336,68752],[6,-14]],[[60281,85872],[-2,3]],[[85020,45450],[-11,-202]],[[71986,64257],[-102,-395],[-150,56]],[[93072,25208],[-12,-109]],[[40519,53467],[-57,169],[-24,905],[-100,-7]],[[95308,28824],[1,-1]],[[79473,60217],[232,371]],[[87795,52067],[0,-2]],[[63306,39895],[7,4]],[[83587,47978],[381,342]],[[59930,83353],[32,9]],[[85532,43478],[-287,-291]],[[81249,85669],[-10,8]],[[83115,58286],[-244,-358]],[[46726,59110],[34,-1154]],[[83619,49634],[-17,881]],[[88629,37952],[-393,282]],[[81880,62343],[-6,-56]],[[81316,87512],[-22,161]],[[59968,71301],[346,-129]],[[71963,64460],[-8,5]],[[68381,81259],[-44,203]],[[77061,76017],[7,315],[235,-57],[199,123]],[[49444,35371],[-283,-334],[-301,-552],[4,-2339],[147,-527]],[[49011,31619],[-131,-175]],[[83412,89878],[-257,-831],[-252,-105],[-40,-517]],[[49554,60794],[298,417]],[[72231,72743],[-29,5]],[[73275,36793],[79,541],[96,173],[522,-28],[217,147],[557,-180],[71,-329]],[[81429,63458],[-4,-50]],[[84380,62987],[-199,180]],[[69189,50984],[-82,174]],[[68249,37226],[-494,-30],[27,371]],[[79507,59950],[-34,267]],[[74151,74395],[315,583],[914,1093],[321,466]],[[72194,31756],[-112,206],[-21,434],[-825,262],[63,754]],[[85476,54179],[-73,-149]],[[67249,46842],[-772,-316],[-3,-60]],[[89838,35036],[-1,-121]],[[83167,65778],[419,-331],[253,135]],[[63936,36900],[52,447]],[[75654,69727],[-244,-379]],[[72459,67110],[-29,62]],[[87608,19364],[2,3]],[[61898,75499],[-145,4]],[[41315,44090],[-103,-313],[49,-2226],[-674,-28],[27,-563]],[[62432,58721],[33,-8]],[[84505,95896],[126,-108]],[[48503,42346],[33,-248],[433,-50],[20,266]],[[82436,66193],[-29,-254]],[[64339,35810],[0,1]],[[45735,50000],[0,-11]],[[68068,71024],[-54,-957],[66,-498],[-91,-159]],[[84846,46863],[367,-96],[-42,140]],[[56801,79371],[-20,-530]],[[85830,62734],[0,-2]],[[66612,79970],[-9,941],[-42,18]],[[81611,84135],[-107,1140]],[[71781,63196],[7,-23]],[[85158,58829],[-101,-259]],[[94138,21664],[-353,795],[-354,1345],[-154,1321]],[[86674,49337],[0,2]],[[73889,42292],[285,-259]],[[79272,36527],[-3,0]],[[52857,60388],[-104,25]],[[71808,30906],[144,-32],[127,251],[67,632],[107,-20],[176,728],[127,-25]],[[76200,35811],[110,44],[364,-671]],[[85904,40947],[275,-139]],[[80919,87890],[-57,359],[-427,343]],[[86896,57599],[-2,0]],[[81607,57305],[-390,-187],[-543,170]],[[71480,63821],[-93,-147]],[[84383,26513],[-160,-401]],[[54654,25316],[-308,6]],[[83988,57472],[-2,-199]],[[79398,59281],[5,-6]],[[84615,44590],[82,-52]],[[86492,41709],[-1,-8]],[[89437,36523],[-3,-19]],[[80007,81643],[70,269]],[[82097,36100],[-109,-74]],[[63705,55802],[-23,-90]],[[63682,55712],[-216,-14],[-648,373],[-400,21]],[[89461,34922],[-8,-1]],[[82110,47270],[85,-30]],[[81399,61011],[0,0]],[[54346,25322],[-383,-161],[-1,-199],[-283,-364]],[[86193,45396],[-5,-5]],[[86188,45391],[0,0]],[[86188,45391],[0,1]],[[86188,45392],[0,1]],[[86188,45393],[-135,15],[-157,-381]],[[85896,45027],[0,0]],[[85896,45027],[-1,-1]],[[85895,45026],[0,0]],[[85895,45026],[-27,-87]],[[82270,67921],[-105,277],[8,502]],[[80152,61422],[-42,-332]],[[81399,61011],[0,0]],[[48849,31449],[13,-3]],[[48862,31446],[18,-2]],[[40998,15798],[-3,-9]],[[92832,31782],[-2,19]],[[82921,31001],[-126,-116]],[[89579,35997],[31,-135]],[[83151,48441],[237,-165]],[[65295,37815],[19,176]],[[83392,57177],[41,-259]],[[69837,48829],[-75,-290],[-99,-942],[-312,-850],[-98,-572],[-96,-1257],[-66,-294],[-485,-1001],[-113,-1435]],[[93397,24110],[-120,1015]],[[86390,38529],[313,-92],[21,-268]],[[61569,31255],[79,504],[-39,396]],[[62026,74986],[-157,-167]],[[61639,84544],[-11,132]],[[61628,84676],[14,367],[-118,461]],[[61524,85504],[65,340],[183,249]],[[88019,39522],[-16,1]],[[93132,25242],[-60,-34]],[[95208,28210],[-63,176]],[[62944,62057],[218,-745],[353,-917],[55,-313],[358,-585]],[[73995,37517],[194,109],[557,-180],[71,-329]],[[68751,47336],[164,-62]],[[75250,72317],[195,48],[210,451],[357,485],[317,66],[313,202],[233,-6],[381,307],[550,132],[199,210]],[[93770,25571],[1,-4]],[[81719,86645],[570,582]],[[63959,31451],[97,-22],[59,915]],[[73365,66864],[61,93]],[[80775,29932],[10,-519],[-89,-540]],[[80696,28873],[-32,-134]],[[80664,28739],[-259,82]],[[87694,36202],[-121,397]],[[82682,54845],[-17,18]],[[84798,43527],[323,320]],[[50980,20657],[654,-134]],[[69980,50204],[1,-9]],[[65323,38414],[376,-112],[53,104]],[[61548,64602],[-75,-258]],[[86901,51126],[-24,-318]],[[62108,67381],[2,-4]],[[85327,49967],[0,-3]],[[73970,31995],[-39,-22]],[[88947,35172],[-296,222],[-342,60]],[[79638,42162],[359,173],[458,90],[599,321],[408,87],[191,196]],[[84551,44051],[-89,-74]],[[65941,46337],[-4,-9]],[[83115,58286],[171,-212]],[[85028,44914],[-19,334]],[[58250,84072],[51,74]],[[64268,38250],[-108,186],[100,359]],[[41125,16636],[195,854]],[[79808,65321],[15,139]],[[85120,43207],[125,-20]],[[81030,71313],[-2,1]],[[64218,29879],[12,216],[-279,42],[-61,528],[69,786]],[[64602,82446],[-586,-794],[-107,-269],[-33,-709]],[[65329,38436],[-6,-22]],[[69687,31122],[-16,97]],[[89608,35852],[-2,-82]],[[78785,88153],[-3,-4]],[[71634,30107],[7,-468],[199,-574]],[[81095,94264],[-24,-102],[378,-105]],[[95114,28501],[31,-115]],[[66588,41786],[92,-486]],[[72915,34087],[16,-25]],[[89194,36262],[-63,-124]],[[73251,67161],[23,87]],[[54907,16084],[2,-120]],[[54909,15964],[-3,-3]],[[54906,15961],[-295,-290],[9,-1014],[-174,-293],[-499,-77],[-44,-1603]],[[84691,44870],[88,-281]],[[82630,68778],[-23,118]],[[44555,51793],[5,-1]],[[62419,85073],[111,-109]],[[73075,68708],[94,-376]],[[64268,38250],[-2,-32]],[[81426,86981],[43,139]],[[75654,69727],[-21,-57]],[[62331,84630],[-45,190],[-200,-158]],[[71318,29135],[201,110],[115,862]],[[60751,66993],[-408,20]],[[84383,26513],[92,280],[314,393]],[[73665,67499],[-41,-138]],[[66958,36484],[66,182],[610,67]],[[81504,87367],[-35,-247]],[[67954,31560],[668,-236],[95,811]],[[44224,10328],[-4,-1]],[[85120,43207],[74,213]],[[85443,49915],[-11,-204]],[[84494,27920],[-39,-540]],[[84455,27380],[-1,-1]],[[84454,27379],[-144,-225],[-273,-747]],[[80988,88027],[-69,-157],[144,-241]],[[74616,43059],[3,-172]],[[79495,38424],[-394,432],[-119,24]],[[80430,64292],[310,-189]],[[69935,74644],[263,-69],[110,-389],[-43,-235],[-259,-87]],[[89791,35288],[32,-144]],[[46759,62817],[-11,-421]],[[84598,94786],[24,202]],[[85891,35293],[-111,-54],[-289,262],[-500,168]],[[78693,64844],[-4,434],[162,960]],[[88068,52311],[144,-375]],[[85767,44838],[15,3]],[[85782,44841],[1,-1]],[[85783,44840],[119,32]],[[81399,61011],[-15,86]],[[41295,17508],[0,-4]],[[84101,93382],[-4,-25]],[[88703,38333],[31,-218]],[[78302,85914],[-2,-26]],[[63924,36584],[12,316]],[[85901,35303],[-457,736],[-580,701],[-49,-61]],[[84738,95694],[-122,172],[-389,107]],[[83948,60905],[117,-13],[630,348]],[[84749,94876],[-163,-183]],[[52824,50536],[363,-198]],[[48401,18782],[-458,73],[-1412,-8],[-857,-70],[-175,-245]],[[63995,37561],[-10,63]],[[66077,38372],[132,-165],[330,-32],[141,104],[342,-65]],[[84107,93417],[174,20]],[[74736,68023],[469,-628],[60,-225]],[[74587,77195],[483,-223],[631,-435]],[[42072,18559],[156,-87],[1127,-27],[406,-85],[550,39],[73,91],[1115,42]],[[81221,44348],[-92,23]],[[78492,59011],[-391,303],[-639,257]],[[81961,67513],[-240,234],[-586,-220],[-184,124],[-570,-91]],[[74212,68446],[-119,-49]],[[65543,69685],[0,6]],[[93575,28116],[5,-528]],[[67619,65213],[482,-32],[102,-482],[-31,-709],[40,-301],[-159,-870],[-190,-554],[-191,-850],[-82,-32]],[[61909,84799],[-159,230]],[[71259,66113],[41,-124]],[[66561,80929],[312,-131],[346,865]],[[83468,60052],[1,-3]],[[79808,65321],[136,-219]],[[69346,34521],[-13,-192],[-805,72]],[[80770,60431],[-250,408],[-225,211],[-143,371]],[[84691,44870],[83,96]],[[89182,37530],[-247,-44]],[[40301,16231],[-8,-2]],[[67675,46995],[-426,-153]],[[71198,82246],[289,-288],[110,136]],[[74587,77195],[-107,447]],[[64306,37745],[-57,216]],[[78421,39440],[316,289],[60,-173]],[[46543,30416],[-527,-167],[-1097,-650],[-919,-413]],[[85532,43478],[-54,357]],[[73493,69059],[75,-14]],[[85994,62788],[15,-3]],[[78739,69223],[195,258],[287,812],[253,168],[202,811],[505,587],[40,148]],[[72866,67128],[-436,40],[-306,-403]],[[79598,76376],[35,20],[-332,1482],[-119,222],[225,2307]],[[79407,80407],[0,64]],[[80988,88027],[6,5]],[[72843,34212],[3,-69]],[[62352,84595],[-21,35]],[[83380,56288],[-144,-379]],[[59731,49672],[3,18]],[[88137,38151],[-141,-94],[-113,255]],[[61639,84544],[-13,130]],[[61626,84674],[2,2]],[[61628,84676],[189,340],[481,-77],[33,-309]],[[81717,86962],[12,-24]],[[87875,39787],[-27,-34]],[[73690,68801],[-176,23]],[[84846,46863],[27,-207]],[[87831,39827],[-82,273]],[[57518,66734],[330,-206]],[[57525,83118],[-159,129],[-1093,51],[-226,292],[-352,18],[-24,190]],[[86102,45219],[109,-40]],[[73713,67146],[105,-64]],[[73931,31973],[-269,-127],[-150,-362]],[[82691,59182],[130,-302]],[[79798,78303],[231,-5]],[[88935,37486],[-116,41]],[[62270,84712],[-33,-49]],[[89194,36262],[-63,-124]],[[76081,37080],[33,314],[-521,-123],[-410,-239],[-20,-291]],[[86537,60691],[64,20]],[[73799,43584],[322,16],[76,-140]],[[82079,61575],[-48,-226]],[[85355,39257],[-15,-2]],[[66689,28965],[122,-243]],[[83532,56724],[80,116]],[[85388,44531],[-8,-3]],[[66291,39582],[-322,-27],[-344,-384],[-64,-393]],[[81142,63652],[-402,451]],[[66380,49669],[-643,-2107]],[[82391,48404],[291,2]],[[76602,39527],[-2,-17]],[[72819,34828],[-145,691],[44,215]],[[47088,50620],[-25,1297],[-163,302]],[[79214,64519],[118,109],[203,-421]],[[71454,45709],[155,-48]],[[85901,35303],[-71,-247],[364,-651],[149,-421],[307,-590]],[[67798,48663],[280,514],[397,-558],[312,-829],[128,-516]],[[67703,69399],[-1,-6]],[[89114,36597],[105,71]],[[59735,50879],[-126,148],[-146,-354],[-949,-1110]],[[82391,48404],[138,32],[373,431],[484,199]],[[78647,90047],[-92,-618]],[[47909,11975],[0,2044],[227,320],[20,272]],[[87340,39321],[4,-2]],[[57848,66528],[-33,-1246]],[[89430,35239],[3,7]],[[82547,59517],[-208,478]],[[93137,25185],[-7,128]],[[95208,28210],[-63,176]],[[83502,57348],[27,26]],[[81002,39648],[-131,-1042],[623,160],[602,-251],[565,84],[190,-86],[235,130],[825,-35],[486,-155]],[[62092,74742],[-16,-170]],[[74004,68081],[67,-219]],[[87909,35762],[-2,9]],[[66573,80012],[-18,-90]],[[49196,32329],[379,-80]],[[60872,52478],[4,5]],[[80221,72027],[0,-20]],[[75226,66707],[77,-7]],[[66750,73652],[-175,234],[-271,141],[-217,453],[-491,624],[-436,724]],[[69189,50984],[-4,-332],[213,-227]],[[73997,66936],[-32,-52]],[[65737,47562],[94,-469],[-123,-2440],[249,-642],[171,-679],[356,-802]],[[84205,91996],[-15,-152]],[[79745,60039],[-238,-89]],[[89198,35214],[3,-1]],[[68266,37337],[-17,-111]],[[81058,94091],[-293,152]],[[49844,40587],[-92,-205],[-2,-445],[93,-295]],[[85702,49920],[-106,154]],[[37175,40170],[117,97]],[[37292,40267],[661,113]],[[37953,40380],[311,258],[85,202],[486,54],[365,-189]],[[39200,40705],[231,-222],[267,90]],[[64015,38886],[-5,-2]],[[81106,86267],[90,-142]],[[61072,27321],[-324,22],[-18,-201],[-254,14]],[[82513,61621],[1,-2]],[[62220,68821],[-345,651],[-926,1414],[-124,148]],[[79398,59281],[5,-6]],[[89532,40724],[134,-25],[2,-386],[135,-459],[236,-379]],[[77984,61137],[178,1176],[-25,78]],[[61827,75192],[-127,19]],[[65558,50968],[381,-980],[361,-516],[-379,-1291],[-40,1]],[[84603,58122],[-494,-625]],[[50392,43193],[8,-9]],[[72838,67561],[-88,289],[-237,287]],[[79598,76376],[256,-9]],[[89928,37800],[74,186]],[[56199,18843],[-154,80],[-269,831],[5,206],[-409,932],[-2,523]],[[80686,70396],[-288,-220]],[[79176,54209],[-120,-472],[-259,-288],[-278,-78],[-2,-148],[-260,-156],[-239,254],[-180,-32],[-216,-1084],[-364,-627]],[[93173,26529],[-8,8]],[[93165,26537],[-1,5]],[[45992,64118],[-209,-286]],[[71454,45709],[-350,115],[4,489],[-195,845]],[[90027,33858],[-7,-454],[-301,-188]],[[89719,33216],[-2,1]],[[60423,43774],[248,-311],[369,-216]],[[41320,17490],[0,-17]],[[81384,61097],[-28,84]],[[75938,63292],[-16,15]],[[63261,27582],[-553,-1],[-89,-125]],[[76737,39263],[-4,122]],[[84227,95973],[96,847]],[[62815,72511],[-504,379]],[[90699,24064],[34,684],[80,366],[175,334],[87,827],[252,153]],[[72847,35428],[-130,-54],[102,-546]],[[85297,44530],[-68,-65]],[[87608,40686],[-6,1]],[[52225,46225],[192,-101],[638,-560]],[[63440,83090],[-278,199]],[[71899,67112],[-342,209]],[[86280,38987],[316,-404]],[[68915,47274],[257,-130],[-72,-1164]],[[45858,41974],[-131,293],[-59,978]],[[81591,84348],[103,560],[540,1213]],[[76817,68736],[-858,1049],[-305,-58]],[[55816,27264],[-59,47]],[[55757,27311],[-236,-334],[-62,-437],[-317,-269]],[[40614,40960],[-916,-387]],[[71836,40262],[197,266],[-93,204],[-347,69]],[[66484,42530],[-376,-140],[-91,-186]],[[86282,40335],[62,167]],[[53085,64148],[-367,20],[-733,-922],[-362,-42],[-335,-189],[99,-630]],[[86059,62987],[-129,225]],[[84301,97509],[-17,-166]],[[76780,66180],[-6,5]],[[61536,65043],[-174,325]],[[84596,44642],[1,2]],[[68401,69689],[60,-17]],[[80136,88987],[-25,168]],[[79311,91992],[20,-139]],[[84201,46102],[-68,-597]],[[55456,64016],[163,-175],[855,392]],[[89430,35239],[3,7]],[[78161,40060],[75,93]],[[72430,67172],[-159,-1]],[[84043,41612],[57,715]],[[83456,62231],[4,-39]],[[66923,57829],[401,153],[378,240],[612,197],[140,270],[86,434]],[[80333,90642],[6,1]],[[88714,38393],[6,8]],[[64338,35811],[1,0]],[[85961,35277],[-58,8]],[[60262,83523],[33,84]],[[89838,35036],[-1,-121]],[[63991,39232],[-181,-50],[58,231]],[[85910,24517],[-326,142]],[[76604,62403],[-137,-515],[-285,-481]],[[73325,32298],[44,-88],[601,-215]],[[61869,74819],[-40,286]],[[71317,47591],[-259,-51],[-243,-256]],[[64299,37575],[-31,675]],[[59968,71301],[47,-66]],[[81285,87223],[-144,-50]],[[73267,67774],[-168,-11]],[[89434,36504],[-159,-161]],[[76496,44274],[39,-231]],[[44008,41315],[-21,792]],[[43987,42107],[32,943],[208,14],[32,266]],[[61984,51798],[-1,8]],[[93043,28141],[229,-99],[303,74]],[[73274,67248],[39,25]],[[66591,79989],[-18,23]],[[85047,45153],[-41,-30]],[[88170,51843],[53,61]],[[73210,66618],[-174,62]],[[82380,58056],[-87,-142]],[[83115,58286],[-1,5]],[[81643,87262],[86,-324]],[[86183,42670],[0,29]],[[84388,42585],[74,-90]],[[88686,38391],[17,-58]],[[81129,44371],[-474,156],[-442,-459],[-235,62],[-374,-90],[-85,-570],[-15,-800]],[[61386,84271],[114,-45]],[[78661,88882],[124,-729]],[[79603,92948],[20,-153]],[[82072,47665],[123,-425]],[[66039,43946],[109,-624]],[[86280,38987],[316,-404],[-87,-358]],[[63848,32860],[-65,479],[373,270],[51,568],[79,55],[32,550],[299,194]],[[83494,57341],[8,7]],[[89318,29293],[0,-4]],[[67262,53169],[-239,-111]],[[60938,85260],[-94,234],[244,381]],[[88643,35521],[-83,356],[-251,223]],[[86002,62937],[7,2]],[[64617,34976],[-17,267]],[[76253,73498],[0,-154],[389,227],[233,-7],[381,307],[550,133],[199,208]],[[84742,94772],[58,-55]],[[60531,83129],[47,274]],[[94096,23985],[1,-7]],[[72192,69806],[5,-31]],[[80331,80902],[-121,160]],[[56199,18843],[-10,-40]],[[86492,41709],[3,-5]],[[70132,78526],[-302,-139],[-124,-431]],[[72843,34212],[-1,-2]],[[52562,52126],[-40,45],[-433,-833],[-144,-89],[-52,-847]],[[91276,20215],[1,-17]],[[48157,14606],[-1,5]],[[76673,48461],[-67,-993],[-545,-817],[218,-100]],[[80221,72027],[0,-20]],[[65806,46896],[8,-10]],[[75925,63317],[175,-627],[-271,6]],[[66689,28965],[186,221],[26,341],[279,565],[290,238],[71,698],[135,375],[273,461],[82,513]],[[85308,44780],[93,-79]],[[84789,27186],[572,43],[444,-292],[413,19],[224,-182]],[[87719,52136],[124,-17]],[[79062,89617],[159,16]],[[67371,39264],[-625,58],[-209,204],[-246,56]],[[78602,76101],[-290,-814]],[[74619,42887],[-28,-286],[-192,-81]],[[59873,38546],[261,-41],[131,-175]],[[81030,71313],[89,134]],[[78000,74207],[-131,-912],[-88,-214]],[[75250,72317],[58,307]],[[88270,38724],[2,8]],[[66750,73652],[84,-44],[356,-1646],[142,-136]],[[84505,95561],[-10,-90]],[[53338,23679],[1,3]],[[53339,23682],[344,503],[-4,413]],[[78699,90511],[22,-70]],[[81129,44371],[-495,-281],[-1028,112]],[[85401,55834],[47,-645],[-52,-1021]],[[65558,50968],[981,-588],[-46,-153]],[[79518,84571],[9,275]],[[80274,52486],[-157,-390],[-848,181],[-383,-93],[-475,-1020],[-250,-366],[-207,-595],[-385,-697],[-31,-182]],[[75739,78150],[-13,-130],[-351,-487]],[[62437,84733],[1,4]],[[62779,41367],[-479,882],[-582,678],[-142,-45]],[[85875,64010],[-75,-740],[-105,-321],[-14,-403],[228,-258]],[[63396,42997],[198,-45]],[[73936,68368],[157,29]],[[64299,37575],[-31,675]],[[64561,38231],[-293,19]],[[88917,37909],[1,-4]],[[73476,47973],[-51,83]],[[87899,35325],[-6,-11]],[[79346,80453],[56,-165]],[[41320,17473],[465,235],[530,33],[184,-141],[2888,228],[128,110]],[[73426,66957],[63,146]],[[81114,94437],[231,318],[478,78],[43,445],[-260,66],[-42,371]],[[68858,73148],[13,0]],[[84534,96402],[26,74]],[[82340,59996],[1,-1]],[[80333,90642],[-1,15]],[[71488,72174],[-816,-618],[-208,-56]],[[50872,62152],[666,-90],[467,-159],[260,-363],[780,-581]],[[87599,58693],[63,-29]],[[61516,38067],[-187,-85]],[[66514,79118],[-120,19],[-639,601],[-193,304]],[[85961,35277],[231,541]],[[71251,64429],[-38,-340]],[[79815,80567],[-147,-29],[3,-266]],[[84421,43741],[32,-395]],[[48165,14608],[-9,3]],[[87386,55924],[-6,-44]],[[61007,66909],[-128,698],[-15,486]],[[94437,27996],[244,355],[108,-128],[356,163]],[[72475,64750],[-2,-9]],[[46900,52219],[-189,247],[-276,633]],[[67989,69410],[88,180],[-78,668],[158,464],[246,-35]],[[60382,83181],[-120,342]],[[85917,57378],[-2,-4]],[[85915,57374],[0,-3]],[[75410,69348],[476,-283]],[[82468,46323],[-31,516],[-242,401]],[[49867,51774],[388,-889],[505,-684]],[[86294,41911],[198,-202]],[[73148,33334],[-100,-961],[277,-75]],[[83334,59297],[-2,-1]],[[80133,59674],[-388,365]],[[60382,75637],[923,-43],[299,-187]],[[89294,27873],[0,-3]],[[75410,69348],[-219,-436],[-264,-353],[-191,-536]],[[87833,51779],[40,78]],[[84953,46259],[0,-1]],[[72224,44528],[-21,680],[-134,820],[-180,170]],[[84674,40620],[-4,-15]],[[79407,80471],[-5,-183]],[[69010,81723],[197,106],[353,-79]],[[79373,61417],[-751,732],[-485,242]],[[86877,50808],[10,14]],[[74318,65943],[286,87]],[[92832,31782],[-74,-468]],[[92758,31314],[-91,-441],[-206,-466],[-325,104],[-268,-188]],[[50359,40988],[1860,-28]],[[79498,59910],[9,40]],[[85769,44817],[-179,-82]],[[64269,39007],[297,-487],[-5,-289]],[[80029,78298],[10,-38]],[[46658,27471],[503,-268],[211,5],[816,-804]],[[93043,28141],[230,-98],[302,73]],[[89326,29315],[-14,3]],[[89312,29318],[-79,-733],[-210,-545]],[[89023,28040],[10,-6]],[[79329,59955],[4,-4]],[[85707,50673],[21,-16]],[[79062,89617],[24,-187]],[[72124,66765],[-82,-218],[85,-827]],[[86006,45953],[-222,387]],[[80871,56160],[581,252]],[[85707,50673],[-241,-169]],[[75175,66422],[51,285]],[[84464,96763],[82,-68]],[[69838,50884],[145,-481],[-46,-959]],[[72866,67128],[-70,66]],[[75163,36741],[-81,375],[-265,1]],[[87318,52483],[-78,-272]],[[79352,90571],[-6,-313]],[[94138,21664],[415,-1277]],[[64927,38904],[-1,-3]],[[54654,25316],[-769,61],[-132,79]],[[89557,35800],[-100,-22]],[[78555,89429],[2,209]],[[92869,27513],[174,628]],[[74212,42449],[243,91],[311,-106],[1193,-627]],[[85902,44872],[-6,155]],[[85896,45027],[-106,573]],[[82547,59517],[-1,-2]],[[79102,44220],[-3,-14]],[[68294,38799],[97,-288],[393,-674]],[[72674,72894],[-100,-215]],[[87384,37342],[-9,-4]],[[84587,44046],[161,130]],[[80232,72011],[7,-24]],[[73995,37517],[-545,-11],[-96,-172],[-79,-541]],[[78224,68652],[-184,-144]],[[87846,41548],[-149,-62],[-89,-800]],[[83474,57499],[4,47]],[[75727,36918],[169,-74]],[[49279,33541],[2,554],[135,417],[28,859]],[[67332,71826],[-93,-317]],[[72023,55162],[-68,-141],[-129,-916],[-112,-1121],[-250,-686]],[[86308,40551],[40,-50]],[[72866,67128],[75,115]],[[84695,61240],[-1,3]],[[59744,81727],[147,404],[221,19],[-25,303]],[[44259,43330],[113,288],[330,189],[42,322],[-24,1304],[-102,1518],[-141,246],[-252,1495],[-198,219],[-351,752]],[[86226,57254],[-310,121]],[[84190,91844],[-126,-283]],[[87754,40086],[-1,4]],[[91482,20069],[-13,19]],[[88735,38587],[-144,175]],[[83085,54754],[-63,-20]],[[84301,97509],[176,-50]],[[77316,44824],[17,-92]],[[84331,57209],[1,-4]],[[85407,53069],[99,-942]],[[82339,59995],[3,4]],[[83909,56663],[13,203]],[[81291,55840],[352,-337]],[[64215,29880],[3,-1]],[[67619,65213],[91,-40],[54,400]],[[91868,29981],[36,-708],[-98,-650]],[[67581,37783],[-27,200],[-369,-458],[-62,-1061],[-165,20]],[[68969,69680],[52,-623]],[[79913,29118],[-53,-148]],[[76790,37867],[-4,-543],[-656,-31],[-48,-197],[185,-74]],[[83286,58074],[-10,-3]],[[85150,48709],[3,326]],[[78498,89993],[149,54]],[[81773,61077],[26,31]],[[80454,91071],[-1,1]],[[85078,44705],[-5,-255]],[[72365,69699],[-1,-361]],[[86166,42898],[-3,4]],[[60680,81007],[1,4]],[[85600,49319],[1,0]],[[64366,59562],[-438,-65]],[[71836,40262],[679,818],[559,516],[-1,271]],[[89318,29293],[0,-4]],[[80674,57288],[-178,561],[3,691]],[[68640,69687],[329,-7]],[[83113,62065],[343,166]],[[78739,69223],[-242,202],[-160,395],[-434,261],[-299,409],[-569,-91],[-338,-495],[-136,-74]],[[80871,56160],[210,27],[371,225]],[[76017,68016],[-238,182],[-221,5]],[[85073,44450],[82,-288]],[[94096,23985],[-36,620]],[[60521,83812],[1,42]],[[86348,40501],[15,7]],[[85568,43261],[-36,217]],[[59731,50884],[4,-5]],[[69400,40005],[248,201],[440,-95],[-36,-349]],[[79333,59951],[174,-1]],[[82407,65939],[4,-2]],[[85153,49035],[-21,179]],[[73590,67231],[-52,101]],[[85961,35277],[-58,8]],[[81967,67502],[-6,11]],[[85078,44705],[-7,-129]],[[85973,43508],[-110,92],[-134,-287],[-484,-126]],[[87387,19457],[221,-93]],[[49771,48465],[-128,317],[-40,1569],[-340,17],[-146,608]],[[73319,68028],[7,-81]],[[71889,46198],[382,144],[323,625]],[[79329,89290],[81,399],[-130,147]],[[79521,90978],[-244,62],[118,-487],[-49,-295]],[[55485,16579],[568,1808],[17,358]],[[56070,18745],[129,98]],[[68401,69689],[-3,2]],[[88238,38816],[-53,-48]],[[79518,84571],[216,-641],[-38,-379],[90,-337],[290,-301],[197,-502]],[[59735,50879],[-171,277],[-217,29],[-835,497]],[[84227,95973],[165,-156]],[[62509,84682],[-3,0]],[[57297,35186],[-372,-1189],[-520,-1135],[-452,-1115]],[[86112,62870],[-17,-172]],[[67820,42393],[3,-246],[253,-77]],[[64043,66344],[-70,-474],[-173,-327],[-329,-270]],[[72097,69619],[6,-38]],[[72666,37411],[130,-316],[257,-119]],[[84366,42884],[-51,154]],[[88731,43824],[-45,-197],[-282,-282]],[[84991,35669],[-2,14]],[[85210,63889],[2,5]],[[89201,35213],[-254,-41]],[[84477,97459],[56,-255]],[[82123,65202],[266,129]],[[50643,44208],[459,-655]],[[62042,36771],[-108,-37],[-28,-582]],[[63823,79573],[-47,-339]],[[66682,28950],[7,15]],[[80045,72368],[-90,184],[-21,533],[168,216],[-2,351],[-246,249],[-92,448],[53,485],[-82,735],[-151,425],[16,382]],[[89404,35917],[-22,170]],[[81199,85158],[6,285]],[[59856,71482],[51,-39]],[[65829,44803],[20,-24]],[[69053,68160],[296,-501]],[[60476,27156],[-369,-95],[-270,-180],[-1493,-482],[-312,-131],[-282,28]],[[89646,31320],[-71,-154],[13,-643],[-169,-1115],[-101,-115]],[[88107,42151],[-111,-44],[-160,-576],[-139,-45],[-95,-799]],[[89769,37693],[-193,-116]],[[84991,35669],[-348,-367]],[[85228,44765],[14,124]],[[83002,48365],[0,1]],[[64974,51089],[584,-121]],[[82835,53598],[-74,30],[-39,1205]],[[70660,79400],[-250,-230],[-278,-644]],[[67418,38205],[161,-45],[203,-593]],[[81239,85677],[-22,-267],[303,-104]],[[80760,65968],[-1,5]],[[87846,41548],[150,558],[164,100],[62,405],[230,639],[-48,95]],[[61698,84343],[0,0]],[[83589,47976],[-2,2]],[[87667,51722],[-44,11]],[[72159,66355],[-360,-492]],[[85078,44705],[-5,-255]],[[69845,74278],[-171,-95]],[[77320,62358],[-263,17],[-267,357]],[[64452,34909],[1,4]],[[70463,71504],[1,-4]],[[46852,37633],[-261,-702],[-257,-839],[-460,-1303]],[[45874,34789],[-414,-1195],[5,-129]],[[63473,40278],[-2,4]],[[87833,51779],[186,-62]],[[45992,64118],[-527,758],[-25,781],[46,275],[-10,772],[-92,141]],[[82980,56509],[-527,331],[-109,164],[-575,158],[-162,143]],[[75839,62677],[-10,-3]],[[85449,50748],[17,-244]],[[85627,43029],[0,0]],[[85627,43029],[-2,-1]],[[86254,41593],[40,318]],[[69725,64281],[1,0]],[[75175,66422],[4,39]],[[86132,33131],[454,158],[64,105]],[[88184,39659],[242,404],[237,-28]],[[87228,37289],[147,49]],[[91868,30323],[-36,-100]],[[84516,97162],[45,195]],[[53756,39617],[31,678]],[[75925,63317],[-3,-10]],[[78520,33622],[206,259],[454,340],[755,-170],[204,53]],[[85967,62502],[287,-393]],[[66474,46466],[-472,-152]],[[85006,45123],[72,-418]],[[47023,42744],[-305,-41],[-578,-454],[-283,-294]],[[55799,83603],[-115,192]],[[71259,66113],[319,-349],[221,99]],[[66923,57829],[114,305],[-80,327],[-564,278],[-207,-1]],[[84823,45006],[-49,-40]],[[72886,48417],[67,-111],[180,291]],[[83220,57127],[2,8]],[[61825,62195],[35,-43]],[[83286,58074],[-171,212]],[[85979,39085],[77,-164],[224,66]],[[72201,72751],[1,-3]],[[71434,34080],[152,93],[491,-128]],[[85618,43061],[36,35]],[[73319,68028],[16,70]],[[63570,38121],[-5,10]],[[81663,86667],[56,-22]],[[87719,52136],[-401,347]],[[75701,76537],[-320,-468],[-915,-1090],[-642,-1111],[-502,-683],[-314,-518],[-440,5]],[[61639,84544],[-9,-3]],[[61630,84541],[-204,-101],[-307,168]],[[75265,67170],[223,-67],[306,-263]],[[79333,59951],[174,-1]],[[84381,96963],[-17,-148]],[[84364,96815],[-1,-5]],[[84363,96810],[80,-41]],[[61119,84608],[-187,130],[-179,-174]],[[81112,94444],[144,278],[-226,261]],[[77333,44732],[-17,92]],[[81426,86981],[303,-43]],[[81207,95110],[49,-388],[-138,-243]],[[61639,52117],[5,1]],[[81187,65543],[-19,-153]],[[67150,37523],[268,682]],[[79504,42670],[-196,658],[-206,892]],[[72192,69806],[36,490],[214,534],[44,702],[-123,473],[205,667]],[[64043,66344],[-3,2]],[[78510,67532],[45,582],[-202,55]],[[55684,83795],[18,153]],[[79209,85529],[337,342]],[[82073,61584],[6,-9]],[[66967,51012],[823,-268],[496,-111],[283,48]],[[72550,78159],[-739,-1046],[-420,-474],[-1091,-1430],[-365,-565]],[[88686,38391],[29,8]],[[73854,68347],[-397,-37],[-6,245]],[[63565,38131],[5,-10]],[[41802,18299],[149,-25]],[[73735,42191],[-4,17]],[[76497,64601],[77,-37],[467,406],[282,-28]],[[60299,83093],[143,142],[-180,288]],[[89506,37385],[70,192]],[[83386,49066],[-9,8]],[[76737,39263],[-4,122]],[[83628,57388],[26,35]],[[83555,55019],[-833,-186]],[[81239,85677],[109,517],[430,454],[42,160],[469,419]],[[95394,19918],[-55,-149],[39,-621],[-64,-218],[83,-415]],[[85447,44404],[64,66]],[[85511,44470],[-64,-66]],[[87508,59656],[1,3]],[[86691,45824],[-340,-425]],[[87483,51026],[78,86]],[[81477,56623],[-25,-211]],[[89615,35862],[2,-1]],[[78520,33622],[-542,686]],[[79507,59950],[-34,267]],[[86710,46349],[-19,-525]],[[86223,60589],[-499,221],[-108,210]],[[88741,39746],[14,431],[-216,109],[-329,362]],[[88210,40648],[-84,298],[-277,224]],[[60315,38375],[-50,-45]],[[80221,72007],[-176,361]],[[71251,64429],[353,53]],[[78091,75732],[511,369]],[[80871,56160],[420,-320]],[[79815,80567],[-111,23]],[[68237,81335],[-255,-360],[-401,-412],[-136,-32],[-410,-392],[-372,23],[-51,-192]],[[79745,60039],[-238,-89]],[[44000,29186],[919,412],[514,302]],[[83734,57306],[17,57]],[[85815,43686],[25,631]],[[64693,27729],[-16,-243]],[[80133,59674],[-388,365]],[[66717,78060],[-21,143],[391,-58],[503,-182],[-40,-411]],[[69794,39180],[189,-29],[105,960],[421,-94]],[[88388,53229],[45,192]],[[84205,91996],[8,538]],[[41431,16305],[0,17]],[[92960,29450],[2,11]],[[89743,31977],[-208,97]],[[84545,95321],[46,108]],[[87384,37342],[227,451],[122,-142]],[[73712,71258],[2,0]],[[68588,45710],[-52,-383]],[[87892,39945],[-2,-3]],[[80240,88908],[-104,79]],[[87537,51744],[86,-11]],[[89492,36139],[-43,78]],[[73419,69053],[30,302]],[[78647,90047],[-90,-409]],[[85973,43508],[-110,91],[-127,-278],[-168,-60]],[[66637,79356],[-22,100]],[[87793,38177],[-189,59]],[[55142,26271],[-44,413]],[[80375,38819],[6,-66]],[[88226,19371],[3,-2]],[[74986,66896],[-120,194]],[[72845,34212],[-3,-2]],[[89162,32603],[-320,317],[-258,102],[-160,-266],[-78,-396],[-290,-163]],[[66062,37976],[15,396]],[[61369,32830],[225,202],[285,-78],[439,222]],[[67298,35588],[17,454],[-181,412],[-176,30]],[[91518,27050],[46,-531],[-237,-91]],[[87682,19338],[2,1]],[[69930,49436],[7,8]],[[84454,42418],[-46,-3]],[[62505,84620],[2,2]],[[47456,18276],[-611,-22],[-182,-143],[-985,-46],[-163,-127]],[[89699,35264],[46,75]],[[72364,69338],[531,-325]],[[72109,69584],[88,191]],[[79498,59910],[9,40]],[[84798,43527],[-327,-181]],[[88056,32197],[-42,-325],[-205,-355]],[[87809,31517],[-109,-682],[-152,-399]],[[87548,30436],[-48,-291],[-177,-50]],[[84873,46656],[80,-397]],[[87431,55871],[3,-24]],[[68337,81462],[-109,395]],[[83654,57423],[-26,45]],[[84535,44165],[-17,-8]],[[84473,44381],[-63,-34]],[[84954,50177],[126,73]],[[84525,93954],[-54,-296]],[[93627,26124],[345,133],[75,165]],[[85132,49214],[-57,128]],[[80871,56160],[562,247],[44,216]],[[47583,62638],[1414,-387],[292,-15],[833,-579],[-30,-187]],[[85890,64060],[1,-5]],[[62077,84624],[9,38]],[[75250,72317],[-467,-306],[75,-129]],[[88433,53421],[213,-45],[395,919],[280,107]],[[67954,49357],[124,-179],[-280,-515]],[[84798,43527],[-345,-181]],[[61604,75407],[96,-196]],[[84464,96763],[0,0]],[[84464,96763],[10,97]],[[89492,36557],[1,0]],[[78777,89347],[0,-3]],[[68389,78072],[550,-76],[473,105],[294,-145]],[[73740,44194],[-51,-506],[110,-104]],[[80367,80141],[-119,-405]],[[84462,95680],[43,-119]],[[73512,31484],[-58,-717]],[[63862,35835],[22,-208],[458,-89]],[[85109,45200],[-2,3]],[[80448,34020],[18,-22]],[[83922,56866],[-3,110]],[[62164,35697],[-3,-352],[112,-425]],[[58058,40065],[-82,465],[21,707],[-48,318],[25,2227],[61,452],[29,1139],[89,608]],[[71246,66412],[14,230],[327,271],[537,-148]],[[62042,36771],[9,-1]],[[85229,44465],[-60,-46]],[[90002,37986],[-16,132]],[[79704,80590],[-257,-137]],[[79447,80453],[-40,18]],[[83502,57348],[-28,151]],[[83289,57978],[-6,-4]],[[54433,26700],[571,-67],[187,248],[-4,364]],[[84866,95705],[25,-98]],[[84372,96910],[-49,-90]],[[60494,83747],[-8,19]],[[75839,62677],[-10,-3]],[[62359,26300],[281,-25]],[[76225,48804],[-305,474],[-606,668]],[[53245,20692],[-9,9]],[[64111,61716],[-275,167],[-483,579]],[[41134,17491],[161,13]],[[81611,84135],[-20,213]],[[69725,64281],[65,316],[177,219]],[[86400,49644],[0,-1]],[[44000,29186],[311,-284],[1617,-948]],[[72916,28005],[107,5],[133,946],[31,747]],[[44000,29186],[-27,369]],[[66084,81260],[203,-493]],[[85815,43686],[25,631]],[[74349,66424],[70,-53]],[[80871,56160],[-174,412],[87,557],[-110,159]],[[83950,57092],[-1,1]],[[79412,92258],[-102,86]],[[86192,35818],[290,-102],[601,215],[140,426]],[[72231,72743],[219,459]],[[91121,33061],[-2,-2]],[[80451,91075],[-119,-418]],[[79774,80086],[-71,-343]],[[79703,79743],[249,-125]],[[79952,79618],[175,-34]],[[80127,79584],[64,119]],[[47023,42744],[337,72],[916,538],[266,45]],[[85411,55809],[407,436]],[[72186,68399],[156,-19],[-261,1227]],[[78013,74215],[-8,-3]],[[90052,34334],[-25,-476]],[[68871,73148],[-339,-952],[-464,-1016],[0,-156]],[[74619,42887],[-117,523],[-305,50]],[[56891,71885],[-4,34]],[[75654,69727],[-244,-379]],[[79476,60207],[-3,10]],[[64225,77572],[616,-940],[319,-804]],[[88702,36510],[403,84],[134,281]],[[80333,80563],[-60,-277]],[[78753,69218],[1,11]],[[88379,51802],[-65,-218]],[[49844,40587],[201,431]],[[88715,38399],[5,2]],[[58126,84687],[18,-437]],[[83633,49681],[-14,-47]],[[75051,64989],[-289,191]],[[76600,39510],[-411,77],[-110,-936],[-96,-151]],[[90018,33392],[9,466]],[[77984,61137],[7,2]],[[92960,29450],[0,219],[-174,310],[-228,81],[-84,293]],[[81944,62404],[-64,-61]],[[46841,16817],[0,0]],[[83980,57478],[8,-5]],[[73646,67863],[38,146]],[[64110,39795],[65,190],[506,-16],[6,-113]],[[63440,53163],[128,383],[76,1073],[38,1093]],[[63682,55712],[21,98]],[[87843,41175],[6,-5]],[[85474,50373],[1,4]],[[61826,55843],[-195,-752],[-396,-1294],[-696,-552]],[[78844,89417],[32,147]],[[62347,35604],[8,171]],[[87594,58685],[5,8]],[[79041,57055],[-143,29]],[[64450,34875],[-1,0]],[[47668,39985],[35,-309],[-134,-109]],[[89506,37385],[70,192]],[[67371,39264],[540,-316],[383,-149]],[[85901,35303],[207,-14],[336,-272],[98,298],[344,207],[341,737],[-97,320],[87,341]],[[87323,30095],[-1462,497],[-230,464],[30,103]],[[85973,40210],[86,-284]],[[84451,93399],[-136,-386]],[[79521,90978],[-244,63],[75,-470]],[[63210,44145],[-88,80],[7,463]],[[84471,43346],[-18,0]],[[68775,64674],[-99,-96],[-472,138],[-52,361]],[[73045,32387],[62,477]],[[89285,35179],[-84,34]],[[73590,67231],[280,-205],[331,-651],[117,-432]],[[93289,25581],[-1,4]],[[57583,79714],[-32,-8]],[[44004,29201],[203,197],[613,1632],[200,388],[438,1828],[150,243]],[[45608,33489],[261,592],[5,708]],[[45874,34789],[-30,1037],[24,860],[-37,1733],[65,857],[21,1410],[-54,1224]],[[45863,41910],[-2,42]],[[45861,41952],[-4,3]],[[81889,39338],[15,94]],[[69211,50836],[-180,-137],[-155,-2315],[-66,-175],[105,-935]],[[82173,68700],[4,-544],[93,-235]],[[84227,95973],[68,-15]],[[73740,44194],[53,594]],[[74302,46813],[-194,-67],[-573,70],[-1327,570],[-300,63]],[[79774,85540],[-103,-560],[-144,-134]],[[88726,39780],[15,-34]],[[81149,94559],[-54,-295]],[[49335,36447],[-119,210],[130,846],[241,512],[121,556],[-6,425],[141,646]],[[71480,63821],[508,-29],[75,239]],[[68337,81462],[-100,-127]],[[80273,82411],[-1,-9]],[[72271,67171],[57,10]],[[79623,92795],[-97,-790]],[[86584,60399],[-110,49]],[[82936,37768],[-1,-1]],[[77795,68161],[-124,168]],[[89606,35770],[2,82]],[[81350,87390],[-34,122]],[[80307,73060],[105,142]],[[80232,72011],[-13,560],[137,221]],[[62412,69500],[-192,-679]],[[80015,65010],[143,-131]],[[72340,72987],[110,215]],[[84287,35300],[71,190]],[[89493,36557],[-28,58]],[[67820,42393],[-492,675]],[[44008,41315],[-18,-120],[-555,-23],[-138,-74],[-1122,-23],[-44,-84],[-505,-84],[-158,174]],[[41468,41081],[0,11]],[[41468,41092],[-122,465],[-758,-35],[26,-562]],[[77549,83505],[247,-83]],[[80175,79643],[-48,-74],[-431,118],[-46,285]],[[62056,84535],[-260,-88]],[[45968,62805],[231,420],[267,78]],[[81316,87512],[-172,-27]],[[73419,69053],[-187,28]],[[60288,82813],[61,80]],[[48540,65498],[-971,-1404],[-199,-60]],[[67044,54421],[176,-789],[42,-463]],[[79924,86102],[136,1482],[-136,86],[60,747]],[[83088,37270],[-47,282]],[[55083,25698],[-286,176]],[[88473,38661],[-71,221]],[[62870,52582],[-257,-202]],[[93770,25571],[195,-137],[-8,-308]],[[80876,56151],[-5,9]],[[61705,84606],[204,193]],[[42835,53839],[581,-743],[65,-3426],[195,-7]],[[80352,80693],[-18,51]],[[88019,51717],[-150,-38]],[[79944,65102],[71,-92]],[[89129,35812],[106,-229]],[[60927,25973],[-414,96],[-226,-372],[-646,64],[-468,104],[-6,-418],[-312,-436],[-4,-133],[-554,-1006],[-147,-495],[-556,-1219]],[[85060,44194],[-60,92]],[[83611,57249],[72,32]],[[91293,20214],[-17,1]],[[73867,68526],[0,-1]],[[77526,54454],[-839,-261],[-337,-300],[-497,-732],[-762,-869],[-89,-789],[312,-1557]],[[75654,69727],[163,-39],[507,296]],[[92770,24691],[140,-369]],[[89486,32047],[21,12]],[[84288,31734],[-37,36]],[[89562,35109],[120,36]],[[89270,37531],[62,-462],[-93,-194]],[[89928,37800],[-352,-223]],[[85506,52127],[67,-588]],[[42283,63606],[45,-377]],[[55527,25692],[-116,334],[8,357],[-277,-112]],[[73435,67553],[39,-86]],[[62634,84490],[-1,1]],[[72556,32440],[-127,25],[-154,-687],[-81,-22]],[[85790,45600],[-6,740]],[[67418,38205],[35,579],[165,532],[518,1054],[143,412],[58,586],[156,820]],[[84043,41612],[58,718],[307,85]],[[81036,86401],[-124,-93]],[[62530,84964],[79,-118]],[[85449,50748],[17,-244]],[[79473,60217],[232,371]],[[81607,57305],[6,-823],[-161,-70]],[[62084,46573],[-159,81]],[[74985,66895],[0,3]],[[73329,67844],[-62,-70]],[[79671,80272],[-162,54]],[[86584,40840],[72,-142]],[[86656,40698],[0,-1]],[[86656,40697],[0,-1]],[[86472,60599],[112,-200]],[[57128,66599],[8,201],[382,-66]],[[79808,65321],[-11,-345],[-583,-457]],[[69151,39730],[202,-256]],[[84037,26407],[-1,-14]],[[89172,34845],[-11,-117],[-663,-29],[-71,-157]],[[73704,71306],[244,82],[835,623],[75,-129]],[[84672,44851],[-123,-108]],[[89532,40724],[-143,-8],[-53,-300],[-336,-316],[-259,-354]],[[73219,67170],[-278,73]],[[84315,43038],[160,304]],[[84475,43342],[-4,4]],[[84462,42495],[-8,-77]],[[87292,50464],[82,321]],[[81058,94091],[-514,-797]],[[80544,93294],[-836,-1017],[-182,-272]],[[85902,44872],[-7,154]],[[85895,45026],[-105,574]],[[63216,42939],[180,58]],[[74163,42043],[11,-10]],[[83564,92130],[77,143],[259,-141]],[[82871,57928],[74,-495]],[[80381,67560],[-624,-102]],[[44948,21513],[-67,644]],[[69106,51160],[-2,15]],[[42663,63655],[633,-5]],[[89326,29315],[-8,-22]],[[84863,95706],[-125,-12]],[[65235,38441],[-4,459]],[[89717,33217],[-182,395]],[[78902,65054],[235,154]],[[68528,34401],[-422,-727],[-214,-534],[-8,-573],[147,-190]],[[69255,74146],[225,-134],[194,171]],[[71889,42289],[48,1023],[-95,365]],[[66573,80012],[-59,-407]],[[84540,58326],[-128,205]],[[88224,39121],[-61,68]],[[69280,70735],[-311,-1055]],[[49444,35371],[2,10]],[[88726,39780],[15,-34]],[[60262,83523],[-12,11]],[[93892,28013],[22,-5]],[[60751,66993],[-140,-1],[-223,-268],[-231,-448]],[[84181,57209],[150,0]],[[88236,38234],[-99,-83]],[[53425,48858],[-417,-40],[-169,215]],[[89235,35583],[13,-38]],[[81425,49642],[-218,647],[-282,286],[-348,-331]],[[60136,83647],[126,-124]],[[37274,40298],[7,-8]],[[74662,70473],[-95,-2],[-68,-903],[-151,-419],[-494,-802]],[[63676,28106],[-7,-351],[-145,-27]],[[65737,47562],[77,-676]],[[71575,78059],[-823,1224]],[[55604,71796],[82,-747],[-13,-938],[143,-341],[11,-878],[220,-282],[-1,-215],[195,-420]],[[91327,26428],[-253,-152],[-87,-460]],[[57786,38616],[-270,-634],[-35,-885],[84,-15]],[[79476,60207],[-3,10]],[[84248,43793],[146,107]],[[80418,56421],[269,125],[184,-386]],[[57124,67734],[555,-341]],[[72740,72672],[19,-50]],[[72632,35795],[82,-57]],[[63862,35835],[-338,36]],[[79724,60883],[-254,2]],[[67954,31560],[-63,-723],[-116,-147],[-113,-648],[-113,19],[-34,-514],[-454,-84],[-36,-399],[-283,40],[-53,-139]],[[47814,58180],[-12,-1065],[-145,-142],[7,-1120],[137,-79],[75,-643]],[[76313,65001],[184,-400]],[[89562,35109],[0,-173],[-224,85]],[[73594,42833],[161,171]],[[82682,48406],[321,-39]],[[61692,84591],[1,-15]],[[84208,46163],[-19,-41]],[[61750,85029],[-226,475]],[[61524,85504],[-57,-12]],[[45858,41974],[-1,-19]],[[68266,37337],[-17,-112]],[[73590,67231],[-62,-3]],[[61639,84544],[-8,-51]],[[64004,37979],[63,338],[-76,915]],[[84971,46032],[54,-149]],[[69838,50884],[143,-689]],[[63602,53187],[96,-11],[960,-727]],[[64602,82446],[-764,202]],[[57551,79706],[-3,16]],[[66062,37976],[316,-390]],[[83472,57874],[-27,-2]],[[86895,57600],[-1,-1]],[[79506,65409],[-316,-861]],[[85475,50377],[-9,5]],[[84650,45132],[29,-21]],[[88322,38814],[-56,54]],[[85297,44530],[-68,-65]],[[79506,65409],[-316,-861]],[[64110,39795],[112,-339],[169,-31],[183,-315],[-27,-354],[235,-40]],[[79854,76367],[-128,224],[86,200]],[[75175,66422],[-523,-328]],[[68188,42135],[-112,-65]],[[85890,64060],[12,10]],[[94290,29554],[1,-10]],[[89748,27813],[-2,0]],[[79163,89050],[174,222]],[[84625,44809],[-217,-185]],[[72799,67387],[2,1]],[[85769,44817],[-2,21]],[[81957,60732],[1,0]],[[68031,32377],[-77,-817]],[[88158,39308],[-139,214]],[[42372,27836],[587,133],[785,557],[256,660]],[[80451,91075],[275,1405],[66,669],[-248,145]],[[52858,26647],[-997,35]],[[86390,38529],[119,-304]],[[84996,28022],[272,951],[-142,431],[128,655]],[[85053,44814],[25,-109]],[[80871,56160],[-173,412],[86,557],[-110,159]],[[62577,45025],[2,1]],[[93043,28141],[-415,414]],[[76324,69984],[4,8]],[[91121,33061],[-2,-2]],[[85816,43681],[-1,5]],[[80152,61422],[-376,304],[-334,-132],[-113,95]],[[81239,85677],[-22,-267],[274,-257],[120,-1018]],[[84189,46122],[12,-20]],[[94355,21646],[22,-240],[275,-451]],[[81163,60845],[-393,-414]],[[73602,67801],[44,62]],[[84732,94658],[10,114]],[[51000,22640],[448,56],[258,504],[512,213],[-10,444],[575,109],[153,-173]],[[51494,31166],[521,-538]],[[87883,38312],[-90,-135]],[[37274,40298],[679,82]],[[37953,40380],[227,216],[1020,109]],[[39200,40705],[394,79]],[[85869,50027],[-208,45],[-1,376]],[[78978,32989],[-122,157]],[[63313,39899],[670,-172],[127,68]],[[85625,43028],[3,-3]],[[71986,64482],[141,1238]],[[82645,61730],[-131,-111]],[[87938,52078],[-49,-189]],[[72365,68230],[292,-219]],[[67702,69393],[-4,6]],[[87883,38312],[-255,-83],[-263,67]],[[78696,39819],[-275,-379]],[[81107,87131],[-383,92]],[[49117,50976],[184,-159],[1005,-611],[454,-5]],[[84453,43346],[-33,400]],[[78302,85914],[185,-41],[265,325],[107,1109]],[[82876,58753],[-55,127]],[[81269,86165],[122,101]],[[59376,39048],[-744,103]],[[88918,37905],[40,-132]],[[81537,64530],[60,71]],[[94553,20387],[372,-285],[181,-278],[219,-63],[69,157]],[[59988,83705],[128,-47]],[[71986,64257],[-31,208]],[[71471,62498],[-524,83],[-186,188],[-353,1038],[-142,255]],[[83968,48320],[0,2]],[[84866,95705],[25,-98]],[[72124,66765],[110,153],[-14,672],[145,640]],[[50292,40992],[67,-4]],[[80877,89478],[110,-431]],[[84181,57209],[208,295]],[[89294,27873],[0,-3]],[[88720,38401],[32,142]],[[80273,82411],[-1,-9]],[[45928,27954],[-89,-15]],[[87461,53516],[328,775]],[[72866,67128],[3,-135]],[[58593,45775],[-436,198]],[[58593,45775],[72,123],[371,-29],[29,115],[1003,-59],[1,-47]],[[93523,28829],[-259,-56]],[[88958,37773],[-135,-242]],[[42714,25663],[62,-2052]],[[79527,84846],[-9,-275]],[[85028,44914],[25,-100]],[[88591,38762],[144,-175]],[[69937,49444],[-71,62],[-116,-568],[69,-277],[259,-200],[258,3],[255,211]],[[81694,58159],[-45,807],[57,638]],[[89457,35778],[-53,139]],[[44000,29186],[266,636],[865,2379],[344,1144],[-10,120]],[[44004,29201],[-4,-15]],[[77280,64954],[-239,16],[-236,-180],[-492,211]],[[81961,67513],[-85,401],[135,281],[259,-274]],[[85694,62566],[-73,-134],[-47,-836],[42,-576]],[[89285,35179],[-186,-480],[-450,21]],[[62237,84663],[-182,-125]],[[84181,57209],[-79,-426],[-245,-292],[-325,233]],[[84181,63167],[0,2]],[[79190,64548],[24,-29]],[[89318,29293],[0,-4]],[[83721,90985],[29,-146]],[[80690,50069],[287,-104],[136,-516],[126,-151],[186,344]],[[85173,45008],[55,-243]],[[78421,39440],[37,-63]],[[84694,61243],[1,0]],[[69332,24003],[-621,1053],[-603,483],[-198,42]],[[87602,40687],[6,-1]],[[67697,65475],[67,98]],[[85136,50001],[-56,249]],[[60069,45878],[196,20],[43,626],[827,-54],[17,372],[144,68],[607,-72],[22,-184]],[[74985,66895],[1,1]],[[84603,58122],[-63,204]],[[61925,46654],[-23,-53]],[[61925,46654],[383,284],[535,269]],[[62843,47207],[109,-13],[28,-1050],[241,-176]],[[64720,36225],[68,293]],[[75354,71409],[-240,-75]],[[69021,69057],[0,0]],[[81061,94169],[2,-5]],[[81063,94164],[-5,-73]],[[72348,71073],[111,12],[28,447],[-98,331]],[[59914,83233],[16,118]],[[61633,84495],[6,49]],[[85904,40947],[-107,34]],[[85797,40981],[-326,1026]],[[73099,67598],[-8,-85]],[[89608,35852],[7,10]],[[66585,41784],[-122,-189]],[[84540,58326],[-1,-1]],[[76006,81673],[-35,100],[-664,168],[-230,-141],[-327,26]],[[84208,46163],[-7,-61]],[[88309,35454],[-370,-153],[-4,-354]],[[60315,38379],[0,-4]],[[63295,71375],[2,4]],[[87537,51744],[-367,47],[-145,-216]],[[73665,67499],[-7,148]],[[68389,78072],[-349,-232],[-449,123],[-41,-411]],[[71593,40801],[142,280],[154,1208]],[[65168,38914],[1,6]],[[82079,61575],[21,19]],[[81969,63908],[0,73]],[[84502,97856],[128,11],[66,336]],[[84626,44808],[-1,1]],[[37689,14010],[110,95],[-16,462],[228,249],[53,272],[-24,835],[65,178]],[[83250,58957],[84,340]],[[94430,28431],[444,109]],[[85904,40947],[-93,-26],[162,-711]],[[60872,52478],[40,-51]],[[60872,52478],[40,-51]],[[81331,65563],[-102,369],[-371,-144],[-93,209]],[[60262,83523],[-6,-5]],[[75829,62696],[10,-19]],[[84691,44870],[88,-281]],[[81478,86597],[-61,-79]],[[91276,20215],[1,-17]],[[83113,62065],[-25,381]],[[40057,12393],[440,689],[126,332],[814,76],[1,-57]],[[85961,35277],[-60,26]],[[61766,64796],[18,55]],[[68067,42288],[-539,1133],[-224,391]],[[76324,69984],[4,8]],[[88070,54001],[0,-1]],[[71575,78059],[-304,222],[-1139,245]],[[79526,80425],[-79,28]],[[79447,80453],[-45,-165]],[[89461,34922],[-173,247]],[[69917,33158],[67,1078],[1157,-266],[293,110]],[[61278,58787],[-9,-232]],[[74667,66086],[-15,8]],[[85062,32881],[72,-50]],[[78592,88832],[68,52]],[[88187,39022],[26,88]],[[60091,85870],[1,0]],[[79405,82392],[243,-496],[-63,-763],[119,-68]],[[89465,36615],[-3,0]],[[63129,44688],[19,483]],[[35644,37576],[73,15],[284,655],[416,715]],[[36417,38961],[645,578]],[[37062,39539],[-24,524],[137,107]],[[70581,26742],[-49,-590],[-80,-149],[-38,-747],[-405,-655],[-385,-435],[-292,-163]],[[79530,84837],[-3,9]],[[85532,43478],[-287,-291]],[[61112,85888],[-24,-13]],[[79398,59281],[-114,-702]],[[66380,49669],[113,558]],[[64009,37525],[2,0]],[[86402,53069],[0,-1]],[[86102,45219],[-153,-359],[-109,-543]],[[67694,69402],[4,-3]],[[78658,61221],[127,244],[614,-9]],[[84643,95300],[-21,-312]],[[71300,65988],[0,1]],[[82242,55263],[190,-486]],[[89114,36597],[105,71]],[[43213,41923],[-7,754]],[[85618,43061],[9,-32]],[[85627,43029],[1,-4]],[[85051,58577],[6,-7]],[[44801,21479],[-228,-54],[-345,-385],[-220,-13],[-91,-179]],[[71986,64482],[-108,-1110],[-97,-176]],[[75922,63307],[232,270]],[[59858,71469],[-5,4]],[[62084,46573],[237,-505],[256,-1043]],[[88753,38544],[-33,-143]],[[82432,54777],[-329,-258]],[[84178,57199],[-24,-309]],[[59731,50884],[4,-5]],[[81187,65543],[1,-2]],[[88848,44382],[-117,-558]],[[84097,93357],[-108,490],[45,459],[-141,562]],[[83893,94868],[203,359],[131,746]],[[82123,64777],[0,425]],[[82936,37768],[405,413],[228,-72]],[[88019,51717],[78,-17]],[[46508,60070],[434,-25],[275,-321],[437,7],[285,-90]],[[64110,39795],[88,186]],[[64198,39981],[483,-12],[6,-113]],[[57534,49401],[465,161],[515,1]],[[71292,29082],[26,53]],[[81028,94977],[2,6]],[[72895,69013],[-531,325]],[[79346,90258],[65,-591]],[[72639,59421],[-346,752],[-317,583],[-15,167]],[[48156,14611],[-655,-21],[-1066,-332],[-973,-437],[-110,-3]],[[77280,64954],[-239,16],[-236,-180],[-492,211]],[[41322,41005],[-708,-45]],[[49165,26545],[21,-1653],[-68,-118]],[[82928,54942],[684,1033],[297,688]],[[88918,37905],[33,-197]],[[80674,57288],[-874,1262],[-402,731]],[[50582,52568],[-35,268],[-381,440],[-202,121],[-981,1182],[-500,301],[-211,-6],[-396,257]],[[84651,95628],[54,56]],[[88070,54001],[2,-1]],[[78059,82605],[-264,-497]],[[90019,36853],[-5,-22]],[[83666,56999],[-1,-1]],[[84588,96681],[217,-171]],[[81095,94264],[179,483],[2000,309],[612,-167],[208,340],[133,744]],[[63936,36900],[-52,-1272],[458,-90]],[[49446,35381],[-1377,-1147],[-876,-678]],[[84336,49940],[-717,-306]],[[49117,50976],[33,-461],[-221,-472],[-126,-525]],[[89784,35279],[24,-66]],[[88778,38897],[21,-331],[-327,368]],[[93578,28125],[314,-112]],[[85818,56245],[0,-2]],[[80333,71919],[0,32]],[[84428,42736],[122,199]],[[84550,42935],[205,187]],[[53246,20232],[-1,460]],[[88702,36510],[97,-232]],[[85905,54149],[1,-2]],[[78950,72085],[254,23],[205,-130],[530,-44],[291,74]],[[91482,20069],[0,-1]],[[82571,86822],[-18,394]],[[82553,87216],[-2,2]],[[88019,51717],[151,126]],[[87637,36592],[10,-7]],[[78761,90159],[-40,282]],[[85466,50382],[9,-5]],[[55039,56691],[-192,-32],[-16,-341],[-188,-419],[-97,-447]],[[93137,25185],[-2,2]],[[79280,89836],[248,150]],[[72127,65720],[566,-101],[238,210],[294,-92]],[[82391,48404],[-394,-57],[-139,-137]],[[71986,64257],[-102,-396],[-670,225]],[[86584,40840],[70,-142]],[[86654,40698],[1,-2]],[[81058,94091],[-293,152]],[[81239,85677],[10,129]],[[66291,39582],[8,-591],[-204,-117],[-34,-302]],[[76279,46551],[14,-17]],[[81291,55840],[6,2]],[[46508,60070],[207,-171],[11,-789]],[[61629,84545],[1,-4]],[[61630,84541],[50,-161]],[[61680,84380],[-55,-339],[-805,-135]],[[60820,83906],[-564,-388]],[[79329,61689],[70,-233]],[[64269,39007],[296,-487],[-4,-289]],[[72948,66751],[88,-71]],[[82131,64242],[2,-3]],[[62352,84595],[2,-4]],[[80569,48513],[439,-522],[382,105],[682,-431]],[[85657,50498],[31,-5]],[[80544,93294],[24,-362]],[[62042,36771],[-108,-38],[-28,-581]],[[63705,55802],[168,237]],[[80367,80141],[-74,27],[59,525]],[[81718,88661],[298,-425]],[[66522,42627],[-38,-97]],[[62094,67387],[-294,-211],[-793,-267]],[[72632,35795],[-390,65],[-141,-859]],[[91276,20215],[1,-17]],[[53425,48858],[-4,1147],[-234,333]],[[89579,35997],[31,-135]],[[61516,38067],[4,-35]],[[61520,38032],[-2,-16]],[[95441,28819],[-127,26],[-200,-344]],[[72097,69619],[276,152]],[[65543,69685],[-1,-4]],[[43681,49669],[12,15]],[[71246,66412],[28,309],[-180,129],[-387,714]],[[69249,53196],[-134,-4],[-254,-320],[-26,-390],[141,-366],[236,-338],[-116,-135],[10,-483]],[[85281,62723],[69,319],[253,569],[26,213],[244,182]],[[63647,44357],[3,-1]],[[49771,48465],[153,101],[665,-75]],[[80704,39224],[-266,-382]],[[85997,62661],[-1,0]],[[73077,68060],[22,-297]],[[64561,38231],[222,-84]],[[68220,43017],[64,660]],[[87228,37289],[-571,166],[-1188,731],[-148,213],[-428,-3],[-185,-144],[-311,201]],[[65737,47562],[46,-41]],[[73313,67273],[39,25]],[[73725,42019],[9,138],[-593,-494],[-68,204]],[[64482,48877],[-60,243],[-388,762]],[[68568,81418],[3,1]],[[63494,29441],[66,-367],[-28,-833],[144,-135]],[[71768,45691],[38,241]],[[80191,79703],[57,33]],[[88362,39405],[-6,-41]],[[68717,32135],[28,641],[-223,115]],[[58066,39133],[-1048,-39],[-814,7]],[[93173,26529],[-58,-209],[211,-599],[-39,-189],[-445,-664],[-308,-828],[-309,-662],[-203,-688],[-308,-747],[-397,-1401],[-24,-328]],[[78785,88153],[0,-5]],[[67022,38214],[396,-9]],[[59968,71301],[111,-46]],[[83602,50515],[1,724]],[[84181,57209],[-114,592],[-86,917],[56,849],[-90,401],[59,663],[-58,274]],[[82795,30885],[-369,-354]],[[78699,90511],[-70,12]],[[83532,56724],[-23,-734],[-73,-244],[-335,-573],[-87,-601]],[[84097,93357],[354,42]],[[93575,28116],[317,-103]],[[81106,86267],[-70,134]],[[81103,87522],[-40,107]],[[84894,42444],[11,30]],[[84905,42474],[-41,488]],[[72639,59421],[-212,-134],[-528,336],[-428,-154],[-410,-260],[-318,10],[-261,129],[-561,-80],[-1226,55],[-155,-200]],[[80569,48513],[345,365],[259,547],[252,217]],[[76604,62403],[-65,-256]],[[76539,62147],[-72,-259],[-285,-481]],[[81447,61194],[352,-86]],[[82977,56505],[3,4]],[[72365,68230],[25,145],[534,-31],[189,487]],[[86710,45739],[-218,-249],[-185,-785],[-136,-804],[-198,-393]],[[93892,28013],[22,-5]],[[89486,32047],[9,13]],[[86650,33394],[-275,582]],[[73454,30767],[-111,-848],[-156,-216]],[[73261,67332],[8,84]],[[67954,45013],[-13,366]],[[73454,30767],[-111,-848],[-156,-216]],[[76219,64993],[1,21]],[[86714,45728],[-4,11]],[[42372,27836],[2,3]],[[42374,27839],[1,0]],[[42375,27839],[1,-2]],[[42376,27837],[3,-5]],[[60549,83874],[-71,-63]],[[59988,83705],[-27,-97]],[[85075,49342],[57,-128]],[[72916,28005],[107,5],[133,946],[31,747]],[[63873,56039],[-55,-218],[-38,-1356],[-178,-1278]],[[87909,35762],[-425,51],[-261,544]],[[79411,92258],[9,91]],[[79102,44220],[504,-18]],[[83094,63887],[-44,-22]],[[84679,45111],[95,-145]],[[64561,38231],[221,485]],[[65941,46337],[61,-23]],[[85295,56187],[116,-378]],[[35683,37497],[4,52]],[[35687,37549],[300,663],[430,749]],[[36417,38961],[645,578]],[[37062,39539],[252,224],[-22,504]],[[37292,40267],[-18,31]],[[49335,36447],[125,8],[409,-976],[215,-672],[459,-1222]],[[82878,58750],[1,-1]],[[73931,31973],[-1146,312],[-229,155]],[[64792,37463],[-5,0]],[[79329,61689],[70,-233]],[[88472,38934],[-65,-61]],[[79521,90978],[202,-43],[15,183],[278,93]],[[60030,71370],[-62,-69]],[[83961,91316],[-43,-131]],[[69560,81750],[245,-509],[-111,-579]],[[74631,77110],[-111,-675]],[[65542,69681],[29,-12]],[[80600,90152],[-126,-135]],[[79209,85529],[-340,237]],[[80989,88031],[-1,-4]],[[80466,33998],[0,0]],[[80556,94526],[71,-418],[-83,-814]],[[83332,89007],[-185,12],[-118,-205]],[[73154,80258],[-256,-369],[-260,-798],[-216,-368]],[[76219,64993],[278,-392]],[[93588,28232],[-4,-4]],[[79581,31643],[1,3]],[[84578,58064],[-1,2]],[[66493,50227],[46,153],[603,-52],[499,-544],[313,-427]],[[87937,34941],[-2,6]],[[87719,52136],[-216,52],[-277,-132],[-54,-264],[-305,-387]],[[42749,53867],[8,-55]],[[81546,84125],[65,10]],[[73463,67734],[-28,-181]],[[85815,43681],[0,5]],[[85380,44528],[-83,2]],[[45735,49989],[83,71]],[[82571,86822],[-17,397]],[[69239,74170],[16,-13]],[[80417,82778],[-10,-5]],[[87909,39836],[2,-4]],[[90002,37986],[-16,132]],[[64600,35243],[-94,-11],[57,568],[157,425]],[[52659,56135],[-123,51],[-385,937],[2,149],[-293,488],[-360,816],[-56,1962]],[[57545,53468],[394,144],[339,494],[253,218]],[[61983,51806],[4,33]],[[61987,51839],[-226,30],[-117,249]],[[65681,82424],[-107,-454]],[[81297,55842],[-6,-2]],[[94068,23968],[2,1]],[[84119,90841],[-369,-2]],[[80809,92165],[-30,-348],[-176,56],[-152,-798]],[[89294,27873],[78,-226]],[[60539,53245],[333,-767]],[[79776,74271],[77,-371],[249,-251],[104,-259]],[[80877,89478],[-204,-283]],[[78505,83508],[139,352],[406,433],[194,54]],[[62042,36771],[30,451],[-204,542]],[[84863,95706],[3,-1]],[[79068,40128],[116,-268]],[[75896,36844],[43,-196]],[[70820,47290],[-17,-30]],[[61642,84513],[-3,31]],[[77832,73163],[129,881]],[[85281,62723],[-27,74],[375,1027],[174,147]],[[83335,57896],[-49,178]],[[88720,38401],[18,180]],[[73854,68347],[13,178]],[[83687,90222],[-100,26],[-175,-370]],[[56887,71919],[-429,-9],[-854,-114]],[[42372,27836],[3,3]],[[42375,27839],[27,0]],[[42402,27839],[110,-1000]],[[83750,90839],[-103,-259]],[[58330,48040],[-4,1]],[[81504,85275],[16,31]],[[84226,65220],[-189,187]],[[84615,44590],[-207,34]],[[64004,37979],[63,338],[-76,915]],[[73594,67081],[-4,150]],[[74060,66421],[-118,-50]],[[64300,37197],[6,548]],[[67619,65213],[78,262]],[[84323,96820],[40,-10]],[[84363,96810],[1,0]],[[84364,96810],[100,-47]],[[84464,96763],[124,-82]],[[86368,40528],[-62,74]],[[64482,36303],[54,244]],[[92832,31782],[-2,19]],[[53246,20232],[-237,-81],[-43,-370],[-199,-198],[-411,-606]],[[52356,18977],[-223,-365]],[[80525,90171],[75,-19]],[[54610,24990],[44,326]],[[84227,95973],[389,-107],[122,-172]],[[62026,74986],[-36,8]],[[69674,74183],[141,204]],[[60676,82360],[8,301]],[[84873,95949],[15,118]],[[85878,23898],[-38,-826]],[[85840,23072],[-32,-155]],[[85808,22917],[68,-351],[-67,-419]],[[85809,22147],[-47,-503]],[[85762,21644],[-18,-480]],[[85744,21164],[220,-1343],[209,-377]],[[79399,61456],[-290,-614]],[[73275,67597],[36,61]],[[61665,84463],[-26,81]],[[58898,40084],[-831,57],[-9,-76]],[[75175,66422],[-170,-706],[46,-727]],[[84495,95471],[-21,-196]],[[67601,44698],[300,-463]],[[88225,39115],[-1,6]],[[79190,64548],[24,-29]],[[86166,42898],[-3,4]],[[50358,40905],[-66,87]],[[81484,63584],[2,1]],[[78376,88955],[7,-1]],[[74873,48500],[-16,-12]],[[62348,48654],[-315,60],[-369,477],[-617,102],[38,425]],[[62035,75134],[-9,-148]],[[89808,35213],[30,-177]],[[53459,29043],[-240,-26],[-253,394],[2,285],[-196,210]],[[80307,73060],[49,-268]],[[81129,44371],[15,4]],[[75640,69995],[14,-268]],[[78498,89993],[-34,-603]],[[66612,79970],[-306,391],[-778,1157]],[[73518,67807],[84,-6]],[[90018,33392],[9,466]],[[54460,17155],[-559,-101]],[[71214,64086],[78,357],[-2,841],[-128,598],[97,231]],[[78851,66238],[87,1115]],[[82471,68768],[-3,-1]],[[82468,68767],[-204,304]],[[81450,84004],[-44,-390]],[[73958,79410],[-402,469]],[[67989,69410],[119,-81],[313,259],[-23,103]],[[84749,94876],[-88,24]],[[70815,47284],[-364,294],[-197,445],[-425,655],[38,164]],[[60272,83074],[27,19]],[[82322,62484],[-21,43]],[[62506,84682],[-67,50]],[[50292,40992],[67,5]],[[50359,40988],[0,9]],[[80987,89047],[-110,431]],[[56754,74727],[-40,-1655],[176,-711],[-3,-442]],[[85660,50448],[17,24]],[[64423,34640],[-8,1]],[[65167,38908],[394,-130]],[[80323,29422],[-3,2]],[[85420,39453],[-53,-266]],[[79771,78188],[263,51]],[[73765,71028],[44,15]],[[77601,74792],[404,-580]],[[87318,52483],[-216,-39],[-238,-868],[13,-768]],[[76324,69984],[4,8]],[[87841,39352],[7,-4]],[[65166,38908],[-212,38],[-172,-230]],[[88703,38333],[-1,1]],[[87937,36688],[251,-506],[372,-305],[34,-276],[180,-331],[-11,-249]],[[89275,36343],[-58,-56]],[[79495,56597],[31,86],[-237,1522],[-5,374]],[[62338,45525],[86,-493],[601,-1967]],[[65574,81970],[-258,-66],[-439,86],[-336,-51],[-544,45],[-353,-131],[-264,150],[-866,-145],[-286,-331],[-519,62],[-200,-161],[-323,30],[-8,123],[-494,51]],[[47578,39811],[-144,47]],[[84453,43346],[-4,-2]],[[89938,32771],[141,804]],[[83364,56319],[16,-31]],[[82172,61282],[0,0]],[[81207,95110],[102,1053]],[[85690,42856],[270,-71]],[[88019,39522],[144,-333]],[[83986,57273],[-37,-180]],[[74488,66797],[-19,-107]],[[74004,68081],[-62,151]],[[85327,49967],[5,12]],[[64602,82446],[0,3]],[[50045,41018],[5,459],[111,279],[2,1261]],[[50163,43017],[229,176]],[[65788,42198],[-64,65]],[[89703,33203],[14,14]],[[72745,68162],[-162,-172],[-218,240]],[[84894,42444],[-152,53]],[[84451,93399],[74,555]],[[75267,72631],[2,-1]],[[50582,52568],[-1065,694],[-499,527],[-578,-22],[-636,180],[-44,385]],[[76555,78708],[-162,-154],[-151,169]],[[61680,84528],[-41,16]],[[88322,38814],[20,19]],[[80569,48515],[0,-2]],[[64452,34913],[-110,625]],[[69302,76437],[70,6],[415,-1213],[148,-586]],[[74662,70473],[265,278],[233,-195],[249,-497],[-27,-293],[322,-532],[194,-16],[663,612]],[[73522,66748],[23,163]],[[86211,39642],[-6,-2]],[[85765,46347],[-4,1]],[[62432,58721],[33,-8]],[[63521,47879],[-495,201]],[[71434,34080],[-293,-110],[-614,142]],[[79999,78939],[-278,74],[-186,243]],[[72895,69013],[218,-182]],[[84334,46232],[180,-306]],[[83392,57182],[0,-5]],[[77537,70547],[-603,714]],[[78421,39440],[-331,441]],[[52555,52123],[7,3]],[[85006,45123],[167,-115]],[[80256,88885],[34,47]],[[61639,84544],[66,62]],[[72365,68230],[24,146],[535,-30],[189,485]],[[82289,87227],[-338,-308],[-82,-666],[-385,-1476],[-266,-682],[-124,-851],[-291,-374],[-386,-92]],[[78458,39377],[-194,-249],[-184,-452],[-193,-148],[-116,-284],[-276,-317],[-3,-470]],[[65814,46886],[-105,-2154]],[[40614,40960],[708,45]],[[84631,95788],[107,-94]],[[61644,52118],[-350,-525],[-372,-708],[1,-138]],[[60923,50747],[43,-128]],[[73113,68831],[59,208],[247,14]],[[83694,92166],[206,-34]],[[49196,32329],[-185,-710]],[[49011,31619],[-149,-173]],[[48862,31446],[-13,3]],[[87210,37807],[174,-465]],[[73357,66755],[8,109]],[[84124,90832],[-5,9]],[[79671,80272],[32,-529]],[[79703,79743],[249,-125]],[[79952,79618],[175,-34]],[[80127,79584],[64,119]],[[86094,62701],[1,-3]],[[96347,13582],[6,-4]],[[94430,28431],[-322,-178],[-216,-240]],[[72801,67388],[37,173]],[[60188,83260],[-77,-148]],[[66084,81260],[0,-593]],[[59740,81683],[4,44]],[[62056,84535],[-1,3]],[[79984,88417],[24,560]],[[85784,46340],[-23,8]],[[83210,53145],[48,187],[397,-77],[86,-298],[-93,-431],[-45,-1287]],[[85128,39039],[-136,309],[-75,-105]],[[61666,84356],[-280,-85]],[[87719,52136],[76,-69]],[[47556,37410],[-529,-147],[-279,-7],[2,-199],[-241,-83]],[[79337,89272],[123,-11]],[[62616,52369],[-3,11]],[[55236,23197],[-189,475],[16,787]],[[73366,67428],[69,125]],[[76555,78708],[-184,-437],[-413,-776],[-257,-958]],[[67976,69396],[-274,-3]],[[87598,57779],[-99,338]],[[85466,50382],[9,-5]],[[83736,58443],[0,-4]],[[47226,21637],[239,-45],[1021,-11]],[[85702,50642],[0,1]],[[63471,40282],[-780,1221],[-214,451],[-419,614],[-340,360],[-142,-46]],[[49118,24774],[-227,-14],[-78,-367],[-280,-256],[-16,-714]],[[44560,51792],[-249,-500],[-277,-734],[-251,-473]],[[82197,69161],[-195,215]],[[72866,33919],[-113,-144]],[[85471,54061],[-68,-31]],[[84383,26513],[-8,13]],[[84375,26526],[-1,2]],[[84374,26528],[-224,159],[-113,-280]],[[81445,61193],[-61,-96]],[[70803,47260],[17,30]],[[62220,68821],[-34,-446]],[[86471,60599],[1,0]],[[89129,35812],[119,-267]],[[75451,65927],[-276,495]],[[62697,84626],[-9,28]],[[89201,35213],[47,332]],[[69400,40005],[-83,322],[-220,-145],[-672,-730],[-350,-600],[-657,-647]],[[66186,58738],[177,307],[494,228],[253,224],[377,72],[78,255]],[[60343,67013],[-62,8]],[[85164,62367],[2,-1]],[[76081,37080],[34,314],[-195,120],[63,986]],[[84227,95973],[-131,-747],[-202,-357]],[[83894,94869],[141,-564],[-45,-458],[107,-490]],[[82271,69571],[-159,105],[-524,-37],[-178,280],[-242,-26]],[[75954,46881],[-980,41],[-442,139],[-239,-215]],[[80568,92932],[283,-259],[-42,-508]],[[68400,78960],[-841,303],[-780,159],[-223,435],[17,155]],[[63140,30088],[-55,148],[-455,59],[-227,252],[-254,455],[-346,261],[-234,-8]],[[82525,62070],[24,33]],[[58305,83754],[-2,0]],[[75922,63307],[-80,-626]],[[75842,62681],[-3,-4]],[[45499,18532],[130,-142],[347,-945],[348,-667],[242,-350],[408,-273]],[[85361,44909],[-80,54]],[[84815,36679],[-78,-559]],[[67418,38205],[161,-45],[203,-593]],[[73765,71028],[-61,278]],[[50643,44208],[-178,-97],[-154,-571],[81,-347]],[[63991,39232],[57,339],[-173,34],[-562,866],[-534,896]],[[76600,39510],[496,-71],[334,288],[204,297],[456,-143]],[[78228,83956],[131,1591],[-57,367]],[[66810,48020],[808,-1043],[57,18]],[[64015,38886],[0,-1]],[[84949,44403],[-159,-133]],[[83242,44681],[-173,-299]],[[70591,48675],[-7,-10]],[[66612,79970],[-39,42]],[[80151,65907],[-186,117]],[[42372,27836],[587,133],[785,557],[256,660]],[[66322,81891],[-238,-631]],[[85889,56246],[-71,-1]],[[92867,27062],[-225,324],[-304,254],[-803,-529]],[[91535,27111],[-1,-1]],[[91534,27110],[-631,-129],[-171,-112],[-90,236]],[[74371,67758],[365,265]],[[84843,47901],[137,-420],[9,-319],[122,-167],[-147,-410],[-2,-762],[145,-40]],[[54360,75516],[-254,-58],[-19,-645]],[[81943,61266],[1,0]],[[88533,36688],[169,-178]],[[85000,44286],[-210,-16]],[[83828,90770],[-1,5]],[[79924,86102],[-160,52],[-497,-637],[-319,238],[-646,159]],[[55816,27264],[-49,59],[40,1519]],[[83486,48090],[68,-111]],[[68401,69690],[-3,1]],[[86790,50297],[-113,-93]],[[72364,69338],[531,-325]],[[84471,43346],[4,-3]],[[84475,43343],[8,-73]],[[57545,53468],[0,-669],[224,-1408]],[[74597,77968],[-117,-326]],[[85478,43835],[-55,161]],[[49117,50976],[-619,-58],[-468,-191]],[[64804,38231],[-15,469],[-210,421]],[[67820,42393],[247,-105]],[[64015,38885],[55,-409],[198,-226]],[[88227,19372],[2,-3]],[[53944,39012],[243,-55]],[[80871,56160],[5,-9]],[[72202,72748],[29,-5]],[[67565,59824],[-112,-498],[-132,-251],[-398,-1246]],[[88702,36510],[-587,70],[-483,524],[-404,185]],[[79518,84571],[-274,-224]],[[49771,48465],[408,608],[-2,511],[158,26]],[[61150,66140],[212,-772]],[[78114,83285],[114,671]],[[52133,18612],[-487,195]],[[59527,35733],[107,15],[483,1255],[115,208],[43,863]],[[73849,72580],[-11,-104],[601,-229]],[[81208,85438],[-3,5]],[[67901,44235],[-29,-371],[258,-110]],[[62138,67944],[-44,-557]],[[80448,34020],[200,89],[413,-454]],[[79854,76367],[-229,84]],[[60328,84195],[-309,-489],[117,-59]],[[90060,34400],[19,-825]],[[86710,45739],[-219,-247],[-185,-787],[-136,-803],[-197,-394]],[[69541,73573],[-46,-809],[-84,-597],[-35,-1151],[-96,-281]],[[81944,61266],[87,83]],[[63311,71338],[-16,29]],[[84526,96261],[8,141]],[[50579,52582],[3,-14]],[[68474,67114],[-2,1]],[[72981,68086],[-69,111]],[[43466,13639],[-86,1200]],[[47193,33556],[-1728,-91]],[[63025,43065],[133,94],[52,986]],[[85784,46340],[-19,7]],[[61784,64804],[2,-2]],[[62352,84595],[-21,35]],[[61606,42664],[-177,19]],[[61606,42664],[-1,-12]],[[82928,54942],[-206,-109]],[[78785,88148],[-3,1]],[[85590,44735],[179,82]],[[82682,48408],[0,-2]],[[73614,65456],[97,-78]],[[64268,38250],[355,-472],[98,-270]],[[75410,69348],[223,322]],[[69280,70735],[-484,-61]],[[87608,19364],[1,0]],[[94430,28431],[444,109]],[[83673,57216],[10,65]],[[82977,56505],[134,-353],[253,167]],[[72382,66967],[-54,214]],[[51358,49561],[54,-121]],[[85568,43261],[-34,198]],[[79209,85529],[59,-13],[496,636],[160,-50]],[[64120,61741],[-9,-25]],[[84532,95131],[-58,144]],[[85371,39188],[-4,-1]],[[78147,76999],[-645,-601]],[[74095,68916],[-92,-65]],[[70591,48675],[57,-67]],[[85606,51068],[-143,94],[-14,-414]],[[68203,41226],[-393,266]],[[78702,89378],[-147,51]],[[80394,81370],[-5,-13]],[[94291,29544],[-115,-665],[-330,-393]],[[88735,38587],[3,-6]],[[83115,58286],[-139,269]],[[81238,95474],[-52,-553],[-158,56]],[[80111,89155],[-103,-178]],[[84227,95973],[96,847]],[[80328,34235],[0,0]],[[88266,38868],[-49,-8]],[[72365,68230],[-146,-639],[15,-672],[-110,-154]],[[75896,36844],[185,236]],[[61119,84608],[-181,652]],[[85779,62746],[-326,63],[-172,-86]],[[68068,71024],[243,-773]],[[73073,41867],[400,293],[416,132]],[[73064,59043],[370,-397],[262,-142]],[[84798,43527],[322,-320]],[[49062,28327],[-5,32]],[[76497,64601],[-343,-1024]],[[84097,93357],[-134,474],[37,485],[-107,552]],[[83893,94868],[1,1]],[[83894,94869],[205,342],[84,337],[170,14],[121,-287]],[[74151,74395],[51,3],[78,883],[9,918]],[[73219,67170],[-50,12]],[[67565,59824],[-223,127],[-566,104],[-357,-44],[-415,60],[-369,202]],[[79703,81061],[-107,184]],[[68067,42288],[127,355],[26,374]],[[63442,82168],[387,315],[9,165]],[[73854,68347],[88,-115]],[[89981,37211],[-222,-218],[-81,-249]],[[87020,59002],[-51,-33]],[[87868,36153],[69,535]],[[85994,62788],[8,149]],[[79373,61417],[-752,732],[-484,242]],[[78005,74212],[95,575],[212,500]],[[72757,38726],[-91,-1315]],[[50292,40992],[-247,26]],[[85361,39263],[281,-322],[423,-234],[613,-191],[209,-221],[85,-338],[271,-244],[132,-375]],[[60383,83726],[-24,-26]],[[81141,87448],[-13,-139]],[[73735,42191],[-10,-172]],[[79109,60842],[290,614]],[[68249,37225],[-494,-29],[-121,-463]],[[81028,94977],[229,-255],[-145,-344]],[[68528,34401],[-253,261],[67,1067],[13,808],[-106,689]],[[83750,90839],[-29,146]],[[66615,79456],[25,-50]],[[87062,49051],[-439,309],[-162,9]],[[85145,48714],[5,-5]],[[61069,78553],[-113,948],[-262,1150],[-10,981]],[[86877,50808],[23,241],[-213,157],[-339,-359],[-641,-174]],[[86714,45728],[-4,11]],[[74349,66424],[-181,284]],[[85812,45087],[-1,0]],[[63919,36582],[5,2]],[[79509,80326],[20,104]],[[93846,28486],[330,393],[115,665]],[[79509,80326],[20,104]],[[79529,80430],[-3,-5]],[[46974,16155],[2,2]],[[75308,72624],[-39,6]],[[81358,90628],[17,659],[282,506]],[[89938,32771],[-5,-230],[-232,-715],[-55,-506]],[[78702,89378],[142,39]],[[57815,65282],[50,-592],[548,-1150],[569,-1041],[6,-157]],[[73867,68526],[1,-1]],[[81291,55840],[352,-337]],[[52225,46225],[-280,-312],[-449,-93],[-449,-428],[-126,-518],[-328,-441],[50,-225]],[[61879,57383],[1,0]],[[67565,59824],[43,276],[465,23],[232,-333]],[[58512,51682],[-48,-266],[-445,-847]],[[95309,28823],[-195,-322]],[[52335,11718],[1,0]],[[71955,64465],[-83,184]],[[79507,59950],[-30,-44]],[[90620,27102],[22,3]],[[73225,65737],[-310,85],[-532,542]],[[76561,69830],[497,-926],[246,-305],[37,-269]],[[67304,43812],[-315,642]],[[90058,57371],[0,-1]],[[73378,66313],[21,68]],[[74736,68023],[191,537],[483,788]],[[73419,69053],[-15,447],[443,46],[360,709],[361,266],[94,-48]],[[88470,38648],[3,13]],[[91276,20215],[193,-126]],[[85120,43207],[74,213]],[[79407,80471],[-1,-64]],[[79406,80407],[-219,-2170],[-67,-360],[-178,-294],[-184,-1316],[-171,-288],[-369,-916],[-72,-803],[-141,-48]],[[84812,42155],[-18,-354]],[[78702,89378],[-147,51]],[[76550,56600],[-269,250],[-469,168],[-343,252],[-145,-92],[204,-418]],[[88735,38587],[17,-44]],[[76225,48804],[2,-511],[92,-547],[-82,-773],[-275,-209]],[[65166,38908],[2,6]],[[83984,42273],[116,54]],[[85454,51196],[13,-4]],[[80217,72101],[15,-90]],[[89108,35190],[93,23]],[[85062,32881],[-56,40],[-469,-865],[-286,-286]],[[86102,45219],[-154,-359],[-108,-543]],[[67810,41492],[13,655],[253,-77]],[[81269,86165],[-73,-40]],[[86351,45399],[-140,-220]],[[90079,33575],[-19,825]],[[85878,23898],[-39,-825]],[[85839,23073],[-32,-157]],[[85807,22916],[68,-350],[-66,-418]],[[85809,22148],[-47,-505]],[[85762,21643],[-19,-478]],[[85743,21165],[220,-1344],[210,-377]],[[78759,90153],[-112,-106]],[[94652,20955],[99,77]],[[59731,50884],[4,-5]],[[89012,36332],[182,-70]],[[72867,68576],[-5,-223]],[[85769,44817],[13,24]],[[85782,44841],[1,0]],[[85783,44841],[119,31]],[[72685,66896],[-356,-402]],[[64561,38231],[221,485]],[[84358,35490],[185,703],[272,486]],[[49771,48454],[0,11]],[[70913,47158],[-93,132]],[[89717,33217],[-14,-14]],[[88084,51947],[128,-11]],[[73634,68340],[220,7]],[[84383,43975],[-2,1]],[[85390,44696],[-82,84]],[[80055,58571],[3,32]],[[72328,67181],[102,-9]],[[78005,74212],[-560,799],[-387,433],[-900,423],[-487,488],[30,182]],[[71429,67390],[37,181]],[[82042,63153],[263,734],[-13,138]],[[57924,50250],[4,-8]],[[72866,67128],[-436,41],[-306,-404]],[[75528,56760],[-62,-117],[233,-439]],[[84866,95705],[25,-98]],[[72231,72743],[343,-64]],[[51358,49561],[3,-18]],[[73538,67332],[-64,135]],[[85219,40150],[126,153],[337,-376]],[[83194,48118],[2,1]],[[51387,62385],[8,-186],[-464,108],[-59,-155]],[[89326,29315],[-14,3]],[[89312,29318],[-353,-365],[-261,-41],[-223,149],[-293,-24]],[[94437,27996],[-100,-321]],[[80772,85844],[-380,-114],[-155,132]],[[89486,32047],[-115,13],[-114,-392],[-29,-754],[-66,-209]],[[81107,87131],[-29,-23]],[[84234,26068],[-3,4]],[[82270,67921],[165,536],[195,321]],[[80731,51785],[-338,60],[-276,251],[157,390]],[[82471,68768],[-158,384]],[[83909,56663],[-110,183]],[[64300,37197],[6,548]],[[89580,36135],[-88,4]],[[74661,67484],[-16,-94]],[[70061,67560],[-148,-333],[-163,9]],[[65542,69681],[-87,18]],[[42835,53839],[4,-14]],[[87047,55459],[66,250],[273,215]],[[92832,31782],[-3,15]],[[81969,63981],[0,-73]],[[80191,79703],[148,192]],[[75701,76537],[-192,-1981]],[[72801,67387],[0,1]],[[85006,45123],[-232,-157]],[[47409,62622],[250,682],[496,183],[386,655],[-1,1356]],[[65558,50968],[68,80],[585,34]],[[65805,46890],[-26,-58],[-115,-1839],[165,-190]],[[57532,49404],[63,210]],[[85790,45600],[-6,740]],[[83094,63887],[-44,-22]],[[81371,44316],[868,-57],[453,-650],[507,-174],[369,14],[747,-411]],[[72592,45690],[-84,-225],[-40,-558],[-207,-141],[-13,-474]],[[73704,71306],[-105,-249],[-210,-136],[-805,-1100],[-235,-448]],[[79041,57055],[444,-290],[10,-168]],[[80175,79643],[16,60]],[[88591,38762],[-119,172]],[[85287,38846],[-57,-161],[165,-226]],[[42072,18559],[-80,-368],[1,-811]],[[83849,58792],[-113,-353]],[[40735,17796],[-371,-61]],[[81694,58159],[12,-397],[-99,-457]],[[85364,39256],[-24,-1]],[[81133,85905],[136,260]],[[80371,89626],[12,-146]],[[65528,81518],[-714,679]],[[89413,33795],[307,-577]],[[89720,33218],[0,-1]],[[89720,33217],[-1,-1]],[[89719,33216],[-2,1]],[[91340,26441],[-5,-3]],[[83286,58074],[-171,212]],[[93173,26529],[-9,13]],[[88349,51887],[1,2]],[[81331,65563],[-49,360],[4,754]],[[85961,35277],[-70,16]],[[72563,50814],[185,-482],[138,-1915]],[[79070,40131],[114,-271]],[[89285,35179],[-84,34]],[[81141,87173],[-13,136]],[[47909,11975],[15,-1926],[-54,-197]],[[69750,67236],[0,-1]],[[69211,43977],[-473,877],[-152,42],[-38,-314]],[[53944,39012],[-196,1],[8,604]],[[86094,62698],[0,3]],[[61822,75685],[-42,-67]],[[86193,45396],[18,62]],[[63838,82648],[-45,281],[-353,161]],[[83472,57874],[-186,200]],[[45656,43943],[-432,-82],[-241,-155],[3,-172],[-245,-12],[-49,-174],[-433,-18]],[[87800,51922],[27,-30]],[[85979,39085],[-559,368]],[[72890,68270],[-28,83]],[[85682,39927],[-262,-474]],[[58303,83754],[-142,11],[-17,485]],[[85532,42474],[158,382]],[[61364,82746],[-423,681]],[[93132,25242],[5,-57]],[[84408,95553],[-4,374],[-177,46]],[[79745,60039],[298,208]],[[78702,89378],[3,210]],[[89608,35852],[7,10]],[[66958,36484],[164,-19],[28,1058]],[[78785,88148],[74,-841]],[[89828,35102],[9,-187]],[[80240,88908],[16,-23]],[[86208,53289],[-439,496]],[[61753,75503],[-149,-96]],[[60927,25973],[11,-48]],[[83041,37552],[-106,215]],[[77867,68000],[4,-10]],[[82256,28592],[452,-57],[49,-108]],[[50801,26717],[1,10]],[[78161,40060],[-71,-179]],[[62613,35843],[-12,-277],[-253,38]],[[78629,90523],[-148,-194]],[[67262,53169],[176,-811]],[[88629,37952],[-92,-163]],[[62438,84737],[1,-5]],[[53245,20693],[0,-1]],[[84789,27186],[572,41],[444,-291],[413,18],[224,-180]],[[50092,61470],[30,279],[583,583],[99,181],[229,27]],[[71634,30107],[7,-468],[315,-847],[195,-361],[339,-261]],[[55283,77568],[-26,944],[68,304]],[[55325,78816],[17,195]],[[85360,54064],[-276,-4]],[[68969,69680],[-244,-283],[-216,188]],[[83532,56724],[-152,-436]],[[80995,82522],[46,236]],[[78411,61602],[3,3]],[[93957,25126],[-12,-286],[172,-60]],[[74925,66517],[60,378]],[[73451,68555],[-338,276]],[[83999,92588],[316,425]],[[81691,61183],[340,166]],[[64013,38891],[-3,-7]],[[89418,36298],[74,-159]],[[88591,38453],[114,-137]],[[85025,45883],[86,-55]],[[87679,19340],[3,-2]],[[84793,42645],[-243,290]],[[84550,42935],[-229,110]],[[84321,43045],[-6,-7]],[[68381,81259],[269,-250],[175,-14],[188,511],[-3,217]],[[83475,42419],[191,42],[247,-141],[207,258],[195,460]],[[75613,48697],[146,-122],[608,-213],[306,99]],[[80499,58540],[14,304],[-288,731],[-92,99]],[[79623,92795],[-63,-738],[-249,-65]],[[58303,83754],[-1,64]],[[85532,43478],[-54,357]],[[73113,68831],[-51,-233]],[[64152,31385],[-96,44],[59,915]],[[66682,28950],[7,15]],[[64773,47535],[-455,91],[-276,-33]],[[73878,66733],[-41,-82]],[[73731,42208],[165,-250],[404,-121],[610,114],[435,-121],[614,-23]],[[80339,29920],[-91,-40]],[[88702,36510],[-285,761],[-368,191],[-252,449]],[[70173,69234],[211,-289]],[[60751,66993],[256,-84]],[[84389,47985],[-13,3]],[[53338,23679],[-51,-2822],[-42,-164]],[[73624,67361],[-34,-130]],[[76604,62403],[337,-144],[379,99]],[[50186,64879],[-14,771],[176,306],[-204,629]],[[85840,44317],[62,555]],[[71559,46510],[-64,166]],[[72981,68086],[96,-26]],[[84477,97459],[-154,-639]],[[43332,60486],[-326,98]],[[79495,56597],[923,-176]],[[80686,70396],[42,111]],[[51618,25626],[-412,533],[-437,474]],[[50769,26633],[-8,-1]],[[46658,27471],[-730,483]],[[59744,81727],[191,403]],[[83475,42419],[-491,31],[-171,411],[-305,60],[-157,266],[-384,-211],[-314,53]],[[78114,83285],[-223,-40],[-95,177]],[[87404,40655],[-1,6]],[[87403,40661],[0,1]],[[87403,40662],[-747,36]],[[86656,40698],[-2,0]],[[86654,40698],[-76,-100]],[[80544,93294],[-149,-218]],[[86442,26774],[-356,-567],[-472,-43],[-514,187],[-243,-114],[-392,105],[-234,-270]],[[83999,92588],[316,425]],[[96432,16224],[117,-798],[-134,-992],[-154,-513],[86,-339]],[[55605,15788],[-314,182],[-243,-44]],[[55048,15926],[-139,38]],[[54909,15964],[-2,120]],[[72197,28424],[430,-394],[289,-25]],[[56181,55009],[-191,114],[-580,124],[-301,180],[-563,25]],[[88224,39121],[-11,-11]],[[68960,68826],[103,-218],[-10,-448]],[[75739,78150],[238,159],[265,414]],[[74587,77195],[-356,176],[-930,252],[-561,465],[-190,71]],[[50729,32990],[497,-1269],[268,-555]],[[81168,69893],[-440,614]],[[60281,67021],[-495,286],[-103,170],[-664,30],[-284,123],[-535,74],[-333,432]],[[64783,38147],[255,-29]],[[70464,71500],[-750,-229],[-434,-536]],[[66717,78060],[2,-6]],[[82099,69212],[59,-241],[313,-203]],[[65558,50968],[80,1319],[99,507]],[[83411,60650],[53,-83]],[[42283,63606],[380,49]],[[72895,69013],[-531,325]],[[44515,64638],[-46,55],[-630,-58],[-263,-342],[-660,-640],[-253,2]],[[87831,39827],[18,-65]],[[75314,49946],[-11,43]],[[84538,44729],[-4,2]],[[93575,28116],[42,-278],[-92,-601]],[[40992,15783],[3,6]],[[88649,34720],[54,-372],[236,-53],[291,-444],[183,-56]],[[81239,85677],[3,0]],[[74302,46813],[-194,-67],[-573,70],[-1327,570],[-300,63]],[[73942,66371],[-266,-219]],[[79598,76376],[256,-9]],[[79695,42708],[107,-543],[-134,-21]],[[84798,43527],[322,-320]],[[73435,66602],[64,-134]],[[77526,54454],[136,105],[419,9],[563,-234],[532,-125]],[[68031,32377],[-283,254],[22,333]],[[81002,39648],[376,-205],[256,-3],[76,172],[509,23],[97,93],[843,232],[591,226],[395,362],[288,119],[241,-47]],[[86439,26690],[9,84]],[[86448,26774],[2,5]],[[86450,26779],[1,2]],[[86451,26781],[1,4]],[[86452,26785],[326,490],[36,896],[110,138],[-35,675],[195,831],[221,281],[196,46]],[[87501,30142],[47,294]],[[87548,30436],[-250,506],[193,404],[318,171]],[[87809,31517],[206,355],[41,325]],[[55283,77568],[-35,-370],[-260,-251]],[[73931,31973],[-562,237],[-44,88]],[[83474,57499],[-2,0]],[[72364,69338],[-335,105],[52,164]],[[86102,45219],[-154,-359],[-108,-543]],[[69280,70735],[2,2]],[[62370,84366],[-76,5]],[[70266,64062],[-3,9]],[[76324,69984],[4,8]],[[84845,59914],[140,-474],[132,-125]],[[62432,58721],[-70,39],[-483,-1377]],[[54988,76947],[381,-187]],[[83041,37552],[-105,216]],[[84591,95429],[11,93]],[[82131,64242],[-8,535]],[[79399,61456],[-70,233]],[[84477,97459],[40,440],[112,-31],[67,335]],[[88799,36278],[259,-346],[227,-753]],[[68536,45327],[155,632],[-225,59]],[[85904,40947],[-108,34]],[[85796,40981],[-325,1026]],[[83646,91208],[75,-223]],[[66291,39582],[8,-590],[-494,-259],[-53,-327]],[[61983,51806],[-243,30],[-96,282]],[[85020,45450],[18,216]],[[62579,45026],[516,-313]],[[89413,33795],[52,237]],[[79298,91234],[-10,-110]],[[61906,36152],[256,-106],[2,-349]],[[50760,50201],[46,-835]],[[83663,58237],[-133,-9]],[[82716,61734],[-71,-4]],[[59744,81727],[-76,87]],[[91546,32411],[131,-188],[-60,-353],[61,-493]],[[91678,31377],[240,-24]],[[91918,31353],[81,-25]],[[91999,31328],[3,-3]],[[78761,90159],[-2,-6]],[[82716,61734],[397,331]],[[86166,42898],[-3,4]],[[73659,68125],[-52,-116]],[[64034,49882],[-2,0]],[[79808,65321],[15,139]],[[84953,46238],[18,-206]],[[83242,44681],[8,6]],[[69138,51689],[-31,-531]],[[86439,26690],[5,15]],[[86444,26705],[9,58]],[[86453,26763],[331,232],[366,-133],[664,103],[215,153],[536,163]],[[88565,27281],[0,0]],[[88565,27281],[468,753]],[[65752,38406],[23,120],[302,-154]],[[76555,78708],[23,184]],[[86439,26690],[3,84]],[[81266,95788],[-28,-314]],[[61475,82522],[-111,224]],[[86013,63164],[-83,48]],[[62069,84656],[8,-32]],[[78602,76101],[230,210],[238,36],[256,-124],[272,153]],[[95394,19918],[16,-160]],[[44801,21479],[147,34]],[[50906,10813],[-8,-15]],[[50898,10798],[-109,-318]],[[50789,10480],[-955,-1173],[-581,-1306]],[[54549,16649],[-324,-51]],[[43783,50085],[-140,-83],[38,-333]],[[86368,40528],[-24,-26]],[[87938,52078],[130,233]],[[78224,68652],[57,-77]],[[87623,51733],[48,-110]],[[61683,61385],[5,-1]],[[42072,18559],[-80,-368],[-3,-877],[-298,-693],[-71,-13]],[[67262,53169],[1340,71],[248,73],[399,-117]],[[59667,82017],[33,-7]],[[93523,28829],[-361,-378],[-119,-310]],[[47092,54311],[280,-57],[388,78]],[[57365,80653],[18,-268],[-244,-546],[-66,-354]],[[71597,82094],[-108,-136],[-291,288]],[[73077,68060],[22,-297]],[[83557,57868],[0,-7]],[[89967,38439],[97,526]],[[55360,22779],[-104,417]],[[55256,23196],[-20,1]],[[88272,38732],[50,82]],[[89326,29315],[-92,-730],[-201,-551]],[[79410,61454],[-11,2]],[[83395,60303],[1,1]],[[76642,63014],[148,-282]],[[66561,80929],[391,-88],[267,822]],[[81141,87448],[3,37]],[[75853,78961],[-768,86],[-146,-105]],[[84538,44492],[-3,-327]],[[65455,69699],[-321,-119],[-355,254]],[[53901,17054],[98,-332],[226,-124]],[[57924,50250],[242,-410],[348,-277]],[[70022,64916],[-55,-100]],[[66287,80767],[127,146]],[[74463,65189],[299,-9]],[[47409,62622],[174,16]],[[71908,47449],[-113,101],[-511,51],[-226,-60],[-243,-257]],[[87849,41170],[5,14]],[[63862,35835],[-375,69],[9,163],[-918,86]],[[52335,11718],[0,-30]],[[85087,27688],[-91,334]],[[76219,64993],[278,-392]],[[76535,44043],[56,20]],[[41149,16652],[-22,21]],[[80453,91072],[-2,3]],[[79398,59281],[5,-6]],[[90052,34334],[-25,-476]],[[87214,51770],[26,441]],[[84315,93013],[136,386]],[[86559,52963],[20,-26]],[[84577,58066],[26,56]],[[62697,84626],[6,-1]],[[90018,33392],[-80,-621]],[[88735,38587],[-144,175]],[[73045,32387],[-19,-234],[-202,44],[-72,-607],[-168,-184],[-386,99],[-4,251]],[[63924,36580],[0,4]],[[94553,20387],[-415,1277]],[[60751,66993],[-408,20]],[[84877,44327],[72,76]],[[85997,62660],[0,1]],[[71668,72311],[563,432]],[[63959,31451],[-509,48],[-30,-651],[131,-574],[-57,-833]],[[64687,39856],[-17,-407],[589,-95],[-29,-455]],[[83392,57182],[27,102]],[[58332,48041],[-2,-1]],[[79423,91968],[-53,15]],[[79370,91983],[-59,9]],[[63706,70948],[1,25]],[[80120,29539],[1,1]],[[81129,44371],[242,-55]],[[83734,57306],[-60,-89]],[[85779,62746],[51,-12]],[[79095,91002],[130,-31],[127,-400]],[[65166,38908],[1,0]],[[84643,35302],[-64,5]],[[79890,29034],[-30,-64]],[[86094,62698],[-127,-196]],[[66201,53778],[328,451],[515,192]],[[86166,42898],[12,13]],[[89418,36298],[-179,577]],[[86166,42898],[-27,-103]],[[74262,66832],[-94,-124]],[[81691,61183],[340,166]],[[62470,58711],[-5,2]],[[84737,36120],[254,-451]],[[92151,31354],[-233,-1]],[[91918,31353],[-240,24]],[[91678,31377],[11,160]],[[82980,56509],[-527,331],[-109,165],[-575,157],[-162,143]],[[41320,17490],[-25,14]],[[86006,45953],[187,-557]],[[86714,45728],[-4,11]],[[72097,69619],[6,-38]],[[58332,48039],[-2,1]],[[77477,37568],[-2,1]],[[64677,27486],[-373,-44],[-627,53],[-205,-427],[-172,240],[-39,274]],[[51799,48530],[64,-13],[35,-728]],[[49062,28324],[0,3]],[[78647,90047],[112,106]],[[77477,37568],[15,-111]],[[56204,39101],[-877,-1],[-458,-226],[-358,57]],[[60382,75637],[-46,838],[-155,263]],[[71986,64482],[-23,-22]],[[84318,97152],[54,-242]],[[87812,52073],[-93,63]],[[64493,33423],[-5,2]],[[68284,43677],[201,3]],[[80232,72011],[-11,16]],[[71892,29047],[-52,18]],[[79518,84571],[9,275]],[[60549,83874],[-14,-21]],[[89603,35352],[0,4]],[[85217,49513],[-85,-299]],[[81107,87131],[-4,391]],[[89703,35358],[-100,-2]],[[83999,92588],[-99,-456]],[[73561,69015],[7,30]],[[75829,62696],[-177,-173]],[[78236,40153],[-146,-272]],[[80281,80142],[83,-1]],[[80364,80141],[3,0]],[[74318,65943],[-111,408]],[[93277,25125],[307,-332],[130,167],[403,-180]],[[71495,46676],[-421,267],[-161,215]],[[68305,59790],[197,-403],[38,-264]],[[60684,82661],[0,-1029]],[[80152,61421],[-42,-331]],[[50569,61379],[-445,278],[-32,-187]],[[69815,74387],[-37,59]],[[84392,95817],[82,-542]],[[85893,62906],[6,-107]],[[85899,62799],[86,7]],[[73251,67161],[-32,9]],[[82002,69376],[199,143],[73,444]],[[90064,38965],[6,-4]],[[60703,49398],[382,320]],[[79280,89836],[66,422]],[[64783,38147],[21,84]],[[58070,82665],[-188,-583],[-96,-25]],[[86962,50491],[-46,-89]],[[62371,84421],[-1,-55]],[[72459,64738],[16,12]],[[84284,97343],[34,-191]],[[81429,63458],[4,-5]],[[47409,62622],[174,16]],[[76668,71996],[-120,127]],[[74661,67484],[-391,-136]],[[89603,35356],[-170,-110]],[[76279,46551],[-317,213]],[[72895,69013],[556,-458]],[[76081,37080],[186,-58]],[[81017,87971],[3,-3]],[[51494,31166],[5,-5]],[[88002,38056],[173,-158]],[[73818,67082],[80,-76]],[[87497,38532],[-148,-250]],[[87937,38565],[185,349]],[[71604,64483],[0,-1]],[[52224,49825],[-316,295],[-15,282]],[[93271,28772],[2,-3]],[[82031,61349],[-93,182],[47,386],[-41,487]],[[83980,57478],[8,-6]],[[41817,18336],[193,9],[41,221],[398,361],[341,518],[749,886],[378,517]],[[80041,72358],[4,10]],[[69981,50195],[-44,-751]],[[52336,11718],[-1,-30]],[[79470,60885],[3,-668]],[[83633,49681],[0,3]],[[87318,52483],[185,-294],[216,-53]],[[72866,67128],[75,115]],[[83115,58286],[-111,534]],[[84749,94876],[-280,-139]],[[67328,43068],[-1183,1554],[-296,157]],[[40724,17801],[11,-5]],[[78170,40974],[-221,-414],[-338,-422],[-874,-875]],[[49335,36447],[-314,284],[-10,284],[-446,-5],[-5,227],[-643,-11]],[[47917,37226],[-296,-7],[-62,171]],[[47559,37390],[-3,20]],[[79086,89430],[89,-102],[105,508]],[[85136,50001],[96,345]],[[66612,79970],[-39,42]],[[72239,35857],[393,-61]],[[76324,69984],[433,189],[252,224],[528,150]],[[84891,95607],[-25,98]],[[82097,36100],[949,724]],[[78414,61605],[-471,424],[-134,1]],[[79695,42708],[-53,-25]],[[72475,64750],[-2,-9]],[[47668,39985],[33,-12],[-14,1533],[329,9],[116,803],[371,28]],[[73965,66884],[-87,-151]],[[85053,44814],[18,-238]],[[78302,85914],[567,-148]],[[81886,39341],[3,-3]],[[78492,59011],[261,403],[556,591],[24,-54]],[[84790,44270],[-137,176]],[[74631,77110],[-44,85]],[[73854,68347],[-125,-227]],[[83286,58074],[-109,508],[73,375]],[[51095,43542],[7,11]],[[62578,36153],[-5,-5]],[[87439,51150],[-81,-185]],[[85883,64069],[8,-14]],[[75701,76537],[296,-306],[439,-90]],[[85625,43028],[-94,-46]],[[73225,65737],[153,576]],[[85784,46340],[-23,8]],[[55446,83159],[6,319],[232,317]],[[78224,68652],[106,152]],[[93511,28467],[-247,306]],[[89050,35344],[-148,-152],[-251,203],[-362,72],[-390,-142]],[[83750,90839],[369,2]],[[60262,83523],[-74,-263]],[[81363,83419],[43,195]],[[90052,34334],[-25,-476]],[[69280,70735],[144,48],[365,-206],[466,-75],[461,-406],[552,-203],[630,-394]],[[48989,42314],[135,-34],[361,-568],[19,-651],[124,-38]],[[86211,39642],[158,-176],[50,-343],[-139,-136]],[[87909,34637],[-53,93]],[[72866,34130],[-20,13]],[[86292,54318],[-387,-169]],[[83386,49066],[-9,8]],[[85769,53785],[-298,276]],[[49866,51765],[1,9]],[[83666,56999],[-134,-275]],[[80043,60247],[-298,-208]],[[48947,55303],[-32,195]],[[88918,37905],[40,-132]],[[85071,44576],[2,-126]],[[89108,35190],[-58,154]],[[80600,90152],[306,-382],[-29,-292]],[[84358,35490],[285,-188]],[[84643,35302],[-17,58]],[[48915,55498],[272,116]],[[50771,52475],[-189,93]],[[52562,52126],[-170,55],[-1078,11],[-543,283]],[[80775,29932],[-336,20]],[[67315,35063],[25,12]],[[60372,85871],[-91,1]],[[62317,84529],[-20,-4]],[[62354,84595],[0,-4]],[[62393,84547],[-38,49]],[[62359,84606],[65,-53]],[[62359,84606],[-4,-10]],[[62297,84525],[-24,-66]],[[62355,84596],[-3,-1]],[[62331,84630],[28,-24]],[[62543,84437],[6,20]],[[62537,84380],[1,13]],[[67340,35075],[-25,967],[-181,412],[-176,30]],[[62424,84550],[119,-113]],[[62543,84437],[0,-5]],[[67298,35588],[42,-513]],[[67340,35075],[-25,-12]],[[79404,90209],[-58,49]],[[81074,94389],[21,-125]],[[78647,90047],[-24,-22]],[[79671,84979],[-8,-10]],[[80556,94526],[209,-283]],[[81180,94871],[1,-1]],[[81112,94378],[-38,11]],[[81118,94479],[-44,-90]],[[81141,87173],[-17,117]],[[81301,85551],[44,-24]],[[81301,85552],[44,-25]],[[53372,37275],[28,741],[392,-14],[-6,298],[158,712]],[[63776,79234],[331,-251],[17,-403],[125,-264],[-24,-744]],[[66493,50227],[101,-4],[400,-1181],[9,-410],[205,-346],[227,-776],[-20,-320],[392,-817],[-1,-153],[303,-272],[303,-588]],[[68714,44825],[89,-60]],[[72570,35400],[-105,-453]],[[72464,34949],[111,454]],[[72575,35403],[-5,-3]],[[72569,35400],[1,0]],[[73970,31995],[-67,-29],[-872,259],[14,162]],[[83419,57284],[-3,1]],[[93627,26124],[-23,-147],[-425,-589],[98,-263]],[[89580,36135],[-20,-40]],[[79535,64207],[58,-323],[231,-424],[-86,-547]],[[81142,63652],[-221,-625],[-203,-395]],[[79738,62913],[157,-93],[238,145],[334,-68],[251,-265]],[[83024,91550],[510,-125]],[[83534,91425],[112,-217]],[[83419,89992],[202,311],[26,277]],[[83412,89878],[7,114]],[[68197,81851],[-292,-206],[-146,45]],[[68197,81851],[-189,-189]],[[68295,81854],[-98,-3]],[[68228,81857],[-31,-6]],[[79806,64815],[401,-402],[223,-121]],[[79806,64815],[-61,122],[-531,-418]],[[79083,64839],[107,-291]],[[79083,64839],[-8,-112]],[[79083,64839],[247,-210],[415,311],[-35,113]],[[51894,69348],[284,286],[430,812],[35,546],[346,-50],[683,332]],[[79803,65801],[20,-341]],[[79803,65801],[-51,-315],[-262,-113],[-82,-281],[-259,-168],[41,-376]],[[84551,44051],[36,-5]],[[84518,44157],[1,-7]],[[84599,44157],[-80,-7]],[[84512,44104],[7,46]],[[84535,44165],[-16,-15]],[[84587,44046],[12,111]],[[87346,50929],[12,36]],[[87157,50714],[135,-250]],[[87014,50544],[-224,-247]],[[86877,50808],[137,-264]],[[87014,50544],[196,110]],[[87014,50544],[-52,-53]],[[87157,50714],[-143,-170]],[[87250,50727],[96,202]],[[87195,50230],[105,42]],[[87346,50929],[-21,-189],[-311,-196]],[[61822,75685],[34,-10]],[[62668,44711],[548,-1772]],[[62577,45025],[91,-314]],[[83683,57281],[6,-2]],[[83736,56829],[63,17]],[[82463,66172],[20,-712]],[[52772,29906],[-703,665]],[[52069,30571],[-54,57]],[[39826,18256],[379,-101],[1597,144]],[[38697,18135],[1129,121]],[[37042,20562],[27,-95],[677,-169],[168,-695],[120,14],[136,-295],[-44,-546]],[[81044,65059],[-304,-956]],[[83167,65778],[199,-82],[459,-490],[5,-393],[398,-190]],[[54546,55452],[-261,513],[-256,220],[-846,-1]],[[84226,65220],[2,-597]],[[84226,65220],[-3,-223]],[[83839,65582],[198,-175]],[[83487,67230],[-158,-130],[-481,508],[-345,86],[-233,227]],[[83487,67230],[-303,471],[-241,620],[-313,457]],[[83487,67230],[-113,-8],[-196,-836],[-11,-608]],[[83643,66580],[-197,390],[41,260]],[[83643,66580],[63,-656],[133,-342]],[[62687,84689],[7,0]],[[62694,84689],[-6,-35]],[[83411,60650],[-2,0]],[[83170,60924],[241,-274]],[[73327,67880],[0,1]],[[73334,67886],[-7,-5]],[[73334,67886],[-7,-6]],[[73329,67844],[-2,36]],[[83699,62135],[-160,517],[-482,591]],[[83699,62135],[212,211],[577,57],[775,313],[366,1109],[246,185]],[[83435,59938],[-103,89]],[[83172,60924],[368,-300]],[[82079,61575],[372,-66],[467,-347],[209,-386],[43,148]],[[83359,60099],[11,-1]],[[84695,61240],[174,228],[179,512]],[[85875,64010],[-68,-633],[118,-161]],[[82842,90032],[-95,-90],[-176,-564],[-117,-900],[2,-404],[-146,-623]],[[82310,87451],[-21,-224]],[[82289,87227],[20,226]],[[82309,87453],[146,621],[-2,404],[117,900],[177,566],[95,88]],[[64269,39007],[0,-10]],[[75701,76537],[-255,204],[-938,158]],[[74587,77195],[-79,-296]],[[59683,81866],[-54,-301]],[[89737,35344],[-31,8]],[[87010,60225],[-188,370],[-173,-84]],[[87064,60034],[-54,191]],[[87010,60225],[2,0]],[[87509,59659],[-193,-99],[-252,474]],[[85324,46780],[-1,2]],[[49165,26545],[-835,-20],[-142,-121]],[[75320,49910],[0,-2]],[[75314,49946],[6,-36]],[[75314,49946],[7,-43]],[[49335,36447],[-22,17]],[[84315,43038],[44,-150]],[[84359,42888],[7,-4]],[[84315,43038],[6,7]],[[84321,43045],[162,225]],[[79595,81246],[1,-1]],[[85236,58985],[46,-111]],[[77061,76017],[-2,-573],[197,-216]],[[60498,61880],[-410,97],[-69,175],[-519,154],[-512,36]],[[58234,29736],[-22,-460],[-378,89],[-539,-542],[-185,-355],[-303,427],[-746,142],[-254,-195]],[[89382,36087],[178,8]],[[46199,67561],[1216,773],[91,224]],[[69903,43613],[434,1337],[276,1484],[78,596],[129,260]],[[62703,84165],[-165,228]],[[85282,58874],[497,140],[184,-101]],[[59853,71473],[187,216],[691,1024],[264,540],[443,1707]],[[49187,55614],[851,308],[1494,6],[153,336]],[[83380,56287],[-335,-908],[-117,-39]],[[68249,37225],[106,-688],[-66,-1419]],[[80946,72239],[-201,-99],[-61,-633],[-130,-277]],[[83172,60924],[-630,548],[-463,103]],[[80704,39224],[440,-724],[173,-423],[423,-737],[84,-327],[272,-402],[388,-908],[496,-535],[328,-162],[513,-1241],[215,-763]],[[62538,84393],[5,39]],[[64922,46416],[-294,-182],[-706,122],[-33,-169],[-273,-140],[-305,47],[-90,-126]],[[85057,58570],[225,304]],[[89560,36095],[19,-98]],[[87292,50464],[8,-192]],[[80548,71232],[6,-2]],[[80554,71230],[-36,-345],[168,-489]],[[83170,60924],[2,0]],[[82842,90032],[60,271],[247,-49],[281,231],[88,546],[104,1075],[-58,24]],[[83750,90839],[-281,32],[-39,-388],[-281,-231],[-246,50],[-61,-270]],[[77256,75228],[345,-436]],[[69672,42920],[231,693]],[[69903,43613],[314,-101]],[[38619,23247],[3,0]],[[38619,23247],[-13,300],[146,310],[-46,1093],[-54,287]],[[57871,68138],[-244,49],[-4,-706],[56,-88]],[[57871,68138],[-4,-2]],[[47814,58180],[-106,-89]],[[47939,59641],[31,-492],[-142,-348],[-14,-621]],[[44605,61570],[180,336],[412,42],[158,139],[663,154],[297,7],[160,199]],[[46475,62447],[33,-2377]],[[48431,68072],[-167,103],[-613,122],[-145,261]],[[48431,68072],[265,-159],[425,-598],[333,-326],[576,-203],[114,-201]],[[42758,63366],[-255,-13],[-7,228],[-213,25]],[[42283,63606],[227,-535]],[[44605,61570],[180,336],[412,42],[158,139],[663,154],[297,7],[160,199]],[[46759,62817],[-284,-370]],[[46466,63303],[9,-856]],[[46466,63303],[9,-856]],[[45256,56221],[-558,-211],[-984,-934],[-98,110],[-725,-40],[-327,244]],[[45256,56221],[-558,-211],[-984,-934],[-98,110],[-725,-39],[-327,243]],[[45256,56221],[7,-72],[819,2],[709,-437],[13,-1092]],[[45256,56221],[7,-71],[819,1],[709,-437],[13,-1092]],[[46771,56124],[28,-1510],[293,-303]],[[46804,54622],[288,-311]],[[46804,54622],[288,-311]],[[46804,54622],[-457,2],[1,381],[-236,105],[-1057,-54]],[[46760,57956],[11,-1832]],[[46771,56124],[-661,-31],[-210,-169]],[[45900,55924],[-381,11]],[[52524,50407],[-761,-21],[-253,-109],[-437,30],[-313,-106]],[[84323,96820],[41,-10]],[[84364,96810],[66,-38]],[[60966,50619],[-45,135],[342,348]],[[61263,51102],[142,-58]],[[84474,96860],[-44,-88]],[[84430,96772],[34,-9]],[[83414,60253],[-17,14]],[[83395,60303],[2,-36]],[[89402,54615],[-81,-213]],[[84780,57026],[-13,-73]],[[84767,56953],[-275,110]],[[82689,54842],[6,-6]],[[82682,54845],[7,-3]],[[82721,54841],[3,-4]],[[62709,81310],[-330,-325],[-21,-498],[-834,-1282],[-455,-652]],[[81077,68417],[-548,-1066]],[[80333,71951],[198,52]],[[81263,65378],[7,-39]],[[81270,65339],[14,-5]],[[64687,75653],[101,-21],[59,-509]],[[61069,78553],[47,-475],[400,-2605],[88,-66]],[[61781,65039],[172,269]],[[81447,61192],[-2,1]],[[81447,61194],[-2,-1]],[[79041,57055],[-20,-828],[-133,-683],[175,-953],[113,-382]],[[86891,55383],[-59,-3]],[[86887,55174],[160,285]],[[86832,55380],[-146,633],[59,172]],[[86887,55174],[-55,206]],[[63626,21898],[33,-175],[486,-390],[214,-541]],[[86745,56185],[-60,-171],[165,-709],[-30,-302],[-227,-453]],[[86593,54550],[294,624]],[[68669,44208],[45,617]],[[86059,39926],[119,-127]],[[86178,39799],[2,11]],[[84492,57063],[-161,146]],[[78155,58418],[-6,50]],[[78492,59011],[-168,-164],[-169,-429]],[[79041,57055],[140,870],[111,1521],[215,504]],[[87601,54997],[35,538]],[[78020,61098],[141,-317],[237,-246],[322,-93],[787,-492]],[[83405,60154],[63,-102]],[[83170,60924],[212,-429],[-23,-396]],[[83359,60099],[-27,-72]],[[83405,60154],[-73,-127]],[[83761,60075],[-181,-112]],[[83334,59297],[58,492]],[[83392,59789],[43,149]],[[83392,59789],[0,1]],[[88388,53229],[45,192]],[[90026,56155],[46,867]],[[83397,60267],[8,-113]],[[83540,60624],[83,-195]],[[83623,60429],[-157,327],[-723,578],[-292,176],[-279,-228]],[[89573,54902],[-91,-196]],[[89482,54706],[-80,-91]],[[89754,55327],[147,289],[125,539]],[[89573,54902],[181,425]],[[85142,56795],[-375,158]],[[83909,57362],[77,-89]],[[83841,57362],[68,0]],[[83909,57362],[0,-1]],[[84036,33002],[303,-933],[-46,-338]],[[84293,31731],[-5,3]],[[86893,53991],[169,22]],[[85057,58570],[-54,-217],[-400,-231]],[[85963,58913],[285,-151],[79,-527]],[[80005,65727],[-137,-28]],[[89745,35339],[-8,5]],[[89233,36578],[6,297]],[[88277,38051],[-1,-1]],[[88591,38453],[-7,10]],[[76196,59868],[31,-574],[139,-295],[259,-273]],[[83082,48395],[69,46]],[[86410,61358],[-53,-200],[180,-467]],[[86254,62109],[156,-750]],[[86410,61359],[0,-1]],[[86410,61359],[3,0]],[[86410,61358],[3,1]],[[79704,81065],[-1,-4]],[[86851,59691],[-30,238],[-237,470]],[[86584,60399],[58,85]],[[88191,53788],[242,-367]],[[87601,54994],[188,-703]],[[82689,54842],[33,-9]],[[82920,55300],[8,40]],[[82928,55340],[-246,-495]],[[84001,55149],[-140,-146],[-776,-249]],[[86395,58142],[138,-606]],[[82682,54845],[39,-4]],[[82721,54841],[1,-8]],[[86533,57536],[-27,-313],[-157,-55]],[[86533,57536],[-1,0]],[[68289,35118],[-13,-455],[252,-262]],[[79507,59950],[225,-275],[326,-1072]],[[63676,28106],[439,-40]],[[63261,27582],[-74,-928],[229,-74],[-175,-720],[203,-154]],[[62387,34739],[-114,181]],[[76378,60510],[-196,897]],[[76182,61407],[196,-897]],[[82073,61584],[-458,143],[-665,-131],[-440,191],[-578,79],[-490,-268],[-116,82]],[[79326,61680],[3,9]],[[83666,56999],[28,167]],[[83694,57166],[2,-1]],[[83694,57166],[40,140]],[[45384,66845],[518,552],[297,164]],[[43436,60010],[-104,476]],[[83530,58228],[-244,-154]],[[84181,57209],[66,-460],[436,-994],[314,-1161],[353,-2042],[223,-1013]],[[78003,68177],[-208,-16]],[[53359,36230],[13,1045]],[[87749,40100],[33,-120]],[[84603,58122],[454,448]],[[85117,59315],[-60,-745]],[[76625,58726],[-76,-773],[-307,-883],[-655,-619],[112,-247]],[[76625,58726],[-76,-773],[-307,-883],[-655,-619],[112,-247]],[[38126,18776],[38,-716]],[[53183,56184],[-524,-49]],[[85925,63216],[5,-4]],[[85925,63216],[0,-1]],[[59667,82017],[16,-151]],[[78616,66357],[7,595],[-117,580]],[[63148,45171],[-53,-458]],[[63095,44713],[34,-25]],[[82173,68700],[8,386],[-179,290]],[[78658,61221],[-244,384]],[[81073,68957],[-366,2],[-619,-667],[52,-295]],[[81168,65390],[102,-51]],[[81429,63458],[336,-86],[271,-433]],[[81455,63515],[-26,-57]],[[82292,64025],[9,-101],[-731,-44],[-174,-174],[33,-248]],[[82957,63433],[93,432]],[[82002,69376],[-110,-72],[-143,316],[-161,19],[-180,281],[-237,-43],[-431,593],[-54,-74]],[[81284,65334],[126,-1021]],[[81410,64313],[102,-331],[-83,-524]],[[81410,64313],[-5,6]],[[82042,68861],[-397,-240],[-552,-126],[-16,-78]],[[82042,68861],[-397,-239],[-552,-127],[-16,-78]],[[81077,68417],[-78,-153],[-126,-747],[-38,-689],[-77,-349],[7,-482]],[[81077,68417],[-4,540]],[[80140,67997],[285,-183],[167,-326],[-63,-137]],[[81219,67328],[-142,1089]],[[81077,68417],[-551,-1068]],[[80765,65997],[-13,316],[-210,508],[-13,530]],[[79214,64519],[-240,-352],[118,-401],[51,-1051],[186,-1026]],[[82292,64025],[-161,217]],[[82292,64025],[274,-448],[391,-144]],[[86282,40335],[0,1]],[[80531,72003],[116,-594],[-122,-537],[203,-365]],[[80529,72002],[1,-2]],[[80531,72003],[-2,-1]],[[80529,72002],[-1,7]],[[80728,70507],[-204,365],[122,537],[-117,605],[-196,-63]],[[86178,39799],[191,-333],[50,-343],[-139,-136]],[[84181,63167],[-101,164],[-360,101],[-670,433]],[[82525,62070],[191,-336]],[[82525,62070],[-203,414]],[[83094,63887],[-272,-246],[-418,-1065],[-65,-38]],[[78573,64852],[163,-75],[235,-605],[219,376]],[[75925,63317],[-465,583],[-350,1046],[-227,113],[-307,342],[-78,321],[-180,221]],[[75347,61561],[438,684],[54,432]],[[75839,62677],[-54,-432],[-438,-684]],[[80765,65997],[-738,-120],[-22,-150]],[[81187,65543],[144,20]],[[81961,67513],[26,-210],[203,-164],[59,-448],[223,-35],[-9,-484]],[[82463,66172],[-27,21]],[[81961,67513],[26,-210],[203,-164],[59,-448],[222,-36],[-8,-483]],[[83167,65778],[-704,394]],[[79329,61689],[136,-733],[42,-1006]],[[54610,24990],[-45,-267],[-270,-10]],[[54295,24713],[0,0]],[[54295,24713],[-115,-6]],[[79399,61456],[71,-571]],[[79399,61456],[71,-571]],[[75925,63317],[586,218],[437,95],[493,-104],[148,-157],[794,-557],[512,-492],[434,-631]],[[71471,62498],[209,-365],[359,-51]],[[72039,62082],[-76,-36],[162,-549],[-164,-574]],[[67590,61383],[411,48],[954,331],[174,717],[307,-52]],[[71961,60923],[59,-163],[642,-442],[290,-86],[250,-224],[250,-30],[-106,-430],[-225,-344],[30,-204],[268,-559],[277,63]],[[62188,63212],[299,106],[-151,714]],[[62336,64032],[488,-588],[529,-982]],[[65635,60273],[217,-461],[109,-794],[225,-280]],[[64359,20792],[70,-861],[-99,-158],[-24,-955],[109,-67]],[[93807,29875],[-284,-1046]],[[93807,29875],[-284,-1046]],[[54865,25097],[-254,89]],[[53588,24429],[123,136],[353,-126],[231,274]],[[54295,24713],[312,44],[3,233]],[[53588,24429],[123,135],[353,-126],[231,275]],[[54295,24713],[312,43],[3,234]],[[54050,27624],[132,-301],[6,-566]],[[54188,26757],[245,-57]],[[86059,39926],[121,-116]],[[86282,40335],[62,167]],[[87049,39414],[-133,306],[-144,635],[-428,147]],[[87049,39414],[300,-94]],[[87049,39414],[291,-93]],[[86180,39810],[31,-168]],[[87344,39319],[5,1]],[[87340,39321],[9,-1]],[[55801,30501],[4,-919]],[[87602,40687],[-168,-32],[76,-293],[239,-262]],[[50980,20657],[-96,115]],[[88107,42151],[-45,76]],[[41431,16322],[152,209],[334,197],[387,101],[100,334],[133,19],[768,685],[438,329],[90,168],[249,17],[61,269],[1191,820],[398,225],[706,614],[352,446],[803,105],[163,457],[364,207],[380,29],[234,653],[396,129],[614,1],[285,220],[441,714],[407,-29],[314,-174],[413,-6],[108,309],[22,453],[299,-2],[40,764],[93,214],[407,416],[488,95],[437,-24],[255,170]],[[53901,17054],[-209,-244],[-328,21],[-1113,-181]],[[54607,16127],[300,-43]],[[54225,16598],[94,-394],[288,-77]],[[54607,16127],[7,412]],[[50109,26531],[458,-9],[194,110]],[[50109,26531],[-944,14]],[[50761,26632],[-194,-110],[-458,9]],[[48188,26404],[143,121],[1778,6]],[[53459,29043],[125,-195],[326,-887]],[[53910,27961],[140,-337]],[[50482,31011],[-7,288],[-925,15],[-145,103],[-525,27]],[[55805,29582],[2,-740]],[[50884,20772],[-581,2]],[[50303,20774],[-379,42]],[[55267,24016],[-11,-819]],[[55256,23197],[0,-1]],[[55256,23196],[-38,-1119],[-105,-201],[25,-746],[-25,-1488],[-106,-1473],[82,-420]],[[55089,17749],[46,-285],[232,-550]],[[55367,16914],[118,-335]],[[74174,42033],[578,59],[1656,304],[70,225],[215,-2],[186,-174],[666,121],[419,189],[87,-71]],[[78051,42684],[-132,-366],[-19,-985],[-168,-689],[-367,-500],[-449,-435],[-314,-182]],[[77976,41949],[44,705]],[[77976,41949],[44,705]],[[78170,40974],[-211,757],[17,218]],[[73793,44788],[-137,1126],[-359,1219],[-43,794],[-121,670]],[[71802,37088],[-237,183]],[[75519,46294],[443,470]],[[71802,37088],[-10,-468],[207,-53]],[[71826,37584],[-34,-964],[207,-53]],[[72666,37411],[-840,173]],[[72339,37484],[-523,102],[-14,-498]],[[72666,37411],[-327,73]],[[73073,41867],[135,1162],[153,415],[650,1124],[648,619],[860,1107]],[[75613,48697],[-374,-296],[-339,-62],[-27,161]],[[75983,38500],[-51,-551],[-340,14]],[[75592,37963],[-153,19],[-260,-395]],[[76308,46600],[65,-57],[-50,-589],[27,-469],[101,-351],[45,-860]],[[76535,44043],[-83,1092],[-90,273],[-39,546],[51,589],[-66,57]],[[71842,43677],[-296,78]],[[76591,44063],[552,-183],[831,-992],[51,-233]],[[76535,44043],[181,13],[427,-176],[831,-992],[51,-233]],[[75734,42206],[323,322],[148,519],[41,596],[289,400]],[[78458,39377],[-515,-152],[-184,-342],[-406,-425],[-355,-243],[-208,-348]],[[77492,37457],[-37,168],[-436,222],[-195,14],[-38,-538],[-509,-61]],[[76790,37867],[229,-19],[436,-223],[40,302],[276,318],[116,284],[193,147],[184,453],[194,248]],[[73988,45397],[-169,-818],[134,-943],[244,-176]],[[74284,46826],[-808,1147]],[[74873,48500],[-118,-170],[-301,203],[-686,204],[-66,-277],[-135,11],[-176,459],[-429,-46],[-614,180],[-1167,83],[-704,199],[-243,-59],[-298,-228],[-99,-230]],[[74873,48500],[-131,-624],[-336,-652],[-127,-399]],[[71838,46084],[51,114]],[[79495,38424],[210,-55],[248,196],[428,188]],[[85062,32881],[404,101]],[[85466,32982],[317,62]],[[87937,36688],[-290,414]],[[84402,33678],[608,-728]],[[85010,32950],[52,-69]],[[81889,39338],[-170,212],[-464,-31]],[[87335,38277],[162,255]],[[87349,38282],[-14,-5]],[[87439,39527],[188,85]],[[87349,39320],[90,207]],[[88021,39393],[142,-204]],[[88021,39393],[-1,-1]],[[88003,39523],[18,-130]],[[87841,39352],[-214,260]],[[87850,39762],[-2,-9]],[[78816,35754],[-735,-1394],[-103,-52]],[[86737,33421],[536,-129]],[[87375,37338],[264,-287],[8,-466]],[[87085,37059],[143,230]],[[87217,36920],[-132,139]],[[86650,33394],[-277,578]],[[86373,33972],[2,4]],[[86393,34354],[-18,-378]],[[86393,34354],[-18,-378]],[[86138,34509],[229,-534]],[[86367,33975],[-229,534]],[[86373,33972],[-6,3]],[[87273,33292],[236,-75],[18,350]],[[86650,33394],[859,-177],[21,410],[378,1006],[741,87]],[[87527,33567],[382,1070]],[[79891,40857],[-88,1302],[-165,3]],[[79872,40689],[19,168]],[[73091,67513],[-41,-50]],[[73091,67513],[2,2]],[[86851,59691],[-1,-2]],[[86921,59271],[-70,420]],[[89702,35356],[4,-4]],[[89460,35550],[242,-194]],[[89382,36087],[-149,491]],[[88270,37730],[6,320]],[[88584,38463],[-111,198]],[[88276,38050],[-13,37]],[[79840,90297],[-181,-29]],[[78084,69805],[-547,742]],[[79843,90316],[-3,-19]],[[78198,69576],[-114,229]],[[71955,64465],[-38,44]],[[71917,64509],[-22,748]],[[71917,64509],[-2,0]],[[86327,58235],[68,-93]],[[86395,58142],[-1,-2]],[[79703,81061],[-308,-354],[12,-236]],[[37485,29084],[235,30],[182,-204],[183,2]],[[79473,60217],[-426,319],[-389,685]],[[55576,84282],[-9,-127]],[[55376,83820],[-633,77]],[[55567,84155],[-108,-76]],[[55459,84079],[-83,-259]],[[55671,83798],[-295,22]],[[68514,46107],[-48,-89]],[[89900,23554],[-201,-567],[-94,-698],[-172,-514]],[[38620,23241],[2,6]],[[38620,23241],[-1,6]]]} \ No newline at end of file diff --git a/frontend/public/usa.json b/frontend/public/usa.json index e13066ab..b7f038e1 100644 --- a/frontend/public/usa.json +++ b/frontend/public/usa.json @@ -1 +1 @@ -{"type":"Topology","bbox":[-57.66491068874468,12.97635452036684,973.4629348876791,606.5694262668667],"transform":{"scale":[0.010311381569579933,0.005935990077365771],"translate":[-57.66491068874468,12.97635452036684]},"objects":{"counties":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1,2,3,4,5,6,7]],"id":"04015"},{"type":"Polygon","arcs":[[8,9,10,11,12,13,14]],"id":"22105"},{"type":"Polygon","arcs":[[15,16,17,18,19]],"id":"16063"},{"type":"Polygon","arcs":[[20,21,22,23,24,25,26,27,28]],"id":"27119"},{"type":"Polygon","arcs":[[29,30,31,32,33,34,35]],"id":"38017"},{"type":"Polygon","arcs":[[36,37,38,39,40]],"id":"46081"},{"type":"Polygon","arcs":[[41,42,43,44,45,46]],"id":"36095"},{"type":"MultiPolygon","arcs":[[[47,48,49,50]],[[51]],[[52]]],"id":"02275"},{"type":"Polygon","arcs":[[53,54,55,56]],"id":"13143"},{"type":"Polygon","arcs":[[57,58,59,60,61]],"id":"13023"},{"type":"Polygon","arcs":[[62,63,64,65,66,67]],"id":"18093"},{"type":"Polygon","arcs":[[68,69,70,71,72,73]],"id":"18079"},{"type":"Polygon","arcs":[[74,75,76,77,78,79]],"id":"26087"},{"type":"Polygon","arcs":[[80,81,82,83,84,85]],"id":"28017"},{"type":"Polygon","arcs":[[86,87,88,89,90,91]],"id":"39033"},{"type":"Polygon","arcs":[[92,93,94,95,96,97,98]],"id":"46099"},{"type":"Polygon","arcs":[[99,-98,100,101,102,103]],"id":"46125"},{"type":"Polygon","arcs":[[104,105,106,107,108,109]],"id":"48471"},{"type":"Polygon","arcs":[[110,111,112,113]],"id":"72133"},{"type":"Polygon","arcs":[[114,115,116,117,118,119]],"id":"46003"},{"type":"Polygon","arcs":[[120,121,122,123,124,125,126]],"id":"48047"},{"type":"Polygon","arcs":[[127,128,129,130,131,132,133]],"id":"72025"},{"type":"Polygon","arcs":[[134,135,136,137,138]],"id":"72033"},{"type":"Polygon","arcs":[[139,140,141,142,143,144]],"id":"72101"},{"type":"Polygon","arcs":[[145,146,147,148,149]],"id":"31029"},{"type":"Polygon","arcs":[[150,151,152,153]],"id":"72054"},{"type":"Polygon","arcs":[[154,155,156,157,158,159]],"id":"08021"},{"type":"Polygon","arcs":[[160,161,162,163,164,165,166,167]],"id":"24043"},{"type":"Polygon","arcs":[[168,169,170,171,172,173]],"id":"20137"},{"type":"Polygon","arcs":[[174,175,176,177,178,179]],"id":"17053"},{"type":"Polygon","arcs":[[180,181,182,183,184,185]],"id":"48117"},{"type":"Polygon","arcs":[[186,187,188,189,190,191,192,193]],"id":"13261"},{"type":"Polygon","arcs":[[194,195,196,197,198,199]],"id":"55075"},{"type":"Polygon","arcs":[[200,201,202,203,204]],"id":"06069"},{"type":"Polygon","arcs":[[205,206,207,208,209,210,211]],"id":"13199"},{"type":"Polygon","arcs":[[212,213,214,215,216,217]],"id":"19013"},{"type":"Polygon","arcs":[[218,219,220,221]],"id":"19081"},{"type":"Polygon","arcs":[[222,-23]],"id":"27125"},{"type":"Polygon","arcs":[[223,224,225,226,227]],"id":"31125"},{"type":"Polygon","arcs":[[228,229,230,231]],"id":"42075"},{"type":"Polygon","arcs":[[232,233,234,235]],"id":"48219"},{"type":"Polygon","arcs":[[236,237,238,239,240,241]],"id":"48417"},{"type":"Polygon","arcs":[[242,243,244,245,246,247,248]],"id":"48451"},{"type":"Polygon","arcs":[[249,250,251,252,253,254]],"id":"48497"},{"type":"Polygon","arcs":[[255,256,257,-93,258,259]],"id":"46079"},{"type":"Polygon","arcs":[[260,261,262,263,264,265,266]],"id":"46069"},{"type":"Polygon","arcs":[[267,268,269,270,271,272]],"id":"48101"},{"type":"Polygon","arcs":[[273,274,275]],"id":"04023"},{"type":"Polygon","arcs":[[276,277,278,279,280]],"id":"19179"},{"type":"Polygon","arcs":[[281,282,283,284,285,286]],"id":"19031"},{"type":"Polygon","arcs":[[287,288,289,290,291,292,293]],"id":"30033"},{"type":"Polygon","arcs":[[294,295,296,297,298,299,300]],"id":"29185"},{"type":"Polygon","arcs":[[301,302,303,304,305]],"id":"12091"},{"type":"Polygon","arcs":[[306,307,308,309,310]],"id":"21219"},{"type":"Polygon","arcs":[[311,312,313,314,315]],"id":"23003"},{"type":"Polygon","arcs":[[316,317,318,-168,319,320,321,322]],"id":"24001"},{"type":"Polygon","arcs":[[323,324,325,326,327]],"id":"28075"},{"type":"Polygon","arcs":[[328,329,330,331,332,333]],"id":"38021"},{"type":"Polygon","arcs":[[334,335,336,337,338]],"id":"27093"},{"type":"Polygon","arcs":[[339,340,341,342]],"id":"46007"},{"type":"Polygon","arcs":[[343,344,345,346,347,348,349,350]],"id":"49043"},{"type":"Polygon","arcs":[[351,352,353,354,355,356]],"id":"36099"},{"type":"Polygon","arcs":[[357,358,359,360,361,362,363]],"id":"20073"},{"type":"Polygon","arcs":[[364,365,366,367]],"id":"20101"},{"type":"Polygon","arcs":[[368,369,370,371,372,373]],"id":"26123"},{"type":"Polygon","arcs":[[374,375,376,377,378,379]],"id":"31035"},{"type":"Polygon","arcs":[[380,381,382,383]],"id":"36073"},{"type":"Polygon","arcs":[[384,385,386,387,388,389,390]],"id":"38063"},{"type":"Polygon","arcs":[[391,392,393,394,395,396]],"id":"40011"},{"type":"Polygon","arcs":[[397,398,399,400,401]],"id":"48441"},{"type":"Polygon","arcs":[[402,403,404,405,406]],"id":"48011"},{"type":"Polygon","arcs":[[407,408,409,410]],"id":"48233"},{"type":"Polygon","arcs":[[-248,411,412,413]],"id":"48235"},{"type":"Polygon","arcs":[[414,415,416,417,418,419]],"id":"55137"},{"type":"Polygon","arcs":[[420,421,422,423,424,425,426]],"id":"47151"},{"type":"Polygon","arcs":[[427,428,429,430,431]],"id":"55113"},{"type":"Polygon","arcs":[[432,433,434,435,436]],"id":"26073"},{"type":"Polygon","arcs":[[437,438,439,440,441,442]],"id":"28131"},{"type":"Polygon","arcs":[[443,444,-86,445,446,447]],"id":"28013"},{"type":"Polygon","arcs":[[448,449,450,451,452]],"id":"31171"},{"type":"Polygon","arcs":[[453,454,455,456,457,458]],"id":"48335"},{"type":"Polygon","arcs":[[459,460,461,462,463]],"id":"08057"},{"type":"Polygon","arcs":[[464,465,466,467,468]],"id":"19089"},{"type":"Polygon","arcs":[[469,470,471,472,-75]],"id":"26151"},{"type":"Polygon","arcs":[[473,474,475,476,477,478,479]],"id":"18075"},{"type":"Polygon","arcs":[[480,481,482,483,484]],"id":"38075"},{"type":"Polygon","arcs":[[485,486,487,488,489]],"id":"41021"},{"type":"Polygon","arcs":[[490,491,492,493,494]],"id":"29119"},{"type":"Polygon","arcs":[[495,496,497,498]],"id":"48501"},{"type":"Polygon","arcs":[[499,500,501,-269,502]],"id":"48075"},{"type":"Polygon","arcs":[[503,504,505,506]],"id":"13097"},{"type":"Polygon","arcs":[[507,508,509,510]],"id":"02158"},{"type":"Polygon","arcs":[[511,512,513,514,515]],"id":"19181"},{"type":"Polygon","arcs":[[516,517,518,519,520,521]],"id":"40031"},{"type":"Polygon","arcs":[[522,523,524,525,526,527,528,529]],"id":"40009"},{"type":"Polygon","arcs":[[-264,530,531,532,533]],"id":"46017"},{"type":"Polygon","arcs":[[534,535,536,537,538,539]],"id":"48171"},{"type":"Polygon","arcs":[[540,541,542,543]],"id":"48125"},{"type":"Polygon","arcs":[[544,545,546,547,548]],"id":"48283"},{"type":"Polygon","arcs":[[549,550,551,552]],"id":"54093"},{"type":"Polygon","arcs":[[553,554,555,556,557,558]],"id":"06089"},{"type":"Polygon","arcs":[[559,560,561,562,563,564]],"id":"17165"},{"type":"Polygon","arcs":[[565,566,567,568,569]],"id":"26101"},{"type":"Polygon","arcs":[[570,571,572,573,574]],"id":"31071"},{"type":"Polygon","arcs":[[575,576,-574,577,578,579,580,581,582]],"id":"31041"},{"type":"Polygon","arcs":[[583,-260,584,585,586]],"id":"46097"},{"type":"Polygon","arcs":[[587,588,589,590,591,592]],"id":"46025"},{"type":"Polygon","arcs":[[593,594,595,596,597]],"id":"05037"},{"type":"Polygon","arcs":[[598,599,600,-160,601,602,603]],"id":"08007"},{"type":"Polygon","arcs":[[604,605,606,607]],"id":"12043"},{"type":"Polygon","arcs":[[608,609,610,611,612]],"id":"46053"},{"type":"Polygon","arcs":[[613,614,615,-408,616]],"id":"48195"},{"type":"MultiPolygon","arcs":[[[617,618,619,620,621]],[[622,623,624]]],"id":"53053"},{"type":"Polygon","arcs":[[625,626,627,-206,628,629,630]],"id":"13077"},{"type":"Polygon","arcs":[[631,632,633,634]],"id":"13059"},{"type":"Polygon","arcs":[[635,636,637,638,639]],"id":"18081"},{"type":"Polygon","arcs":[[640,641,642,643,644,645]],"id":"20115"},{"type":"Polygon","arcs":[[646,647,648,649,650]],"id":"27059"},{"type":"Polygon","arcs":[[651,652,653,654,655,656]],"id":"31003"},{"type":"Polygon","arcs":[[657,658,659,660,661]],"id":"39103"},{"type":"Polygon","arcs":[[662,663,664,665,666,667]],"id":"47153"},{"type":"Polygon","arcs":[[668,669,670,671]],"id":"48375"},{"type":"Polygon","arcs":[[672,673,674,675,676]],"id":"48145"},{"type":"Polygon","arcs":[[-388,677,678,679,680,681]],"id":"38039"},{"type":"Polygon","arcs":[[-118,682,683,684]],"id":"46043"},{"type":"Polygon","arcs":[[685,686,687,688,689,690]],"id":"48193"},{"type":"Polygon","arcs":[[691,692,693,694,695]],"id":"19185"},{"type":"Polygon","arcs":[[696,697,698,699,700,701,702]],"id":"38087"},{"type":"Polygon","arcs":[[703,-401,704,705,-245,706]],"id":"48399"},{"type":"Polygon","arcs":[[707,708,709,710,711,-4]],"id":"04005"},{"type":"Polygon","arcs":[[712,713,714,715,716]],"id":"16009"},{"type":"Polygon","arcs":[[717,718,719,720,721,722,723]],"id":"20007"},{"type":"Polygon","arcs":[[724,725,726,727,-95]],"id":"27133"},{"type":"Polygon","arcs":[[728,-312,729,730]],"id":"23029"},{"type":"Polygon","arcs":[[731,732,733,734,735]],"id":"30051"},{"type":"Polygon","arcs":[[736,737,738,739]],"id":"46091"},{"type":"Polygon","arcs":[[740,741,-352,742,743]],"id":"36117"},{"type":"Polygon","arcs":[[744,745]],"id":"02060"},{"type":"Polygon","arcs":[[746,747,748,749,750]],"id":"12027"},{"type":"Polygon","arcs":[[751,752,753,754,755,756]],"id":"13015"},{"type":"Polygon","arcs":[[757,758,759,760,761]],"id":"19127"},{"type":"Polygon","arcs":[[762,763,764,765,766,767]],"id":"20047"},{"type":"Polygon","arcs":[[768,769,770,771,772]],"id":"26129"},{"type":"Polygon","arcs":[[773,-227,774,775,776,777]],"id":"31093"},{"type":"Polygon","arcs":[[778,779,780,781,782,783]],"id":"39063"},{"type":"Polygon","arcs":[[784,785,786,787,788,789,790]],"id":"21209"},{"type":"Polygon","arcs":[[791,792,793,794,-665]],"id":"47007"},{"type":"Polygon","arcs":[[795,796,797,798,799,800]],"id":"37157"},{"type":"Polygon","arcs":[[801,802,803,804,805]],"id":"48189"},{"type":"Polygon","arcs":[[806]],"id":"51820"},{"type":"Polygon","arcs":[[807,808,809,810,811]],"id":"56025"},{"type":"Polygon","arcs":[[-107,812,813,814,815]],"id":"48407"},{"type":"Polygon","arcs":[[816,817,818,-416,819]],"id":"55135"},{"type":"Polygon","arcs":[[820,821,822,823,824]],"id":"39067"},{"type":"Polygon","arcs":[[825,826,827,828,829,830,831]],"id":"13087"},{"type":"Polygon","arcs":[[832,833,834,835,836]],"id":"22001"},{"type":"Polygon","arcs":[[837,838,839,840,841]],"id":"27019"},{"type":"Polygon","arcs":[[842,843,844,845,-561,846]],"id":"17065"},{"type":"Polygon","arcs":[[847,848,-339,849,850,851]],"id":"27067"},{"type":"Polygon","arcs":[[852,853,854,855,856]],"id":"55071"},{"type":"Polygon","arcs":[[857,858,859,860,861,862]],"id":"01013"},{"type":"Polygon","arcs":[[863,864,865,866,867,868,869]],"id":"13169"},{"type":"Polygon","arcs":[[870,871,872,873]],"id":"19069"},{"type":"Polygon","arcs":[[874,875,876,877,878,879]],"id":"18113"},{"type":"Polygon","arcs":[[880,881,882,883,884,885]],"id":"20193"},{"type":"Polygon","arcs":[[886,887,888,-433,889]],"id":"26035"},{"type":"Polygon","arcs":[[890,891,892,893]],"id":"26039"},{"type":"Polygon","arcs":[[894,895,896,897,898,899]],"id":"29225"},{"type":"Polygon","arcs":[[900,901,902,903,904]],"id":"31005"},{"type":"Polygon","arcs":[[905,906,907,908,909]],"id":"31143"},{"type":"Polygon","arcs":[[910,911,912,913,-589]],"id":"46029"},{"type":"Polygon","arcs":[[914,915,916,-121,917,918]],"id":"48131"},{"type":"Polygon","arcs":[[919,-411,920,-669,921,922]],"id":"48341"},{"type":"Polygon","arcs":[[923,924,925,926,927,928]],"id":"48317"},{"type":"Polygon","arcs":[[929,930,931,932,933,934,935]],"id":"39083"},{"type":"Polygon","arcs":[[936,937,938,939,940]],"id":"72073"},{"type":"Polygon","arcs":[[941,942,943,944,945,-674,946]],"id":"48293"},{"type":"Polygon","arcs":[[947,948,949,950,951]],"id":"19055"},{"type":"Polygon","arcs":[[952,953,954,955]],"id":"31159"},{"type":"Polygon","arcs":[[956,957,958,959]],"id":"48507"},{"type":"Polygon","arcs":[[960,961,962,963,964]],"id":"06091"},{"type":"Polygon","arcs":[[965,966,967,968,969]],"id":"17201"},{"type":"Polygon","arcs":[[970,971,972,973,974,975]],"id":"23031"},{"type":"Polygon","arcs":[[976,977,978,979,980]],"id":"24011"},{"type":"Polygon","arcs":[[981,982,983,984,985]],"id":"26119"},{"type":"Polygon","arcs":[[-34,986,987,988,989,990,991]],"id":"38077"},{"type":"Polygon","arcs":[[992,993,994,995,996,997]],"id":"42007"},{"type":"Polygon","arcs":[[998,999,1000,-236,-496]],"id":"48079"},{"type":"Polygon","arcs":[[1001,-772,1002,1003,1004,-889]],"id":"26051"},{"type":"Polygon","arcs":[[1005,1006,1007,1008,1009,1010,1011]],"id":"08121"},{"type":"Polygon","arcs":[[1012,-952,1013,1014,-214]],"id":"19019"},{"type":"Polygon","arcs":[[1015,1016,1017,1018,1019,1020,1021]],"id":"19187"},{"type":"Polygon","arcs":[[1022,-768,1023,1024,1025,1026]],"id":"20057"},{"type":"Polygon","arcs":[[-985,1027,1028,-769,-892]],"id":"26135"},{"type":"Polygon","arcs":[[1029,1030,1031,1032]],"id":"28099"},{"type":"Polygon","arcs":[[1033,1034,1035,1036,1037,1038]],"id":"31137"},{"type":"Polygon","arcs":[[1039,1040,1041,1042,1043,1044]],"id":"31039"},{"type":"Polygon","arcs":[[1045,1046,1047,1048,1049,1050,1051]],"id":"45045"},{"type":"Polygon","arcs":[[1052,1053,1054,1055,1056]],"id":"48151"},{"type":"Polygon","arcs":[[1057,1058,1059,1060,1061]],"id":"37069"},{"type":"Polygon","arcs":[[1062,1063,1064,1065,1066,1067]],"id":"39039"},{"type":"Polygon","arcs":[[1068,1069,1070,1071,1072,1073]],"id":"47055"},{"type":"Polygon","arcs":[[1074,1075,1076,1077,1078]],"id":"48023"},{"type":"Polygon","arcs":[[1079,1080,1081,1082,1083]],"id":"48365"},{"type":"Polygon","arcs":[[1084,1085,1086,1087]],"id":"53001"},{"type":"Polygon","arcs":[[-1019,1088,1089,1090,1091,1092]],"id":"19015"},{"type":"Polygon","arcs":[[1093,1094,1095,-255,1096,1097,1098]],"id":"48237"},{"type":"Polygon","arcs":[[1099,1100,1101,1102,1103]],"id":"72009"},{"type":"Polygon","arcs":[[1104,1105,-358,1106,-643]],"id":"20017"},{"type":"Polygon","arcs":[[-689,1107,1108,1109,1110]],"id":"48099"},{"type":"Polygon","arcs":[[1111,1112,1113,1114,1115]],"id":"26037"},{"type":"Polygon","arcs":[[1116,1117,1118,-361]],"id":"20207"},{"type":"Polygon","arcs":[[1119,1120,1121,1122,1123,1124,1125]],"id":"17037"},{"type":"Polygon","arcs":[[1126,1127,1128,1129,1130]],"id":"19159"},{"type":"Polygon","arcs":[[1131,1132,1133,1134,1135]],"id":"19165"},{"type":"Polygon","arcs":[[1136,1137,1138,1139,1140,1141,-204,1142]],"id":"06019"},{"type":"Polygon","arcs":[[1143,1144,1145,-1127,1146]],"id":"19175"},{"type":"Polygon","arcs":[[1147,1148,1149,1150,1151,1152]],"id":"17123"},{"type":"Polygon","arcs":[[1153,1154,1155,1156,1157,1158]],"id":"17147"},{"type":"Polygon","arcs":[[1159,1160,-1147,1161,1162]],"id":"19003"},{"type":"Polygon","arcs":[[1163,1164,1165,1166,1167,1168,1169]],"id":"17159"},{"type":"Polygon","arcs":[[1170,1171,1172,1173,1174]],"id":"47023"},{"type":"Polygon","arcs":[[1175,1176,1177,1178,1179]],"id":"26023"},{"type":"Polygon","arcs":[[1180,1181,1182,1183,1184,1185]],"id":"37151"},{"type":"Polygon","arcs":[[1186,1187,1188,1189,1190,1191]],"id":"20199"},{"type":"Polygon","arcs":[[1192,1193,1194,1195,1196,1197]],"id":"18177"},{"type":"Polygon","arcs":[[1198]],"id":"51595"},{"type":"Polygon","arcs":[[1199,1200,1201,1202,1203]],"id":"48295"},{"type":"Polygon","arcs":[[1204,1205,1206,1207]],"id":"47169"},{"type":"Polygon","arcs":[[1208,1209,1210,1211,1212,1213,1214,1215,1216,-709,1217]],"id":"49037"},{"type":"Polygon","arcs":[[1218,1219,1220,-277,1221,1222]],"id":"19123"},{"type":"Polygon","arcs":[[1223,1224,1225,1226]],"id":"16021"},{"type":"Polygon","arcs":[[1227,1228,1229,1230,1231,1232,1233]],"id":"17107"},{"type":"Polygon","arcs":[[1234,1235,1236,1237,1238]],"id":"20059"},{"type":"Polygon","arcs":[[1239,1240,1241,1242,1243,1244,1245,1246]],"id":"22013"},{"type":"Polygon","arcs":[[1247,1248,1249,1250,1251]],"id":"06005"},{"type":"Polygon","arcs":[[1252,1253,-1248,1254,1255]],"id":"06017"},{"type":"Polygon","arcs":[[1256,1257,1258,1259,1260]],"id":"05065"},{"type":"Polygon","arcs":[[1261]],"id":"51530"},{"type":"Polygon","arcs":[[1262,1263]],"id":"51590"},{"type":"Polygon","arcs":[[1264,1265]],"id":"51640"},{"type":"Polygon","arcs":[[1266]],"id":"51660"},{"type":"Polygon","arcs":[[1267]],"id":"51690"},{"type":"Polygon","arcs":[[1268,1269,1270,1271,1272,1273]],"id":"18049"},{"type":"Polygon","arcs":[[1274,1275,-1144,-1161,1276]],"id":"19001"},{"type":"Polygon","arcs":[[1277,-205,-1142,1278,1279,1280]],"id":"06053"},{"type":"Polygon","arcs":[[1281,1282,1283,1284,1285]],"id":"29219"},{"type":"Polygon","arcs":[[1286,1287,1288,1289,1290]],"id":"37197"},{"type":"Polygon","arcs":[[-435,1291,1292,1293,-1112,1294]],"id":"26057"},{"type":"Polygon","arcs":[[1295,1296,1297,1298,1299,1300]],"id":"21129"},{"type":"Polygon","arcs":[[1301,1302,1303,1304,1305,1306]],"id":"20133"},{"type":"Polygon","arcs":[[1307,-1116,1308,1309,1310]],"id":"26067"},{"type":"Polygon","arcs":[[1311,1312,1313,1314,1315]],"id":"26077"},{"type":"Polygon","arcs":[[1316,1317,1318,1319,1320,1321]],"id":"21149"},{"type":"Polygon","arcs":[[1322,1323,1324,1325,1326,1327]],"id":"27033"},{"type":"Polygon","arcs":[[-568,1328,1329,-370,1330]],"id":"26085"},{"type":"Polygon","arcs":[[-569,-1331,1331,1332]],"id":"26105"},{"type":"Polygon","arcs":[[1333,-437,1334,-371]],"id":"26107"},{"type":"Polygon","arcs":[[1335,-374,1336,1337,1338]],"id":"26121"},{"type":"Polygon","arcs":[[1339,1340,1341,1342,1343,1344]],"id":"27047"},{"type":"Polygon","arcs":[[1345,1346,1347,1348,1349,1350,1351]],"id":"17051"},{"type":"Polygon","arcs":[[1352,1353,1354,1355,-1348]],"id":"17049"},{"type":"Polygon","arcs":[[1356,1357,1358,1359]],"id":"27009"},{"type":"Polygon","arcs":[[1360,1361,1362,1363,-404]],"id":"48129"},{"type":"Polygon","arcs":[[1364,1365,1366,1367,1368]],"id":"27041"},{"type":"Polygon","arcs":[[1369,1370,1371,1372,-393]],"id":"40073"},{"type":"Polygon","arcs":[[1373,1374,1375,1376,1377,1378]],"id":"47053"},{"type":"Polygon","arcs":[[1379,1380,1381,1382,1383,1384,1385]],"id":"47005"},{"type":"Polygon","arcs":[[1386,1387,1388,1389]],"id":"45009"},{"type":"Polygon","arcs":[[1390,1391,1392,1393,1394,-546,1395,1396]],"id":"48013"},{"type":"Polygon","arcs":[[1397,1398,1399,-104,1400,1401,1402,-684]],"id":"46067"},{"type":"Polygon","arcs":[[1403,1404,1405,1406,-37,1407]],"id":"46019"},{"type":"MultiPolygon","arcs":[[[1408,1409,1410,1411]],[[1412,1413]],[[1414,1415]],[[1416]],[[1417,1418]],[[1419,1420,1421,1422]]],"id":"02105"},{"type":"Polygon","arcs":[[1423,1424,1425,1426,-531,-263]],"id":"46059"},{"type":"Polygon","arcs":[[-591,1427,1428,-256,-584,1429,1430]],"id":"46077"},{"type":"Polygon","arcs":[[1431,1432,1433,1434,1435]],"id":"47101"},{"type":"Polygon","arcs":[[1436,1437,1438,1439,1440]],"id":"55069"},{"type":"Polygon","arcs":[[1441,-1377,1442,1443,-1171,1444,1445]],"id":"47113"},{"type":"Polygon","arcs":[[1446]],"id":"51540"},{"type":"Polygon","arcs":[[1447,1448,1449,1450,1451,1452]],"id":"30037"},{"type":"Polygon","arcs":[[1453,1454,1455,1456,1457,1458,1459,-810]],"id":"56009"},{"type":"Polygon","arcs":[[1460,1461,1462,1463,1464]],"id":"47179"},{"type":"Polygon","arcs":[[1465,1466,-1441,1467,1468,1469]],"id":"55119"},{"type":"Polygon","arcs":[[1470,1471,1472,1473,1474,1475,1476,1477]],"id":"56029"},{"type":"Polygon","arcs":[[1478,1479,-1328,1480,-726,1481]],"id":"27101"},{"type":"Polygon","arcs":[[1482,1483,1484,1485,1486,1487]],"id":"55133"},{"type":"Polygon","arcs":[[1488,1489,-1482,-725,1490]],"id":"27117"},{"type":"Polygon","arcs":[[1491,1492,1493,1494,1495]],"id":"51099"},{"type":"Polygon","arcs":[[1496,1497,1498,1499,1500,1501,1502]],"id":"30001"},{"type":"Polygon","arcs":[[1503,1504,-1448,1505,1506]],"id":"30107"},{"type":"Polygon","arcs":[[1507,-899,1508,1509,1510,1511]],"id":"29043"},{"type":"Polygon","arcs":[[1512,1513,1514,1515,1516,1517]],"id":"29053"},{"type":"Polygon","arcs":[[1518,1519,1520,1521,1522,1523]],"id":"20029"},{"type":"Polygon","arcs":[[1524,1525,1526,1527,1528]],"id":"51159"},{"type":"Polygon","arcs":[[1529,-1378,-1442,1530,1531]],"id":"47033"},{"type":"Polygon","arcs":[[1532,1533,1534,1535,1536]],"id":"18063"},{"type":"Polygon","arcs":[[1537,1538,1539,1540,1541,1542,1543,-366]],"id":"20135"},{"type":"Polygon","arcs":[[1544,1545,1546,1547,1548,-1123]],"id":"17093"},{"type":"Polygon","arcs":[[1549,1550,1551,1552,1553]],"id":"18149"},{"type":"Polygon","arcs":[[1554,1555,1556,1557,1558,-637]],"id":"18145"},{"type":"Polygon","arcs":[[1559,1560,1561,1562,-896,1563]],"id":"29105"},{"type":"Polygon","arcs":[[1564,1565,1566,1567,1568,1569]],"id":"29117"},{"type":"Polygon","arcs":[[1570,1571,-986,-891,1572]],"id":"26137"},{"type":"Polygon","arcs":[[1573,1574,1575,1576,1577,1578,-1579]],"id":"31087"},{"type":"Polygon","arcs":[[-893,-773,-1002,-888,1579]],"id":"26143"},{"type":"Polygon","arcs":[[1580,1581,1582,1583,1584]],"id":"29011"},{"type":"Polygon","arcs":[[-405,-1364,1585,1586,1587,1588]],"id":"48045"},{"type":"Polygon","arcs":[[1589,1590,1591,1592,1593,1594]],"id":"26161"},{"type":"Polygon","arcs":[[1595,-1310,1596,1597,-1313,1598]],"id":"26015"},{"type":"Polygon","arcs":[[1599,1600,1601,1602,1603]],"id":"35029"},{"type":"Polygon","arcs":[[1604,1605,1606,1607,1608,1609,1610]],"id":"51169"},{"type":"Polygon","arcs":[[1611,1612,1613,1614,1615]],"id":"33007"},{"type":"Polygon","arcs":[[1616,1617,1618,1619,1620,1621]],"id":"38095"},{"type":"Polygon","arcs":[[1622,1623,1624,1625,-491,1626]],"id":"29145"},{"type":"MultiPolygon","arcs":[[[1627,1628]],[[-1411,1629,-48,1630]]],"id":"02195"},{"type":"Polygon","arcs":[[1631,-1045,1632,1633,1634]],"id":"31167"},{"type":"Polygon","arcs":[[1635,1636,1637,-1040,-1632,1638]],"id":"31179"},{"type":"Polygon","arcs":[[1639,1640,1641,1642,-197]],"id":"26109"},{"type":"Polygon","arcs":[[1643,1644,1645,1646,1647]],"id":"48175"},{"type":"Polygon","arcs":[[1648,-35,-992,1649,-331,1650]],"id":"38073"},{"type":"Polygon","arcs":[[1651,1652,-1361,1653]],"id":"48179"},{"type":"Polygon","arcs":[[1654,1655,1656,1657,1658,1659]],"id":"42121"},{"type":"Polygon","arcs":[[-1363,1660,-503,-268,1661,-1586]],"id":"48191"},{"type":"Polygon","arcs":[[1662,-1511,1663,1664,1665]],"id":"29209"},{"type":"Polygon","arcs":[[1666,1667,1668,1669,1670,1671]],"id":"39057"},{"type":"Polygon","arcs":[[1672,1673,-1570,1674,1675,1676]],"id":"29061"},{"type":"Polygon","arcs":[[1677,1678,1679,1680,1681,1682]],"id":"29199"},{"type":"Polygon","arcs":[[1683,1684,1685,1686,1687,1688,1689]],"id":"48049"},{"type":"Polygon","arcs":[[-498,1690,1691,-924,1692,1693]],"id":"48165"},{"type":"Polygon","arcs":[[-1110,1694,-677,1695,1696,1697,1698]],"id":"48027"},{"type":"Polygon","arcs":[[1699,-1227,1700,1701,1702]],"id":"53051"},{"type":"Polygon","arcs":[[1703,1704,1705,1706,1707,1708]],"id":"13277"},{"type":"Polygon","arcs":[[1709,1710,1711,1712,1713]],"id":"48435"},{"type":"Polygon","arcs":[[1714,1715,1716,1717,1718]],"id":"51023"},{"type":"Polygon","arcs":[[1719,1720,1721,1722,1723]],"id":"48405"},{"type":"Polygon","arcs":[[-132,1724,1725,1726,1727,1728,1729]],"id":"72129"},{"type":"Polygon","arcs":[[1730,1731,1732,1733,-142,1734]],"id":"72143"},{"type":"Polygon","arcs":[[1735,1736,1737,1738]],"id":"27017"},{"type":"Polygon","arcs":[[1739,1740,1741,1742,1743]],"id":"12029"},{"type":"Polygon","arcs":[[1744,1745,1746,1747,1748,1749]],"id":"13211"},{"type":"Polygon","arcs":[[1750,1751,1752,1753]],"id":"02188"},{"type":"Polygon","arcs":[[1754,1755,1756,-698,1757]],"id":"38007"},{"type":"Polygon","arcs":[[1758,1759,1760,-1739,1761,1762,1763,1764]],"id":"27001"},{"type":"Polygon","arcs":[[1765,1766,1767,1768,1769,1770,1771]],"id":"08045"},{"type":"Polygon","arcs":[[-1237,1772,1773,1774]],"id":"20003"},{"type":"Polygon","arcs":[[-272,1775,1776,1777,-542]],"id":"48269"},{"type":"Polygon","arcs":[[1778,-396,1779,1780,-524,1781]],"id":"40039"},{"type":"Polygon","arcs":[[1782,-91,1783,1784,1785,1786]],"id":"39101"},{"type":"Polygon","arcs":[[1787,1788,1789,1790,1791,1792]],"id":"17095"},{"type":"Polygon","arcs":[[1793,1794,1795,1796]],"id":"13013"},{"type":"Polygon","arcs":[[-1124,-1549,1797,1798,1799,-1150,1800,1801,1802]],"id":"17099"},{"type":"Polygon","arcs":[[1803,1804,1805,1806,1807]],"id":"01031"},{"type":"Polygon","arcs":[[1808,1809,1810,1811]],"id":"12085"},{"type":"Polygon","arcs":[[1812,1813,1814,-1089,-1018]],"id":"19079"},{"type":"Polygon","arcs":[[-873,1815,-758,1816,-1814]],"id":"19083"},{"type":"Polygon","arcs":[[1817,1818,1819,1820,1821,1822]],"id":"16037"},{"type":"Polygon","arcs":[[1823,1824,1825,1826,1827,1828]],"id":"13037"},{"type":"Polygon","arcs":[[1829,1830,1831,1832]],"id":"19093"},{"type":"Polygon","arcs":[[1833,1834,-155,-601,1835]],"id":"08105"},{"type":"Polygon","arcs":[[1836,-1223,1837,1838,-513,1839]],"id":"19125"},{"type":"Polygon","arcs":[[1840,-1007,1841,1842]],"id":"08087"},{"type":"Polygon","arcs":[[1843,1844,1845,-1220,1846]],"id":"19157"},{"type":"Polygon","arcs":[[1847,1848,1849,-1228,1850,1851]],"id":"17179"},{"type":"Polygon","arcs":[[1852,1853,1854,1855]],"id":"08039"},{"type":"Polygon","arcs":[[-1091,1856,1857,-1840,-512,1858]],"id":"19153"},{"type":"Polygon","arcs":[[1859,1860,1861,1862,1863,1864]],"id":"39149"},{"type":"Polygon","arcs":[[1865,-516,1866,-1145,-1276]],"id":"19121"},{"type":"Polygon","arcs":[[1867,1868,1869,1870,-660]],"id":"39153"},{"type":"Polygon","arcs":[[1871,1872,-748,1873]],"id":"12049"},{"type":"Polygon","arcs":[[1874,1875,1876,1877,1878,1879,1880]],"id":"39161"},{"type":"Polygon","arcs":[[1881,-1671,1882,1883,1884,1885]],"id":"39165"},{"type":"Polygon","arcs":[[1886,1887,1888,1889,-957,1890]],"id":"48463"},{"type":"Polygon","arcs":[[1891,1892,1893,1894,1895,-633,1896]],"id":"13195"},{"type":"Polygon","arcs":[[1897,1898,-825,1899,1900,1901]],"id":"39059"},{"type":"Polygon","arcs":[[1902,1903,1904,1905,-1392]],"id":"48493"},{"type":"Polygon","arcs":[[-1785,1906,-936,1907,1908,1909]],"id":"39041"},{"type":"Polygon","arcs":[[1910,1911,1912,1913,1914]],"id":"39055"},{"type":"Polygon","arcs":[[-527,1915,1916,1917]],"id":"40055"},{"type":"Polygon","arcs":[[1918,1919,1920,1921,1922,1923,1924]],"id":"27131"},{"type":"Polygon","arcs":[[1925,1926,1927,1928,1929,1930,1931]],"id":"05025"},{"type":"Polygon","arcs":[[1932,1933,1934,1935,1936,-190]],"id":"13093"},{"type":"Polygon","arcs":[[-412,-247,1937,-1710,1938]],"id":"48413"},{"type":"Polygon","arcs":[[1939,1940,1941,1942,-1325]],"id":"27165"},{"type":"Polygon","arcs":[[1943,1944,1945,-380,1946,1947]],"id":"31001"},{"type":"Polygon","arcs":[[1948,1949,1950,1951]],"id":"37003"},{"type":"Polygon","arcs":[[1952,-300,1953,1954,-1582]],"id":"29039"},{"type":"Polygon","arcs":[[1955,-406,-1589,1956,-803,1957]],"id":"48437"},{"type":"Polygon","arcs":[[1958,1959,1960,1961,1962,1963,1964]],"id":"30049"},{"type":"Polygon","arcs":[[1965,1966,1967,-1518,1968,1969,1970]],"id":"29159"},{"type":"Polygon","arcs":[[-1587,-1662,-273,-541,1971]],"id":"48345"},{"type":"Polygon","arcs":[[1972,1973,1974,-1497,1975,1976]],"id":"30081"},{"type":"Polygon","arcs":[[1977,1978,1979,-7,1980,1981,1982,1983]],"id":"06071"},{"type":"Polygon","arcs":[[1984,1985,1986,1987,1988,1989]],"id":"13189"},{"type":"MultiPolygon","arcs":[[[1990,1991,1992,1993,-1422,1994],[-1417]]],"id":"02100"},{"type":"Polygon","arcs":[[-1468,-1440,1995,1996,1997,1998,1999]],"id":"55073"},{"type":"MultiPolygon","arcs":[[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2007,2008]],[[2009]],[[2010]],[[2011]]],"id":"02013"},{"type":"MultiPolygon","arcs":[[[2012]],[[2013]],[[2014]],[[2015]],[[2016]],[[2017,2018,2019]]],"id":"02150"},{"type":"MultiPolygon","arcs":[[[2020]],[[2021,-745,2022,2023,2024,2025,-2020,2026,-2008]]],"id":"02164"},{"type":"MultiPolygon","arcs":[[[2027]],[[2028]],[[2029,2030,2031,2032,2033,2034,2035]]],"id":"02261"},{"type":"Polygon","arcs":[[2036,2037,-1398,-683,-117]],"id":"46035"},{"type":"Polygon","arcs":[[2038,2039,2040,2041,2042,2043,2044,2045]],"id":"41023"},{"type":"Polygon","arcs":[[2046,2047,2048,2049,2050,2051]],"id":"39129"},{"type":"Polygon","arcs":[[-1914,2052,2053,2054,-1869]],"id":"39133"},{"type":"Polygon","arcs":[[2055,2056,2057,2058,-830]],"id":"13131"},{"type":"Polygon","arcs":[[2059,2060,2061,2062,2063,2064]],"id":"72093"},{"type":"Polygon","arcs":[[2065,2066,2067,2068,2069,2070]],"id":"54075"},{"type":"Polygon","arcs":[[2071,2072,2073]],"id":"72117"},{"type":"Polygon","arcs":[[2074,2075,2076,2077,-1365,2078,2079]],"id":"27111"},{"type":"Polygon","arcs":[[2080,2081,2082,2083,2084,2085,2086]],"id":"13111"},{"type":"Polygon","arcs":[[2087,2088,2089,-24,-223,-22]],"id":"27113"},{"type":"Polygon","arcs":[[2090,2091,2092,2093]],"id":"17021"},{"type":"Polygon","arcs":[[2094,2095,2096,2097,2098,-1271]],"id":"18169"},{"type":"Polygon","arcs":[[2099,2100,2101,2102,2103,-1212]],"id":"08085"},{"type":"Polygon","arcs":[[2104,2105,2106,-10,2107]],"id":"28113"},{"type":"Polygon","arcs":[[-484,2108,2109,2110,2111,2112]],"id":"38049"},{"type":"Polygon","arcs":[[2113,2114,2115,2116,-1679,2117]],"id":"19177"},{"type":"Polygon","arcs":[[2118,2119,2120]],"id":"17171"},{"type":"Polygon","arcs":[[2121,-869,2122,2123,2124]],"id":"13021"},{"type":"Polygon","arcs":[[2125,-133,-1730,2126,2127,2128,-1102]],"id":"72035"},{"type":"Polygon","arcs":[[-1005,2129,2130,-1292,-434]],"id":"26111"},{"type":"Polygon","arcs":[[2131,2132,2133,2134,-1540,2135]],"id":"20051"},{"type":"Polygon","arcs":[[2136,2137,2138,-2109,-483]],"id":"38009"},{"type":"Polygon","arcs":[[-877,2139,-1067,2140,-1881,2141,2142,2143,2144]],"id":"18003"},{"type":"Polygon","arcs":[[2145,2146,2147,2148,2149,2150]],"id":"20085"},{"type":"Polygon","arcs":[[2151,2152,2153,2154,2155,-2115]],"id":"19087"},{"type":"Polygon","arcs":[[2156,2157,2158,-1533,2159]],"id":"18011"},{"type":"Polygon","arcs":[[2160,2161,2162,2163,2164,-558]],"id":"06103"},{"type":"Polygon","arcs":[[-1272,-2099,2165,2166,2167]],"id":"18103"},{"type":"Polygon","arcs":[[2168,2169,2170,2171,2172]],"id":"38047"},{"type":"Polygon","arcs":[[2173,2174,2175,2176,2177,2178]],"id":"40021"},{"type":"Polygon","arcs":[[2179,-265,-534,2180,2181,-609,2182,2183,2184,2185]],"id":"46085"},{"type":"Polygon","arcs":[[-26,2186,2187,2188]],"id":"27087"},{"type":"Polygon","arcs":[[-1469,-2000,2189,2190,2191,2192]],"id":"55019"},{"type":"Polygon","arcs":[[2193,2194,-368,2195,2196,2197]],"id":"20171"},{"type":"Polygon","arcs":[[2198,2199,2200,2201,2202]],"id":"27135"},{"type":"Polygon","arcs":[[2203,2204,2205,2206,2207,2208,2209]],"id":"05115"},{"type":"Polygon","arcs":[[2210,2211,2212,2213,2214]],"id":"26095"},{"type":"Polygon","arcs":[[-1970,2215,2216,2217,-297,2218]],"id":"29015"},{"type":"Polygon","arcs":[[2219,2220,2221,2222,2223,-2206]],"id":"05141"},{"type":"Polygon","arcs":[[2224,2225,2226,2227,2228,2229,2230,2231]],"id":"51199"},{"type":"Polygon","arcs":[[-898,2232,2233,2234,2235,2236,-1509]],"id":"29067"},{"type":"Polygon","arcs":[[2237,2238,2239,2240,-1965,2241,2242,2243,2244,2245]],"id":"30029"},{"type":"Polygon","arcs":[[2246,2247,2248,2249,2250]],"id":"48305"},{"type":"Polygon","arcs":[[2251,2252,2253,2254,2255,2256]],"id":"29065"},{"type":"Polygon","arcs":[[2257,2258,2259,2260,-1938]],"id":"48327"},{"type":"Polygon","arcs":[[-1056,-402,-704,2261,-456]],"id":"48353"},{"type":"Polygon","arcs":[[2262,-2255,2263,2264,2265,2266]],"id":"29203"},{"type":"Polygon","arcs":[[2267,2268,-458,2269,-243,2270]],"id":"48431"},{"type":"Polygon","arcs":[[2271,2272,2273,2274,2275]],"id":"08089"},{"type":"Polygon","arcs":[[2276,2277,2278,2279,-2248]],"id":"48169"},{"type":"Polygon","arcs":[[2280,2281,2282,2283,2284]],"id":"08119"},{"type":"Polygon","arcs":[[2285,-2245,2286,2287,2288,2289,2290]],"id":"30089"},{"type":"Polygon","arcs":[[2291,-241,2292,-1684,2293,-399]],"id":"48059"},{"type":"Polygon","arcs":[[-1778,2294,2295,-1054,2296]],"id":"48433"},{"type":"Polygon","arcs":[[2297,2298,2299,2300,-518,2301]],"id":"40051"},{"type":"Polygon","arcs":[[2302,2303,2304,2305,2306,2307]],"id":"48159"},{"type":"Polygon","arcs":[[2308,2309,2310,2311,2312,2313]],"id":"48467"},{"type":"Polygon","arcs":[[2314,-1039,2315,2316]],"id":"31073"},{"type":"Polygon","arcs":[[2317,2318,2319,2320,-377]],"id":"31059"},{"type":"Polygon","arcs":[[2321,2322,2323,2324,2325,-2309,2326,2327]],"id":"48231"},{"type":"Polygon","arcs":[[2328,2329,-110,2330,2331]],"id":"48313"},{"type":"Polygon","arcs":[[2332,2333,2334,2335,2336,2337,2338]],"id":"40019"},{"type":"Polygon","arcs":[[2339,2340,2341,2342,2343]],"id":"51157"},{"type":"Polygon","arcs":[[2344,2345,2346,2347,2348]],"id":"01103"},{"type":"Polygon","arcs":[[2349,2350,2351,2352,2353]],"id":"51079"},{"type":"Polygon","arcs":[[2354,-1752,2355,2356,2357,2358,2359,2360,2361,-509]],"id":"02290"},{"type":"Polygon","arcs":[[2362,2363,2364,2365,2366]],"id":"42059"},{"type":"Polygon","arcs":[[-1929,2367,2368,2369,2370,2371]],"id":"05043"},{"type":"Polygon","arcs":[[2372,2373,-447,2374,2375,2376,2377]],"id":"28043"},{"type":"Polygon","arcs":[[2378,2379],[2380]],"id":"51750"},{"type":"Polygon","arcs":[[2381,2382,2383,2384,2385]],"id":"29211"},{"type":"Polygon","arcs":[[2386,2387,2388,2389,2390]],"id":"54047"},{"type":"Polygon","arcs":[[2391,2392,2393,2394,2395]],"id":"37133"},{"type":"Polygon","arcs":[[2396,2397,2398,2399,2400,2401]],"id":"29049"},{"type":"Polygon","arcs":[[2402,2403,2404,2405,2406,2407]],"id":"12005"},{"type":"Polygon","arcs":[[-137,2408,2409,2410]],"id":"72061"},{"type":"Polygon","arcs":[[2411,2412,2413,2414,2415]],"id":"72029"},{"type":"Polygon","arcs":[[-143,-1734,2416,2417,2418,2419]],"id":"72047"},{"type":"MultiPolygon","arcs":[[[2420,2421,2422,2423,-619,2424]],[[2425]]],"id":"53033"},{"type":"Polygon","arcs":[[2426,2427,2428,2429,-2422,2430]],"id":"53007"},{"type":"Polygon","arcs":[[2431,2432,2433,2434]],"id":"12035"},{"type":"Polygon","arcs":[[-2430,2435,2436,2437,-2423]],"id":"53037"},{"type":"Polygon","arcs":[[2438,2439,2440,2441]],"id":"12095"},{"type":"Polygon","arcs":[[2442,-61,2443,2444,-1935]],"id":"13235"},{"type":"Polygon","arcs":[[2445,2446,-2108,-9,2447,2448,2449]],"id":"28005"},{"type":"Polygon","arcs":[[2450,2451,2452,2453,2454]],"id":"46045"},{"type":"Polygon","arcs":[[-1548,2455,2456,2457,-1798]],"id":"17063"},{"type":"Polygon","arcs":[[2458,2459,2460,-718,2461,-766]],"id":"20151"},{"type":"Polygon","arcs":[[2462,2463,2464,-871,-220]],"id":"19033"},{"type":"Polygon","arcs":[[2465,2466,2467,2468,2469,2470]],"id":"31155"},{"type":"Polygon","arcs":[[2471,2472,2473,2474,2475]],"id":"05125"},{"type":"Polygon","arcs":[[-1998,-820,-415,2476,2477]],"id":"55097"},{"type":"Polygon","arcs":[[2478,2479,-1585,2480,2481,2482,-1304]],"id":"20037"},{"type":"Polygon","arcs":[[2483,2484,2485,2486,2487]],"id":"48221"},{"type":"Polygon","arcs":[[2488,2489,2490,2491,-359,-1106]],"id":"20111"},{"type":"Polygon","arcs":[[2492,2493,2494,2495,2496]],"id":"46047"},{"type":"Polygon","arcs":[[2497,-294,2498,2499,2500]],"id":"30069"},{"type":"Polygon","arcs":[[2501,2502,2503,2504,2505,-2157,2506]],"id":"18023"},{"type":"Polygon","arcs":[[-679,2507,-36,-1649,2508,2509]],"id":"38003"},{"type":"Polygon","arcs":[[2510,2511,2512,2513,2514]],"id":"50015"},{"type":"Polygon","arcs":[[2515,2516,2517,2518,2519,2520]],"id":"13035"},{"type":"Polygon","arcs":[[-2190,-1999,-2478,2521,2522,2523]],"id":"55141"},{"type":"Polygon","arcs":[[2524,-221,-874,-1813,-1017]],"id":"19197"},{"type":"Polygon","arcs":[[2525,2526,2527,-535,2528,-2260]],"id":"48319"},{"type":"Polygon","arcs":[[2529,2530,2531,2532]],"id":"48183"},{"type":"Polygon","arcs":[[2533,2534,2535,2536,2537,2538]],"id":"28105"},{"type":"Polygon","arcs":[[-964,2539,2540,2541]],"id":"06057"},{"type":"Polygon","arcs":[[-2495,2542,2543,2544,2545]],"id":"31045"},{"type":"Polygon","arcs":[[2546,2547,2548,2549,2550]],"id":"41033"},{"type":"Polygon","arcs":[[-955,2551,2552,2553,-2319]],"id":"31151"},{"type":"Polygon","arcs":[[-1202,2554,2555,2556,2557]],"id":"48211"},{"type":"Polygon","arcs":[[2558,-2520,2559,2560,2561]],"id":"13171"},{"type":"Polygon","arcs":[[2562,2563,2564,2565,2566]],"id":"28065"},{"type":"Polygon","arcs":[[-1908,-935,2567,2568,2569,2570,2571]],"id":"39089"},{"type":"Polygon","arcs":[[-183,2572,-1958,-802,2573,2574]],"id":"48069"},{"type":"Polygon","arcs":[[2575,-1573,2576,2577,2578]],"id":"26009"},{"type":"Polygon","arcs":[[2579,2580,2581,2582,2583,-171]],"id":"20147"},{"type":"Polygon","arcs":[[2584,2585,2586,2587]],"id":"20067"},{"type":"Polygon","arcs":[[-1962,2588,2589,2590]],"id":"30007"},{"type":"Polygon","arcs":[[-580,2591,-777,2592,-1944,2593,-1035,2594]],"id":"31019"},{"type":"Polygon","arcs":[[2595,2596,2597,2598]],"id":"32009"},{"type":"Polygon","arcs":[[2599,2600,2601,2602,2603]],"id":"37135"},{"type":"Polygon","arcs":[[2604,2605,2606,2607,2608,2609]],"id":"16051"},{"type":"Polygon","arcs":[[2610,-1179,2611,-875,2612]],"id":"18087"},{"type":"Polygon","arcs":[[-950,2613,2614,2615,-283,2616]],"id":"19105"},{"type":"Polygon","arcs":[[2617,2618,2619,2620,2621,2622]],"id":"19027"},{"type":"Polygon","arcs":[[2623,2624,-680,-2510,2625,-2170,2626]],"id":"38093"},{"type":"Polygon","arcs":[[2627,-1020,-1093,2628,2629,-2620]],"id":"19073"},{"type":"Polygon","arcs":[[2630,2631,2632,2633,2634,2635,2636]],"id":"01003"},{"type":"Polygon","arcs":[[2637,2638,2639,-1595,2640,2641,2642]],"id":"26075"},{"type":"Polygon","arcs":[[2643,-1610,2644,2645,2646]],"id":"47067"},{"type":"Polygon","arcs":[[-172,-2584,2647,2648,2649,2650]],"id":"20065"},{"type":"Polygon","arcs":[[-1774,2651,-1302,-1118]],"id":"20001"},{"type":"Polygon","arcs":[[2652,2653,2654,2655,2656,2657]],"id":"40127"},{"type":"Polygon","arcs":[[2658,2659,2660,2661,2662]],"id":"48461"},{"type":"Polygon","arcs":[[2663,-2454,2664,-261,2665,2666]],"id":"46107"},{"type":"Polygon","arcs":[[-1037,2667,-2580,-170,2668]],"id":"31083"},{"type":"Polygon","arcs":[[2669,2670,2671,2672,2673]],"id":"19063"},{"type":"Polygon","arcs":[[2674,2675,2676,2677,-1618]],"id":"38019"},{"type":"Polygon","arcs":[[2678,2679,2680,2681,2682,2683]],"id":"06109"},{"type":"Polygon","arcs":[[-2649,2684,-2136,-1539,2685]],"id":"20195"},{"type":"Polygon","arcs":[[2686,-918,-127,2687,2688]],"id":"48247"},{"type":"Polygon","arcs":[[2689,2690,2691,2692]],"id":"72069"},{"type":"Polygon","arcs":[[2693,2694,2695]],"id":"55078"},{"type":"Polygon","arcs":[[-1942,2696,2697,2698,-2671,2699]],"id":"27091"},{"type":"Polygon","arcs":[[2700,2701,2702,-858,2703,2704]],"id":"01085"},{"type":"Polygon","arcs":[[2705,2706,-791,2707,2708,2709]],"id":"21073"},{"type":"Polygon","arcs":[[2710,2711,2712,2713,2714]],"id":"29205"},{"type":"Polygon","arcs":[[2715,2716,2717,2718,2719,2720]],"id":"40037"},{"type":"Polygon","arcs":[[2721,2722,2723,2724,2725,2726]],"id":"48285"},{"type":"Polygon","arcs":[[-418,2727,2728,2729,2730,2731]],"id":"55047"},{"type":"Polygon","arcs":[[-581,-2595,-1034,-2315,2732,2733]],"id":"31047"},{"type":"Polygon","arcs":[[-1315,-1180,-2611,2734,2735]],"id":"26149"},{"type":"Polygon","arcs":[[2736,2737,2738,-843,2739,2740]],"id":"17081"},{"type":"Polygon","arcs":[[2741,-469,2742,-2464,2743]],"id":"19131"},{"type":"Polygon","arcs":[[2744,-2358,2745,-2031,2746,2747]],"id":"02240"},{"type":"Polygon","arcs":[[-1801,-1149,2748]],"id":"17155"},{"type":"Polygon","arcs":[[2749,2750,-1163,2751,2752]],"id":"19137"},{"type":"Polygon","arcs":[[2753,2754,-213,2755]],"id":"19017"},{"type":"Polygon","arcs":[[2756,-1350,2757,2758,-2738,2759]],"id":"17121"},{"type":"Polygon","arcs":[[2760,2761,2762,2763,2764]],"id":"37025"},{"type":"Polygon","arcs":[[2765,-928,2766,-2660,2767]],"id":"48329"},{"type":"Polygon","arcs":[[-2261,-2529,-540,2768,2769,-1711]],"id":"48267"},{"type":"Polygon","arcs":[[2770,2771,2772,2773,2774]],"id":"55103"},{"type":"Polygon","arcs":[[-921,-410,2775,-1654,-403,-670]],"id":"48065"},{"type":"Polygon","arcs":[[2776,2777,2778,2779,2780]],"id":"21061"},{"type":"Polygon","arcs":[[2781,2782,2783,2784,2785,2786,2787]],"id":"18047"},{"type":"Polygon","arcs":[[2788,2789,2790,-1823,2791,2792]],"id":"16085"},{"type":"Polygon","arcs":[[2793,2794,2795,2796,2797,2798]],"id":"51109"},{"type":"Polygon","arcs":[[2799,-1098,2800,-2488,2801,2802,2803]],"id":"48363"},{"type":"Polygon","arcs":[[2804,-2574,-806,-233,2805]],"id":"48279"},{"type":"Polygon","arcs":[[2806,2807,2808,2809,-2408,2810,-304]],"id":"12131"},{"type":"Polygon","arcs":[[-45,2811,2812,2813,2814]],"id":"36039"},{"type":"Polygon","arcs":[[-1194,2815,-478,2816,-1864,2817,2818,2819]],"id":"39037"},{"type":"Polygon","arcs":[[-2201,2820,2821,2822,2823,2824,2825,-2089,2826]],"id":"27007"},{"type":"Polygon","arcs":[[2827,2828,-890,-1334,-1330]],"id":"26133"},{"type":"Polygon","arcs":[[-363,2829,2830,2831,2832,2833]],"id":"20049"},{"type":"Polygon","arcs":[[2834,2835,2836,2837,2838]],"id":"20075"},{"type":"Polygon","arcs":[[2839,2840,2841,2842,-1736,-1761,2843,2844]],"id":"27137"},{"type":"Polygon","arcs":[[2845,2846,2847,-2153,2848,2849]],"id":"19183"},{"type":"Polygon","arcs":[[-240,2850,-2803,2851,2852,-1685,-2293]],"id":"48133"},{"type":"Polygon","arcs":[[-2769,-539,2853,2854,2855,2856]],"id":"48265"},{"type":"Polygon","arcs":[[2857,2858,2859,2860,2861,2862]],"id":"36003"},{"type":"Polygon","arcs":[[-805,2863,-2247,-234]],"id":"48303"},{"type":"Polygon","arcs":[[2864,2865]],"id":"51775"},{"type":"Polygon","arcs":[[2866,2867]],"id":"51670"},{"type":"Polygon","arcs":[[2868,2869,2870,2871,-1789,2872]],"id":"17073"},{"type":"Polygon","arcs":[[2873,2874,-1033,2875,2876]],"id":"28079"},{"type":"Polygon","arcs":[[2877,2878,2879,2880,2881,2882,2883]],"id":"35057"},{"type":"Polygon","arcs":[[2884,2885,-146,2886,2887]],"id":"08095"},{"type":"Polygon","arcs":[[2888,-2887,-150,2889,2890,2891,-1009]],"id":"08125"},{"type":"Polygon","arcs":[[2892,2893,2894,2895]],"id":"19141"},{"type":"Polygon","arcs":[[-2877,2896,2897,2898,2899]],"id":"28123"},{"type":"Polygon","arcs":[[-573,2900,2901,2902,-578]],"id":"31175"},{"type":"Polygon","arcs":[[2903,-1290,2904,2905,-2761,2906,2907,2908,-1950]],"id":"37097"},{"type":"Polygon","arcs":[[2909,2910,2911,2912,2913]],"id":"01057"},{"type":"Polygon","arcs":[[2914,2915,-174,2916,-882,2917]],"id":"20039"},{"type":"Polygon","arcs":[[2918,2919,2920,2921,2922,-2042]],"id":"41001"},{"type":"Polygon","arcs":[[2923,2924,2925,2926,2927]],"id":"01133"},{"type":"Polygon","arcs":[[2928,2929,2930,2931,2932]],"id":"29221"},{"type":"Polygon","arcs":[[2933,2934,2935]],"id":"72015"},{"type":"Polygon","arcs":[[2936,2937,2938,2939,2940,2941,2942]],"id":"18007"},{"type":"MultiPolygon","arcs":[[[2943]],[[2944]],[[2945]],[[2946,2947,2948,2949]]],"id":"06083"},{"type":"Polygon","arcs":[[2950,-559,-2165,2951,2952]],"id":"06105"},{"type":"Polygon","arcs":[[2953,2954,2955,2956,2957,2958]],"id":"17117"},{"type":"Polygon","arcs":[[2959,2960,2961,2962,-1293,-2131]],"id":"26145"},{"type":"Polygon","arcs":[[-2802,-2487,2963,2964,-687,2965,-2852]],"id":"48143"},{"type":"MultiPolygon","arcs":[[[2966,2967,2968,2969,2970,2971]],[[2972,2973]]],"id":"12101"},{"type":"Polygon","arcs":[[2974,2975,-801,2976,2977]],"id":"37169"},{"type":"Polygon","arcs":[[2978,2979,-2793,2980,2981,2982,2983]],"id":"16045"},{"type":"Polygon","arcs":[[2984,2985,2986,2987,2988]],"id":"54021"},{"type":"Polygon","arcs":[[-721,2989,2990,2991,2992,2993]],"id":"40003"},{"type":"Polygon","arcs":[[2994,2995,2996,2997,2998,-1520,2999]],"id":"20201"},{"type":"Polygon","arcs":[[3000,3001,3002,3003,3004]],"id":"13109"},{"type":"Polygon","arcs":[[3005,3006,3007,-1198,3008,3009,3010]],"id":"18065"},{"type":"Polygon","arcs":[[3011,3012,3013,3014]],"id":"45023"},{"type":"Polygon","arcs":[[3015,-1981,-6,3016,3017,3018,3019]],"id":"04012"},{"type":"Polygon","arcs":[[3020,3021,3022,-576,3023,-450]],"id":"31009"},{"type":"Polygon","arcs":[[-2791,3024,-1976,-1503,3025,3026,-1818]],"id":"16059"},{"type":"Polygon","arcs":[[3027,-1027,3028,3029,3030]],"id":"20069"},{"type":"Polygon","arcs":[[-2376,3031,3032,3033,3034]],"id":"28097"},{"type":"Polygon","arcs":[[3035,3036,3037,3038,-2533,3039,3040]],"id":"48459"},{"type":"Polygon","arcs":[[3041,3042,3043,3044,3045,3046,-537]],"id":"48031"},{"type":"Polygon","arcs":[[3047,3048,3049,3050,3051]],"id":"20061"},{"type":"Polygon","arcs":[[3052,3053,3054,3055,3056,3057]],"id":"21041"},{"type":"Polygon","arcs":[[3058,3059,-1269,-1552,3060]],"id":"18099"},{"type":"Polygon","arcs":[[3061,-800,3062,-1181,3063]],"id":"37081"},{"type":"Polygon","arcs":[[3064,3065]],"id":"51610"},{"type":"Polygon","arcs":[[3066]],"id":"51678"},{"type":"Polygon","arcs":[[3067,-2642,3068,3069,3070,3071,-1177]],"id":"26059"},{"type":"Polygon","arcs":[[-1189,3072,-2198,3073,-2836,3074]],"id":"20203"},{"type":"Polygon","arcs":[[-1922,3075,3076,3077,3078]],"id":"27039"},{"type":"Polygon","arcs":[[3079,-1154,3080,-1230]],"id":"17039"},{"type":"Polygon","arcs":[[-1693,-929,-2766,3081,3082,3083]],"id":"48003"},{"type":"Polygon","arcs":[[3084,-1430,-587,3085,-2037,-116,3086]],"id":"46111"},{"type":"Polygon","arcs":[[3087,3088,-1925,3089,3090,3091]],"id":"27079"},{"type":"Polygon","arcs":[[3092,3093,3094,3095,-967,3096]],"id":"55105"},{"type":"Polygon","arcs":[[-1923,-3079,3097,-1341,3098]],"id":"27147"},{"type":"Polygon","arcs":[[3099,3100,3101,3102,3103,3104]],"id":"42065"},{"type":"Polygon","arcs":[[3105,3106,-1022,3107,3108]],"id":"19151"},{"type":"Polygon","arcs":[[-1481,-1327,3109,3110,3111,-727]],"id":"27105"},{"type":"MultiPolygon","arcs":[[[3112,3113]],[[3114]],[[3115]],[[3116]],[[3117]],[[-1629,3118]],[[3119,3120]]],"id":"02198"},{"type":"Polygon","arcs":[[3121,3122,3123,-341]],"id":"46121"},{"type":"Polygon","arcs":[[3124,3125,3126,3127,3128]],"id":"13003"},{"type":"MultiPolygon","arcs":[[[-3121,3129]],[[3130]],[[-1418,3131]]],"id":"02220"},{"type":"Polygon","arcs":[[-2377,-3035,3132,3133,3134]],"id":"28015"},{"type":"Polygon","arcs":[[3135,3136,-1809,3137]],"id":"12111"},{"type":"Polygon","arcs":[[-280,-2118,-1678,3138,3139]],"id":"19051"},{"type":"Polygon","arcs":[[3140,3141,3142,3143,3144]],"id":"17109"},{"type":"Polygon","arcs":[[3145,3146,3147,3148,3149]],"id":"39143"},{"type":"Polygon","arcs":[[-2759,3150,-1169,3151,3152,-844,-2739]],"id":"17191"},{"type":"Polygon","arcs":[[3153,3154,3155,3156,3157,3158]],"id":"48243"},{"type":"Polygon","arcs":[[3159,-841,3160,-3088,3161,3162]],"id":"27143"},{"type":"Polygon","arcs":[[3163,-1078,3164,-1777]],"id":"48275"},{"type":"Polygon","arcs":[[3165,3166,3167,3168,3169,3170,3171]],"id":"17163"},{"type":"Polygon","arcs":[[-771,3172,3173,3174,-1003]],"id":"26011"},{"type":"Polygon","arcs":[[-1355,3175,3176,3177,-1164,3178]],"id":"17079"},{"type":"Polygon","arcs":[[-1521,-2999,3179,-3048,3180,3181]],"id":"20027"},{"type":"Polygon","arcs":[[3182,3183,3184,3185,-1977,-3025,-2790,3186,3187]],"id":"16049"},{"type":"Polygon","arcs":[[3188,-1622,3189,-2138]],"id":"38079"},{"type":"Polygon","arcs":[[-2917,-173,-2651,3190,-883]],"id":"20179"},{"type":"Polygon","arcs":[[3191,3192,-3042,-536,-2528]],"id":"48299"},{"type":"Polygon","arcs":[[3193,3194,3195,-2276,3196,3197,3198]],"id":"08101"},{"type":"Polygon","arcs":[[3199,3200,-2551,3201,3202]],"id":"41015"},{"type":"Polygon","arcs":[[3203,-2538,3204,3205,-1030,3206]],"id":"28159"},{"type":"Polygon","arcs":[[-2594,-1948,3207,3208,-1036]],"id":"31099"},{"type":"Polygon","arcs":[[-2419,3209,3210,3211,-1100,3212,3213]],"id":"72019"},{"type":"Polygon","arcs":[[3214,-2366,3215,3216,3217,3218,3219,3220]],"id":"54103"},{"type":"Polygon","arcs":[[3221,-827,3222,3223]],"id":"13201"},{"type":"Polygon","arcs":[[-1835,3224,3225,3226,-156]],"id":"08003"},{"type":"Polygon","arcs":[[-767,-2462,-724,3227,3228,-1024]],"id":"20097"},{"type":"Polygon","arcs":[[3229,3230,3231,-700]],"id":"38041"},{"type":"Polygon","arcs":[[-3077,3232,3233,3234,3235,3236]],"id":"27109"},{"type":"Polygon","arcs":[[3237,-2415,3238,-1726]],"id":"72077"},{"type":"Polygon","arcs":[[-1832,3239,-2623,-1132,3240,3241]],"id":"19047"},{"type":"Polygon","arcs":[[3242,3243,3244,-1239,3245,-2491]],"id":"20139"},{"type":"Polygon","arcs":[[3246,-217,3247,-759,-1816]],"id":"19075"},{"type":"Polygon","arcs":[[3248,3249,-886,3250,-1187,3251]],"id":"20181"},{"type":"Polygon","arcs":[[-2063,3252,3253,3254,3255]],"id":"72121"},{"type":"Polygon","arcs":[[-2622,3256,3257,-1133]],"id":"19009"},{"type":"MultiPolygon","arcs":[[[3258]],[[3259]],[[3260]],[[3261]],[[3262,-731,3263,3264,3265,3266]]],"id":"23009"},{"type":"Polygon","arcs":[[3267,3268,3269,3270,3271,3272]],"id":"05081"},{"type":"Polygon","arcs":[[3273,3274,3275,3276]],"id":"05143"},{"type":"Polygon","arcs":[[3277,3278,3279,3280,-2472,3281]],"id":"05119"},{"type":"Polygon","arcs":[[3282,3283,3284,3285,-3279,3286]],"id":"05085"},{"type":"Polygon","arcs":[[3287,3288,3289,3290,3291,3292,3293]],"id":"08009"},{"type":"Polygon","arcs":[[3294,3295,3296,3297,3298,3299,3300,3301]],"id":"16031"},{"type":"Polygon","arcs":[[3302,3303,3304,3305,3306,3307,3308]],"id":"01021"},{"type":"Polygon","arcs":[[-1937,3309,3310,3311,3312,-191]],"id":"13081"},{"type":"Polygon","arcs":[[3313,3314,-1479,-1490,3315]],"id":"27083"},{"type":"Polygon","arcs":[[3316,3317,3318,3319,3320,3321]],"id":"51049"},{"type":"Polygon","arcs":[[3322,3323,3324,3325,3326,3327]],"id":"31133"},{"type":"Polygon","arcs":[[-2557,3328,-530,3329,-1653]],"id":"48483"},{"type":"Polygon","arcs":[[-387,3330,3331,-30,-2508,-678]],"id":"38091"},{"type":"Polygon","arcs":[[-909,-956,-2318,-376,3332]],"id":"31185"},{"type":"Polygon","arcs":[[-2577,-894,3333,3334]],"id":"26079"},{"type":"Polygon","arcs":[[-2583,3335,3336,-2132,-2685,-2648]],"id":"20163"},{"type":"Polygon","arcs":[[3337,3338,3339,-3176,-1354]],"id":"17035"},{"type":"Polygon","arcs":[[3340,3341,3342,3343,-2066,3344,3345]],"id":"54101"},{"type":"Polygon","arcs":[[3346,3347,3348,3349,3350]],"id":"28139"},{"type":"Polygon","arcs":[[3351,3352,3353,3354,3355,3356,-3125,3357]],"id":"13069"},{"type":"Polygon","arcs":[[3358,3359,3360,3361,3362]],"id":"20169"},{"type":"Polygon","arcs":[[3363,3364,3365,3366]],"id":"28119"},{"type":"Polygon","arcs":[[-2626,-2509,-1651,-330,3367,-2171]],"id":"38045"},{"type":"Polygon","arcs":[[3368,-3363,3369,3370,3371,3372]],"id":"20053"},{"type":"Polygon","arcs":[[3373,3374,3375,-63,3376,3377,3378,3379]],"id":"18055"},{"type":"Polygon","arcs":[[3380,3381,-1682,3382,3383,3384,-2383]],"id":"29001"},{"type":"Polygon","arcs":[[3385,3386,3387,3388,-933,3389]],"id":"39075"},{"type":"Polygon","arcs":[[-2207,-2224,3390,3391,3392]],"id":"05029"},{"type":"Polygon","arcs":[[-1553,-1274,3393,3394,3395]],"id":"18131"},{"type":"Polygon","arcs":[[3396,3397,3398,3399,-3211]],"id":"72045"},{"type":"Polygon","arcs":[[3400,3401,-228,-774,3402,-2902]],"id":"31077"},{"type":"Polygon","arcs":[[3403,-544,-2277,-2864]],"id":"48107"},{"type":"Polygon","arcs":[[3404,3405,3406,3407,3408,3409,3410]],"id":"21083"},{"type":"Polygon","arcs":[[3411,3412,3413,3414,3415,3416]],"id":"21171"},{"type":"Polygon","arcs":[[3417,-1352,3418,3419]],"id":"17005"},{"type":"Polygon","arcs":[[3420,3421,3422,3423,3424,3425,3426]],"id":"05097"},{"type":"Polygon","arcs":[[3427,3428,3429,3430,3431,-1207]],"id":"47159"},{"type":"Polygon","arcs":[[3432,3433,3434,3435,3436,3437]],"id":"17045"},{"type":"Polygon","arcs":[[3438,3439,3440,3441,3442,3443]],"id":"42021"},{"type":"Polygon","arcs":[[3444,3445,3446,3447,3448,3449]],"id":"41043"},{"type":"Polygon","arcs":[[-850,-338,3450,-3163,3451,3452,3453,3454,3455]],"id":"27129"},{"type":"Polygon","arcs":[[3456,3457,3458,3459,-1366,-2078]],"id":"27153"},{"type":"Polygon","arcs":[[3460,3461,3462,3463,-3446,3464]],"id":"41047"},{"type":"Polygon","arcs":[[3465,-231,3466,3467,3468,3469,3470]],"id":"42071"},{"type":"Polygon","arcs":[[3471,3472,3473,3474,-2222]],"id":"05023"},{"type":"Polygon","arcs":[[3475,3476,-3353,3477,3478]],"id":"13017"},{"type":"MultiPolygon","arcs":[[[3479]],[[3480]],[[3481]],[[3482,3483]]],"id":"15009"},{"type":"Polygon","arcs":[[3484,3485,3486,3487,3488,-1561]],"id":"29169"},{"type":"Polygon","arcs":[[-1395,3489,-915,-547]],"id":"48311"},{"type":"Polygon","arcs":[[-1014,-951,-2617,-282,3490,3491]],"id":"19113"},{"type":"Polygon","arcs":[[-409,-616,3492,-1203,-2558,-1652,-2776]],"id":"48393"},{"type":"Polygon","arcs":[[-1846,3493,-2850,3494,-278,-1221]],"id":"19107"},{"type":"Polygon","arcs":[[-2050,3495,3496,3497,3498,3499]],"id":"39073"},{"type":"Polygon","arcs":[[3500,3501,3502,3503,3504]],"id":"13053"},{"type":"Polygon","arcs":[[3505,-2500,3506,3507,-1450]],"id":"30065"},{"type":"Polygon","arcs":[[3508,-630,3509,3510]],"id":"13149"},{"type":"Polygon","arcs":[[3511,3512]],"id":"27031"},{"type":"Polygon","arcs":[[3513,3514,-2618,-3240,-1831]],"id":"19161"},{"type":"Polygon","arcs":[[3515,3516,3517,-2601,3518]],"id":"37145"},{"type":"Polygon","arcs":[[-2356,-1751,3519]],"id":"02185"},{"type":"Polygon","arcs":[[3520,3521,3522]],"id":"72095"},{"type":"Polygon","arcs":[[3523,-2144,3524,3525,-2097]],"id":"18069"},{"type":"Polygon","arcs":[[3526,-2932,3527,3528,3529,3530,-2253]],"id":"29093"},{"type":"Polygon","arcs":[[-543,-2297,-1053,3531,-2278]],"id":"48263"},{"type":"Polygon","arcs":[[3532,3533,-2380,3534,3535,3536,3537,3538]],"id":"51155"},{"type":"Polygon","arcs":[[3539,-1675,-1569,3540,3541,-2398]],"id":"29025"},{"type":"Polygon","arcs":[[3542,3543,3544,3545,3546,3547]],"id":"01073"},{"type":"Polygon","arcs":[[3548]],"id":"15001"},{"type":"Polygon","arcs":[[3549,3550,3551,3552]],"id":"53023"},{"type":"Polygon","arcs":[[3553,3554,3555,3556,3557]],"id":"01027"},{"type":"Polygon","arcs":[[3558,3559,-1833,3560,3561,3562,3563]],"id":"19193"},{"type":"Polygon","arcs":[[3564,-1135,3565,-2750,3566,3567,3568,3569]],"id":"19155"},{"type":"Polygon","arcs":[[-1820,3570,3571,3572,-3297,3573,-17,3574,3575]],"id":"16013"},{"type":"MultiPolygon","arcs":[[[3576]],[[3577,3578,-3267,3579,3580,3581,3582]]],"id":"23027"},{"type":"Polygon","arcs":[[3583,3584,3585,3586,3587,3588]],"id":"25025"},{"type":"Polygon","arcs":[[3589,3590,3591,3592,3593,3594]],"id":"25011"},{"type":"Polygon","arcs":[[-1004,-3175,3595,3596,-2960,-2130]],"id":"26017"},{"type":"Polygon","arcs":[[3597,3598,-3316,-1489,3599]],"id":"27081"},{"type":"Polygon","arcs":[[3600,3601,3602,3603,3604,3605]],"id":"28011"},{"type":"Polygon","arcs":[[3606,3607,3608,-1028,-984]],"id":"26007"},{"type":"Polygon","arcs":[[3609,3610,3611,3612,3613]],"id":"26053"},{"type":"Polygon","arcs":[[3614,-315,3615,3616,-3578,3617,3618]],"id":"23025"},{"type":"Polygon","arcs":[[3619,3620,3621,3622,3623,3624,3625,3626,3627]],"id":"28149"},{"type":"Polygon","arcs":[[3628,3629,3630,3631,3632,3633,3634]],"id":"36075"},{"type":"Polygon","arcs":[[3635,-3454,3636,-1323,-1480,-3315]],"id":"27127"},{"type":"Polygon","arcs":[[3637,3638,3639,3640,3641,3642,3643]],"id":"39095"},{"type":"Polygon","arcs":[[3644,-286,3645,3646,3647]],"id":"19139"},{"type":"Polygon","arcs":[[-520,3648,3649,3650,3651,3652]],"id":"40033"},{"type":"Polygon","arcs":[[-3567,-2753,3653,3654,3655]],"id":"19129"},{"type":"Polygon","arcs":[[3656,3657,3658,3659]],"id":"36059"},{"type":"Polygon","arcs":[[3660,3661,3662,3663,3664,3665]],"id":"30109"},{"type":"Polygon","arcs":[[3666,3667,3668,3669,3670]],"id":"29155"},{"type":"Polygon","arcs":[[3671,3672,3673,3674,3675,-2713]],"id":"29127"},{"type":"Polygon","arcs":[[3676,3677,-1604,3678,3679]],"id":"35017"},{"type":"Polygon","arcs":[[3680,-164,3681,3682,3683,3684,3685,3686]],"id":"51107"},{"type":"Polygon","arcs":[[3687,3688,3689,3690,3691,-1406]],"id":"46105"},{"type":"Polygon","arcs":[[3692,-3046,3693,3694,3695]],"id":"48091"},{"type":"Polygon","arcs":[[3696,-2689,3697,3698]],"id":"48505"},{"type":"MultiPolygon","arcs":[[[3699,3700,3701,3702]],[[3703,3704,3705,3706]],[[3707,3708,3709]]],"id":"48007"},{"type":"Polygon","arcs":[[3710,3711,3712,3713,3714,3715]],"id":"48361"},{"type":"Polygon","arcs":[[3716,-3083,3717,3718,3719]],"id":"48495"},{"type":"Polygon","arcs":[[3720,3721,3722,3723,3724,3725]],"id":"51011"},{"type":"Polygon","arcs":[[3726,3727,3728,-1088,3729,3730,3731,-2437]],"id":"53025"},{"type":"Polygon","arcs":[[3732,-3219,3733,3734,-2986,3735]],"id":"54017"},{"type":"Polygon","arcs":[[3736,-552,3737,3738,-2067,-3344,3739]],"id":"54083"},{"type":"Polygon","arcs":[[-3111,3740,3741,-2893,3742]],"id":"19143"},{"type":"Polygon","arcs":[[-1300,3743,3744,3745,3746]],"id":"21189"},{"type":"Polygon","arcs":[[3747,3748,-1058,3749]],"id":"37181"},{"type":"Polygon","arcs":[[-711,3750,3751,3752,3753,3754]],"id":"04007"},{"type":"Polygon","arcs":[[3755,3756,3757,3758,-2220,-2205,3759]],"id":"05129"},{"type":"Polygon","arcs":[[3760,3761,3762,3763,3764,3765]],"id":"05095"},{"type":"Polygon","arcs":[[3766,3767,-2403,-2810]],"id":"12133"},{"type":"Polygon","arcs":[[3768,3769,-1750,3770,-2517,3771]],"id":"13217"},{"type":"Polygon","arcs":[[3772,3773,3774,-2968,3775,3776]],"id":"12119"},{"type":"Polygon","arcs":[[-1558,3777,-2787,3778,-69,3779]],"id":"18031"},{"type":"Polygon","arcs":[[3780,3781,3782,-1013,-2755]],"id":"19065"},{"type":"Polygon","arcs":[[3783,-761,-1847,-1219,-1837,-1858]],"id":"19099"},{"type":"Polygon","arcs":[[3784,3785,-1301,-3747,3786,3787,3788]],"id":"21109"},{"type":"Polygon","arcs":[[3789,3790,3791,-3621,3792,3793]],"id":"22035"},{"type":"Polygon","arcs":[[-836,3794,3795,3796,3797,3798]],"id":"22113"},{"type":"Polygon","arcs":[[3799,3800,3801,3802,-833,3803]],"id":"22039"},{"type":"Polygon","arcs":[[3804,-1676,-3540,-2397,3805,3806]],"id":"29063"},{"type":"Polygon","arcs":[[-1284,3807,3808,3809,-2929,3810,3811]],"id":"29071"},{"type":"Polygon","arcs":[[3812,3813,-3323,3814]],"id":"31097"},{"type":"Polygon","arcs":[[3815,-656,3816,-3401,-2901,-572]],"id":"31183"},{"type":"Polygon","arcs":[[3817,3818,3819,3820,-1600,-3678,3821]],"id":"35051"},{"type":"Polygon","arcs":[[3822,3823,3824,3825,3826,3827]],"id":"37107"},{"type":"Polygon","arcs":[[3828,3829,3830,3831,3832,3833]],"id":"37045"},{"type":"Polygon","arcs":[[3834,3835,3836,3837,3838]],"id":"31105"},{"type":"Polygon","arcs":[[3839,3840,-2179,3841,3842,3843]],"id":"40145"},{"type":"Polygon","arcs":[[3844,3845,3846,3847]],"id":"40027"},{"type":"Polygon","arcs":[[3848,3849,3850,-2335]],"id":"40099"},{"type":"Polygon","arcs":[[3851,3852,3853,3854,-996]],"id":"42003"},{"type":"Polygon","arcs":[[3855,3856,3857,-3015,3858,3859,3860]],"id":"45087"},{"type":"Polygon","arcs":[[3861,-266,-2180,3862]],"id":"46065"},{"type":"Polygon","arcs":[[3863,3864,3865,3866,3867,3868]],"id":"21235"},{"type":"Polygon","arcs":[[3869,3870,-1052,3871,3872,3873]],"id":"37175"},{"type":"Polygon","arcs":[[3874,3875,3876,3877,3878,3879,-3825]],"id":"37049"},{"type":"Polygon","arcs":[[-2296,3880,-242,-2292,-398,-1055]],"id":"48253"},{"type":"Polygon","arcs":[[3881]],"id":"51720"},{"type":"Polygon","arcs":[[3882,3883,3884,3885,3886,3887]],"id":"39105"},{"type":"Polygon","arcs":[[3888,3889,-3888,3890,3891,3892]],"id":"39053"},{"type":"Polygon","arcs":[[3893,-3345,-2071,3894,3895,3896,3897,3898]],"id":"54025"},{"type":"MultiPolygon","arcs":[[[3899,3900]]],"id":"78030"},{"type":"Polygon","arcs":[[3901,3902,3903,-595,3904]],"id":"05111"},{"type":"Polygon","arcs":[[3905,3906,3907,-2683,3908,3909,3910]],"id":"06099"},{"type":"Polygon","arcs":[[3911,3912,3913,3914,3915]],"id":"06011"},{"type":"Polygon","arcs":[[3916,3917,3918,3919,3920]],"id":"13089"},{"type":"Polygon","arcs":[[3921,3922,3923,3924,3925]],"id":"13311"},{"type":"Polygon","arcs":[[3926,3927,3928,-752,3929,3930]],"id":"13115"},{"type":"Polygon","arcs":[[3931,-20,3932,3933,3934]],"id":"16047"},{"type":"Polygon","arcs":[[3935,-969,-1126,3936,3937,3938]],"id":"17141"},{"type":"Polygon","arcs":[[3939,3940,3941,-3662,3942]],"id":"30083"},{"type":"Polygon","arcs":[[3943,3944,3945,3946,3947]],"id":"37065"},{"type":"Polygon","arcs":[[3948,3949,-617,-920,3950]],"id":"48421"},{"type":"Polygon","arcs":[[3951,3952,3953,3954,3955]],"id":"01017"},{"type":"Polygon","arcs":[[-1249,-1254,3956,3957,-2679,3958]],"id":"06003"},{"type":"Polygon","arcs":[[-2549,3959,3960,3961,-554,-2951,3962,3963]],"id":"06093"},{"type":"Polygon","arcs":[[3964,3965,3966,-1215]],"id":"08083"},{"type":"Polygon","arcs":[[3967,3968,-2087,3969,3970,3971]],"id":"13213"},{"type":"Polygon","arcs":[[3972,3973,3974,3975,3976,-3299]],"id":"16071"},{"type":"Polygon","arcs":[[3977,3978,3979,3980,3981,3982]],"id":"18129"},{"type":"Polygon","arcs":[[3983,3984,3985,3986,3987,3988,3989,3990,3991]],"id":"21093"},{"type":"Polygon","arcs":[[-3714,3992,3993,-3798,3994,3995]],"id":"22023"},{"type":"Polygon","arcs":[[3996,3997,3998,3999,-1236]],"id":"20121"},{"type":"Polygon","arcs":[[-2792,-1822,4000,4001,-2981]],"id":"16015"},{"type":"Polygon","arcs":[[-2608,4002,4003,4004,4005,4006,4007]],"id":"16019"},{"type":"Polygon","arcs":[[4008,4009,4010,4011,4012,4013,4014]],"id":"25023"},{"type":"Polygon","arcs":[[4015,4016,4017,4018,4019,4020,4021,4022]],"id":"22077"},{"type":"Polygon","arcs":[[4023,4024,-1640,-196,4025]],"id":"26043"},{"type":"Polygon","arcs":[[-2481,-1584,4026,4027,-1624,4028]],"id":"29097"},{"type":"Polygon","arcs":[[4029,-2587,4030,4031,4032,4033]],"id":"20189"},{"type":"Polygon","arcs":[[4034,4035,4036,4037,4038,4039]],"id":"17085"},{"type":"Polygon","arcs":[[-3143,4040,-1792,4041,-1852,4042,4043]],"id":"17057"},{"type":"Polygon","arcs":[[4044,-744,4045,4046,4047,-382]],"id":"36055"},{"type":"Polygon","arcs":[[4048,-3513,4049,-2841]],"id":"27075"},{"type":"Polygon","arcs":[[4050,4051,4052,4053,4054]],"id":"41037"},{"type":"MultiPolygon","arcs":[[[4055,4056]],[[4057]],[[4058]]],"id":"44005"},{"type":"Polygon","arcs":[[4059,4060,4061,4062,4063,4064,4065]],"id":"36043"},{"type":"Polygon","arcs":[[4066,-3293,4067,4068,4069,4070,4071,4072]],"id":"35059"},{"type":"Polygon","arcs":[[4073,4074,4075,4076,4077,4078]],"id":"48071"},{"type":"Polygon","arcs":[[4079,4080,4081,-3728,4082,-2428,4083,4084]],"id":"53047"},{"type":"Polygon","arcs":[[4085,4086,4087,4088,-3545,4089]],"id":"01115"},{"type":"Polygon","arcs":[[4090,4091,4092,4093,4094]],"id":"55059"},{"type":"Polygon","arcs":[[-939,4095,4096,4097,-111,4098,4099]],"id":"72075"},{"type":"Polygon","arcs":[[-419,-2732,4100,4101]],"id":"55077"},{"type":"Polygon","arcs":[[-430,4102,4103,4104,4105,-1437,-1467,4106]],"id":"55099"},{"type":"Polygon","arcs":[[4107,-2412,4108,4109]],"id":"72087"},{"type":"Polygon","arcs":[[-2290,4110,4111,4112,-714,4113,4114]],"id":"16079"},{"type":"Polygon","arcs":[[4115,4116,-1952,4117,4118,4119]],"id":"37027"},{"type":"Polygon","arcs":[[4120,4121,4122,4123]],"id":"38065"},{"type":"Polygon","arcs":[[-3325,4124,4125,4126,4127,4128]],"id":"31147"},{"type":"Polygon","arcs":[[4129,4130,-2915,4131,-1577]],"id":"31145"},{"type":"Polygon","arcs":[[4132,4133,4134,-3716,4135,4136]],"id":"48199"},{"type":"Polygon","arcs":[[4137,4138,-1073,4139,4140,4141,4142,4143]],"id":"01077"},{"type":"Polygon","arcs":[[-493,4144,4145,4146,-3274,4147,4148]],"id":"05007"},{"type":"Polygon","arcs":[[4149,4150,-1802,-2749,-1148,4151,-2871]],"id":"17011"},{"type":"Polygon","arcs":[[-2098,-3526,4152,4153,4154,4155,4156,4157,-2166]],"id":"18053"},{"type":"Polygon","arcs":[[-3334,-1580,-887,-2829,4158]],"id":"26113"},{"type":"Polygon","arcs":[[-1335,-436,-1295,-1308,4159,-372]],"id":"26117"},{"type":"Polygon","arcs":[[-1563,4160,-2233,-897]],"id":"29229"},{"type":"Polygon","arcs":[[-1562,-3489,4161,-2256,-2263,4162,-2234,-4161]],"id":"29215"},{"type":"Polygon","arcs":[[4163,4164,4165,4166,-3529]],"id":"29123"},{"type":"Polygon","arcs":[[4167,4168,4169,-2105,-2447,4170,4171]],"id":"28085"},{"type":"Polygon","arcs":[[4172,4173,4174,4175,4176]],"id":"35011"},{"type":"Polygon","arcs":[[4177,-3946,4178,4179,-3875,-3824,4180]],"id":"37147"},{"type":"Polygon","arcs":[[4181,-4123,4182,4183,4184,4185,4186]],"id":"38059"},{"type":"Polygon","arcs":[[4187,4188,4189,4190,-88,4191,-3148]],"id":"39077"},{"type":"Polygon","arcs":[[-2718,4192,-3843,4193,4194,4195]],"id":"40111"},{"type":"Polygon","arcs":[[4196,4197,4198,4199,4200,4201,4202,4203]],"id":"45041"},{"type":"Polygon","arcs":[[4204,4205,4206,4207,4208]],"id":"45081"},{"type":"Polygon","arcs":[[4209,4210,-3984,4211,4212,4213]],"id":"21027"},{"type":"Polygon","arcs":[[-3981,4214,4215,4216,4217,4218]],"id":"21225"},{"type":"Polygon","arcs":[[4219,4220,4221,-421,4222,4223]],"id":"21231"},{"type":"Polygon","arcs":[[4224,-2710,4225,4226,4227,4228]],"id":"21211"},{"type":"Polygon","arcs":[[-3826,-3880,4229,-2392,4230]],"id":"37103"},{"type":"Polygon","arcs":[[4231,4232,4233,4234,4235]],"id":"47105"},{"type":"Polygon","arcs":[[4236,4237,4238,-942,4239,4240]],"id":"48217"},{"type":"Polygon","arcs":[[4241,4242,4243,4244,4245,4246,4247]],"id":"51087"},{"type":"Polygon","arcs":[[4248,4249,4250,-822,4251]],"id":"39019"},{"type":"Polygon","arcs":[[-2677,4252,4253,4254,-385,4255]],"id":"38099"},{"type":"Polygon","arcs":[[4256,4257,4258,-2696,4259,-1996,-1439]],"id":"55067"},{"type":"Polygon","arcs":[[4260,4261,-1470,-2193,4262,4263]],"id":"55017"},{"type":"Polygon","arcs":[[4264,4265,4266,4267,4268]],"id":"22101"},{"type":"Polygon","arcs":[[4269,4270,4271,4272,4273]],"id":"72023"},{"type":"Polygon","arcs":[[4274,4275,4276,4277,4278,4279]],"id":"41009"},{"type":"Polygon","arcs":[[4280,4281,-2044,4282,4283,4284,-4052]],"id":"41025"},{"type":"Polygon","arcs":[[4285,-1697,4286,4287,4288,4289]],"id":"48491"},{"type":"Polygon","arcs":[[4290,4291,4292,4293,-348]],"id":"49009"},{"type":"Polygon","arcs":[[4294,4295,-1891,4296,4297]],"id":"48271"},{"type":"Polygon","arcs":[[4298,-344,4299,4300,4301]],"id":"49029"},{"type":"Polygon","arcs":[[4302,4303]],"id":"51620"},{"type":"MultiPolygon","arcs":[[[4304]],[[4305,4306,4307,4308,-1012,4309,-1853,4310,4311]]],"id":"08005"},{"type":"Polygon","arcs":[[4312,4313,4314,4315,4316,-3928,4317,4318]],"id":"13295"},{"type":"Polygon","arcs":[[4319,4320,4321,4322,4323,4324]],"id":"18121"},{"type":"Polygon","arcs":[[4325,-72,4326,4327,4328]],"id":"18143"},{"type":"Polygon","arcs":[[-2780,4329,4330,4331,4332,4333]],"id":"21227"},{"type":"Polygon","arcs":[[4334,4335,-1246,4336,4337]],"id":"22081"},{"type":"Polygon","arcs":[[-3453,4338,4339,-1940,-1324,-3637]],"id":"27015"},{"type":"Polygon","arcs":[[4340,4341,4342,4343,-1286,4344,4345]],"id":"29139"},{"type":"Polygon","arcs":[[-3670,4346,4347,4348,4349,4350,4351,-3903,4352,4353]],"id":"05093"},{"type":"Polygon","arcs":[[4354,4355,4356,4357,-1257,4358]],"id":"05049"},{"type":"Polygon","arcs":[[4359,4360,-4319,4361,4362,4363,4364]],"id":"01049"},{"type":"Polygon","arcs":[[4365,4366,4367,-3421,4368,4369]],"id":"05127"},{"type":"Polygon","arcs":[[-3202,-2550,-3964,4370,4371]],"id":"06015"},{"type":"Polygon","arcs":[[4372,-970,-3936,4373,-4037,4374]],"id":"17177"},{"type":"Polygon","arcs":[[4375,4376,4377,4378,4379,4380]],"id":"18025"},{"type":"Polygon","arcs":[[4381,4382,4383,4384]],"id":"18043"},{"type":"Polygon","arcs":[[-3003,4385,4386,4387,4388,4389]],"id":"13179"},{"type":"Polygon","arcs":[[-19,4390,-3295,4391,-3933]],"id":"16053"},{"type":"Polygon","arcs":[[4392,4393,4394,4395,4396]],"id":"24045"},{"type":"Polygon","arcs":[[4397,4398,4399,4400]],"id":"26013"},{"type":"Polygon","arcs":[[4401,4402,4403,4404,4405,-1,4406,4407]],"id":"32017"},{"type":"Polygon","arcs":[[4408,4409,4410,4411,4412]],"id":"34011"},{"type":"Polygon","arcs":[[4413,4414,4415,4416]],"id":"18115"},{"type":"Polygon","arcs":[[4417,4418,4419,4420,4421,4422]],"id":"36061"},{"type":"Polygon","arcs":[[4423,4424,-4061,4425,4426,4427]],"id":"36089"},{"type":"Polygon","arcs":[[4428,4429,-4172,4430,4431,4432]],"id":"28063"},{"type":"Polygon","arcs":[[4433,-2657,4434,4435,4436,4437]],"id":"40023"},{"type":"Polygon","arcs":[[4438,4439,4440,-2121,4441,4442,4443,4444,-3674]],"id":"17149"},{"type":"Polygon","arcs":[[4445,4446,4447,4448,-2155]],"id":"19057"},{"type":"Polygon","arcs":[[4449,4450,4451,-3941,4452,4453]],"id":"30085"},{"type":"Polygon","arcs":[[4454,4455,4456,4457,-1050,4458,4459,4460]],"id":"45007"},{"type":"Polygon","arcs":[[4461,4462,-2493,4463,4464]],"id":"46033"},{"type":"Polygon","arcs":[[4465,-4350,4466,4467,4468,4469,4470]],"id":"47157"},{"type":"Polygon","arcs":[[4471,4472,4473,4474,4475]],"id":"34019"},{"type":"Polygon","arcs":[[4476,4477,-796,-2976,4478],[-1268]],"id":"51089"},{"type":"Polygon","arcs":[[-2228,4479,4480,4481]],"id":"51650"},{"type":"Polygon","arcs":[[4482,4483,-288,-2498,4484,4485]],"id":"30071"},{"type":"Polygon","arcs":[[4486,4487,4488,4489,4490,4491,-3355]],"id":"13161"},{"type":"Polygon","arcs":[[4492,-4006,4493,4494,4495,4496,4497,4498]],"id":"56023"},{"type":"Polygon","arcs":[[4499,4500,4501,4502,4503]],"id":"01063"},{"type":"Polygon","arcs":[[4504,4505,-3269,4506,4507]],"id":"05061"},{"type":"Polygon","arcs":[[4508,4509,4510,-2069]],"id":"51091"},{"type":"Polygon","arcs":[[4511,4512,4513,4514]],"id":"51101"},{"type":"MultiPolygon","arcs":[[[4515]],[[4516,4517,-428,4518]]],"id":"55007"},{"type":"Polygon","arcs":[[4519,4520,4521,4522,-2775,4523,4524,4525]],"id":"55123"},{"type":"Polygon","arcs":[[-655,4526,4527,-224,-3402,-3817]],"id":"31011"},{"type":"Polygon","arcs":[[-4127,4528,4529,4530,4531,4532]],"id":"20043"},{"type":"Polygon","arcs":[[-2903,-3403,-778,-2592,-579]],"id":"31163"},{"type":"Polygon","arcs":[[4533,4534,4535,-2599,4536]],"id":"32021"},{"type":"Polygon","arcs":[[4537,4538,4539,4540,-1382]],"id":"47083"},{"type":"MultiPolygon","arcs":[[[-3705,4541]],[[4542,4543,4544,-3701,4545,4546,4547]]],"id":"48057"},{"type":"Polygon","arcs":[[4548,-3931,4549,4550,4551,4552,-4363]],"id":"01019"},{"type":"Polygon","arcs":[[-1451,-3508,4553,4554,4555,4556,4557]],"id":"30111"},{"type":"Polygon","arcs":[[-776,4558,4559,-1945,-2593]],"id":"31079"},{"type":"Polygon","arcs":[[4560,4561,4562,-3022,4563]],"id":"31017"},{"type":"Polygon","arcs":[[4564,-2884,4565,4566]],"id":"35061"},{"type":"Polygon","arcs":[[4567,4568,4569,4570,-2880,4571]],"id":"35047"},{"type":"Polygon","arcs":[[4572,-2977,-3062,4573,4574,-1288]],"id":"37067"},{"type":"Polygon","arcs":[[4575,4576,-3828,4577,4578,4579]],"id":"37191"},{"type":"Polygon","arcs":[[4580,4581,4582,4583,4584]],"id":"37017"},{"type":"Polygon","arcs":[[4585,4586,-1507,4587,4588,4589,-2589,-1961]],"id":"30059"},{"type":"Polygon","arcs":[[4590,4591,-3789,4592,4593,4594]],"id":"21203"},{"type":"Polygon","arcs":[[4595,4596,-4209,4597,4598,4599]],"id":"45047"},{"type":"Polygon","arcs":[[4600,4601,-4214,4602,4603]],"id":"21091"},{"type":"Polygon","arcs":[[4604,4605,4606,4607,4608,4609,4610]],"id":"21045"},{"type":"Polygon","arcs":[[4611,4612,4613,4614,4615]],"id":"21113"},{"type":"Polygon","arcs":[[4616,4617,-1047,4618]],"id":"37149"},{"type":"Polygon","arcs":[[4619,4620,4621,4622,4623]],"id":"37121"},{"type":"Polygon","arcs":[[4624,4625,4626,4627,4628,4629]],"id":"37053"},{"type":"MultiPolygon","arcs":[[[-2381]],[[4630,4631,4632,4633,-3535,-2379,-3534]]],"id":"51121"},{"type":"Polygon","arcs":[[-4247,4634]],"id":"51760"},{"type":"Polygon","arcs":[[-3730,-1087,4635,4636,4637,4638]],"id":"53021"},{"type":"Polygon","arcs":[[-2418,4639,4640,-3397,-3210]],"id":"72105"},{"type":"Polygon","arcs":[[4641,-2339,4642,4643,4644,-3650]],"id":"40067"},{"type":"Polygon","arcs":[[4645,4646,4647,4648,4649,4650,4651]],"id":"47091"},{"type":"Polygon","arcs":[[4652,4653,4654,4655,4656]],"id":"47121"},{"type":"Polygon","arcs":[[-533,4657,-120,4658,-2181]],"id":"46015"},{"type":"Polygon","arcs":[[4659,4660,4661,4662,4663,-4238,4664]],"id":"48139"},{"type":"Polygon","arcs":[[-3651,-4645,4665,-1095,4666,4667]],"id":"48077"},{"type":"Polygon","arcs":[[4668,4669,-3726,4670,4671,4672]],"id":"51009"},{"type":"Polygon","arcs":[[4673,-1836,-600,4674]],"id":"08079"},{"type":"Polygon","arcs":[[4675,4676,4677,4678,4679,4680,4681,4682]],"id":"13107"},{"type":"Polygon","arcs":[[-4043,-1851,-1234,4683,4684,4685]],"id":"17125"},{"type":"Polygon","arcs":[[-1815,-1817,-762,-3784,-1857,-1090]],"id":"19169"},{"type":"Polygon","arcs":[[4686,4687,-3559,4688]],"id":"19149"},{"type":"Polygon","arcs":[[4689,4690,4691,4692,4693]],"id":"20173"},{"type":"Polygon","arcs":[[4694,-3056,4695,-2706,-4225,4696]],"id":"21103"},{"type":"Polygon","arcs":[[4697,4698,4699]],"id":"22089"},{"type":"Polygon","arcs":[[-4142,4700,4701,4702]],"id":"01033"},{"type":"Polygon","arcs":[[4703,4704,4705,4706,-276,4707,4708]],"id":"04019"},{"type":"Polygon","arcs":[[4709,4710,-3680,4711,4712,4713]],"id":"04011"},{"type":"Polygon","arcs":[[4714,4715,-598,4716,-3761,4717]],"id":"05147"},{"type":"Polygon","arcs":[[-1811,4718,4719,4720]],"id":"12099"},{"type":"Polygon","arcs":[[4721,4722,4723,4724,4725]],"id":"13127"},{"type":"Polygon","arcs":[[4726,-3140,4727,4728,-693]],"id":"19007"},{"type":"Polygon","arcs":[[4729,4730,-4040,4731,-2614,-949]],"id":"19061"},{"type":"Polygon","arcs":[[4732,4733,4734,4735,-3414,4736]],"id":"21057"},{"type":"MultiPolygon","arcs":[[[4737,4738,4739,4740,4741,-4265,4742,-3796]],[[4743]]],"id":"22045"},{"type":"Polygon","arcs":[[4744,4745,4746,-1166]],"id":"17101"},{"type":"Polygon","arcs":[[4747,4748,4749]],"id":"24037"},{"type":"Polygon","arcs":[[4750,4751,4752,4753,4754,4755]],"id":"22033"},{"type":"Polygon","arcs":[[4756,4757,4758,4759]],"id":"22043"},{"type":"Polygon","arcs":[[-1332,-369,-1336,4760]],"id":"26127"},{"type":"Polygon","arcs":[[4761,4762,4763,4764,-3813,4765]],"id":"31131"},{"type":"Polygon","arcs":[[4766,-4094,4767,4768,4769,-1121,4770]],"id":"17111"},{"type":"Polygon","arcs":[[4771,4772,4773,4774,-3336,-2582]],"id":"20183"},{"type":"Polygon","arcs":[[-4770,4775,4776,-1545,-1122]],"id":"17089"},{"type":"Polygon","arcs":[[-3820,4777,4778,4779,4780,4781,4782,4783]],"id":"35035"},{"type":"Polygon","arcs":[[4784,4785,-4380,4786,-4210,-4602]],"id":"18123"},{"type":"Polygon","arcs":[[-4746,4787,4788,-3379,4789,4790,4791,4792]],"id":"18083"},{"type":"Polygon","arcs":[[4793,4794,4795,4796,4797]],"id":"42049"},{"type":"Polygon","arcs":[[4798,4799,4800,4801,4802]],"id":"45019"},{"type":"Polygon","arcs":[[-3832,4803,4804,4805,-3012,-3858,4806]],"id":"45091"},{"type":"Polygon","arcs":[[4807,4808,4809,4810,4811]],"id":"45053"},{"type":"Polygon","arcs":[[4812,4813,4814,4815,4816,4817,4818,4819]],"id":"36071"},{"type":"Polygon","arcs":[[4820,4821,4822,-3591,4823]],"id":"50025"},{"type":"Polygon","arcs":[[-4712,-3679,-1603,4824,4825]],"id":"35023"},{"type":"Polygon","arcs":[[4826,4827,4828,-4567,4829,4830,4831]],"id":"35006"},{"type":"Polygon","arcs":[[-2389,4832,4833,4834,4835,4836,4837]],"id":"54055"},{"type":"Polygon","arcs":[[4838,4839,4840,-2367,-3215,4841]],"id":"54051"},{"type":"Polygon","arcs":[[4842,4843,4844,4845,4846,-2702,4847]],"id":"01101"},{"type":"Polygon","arcs":[[4848,-4364,-4553,4849,-4086,4850]],"id":"01055"},{"type":"Polygon","arcs":[[4851,-4702,4852,-2924,4853,4854]],"id":"01059"},{"type":"MultiPolygon","arcs":[[[-510,-2362,4855,4856,-2025,4857,4858,4859,4860]],[[4861]],[[4862]]],"id":"02050"},{"type":"Polygon","arcs":[[4863,-39,4864,4865,4866,4867,-4462]],"id":"46103"},{"type":"Polygon","arcs":[[4868,4869,-593,4870,-1425,4871]],"id":"46115"},{"type":"Polygon","arcs":[[4872,4873,-4689,-3564,4874,4875,4876]],"id":"46127"},{"type":"Polygon","arcs":[[4877,4878,4879,-4809]],"id":"45013"},{"type":"Polygon","arcs":[[4880,4881,4882,4883,4884,4885]],"id":"47029"},{"type":"Polygon","arcs":[[4886,4887,4888,-4476,4889,4890,4891,4892]],"id":"42017"},{"type":"Polygon","arcs":[[-1402,4893,4894,4895]],"id":"46009"},{"type":"Polygon","arcs":[[-4540,4896,4897,4898,4899,4900]],"id":"47043"},{"type":"Polygon","arcs":[[4901,4902,4903,4904,4905]],"id":"40105"},{"type":"Polygon","arcs":[[4906,-2327,-2314,4907,-4662,4908]],"id":"48257"},{"type":"Polygon","arcs":[[4909,4910,-1079,-3164,-1776,-271]],"id":"48155"},{"type":"Polygon","arcs":[[4911,4912,-4271]],"id":"72067"},{"type":"Polygon","arcs":[[4913,4914,4915,4916,4917]],"id":"23023"},{"type":"Polygon","arcs":[[4918,4919,-2322,4920,4921,4922]],"id":"48085"},{"type":"Polygon","arcs":[[-2853,-2966,-686,4923,-1686]],"id":"48093"},{"type":"Polygon","arcs":[[-706,4924,4925,-2258,-246]],"id":"48095"},{"type":"Polygon","arcs":[[4926,-2663,4927,4928,4929]],"id":"48103"},{"type":"Polygon","arcs":[[4930,4931,4932,4933,4934,-4780]],"id":"35015"},{"type":"Polygon","arcs":[[4935,4936,4937,-2257,-4162,-3488]],"id":"29161"},{"type":"Polygon","arcs":[[4938,4939,4940,-2209,4941,-4367]],"id":"05083"},{"type":"Polygon","arcs":[[-2399,-3542,4942,4943,4944,4945]],"id":"29177"},{"type":"Polygon","arcs":[[4946,-2597,4947,4948,-1979,4949,4950,-1139]],"id":"06027"},{"type":"Polygon","arcs":[[4951,4952,-3105,4953,4954,-3853]],"id":"42005"},{"type":"Polygon","arcs":[[4955,-2908,4956,4957,-3830,4958]],"id":"37109"},{"type":"Polygon","arcs":[[-4885,4959,4960,-3870,4961,4962,4963]],"id":"37087"},{"type":"Polygon","arcs":[[4964,4965,-2646,4966,4967,4968,4969]],"id":"47057"},{"type":"Polygon","arcs":[[4970,4971,4972,4973,4974]],"id":"42023"},{"type":"Polygon","arcs":[[-102,4975,-4877,4976,4977,4978]],"id":"46027"},{"type":"Polygon","arcs":[[4979,4980,4981,4982,4983]],"id":"42025"},{"type":"Polygon","arcs":[[4984,4985,4986,4987,4988,4989]],"id":"45025"},{"type":"Polygon","arcs":[[4990,4991,-4799,4992]],"id":"45035"},{"type":"Polygon","arcs":[[4993,4994,4995,4996,4997,4998,-1567]],"id":"29041"},{"type":"Polygon","arcs":[[4999,5000,-2515,5001,5002]],"id":"50011"},{"type":"Polygon","arcs":[[5003,5004,-4975,5005,-3102,5006]],"id":"42047"},{"type":"Polygon","arcs":[[5007,5008,5009]],"id":"51115"},{"type":"Polygon","arcs":[[5010,5011,5012,5013,-3486,5014,5015]],"id":"29131"},{"type":"Polygon","arcs":[[-292,5016,5017,5018,5019,5020]],"id":"30017"},{"type":"Polygon","arcs":[[-5020,5021,5022,5023,5024,5025,5026]],"id":"30075"},{"type":"Polygon","arcs":[[5027,-1321,5028,5029,5030]],"id":"21107"},{"type":"Polygon","arcs":[[5031,-2211,5032,5033,5034]],"id":"26003"},{"type":"Polygon","arcs":[[5035,5036,5037,5038,5039]],"id":"21115"},{"type":"Polygon","arcs":[[-1157,5040,-3438,5041,5042]],"id":"17041"},{"type":"Polygon","arcs":[[5043,5044,5045,5046,5047,5048]],"id":"21119"},{"type":"Polygon","arcs":[[5049,-645,5050,-4691,5051]],"id":"20079"},{"type":"Polygon","arcs":[[5052,-3166,5053]],"id":"29510"},{"type":"Polygon","arcs":[[-3442,5054,5055,5056,-318,5057]],"id":"42009"},{"type":"Polygon","arcs":[[-4128,-4533,5058,-2147,5059]],"id":"20013"},{"type":"Polygon","arcs":[[5060,5061,5062,5063,5064,5065]],"id":"05099"},{"type":"Polygon","arcs":[[-3426,5066,-5062,5067,-4505]],"id":"05109"},{"type":"Polygon","arcs":[[5068,5069,5070,5071,5072]],"id":"51730"},{"type":"Polygon","arcs":[[-4444,5073,5074,-4343,5075,5076]],"id":"29163"},{"type":"Polygon","arcs":[[-2958,5077,5078,5079,5080]],"id":"17083"},{"type":"Polygon","arcs":[[5081,-4202,5082,5083,5084,5085]],"id":"45027"},{"type":"Polygon","arcs":[[-2645,-1609,5086,-1465,5087,5088,-4967]],"id":"47073"},{"type":"Polygon","arcs":[[5089,5090,5091,-1172,-1444]],"id":"47077"},{"type":"Polygon","arcs":[[-4988,5092,-4197,5093,5094]],"id":"45031"},{"type":"Polygon","arcs":[[-3468,5095,5096,5097,5098,5099]],"id":"42029"},{"type":"Polygon","arcs":[[5100,5101,5102,5103,-4199]],"id":"45033"},{"type":"Polygon","arcs":[[5104,-3100,-4953,5105,-1658]],"id":"42031"},{"type":"Polygon","arcs":[[5106,-4026,-195,5107]],"id":"55037"},{"type":"Polygon","arcs":[[5108,-5007,-3101,-5105,-1657]],"id":"42053"},{"type":"Polygon","arcs":[[5109,5110,5111,5112,5113]],"id":"13049"},{"type":"Polygon","arcs":[[-602,-159,5114,5115,5116,5117,5118,5119]],"id":"35039"},{"type":"Polygon","arcs":[[5120,-4338,5121,5122,5123,-1082]],"id":"22031"},{"type":"Polygon","arcs":[[-3518,5124,5125,5126,-2602]],"id":"37063"},{"type":"Polygon","arcs":[[5127,5128,-4827,5129]],"id":"35031"},{"type":"Polygon","arcs":[[5130,5131,5132,5133,5134]],"id":"24013"},{"type":"MultiPolygon","arcs":[[[5135,5136]],[[-5099,5137,5138,5139,5140,5141,5142,5143]]],"id":"10003"},{"type":"Polygon","arcs":[[5144,5145,-3249,5146,-2891]],"id":"20023"},{"type":"Polygon","arcs":[[5147,5148,5149,5150,5151,-4491]],"id":"13001"},{"type":"Polygon","arcs":[[5152,5153,5154,-4843,5155,-3306]],"id":"01051"},{"type":"Polygon","arcs":[[5156,5157,-3965,-1214]],"id":"08033"},{"type":"Polygon","arcs":[[5158,-2203,5159,5160]],"id":"27069"},{"type":"Polygon","arcs":[[5161,-1722,5162,5163,-3711,-4135,5164]],"id":"48241"},{"type":"Polygon","arcs":[[5165,5166,5167,-4801,5168,5169]],"id":"45043"},{"type":"Polygon","arcs":[[5170,-3654,5171,5172,-4763]],"id":"19071"},{"type":"Polygon","arcs":[[5173,-4685,5174,5175,5176,5177]],"id":"17017"},{"type":"Polygon","arcs":[[5178,5179,5180,-4821,5181,5182,5183]],"id":"50027"},{"type":"Polygon","arcs":[[5184,-2112,5185,5186,-4121,5187,5188,5189]],"id":"38055"},{"type":"Polygon","arcs":[[5190,-4181,-3823,-4577]],"id":"37079"},{"type":"Polygon","arcs":[[5191,5192,5193,5194,5195]],"id":"17127"},{"type":"MultiPolygon","arcs":[[[5196,5197]],[[5198,-980,5199,-4393,5200]]],"id":"24019"},{"type":"Polygon","arcs":[[5201,-4114,-713,5202]],"id":"16055"},{"type":"Polygon","arcs":[[5203,5204,5205,5206]],"id":"09007"},{"type":"Polygon","arcs":[[5207,-2735,-2613,-880,5208,-3059,5209]],"id":"18039"},{"type":"Polygon","arcs":[[5210,-1190,-3075,-2835,5211,5212]],"id":"20071"},{"type":"Polygon","arcs":[[5213,-5177,5214,-2954,5215,-2119,-4441]],"id":"17137"},{"type":"Polygon","arcs":[[5216,5217,5218,-3865]],"id":"21121"},{"type":"Polygon","arcs":[[5219,-696,5220,5221,-1128]],"id":"19053"},{"type":"Polygon","arcs":[[5222,5223,5224,5225,5226,-5036,5227]],"id":"21127"},{"type":"Polygon","arcs":[[5228,5229,-553,-3737,5230,5231]],"id":"54001"},{"type":"Polygon","arcs":[[5232,5233,-3595,5234,5235,5236,5237,5238]],"id":"25003"},{"type":"Polygon","arcs":[[5239,-4341,5240,5241,5242]],"id":"29027"},{"type":"Polygon","arcs":[[5243,5244,5245,5246,5247,5248]],"id":"27073"},{"type":"Polygon","arcs":[[-2798,5249,-4242,5250,-3319,5251]],"id":"51075"},{"type":"Polygon","arcs":[[5252,5253,5254,-4495]],"id":"56035"},{"type":"Polygon","arcs":[[5255,5256,5257,5258,-3976]],"id":"49005"},{"type":"Polygon","arcs":[[-1225,5259,-2246,-2286,5260]],"id":"30053"},{"type":"Polygon","arcs":[[5261,5262,5263,5264,5265,5266,5267]],"id":"12001"},{"type":"Polygon","arcs":[[-4614,5268,5269,5270,-3785,-4592,5271]],"id":"21151"},{"type":"Polygon","arcs":[[5272,5273,5274,-2727,5275,5276,-1905]],"id":"48177"},{"type":"Polygon","arcs":[[5277,5278,-657,-3816,-571,5279,5280]],"id":"31089"},{"type":"Polygon","arcs":[[5281,5282,-4580,5283,5284,5285]],"id":"37101"},{"type":"Polygon","arcs":[[5286,-2873,-1788,5287,5288,-4447,5289]],"id":"17131"},{"type":"Polygon","arcs":[[-467,5290,5291,5292,-3782,5293]],"id":"19191"},{"type":"Polygon","arcs":[[-1531,-1446,5294,5295,5296,5297]],"id":"47075"},{"type":"Polygon","arcs":[[5298,5299,-323,5300,5301,5302]],"id":"24023"},{"type":"Polygon","arcs":[[5303,-5303,5304,-550,-5230,5305,5306]],"id":"54077"},{"type":"Polygon","arcs":[[5307,5308,5309,-4401,5310,5311]],"id":"26061"},{"type":"MultiPolygon","arcs":[[[5312,-5297,5313,-4467,-4349]],[[-4351,-4466,5314]]],"id":"47167"},{"type":"Polygon","arcs":[[-1114,5315,5316,-2639,5317]],"id":"26065"},{"type":"Polygon","arcs":[[-4693,5318,5319,5320,5321,5322]],"id":"20191"},{"type":"Polygon","arcs":[[5323,5324,5325,5326,5327,5328,5329]],"id":"21135"},{"type":"Polygon","arcs":[[-4136,-3715,-3996,5330,-4075,5331]],"id":"48245"},{"type":"Polygon","arcs":[[5332,5333,-3570,5334,5335]],"id":"31177"},{"type":"Polygon","arcs":[[5336,5337,5338,-486,5339,5340,5341,5342]],"id":"53039"},{"type":"Polygon","arcs":[[5343,-3675,-4445,-5077,5344]],"id":"29173"},{"type":"Polygon","arcs":[[-1459,5345,5346,5347,-461,5348]],"id":"56001"},{"type":"Polygon","arcs":[[5349,5350,-2353,5351,-2794,5352,5353,5354],[-1447]],"id":"51003"},{"type":"Polygon","arcs":[[-4944,5355,5356,-1967,5357,5358]],"id":"29107"},{"type":"Polygon","arcs":[[5359,5360,-4936,-3487,-5014]],"id":"29125"},{"type":"Polygon","arcs":[[5361,-5241,-4346,5362,-5360,-5013]],"id":"29151"},{"type":"Polygon","arcs":[[-3090,-1924,-3099,-1340,5363,5364]],"id":"27161"},{"type":"Polygon","arcs":[[5365,5366,5367,5368,-4452,5369]],"id":"38105"},{"type":"Polygon","arcs":[[-3723,5370,-3322,5371,5372,5373,5374]],"id":"51147"},{"type":"Polygon","arcs":[[5375,-5143,5376,5377,5378]],"id":"24029"},{"type":"Polygon","arcs":[[5379,-3144,-4044,-4686,-5174,5380,5381]],"id":"17169"},{"type":"Polygon","arcs":[[5382,5383,5384,5385,5386,-3683]],"id":"24031"},{"type":"Polygon","arcs":[[-1174,5387,5388,5389]],"id":"47109"},{"type":"Polygon","arcs":[[5390,5391,5392,-1240,5393]],"id":"22119"},{"type":"Polygon","arcs":[[5394,5395,5396]],"id":"37129"},{"type":"Polygon","arcs":[[-5311,-4400,5397,-4024,-5107,5398,5399,-3612,5400]],"id":"26071"},{"type":"Polygon","arcs":[[-5194,5401,5402,5403,5404,5405,5406]],"id":"21139"},{"type":"Polygon","arcs":[[5407,-1251,5408,-3907,5409,5410]],"id":"06077"},{"type":"Polygon","arcs":[[5411,-5195,-5407,5412,-3406,5413,5414]],"id":"21145"},{"type":"Polygon","arcs":[[5415,5416,-4878,-4808,5417,5418]],"id":"45049"},{"type":"Polygon","arcs":[[-1633,-1044,5419,5420,5421]],"id":"31037"},{"type":"MultiPolygon","arcs":[[[5422]]],"id":"78010"},{"type":"Polygon","arcs":[[5423,-2590,-4590,5424,-1478,5425,5426,5427]],"id":"30031"},{"type":"Polygon","arcs":[[-1384,5428,5429,-1436,5430,5431]],"id":"47135"},{"type":"Polygon","arcs":[[5432,-4001,-1821,-3576,5433,-3935,5434,5435]],"id":"16039"},{"type":"Polygon","arcs":[[-2545,5436,5437,5438,5439]],"id":"31013"},{"type":"MultiPolygon","arcs":[[[5440,-4015,5441,-4056,5442,5443,5444]]],"id":"25005"},{"type":"Polygon","arcs":[[-1167,-4747,-4793,5445,5446,5447]],"id":"17185"},{"type":"Polygon","arcs":[[5448,5449,5450,5451,5452,5453]],"id":"21095"},{"type":"Polygon","arcs":[[5454,5455,5456,-1069,5457,-1433]],"id":"47119"},{"type":"Polygon","arcs":[[5458,5459,-3993,-3713,5460]],"id":"22019"},{"type":"Polygon","arcs":[[5461,-2603,-5127,5462,5463,5464,5465,-1183]],"id":"37037"},{"type":"Polygon","arcs":[[-959,5466,-549,5467,5468]],"id":"48127"},{"type":"Polygon","arcs":[[-5039,5469,-5044,5470,5471,5472]],"id":"21153"},{"type":"Polygon","arcs":[[-4301,5473,5474,5475]],"id":"49011"},{"type":"Polygon","arcs":[[5476,5477,5478,5479]],"id":"49031"},{"type":"Polygon","arcs":[[-5227,5480,5481,5482,5483,-5037]],"id":"21159"},{"type":"Polygon","arcs":[[5484,5485,-4526,5486,-5292,5487]],"id":"27055"},{"type":"Polygon","arcs":[[5488,5489,5490,-4277]],"id":"53011"},{"type":"Polygon","arcs":[[5491,5492,5493,5494]],"id":"55089"},{"type":"Polygon","arcs":[[5495,-1963,-2591,-5424,5496,5497,5498]],"id":"30043"},{"type":"Polygon","arcs":[[5499,-4886,-4964,5500,5501,5502]],"id":"47155"},{"type":"Polygon","arcs":[[-2128,5503,-2936,5504,5505]],"id":"72057"},{"type":"Polygon","arcs":[[5506,5507,5508,5509]],"id":"32011"},{"type":"Polygon","arcs":[[5510,5511,5512,-1242,5513]],"id":"22061"},{"type":"Polygon","arcs":[[5514,5515,5516,-5511,5517]],"id":"22111"},{"type":"Polygon","arcs":[[5518,5519,5520,5521]],"id":"33001"},{"type":"Polygon","arcs":[[-1930,-2372,5522,5523,5524]],"id":"05011"},{"type":"Polygon","arcs":[[5525,5526,5527,-1575,5528,-148]],"id":"31085"},{"type":"Polygon","arcs":[[5529,5530,5531,5532,5533,5534,5535,5536]],"id":"42097"},{"type":"MultiPolygon","arcs":[[[5537,-981,-5199,5538]]],"id":"24041"},{"type":"Polygon","arcs":[[5539,5540,5541,-2894]],"id":"19041"},{"type":"Polygon","arcs":[[5542,5543,5544,-2081,-3969,5545]],"id":"47139"},{"type":"Polygon","arcs":[[5546,5547,-2151,5548,5549,5550]],"id":"20149"},{"type":"Polygon","arcs":[[5551,5552,5553]],"id":"24510"},{"type":"Polygon","arcs":[[5554,5555,-4918,5556,5557]],"id":"23001"},{"type":"Polygon","arcs":[[5558,5559,5560,-3380,-4789,5561]],"id":"18153"},{"type":"Polygon","arcs":[[5562,5563,-3350,5564,5565,5566,5567]],"id":"28145"},{"type":"Polygon","arcs":[[-1326,-1943,-2700,-2670,5568,-3741,-3110]],"id":"27063"},{"type":"Polygon","arcs":[[5569,5570,5571,5572,5573,5574,5575]],"id":"49049"},{"type":"Polygon","arcs":[[5576,-3898,5577,5578,-4835,5579]],"id":"54089"},{"type":"Polygon","arcs":[[-5574,5580,5581,5582,5583,5584]],"id":"49039"},{"type":"Polygon","arcs":[[-2730,5585,5586,-1483,5587,5588,5589]],"id":"55027"},{"type":"Polygon","arcs":[[5590,5591,-5249,5592,-912,5593]],"id":"46051"},{"type":"Polygon","arcs":[[-5057,5594,5595,-161,-319]],"id":"42057"},{"type":"Polygon","arcs":[[5596,5597,5598,5599,5600,5601]],"id":"55093"},{"type":"Polygon","arcs":[[5602,5603,-1504,-4587,5604]],"id":"30045"},{"type":"Polygon","arcs":[[5605,5606,-4990,5607,5608,-3013,-4806]],"id":"45057"},{"type":"Polygon","arcs":[[5609,5610,-1495,5611,5612,-4512,5613]],"id":"51033"},{"type":"Polygon","arcs":[[5614,5615,5616,-5346,-1458]],"id":"56031"},{"type":"Polygon","arcs":[[5617,5618,5619,5620,5621,-5602,5622]],"id":"27163"},{"type":"Polygon","arcs":[[5623,5624,5625,5626,5627,5628,5629]],"id":"29133"},{"type":"Polygon","arcs":[[-4982,5630,5631,-4888,5632]],"id":"42095"},{"type":"Polygon","arcs":[[-5123,5633,5634,5635,5636,5637]],"id":"22085"},{"type":"Polygon","arcs":[[5638,5639,5640,-4737,-3413,5641]],"id":"21169"},{"type":"Polygon","arcs":[[-3753,5642,-4705,5643]],"id":"04021"},{"type":"Polygon","arcs":[[-1217,5644,5645,-3751,-710]],"id":"04017"},{"type":"Polygon","arcs":[[5646,-3019,5647,-4709,5648]],"id":"04027"},{"type":"Polygon","arcs":[[5649,5650,5651,-5620,5652,-648]],"id":"27025"},{"type":"Polygon","arcs":[[-3669,5653,5654,-1379,-1530,5655,-4347]],"id":"47045"},{"type":"Polygon","arcs":[[5656,5657,5658,5659,5660]],"id":"21181"},{"type":"Polygon","arcs":[[5661,-5364,-1345,5662,5663,-2698]],"id":"27043"},{"type":"Polygon","arcs":[[5664,-5048,5665,-5450,5666,5667,-3745]],"id":"21193"},{"type":"Polygon","arcs":[[5668,-3272,5669,5670,5671,5672]],"id":"48037"},{"type":"Polygon","arcs":[[-5023,5673,-1408,-41,5674,5675]],"id":"56011"},{"type":"Polygon","arcs":[[5676,-5094,-4204,5677]],"id":"45061"},{"type":"Polygon","arcs":[[5678,5679,5680,5681,5682,-5616]],"id":"56015"},{"type":"MultiPolygon","arcs":[[[5683,-4011]],[[-3585,5684]],[[5685,-3589,5686,-4009,-5441,5687,5688]]],"id":"25021"},{"type":"Polygon","arcs":[[5689,5690,5691,5692,5693,-3990]],"id":"21123"},{"type":"Polygon","arcs":[[5694,-1501,5695,-5427,5696,5697,5698,-2606]],"id":"16043"},{"type":"Polygon","arcs":[[-3930,-757,5699,-54,5700,-4550]],"id":"13233"},{"type":"Polygon","arcs":[[-342,-3124,5701,-4564,-3021,-449,5702,5703,5704]],"id":"31031"},{"type":"Polygon","arcs":[[-3918,5705,5706,-3769,5707]],"id":"13247"},{"type":"Polygon","arcs":[[5708,-3020,-5647,5709,5710]],"id":"06025"},{"type":"Polygon","arcs":[[-1701,-1226,-5261,-2291,-4115,-5202,5711]],"id":"16017"},{"type":"Polygon","arcs":[[5712,5713,5714,-4320,5715]],"id":"18045"},{"type":"Polygon","arcs":[[5716,5717,5718,5719,5720,5721,5722]],"id":"47031"},{"type":"Polygon","arcs":[[5723,5724,5725,-663,5726,-5720,5727]],"id":"47177"},{"type":"Polygon","arcs":[[5728,-5483,5729,5730,5731,5732,5733,-5046]],"id":"21195"},{"type":"Polygon","arcs":[[5734,5735,5736,-1297,5737,5738]],"id":"21197"},{"type":"Polygon","arcs":[[-1338,5739,5740,5741]],"id":"26139"},{"type":"Polygon","arcs":[[5742,5743,5744,-1205,5745,5746,5747]],"id":"47165"},{"type":"Polygon","arcs":[[5748,5749,5750,5751,5752]],"id":"37153"},{"type":"Polygon","arcs":[[-3157,5753,5754,5755,5756]],"id":"48043"},{"type":"Polygon","arcs":[[5757,5758,-1454,-809,5759,5760]],"id":"56019"},{"type":"Polygon","arcs":[[5761,5762,5763,-5621,-5652]],"id":"55095"},{"type":"Polygon","arcs":[[-5764,5764,-5597,-5622]],"id":"55109"},{"type":"Polygon","arcs":[[5765,-3951,5766,-4069]],"id":"48111"},{"type":"Polygon","arcs":[[5767,-5537,5768,5769,5770,5771]],"id":"42067"},{"type":"Polygon","arcs":[[5772,5773,5774,5775,5776,5777,5778]],"id":"18089"},{"type":"Polygon","arcs":[[5779,5780,5781,5782,5783]],"id":"42131"},{"type":"Polygon","arcs":[[5784,5785,-4945,-5359,5786,5787,5788]],"id":"29095"},{"type":"Polygon","arcs":[[5789,5790,-994,5791,5792]],"id":"42073"},{"type":"Polygon","arcs":[[5793,-1660,5794,-5790,5795,5796]],"id":"42085"},{"type":"Polygon","arcs":[[5797,-5784,5798,5799,-4980,5800,5801]],"id":"42079"},{"type":"Polygon","arcs":[[-3575,-16,-3932,-5434]],"id":"16025"},{"type":"Polygon","arcs":[[-3491,-287,-3645,5802,-2847,5803]],"id":"19103"},{"type":"Polygon","arcs":[[-514,-1839,5804,-692,5805]],"id":"19117"},{"type":"Polygon","arcs":[[5806,-722,-2994,5807,5808,5809]],"id":"40151"},{"type":"Polygon","arcs":[[5810,-5809,5811,5812,5813]],"id":"40153"},{"type":"Polygon","arcs":[[-2882,5814,-4177,5815,-4778,-3819,5816]],"id":"35027"},{"type":"Polygon","arcs":[[-5188,-4124,-4182,5817,5818]],"id":"38057"},{"type":"Polygon","arcs":[[-4830,-4566,-2883,-5817,-3818,5819]],"id":"35053"},{"type":"Polygon","arcs":[[5820,5821,-2502,5822,-5714,5823,-2941]],"id":"18157"},{"type":"Polygon","arcs":[[5824,5825,5826,5827,5828,5829]],"id":"21221"},{"type":"Polygon","arcs":[[-5751,5830,5831,5832]],"id":"37165"},{"type":"Polygon","arcs":[[-2740,-847,-560,5833,5834,5835]],"id":"17055"},{"type":"Polygon","arcs":[[-846,5836,-3982,-4219,5837,-562]],"id":"17059"},{"type":"Polygon","arcs":[[-4442,-2120,-5216,-2959,-5081,5838]],"id":"17061"},{"type":"Polygon","arcs":[[-3959,-2684,-3908,-5409,-1250]],"id":"06009"},{"type":"Polygon","arcs":[[5839,-4599,5840,5841,5842,5843]],"id":"45065"},{"type":"MultiPolygon","arcs":[[[-4456,5844]],[[-3872,-1051,-4458,5845]]],"id":"45077"},{"type":"Polygon","arcs":[[-5353,-2799,-5252,-3318,5846]],"id":"51065"},{"type":"Polygon","arcs":[[5847,-5678,-4203,-5082,5848,5849]],"id":"45085"},{"type":"Polygon","arcs":[[5850,5851,-1526,5852]],"id":"51133"},{"type":"Polygon","arcs":[[5853,-5328,5854,5855,-5659,5856]],"id":"21069"},{"type":"Polygon","arcs":[[-424,5857,5858,5859,5860,5861]],"id":"47001"},{"type":"Polygon","arcs":[[5862,5863,5864,-1959,-2241]],"id":"30099"},{"type":"Polygon","arcs":[[-158,5865,5866,5867,-5115]],"id":"35055"},{"type":"Polygon","arcs":[[-3060,-5209,-879,5868,-2095,-1270]],"id":"18085"},{"type":"Polygon","arcs":[[5869,-4185,5870,5871,5872]],"id":"38085"},{"type":"Polygon","arcs":[[-3415,-4736,5873,5874,5875,5876,5877]],"id":"47027"},{"type":"Polygon","arcs":[[-5671,5878,5879,5880,5881]],"id":"48067"},{"type":"Polygon","arcs":[[5882,-5558,5883,-971,5884,-1613,5885]],"id":"23017"},{"type":"Polygon","arcs":[[-5660,-5856,5886,5887,5888]],"id":"21011"},{"type":"Polygon","arcs":[[-4574,-3064,-1186,5889,5890,5891]],"id":"37057"},{"type":"Polygon","arcs":[[-5557,-4917,5892,-972,-5884]],"id":"23005"},{"type":"Polygon","arcs":[[5893,-3091,-5365,-5662,-2697,-1941,-4340]],"id":"27013"},{"type":"Polygon","arcs":[[5894,5895,5896,5897,5898,-4303]],"id":"51093"},{"type":"Polygon","arcs":[[-5255,5899,5900,5901,-4291,-347,5902,-4496]],"id":"56037"},{"type":"Polygon","arcs":[[-2289,5903,5904,-4111]],"id":"30061"},{"type":"Polygon","arcs":[[5905,5906]],"id":"51685"},{"type":"Polygon","arcs":[[5907,-4101,-2731,-5590,5908,5909,5910]],"id":"55021"},{"type":"Polygon","arcs":[[5911,-1735,-141,5912]],"id":"72145"},{"type":"Polygon","arcs":[[5913,5914,-2667,5915,5916,5917]],"id":"46041"},{"type":"Polygon","arcs":[[5918,-1389,-5416,5919,5920]],"id":"45005"},{"type":"Polygon","arcs":[[5921,-5088,-1464,5922,5923,-4883]],"id":"47059"},{"type":"Polygon","arcs":[[-3787,-3746,-5668,5924,5925,-5218,5926]],"id":"21051"},{"type":"Polygon","arcs":[[5927,-4217,5928,5929,5930,-5404]],"id":"21055"},{"type":"Polygon","arcs":[[5931,5932,-5753,5933,-4986]],"id":"37007"},{"type":"Polygon","arcs":[[5934,-426,5935,5936,5937,5938]],"id":"47049"},{"type":"MultiPolygon","arcs":[[[-5628,5939,5940,5941,5942]],[[5943,5944]]],"id":"21075"},{"type":"Polygon","arcs":[[5945,5946,-5225,5947,5948]],"id":"21019"},{"type":"Polygon","arcs":[[-4459,5949,-4600,-5840,5950]],"id":"45001"},{"type":"Polygon","arcs":[[5951,5952,5953,5954,5955,-2722,-5275,5956]],"id":"48149"},{"type":"Polygon","arcs":[[-5339,5957,5958,-2039,5959,-487]],"id":"41049"},{"type":"Polygon","arcs":[[5960,5961,5962,-5055,-3441]],"id":"42013"},{"type":"Polygon","arcs":[[5963]],"id":"25019"},{"type":"Polygon","arcs":[[-5083,-4201,5964,-5170,5965]],"id":"45089"},{"type":"Polygon","arcs":[[-3452,-3162,-3092,-5894,-4339]],"id":"27103"},{"type":"Polygon","arcs":[[5966,5967,-1210,5968,-5478]],"id":"49055"},{"type":"Polygon","arcs":[[5969,-1698,-4286,5970,-3043,-3193,5971]],"id":"48053"},{"type":"Polygon","arcs":[[5972,5973,-5499,5974,-1498,-1975]],"id":"30023"},{"type":"Polygon","arcs":[[-5498,5975,-1499,-5975]],"id":"30093"},{"type":"Polygon","arcs":[[-1401,-103,-4979,5976,5977,-4894]],"id":"46135"},{"type":"Polygon","arcs":[[-4867,5978,5979,5980,-340,5981]],"id":"46071"},{"type":"Polygon","arcs":[[-5876,5982,-5939,5983,5984]],"id":"47133"},{"type":"Polygon","arcs":[[-5582,5985,5986,-5968,5987]],"id":"49015"},{"type":"Polygon","arcs":[[5988,-1647,5989,-4547,5990,-3707,5991,-3710,5992]],"id":"48391"},{"type":"Polygon","arcs":[[5993,5994,-1204,-3493,-615]],"id":"48357"},{"type":"Polygon","arcs":[[-3967,5995,-603,-5120,5996,-5128,5997]],"id":"35045"},{"type":"Polygon","arcs":[[-1259,5998,5999,6000,6001,-3473,6002]],"id":"05063"},{"type":"Polygon","arcs":[[6003,-5015,-3485,-1560,6004,6005,-2217]],"id":"29029"},{"type":"Polygon","arcs":[[6006,-5161,6007,-4253,-2676]],"id":"38067"},{"type":"Polygon","arcs":[[-6001,6008,6009,-3905,-594,-4716,6010]],"id":"05067"},{"type":"Polygon","arcs":[[-97,6011,6012,-4873,-4976,-101]],"id":"46083"},{"type":"Polygon","arcs":[[-5941,6013,6014,-1374,-5655,6015]],"id":"47131"},{"type":"Polygon","arcs":[[6016,-4207,6017,6018,6019,6020,6021]],"id":"45003"},{"type":"Polygon","arcs":[[6022,-3450,6023,6024]],"id":"41003"},{"type":"Polygon","arcs":[[6025,-6024,-3449,6026,6027,6028,6029]],"id":"41039"},{"type":"Polygon","arcs":[[6030,6031,6032,6033,6034,-4513,-5613]],"id":"51097"},{"type":"Polygon","arcs":[[6035,6036,-5630,6037,6038]],"id":"29201"},{"type":"Polygon","arcs":[[-4544,6039,6040,6041,6042]],"id":"48321"},{"type":"Polygon","arcs":[[-1077,6043,6044,-238,6045]],"id":"48447"},{"type":"Polygon","arcs":[[6046,-432,6047,6048]],"id":"55129"},{"type":"Polygon","arcs":[[6049,-5479,-5969,-1209,6050,6051]],"id":"49017"},{"type":"Polygon","arcs":[[6052,-5335,-3569,6053,-2467]],"id":"31055"},{"type":"Polygon","arcs":[[6054,6055]],"id":"51520"},{"type":"Polygon","arcs":[[6056,-28,6057,-31,-3332]],"id":"38097"},{"type":"Polygon","arcs":[[-3280,-3286,6058,6059,-1927,6060]],"id":"05069"},{"type":"Polygon","arcs":[[6061,6062,6063,-6009,-6000,6064]],"id":"05075"},{"type":"Polygon","arcs":[[-5070,6065]],"id":"51570"},{"type":"Polygon","arcs":[[6066,6067,6068,6069,6070]],"id":"48001"},{"type":"Polygon","arcs":[[6071,-5414,-3405,6072,-5626]],"id":"21039"},{"type":"Polygon","arcs":[[-4234,6073,-5502,6074,6075,6076]],"id":"47009"},{"type":"Polygon","arcs":[[6077,6078,-1386,6079,-5090,-1443,-1376]],"id":"47017"},{"type":"Polygon","arcs":[[-3409,6080,6081,-1380,-6079,6082]],"id":"47079"},{"type":"Polygon","arcs":[[6083,6084,6085,6086,6087,-5236]],"id":"25013"},{"type":"Polygon","arcs":[[-3541,-1568,-4999,6088,-5356,-4943]],"id":"29033"},{"type":"Polygon","arcs":[[6089,6090,-5957,-5274,6091,6092]],"id":"48055"},{"type":"Polygon","arcs":[[6093,-5183,6094,6095]],"id":"50021"},{"type":"Polygon","arcs":[[-3464,6096,6097,6098,6099,-3447]],"id":"41031"},{"type":"Polygon","arcs":[[6100,-2390,-4838,6101,6102,6103]],"id":"51185"},{"type":"Polygon","arcs":[[6104,-3687,6105,6106,6107]],"id":"51043"},{"type":"Polygon","arcs":[[6108,6109,-4097]],"id":"72149"},{"type":"Polygon","arcs":[[6110,6111,6112,-1741,6113]],"id":"12067"},{"type":"Polygon","arcs":[[-362,-1119,-1307,6114,-2830]],"id":"20205"},{"type":"Polygon","arcs":[[-1168,-5448,6115,-3152]],"id":"17047"},{"type":"Polygon","arcs":[[-1619,-2678,-4256,-391,6116]],"id":"38071"},{"type":"Polygon","arcs":[[-5976,-5497,-5428,-5696,-1500]],"id":"30057"},{"type":"Polygon","arcs":[[-5173,6117,6118,6119,6120,-4764]],"id":"29005"},{"type":"Polygon","arcs":[[6121,6122,6123,6124,6125,-3516,6126]],"id":"51083"},{"type":"Polygon","arcs":[[6127,6128,6129,-3065,6130]],"id":"51013"},{"type":"MultiPolygon","arcs":[[[6131]],[[6132,-4084,-2427,6133,6134]],[[6135]]],"id":"53057"},{"type":"Polygon","arcs":[[6136,-3665,6137,-703,6138,6139,6140,-5018]],"id":"30025"},{"type":"Polygon","arcs":[[6141,6142,6143,-5896,6144,6145]],"id":"51181"},{"type":"Polygon","arcs":[[6146,6147,6148,-4638]],"id":"53071"},{"type":"Polygon","arcs":[[6149,6150,6151,6152,6153,-754]],"id":"13057"},{"type":"Polygon","arcs":[[6154,6155,6156,6157,6158]],"id":"27149"},{"type":"Polygon","arcs":[[-2832,6159,6160,6161,6162]],"id":"20019"},{"type":"Polygon","arcs":[[6163,6164,6165,-1677,-3805,6166]],"id":"29075"},{"type":"Polygon","arcs":[[6167,6168,-6107,6169,-2340,6170]],"id":"51187"},{"type":"Polygon","arcs":[[-1838,-1222,-281,-4727,-5805]],"id":"19135"},{"type":"Polygon","arcs":[[6171,6172,-1397,6173,-1890]],"id":"48325"},{"type":"Polygon","arcs":[[-4531,6174,-3806,-2402,6175,6176]],"id":"29021"},{"type":"Polygon","arcs":[[-5019,-6141,6177,-1404,-5674,-5022]],"id":"30011"},{"type":"Polygon","arcs":[[6178,6179,-2578,-3335,6180,6181]],"id":"26055"},{"type":"Polygon","arcs":[[6182,-4143,-4703,-4852,6183,6184,6185]],"id":"28141"},{"type":"Polygon","arcs":[[6186,-4831,-5820,-3822,-3677,-4711]],"id":"35003"},{"type":"Polygon","arcs":[[6187,-3443,-5058,-317,-5300,6188]],"id":"42111"},{"type":"Polygon","arcs":[[-354,6189,6190,6191,6192,6193]],"id":"36109"},{"type":"Polygon","arcs":[[-3633,6194,6195,6196]],"id":"36067"},{"type":"Polygon","arcs":[[-5103,6197,6198,6199,-5167,6200]],"id":"45051"},{"type":"Polygon","arcs":[[6201,6202,6203,-734]],"id":"30041"},{"type":"Polygon","arcs":[[6204,6205,6206,-2812,-44]],"id":"36001"},{"type":"Polygon","arcs":[[-506,6207,-6153,6208,6209,-3921,6210,6211,-626,6212]],"id":"13121"},{"type":"Polygon","arcs":[[-5599,6213,6214,6215,6216,6217]],"id":"55091"},{"type":"Polygon","arcs":[[6218,-3309,6219,6220,6221]],"id":"01105"},{"type":"Polygon","arcs":[[-2745,6222,-2359]],"id":"02090"},{"type":"Polygon","arcs":[[6223,6224,6225,6226]],"id":"13125"},{"type":"Polygon","arcs":[[-927,6227,-2268,6228,-2767]],"id":"48173"},{"type":"Polygon","arcs":[[-1477,6229,-5253,-4494,-4005,6230,-5697,-5426]],"id":"56039"},{"type":"MultiPolygon","arcs":[[[-4307,6231]],[[6232,6233,6234,6235,6236,6237,6238,-4312,6239,-2285,6240]]],"id":"08059"},{"type":"Polygon","arcs":[[6241,-2101,6242]],"id":"08029"},{"type":"Polygon","arcs":[[-3920,6243,6244,6245,-6211]],"id":"13063"},{"type":"Polygon","arcs":[[-67,6246,-4376,6247,6248]],"id":"18117"},{"type":"MultiPolygon","arcs":[[[6249]],[[6250]],[[-3657,6251]]],"id":"36103"},{"type":"MultiPolygon","arcs":[[[6252]],[[-4427,6253,-3629,6254]],[[6255]]],"id":"36045"},{"type":"Polygon","arcs":[[-4000,6256,6257,6258,-1773]],"id":"20107"},{"type":"Polygon","arcs":[[6259,6260,6261,-3834,6262,6263,-4617,6264]],"id":"37161"},{"type":"Polygon","arcs":[[6265,6266,6267,-4472,-4889,-5632]],"id":"34041"},{"type":"Polygon","arcs":[[6268,6269,-5480,-6050,6270,-4404]],"id":"49001"},{"type":"Polygon","arcs":[[6271,6272,-4647,6273,-6055,6274,-1607,6275]],"id":"51191"},{"type":"Polygon","arcs":[[-4850,-4552,6276,6277,-4087]],"id":"01015"},{"type":"Polygon","arcs":[[6278,6279,6280,6281,6282,-1747]],"id":"13133"},{"type":"Polygon","arcs":[[6283,6284,6285,6286]],"id":"54009"},{"type":"MultiPolygon","arcs":[[[-2024,6287,-4858]],[[6288]],[[6289,-4860]]],"id":"02070"},{"type":"Polygon","arcs":[[-3018,6290,-3754,-5644,-4704,-5648]],"id":"04013"},{"type":"Polygon","arcs":[[-4791,6291,6292,6293,6294]],"id":"18125"},{"type":"Polygon","arcs":[[-3779,-2786,6295,-4414,6296,6297,-70]],"id":"18137"},{"type":"Polygon","arcs":[[-2461,6298,-4694,-5323,6299,-719]],"id":"20095"},{"type":"Polygon","arcs":[[6300,-1523,6301,6302,6303]],"id":"20123"},{"type":"Polygon","arcs":[[-1543,6304,-763,-1023,-3028,6305]],"id":"20083"},{"type":"Polygon","arcs":[[-3051,6306,-2489,-1105,-642,6307]],"id":"20127"},{"type":"Polygon","arcs":[[-1764,6308,-651,6309,-1357,6310,6311]],"id":"27095"},{"type":"Polygon","arcs":[[-5566,6312,6313,6314,-82,6315]],"id":"28081"},{"type":"Polygon","arcs":[[6316,6317,-5568,6318,-444,6319,6320]],"id":"28071"},{"type":"Polygon","arcs":[[6321,6322,6323,6324,-4168,-4430]],"id":"28029"},{"type":"Polygon","arcs":[[6325,6326,6327,6328,-439,6329]],"id":"28111"},{"type":"Polygon","arcs":[[-4255,6330,-29,-6057,-3331,-386]],"id":"38035"},{"type":"Polygon","arcs":[[6331,6332,6333,-5138,-5098]],"id":"42045"},{"type":"Polygon","arcs":[[6334,6335,6336,6337,6338]],"id":"44003"},{"type":"Polygon","arcs":[[6339,-5804,-2846,-3494,-1845]],"id":"19095"},{"type":"Polygon","arcs":[[-1043,6340,-5336,-6053,-2466,6341,-5420]],"id":"31053"},{"type":"Polygon","arcs":[[-322,6342,6343,-5301]],"id":"54057"},{"type":"Polygon","arcs":[[6344,-4718,-3766,6345,-3284]],"id":"05117"},{"type":"Polygon","arcs":[[-5646,6346,-4714,6347,-4706,-5643,-3752]],"id":"04009"},{"type":"Polygon","arcs":[[-463,6348,6349,6350,6351,6352,6353,6354]],"id":"08049"},{"type":"Polygon","arcs":[[6355,6356,6357,6358,6359,-3225,-1834,-4674,6360]],"id":"08109"},{"type":"Polygon","arcs":[[6361,6362,-3138,-1812,-606,6363]],"id":"12093"},{"type":"Polygon","arcs":[[-2086,6364,6365,6366,-3970]],"id":"13123"},{"type":"Polygon","arcs":[[-3357,6367,6368,6369,-5114,6370,6371,-3126]],"id":"13299"},{"type":"Polygon","arcs":[[6372,-5345,-5076,-4342,-5240,6373,6374]],"id":"29007"},{"type":"Polygon","arcs":[[-5118,6375,6376,6377,6378]],"id":"35028"},{"type":"Polygon","arcs":[[6379,6380,-4485,-2501,-3506,-1449,-1505,-5604]],"id":"30027"},{"type":"Polygon","arcs":[[6381,-5281,6382,-4562]],"id":"31149"},{"type":"Polygon","arcs":[[6383,6384,-5190,6385,6386,-5368]],"id":"38061"},{"type":"Polygon","arcs":[[6387,6388,6389,-1317,6390,-4215,-3980]],"id":"21101"},{"type":"Polygon","arcs":[[6391,-5688,-5445,6392,6393,-6335,6394]],"id":"44007"},{"type":"Polygon","arcs":[[6395,-3868,6396,6397,-5858,-423]],"id":"47013"},{"type":"MultiPolygon","arcs":[[[6398,6399,6400,6401]],[[6402,6403,6404,6405,-124]]],"id":"48261"},{"type":"Polygon","arcs":[[6406,-4047,6407,6408,-2859,6409]],"id":"36051"},{"type":"Polygon","arcs":[[6410,-3892,6411,6412,6413,6414]],"id":"54011"},{"type":"Polygon","arcs":[[6415,6416,6417,-3913,6418,-2162]],"id":"06007"},{"type":"Polygon","arcs":[[-6353,6419,6420,6421,6422]],"id":"08117"},{"type":"Polygon","arcs":[[6423,6424,-4461,6425,-1894]],"id":"13147"},{"type":"Polygon","arcs":[[-5288,-1793,-4041,-3142,6426]],"id":"17187"},{"type":"Polygon","arcs":[[6427,6428,6429,-3375,6430]],"id":"18119"},{"type":"Polygon","arcs":[[6431,6432,-6248,-4381,-4786,6433,6434,-6293]],"id":"18037"},{"type":"Polygon","arcs":[[-2135,6435,6436,6437,-1541]],"id":"20165"},{"type":"Polygon","arcs":[[-215,-1015,-3492,-6340,6438]],"id":"19011"},{"type":"Polygon","arcs":[[6439,-4593,-3788,-5927,-5217,-3864,6440]],"id":"21125"},{"type":"Polygon","arcs":[[6441,6442,6443,6444,-2459,-765]],"id":"20185"},{"type":"Polygon","arcs":[[-5635,6445,6446,6447,6448,6449]],"id":"22115"},{"type":"Polygon","arcs":[[6450,6451,6452,-1590,-2640,-5317]],"id":"26093"},{"type":"Polygon","arcs":[[-3098,-3078,-3237,6453,-465,-2742,6454,-1342]],"id":"27099"},{"type":"Polygon","arcs":[[-2565,6455,6456,6457,6458]],"id":"28073"},{"type":"Polygon","arcs":[[6459,6460,6461,6462,6463,6464]],"id":"28053"},{"type":"Polygon","arcs":[[6465,6466,-1639,6467,-653]],"id":"31139"},{"type":"Polygon","arcs":[[6468,6469,-5472,6470,-1298,-5737]],"id":"21237"},{"type":"Polygon","arcs":[[6471,-5031,6472,-5826,6473,-5930]],"id":"21033"},{"type":"Polygon","arcs":[[-1407,-3692,6474,6475,-4865,-38]],"id":"46093"},{"type":"Polygon","arcs":[[6476,6477,6478,6479,-4606,6480]],"id":"21021"},{"type":"Polygon","arcs":[[6481,-4623,6482,6483,6484]],"id":"37199"},{"type":"Polygon","arcs":[[-6220,-3308,6485,-2705,6486,6487]],"id":"01047"},{"type":"Polygon","arcs":[[6488,-2562,6489,-208]],"id":"13231"},{"type":"Polygon","arcs":[[-861,6490,6491,6492]],"id":"01035"},{"type":"Polygon","arcs":[[-3392,6493,-3282,-2476,6494,6495]],"id":"05105"},{"type":"Polygon","arcs":[[-6366,6496,-6150,6497]],"id":"13227"},{"type":"Polygon","arcs":[[6498,-6282,6499,6500,-6227,6501,6502]],"id":"13141"},{"type":"Polygon","arcs":[[6503,-194,6504,6505,6506]],"id":"13307"},{"type":"Polygon","arcs":[[6507,-4156,6508,-3006,6509,6510]],"id":"18095"},{"type":"Polygon","arcs":[[-3377,-68,-6249,-6433,6511]],"id":"18101"},{"type":"Polygon","arcs":[[-2196,-367,-1544,-6306,-3031,6512,6513]],"id":"20055"},{"type":"Polygon","arcs":[[-2149,6514,6515,6516,6517]],"id":"20087"},{"type":"Polygon","arcs":[[-3395,6518,6519,-5821,-2940,6520]],"id":"18181"},{"type":"Polygon","arcs":[[-4608,6521,-4594,-6440,6522,-4221,6523]],"id":"21199"},{"type":"Polygon","arcs":[[-5381,-5178,-5214,-4440,6524]],"id":"17009"},{"type":"Polygon","arcs":[[6525,6526,6527,6528,6529,6530,6531]],"id":"22021"},{"type":"Polygon","arcs":[[-5787,-5358,-1966,6532,6533]],"id":"29101"},{"type":"Polygon","arcs":[[-4166,6534,6535,6536,6537]],"id":"29017"},{"type":"Polygon","arcs":[[-2265,6538,6539,6540,6541,6542]],"id":"29035"},{"type":"Polygon","arcs":[[-954,6543,-2470,6544,-4766,6545,-2552]],"id":"31109"},{"type":"Polygon","arcs":[[6546,6547,6548,6549,-4474]],"id":"34035"},{"type":"Polygon","arcs":[[6550,-6410,-2858,6551,6552]],"id":"36121"},{"type":"Polygon","arcs":[[6553,-355,-6194,6554,6555]],"id":"36097"},{"type":"Polygon","arcs":[[6556,6557,6558,6559,-1861]],"id":"39091"},{"type":"Polygon","arcs":[[6560,-1786,-1910,6561,6562,6563,-6559]],"id":"39159"},{"type":"Polygon","arcs":[[-4954,-3104,6564,-3439,6565]],"id":"42063"},{"type":"Polygon","arcs":[[-3991,-5694,6566,-5639,6567,-2778,6568]],"id":"21099"},{"type":"Polygon","arcs":[[-1319,6569,-4603,-4213,6570,6571,6572]],"id":"21183"},{"type":"Polygon","arcs":[[6573,6574,-2455,-2664,-5915,6575]],"id":"46129"},{"type":"Polygon","arcs":[[-4969,6576,-4881,-5500,6577]],"id":"47089"},{"type":"Polygon","arcs":[[6578,6579,6580,6581,-5657,6582,-787]],"id":"21097"},{"type":"Polygon","arcs":[[-5501,-4963,6583,6584,6585,-6075]],"id":"37173"},{"type":"Polygon","arcs":[[6586,-2307,6587,-3041,6588,-2311,6589]],"id":"48499"},{"type":"Polygon","arcs":[[6590,6591,6592,6593,6594,6595]],"id":"37091"},{"type":"Polygon","arcs":[[-815,6596,-4137,-5332,-4074,6597,6598]],"id":"48291"},{"type":"Polygon","arcs":[[6599,6600,-73,-4326,6601,-65,6602]],"id":"18071"},{"type":"Polygon","arcs":[[-6438,6603,-6442,-764,-6305,-1542]],"id":"20145"},{"type":"Polygon","arcs":[[-2492,-3246,-1238,-1775,-1117,-360]],"id":"20031"},{"type":"Polygon","arcs":[[-835,6604,6605,-4738,-3795]],"id":"22055"},{"type":"Polygon","arcs":[[6606,-2079,-1369,-6155,6607]],"id":"27051"},{"type":"Polygon","arcs":[[6608,-2899,6609,6610,6611]],"id":"28121"},{"type":"Polygon","arcs":[[6612,6613,-6612,-6323,6614,-3624]],"id":"28049"},{"type":"Polygon","arcs":[[6615,6616,6617,-4581,6618,6619]],"id":"37051"},{"type":"Polygon","arcs":[[6620,6621,6622,6623,-1291,-2904,-1949,-4117]],"id":"37193"},{"type":"Polygon","arcs":[[-1878,6624,6625,-6557,-1860,6626]],"id":"39011"},{"type":"Polygon","arcs":[[6627,6628,6629,6630,6631,6632,-3846]],"id":"40125"},{"type":"Polygon","arcs":[[6633,-4195,6634,6635,6636,6637]],"id":"40091"},{"type":"Polygon","arcs":[[6638,6639,-3461,6640,6641]],"id":"41071"},{"type":"Polygon","arcs":[[-4983,-5633,-4887,6642,6643,6644]],"id":"42077"},{"type":"Polygon","arcs":[[-5692,6645,-4611,6646,6647]],"id":"21217"},{"type":"Polygon","arcs":[[-4330,-2779,-6568,-5642,-3412,6648]],"id":"21009"},{"type":"Polygon","arcs":[[-5971,-4290,6649,-6090,6650,-3044]],"id":"48453"},{"type":"Polygon","arcs":[[-108,-816,-6599,6651,6652,6653]],"id":"48339"},{"type":"Polygon","arcs":[[6654,-459,-2269,-6228,-926]],"id":"48227"},{"type":"Polygon","arcs":[[6655,-5733,6656,6657,-1605,6658,-5452],[-3882]],"id":"51195"},{"type":"Polygon","arcs":[[6659]],"id":"51840"},{"type":"Polygon","arcs":[[-4191,6660,-931,6661,-89]],"id":"39139"},{"type":"Polygon","arcs":[[-6611,6662,6663,-2563,6664,-6324]],"id":"28127"},{"type":"Polygon","arcs":[[6665,-6374,-5243,6666,6667,-1515,6668]],"id":"29019"},{"type":"Polygon","arcs":[[-735,-6204,6669,-6380,-5603,6670,-5864,6671]],"id":"30015"},{"type":"Polygon","arcs":[[6672,-910,-3333,-375,-1946,-4560]],"id":"31081"},{"type":"Polygon","arcs":[[-6378,6673,-6376,-5117,6674,-4572,-2879,6675,6676]],"id":"35049"},{"type":"Polygon","arcs":[[6677,-5284,-4579,6678,6679,-4582,-6618]],"id":"37163"},{"type":"Polygon","arcs":[[6680,-2719,-4196,-6634,6681,6682,-6630]],"id":"40107"},{"type":"Polygon","arcs":[[6683,6684,6685,6686,-1371,6687,-2992]],"id":"40047"},{"type":"Polygon","arcs":[[-5888,6688,6689,-6469,-5736,6690]],"id":"21165"},{"type":"Polygon","arcs":[[-5116,-5868,6691,6692,-4568,-6675]],"id":"35033"},{"type":"Polygon","arcs":[[-6468,-1635,6693,-4527,-654]],"id":"31119"},{"type":"Polygon","arcs":[[-226,6694,-906,-6673,-4559,-775]],"id":"31121"},{"type":"Polygon","arcs":[[-3448,-6100,6695,-4281,-4051,6696,-6027]],"id":"41017"},{"type":"Polygon","arcs":[[-4284,6697,6698,6699,6700,6701,6702]],"id":"32013"},{"type":"Polygon","arcs":[[6703,6704,6705,6706,6707]],"id":"42117"},{"type":"Polygon","arcs":[[-6572,6708,-2781,-4334,6709,6710]],"id":"21031"},{"type":"Polygon","arcs":[[-4379,6711,-3985,-4211,-4787]],"id":"21163"},{"type":"Polygon","arcs":[[-6480,6712,-4595,-6522,-4607]],"id":"21137"},{"type":"Polygon","arcs":[[-5219,-5926,6713,-5454,6714,6715,-3866]],"id":"21013"},{"type":"Polygon","arcs":[[-3055,6716,6717,-785,-2707,-4696]],"id":"21187"},{"type":"Polygon","arcs":[[6718,6719,-3877]],"id":"37137"},{"type":"Polygon","arcs":[[6720,6721,6722,6723,6724,6725]],"id":"37187"},{"type":"Polygon","arcs":[[6726,6727,6728,6729,6730]],"id":"54015"},{"type":"Polygon","arcs":[[6731,-5025,6732,-5758,6733]],"id":"56033"},{"type":"Polygon","arcs":[[6734,-139,6735,6736,6737]],"id":"72137"},{"type":"Polygon","arcs":[[-4913,6738,-2064,-3256,6739,-4272]],"id":"72125"},{"type":"Polygon","arcs":[[6740,-4819,6741,6742,6743]],"id":"42103"},{"type":"Polygon","arcs":[[6744,6745,-6717,-3054,6746]],"id":"21077"},{"type":"Polygon","arcs":[[-1184,-5466,6747,6748,-6616,6749,-5750,6750]],"id":"37125"},{"type":"Polygon","arcs":[[-5832,6751,-6619,-4585,6752,-5102,6753]],"id":"37155"},{"type":"Polygon","arcs":[[-4289,6754,-5952,-6091,-6650]],"id":"48021"},{"type":"Polygon","arcs":[[6755,6756,6757,-813,-106]],"id":"48455"},{"type":"Polygon","arcs":[[6758,6759,6760,-2978,-4573,-1287,-6624,6761]],"id":"37171"},{"type":"Polygon","arcs":[[6762,6763,-5366,6764]],"id":"38023"},{"type":"Polygon","arcs":[[-4108,6765,6766,6767,6768,6769,-2413]],"id":"72119"},{"type":"Polygon","arcs":[[-1388,6770,-4993,-4803,6771,-4879,-5417]],"id":"45029"},{"type":"Polygon","arcs":[[-3431,6772,6773,-5724,6774,6775]],"id":"47041"},{"type":"Polygon","arcs":[[-4240,-947,-673,-1695,-1109,6776]],"id":"48309"},{"type":"Polygon","arcs":[[-3879,6777,-2393,-4230]],"id":"37031"},{"type":"Polygon","arcs":[[-4926,6778,-1689,6779,-2526,-2259]],"id":"48307"},{"type":"Polygon","arcs":[[-3071,6780,6781,-1063,6782,6783]],"id":"39171"},{"type":"Polygon","arcs":[[6784,6785,6786,6787,6788,6789,6790,-6042]],"id":"48039"},{"type":"Polygon","arcs":[[-1900,-824,6791,6792,-4839,6793,6794]],"id":"39013"},{"type":"Polygon","arcs":[[6795,6796,6797,6798,6799,6800]],"id":"39071"},{"type":"Polygon","arcs":[[-3643,6801,-3150,6802,-779,6803]],"id":"39173"},{"type":"Polygon","arcs":[[6804,6805,-857,6806,6807,6808]],"id":"55015"},{"type":"Polygon","arcs":[[6809,6810,6811,-5772,6812]],"id":"42087"},{"type":"Polygon","arcs":[[6813,-5814,6814,6815,-2555,-1201,6816]],"id":"40045"},{"type":"Polygon","arcs":[[6817,6818,-2185,6819,-5980]],"id":"46075"},{"type":"Polygon","arcs":[[-5828,6820,6821,-4538,-1381,-6082,6822]],"id":"47161"},{"type":"Polygon","arcs":[[6823,6824,6825,-2806,-1001]],"id":"48017"},{"type":"MultiPolygon","arcs":[[[6826,6827,-940,-4100,6828,6829]]],"id":"72113"},{"type":"Polygon","arcs":[[6830,-1917,6831,6832,6833,6834]],"id":"40065"},{"type":"Polygon","arcs":[[-1049,6835,-3861,6836,-4596,-5950]],"id":"45059"},{"type":"Polygon","arcs":[[6837,6838,-3688,-1405,-6178,-6140]],"id":"46063"},{"type":"Polygon","arcs":[[6839,6840,6841,6842,6843]],"id":"54105"},{"type":"Polygon","arcs":[[6844,6845,-6805,6846,-818]],"id":"55087"},{"type":"Polygon","arcs":[[-4186,-5870,6847,-3231,6848]],"id":"38037"},{"type":"Polygon","arcs":[[6849,-4280,6850,6851]],"id":"41007"},{"type":"Polygon","arcs":[[6852,-5801,-4984,-6645,6853,-229,6854,-5535]],"id":"42107"},{"type":"Polygon","arcs":[[-6707,6855,6856,6857,6858,-5532,6859,6860,6861]],"id":"42081"},{"type":"MultiPolygon","arcs":[[[6862,6863]],[[-6774,6864,6865,6866,-5725]]],"id":"47185"},{"type":"Polygon","arcs":[[6867,6868,6869,6870,-6216]],"id":"55011"},{"type":"Polygon","arcs":[[-6740,-3255,6871,6872,-4273]],"id":"72079"},{"type":"Polygon","arcs":[[6873,6874,6875,6876,6877,6878,6879]],"id":"72131"},{"type":"Polygon","arcs":[[6880,-4033,6881,6882,-5994,-614,-3950,6883]],"id":"40139"},{"type":"Polygon","arcs":[[-6858,6884,-5802,-6853,-5534,6885]],"id":"42037"},{"type":"Polygon","arcs":[[6886,-5872,6887,6888,-6576,-5914,6889,-3690]],"id":"46031"},{"type":"Polygon","arcs":[[-6069,6890,6891,-6756,-105,-2330,6892]],"id":"48225"},{"type":"Polygon","arcs":[[-6780,-1688,6893,6894,-5972,-3192,-2527]],"id":"48411"},{"type":"Polygon","arcs":[[-4245,6895,6896,6897,-6143,6898,6899]],"id":"51036"},{"type":"Polygon","arcs":[[6900,-6171,-2344,6901,-2350,6902]],"id":"51139"},{"type":"Polygon","arcs":[[-2183,-613,6903,-3123,6904]],"id":"46123"},{"type":"Polygon","arcs":[[-3158,-5757,6905]],"id":"48377"},{"type":"Polygon","arcs":[[-6271,-6052,6906,6907,-4405]],"id":"49021"},{"type":"Polygon","arcs":[[6908,6909,-1724,6910,6911]],"id":"48347"},{"type":"Polygon","arcs":[[6912,6913,6914,6915,6916,6917,-5954]],"id":"48477"},{"type":"Polygon","arcs":[[-3300,-3977,-5259,6918,6919,6920]],"id":"49003"},{"type":"Polygon","arcs":[[6921,6922,6923,-251,6924]],"id":"48097"},{"type":"Polygon","arcs":[[6925,-6834,6926,6927,-1075,-4911]],"id":"48487"},{"type":"Polygon","arcs":[[-945,6928,-6070,-6893,-2329,6929]],"id":"48289"},{"type":"Polygon","arcs":[[-1906,-5277,6930,-1644,6931,6932,-1393]],"id":"48255"},{"type":"Polygon","arcs":[[-4837,6933,-3539,6934,6935,-6102]],"id":"51021"},{"type":"Polygon","arcs":[[6936,6937,-6146,6938,6939]],"id":"51183"},{"type":"Polygon","arcs":[[6940,-5374,6941,6942,6943]],"id":"51111"},{"type":"Polygon","arcs":[[6944,-2989,6945,-6728,6946,-6841]],"id":"54013"},{"type":"Polygon","arcs":[[6947,-2391,-6101,6948,6949,-5731]],"id":"51027"},{"type":"Polygon","arcs":[[6950,-6944,6951,6952,-3748,6953,-6125]],"id":"51117"},{"type":"Polygon","arcs":[[-6583,-5661,6954,6955,6956,-788]],"id":"21017"},{"type":"Polygon","arcs":[[-18,-3574,-3296,-4391]],"id":"16067"},{"type":"Polygon","arcs":[[6957,-6762,-6623,6958]],"id":"37005"},{"type":"Polygon","arcs":[[-3321,6959,6960,6961,6962,-5372]],"id":"51007"},{"type":"Polygon","arcs":[[6963,-5010,6964,-2225,6965,-6033]],"id":"51073"},{"type":"Polygon","arcs":[[6966,-6168,-6901,6967,6968]],"id":"51171"},{"type":"Polygon","arcs":[[-6950,6969,-6657,-5732]],"id":"51051"},{"type":"Polygon","arcs":[[6970,6971,6972,-941,-6828,6973,6974]],"id":"72141"},{"type":"Polygon","arcs":[[6975,-6048,6976,-4261,6977,-5763]],"id":"55005"},{"type":"Polygon","arcs":[[6978,6979,6980,6981,-2072]],"id":"72003"},{"type":"Polygon","arcs":[[6982,6983,6984,6985]],"id":"53049"},{"type":"Polygon","arcs":[[6986,6987,6988,6989]],"id":"54045"},{"type":"Polygon","arcs":[[6990,6991,-2681,6992,-1137]],"id":"06039"},{"type":"Polygon","arcs":[[6993,6994,6995,-854,6996]],"id":"55061"},{"type":"Polygon","arcs":[[6997,-2093,6998,-1346,-3418,6999,-2956]],"id":"17135"},{"type":"Polygon","arcs":[[-2102,-6242,7000,7001,7002,-6356,7003,7004]],"id":"08051"},{"type":"Polygon","arcs":[[7005,-639,7006,-6600,7007]],"id":"18013"},{"type":"Polygon","arcs":[[7008,7009,7010,7011,7012]],"id":"13101"},{"type":"Polygon","arcs":[[7013,-5464,7014,-5285,-6678,-6617,-6749]],"id":"37085"},{"type":"Polygon","arcs":[[-6192,7015,7016,7017,7018,7019]],"id":"36107"},{"type":"Polygon","arcs":[[-6750,-6620,-6752,-5831]],"id":"37093"},{"type":"Polygon","arcs":[[7020,7021,7022,7023]],"id":"37143"},{"type":"Polygon","arcs":[[-4541,-4901,7024,-5429,-1383]],"id":"47085"},{"type":"Polygon","arcs":[[-671,-407,-1956,-2573,-182]],"id":"48381"},{"type":"Polygon","arcs":[[-3227,7025,7026,7027,-5866,-157]],"id":"08023"},{"type":"MultiPolygon","arcs":[[[7028]],[[7029,-3838,7030,-1843,7031,7032,7033,7034]]],"id":"08123"},{"type":"Polygon","arcs":[[7035,7036,7037,-3972,7038,-4316]],"id":"13313"},{"type":"Polygon","arcs":[[7039,7040,7041,7042,-6581,7043]],"id":"21023"},{"type":"Polygon","arcs":[[-4157,-6508,7044,-2505,7045]],"id":"18159"},{"type":"Polygon","arcs":[[7046,-4609,-6524,-4220,7047,-4734]],"id":"21207"},{"type":"Polygon","arcs":[[-5931,-6474,-5825,7048,-5405]],"id":"21143"},{"type":"Polygon","arcs":[[-1025,-3229,7049,7050,7051,7052]],"id":"20025"},{"type":"Polygon","arcs":[[-3517,-6126,-6954,-3750,-1062,7053,-5125]],"id":"37077"},{"type":"MultiPolygon","arcs":[[[7054,7055]],[[-6725,7056,7057,7058,7059,7060]]],"id":"37095"},{"type":"Polygon","arcs":[[7061,-6464,7062,7063]],"id":"28125"},{"type":"Polygon","arcs":[[-6974,-6827,7064,7065,7066,7067]],"id":"72001"},{"type":"Polygon","arcs":[[-6503,7068,7069,-866,7070]],"id":"13009"},{"type":"Polygon","arcs":[[-4212,-3992,-6569,-2777,-6709,-6571]],"id":"21085"},{"type":"Polygon","arcs":[[-5567,-6316,-81,-445,-6319]],"id":"28115"},{"type":"Polygon","arcs":[[-611,7071,7072,-5278,7073]],"id":"31015"},{"type":"Polygon","arcs":[[7074]],"id":"51790"},{"type":"Polygon","arcs":[[-2469,7075,-3655,-5171,-4762,-6545]],"id":"31025"},{"type":"Polygon","arcs":[[-1427,7076,-3087,-115,-4658,-532]],"id":"46073"},{"type":"Polygon","arcs":[[-4707,-6348,-4713,-4826,7077,-274]],"id":"04003"},{"type":"Polygon","arcs":[[7078,-4369,-3427,-4508,7079,7080]],"id":"05113"},{"type":"Polygon","arcs":[[-3014,-5609,7081,7082,7083,-3859]],"id":"45039"},{"type":"MultiPolygon","arcs":[[[7084]],[[-2949,7085,7086,7087]],[[7088]]],"id":"06111"},{"type":"Polygon","arcs":[[7089,-1983,7090,7091,7092]],"id":"06059"},{"type":"Polygon","arcs":[[7093,-3776,-2967,7094]],"id":"12053"},{"type":"Polygon","arcs":[[7095,7096,7097,7098,-4386,-3002]],"id":"13029"},{"type":"Polygon","arcs":[[-2699,-5664,7099,-222,7100,7101,-2672]],"id":"19109"},{"type":"Polygon","arcs":[[7102,-2838,-2588,-4030,7103,-3290]],"id":"20187"},{"type":"Polygon","arcs":[[7104,-3197,-2275,7105,-3294,-4067,7106,-7027]],"id":"08071"},{"type":"Polygon","arcs":[[-2957,-7000,-3420,7107,-3167,-5053,7108,7109,-5078]],"id":"17119"},{"type":"Polygon","arcs":[[7110,-750,-608,7111,7112,7113,7114]],"id":"12015"},{"type":"Polygon","arcs":[[-5446,-4792,-6295,7115,7116,-3978,7117]],"id":"18051"},{"type":"Polygon","arcs":[[7118,7119,-3646,-285]],"id":"19163"},{"type":"Polygon","arcs":[[7120,-6028,-6697,-4055,7121,-3961,7122]],"id":"41035"},{"type":"Polygon","arcs":[[-5276,-2726,7123,-1645,-6931]],"id":"48123"},{"type":"Polygon","arcs":[[7124,-326,7125,7126,7127,7128,7129]],"id":"01023"},{"type":"Polygon","arcs":[[7130,7131,7132,-4504,7133,-7126,-325]],"id":"01119"},{"type":"Polygon","arcs":[[7134,-1665,7135,7136,7137,7138,-4146]],"id":"05015"},{"type":"Polygon","arcs":[[7139,7140,-4950,-1978,7141,-7086,-2948,7142]],"id":"06029"},{"type":"MultiPolygon","arcs":[[[-7112,7143,7144,7145]],[[7146]],[[-7114,7147]]],"id":"12071"},{"type":"Polygon","arcs":[[7148,-464,-6355,7149,-1768,7150,7151]],"id":"08107"},{"type":"Polygon","arcs":[[7152,7153,7154,7155,7156,7157,7158]],"id":"17181"},{"type":"Polygon","arcs":[[-3228,-723,-5807,7159,-7050]],"id":"20033"},{"type":"Polygon","arcs":[[7160,7161,-4604,-6570,-1318,-6390]],"id":"21059"},{"type":"MultiPolygon","arcs":[[[7162]],[[7163]],[[7164,7165,7166]]],"id":"22087"},{"type":"Polygon","arcs":[[7167,7168,-3974,7169,7170]],"id":"16005"},{"type":"Polygon","arcs":[[7171,-1579,-1578,-4132,-2918,-881,-3250,-5146]],"id":"20153"},{"type":"Polygon","arcs":[[7172,7173,7174,7175,7176,-2057]],"id":"13275"},{"type":"Polygon","arcs":[[7177,7178,-1829,7179,-3224,7180,7181]],"id":"13099"},{"type":"Polygon","arcs":[[-5698,-6231,-4004,7182]],"id":"16081"},{"type":"Polygon","arcs":[[-3469,-5100,-5144,-5376,7183,7184]],"id":"24015"},{"type":"Polygon","arcs":[[-473,7185,7186,-76]],"id":"26147"},{"type":"Polygon","arcs":[[-3764,7187,7188,7189,-3602,7190,7191]],"id":"05107"},{"type":"Polygon","arcs":[[7192,7193,-5411,7194,7195]],"id":"06013"},{"type":"Polygon","arcs":[[7196,-5206,7197,7198,7199]],"id":"09009"},{"type":"Polygon","arcs":[[-7116,-6294,-6435,7200,-7161,-6389,7201]],"id":"18173"},{"type":"Polygon","arcs":[[7202,-4328,7203,7204,7205,7206,-4383]],"id":"18019"},{"type":"Polygon","arcs":[[7207,7208,7209,-2442,7210,-3774]],"id":"12069"},{"type":"Polygon","arcs":[[7211,7212,7213,7214]],"id":"21037"},{"type":"Polygon","arcs":[[7215,-2449,7216,-4751,7217,7218]],"id":"22037"},{"type":"Polygon","arcs":[[7219,7220,7221,7222,-6112]],"id":"12121"},{"type":"MultiPolygon","arcs":[[[7223,-7219,7224,-4018,7225]],[[7226,-4016,7227]]],"id":"22125"},{"type":"MultiPolygon","arcs":[[[-3265,7228]],[[7229]],[[7230]],[[-3581,7231,7232]]],"id":"23013"},{"type":"Polygon","arcs":[[7233,7234,7235,7236,-1592]],"id":"26163"},{"type":"Polygon","arcs":[[-4470,7237,7238,7239,7240]],"id":"28033"},{"type":"Polygon","arcs":[[7241,-5134,7242,7243,7244,-5384]],"id":"24027"},{"type":"Polygon","arcs":[[7245,7246,7247,7248,-7153,7249,-6535,-4165]],"id":"29157"},{"type":"Polygon","arcs":[[-5075,7250,7251,-1282,-4344]],"id":"29113"},{"type":"Polygon","arcs":[[-2825,7252,7253,7254,7255]],"id":"27057"},{"type":"Polygon","arcs":[[-2482,-4029,-1623,7256,7257,7258]],"id":"20021"},{"type":"Polygon","arcs":[[7259,-6158,7260,-5244,-5592,7261]],"id":"27011"},{"type":"Polygon","arcs":[[-5142,7262,7263,-978,7264,-5377]],"id":"10001"},{"type":"Polygon","arcs":[[7265,-2984,7266,7267]],"id":"16075"},{"type":"Polygon","arcs":[[-1178,-3072,-6784,7268,-2612]],"id":"18151"},{"type":"Polygon","arcs":[[-1743,7269,-5267,7270,7271,7272]],"id":"12075"},{"type":"Polygon","arcs":[[-3127,-6372,7273,7274,-7010,7275]],"id":"13065"},{"type":"Polygon","arcs":[[7276,7277,-2736,-5208,7278]],"id":"26027"},{"type":"Polygon","arcs":[[-4469,7279,7280,-5563,-6318,7281,-7238]],"id":"28093"},{"type":"Polygon","arcs":[[-373,-4160,-1311,-1596,7282,-5740,-1337]],"id":"26081"},{"type":"Polygon","arcs":[[7283,7284,-5526,-147,-2886,7285,7286]],"id":"31135"},{"type":"Polygon","arcs":[[7287,7288,7289,7290]],"id":"34029"},{"type":"Polygon","arcs":[[-3435,7291,-4324,7292,-5560,7293]],"id":"18167"},{"type":"Polygon","arcs":[[7294,-6555,-6193,-7020,7295,-6705]],"id":"36015"},{"type":"Polygon","arcs":[[-4417,7296,-6747,-3053,7297,-6297]],"id":"18155"},{"type":"Polygon","arcs":[[7298,-7254,7299,-3457,-2077]],"id":"27159"},{"type":"Polygon","arcs":[[7300,-4464,-2497,7301,-5679,-5615,-1457]],"id":"56027"},{"type":"Polygon","arcs":[[-3999,7302,7303,-295,7304,-6257]],"id":"29013"},{"type":"Polygon","arcs":[[7305,-378,-2321,7306,7307,7308]],"id":"31129"},{"type":"Polygon","arcs":[[-71,-6298,-7298,-3058,7309,-7204,-4327]],"id":"18077"},{"type":"Polygon","arcs":[[7310,7311,7312,-4419,7313,7314,7315]],"id":"34003"},{"type":"Polygon","arcs":[[7316,7317,7318,7319,-7312,7320]],"id":"36119"},{"type":"Polygon","arcs":[[-384,7321,7322,7323]],"id":"36063"},{"type":"Polygon","arcs":[[7324,-6621,-4116,7325,-4650]],"id":"37189"},{"type":"Polygon","arcs":[[7326,-851,-3456,7327,-5246]],"id":"27023"},{"type":"Polygon","arcs":[[-5320,7328,7329,7330,-6685,7331]],"id":"40071"},{"type":"Polygon","arcs":[[-564,7332,-5402,-5193,7333]],"id":"17151"},{"type":"Polygon","arcs":[[-5800,7334,7335,-6743,7336,-6266,-5631,-4981]],"id":"42089"},{"type":"MultiPolygon","arcs":[[[-6674,-6377]],[[-5119,-6379,-6677,7337,-4828,-5129,-5997]]],"id":"35043"},{"type":"Polygon","arcs":[[-3026,-1502,-5695,-2605,7338]],"id":"16033"},{"type":"MultiPolygon","arcs":[[[7339,7340,-1571,-2576,7341]],[[7342]],[[7343]],[[7344]]],"id":"26029"},{"type":"Polygon","arcs":[[-2641,-1594,7345,-3639,7346,-3069]],"id":"26091"},{"type":"Polygon","arcs":[[-6217,-6871,7347,-3234,7348]],"id":"27157"},{"type":"Polygon","arcs":[[7349,-2400,-4946,-5786,7350]],"id":"29047"},{"type":"Polygon","arcs":[[7351,7352,-2720,-6681,-6629,7353]],"id":"40081"},{"type":"Polygon","arcs":[[-5295,-1445,-1175,-5390,7354,-3347,7355,7356]],"id":"47069"},{"type":"Polygon","arcs":[[7357,-2845,7358,-2822,7359]],"id":"27071"},{"type":"Polygon","arcs":[[-27,-2189,7360,7361,-32,-6058]],"id":"27107"},{"type":"Polygon","arcs":[[-3436,-7294,-5559,7362,-3177,-3340,7363]],"id":"17023"},{"type":"Polygon","arcs":[[-7361,-2188,7364,-7255,-7299,-2076,7365]],"id":"27005"},{"type":"Polygon","arcs":[[7366,-3241,-1136,-3565,-5334,7367]],"id":"19085"},{"type":"Polygon","arcs":[[7368,-3367,7369,7370,-3603,-7190]],"id":"28027"},{"type":"Polygon","arcs":[[-4570,7371,-4071,7372,7373,-186,7374,7375,-4174,7376]],"id":"35037"},{"type":"Polygon","arcs":[[-6549,7377,7378,7379,7380,7381]],"id":"34023"},{"type":"Polygon","arcs":[[-3739,7382,7383,7384,7385,-4509,-2068]],"id":"54071"},{"type":"Polygon","arcs":[[-2371,7386,7387,7388,-5523]],"id":"05003"},{"type":"Polygon","arcs":[[-3604,-7371,7389,7390,-6460,7391]],"id":"28133"},{"type":"Polygon","arcs":[[7392,-7240,7393,7394,-3364,-7369,-7189,7395]],"id":"28143"},{"type":"Polygon","arcs":[[-694,-4729,7396,-3381,-2382,7397]],"id":"29171"},{"type":"Polygon","arcs":[[-4728,-3139,-1683,-3382,-7397]],"id":"29197"},{"type":"Polygon","arcs":[[7398,7399,7400,-3736,-2985,-6945,-6840]],"id":"54085"},{"type":"Polygon","arcs":[[7401,-3220,-3733,-7401,7402,7403]],"id":"54095"},{"type":"Polygon","arcs":[[-4634,7404,7405,7406,7407,-3536]],"id":"51063"},{"type":"Polygon","arcs":[[-4453,-3940,7408,7409,-290,7410]],"id":"30055"},{"type":"Polygon","arcs":[[-2150,-6518,7411,-3244,7412,-5549]],"id":"20177"},{"type":"Polygon","arcs":[[-7269,-6783,-1068,-2140,-876]],"id":"18033"},{"type":"Polygon","arcs":[[7413,-1491,-94,-258]],"id":"46101"},{"type":"Polygon","arcs":[[-7217,-2448,-15,7414,-4752]],"id":"22091"},{"type":"Polygon","arcs":[[7415,-3614,7416,-4104,7417]],"id":"55051"},{"type":"Polygon","arcs":[[7418,-3719,7419,-4930,7420,7421]],"id":"48475"},{"type":"Polygon","arcs":[[7422,-3652,-4668,7423,-6928]],"id":"48485"},{"type":"MultiPolygon","arcs":[[[-6401,7424,7425,7426]],[[-6405,7427,7428,7429]]],"id":"48489"},{"type":"Polygon","arcs":[[7430,7431,-3794,7432,7433,-6528,7434]],"id":"22083"},{"type":"Polygon","arcs":[[-1680,-2117,7435,7436,7437,7438]],"id":"29045"},{"type":"Polygon","arcs":[[7439,7440,7441,-3217]],"id":"54049"},{"type":"Polygon","arcs":[[7442,7443,7444,-7399,-6844,7445,-3885]],"id":"54107"},{"type":"Polygon","arcs":[[-3218,-7442,7446,-5232,7447,7448,-3734]],"id":"54033"},{"type":"Polygon","arcs":[[7449,7450,-4454,-7411,-289,-4484]],"id":"30105"},{"type":"Polygon","arcs":[[7451,7452,7453,-3587,7454]],"id":"25009"},{"type":"Polygon","arcs":[[7455,-4652,7456,-4620,7457,-1462]],"id":"47019"},{"type":"Polygon","arcs":[[-310,7458,7459,-5748,7460,7461,7462]],"id":"47147"},{"type":"Polygon","arcs":[[-2370,7463,-3606,7464,7465,-3791,7466,7467,-7387]],"id":"05017"},{"type":"Polygon","arcs":[[-7045,-6511,7468,7469,-2158,-2506]],"id":"18057"},{"type":"Polygon","arcs":[[7470,-2167,-4158,-7046,-2504,7471]],"id":"18067"},{"type":"Polygon","arcs":[[-2159,-7470,7472,-1555,-636,7473,-1534]],"id":"18097"},{"type":"Polygon","arcs":[[-5823,-2507,-2160,-1537,7474,-4321,-5715]],"id":"18107"},{"type":"Polygon","arcs":[[7475,7476,-2874,-2900,-6609,-6614]],"id":"28089"},{"type":"MultiPolygon","arcs":[[[7477,7478,-2213]]],"id":"26033"},{"type":"MultiPolygon","arcs":[[[7479]],[[-2214,-7479,7480,7481]]],"id":"26097"},{"type":"Polygon","arcs":[[7482,7483,7484,7485,-5112]],"id":"12089"},{"type":"Polygon","arcs":[[-7441,7486,-5306,-5229,-7447]],"id":"54091"},{"type":"Polygon","arcs":[[-4656,7487,-5546,-3968,-7038,7488]],"id":"47011"},{"type":"Polygon","arcs":[[7489,7490,7491,-7220,-6111,7492,7493]],"id":"12079"},{"type":"Polygon","arcs":[[7494,-3134,7495,7496,-6462]],"id":"28051"},{"type":"Polygon","arcs":[[7497,-3410,-6083,-6078,-1375,-6015]],"id":"47183"},{"type":"Polygon","arcs":[[7498,-5600,-6218,-7349,-3233,-3076,-1921]],"id":"27049"},{"type":"Polygon","arcs":[[7499,7500,-900,-1508,7501,7502]],"id":"29077"},{"type":"Polygon","arcs":[[7503,7504,-3511,7505,-3952,7506,-3555]],"id":"01111"},{"type":"Polygon","arcs":[[-3821,-4784,7507,7508,-1601]],"id":"35013"},{"type":"Polygon","arcs":[[7509,7510,-6860,-5531,7511,-6811]],"id":"42119"},{"type":"Polygon","arcs":[[-2666,-267,-3862,7512,-5916]],"id":"46119"},{"type":"Polygon","arcs":[[-1614,-5885,-976,7513,-5519,7514]],"id":"33003"},{"type":"Polygon","arcs":[[-2865,7515]],"id":"51770"},{"type":"Polygon","arcs":[[-5803,-3648,7516,-5290,-4446,-2154,-2848]],"id":"19115"},{"type":"Polygon","arcs":[[-2752,7517,7518,-6118,-5172]],"id":"19145"},{"type":"Polygon","arcs":[[-5608,-4989,-5095,-5677,-5848,7519,-7082]],"id":"45055"},{"type":"Polygon","arcs":[[7520,-7170,-3973,-3298,-3573]],"id":"16077"},{"type":"Polygon","arcs":[[7521,-3200,7522]],"id":"41011"},{"type":"Polygon","arcs":[[-6029,-7121,7523,-2547,-3201,-7522,7524]],"id":"41019"},{"type":"Polygon","arcs":[[-4524,-2774,7525,7526,7527]],"id":"55023"},{"type":"Polygon","arcs":[[7528,7529,-1716,7530,7531,-3896],[7532]],"id":"51005"},{"type":"Polygon","arcs":[[-4836,-5579,7533,7534,-4631,-3533,-6934]],"id":"51071"},{"type":"Polygon","arcs":[[-7222,7535,-7011,-7275,7536,7537,-5262,7538]],"id":"12023"},{"type":"Polygon","arcs":[[7539,-2410,7540,-128,7541,-3399]],"id":"72007"},{"type":"Polygon","arcs":[[-938,7542,-144,-2420,-3214,7543,-6109,-4096]],"id":"72107"},{"type":"Polygon","arcs":[[-5618,7544,7545,7546]],"id":"27123"},{"type":"Polygon","arcs":[[7547,-4293,7548,7549,-1766,7550,7551]],"id":"49047"},{"type":"Polygon","arcs":[[7552,7553,7554,-4477,7555,-7406]],"id":"51067"},{"type":"Polygon","arcs":[[7556,-3483]],"id":"15005"},{"type":"Polygon","arcs":[[-5059,-4532,-6177,7557,7558,-6515,-2148]],"id":"20005"},{"type":"Polygon","arcs":[[7559,-6395,-6339,7560,7561]],"id":"09015"},{"type":"Polygon","arcs":[[7562,7563,-7561,-6338,7564,7565,-5204]],"id":"09011"},{"type":"Polygon","arcs":[[7566,7567,7568,7569,-3462,-6640]],"id":"41005"},{"type":"Polygon","arcs":[[-1083,-5124,-5638,7570,-1720,-6910,7571]],"id":"48419"},{"type":"Polygon","arcs":[[7572,-5792,-993,7573,7574,-4250,7575]],"id":"39029"},{"type":"Polygon","arcs":[[-1141,7576,-7140,7577,-1279]],"id":"06031"},{"type":"Polygon","arcs":[[7578,-2952,-2164,7579,7580,7581,7582]],"id":"06045"},{"type":"Polygon","arcs":[[-4311,-1856,7583,-2281,-6240]],"id":"08035"},{"type":"Polygon","arcs":[[-538,-3047,-3693,7584,7585,-2854]],"id":"48259"},{"type":"Polygon","arcs":[[7586,7587,-3756,7588,-7137]],"id":"05009"},{"type":"Polygon","arcs":[[-6687,7589,7590,-7352,7591,-1372]],"id":"40083"},{"type":"Polygon","arcs":[[7592,-4066,7593,7594,-3631]],"id":"36065"},{"type":"Polygon","arcs":[[7595,-6585,7596,7597,7598,7599]],"id":"37113"},{"type":"Polygon","arcs":[[7600,7601,7602,7603,7604,7605,7606]],"id":"36031"},{"type":"Polygon","arcs":[[-2070,-4511,7607,7608,-7529,-3895]],"id":"51017"},{"type":"Polygon","arcs":[[7609,7610,7611,7612,-6988]],"id":"54005"},{"type":"Polygon","arcs":[[7613,7614,-3899,-5577,7615]],"id":"54019"},{"type":"Polygon","arcs":[[7616,7617,-6731,7618,-7614,7619,-7611,7620,7621]],"id":"54039"},{"type":"Polygon","arcs":[[7622,7623,7624,7625,-6768]],"id":"72037"},{"type":"Polygon","arcs":[[7626,-153,7627,-145,-7543,-937,-6973]],"id":"72039"},{"type":"Polygon","arcs":[[7628,-7151,-1767,-7550]],"id":"08103"},{"type":"Polygon","arcs":[[-1535,-7474,-640,-7006,7629,-6429,7630]],"id":"18109"},{"type":"Polygon","arcs":[[7631,-6531,7632,7633,7634,-4758]],"id":"22059"},{"type":"Polygon","arcs":[[-1516,-6668,7635,-5011,7636]],"id":"29135"},{"type":"Polygon","arcs":[[-4797,7637,-1655,-5794,7638,7639]],"id":"42039"},{"type":"Polygon","arcs":[[-5855,-5327,7640,7641,7642,-6689,-5887]],"id":"21205"},{"type":"Polygon","arcs":[[-4899,7643,7644,7645,7646,-5456,7647]],"id":"47187"},{"type":"Polygon","arcs":[[-1650,-991,-737,7648,-332]],"id":"38081"},{"type":"Polygon","arcs":[[-6872,-3254,7649,7650]],"id":"72055"},{"type":"Polygon","arcs":[[7651,-3184,7652]],"id":"16061"},{"type":"Polygon","arcs":[[7653,7654,7655,-7653,-3183,7656,7657]],"id":"16069"},{"type":"Polygon","arcs":[[7658,-7309,7659,-1524,-6301,7660,-4774]],"id":"20089"},{"type":"Polygon","arcs":[[7661,-3327,7662,-5547,7663,-2997]],"id":"20117"},{"type":"Polygon","arcs":[[-3326,-4129,-5060,-2146,-5548,-7663]],"id":"20131"},{"type":"Polygon","arcs":[[7664,-4148,-3277,7665,7666,-2176]],"id":"40001"},{"type":"Polygon","arcs":[[-7599,7667,7668,7669,7670]],"id":"37043"},{"type":"Polygon","arcs":[[7671,-3873,-5846,-4457,-5845,-4455,-6425,7672,7673,7674,7675]],"id":"45073"},{"type":"Polygon","arcs":[[-3276,7676,7677,7678,7679,-7666]],"id":"05033"},{"type":"Polygon","arcs":[[-3074,-2197,-6514,-2585,-2837]],"id":"20093"},{"type":"Polygon","arcs":[[7680]],"id":"72049"},{"type":"Polygon","arcs":[[-2566,-6459,7681,7682,7683,7684]],"id":"28091"},{"type":"Polygon","arcs":[[7685,-6320,-448,-2374,7686]],"id":"28161"},{"type":"Polygon","arcs":[[7687,-2316,-1038,-2669,-169,-2916,-4131]],"id":"31065"},{"type":"Polygon","arcs":[[7688,7689,-5489,-4276,7690]],"id":"53015"},{"type":"Polygon","arcs":[[-1072,7691,7692,-2345,7693,-4140]],"id":"01083"},{"type":"Polygon","arcs":[[7694,7695,7696,-2405]],"id":"12013"},{"type":"Polygon","arcs":[[7697,-3777,-7094,7698,-7272]],"id":"12017"},{"type":"Polygon","arcs":[[-7466,7699,-7064,7700,-3622,-3792]],"id":"28055"},{"type":"Polygon","arcs":[[7701,-4385,7702,-3986,-6712,-4378]],"id":"18061"},{"type":"Polygon","arcs":[[-7104,-4034,-6881,7703,-3291]],"id":"20129"},{"type":"Polygon","arcs":[[-4618,-6264,7704,-3856,-6836,-1048]],"id":"45083"},{"type":"Polygon","arcs":[[-1522,-3182,7705,-3360,7706,-6302]],"id":"20143"},{"type":"Polygon","arcs":[[7707,7708,-4555]],"id":"30103"},{"type":"Polygon","arcs":[[7709,-4977,-4876,7710,7711,-1637]],"id":"31051"},{"type":"Polygon","arcs":[[7712,7713,-6049,-6976,-5762,-5651]],"id":"55013"},{"type":"Polygon","arcs":[[7714,-5909,-5589,7715,-3093,7716,7717]],"id":"55025"},{"type":"Polygon","arcs":[[7718,7719,7720,7721,7722,-4267,7723,-4741]],"id":"22007"},{"type":"Polygon","arcs":[[7724,7725,7726,7727,-6744,-7336,7728]],"id":"42127"},{"type":"Polygon","arcs":[[7729,-7594,-4065,7730,-47,7731,7732]],"id":"36077"},{"type":"Polygon","arcs":[[7733,7734,-3849,-2334,7735,-2300]],"id":"40049"},{"type":"Polygon","arcs":[[-4425,7736,-7607,7737,7738,7739,-4062]],"id":"36041"},{"type":"Polygon","arcs":[[-4147,-7139,7740,7741,7742,-7677,-3275]],"id":"05087"},{"type":"Polygon","arcs":[[7743,-7725,7744,-5782,7745,-7018]],"id":"42115"},{"type":"MultiPolygon","arcs":[[[7746]],[[7747,7748,7749,7750]]],"id":"12037"},{"type":"Polygon","arcs":[[-831,-2059,7751,7752,7753]],"id":"12039"},{"type":"Polygon","arcs":[[-2406,-7697,7754,-7751,7755]],"id":"12045"},{"type":"Polygon","arcs":[[7756,-7176,7757,-7494,7758,7759,7760]],"id":"12065"},{"type":"Polygon","arcs":[[7761,-2971,7762,7763,-2973]],"id":"12103"},{"type":"Polygon","arcs":[[7764,7765,-522,7766,-6832,-1916,-526]],"id":"40075"},{"type":"Polygon","arcs":[[-7678,-7743,7767,-4940,7768]],"id":"05047"},{"type":"Polygon","arcs":[[7769,7770,-2716,7771,7772]],"id":"40117"},{"type":"Polygon","arcs":[[-3851,7773,7774,7775,7776,7777,-2336]],"id":"40069"},{"type":"Polygon","arcs":[[-1129,-5222,7778,7779,-1673,-6166,7780]],"id":"29081"},{"type":"Polygon","arcs":[[-6664,7781,7782,7783,-6456,-2564]],"id":"28031"},{"type":"Polygon","arcs":[[7784,-7691,-4275,-6850,7785,-6985]],"id":"53069"},{"type":"Polygon","arcs":[[7786,7787,7788,7789,7790]],"id":"12019"},{"type":"Polygon","arcs":[[-2215,-7482,7791,7792,-5033]],"id":"26153"},{"type":"Polygon","arcs":[[-1737,-2843,7793,-4519,-6047,-7714,7794]],"id":"55031"},{"type":"MultiPolygon","arcs":[[[7795,7796,7797]],[[7798,7799,7800,7801,-1933,-189,7802]]],"id":"13193"},{"type":"Polygon","arcs":[[7803,7804,-5518,-5514,-1241,-5393]],"id":"22027"},{"type":"Polygon","arcs":[[-7582,7805,7806,7807,7808,7809,7810]],"id":"06097"},{"type":"Polygon","arcs":[[-3847,-6633,7811,-7734,-2299,7812]],"id":"40087"},{"type":"Polygon","arcs":[[7813,-2553,-6546,-3815,-3328,-7662,-2996]],"id":"31067"},{"type":"Polygon","arcs":[[7814,-5672,-5882,7815,-3037,7816,7817]],"id":"48343"},{"type":"Polygon","arcs":[[-7592,-7354,-6628,-3845,7818]],"id":"40109"},{"type":"Polygon","arcs":[[7819,-2308,-6587,7820,-2325]],"id":"48223"},{"type":"Polygon","arcs":[[-4064,7821,7822,7823,-42,-7731]],"id":"36057"},{"type":"Polygon","arcs":[[7824,-6162,7825,7826,-7770,7827,-7330]],"id":"40113"},{"type":"Polygon","arcs":[[7828,-306,7829,7830]],"id":"12113"},{"type":"Polygon","arcs":[[-7210,7831,-2439]],"id":"12117"},{"type":"Polygon","arcs":[[-1828,7832,7833,-828,-3222,-7180]],"id":"13007"},{"type":"Polygon","arcs":[[7834,7835,-4313,-4361,7836]],"id":"13083"},{"type":"Polygon","arcs":[[7837,7838,7839,7840,-7833,-1827]],"id":"13095"},{"type":"Polygon","arcs":[[-7841,7841,7842,-7173,-2056,-829,-7834]],"id":"13205"},{"type":"Polygon","arcs":[[-7181,-3223,-826,7843,7844]],"id":"13253"},{"type":"Polygon","arcs":[[7845,-7772,-2721,-7353,-7591]],"id":"40119"},{"type":"Polygon","arcs":[[-5875,7846,-4223,-427,-5935,-5983]],"id":"47137"},{"type":"Polygon","arcs":[[-5693,-6648,7847,-5640,-6567]],"id":"21087"},{"type":"Polygon","arcs":[[-4921,-2328,-4907,7848]],"id":"48397"},{"type":"MultiPolygon","arcs":[[[7849]],[[7850,-3900]]],"id":"78020"},{"type":"Polygon","arcs":[[-4782,7851,-3159,7852,7853]],"id":"48229"},{"type":"Polygon","arcs":[[-6842,-6947,-6727,-7618,7854]],"id":"54087"},{"type":"Polygon","arcs":[[-6523,-6441,-3869,-6396,-422,-4222]],"id":"21147"},{"type":"Polygon","arcs":[[7855,7856,-7130,7857,7858,-6327,7859]],"id":"28153"},{"type":"Polygon","arcs":[[-7526,-2773,7860,7861,-4035,-4731,7862]],"id":"55043"},{"type":"Polygon","arcs":[[7863,7864,7865,-7226,-4017,-7227,7866,7867]],"id":"22029"},{"type":"Polygon","arcs":[[-6589,-3040,-2532,7868,7869,7870,-2312]],"id":"48423"},{"type":"Polygon","arcs":[[7871,-7601,-7737,-4424,7872]],"id":"36033"},{"type":"Polygon","arcs":[[7873,7874,-3628,7875,-3626,7876,-4433,7877,-7864,7878]],"id":"22107"},{"type":"Polygon","arcs":[[7879,7880,-2450,-7216,-7224,-7866]],"id":"28157"},{"type":"Polygon","arcs":[[-3625,-6615,-6322,-4429,-7877]],"id":"28021"},{"type":"Polygon","arcs":[[-327,-7125,-7857,7881]],"id":"28023"},{"type":"Polygon","arcs":[[-2453,7882,-4872,-1424,-262,-2665]],"id":"46049"},{"type":"Polygon","arcs":[[-1434,-5458,-1074,-4139,7883]],"id":"47099"},{"type":"Polygon","arcs":[[-7784,7884,-6330,-438,7885,-6457]],"id":"28035"},{"type":"Polygon","arcs":[[7886,7887,-621,7888,7889,-7689,-7785,-6984]],"id":"53041"},{"type":"Polygon","arcs":[[-7555,7890,7891,-6122,7892,-1264,7893,-797,-4478]],"id":"51143"},{"type":"Polygon","arcs":[[-321,7894,7895,7896,-6343]],"id":"54027"},{"type":"Polygon","arcs":[[-6417,7897,-965,-2542,7898,7899]],"id":"06115"},{"type":"Polygon","arcs":[[-6463,-7497,-7476,-6613,-3623,-7701,-7063]],"id":"28163"},{"type":"Polygon","arcs":[[-2861,7900,-6708,-6862,7901,-4972,7902]],"id":"42105"},{"type":"Polygon","arcs":[[-125,-6406,-7430,7903,7904,7905]],"id":"48215"},{"type":"Polygon","arcs":[[7906,7907]],"id":"51131"},{"type":"Polygon","arcs":[[-4426,-4060,-7593,-3630,-6254]],"id":"36049"},{"type":"Polygon","arcs":[[7908,-7803,-188,7909]],"id":"13249"},{"type":"Polygon","arcs":[[7910,-7527,-7863,-4730,-948,-3783]],"id":"19043"},{"type":"Polygon","arcs":[[-6594,7911,-7024,7912]],"id":"37041"},{"type":"Polygon","arcs":[[7913,7914,-4365,-4849,7915,7916,-2347]],"id":"01095"},{"type":"Polygon","arcs":[[7917,7918,7919,-7726,-7744,-7017]],"id":"36007"},{"type":"Polygon","arcs":[[-7824,7920,-6205,-43]],"id":"36093"},{"type":"Polygon","arcs":[[7921,-2332,7922,-6915,7923]],"id":"48041"},{"type":"Polygon","arcs":[[7924,7925,7926,7927,7928,-2342]],"id":"51047"},{"type":"Polygon","arcs":[[7929,7930,-7924,-6914,7931]],"id":"48051"},{"type":"MultiPolygon","arcs":[[[7932]],[[7933]],[[-442,7934,7935,7936]]],"id":"28047"},{"type":"Polygon","arcs":[[7937,7938,7939,-2303,-7820,-2324]],"id":"48119"},{"type":"Polygon","arcs":[[-6908,7940,-2,-4406]],"id":"49053"},{"type":"Polygon","arcs":[[-6859,-6886,-5533]],"id":"42093"},{"type":"Polygon","arcs":[[-4928,-2662,7941,-413,-1939,-1714,7942,7943,7944]],"id":"48105"},{"type":"Polygon","arcs":[[7945,-2434,7946,7947,-7832,-7209,7948]],"id":"12127"},{"type":"Polygon","arcs":[[-6409,7949,7950,-6556,-7295,-6704,-7901,-2860]],"id":"36101"},{"type":"Polygon","arcs":[[-1486,7951,7952,-4091,7953]],"id":"55101"},{"type":"Polygon","arcs":[[7954,-2474,7955,7956,7957,-3424]],"id":"05059"},{"type":"Polygon","arcs":[[-7101,-2525,-1016,-3107]],"id":"19091"},{"type":"Polygon","arcs":[[-3811,-2933,-3527,-2252,-4938,7958]],"id":"29055"},{"type":"Polygon","arcs":[[-5247,-7328,-3455,-3636,-3314,-3599,7959]],"id":"27173"},{"type":"Polygon","arcs":[[-3919,-5708,-3772,-2516,7960,-6244]],"id":"13151"},{"type":"Polygon","arcs":[[7961,7962,7963,7964,-4845]],"id":"01011"},{"type":"Polygon","arcs":[[-3910,7965,-6991,-1143,-203,7966]],"id":"06047"},{"type":"Polygon","arcs":[[7967,-6034,-6966,-2232,7968,-2230,7969,7970,-6897]],"id":"51095"},{"type":"Polygon","arcs":[[-5513,7971,-6526,7972,-1243]],"id":"22049"},{"type":"Polygon","arcs":[[7973,7974,7975,7976,-7021,-7912,-6593]],"id":"37073"},{"type":"Polygon","arcs":[[7977,7978,7979,-4520,-5486,7980]],"id":"55063"},{"type":"MultiPolygon","arcs":[[[-7797,7981,-7800]],[[7982,7983,7984,-7798,-7799,-7909,7985]]],"id":"13269"},{"type":"Polygon","arcs":[[7986,7987,-7022,-7977]],"id":"37139"},{"type":"Polygon","arcs":[[-6106,-3686,7988,7989,-7925,-2341,-6170]],"id":"51061"},{"type":"Polygon","arcs":[[-2352,7990,-7928,7991,-2795,-5352]],"id":"51137"},{"type":"Polygon","arcs":[[7992,-7733,7993,-7919,7994]],"id":"36017"},{"type":"Polygon","arcs":[[-4672,7995,7996]],"id":"51680"},{"type":"Polygon","arcs":[[7997,7998,7999,8000,-7775]],"id":"40029"},{"type":"Polygon","arcs":[[-6682,-6638,8001,-7999,8002,8003]],"id":"40063"},{"type":"Polygon","arcs":[[-4288,8004,-7932,-6913,-5953,-6755]],"id":"48287"},{"type":"Polygon","arcs":[[8005,-7996,-4671,-3725,8006,-6123,-7892]],"id":"51031"},{"type":"Polygon","arcs":[[-7812,-6632,8007,-8003,-7998,-7774,-3850,-7735]],"id":"40123"},{"type":"Polygon","arcs":[[-2540,-963,8008,8009,-4053,-4285,-6703,8010,8011,8012,8013,8014,8015]],"id":"32031"},{"type":"Polygon","arcs":[[8016,8017,-4820,-6741,-7728]],"id":"36105"},{"type":"Polygon","arcs":[[8018,8019,8020,8021,8022]],"id":"42041"},{"type":"Polygon","arcs":[[-3735,-7449,8023,-3342,8024,-2987]],"id":"54041"},{"type":"Polygon","arcs":[[8025,-3804,-837,-3799,-3994,-5460,8026]],"id":"22053"},{"type":"Polygon","arcs":[[-451,-3024,-583,8027,8028]],"id":"31113"},{"type":"Polygon","arcs":[[8029,8030,-3505,8031,8032,-7963,8033]],"id":"01113"},{"type":"Polygon","arcs":[[-4358,8034,8035,-6065,-5999,-1258]],"id":"05135"},{"type":"Polygon","arcs":[[-4951,-7141,-7577,-1140]],"id":"06107"},{"type":"Polygon","arcs":[[-4331,-6649,-3417,8036,-5744,8037]],"id":"21003"},{"type":"Polygon","arcs":[[8038,8039,8040,8041,8042,8043,-4698]],"id":"22051"},{"type":"Polygon","arcs":[[-4815,8044,8045,-7317,8046]],"id":"36079"},{"type":"Polygon","arcs":[[-4816,-8047,-7321,-7311,8047]],"id":"36087"},{"type":"Polygon","arcs":[[-8046,8048,8049,-7199,8050,-7318]],"id":"09001"},{"type":"Polygon","arcs":[[8051,-2235,-4163,-2267,8052,-4356]],"id":"29091"},{"type":"Polygon","arcs":[[-675,-946,-6930,-7922,-7931,8053]],"id":"48395"},{"type":"Polygon","arcs":[[8054,8055,8056,-1255,-1252,-5408,-7194,8057]],"id":"06067"},{"type":"Polygon","arcs":[[-6636,8058,8059,8060,8061,8062]],"id":"40061"},{"type":"Polygon","arcs":[[-8062,8063,-2654,8064]],"id":"40077"},{"type":"Polygon","arcs":[[-7574,-998,8065,-6284,8066]],"id":"54029"},{"type":"Polygon","arcs":[[8067,-5066,8068,-5391,8069,8070]],"id":"05073"},{"type":"Polygon","arcs":[[8071,8072,-7289,8073,8074,-4410,8075]],"id":"34001"},{"type":"Polygon","arcs":[[-5435,-3934,-4392,-3302,8076,8077]],"id":"16083"},{"type":"Polygon","arcs":[[-1687,-4924,-691,8078,-6894]],"id":"48333"},{"type":"Polygon","arcs":[[-4735,-7048,-4224,-7847,-5874]],"id":"21053"},{"type":"Polygon","arcs":[[8079,-1870,-2055,8080,-7576,-4249,8081,-3387]],"id":"39151"},{"type":"Polygon","arcs":[[-3546,-4089,8082,8083,-3304,8084]],"id":"01117"},{"type":"Polygon","arcs":[[8085,-6641,-3465,-3445,-6023,8086]],"id":"41053"},{"type":"Polygon","arcs":[[8087,8088,-3373,8089,-6436,-2134]],"id":"20167"},{"type":"Polygon","arcs":[[-6517,8090,8091,-1235,-3245,-7412]],"id":"20045"},{"type":"Polygon","arcs":[[-7308,8092,-3000,-1519,-7660]],"id":"20157"},{"type":"Polygon","arcs":[[8093,8094,-8058,-7193,8095,-7808]],"id":"06095"},{"type":"Polygon","arcs":[[8096,-4359,-1261,8097,-3758,8098]],"id":"05005"},{"type":"Polygon","arcs":[[8099,8100,8101,8102]],"id":"51710"},{"type":"Polygon","arcs":[[8103,8104,-999,-499,-1694,-3084,-3717,8105,-4932]],"id":"35025"},{"type":"MultiPolygon","arcs":[[[-7876,-3627]],[[-7433,-3793,-3620,-7875,8106]]],"id":"22065"},{"type":"Polygon","arcs":[[-4933,-8106,-3720,-7419,8107]],"id":"48301"},{"type":"MultiPolygon","arcs":[[[8108]],[[8109,-7033,8110,-6237,-6236],[8111],[-7029]]],"id":"08014"},{"type":"Polygon","arcs":[[-2656,8112,-7081,8113,-3273,-5669,8114,-4435]],"id":"40089"},{"type":"Polygon","arcs":[[8115,-6286,8116,-4840,-6793]],"id":"54069"},{"type":"Polygon","arcs":[[-6076,-6586,-7596,8117,8118]],"id":"37075"},{"type":"Polygon","arcs":[[8119,-8118,-7600,-7671,8120,-2082,-5545]],"id":"37039"},{"type":"Polygon","arcs":[[-4875,-3563,8121,-7711]],"id":"31043"},{"type":"Polygon","arcs":[[8122,8123,8124,-5689,-6392,-7560,8125,-6085,8126,-3593]],"id":"25027"},{"type":"Polygon","arcs":[[8127,8128,8129,-1886,8130,-2784]],"id":"39017"},{"type":"Polygon","arcs":[[8131,-8070,-5394,-1247,-4336,8132]],"id":"22015"},{"type":"Polygon","arcs":[[-3937,-1125,-1803,-4151,8133]],"id":"17103"},{"type":"Polygon","arcs":[[-4278,-5491,8134,8135,-7568,8136]],"id":"41051"},{"type":"Polygon","arcs":[[8137,-5397,8138,-6199,8139]],"id":"37019"},{"type":"Polygon","arcs":[[8140,-5984,-5938,8141,-6865,-6773,-3430]],"id":"47141"},{"type":"Polygon","arcs":[[8142,8143,8144,8145,-3944,8146]],"id":"37083"},{"type":"Polygon","arcs":[[-3027,-7339,-2610,8147,-3571,-1819]],"id":"16023"},{"type":"Polygon","arcs":[[8148,-4308,-6232,-4306,-6239],[-4305]],"id":"08031"},{"type":"Polygon","arcs":[[-7388,-7468,8149,-7431,8150,-5516]],"id":"22067"},{"type":"Polygon","arcs":[[8151,-4480,-2227]],"id":"51735"},{"type":"Polygon","arcs":[[8152,-8103,8153,8154]],"id":"51740"},{"type":"MultiPolygon","arcs":[[[-8112]],[[8155,-7034,-8110,-6235,8156,-6350],[-8109]]],"id":"08013"},{"type":"Polygon","arcs":[[8157,8158,-7167,8159,-8041]],"id":"22071"},{"type":"Polygon","arcs":[[-4962,-3874,-7672,-7597,-6584]],"id":"37099"},{"type":"Polygon","arcs":[[8160,8161,8162,-2633,8163,-7128]],"id":"01025"},{"type":"Polygon","arcs":[[-7134,-4503,8164,-6221,-6488,8165,-8161,-7127]],"id":"01091"},{"type":"Polygon","arcs":[[8166,8167,-6222,-8165,-4502]],"id":"01065"},{"type":"Polygon","arcs":[[8168,8169,-2914,8170,8171]],"id":"01075"},{"type":"Polygon","arcs":[[8172,-8171,-2913,8173,-4500,-7133,8174]],"id":"01107"},{"type":"Polygon","arcs":[[-4765,-6121,8175,-4125,-3324,-3814]],"id":"31127"},{"type":"Polygon","arcs":[[8176,-4248,-4635,-4246,-6900,8177,-2867,8178,-5071,-6066,-5069,8179,-6961]],"id":"51041"},{"type":"Polygon","arcs":[[-7571,-5637,8180,-5163,-1721]],"id":"48403"},{"type":"Polygon","arcs":[[8181,-6182,-566,8182]],"id":"26019"},{"type":"Polygon","arcs":[[8183,-5788,-6534,8184,-7303,-3998]],"id":"29037"},{"type":"Polygon","arcs":[[-8084,8185,-3557,8186,-5153,-3305]],"id":"01037"},{"type":"Polygon","arcs":[[-5348,8187,-7035,-8156,-6349,-462]],"id":"08069"},{"type":"Polygon","arcs":[[-7461,-5747,8188,8189,-7645,8190]],"id":"47037"},{"type":"Polygon","arcs":[[8191,-7510,-6810,8192,-5962,8193]],"id":"42027"},{"type":"Polygon","arcs":[[8194,8195,8196,8197,-5955,-6918]],"id":"48015"},{"type":"Polygon","arcs":[[8198,-5003,8199,8200]],"id":"50013"},{"type":"Polygon","arcs":[[-5898,8201,-8155,8202,8203,-7975,8204]],"id":"51800"},{"type":"Polygon","arcs":[[8205,8206,-2272,-3196]],"id":"08025"},{"type":"Polygon","arcs":[[8207,-3199,8208,-6359]],"id":"08027"},{"type":"Polygon","arcs":[[-5512,-5517,-8151,-7435,-6527,-7972]],"id":"22073"},{"type":"Polygon","arcs":[[-6229,-2271,-249,-414,-7942,-2661]],"id":"48383"},{"type":"Polygon","arcs":[[-2301,-7736,-2333,-4642,-3649,-519]],"id":"40137"},{"type":"Polygon","arcs":[[-3531,8209,-6539,-2264,-2254]],"id":"29179"},{"type":"Polygon","arcs":[[-4934,-8108,-7422,8210,-3155,8211]],"id":"48389"},{"type":"Polygon","arcs":[[-7584,-1855,8212,-3195,8213,-2282]],"id":"08041"},{"type":"Polygon","arcs":[[8214,8215,8216,-7404,8217,-7444,8218]],"id":"39167"},{"type":"Polygon","arcs":[[-7531,-1715,8219,-4632,-7535,8220]],"id":"51045"},{"type":"Polygon","arcs":[[-2927,8221,8222,-3543,8223,-2911,8224]],"id":"01127"},{"type":"Polygon","arcs":[[-7896,8225,8226,-6108,-6169,-6967,8227],[-6660]],"id":"51069"},{"type":"Polygon","arcs":[[-1452,-4558,8228,8229,8230]],"id":"30095"},{"type":"Polygon","arcs":[[-2107,8231,-7683,8232,8233,-11]],"id":"22117"},{"type":"Polygon","arcs":[[-5746,-1208,-3432,-6776,8234,8235,-8189]],"id":"47189"},{"type":"Polygon","arcs":[[8236,-4112,-5905,8237,-3185,-7652,-7656]],"id":"16035"},{"type":"MultiPolygon","arcs":[[[8238]],[[8239,8240]],[[8241,8242,-4699,-8044,8243,8244,-7722]]],"id":"22057"},{"type":"Polygon","arcs":[[8245,-7340,8246]],"id":"26047"},{"type":"Polygon","arcs":[[-6953,8247,8248,-8143,-1059,-3749]],"id":"37185"},{"type":"Polygon","arcs":[[8249,8250,-154,-7627,-6972,8251]],"id":"72013"},{"type":"Polygon","arcs":[[-1593,-7237,8252,-3640,-7346]],"id":"26115"},{"type":"Polygon","arcs":[[-2244,8253,-2287]],"id":"30047"},{"type":"Polygon","arcs":[[-2288,-8254,-2243,8254,8255,-1973,-3186,-8238,-5904]],"id":"30063"},{"type":"Polygon","arcs":[[-8157,-6234,8256,-6351]],"id":"08047"},{"type":"Polygon","arcs":[[-6360,-8209,-3198,-7105,-7026,-3226]],"id":"08055"},{"type":"Polygon","arcs":[[8257,8258,-6990,8259,-2387,-6948,-5730,-5482]],"id":"54059"},{"type":"Polygon","arcs":[[-167,8260,-8226,-7895,-320]],"id":"54065"},{"type":"Polygon","arcs":[[-7129,-8164,-2632,8261,8262,-7858]],"id":"01129"},{"type":"Polygon","arcs":[[-2092,8263,8264,8265,-3338,-1353,-1347,-6999]],"id":"17173"},{"type":"Polygon","arcs":[[8266,-5716,-4325,-7292,-3434,8267]],"id":"18165"},{"type":"Polygon","arcs":[[-4891,8268,8269,-7290,-8073,8270,8271]],"id":"34005"},{"type":"Polygon","arcs":[[-3236,8272,-5488,-5291,-466,-6454]],"id":"27045"},{"type":"Polygon","arcs":[[-253,8273,8274,-4660,8275,8276]],"id":"48439"},{"type":"Polygon","arcs":[[-4769,8277,8278,-5774,8279,8280,-4776]],"id":"17031"},{"type":"Polygon","arcs":[[-8154,-8102,8281,-4625,8282,-8203]],"id":"51550"},{"type":"Polygon","arcs":[[-2963,8283,-6451,-5316,-1113,-1294]],"id":"26155"},{"type":"Polygon","arcs":[[8284,8285,-470,-80,8286,-2961,-3597]],"id":"26157"},{"type":"Polygon","arcs":[[-702,8287,-6838,-6139]],"id":"38011"},{"type":"Polygon","arcs":[[8288,-1758,-697,-6138,-3664]],"id":"38033"},{"type":"Polygon","arcs":[[-4263,-2192,8289,8290,-6868,-6215,8291]],"id":"55035"},{"type":"Polygon","arcs":[[8292,8293,8294,-3957,-1253,8295]],"id":"32005"},{"type":"Polygon","arcs":[[8296,-474,8297,-4154]],"id":"18009"},{"type":"Polygon","arcs":[[-3525,-2143,8298,-475,-8297,-4153]],"id":"18179"},{"type":"Polygon","arcs":[[8299,-1931,-5525,8300,8301]],"id":"05013"},{"type":"Polygon","arcs":[[-2457,8302,-5779,8303,8304,-176,8305]],"id":"17091"},{"type":"Polygon","arcs":[[-7117,-7202,-6388,-3979]],"id":"18163"},{"type":"Polygon","arcs":[[8306,-3187,-2789,-2980,8307,-2921]],"id":"16003"},{"type":"Polygon","arcs":[[-6086,-8126,-7562,-7564,8308]],"id":"09013"},{"type":"Polygon","arcs":[[-4384,-7207,8309,-4228,8310,8311,-3987,-7703]],"id":"21111"},{"type":"Polygon","arcs":[[-8233,-7682,-6458,-7886,-443,8312,8313]],"id":"28109"},{"type":"Polygon","arcs":[[8314,8315,-8242,-7721]],"id":"22093"},{"type":"Polygon","arcs":[[-349,-4294,-7548,8316,-5572,8317]],"id":"49013"},{"type":"Polygon","arcs":[[-6651,-6093,8318,-3694,-3045]],"id":"48209"},{"type":"Polygon","arcs":[[8319,-5575,-5585,8320,8321]],"id":"49023"},{"type":"Polygon","arcs":[[8322,8323,8324,-6591,8325,-8144,-8249]],"id":"37131"},{"type":"Polygon","arcs":[[-2703,-4847,8326,-1804,8327,-859]],"id":"01041"},{"type":"Polygon","arcs":[[-4499,8328,8329,8330]],"id":"16007"},{"type":"Polygon","arcs":[[-2819,8331,8332,-1672,-1882,-8130,8333]],"id":"39113"},{"type":"Polygon","arcs":[[8334,8335,8336,8337,8338,-1806]],"id":"01045"},{"type":"MultiPolygon","arcs":[[[8339,8340]],[[8341,8342]]],"id":"06075"},{"type":"Polygon","arcs":[[-7005,8343,8344,8345,-2103]],"id":"08091"},{"type":"Polygon","arcs":[[-7157,8346,-5196,-5412,8347,8348]],"id":"17153"},{"type":"Polygon","arcs":[[8349,8350,8351,-6062,-8036,8352]],"id":"05121"},{"type":"Polygon","arcs":[[-3474,-6002,-6011,-4715,-6345,-3283,8353]],"id":"05145"},{"type":"Polygon","arcs":[[8354,-662,8355,-3390,-932,-6661,-4190]],"id":"39005"},{"type":"Polygon","arcs":[[-3842,-2178,8356,-8059,-6635,-4194]],"id":"40101"},{"type":"MultiPolygon","arcs":[[[8357]],[[8358]],[[-4268,-7723,-8245,8359,-8240,8360]]],"id":"22109"},{"type":"Polygon","arcs":[[8361,-8087,-6025,-6026,8362]],"id":"41041"},{"type":"Polygon","arcs":[[-471,-8286,8363]],"id":"26063"},{"type":"Polygon","arcs":[[8364,-1130,-7781,-6165,8365]],"id":"29227"},{"type":"Polygon","arcs":[[8366,8367,-6375,-6666,8368,-4996]],"id":"29175"},{"type":"Polygon","arcs":[[8369]],"id":"15003"},{"type":"Polygon","arcs":[[8370,-8321,-5584,8371,-6269,-4403]],"id":"49027"},{"type":"Polygon","arcs":[[-8372,-5583,-5988,-5967,-5477,-6270]],"id":"49041"},{"type":"Polygon","arcs":[[8372,-6920,-5475,8373,-5576,-8320,8374]],"id":"49045"},{"type":"MultiPolygon","arcs":[[[8375,8376,8377,8378]],[[8379]],[[8380]],[[8381]],[[8382,8383,8384]],[[8385]],[[8386]],[[8387]],[[8388]]],"id":"12087"},{"type":"Polygon","arcs":[[8389,8390,-6021,8391,-5921,8392,8393,-4677]],"id":"13033"},{"type":"Polygon","arcs":[[-3955,8394,8395,-8030,8396,8397]],"id":"01081"},{"type":"Polygon","arcs":[[8398,-5993,-3709,8399,8400,8401,8402]],"id":"48409"},{"type":"Polygon","arcs":[[-6992,-7966,-3909,-2682]],"id":"06043"},{"type":"Polygon","arcs":[[-7519,8403,-8366,-6164,8404,8405,-6119]],"id":"29147"},{"type":"Polygon","arcs":[[-1349,-1356,-3179,-1170,-3151,-2758]],"id":"17025"},{"type":"MultiPolygon","arcs":[[[8406]],[[8407]],[[-50,8408,-3114,8409]]],"id":"02130"},{"type":"Polygon","arcs":[[8410,-1420,8411,-2033]],"id":"02282"},{"type":"Polygon","arcs":[[-2142,-1880,8412,-476,-8299]],"id":"18001"},{"type":"Polygon","arcs":[[8413,-1191,-5211,8414,8415]],"id":"08017"},{"type":"Polygon","arcs":[[-6398,8416,-4965,8417,-5859]],"id":"47173"},{"type":"Polygon","arcs":[[-178,8418,-2943,8419,-8268,-3433,8420]],"id":"17183"},{"type":"Polygon","arcs":[[8421,8422]],"id":"53009"},{"type":"Polygon","arcs":[[8423,8424,8425,-7887,-6983,8426]],"id":"53027"},{"type":"Polygon","arcs":[[8427,8428,-2432,8429,-7788]],"id":"12109"},{"type":"Polygon","arcs":[[-8422,8430,8431,-8424,8432]],"id":"53031"},{"type":"MultiPolygon","arcs":[[[-7810,8433]]],"id":"06041"},{"type":"Polygon","arcs":[[-6962,-8180,-5073,8434,-6937,8435,8436,8437]],"id":"51053"},{"type":"Polygon","arcs":[[-4684,-1233,8438,-5175]],"id":"17129"},{"type":"Polygon","arcs":[[-4292,-5902,8439,-7152,-7629,-7549]],"id":"08081"},{"type":"Polygon","arcs":[[-7169,8440,-8330,-5256,-3975]],"id":"16041"},{"type":"Polygon","arcs":[[-6418,-7900,8441,-8056,8442,-3914]],"id":"06101"},{"type":"Polygon","arcs":[[-7575,-8067,-6287,-8116,-6792,-823,-4251]],"id":"39081"},{"type":"Polygon","arcs":[[-7375,-185,8443,-6825,8444]],"id":"35009"},{"type":"Polygon","arcs":[[-2813,8445,-5239,8446,8447]],"id":"36021"},{"type":"Polygon","arcs":[[-7391,8448,-2378,-3135,-7495,-6461]],"id":"28083"},{"type":"Polygon","arcs":[[-8121,-7670,8449,-3922,8450,-2083]],"id":"13291"},{"type":"Polygon","arcs":[[8451,-6800,8452,8453,-5330,8454]],"id":"39001"},{"type":"Polygon","arcs":[[-4411,-8075,8455]],"id":"34009"},{"type":"Polygon","arcs":[[-4407,-8,-1980,-4949,8456]],"id":"32003"},{"type":"Polygon","arcs":[[-7559,8457,8458,8459,-8091,-6516]],"id":"20103"},{"type":"Polygon","arcs":[[-3320,-5251,-8177,-6960]],"id":"51145"},{"type":"Polygon","arcs":[[-4082,8460,8461,8462,8463,-1085,-3729]],"id":"53043"},{"type":"Polygon","arcs":[[8464,8465,-623,8466,8467,-8425,-8432]],"id":"53045"},{"type":"MultiPolygon","arcs":[[[8468]],[[8469]],[[8470]],[[8471]]],"id":"53055"},{"type":"Polygon","arcs":[[8472,-3171,8473,8474,8475]],"id":"17133"},{"type":"Polygon","arcs":[[-1770,8476,8477,8478,-7002,8479]],"id":"08097"},{"type":"Polygon","arcs":[[8480,-8009,-962,8481,-556]],"id":"06035"},{"type":"Polygon","arcs":[[-3495,-2849,-2152,-2114,-279]],"id":"19101"},{"type":"Polygon","arcs":[[8482,-5212,-2839,-7103,-3289,8483]],"id":"08099"},{"type":"Polygon","arcs":[[-715,-4113,-8237,-7655,8484]],"id":"16057"},{"type":"Polygon","arcs":[[-2441,8485,8486,-6362,8487]],"id":"12097"},{"type":"Polygon","arcs":[[8488,8489,8490,-838,8491,-336]],"id":"27171"},{"type":"Polygon","arcs":[[-6490,-2561,8492,8493,-7984,8494,-209]],"id":"13293"},{"type":"Polygon","arcs":[[8495,8496,-7287,8497,8498]],"id":"31049"},{"type":"Polygon","arcs":[[8499,-922,-672,-181,-7374]],"id":"48359"},{"type":"Polygon","arcs":[[8500,-1796,8501,-1745,-3770,-5707]],"id":"13297"},{"type":"Polygon","arcs":[[-6502,-6226,8502,8503,8504,-7069]],"id":"13303"},{"type":"Polygon","arcs":[[8505,-7315,8506,8507,8508]],"id":"34013"},{"type":"Polygon","arcs":[[8509,8510,8511,-4722,8512,8513,-5150]],"id":"13305"},{"type":"Polygon","arcs":[[8514,-7109,-5054,-3172,-8473,8515,-3809]],"id":"29189"},{"type":"Polygon","arcs":[[-7415,-14,8516,8517,-4753]],"id":"22063"},{"type":"Polygon","arcs":[[-3307,-5156,-4848,-2701,-6486]],"id":"01001"},{"type":"Polygon","arcs":[[-7964,-8033,8518,8519,8520,8521,-8336,8522]],"id":"01005"},{"type":"MultiPolygon","arcs":[[[8523]],[[-8262,-2631,8524,8525,8526,8527]]],"id":"01097"},{"type":"Polygon","arcs":[[8528,-1703,8529,-8462,8530]],"id":"53065"},{"type":"MultiPolygon","arcs":[[[8531]],[[-4085,-6133,8532]],[[8533]]],"id":"53073"},{"type":"Polygon","arcs":[[-1706,8534,-3358,-3129,8535,8536,8537]],"id":"13019"},{"type":"Polygon","arcs":[[8538,-4497,-5903,-346]],"id":"56041"},{"type":"Polygon","arcs":[[8539,-8436,-6940,8540,-8324],[-1199]],"id":"51081"},{"type":"Polygon","arcs":[[-8211,-7421,-4929,-7945,8541,-5754,-3156]],"id":"48371"},{"type":"Polygon","arcs":[[-3647,-7120,8542,8543,-2869,-5287,-7517]],"id":"17161"},{"type":"Polygon","arcs":[[-1195,-2820,-8334,-8129,8544]],"id":"39135"},{"type":"Polygon","arcs":[[8545,-1065,8546,-784,8547,-1876]],"id":"39137"},{"type":"Polygon","arcs":[[8548,-8345,8549,8550,-5158]],"id":"08111"},{"type":"Polygon","arcs":[[-2856,8551,-1888,8552]],"id":"48385"},{"type":"Polygon","arcs":[[-2242,-1964,-5496,-5974,8553,-8255]],"id":"30077"},{"type":"Polygon","arcs":[[8554,8555,8556,8557,-4488,8558]],"id":"13309"},{"type":"Polygon","arcs":[[-3016,-5709,8559,-7091,-1982]],"id":"06065"},{"type":"Polygon","arcs":[[-7257,-1627,-495,8560,8561]],"id":"40115"},{"type":"Polygon","arcs":[[-6769,-7626,8562,-2691,8563]],"id":"72103"},{"type":"Polygon","arcs":[[-3609,8564,8565,-1029]],"id":"26001"},{"type":"Polygon","arcs":[[8566,-5760,-808,8567,8568,-1474]],"id":"56043"},{"type":"Polygon","arcs":[[8569,-4922,-7849,-4909,-4661,-8275]],"id":"48113"},{"type":"Polygon","arcs":[[8570,-7066,8571,8572]],"id":"72059"},{"type":"Polygon","arcs":[[-878,-2145,-3524,-2096,-5869]],"id":"18183"},{"type":"Polygon","arcs":[[-5314,-5296,-7357,8573,-7280,-4468]],"id":"47047"},{"type":"Polygon","arcs":[[-4775,-7661,-6304,8574,-8088,-2133,-3337]],"id":"20141"},{"type":"Polygon","arcs":[[-6982,8575,-6880,8576,8577,8578,-2073]],"id":"72011"},{"type":"MultiPolygon","arcs":[[[-8578,8579,-2065,-6739,-4912,-4270,8580]]],"id":"72097"},{"type":"Polygon","arcs":[[8581,-6095,-5182,-4824,-3590,-5234,8582]],"id":"50003"},{"type":"Polygon","arcs":[[-4083,-3727,-2436,-2429]],"id":"53017"},{"type":"MultiPolygon","arcs":[[[-3703,8583,8584,8585]],[[-8401,8586,8587,8588]]],"id":"48355"},{"type":"Polygon","arcs":[[8589,8590,8591,-2511,-5001]],"id":"50019"},{"type":"Polygon","arcs":[[-5302,-6344,8592,-7383,-3738,-551,-5305]],"id":"54023"},{"type":"Polygon","arcs":[[8593,-5842,8594,8595,-1986]],"id":"13073"},{"type":"Polygon","arcs":[[-2797,8596,-5614,-4515,8597,-4243,-5250]],"id":"51085"},{"type":"Polygon","arcs":[[-4436,-8115,-5673,-7815,8598,-2304,-7940,8599]],"id":"48387"},{"type":"Polygon","arcs":[[8600,-2051,-3500,8601,8602,8603,-6798]],"id":"39141"},{"type":"Polygon","arcs":[[-60,8604,-8555,8605,8606,-2444]],"id":"13091"},{"type":"Polygon","arcs":[[-6210,8607,8608,-1797,-8501,-5706,-3917]],"id":"13135"},{"type":"Polygon","arcs":[[-6365,-2085,8609,8610,8611,-6151,-6497]],"id":"13085"},{"type":"Polygon","arcs":[[8612,-3552,8613,-7657,-3188,-8307,-2920,8614,8615]],"id":"41063"},{"type":"Polygon","arcs":[[-8504,8616,-4683,8617,8618]],"id":"13167"},{"type":"Polygon","arcs":[[-6225,8619,-1988,8620,-8390,-4676,-8617,-8503]],"id":"13163"},{"type":"Polygon","arcs":[[8621,8622,8623,-1667,-8333]],"id":"39023"},{"type":"Polygon","arcs":[[8624,8625,8626,8627,8628,-3671,-4354,8629]],"id":"29069"},{"type":"Polygon","arcs":[[8630,-8201,8631,-7602,-7872]],"id":"36019"},{"type":"Polygon","arcs":[[-7530,-7609,8632,8633,-4669,8634,-1717],[-3067],[-1262]],"id":"51163"},{"type":"Polygon","arcs":[[-5769,8635,-8019,8636]],"id":"42099"},{"type":"Polygon","arcs":[[8637,8638,-8626,8639,-8351]],"id":"05021"},{"type":"Polygon","arcs":[[-165,-3681,-6105,8640]],"id":"54037"},{"type":"Polygon","arcs":[[8641,8642,8643,-2239]],"id":"30035"},{"type":"Polygon","arcs":[[-8200,-5002,-2514,8644,8645,-7603,-8632]],"id":"50007"},{"type":"Polygon","arcs":[[8646,-2896,-4687,-4874,-6013]],"id":"19167"},{"type":"Polygon","arcs":[[-705,-400,-2294,-1690,-6779,-4925]],"id":"48083"},{"type":"Polygon","arcs":[[-2531,8647,-1084,-7572,-6909,8648,-7869]],"id":"48401"},{"type":"Polygon","arcs":[[8649,8650,8651,8652,-5324,-8454]],"id":"39145"},{"type":"MultiPolygon","arcs":[[[8653,-1415]],[[8654,-1409,8655,-1413,8656,-1993]]],"id":"02110"},{"type":"Polygon","arcs":[[8657,8658,-7396,-7188,-3763]],"id":"05077"},{"type":"Polygon","arcs":[[-4717,-597,8659,-8658,-3762]],"id":"05123"},{"type":"Polygon","arcs":[[-5494,8660,-7952,-1485]],"id":"55079"},{"type":"Polygon","arcs":[[-8290,-2191,-2524,8661,8662,-7979,8663]],"id":"55053"},{"type":"Polygon","arcs":[[-4475,-6550,-7382,8664,-8269,-4890]],"id":"34021"},{"type":"Polygon","arcs":[[8665,-6959,-6622,-7325,-4649]],"id":"37009"},{"type":"Polygon","arcs":[[8666,-2080,-6607,8667,-988]],"id":"27167"},{"type":"Polygon","arcs":[[-2172,-3368,-329,8668,8669,8670]],"id":"38051"},{"type":"Polygon","arcs":[[-8645,-2513,8671,8672,8673]],"id":"50023"},{"type":"Polygon","arcs":[[-7712,-8122,-3562,8674,8675,-1041,-1638]],"id":"31173"},{"type":"Polygon","arcs":[[-6702,8676,8677,-8011]],"id":"32027"},{"type":"Polygon","arcs":[[8678,-8673,8679,8680,-5179]],"id":"50017"},{"type":"MultiPolygon","arcs":[[[8681]],[[8682]],[[-6995,8683]]],"id":"55029"},{"type":"Polygon","arcs":[[-557,-8482,-961,-7898,-6416,-2161]],"id":"06063"},{"type":"Polygon","arcs":[[-6803,-3149,-4192,-87,8684,-780]],"id":"39147"},{"type":"Polygon","arcs":[[-5418,-4812,8685,-7097,8686,8687]],"id":"13103"},{"type":"Polygon","arcs":[[8688,-5705,8689,8690,8691,-5437,-2544]],"id":"31161"},{"type":"Polygon","arcs":[[-585,-259,-99,-100,-1400,8692]],"id":"46087"},{"type":"Polygon","arcs":[[8693,-199,8694,8695,8696,-2694,-4259]],"id":"55083"},{"type":"Polygon","arcs":[[-2360,-6223,-2748,8697]],"id":"02068"},{"type":"Polygon","arcs":[[-7314,-4418,8698,8699,8700,-8507]],"id":"34017"},{"type":"Polygon","arcs":[[-1476,8701,-8568,-812,8702,-5900,-5254,-6230]],"id":"56013"},{"type":"Polygon","arcs":[[8703,-2714,-3676,-5344,-6373,-8368]],"id":"29137"},{"type":"Polygon","arcs":[[8704,-2571,8705,-3496,-2049]],"id":"39045"},{"type":"Polygon","arcs":[[-8069,-5065,8706,8707,-7804,-5392]],"id":"05027"},{"type":"Polygon","arcs":[[8708,8709,-4375,-4036,-7862]],"id":"55065"},{"type":"Polygon","arcs":[[-4422,8710,8711]],"id":"36047"},{"type":"Polygon","arcs":[[-1969,-1517,-7637,-5016,-6004,-2216]],"id":"29141"},{"type":"Polygon","arcs":[[-6157,8712,-852,-7327,-5245,-7261]],"id":"27151"},{"type":"Polygon","arcs":[[8713,-6038,-5629,-5943,8714,-5945,8715,-3667,-8629]],"id":"29143"},{"type":"Polygon","arcs":[[-7717,-3097,-966,-4373,-8710,8716]],"id":"55045"},{"type":"Polygon","arcs":[[-8677,-6701,8717,-5510,8718,8719]],"id":"32015"},{"type":"Polygon","arcs":[[8720,-8014]],"id":"32029"},{"type":"Polygon","arcs":[[-7338,-6676,-2878,-4565,-4829]],"id":"35001"},{"type":"Polygon","arcs":[[-3128,-7276,-7009,8721,-8536]],"id":"13173"},{"type":"Polygon","arcs":[[-5675,-40,-4864,-4465,-7301,-1456,8722]],"id":"56045"},{"type":"Polygon","arcs":[[8723,-6552,-2863,8724,8725,8726]],"id":"36009"},{"type":"Polygon","arcs":[[8727,8728,-129,-7541,-2409,-136,8729]],"id":"72127"},{"type":"Polygon","arcs":[[8730,8731,-130,-8729]],"id":"72139"},{"type":"Polygon","arcs":[[-2629,-1092,-1859,-1866,8732]],"id":"19049"},{"type":"Polygon","arcs":[[-7944,8733,8734,-5755,-8542]],"id":"48443"},{"type":"Polygon","arcs":[[8735,-7673,-6424,-1893,8736]],"id":"13119"},{"type":"Polygon","arcs":[[-5834,-565,8737,-7155,8738]],"id":"17199"},{"type":"Polygon","arcs":[[-1913,8739,-7639,-5797,8740,-2053]],"id":"39155"},{"type":"Polygon","arcs":[[-1151,-1800,8741,8742,-1849,8743]],"id":"17203"},{"type":"Polygon","arcs":[[-8551,8744,-604,-5996,-3966]],"id":"08067"},{"type":"Polygon","arcs":[[-3388,-8082,-4252,-821,-1899,8745]],"id":"39157"},{"type":"Polygon","arcs":[[-5160,-2202,-2827,-2088,-21,-6331,-4254,-6008]],"id":"27089"},{"type":"Polygon","arcs":[[-1762,-1738,-7795,-7713,-5650,8746]],"id":"27115"},{"type":"Polygon","arcs":[[-5064,8747,8748,-8302,8749,-8707]],"id":"05103"},{"type":"Polygon","arcs":[[8750,8751,-658,-8355,-4189,8752]],"id":"39093"},{"type":"Polygon","arcs":[[8753,-6484,8754,-6260,8755,-4961]],"id":"37021"},{"type":"Polygon","arcs":[[-6064,8756,-8630,-4353,-3902,-6010]],"id":"05031"},{"type":"Polygon","arcs":[[-5816,-4176,8757,-8104,-4931,-4779]],"id":"35005"},{"type":"Polygon","arcs":[[-2496,-2546,-5440,8758,-5680,-7302]],"id":"31165"},{"type":"Polygon","arcs":[[-7957,8759,-1932,-8300,-8749,8760]],"id":"05039"},{"type":"Polygon","arcs":[[8761,-4119,8762,-4959,-3829,-6262,8763]],"id":"37023"},{"type":"Polygon","arcs":[[-6483,-4622,8764,-8764,-6261,-8755]],"id":"37111"},{"type":"Polygon","arcs":[[-7512,-5530,-5768,-6812]],"id":"42109"},{"type":"Polygon","arcs":[[-8606,-8559,-4487,-3354,-3477,8765]],"id":"13271"},{"type":"Polygon","arcs":[[8766,-751,-7111,8767]],"id":"12115"},{"type":"Polygon","arcs":[[-6426,-4460,-5951,-5844,8768,8769,8770,-1895]],"id":"13105"},{"type":"Polygon","arcs":[[8771,-8537,-8722,-7013,8772,-7491,8773]],"id":"13185"},{"type":"Polygon","arcs":[[-210,-8495,-7983,8774,-3502,8775,8776]],"id":"13263"},{"type":"Polygon","arcs":[[-6753,-4584,8777,-8140,-6198]],"id":"37047"},{"type":"Polygon","arcs":[[-563,-5838,-4218,-5928,-5403,-7333]],"id":"17069"},{"type":"Polygon","arcs":[[-8611,8778,-3925,8779,8780,8781,-8609,8782]],"id":"13139"},{"type":"Polygon","arcs":[[8783,-5382,-6525,-4439,-3673,8784]],"id":"17001"},{"type":"Polygon","arcs":[[8785,8786,-2124,8787,-62,-2443,-1934,-7802]],"id":"13153"},{"type":"Polygon","arcs":[[8788,-5165,-4134,8789]],"id":"48457"},{"type":"Polygon","arcs":[[-6113,-7223,-7539,-5268,-7270,-1742]],"id":"12041"},{"type":"Polygon","arcs":[[-840,8790,8791,-1919,-3089,-3161]],"id":"27139"},{"type":"Polygon","arcs":[[-3133,-3034,8792,-3207,-2875,-7477,-7496]],"id":"28007"},{"type":"Polygon","arcs":[[-8604,8793,-8650,-8453,-6799]],"id":"39131"},{"type":"Polygon","arcs":[[-6820,-2184,-6905,-3122,-5981]],"id":"46095"},{"type":"Polygon","arcs":[[8794,8795,-8727,8796,-4795]],"id":"36013"},{"type":"Polygon","arcs":[[-7992,-7927,8797,8798,8799,-5610,-8597,-2796]],"id":"51177"},{"type":"Polygon","arcs":[[-2266,-6543,8800,-8353,-8035,-4357,-8053]],"id":"29149"},{"type":"Polygon","arcs":[[-7381,8801,-7291,-8270,-8665]],"id":"34025"},{"type":"Polygon","arcs":[[-8652,8802,-3893,-6411,8803,-5946,8804]],"id":"39087"},{"type":"Polygon","arcs":[[-4399,8805,-5035,8806,-1641,-4025,-5398]],"id":"26103"},{"type":"Polygon","arcs":[[8807,-5151,-8514,8808,-6369]],"id":"13229"},{"type":"MultiPolygon","arcs":[[[8809]],[[8810]]],"id":"15007"},{"type":"Polygon","arcs":[[-3103,-5006,-4974,8811,-8194,-5961,-3440,-6565]],"id":"42033"},{"type":"Polygon","arcs":[[-2826,-7256,-7365,-2187,-25,-2090]],"id":"27029"},{"type":"Polygon","arcs":[[8812,-3478,-3352,-8535,-1705]],"id":"13155"},{"type":"Polygon","arcs":[[8813,-1765,-6312,8814]],"id":"27035"},{"type":"Polygon","arcs":[[-293,-5021,-5027,8815,-7708,-4554,-3507,-2499]],"id":"30087"},{"type":"Polygon","arcs":[[-661,-1871,-8080,-3386,-8356]],"id":"39169"},{"type":"Polygon","arcs":[[-607,-4721,8816,8817,-7144]],"id":"12051"},{"type":"Polygon","arcs":[[-8769,-5843,-8594,-1985,8818]],"id":"13181"},{"type":"Polygon","arcs":[[-4389,8819,-8511,8820]],"id":"13183"},{"type":"Polygon","arcs":[[-7124,-2725,8821,-4548,-5990,-1646]],"id":"48469"},{"type":"Polygon","arcs":[[-1884,8822,8823,-7040,8824,-7212,8825]],"id":"39025"},{"type":"Polygon","arcs":[[-990,8826,-7262,-5591,8827,-738]],"id":"46109"},{"type":"Polygon","arcs":[[-4868,-5982,-343,-8689,-2543,-2494,-4463]],"id":"46102"},{"type":"Polygon","arcs":[[-6730,8828,-3346,-3894,-7615,-7619]],"id":"54067"},{"type":"Polygon","arcs":[[8829,-6875,8830,8831,8832]],"id":"72071"},{"type":"Polygon","arcs":[[-6879,8833,-2060,-8580,-8577]],"id":"72083"},{"type":"Polygon","arcs":[[8834,8835,-6876,-8830]],"id":"72115"},{"type":"Polygon","arcs":[[-6878,8836,8837,-6975,-7068,8838,-2061,-8834]],"id":"72081"},{"type":"Polygon","arcs":[[8839,8840,-7623,-6767]],"id":"72089"},{"type":"Polygon","arcs":[[-7065,-6830,8841,-8572]],"id":"72111"},{"type":"Polygon","arcs":[[-5520,-7514,-975,8842,8843]],"id":"33017"},{"type":"Polygon","arcs":[[-3391,-2223,-3475,-8354,-3287,-3278,-6494]],"id":"05045"},{"type":"Polygon","arcs":[[8844,-8475,8845,-7247,8846]],"id":"29186"},{"type":"Polygon","arcs":[[-6054,-3568,-3656,-7076,-2468]],"id":"31153"},{"type":"Polygon","arcs":[[-7990,8847,8848,-1496,-5611,-8800,8849,-8798,-7926]],"id":"51179"},{"type":"Polygon","arcs":[[8850,-5818,-4187,-6849,-3230,-699,-1757]],"id":"38089"},{"type":"Polygon","arcs":[[-5722,8851,8852,8853,8854,8855,8856]],"id":"47051"},{"type":"Polygon","arcs":[[-485,-2113,-5185,-6385,8857]],"id":"38101"},{"type":"Polygon","arcs":[[8858,-667,8859,-7835,8860,-8853]],"id":"47115"},{"type":"Polygon","arcs":[[8861,-7545,-5623,-5601,-7499,-1920,-8792]],"id":"27037"},{"type":"Polygon","arcs":[[-4155,-8298,-480,8862,-3007,-6509]],"id":"18035"},{"type":"Polygon","arcs":[[-7359,-2844,-1760,8863,-2823]],"id":"27061"},{"type":"Polygon","arcs":[[-8566,8864,-3173,-770]],"id":"26069"},{"type":"Polygon","arcs":[[-3371,8865,8866,-6444,8867]],"id":"20159"},{"type":"Polygon","arcs":[[8868,-7351,-5785,8869,-8459]],"id":"20209"},{"type":"Polygon","arcs":[[8870,-5468,-548,-919,-2687,-3697,8871]],"id":"48479"},{"type":"Polygon","arcs":[[-8197,8872,-6785,-6041,8873,8874]],"id":"48481"},{"type":"Polygon","arcs":[[-2560,-2519,8875,-870,-2122,8876,-8493]],"id":"13207"},{"type":"Polygon","arcs":[[-1795,-635,8877,-6279,-1746,-8502]],"id":"13219"},{"type":"Polygon","arcs":[[-7796,8878,-8786,-7801,-7982]],"id":"13225"},{"type":"Polygon","arcs":[[8879,8880,8881,-8520]],"id":"13239"},{"type":"Polygon","arcs":[[-3389,-8746,-1898,8882,-2568,-934]],"id":"39031"},{"type":"Polygon","arcs":[[-8881,8883,-6506,8884,-1825,8885]],"id":"13243"},{"type":"Polygon","arcs":[[-3239,-2414,-6770,-8564,-2690,8886,-1727]],"id":"72085"},{"type":"Polygon","arcs":[[8887,-7622,8888,-6413,8889]],"id":"54079"},{"type":"Polygon","arcs":[[-6989,-7613,8890,-4833,-2388,-8260]],"id":"54109"},{"type":"Polygon","arcs":[[-6742,-4818,8891,8892,-6267,-7337]],"id":"34037"},{"type":"Polygon","arcs":[[8893,-3547,-8085,-3303,-6219,-8168]],"id":"01007"},{"type":"Polygon","arcs":[[8894,-6184,-4855,8895,8896,-6314]],"id":"28057"},{"type":"Polygon","arcs":[[-7438,8897,-8785,-3672,-2712,8898]],"id":"29111"},{"type":"Polygon","arcs":[[-5181,8899,8900,8901,8902,-4822]],"id":"33019"},{"type":"Polygon","arcs":[[-2139,-3190,-1621,8903,8904,8905,-2110]],"id":"38069"},{"type":"Polygon","arcs":[[8906,8907,-3659,8908,-8711,-4421]],"id":"36081"},{"type":"Polygon","arcs":[[-7894,-1263,-7893,-6127,-3519,-2600,8909,-798]],"id":"37033"},{"type":"Polygon","arcs":[[8910,-5312,-5401,-3611]],"id":"26131"},{"type":"Polygon","arcs":[[-4754,-8518,8911,-8315,-7720,8912]],"id":"22005"},{"type":"Polygon","arcs":[[8913,-6364,-605,-749,-1873]],"id":"12055"},{"type":"Polygon","arcs":[[-6265,-4619,-1046,-3871,-8756]],"id":"37089"},{"type":"Polygon","arcs":[[-1134,-3258,-1277,-1160,-2751,-3566]],"id":"19029"},{"type":"Polygon","arcs":[[-8624,8914,-6563,8915,-2047,8916,-1668]],"id":"39097"},{"type":"Polygon","arcs":[[8917,8918,-3136,-6363,-8487]],"id":"12061"},{"type":"Polygon","arcs":[[8919,-7679,-7769,-4939,-4366,8920]],"id":"05131"},{"type":"Polygon","arcs":[[-8305,8921,-2937,-8419,-177]],"id":"17075"},{"type":"Polygon","arcs":[[-8032,-3504,8922,-6507,-8884,-8880,-8519]],"id":"13259"},{"type":"Polygon","arcs":[[8923,8924,-1915,-1868,-659,-8752]],"id":"39035"},{"type":"Polygon","arcs":[[-3771,-1749,8925,-864,-8876,-2518]],"id":"13159"},{"type":"Polygon","arcs":[[-6152,-8612,-8783,-8608,-6209]],"id":"13117"},{"type":"Polygon","arcs":[[8926,8927,-5436,-8078,8928,-6699,8929]],"id":"16073"},{"type":"Polygon","arcs":[[8930,8931,-3911,-7967,-202,8932,8933]],"id":"06085"},{"type":"Polygon","arcs":[[8934,-4759,-7635,8935,-3801,8936,-6447]],"id":"22079"},{"type":"Polygon","arcs":[[-83,-6315,-8897,8937,-8169,8938,8939]],"id":"28095"},{"type":"Polygon","arcs":[[8940,-4892,-8272,8941,8942,-6333]],"id":"42101"},{"type":"Polygon","arcs":[[8943,-8843,-974,8944,-7453,8945]],"id":"33015"},{"type":"Polygon","arcs":[[8946,8947,-8583,-5233,-8446,-6207]],"id":"36083"},{"type":"Polygon","arcs":[[-4958,8948,-4804,-3831]],"id":"37071"},{"type":"Polygon","arcs":[[8949,-6537,8950,-6039,-8714,-8628,8951]],"id":"29207"},{"type":"Polygon","arcs":[[-8691,8952,-905,8953,-8496,8954,8955]],"id":"31069"},{"type":"Polygon","arcs":[[-4846,-7965,-8523,-8335,-1805,-8327]],"id":"01109"},{"type":"Polygon","arcs":[[-4796,-8797,-8726,8956,-5004,-5109,-1656,-7638]],"id":"42123"},{"type":"Polygon","arcs":[[-1305,-2483,-7259,8957,-4903,8958]],"id":"20099"},{"type":"Polygon","arcs":[[-1867,-515,-5806,-5220,-1146]],"id":"19039"},{"type":"Polygon","arcs":[[8959,-8561,-494,-4149,-7665,-2175,8960]],"id":"40041"},{"type":"Polygon","arcs":[[8961,-7279,-5210,-3061,-1551,8962]],"id":"18141"},{"type":"Polygon","arcs":[[8963,-7057,-6724]],"id":"37177"},{"type":"Polygon","arcs":[[-7004,-6361,-4675,-599,-8745,-8550,-8344]],"id":"08053"},{"type":"MultiPolygon","arcs":[[[-8585,8964,-6399,8965]],[[-8588,8966,-6403,-123,8967]]],"id":"48273"},{"type":"Polygon","arcs":[[-3537,-7408,8968,-6760,8969,-1265,8970,8971]],"id":"51035"},{"type":"Polygon","arcs":[[-2923,8972,-7268,8973,-8930,-6698,-4283,-2043]],"id":"41045"},{"type":"Polygon","arcs":[[8974,8975,-4748,8976,8977]],"id":"24009"},{"type":"Polygon","arcs":[[-5038,-5484,-5729,-5045,-5470]],"id":"21071"},{"type":"Polygon","arcs":[[-6652,-6598,-4079,8978,8979,-6787,8980,8981]],"id":"48201"},{"type":"Polygon","arcs":[[-7970,-2229,-4482,8982]],"id":"51700"},{"type":"Polygon","arcs":[[-8698,-2747,-2030,8983,8984,8985,-4856,-2361]],"id":"02170"},{"type":"Polygon","arcs":[[-4506,-5068,-5061,-8068,8986,-3270]],"id":"05057"},{"type":"Polygon","arcs":[[-7239,-7282,-6317,8987,-7394]],"id":"28137"},{"type":"Polygon","arcs":[[8988,-8700,8989,-7379]],"id":"36085"},{"type":"Polygon","arcs":[[-2111,-8906,8990,8991,8992,-5186]],"id":"38083"},{"type":"Polygon","arcs":[[8993,-2814,-8448,8994,-4813,-8018]],"id":"36111"},{"type":"Polygon","arcs":[[-2905,-1289,-4575,-5892,8995]],"id":"37059"},{"type":"Polygon","arcs":[[-502,8996,-6835,-6926,-4910,-270]],"id":"48197"},{"type":"Polygon","arcs":[[-5917,-7513,-3863,-2186,-6819,8997]],"id":"46117"},{"type":"Polygon","arcs":[[8998,-2385,8999,-1565,-1674,-7780]],"id":"29079"},{"type":"Polygon","arcs":[[-6562,-1909,-2572,-8705,-2048,-8916]],"id":"39049"},{"type":"Polygon","arcs":[[-7899,-2541,-8016,9000,-8296,-1256,-8057,-8442]],"id":"06061"},{"type":"Polygon","arcs":[[-8460,-8870,-5789,-8184,-3997,-8092]],"id":"20091"},{"type":"Polygon","arcs":[[-5237,-6088,9001,-7200,-8050,9002]],"id":"09005"},{"type":"Polygon","arcs":[[-1807,-8339,9003,9004,9005,-2808,9006]],"id":"01061"},{"type":"Polygon","arcs":[[9007,-7182,-7845,9008,-9004,-8338]],"id":"01069"},{"type":"Polygon","arcs":[[-6273,9009,9010,-8971,-1266,-8970,-6759,-6958,-8666,-4648]],"id":"51077"},{"type":"Polygon","arcs":[[-1010,-2892,-5147,-3252,-1192,-8414,9011]],"id":"08063"},{"type":"Polygon","arcs":[[-3561,-3242,-7367,9012,-8675]],"id":"19133"},{"type":"Polygon","arcs":[[-8181,-5636,-6450,9013,-5461,-3712,-5164]],"id":"48351"},{"type":"Polygon","arcs":[[9014,9015,9016,-6500,-6281]],"id":"13265"},{"type":"Polygon","arcs":[[-528,-1918,-6831,-8997,-501,9017]],"id":"40057"},{"type":"Polygon","arcs":[[-4664,9018,9019,-943,-4239]],"id":"48349"},{"type":"Polygon","arcs":[[9020,-4681,9021,-5148,-4490]],"id":"13279"},{"type":"Polygon","arcs":[[-2931,9022,-8847,-7246,-4164,-3528]],"id":"29187"},{"type":"Polygon","arcs":[[9023,-4072,-7372,-4569,-6693]],"id":"35021"},{"type":"Polygon","arcs":[[-4588,-1506,-1453,-8231,9024]],"id":"30097"},{"type":"Polygon","arcs":[[9025,9026,-6481,-4605,-6646,-5691]],"id":"21155"},{"type":"Polygon","arcs":[[-8190,-8236,9027,-5718,9028,9029,-7646]],"id":"47149"},{"type":"MultiPolygon","arcs":[[[9030,-6134,-2431,-2421,9031,9032]]],"id":"53061"},{"type":"Polygon","arcs":[[-6176,-2401,-7350,-8869,-8458,-7558]],"id":"29165"},{"type":"Polygon","arcs":[[-8131,-1885,-8826,-7215,9033,9034,9035]],"id":"39061"},{"type":"Polygon","arcs":[[-7025,-4900,-7648,-5455,-1432,-5430]],"id":"47081"},{"type":"Polygon","arcs":[[-4666,-4644,9036,-6925,-250,-1096]],"id":"48337"},{"type":"Polygon","arcs":[[-5573,-8317,-7552,9037,-5986,-5581]],"id":"49007"},{"type":"Polygon","arcs":[[-7706,-3181,-3052,-6308,-641,-3361]],"id":"20041"},{"type":"Polygon","arcs":[[-2458,-8306,-175,9038,-8742,-1799]],"id":"17105"},{"type":"Polygon","arcs":[[-4942,-2208,-3393,-6496,9039,-3422,-4368]],"id":"05149"},{"type":"Polygon","arcs":[[-5699,-7183,-4003,-2607]],"id":"16065"},{"type":"Polygon","arcs":[[-3510,-629,-212,9040,-3953,-7506]],"id":"13285"},{"type":"Polygon","arcs":[[9041,-1874,-747,-8767,9042]],"id":"12081"},{"type":"MultiPolygon","arcs":[[[9043,9044,9045,-7907,9046]],[[9047,9048]]],"id":"51001"},{"type":"Polygon","arcs":[[-868,9049,-58,-8788,-2123]],"id":"13289"},{"type":"Polygon","arcs":[[-5378,-7265,-977,-5538,9050]],"id":"24035"},{"type":"Polygon","arcs":[[-3594,-8127,-6084,-5235]],"id":"25015"},{"type":"Polygon","arcs":[[-4448,-5289,-6427,-3141,9051,9052]],"id":"17071"},{"type":"Polygon","arcs":[[9053,-8961,-2174,-3841,9054]],"id":"40097"},{"type":"Polygon","arcs":[[-5072,-8179,-2868,-8178,-6899,-6142,-6938,-8435]],"id":"51149"},{"type":"Polygon","arcs":[[-7313,-7320,9055,-8907,-4420]],"id":"36005"},{"type":"Polygon","arcs":[[-3425,-7958,-8761,-8748,-5063,-5067]],"id":"05019"},{"type":"Polygon","arcs":[[-782,9056,-1787,-6561,-6558,-6626,9057]],"id":"39065"},{"type":"Polygon","arcs":[[-6174,-1396,-545,-5467,-958]],"id":"48163"},{"type":"Polygon","arcs":[[-9040,-6495,-2475,-7955,-3423]],"id":"05051"},{"type":"Polygon","arcs":[[-149,-5529,-1574,1578,-7172,-5145,-2890]],"id":"31057"},{"type":"Polygon","arcs":[[9058,-5421,-6342,-2471,-6544,-953,-908]],"id":"31023"},{"type":"Polygon","arcs":[[-9038,-7551,-1772,9059,-1211,-5987]],"id":"49019"},{"type":"Polygon","arcs":[[-8598,-4514,-6035,-7968,-6896,-4244]],"id":"51127"},{"type":"Polygon","arcs":[[-8896,-4854,-2928,-8225,-2910,-8170,-8938]],"id":"01093"},{"type":"Polygon","arcs":[[-8644,9060,-736,-6672,-5863,-2240]],"id":"30073"},{"type":"Polygon","arcs":[[-8015,9061,-8293,-9001]],"id":"32510"},{"type":"Polygon","arcs":[[9062,9063,-5263,-7538]],"id":"12125"},{"type":"MultiPolygon","arcs":[[[-8984,-2036,9064,9065]]],"id":"02020"},{"type":"Polygon","arcs":[[-7417,-3613,-5400,9066,9067,-4105]],"id":"55125"},{"type":"Polygon","arcs":[[9068,-2539,-3204,-8793,-3033]],"id":"28019"},{"type":"Polygon","arcs":[[-2320,9069,-8093,-7307]],"id":"31169"},{"type":"Polygon","arcs":[[-756,9070,-504,9071,-55,-5700]],"id":"13223"},{"type":"Polygon","arcs":[[9072,-8375,-8322,-8371,-4402,9073,-5508]],"id":"32033"},{"type":"Polygon","arcs":[[9074,9075,-1080,-8648,-2530,-3039]],"id":"48203"},{"type":"Polygon","arcs":[[-6212,-6246,9076,-627]],"id":"13113"},{"type":"Polygon","arcs":[[-7469,-6510,-3011,9077,-1556,-7473]],"id":"18059"},{"type":"Polygon","arcs":[[-7633,-6530,9078,-7879,-7868,9079]],"id":"22025"},{"type":"Polygon","arcs":[[9080,-7213,-8825,-7044,-6580,9081]],"id":"21191"},{"type":"Polygon","arcs":[[-3538,-8972,-9011,9082,-6935]],"id":"51197"},{"type":"Polygon","arcs":[[9083,9084,-6734,-5761,-8567,-1473]],"id":"56003"},{"type":"Polygon","arcs":[[-3691,-6890,-5918,9085,-6475]],"id":"46137"},{"type":"MultiPolygon","arcs":[[[9086]],[[9087,9088]]],"id":"25007"},{"type":"Polygon","arcs":[[-8782,9089,-1897,-632,-1794]],"id":"13157"},{"type":"Polygon","arcs":[[-5778,9090,-2938,-8922,-8304]],"id":"18111"},{"type":"Polygon","arcs":[[9091,-4437,-8600,-7939,9092]],"id":"48277"},{"type":"Polygon","arcs":[[-7253,-2824,-8864,-1759,-8814,9093,-3458,-7300]],"id":"27021"},{"type":"Polygon","arcs":[[-1957,-1588,-1972,-3404,-804]],"id":"48153"},{"type":"Polygon","arcs":[[-3010,9094,-2788,-3778,-1557,-9078]],"id":"18139"},{"type":"Polygon","arcs":[[-1280,-7578,-7143,-2947,9095]],"id":"06079"},{"type":"Polygon","arcs":[[-8867,9096,-5052,-4690,-6299,-2460,-6445]],"id":"20155"},{"type":"Polygon","arcs":[[-3108,-1021,-2628,-2619,-3515]],"id":"19025"},{"type":"Polygon","arcs":[[-1763,-8747,-647,-6309]],"id":"27065"},{"type":"Polygon","arcs":[[-4973,-7902,-6861,-7511,-8192,-8812]],"id":"42035"},{"type":"Polygon","arcs":[[-3251,-885,9097,-2194,-3073,-1188]],"id":"20109"},{"type":"Polygon","arcs":[[-1883,-1670,9098,-6796,9099,-8823]],"id":"39027"},{"type":"Polygon","arcs":[[-8548,-783,-9058,-6625,-1877]],"id":"39003"},{"type":"Polygon","arcs":[[-4260,-2695,-8697,9100,-6845,-817,-1997]],"id":"55115"},{"type":"Polygon","arcs":[[-2177,-7667,-7680,-8920,9101,-8060,-8357]],"id":"40135"},{"type":"Polygon","arcs":[[-6866,-8142,-5937,9102,9103,9104,-793,9105,-6863,9106]],"id":"47035"},{"type":"Polygon","arcs":[[9107,-6277,-4551,-5701,-57,9108,-7504,-3554]],"id":"01029"},{"type":"Polygon","arcs":[[-77,-7187,9109,-7235,9110]],"id":"26099"},{"type":"Polygon","arcs":[[-8287,-79,9111,-6452,-8284,-2962]],"id":"26049"},{"type":"Polygon","arcs":[[-3096,9112,-4771,-1120,-968]],"id":"17007"},{"type":"Polygon","arcs":[[-3942,-5369,-6387,9113,-1755,-8289,-3663]],"id":"38053"},{"type":"Polygon","arcs":[[-7407,-7556,-4479,-2975,-6761,-8969]],"id":"51141"},{"type":"Polygon","arcs":[[-7158,-8349,9114,-5624,-6037,9115]],"id":"17003"},{"type":"Polygon","arcs":[[-7080,-4507,-3268,-8114]],"id":"05133"},{"type":"Polygon","arcs":[[-6329,9116,-8527,9117,-440]],"id":"28039"},{"type":"Polygon","arcs":[[-6548,9118,-8508,-8701,-8989,-7378]],"id":"34039"},{"type":"Polygon","arcs":[[-4038,-4374,-3939,9119,9120,9121]],"id":"17015"},{"type":"Polygon","arcs":[[-3311,9122,-3479,-8813,-1704,9123]],"id":"13287"},{"type":"Polygon","arcs":[[-8342,9124,-8934,9125,9126]],"id":"06081"},{"type":"Polygon","arcs":[[9127,9128,-8687,-7096,-3001,9129,-4679]],"id":"13031"},{"type":"Polygon","arcs":[[-4732,-4039,-9122,9130,-2615]],"id":"19097"},{"type":"Polygon","arcs":[[-2104,-8346,-8549,-5157,-1213]],"id":"08113"},{"type":"Polygon","arcs":[[-3698,-2688,-126,-7906,9131]],"id":"48427"},{"type":"Polygon","arcs":[[-2084,-8451,-3926,-8779,-8610]],"id":"13187"},{"type":"Polygon","arcs":[[-8893,9132,-8509,-9119,-6547,-4473,-6268]],"id":"34027"},{"type":"Polygon","arcs":[[9133,-2733,-2317,-7688,-4130,-1576,-5528]],"id":"31063"},{"type":"Polygon","arcs":[[-6978,-4264,-8292,-6214,-5598,-5765]],"id":"55033"},{"type":"Polygon","arcs":[[-6045,9134,-2804,-2851,-239]],"id":"48429"},{"type":"Polygon","arcs":[[-9077,-6245,-7961,-2521,-2559,-6489,-207,-628]],"id":"13255"},{"type":"Polygon","arcs":[[-3070,-7347,-3638,9135,-6781]],"id":"39051"},{"type":"Polygon","arcs":[[-468,-5294,-3781,-2754,9136]],"id":"19037"},{"type":"Polygon","arcs":[[-8444,-184,-2575,-2805,-6826]],"id":"48369"},{"type":"Polygon","arcs":[[-2127,-1729,9137,-3523,9138,-2934,-5504]],"id":"72109"},{"type":"Polygon","arcs":[[-5795,-1659,-5106,-4952,-3852,-995,-5791]],"id":"42019"},{"type":"Polygon","arcs":[[9139,-1616,9140,9141,-8591]],"id":"50009"},{"type":"Polygon","arcs":[[-2621,-2630,-8733,-1275,-3257]],"id":"19077"},{"type":"Polygon","arcs":[[-8929,-8077,-3301,-6921,-8373,-9073,-5507,-8718,-6700]],"id":"32007"},{"type":"Polygon","arcs":[[9142,-8855,9143,-7914,-2346,-7693]],"id":"01089"},{"type":"Polygon","arcs":[[-3958,-8295,9144,-4537,-2598,-4947,-1138,-6993,-2680]],"id":"06051"},{"type":"Polygon","arcs":[[-7092,-8560,-5711,9145]],"id":"06073"},{"type":"Polygon","arcs":[[-4563,-6383,-5280,-575,-577,-3023]],"id":"31115"},{"type":"Polygon","arcs":[[-8759,-5439,9146,9147,-5681]],"id":"31157"},{"type":"Polygon","arcs":[[-701,-3232,-6848,-5873,-6887,-3689,-6839,-8288]],"id":"38001"},{"type":"Polygon","arcs":[[-1173,-5092,9148,9149,-4144,-6183,9150,-5388]],"id":"47071"},{"type":"Polygon","arcs":[[-7816,-5881,9151,-9075,-3038]],"id":"48315"},{"type":"Polygon","arcs":[[-7669,9152,9153,-3923,-8450]],"id":"13281"},{"type":"Polygon","arcs":[[-9035,9154,9155,-6745,-7297,-4416,9156]],"id":"21015"},{"type":"Polygon","arcs":[[9157,-1316,-7278,9158,9159]],"id":"26159"},{"type":"Polygon","arcs":[[-7943,-1713,9160,-4295,9161,-8734]],"id":"48465"},{"type":"Polygon","arcs":[[-7070,-8505,-8619,9162,-9050,-867]],"id":"13319"},{"type":"Polygon","arcs":[[-3313,9163,-7839,9164,-192]],"id":"13177"},{"type":"Polygon","arcs":[[9165,-3004,-4390,-8821,-8510,-5149,-9022]],"id":"13267"},{"type":"Polygon","arcs":[[9166,-3618,-3583,9167,-4914,-5556]],"id":"23011"},{"type":"Polygon","arcs":[[-5663,-1344,9168,-219,-7100]],"id":"19189"},{"type":"Polygon","arcs":[[-5569,-2674,-5540,-3742]],"id":"19059"},{"type":"Polygon","arcs":[[-5122,-4337,-1245,9169,-4760,-8935,-6446,-5634]],"id":"22069"},{"type":"Polygon","arcs":[[9170,9171,-151,-8251]],"id":"72017"},{"type":"Polygon","arcs":[[-8690,-5704,9172,-901,-8953]],"id":"31075"},{"type":"Polygon","arcs":[[-7434,-8107,-7874,-9079,-6529]],"id":"22041"},{"type":"Polygon","arcs":[[-8775,-7986,-7910,-187,-6504,-8923,-3503]],"id":"13197"},{"type":"Polygon","arcs":[[-6939,-6145,-5895,-4304,-5899,-8205,-7974,-6592,-8325,-8541]],"id":"51175"},{"type":"Polygon","arcs":[[-8291,-8664,-7978,9173,-6869]],"id":"55121"},{"type":"Polygon","arcs":[[9174,9175,-8094,-7807]],"id":"06055"},{"type":"Polygon","arcs":[[-3759,-8098,-1260,-6003,-3472,-2221]],"id":"05137"},{"type":"Polygon","arcs":[[-1358,-6310,-650,9176,9177,-8490,9178]],"id":"27141"},{"type":"Polygon","arcs":[[-4783,-7854,9179,-7508]],"id":"48141"},{"type":"Polygon","arcs":[[-166,-8641,-8227,-8261]],"id":"54003"},{"type":"Polygon","arcs":[[9180,-6710,-4333,9181,-7459,-309]],"id":"21141"},{"type":"Polygon","arcs":[[-457,-2262,-707,-244,-2270]],"id":"48081"},{"type":"Polygon","arcs":[[-8603,9182,-3889,-8803,-8651,-8794]],"id":"39079"},{"type":"Polygon","arcs":[[-4725,9183,-7483,-5111,9184]],"id":"13039"},{"type":"Polygon","arcs":[[-4651,-7326,-4120,-8762,-8765,-4621,-7457]],"id":"37011"},{"type":"MultiPolygon","arcs":[[[9185]],[[9186]],[[9187]],[[9188]],[[9189]],[[9190]],[[9191]],[[9192]],[[9193]],[[9194]],[[9195]],[[9196]],[[9197]],[[9198]],[[9199]],[[9200]],[[9201]],[[9202]],[[9203]]],"id":"02016"},{"type":"MultiPolygon","arcs":[[[-9065,-2035,9204]],[[9205]],[[-4857,-8986,9206,-2018,-2026]]],"id":"02122"},{"type":"Polygon","arcs":[[-7485,9207,-8428,-7787,9208]],"id":"12031"},{"type":"MultiPolygon","arcs":[[[9209]],[[-7565,-6337,9210]]],"id":"44009"},{"type":"Polygon","arcs":[[-6352,-8257,-6233,9211,-6420]],"id":"08019"},{"type":"Polygon","arcs":[[9212,-2236,-8052,-4355,-8097,9213]],"id":"29153"},{"type":"Polygon","arcs":[[9214,-8415,-5213,-8483,9215,-2273,-8207]],"id":"08061"},{"type":"MultiPolygon","arcs":[[[9216,-7426]],[[-7429,9217,-7904]]],"id":"48061"},{"type":"Polygon","arcs":[[-1510,-2237,-9213,9218,-7587,-7136,-1664]],"id":"29213"},{"type":"Polygon","arcs":[[-1373,-7819,-3848,-7813,-2298,9219,-394]],"id":"40017"},{"type":"Polygon","arcs":[[-7742,9220,-2210,-4941,-7768]],"id":"05071"},{"type":"Polygon","arcs":[[-8716,-5944,-8715,-5942,-6016,-5654,-3668]],"id":"47095"},{"type":"Polygon","arcs":[[-3724,-5375,-6941,-6951,-6124,-8007]],"id":"51037"},{"type":"Polygon","arcs":[[-8352,-8640,-8625,-8757,-6063]],"id":"05055"},{"type":"Polygon","arcs":[[9221,-7761,9222,-7749,9223]],"id":"12129"},{"type":"Polygon","arcs":[[9224,-3607,-983,9225]],"id":"26141"},{"type":"Polygon","arcs":[[9226,-8280,-5773,-8303,-2456,-1547]],"id":"17197"},{"type":"Polygon","arcs":[[9227]],"id":"72147"},{"type":"Polygon","arcs":[[-7620,-7616,-5580,-4834,-8891,-7612]],"id":"54081"},{"type":"Polygon","arcs":[[-56,-9072,-507,-6213,-631,-3509,-7505,-9109]],"id":"13045"},{"type":"Polygon","arcs":[[9228,-8719,-5509,-9074,-4408,-8457,-4948,-2596,-4536]],"id":"32023"},{"type":"Polygon","arcs":[[9229,-6808,9230,9231,-5586,-2729]],"id":"55039"},{"type":"Polygon","arcs":[[-2156,-4449,-9053,9232,-7436,-2116]],"id":"19111"},{"type":"Polygon","arcs":[[9233,9234,-8947,-6206,-7921,-7823,9235,-7739]],"id":"36091"},{"type":"Polygon","arcs":[[9236,-4022,9237,-6605,-834,-3803]],"id":"22097"},{"type":"Polygon","arcs":[[-8001,9238,-2658,-4434,9239,-7776]],"id":"40005"},{"type":"Polygon","arcs":[[-7740,-9236,-7822,-4063]],"id":"36035"},{"type":"Polygon","arcs":[[-8002,-6637,-8063,-8065,-2653,-9239,-8000]],"id":"40121"},{"type":"Polygon","arcs":[[-3498,9240,9241,-8219,-7443,-3884,9242]],"id":"39009"},{"type":"Polygon","arcs":[[-8166,-6487,-2704,-863,9243,-8162]],"id":"01131"},{"type":"Polygon","arcs":[[9244,9245,-6189,-5299,-5304,9246,-2364]],"id":"42051"},{"type":"Polygon","arcs":[[9247,-7916,-4851,-4090,-3544,-8223]],"id":"01009"},{"type":"Polygon","arcs":[[-4317,-7039,-3971,-6367,-6498,-753,-3929]],"id":"13129"},{"type":"Polygon","arcs":[[-8912,-8517,-13,9248,-8039,-4700,-8243,-8316]],"id":"22095"},{"type":"Polygon","arcs":[[-5783,-7745,-7729,-7335,-5799]],"id":"42069"},{"type":"Polygon","arcs":[[-9104,9249,-5861,9250,-4232,9251,-4654,9252]],"id":"47145"},{"type":"Polygon","arcs":[[-8732,9253,-3238,-1725,-131]],"id":"72063"},{"type":"Polygon","arcs":[[9254,-8670,9255,-6574,-6889]],"id":"46021"},{"type":"Polygon","arcs":[[-2062,-8839,-7067,-8571,9256,-7650,-3253]],"id":"72153"},{"type":"Polygon","arcs":[[-7225,-7218,-4756,9257,-4019]],"id":"22121"},{"type":"Polygon","arcs":[[-4322,-7475,-1536,-7631,-6428,9258]],"id":"18133"},{"type":"Polygon","arcs":[[-1162,-1131,-8365,-8404,-7518]],"id":"19173"},{"type":"Polygon","arcs":[[-3572,-8148,-2609,-4008,9259,-7171,-7521]],"id":"16011"},{"type":"MultiPolygon","arcs":[[[9260]],[[9261]],[[9262]],[[9263]],[[9264]],[[9265]],[[9266]],[[9267,-7418,-4103,-429,-4518]]],"id":"55003"},{"type":"Polygon","arcs":[[-6870,-9174,-7981,-5485,-8273,-3235,-7348]],"id":"27169"},{"type":"Polygon","arcs":[[9268,-6968,-6903,-2354,-5351,9269,-7385],[-1267]],"id":"51165"},{"type":"Polygon","arcs":[[9270,9271,-4450,-7451]],"id":"30019"},{"type":"Polygon","arcs":[[-7448,-5231,-3740,-3343,-8024]],"id":"54097"},{"type":"Polygon","arcs":[[-8832,9272,-6980,9273]],"id":"72005"},{"type":"Polygon","arcs":[[9274,-4109,-2416,-9254,-8731,-8728]],"id":"72031"},{"type":"Polygon","arcs":[[9275,-8252,-6971,-8838,9276]],"id":"72065"},{"type":"Polygon","arcs":[[9277,-6653,-8982,9278,-8195,-6917]],"id":"48473"},{"type":"Polygon","arcs":[[-1728,-8887,-2693,9279,-3521,-9138]],"id":"72151"},{"type":"Polygon","arcs":[[-6434,-4785,-4601,-7162,-7201]],"id":"18147"},{"type":"Polygon","arcs":[[-8246,9280,-9226,-982,-1572,-7341]],"id":"26031"},{"type":"Polygon","arcs":[[-8995,-8447,-5238,-9003,-8049,-8045,-4814]],"id":"36027"},{"type":"Polygon","arcs":[[-5425,-4589,-9025,-8230,9281,-1471]],"id":"30067"},{"type":"Polygon","arcs":[[-6448,-8937,-3800,-8026,9282]],"id":"22003"},{"type":"Polygon","arcs":[[-2876,-1032,-328,9283,-2897]],"id":"28101"},{"type":"Polygon","arcs":[[-4020,-9258,-4755,-8913,-7719,-4740,9284]],"id":"22047"},{"type":"Polygon","arcs":[[-3530,-4167,-6538,-8950,9285,-6540,-8210]],"id":"29223"},{"type":"Polygon","arcs":[[-7767,-521,-3653,-7423,-6927,-6833]],"id":"40141"},{"type":"Polygon","arcs":[[-742,9286,-3634,-6197,9287,-6190,-353]],"id":"36011"},{"type":"Polygon","arcs":[[-7668,-7598,-7676,9288,-9153]],"id":"13241"},{"type":"Polygon","arcs":[[-3904,-4352,-5315,-4471,-7241,-7393,-8659,-8660,-596]],"id":"05035"},{"type":"Polygon","arcs":[[-9005,-9009,-7844,-832,-7754,-7695,-2404,-3768,9289]],"id":"12063"},{"type":"Polygon","arcs":[[9290,-6736,-138,-2411,-7540,-3398,-4641]],"id":"72021"},{"type":"Polygon","arcs":[[-3400,-7542,-134,-2126,-1101,-3212]],"id":"72041"},{"type":"Polygon","arcs":[[-4701,-4141,-7694,-2349,9291,-2925,-4853]],"id":"01079"},{"type":"Polygon","arcs":[[-8311,-4227,9292,9293,9294]],"id":"21215"},{"type":"Polygon","arcs":[[-8468,9295,-622,-7888,-8426]],"id":"53067"},{"type":"Polygon","arcs":[[9296,9297,-3600,-7414,-257,-1429]],"id":"46011"},{"type":"Polygon","arcs":[[-5721,-5727,-668,-8859,-8852]],"id":"47061"},{"type":"Polygon","arcs":[[-6932,-1648,-5989,-8399,9298]],"id":"48025"},{"type":"Polygon","arcs":[[9299,9300,-8977,-4750,9301]],"id":"24017"},{"type":"Polygon","arcs":[[-5780,-5798,-6885,-6857,9302]],"id":"42113"},{"type":"Polygon","arcs":[[-2231,-7969]],"id":"51830"},{"type":"Polygon","arcs":[[-8599,-7818,9303,-2305]],"id":"48449"},{"type":"Polygon","arcs":[[-2306,-9304,-7817,-3036,-6588]],"id":"48063"},{"type":"Polygon","arcs":[[9304,-5723,-8857,9305]],"id":"47127"},{"type":"Polygon","arcs":[[9306,-7777,-9240,-4438,-9092,9307,9308]],"id":"40013"},{"type":"Polygon","arcs":[[-2331,-109,-6654,-9278,-6916,-7923]],"id":"48185"},{"type":"Polygon","arcs":[[-7752,-2058,-7177,-7757,-9222,9309]],"id":"12073"},{"type":"Polygon","arcs":[[-84,-8940,9310,-2535,9311]],"id":"28025"},{"type":"Polygon","arcs":[[-6120,-8406,9312,-4529,-4126,-8176]],"id":"29087"},{"type":"Polygon","arcs":[[-7323,9313,-6553,-8724,-8796,9314]],"id":"36029"},{"type":"Polygon","arcs":[[-8308,-2979,-7266,-8973,-2922]],"id":"16087"},{"type":"Polygon","arcs":[[-6476,-9086,-8998,-6818,-5979,-4866]],"id":"46055"},{"type":"Polygon","arcs":[[-8061,-9102,-8921,-4370,-7079,-8113,-2655,-8064]],"id":"40079"},{"type":"Polygon","arcs":[[-5947,-8804,-6415,9315,-8258,-5481,-5226]],"id":"54099"},{"type":"Polygon","arcs":[[-7410,9316,-3666,-6137,-5017,-291]],"id":"30079"},{"type":"Polygon","arcs":[[9317,-7831,9318,-2636]],"id":"12033"},{"type":"Polygon","arcs":[[-9163,-8618,9319,-8556,-8605,-59]],"id":"13175"},{"type":"Polygon","arcs":[[9320,-2756,-218,-3247,-872]],"id":"19023"},{"type":"Polygon","arcs":[[9321,-5341,9322,-489,9323,-6097,-3463,-7570]],"id":"41065"},{"type":"Polygon","arcs":[[-5977,-4978,-7710,-1636,-6467,9324]],"id":"31027"},{"type":"Polygon","arcs":[[-8902,9325,-8946,-7452,9326,-8124,9327]],"id":"33011"},{"type":"Polygon","arcs":[[-8393,-5920,-5419,-8688,-9129,9328]],"id":"13251"},{"type":"Polygon","arcs":[[-8676,-9013,-7368,-5333,-6341,-1042]],"id":"31021"},{"type":"MultiPolygon","arcs":[[[-4396,9329,-9044,9330]],[[-9049,9331]],[[-5197,9332]]],"id":"24039"},{"type":"Polygon","arcs":[[-4395,9333,9334,-9045,-9330]],"id":"24047"},{"type":"Polygon","arcs":[[9335,-481,-8858,-6384,-5367,-6764]],"id":"38013"},{"type":"Polygon","arcs":[[9336,9337,9338,-5776]],"id":"18127"},{"type":"Polygon","arcs":[[-8185,-6533,-1971,-2219,-296,-7304]],"id":"29083"},{"type":"Polygon","arcs":[[-6196,9339,-7995,-7918,-7016,-6191,-9288]],"id":"36023"},{"type":"Polygon","arcs":[[-2982,-4002,-5433,-8928,9340]],"id":"16001"},{"type":"Polygon","arcs":[[-2872,-4152,-1153,9341,-1790]],"id":"17175"},{"type":"Polygon","arcs":[[-8992,9342,-2627,-2169,9343,9344]],"id":"38043"},{"type":"Polygon","arcs":[[-6103,-6936,-9083,-9010,-6272,9345]],"id":"51173"},{"type":"Polygon","arcs":[[9346,-1989,-8620,-6224,-6501,-9017]],"id":"13301"},{"type":"Polygon","arcs":[[-7043,9347,-5857,-5658,-6582]],"id":"21201"},{"type":"MultiPolygon","arcs":[[[9348]],[[-1753,-2355,-508,9349]],[[9350]]],"id":"02180"},{"type":"Polygon","arcs":[[-2279,-3532,-1057,-455,9351]],"id":"48415"},{"type":"Polygon","arcs":[[9352,-8402,-8589,-8968,-122,-917]],"id":"48249"},{"type":"Polygon","arcs":[[-9070,-2554,-7814,-2995]],"id":"31095"},{"type":"Polygon","arcs":[[-8235,-6775,-5728,-5719,-9028]],"id":"47015"},{"type":"Polygon","arcs":[[-3394,-1273,-2168,-7471,9353,-6519]],"id":"18017"},{"type":"Polygon","arcs":[[-9273,-8831,-6874,-8576,-6981]],"id":"72099"},{"type":"Polygon","arcs":[[-9316,-6414,-8889,-7621,-7610,-6987,-8259]],"id":"54043"},{"type":"Polygon","arcs":[[9354,-8028,-582,-2734,-9134,-5527,-7285,9355]],"id":"31111"},{"type":"Polygon","arcs":[[-8474,-3170,9356,9357,9358,-7248,-8846]],"id":"17157"},{"type":"Polygon","arcs":[[-9232,9359,-5495,-1484,-5587]],"id":"55131"},{"type":"Polygon","arcs":[[-5386,9360,9361,-6128]],"id":"11001"},{"type":"Polygon","arcs":[[9362,9363,-5008,-6964,-6032]],"id":"51119"},{"type":"Polygon","arcs":[[-3209,9364,-4772,-2581,-2668]],"id":"31061"},{"type":"Polygon","arcs":[[-7195,-5410,-3906,-8932,9365,-8340,9366]],"id":"06001"},{"type":"Polygon","arcs":[[-6129,-9362,9367,9368]],"id":"51510"},{"type":"Polygon","arcs":[[-6060,9369,9370,-2368,-1928]],"id":"05079"},{"type":"Polygon","arcs":[[-6680,9371,-2395,9372,-5395,-8138,-8778,-4583]],"id":"37141"},{"type":"Polygon","arcs":[[-6087,-8309,-7563,-5207,-7197,-9002]],"id":"09003"},{"type":"Polygon","arcs":[[-4093,9373,-8278,-4768]],"id":"17097"},{"type":"Polygon","arcs":[[-6694,-1634,-5422,-9059,-907,-6695,-225,-4528]],"id":"31141"},{"type":"Polygon","arcs":[[-6513,-3030,9374,9375,-4031,-2586]],"id":"20081"},{"type":"Polygon","arcs":[[-3082,-2768,-2659,-4927,-7420,-3718]],"id":"48135"},{"type":"Polygon","arcs":[[-298,-2218,-6006,9376,9377]],"id":"29085"},{"type":"Polygon","arcs":[[-6952,-6943,9378,-8437,-8540,-8323,-8248]],"id":"51025"},{"type":"Polygon","arcs":[[-2743,-9137,-9321,-2465]],"id":"19067"},{"type":"Polygon","arcs":[[9379]],"id":"51600"},{"type":"Polygon","arcs":[[-5438,-8692,-8956,9380,9381,-9147]],"id":"31123"},{"type":"Polygon","arcs":[[9382,-1487,-7954,-4095,-4767,-9113,-3095]],"id":"55127"},{"type":"Polygon","arcs":[[-9130,-3005,-9166,-4680]],"id":"13043"},{"type":"Polygon","arcs":[[-1231,-3081,-1159,9383,-8264,-2091,9384]],"id":"17115"},{"type":"Polygon","arcs":[[-884,-3191,-2650,-2686,-1538,-365,-2195,-9098]],"id":"20063"},{"type":"Polygon","arcs":[[-7859,-8263,-8528,-9117,-6328]],"id":"28041"},{"type":"Polygon","arcs":[[9385,-2760,-2737,9386,-9357,-3169]],"id":"17189"},{"type":"Polygon","arcs":[[9387,-313,-729,-3263,-3579,-3617]],"id":"23019"},{"type":"Polygon","arcs":[[-2522,-2477,-420,-4102,-5908,9388]],"id":"55001"},{"type":"MultiPolygon","arcs":[[[9389]],[[9390]],[[-9118,-8526,9391,-7935,-441]]],"id":"28059"},{"type":"Polygon","arcs":[[9392,-1708,9393,9394,-7174,-7843]],"id":"13071"},{"type":"Polygon","arcs":[[-8117,-6285,-8066,-997,-3855,9395,-9245,-2363,-4841]],"id":"42125"},{"type":"Polygon","arcs":[[-7264,9396,-9334,-4394,-5200,-979]],"id":"10005"},{"type":"Polygon","arcs":[[-3050,9397,-5550,-7413,-3243,-2490,-6307]],"id":"20197"},{"type":"Polygon","arcs":[[-5413,-5406,-7049,-5830,9398,-3407]],"id":"21157"},{"type":"Polygon","arcs":[[-7643,9399,-5228,-5040,-5473,-6470,-6690]],"id":"21175"},{"type":"Polygon","arcs":[[-1320,-6573,-6711,-9181,-308,9400,-5029]],"id":"21177"},{"type":"Polygon","arcs":[[-9182,-4332,-8038,-5743,-7460]],"id":"21213"},{"type":"Polygon","arcs":[[-4118,-1951,-2909,-4956,-8763]],"id":"37035"},{"type":"Polygon","arcs":[[-7331,-7828,-7773,-7846,-7590,-6686]],"id":"40103"},{"type":"Polygon","arcs":[[-4637,9401,-3553,-8613,9402,-6147]],"id":"53013"},{"type":"Polygon","arcs":[[-9284,-7882,-7856,9403,9404]],"id":"28061"},{"type":"Polygon","arcs":[[-7363,-5562,-4788,-4745,-1165,-3178]],"id":"17033"},{"type":"Polygon","arcs":[[-4871,-592,-1431,-3085,-7077,-1426]],"id":"46005"},{"type":"Polygon","arcs":[[-9136,-3644,-6804,-8547,-1064,-6782]],"id":"39069"},{"type":"Polygon","arcs":[[-8917,-2052,-8601,-6797,-9099,-1669]],"id":"39047"},{"type":"Polygon","arcs":[[-3009,-1197,9405,-2782,-9095]],"id":"18041"},{"type":"Polygon","arcs":[[-7821,-6590,-2310,-2326]],"id":"48379"},{"type":"Polygon","arcs":[[-5221,-695,-7398,-2386,-8999,-7779]],"id":"29129"},{"type":"Polygon","arcs":[[9406,-389,-682,9407,9408]],"id":"38027"},{"type":"Polygon","arcs":[[-3086,-586,-8693,-1399,-2038]],"id":"46061"},{"type":"Polygon","arcs":[[-1863,9409,-8622,-8332,-2818]],"id":"39109"},{"type":"Polygon","arcs":[[-1097,-254,-8277,9410,-2484,-2801]],"id":"48367"},{"type":"Polygon","arcs":[[9411,-1099,-2800,-9135,-6044]],"id":"48503"},{"type":"Polygon","arcs":[[-6758,9412,-8790,-4133,-6597,-814]],"id":"48373"},{"type":"Polygon","arcs":[[-6449,-9283,-8027,-5459,-9014]],"id":"22011"},{"type":"Polygon","arcs":[[-8329,-4498,-8539,-345,-4299,9413,-5257]],"id":"49033"},{"type":"Polygon","arcs":[[-2424,-2438,-3732,9414,-5337,9415,-7889,-620]],"id":"53077"},{"type":"MultiPolygon","arcs":[[[9416]],[[-3642,9417,9418,-3146,-6802]]],"id":"39123"},{"type":"Polygon","arcs":[[-4443,-5839,-5080,9419,-7251,-5074]],"id":"17013"},{"type":"Polygon","arcs":[[-7028,-7107,-4073,-9024,-6692,-5867]],"id":"35007"},{"type":"Polygon","arcs":[[-6904,-612,-7074,-6382,-4561,-5702]],"id":"31103"},{"type":"Polygon","arcs":[[-1475,-8569,-8702]],"id":"56017"},{"type":"Polygon","arcs":[[-8348,-5415,-6072,-5625,-9115]],"id":"21007"},{"type":"Polygon","arcs":[[9420,-6911,-1723,-5162,-8789,-9413,-6757,-6892]],"id":"48005"},{"type":"Polygon","arcs":[[-5084,-5966,-5169,-4800,-4992,9421]],"id":"45015"},{"type":"Polygon","arcs":[[-914,9422,-9297,-1428,-590]],"id":"46057"},{"type":"Polygon","arcs":[[-4598,-4208,-6017,9423,-8595,-5841]],"id":"45037"},{"type":"Polygon","arcs":[[-1394,-6933,-9299,-8403,-9353,-916,-3490]],"id":"48297"},{"type":"Polygon","arcs":[[-1368,9424,-848,-8713,-6156]],"id":"27121"},{"type":"Polygon","arcs":[[9425,9426,-8215,-9242,9427]],"id":"39115"},{"type":"Polygon","arcs":[[9428,-5342,-9322,-7569,-8136]],"id":"41027"},{"type":"Polygon","arcs":[[-299,-9378,9429,-7500,9430,-1954]],"id":"29167"},{"type":"Polygon","arcs":[[9431,-2250,9432,-925,-1692]],"id":"48115"},{"type":"Polygon","arcs":[[-2365,-9247,-5307,-7487,-7440,-3216]],"id":"54061"},{"type":"Polygon","arcs":[[-3165,-6046,-237,-3881,-2295]],"id":"48207"},{"type":"Polygon","arcs":[[-235,-2251,-9432,-1691,-497]],"id":"48445"},{"type":"Polygon","arcs":[[-7424,-4667,-1094,-9412,-1076]],"id":"48009"},{"type":"Polygon","arcs":[[-1343,-6455,-2744,-2463,-9169]],"id":"19195"},{"type":"Polygon","arcs":[[-7848,-6647,-4610,-7047,-4733,-5641]],"id":"21001"},{"type":"Polygon","arcs":[[-6421,-9212,-6241,-2284,9433,9434,9435]],"id":"08093"},{"type":"Polygon","arcs":[[-6019,9436,9437,-5085,-9422,-4991,-6771,-1387,9438]],"id":"45075"},{"type":"Polygon","arcs":[[9439,-6422,-9436,9440,-8478]],"id":"08065"},{"type":"Polygon","arcs":[[-8653,-8805,-5949,9441,-5325]],"id":"21089"},{"type":"Polygon","arcs":[[-9289,-7675,9442,9443,-8780,-3924,-9154]],"id":"13137"},{"type":"Polygon","arcs":[[-3499,-9243,-3883,-3890,-9183,-8602]],"id":"39163"},{"type":"Polygon","arcs":[[-8685,-92,-1783,-9057,-781]],"id":"39175"},{"type":"Polygon","arcs":[[-4556,-7709,-8816,-5026,-6732,-9085,9444]],"id":"30003"},{"type":"Polygon","arcs":[[-4431,-4171,-2446,-7881,9445]],"id":"28037"},{"type":"Polygon","arcs":[[-5906,9446],[9447]],"id":"51683"},{"type":"Polygon","arcs":[[-4655,-9252,-4236,9448,-5543,-7488]],"id":"47107"},{"type":"Polygon","arcs":[[9449,-452,-8029,-9355,9450,-903]],"id":"31117"},{"type":"Polygon","arcs":[[-6683,-8004,-8008,-6631]],"id":"40133"},{"type":"Polygon","arcs":[[-4908,-2313,-7871,9451,-6067,9452,-9019,-4663]],"id":"48213"},{"type":"Polygon","arcs":[[-8646,-8674,-8679,-5184,-6094,9453,-7604]],"id":"50001"},{"type":"Polygon","arcs":[[9454,-9381,-8955,-8499,9455,9456,-3836]],"id":"31033"},{"type":"Polygon","arcs":[[9457,-311,-7463,9458,-4897,-4539,-6822]],"id":"47125"},{"type":"Polygon","arcs":[[9459,9460,-4241,-6777,-1108,-688,-2965]],"id":"48035"},{"type":"Polygon","arcs":[[9461,-5431,-1435,-7884,-4138,-9150]],"id":"47181"},{"type":"Polygon","arcs":[[-6837,-3860,-7084,9462,9463,-4205,-4597]],"id":"45071"},{"type":"Polygon","arcs":[[-5767,-923,-8500,-7373,-4070]],"id":"48205"},{"type":"Polygon","arcs":[[-431,-4107,-1466,-4262,-6977]],"id":"55107"},{"type":"Polygon","arcs":[[-3349,9464,-6185,-8895,-6313,-5565]],"id":"28117"},{"type":"Polygon","arcs":[[-2895,9465,-1830,-3560,-4688]],"id":"19035"},{"type":"Polygon","arcs":[[-3029,-1026,-7053,9466,9467,-9375]],"id":"20119"},{"type":"Polygon","arcs":[[-3330,-529,-9018,-500,-1661,-1362]],"id":"48087"},{"type":"Polygon","arcs":[[-6963,-8438,-9379,-6942,-5373]],"id":"51135"},{"type":"Polygon","arcs":[[-2570,9468,-9428,-9241,-3497,-8706]],"id":"39127"},{"type":"Polygon","arcs":[[-3632,-7595,-7730,-7993,-9340,-6195]],"id":"36053"},{"type":"Polygon","arcs":[[-2942,-5824,-5713,-8267,-8420]],"id":"18171"},{"type":"Polygon","arcs":[[-8492,-842,-3160,-3451,-337]],"id":"27085"},{"type":"Polygon","arcs":[[-2486,9469,-9460,-2964]],"id":"48425"},{"type":"Polygon","arcs":[[-1862,-6560,-6564,-8915,-8623,-9410]],"id":"39021"},{"type":"MultiPolygon","arcs":[[[9470,-8378]],[[9471,9472,9473,-8376,9474,-8384]]],"id":"12086"},{"type":"Polygon","arcs":[[-9329,-9128,-4678,-8394]],"id":"13165"},{"type":"Polygon","arcs":[[-5813,9475,-397,-1779,9476,-6815]],"id":"40043"},{"type":"Polygon","arcs":[[-2338,9477,9478,-6922,-9037,-4643]],"id":"40085"},{"type":"Polygon","arcs":[[-4492,-5152,-8808,-6368,-3356]],"id":"13005"},{"type":"Polygon","arcs":[[-314,-9388,-3616]],"id":"23021"},{"type":"Polygon","arcs":[[9479,9480,-1911,-8925]],"id":"39085"},{"type":"Polygon","arcs":[[-5956,-8198,-8875,9481,-2723]],"id":"48089"},{"type":"Polygon","arcs":[[-5667,-5449,-6714,-5925]],"id":"21131"},{"type":"Polygon","arcs":[[-3915,-8443,-8055,-8095,-9176,9482]],"id":"06113"},{"type":"Polygon","arcs":[[-9064,9483,-7790,9484,-5264]],"id":"12007"},{"type":"Polygon","arcs":[[-8949,-4957,-2907,-2765,9485,-5606,-4805]],"id":"37119"},{"type":"Polygon","arcs":[[-8743,-9039,-180,9486,-1155,-3080,-1229,-1850]],"id":"17113"},{"type":"Polygon","arcs":[[-4279,-8137,-7567,-6639,9487]],"id":"41067"},{"type":"Polygon","arcs":[[-7293,-4323,-9259,-6431,-3374,-5561]],"id":"18021"},{"type":"Polygon","arcs":[[-9020,-9453,-6071,-6929,-944]],"id":"48161"},{"type":"Polygon","arcs":[[-7244,9488,-5553,9489,-8975,9490]],"id":"24003"},{"type":"Polygon","arcs":[[-8725,-2862,-7903,-4971,-5005,-8957]],"id":"42083"},{"type":"Polygon","arcs":[[-1681,-7439,-8899,-2711,9491,-3383]],"id":"29103"},{"type":"Polygon","arcs":[[-2673,-7102,-3106,-5541]],"id":"19147"},{"type":"Polygon","arcs":[[-3384,-9492,-2715,-8704,-8367,-4995,9492]],"id":"29121"},{"type":"Polygon","arcs":[[-2537,9493,-8175,-7132,9494,-3205]],"id":"28103"},{"type":"Polygon","arcs":[[-6325,-6665,-2567,-7685,9495,-4169]],"id":"28077"},{"type":"Polygon","arcs":[[-1854,-4310,-1011,-9012,-8416,-9215,-8206,-8213]],"id":"08073"},{"type":"Polygon","arcs":[[-6300,-5322,9496,-2990,-720]],"id":"20077"},{"type":"Polygon","arcs":[[-216,-6439,-1844,-760,-3248]],"id":"19171"},{"type":"Polygon","arcs":[[-9311,-8939,-8172,-8173,-9494,-2536]],"id":"28087"},{"type":"Polygon","arcs":[[-1583,-1955,-9431,-7503,9497,-4027]],"id":"29057"},{"type":"Polygon","arcs":[[-2249,-2280,-9352,-454,-6655,-9433]],"id":"48033"},{"type":"Polygon","arcs":[[-5542,-3109,-3514,-9466]],"id":"19021"},{"type":"Polygon","arcs":[[-6080,-1385,-5432,-9462,-9149,-5091]],"id":"47039"},{"type":"Polygon","arcs":[[-7267,-2983,-9341,-8927,-8974]],"id":"16027"},{"type":"Polygon","arcs":[[-4170,-9496,-7684,-8232,-2106]],"id":"28147"},{"type":"Polygon","arcs":[[-8903,-9328,-8123,-3592,-4823]],"id":"33005"},{"type":"Polygon","arcs":[[-9000,-2384,-3385,-9493,-4994,-1566]],"id":"29115"},{"type":"Polygon","arcs":[[-6816,-9477,-1782,-523,-3329,-2556]],"id":"40129"},{"type":"Polygon","arcs":[[9498,-5910,-7715,9499,-2771,-4523]],"id":"55111"},{"type":"Polygon","arcs":[[-8936,-7634,-9080,-7867,-7228,-4023,-9237,-3802]],"id":"22009"},{"type":"Polygon","arcs":[[-4028,-9498,-7502,-1512,-1663,9500,-1625]],"id":"29109"},{"type":"Polygon","arcs":[[-1060,-8147,-3948,9501,-5282]],"id":"37127"},{"type":"Polygon","arcs":[[-488,-5960,-2046,9502,-6098,-9324]],"id":"41069"},{"type":"Polygon","arcs":[[-5326,-9442,-5948,-5224,9503,-7641]],"id":"21043"},{"type":"Polygon","arcs":[[-5924,9504,-6485,-8754,-4960,-4884]],"id":"37115"},{"type":"MultiPolygon","arcs":[[[-9448]],[[-3685,9505,9506,-8848,-7989],[-5907,-9447]]],"id":"51153"},{"type":"Polygon","arcs":[[-8271,-8072,9507,-8942]],"id":"34007"},{"type":"Polygon","arcs":[[-9408,-681,-2625,9508]],"id":"38031"},{"type":"Polygon","arcs":[[-6970,-6949,-6104,-9346,-6276,-1606,-6658]],"id":"51167"},{"type":"MultiPolygon","arcs":[[[9509]],[[-8807,-5034,-7793,9510,-1642]]],"id":"26041"},{"type":"Polygon","arcs":[[-6602,-4329,-7203,-4382,-7702,-4377,-6247,-66]],"id":"18175"},{"type":"Polygon","arcs":[[-4571,-7377,-4173,-5815,-2881]],"id":"35019"},{"type":"Polygon","arcs":[[-6296,-2785,-9036,-9157,-4415]],"id":"18029"},{"type":"Polygon","arcs":[[-9034,-7214,-9081,9511,-9155]],"id":"21117"},{"type":"MultiPolygon","arcs":[[[-9168,-3582,-7233,9512,-4915]]],"id":"23015"},{"type":"Polygon","arcs":[[-8574,-7356,-3351,-5564,-7281]],"id":"28009"},{"type":"Polygon","arcs":[[-96,-728,-3112,-3743,-8647,-6012]],"id":"19119"},{"type":"Polygon","arcs":[[-6956,9513,-5739,9514,-5270,9515]],"id":"21049"},{"type":"Polygon","arcs":[[9516,9517,-5933,9518,-2763]],"id":"37167"},{"type":"Polygon","arcs":[[-9029,-5717,-9305,9519,9520]],"id":"47003"},{"type":"Polygon","arcs":[[-5354,-5847,-3317,-5371,-3722,9521]],"id":"51029"},{"type":"Polygon","arcs":[[-9219,-9214,-8099,-3757,-7588]],"id":"05089"},{"type":"Polygon","arcs":[[-8405,-6167,-3807,-6175,-4530,-9313]],"id":"29003"},{"type":"Polygon","arcs":[[-2912,-8224,-3548,-8894,-8167,-4501,-8174]],"id":"01125"},{"type":"Polygon","arcs":[[9522,-6737,-9291,-4640,-2417,-1733]],"id":"72135"},{"type":"Polygon","arcs":[[-5089,-5922,-4882,-6577,-4968]],"id":"47063"},{"type":"Polygon","arcs":[[-3731,-4639,-6149,9523,-5958,-5338,-9415]],"id":"53005"},{"type":"Polygon","arcs":[[-8820,-4388,9524,-4723,-8512]],"id":"13191"},{"type":"Polygon","arcs":[[-4781,-4935,-8212,-3154,-7852]],"id":"48109"},{"type":"Polygon","arcs":[[-1987,-8596,-9424,-6022,-8391,-8621]],"id":"13245"},{"type":"Polygon","arcs":[[-9399,-5829,-6823,-6081,-3408]],"id":"21035"},{"type":"Polygon","arcs":[[9525,-5521,-8844,-8944,-9326,-8901]],"id":"33013"},{"type":"MultiPolygon","arcs":[[[-4077,9526]],[[9527,-6790]],[[-8980,9528,-6788]]],"id":"48167"},{"type":"Polygon","arcs":[[-9148,-9382,-9455,-3835,9529,-5682]],"id":"31007"},{"type":"Polygon","arcs":[[-2473,-3281,-6061,-1926,-8760,-7956]],"id":"05053"},{"type":"Polygon","arcs":[[9530,-5140,9531,-4413,9532,-5136]],"id":"34033"},{"type":"Polygon","arcs":[[-6851,-9488,-6642,-8086,-8362,9533]],"id":"41057"},{"type":"Polygon","arcs":[[-7605,-9454,-6096,-8582,-8948,-9235,9534]],"id":"36115"},{"type":"Polygon","arcs":[[9535,-7360,-2821,-2200]],"id":"27077"},{"type":"Polygon","arcs":[[-8111,-7032,-1842,-1006,-4309,-8149,-6238]],"id":"08001"},{"type":"Polygon","arcs":[[9536,-3916,-9483,-9175,-7806,-7581]],"id":"06033"},{"type":"Polygon","arcs":[[-8770,-8819,-1990,-9347,-9016,9537]],"id":"13317"},{"type":"Polygon","arcs":[[-4997,-8369,-6669,-1514,9538]],"id":"29089"},{"type":"Polygon","arcs":[[-6644,9539,-5096,-3467,-230,-6854]],"id":"42011"},{"type":"Polygon","arcs":[[9540,-5877,-5985,-8141,-3429]],"id":"47087"},{"type":"Polygon","arcs":[[9541,-5913,-140,-7628,-152,-9172]],"id":"72091"},{"type":"Polygon","arcs":[[-2988,-8025,-3341,-8829,-6729,-6946]],"id":"54007"},{"type":"Polygon","arcs":[[-7042,9542,-8455,-5329,-5854,-9348]],"id":"21161"},{"type":"Polygon","arcs":[[9543,-9159,-7277,-8962,9544]],"id":"26021"},{"type":"Polygon","arcs":[[-9487,-179,-8421,-5041,-1156]],"id":"17019"},{"type":"Polygon","arcs":[[-4510,-7386,-9270,-5350,9545,-8633,-7608],[-7075],[-807]],"id":"51015"},{"type":"Polygon","arcs":[[-3285,-6346,-3765,-7192,9546,-9370,-6059]],"id":"05001"},{"type":"Polygon","arcs":[[-8494,-8877,-2125,-8787,-8879,-7985]],"id":"13079"},{"type":"Polygon","arcs":[[-3378,-6512,-6432,-6292,-4790]],"id":"18027"},{"type":"MultiPolygon","arcs":[[[9547]],[[9548,-7055]],[[-4628,9549]],[[-7059,9550]]],"id":"37055"},{"type":"Polygon","arcs":[[-3943,-3661,-9317,-7409]],"id":"30021"},{"type":"Polygon","arcs":[[-8079,-690,-1111,-1699,-5970,-6895]],"id":"48281"},{"type":"Polygon","arcs":[[-7493,-6114,-1740,9551,-7759]],"id":"12123"},{"type":"Polygon","arcs":[[9552,-7036,-4315]],"id":"13047"},{"type":"Polygon","arcs":[[-755,-6154,-6208,-505,-9071]],"id":"13067"},{"type":"MultiPolygon","arcs":[[[-4742,-7724,-4266]],[[-4021,-9285,-4739,-6606,-9238]]],"id":"22099"},{"type":"Polygon","arcs":[[-7370,-3366,9553,-7687,-2373,-8449,-7390]],"id":"28135"},{"type":"Polygon","arcs":[[-9377,-6005,-1564,-895,-7501,-9430]],"id":"29059"},{"type":"Polygon","arcs":[[-3947,-4178,-5191,-4576,-5283,-9502]],"id":"37195"},{"type":"Polygon","arcs":[[-1620,-6117,-390,-9407,9554,-8904]],"id":"38005"},{"type":"Polygon","arcs":[[-9464,9555,9556,-9437,-6018,-4206]],"id":"45063"},{"type":"Polygon","arcs":[[-1712,-2770,-2857,-8553,-1887,-4296,-9161]],"id":"48137"},{"type":"Polygon","arcs":[[-4318,-3927,-4549,-4362]],"id":"13055"},{"type":"Polygon","arcs":[[9557,-3470,-7185,9558,9559]],"id":"24025"},{"type":"Polygon","arcs":[[-5934,-5752,-5833,-6754,-5101,-4198,-5093,-4987]],"id":"45069"},{"type":"Polygon","arcs":[[-2998,-7664,-5551,-9398,-3049,-3180]],"id":"20161"},{"type":"Polygon","arcs":[[-5741,-7283,-1599,-1312,-9158,9560]],"id":"26005"},{"type":"Polygon","arcs":[[-6667,-5242,-5362,-5012,-7636]],"id":"29051"},{"type":"Polygon","arcs":[[-7771,-7827,9561,9562,-3844,-4193,-2717]],"id":"40143"},{"type":"Polygon","arcs":[[-3695,-8319,-6092,-5273,-1904,9563]],"id":"48187"},{"type":"Polygon","arcs":[[-8592,-9142,9564,-8680,-8672,-2512]],"id":"50005"},{"type":"Polygon","arcs":[[-5588,-1488,-9383,-3094,-7716]],"id":"55055"},{"type":"Polygon","arcs":[[-8022,9565,-5131,9566,9567]],"id":"42001"},{"type":"Polygon","arcs":[[-6303,-7707,-3359,-3369,-8089,-8575]],"id":"20105"},{"type":"MultiPolygon","arcs":[[[-9033,9568]],[[9569]]],"id":"53029"},{"type":"Polygon","arcs":[[9570,-4895,-5978,-9325,-6466,-652,-5279,-7073]],"id":"31107"},{"type":"Polygon","arcs":[[-8721,-8013,9571,-4534,-9145,-8294,-9062]],"id":"32019"},{"type":"Polygon","arcs":[[-7642,-9504,-5223,-9400]],"id":"21063"},{"type":"Polygon","arcs":[[-4615,-5272,-4591,-6713,-6479,9572]],"id":"21079"},{"type":"Polygon","arcs":[[-5666,-5047,-5734,-6656,-5451]],"id":"21133"},{"type":"Polygon","arcs":[[-3057,-4695,9573,-7205,-7310]],"id":"21223"},{"type":"Polygon","arcs":[[-4235,-6077,-8119,-8120,-5544,-9449]],"id":"47123"},{"type":"Polygon","arcs":[[-2343,-7929,-7991,-2351,-6902]],"id":"51113"},{"type":"Polygon","arcs":[[-7108,-3419,-1351,-2757,-9386,-3168]],"id":"17027"},{"type":"Polygon","arcs":[[-4720,9574,-9473,9575,-8817]],"id":"12011"},{"type":"Polygon","arcs":[[-9376,-9468,9576,-6882,-4032]],"id":"20175"},{"type":"Polygon","arcs":[[-7870,-8649,-6912,-9421,-6891,-6068,-9452]],"id":"48073"},{"type":"Polygon","arcs":[[-9547,-7191,-3601,-7464,-2369,-9371]],"id":"05041"},{"type":"Polygon","arcs":[[-9260,-4007,-4493,-8331,-8441,-7168]],"id":"16029"},{"type":"Polygon","arcs":[[-4578,-3827,-4231,-2396,-9372,-6679]],"id":"37061"},{"type":"Polygon","arcs":[[-8090,-3372,-8868,-6443,-6604,-6437]],"id":"20009"},{"type":"Polygon","arcs":[[-1781,9577,-7765,-525]],"id":"40149"},{"type":"Polygon","arcs":[[-7150,-6354,-6423,-9440,-8477,-1769]],"id":"08037"},{"type":"Polygon","arcs":[[-2054,-8741,-5796,-5793,-7573,-8081]],"id":"39099"},{"type":"Polygon","arcs":[[-5155,9578,-8397,-8034,-7962,-4844]],"id":"01087"},{"type":"Polygon","arcs":[[-8413,-1879,-6627,-1865,-2817,-477]],"id":"39107"},{"type":"Polygon","arcs":[[-3684,-5387,-6131,-3066,-6130,-9369,9579,-9300,9580,-9506],[-9380]],"id":"51059"},{"type":"Polygon","arcs":[[-9068,9581,-4257,-1438,-4106]],"id":"55085"},{"type":"Polygon","arcs":[[-8615,-2919,-2041,9582]],"id":"41061"},{"type":"Polygon","arcs":[[-6020,-9439,-1390,-5919,-8392]],"id":"45011"},{"type":"Polygon","arcs":[[9583,-350,-8318,-5571]],"id":"49051"},{"type":"MultiPolygon","arcs":[[[9584]],[[9585]],[[-6179,-8182,9586]],[[9587]]],"id":"26089"},{"type":"Polygon","arcs":[[-7437,-9233,-9052,-3145,-5380,-8784,-8898]],"id":"17067"},{"type":"Polygon","arcs":[[9588,-5853,-1525,9589,-1493]],"id":"51193"},{"type":"Polygon","arcs":[[-3556,-7507,-3956,-8398,-9579,-5154,-8187]],"id":"01123"},{"type":"Polygon","arcs":[[-1707,-8538,-8772,9590,-9394]],"id":"13075"},{"type":"MultiPolygon","arcs":[[[-5309,9591]],[[9592]]],"id":"26083"},{"type":"Polygon","arcs":[[-3206,-9495,-7131,-324,-1031]],"id":"28069"},{"type":"Polygon","arcs":[[-1066,-8546,-1875,-2141]],"id":"39125"},{"type":"Polygon","arcs":[[-5923,-1463,-7458,-4624,-6482,-9505]],"id":"47171"},{"type":"Polygon","arcs":[[-9021,-4489,-8558,9593]],"id":"13209"},{"type":"Polygon","arcs":[[-9395,-9591,-8774,-7490,-7758,-7175]],"id":"13027"},{"type":"Polygon","arcs":[[-3837,-9457,9594,-2888,-2889,-1008,-1841,-7031]],"id":"08075"},{"type":"Polygon","arcs":[[-1784,-90,-6662,-930,-1907]],"id":"39117"},{"type":"Polygon","arcs":[[-8883,-1902,9595,-9426,-9469,-2569]],"id":"39119"},{"type":"Polygon","arcs":[[-8686,-4811,9596,-7098]],"id":"13051"},{"type":"Polygon","arcs":[[-8882,-8886,-1824,-7179,9597,-8521]],"id":"13061"},{"type":"Polygon","arcs":[[-9456,-8498,-7286,-2885,-9595]],"id":"08115"},{"type":"Polygon","arcs":[[-3775,-7211,-8488,-8914,-1872,9598,-2969]],"id":"12105"},{"type":"Polygon","arcs":[[9599,-9308,-9093,-7938,-2323,-4920]],"id":"48147"},{"type":"Polygon","arcs":[[-6073,-3411,-7498,-6014,-5940,-5627]],"id":"21105"},{"type":"Polygon","arcs":[[-8854,-8861,-7837,-4360,-7915,-9144]],"id":"01071"},{"type":"Polygon","arcs":[[-8776,-3501,-8031,-8396,9600]],"id":"13215"},{"type":"Polygon","arcs":[[9601,-9120,-3938,-8134,-4150,-2870,-8544]],"id":"17195"},{"type":"Polygon","arcs":[[9602,-8918,-8486,-2440,-7948]],"id":"12009"},{"type":"Polygon","arcs":[[-3312,-9124,-1709,-9393,-7842,-7840,-9164]],"id":"13321"},{"type":"Polygon","arcs":[[-8809,-8513,-4726,-9185,-5110,-6370]],"id":"13025"},{"type":"Polygon","arcs":[[-1780,-395,-9220,-2302,-517,-7766,-9578]],"id":"40015"},{"type":"Polygon","arcs":[[9603,-9520,-9306,-8856,-9143,-7692,-1071]],"id":"47103"},{"type":"Polygon","arcs":[[-6794,-4842,-3221,-7402,-8217,9604]],"id":"39111"},{"type":"Polygon","arcs":[[9605,-4521,-7980,-8663]],"id":"55081"},{"type":"Polygon","arcs":[[-6263,-3833,-4807,-3857,-7705]],"id":"45021"},{"type":"Polygon","arcs":[[-5399,-5108,-200,-8694,-4258,-9582,-9067]],"id":"55041"},{"type":"Polygon","arcs":[[-789,-6957,-9516,-5269,-4613,9606]],"id":"21067"},{"type":"Polygon","arcs":[[-383,-4048,-6407,-6551,-9314,-7322]],"id":"36037"},{"type":"Polygon","arcs":[[9607,9608,9609,-6477,-9027]],"id":"21229"},{"type":"Polygon","arcs":[[-8146,9610,-6721,9611,-4179,-3945]],"id":"37117"},{"type":"Polygon","arcs":[[-3292,-7704,-6884,-3949,-5766,-4068]],"id":"40025"},{"type":"Polygon","arcs":[[-5104,-6201,-5166,-5965,-4200]],"id":"45067"},{"type":"Polygon","arcs":[[-860,-8328,-1808,-9007,-2807,-303,9612,-6491]],"id":"01039"},{"type":"MultiPolygon","arcs":[[[9613]],[[9614]],[[-7142,-1984,-7090,9615,-7087]]],"id":"06037"},{"type":"Polygon","arcs":[[-8773,-7012,-7536,-7221,-7492]],"id":"12047"},{"type":"Polygon","arcs":[[-7145,-8818,-9576,-9472,-8383,9616]],"id":"12021"},{"type":"Polygon","arcs":[[-2831,-6115,-1306,-8959,-4902,9617,-6160]],"id":"20125"},{"type":"Polygon","arcs":[[-3153,-6116,-5447,-7118,-3983,-5837,-845]],"id":"17193"},{"type":"Polygon","arcs":[[-492,-1626,-9501,-1666,-7135,-4145]],"id":"29009"},{"type":"Polygon","arcs":[[-78,-9111,-7234,-1591,-6453,-9112]],"id":"26125"},{"type":"Polygon","arcs":[[-5487,-4525,-7528,-7911,-5293]],"id":"19005"},{"type":"Polygon","arcs":[[-6161,-9618,-4906,9618,-9562,-7826]],"id":"40147"},{"type":"Polygon","arcs":[[9619,-4486,-6381,-6670,-6203]],"id":"30005"},{"type":"Polygon","arcs":[[-5852,9620,-1527]],"id":"51103"},{"type":"Polygon","arcs":[[-6371,-5113,-7486,-9209,-7791,-9484,-9063,-7537,-7274]],"id":"12003"},{"type":"Polygon","arcs":[[-1244,-7973,-6532,-7632,-4757,-9170]],"id":"22127"},{"type":"Polygon","arcs":[[-7647,-9030,-9521,-9604,-1070,-5457]],"id":"47117"},{"type":"Polygon","arcs":[[-1494,-9590,-1529,9621,-9363,-6031,-5612]],"id":"51057"},{"type":"Polygon","arcs":[[-479,-2816,-1193,-3008,-8863]],"id":"18135"},{"type":"Polygon","arcs":[[9622,-732,-9061,-8643]],"id":"30101"},{"type":"Polygon","arcs":[[-3619,-9167,-5555,-5883,9623]],"id":"23007"},{"type":"Polygon","arcs":[[-1309,-1115,-5318,-2638,9624,-1597]],"id":"26045"},{"type":"Polygon","arcs":[[-8439,-1232,-9385,-2094,-6998,-2955,-5215,-5176]],"id":"17167"},{"type":"Polygon","arcs":[[9625,-4013,9626,-9088]],"id":"25001"},{"type":"Polygon","arcs":[[9627,-6765,-5370,-4451,-9272]],"id":"30091"},{"type":"Polygon","arcs":[[-7376,-8445,-6824,-1000,-8105,-8758,-4175]],"id":"35041"},{"type":"Polygon","arcs":[[-9497,-5321,-7332,-6684,-2991]],"id":"40053"},{"type":"Polygon","arcs":[[-8021,9628,-3471,-9558,9629,-5132,-9566]],"id":"42133"},{"type":"Polygon","arcs":[[-1748,-6283,-6499,-7071,-865,-8926]],"id":"13237"},{"type":"Polygon","arcs":[[-9443,-7674,-8736,9630]],"id":"13257"},{"type":"Polygon","arcs":[[-9444,-9631,-8737,-1892,-9090,-8781]],"id":"13011"},{"type":"Polygon","arcs":[[-5777,-9339,-1554,-3396,-6521,-2939,-9091]],"id":"18073"},{"type":"Polygon","arcs":[[-3362,-646,-5050,-9097,-8866,-3370]],"id":"20113"},{"type":"Polygon","arcs":[[-9094,-8815,-6311,-1360,9631,-3459]],"id":"27097"},{"type":"Polygon","arcs":[[-5126,-7054,-1061,-5286,-7015,-5463]],"id":"37183"},{"type":"Polygon","arcs":[[-3605,-7392,-6465,-7062,-7700,-7465]],"id":"28151"},{"type":"Polygon","arcs":[[-9131,-9121,-9602,-8543,-7119,-284,-2616]],"id":"19045"},{"type":"Polygon","arcs":[[-7606,-9535,-9234,-7738]],"id":"36113"},{"type":"Polygon","arcs":[[-9244,-862,-6493,9632,-2634,-8163]],"id":"01099"},{"type":"Polygon","arcs":[[-5465,-7014,-6748]],"id":"37105"},{"type":"Polygon","arcs":[[-9630,-9560,9633,-5554,-9489,-7243,-5133]],"id":"24005"},{"type":"Polygon","arcs":[[-8860,-666,-795,9634,-4657,-7489,-7037,-9553,-4314,-7836]],"id":"47065"},{"type":"Polygon","arcs":[[-163,9635,-9567,-5135,-7242,-5383,-3682]],"id":"24021"},{"type":"Polygon","arcs":[[-5656,-1532,-5298,-5313,-4348]],"id":"47097"},{"type":"Polygon","arcs":[[-7994,-7732,-46,-2815,-8994,-8017,-7727,-7920]],"id":"36025"},{"type":"Polygon","arcs":[[-4088,-6278,-9108,-3558,-8186,-8083]],"id":"01121"},{"type":"Polygon","arcs":[[-1598,-9625,-2643,-3068,-1176,-1314]],"id":"26025"},{"type":"Polygon","arcs":[[-8479,-9441,-9435,9636,-6357,-7003]],"id":"08015"},{"type":"Polygon","arcs":[[-1158,-5043,9637,-8265,-9384]],"id":"17139"},{"type":"Polygon","arcs":[[-8988,-6321,-7686,-9554,-3365,-7395]],"id":"28107"},{"type":"Polygon","arcs":[[-8256,-8554,-5973,-1974]],"id":"30039"},{"type":"Polygon","arcs":[[-9540,-6643,-4893,-8941,-6332,-5097]],"id":"42091"},{"type":"Polygon","arcs":[[-8193,-6813,-5771,9638,-5595,-5056,-5963]],"id":"42061"},{"type":"Polygon","arcs":[[-8196,-9279,-8981,-6786,-8873]],"id":"48157"},{"type":"Polygon","arcs":[[-6099,-9503,-2045,-4282,-6696]],"id":"41013"},{"type":"Polygon","arcs":[[-8145,-8326,-6596,9639,-6722,-9611]],"id":"37015"},{"type":"Polygon","arcs":[[-8662,-2523,-9389,-5911,-9499,-4522,-9606]],"id":"55057"},{"type":"Polygon","arcs":[[-2337,-7778,-9307,9640,-9478]],"id":"40095"},{"type":"Polygon","arcs":[[-1696,-676,-8054,-7930,-8005,-4287]],"id":"48331"},{"type":"Polygon","arcs":[[-6181,-4159,-2828,-1329,-567]],"id":"26165"},{"type":"Polygon","arcs":[[-8996,-5891,-9517,-2762,-2906]],"id":"37159"},{"type":"Polygon","arcs":[[-790,-9607,-4612,9641,9642,-2708]],"id":"21239"},{"type":"Polygon","arcs":[[-7051,-7160,-5810,-5811,-6814,9643]],"id":"40059"},{"type":"Polygon","arcs":[[-819,-6847,-6809,-9230,-2728,-417]],"id":"55139"},{"type":"Polygon","arcs":[[-5030,-9401,-307,-9458,-6821,-5827,-6473]],"id":"21047"},{"type":"Polygon","arcs":[[-3063,-799,-8910,-2604,-5462,-1182]],"id":"37001"},{"type":"Polygon","arcs":[[-9515,-5738,-1296,-3786,-5271]],"id":"21065"},{"type":"Polygon","arcs":[[-3854,-4955,-6566,-3444,-6188,-9246,-9396]],"id":"42129"},{"type":"Polygon","arcs":[[-6089,-4998,-9539,-1513,-1968,-5357]],"id":"29195"},{"type":"Polygon","arcs":[[9644,-739,-8828,-5594,-911,-588,-4870]],"id":"46037"},{"type":"Polygon","arcs":[[9645,-7585,-3696,-9564,-1903,-1391,-6173]],"id":"48029"},{"type":"Polygon","arcs":[[-1718,-8635,-4673,-7997,-8006,-7891,-7554,9646]],"id":"51019"},{"type":"Polygon","arcs":[[-8824,-9100,-6801,-8452,-9543,-7041]],"id":"39015"},{"type":"Polygon","arcs":[[-9524,-6148,-9403,-8616,-9583,-2040,-5959]],"id":"41059"},{"type":"Polygon","arcs":[[-425,-5862,-9250,-9103,-5936]],"id":"47129"},{"type":"Polygon","arcs":[[-8220,-1719,-9647,-7553,-7405,-4633],[-7516,-2866]],"id":"51161"},{"type":"Polygon","arcs":[[-8799,-8850]],"id":"51630"},{"type":"Polygon","arcs":[[-8530,-1702,-5712,-5203,-717,9647,-8463]],"id":"53063"},{"type":"Polygon","arcs":[[-8218,-7403,-7400,-7445]],"id":"54073"},{"type":"Polygon","arcs":[[9648,-9277,-8837,-6877,-8836]],"id":"72027"},{"type":"Polygon","arcs":[[-9577,-9467,-7052,-9644,-6817,-1200,-5995,-6883]],"id":"40007"},{"type":"Polygon","arcs":[[-3867,-6716,9649,-2647,-4966,-8417,-6397]],"id":"47025"},{"type":"Polygon","arcs":[[-1216,-5998,-5130,-4832,-6187,-4710,-6347,-5645]],"id":"04001"},{"type":"Polygon","arcs":[[-9041,-211,-8777,-9601,-8395,-3954]],"id":"13145"},{"type":"Polygon","arcs":[[-7696,-7753,-9310,-9224,-7748,-7755]],"id":"12077"},{"type":"Polygon","arcs":[[-8313,-7937,9650,9651]],"id":"28045"},{"type":"Polygon","arcs":[[9652,-4798,-7640,-8740,-1912,-9481]],"id":"39007"},{"type":"Polygon","arcs":[[-2163,-6419,-3912,-9537,-7580]],"id":"06021"},{"type":"Polygon","arcs":[[-8958,-7258,-8562,-8960,-9054,9653,-4904]],"id":"40035"},{"type":"Polygon","arcs":[[-7156,-8738,-7334,-5192,-8347]],"id":"17087"},{"type":"Polygon","arcs":[[-7252,-9420,-5079,-7110,-8515,-3808,-1283]],"id":"29183"},{"type":"Polygon","arcs":[[9654,-2833,-6163,-7825,-7329,-5319]],"id":"20035"},{"type":"Polygon","arcs":[[-7467,-3790,-7432,-8150]],"id":"22123"},{"type":"Polygon","arcs":[[9655,-9344,-2173,-8671,-9255,-6888,-5871,-4184]],"id":"38029"},{"type":"Polygon","arcs":[[-6542,9656,-8638,-8350,-8801]],"id":"29181"},{"type":"Polygon","arcs":[[-8933,-201,-1278,9657,-9126]],"id":"06087"},{"type":"Polygon","arcs":[[-4371,-3963,-2953,-7579,9658]],"id":"06023"},{"type":"Polygon","arcs":[[-8669,-334,9659,-2451,-6575,-9256]],"id":"46089"},{"type":"Polygon","arcs":[[-1086,-8464,-9648,-716,-8485,-7654,9660,-3550,-9402,-4636]],"id":"53075"},{"type":"Polygon","arcs":[[9661,-8531,-8461,-4081]],"id":"53019"},{"type":"Polygon","arcs":[[-6505,-193,-9165,-7838,-1826,-8885]],"id":"13273"},{"type":"Polygon","arcs":[[-634,-1896,-8771,-9538,-9015,-6280,-8878]],"id":"13221"},{"type":"Polygon","arcs":[[-8229,-4557,-9445,-9084,-1472,-9282]],"id":"30009"},{"type":"Polygon","arcs":[[-5617,-5683,-9530,-3839,-7030,-8188,-5347]],"id":"56021"},{"type":"Polygon","arcs":[[-638,-1559,-3780,-74,-6601,-7007]],"id":"18005"},{"type":"Polygon","arcs":[[-9156,-9512,-9082,-6579,-786,-6718,-6746]],"id":"21081"},{"type":"MultiPolygon","arcs":[[[9662]],[[-9419,9663,-8753,-4188,-3147]]],"id":"39043"},{"type":"Polygon","arcs":[[9664,-9642,-4616,-9573,-6478,-9610]],"id":"21167"},{"type":"Polygon","arcs":[[-7362,-7366,-2075,-8667,-987,-33]],"id":"27027"},{"type":"Polygon","arcs":[[-5889,-6691,-5735,-9514,-6955]],"id":"21173"},{"type":"Polygon","arcs":[[-5890,-1185,-6751,-5749,-9518]],"id":"37123"},{"type":"Polygon","arcs":[[-9178,9665,-7546,-8862,-8791,-839,-8491]],"id":"27053"},{"type":"Polygon","arcs":[[-4216,-6391,-1322,-5028,-6472,-5929]],"id":"21233"},{"type":"Polygon","arcs":[[9666,-9545,-8963,-1550,-9338]],"id":"18091"},{"type":"Polygon","arcs":[[-2652,-6259,9667,-2479,-1303]],"id":"20011"},{"type":"Polygon","arcs":[[-9486,-2764,-9519,-5932,-4985,-5607]],"id":"37179"},{"type":"Polygon","arcs":[[-8101,9668,-4626,-8282]],"id":"51810"},{"type":"Polygon","arcs":[[-8696,9669,-6997,-853,-6806,-6846,-9101]],"id":"55009"},{"type":"Polygon","arcs":[[-9637,-9434,-2283,-8214,-3194,-8208,-6358]],"id":"08043"},{"type":"Polygon","arcs":[[9670,-9404,-7860,-6326,-7885,-7783]],"id":"28067"},{"type":"Polygon","arcs":[[-3208,-1947,-379,-7306,-7659,-4773,-9365]],"id":"31181"},{"type":"Polygon","arcs":[[-8283,-4630,9671,-7987,-7976,-8204]],"id":"37029"},{"type":"Polygon","arcs":[[-9411,-8276,-4665,-4237,-9461,-9470,-2485]],"id":"48251"},{"type":"Polygon","arcs":[[-1771,-8480,-7001,-6243,-2100,-9060]],"id":"08077"},{"type":"Polygon","arcs":[[-5865,-6671,-5605,-4586,-1960]],"id":"30013"},{"type":"Polygon","arcs":[[-5051,-644,-1107,-364,-2834,-9655,-4692]],"id":"20015"},{"type":"Polygon","arcs":[[-6386,-5189,-5819,-8851,-1756,-9114]],"id":"38025"},{"type":"Polygon","arcs":[[-5474,-4300,-351,-9584,-5570,-8374]],"id":"49035"},{"type":"Polygon","arcs":[[-6924,9672,-4923,-8570,-8274,-252]],"id":"48121"},{"type":"Polygon","arcs":[[-2182,-4659,-119,-685,-1403,-4896,-9571,-7072,-610]],"id":"46023"},{"type":"Polygon","arcs":[[-9546,-5355,-9522,-3721,-4670,-8634]],"id":"51125"},{"type":"Polygon","arcs":[[-7544,-3213,-1104,9673,-112,-4098,-6110]],"id":"72043"},{"type":"Polygon","arcs":[[-8905,-9555,-9409,-9509,-2624,-9343,-8991]],"id":"38103"},{"type":"Polygon","arcs":[[9674,-6738,-9523,-1732]],"id":"72051"},{"type":"Polygon","arcs":[[-1791,-9342,-1152,-8744,-1848,-4042]],"id":"17143"},{"type":"Polygon","arcs":[[-6334,-8943,-9508,-8076,-4409,-9532,-5139]],"id":"34015"},{"type":"Polygon","arcs":[[-649,-5653,-5619,-7547,-9666,-9177]],"id":"27003"},{"type":"Polygon","arcs":[[-333,-7649,-740,-9645,-4869,-7883,-2452,-9660]],"id":"46013"},{"type":"Polygon","arcs":[[-5808,-2993,-6688,-1370,-392,-9476,-5812]],"id":"40093"},{"type":"Polygon","arcs":[[-913,-5593,-5248,-7960,-3598,-9298,-9423]],"id":"46039"},{"type":"Polygon","arcs":[[-1991,9675]],"id":"02230"},{"type":"Polygon","arcs":[[-1608,-6275,-6056,-6274,-4646,-7456,-1461,-5087]],"id":"47163"},{"type":"Polygon","arcs":[[-6393,-5444,9676]],"id":"44001"},{"type":"Polygon","arcs":[[-8418,-4970,-6578,-5503,-6074,-4233,-9251,-5860]],"id":"47093"},{"type":"Polygon","arcs":[[-8703,-811,-1460,-5349,-460,-7149,-8440,-5901]],"id":"56007"},{"type":"Polygon","arcs":[[-5536,-6855,-232,-3466,-9629,-8020,-8636]],"id":"42043"},{"type":"Polygon","arcs":[[-7533]],"id":"51580"},{"type":"Polygon","arcs":[[-2772,-9500,-7718,-8717,-8709,-7861]],"id":"55049"},{"type":"Polygon","arcs":[[-6867,-9107,-6864,-9106,-792,-664,-5726]],"id":"47175"},{"type":"Polygon","arcs":[[-2855,-7586,-9646,-6172,-1889,-8552]],"id":"48019"},{"type":"Polygon","arcs":[[-9006,-9290,-3767,-2809]],"id":"12059"},{"type":"Polygon","arcs":[[-5340,-490,-9323]],"id":"41055"},{"type":"Polygon","arcs":[[-8522,-9598,-7178,-9008,-8337]],"id":"01067"},{"type":"Polygon","arcs":[[-8750,-8301,-5524,-7389,-5515,-7805,-8708]],"id":"05139"},{"type":"Polygon","arcs":[[-7897,-8228,-6969,-9269,-7384,-8593]],"id":"54031"},{"type":"Polygon","arcs":[[-9152,-5880,9677,-8133,-4335,-5121,-1081,-9076]],"id":"22017"},{"type":"Polygon","arcs":[[-2548,-7524,-7123,-3960]],"id":"41029"},{"type":"Polygon","arcs":[[-7122,-4054,-8010,-8481,-555,-3962]],"id":"06049"},{"type":"Polygon","arcs":[[-7355,-5389,-9151,-6186,-9465,-3348]],"id":"28003"},{"type":"Polygon","arcs":[[-9216,-8484,-3288,-7106,-2274]],"id":"08011"},{"type":"Polygon","arcs":[[-7630,-7008,-6603,-64,-3376,-6430]],"id":"18105"},{"type":"Polygon","arcs":[[-8312,-9295,9678,-3988]],"id":"21029"},{"type":"Polygon","arcs":[[-1901,-6795,-9605,-8216,-9427,-9596]],"id":"39121"},{"type":"Polygon","arcs":[[-4226,-2709,-9643,-9665,-9609,9679,-9293]],"id":"21005"},{"type":"Polygon","arcs":[[-9679,-9294,-9680,-9608,-9026,-5690,-3989]],"id":"21179"},{"type":"Polygon","arcs":[[-6919,-5258,-9414,-4302,-5476]],"id":"49057"},{"type":"Polygon","arcs":[[-6907,-6051,-1218,-708,-3,-7941]],"id":"49025"},{"type":"Polygon","arcs":[[-3271,-8987,-8071,-8132,-9678,-5879,-5670]],"id":"05091"},{"type":"Polygon","arcs":[[-7083,-7520,-5850,9680,-9556,-9463]],"id":"45079"},{"type":"Polygon","arcs":[[-9485,-7789,-8430,-2435,-7946,9681,-5265]],"id":"12107"},{"type":"Polygon","arcs":[[9682,-5835,-8739,-7154,-7249,-9359]],"id":"17077"},{"type":"Polygon","arcs":[[-9612,-6726,-7061,9683,-6719,-3876,-4180]],"id":"37013"},{"type":"Polygon","arcs":[[-356,-6554,-7951,9684]],"id":"36123"},{"type":"Polygon","arcs":[[-8037,-3416,-5878,-9541,-3428,-1206,-5745]],"id":"47111"},{"type":"Polygon","arcs":[[-4297,-960,-5469,-8871,9685]],"id":"48323"},{"type":"Polygon","arcs":[[-989,-8668,-6608,-6159,-7260,-8827]],"id":"27155"},{"type":"Polygon","arcs":[[-8678,-8720,-9229,-4535,-9572,-8012]],"id":"32001"},{"type":"Polygon","arcs":[[-5024,-5676,-8723,-1455,-5759,-6733]],"id":"56005"},{"type":"Polygon","arcs":[[-7690,-7890,-9416,-5343,-9429,-8135,-5490]],"id":"53059"},{"type":"Polygon","arcs":[[-1936,-2445,-8607,-8766,-3476,-9123,-3310]],"id":"13315"},{"type":"MultiPolygon","arcs":[[[-8841,9686,-7624]]],"id":"72053"},{"type":"Polygon","arcs":[[-9105,-9253,-4653,-9635,-794]],"id":"47143"},{"type":"Polygon","arcs":[[-1299,-6471,-5471,-5049,-5665,-3744]],"id":"21025"},{"type":"Polygon","arcs":[[-6258,-7305,-301,-1953,-1581,-2480,-9668]],"id":"29217"},{"type":"Polygon","arcs":[[-9633,-6492,-9613,-302,-7829,-9318,-2635]],"id":"01053"},{"type":"Polygon","arcs":[[-5266,-9682,-7949,-7208,-3773,-7698,-7271]],"id":"12083"},{"type":"Polygon","arcs":[[-9661,-7658,-8614,-3551]],"id":"53003"},{"type":"Polygon","arcs":[[-9286,-8952,-8627,-8639,-9657,-6541]],"id":"29023"},{"type":"Polygon","arcs":[[-7250,-7159,-9116,-6036,-8951,-6536]],"id":"29031"},{"type":"Polygon","arcs":[[-5453,-6659,-1611,-2644,-9650,-6715]],"id":"51105"},{"type":"Polygon","arcs":[[-2926,-9292,-2348,-7917,-9248,-8222]],"id":"01043"},{"type":"Polygon","arcs":[[-5042,-3437,-7364,-3339,-8266,-9638]],"id":"17029"},{"type":"Polygon","arcs":[[-9354,-7472,-2503,-5822,-6520]],"id":"18015"},{"type":"MultiPolygon","arcs":[[[9687]],[[-8160,-7166,9688,-8042]]],"id":"22075"},{"type":"Polygon","arcs":[[-5703,-453,-9450,-902,-9173]],"id":"31091"},{"type":"Polygon","arcs":[[-5187,-8993,-9345,-9656,-4183,-4122]],"id":"38015"},{"type":"Polygon","arcs":[[-5578,-3897,-7532,-8221,-7534]],"id":"54063"},{"type":"Polygon","arcs":[[-7462,-8191,-7644,-4898,-9459]],"id":"47021"},{"type":"Polygon","arcs":[[-7019,-7746,-5781,-9303,-6856,-6706,-7296]],"id":"42015"},{"type":"Polygon","arcs":[[-9574,-4697,-4229,-8310,-7206]],"id":"21185"},{"type":"Polygon","arcs":[[-7138,-7589,-3760,-2204,-9221,-7741]],"id":"05101"},{"type":"Polygon","arcs":[[-8681,-9565,-9141,-1615,-7515,-5522,-9526,-8900,-5180]],"id":"33009"},{"type":"Polygon","arcs":[[-6807,-856,9689,-5492,-9360,-9231]],"id":"55117"},{"type":"Polygon","arcs":[[-2898,-9405,-9671,-7782,-6663,-6610]],"id":"28129"},{"type":"Polygon","arcs":[[-8234,-8314,-9652,9690,-8158,-8040,-9249,-12]],"id":"22103"},{"type":"Polygon","arcs":[[-9368,-9361,-5385,-7245,-9491,-8978,-9301,-9580]],"id":"24033"},{"type":"Polygon","arcs":[[-1367,-3460,-9632,-1359,-9179,-8489,-335,-849,-9425]],"id":"27145"},{"type":"Polygon","arcs":[[-9327,-7455,-3586,-5685,-3584,-5686,-8125]],"id":"25017"},{"type":"Polygon","arcs":[[-5596,-9639,-5770,-8637,-8023,-9568,-9636,-162]],"id":"42055"},{"type":"Polygon","arcs":[[-9387,-2741,-5836,-9683,-9358]],"id":"17145"},{"type":"Polygon","arcs":[[-5363,-4345,-1285,-3812,-7959,-4937,-5361]],"id":"29073"},{"type":"Polygon","arcs":[[-1196,-8545,-8128,-2783,-9406]],"id":"18161"},{"type":"Polygon","arcs":[[-8516,-8476,-8845,-9023,-2930,-3810]],"id":"29099"},{"type":"Polygon","arcs":[[-9619,-4905,-9654,-9055,-3840,-9563]],"id":"40131"},{"type":"Polygon","arcs":[[-9681,-5849,-5086,-9438,-9557]],"id":"45017"},{"type":"Polygon","arcs":[[-3886,-7446,-6843,-7855,-7617,-8888,9691]],"id":"54035"},{"type":"Polygon","arcs":[[-9674,-1103,-2129,-5506,9692,-113]],"id":"72123"},{"type":"Polygon","arcs":[[-2724,-9482,-8874,-6040,-4543,-8822]],"id":"48239"},{"type":"MultiPolygon","arcs":[[[-624,-8466,9693]]],"id":"53035"},{"type":"Polygon","arcs":[[-2970,-9599,-9042,9694,-7763]],"id":"12057"},{"type":"Polygon","arcs":[[-8281,-9227,-1546,-4777]],"id":"17043"},{"type":"Polygon","arcs":[[-8892,-4817,-8048,-7316,-8506,-9133]],"id":"34031"},{"type":"Polygon","arcs":[[-9479,-9641,-9309,-9600,-4919,-9673,-6923]],"id":"48181"},{"type":"Polygon","arcs":[[-4682,-9594,-8557,-9320]],"id":"13283"},{"type":"Polygon","arcs":[[-446,-85,-9312,-2534,-9069,-3032,-2375]],"id":"28155"},{"type":"Polygon","arcs":[[-8954,-904,-9451,-9356,-7284,-8497]],"id":"31101"},{"type":"Polygon","arcs":[[-7878,-4432,-9446,-7880,-7865]],"id":"28001"},{"type":"Polygon","arcs":[[-4046,-743,-357,-9685,-7950,-6408]],"id":"36069"},{"type":"Polygon","arcs":[[-3887,-9692,-8890,-6412,-3891]],"id":"54053"},{"type":"Polygon","arcs":[[-712,-3755,-6291,-3017,-5]],"id":"04025"}]},"states":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[-1217,-1216,-5998,-5130,-4832,-6187,4710,-3680,4711,-4826,7077,274,4707,5648,5646,3019,3015,-1981,6,7,0,1,2,707,708]]],"id":"04"},{"type":"MultiPolygon","arcs":[[[-8314,-9652,9690,8158,7164,9688,8042,8243,8359,8240,8360,4268,4742,3796,3994,3995,-3714,-3713,5460,-9014,6449,5635,5636,5637,5123,-1082,-1081,-9076,-9152,-5880,9677,8131,-8070,5390,5391,7803,7804,5514,-7388,-7468,-7467,3790,3791,-3621,-3620,-3628,-3627,-3626,7876,-4433,7877,7864,7865,7223,7215,-2449,-2448,8,9,-2107,8231,-7683,8232]],[[4743]],[[7162]],[[7163]],[[8238]],[[8357]],[[8358]],[[9687]]],"id":"22"},{"type":"MultiPolygon","arcs":[[[8928,-6699,8929,-8974,7267,-8973,-2922,-2921,8306,3187,7656,7657,7653,8484,715,716,5202,5711,-1701,1226,1223,1224,-5261,-2291,-2290,4110,-5905,8237,3185,-1977,-1976,-1503,-1502,-1501,5695,-5427,5696,-6231,4004,4005,-4493,-4499,8328,-5256,3975,3976,3299,3300,8076]]],"id":"16"},{"type":"MultiPolygon","arcs":[[[5160,5158,2198,9535,7357,2839,4048,3511,4049,2841,2842,1736,-7795,-7713,5650,5651,5620,5621,-5602,-5601,-5600,-6218,-6217,-6871,-6870,-9174,-7981,5485,-4526,5486,-5292,-5291,-466,-465,-2742,6454,1342,1343,5662,5663,2698,-2671,-2670,5568,-3741,3110,3111,727,-95,1490,3599,3597,7959,5247,5248,-5592,7261,-8827,-989,-988,-987,-33,-32,-6058,27,28,-6331,-4254,-6008]]],"id":"27"},{"type":"MultiPolygon","arcs":[[[31,32,986,987,988,989,-737,7648,332,333,8668,8669,-9255,-6888,5871,-6887,-3689,-6839,-6838,-6139,702,-6138,-3664,-3663,-3942,-4452,5369,6764,6762,9335,481,2136,3188,1616,2674,6006,-5161,6007,4253,6330,-29,-28,6057]]],"id":"38"},{"type":"MultiPolygon","arcs":[[[1403,-6178,-6140,6837,6838,3688,6886,-5872,6887,9254,-8670,-8669,-334,-333,-7649,736,-990,8826,-7262,5591,-5249,-5248,-7960,-3598,-3600,-1491,94,95,6011,6012,4873,-4689,-3564,4874,4875,4976,4977,5976,5977,4894,-9571,-7072,610,611,6903,3123,341,-8689,-2543,2494,2495,2496,4463,4464,4863,39,40,1407]]],"id":"46"},{"type":"MultiPolygon","arcs":[[[-7726,-7744,7017,7018,7295,-6705,-6704,-7901,2860,2861,8724,8725,8796,-4795,8794,9314,7323,380,4044,740,9286,3634,6254,4427,7872,8630,-8201,8631,7602,7603,-9454,-6096,-8582,-8583,-5233,-5239,-5238,-9003,-8049,8045,7317,7318,9055,8907,3659,6251,3657,8908,8711,4422,4417,4418,-7313,-7312,-7311,8047,4816,4817,4818,-6741,-7728,-7727]],[[6249]],[[6250]],[[6252]],[[6255]],[[8988,-8700,8989,-7379]]],"id":"36"},{"type":"MultiPolygon","arcs":[[[8656,1993,1422,8411,2033,9204,9065,8984,9206,2018,2026,2008,2021,745,2022,6287,4858,6289,4860,510,9349,1753,3519,2356,2745,2031,8410,1420,1994,9675,1991,8654,1409,1629,48,8408,3112,8409,50,1630,1411,8655,1413]],[[51]],[[52]],[[1415,8653]],[[1418,3131]],[[1627,3118]],[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2009]],[[2010]],[[2011]],[[2012]],[[2013]],[[2014]],[[2015]],[[2016]],[[2020]],[[2027]],[[2028]],[[3114]],[[3115]],[[3116]],[[3117]],[[3119,3129]],[[3130]],[[4861]],[[4862]],[[6288]],[[8406]],[[8407]],[[9185]],[[9186]],[[9187]],[[9188]],[[9189]],[[9190]],[[9191]],[[9192]],[[9193]],[[9194]],[[9195]],[[9196]],[[9197]],[[9198]],[[9199]],[[9200]],[[9201]],[[9202]],[[9203]],[[9205]],[[9348]],[[9350]]],"id":"02"},{"type":"MultiPolygon","arcs":[[[3930,-4549,-4362,4318,-4361,7836,7834,7835,4313,9552,7036,7037,3967,3968,2080,2081,-8121,-7670,-7669,-7668,-7598,-7676,-7675,-7674,-7673,6424,-4461,-4460,-5951,-5844,-5843,-5842,8594,-9424,-6022,-6021,8391,-5921,-5920,-5419,-5418,-4812,-4811,9596,7098,4386,9524,4723,9183,-7483,5111,5112,6370,7273,7274,7010,7011,8772,-7491,-7490,-7758,7175,7176,2057,2058,830,831,7843,7844,7181,7177,9597,-8521,-8520,-8519,-8032,3504,-8031,-8396,-8395,-3954,-3953,-7506,3510,-7505,-9109,56,5700,-4550]]],"id":"13"},{"type":"MultiPolygon","arcs":[[[5558,7293,-3435,-3434,8267,-8420,2942,2936,-8922,-8304,5778,5772,5773,5774,9336,9666,-9545,8961,-7279,5207,-2735,2610,-1179,-1178,-3072,-6784,-6783,-1068,-1067,2140,-1881,-1880,8412,476,477,-2816,1193,1194,-8545,-8128,2783,-9036,-9157,4415,7296,-6747,-3053,-3058,7309,7204,7205,7206,4383,7702,-3986,-6712,4378,4786,-4210,-4602,-4601,-7162,-7161,-6389,-6388,3979,3980,3981,3982,7117,-5446,4792,-4746,4787,5561]]],"id":"18"},{"type":"MultiPolygon","arcs":[[[7185,9109,7235,8252,-3640,-3639,7346,3069,3070,3071,1177,1178,-2611,2734,-5208,7278,-8962,9544,9543,9159,9560,5741,1338,4760,1332,569,8182,9586,6179,2578,7341,8246,9280,9224,3607,8564,8864,3173,3595,8284,8363,471]],[[-5107,5398,5399,3612,3613,3609,8910,5307,9591,5309,4397,8805,5031,2211,7477,7480,7791,9510,1642,-197,-196,4025]],[[7342]],[[7343]],[[7344]],[[7479]],[[9509]],[[9584]],[[9585]],[[9587]],[[9592]]],"id":"26"},{"type":"MultiPolygon","arcs":[[[-8172,-8173,-8175,-7132,-7131,324,325,-7125,-7130,7857,-8263,-8528,-8527,-8526,9391,7935,9650,9651,8313,-8233,7682,-8232,2106,-10,-9,2447,2448,-7216,-7224,-7866,-7865,-7878,4432,-7877,3625,3626,3627,3619,3620,-3792,-7466,-7465,3605,3600,3601,-7190,-7189,7395,7392,7240,-4470,-4469,7279,-8574,-7356,3346,-7355,-5389,-9151,6182,-4143,-4703,-4852,-4855,8895,8937,-8169]],[[7932]],[[7933]],[[9389]],[[9390]]],"id":"28"},{"type":"MultiPolygon","arcs":[[[1066,1067,6782,6783,-3071,-3070,-7347,3638,3639,3640,9417,9663,8750,8923,9479,9652,-4798,-7640,-7639,-5797,-5796,-5793,-5792,-993,7573,-8067,-6287,-8116,6792,-4839,-4842,-3221,-7402,-7404,8217,-7444,-7443,3884,3885,3886,3890,3891,-6411,8803,-5946,8804,8652,-5324,-5330,8454,-9543,-7041,-7040,8824,-7212,-7215,9033,9034,9035,-2784,8127,8544,-1195,-1194,2815,-478,-477,-8413,1879,1880,-2141]],[[9416]],[[9662]]],"id":"39"},{"type":"MultiPolygon","arcs":[[[8734,5755,6905,7852,9179,-7508,-4783,-4782,-4781,-4935,-4934,-4933,-8106,3716,3083,1693,498,998,999,6823,6824,-8444,184,185,-7374,-7373,-4070,-4069,5765,3948,3949,613,5993,5994,1199,1200,2554,2555,3328,-530,-529,-9018,500,8996,-6835,-6834,6926,7422,-3652,-3651,-4645,-4644,9036,6921,-9479,-9641,-9309,-9308,9091,-4437,-4436,-8115,5668,-3272,5669,5878,5879,9151,9075,1080,1081,-5124,-5638,-5637,-5636,-6450,9013,-5461,3712,3713,-3996,5330,4075,9526,4077,8978,9528,6788,9527,6790,6042,4544,3701,8583,8964,6399,7424,9216,7426,6401,8965,8585,3699,4545,5990,3703,4541,3705,5991,3707,8399,8586,8966,6403,7427,9217,7904,9131,3698,8871,9685,4297,9161]]],"id":"48"},{"type":"MultiPolygon","arcs":[[[6828,8841,8572,9256,7650,6872,4273,8580,8578,2073,6978,9273,8832,8834,9648,9275,8249,9170,9541,5911,1730,9674,6734,134,8729,9274,4109,6765,8839,9686,7624,8562,2691,9279,3521,9138,2934,5504,9692,113,4098]],[[7680]],[[9227]]],"id":"72"},{"type":"MultiPolygon","arcs":[[[-7172,-5145,-2890,149,145,-2886,7285,8497,9455,9456,3836,3837,3838,9529,-5682,-5681,-5680,-7302,-2496,-2495,2542,8688,-342,-3124,-6904,-612,-611,7071,9570,-4895,-5978,-5977,-4978,-4977,-4876,-4875,-3563,-3562,8674,-9013,-7368,5333,-3570,-3569,-3568,-3656,-3655,-5171,4762,4763,-6121,8175,4125,4126,4127,4128,3325,3326,-7662,-2996,-2995,-8093,7307,7308,-7659,-4773,-4772,-2581,-2580,-170,-169,-2916,-2915,4131,1577]]],"id":"31"},{"type":"MultiPolygon","arcs":[[[157,158,601,602,-5996,3966,-1215,-1214,-1213,-1212,-9060,1771,1765,-7550,-7549,-4292,-5902,8439,7148,459,460,-5348,8187,7029,-3838,-3837,-9457,-9456,-8498,-7286,2885,-146,-150,2889,2890,-5147,-3252,-1192,-1191,-5211,-5213,-5212,-2839,-7103,3289,3290,3291,3292,-4067,7106,7027,-5866]]],"id":"08"},{"type":"MultiPolygon","arcs":[[[-9630,9557,-3470,-3469,-5100,-5144,-5143,5376,-7265,977,978,5199,4393,9333,9334,-9045,-9044,9330,4396,5200,5538,9050,5378,7183,9558,9633,5551,9489,8975,4748,9301,9299,-9580,-9368,-9361,5385,5386,-3683,-3682,163,164,165,166,319,320,321,5300,5301,5302,5298,5299,316,317,318,160,161,9635,-9567,5130,5131]],[[5197,9332]],[[-9049,9331]]],"id":"24"},{"type":"MultiPolygon","arcs":[[[4771,4772,7658,-7309,-7308,8092,2994,2995,7661,-3327,-3326,-4129,-4128,-4127,4528,4529,4530,-6177,7557,8457,8868,-7351,-5785,-5789,-8184,3997,3998,6256,6257,9667,2479,-1585,2480,-4029,-1623,7256,7257,8957,-4903,-4902,9617,6160,6161,-7825,-7329,5319,5320,9496,-2990,720,721,-5807,7159,7050,7051,9466,9576,-6882,4032,-6881,7703,-3291,-3290,7102,2838,5211,5212,5210,1190,1191,3251,5146,-2891,5144,7171,-1579,-1578,-4132,2914,2915,168,169,2579,2580]]],"id":"20"},{"type":"MultiPolygon","arcs":[[[8921,-2937,-2943,8419,-8268,3433,3434,-7294,-5559,-5562,-4788,4745,-4793,5445,-7118,-3983,-3982,-4219,-4218,-5928,-5403,-5402,5193,5194,-5412,8347,9114,-5624,-6037,9115,7158,7152,-7249,-7248,-8846,8474,8475,8472,3171,3165,-5053,7108,7109,5078,9419,-7251,-5074,4443,4444,-3674,-3673,8784,-8898,-7437,-9233,9052,-4448,-4447,5289,-7517,-3647,-7120,8542,9601,9120,9121,4038,4039,4034,4035,4374,4372,965,966,-3096,9112,4766,-4094,-4093,9373,8278,-5774,-5773,-5779,8303]]],"id":"17"},{"type":"MultiPolygon","arcs":[[[195,196,197,8694,9669,6993,8683,6995,854,9689,5492,8660,7952,4091,4092,4093,-4767,-9113,3095,-967,-966,-4373,-4375,-4036,-4035,-4731,7862,7526,7527,4524,4525,-5486,7980,9173,6869,6870,6216,6217,5599,5600,5601,-5622,-5621,-5652,-5651,7712,7794,-1737,-2843,7793,4516,9267,7415,-3614,-3613,-5400,-5399,5106,-4026]],[[4515]],[[8681]],[[8682]],[[9260]],[[9261]],[[9262]],[[9263]],[[9264]],[[9265]],[[9266]]],"id":"55"},{"type":"MultiPolygon","arcs":[[[9126,8342,9124,8930,9365,8340,9366,7195,8095,7808,8433,7810,7582,9658,4371,-3202,-2550,-2549,3959,3960,-7122,-4054,-8010,-8009,962,2539,-8016,9000,-8296,1252,3956,-8295,9144,-4537,-2598,-2597,4947,4948,1979,-7,1980,-3016,-3020,-5647,5709,9145,7092,9615,7087,2949,9095,1280,9657]],[[2943]],[[2944]],[[2945]],[[7084]],[[7088]],[[9613]],[[9614]]],"id":"06"},{"type":"MultiPolygon","arcs":[[[4688,-4874,-6013,-6012,-96,-728,-3112,-3111,3740,-5569,2669,2670,-2699,-5664,-5663,-1344,-1343,-6455,2741,464,465,5290,5291,-5487,-4525,-7528,-7527,-7863,4730,-4040,-4039,-9122,-9121,-9602,-8543,7119,3646,7516,-5290,4446,4447,-9053,9232,-7436,2116,-1679,-1678,3138,4727,4728,693,694,5220,5221,1128,1129,-8365,-8404,7518,-6118,5172,-4763,5170,3654,3655,3567,3568,3569,-5334,7367,9012,-8675,3561,3562,3563]]],"id":"19"},{"type":"MultiPolygon","arcs":[[[-9558,9629,-5132,-5131,9566,-9636,-162,-161,-319,-318,-317,-5300,-5299,-5304,9246,2364,2365,2366,-4841,-8117,-6285,-8066,997,992,5791,5792,5795,5796,7638,7639,4797,4793,4794,-8797,-8726,-8725,-2862,-2861,7900,6703,6704,-7296,-7019,-7018,7743,7725,7726,7727,6740,-4819,6741,7336,-6266,5631,4888,-4476,4889,4890,-8272,8941,8942,6333,-5138,5098,5099,3468,3469]]],"id":"42"},{"type":"MultiPolygon","arcs":[[[7449,9270,9627,-6765,-5370,4451,3941,3662,3663,6137,-703,6138,6139,6177,-1404,-5674,5022,5023,5024,-6732,-9085,-9084,-1472,-1471,-1478,5425,5426,-5696,1500,1501,1502,1975,1976,-3186,-8238,5904,-4111,2289,2290,5260,-1225,5259,2237,8641,9622,732,6201,9619,4482]]],"id":"30"},{"type":"MultiPolygon","arcs":[[[-3999,-3998,8183,5788,5784,7350,-8869,-8458,-7558,6176,-4531,-4530,-4529,-4126,-8176,6120,-4764,-5173,6117,-7519,8403,8364,-1130,-1129,-5222,-5221,-695,-694,-4729,-4728,-3139,1677,1678,-2117,7435,7436,8897,-8785,3672,3673,-4445,-4444,5073,7250,-9420,-5079,-7110,-7109,5052,-3166,-3172,-8473,-8476,-8475,8845,7247,7248,-7153,-7159,-9116,6036,5623,5624,5625,5626,5627,-5943,8714,-5945,8715,3667,3668,3669,-4354,8629,8624,8625,-8639,-8638,-8350,-8353,-8035,-4357,-4356,-4355,-8097,9213,9218,-7587,-7136,1664,-7135,-4145,492,493,494,1626,1622,4028,-2481,1584,-2480,-9668,-6258,-6257]]],"id":"29"},{"type":"MultiPolygon","arcs":[[[-9005,-9009,-7844,-832,-831,-2059,-2058,-7177,-7176,7757,7489,7490,-8773,-7012,-7011,-7275,-7274,-6371,-5113,-5112,7482,7483,9207,8428,2432,7946,9602,8918,3136,1809,4718,9574,9473,8376,9470,8378,9474,8384,9616,7145,7112,7147,7114,8767,9042,9694,7763,2973,7761,2971,7094,7698,7272,1743,9551,7759,9222,7749,7755,2406,2810,304,7829,9318,-2636,9317,7828,301,302,2806,2807,-9006]],[[7146]],[[7746]],[[8379]],[[8380]],[[8381]],[[8385]],[[8386]],[[8387]],[[8388]]],"id":"12"},{"type":"MultiPolygon","arcs":[[[5827,-6823,-6081,3408,3409,-7498,-6014,5940,5941,5942,-5628,-5627,-5626,-5625,-9115,-8348,5411,-5195,-5194,5401,5402,5927,4217,4218,-3981,-3980,6387,6388,7160,7161,4600,4601,4209,-4787,-4379,6711,3985,-7703,-4384,-7207,-7206,-7205,-7310,3057,3052,6746,-7297,-4416,9156,-9035,-9034,7214,7211,-8825,7039,7040,9542,-8455,5329,5323,-8653,-8805,5945,5946,5225,5480,5481,5729,5730,5731,5732,-6656,5451,5452,6714,6715,3866,3867,-6396,-422,-421,4222,-7847,-5874,4735,3414,3415,8036,-5744,-5743,-7460,-7459,309,310,-9458,-6821]],[[5943,5944]]],"id":"21"},{"type":"MultiPolygon","arcs":[[[3263,7228,3265,3579,7231,9512,4915,5892,972,973,974,975,5884,-1613,5885,9623,3614,315,729]],[[3258]],[[3259]],[[3260]],[[3261]],[[3576]],[[7229]],[[7230]]],"id":"23"},{"type":"MultiPolygon","arcs":[[[345,346,4290,4291,7548,7549,-1766,-1772,9059,1211,1212,1213,1214,1215,1216,-709,-708,-3,-2,-4406,-4405,-4404,-4403,8370,8321,8374,8372,6920,-3300,-3977,-3976,5255,-8329,-4498,-8539]]],"id":"49"},{"type":"MultiPolygon","arcs":[[[-2555,-1201,-1200,-5995,-5994,-614,-3950,-3949,-5766,-4068,-3292,-7704,6880,-4033,6881,-9577,-9467,-7052,-7051,-7160,5806,-722,-721,2989,-9497,-5321,-5320,7328,7824,-6162,-6161,-9618,4901,4902,-8958,-7258,-7257,-1627,-495,-494,-4149,-4148,-3277,7665,-7680,-8920,-8921,-4370,-7079,-7081,8113,-3273,-5669,8114,4435,4436,-9092,9307,9308,9640,9478,-6922,-9037,4643,4644,3650,3651,-7423,-6927,6833,6834,-8997,-501,9017,528,529,-3329,-2556]]],"id":"40"},{"type":"MultiPolygon","arcs":[[[-3867,-6716,9649,2643,-1610,-1609,-1608,-6275,-6056,-6274,4646,4647,4648,4649,4650,7456,-4620,-4624,-6482,-9505,5923,4883,4884,-4964,5500,6074,6075,-8119,-8120,5544,-2081,-3969,-3968,-7038,-7037,-9553,-4314,-7836,-7835,8860,8853,8854,-9143,-7692,1071,1072,-4139,-4138,-4144,-6183,9150,5388,7354,-3347,7355,8573,-7280,4468,4469,4470,5314,-4351,-4350,-4349,-4348,-4347,-3669,-3668,-8716,-5944,-8715,-5942,-5941,6013,7497,-3410,-3409,6080,6822,-5828,6820,9457,-311,-310,7458,7459,5742,5743,-8037,-3416,-3415,-4736,5873,7846,-4223,420,421,6395,-3868]]],"id":"47"},{"type":"MultiPolygon","arcs":[[[-9524,-6148,-9403,8612,-3552,8613,-7657,-3188,-8307,2920,2921,8972,-7268,8973,-8930,-6698,4283,4284,4052,4053,7121,-3961,-3960,2548,2549,3201,3202,7522,7524,6029,8362,9533,6851,6849,4274,4275,4276,-5491,8134,9428,-5342,-5341,-5340,485,-5339,5957]]],"id":"41"},{"type":"MultiPolygon","arcs":[[[-5302,-5301,-322,-321,-320,-167,-166,-165,-3681,-6105,-8227,-8226,7895,-8228,-6969,-9269,7384,7385,-4509,2068,2069,3894,3895,-7532,-8221,-7534,5578,4835,4836,4837,2389,2390,-6948,-5730,-5482,-5481,-5226,-5947,-8804,6410,-3892,-3891,-3887,-3886,-3885,7442,7443,-8218,7403,7401,3220,4841,4838,-6793,8115,6286,8066,-7574,-998,8065,6284,8116,4840,-2367,-2366,-2365,-9247,5303,-5303]]],"id":"54"},{"type":"MultiPolygon","arcs":[[[-7396,7188,7189,-3602,-3601,-3606,7464,7465,-3791,7466,7467,7387,-5515,-7805,-7804,-5392,-5391,8069,-8132,-9678,-5879,-5670,3271,3272,-8114,7080,7078,4369,8920,8919,7679,-7666,3276,4147,4148,-493,4144,7134,-1665,7135,7586,-9219,-9214,8096,4354,4355,4356,8034,8352,8349,8637,8638,-8626,-8625,-8630,4353,-3670,4346,4347,4348,4349,4350,-5315,-4471,-7241,-7393]]],"id":"05"},{"type":"MultiPolygon","arcs":[[[9031,9568,9030,6134,8532,4079,9661,8528,1699,-1227,1700,-5712,-5203,-717,-716,-8485,-7654,-7658,-8614,3551,-8613,9402,6147,9523,-5958,5338,-486,5339,5340,5341,-9429,-8135,5490,-4277,-4276,-4275,-6850,7785,6985,8426,8432,8422,8430,8464,9693,624,8466,9295,617,2424]],[[2425]],[[6131]],[[6135]],[[8468]],[[8469]],[[8470]],[[8471]],[[8531]],[[8533]],[[9569]]],"id":"53"},{"type":"MultiPolygon","arcs":[[[3515,-6126,-6954,3747,-6953,8247,8322,8323,8324,6591,7973,7974,-8204,-8283,4624,4625,4626,9549,4628,9671,7987,7022,7912,6594,9639,6722,8963,7057,9550,7059,9683,6719,3877,6777,2393,9372,5395,8138,-6199,-6198,-5102,6753,5832,5751,5933,-4986,-4985,-5607,-5606,-4805,-4804,3831,3832,6262,6263,4617,-1047,-1046,-1052,3871,3872,-7672,7597,7667,7668,7669,8120,-2082,-5545,8119,8118,-6076,-6075,-5501,4963,-4885,-4884,-5924,9504,6481,4623,4619,-7457,-4651,-4650,-4649,8665,6957,6758,6759,6760,2974,2975,795,796,-7894,-1263,-7893,-6127]],[[7055,9548]],[[9547]]],"id":"37"},{"type":"MultiPolygon","arcs":[[[4508,-7386,-7385,9268,6968,8227,-7896,8225,8226,6104,3680,-164,3681,3682,-5387,6127,-9362,9367,9579,-9300,9580,9506,8848,1491,9588,5850,9620,1527,9621,9363,5008,6964,2225,8151,4480,8982,7970,6897,6143,5896,8201,8152,8099,9668,-4626,-4625,8282,8203,-7975,-7974,-6592,-8325,-8324,-8323,-8248,6952,-3748,6953,6125,-3516,6126,7892,1262,7893,-797,-796,-2976,-2975,-6761,-6760,-6759,-6958,-8666,-4648,-4647,6273,6055,6274,1607,1608,1609,-2644,-9650,-6715,-5453,-5452,6655,-5733,-5732,-5731,6947,-2391,-2390,-4838,-4837,-4836,-5579,7533,8220,7531,-3896,-3895,-2070,-2069]],[[9043,9044,9045,7907,9046]],[[9047,9048]]],"id":"51"},{"type":"MultiPolygon","arcs":[[[5901,-4291,-347,-346,8538,4497,4498,4492,-4006,-4005,6230,-5697,-5426,1477,1470,1471,9083,9084,6731,-5025,-5024,-5023,5673,-1408,-41,-40,-4864,-4465,-4464,-2497,7301,5679,5680,5681,-9530,-3839,-7030,-8188,5347,-461,-460,-7149,-8440]]],"id":"56"},{"type":"MultiPolygon","arcs":[[[-302,-7829,-9318,2635,2636,8524,8525,8526,8527,8262,-7858,7129,7124,-326,-325,7130,7131,8174,8172,8171,8168,-8938,-8896,4854,4851,4702,4142,4143,4137,4138,-1073,-1072,7691,9142,-8855,-8854,-8861,-7837,4360,-4319,4361,4548,-3931,4549,-5701,-57,9108,7504,-3511,7505,3952,3953,8394,8395,8030,-3505,8031,8518,8519,8520,-9598,-7178,-7182,-7845,9008,9004,9005,-2808,-2807,-303]],[[8523]]],"id":"01"},{"type":"MultiPolygon","arcs":[[[-6263,-3833,-3832,4803,4804,5605,5606,4984,4985,-5934,-5752,-5833,-6754,5101,6197,6198,6199,5167,4801,6771,4879,4809,4810,4811,5417,5418,5919,5920,-8392,6020,6021,9423,-8595,5841,5842,5843,5950,4459,4460,-6425,7672,7673,7674,7675,7671,-3873,-3872,1051,1045,1046,-4618,-6264]]],"id":"45"},{"type":"MultiPolygon","arcs":[[[1601,4824,4825,-4712,3679,-4711,6186,4831,5129,5997,-3967,5995,-603,-602,-159,-158,5865,-7028,-7107,4066,-3293,4067,4068,4069,7372,7373,-186,-185,8443,-6825,-6824,-1000,-999,-499,-1694,-3084,-3717,8105,4932,4933,4934,4780,4781,4782,7507,7508]]],"id":"35"},{"type":"MultiPolygon","arcs":[[[-975,-974,8944,-7453,-7452,9326,-8124,-8123,-3592,-4823,-4822,-5181,-5180,-8681,-9565,-9141,1615,1611,1612,-5885,-976]]],"id":"33"},{"type":"MultiPolygon","arcs":[[[9139,-1616,9140,9564,8680,5179,5180,4821,4822,-3591,-3590,-5234,8582,8581,6095,9453,-7604,-7603,-8632,8200,8198,4999,8589]]],"id":"50"},{"type":"MultiPolygon","arcs":[[[2596,2597,4536,-9145,8294,-3957,-1253,8295,-9001,8015,-2540,-963,8008,8009,-4053,-4285,-4284,6697,6698,-8929,-8077,-3301,-6921,-8373,-8375,-8322,-8371,4402,4403,4404,4405,-1,-8,-1980,-4949,-4948]]],"id":"32"},{"type":"MultiPolygon","arcs":[[[3479]],[[3480]],[[3481]],[[3483,7556]],[[3548]],[[8369]],[[8809]],[[8810]]],"id":"15"},{"type":"MultiPolygon","arcs":[[[7451,7452,7453,3587,5686,4009,5683,4011,9626,9088,9625,4013,5441,-4056,5442,5443,5444,5687,-6392,-7560,8125,6085,6086,6087,5236,5237,5238,5232,5233,3589,3590,3591,8122,8123,-9327]],[[5963]],[[9086]]],"id":"25"},{"type":"MultiPolygon","arcs":[[[3900,7850]],[[5422]],[[7849]]],"id":"78"},{"type":"MultiPolygon","arcs":[[[4055,4056]],[[4057]],[[4058]],[[6393,6335,9210,-7565,6337,6338,6394,6391,-5688,-5445,-5444,9676]],[[9209]]],"id":"44"},{"type":"MultiPolygon","arcs":[[[-6334,-8943,-8942,8271,-4891,-4890,4475,-4889,-5632,6265,-7337,-6742,-4818,-4817,-8048,7310,7311,7312,-4419,-4418,8698,8699,-8989,7378,7379,8801,7287,8073,8455,4411,9532,-5136,9530,-5140,-5139]]],"id":"34"},{"type":"MultiPolygon","arcs":[[[5135,5136]],[[-978,7264,-5377,5142,5143,-5099,5137,5138,5139,5140,7262,9396,-9334,-4394,-5200,-979]]],"id":"10"},{"type":"MultiPolygon","arcs":[[[5204,7197,8050,-7318,-8046,8048,9002,-5237,-6088,-6087,-6086,-8126,7559,-6395,-6339,-6338,7564,7565]]],"id":"09"},{"type":"MultiPolygon","arcs":[[[-5386,9360,9361,-6128]]],"id":"11"}]},"nation":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[1601,4824,7077,274,4707,5648,5709,9145,7092,9615,7087,2949,9095,1280,9657,9126,8342,9124,8930,9365,8340,9366,7195,8095,7808,8433,7810,7582,9658,4371,3202,7522,7524,6029,8362,9533,6851,7785,6985,8426,8432,8422,8430,8464,9693,624,8466,9295,617,2424,9031,9568,9030,6134,8532,4079,9661,8528,1699,1223,5259,2237,8641,9622,732,6201,9619,4482,7449,9270,9627,6762,9335,481,2136,3188,1616,2674,6006,5158,2198,9535,7357,2839,4048,3511,4049,2841,7793,4516,9267,7415,3609,8910,5307,9591,5309,4397,8805,5031,2211,7477,7480,7791,9510,1642,197,8694,9669,6993,8683,6995,854,9689,5492,8660,7952,4091,9373,8278,5774,9336,9666,9543,9159,9560,5741,1338,4760,1332,569,8182,9586,6179,2578,7341,8246,9280,9224,3607,8564,8864,3173,3595,8284,8363,471,7185,9109,7235,8252,3640,9417,9663,8750,8923,9479,9652,4793,8794,9314,7323,380,4044,740,9286,3634,6254,4427,7872,8630,8198,4999,8589,9139,1611,5885,9623,3614,315,729,3263,7228,3265,3579,7231,9512,4915,5892,972,8944,7453,3587,5686,4009,5683,4011,9626,9088,9625,4013,5441,4056,5442,9676,6393,6335,9210,7565,5204,7197,8050,7318,9055,8907,3659,6251,3657,8908,8711,4422,8698,8989,7379,8801,7287,8073,8455,4411,9532,5136,9530,5140,7262,9396,9334,9045,7907,9046,9330,4396,5200,5538,9050,5378,7183,9558,9633,5551,9489,8975,4748,9301,9580,9506,8848,1491,9588,5850,9620,1527,9621,9363,5008,6964,2225,8151,4480,8982,7970,6897,6143,5896,8201,8152,8099,9668,4626,9549,4628,9671,7987,7022,7912,6594,9639,6722,8963,7057,9550,7059,9683,6719,3877,6777,2393,9372,5395,8138,6199,5167,4801,6771,4879,4809,9596,7098,4386,9524,4723,9183,7483,9207,8428,2432,7946,9602,8918,3136,1809,4718,9574,9473,8376,9470,8378,9474,8384,9616,7145,7112,7147,7114,8767,9042,9694,7763,2973,7761,2971,7094,7698,7272,1743,9551,7759,9222,7749,7755,2406,2810,304,7829,9318,2636,8524,9391,7935,9650,9690,8158,7164,9688,8042,8243,8359,8240,8360,4268,4742,3796,3994,5330,4075,9526,4077,8978,9528,6788,9527,6790,6042,4544,3701,8583,8964,6399,7424,9216,7426,6401,8965,8585,3699,4545,5990,3703,4541,3705,5991,3707,8399,8586,8966,6403,7427,9217,7904,9131,3698,8871,9685,4297,9161,8734,5755,6905,7852,9179,7508],[-1579]],[[4743]],[[7162]],[[7163]],[[8238]],[[8357]],[[8358]],[[9687]],[[6249]],[[6250]],[[6252]],[[6255]],[[8656,1993,1422,8411,2033,9204,9065,8984,9206,2018,2026,2008,2021,745,2022,6287,4858,6289,4860,510,9349,1753,3519,2356,2745,2031,8410,1420,1994,9675,1991,8654,1409,1629,48,8408,3112,8409,50,1630,1411,8655,1413]],[[51]],[[52]],[[1415,8653]],[[1418,3131]],[[1627,3118]],[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2009]],[[2010]],[[2011]],[[2012]],[[2013]],[[2014]],[[2015]],[[2016]],[[2020]],[[2027]],[[2028]],[[3114]],[[3115]],[[3116]],[[3117]],[[3119,3129]],[[3130]],[[4861]],[[4862]],[[6288]],[[8406]],[[8407]],[[9185]],[[9186]],[[9187]],[[9188]],[[9189]],[[9190]],[[9191]],[[9192]],[[9193]],[[9194]],[[9195]],[[9196]],[[9197]],[[9198]],[[9199]],[[9200]],[[9201]],[[9202]],[[9203]],[[9205]],[[9348]],[[9350]],[[7342]],[[7343]],[[7344]],[[7479]],[[9509]],[[9584]],[[9585]],[[9587]],[[9592]],[[7932]],[[7933]],[[9389]],[[9390]],[[9416]],[[9662]],[[6828,8841,8572,9256,7650,6872,4273,8580,8578,2073,6978,9273,8832,8834,9648,9275,8249,9170,9541,5911,1730,9674,6734,134,8729,9274,4109,6765,8839,9686,7624,8562,2691,9279,3521,9138,2934,5504,9692,113,4098]],[[7680]],[[9227]],[[5197,9332]],[[9331,9047]],[[4515]],[[8681]],[[8682]],[[9260]],[[9261]],[[9262]],[[9263]],[[9264]],[[9265]],[[9266]],[[2943]],[[2944]],[[2945]],[[7084]],[[7088]],[[9613]],[[9614]],[[7146]],[[7746]],[[8379]],[[8380]],[[8381]],[[8385]],[[8386]],[[8387]],[[8388]],[[3258]],[[3259]],[[3260]],[[3261]],[[3576]],[[7229]],[[7230]],[[2425]],[[6131]],[[6135]],[[8468]],[[8469]],[[8470]],[[8471]],[[8531]],[[8533]],[[9569]],[[7055,9548]],[[9547]],[[8523]],[[3479]],[[3480]],[[3481]],[[3483,7556]],[[3548]],[[8369]],[[8809]],[[8810]],[[5963]],[[9086]],[[3900,7850]],[[5422]],[[7849]],[[4057]],[[4058]],[[9209]]]}]}},"arcs":[[[22597,51190],[66,-596]],[[22663,50594],[842,279],[1128,358]],[[24633,51231],[618,190]],[[25251,51421],[-2,188],[-228,650],[-57,310],[-1,288],[-85,204],[-16,148],[47,131],[-43,77],[7,215],[-85,189],[-100,-16],[-158,203],[-122,-33],[-64,86],[-195,6],[-256,201],[-115,27],[-62,205],[-147,-72],[-91,163],[21,356],[-49,174],[31,126],[-75,292],[-111,1043]],[[23295,56582],[-486,4588]],[[22809,61170],[-60,73],[-309,-148],[-149,254],[-181,16],[-54,-136],[-181,3],[-11,-107],[-317,-140],[-84,-182],[-86,-46]],[[21377,60757],[-49,-197],[-80,-92],[-157,-384],[-87,-60],[41,-268],[-82,-748],[-120,-252],[-30,-281],[-64,-143],[54,-514]],[[20803,57818],[82,-258],[-62,-128],[145,-95],[26,-167],[14,-552],[-18,-338],[-53,-333],[52,-143],[43,-301],[-45,-175],[-2,-237],[75,-538],[62,-57],[-81,-300],[39,-317],[-19,-239],[41,-54],[218,-26],[86,-54],[106,115],[236,35],[86,297],[-22,59],[112,209],[150,14],[215,-544],[42,-39],[107,-942],[159,-1520]],[[64101,78355],[36,-4]],[[64137,78351],[377,-40]],[[64514,78311],[13,363],[58,50],[55,318],[64,152],[20,202]],[[64724,79396],[31,247],[38,1082],[105,192],[70,286]],[[64968,81203],[-274,-202],[-348,103]],[[64346,81104],[-15,-299],[-118,-275],[-47,-214],[-21,-623]],[[64145,79693],[-44,-1338]],[[24408,26842],[344,113]],[[24752,26955],[1035,345]],[[25787,27300],[-143,1322],[-78,-26],[-35,322],[-265,-89]],[[25266,28829],[-186,-62],[18,-164],[-466,-159],[-13,-168],[-360,-124]],[[24259,28152],[149,-1310]],[[52194,12853],[955,11]],[[53149,12864],[-2,578],[27,220]],[[53174,13662],[-1,441],[193,1],[1,331],[766,-1],[0,-332],[190,-2],[-1,-331]],[[54322,13769],[190,6]],[[54512,13775],[7,988],[38,0],[1,659]],[[54558,15422],[-769,6]],[[53789,15428],[-1173,-9]],[[52616,15419],[3,-343],[-58,-316]],[[52561,14760],[-70,-366],[-61,-143],[-52,-434],[-65,-170],[-18,-335],[-43,-78],[-58,-381]],[[51328,16372],[382,15]],[[51710,16387],[928,23]],[[52638,16410],[2,333]],[[52640,16743],[19,218],[-8,471],[92,138],[-30,347],[-32,86],[30,351],[-20,359]],[[52691,18713],[-741,0]],[[51950,18713],[-609,-18]],[[51341,18695],[14,-1327],[-37,-1],[10,-995]],[[41308,25674],[191,-4],[181,-71],[394,58]],[[42074,25657],[-71,1328],[190,24],[-19,443]],[[42174,27452],[-945,-135]],[[41229,27317],[8,-151]],[[41237,27166],[71,-1492]],[[87858,26630],[142,9],[189,82],[253,-144],[34,-65]],[[88476,26512],[27,145],[-68,66],[69,103],[138,-49],[-2,-68]],[[88640,26709],[48,227],[-54,483],[49,203],[2,339]],[[88685,27961],[31,111],[-149,144],[-61,-47],[-92,112]],[[88414,28281],[-310,-150],[-192,-293]],[[87912,27838],[74,-459],[-119,-442],[-9,-307]],[[23859,93116],[128,-327]],[[23987,92789],[120,51],[66,249],[99,-76],[251,138]],[[24523,93151],[70,146],[-142,286],[55,137],[-111,-36],[-82,97],[-18,303],[47,187],[-73,132]],[[24269,94403],[-4,-279],[-47,-275],[15,-216],[-61,230],[44,113],[-90,164],[-85,-215],[-99,-7],[-29,-132],[43,-187],[79,-60],[-57,-170],[82,-8],[-189,-138],[-12,-107]],[[23785,93842],[16,-68],[84,176],[-100,-108]],[[23737,93691],[33,-161],[140,12],[12,158],[-79,94],[-106,-103]],[[73091,65845],[314,-52],[291,-78]],[[73696,65715],[24,-4],[22,353]],[[73742,66064],[1,377],[-155,88],[-261,237],[-87,13]],[[73240,66779],[-149,-934]],[[76910,70652],[458,-618]],[[77368,70034],[208,576]],[[77576,70610],[-72,-97],[-208,477],[44,59],[-100,224]],[[77240,71273],[-315,-428]],[[76925,70845],[-15,-193]],[[69667,47067],[-19,-337]],[[69648,46730],[616,-102]],[[70264,46628],[62,-11],[60,871]],[[70386,47488],[-52,128],[13,172]],[[70347,47788],[-633,117]],[[69714,47905],[-47,-838]],[[71292,45897],[202,-46],[197,-282]],[[71691,45569],[61,1085]],[[71752,46654],[-157,34],[9,112],[-117,135],[8,113],[-122,58]],[[71373,47106],[-87,-47],[-99,113]],[[71187,47172],[-68,-1001]],[[71119,46171],[-16,-231],[189,-43]],[[74342,28963],[15,164],[187,-49],[46,497]],[[74590,29575],[98,986]],[[74688,30561],[-188,65]],[[74500,30626],[-554,161]],[[73946,30787],[-111,-1303]],[[73835,29484],[168,-86],[-29,-330],[368,-105]],[[66290,66268],[567,-76]],[[66857,66192],[191,-24]],[[67048,66168],[42,1011]],[[67090,67179],[-382,46],[9,223],[-187,25],[3,56]],[[66533,67529],[-285,39]],[[66248,67568],[-8,-281],[94,-13],[-44,-1006]],[[75053,37858],[461,-123]],[[75514,37735],[171,-37]],[[75685,37698],[84,1086]],[[75769,38784],[-213,76]],[[75556,38860],[-414,107]],[[75142,38967],[-89,-1109]],[[52106,29355],[380,6]],[[52486,29361],[688,4]],[[53174,29365],[-3,1340]],[[53171,30705],[-232,-3]],[[52939,30702],[-518,-5]],[[52421,30697],[-325,-5]],[[52096,30692],[10,-1337]],[[51664,30682],[432,10]],[[52421,30697],[-7,1599]],[[52414,32296],[-378,-5]],[[52036,32291],[2,-334],[-381,-6]],[[51657,31951],[7,-1269]],[[54610,79125],[343,-492]],[[54953,78633],[2,463],[103,218],[-31,86],[130,-8]],[[55157,79392],[-54,1361]],[[55103,80753],[-454,-13],[-438,-462]],[[54211,80278],[-62,-896]],[[54149,79382],[147,-59],[129,-124],[116,69],[69,-143]],[[96054,98315],[49,-227]],[[96103,98088],[147,22],[53,81]],[[96303,98191],[-15,150]],[[96288,98341],[-98,143],[-136,-169]],[[49459,28925],[752,26]],[[50211,28951],[5,333]],[[50216,29284],[-12,1352]],[[50204,30636],[-612,-30]],[[49592,30606],[-141,-7]],[[49451,30599],[19,-1341],[-11,-333]],[[48929,93009],[571,35]],[[49500,93044],[343,19]],[[49843,93063],[142,7],[-2,195]],[[49983,93265],[-19,1626]],[[49964,94891],[-663,-34]],[[49301,94857],[-201,-10]],[[49100,94847],[24,-1032],[-96,-2],[4,-331],[-51,-3],[5,-353],[-57,-117]],[[96750,97450],[58,-68],[50,-289]],[[96858,97093],[51,-34]],[[96909,97059],[42,27]],[[96951,97086],[16,304],[34,71]],[[97001,97461],[-47,240],[-68,119]],[[96886,97820],[-89,-214]],[[96797,97606],[-47,-156]],[[96659,96520],[67,-74]],[[96726,96446],[44,129]],[[96770,96575],[-49,54]],[[96721,96629],[-79,-24]],[[96642,96605],[17,-85]],[[96028,96831],[41,2]],[[96069,96833],[101,-3],[38,106]],[[96208,96936],[25,42]],[[96233,96978],[-26,150]],[[96207,97128],[-67,117],[-96,21]],[[96044,97266],[-16,-435]],[[43852,41933],[36,-991]],[[43888,40942],[1166,119]],[[45054,41061],[-39,1339]],[[45015,42400],[-1176,-118]],[[43839,42282],[13,-349]],[[95767,96762],[95,-61]],[[95862,96701],[19,207]],[[95881,96908],[-119,50]],[[95762,96958],[5,-196]],[[35445,52403],[327,80],[772,140]],[[36544,52623],[-10,168],[510,93]],[[37044,52884],[25,263],[-61,269],[19,149],[-37,293],[-65,227],[80,193]],[[37005,54278],[-499,-89]],[[36506,54189],[-813,-147]],[[35693,54042],[-160,-599],[0,-213],[-132,-156],[44,-671]],[[83328,40491],[402,-131]],[[83730,40360],[1038,-341]],[[84768,40019],[-67,373],[-56,63],[-39,455],[27,142],[-39,584]],[[84594,41636],[-69,34]],[[84525,41670],[-65,-28],[-34,-340],[-53,-10],[-41,-188],[-55,-30]],[[84277,41074],[-15,-133],[-57,75],[-45,-175],[60,-23],[-11,-161],[-157,98],[-153,-47]],[[83899,40708],[-111,-157],[-185,-42],[-107,335],[-118,-31]],[[83378,40813],[-32,-143],[43,-80],[-61,-99]],[[46915,43912],[917,65]],[[47832,43977],[5,0]],[[47837,43977],[-41,1675]],[[47796,45652],[-897,-64]],[[46899,45588],[-31,-1]],[[46868,45587],[47,-1675]],[[66364,40944],[370,-55],[-88,-1443]],[[66646,39446],[189,-40]],[[66835,39406],[116,1955],[303,-36]],[[67254,41325],[20,332]],[[67274,41657],[-872,127]],[[66402,41784],[-38,-840]],[[41346,61964],[1556,188]],[[42902,62152],[-65,1676]],[[42837,63828],[-637,-72]],[[42200,63756],[-926,-117]],[[41274,63639],[34,-795]],[[41308,62844],[38,-880]],[[75286,72244],[-7,-123]],[[75279,72121],[456,-68],[-16,-272]],[[75719,71781],[88,-13],[11,163],[90,-43],[110,54]],[[76018,71942],[162,509]],[[76180,72451],[90,301],[15,144]],[[76285,72896],[-769,142],[12,162]],[[75528,73200],[-220,-316]],[[75308,72884],[-22,-640]],[[65522,21390],[562,-44],[-11,-257]],[[66073,21089],[93,-70],[54,130],[131,-2],[57,117]],[[66408,21264],[109,171],[-60,109],[72,114],[-15,204],[-50,-18],[67,234],[-22,160],[-70,124],[-11,214],[68,98],[125,-12],[85,-169],[80,182],[-53,167],[-49,493],[127,224],[112,32]],[[66923,23591],[-45,200],[6,261],[-203,74]],[[66681,24126],[-1,-95],[-286,33],[-3,-105],[-276,28],[-12,-330],[-109,9],[-11,-329],[-191,13],[-25,-660],[-189,17]],[[65578,22707],[-56,-1317]],[[9735,45761],[109,31]],[[9844,45792],[34,25],[170,-263],[66,8],[40,133],[341,158]],[[10495,45853],[-53,113],[54,76],[51,334],[319,535]],[[10866,46911],[389,1186],[-79,602],[-113,-3],[-61,167]],[[11002,48863],[-91,-214],[8,429],[-76,-15],[-144,-441],[-83,-113],[-75,109],[-44,-87],[-91,80],[6,-192],[-37,-192],[-185,-569],[-4,-127],[-119,-38],[40,-94],[-39,-120],[48,-202],[-51,-206],[-153,-189],[47,-147],[-215,-579],[-9,-195]],[[74219,68373],[10,-128],[636,-122]],[[74865,68123],[20,140]],[[74885,68263],[-22,244],[-4,438],[28,144]],[[74887,69089],[60,331]],[[74947,69420],[-106,165],[-237,51]],[[74604,69636],[-99,-75],[-202,29]],[[74303,69590],[-84,-1217]],[[59432,33831],[760,-50]],[[60192,33781],[16,668],[28,-2],[15,657]],[[60251,35104],[-378,26]],[[59873,35130],[-379,26]],[[59494,35156],[-15,-663],[-33,2],[-7,-332]],[[59439,34163],[-7,-332]],[[57126,31589],[754,-32]],[[57880,31557],[19,1333]],[[57899,32890],[-758,35]],[[57141,32925],[-15,-1336]],[[53174,13662],[1148,-1],[0,108]],[[50143,38398],[314,13],[96,-111],[255,5],[92,-53]],[[50900,38252],[206,4],[-6,508]],[[51100,38764],[-6,330],[-316,-7],[0,57],[-255,-8],[-80,109],[-286,-12],[10,-499],[-21,-1]],[[50146,38733],[-8,0]],[[50138,38733],[5,-335]],[[85925,36326],[182,167]],[[86107,36493],[552,508]],[[86659,37001],[-227,323],[-201,139],[-194,234]],[[86037,37697],[-307,-984],[195,-387]],[[41896,67279],[959,113]],[[42855,67392],[-44,1674]],[[42811,69066],[-945,-106]],[[41866,68960],[30,-1681]],[[47265,71127],[258,16]],[[47523,71143],[688,41]],[[48211,71184],[-32,1700]],[[48179,72884],[-34,-2]],[[48145,72882],[-917,-56]],[[47228,72826],[37,-1699]],[[44059,76253],[751,47],[24,-548],[65,42]],[[44899,75794],[1098,103]],[[45997,75897],[-8,425],[229,25]],[[46218,76347],[-55,1886]],[[46163,78233],[-1076,-81]],[[45087,78152],[40,-1677],[-1072,-116]],[[44055,76359],[4,-106]],[[50393,69449],[786,25]],[[51179,69474],[189,18]],[[51368,69492],[-42,1690]],[[51326,71182],[-267,-20]],[[51059,71162],[-692,-49]],[[50367,71113],[26,-1664]],[[51736,28015],[378,5]],[[52114,28020],[378,8]],[[52492,28028],[-6,1333]],[[52106,29355],[-380,-11]],[[51726,29344],[10,-1329]],[[48176,25159],[156,11]],[[48332,25170],[406,26]],[[48738,25196],[-28,1338],[18,2],[-26,1350]],[[48702,27886],[-435,-18]],[[48267,27868],[-134,-105]],[[48133,27763],[28,-1266],[-20,-1]],[[48141,26496],[35,-1337]],[[45748,65785],[179,17]],[[45927,65802],[757,64]],[[46684,65866],[-8,337]],[[46676,66203],[-89,-27],[-39,1515]],[[46548,67691],[-853,-66]],[[45695,67625],[53,-1840]],[[27065,72506],[-55,440],[-94,1067]],[[26916,74013],[-1137,-307],[-506,-507]],[[25273,73199],[34,-360],[374,103],[71,-774],[568,155],[2,-19],[743,202]],[[59410,39538],[378,-27]],[[59788,39511],[378,-28]],[[60166,39483],[25,1013]],[[60191,40496],[-758,53]],[[59433,40549],[-23,-1011]],[[61427,36697],[-9,-336]],[[61418,36361],[758,-63]],[[62176,36298],[21,672]],[[62197,36970],[18,670]],[[62215,37640],[-761,63]],[[61454,37703],[-27,-1006]],[[36106,13674],[69,-6],[14,-218],[80,-107],[82,11],[122,-286],[66,-73],[195,78],[115,91],[55,-242]],[[36904,12922],[190,83],[48,82],[549,49],[44,-218],[187,49],[43,-136],[164,-16],[160,-329],[-24,-98],[69,-98],[-13,-100],[112,-47],[11,73]],[[38444,12216],[89,18],[-21,335],[144,27],[-81,1281],[-55,-11],[-41,660],[190,35],[-40,657],[125,22]],[[38754,15240],[-74,1213]],[[38680,16453],[-3,55]],[[38677,16508],[-953,-179],[4,-55],[-1122,-227],[-2,31],[-636,-137]],[[35968,15941],[-64,-116],[67,-335],[48,-109],[-77,-502],[56,-143],[-34,-319],[36,-128],[0,-261],[91,-182],[15,-172]],[[57223,51702],[6,-685]],[[57229,51017],[844,16],[58,-26]],[[58131,51007],[45,29],[-4,487]],[[58172,51523],[-5,616],[-97,-1],[-3,336]],[[58067,52474],[-95,-1]],[[57972,52473],[-315,-7],[1,-224],[-442,-16]],[[57216,52226],[7,-524]],[[71190,77415],[183,-22]],[[71373,77393],[561,-96]],[[71934,77297],[121,2350]],[[72055,79647],[-448,10],[-311,90]],[[71296,79747],[-106,-2332]],[[69022,55947],[45,-1677]],[[69067,54270],[22,120],[228,-53],[109,-81]],[[69426,54256],[74,1607]],[[69500,55863],[-94,19]],[[69406,55882],[-384,65]],[[96624,11265],[-331,336]],[[96293,11601],[-493,524],[-38,-12],[-220,-1334],[-76,-353],[-212,-1240],[-378,193],[-8,-48],[-181,92]],[[94687,9423],[-113,-644],[-1312,652]],[[93262,9431],[-441,219]],[[92821,9650],[-34,-466],[660,-3350],[228,26],[51,-40],[67,478],[50,185],[242,141],[225,-362],[140,-81],[32,-192],[82,-76],[208,-78],[-38,-186],[51,-104],[149,-59],[139,61],[38,81],[329,223],[167,285],[151,66],[299,1688],[216,1170],[218,1226],[61,68],[-56,166],[110,182],[-56,110],[74,453]],[[82363,40800],[198,-63]],[[82561,40737],[705,-226]],[[83266,40511],[62,-20]],[[83378,40813],[-157,123],[76,96],[-102,33],[62,91],[-52,183]],[[83205,41339],[-162,42],[-158,-10]],[[82885,41371],[-226,-188],[68,-78],[-112,-49],[-87,483],[-104,258],[5,82],[-200,-63]],[[82229,41816],[134,-1016]],[[66942,71961],[966,-134]],[[67908,71827],[-12,1040]],[[67896,72867],[-4,313]],[[67892,73180],[-891,133]],[[67001,73313],[-59,-1352]],[[49286,21239],[28,-1308]],[[49314,19931],[1476,68]],[[50790,19999],[42,3]],[[50832,20002],[-18,1321]],[[50814,21323],[-1097,-57]],[[49717,21266],[-431,-27]],[[55803,23689],[587,-18],[2,168],[189,-10]],[[56581,23829],[20,1165]],[[56601,24994],[-382,10],[2,335]],[[56221,25339],[-398,10]],[[55823,25349],[-20,-1660]],[[44173,30589],[1402,149]],[[45575,30738],[-47,1501]],[[45528,32239],[-635,-57],[-730,-90]],[[44163,32092],[20,-498],[-44,-5],[34,-1000]],[[28173,37420],[54,-32],[80,145],[62,-29],[89,-234],[-58,-255],[18,-130],[-84,-42],[-12,-139],[164,-227],[215,-32],[38,-157],[170,-7]],[[28909,36281],[51,20],[236,-188],[105,-142]],[[29301,35971],[-89,965],[887,254],[738,183]],[[30837,37373],[77,21]],[[30914,37394],[-60,701]],[[30854,38095],[-171,-24],[-256,-165],[-140,27],[-49,98],[-187,-15],[-68,53],[-224,23],[-152,-69],[-100,110],[-134,-95],[-37,181]],[[29336,38219],[-51,-23],[-99,314],[-86,37],[-152,-93],[-65,146],[-132,-151],[-129,-214],[-65,-41],[-25,-250],[-141,145],[-42,161],[-101,-68]],[[28248,38182],[-63,-241],[31,-119],[-65,-309],[22,-93]],[[84146,27299],[387,-180]],[[84533,27119],[-9,276],[86,423],[-14,199],[52,282],[138,302]],[[84786,28601],[160,231],[-173,74]],[[84773,28906],[-312,132]],[[84461,29038],[-56,-459],[-161,-338]],[[84244,28241],[-58,-391],[22,-23],[-62,-528]],[[52994,51565],[282,5],[3,-336]],[[53279,51234],[682,9]],[[53961,51243],[0,505]],[[53961,51748],[-3,1180]],[[53958,52928],[0,504]],[[53958,53432],[-974,-17]],[[52984,53415],[10,-1850]],[[45921,48859],[749,69]],[[46670,48928],[-39,1681]],[[46631,50609],[-752,-69]],[[45879,50540],[42,-1681]],[[69694,29395],[-78,-1330]],[[69616,28065],[747,-140]],[[70363,27925],[84,1326]],[[70447,29251],[42,664]],[[70489,29915],[-360,73]],[[70129,29988],[-394,71],[-41,-664]],[[50123,41414],[748,27]],[[50871,41441],[2,0]],[[50873,41441],[-14,1341]],[[50859,42782],[-747,-27]],[[50112,42755],[-8,0]],[[50104,42755],[19,-1341]],[[81642,26744],[147,-68],[217,-42],[199,-91],[175,-18]],[[82380,26525],[94,878]],[[82474,27403],[-733,258]],[[81741,27661],[-99,-917]],[[50498,12717],[575,23]],[[51073,12740],[-7,659],[31,1],[-15,1322]],[[51082,14722],[-153,-5]],[[50929,14717],[-769,-32]],[[50160,14685],[-37,-2],[10,-660]],[[50133,14023],[4,-260]],[[50137,13763],[6,-402],[152,7],[11,-658],[192,7]],[[49250,58873],[750,34]],[[50000,58907],[-16,1696]],[[49984,60603],[-188,-8],[-9,669]],[[49787,61264],[-550,-25]],[[49237,61239],[-16,-1],[16,-1005]],[[49237,60233],[13,-1360]],[[46243,72725],[953,76],[-1,23]],[[47195,72824],[-40,1664]],[[47155,74488],[-153,-14]],[[47002,74474],[-812,-60]],[[46190,74414],[53,-1689]],[[43871,62257],[955,97]],[[44826,62354],[-59,1670]],[[44767,64024],[-682,-63]],[[44085,63961],[-282,-30]],[[43803,63931],[68,-1674]],[[43985,58898],[946,94]],[[44931,58992],[-52,1656]],[[44879,60648],[-950,-89]],[[43929,60559],[56,-1661]],[[45087,78152],[-513,-30]],[[44574,78122],[-587,-43]],[[43987,78079],[68,-1720]],[[63943,27259],[585,-61]],[[64528,27198],[530,-65]],[[65058,27133],[44,992]],[[65102,28125],[-444,59]],[[64658,28184],[-676,84]],[[63982,28268],[-39,-1009]],[[73468,55285],[12,-2]],[[73480,55283],[901,-147]],[[74381,55136],[34,218],[-54,129],[-78,-5],[-22,173],[48,294],[36,392],[-73,113],[17,165]],[[74289,56615],[-42,172],[-63,57]],[[74184,56844],[-63,-143],[-179,-92],[-83,-112],[-183,-352]],[[73676,56145],[66,-108],[-69,-142],[-92,-328]],[[73581,55567],[-113,-282]],[[60682,20261],[956,-74]],[[61638,20187],[19,661],[380,-38]],[[62037,20810],[39,1309]],[[62076,22119],[-1324,121]],[[60752,22240],[-38,-1316],[-15,-1],[-17,-662]],[[71108,27787],[758,-162]],[[71866,27625],[90,1332]],[[71956,28957],[-377,77]],[[71579,29034],[-377,77]],[[71202,29111],[-94,-1324]],[[66416,78444],[381,-47]],[[66797,78397],[475,-64]],[[67272,78333],[29,669]],[[67301,79002],[10,223]],[[67311,79225],[-669,85],[-9,116],[-178,20]],[[66455,79446],[-39,-1002]],[[65608,66011],[476,-54]],[[66084,65957],[16,335],[190,-24]],[[66248,67568],[2,64],[-571,70]],[[65679,67702],[-22,-559]],[[65657,67143],[-49,-1132]],[[46036,35790],[936,86]],[[46972,35876],[-31,1332]],[[46941,37208],[-726,-60]],[[46215,37148],[-213,-21]],[[46002,37127],[34,-1337]],[[44349,72558],[0,-13]],[[44349,72545],[947,94]],[[45296,72639],[-57,1688]],[[45239,74327],[-289,-30]],[[44950,74297],[-671,-64]],[[44279,74233],[70,-1675]],[[36048,38546],[877,185]],[[36925,38731],[214,46]],[[37139,38777],[-10,230],[84,280],[114,273],[126,654],[44,300],[-7,197],[65,-9],[16,137]],[[37571,40839],[-73,52],[-34,261],[-98,180],[-102,-106],[-205,124],[-36,-58],[-112,51],[-38,-133],[-94,87],[-69,-121],[-155,-4],[-55,-230],[-77,147],[-124,-71],[-53,-270]],[[36246,40748],[8,-202],[-54,-313],[0,-159],[82,-295],[17,-237],[59,-130],[-63,-367],[-75,42],[-69,-148],[-108,-89],[-28,-184],[33,-120]],[[59365,30536],[166,-11]],[[59531,30525],[586,-41]],[[60117,30484],[24,1104]],[[60141,31588],[-754,51]],[[59387,31639],[-22,-1103]],[[74342,28963],[26,-8],[-126,-1319]],[[74242,27636],[798,-251]],[[75040,27385],[78,549],[105,387],[93,800],[49,207]],[[75365,29328],[-775,247]],[[71763,40960],[22,-4],[-38,-723]],[[71747,40233],[218,-47]],[[71965,40186],[437,-104]],[[72402,40082],[54,841]],[[72456,40923],[12,163]],[[72468,41086],[-685,151]],[[71783,41237],[-20,-277]],[[45068,9987],[27,-723]],[[45095,9264],[765,78]],[[45860,9342],[-35,1054],[67,7],[-22,657],[576,58]],[[46446,11118],[-11,328]],[[46435,11446],[-1151,-119],[35,-983],[-263,-29],[12,-328]],[[16427,13651],[140,60],[58,178],[151,73],[302,31],[80,-106],[282,-72]],[[17440,13815],[-315,2048],[186,86],[-51,325],[187,82],[-50,326],[-52,30]],[[17345,16712],[-242,-100],[-816,-380]],[[16287,16232],[-5,-62]],[[16282,16170],[72,-47],[42,-141],[-26,-221],[-60,-61],[-8,-190],[80,-251],[43,-286],[77,-34],[14,-183],[118,-70],[100,17],[-41,-227],[15,-133],[-85,-280],[-79,-94],[-117,-318]],[[56303,56633],[960,43]],[[57263,56676],[-3,962]],[[57260,57638],[-948,26]],[[56312,57664],[-5,-650]],[[56307,57014],[-4,-381]],[[41026,68855],[840,105]],[[41866,68960],[-66,1649]],[[41800,70609],[-860,-108]],[[40940,70501],[86,-1646]],[[45975,64131],[745,62]],[[46720,64193],[-13,717]],[[46707,64910],[-23,956]],[[45927,65802],[48,-1671]],[[73995,66134],[126,-7],[192,-89],[-4,-67]],[[74309,65971],[182,-33],[98,218]],[[74589,66156],[-119,257],[2,80],[-169,161],[-87,236]],[[74216,66890],[-175,38],[-46,-794]],[[12006,86496],[72,17],[107,374],[396,77]],[[12581,86964],[-57,142],[-28,463],[-18,-4],[-29,463],[47,9],[-20,347],[136,24]],[[12612,88408],[95,134],[-197,128],[-139,162],[-291,104],[-213,-149],[-91,-2],[-161,88],[-66,-50],[-123,157],[-119,-79],[-10,171],[-89,276],[-148,71],[-27,-59],[-195,22]],[[10838,89382],[-16,-88],[94,-38],[-119,-223],[-94,76],[0,-240],[-85,-117],[-2,-116],[70,-86],[-49,-94],[-92,29],[21,-156],[124,-16],[-79,-221],[163,10],[-22,-218],[50,-173],[364,-634],[-2,-135],[123,-392],[86,-131],[103,-36],[134,97],[124,269],[97,-9],[175,-244]],[[57503,38284],[619,-3],[26,72],[111,-22]],[[58259,38331],[22,1272]],[[58281,39603],[-377,15]],[[57904,39618],[-381,13]],[[57523,39631],[-20,-1347]],[[49200,63925],[944,40]],[[50144,63965],[-2,670]],[[50142,64635],[-95,-4],[-9,671]],[[50038,65302],[-183,-7],[-3,167],[-94,52],[-376,-17],[-2,111],[-188,-9],[-95,52]],[[49097,65651],[6,-391],[-295,-15],[6,-335]],[[48814,64910],[17,-1006],[369,21]],[[46783,61589],[754,55],[7,-336],[376,24]],[[47920,61332],[-4,168]],[[47916,61500],[-20,1344]],[[47896,62844],[-88,3]],[[47808,62847],[-55,17],[-611,-70],[-8,334],[-188,-14]],[[46946,63114],[-200,-15]],[[46746,63099],[14,-586]],[[46760,62513],[23,-924]],[[48702,27886],[588,27]],[[49290,27913],[-19,1002]],[[49271,28915],[-677,-35]],[[48594,28880],[8,-234],[-131,-206],[-112,-38],[-77,-184],[38,-184],[-53,-166]],[[47641,80589],[642,42]],[[48283,80631],[705,30]],[[48988,80661],[-15,1382]],[[48973,82043],[-631,-29]],[[48342,82014],[-723,-26],[10,-583]],[[47629,81405],[12,-816]],[[44748,67550],[947,75]],[[45695,67625],[-44,1684]],[[45651,69309],[-950,-81]],[[44701,69228],[47,-1678]],[[47321,87681],[1151,39]],[[48472,87720],[0,1]],[[48472,87721],[-27,1696],[-16,551]],[[48429,89968],[-1142,39],[3,-664]],[[47290,89343],[31,-1662]],[[81093,43119],[194,-214],[314,117],[42,71]],[[81643,43093],[39,51],[254,-200],[38,67],[-54,181],[-16,245],[101,22],[-31,415],[-26,28]],[[81948,43902],[-257,37],[-485,-97],[2,-155],[-98,-124]],[[81110,43563],[-27,-51],[10,-393]],[[10923,29152],[1665,808]],[[12588,29960],[182,84]],[[12770,30044],[-164,1035],[20,8],[-282,1707]],[[12344,32794],[-271,-130]],[[12073,32664],[-245,-75],[-51,-97],[-90,26],[-182,-116],[-161,30],[-103,-93],[-319,-3],[-250,-55],[-183,-108],[-90,-113],[-246,133],[-127,-211],[-210,-38],[-100,118],[-86,-77],[-160,31]],[[9470,32016],[28,-180],[92,-85],[75,-163],[161,-27],[129,-174],[82,10],[74,-133],[132,-25],[-25,-449],[86,-178],[120,-117],[17,-156],[148,-233],[43,-254],[147,-123],[37,-214],[113,-18],[60,-217],[-66,-128]],[[66425,51595],[-8,-168]],[[66417,51427],[570,-81]],[[66987,51346],[53,1186]],[[67040,52532],[-63,7]],[[66977,52539],[-510,72]],[[66467,52611],[-42,-1016]],[[69149,25440],[648,-98]],[[69797,25342],[77,1330]],[[69874,26672],[-348,53]],[[69526,26725],[-540,53]],[[68986,26778],[147,-669],[16,-669]],[[48666,35985],[748,38]],[[49414,36023],[-19,1340]],[[49395,37363],[-738,-41]],[[48657,37322],[-16,-1]],[[48641,37321],[25,-1336]],[[46965,37210],[919,64]],[[47884,37274],[757,47]],[[48657,37322],[-27,1333],[15,2]],[[48645,38657],[-33,1336]],[[48612,39993],[-359,-20]],[[48253,39973],[-1313,-92]],[[46940,39881],[-23,-1],[38,-1335],[-24,-2]],[[46931,38543],[34,-1333]],[[50982,27992],[754,23]],[[51726,29344],[-378,-12]],[[51348,29332],[-383,-15]],[[50965,29317],[17,-1325]],[[50818,24316],[756,30]],[[51574,24346],[-7,1331]],[[51567,25677],[-11,996]],[[51556,26673],[-564,-19]],[[50992,26654],[-1,-333],[-190,-8]],[[50801,26313],[13,-998],[-9,0],[13,-999]],[[62710,61712],[-9,-348]],[[62701,61364],[192,-7],[568,-81],[193,8]],[[63654,61284],[37,1145]],[[63691,62429],[-962,77]],[[62729,62506],[-19,-794]],[[34068,52049],[608,125]],[[34676,52174],[-8,117],[719,129],[2,-30]],[[35389,52390],[56,13]],[[35693,54042],[-681,-128],[-11,-32],[-940,-192]],[[34061,53690],[-105,-22]],[[33956,53668],[112,-1619]],[[82254,90253],[575,-150],[-31,-332],[193,-55],[-31,-329],[439,-125]],[[83399,89262],[159,170],[40,743]],[[83598,90175],[-51,744],[-1213,328]],[[82334,91247],[-80,-994]],[[48277,30529],[375,24]],[[48652,30553],[-22,120],[84,124],[141,15],[147,449],[136,245],[134,53],[63,358],[127,40],[128,273],[115,15],[148,141],[39,159]],[[49892,32545],[-1209,-62]],[[48683,32483],[-447,-28]],[[48236,32455],[41,-1926]],[[44042,57188],[943,93]],[[44985,57281],[-54,1702]],[[44931,58983],[0,9]],[[43985,58898],[57,-1710]],[[14236,7194],[129,-189],[65,-9],[160,-369],[7,-96],[98,246],[70,-178]],[[14765,6599],[82,290],[276,137],[36,258],[194,323],[138,47],[88,-74],[141,161],[44,-20],[93,207],[131,73],[47,144],[95,38]],[[16130,8183],[-89,306],[-68,41],[-49,202],[-126,139],[32,54],[15,320]],[[15845,9245],[-443,-212],[-137,144],[-168,-179],[-105,-1],[-249,-204]],[[14743,8793],[-138,-172],[31,-138],[-249,-281],[18,-139],[-79,-151],[13,-124],[-99,-96],[-38,-389],[34,-109]],[[14230,6202],[33,-182]],[[14263,6020],[367,185]],[[14630,6205],[-3,107],[-88,183],[18,140],[-120,208],[-97,-311],[88,-284],[-100,94],[-68,180],[11,166],[102,173],[-61,24],[-26,182],[-62,25],[-62,-187],[-48,-382],[83,-84],[33,-237]],[[74157,67145],[416,-83],[23,27]],[[74596,67089],[-22,104],[40,278],[63,161],[99,66],[88,284]],[[74864,67982],[1,141]],[[74219,68373],[-8,-125],[-140,25]],[[74071,68273],[-190,-739]],[[73881,67534],[47,-132],[91,60],[138,-317]],[[76400,64895],[296,-358]],[[76696,64537],[195,115]],[[76891,64652],[-14,225],[73,129],[-46,230]],[[76904,65236],[-91,-6],[-195,-234],[-156,20],[-62,-121]],[[70231,44141],[496,-108]],[[70727,44033],[69,1116]],[[70796,45149],[-223,53]],[[70573,45202],[-278,60]],[[70295,45262],[-64,-1121]],[[51555,49522],[752,15]],[[52307,49537],[-2,336],[188,3]],[[52493,49876],[-3,671],[-31,-1],[-10,1015]],[[52449,51561],[-536,-17]],[[51913,51544],[2,-336],[-374,-5]],[[51541,51203],[14,-1681]],[[57711,22064],[572,-14]],[[58283,22050],[11,659],[184,-6],[15,555]],[[58493,23258],[-758,26]],[[57735,23284],[-9,-550]],[[57726,22734],[-15,-670]],[[50180,34718],[751,25]],[[50931,34743],[-15,1339]],[[50916,36082],[-5,667]],[[50911,36749],[-752,-23]],[[50159,36726],[1,-669]],[[50160,36057],[20,-1339]],[[76565,37214],[-21,-281],[156,-38],[-18,-242],[160,-41],[-22,-287],[153,-40]],[[76973,36285],[313,-90]],[[77286,36195],[90,1101]],[[77376,37296],[-719,174]],[[76657,37470],[-72,17],[-20,-273]],[[72298,59678],[88,-22]],[[72386,59656],[169,-86],[58,-92]],[[72613,59478],[-15,104],[70,177],[348,468]],[[73016,60227],[-27,142],[-207,707]],[[72782,61076],[-47,-285],[-82,-138],[-217,-178]],[[72436,60475],[83,-165],[25,-193],[-95,-79],[-15,-213],[-136,-147]],[[42974,60472],[955,102]],[[43929,60574],[-58,1683]],[[43871,62257],[-969,-105]],[[42902,62152],[72,-1680]],[[51496,77760],[898,-913]],[[52394,76847],[377,1161]],[[52771,78008],[-437,435]],[[52334,78443],[-1,-18],[-455,469]],[[51878,78894],[-382,-1134]],[[50929,14717],[-18,1314],[39,2],[-5,325]],[[50945,16358],[-760,-31]],[[50185,16327],[5,-327],[-48,-2]],[[50142,15998],[14,-990]],[[50156,15008],[4,-323]],[[50204,30636],[327,15]],[[50531,30651],[-6,1158]],[[50525,31809],[-901,-717],[-41,10],[9,-496]],[[49298,76134],[580,-582],[-92,-294]],[[49786,75258],[381,-371]],[[50167,74887],[430,1341]],[[50597,76228],[-782,773]],[[49815,77001],[-172,175]],[[49643,77176],[-345,-1042]],[[57920,40631],[757,-38]],[[58677,40593],[22,1212]],[[58699,41805],[-459,37]],[[58240,41842],[-302,15]],[[57938,41857],[-18,-1226]],[[41691,18176],[369,54],[16,-337],[290,40]],[[42366,17933],[571,77]],[[42937,18010],[459,59]],[[43396,18069],[-51,1325]],[[43345,19394],[-107,-10]],[[43238,19384],[-556,-70],[-1040,-148]],[[41642,19166],[49,-990]],[[46036,74403],[154,11]],[[47002,74474],[-58,1938]],[[46944,76412],[-726,-65]],[[45997,75897],[39,-1494]],[[25251,51421],[2040,598]],[[27291,52019],[1031,278]],[[28322,52297],[-940,10439]],[[27382,62736],[-51,-192],[-121,136],[-76,-164],[-106,-76],[-92,-215],[-124,-165],[-98,56],[-99,-157],[-56,-191],[-117,65],[-155,-44],[-55,183],[-5,-270],[-148,77],[-66,-33],[154,-105],[-142,-97]],[[26025,61544],[124,-1257],[-399,-118],[65,-675],[-57,1],[-927,-262],[65,-666],[-187,-61],[45,-421],[-65,67],[-181,-75],[-180,-322],[-107,-13],[-329,-297],[-24,-152],[-267,-420],[-35,-120],[-144,-137],[-127,-34]],[[22604,9893],[604,213],[83,-137],[376,146]],[[23667,10115],[-182,1456]],[[23485,11571],[-190,-72],[7,-54],[-557,-197],[-68,-204],[-76,12],[-11,-191],[-100,-86]],[[22490,10779],[63,-490]],[[22553,10289],[51,-396]],[[48681,53804],[948,45]],[[49629,53849],[-6,335],[199,9]],[[49822,54193],[-16,1490]],[[49806,55683],[-344,-20]],[[49462,55663],[-792,-42]],[[48670,55621],[25,-1484],[-18,-1]],[[48677,54136],[4,-332]],[[53174,29365],[614,4]],[[53788,29369],[20,0]],[[53808,29369],[-2,1340]],[[53806,30709],[-635,-4]],[[96529,13024],[161,-146],[-81,-298],[-316,-979]],[[96624,11265],[137,-3],[3,-68],[138,190],[232,-19],[63,-97],[51,68],[29,221],[-85,167],[76,191],[122,152],[-38,414],[200,369],[119,74],[48,-111],[-16,-155],[116,33],[98,-43],[160,283],[159,408],[102,76],[70,368],[-199,774],[-156,275],[1,-202],[-63,-203],[-127,172],[95,148],[-38,172],[-65,-11],[-39,220],[-128,50],[30,103],[110,77],[-85,245],[-96,-108],[-65,-161],[-105,210],[-68,-167],[-5,217],[-40,69],[-4,256],[-57,-25],[-93,120]],[[97211,16014],[-201,-589],[33,-30],[-88,-292],[-26,24],[-274,-916],[173,-158],[-299,-1029]],[[31191,9492],[196,55],[244,-2592],[34,-308]],[[31665,6647],[761,205]],[[32426,6852],[-280,2905]],[[32146,9757],[-105,-28],[-29,323],[-852,-234]],[[31160,9818],[31,-326]],[[50859,21326],[1150,36]],[[52009,21362],[-9,1440]],[[52000,22802],[-212,-7],[-13,-111],[-933,-32]],[[50842,22652],[17,-1326]],[[83385,26527],[409,-182],[129,21],[128,-43],[65,-106],[163,-128],[98,-168]],[[84377,25921],[149,980],[7,218]],[[84146,27299],[-266,96],[-13,-103],[-370,149]],[[83497,27441],[-112,-914]],[[13781,92672],[269,18],[-7,361],[-377,-27]],[[13666,93024],[75,-117],[40,-235]],[[81234,89851],[-40,-491]],[[81194,89360],[955,-259]],[[82149,89101],[105,1152]],[[82254,90253],[-822,210],[-144,49]],[[81288,90512],[-54,-661]],[[73653,64979],[-26,-449],[38,-7],[-33,-512],[19,-179]],[[73651,63832],[94,-45],[391,-70],[-4,-63],[144,-29]],[[74276,63625],[78,1281]],[[74354,64906],[-141,25]],[[74213,64931],[-333,56]],[[73880,64987],[-224,44],[-3,-52]],[[58371,35560],[372,-21]],[[58743,35539],[379,-25]],[[59122,35514],[29,1337]],[[59151,36851],[-758,41]],[[58393,36892],[-22,-1332]],[[47755,52038],[15,-672]],[[47770,51366],[376,23],[-7,335],[563,35]],[[48702,51759],[-13,674],[16,1]],[[48705,52434],[-7,357]],[[48698,52791],[-940,-64]],[[47758,52727],[-3,-689]],[[72049,24913],[751,-170]],[[72800,24743],[101,1319]],[[72901,26062],[-440,97]],[[72461,26159],[-315,73]],[[72146,26232],[-97,-1319]],[[49397,38697],[741,36]],[[50146,38733],[-19,1339]],[[50127,40072],[-716,-34]],[[49411,40038],[-43,-2]],[[49368,40036],[29,-1339]],[[73749,37480],[750,-166]],[[74499,37314],[52,668]],[[74551,37982],[-61,15],[-6,338],[-62,14],[23,333]],[[74445,38682],[-596,128]],[[73849,38810],[-29,-384]],[[73820,38426],[-71,-946]],[[73086,48565],[178,-343],[62,-176]],[[73326,48046],[33,-84]],[[73359,47962],[66,218],[113,132],[72,412]],[[73610,48724],[90,274]],[[73700,48998],[-351,379],[-4,52]],[[73345,49429],[-66,-199],[-125,-69]],[[73154,49161],[-68,-596]],[[72613,59478],[241,-644],[9,-174]],[[72863,58660],[373,-98],[28,93],[194,-100]],[[73458,58555],[-195,596],[-94,203],[25,141],[-72,179],[28,121]],[[73150,59795],[-58,23],[-76,409]],[[81730,53455],[539,-159]],[[82269,53296],[348,-100]],[[82617,53196],[80,1116]],[[82697,54312],[2,32]],[[82699,54344],[-877,200]],[[81822,54544],[-92,-1089]],[[42916,65514],[166,19]],[[43082,65533],[780,84]],[[43862,65617],[-61,1854]],[[43801,67471],[-946,-79]],[[42855,67392],[61,-1878]],[[82982,47090],[66,-140],[68,-6],[11,214],[-82,61],[-63,-129]],[[35610,28775],[669,143]],[[36279,28918],[-2,30],[1048,206],[583,103]],[[37908,29257],[2,85],[-161,2653],[-7,0],[-79,1319]],[[37663,33314],[-881,-157],[-1438,-307]],[[35344,32850],[-31,-6],[91,-1326],[67,14],[91,-1323],[-23,-4],[92,-1315],[-21,-115]],[[55157,79392],[27,-148],[114,-35],[41,251],[59,63]],[[55398,79523],[131,162],[-6,337],[58,136],[94,-87],[89,283],[-39,104],[121,7],[233,112],[-11,202]],[[56068,80779],[13,23],[-609,557]],[[55472,81359],[-114,99],[43,-109],[-63,-119],[-137,-100],[-98,-377]],[[64461,25523],[964,-113],[13,336]],[[65438,25746],[-203,27],[53,1327]],[[65288,27100],[-230,33]],[[64528,27198],[-67,-1675]],[[78211,40093],[-25,-344],[97,-23],[-35,-498]],[[78248,39228],[541,-114]],[[78789,39114],[126,-29],[64,1012]],[[78979,40097],[-569,115]],[[78410,40212],[-187,43],[-12,-162]],[[74831,77774],[37,-180],[110,-134],[34,-369],[-33,-558],[34,-115]],[[75013,76418],[348,-111]],[[75361,76307],[65,-11]],[[75426,76296],[245,-54]],[[75671,76242],[97,1482]],[[75768,77724],[-912,107]],[[74856,77831],[-25,-57]],[[60263,80653],[262,-14]],[[60525,80639],[470,-30],[5,167],[128,-10],[9,334],[68,190]],[[61205,81290],[-59,225],[-137,155],[-61,217]],[[60948,81887],[-166,321],[-88,72],[-160,-104],[-100,-134],[-128,98]],[[60306,82140],[6,-319],[50,-103],[-69,-106],[5,-420],[-23,-148],[63,-162],[-75,-229]],[[56980,24984],[381,-12]],[[57361,24972],[5,333],[379,-18],[9,333]],[[57754,25620],[-122,89],[-47,172],[23,115],[-231,268]],[[57377,26264],[-2,-127],[-188,8],[-2,-167],[-190,6]],[[56995,25984],[-15,-1000]],[[66384,50586],[-19,-506]],[[66365,50080],[566,-73]],[[66931,50007],[55,1336]],[[66986,51343],[1,3]],[[66417,51427],[-33,-841]],[[55041,23372],[190,-2]],[[55231,23370],[570,-13],[2,332]],[[55823,25349],[-763,17]],[[55060,25366],[-1,-999]],[[55059,24367],[-15,-330],[-3,-665]],[[66380,26957],[243,-33],[-16,-333],[191,-27]],[[66798,26564],[348,-55]],[[67146,26509],[73,365],[-7,193],[-185,318],[-92,833]],[[66935,28218],[-488,74]],[[66447,28292],[-67,-1335]],[[70851,73751],[756,-139]],[[71607,73612],[68,1180],[-94,18],[29,496]],[[71610,75306],[-376,70]],[[71234,75376],[-256,39],[-55,-73],[-93,-317],[-24,-460]],[[70806,74565],[-18,-296]],[[70788,74269],[-32,-500],[95,-18]],[[76136,68193],[478,-264]],[[76614,67929],[208,-100]],[[76822,67829],[53,298],[153,660]],[[77028,68787],[-82,127]],[[76946,68914],[-178,248]],[[76768,69162],[-169,-128],[-108,25],[-113,-226]],[[76378,68833],[-98,-407],[-144,-233]],[[57899,32890],[758,-34]],[[58657,32856],[21,1348]],[[58678,34204],[-760,35]],[[57918,34239],[-19,-1349]],[[70769,36715],[748,-157]],[[71517,36558],[69,1003]],[[71586,37561],[-188,38]],[[71398,37599],[-375,65],[-6,-112],[-188,38]],[[70829,37590],[-37,-544]],[[70792,37046],[-23,-331]],[[44840,45404],[1087,102]],[[45927,45506],[35,3]],[[45962,45509],[-50,1675]],[[45912,47184],[-153,-13]],[[45759,47171],[-978,-98]],[[44781,47073],[59,-1669]],[[71021,26450],[369,-64]],[[71390,26386],[381,-75]],[[71771,26311],[95,1314]],[[71108,27787],[-87,-1337]],[[71217,23734],[736,-143]],[[71953,23591],[96,1322]],[[72049,24913],[-748,142]],[[71301,25055],[-84,-1321]],[[58955,54025],[-2,-279],[377,-8]],[[59330,53738],[289,-7]],[[59619,53731],[7,841],[23,0],[3,757]],[[59652,55329],[-378,9]],[[59274,55338],[0,-57],[-283,2]],[[58991,55283],[-5,-699],[-27,1],[-4,-560]],[[44143,36936],[910,92]],[[45053,37028],[32,3]],[[45085,37031],[-45,1337]],[[45040,38368],[-944,-96]],[[44096,38272],[47,-1336]],[[50887,39610],[105,-233],[279,-370]],[[51271,39007],[125,-107],[119,-23],[135,-103]],[[51650,38774],[-11,1346]],[[51639,40120],[-754,-21]],[[50885,40099],[2,-489]],[[51574,24346],[416,10]],[[51990,24356],[530,16],[-1,664]],[[52519,25036],[-7,660]],[[52512,25696],[-945,-19]],[[48429,89968],[914,42]],[[49343,90010],[192,7]],[[49535,90017],[-35,3027]],[[48929,93009],[6,-297],[-131,-65],[-410,-2]],[[48394,92645],[35,-2677]],[[43036,58797],[949,101]],[[43929,60559],[0,15]],[[42974,60472],[1,-29]],[[42975,60443],[61,-1646]],[[42440,72363],[15,2]],[[42455,72365],[947,95]],[[43402,72460],[-70,1678]],[[43332,74138],[-150,-14]],[[43182,74124],[-806,-88]],[[42376,74036],[64,-1673]],[[75851,40172],[164,-22],[-58,-784],[32,-7]],[[75989,39359],[468,-137]],[[76457,39222],[188,-99]],[[76645,39123],[65,-36],[29,448]],[[76739,39535],[51,834]],[[76790,40369],[-466,91],[-4,-73],[-456,65]],[[75864,40452],[-13,-280]],[[95812,97109],[4,214],[66,161],[-22,143]],[[95860,97627],[-8,38]],[[95852,97665],[-12,4]],[[95840,97669],[-80,-79],[-122,52]],[[95638,97642],[51,-335],[123,-198]],[[52153,76127],[399,-401]],[[52552,75726],[414,76]],[[52966,75802],[482,1473]],[[53448,77275],[-162,150],[7,65]],[[53293,77490],[-522,518]],[[52394,76847],[-241,-720]],[[60955,33716],[762,-72]],[[61717,33644],[44,1344]],[[61761,34988],[-377,31]],[[61384,35019],[-377,31]],[[61007,35050],[-19,-664],[-18,1],[-15,-671]],[[51639,40120],[752,19]],[[52391,40139],[-11,1342]],[[52380,41481],[-753,-19]],[[51627,41462],[12,-1342]],[[45980,85887],[1342,73]],[[47322,85960],[-26,1720]],[[47296,87680],[-1363,-123]],[[45933,87557],[47,-1670]],[[12389,36035],[133,-113],[52,-205],[119,-85],[96,308],[61,-9],[93,208],[88,-73],[795,358]],[[13826,36424],[214,92],[31,-41]],[[14071,36475],[-157,1035]],[[13914,37510],[-810,-371],[-81,-345],[-124,-71],[-209,200],[-465,26]],[[12225,36949],[51,-467],[-25,-102],[67,-56],[71,-289]],[[64519,33910],[57,-6]],[[64576,33904],[685,-66]],[[65261,33838],[57,1315]],[[65318,35153],[-376,56],[-9,-207],[-360,53]],[[64573,35055],[-54,-1145]],[[93001,20597],[302,-230]],[[93303,20367],[38,69],[101,-99],[74,35],[44,322],[130,-5],[32,-119],[178,197],[-32,157],[254,163]],[[94122,21087],[-21,202],[65,161],[-72,232],[34,96],[-170,183],[-37,362],[44,88],[-21,358],[-41,275],[-41,61]],[[93862,23105],[-216,-148]],[[93646,22957],[-35,-80],[-8,-309],[-152,-157],[-102,-166],[-35,24],[-93,-273],[26,-108],[-61,-380]],[[93186,21508],[-33,-100],[-152,-811]],[[87637,42152],[-13,-224],[63,-189],[51,-375],[127,-185]],[[87865,41179],[189,1166]],[[88054,42345],[117,724]],[[88171,43069],[-116,-157],[-133,-20],[-165,179]],[[87757,43071],[-141,-163],[57,-223],[101,-166],[-64,-81],[-73,-286]],[[71869,22284],[184,-39]],[[72053,22245],[561,-136]],[[72614,22109],[50,650],[-16,4],[52,659]],[[72700,23422],[-747,169]],[[71953,23591],[-84,-1307]],[[52691,18713],[10,14]],[[52701,18727],[49,181],[19,360],[106,430],[102,173],[5,421],[61,519],[-35,237]],[[53008,21048],[19,331]],[[53027,21379],[-1018,-17]],[[52009,21362],[1,-218],[-48,-19],[9,-1088],[-32,-1]],[[51939,20036],[11,-1323]],[[79405,38104],[-77,-809]],[[79328,37295],[586,-184]],[[79914,37111],[83,683]],[[79997,37794],[28,230],[-56,32],[-247,587]],[[79722,38643],[-259,75]],[[79463,38718],[-58,-614]],[[41026,68855],[37,-698]],[[41063,68157],[51,-974]],[[41114,67183],[782,96]],[[71771,26311],[375,-79]],[[72461,26159],[45,627]],[[72506,26786],[45,652]],[[72551,27438],[-313,58],[4,56],[-376,73]],[[40985,44279],[49,-1005]],[[41034,43274],[389,53],[62,-1338],[25,-332]],[[41510,41657],[1135,140]],[[42645,41797],[-37,332],[-54,1342],[-18,-2],[-67,1673]],[[42469,45142],[-590,-67]],[[41879,45075],[-926,-129]],[[40953,44946],[32,-667]],[[60192,33781],[763,-65]],[[61007,35050],[-379,19]],[[60628,35069],[-377,35]],[[56395,33959],[758,-23]],[[57153,33936],[4,333]],[[57157,34269],[4,331],[65,-2],[13,1008]],[[57239,35606],[-378,13]],[[56861,35619],[-376,15]],[[56485,35634],[-11,-1016],[-73,2],[-3,-329]],[[56398,34291],[-3,-332]],[[46626,51954],[1129,84]],[[47758,52727],[-16,1031]],[[47742,53758],[-378,-25],[-574,-70]],[[46790,53663],[-188,-15]],[[46602,53648],[37,-1356],[-13,-338]],[[72700,23422],[0,1]],[[72700,23423],[100,1320]],[[66143,70694],[552,-67],[189,-7]],[[66884,70620],[58,1341]],[[66942,71961],[-741,96]],[[66201,72057],[-58,-1363]],[[47865,41343],[372,78]],[[48237,41421],[393,64]],[[48630,41485],[-23,1194]],[[48607,42679],[-749,-49]],[[47858,42630],[-20,-1]],[[47838,42629],[27,-1286]],[[52238,36113],[317,6]],[[52555,36119],[435,7],[0,285]],[[52990,36411],[-4,1055]],[[52986,37466],[-572,-11]],[[52414,37455],[-185,-4]],[[52229,37451],[9,-1338]],[[77760,59990],[191,-181],[46,29],[61,-201],[76,71]],[[78134,59708],[242,-76]],[[78376,59632],[92,1323],[162,212]],[[78630,61167],[-98,798],[20,194],[-122,233]],[[78430,62392],[-206,-219],[-88,-257],[-55,-451],[11,-127],[-75,-149]],[[78017,61189],[-37,-286],[-57,-109],[-58,-331],[-98,53],[-13,-199],[-150,19],[-123,96],[-33,-71]],[[77448,60361],[165,-235],[147,-136]],[[45352,70957],[250,23]],[[45602,70980],[687,66]],[[46289,71046],[-46,1679]],[[46243,72725],[-947,-86]],[[45296,72639],[56,-1682]],[[84518,54033],[134,-1],[46,-293],[70,-20],[41,-138]],[[84809,53581],[309,-24],[66,124],[170,-31]],[[85354,53650],[-273,1600]],[[85081,55250],[-72,-197],[-217,-174],[-72,-126],[-226,-111]],[[84494,54642],[-21,-225],[45,-384]],[[72177,36814],[750,-163]],[[72927,36651],[184,-41],[72,1002]],[[73183,37612],[-184,41]],[[72999,37653],[-12,-167],[-188,39],[-13,-168],[-564,121]],[[72222,37478],[-5,-72]],[[72217,37406],[-40,-592]],[[69495,60553],[132,-110],[306,101]],[[69933,60544],[65,45],[53,334],[87,44],[62,126]],[[70200,61093],[44,1046]],[[70244,62139],[-668,82]],[[69576,62221],[-23,2]],[[69553,62223],[-8,-478],[-54,-991],[4,-201]],[[47586,67770],[947,56]],[[48533,67826],[-31,1679]],[[48502,69505],[-946,-61]],[[47556,69444],[24,-1289]],[[47580,68155],[6,-385]],[[56678,73471],[95,120],[105,-20],[63,152],[566,-271]],[[57507,73452],[10,754]],[[57517,74206],[8,755],[57,66]],[[57582,75027],[-926,59]],[[56656,75086],[-165,7],[-6,-410],[35,-472],[90,-268],[66,-327],[2,-145]],[[19719,9119],[1487,626]],[[21206,9745],[-212,1451],[-58,50],[-49,228],[-121,-26],[-189,79]],[[20577,11527],[-345,-136],[-1360,-584]],[[18872,10807],[94,-645],[565,249],[188,-1292]],[[57239,35606],[377,-13]],[[57616,35593],[19,1331]],[[57635,36924],[-191,8]],[[57444,36932],[-567,21]],[[56877,36953],[-16,-1334]],[[49474,69558],[3,-272]],[[49477,69286],[806,31]],[[50283,69317],[-1,129],[111,3]],[[50367,71113],[-246,-17]],[[50121,71096],[-679,-45]],[[49442,71051],[32,-1493]],[[96338,97670],[151,-107]],[[96489,97563],[54,141]],[[96543,97704],[-16,183]],[[96527,97887],[-70,75]],[[96457,97962],[-132,-192],[13,-100]],[[52493,49876],[794,11]],[[53287,49887],[-8,1347]],[[52994,51565],[-545,-4]],[[50597,76228],[144,-143],[153,477]],[[50894,76562],[340,1037]],[[51234,77599],[-926,934]],[[50308,78533],[-493,-1532]],[[71684,30356],[744,-152]],[[72428,30204],[99,1304]],[[72527,31508],[1,22],[-381,81]],[[72147,31611],[-373,75]],[[71774,31686],[-90,-1330]],[[53961,51748],[755,4]],[[54716,51752],[2,841],[-10,338]],[[54708,52931],[-750,-3]],[[65318,35153],[378,-54]],[[65696,35099],[189,-26]],[[65885,35073],[-6,337],[60,1332]],[[65939,36742],[14,339]],[[65953,37081],[-547,84]],[[65406,37165],[-47,-1011]],[[65359,36154],[-41,-1001]],[[56413,40681],[752,-14]],[[57165,40667],[14,1245]],[[57179,41912],[-359,20]],[[56820,41932],[-396,16]],[[56424,41948],[-11,-1267]],[[54611,37000],[755,-9]],[[55366,36991],[6,1006],[85,-2],[2,376]],[[55459,38371],[-186,1]],[[55273,38372],[-562,3]],[[54711,38375],[0,-370],[-99,0],[-1,-1005]],[[11675,46070],[79,568],[-38,176],[117,263],[-16,94],[230,165],[115,-81],[169,-13],[81,80],[89,-65],[65,56],[112,-48],[115,85],[190,-394],[220,-117],[68,-158],[59,55],[69,-135],[-45,-71],[114,-73],[41,174],[108,-167],[53,81],[132,-166],[52,-405],[57,-130],[613,-665]],[[14524,45179],[61,141],[97,67],[72,327],[97,-10],[23,112]],[[14874,45816],[-76,473],[128,195],[18,180],[-41,91],[19,366],[85,44],[222,423],[-2,248],[40,400],[-29,207],[-45,8],[6,354]],[[15199,48805],[-1057,-434],[-49,314],[-541,-247],[-47,325],[-273,-125],[-229,244]],[[13003,48882],[-196,192],[-159,-3],[-349,-151],[-122,820],[-760,750]],[[11417,50490],[-44,-247],[-122,-75],[-55,-190],[-159,-319],[3,-117],[-78,-62],[-8,-228],[99,-110],[-51,-279]],[[10866,46911],[565,-587],[110,51],[13,-178],[121,-127]],[[56404,39687],[376,-10]],[[56780,39677],[374,-11]],[[57154,39666],[11,1001]],[[56413,40681],[-9,-994]],[[64338,39149],[282,-33]],[[64620,39116],[225,-25],[-41,176],[322,-41]],[[65126,39226],[187,-27],[30,688]],[[65343,39887],[-698,104]],[[64645,39991],[33,-205],[-314,35]],[[64364,39821],[-26,-672]],[[65987,43170],[-7,-168],[95,-12],[-7,-168],[164,-561]],[[66232,42261],[189,-27]],[[66421,42234],[68,1549]],[[66489,43783],[-3,338]],[[66486,44121],[-455,60]],[[66031,44181],[-44,-1011]],[[55653,39701],[373,-7]],[[56026,39694],[378,-7]],[[56413,40681],[-755,14]],[[55658,40695],[-5,-994]],[[67015,47703],[529,-87]],[[67544,47616],[64,-9]],[[67608,47607],[45,1078]],[[67653,48685],[-70,10]],[[67583,48695],[-329,52]],[[67254,48747],[-6,-111],[-180,20]],[[67068,48656],[-79,-123],[37,-115],[-32,-264],[44,-4],[-23,-447]],[[66600,60996],[46,-4],[238,-270],[93,-396]],[[66977,60326],[85,-7],[120,274],[165,92],[88,-53],[19,283]],[[67454,60915],[4,146]],[[67458,61061],[-363,45],[-127,100],[-78,207],[-43,248],[-110,14]],[[66737,61675],[-33,-311],[-97,-201],[-7,-167]],[[71219,34504],[753,-154]],[[71972,34350],[83,1194]],[[72055,35544],[-601,122]],[[71454,35666],[-155,30]],[[71299,35696],[-80,-1192]],[[81927,55830],[887,-183]],[[82814,55647],[20,215]],[[82834,55862],[102,1254]],[[82936,57116],[-370,126]],[[82566,57242],[-520,177]],[[82046,57419],[-119,-1589]],[[43674,46965],[961,95]],[[44635,47060],[-67,1673]],[[44568,48733],[-140,-12]],[[44428,48721],[-812,-78]],[[43616,48643],[47,-1347]],[[43663,47296],[11,-331]],[[71888,42390],[648,-133]],[[72536,42257],[20,338]],[[72556,42595],[47,729]],[[72603,43324],[-368,65],[4,56]],[[72239,43445],[-251,47],[-16,-280],[-63,12]],[[71909,43224],[-20,-326],[33,-8],[-34,-500]],[[85912,51454],[94,88],[-77,58],[-17,-146]],[[45928,57364],[950,73]],[[46878,57437],[5,0],[-41,1712]],[[46842,59149],[-950,-78]],[[45892,59071],[-12,-1]],[[45880,59070],[48,-1706]],[[70921,56767],[1,-409],[62,-145]],[[70984,56213],[68,6],[47,141],[335,9]],[[71434,56369],[0,117],[-162,187],[-84,246]],[[71188,56919],[-132,-157],[-67,154],[-68,-149]],[[28685,50294],[172,-318],[122,-61],[38,-170],[115,-229],[-70,-135],[75,-33],[78,-240],[318,38],[36,-172],[145,-224],[96,44],[135,-374],[87,-3],[78,-133]],[[30110,48284],[84,-118],[-46,-156],[-2,-233],[-68,-303],[-68,-125],[58,-107],[24,-243],[-33,-86]],[[30059,46913],[1629,406]],[[31688,47319],[-68,858],[-6,476]],[[31614,48653],[-83,1040]],[[31531,49693],[-123,1514]],[[31408,51207],[-151,1857]],[[31257,53064],[-1647,-406]],[[29610,52658],[-808,-212],[-50,-38],[-430,-111]],[[27291,52019],[126,-108],[75,75],[124,-261],[221,64],[171,-54],[12,-91],[100,-74],[156,-520],[141,-15],[74,-111],[-37,-151],[100,-76],[-71,-120],[58,-89],[95,38],[49,-232]],[[59005,38223],[188,-12]],[[59193,38211],[563,-38]],[[59756,38173],[32,1338]],[[59410,39538],[-377,23]],[[59033,39561],[-28,-1338]],[[23397,3862],[1405,529]],[[24802,4391],[-228,1844]],[[24574,6235],[-1059,-396],[163,-1280],[-354,-135]],[[23324,4424],[73,-562]],[[64520,42329],[562,-88]],[[65082,42241],[9,171],[188,-28]],[[65279,42384],[44,896]],[[65323,43280],[24,503],[-124,19]],[[65223,43802],[-313,34],[-133,-42],[-7,-167],[-158,21]],[[64612,43648],[-18,-448],[-42,-111]],[[64552,43089],[-32,-760]],[[54739,49047],[756,-9]],[[55495,49038],[-15,169],[6,1177]],[[55486,50384],[-756,9]],[[54730,50393],[0,-169]],[[54730,50224],[-3,-1008],[12,-169]],[[58744,73331],[251,-12],[-2,-169],[165,-13],[-67,-495]],[[59091,72642],[549,-31]],[[59640,72611],[12,503],[189,-8]],[[59841,73106],[23,835],[-49,100],[-21,246]],[[59794,74287],[-230,10]],[[59564,74297],[-460,22]],[[59104,74319],[-54,-332],[-398,18]],[[58652,74005],[36,-188],[-38,-93],[41,-231],[-40,-110],[93,-52]],[[11705,40237],[156,-9],[83,55],[127,-81],[153,121],[139,238],[190,57],[416,-4],[149,-210],[133,3],[49,-174],[88,0]],[[13388,40233],[-107,720]],[[13281,40953],[-220,-59],[-138,34],[-184,-28],[-45,-67],[-87,64],[-287,97],[-55,152],[-325,81],[-182,180],[-163,-91]],[[11595,41316],[-9,-304]],[[11586,41012],[119,-775]],[[13706,38921],[-35,255],[122,319]],[[13793,39495],[9,256],[-196,287],[-218,195]],[[11705,40237],[-29,-848],[-39,1]],[[11637,39390],[126,-354],[83,-82],[74,-245],[66,22],[125,-120],[127,100],[104,-143],[138,48],[108,288],[98,165],[108,-17],[87,-97],[94,-208],[172,102],[241,75],[87,-106],[231,103]],[[60644,58376],[818,-30]],[[61462,58346],[29,340],[13,633],[-48,2],[4,228]],[[61460,59549],[-76,2],[-162,304]],[[61222,59855],[-84,-53],[-105,-181],[-90,54],[-78,-87],[-114,34],[45,-116],[-28,-152],[72,-116],[-101,-109],[-50,-181],[-88,33],[-13,-105]],[[60588,58876],[-37,-161],[95,-1],[-2,-338]],[[82380,48560],[94,-33],[-59,205],[-35,-172]],[[82911,53105],[-219,67]],[[82692,53172],[9,-143],[-117,-69],[25,-65],[143,25],[24,-177],[190,230],[-55,132]],[[80121,53411],[86,-106],[-48,178]],[[80159,53483],[-38,-72]],[[82895,45674],[57,-185],[98,202],[-134,162],[-21,-179]],[[81889,52853],[29,-116],[79,6],[32,217],[-140,-107]],[[69527,38305],[636,-119]],[[70163,38186],[23,337],[94,-22],[10,169],[119,-25]],[[70409,38645],[9,167]],[[70418,38812],[-363,79],[19,330]],[[70074,39221],[-492,87]],[[69582,39308],[-55,-1003]],[[56015,38361],[751,-19]],[[56766,38342],[14,1335]],[[56026,39694],[-11,-1333]],[[9430,45787],[144,-165],[144,50],[17,89]],[[11417,50490],[67,35],[38,177],[-44,63],[46,243]],[[11524,51008],[-1537,-725],[-395,-194]],[[9592,50089],[-144,-430],[-2,-460],[-101,-133],[-47,-394],[-101,-372],[-140,-224],[-87,-377],[31,-289],[-10,-373],[60,-269],[-50,-116],[109,-154],[93,139],[87,-142],[149,-516],[-9,-192]],[[61909,47724],[128,-9],[6,232],[134,-11],[5,228],[259,-16]],[[62441,48148],[28,1247]],[[62469,49395],[-200,-221],[-92,51],[-163,-76],[-4,-82],[-152,-233],[-95,36]],[[61763,48870],[-85,-33]],[[61678,48837],[-10,-523],[256,-16],[-15,-574]],[[80376,55041],[167,-199],[209,29],[38,-144],[60,49],[73,-82],[30,93],[120,-35],[32,63]],[[81105,54815],[60,384],[-117,211],[51,168]],[[81099,55578],[-345,80]],[[80754,55658],[-329,75]],[[80425,55733],[-49,-692]],[[71956,28957],[375,-80]],[[72331,28877],[94,1287]],[[72425,30164],[3,40]],[[71684,30356],[-43,-662],[-16,4],[-46,-664]],[[74731,51361],[108,-502],[110,-218],[46,-15]],[[74995,50626],[24,-5]],[[75019,50621],[171,154],[169,72]],[[75359,50847],[-59,528]],[[75300,51375],[-106,-107],[-69,125],[-91,-16],[-11,108],[-146,61],[-105,-96]],[[74772,51450],[-41,-89]],[[54708,52931],[754,-9]],[[55462,52922],[1,224]],[[55463,53146],[6,1122]],[[55469,54268],[-749,9]],[[54720,54277],[-8,0]],[[54712,54277],[-4,-1346]],[[70929,30508],[755,-152]],[[71774,31686],[-379,76]],[[71395,31762],[-375,78]],[[71020,31840],[-91,-1332]],[[70377,33314],[355,-70]],[[70732,33244],[392,-70]],[[71124,33174],[95,1330]],[[71219,34504],[-756,154]],[[70463,34658],[-86,-1344]],[[68544,52124],[142,-162]],[[68686,51962],[265,196],[297,166],[100,7]],[[69348,52331],[-95,326],[19,248]],[[69272,52905],[-122,29],[-62,137],[-149,-18]],[[68939,53053],[-102,-113],[-16,-360],[-55,-191]],[[68766,52389],[-161,-68],[-61,-197]],[[54736,28035],[556,-4]],[[55292,28031],[15,333],[379,-7]],[[55686,28357],[7,997]],[[55693,29354],[-937,15]],[[54756,29369],[-16,1]],[[54740,29370],[-4,-1335]],[[69874,26672],[401,-78]],[[70275,26594],[88,1331]],[[69616,28065],[-90,-1340]],[[69616,28065],[-620,96]],[[68996,28161],[-84,-570],[-100,-318],[96,-201],[78,-294]],[[70363,27925],[745,-138]],[[71202,29111],[-755,140]],[[69024,29495],[670,-100]],[[70129,29988],[20,336]],[[70149,30324],[-187,31],[22,333],[-579,107]],[[69405,30795],[-241,-721],[-140,-579]],[[57607,29293],[382,-17]],[[57989,29276],[564,-30]],[[58553,29246],[25,1339]],[[58578,30585],[-712,36]],[[57866,30621],[-240,10]],[[57626,30631],[-19,-1338]],[[65308,47230],[-30,-729],[186,-25]],[[65464,46476],[564,-66]],[[66028,46410],[49,1173],[191,-37]],[[66268,47546],[12,340]],[[66280,47886],[-749,105],[13,339]],[[65544,48330],[-197,2]],[[65347,48332],[-46,-989],[7,-113]],[[66028,46410],[563,-71]],[[66591,46339],[8,168],[186,-25]],[[66785,46482],[44,1002]],[[66829,47484],[-561,62]],[[57322,21745],[21,1002]],[[57343,22747],[-601,25]],[[56742,22772],[-86,-228],[7,-188],[-118,-404]],[[56545,21952],[-127,-175],[904,-32]],[[44826,62354],[975,82]],[[45801,62436],[-49,1676]],[[45752,64112],[-724,-65]],[[45028,64047],[-261,-23]],[[54243,20725],[953,-7]],[[55196,20718],[16,1273]],[[55212,21991],[0,55]],[[55212,22046],[-950,6]],[[54262,22052],[-2,-664],[-16,0],[-1,-663]],[[50000,58907],[188,7]],[[50188,58914],[754,27]],[[50942,58941],[-15,1692]],[[50927,60633],[-943,-30]],[[65922,58079],[339,-32],[-1,-82]],[[66260,57965],[225,355],[132,26],[139,174]],[[66756,58520],[21,1048]],[[66777,59568],[-370,25]],[[66407,59593],[-93,-103],[-259,-104],[-63,-400],[-98,-111]],[[65894,58875],[40,-107],[-12,-689]],[[67589,58182],[58,-115],[59,-283],[85,-172],[-44,-191],[3,-187],[183,-31]],[[67933,57203],[19,24]],[[67952,57227],[52,152],[23,264]],[[68027,57643],[75,308],[0,118],[-124,414],[-6,316],[154,20],[-11,271],[-35,102]],[[68080,59192],[-9,99]],[[68071,59291],[-101,33],[-7,-110],[-263,14]],[[67700,59228],[-70,7],[-41,-1053]],[[80730,65855],[69,92],[206,84],[281,203],[193,200],[109,209]],[[81588,66643],[-158,245],[34,142],[-31,111],[-71,-145],[-236,361]],[[81126,67357],[-232,-295]],[[80894,67062],[-77,-143],[-56,-908],[-31,-156]],[[48504,85418],[755,557]],[[49259,85975],[405,903]],[[49664,86878],[174,371]],[[49838,87249],[-467,646]],[[49371,87895],[2,-135],[-901,-39]],[[48472,87720],[21,-1690]],[[48493,86030],[11,-612]],[[50531,30651],[238,6]],[[50769,30657],[569,16]],[[51338,30673],[326,9]],[[51657,31951],[-380,-8]],[[51277,31943],[-702,-23]],[[50575,31920],[-50,-111]],[[41385,24047],[28,0],[39,-818]],[[41452,23229],[1672,230]],[[43124,23459],[-28,661]],[[43096,24120],[-81,1661],[-941,-124]],[[41308,25674],[77,-1627]],[[23171,91888],[95,-462]],[[23266,91426],[75,171],[260,402]],[[23601,91999],[-94,50],[-21,-138],[-126,40],[-138,-37],[-13,76]],[[23209,91990],[-38,-102]],[[23149,91993],[14,-65]],[[23163,91928],[-14,65]],[[22655,91654],[1,178],[48,65],[174,-268]],[[22878,91629],[16,105],[170,287],[31,155],[-169,-205],[54,162],[116,142],[85,314],[-175,553],[-42,18],[-61,-238],[35,-251],[-83,-125],[-96,-243],[-13,-143],[-90,-329],[-77,-125],[-58,-244],[134,192]],[[21940,90354],[0,0]],[[22601,92319],[-41,34],[-320,-180],[-14,233],[-136,74]],[[22090,92480],[-98,-85],[-24,-198],[60,-128],[-38,-153],[83,100],[97,-88],[57,-146],[136,97],[-32,201],[33,49],[24,-214],[207,16],[61,309],[-55,79]],[[21288,91487],[142,-199]],[[21430,91288],[219,-445],[91,-51],[17,-139]],[[21757,90653],[241,0],[85,51],[116,259],[-50,73],[0,166],[83,7],[128,199],[-66,44],[40,119]],[[22334,91571],[-78,-1],[-97,114],[-51,-307],[-109,-222],[-48,110],[-112,-66],[-45,-158],[-33,119],[-93,-53],[-7,89],[131,14],[130,153],[57,1],[128,346],[-118,172],[-64,3],[0,141],[-172,-168],[-64,30],[-215,-176],[-186,-225]],[[48738,25196],[926,52]],[[49664,25248],[17,1],[-17,1006]],[[49664,26255],[-19,1676]],[[49645,27931],[-355,-18]],[[51556,26673],[570,17]],[[52126,26690],[-12,1330]],[[50982,27992],[-6,0]],[[50976,27992],[16,-1338]],[[68661,60001],[118,-187],[71,78],[161,33],[203,-202]],[[69214,59723],[-8,289],[126,145],[32,222],[-27,155]],[[69337,60534],[-58,-37],[-217,29],[7,143],[-116,105],[-104,15]],[[68849,60789],[-64,-136],[-70,-12],[-5,-118],[-129,-22]],[[68581,60501],[43,-257],[58,-89],[-21,-154]],[[63089,22996],[-25,-660]],[[63064,22336],[946,-110],[18,336]],[[64028,22562],[52,1328]],[[64080,23890],[-957,106]],[[63123,23996],[-34,-1000]],[[66154,60030],[88,72],[208,-463],[-43,-46]],[[66777,59568],[177,-17]],[[66954,59551],[23,775]],[[66600,60996],[-421,41]],[[66179,61037],[-25,-1007]],[[83720,47024],[47,-183],[65,19],[6,144],[-118,20]],[[33131,17704],[379,93],[83,-1023],[22,6],[62,-766]],[[33677,16014],[18,-218],[569,141]],[[34264,15937],[-40,489],[19,171],[126,33],[-27,329],[56,160],[-28,328],[100,359],[-44,548]],[[34426,18354],[-219,-52]],[[34207,18302],[-744,-180],[-28,331]],[[33435,18453],[-285,-72],[29,-330],[-75,-19],[27,-328]],[[37908,29257],[96,16]],[[38004,29273],[1483,246]],[[39487,29519],[285,43]],[[39772,29562],[-145,2724],[-27,686]],[[39600,32972],[-632,-94],[-34,669]],[[38934,33547],[-78,-12],[-59,201],[-41,327],[-243,-38],[-137,-84],[15,-280],[63,12],[43,-198],[-830,-160]],[[37667,33315],[-4,-1]],[[77173,55117],[140,-1],[255,-145],[82,9],[72,113],[123,-6]],[[77845,55087],[-25,567]],[[77820,55654],[-137,417],[-156,61],[-101,230]],[[77426,56362],[-107,-169],[-51,-1021],[-127,36]],[[77141,55208],[32,-91]],[[61738,23477],[-10,-333],[380,-31]],[[62108,23113],[341,-30],[640,-87]],[[63123,23996],[-238,24],[12,332],[-182,18]],[[62715,24370],[-184,30],[-759,73]],[[61772,24473],[-34,-996]],[[30610,21746],[400,103],[119,74],[778,192],[140,7],[478,129]],[[32525,22251],[1071,251],[29,31],[711,165]],[[34336,22698],[-36,490],[44,10],[-103,1330],[30,8],[-103,1338],[36,9]],[[34204,25883],[-26,338]],[[34178,26221],[-377,-88],[-26,337],[-194,-46],[-21,329],[-282,-66],[-27,329],[-345,-67]],[[32906,26949],[-74,-132],[-92,-362],[-176,-138],[-164,160],[-35,195],[-212,126],[-86,-100],[61,-228],[-53,-170],[24,-102],[-217,-37],[-71,-242]],[[31811,25919],[33,-388],[-102,-155],[40,-248],[-27,-307],[-80,-100],[-18,-257],[-86,-249],[58,-323],[-136,-286],[-445,-118],[28,-316],[-598,-164]],[[30478,23008],[117,-1267],[15,5]],[[53790,28037],[740,1]],[[54530,28038],[206,-3]],[[54740,29370],[-932,-1]],[[53788,29369],[2,-1332]],[[65790,31065],[187,-21]],[[65977,31044],[565,-70]],[[66542,30974],[54,1337]],[[66596,32311],[-378,59]],[[66218,32370],[-376,49]],[[65842,32419],[-52,-1354]],[[53179,28033],[588,3]],[[53767,28036],[23,1]],[[53174,29365],[5,-1332]],[[85663,45106],[87,37],[244,-229],[55,-147],[64,80],[-4,249],[70,108]],[[86179,45204],[-71,94],[15,384]],[[86123,45682],[-86,76]],[[86037,45758],[-186,-120],[-62,53],[25,-218],[-172,48]],[[85642,45521],[-38,-51],[3,-332],[56,-32]],[[26459,17822],[52,-31],[12,-180],[84,-110],[49,136],[237,-283],[162,27],[108,-85],[42,-210]],[[27205,17086],[30,20],[84,686],[108,-147],[93,11],[89,-159],[84,-47],[116,51],[14,86]],[[27823,17587],[127,242],[118,147],[171,117],[44,315],[50,52],[1,201]],[[28334,18661],[-62,337],[1,193],[79,191],[74,65],[114,-17],[45,205],[-105,1153],[188,58],[-34,331],[219,66],[-32,331],[37,12],[-33,323],[156,50],[-16,160],[436,138],[-26,272],[460,134]],[[29835,22663],[-1,167],[-103,206],[68,225],[-53,31],[-123,-124],[-53,37]],[[29570,23205],[-130,-80],[-24,58],[-176,82],[-55,-229],[-181,54],[-76,-62],[-124,64],[-114,-82],[-78,-159],[-67,-22],[-127,116],[-74,292],[-120,-161],[-49,51],[-69,-106],[-169,-55],[-83,-98],[-104,44],[-108,208],[16,183]],[[27658,23303],[-55,56],[-49,-162],[-159,-264],[-17,-185],[40,-100],[-87,-324],[48,-49],[7,-235],[-40,-82],[-21,-300],[-158,-245],[-160,97],[-8,-139],[-133,-221],[-36,-311],[91,-39],[27,-377],[-90,-161],[19,-80],[-88,-80],[-12,-248],[-105,-278],[-48,-294],[30,-252],[-50,-260],[54,-237],[-104,-35],[76,-292],[-122,-203],[-49,-181]],[[32357,15613],[246,-45],[129,44],[95,-40],[204,281],[112,26]],[[33143,15879],[534,135]],[[33131,17704],[-947,-248]],[[32184,17456],[89,-1015],[13,3],[71,-831]],[[58046,55293],[945,-10]],[[59274,55338],[9,1009]],[[59283,56347],[-690,7]],[[58593,56354],[-66,1],[-2,-676],[-475,9]],[[58050,55688],[-4,-395]],[[58890,48185],[1,-170],[186,-366]],[[59077,47649],[37,165],[108,145],[103,33],[128,-54],[268,35]],[[59721,47973],[105,181]],[[59826,48154],[-182,890],[0,56],[-379,8]],[[59265,49108],[-375,-15]],[[58890,49093],[0,-908]],[[50649,45463],[945,28]],[[51594,45491],[-3,335]],[[51591,45826],[-11,1007]],[[51580,46833],[-943,-30]],[[50637,46803],[7,-1005]],[[50644,45798],[5,-335]],[[86370,45928],[80,-214],[117,191],[122,87],[2,120],[193,7],[44,46]],[[86928,46165],[148,85],[41,232],[82,89]],[[87199,46571],[-95,40],[-111,217]],[[86993,46828],[-154,-119],[-168,-289],[-69,-11],[-42,-139],[-104,-64]],[[86456,46206],[-86,-278]],[[65642,59365],[109,-34],[120,-312],[23,-144]],[[66154,60030],[-85,-15],[-162,-165],[-119,-15],[-160,-223]],[[65628,59612],[14,-247]],[[69425,43161],[613,-112]],[[70038,43049],[66,1120]],[[70104,44169],[-233,50],[7,112],[-319,53]],[[69559,44384],[18,-115],[-76,12],[-50,-900],[-14,2]],[[69437,43383],[-12,-222]],[[46670,48928],[158,15]],[[46828,48943],[944,70]],[[47772,49013],[23,2]],[[47795,49015],[-29,1339]],[[47766,50354],[-6,336]],[[47760,50690],[-1099,-79]],[[46661,50611],[-30,-2]],[[65939,36742],[551,-96]],[[66490,36646],[1,0]],[[66491,36646],[62,1002]],[[66553,37648],[-559,101]],[[65994,37749],[-41,-668]],[[68756,38183],[229,-226],[63,-151],[47,-319],[88,-134],[192,-34]],[[69375,37319],[94,-17]],[[69469,37302],[58,1003]],[[69527,38305],[-758,126]],[[68769,38431],[-13,-248]],[[70727,44033],[-13,-226]],[[70714,43807],[531,-105]],[[71245,43702],[66,942]],[[71311,44644],[23,393],[-91,18]],[[71243,45055],[-447,94]],[[59297,52150],[404,-12],[39,199],[91,148],[80,-110],[84,8],[72,-139]],[[60067,52244],[4,560],[290,234],[3,169]],[[60364,53207],[6,508]],[[60370,53715],[-751,16]],[[59330,53738],[-5,-915],[-23,1],[-5,-674]],[[57631,44264],[667,-60]],[[58298,44204],[12,1017],[164,-7]],[[58474,45214],[-33,85],[20,255]],[[58461,45554],[-806,53]],[[57655,45607],[-10,-668]],[[57645,44939],[-14,-675]],[[71135,22754],[189,-32],[-21,-331]],[[71303,22391],[566,-107]],[[71217,23734],[-82,-980]],[[45003,43742],[44,-1339]],[[45047,42403],[906,87]],[[45953,42490],[32,3]],[[45985,42493],[-40,1337]],[[45945,43830],[-942,-88]],[[45003,43742],[-3,0]],[[71390,26386],[-77,-1046],[-12,-285]],[[56275,53210],[940,25]],[[57215,53235],[-1,225]],[[57214,53460],[-1,896]],[[57213,54356],[-928,-29]],[[56285,54327],[-10,-1117]],[[45028,64047],[-52,1676]],[[44976,65723],[-172,-14]],[[44804,65709],[-774,-74]],[[44030,65635],[55,-1674]],[[72994,32768],[299,-64],[446,-127]],[[73739,32577],[179,-56]],[[73918,32521],[121,1329]],[[74039,33850],[-376,98]],[[73663,33948],[-573,169]],[[73090,34117],[-96,-1349]],[[70644,31920],[376,-80]],[[71395,31762],[93,1334]],[[71488,33096],[-364,78]],[[70732,33244],[-88,-1324]],[[32549,70430],[565,119]],[[33114,70549],[-210,3136]],[[32904,73685],[-1685,-363]],[[31219,73322],[7,-311]],[[31226,73011],[61,-821],[-24,-6],[126,-1664],[559,121],[24,-331],[577,120]],[[76901,53748],[31,-134],[90,39],[91,-262],[399,-123],[-4,33]],[[77508,53301],[182,607]],[[77690,53908],[102,416]],[[77792,54324],[-546,142]],[[77246,54466],[-383,95]],[[76863,54561],[-268,65]],[[76595,54626],[40,-330],[197,-272],[69,-276]],[[91531,16433],[-27,-214],[73,-267],[-13,-333],[129,-404],[114,156],[144,-45],[40,-262]],[[91991,15064],[384,2000],[310,1723]],[[92685,18787],[-51,28],[30,170],[-322,123],[-4,607],[-49,21],[-61,-264],[-117,-130]],[[92111,19342],[-63,-118],[-105,-7],[-99,79],[-45,-179],[-182,-25],[-146,-228]],[[91471,18864],[139,-197],[4,-141],[87,-145],[-53,-229],[48,-21],[-25,-235],[-70,-94],[-121,-313],[67,-186],[-5,-274],[56,-225],[-106,-238],[39,-133]],[[48738,9581],[768,43]],[[49506,9624],[-19,1064],[43,3],[-12,657]],[[49518,11348],[-12,657],[-339,-20]],[[49167,11985],[-431,-27]],[[48736,11958],[13,-658]],[[48749,11300],[14,-656],[-48,-3],[23,-1060]],[[56296,55736],[-2,-223]],[[56294,55513],[972,4]],[[57266,55517],[-1,449]],[[57265,55966],[-2,710]],[[56303,56633],[-7,-897]],[[23478,92913],[90,-42],[128,212],[199,195],[-90,178],[-138,25],[-6,124],[-96,-12]],[[23565,93593],[-126,-470],[82,-111],[-43,-99]],[[23601,91999],[253,410],[-17,181],[137,-19],[13,218]],[[23859,93116],[-118,-107],[-136,-197],[-242,-69],[-17,-242],[-61,-269],[-82,-12],[-19,-132],[212,28],[-187,-126]],[[51672,36099],[566,14]],[[52229,37451],[-379,-8]],[[51850,37443],[-189,-5]],[[51661,37438],[11,-1339]],[[51681,35095],[565,15]],[[52246,35110],[-1,334],[315,6]],[[52560,35450],[-5,669]],[[51672,36099],[9,-1004]],[[66408,21264],[229,-38],[-33,-669],[121,-19],[-16,-331]],[[66709,20207],[380,-57]],[[67089,20150],[17,328],[65,-9],[66,1322],[98,-12]],[[67335,21779],[-86,410],[15,63],[-90,249],[-57,299],[-231,655],[37,136]],[[50450,87725],[400,-542]],[[50850,87183],[307,-419],[149,116],[64,123]],[[51370,87003],[5,72],[138,-74],[88,126],[51,217],[-50,631],[40,219]],[[51642,88194],[-421,618]],[[51221,88812],[-202,-177],[-137,-67],[-12,-243],[-168,-31],[-98,-82],[-65,-335],[-89,-152]],[[50807,18674],[534,21]],[[51939,20036],[-1107,-34]],[[50790,19999],[17,-1325]],[[44879,60672],[966,84]],[[45845,60756],[-44,1680]],[[44826,62354],[53,-1682]],[[79936,34624],[105,-217],[121,-366],[349,-86],[-2,-26]],[[80509,33929],[162,-51]],[[80671,33878],[60,604],[65,79],[21,203]],[[80817,34764],[19,193],[-198,116],[16,168],[-65,111],[15,136],[-56,193]],[[80548,35681],[-494,151]],[[80054,35832],[-118,-1208]],[[45752,64112],[223,19]],[[45748,65785],[-772,-62]],[[58052,55970],[-2,-282]],[[58593,56354],[1,1229]],[[58594,57583],[-471,20]],[[58123,57603],[0,-1240],[-68,1],[-3,-394]],[[73834,42582],[191,-17],[2,58],[191,-18],[3,96],[310,26]],[[74531,42727],[6,217]],[[74537,42944],[20,644]],[[74557,43588],[-517,42]],[[74040,43630],[-231,17]],[[73809,43647],[-37,-1005],[62,-60]],[[56863,43609],[755,-13]],[[57618,43596],[13,668]],[[57645,44939],[-749,11]],[[56896,44950],[-6,-948],[-26,0]],[[56864,44002],[-1,-393]],[[59934,41680],[282,-32]],[[60216,41648],[392,-49]],[[60608,41599],[17,1176]],[[60625,42775],[-661,39]],[[59964,42814],[-8,-168]],[[59956,42646],[-22,-966]],[[47963,74546],[143,7]],[[48106,74553],[360,26]],[[48466,74579],[451,1473]],[[48917,76052],[-171,40],[-42,294],[-404,465]],[[48300,76851],[-93,-30],[-94,109]],[[48113,76930],[-209,-36]],[[47904,76894],[59,-2348]],[[41800,70609],[707,83]],[[42507,70692],[-52,1673]],[[42440,72363],[-1571,-187]],[[40869,72176],[71,-1675]],[[51234,77599],[138,295],[124,-134]],[[51878,78894],[-358,363],[-110,523]],[[51410,79780],[-580,-467],[-381,-150]],[[50449,79163],[-151,-499]],[[50298,78664],[10,-131]],[[22831,3634],[566,228]],[[23324,4424],[-231,1754],[-165,1199]],[[22928,7377],[-571,-233]],[[22357,7144],[41,-323],[-93,-37],[258,-1922],[-185,-73],[42,-320],[94,36],[46,-345],[94,37],[41,-318],[98,39],[38,-284]],[[76886,74083],[-7,-108],[275,-54]],[[77154,73921],[7,91],[153,29],[102,252],[72,8]],[[77488,74301],[-53,55],[16,243],[-103,221]],[[77348,74820],[-42,103],[-97,18]],[[77209,74941],[-263,47]],[[76946,74988],[-60,-905]],[[44533,79563],[1592,116]],[[46125,79679],[-40,1608]],[[46085,81287],[-1107,-82]],[[44978,81205],[-493,-42]],[[44485,81163],[48,-1600]],[[81323,50130],[77,-368],[57,-149],[-130,-274],[4,-92]],[[81331,49247],[154,-259],[134,-428],[257,72]],[[81876,48632],[37,257],[-15,133],[213,195],[-2,59],[153,141]],[[82262,49417],[-121,363],[-134,-98],[-234,388],[69,66],[-4,121],[-86,189]],[[81752,50446],[-39,-64],[-365,-204],[-25,-48]],[[56876,76310],[577,108],[201,189]],[[57654,76607],[7,397],[-112,219],[43,176],[-43,262],[35,213],[-31,363],[19,43]],[[57572,78280],[-8,61],[-161,79]],[[57403,78420],[-120,-137],[-51,-141],[-204,-191]],[[57028,77951],[-26,-147],[43,-159],[-29,-212],[45,-239],[-31,-88],[35,-314],[-22,-239],[-167,-243]],[[97001,97461],[98,-85]],[[97099,97376],[45,122],[2,208]],[[97146,97706],[5,88]],[[97151,97794],[-15,100],[-161,69]],[[96975,97963],[-87,-131]],[[96888,97832],[-2,-12]],[[96266,96393],[72,45]],[[96338,96438],[24,346]],[[96362,96784],[-32,63]],[[96330,96847],[-97,131]],[[96208,96936],[58,-543]],[[58336,18094],[1149,-60],[23,382]],[[59508,18416],[20,938]],[[59528,19354],[-1158,62]],[[58370,19416],[-24,-662],[-10,-660]],[[77879,81202],[87,-16],[17,-304],[39,-143],[-12,-168]],[[78010,80571],[753,-184]],[[78763,80387],[-34,277],[21,441],[51,172]],[[78801,81277],[-58,206],[5,270],[-125,409],[17,86],[-183,277]],[[78457,82525],[-34,-207],[-103,-268],[-151,-32],[-43,-136],[-181,-118],[-66,-562]],[[76248,66363],[251,-915]],[[76499,65448],[52,48],[85,290],[78,76]],[[76714,65862],[135,349],[160,223],[-4,195]],[[77005,66629],[-445,293]],[[76560,66922],[-294,-289]],[[76266,66633],[-18,-270]],[[11677,79978],[254,74],[21,-227],[507,128],[9,-114],[199,44],[-8,114],[133,28],[8,-114],[133,25],[-7,114],[267,47],[7,-115],[133,21],[-6,115],[731,84],[-3,115],[265,19],[-2,114],[266,13],[0,46]],[[14584,80509],[-18,298],[197,235],[-20,461],[134,1],[46,116],[0,461],[-20,115],[-198,-2],[-2,230],[-200,-6],[-18,346],[-133,-6],[-62,-235],[-131,-8],[-6,231],[-132,-10],[6,-231],[-264,-24],[-15,462],[-332,-39],[-10,231],[-199,-28],[-24,577]],[[13183,83684],[-72,105],[-528,-91],[-730,-166],[19,-229],[-65,-17],[20,-228],[-88,-24],[41,-457],[-23,-6],[41,-457],[-11,-144]],[[11787,81970],[175,32],[3,186],[-77,336],[31,183],[186,49],[133,-11],[105,107],[83,-50],[89,95],[109,-270],[171,40],[-33,-143],[-117,-104],[-124,45],[27,-218],[-75,-253],[-89,-77],[-31,-168],[99,-102],[77,263],[-28,147],[132,305],[80,-38],[-149,-350],[85,-311],[-30,-121],[-217,48],[-356,-286],[2,-300],[-33,-259],[-338,-767]],[[42403,15267],[848,118]],[[43251,15385],[100,13],[-57,1320]],[[43294,16718],[-298,-38],[-59,1330]],[[42366,17933],[61,-1329],[-86,-12],[62,-1325]],[[57253,18007],[-10,-866]],[[57243,17141],[1084,-36]],[[58327,17105],[9,989]],[[58370,19416],[19,995]],[[58389,20411],[-577,45]],[[57812,20456],[-4,-352],[-557,36]],[[57251,20140],[-22,-28],[-18,-1270],[50,-23],[-8,-812]],[[32006,43508],[50,-622]],[[32056,42886],[259,62],[-3,39],[567,133],[12,-166],[1026,228],[36,-500],[407,68],[436,100],[24,-342],[187,49],[49,-672],[464,92]],[[35520,41977],[-39,662]],[[35481,42639],[-133,-27],[-142,2119]],[[35206,44731],[-532,-111]],[[34674,44620],[-1636,-357],[-1071,-254]],[[31967,44009],[39,-501]],[[55486,50384],[4,507],[-17,0],[0,853]],[[55473,51744],[-757,8]],[[54716,51752],[1,-854],[13,-505]],[[46548,67691],[94,7]],[[46642,67698],[-31,1687]],[[46611,69385],[-960,-76]],[[47923,60162],[1314,71]],[[49237,61239],[-6,337]],[[49231,61576],[-1315,-76]],[[47920,61332],[-20,-167],[23,-1003]],[[74641,39147],[188,-44],[-4,-58],[317,-78]],[[75556,38860],[16,224],[-158,80],[43,554],[-94,47],[9,195]],[[75372,39960],[-378,50]],[[74994,40010],[-18,-241],[-279,72]],[[74697,39841],[-56,-694]],[[63035,39618],[-8,-336]],[[63027,39282],[743,-72]],[[63770,39210],[23,673]],[[63793,39883],[36,1009]],[[63829,40892],[-757,71]],[[63072,40963],[-37,-1345]],[[75850,64392],[114,217],[274,7],[96,38],[66,241]],[[76400,64895],[-180,273]],[[76220,65168],[-55,-32],[-148,121],[-77,-118]],[[75940,65139],[-147,-256],[57,-491]],[[65994,37749],[76,1337]],[[66070,39086],[-565,84],[29,685]],[[65534,39855],[-191,32]],[[65126,39226],[-35,-792]],[[65091,38434],[-49,-1057]],[[65042,37377],[-8,-166],[372,-46]],[[72197,75531],[-22,-343],[92,-46],[-21,-305]],[[72246,74837],[661,-123]],[[72907,74714],[96,1609]],[[73003,76323],[-749,154]],[[72254,76477],[-57,-946]],[[83916,89135],[762,-218],[-18,-218],[164,-45]],[[84824,88654],[294,856],[45,172]],[[85163,89682],[-116,88],[-1449,405]],[[83598,90175],[348,-724],[-30,-316]],[[57157,34269],[761,-30]],[[57918,34239],[5,333],[59,-2],[15,1006]],[[57997,35576],[-381,17]],[[58678,34204],[6,331],[39,-1],[20,1005]],[[58371,35560],[-374,16]],[[24766,20669],[-38,224],[125,421],[127,36],[62,322],[89,-79],[56,57],[89,-192],[84,-56],[36,-131],[-35,-129],[86,-45],[28,-128],[149,-168],[105,-15],[-78,426],[117,104],[89,-71],[73,498],[199,500],[29,120],[187,167],[39,81],[231,186],[96,-84],[38,282],[74,282],[-4,322]],[[26819,23599],[-148,-48],[-70,656],[-64,-21],[-40,553],[-32,136],[65,86],[30,207],[-102,-28],[-21,123],[-147,172],[-400,245],[-82,182]],[[25808,25862],[-87,-346],[-130,-268],[-25,-234],[-113,84],[-70,-46],[-25,-140],[-184,-285],[-2,-219],[-109,13],[-70,-107],[-150,-65],[-55,190],[-80,-50],[-19,-172],[-102,-168],[-205,-72],[28,-245],[-92,-32],[-175,152]],[[24143,23852],[-26,-53]],[[24117,23799],[40,-227],[-73,-58],[0,-154],[87,-123],[-65,-109],[55,-64],[-205,-313],[24,-358],[-155,-166],[-4,-59]],[[23821,22168],[140,-288],[13,-360],[-52,-23],[-7,-241],[46,-91],[191,-86],[62,-297],[110,-116],[185,254],[257,-251]],[[74735,74806],[-27,-452]],[[74708,74354],[299,-63],[7,-93],[196,46]],[[75210,74244],[178,-40]],[[75388,74204],[11,282],[104,331],[-27,84]],[[75476,74901],[-38,-62],[-73,120],[-274,34]],[[75091,74993],[-282,49],[-31,-245],[-43,9]],[[54307,34316],[569,-6]],[[54876,34310],[2,334],[105,-1],[3,1015]],[[54986,35658],[-563,4]],[[54423,35662],[1,-1013],[-117,0],[0,-333]],[[35526,50742],[182,39],[-20,333],[939,175]],[[36627,51289],[-83,1334]],[[35389,52390],[64,-998],[27,5],[46,-655]],[[58258,38266],[747,-43]],[[59033,39561],[-376,22]],[[58657,39583],[-376,20]],[[58259,38331],[-1,-65]],[[41332,41296],[190,26],[-12,335]],[[41034,43274],[-740,-106]],[[40294,43168],[104,-2011],[934,139]],[[59151,36851],[760,-49]],[[59911,36802],[32,1358]],[[59943,38160],[-187,13]],[[59193,38211],[-24,-355],[-18,-1005]],[[64045,41637],[95,-119],[252,-130],[-6,-131],[62,-251],[89,-150],[-2,-181]],[[64535,40675],[371,-47],[25,509],[99,70]],[[65030,41207],[52,1034]],[[64520,42329],[-186,25],[-20,-448],[-344,38]],[[63970,41944],[75,-307]],[[39357,44708],[1584,236]],[[40941,44944],[-90,1683],[-45,1007],[-567,-90]],[[40239,47544],[55,-996],[-1029,-163]],[[39265,46385],[92,-1677]],[[57635,36924],[570,-24]],[[58205,36900],[15,1009],[32,-3],[6,360]],[[57503,38284],[-5,-341],[-38,1],[-16,-1012]],[[73066,40788],[-6,-91],[157,-35],[-28,-391],[553,-129]],[[73742,40142],[46,652],[-7,155]],[[73781,40949],[11,345]],[[73792,41294],[-328,9],[-353,88]],[[73111,41391],[-46,-602]],[[73065,40789],[1,-1]],[[56766,38342],[564,-18],[173,-40]],[[57523,39631],[-369,35]],[[77286,36195],[194,-54],[-78,-265],[335,-79]],[[77737,35797],[120,1371]],[[77857,37168],[-38,10],[21,314],[-373,70]],[[77467,37562],[-24,-284],[-67,18]],[[81098,88200],[950,-250]],[[82048,87950],[101,1151]],[[81194,89360],[-96,-1160]],[[72291,38485],[661,-142]],[[72952,38343],[25,333],[94,-22],[13,171]],[[73084,38825],[12,164],[-94,21],[37,501]],[[73039,39511],[-98,21]],[[72941,39532],[-12,-167],[-568,120]],[[72361,39485],[-52,-744]],[[72309,38741],[-18,-256]],[[73387,43693],[422,-46]],[[74040,43630],[38,1213]],[[74078,44843],[-427,32]],[[73651,44875],[-10,-66],[-153,18]],[[73488,44827],[-34,-989],[-53,30],[-14,-175]],[[46030,83837],[187,13]],[[46217,83850],[785,41]],[[47002,83891],[366,22]],[[47368,83913],[-46,2047]],[[45980,85887],[50,-2050]],[[76574,63955],[77,-120]],[[76651,63835],[92,-180],[48,50],[182,-3],[96,-158]],[[77069,63544],[78,175]],[[77147,63719],[-29,204],[68,54],[73,199],[125,188]],[[77384,64364],[-122,136],[-144,-89],[-160,220],[-67,21]],[[76696,64537],[-51,-26],[34,-264],[-26,-180],[-79,-112]],[[77609,40496],[75,-15],[-18,-274],[74,-15]],[[77740,40192],[471,-99]],[[78410,40212],[62,837]],[[78472,41049],[-251,70],[8,113],[-125,25],[7,111],[-190,38],[17,225],[-190,36]],[[77748,41667],[-24,-337],[-62,12],[-53,-846]],[[49259,85975],[542,-1229]],[[49801,84746],[36,293],[56,-51],[468,27]],[[50361,85015],[-36,90],[244,509]],[[50569,85614],[-905,1264]],[[75372,39960],[2,57],[161,-23],[10,219],[306,-41]],[[75864,40452],[28,581]],[[75892,41033],[-679,96]],[[75213,41129],[-34,-386],[-126,29],[-59,-762]],[[77663,34954],[154,-42],[-23,-271],[312,-87],[-27,-277],[159,-47]],[[78238,34230],[75,812]],[[78313,35042],[53,585]],[[78366,35627],[-629,170]],[[77737,35797],[-74,-843]],[[47808,62847],[140,289],[-13,373],[56,84],[-19,255],[104,143]],[[48076,63991],[-7,36],[-279,-18],[-3,169],[-57,-4],[22,171],[-437,-26]],[[47315,64319],[-28,-171],[-63,-4],[-5,-678],[-281,-19],[8,-333]],[[57763,26618],[380,-19]],[[58143,26599],[4,276],[379,-20]],[[58526,26855],[17,1055]],[[58543,27910],[-8,0]],[[58535,27910],[-567,30]],[[57968,27940],[-186,10]],[[57782,27950],[-19,-1332]],[[60516,66879],[187,-23]],[[60703,66856],[505,-43]],[[61208,66813],[10,335],[-43,2],[19,714]],[[61194,67864],[8,336]],[[61202,68200],[-645,33]],[[60557,68233],[-14,-336]],[[60543,67897],[-8,-127],[-227,-541],[-36,2],[1,-326],[243,-26]],[[76018,71942],[94,-318],[202,-212]],[[76314,71412],[428,-87]],[[76742,71325],[17,-3],[45,648]],[[76804,71970],[24,345]],[[76828,72315],[-648,136]],[[46163,78233],[-38,1446]],[[44533,79563],[41,-1441]],[[55686,28357],[773,-22]],[[56459,28335],[10,1000]],[[56469,29335],[-768,19]],[[55701,29354],[-8,0]],[[49385,41413],[5,-35]],[[49390,41378],[725,35]],[[50115,41413],[8,1]],[[50104,42755],[-740,-34]],[[49364,42721],[21,-1308]],[[79667,56172],[103,-142],[124,-79],[233,-41],[45,-68]],[[80172,55842],[62,174],[-18,548],[-91,342]],[[80125,56906],[-76,-179],[-324,211]],[[79725,56938],[-58,-481],[0,-285]],[[57215,53235],[1,-1009]],[[57972,52473],[-2,336],[39,1],[-2,653]],[[58007,53463],[-793,-3]],[[43142,63859],[661,72]],[[44030,65635],[-168,-18]],[[43082,65533],[60,-1674]],[[28791,9796],[-1,146],[54,367],[-42,234],[-3,263],[101,357],[369,11],[198,171],[23,214],[123,80],[42,146],[346,67]],[[30001,11852],[-114,1212],[96,63],[38,166],[221,122],[-79,806],[196,59]],[[30359,14280],[62,152],[-68,116],[56,154],[148,110],[-13,103]],[[30544,14915],[-150,-104],[-69,135],[-50,635],[-234,-66]],[[30041,15515],[-346,-99],[-115,168],[-76,-43],[-114,52],[28,176],[-153,114],[-61,-42]],[[29204,15841],[48,-578],[47,-105],[-22,-203],[-134,-41],[16,-163],[-186,-57],[50,-505],[-387,-110],[132,-1293],[-388,-132],[120,-1154],[-81,-34],[-2,-406]],[[28417,11060],[49,-238],[-32,-236],[136,-73],[32,-92],[48,-406],[-22,-133],[163,-86]],[[58132,49660],[10,-1283],[-9,-155]],[[58133,48222],[1,-55]],[[58134,48167],[756,18]],[[58890,49093],[-1,630]],[[58889,49723],[-380,-1],[-1,112],[-377,-6]],[[58131,49828],[1,-168]],[[44748,67550],[56,-1841]],[[26280,13977],[752,250]],[[27032,14227],[-6,277],[-134,289],[18,247],[66,327],[-33,286],[46,77],[-125,170],[9,253],[45,162],[-100,215],[166,108],[17,222],[115,197],[88,23]],[[27204,17080],[1,6]],[[26459,17822],[-113,-63],[-18,167],[-82,54],[-132,229],[-96,49],[-79,-63],[-75,229],[-91,52],[-103,-232],[-46,-216],[-147,-68]],[[25477,17960],[49,-143],[-21,-136],[106,-77],[21,-127],[-77,-301],[134,-253],[135,43],[45,-104],[-42,-222],[48,-62],[-82,-184],[-10,-203],[69,-171],[-80,-136],[28,-156],[106,12],[13,-381],[65,-35],[47,-370],[92,-185],[-16,-222],[81,-9],[104,-504],[-12,-57]],[[15413,56510],[61,26],[318,-2361],[169,-1303]],[[15961,52872],[1693,673],[1581,600],[7,-59],[153,54]],[[19395,54140],[1408,3678]],[[21377,60757],[-10,153],[-62,33],[-187,235],[-141,97],[-175,55],[-46,94]],[[20756,61424],[-1562,-539],[-20,165],[-2118,-777],[-737,-289],[-14,110],[-500,-193],[-16,-63],[-257,-105],[0,-57],[-323,-127],[-22,169],[-100,26],[-25,174],[-78,-29],[-60,188]],[[14924,60077],[-155,-362]],[[14769,59715],[-19,-123],[88,-153],[62,33],[162,-491],[120,-454],[99,-1024],[132,-993]],[[78401,65685],[94,-66]],[[78495,65619],[39,196],[-28,194],[120,290],[103,159],[96,229]],[[78825,66687],[-94,188]],[[78731,66875],[-55,15]],[[78676,66890],[-128,-79],[-161,-26],[-50,-214],[-66,-115],[-167,-578]],[[78104,65878],[50,-103],[130,-57],[60,-98],[57,65]],[[21949,89903],[209,429],[131,-60]],[[22289,90272],[144,63],[110,110],[96,181]],[[22639,90626],[-279,140],[55,183]],[[22415,90949],[-64,-10],[-71,-286],[-118,-243],[-83,78],[134,181],[9,112],[182,452],[-9,61],[112,317],[23,155],[-129,-48],[-67,-147]],[[21757,90653],[-36,-268],[65,-31],[-46,-166],[209,-285]],[[64080,23890],[312,-36],[14,341]],[[64406,24195],[55,1328]],[[64461,25523],[-416,34],[-552,67]],[[63493,25624],[-734,79]],[[62759,25703],[-44,-1333]],[[12555,97824],[12,-154],[46,127],[-58,27]],[[12482,97489],[66,-76],[-9,284],[-61,-20],[4,-188]],[[12205,97795],[103,-347],[105,47],[-28,107],[-180,193]],[[11969,97232],[71,-101],[58,105],[1,273],[-66,-120],[-51,93],[-13,-250]],[[11495,97411],[39,-75],[103,122],[-75,52],[-67,-99]],[[11244,97611],[53,-64],[33,134],[-45,75],[-41,-145]],[[11020,98205],[7,-58],[198,186],[-52,52],[-153,-180]],[[12910,95377],[-74,176],[-95,-13],[-5,116],[-132,-19],[-5,116],[-132,-20],[-12,232],[40,6],[-24,463],[-32,111],[132,20],[-14,332]],[[12557,96897],[-81,80],[56,-341],[-71,-46],[-115,163],[-153,135],[-72,160],[-139,-94],[-173,196],[-119,-30],[84,-328],[-109,-5],[-66,296],[-96,212],[-60,-41],[26,166],[-90,-84],[-30,163],[-108,-55],[2,-267],[-93,20],[52,124],[-12,221],[-126,31],[-83,-269],[-72,76],[73,152],[-163,152],[80,55],[44,164],[-115,-146],[-123,154],[-220,-68],[-119,89],[-17,84],[-137,62],[-87,-60],[-26,-222],[116,-83],[90,-265],[245,-61],[67,-76],[159,27],[76,247],[28,-326],[160,-22],[112,-158],[240,-460],[211,-226],[282,-107],[153,5],[-65,263],[51,123],[18,-196],[126,51],[6,100],[109,-37],[-147,-228],[109,-343],[261,-358],[124,-86],[256,-267],[24,64]],[[9918,98386],[131,-10],[-15,76],[-116,-66]],[[9732,98128],[27,-56],[91,143],[-77,113],[-41,-200]],[[9532,98209],[111,-63],[74,186],[-174,16],[-11,-139]],[[15204,93819],[41,-103],[60,69],[-2,-172],[158,-206],[-44,-44],[108,-105],[-24,-118],[124,-104],[-60,286],[63,3],[90,167],[61,-77],[-34,266],[-95,-86],[21,114],[-136,-53],[-22,160],[-131,106],[-178,-103]],[[14814,95861],[113,-100],[60,148],[-118,21],[-55,-69]],[[14644,94754],[64,-192],[167,-201],[100,18],[38,193],[13,-197],[-32,-217],[87,-105],[62,78],[99,-25],[-52,-152],[149,129],[-88,-167],[175,75],[-6,121],[72,-20],[98,-147],[75,287],[-60,-38],[-7,239],[129,-34],[-73,268],[-168,-105],[61,163],[-89,160],[-159,63],[139,91],[-143,104],[-35,115],[-44,-119],[22,-151],[-139,441],[-90,126],[-104,34],[126,-263],[-54,-17],[71,-272],[-206,417],[-94,-196],[-1,-238],[-103,-266]],[[14625,96003],[116,-221],[60,63],[-176,158]],[[14212,96805],[70,-113],[-3,201],[-67,-88]],[[14845,93031],[195,0],[0,-117],[71,0],[0,-155],[151,-2]],[[15262,92757],[-73,196],[-93,133],[-90,19],[-61,145],[23,152],[-91,327],[-98,99],[-103,2],[-164,132],[7,119],[-94,44],[7,143],[-97,-88],[-82,315],[-127,-26],[6,168],[-77,-51],[-146,237],[90,-55],[-13,236]],[[13986,95004],[-164,-15],[60,-227],[108,-244],[98,22],[27,-98],[103,-15],[56,-264],[150,-99],[5,-426],[132,-127],[219,-90],[66,-132],[-1,-258]],[[13558,95803],[34,-53],[115,65],[-149,-12]],[[12910,95377],[92,23],[8,-256],[132,-318],[134,-147],[166,-260],[7,-212],[67,-540],[77,-54],[-57,-145],[48,-302],[82,-142]],[[13781,92672],[22,-130],[-105,177]],[[13698,92719],[10,-322],[-25,-236],[69,-110],[132,10],[42,-230],[69,-112],[132,8],[66,-113],[28,-1628]],[[14221,89986],[955,18]],[[15176,90004],[19,581],[-49,1],[2,465],[-49,1],[1,465],[-114,117],[0,233],[-67,117],[-112,-1],[-1,233],[-132,-2],[19,233],[-2,465],[20,117],[134,2]],[[13986,95004],[-88,231],[-139,30],[-140,239],[-70,-133],[-85,205],[45,85],[-95,36],[-35,-97],[-67,134],[12,136],[-99,-74],[-94,40],[-75,182],[152,167],[-159,166],[-21,150],[-58,-166],[-5,187],[-83,-70],[-28,88],[-258,72],[-39,285]],[[17308,91326],[75,-299],[103,-179],[58,-326],[112,60],[-147,356],[-47,170],[46,59],[-200,159]],[[17268,90713],[43,-321],[77,-154],[-44,583],[-76,-108]],[[16997,89160],[459,-75],[93,-76],[-77,-1039],[197,-38],[-57,-807],[-48,-412]],[[17564,86713],[128,-92],[328,-72],[9,115],[199,-29],[497,-133],[61,148],[-50,241],[76,63],[-42,170],[126,31],[23,-160],[145,-4],[12,114],[129,78],[48,458],[58,45],[30,281],[295,-98]],[[19636,87869],[227,1992]],[[19863,89861],[-85,-30],[-215,71],[-12,-115],[-522,159],[-202,733],[4,49]],[[18831,90728],[-116,16],[-128,306],[42,-206],[73,-155],[62,-18],[-99,-108],[-244,-49],[59,-74],[-90,-38],[35,-191],[-144,213],[-197,-177],[-77,43],[75,-189],[-138,182],[18,139],[-112,73],[-73,131],[-51,-136],[28,-190],[61,16],[235,-232],[-52,-143],[-97,142],[42,-170],[-164,120],[-81,-68],[184,-179],[-135,77],[-83,-183],[35,-225],[-117,271],[-48,-239],[-29,256],[-69,86],[-48,-100],[-78,202],[-154,53],[54,-382],[-113,228],[-21,208],[98,20],[-65,366],[83,-174],[65,194],[-56,288],[131,221],[-77,173],[-82,21],[-48,-271],[-25,268],[-54,15]],[[17046,91159],[-22,-641],[-38,6],[-17,-426],[-33,4]],[[16936,90102],[-4,-155],[99,-14],[-34,-773]],[[50216,29284],[565,23]],[[50781,29307],[-12,1350]],[[17483,17060],[769,331]],[[18252,17391],[972,416]],[[19224,17807],[117,92],[-10,84],[124,-60],[82,151],[82,45]],[[19619,18119],[19,87],[-63,271],[-81,-36],[-59,435],[-109,-48],[-177,93],[-73,-31],[-1,153],[227,235],[32,188],[-129,177],[-36,243],[-80,11],[-47,180],[25,120],[-110,110],[-76,215],[15,67],[383,155]],[[19279,20744],[-104,809]],[[19175,21553],[-551,-231],[-348,-177],[-46,324],[-1287,-550]],[[16943,20919],[192,-1293]],[[17135,19626],[285,-1915],[-29,-13],[92,-638]],[[75210,42872],[-20,-450]],[[75190,42422],[701,-100]],[[75891,42322],[40,900],[188,-18]],[[76119,43204],[11,333]],[[76130,43537],[-432,59],[1,-103],[-460,70]],[[75239,43563],[-29,-691]],[[78366,35627],[76,813]],[[78442,36440],[52,557],[-137,37]],[[78357,37034],[-500,134]],[[75671,76242],[485,-101]],[[76156,76141],[26,413],[97,225],[49,878]],[[76328,77657],[-375,45]],[[75953,77702],[-185,22]],[[94864,97498],[86,-47],[168,78]],[[95118,97529],[128,66]],[[95246,97595],[-42,122],[-146,-49]],[[95058,97668],[-107,28]],[[94951,97696],[-154,-117]],[[94797,97579],[67,-81]],[[80542,47213],[-30,-458],[41,25],[123,-242]],[[80676,46538],[188,-388],[150,13],[245,-435],[67,-743],[93,72],[5,124],[98,27],[22,-107],[69,80]],[[81613,45181],[29,161],[-39,127]],[[81603,45469],[7,295],[-46,98],[32,236],[-63,322],[-92,220],[38,139]],[[81479,46779],[-75,126],[-126,462],[41,84],[-41,182]],[[81278,47633],[-245,103],[-98,106],[-166,7],[-192,-209],[-35,-427]],[[94407,96807],[117,239]],[[94524,97046],[-89,62]],[[94435,97108],[-95,-252],[67,-49]],[[53465,18730],[164,1],[-3,-332]],[[53626,18399],[1119,3],[412,-12]],[[55157,18390],[14,334],[5,995]],[[55176,19719],[17,330],[3,669]],[[54243,20725],[-758,-4]],[[53485,20721],[2,-663],[-23,0],[1,-1328]],[[74181,61410],[531,-112]],[[74712,61298],[342,-71]],[[75054,61227],[-78,155],[145,221],[-60,178],[24,141],[85,3],[2,285],[-75,326]],[[75097,62536],[-42,186]],[[75055,62722],[-19,-55]],[[75036,62667],[-1,-81],[-111,-76],[-14,-205],[-136,-317],[-205,-151],[-348,81]],[[74221,61918],[-40,-508]],[[53149,12864],[581,12],[762,-6]],[[54492,12870],[3,577],[15,0]],[[54510,13447],[2,328]],[[65240,44202],[128,31],[28,561],[190,-21]],[[65586,44773],[50,1186],[-192,13]],[[65444,45972],[-658,81],[-31,-676]],[[64755,45377],[-20,-449],[95,-10],[-7,-166],[90,-9],[-12,-302],[49,71],[68,-124],[84,-25],[87,-205],[51,44]],[[70409,38645],[427,-95]],[[70836,38550],[12,171],[65,-13]],[[70913,38708],[93,1336]],[[71006,40044],[-372,75]],[[70634,40119],[-123,26],[-93,-1333]],[[31688,47319],[1151,269],[49,-643]],[[32888,46945],[1483,323]],[[34371,47268],[-98,1405],[-229,-48]],[[34044,48625],[7,-116],[-842,-182],[41,79],[15,231],[127,28],[116,166],[-35,251],[-32,-6]],[[33441,49076],[-1598,-376],[-229,-47]],[[64092,77012],[538,-58]],[[64630,76954],[48,1338]],[[64678,78292],[-164,19]],[[64137,78351],[-45,-1339]],[[46446,11118],[10,-329],[958,85],[-8,330],[191,14]],[[47597,11218],[-17,656],[58,5],[-34,1322],[59,4],[-18,660]],[[47645,13865],[-575,-45]],[[47070,13820],[-574,-55]],[[46496,13765],[21,-659],[-66,-6],[42,-1319],[-68,-6],[10,-329]],[[60191,40496],[759,-62]],[[60950,40434],[8,337]],[[60958,40771],[25,828]],[[60983,41599],[-22,-57],[-353,57]],[[60216,41648],[-25,-1152]],[[62934,44548],[194,-16],[4,138],[187,-19],[9,338],[125,100],[14,448]],[[63467,45537],[-469,42]],[[62998,45579],[2,-147],[-134,-542],[68,-342]],[[76077,69305],[301,-472]],[[76768,69162],[33,163],[-121,272],[-44,-3],[31,292]],[[76667,69886],[-197,-64]],[[76470,69822],[-65,9],[-145,-108],[-174,-306],[-9,-112]],[[96543,97704],[177,41],[77,-139]],[[96888,97832],[-3,10]],[[96885,97842],[-159,71],[-21,198],[-56,-50]],[[96649,98061],[-76,15],[-46,-189]],[[72551,27438],[70,979]],[[72621,28417],[20,332],[-314,69],[4,59]],[[47820,47333],[919,53]],[[48739,47386],[17,1]],[[48756,47387],[-39,1682]],[[48717,49069],[-922,-54]],[[47772,49013],[48,-1680]],[[45860,9342],[542,55],[1377,116]],[[47779,9513],[-28,1058],[55,5],[-17,656]],[[47789,11232],[-192,-14]],[[71586,37561],[631,-155]],[[72222,37478],[69,1007]],[[72309,38741],[-442,108]],[[71867,38849],[-429,88]],[[71438,38937],[-22,-338]],[[71416,38599],[-48,-665],[47,-10],[-17,-325]],[[53830,45859],[415,0],[0,-336]],[[54245,45523],[377,-2]],[[54622,45521],[-8,902]],[[54614,46423],[-32,0],[2,784]],[[54584,47207],[-753,1]],[[53831,47208],[-1,-1349]],[[60950,40434],[-22,-1008]],[[60928,39426],[378,-29]],[[61306,39397],[189,-11],[9,335]],[[61504,39721],[26,1007],[-62,4]],[[61468,40732],[-510,39]],[[69368,42179],[751,-140]],[[70119,42039],[63,977]],[[70182,43016],[-144,33]],[[69425,43161],[-57,-982]],[[12073,32664],[24,99],[-39,269],[138,111],[46,144],[-99,343],[-124,10],[-22,162]],[[11997,33802],[-43,99],[-105,36],[-122,-59],[-40,152],[-85,88],[-41,153],[-91,-51],[-122,251],[-100,42],[-388,-186],[-66,141],[11,177]],[[10805,34645],[-1434,-715]],[[9371,33930],[-7,-192],[55,-224],[54,-11],[15,-236]],[[9488,33267],[-16,-89],[48,-385],[-17,-191],[57,-136],[22,-209],[-112,-241]],[[70634,40119],[22,330]],[[70656,40449],[-496,102]],[[70160,40551],[-86,-1330]],[[47956,18510],[706,53]],[[48662,18563],[625,42]],[[49287,18605],[-25,1322]],[[49262,19927],[-1281,-79]],[[47981,19848],[-59,-6],[34,-1332]],[[55286,59323],[158,-2],[-2,-336],[189,-4]],[[55631,58981],[376,-6]],[[56007,58975],[8,1005],[-18,0],[7,1012]],[[56004,60992],[-567,10]],[[55437,61002],[-3,-671],[-245,2]],[[55189,60333],[60,-147],[-90,-203],[4,-232],[94,-175],[29,-253]],[[47699,27819],[79,257],[183,-11],[176,143],[67,-3],[7,-173],[-133,-99],[55,-170]],[[48594,28880],[3,161],[67,127],[-97,255],[-71,64],[-1,266],[-79,66],[-7,119],[133,4],[50,295],[86,196],[-26,119]],[[48652,30552],[0,1]],[[48277,30529],[-140,-68],[18,-870],[-129,-42],[-71,150],[-80,-5],[-108,127],[-60,-96],[-162,13],[-6,-59],[-164,74],[-183,-124]],[[47192,29629],[-79,60],[-91,-85]],[[47022,29604],[12,-499],[-42,-3],[31,-1233]],[[47023,27869],[2,-99],[674,49]],[[54558,15422],[8,1324]],[[54566,16746],[-776,2]],[[53790,16748],[-1,-1320]],[[62759,25703],[34,997]],[[62793,26700],[-760,83],[-10,-333],[-189,17],[-10,-331]],[[61824,26136],[-30,-998]],[[61794,25138],[-22,-665]],[[45173,48790],[526,51]],[[45699,48841],[222,18]],[[45879,50540],[-715,-65]],[[45164,50475],[-38,-4]],[[45126,50471],[47,-1681]],[[53298,9742],[1587,1]],[[54885,9743],[29,356],[96,85],[142,-53],[68,-98],[7,784],[-371,5],[3,654]],[[54859,11476],[-383,9]],[[54476,11485],[-1156,-21]],[[53320,11464],[2,-653],[-26,0],[2,-1069]],[[58909,60537],[378,-4]],[[59287,60533],[250,-6]],[[59537,60527],[7,669],[-64,3],[4,333]],[[59484,61532],[14,1118],[-74,13]],[[59424,62663],[-223,41],[-39,175],[-71,-31],[9,-199],[-93,-1],[-50,-209],[-82,-137],[-82,-16],[-59,-152]],[[58734,62134],[-38,-37]],[[58696,62097],[-3,-550],[128,-1],[-4,-503],[95,0],[-3,-506]],[[69257,17786],[-42,-702]],[[69215,17084],[107,15],[314,-35],[157,-52],[349,-357]],[[70142,16655],[126,1932]],[[70268,18587],[-950,185]],[[69318,18772],[-61,-986]],[[58889,49723],[1,1031]],[[58890,50754],[-3,296],[40,1],[-2,476]],[[58925,51527],[-753,-4]],[[58131,51007],[0,-1179]],[[59537,60527],[317,-3],[-4,-279],[377,-16]],[[60227,60229],[3,280],[315,-6]],[[60545,60503],[9,1344]],[[60554,61847],[-407,9]],[[60147,61856],[-3,-335],[-660,11]],[[87151,48396],[128,215],[206,214]],[[87485,48825],[57,77],[128,-82],[21,232]],[[87691,49052],[30,215]],[[87721,49267],[-62,71]],[[87659,49338],[-42,-8],[-134,-258],[-102,-129],[-42,41]],[[87339,48984],[-27,-86],[-110,-13]],[[87202,48885],[-51,-144],[-84,-22]],[[87067,48719],[-54,-234],[138,-89]],[[59652,55329],[756,-20]],[[60408,55309],[283,-7]],[[60691,55302],[11,1013],[-28,1]],[[60674,56316],[-1139,28]],[[59535,56344],[-252,3]],[[26694,5073],[944,328]],[[27638,5401],[42,355],[-68,48],[119,321],[74,-88],[168,65],[14,273],[63,245],[-111,356],[184,197],[105,15],[94,174],[-55,329],[83,168],[79,13],[22,159],[-93,139],[41,129]],[[28399,8299],[139,287],[-22,289],[61,1],[67,164],[107,-12],[64,93]],[[28815,9121],[26,228],[91,198],[22,216],[-60,93],[-103,-60]],[[28417,11060],[-472,-168]],[[27945,10892],[-246,-80]],[[27699,10812],[67,-222],[26,-217],[-54,-12],[-26,-337],[56,-282],[-88,-290],[-132,-150],[-32,-295],[-210,-69],[-84,82],[33,245],[-662,-221],[-51,647],[-185,-63]],[[26357,9628],[36,-319],[-563,-185],[57,-485],[-25,-64]],[[25862,8575],[77,-779],[249,87],[147,-1290],[-56,-19],[37,-316],[359,124],[-67,-100],[38,-163],[93,-37],[-51,-237],[-83,-68],[72,-100],[2,-371],[64,-111],[-49,-122]],[[42811,69066],[946,80]],[[43757,69146],[-57,1666]],[[43700,70812],[-245,-28]],[[43455,70784],[-705,-68]],[[42750,70716],[61,-1650]],[[61587,52403],[380,-25],[5,336],[271,-13]],[[62243,52701],[10,421]],[[62253,53122],[-272,6],[6,338],[179,-3],[8,334]],[[62174,53797],[-752,34]],[[61422,53831],[-188,10],[-17,-674],[-93,7]],[[61124,53174],[-14,-742],[477,-29]],[[46163,78233],[961,70]],[[47124,78303],[-13,562],[224,15]],[[47335,78880],[-17,880]],[[47318,79760],[-1193,-81]],[[46036,74403],[-797,-76]],[[61444,55274],[-6,-770],[-16,-673]],[[62174,53797],[63,-3],[10,394],[36,219],[63,-4],[1,213],[163,102],[37,281]],[[62547,54999],[-345,68],[13,780]],[[62215,55847],[-759,45]],[[61456,55892],[-12,-618]],[[44071,75891],[59,-1672]],[[44130,74219],[149,14]],[[44950,74297],[-51,1497]],[[44059,76253],[12,-362]],[[40098,50321],[358,142],[16,41],[370,52],[10,-223],[188,22],[29,-354]],[[41069,50001],[174,22]],[[41243,50023],[-76,1703],[-39,689]],[[41128,52415],[-1124,-161],[12,-350]],[[40016,51904],[82,-1583]],[[43757,69146],[944,82]],[[44701,69228],[-50,1641]],[[44651,70869],[-247,2]],[[44404,70871],[-704,-59]],[[38143,46199],[498,83]],[[38641,46282],[-47,1004],[-64,-13],[-24,268],[225,47],[-37,564]],[[38694,48152],[-505,-76],[15,-188],[-155,-28]],[[38049,47860],[92,-1661]],[[38141,46199],[2,0]],[[24443,7293],[25,189],[79,109],[45,-119],[215,-71],[110,-116],[66,240],[-45,108],[51,186],[-14,195],[103,418],[-44,134],[43,151],[197,88],[100,-23],[45,123],[141,-53],[103,-348],[199,71]],[[26357,9628],[10,172],[-60,539],[342,115],[13,177],[-56,44],[-55,206],[130,-6],[-125,369],[81,159],[126,43],[-73,649],[6,171]],[[26696,12266],[-157,-5],[-84,-153],[22,-64],[-147,-172],[-141,-230],[-174,-136],[-40,62],[-124,-98]],[[25851,11470],[-54,-131],[-180,-120],[21,-314],[-404,-498],[-42,45],[-134,-100],[-70,49],[-108,-154],[-19,70],[-138,-66]],[[24723,10251],[-82,-53],[2,-163],[-59,-128],[102,-119],[-42,-245],[37,-149],[-131,-277],[3,-279],[-64,-82],[-129,-553],[-25,-25]],[[24335,8178],[108,-885]],[[47195,72824],[33,2]],[[48145,72882],[-39,1671]],[[47963,74546],[-808,-58]],[[46611,69385],[-37,1682]],[[46574,71067],[-285,-21]],[[45602,70980],[49,-1671]],[[50163,61950],[140,5],[110,126],[61,-26],[325,125],[117,-43]],[[50916,62137],[-17,1843],[5,11]],[[50904,63991],[-7,669]],[[50897,64660],[-755,-25]],[[50144,63965],[19,-1344],[0,-671]],[[55152,69721],[4,-4]],[[55156,69717],[92,39],[238,-87]],[[55486,69669],[6,1365]],[[55492,71034],[-47,82]],[[55445,71116],[-37,199],[-250,1]],[[55158,71316],[-6,-1595]],[[53749,71801],[262,5]],[[54011,71806],[130,231],[125,6],[157,114],[94,131],[45,-35]],[[54562,72253],[75,128]],[[54637,72381],[3,796],[171,270],[98,207]],[[54909,73654],[-1159,-4]],[[53750,73650],[-1,-1849]],[[47307,41246],[467,33],[91,64]],[[47838,42629],[-751,-53]],[[47087,42576],[8,-337],[188,15],[24,-1008]],[[50873,41441],[754,21]],[[51627,41462],[-11,1343]],[[51616,42805],[-752,-22]],[[50864,42783],[-5,-1]],[[53345,71249],[6,-1425]],[[53351,69824],[797,-220]],[[54148,69604],[-5,732]],[[54143,70336],[0,922]],[[54143,71258],[-152,-1],[-77,398],[97,151]],[[53749,71801],[-405,-14]],[[53344,71787],[1,-538]],[[53437,78961],[132,-79],[230,-282],[138,-92],[396,-9]],[[54333,78499],[203,56],[41,161],[-87,193],[81,231],[39,-15]],[[54149,79382],[-576,157]],[[53573,79539],[-84,-339],[29,-78],[-81,-161]],[[51072,66177],[9,-839]],[[51081,65338],[378,11]],[[51459,65349],[-5,503],[546,14],[36,166],[172,3]],[[52208,66035],[-4,617]],[[52204,66652],[-63,-1],[-4,391]],[[52137,67042],[-1069,-25]],[[51068,67017],[4,-840]],[[83820,44113],[134,-112],[80,-373]],[[84034,43628],[66,113],[138,91],[47,254],[145,74]],[[84430,44160],[-216,459],[-113,338],[-98,-13]],[[84003,44944],[-217,-301]],[[83786,44643],[27,-105],[-48,-185],[55,-240]],[[69829,63391],[376,350],[216,76]],[[70421,63817],[149,-173],[74,130],[113,-136],[94,124]],[[70851,63762],[-17,680],[14,255]],[[70848,64697],[-950,124]],[[69898,64821],[-69,-1430]],[[83622,45503],[34,-222]],[[83656,45281],[40,87],[43,312],[171,296],[104,-15]],[[84014,45961],[-98,380]],[[83916,46341],[-534,-196]],[[83382,46145],[162,-276],[78,-366]],[[12581,86964],[21,-346],[65,11],[13,-348],[72,-104],[131,22],[73,-222],[66,10],[17,-347],[-70,-11],[43,-925],[61,10],[12,-231],[66,10],[19,-462],[66,9],[13,-347],[-66,-9]],[[14584,80509],[557,5],[501,-19],[488,-40],[428,-53],[730,-129],[-46,-659],[645,-155],[762,-232]],[[18649,79227],[396,3471]],[[19045,82698],[-86,212],[0,110],[-126,286],[-80,-7],[-189,262],[-2,227],[-77,75],[-113,244],[41,178],[-57,217],[-132,13]],[[18224,84515],[-29,-153],[35,-373],[-31,-57],[-147,101],[-178,-32],[-198,174],[-24,-197],[-107,-33],[-50,-112],[41,-109],[-66,-59],[-111,48],[-1,109],[-98,93],[-132,38],[-82,107],[-356,54],[43,832],[30,-47],[185,340]],[[16948,85239],[-892,89],[-173,497],[-174,-86],[-83,102],[1,232],[-59,3],[4,232],[-220,8],[25,406],[133,53],[2,163],[-192,618]],[[15320,87556],[4,583]],[[15324,88139],[-24,117],[-116,2],[1,117],[-132,1],[0,116],[-758,-16],[-430,-27],[3,-117],[-526,-52],[-4,116],[-264,-34],[-5,116],[-457,-70]],[[79648,40679],[331,-266],[218,-72],[84,52],[106,-113],[31,112],[81,-43]],[[80499,40349],[-9,99],[88,-5],[96,257],[-25,141],[69,186],[-38,59],[52,221]],[[80732,41307],[-835,243]],[[79897,41550],[-162,45]],[[79735,41595],[-87,-916]],[[61194,67864],[566,-45],[193,19]],[[61953,67838],[195,-5],[17,834]],[[62165,68667],[12,672]],[[62177,69339],[-972,41]],[[61205,69380],[-45,-502],[58,-6],[-16,-672]],[[64537,67832],[-11,-337],[286,-33],[93,-64],[-10,-285]],[[64895,67113],[283,-29],[5,115],[474,-56]],[[65679,67702],[7,170]],[[65686,67872],[-508,63]],[[65178,67935],[-618,67]],[[64560,68002],[-23,-170]],[[80649,51455],[-71,193]],[[80578,51648],[-35,-140],[106,-53]],[[80667,51457],[0,0]],[[58265,42602],[849,-56],[3,167]],[[59117,42713],[21,1177]],[[59138,43890],[-844,61]],[[58294,43951],[-23,-899]],[[58271,43052],[-6,-450]],[[78125,50663],[111,-172]],[[78236,50491],[79,145],[192,-6],[135,-125],[47,85],[133,33],[111,-60],[62,119],[51,-75],[163,112]],[[79209,50719],[-58,355]],[[79151,51074],[-71,271],[-53,24],[-171,295],[-200,74],[-118,-115]],[[78538,51623],[-50,-131],[-162,-5],[-173,-318],[-16,-213],[-118,-127],[106,-166]],[[86450,58109],[58,-61],[245,-26],[265,149],[49,-137],[118,12],[108,176],[67,214],[64,80]],[[87424,58516],[130,219],[35,291]],[[87589,59026],[-210,282],[-122,246],[-303,478]],[[86954,60032],[-118,-100],[-288,-862]],[[86548,59070],[-25,-242],[-10,-542],[-63,-177]],[[56233,45130],[665,-14]],[[56898,45116],[5,844]],[[56903,45960],[-1,279]],[[56902,46239],[-657,14]],[[56245,46253],[-3,-286]],[[56242,45967],[-9,-837]],[[72815,79469],[47,-91],[153,-27],[50,-126],[689,-115],[-29,-499],[97,-19]],[[73822,78592],[96,-16]],[[73918,78576],[79,1395]],[[73997,79971],[70,1051]],[[74067,81022],[-77,-83],[-120,-21],[-110,-112],[-103,-210],[-215,-118],[-163,-198],[-208,-190],[-235,-162]],[[72836,79928],[-21,-459]],[[96770,96575],[18,368],[40,173]],[[96828,97116],[-133,68]],[[96695,97184],[26,-555]],[[97165,96712],[103,-22],[5,117]],[[97273,96807],[-1,322],[66,71]],[[97338,97200],[-34,78]],[[97304,97278],[-137,-58]],[[97167,97220],[32,-193],[-34,-315]],[[96330,96847],[85,144]],[[96415,96991],[-38,276],[-36,32]],[[96341,97299],[-78,30]],[[96263,97329],[-56,-201]],[[15071,4945],[578,294],[1256,583]],[[16905,5822],[39,279],[-97,66],[-38,328]],[[16809,6495],[-165,31],[-172,248],[-218,154],[-76,482],[121,88],[-68,191],[62,79],[-8,247],[-178,35],[24,132]],[[16131,8182],[-1,1]],[[14765,6599],[151,-35],[25,-158],[2,-354],[-29,-388],[122,0],[-85,-309],[124,-216],[-4,-194]],[[14633,6382],[72,-321],[93,-198],[33,192],[-42,213],[81,114],[-143,108],[-100,-10],[6,-98]],[[17367,4013],[-87,-127],[66,-150],[-16,-116],[62,-128],[-20,-120],[58,-111],[124,41],[18,-109],[142,-4],[109,202],[103,-41]],[[17926,3350],[77,30],[-64,288],[6,216],[71,107],[-35,217],[100,110],[34,140],[134,310],[-42,148],[181,424],[79,87],[79,440],[255,115]],[[18801,5982],[6,75],[-102,114],[-27,140],[-68,35],[-85,214],[-295,-47],[-66,112],[12,166],[-82,161],[-14,128],[-119,179],[-81,282],[10,256],[213,201],[48,129],[-54,277]],[[18097,8404],[-411,-181],[-143,-282],[-108,-27],[0,-100],[-122,-87],[-70,-227],[-84,-155],[-65,13],[-105,-136],[4,-93],[-156,-442],[-28,-192]],[[16905,5822],[89,-127],[-86,-120],[-22,-187],[92,-316],[54,-50],[-26,-161],[59,-52],[162,-4],[110,-103],[4,-111],[81,-130],[-75,-353],[20,-95]],[[81467,80480],[376,-113],[92,-170],[103,-57]],[[82038,80140],[293,862]],[[82331,81002],[-97,89],[61,544],[-506,156],[-53,-521],[-24,11]],[[81712,81281],[-81,29],[-35,-180],[-83,-190],[-46,-460]],[[18097,8404],[7,146],[97,66]],[[18201,8616],[-44,349],[-90,175],[29,139],[13,382],[-44,314],[32,178],[-111,265]],[[17986,10418],[-786,-359],[51,-319],[-183,-88],[48,-318],[-573,-263],[-46,-336],[-222,-489],[-124,12],[-20,-76]],[[81955,83586],[0,184],[-62,108],[30,275],[245,-62],[11,109],[650,-188]],[[82829,84012],[61,26],[66,219],[115,110],[30,115],[-45,162],[104,302]],[[83160,84946],[-1524,415]],[[81636,85361],[-141,-1582],[16,-78],[444,-115]],[[76742,71325],[136,-472],[47,-8]],[[77240,71273],[-43,98],[173,235],[-64,297]],[[77306,71903],[-153,-69],[-31,68],[-318,68]],[[63072,77218],[207,-125],[654,-64]],[[63933,77029],[159,-17]],[[64101,78355],[-486,49]],[[63615,78404],[-440,42]],[[63175,78446],[-31,-1084],[-72,-144]],[[48182,22495],[1512,98]],[[49694,22593],[-18,1328]],[[49676,23921],[-1316,-82]],[[48360,23839],[-210,-16]],[[48150,23823],[32,-1328]],[[66553,37648],[61,1002]],[[66614,38650],[3,337]],[[66617,38987],[-547,99]],[[48705,52434],[931,50]],[[49636,52484],[7,355]],[[49643,52839],[-14,1010]],[[48681,53804],[17,-1013]],[[57880,31557],[755,-38]],[[58635,31519],[3,164]],[[58638,31683],[19,1173]],[[52408,38570],[142,53],[119,-35],[90,94],[201,-26],[160,154]],[[53120,38810],[80,113],[22,191],[93,191],[-24,120],[62,170]],[[53353,39595],[26,288],[-47,126],[33,145]],[[53365,40154],[-50,115],[-188,-5]],[[53127,40264],[0,-112],[-732,-13]],[[52395,40139],[13,-1569]],[[59727,63869],[159,-3],[1,336],[183,-1],[7,279],[196,54],[0,174],[171,-6],[6,167],[188,-7],[5,336]],[[60643,65198],[-284,10],[2,169],[-333,7],[-60,168],[-79,1]],[[59889,65553],[-35,-225],[-96,3],[-1,-114],[-99,5]],[[59658,65222],[-33,-333],[-124,5],[-1,-170],[-187,2],[9,-521],[-189,12]],[[59133,64217],[-4,-332],[437,-14],[162,95],[-1,-97]],[[63943,27259],[-199,16]],[[63744,27275],[-41,-1007],[-184,19],[-26,-663]],[[55463,53146],[812,-11]],[[56275,53135],[0,75]],[[56285,54327],[1,99]],[[56286,54426],[-793,11]],[[55493,54437],[-24,-169]],[[50079,72804],[830,41]],[[50909,72845],[-6,910]],[[50903,73755],[-310,-1],[-305,309]],[[50288,74063],[-214,-1077]],[[50074,72986],[5,-182]],[[53287,49887],[4,-838]],[[53291,49049],[692,1]],[[53983,49050],[-8,1177]],[[53975,50227],[1,673],[-15,343]],[[41105,29853],[1670,234]],[[42775,30087],[-78,1825]],[[42697,31912],[-804,-108]],[[41893,31804],[-875,-124]],[[41018,31680],[87,-1827]],[[35544,13039],[198,59],[173,-31],[194,160],[30,226],[-33,221]],[[35968,15941],[62,204],[8,177]],[[36038,16322],[-1208,-246]],[[34830,16076],[27,-330],[29,7],[79,-985],[-191,-45],[26,-321],[25,6],[26,-327],[190,45],[11,-137],[379,81],[33,-20],[80,-1011]],[[69361,42042],[-46,-837]],[[69315,41205],[527,-90]],[[69842,41115],[110,-19],[9,167],[113,36]],[[70074,41299],[37,606]],[[70111,41905],[8,134]],[[69368,42179],[-7,-137]],[[50945,16358],[383,14]],[[50807,18674],[-614,-27]],[[50193,18647],[19,-1327],[-42,-1],[15,-992]],[[90035,18019],[275,111],[-50,374],[190,113]],[[90450,18617],[-48,329]],[[90402,18946],[-44,348],[-188,-140],[-44,340],[-258,-100]],[[89868,19394],[-55,-6],[28,-197],[-63,-155],[-187,-238]],[[89591,18798],[69,-338],[94,34],[27,-384],[192,-143],[62,52]],[[75569,67673],[72,-60],[38,-211],[119,-78],[-25,-120],[79,-160]],[[75852,67044],[131,265]],[[75983,67309],[125,462],[3,239]],[[76111,68010],[-73,-62],[-332,65]],[[75706,68013],[-149,32]],[[75557,68045],[12,-372]],[[63744,27275],[-279,25]],[[63465,27300],[-643,72]],[[62822,27372],[-29,-672]],[[57153,33936],[-12,-1011]],[[47335,78880],[738,43]],[[48073,78923],[-2,73],[241,15]],[[48312,79011],[-29,1620]],[[47641,80589],[-341,-20],[18,-809]],[[56282,72489],[6,886],[111,87],[117,10]],[[56516,73472],[-39,135],[-69,-38],[-642,13]],[[55766,73582],[-7,-640]],[[55759,72942],[306,-211],[135,-299],[82,57]],[[66468,68333],[-4,-110],[126,-17]],[[66590,68206],[630,-94],[11,226]],[[67231,68338],[41,841]],[[67272,69179],[-262,37]],[[67010,69216],[-502,66]],[[66508,69282],[-40,-949]],[[13914,37510],[-75,479]],[[13839,37989],[-1045,-470],[-149,39],[-259,207],[-254,265],[-157,312],[-104,-41],[-39,-122],[-94,55],[-140,-153]],[[11598,38081],[114,-729],[47,-147],[79,-2],[44,-115],[165,-177],[178,38]],[[42697,31912],[333,44]],[[43030,31956],[-35,824],[31,3],[-54,1325]],[[42972,34108],[-1080,-131]],[[41892,33977],[-58,-7],[60,-1333],[-36,-5],[35,-828]],[[10023,22270],[-28,164],[208,107],[41,142],[112,100],[170,-74],[145,105],[51,144]],[[10722,22958],[-440,2577]],[[10282,25535],[-448,-218]],[[9834,25317],[-477,-227]],[[9357,25090],[-11,-185],[69,-169],[-19,-202],[84,-73],[69,-190],[-70,-554],[-206,-136],[-6,-109],[99,-181],[21,-193],[188,75],[153,-301],[52,-182],[243,-420]],[[52380,41481],[-3,672]],[[52377,42153],[-9,670]],[[52368,42823],[-752,-18]],[[46842,59149],[-16,673]],[[46826,59822],[-25,1009]],[[46801,60831],[-956,-75]],[[45845,60756],[47,-1685]],[[75335,68147],[228,-9],[-6,-93]],[[75706,68013],[66,973],[-139,92]],[[75633,69078],[-15,-219],[-269,52]],[[75349,68911],[26,-193],[-40,-571]],[[65106,75321],[406,-96]],[[65512,75225],[23,632],[224,168],[105,165],[12,305]],[[65876,76495],[-126,14]],[[65750,76509],[-317,35],[8,169],[-253,26]],[[65188,76739],[-19,-505],[-32,4],[-31,-917]],[[76790,40369],[38,272]],[[76828,40641],[50,832],[-46,155]],[[76832,41628],[-384,30]],[[76448,41658],[-16,25],[-516,70]],[[75916,41753],[-24,-720]],[[42837,63828],[305,31]],[[42916,65514],[-783,-90]],[[42133,65424],[67,-1668]],[[70296,22571],[254,-42],[20,334],[565,-109]],[[71217,23734],[-687,132],[-52,192]],[[70478,24058],[-88,-165],[-93,17]],[[70297,23910],[54,-284],[-1,-716],[-54,-339]],[[47837,43977],[745,46]],[[48582,44023],[187,10]],[[48769,44033],[-30,1674]],[[48739,45707],[-900,-52]],[[47839,45655],[-43,-3]],[[44372,52440],[752,73]],[[45124,52513],[-41,1343]],[[45083,53856],[-754,-75]],[[44329,53781],[43,-1341]],[[30544,14915],[55,82],[-12,240],[44,177],[118,62],[-46,347],[108,192],[-6,219],[126,4],[142,192],[-30,209],[-88,129],[-23,133],[61,118],[5,224]],[[30998,17243],[-369,-84],[-223,428],[-20,248],[-61,-16],[-23,147],[-200,133],[-134,241]],[[29968,18340],[77,-812],[-187,-57],[183,-1956]],[[48612,39993],[756,43]],[[49411,40038],[-21,1340]],[[49385,41413],[-303,127],[-452,-55]],[[48237,41421],[-12,-112],[28,-1336]],[[17206,42771],[642,2125],[-506,3879]],[[17342,48775],[-882,-2308]],[[16460,46467],[-777,-2031]],[[15683,44436],[126,63],[251,-318],[1146,-1410]],[[83173,54190],[181,-50]],[[83354,54140],[353,-100]],[[83707,54040],[35,1464]],[[83742,55504],[-114,45],[-297,29]],[[83331,55578],[-40,-134],[-118,-1254]],[[27685,24889],[34,-326],[837,256]],[[28556,24819],[-34,327],[279,84],[-16,165]],[[28785,25395],[-74,653],[88,-25],[204,414],[88,106],[142,41],[-10,108]],[[29223,26692],[-1397,-414]],[[27826,26278],[-278,-71]],[[27548,26207],[137,-1318]],[[70704,35814],[595,-118]],[[71454,35666],[63,892]],[[70769,36715],[-65,-901]],[[61761,34988],[374,-32]],[[62135,34956],[31,1006]],[[62166,35962],[10,336]],[[61418,36361],[-34,-1342]],[[55362,35655],[377,-4]],[[55739,35651],[371,-8]],[[56110,35643],[11,1334]],[[56121,36977],[-189,6]],[[55932,36983],[-566,8]],[[55366,36991],[-4,-1336]],[[48670,15915],[322,20]],[[48992,15935],[1150,63]],[[50193,18647],[-906,-42]],[[48662,18563],[32,-1329],[-52,-2],[28,-1317]],[[56110,35643],[375,-9]],[[56877,36953],[-189,8]],[[56688,36961],[-567,16]],[[68958,78968],[-46,-257],[63,-232],[77,-72],[-75,-123],[42,-248],[51,-48],[-83,-113],[30,-313],[-73,-149],[56,-230],[-64,-50]],[[68936,77133],[44,-123]],[[68980,77010],[62,12],[125,-232],[18,-128],[114,-102]],[[69299,76560],[87,-35],[85,145],[117,50]],[[69588,76720],[49,944],[31,-5]],[[69668,77659],[24,123],[-66,390],[171,280],[45,157],[249,224],[34,165],[-78,476],[73,193],[88,89],[-100,97],[-34,248],[-80,121],[58,51],[-92,99]],[[69960,80372],[-256,157],[-339,138],[-235,26],[44,-129],[85,72],[235,-124],[15,-113],[-185,-303],[-122,-105],[-66,-290],[44,-199],[-28,-297],[-54,-152],[-140,-85]],[[72054,32980],[189,-41]],[[72243,32939],[736,-167]],[[72979,32772],[15,-4]],[[73090,34117],[-373,73]],[[72717,34190],[-556,129]],[[72161,34319],[-107,-1339]],[[75749,54811],[846,-185]],[[76863,54561],[-193,244],[-111,-54],[-176,236],[-127,312],[27,61],[-141,148]],[[76142,55508],[-132,-67],[-59,40]],[[75951,55481],[17,-183],[-72,-278],[-147,-209]],[[47839,45655],[-42,1676]],[[47797,47331],[-917,-64]],[[46880,47267],[-27,-1]],[[46853,47266],[46,-1678]],[[55473,51744],[2,841],[-13,337]],[[54480,65041],[283,-3],[-1,-335]],[[54762,64703],[816,-9]],[[55578,64694],[219,-5],[5,671]],[[55802,65360],[-197,2],[6,1015],[-189,3],[-7,335]],[[55415,66715],[-1126,12]],[[54289,66727],[-2,-1348],[194,-2],[-1,-336]],[[42115,75682],[57,7]],[[42172,75689],[952,105]],[[43124,75794],[-77,2189]],[[43047,77983],[-984,-134]],[[42063,77849],[5,-429],[47,-1738]],[[47297,23757],[853,66]],[[48360,23839],[-28,1331]],[[48176,25159],[-1138,-85]],[[47038,25074],[-20,-355],[56,-138],[155,61],[-47,-329],[78,-222],[37,-334]],[[48607,42679],[-25,1344]],[[47832,43977],[26,-1347]],[[55615,30691],[95,-3]],[[55710,30688],[654,-16]],[[56364,30672],[9,943]],[[56373,31615],[-750,18]],[[55623,31633],[-8,-942]],[[49506,9624],[1534,67]],[[51040,9691],[-12,1069],[33,1],[-7,660]],[[51054,11421],[-576,-25]],[[50478,11396],[-960,-48]],[[13325,41278],[181,389],[250,-130],[87,66],[-26,166],[79,188]],[[13896,41957],[-38,158],[46,202],[-63,132],[161,309],[37,-50],[50,249],[43,-43],[106,157],[42,165],[-51,291],[153,385],[-50,356],[-138,158]],[[14194,44426],[-46,-174]],[[14148,44252],[-81,-281],[-73,-137],[-105,-35],[-120,-181],[-48,98],[-114,56],[-91,127],[-219,62],[-86,-99],[-122,-18],[-118,-245],[-85,-105],[-101,139],[-86,-90],[-25,93],[-284,41],[28,225],[-43,71],[-82,-172],[-26,188]],[[12267,43989],[-331,-942]],[[11936,43047],[179,-180],[125,-196],[-13,-130],[126,-29],[220,-410],[459,-713],[293,-111]],[[47797,47331],[23,2]],[[46828,48943],[52,-1676]],[[48081,92950],[307,22],[6,-327]],[[49100,94847],[-1051,-60]],[[48049,94787],[32,-1837]],[[97252,97800],[49,-226],[59,-88]],[[97360,97486],[70,-24],[112,127]],[[97542,97589],[-58,95],[-63,301]],[[97421,97985],[-169,-185]],[[65294,23742],[243,-31],[38,998]],[[65575,24709],[-384,49],[-14,-332],[-381,52],[-14,-329]],[[64782,24149],[-16,-340],[528,-67]],[[56469,29335],[192,-6]],[[56661,29329],[13,1335]],[[56674,30664],[-310,8]],[[55710,30688],[-9,-1334]],[[70849,72290],[38,118],[39,-131],[-21,-204],[109,-51],[74,179],[46,-178],[76,76],[224,77]],[[71434,72176],[44,42],[-9,183],[149,129],[48,739]],[[71666,73269],[21,332],[-80,11]],[[70851,73751],[-16,-330],[-93,17]],[[70742,73438],[-40,-677],[180,-29],[-109,-163],[76,-279]],[[72654,48719],[145,-182],[66,57]],[[72865,48594],[135,42],[86,-71]],[[73154,49161],[-223,256],[5,94]],[[72936,49511],[-57,103],[-216,-94]],[[72663,49520],[5,-568],[56,-234],[-70,1]],[[60094,44158],[560,-28]],[[60654,44130],[187,-10]],[[60841,44120],[18,1118]],[[60859,45238],[-568,24],[-8,227],[-178,8]],[[60105,45497],[-11,-1339]],[[52797,58998],[569,-4]],[[53366,58994],[0,333],[473,3],[-7,844]],[[53832,60174],[-281,-2],[-2,841]],[[53549,61013],[-758,-6]],[[52791,61007],[3,-1166]],[[52794,59841],[3,-843]],[[51706,84091],[513,-8]],[[52219,84083],[78,215],[76,-1],[442,930],[-189,271]],[[52626,85498],[-542,759]],[[52084,86257],[-72,-157]],[[52012,86100],[-500,-1082]],[[51512,85018],[76,-469],[-1,-279],[119,-179]],[[65102,28125],[15,337]],[[65117,28462],[43,1002]],[[65160,29464],[-191,26]],[[64969,29490],[-190,29],[-2,-45],[-187,25]],[[64590,29499],[-18,-447],[122,-37],[-56,-172],[-10,-247],[47,-5],[-17,-407]],[[47307,41246],[-399,-31]],[[46908,41215],[32,-1334]],[[70704,35814],[-213,41]],[[70491,35855],[41,-162],[-69,-1035]],[[65613,50347],[-37,-1006]],[[65576,49341],[758,-102]],[[66334,49239],[31,841]],[[66384,50586],[-727,96]],[[65657,50682],[-34,4],[-10,-339]],[[58617,30582],[748,-46]],[[59387,31639],[-749,44]],[[58635,31519],[-18,-937]],[[17302,85295],[217,-75],[32,-120],[157,-152],[65,35],[180,-257],[123,-61],[148,-150]],[[19045,82698],[591,5171]],[[17564,86713],[-25,-419],[-174,38]],[[17365,86332],[-63,-1037]],[[64620,39116],[-13,-328],[180,-20],[25,-264],[106,-95],[173,25]],[[54902,39707],[376,-2]],[[55278,39705],[375,-4]],[[55658,40695],[-753,8]],[[54905,40703],[-3,-996]],[[59411,32814],[757,-51]],[[60168,32763],[24,1018]],[[59432,33831],[-21,-1017]],[[65572,49229],[-28,-899]],[[66280,47886],[32,847]],[[66312,48733],[22,506]],[[65576,49341],[-4,-112]],[[80789,57778],[82,-22]],[[80871,57756],[775,-210]],[[81646,57546],[-252,1315]],[[81394,58861],[-88,-66]],[[81306,58795],[-226,-168],[-74,-286],[-149,-173],[21,-55],[-89,-335]],[[42236,74020],[140,16]],[[43182,74124],[-58,1670]],[[42172,75689],[64,-1669]],[[47629,81405],[-857,-71]],[[46772,81334],[-687,-47]],[[62916,30033],[189,-24],[50,1498]],[[63155,31507],[-111,-117],[-145,-31],[-125,47]],[[62774,31406],[-186,-22],[-188,171]],[[62400,31555],[-34,-963]],[[62366,30592],[-21,-497],[571,-62]],[[44879,60648],[0,24]],[[70379,53086],[534,-151]],[[70913,52935],[215,428],[-1,187]],[[71127,53550],[-5,443],[-70,-18]],[[71052,53975],[-139,-35],[-52,-97],[-104,109],[-223,-307]],[[70534,53645],[-155,-559]],[[71847,44258],[437,-90]],[[72284,44168],[370,-59]],[[72654,44109],[50,832]],[[72704,44941],[-413,76]],[[72291,45017],[-255,46],[-122,180]],[[71914,45243],[-48,-709]],[[71866,44534],[-19,-276]],[[22571,21086],[-1,-336],[92,-451],[-42,-292],[59,-304],[101,-273],[77,-108],[-20,-102],[95,-204],[-59,-201]],[[22873,18815],[58,-178],[58,44],[189,-189],[-9,90],[1945,690]],[[25114,19272],[-50,49],[-53,316],[-24,340],[-33,117],[-16,311],[-172,264]],[[23821,22168],[-85,-63],[-19,160],[-96,136],[-165,48],[-915,-345],[-75,320],[-144,-68]],[[22322,22356],[82,-648],[93,35],[74,-657]],[[84093,46980],[113,-526]],[[84206,46454],[172,-141],[264,46]],[[84642,46359],[62,-20],[237,86],[196,202]],[[85137,46627],[-67,1118]],[[85070,47745],[-191,-89],[-114,-272],[-77,-15],[-58,-118],[-82,-21]],[[84548,47230],[-455,-250]],[[49165,71244],[272,21],[5,-214]],[[50121,71096],[-42,1708]],[[50074,72986],[-750,-37]],[[49324,72949],[-186,-17]],[[49138,72932],[27,-1688]],[[41972,65405],[161,19]],[[41896,67279],[76,-1874]],[[71934,77297],[377,-66]],[[72311,77231],[285,-49]],[[72596,77182],[61,1101],[363,-61]],[[73020,78222],[-33,160],[-84,117],[8,153],[77,142],[-4,141],[58,104],[-68,190],[-116,37],[-43,203]],[[72836,79928],[-185,-99],[-407,-156],[-189,-26]],[[88685,27961],[711,-512]],[[89396,27449],[29,341],[62,317],[-72,259],[8,151],[-54,276]],[[89369,28793],[-170,-127],[-60,51],[-14,297],[-376,83],[-255,-115]],[[88494,28982],[-151,-66],[99,-623],[-28,-12]],[[72536,42257],[-68,-1171]],[[72456,40923],[609,-134]],[[73111,41391],[86,1059]],[[73197,42450],[-98,26]],[[73099,42476],[-543,119]],[[54859,11476],[192,-2],[4,659],[1155,-31]],[[56210,12102],[34,1976]],[[56244,14078],[18,1522]],[[56262,15600],[1,125],[-380,16]],[[55883,15741],[-769,6]],[[55114,15747],[-21,-990],[-3,-755],[-78,-40],[-47,-228],[70,-290],[-525,3]],[[54492,12870],[-1,-729],[-13,0],[-2,-656]],[[70275,26594],[359,-71]],[[70634,26523],[387,-73]],[[53958,53432],[-1,838]],[[53957,54270],[-5,338]],[[53952,54608],[-971,-18]],[[52981,54590],[1,-670]],[[52982,53920],[2,-505]],[[43556,50319],[815,84]],[[44371,50403],[43,4]],[[44414,50407],[-58,1678],[28,3],[-12,352]],[[44372,52440],[-886,-103]],[[43486,52337],[70,-2018]],[[58171,11037],[203,-21],[32,87],[301,238],[137,-22],[0,165],[-91,22],[-18,122],[86,95],[218,-56],[79,172],[-16,187],[159,488],[145,-115],[-60,-255],[62,-150],[83,30],[222,-67],[85,137],[-5,212],[75,118],[95,-25],[46,112],[98,9]],[[60107,12520],[79,2484],[49,2307]],[[60235,17311],[-131,139],[-307,472],[126,301]],[[59923,18223],[-116,-155],[-171,190],[46,59],[-52,142],[-122,-43]],[[58327,17105],[-21,-314],[-25,-1081],[-9,-1239],[-31,1],[-10,-651]],[[58231,13821],[-35,-665],[-25,-2119]],[[60517,38116],[191,-18]],[[60708,38098],[505,-38],[68,331]],[[61281,38391],[25,1006]],[[60928,39426],[-377,26]],[[60551,39452],[-34,-1336]],[[48179,72884],[959,48]],[[49324,72949],[-11,822],[-144,138]],[[49169,73909],[-703,670]],[[48342,82014],[-19,1365]],[[48323,83379],[-487,-462],[-192,-46],[-618,-52]],[[47026,82819],[-168,-15],[17,-632],[-129,-10]],[[46746,82162],[26,-828]],[[82235,29876],[429,-143]],[[82664,29733],[314,-90],[19,163],[187,-50]],[[83184,29756],[58,724],[99,1075]],[[83341,31555],[-729,240]],[[82612,31795],[-161,54]],[[82451,31849],[-216,-1973]],[[43801,67471],[-44,1675]],[[81454,50539],[-3,178]],[[81451,50717],[-68,43],[-89,-91],[134,-185],[26,55]],[[86033,49056],[86,-31]],[[86119,49025],[61,55],[-107,160],[-40,-184]],[[63010,38605],[-13,-500],[154,-236],[225,-137],[6,-160]],[[63382,37572],[527,-55]],[[63909,37517],[17,252],[40,1091]],[[63966,38860],[-5,331],[-191,19]],[[63027,39282],[-17,-677]],[[65433,71925],[-36,-963]],[[65397,70962],[-7,-172],[753,-96]],[[66201,72057],[-9,1]],[[66192,72058],[-750,85],[-9,-218]],[[35289,62206],[466,89],[19,-306],[-167,-45],[21,-332]],[[35628,61612],[941,166]],[[36569,61778],[753,130]],[[37322,61908],[-94,1670],[-40,-8],[-57,996]],[[37131,64566],[-19,334],[-1100,-194]],[[36012,64706],[-879,-163],[42,-689]],[[35175,63854],[20,-314],[-95,-17],[96,-1334],[93,17]],[[42906,40627],[990,114]],[[43896,40741],[-8,201]],[[43852,41933],[-1016,-113]],[[42836,41820],[41,-1026],[29,-167]],[[42645,41797],[191,23]],[[43839,42282],[-49,1332]],[[43790,43614],[-58,1652]],[[43732,45266],[-1263,-124]],[[54111,31640],[755,4]],[[54866,31644],[5,1327]],[[54871,32971],[-755,8]],[[54116,32979],[-5,-1339]],[[66192,72058],[54,1353]],[[66246,73411],[-753,95]],[[65493,73506],[-18,-502],[-134,-886]],[[65341,72118],[92,-193]],[[49395,37363],[11,1]],[[49406,37364],[-21,1333]],[[49385,38697],[-740,-40]],[[80172,55842],[88,-76],[165,-33]],[[80754,55658],[45,762]],[[80799,56420],[-47,720],[119,616]],[[80789,57778],[-219,27],[-63,110]],[[80507,57915],[-41,-207]],[[80466,57708],[36,-293],[-172,-306],[-98,25],[-107,-228]],[[68460,66567],[571,-68]],[[69031,66499],[8,166],[190,-12],[40,672],[190,-18],[18,334]],[[69477,67641],[-379,29],[-57,124],[11,223],[-317,36]],[[68735,68053],[-192,31]],[[68543,68084],[-83,-1517]],[[45979,43834],[909,76]],[[46888,43910],[27,2]],[[46868,45587],[-906,-78]],[[45927,45506],[52,-1672]],[[19619,18119],[105,-189],[112,-63],[77,143],[142,141],[179,-201],[101,197],[8,135],[323,128],[44,-322],[450,174]],[[21160,18262],[729,294]],[[21889,18556],[-124,174],[-36,154],[17,193],[-148,295]],[[21598,19372],[-79,195],[-185,80],[-118,270],[-131,416],[-153,183],[-13,217],[-58,98],[52,256],[-63,113]],[[20850,21200],[-410,-158],[44,-324],[-113,-157],[-18,-121],[-581,-233],[-220,249],[-145,283],[-128,5]],[[68957,64996],[189,-20]],[[69146,64976],[755,-100]],[[69901,64876],[60,1178],[-71,8]],[[69890,66062],[-630,87],[-246,17]],[[69014,66166],[-57,-1170]],[[62284,50739],[540,-50]],[[62824,50689],[182,374],[74,94]],[[63080,51157],[34,1318]],[[63114,52475],[-394,40],[-390,13]],[[62330,52528],[-16,-840],[-30,-949]],[[96824,98126],[52,-28],[79,237]],[[96955,98335],[-105,46]],[[96850,98381],[-26,-255]],[[67928,41203],[-48,-944]],[[67880,40259],[427,-66]],[[68307,40193],[278,-45]],[[68585,40148],[41,666]],[[68626,40814],[21,334]],[[68647,41148],[-716,110]],[[67931,41258],[-3,-55]],[[11083,57627],[162,169],[113,35],[101,191],[116,65],[64,-104],[119,113],[-91,114],[-185,-43],[-117,53],[-255,-196],[23,-195],[-50,-202]],[[10466,57649],[285,58],[91,-23],[-25,131],[109,116],[-13,156],[-286,57],[-70,-124],[-91,-371]],[[10133,57356],[172,-64],[77,233],[-102,-13],[-147,-156]],[[10316,53706],[27,60],[239,-9],[106,66],[195,408],[27,-96],[-9,-330],[260,34],[43,-129],[161,-63],[158,270],[88,39],[136,268],[128,185],[137,74],[189,376],[111,35]],[[12312,54894],[53,23]],[[12365,54917],[-237,1635],[-39,220],[-71,76]],[[12018,56848],[-122,-197],[-195,-97],[-76,49],[-137,-150],[-143,-28],[-206,-297],[-224,-153],[-284,-103],[-306,-63],[-27,-312],[-200,-323],[139,-379],[-25,-266],[97,-302],[-32,-247],[-39,-30],[78,-244]],[[9487,28436],[149,232],[47,279],[186,100],[94,195],[-4,124],[112,42],[76,105],[45,-99],[-10,-165],[-61,-114],[73,-344],[121,-24],[152,55],[43,-60],[365,-237],[74,-78],[79,189],[-69,155],[-36,361]],[[9488,33267],[-979,-497],[16,-92]],[[8525,32678],[439,-2557],[43,-302],[12,-325],[-20,-310],[95,-22],[86,177],[92,-62],[112,-248],[-41,-220],[144,-373]],[[63715,45510],[382,-48]],[[64097,45462],[376,-48]],[[64473,45414],[25,734],[58,1285]],[[64556,47433],[-757,80]],[[63799,47513],[-39,-1009]],[[63760,46504],[-45,-994]],[[72621,28417],[186,-35],[10,165],[369,-75],[12,165],[187,-41]],[[73385,28596],[79,979]],[[73464,29575],[-374,88],[29,333]],[[73119,29996],[-694,168]],[[50288,74063],[143,566]],[[50431,74629],[-264,258]],[[49786,75258],[-77,-244],[-144,143],[-396,-1248]],[[79647,85535],[816,-209],[-11,-167],[378,-94]],[[80830,85065],[51,625]],[[80881,85690],[18,203],[-97,23],[28,330]],[[80830,86246],[-1050,258]],[[79780,86504],[-297,76]],[[79483,86580],[68,-196],[35,-290],[18,-425],[43,-134]],[[79436,86593],[-57,13]],[[79379,86606],[-17,-169],[60,-19],[14,175]],[[81014,53631],[252,-46],[419,-117]],[[81685,53468],[45,-13]],[[81822,54544],[-724,194]],[[81098,54738],[-84,-1107]],[[21956,22218],[144,55],[84,-462],[13,-172],[130,-431]],[[22327,21208],[107,-39],[56,-159],[81,76]],[[22322,22356],[-91,-34],[-175,1285]],[[22056,23607],[-356,-135]],[[21700,23472],[-309,-118]],[[21391,23354],[83,-652],[216,86],[75,-83],[27,-214],[122,49],[42,-322]],[[79131,44547],[191,-196],[116,-174],[27,-113]],[[79465,44064],[146,13]],[[79611,44077],[50,327],[223,344]],[[79884,44748],[-103,74],[-466,814]],[[79315,45636],[-147,-254],[72,-226],[-41,-438],[-68,-171]],[[49806,55683],[409,16]],[[50215,55699],[-15,1557],[9,4]],[[50209,57260],[-7,504]],[[50202,57764],[-752,-33]],[[49450,57731],[17,-1848],[-5,-220]],[[51604,44148],[756,18]],[[52360,44166],[185,4]],[[52545,44170],[-10,1678]],[[52535,45848],[-255,-5]],[[52280,45843],[-689,-17]],[[51594,45491],[10,-1343]],[[79766,70667],[138,-59],[152,106],[92,304]],[[80148,71018],[61,172],[74,39]],[[80283,71229],[-65,179]],[[80218,71408],[-235,51],[-176,-75],[-148,-729]],[[79659,70655],[107,12]],[[71280,42736],[-32,-504]],[[71248,42232],[600,-116]],[[71848,42116],[40,274]],[[71909,43224],[-133,30]],[[71776,43254],[-492,99]],[[71284,43353],[-20,-331],[33,-6],[-17,-280]],[[79803,60720],[1027,-277]],[[80830,60443],[50,114],[61,343],[-42,261],[65,328]],[[80964,61489],[-224,44],[-754,111]],[[79986,61644],[-9,-238],[-82,-140],[-27,-327],[-65,-219]],[[20137,63748],[17,-85],[147,-244],[70,-56],[44,-484],[68,-46],[6,-591],[56,-59],[-29,-272],[210,-273],[30,-214]],[[22809,61170],[-128,1206]],[[22681,62376],[-250,2355]],[[22431,64731],[-1120,-366],[36,-329],[-554,-182],[-186,1637],[-446,-143]],[[20161,65348],[-260,-109],[-56,-237],[80,-252],[52,-417],[-75,-96],[75,-261],[-27,-156],[187,-72]],[[46972,35876],[162,13]],[[47134,35889],[779,55]],[[47913,35944],[-29,1330]],[[46965,37210],[-24,-2]],[[25114,19272],[45,-127],[134,-196],[-129,-437],[-97,-189],[30,-270],[181,208],[69,-164],[130,-137]],[[27658,23303],[-57,554],[-278,-102]],[[27323,23755],[-504,-156]],[[46636,51619],[-10,335]],[[46602,53648],[-754,-60]],[[45848,53588],[29,-1008]],[[45877,52580],[11,-356],[-23,-3],[20,-669],[751,67]],[[65686,67872],[34,837],[228,-30]],[[65948,68679],[-129,120],[23,566]],[[65842,69365],[-349,42]],[[65493,69407],[-19,-449],[-255,-23],[-41,-1000]],[[55447,71542],[794,-22]],[[56241,71520],[26,96]],[[56267,71616],[10,331]],[[56277,71947],[5,542]],[[55759,72942],[-282,-45],[-25,-76]],[[55452,72821],[-5,-1279]],[[48988,80661],[341,8],[113,66]],[[49442,80735],[424,247]],[[49866,80982],[-93,264]],[[49773,81246],[-254,1208]],[[49519,82454],[-227,375]],[[49292,82829],[-319,-786]],[[52262,47518],[5,-338]],[[52267,47180],[189,7],[-6,505],[246,-8],[0,69],[347,6],[-1,112]],[[53042,47871],[-2,671]],[[53040,48542],[-660,-10]],[[52380,48532],[-62,-2],[3,-419],[-63,53],[4,-646]],[[72218,47426],[50,1],[233,-334]],[[72501,47093],[124,295],[52,57]],[[72677,47445],[-220,298]],[[72457,47743],[-156,76]],[[72301,47819],[-71,34],[-42,-173],[-203,-384]],[[71985,47296],[147,-12],[86,142]],[[70122,37007],[10,166]],[[70132,37173],[69,1005],[-38,8]],[[69469,37302],[-10,-166],[663,-129]],[[81900,55486],[-78,-942]],[[82699,54344],[115,1303]],[[81927,55830],[-27,-344]],[[85618,42978],[45,54]],[[85663,43032],[-45,-54]],[[82227,48434],[0,0]],[[71972,34350],[189,-31]],[[72717,34190],[104,1401]],[[72821,35591],[-63,16]],[[72758,35607],[-655,175]],[[72103,35782],[-48,-238]],[[44568,48733],[605,57]],[[45126,50471],[-712,-64]],[[44371,50403],[57,-1682]],[[58543,27910],[569,-28]],[[59112,27882],[28,1330],[-18,1]],[[59122,29213],[-563,33]],[[58559,29246],[-24,-1336]],[[65279,42384],[953,-123]],[[65987,43170],[-664,110]],[[42236,74020],[-948,-109]],[[41288,73911],[-490,-67]],[[40798,73844],[71,-1668]],[[50224,27958],[752,34]],[[50965,29317],[-184,-10]],[[50211,28951],[13,-993]],[[57134,26978],[66,-239],[-41,-94]],[[57159,26645],[604,-27]],[[57782,27950],[-382,17]],[[57400,27967],[-2,-166],[-383,14]],[[57015,27815],[-22,-69],[141,-336],[-47,-79],[47,-353]],[[64518,32582],[568,-81]],[[65086,32501],[379,-30]],[[65465,32471],[60,1344]],[[65525,33815],[-264,23]],[[64576,33904],[-58,-1322]],[[58559,29246],[-6,0]],[[57989,29276],[-21,-1336]],[[81372,35908],[-100,-1070]],[[81272,34838],[167,-30],[13,-61]],[[81452,34747],[185,-198],[26,48],[401,262],[65,218]],[[82129,35077],[-91,26],[-34,287],[89,858]],[[82093,36248],[-667,188]],[[81426,36436],[-54,-528]],[[55631,32960],[755,-12]],[[56386,32948],[9,1011]],[[56398,34291],[-759,13]],[[55639,34304],[-8,-1344]],[[54756,29369],[1,1334]],[[54757,30703],[-645,6]],[[54112,30709],[-306,0]],[[24942,93326],[52,-62],[86,232],[-10,219]],[[25070,93715],[-144,-158],[16,-231]],[[24647,95023],[14,-161],[-45,-173],[90,49],[55,249],[-114,36]],[[23652,95001],[0,-142],[72,104],[58,-192],[62,15],[-21,222],[-94,166],[-6,-170],[-71,-3]],[[23524,94360],[60,-318],[-61,-29],[7,-201],[178,-50],[179,317],[131,63],[102,138],[28,124],[187,208],[-183,-60],[-16,137],[76,-81],[137,130],[57,198],[67,-14],[-17,286],[52,-91],[71,293],[-8,132],[-121,47],[-101,-29],[52,-130],[-139,-80],[-37,-261],[-57,78],[28,178],[-82,-21],[-47,-206],[-87,-9],[181,397],[57,-93],[88,178],[-70,-22],[70,166],[-90,13],[-183,-257],[-91,-329],[-87,73],[-26,-152],[69,16],[61,-202],[-114,-158],[-232,-176],[48,-97],[-17,-246],[-63,209],[-57,-69]],[[23310,94551],[102,-60],[-49,146],[-53,-86]],[[23565,93593],[-90,115],[-45,-119],[6,641],[-53,147],[-76,-120],[-67,-291],[-1,-247],[-55,-4],[-104,-356],[38,-143],[92,-32],[69,128],[-27,-204],[-67,-59],[49,-123],[244,-13]],[[23117,94130],[12,152]],[[23129,94282],[-12,-152]],[[45575,30738],[1612,134]],[[47187,30872],[-25,1006],[24,1],[-12,499]],[[47174,32378],[-1646,-139]],[[77872,74426],[338,-68],[6,54],[220,-48],[52,131],[349,-83]],[[78837,74412],[27,339],[-130,19],[13,209],[67,137]],[[78814,75116],[-557,134]],[[78257,75250],[-140,35]],[[78117,75285],[-3,-354],[-65,-196],[-106,-123],[-71,-186]],[[23129,94282],[-72,-54],[-206,-400],[-114,-154],[-83,-4],[11,-339],[-72,-67],[22,-219],[-75,52],[-84,-132],[66,-321],[172,116],[88,-32],[-19,155],[57,51],[226,738],[71,458]],[[22418,93146],[15,-154],[115,129],[5,281],[-85,61],[14,-185],[-64,-132]],[[22601,92319],[67,-28],[104,316],[-102,94],[-231,-169],[-45,56],[87,186],[-33,181],[-81,-17],[-128,-193],[-44,15],[-105,-280]],[[65493,69407],[-102,13],[-77,282]],[[65314,69702],[-792,-371]],[[64522,69331],[-12,-321],[67,-5],[-5,-164],[66,-6],[-31,-775],[-47,-58]],[[83788,87813],[694,-194]],[[84482,87619],[75,198],[120,430],[147,407]],[[83916,89135],[-128,-1322]],[[59934,41680],[-475,55]],[[59459,41735],[-26,-1186]],[[62322,41327],[190,-4]],[[62512,41323],[570,-26]],[[63082,41297],[37,1354]],[[63119,42651],[-764,43]],[[62355,42694],[-33,-1367]],[[74411,36038],[123,-32],[14,166],[625,-150]],[[75173,36022],[8,107],[170,-42],[53,533]],[[75404,36620],[13,132]],[[75417,36752],[-942,228]],[[74475,36980],[-64,-942]],[[66312,48733],[756,-77]],[[67254,48747],[52,1205]],[[67306,49952],[-375,55]],[[37078,78779],[1616,-1447]],[[38694,77332],[908,1433]],[[39602,78765],[255,422]],[[39857,79187],[-724,873]],[[39133,80060],[-190,-26],[-1994,-1141]],[[36949,78893],[129,-114]],[[56234,26009],[4,334],[379,-13],[-2,-335],[380,-11]],[[57377,26264],[-139,80],[-68,130],[-11,171]],[[57134,26978],[-1088,37]],[[56046,27015],[-17,-999],[205,-7]],[[46642,67698],[292,21],[5,73],[140,-5],[96,87],[13,-104],[169,164],[43,-55],[150,146],[30,130]],[[47556,69444],[-945,-59]],[[63673,49336],[114,-320],[-1,-188]],[[63786,48828],[806,-70]],[[64592,48758],[40,922]],[[64632,49680],[30,756]],[[64662,50436],[-334,33]],[[64328,50469],[-52,-198],[15,-135],[-210,19],[-2,-56],[-199,-322],[-1,-54],[-215,-343]],[[63664,49380],[9,-44]],[[72901,26062],[497,-119]],[[73398,25943],[2,413],[-144,111],[11,161],[-231,72],[-68,130],[-34,197]],[[72934,27027],[-214,44],[-25,-326],[-189,41]],[[66785,46482],[594,-96]],[[67379,46386],[96,-18]],[[67475,46368],[69,1248]],[[67015,47703],[-175,7],[-11,-226]],[[52280,45843],[-13,1337]],[[52262,47518],[-689,-13]],[[51573,47505],[7,-672]],[[22245,15647],[114,-104],[-17,-194],[108,-170]],[[22450,15179],[56,39],[40,-137],[101,54],[50,128],[51,-133],[44,-338],[46,47],[80,-260],[36,-12],[175,203],[143,110],[106,-187],[138,54],[70,-43],[-130,-302],[-37,-321]],[[23419,14081],[135,88],[89,249],[311,267],[59,-94],[70,-272],[164,-190],[21,-130],[1610,-54]],[[25878,13945],[76,-17],[114,89],[76,-87],[136,47]],[[22873,18815],[-243,-96],[38,-64],[-21,-552],[-521,-198]],[[22126,17905],[46,-193],[186,-404],[60,-55],[32,-174],[171,-296],[-66,-373],[20,-159],[-65,-198],[-107,-55],[-30,-160],[-125,-69],[-3,-122]],[[47779,9513],[959,68]],[[48749,11300],[-960,-68]],[[46853,47266],[-941,-82]],[[48312,79011],[976,48]],[[49288,79059],[-25,162],[150,176],[-107,165],[13,154],[92,19],[-125,276],[70,290],[0,133],[88,24],[-2,277]],[[38430,49628],[186,29],[52,-1004]],[[38668,48653],[636,100],[872,124]],[[40176,48877],[-78,1444]],[[40016,51904],[-482,-393]],[[39534,51511],[-489,-398],[-633,-28],[-55,-142]],[[38357,50943],[73,-1315]],[[8963,21025],[339,178],[45,110],[66,369],[-43,67],[-57,325],[33,17],[-38,275],[78,-34],[144,75],[143,-142],[23,-128],[184,39]],[[9880,22176],[143,94]],[[9357,25090],[-603,-330]],[[8754,24760],[-102,-269],[-47,-279],[36,-246],[-32,-298],[25,-314],[61,-403],[158,-458],[15,-341],[-43,-80],[2,-228],[-60,-49],[10,-412],[186,-358]],[[66118,70014],[189,-25],[-13,-339],[191,-25],[-14,-338],[37,-5]],[[67010,69216],[61,1383]],[[67071,70599],[-187,21]],[[66143,70694],[-25,-680]],[[49364,42721],[-5,-1]],[[49359,42720],[-752,-41]],[[96341,97299],[98,15]],[[96439,97314],[6,231],[48,0]],[[96493,97545],[-4,18]],[[96338,97670],[-123,-83]],[[96215,97587],[48,-258]],[[79215,41745],[520,-150]],[[79897,41550],[72,307]],[[79969,41857],[-62,10],[-14,175],[-66,145],[71,281],[-31,74]],[[79867,42542],[-69,178]],[[79798,42720],[-131,-46]],[[79667,42674],[-206,-103],[-235,-365],[-49,98],[-105,-75]],[[79072,42229],[100,-81],[1,-258],[42,-145]],[[75129,75661],[196,-29],[36,675]],[[75013,76418],[-358,60]],[[74655,76478],[-38,-700],[512,-117]],[[36627,51289],[997,166]],[[37624,51455],[-111,578],[24,80]],[[37537,52113],[-22,51],[-471,720]],[[48677,54136],[-920,-43]],[[47757,54093],[-15,-335]],[[43396,18069],[1258,146]],[[44654,18215],[69,8],[-43,1322],[75,8],[-11,297]],[[44744,19850],[-761,-89],[12,-293],[-650,-74]],[[59112,27882],[201,-10]],[[59313,27872],[365,-21],[7,331],[377,-23]],[[60062,28159],[24,996]],[[60086,29155],[-584,35],[1,55]],[[59503,29245],[-379,24],[-2,-56]],[[97099,97376],[68,-156]],[[97304,97278],[-158,428]],[[54986,35658],[376,-3]],[[54611,37000],[-188,2]],[[54423,37002],[0,-1340]],[[53983,49050],[-2,-505]],[[53981,48545],[757,-3]],[[54738,48542],[1,505]],[[54730,50224],[-755,3]],[[58678,34204],[761,-41]],[[59494,35156],[-379,25],[7,333]],[[43731,45289],[1067,111]],[[44798,45400],[42,4]],[[44781,47073],[-146,-13]],[[43674,46965],[57,-1676]],[[95058,97668],[53,426],[34,58]],[[95145,98152],[-155,-31]],[[94990,98121],[-51,-76]],[[94939,98045],[12,-349]],[[55932,36983],[9,1002],[71,-1],[3,377]],[[56015,38361],[-556,10]],[[96730,17157],[79,-70],[-28,138],[-51,-68]],[[96556,17379],[-8,-281],[186,209],[-57,185],[-121,-113]],[[96398,16723],[17,-160],[73,213],[-90,-53]],[[95997,17360],[71,-41],[40,118],[-111,-77]],[[95755,15698],[122,30],[41,-265],[77,32],[22,-160],[242,-214],[-220,-755],[176,-158],[-86,-299],[178,-159],[-127,-419],[349,-307]],[[97211,16014],[-60,67],[-24,317],[-99,-58],[-27,-136],[-108,98],[49,203],[-45,269],[72,74],[-178,149],[-143,-34],[-142,-295],[16,-110],[102,-144],[-56,-122],[-35,147],[-46,-141],[-72,64],[-105,207],[56,128],[-9,155],[107,174],[10,148],[-83,309],[56,9],[-44,155]],[[96403,17647],[-59,2]],[[96344,17649],[-120,-121],[-58,-192],[56,-203],[-128,-74],[-38,-101],[-87,115],[-52,-360],[34,-170],[-77,-272]],[[95874,16271],[-127,-314],[8,-259]],[[56649,67520],[119,53],[48,-58],[-4,177],[278,350],[86,46],[271,19],[0,110],[151,4]],[[57598,68221],[3,0]],[[57601,68221],[-14,303],[93,160],[79,-19],[87,90]],[[57846,68755],[-57,-4],[-71,155],[-60,-40],[-37,131],[-31,-122],[-137,116]],[[57453,68991],[-109,-66],[-37,72],[-110,-151],[-77,154],[-132,-86],[-109,131],[-35,-120],[-148,-87],[-3,-180],[-48,29]],[[56645,68687],[4,-1167]],[[56441,59193],[277,3],[7,-167],[94,-1],[2,-280],[634,21],[1,-95],[148,-31]],[[57604,58643],[-92,559],[-1,995],[-16,279]],[[57495,60476],[-286,-4],[0,55],[-652,-13]],[[56557,60514],[-116,-1321]],[[60069,63463],[109,2],[63,187],[53,-120],[339,-7],[-3,-335],[189,-5]],[[60819,63185],[91,-5],[11,1087],[-52,416],[151,-4],[11,508]],[[61031,65187],[-320,9]],[[60711,65196],[-68,2]],[[59727,63869],[-29,-221],[186,-7],[1,-113],[185,0],[-1,-65]],[[60817,62976],[190,-52],[244,182],[136,-33]],[[61387,63073],[8,419],[197,-7],[12,954],[117,168],[-43,181],[60,100],[-74,279]],[[61664,65167],[-49,1]],[[61615,65168],[-584,19]],[[60819,63185],[-2,-209]],[[41693,52490],[565,71]],[[42258,52561],[1216,140]],[[43474,52701],[-36,982]],[[43438,53683],[-57,1526]],[[43381,55209],[-1139,-141],[-527,-85]],[[41715,54983],[-146,-19]],[[41569,54964],[69,-1468],[14,2],[41,-1008]],[[25058,29695],[113,2]],[[25171,29697],[93,-25],[69,78],[87,-56],[50,150],[141,-6],[169,-373],[173,-37]],[[25953,29428],[164,-19],[85,258],[105,47]],[[26307,29714],[99,24],[-16,143],[273,92],[-98,987]],[[26565,30960],[-130,1247]],[[26435,32207],[-1430,-421],[-235,-100]],[[24770,31686],[-382,-131]],[[24388,31555],[173,-1600],[343,116],[44,-367],[110,-9]],[[70370,70453],[261,-40],[-54,-817]],[[70577,69596],[-6,-84],[496,-76],[114,177],[66,-17]],[[71247,69596],[23,348],[77,199],[55,32],[1,192],[163,205]],[[71566,70572],[-69,23],[10,166]],[[71507,70761],[-551,101],[11,168],[-375,54]],[[70592,71084],[-183,34],[-14,-254]],[[70395,70864],[-25,-411]],[[76828,72315],[45,664]],[[76873,72979],[14,190],[-351,81]],[[76536,73250],[-87,-89],[-178,-23]],[[76271,73138],[14,-242]],[[53745,26373],[764,0],[16,336]],[[54525,26709],[5,1329]],[[53767,28036],[-2,-1328],[-20,-335]],[[84098,49597],[246,-1242],[-7,-213]],[[84337,48142],[112,-265]],[[84449,47877],[113,89],[-1,141],[74,66]],[[84635,48173],[-14,120],[-4,683]],[[84617,48976],[-62,68],[-77,318]],[[84478,49362],[-124,271],[-123,56],[-133,-92]],[[53119,43170],[661,4]],[[53780,43174],[94,2]],[[53874,43176],[-1,1006]],[[53873,44182],[-382,-1]],[[53491,44181],[-375,-3]],[[53116,44178],[3,-1008]],[[46801,60831],[-18,758]],[[46760,62513],[-959,-77]],[[51082,14722],[611,20]],[[51693,14742],[-14,1318],[34,2],[-3,325]],[[50871,41441],[14,-1342]],[[71301,25055],[-751,145]],[[70550,25200],[-72,-1142]],[[48739,45707],[37,2]],[[48776,45709],[-37,1677]],[[66591,46339],[-27,-613]],[[66564,45726],[769,-127]],[[67333,45599],[46,787]],[[79944,46208],[196,-521],[52,-381]],[[80192,45306],[112,13]],[[80304,45319],[66,-31],[76,159],[60,-58]],[[80506,45389],[223,598],[-53,551]],[[80542,47213],[-144,-121]],[[80398,47092],[-324,-264],[-108,-180],[31,-55],[-91,-284],[38,-101]],[[66360,62701],[346,-45]],[[66706,62656],[22,524],[126,-17],[17,392],[62,-8]],[[66933,63547],[28,616],[-32,4]],[[66929,64167],[-632,75]],[[66297,64242],[-35,-834],[95,-12],[24,-171],[-21,-524]],[[77847,74231],[61,-37],[70,-354],[-12,-175],[76,-113],[17,-150]],[[78059,73402],[-27,-411]],[[78032,72991],[28,-54],[207,-8],[48,-142]],[[78315,72787],[44,550],[386,-99]],[[78745,73238],[34,435],[59,-13],[25,337]],[[78863,73997],[-57,14],[31,401]],[[77872,74426],[-25,-195]],[[50619,48483],[4,-337]],[[50623,48146],[943,31]],[[51566,48177],[-11,1345]],[[51555,49522],[-942,-31]],[[50613,49491],[6,-1008]],[[63969,65182],[176,-21],[-16,-326],[190,-26]],[[64319,64809],[36,806],[111,124],[14,408]],[[64480,66147],[11,335],[-569,59]],[[63922,66541],[-24,-728],[93,-7],[-22,-624]],[[49314,19931],[-52,-4]],[[49675,48446],[944,37]],[[50613,49491],[-3,336]],[[50610,49827],[-948,-34]],[[49662,49793],[1,-676]],[[49663,49117],[12,-671]],[[68670,46196],[314,-36]],[[68984,46160],[625,-96]],[[69609,46064],[39,666]],[[69667,47067],[-374,65]],[[69293,47132],[-328,55]],[[68965,47187],[-241,24]],[[68724,47211],[-54,-1015]],[[59117,42713],[284,-20]],[[59401,42693],[555,-47]],[[59964,42814],[27,1024]],[[59991,43838],[-838,51]],[[59153,43889],[-15,1]],[[76766,38702],[780,-202]],[[77546,38500],[12,126]],[[77558,38626],[-32,17],[62,721],[-65,13]],[[77523,39377],[-784,158]],[[76645,39123],[-33,-379],[154,-42]],[[60147,61856],[2,338],[-71,356],[52,58],[-33,230],[-59,9]],[[60038,62847],[-158,153],[35,-129],[-163,154],[-578,13]],[[59174,63038],[-3,-123],[108,-41],[95,-199],[50,-12]],[[69582,39308],[-185,29]],[[69397,39337],[-574,91]],[[68823,39428],[-54,-997]],[[96439,97314],[126,-119]],[[96565,97195],[33,68]],[[96598,97263],[45,132]],[[96643,97395],[-150,150]],[[49406,37364],[744,31]],[[50150,37395],[-7,1003]],[[49397,38697],[-12,0]],[[43801,67471],[947,79]],[[66425,55815],[-29,-669]],[[66396,55146],[572,-59]],[[66968,55087],[31,739]],[[66999,55826],[38,959]],[[67037,56785],[-48,5]],[[66989,56790],[-525,66]],[[66464,56856],[-39,-1041]],[[71368,55230],[271,-434],[113,-98]],[[71752,54698],[221,-8],[33,51]],[[72006,54741],[23,153],[81,-5],[54,158],[80,-23],[-35,172],[123,257]],[[72332,55453],[-89,31],[-524,73]],[[71719,55557],[-327,34]],[[71392,55591],[38,-135],[-62,-226]],[[64656,47421],[90,-12],[-5,-111],[567,-68]],[[65347,48332],[-582,66]],[[64765,48398],[-23,-505],[-64,8],[-22,-480]],[[57605,64696],[94,-2],[12,-183],[159,-28],[126,-109]],[[57996,64374],[567,-18]],[[58563,64356],[-11,224],[8,1112]],[[58560,65692],[2,220]],[[58562,65912],[-127,1]],[[58435,65913],[-823,-1]],[[57612,65912],[-7,-1216]],[[71434,56369],[266,6]],[[71700,56375],[-3,481],[41,120],[87,50]],[[71825,57026],[-22,418]],[[71803,57444],[-90,163],[-171,-34],[-42,99],[-128,28]],[[71372,57700],[-184,-781]],[[67364,43655],[673,-114]],[[68037,43541],[57,1059]],[[68094,44600],[26,500]],[[68120,45100],[-264,42],[1,-41],[-456,92]],[[67401,45193],[-49,-785]],[[67352,44408],[-24,-409],[53,-8],[-17,-336]],[[82020,38269],[49,-348],[102,-987]],[[82171,36934],[734,-237]],[[82905,36697],[-62,335],[-53,29],[11,192],[-41,212],[-74,160],[15,527],[-74,195]],[[82627,38347],[-29,339]],[[82598,38686],[-371,111],[-94,-128],[-202,63]],[[81931,38732],[89,-463]],[[12102,15591],[26,-102]],[[12128,15489],[145,119],[32,219],[362,-234],[167,145],[107,3],[182,223],[296,165],[50,239],[154,-29],[129,209],[352,184]],[[14104,16732],[-57,247],[14,87],[-69,276],[-72,66],[-53,366]],[[13867,17774],[-61,396],[20,102]],[[13826,18272],[-774,-340],[-108,89],[-285,-184],[-81,-196],[-161,-176],[-157,-66],[-75,75],[-39,213],[-392,-196],[39,-86],[-9,-234]],[[11784,17171],[-69,-228],[57,-82],[32,-271],[41,-24],[28,-233],[-40,-221],[133,-61],[50,-161],[156,15],[-70,-314]],[[56221,25339],[13,670]],[[56046,27015],[-245,3]],[[55801,27018],[-135,-156]],[[55666,26862],[-193,-180],[-42,14],[-269,-309],[-91,-162],[-72,23],[-110,-141]],[[54889,26107],[-192,-205]],[[54697,25902],[-2,-529],[365,-7]],[[55176,19719],[646,-12]],[[55822,19707],[119,74]],[[55941,19781],[10,252],[22,1940]],[[55973,21973],[-761,18]],[[12442,14349],[134,-101],[-33,-112],[56,-68],[-26,-234],[65,19],[84,-200],[83,154],[76,28]],[[12881,13835],[106,-3],[55,86],[-75,306],[-74,133],[81,324],[140,226],[39,348],[188,299],[981,479]],[[14322,16033],[-61,192]],[[14261,16225],[-90,20],[-27,117],[67,108],[-87,90],[-20,172]],[[12128,15489],[117,-190],[-114,-139],[159,-313],[124,-38],[-20,-244],[48,-216]],[[85818,38078],[156,-332],[63,-49]],[[86659,37001],[535,507]],[[87194,37508],[-93,137],[37,276],[-56,358],[44,313],[-74,457],[-95,184]],[[86957,39233],[-159,60]],[[86798,39293],[-11,4]],[[86787,39297],[-84,-182],[-123,-138],[-129,-311],[-158,-89],[-139,-349],[-216,31],[-120,-181]],[[60545,60503],[714,-24]],[[61259,60479],[84,-33],[10,685]],[[61353,61131],[4,303],[-94,81],[4,302],[-462,16]],[[60805,61833],[-251,14]],[[77119,72949],[558,-133]],[[77677,72816],[81,111],[100,-12],[115,101],[59,-25]],[[78059,73402],[-330,59],[6,102],[-165,29],[-6,-98],[-111,23],[-22,-289],[-237,50]],[[77194,73278],[-75,-329]],[[33875,91804],[70,-328],[152,-99],[95,106],[148,419],[183,-96],[127,-117],[196,69],[124,217],[78,50],[35,129],[232,119],[35,277],[-137,261],[-184,118],[-104,-31],[-227,175],[-155,30],[-138,-112],[-15,-447],[-27,-213],[-53,-63],[-100,76],[-194,-162],[-97,-188],[-44,-190]],[[33871,93280],[259,-283],[70,101],[-14,227],[-112,-15],[-163,67],[-40,-97]],[[33125,91867],[150,-106],[192,64],[124,196],[57,207],[-59,170],[-147,95],[-122,17],[-89,-454],[-106,-189]],[[33224,90799],[150,96],[49,-31]],[[33423,90864],[104,14],[199,-59],[129,81],[-62,180],[-130,168],[-155,68],[-451,-206],[-325,60],[-120,-53],[112,-264],[-13,-189],[513,135]],[[60067,52244],[-9,-625]],[[60058,51619],[379,-7]],[[60437,51612],[283,1]],[[60720,51613],[24,1575]],[[60744,53188],[-380,19]],[[49371,87895],[-28,2115]],[[61427,36697],[-757,54]],[[60670,36751],[-23,-673],[-19,-1009]],[[44931,58983],[949,87]],[[59943,38160],[574,-44]],[[60551,39452],[-385,31]],[[76119,43204],[-2,-56],[185,-26],[-10,-171],[204,-28],[-9,-227],[194,-23]],[[76681,42673],[10,225],[198,-26],[6,109],[176,-23]],[[77071,42958],[15,349],[-190,22],[13,343]],[[76909,43672],[-379,49],[3,102],[-197,23],[3,56],[-191,21]],[[76148,43923],[-18,-386]],[[74207,71525],[71,-8],[107,-155],[206,-81],[58,-350],[52,-53]],[[74701,70878],[100,-83]],[[74801,70795],[-26,160],[66,1000]],[[74841,71955],[-479,107]],[[74362,72062],[43,-135],[-86,-117],[-131,-66],[19,-219]],[[34264,15937],[566,139]],[[36038,16322],[-7,201],[39,97],[-90,301],[64,13],[-30,381],[24,5]],[[36038,17320],[-29,381],[-221,-49],[-142,194],[-47,269],[-440,-98],[-135,77],[-30,389],[-568,-129]],[[73376,67625],[505,-91]],[[74071,68273],[-257,257],[-260,215]],[[73554,68745],[-178,-1120]],[[61242,12479],[209,-236],[69,17],[14,191],[89,93],[-28,88],[87,162],[147,-48],[85,-85],[41,101],[626,-124],[165,84],[59,218],[177,133],[75,-121],[104,-43],[253,75],[133,-87],[-139,201],[-159,113],[-135,205],[-189,132],[-71,128],[-400,263],[-121,113],[-155,72],[-144,123],[-287,327],[-189,275],[-221,370]],[[61337,15219],[-45,-1604],[-10,-54],[-40,-1082]],[[54876,34310],[763,-6]],[[55639,34304],[2,331],[93,-1],[5,1017]],[[83264,52993],[589,-185]],[[83853,52808],[112,1164]],[[83965,53972],[-258,68]],[[83354,54140],[-90,-1147]],[[11677,79978],[-154,-190],[-31,-147],[-143,-222],[99,-35],[61,-171],[49,-409],[242,104],[307,-10],[222,-224],[89,-177],[124,-664],[214,-452],[135,-156],[152,74],[132,-81],[169,-212],[163,-284],[128,-88],[127,133],[203,-65],[102,-115],[189,-427],[72,-5],[235,172],[8,146],[-112,124],[8,164],[76,21],[35,-151],[88,-111],[38,-154],[109,165],[6,256],[101,77],[76,-154],[167,-50],[264,120],[-62,180],[15,104],[189,64],[-43,163],[193,58],[49,-112],[141,-13],[16,65],[231,-168],[182,129],[46,-33],[75,145],[36,-63],[148,172],[141,34],[71,-53],[273,-28],[132,149],[128,66],[88,-35],[176,-246],[163,-87],[543,444],[121,25],[170,1487]],[[97020,98027],[288,179]],[[97308,98206],[-131,121]],[[97177,98327],[-62,-46],[-95,-254]],[[70913,38708],[503,-109]],[[71438,38937],[67,1006],[-187,39]],[[71318,39982],[-312,62]],[[62243,52701],[7,-169],[80,-4]],[[63114,52475],[6,355],[195,-22]],[[63315,52808],[-16,176],[32,1083]],[[63331,54067],[4,173],[-320,37]],[[63015,54277],[-31,7],[-6,-396],[-40,0],[-21,-884],[-376,32],[-288,86]],[[45352,70957],[-612,-60],[-89,-28]],[[80087,51560],[80,-148],[310,-342]],[[80477,51070],[54,225],[118,160]],[[80578,51648],[100,382]],[[80678,52030],[-136,245]],[[80542,52275],[-70,163],[-94,90]],[[80378,52528],[-315,-492],[-50,-166]],[[80013,51870],[-45,-150],[119,-160]],[[56898,45116],[-2,-166]],[[57655,45607],[3,335]],[[57658,45942],[-755,18]],[[69779,67937],[138,-188],[-39,-82],[39,-142],[154,-79],[57,-120],[16,-283],[51,-234],[88,-123]],[[70283,66686],[120,-128],[226,-28],[218,252],[126,-19]],[[70973,66763],[64,-11],[55,413],[-39,146],[12,226],[67,47]],[[71132,67584],[-142,329],[-114,22],[-81,208],[-62,12],[-37,196],[-93,39],[6,111],[-95,13],[-67,222],[-97,140],[-80,12]],[[70270,68888],[-71,10]],[[70199,68898],[-6,-112],[-181,-89],[-76,-187],[-174,-290],[-96,-46],[2,-138],[84,11],[27,-110]],[[35213,96281],[15,-144],[139,-250],[118,-51],[68,-280],[119,-168],[14,-226],[-81,-164],[-68,-255],[-14,-226],[31,-191],[77,-62],[221,147],[30,102],[164,144],[110,154],[87,-20],[189,102],[412,337],[263,355],[125,268],[-16,427],[180,-8],[54,184],[-5,187],[168,268],[186,152],[-17,187],[-326,507],[-317,284],[-150,60],[-189,-19],[-132,221],[-118,81],[-75,138],[-108,55],[-108,214],[6,107],[-97,315],[-145,208],[-114,-197],[-167,-169],[-163,-95],[-78,-312],[69,-824],[-78,-550],[-60,-27],[-16,-221],[-79,-366],[-139,-334],[15,-45]],[[21048,12167],[76,27],[123,-220],[139,35],[61,132],[121,31],[89,-53],[130,511],[105,186],[-1,323]],[[21891,13139],[-26,189],[-188,-78],[-109,71],[-128,971],[-90,-36],[-61,461]],[[21289,14717],[-184,-77]],[[21105,14640],[47,-461],[109,-807],[-94,-34],[24,-169],[-56,-79],[6,-286],[-187,-73],[94,-564]],[[72348,67548],[-28,90],[160,-1],[24,-118],[222,-31]],[[72726,67488],[75,1492]],[[72801,68980],[-584,114],[-60,69]],[[72157,69163],[-3,-55],[-301,56]],[[71853,69164],[-18,-350],[96,-13],[-20,-390],[252,-38],[-14,-336],[92,-73],[10,-398],[97,-18]],[[53087,34315],[1029,4]],[[54116,34319],[191,-3]],[[54423,35662],[-1110,-15]],[[53313,35647],[54,-56],[-53,-180]],[[53314,35411],[-83,-235],[-5,-283],[42,-244],[-96,-63]],[[53172,34586],[-72,-115],[-13,-156]],[[53897,38376],[814,-1]],[[55273,38372],[5,1333]],[[54902,39707],[-816,4]],[[54086,39711],[27,-108],[-96,-10]],[[54017,39593],[19,-181],[-30,-182],[76,-122],[-121,-125],[33,-161]],[[53994,38822],[18,-263],[-129,-50],[14,-133]],[[25808,25862],[158,-8],[9,333],[59,30],[-54,490],[427,140],[-33,311],[556,177]],[[26930,27335],[-69,657]],[[26861,27992],[-370,-118],[-106,994],[-23,328],[91,29],[-34,329],[-92,-29],[-20,189]],[[25953,29428],[72,-680],[93,30],[141,-1325],[-472,-153]],[[24752,26955],[-6,-229],[29,-260],[-215,-100],[40,-241],[-15,-151],[81,-138],[-117,-249],[26,-99],[-135,-170],[61,-254],[-29,-109],[56,-184],[-42,-315],[-80,62],[-146,-51],[21,-89],[-201,-236]],[[24080,24142],[13,-214],[50,-76]],[[95795,17401],[36,-249],[-19,-265],[74,19],[-9,490],[-82,5]],[[94766,16160],[77,-71],[14,-217],[66,-17],[46,118],[86,-73]],[[95055,15900],[88,-75],[84,299],[484,-477],[44,51]],[[95874,16271],[-2,251],[-55,165],[-80,-73],[-96,173],[118,218],[10,161],[-55,107],[-10,186]],[[95704,17459],[-144,47],[-289,-290],[-83,267],[-107,-25]],[[95081,17458],[-155,17]],[[94926,17475],[18,-491],[79,-12],[-18,-340],[-71,9],[-19,-346],[-105,26],[-44,-161]],[[93554,26344],[29,-96]],[[93583,26248],[-3,-105]],[[93580,26143],[16,-180],[92,17],[31,-357]],[[93719,25623],[102,-44]],[[93821,25579],[-26,158],[92,186],[-82,49],[43,115]],[[93848,26087],[-73,72],[-96,346],[-125,-161]],[[90442,25913],[145,-55]],[[90587,25858],[742,-273]],[[91329,25585],[276,-101]],[[91605,25484],[44,168],[72,14],[28,174],[-53,83],[34,253],[49,57],[-54,159],[38,523]],[[91763,26915],[-53,59],[-84,-306],[-163,125],[-24,-94],[-320,252],[-20,-179],[-283,-1],[-40,-209],[-162,10]],[[90614,26572],[-25,-421],[-69,-3],[57,-147],[-116,56],[-19,-144]],[[72934,27027],[4,515],[-32,109],[93,281],[98,86],[45,-122],[37,117],[170,116]],[[73349,28129],[36,467]],[[53184,26703],[1,-336]],[[53185,26367],[560,6]],[[53179,28033],[5,-1330]],[[62570,68641],[173,-142],[-13,-119],[-149,-125],[-7,-121],[107,-64],[145,179],[94,-126],[-72,-104],[-88,51],[-52,-78],[3,-195],[266,-10],[-154,-309],[105,-272],[-126,-99],[-19,-80],[122,-119],[38,139],[68,-59],[-52,-146],[159,-33],[46,-223],[-158,-134]],[[63006,66452],[-1,-4]],[[63005,66448],[535,-46],[21,504]],[[63561,66906],[43,1428],[-190,19],[10,334]],[[63424,68687],[-822,75]],[[62602,68762],[-32,-121]],[[72614,22109],[757,-192]],[[73371,21917],[129,272],[103,383],[-210,-132],[-74,166],[43,82],[-3,216],[91,169],[120,59],[5,84]],[[73575,23216],[-875,207]],[[62357,18545],[374,-342],[202,-132],[197,-370]],[[63130,17701],[39,-3],[23,656],[188,-20],[12,330],[569,-69],[26,658],[569,-68]],[[64556,19185],[38,894]],[[64594,20079],[-160,-137],[-1299,-463]],[[63135,19479],[-296,-109],[-84,-384],[-108,-256],[-124,-100],[-124,39],[-42,-124]],[[92573,13355],[211,-367],[-85,-193],[78,-268],[100,-201],[-3,-209],[-125,-19],[29,-139],[-63,-64],[37,-148],[-53,-24],[58,-356],[-106,-124],[42,-564],[114,-356],[58,-74],[-44,-599]],[[93262,9431],[110,659],[-19,9],[256,1529],[62,-58],[126,416],[-46,71],[-43,-117],[32,475],[-86,13],[41,285],[78,16],[85,161],[-8,246],[-57,124],[452,1537],[104,303],[149,-130],[6,-117],[204,-180]],[[94708,14673],[271,915],[76,312]],[[94766,16160],[-35,-92],[-211,191],[126,245],[-12,182],[-275,12],[-6,127],[-118,-119],[-109,96]],[[94126,16802],[-87,-237],[-52,40],[-167,-663],[-137,122],[-87,-320],[59,-51],[-180,-632],[-190,166],[-60,-189],[-147,152],[-364,-1285],[18,-16],[-159,-534]],[[62918,73810],[133,-115],[107,83],[41,-153],[-18,-167],[54,45],[124,-297],[-65,76],[-173,-94],[62,-259],[-116,12],[-165,-176],[54,-173],[115,150],[66,-41],[-167,-187],[8,-62]],[[62978,72452],[47,-57]],[[63025,72395],[146,-10],[21,631],[18,-130],[166,-9],[-14,-508],[244,11],[9,-204]],[[63615,72176],[122,100],[8,168],[122,-12],[68,141]],[[63935,72573],[-89,119],[38,126],[-84,281],[19,133],[-124,-40],[3,183],[-50,314]],[[63648,73689],[-272,451],[-49,-62],[-12,198],[-87,-87],[-126,-23]],[[63102,74166],[-1,-24]],[[63101,74142],[41,-144],[-84,-75],[1,209]],[[63059,74132],[-204,-14],[-10,-247],[73,-61]],[[85037,24361],[282,-56],[-23,-144],[397,-77]],[[85693,24084],[130,809]],[[85823,24893],[-97,-15],[-38,637],[40,8],[43,627]],[[85771,26150],[-184,-41]],[[85587,26109],[-284,-130],[-83,-81],[38,200],[-41,63],[-69,-103],[-18,150],[-53,-96],[-268,109]],[[84809,26221],[-16,-108],[-195,65],[-90,-600]],[[84508,25578],[274,-507],[181,-26],[88,-96],[29,-191],[-43,-397]],[[54525,26709],[366,-2],[-2,-600]],[[55666,26862],[5,827],[-379,9],[0,333]],[[73656,36259],[-62,-889]],[[73594,35370],[189,-56]],[[73783,35314],[497,-149]],[[74280,35165],[20,96],[120,51],[74,-76],[171,183],[113,55]],[[74778,35474],[-403,111]],[[74375,35585],[-249,64],[-56,193],[-135,193],[-4,142],[-100,191],[-155,170]],[[73676,36538],[-20,-279]],[[61470,38378],[-16,-675]],[[62215,37640],[190,-15],[13,553]],[[62418,38178],[-99,0],[-132,143],[-75,-42],[-116,100],[-31,301]],[[61965,38680],[-487,33],[-8,-335]],[[50038,65302],[-6,837]],[[50032,66139],[-7,570]],[[50025,66709],[-55,104],[-236,-88],[-114,-91],[-111,278]],[[49509,66912],[-116,76],[-159,-340],[-59,-35]],[[49175,66613],[12,-680],[-95,-3],[5,-279]],[[54905,40703],[-707,4]],[[54198,40707],[-38,-76],[13,-196],[-58,-96],[-26,-216]],[[54089,40123],[28,-135],[-31,-277]],[[90647,33032],[85,187],[127,537],[69,400]],[[90928,34156],[-203,195],[-312,100]],[[90413,34451],[-47,-127],[55,-129],[-44,-254],[30,-133],[-133,-134]],[[90274,33674],[53,-299],[96,-15],[18,-144],[206,-184]],[[40909,16833],[162,26],[207,-300],[114,-343],[11,-527],[-85,-426],[-90,-131],[53,-126]],[[41281,15006],[431,68],[9,-165],[129,21]],[[41850,14930],[-13,253]],[[41837,15183],[-128,2611]],[[41709,17794],[-467,-70],[6,-110],[-93,-70],[-285,-44]],[[40870,17500],[39,-667]],[[64480,57537],[366,-32],[30,-163],[100,91],[114,-52],[123,183],[4,89]],[[65217,57653],[-116,0],[3,121],[139,133],[-86,130],[-191,-29],[-14,68],[139,178]],[[65091,58254],[71,216],[-143,182],[-37,327],[-46,7]],[[64936,58986],[-398,51]],[[64538,59037],[-58,-1500]],[[60841,44120],[677,-42]],[[61518,44078],[29,65],[-43,196],[35,152],[89,95],[27,201]],[[61655,44787],[-1,114],[107,162]],[[61761,45063],[-685,50],[3,111]],[[61079,45224],[-220,14]],[[30103,67536],[726,169],[354,114],[815,183]],[[31998,68002],[246,58],[16,517],[-55,240],[38,158],[98,73],[-25,370],[79,370],[-74,500],[228,142]],[[31226,73011],[-567,-127],[62,-823],[-24,-5],[129,-1664],[-201,-46],[26,-332],[-377,-87],[49,-663],[-351,-86]],[[29972,69178],[131,-1642]],[[84425,42446],[65,-661],[35,-115]],[[84594,41636],[111,46],[80,-41],[60,142],[155,122]],[[85000,41905],[-82,319],[138,229],[231,-7]],[[85287,42446],[-255,915]],[[85032,43361],[-44,-139],[-195,-154]],[[84793,43068],[-541,-98]],[[84252,42970],[137,-310],[36,-214]],[[43124,23459],[106,-1979],[35,-809]],[[43265,20671],[1439,173]],[[44704,20844],[-64,1800]],[[44640,22644],[-61,1657]],[[44579,24301],[-1483,-181]],[[48839,83544],[453,-715]],[[49519,82454],[500,745],[55,370]],[[50074,83569],[-177,257],[-427,323]],[[49470,84149],[-65,-99],[6,-132],[-73,-81],[6,-112],[80,-66],[-146,-100],[-23,105],[-233,-171],[-62,72],[-121,-21]],[[47099,92911],[168,-197],[69,179],[745,57]],[[48049,94787],[-120,414],[-321,374]],[[47608,95575],[-56,-325],[-11,-260],[-60,-84],[-49,-373],[-117,-146],[16,-102],[-111,-111],[7,-150],[-72,-169],[-61,-26],[40,-256],[12,-323],[-47,-339]],[[51786,90628],[120,-113],[272,-692],[107,-40]],[[52285,89783],[-55,303]],[[52230,90086],[-298,572],[-80,272]],[[51852,90930],[-66,-302]],[[52354,89100],[-17,177]],[[52337,89277],[-22,211]],[[52315,89488],[-244,352],[-179,-97],[-1,-138]],[[51891,89605],[-143,-162],[-42,-173],[648,-170]],[[51523,90009],[151,78],[219,-206],[-2,268],[-216,526]],[[51675,90675],[-240,-665]],[[51435,90010],[88,-1]],[[57463,81705],[410,-19]],[[57873,81686],[372,-21]],[[58245,81665],[-28,133],[66,260],[-81,204],[20,143]],[[58222,82405],[-119,237],[-122,486]],[[57981,83128],[24,-303],[-40,-127],[-330,-181],[0,-125],[-119,-84],[36,-118],[-82,-174]],[[57470,82016],[45,-171],[-52,-140]],[[40298,74112],[485,63],[15,-331]],[[41288,73911],[-68,1662]],[[41220,75573],[-983,-126]],[[40237,75447],[61,-1335]],[[83329,49049],[70,-63]],[[83399,48986],[245,301],[210,160]],[[83854,49447],[21,202],[-109,412]],[[83766,50061],[-80,138],[-76,-11],[-70,116]],[[83540,50304],[-81,-113],[-98,12],[-24,-116],[-223,-527]],[[83114,49560],[182,-387],[33,-124]],[[18201,8616],[58,-366],[149,-108],[102,-241],[499,207],[47,-319],[230,-231],[131,1],[85,-360],[163,-212],[46,-320],[102,-15],[94,-191],[175,75]],[[20082,6536],[3,74]],[[20085,6610],[-366,2509]],[[18872,10807],[-31,220],[-123,-58]],[[18718,10969],[-60,-216],[-200,226],[-386,-95]],[[18072,10884],[-80,-223],[-6,-243]],[[79273,43395],[82,-214],[140,-242],[22,-144],[150,-121]],[[79798,42720],[46,257],[-94,316],[114,168],[44,140],[-102,141]],[[79806,43742],[-92,128],[-55,214],[-48,-7]],[[79465,44064],[-226,-576],[34,-93]],[[80739,44333],[306,-193],[18,-394],[47,-183]],[[81948,43902],[15,23]],[[81963,43925],[-27,152],[-138,7],[30,113],[-101,120],[-35,146],[72,216],[-61,267],[-90,235]],[[80506,45389],[54,-208],[185,-62],[12,-374],[-39,-209],[21,-203]],[[54757,30703],[106,0]],[[54863,30703],[3,941]],[[54111,31640],[1,-931]],[[75300,51375],[103,322],[1,323]],[[75404,52020],[7,182],[51,100]],[[75462,52302],[-72,-18],[-173,-312],[-38,89],[-186,-3]],[[74993,52058],[-140,-355],[-67,-99],[-14,-154]],[[84437,52617],[228,-79]],[[84665,52538],[179,874],[-35,169]],[[84518,54033],[-23,-23],[-116,-1030],[-1,-234],[59,-129]],[[27382,62736],[-91,1002],[1343,355],[-138,1612]],[[28496,65705],[-29,337],[-108,59],[-157,-39],[-135,73],[-234,-19],[-60,95],[-81,-21],[-79,115],[-34,257],[57,410],[-75,-24]],[[27561,66948],[-104,5],[-178,156],[-68,-53],[-193,232],[-21,160],[-112,135],[-205,-1089],[-18,-364],[-75,-504]],[[26587,65626],[-129,-861],[-116,140],[-34,112],[-64,-97],[-102,-285],[-1,-119],[-76,-144],[52,-273],[-50,-252],[25,-128],[-81,-25],[39,-306],[-89,-20]],[[25961,63368],[80,-261],[-30,-248],[35,-57],[-418,-121],[42,-105],[12,-227],[78,-154],[47,-380],[206,-148],[12,-123]],[[59271,59027],[95,-2]],[[59366,59025],[94,-4],[4,169],[749,-18]],[[60213,59172],[3,335]],[[60216,59507],[11,722]],[[59287,60533],[-3,-1339],[-13,-167]],[[62174,63463],[132,-10],[-5,-280],[97,-82],[157,-7]],[[62555,63084],[5,349],[64,-5],[35,169]],[[62659,63597],[11,510],[95,-6],[6,341]],[[62771,64442],[15,673],[97,-3],[12,512],[-96,8]],[[62799,65632],[-68,-22],[-159,-397],[-236,-302],[14,-108],[-155,6]],[[62195,64809],[-2,-113],[-128,-52],[-5,-225],[130,-5],[-10,-610],[42,-193],[-48,-148]],[[73020,78222],[22,-342],[131,-21],[40,160],[220,-32],[15,-337]],[[73448,77650],[221,-38],[10,166],[94,-17],[49,831]],[[75611,66781],[170,-525],[3,-361]],[[75784,65895],[464,468]],[[76266,66633],[24,146],[-110,49],[-147,203],[1,169],[-51,109]],[[75852,67044],[-51,-134],[-159,-28],[-31,-101]],[[80185,83370],[682,-173]],[[80867,83197],[132,1541],[61,781]],[[81060,85519],[11,137],[-125,-25],[-65,59]],[[80830,85065],[-13,-163],[-83,6],[-91,-131],[-145,4],[-146,-280],[19,-49]],[[80371,84452],[11,-196],[101,-184],[-7,-241],[-198,-241],[-93,-220]],[[71311,44644],[555,-110]],[[71914,45243],[-223,326]],[[71292,45897],[-49,-842]],[[60168,32763],[-15,-675]],[[60153,32088],[760,-54]],[[60913,32034],[42,1682]],[[58205,36900],[188,-8]],[[74232,51548],[38,-143],[137,-64]],[[74407,51341],[210,-105],[114,125]],[[74993,52058],[-246,437]],[[74747,52495],[-107,12],[-246,-204]],[[74394,52303],[5,-149],[-77,-91],[8,-127],[-95,-246],[-3,-142]],[[62284,72438],[86,-113],[-11,-321],[91,-252],[-1,-406],[50,-113],[-3,-176],[52,-62],[22,-210]],[[62570,70785],[181,-12]],[[62751,70773],[-77,322],[115,68],[21,-301],[89,5],[40,333],[-129,181],[-29,127],[13,265],[182,45],[-3,95],[-157,253],[58,209],[136,-97],[39,-155],[44,137],[-68,135]],[[62978,72452],[-115,106],[-597,51]],[[62266,72609],[18,-171]],[[60948,81887],[156,7],[144,93],[75,-52],[47,205],[197,127]],[[61567,82267],[-51,205],[55,574]],[[61571,83046],[-8,129],[-257,250],[-42,-104],[-120,62],[64,199],[126,18],[-62,103],[60,201],[139,-78],[-57,110],[47,62],[-223,36],[-174,173],[-137,40],[-566,-173]],[[60361,84074],[-32,-1728],[-234,18]],[[60095,82364],[211,-224]],[[60266,80627],[83,-310],[-29,-61],[-25,-1196]],[[60295,79060],[167,-9],[49,-220],[184,-197],[96,136],[94,-13]],[[60885,78757],[3,112],[136,325]],[[61024,79194],[7,213],[76,91],[8,361],[-69,237],[4,172],[-96,7],[2,112],[-288,20],[-82,46],[-61,186]],[[60263,80653],[3,-26]],[[56219,44004],[645,-2]],[[56233,45130],[-3,-279]],[[56230,44851],[-11,-847]],[[62469,49395],[119,14],[200,-226],[64,-179]],[[62852,49004],[15,666]],[[62867,49670],[4,197],[-47,822]],[[62284,50739],[-464,41],[-1,-22]],[[61819,50758],[-56,-1888]],[[53122,42165],[658,2]],[[53780,42167],[0,1007]],[[53119,43170],[3,-1005]],[[49414,36023],[746,34]],[[50159,36726],[-9,669]],[[32596,67063],[2241,461],[185,19]],[[35022,67543],[-20,342],[48,9]],[[35050,67894],[-72,1294]],[[34978,69188],[-1055,685],[-11,166],[-752,-156],[-46,666]],[[31998,68002],[77,-1057],[521,118]],[[86052,56692],[187,-95],[47,101],[143,-153],[176,-268]],[[86605,56277],[71,193],[114,86]],[[86790,56556],[-86,177],[57,136],[-68,155]],[[86693,57024],[-100,-21],[65,254],[-121,439],[-201,317]],[[86336,58013],[-32,-45],[-43,-324],[-50,-129],[-127,-84]],[[86084,57431],[-53,-634],[21,-105]],[[79172,57929],[82,51],[194,-62]],[[79448,57918],[193,512]],[[79641,58430],[122,227],[82,66],[24,201],[61,50],[22,372]],[[79952,59346],[-68,13]],[[79884,59359],[-713,129]],[[79171,59488],[1,-165],[55,-539],[-55,-855]],[[40718,37844],[1102,150]],[[41820,37994],[-57,1333],[-19,174]],[[41744,39501],[-314,-41]],[[41430,39460],[-787,-112]],[[40643,39348],[75,-1504]],[[54310,58992],[251,0],[91,127],[-6,209],[231,-2]],[[54877,59326],[409,-3]],[[55189,60333],[-171,-34],[-102,90],[-101,-17],[-152,64],[-47,87],[-86,-85],[-22,-266],[-204,2]],[[54304,60174],[-95,3]],[[54209,60177],[0,-175],[103,1],[-2,-1011]],[[50918,61978],[942,26]],[[51860,62004],[-13,1729]],[[51847,63733],[-355,-146],[-19,-435],[-85,-39],[-7,-200],[-237,-300],[-44,-129],[15,-167],[-198,-186]],[[50917,62131],[1,-153]],[[51459,65349],[374,9],[-98,-450],[104,-53],[378,8]],[[52217,64863],[-2,168],[189,3],[-1,336]],[[52403,65370],[-97,-1],[-4,667],[-94,-1]],[[79997,37794],[744,-203]],[[80741,37591],[1,0]],[[80742,37591],[-23,248],[-64,78],[14,165],[113,61],[30,349],[-79,185],[-12,627],[-92,169]],[[80629,39473],[-153,-28],[61,-160],[-471,-175],[-344,-467]],[[79212,61761],[25,-339],[21,-618],[101,-321]],[[79359,60483],[422,68],[53,92]],[[79834,60643],[-31,77]],[[79986,61644],[25,296]],[[80011,61940],[-107,46],[-85,198],[-32,-116],[-181,-173]],[[79606,61895],[-394,-134]],[[46812,26399],[1329,97]],[[47699,27819],[77,-174],[-46,-97],[-96,-15],[-155,-165],[-229,-83],[-205,-131],[-25,-326],[-136,-90],[-98,53],[-67,-72],[93,-320]],[[74222,53794],[125,-82],[74,65],[94,-141],[59,43]],[[74574,53679],[74,380],[157,173],[64,272],[151,122]],[[75020,54626],[-124,190],[60,211]],[[74956,55027],[-99,15]],[[74857,55042],[-417,81]],[[74440,55123],[-162,-294],[-49,-308],[-72,-188],[59,-97],[-22,-221],[28,-221]],[[77103,59573],[148,-138],[121,-437]],[[77372,58998],[259,401],[92,518],[37,73]],[[77448,60361],[-39,-58],[-193,161]],[[77216,60464],[-188,156]],[[77028,60620],[-93,-80],[106,-329],[-33,-115],[89,-260],[6,-263]],[[86790,56556],[75,18],[76,-226],[70,83],[38,-202],[58,-93]],[[87107,56136],[453,303],[131,139]],[[87691,56578],[-92,253],[-24,180],[115,105],[-17,280]],[[87673,57396],[-54,27],[40,146],[168,127],[245,59],[120,-210]],[[88192,57545],[66,76],[-41,284],[-103,127],[-219,83],[-109,180],[-219,68]],[[87567,58363],[43,-113],[-105,58],[-72,-708],[-42,-203],[-110,107],[-24,-94],[-277,-174],[-287,-212]],[[46574,71067],[691,60]],[[77050,53240],[103,-169],[-14,210],[-89,-41]],[[76967,45047],[-30,-686],[64,-9]],[[77001,44352],[865,-132]],[[77866,44220],[42,321]],[[77908,44541],[-106,91],[105,222],[14,357],[-75,-71],[-43,186],[-93,113]],[[77710,45439],[-38,-79],[32,-150],[-71,-177],[-185,-100],[-83,284]],[[77365,45217],[-9,-171],[-386,57],[-3,-56]],[[76601,45853],[202,-51],[-27,-736]],[[76776,45066],[191,-19]],[[77365,45217],[-55,249],[12,235],[-104,187],[87,317],[46,338],[-70,125]],[[77281,46668],[-112,64]],[[77169,46732],[-127,22],[-16,-350],[-201,25],[-47,-339],[-169,16],[-8,-253]],[[79703,47930],[297,12],[398,-850]],[[81278,47633],[-45,291],[-76,181]],[[81157,48105],[-120,308],[-149,539],[19,97],[-62,166]],[[80845,49215],[-152,41],[-24,-88],[-84,153],[-379,-79]],[[80206,49242],[-19,-117],[-167,-237],[-105,-100]],[[79915,48788],[99,-13],[-135,-291],[56,-157],[-115,-149],[37,-133],[-111,49],[-43,-164]],[[99412,96842],[1,63]],[[99413,96905],[44,142],[-117,39],[-114,-74],[-51,63],[-88,-158],[-179,46],[52,-176],[74,75],[104,-151],[170,146],[104,-15]],[[62674,60348],[765,-58],[184,-29],[379,-10]],[[64002,60251],[34,1006]],[[64036,61257],[-382,27]],[[62701,61364],[-27,-1016]],[[10369,43710],[1,2]],[[10370,43712],[547,-566],[302,-108],[107,11],[111,141],[187,-1269]],[[11624,41921],[312,1126]],[[12267,43989],[-1,1]],[[12266,43990],[-1129,412],[3,215],[-563,581]],[[10577,45198],[-63,-225],[-89,28],[-34,-87],[-86,102],[-30,-553],[105,-63],[35,-297],[-70,-58],[24,-335]],[[9434,35629],[978,476],[18,-108],[206,105],[-20,109],[195,95]],[[10811,36306],[-78,283]],[[10733,36589],[-103,204],[-32,227],[28,444],[66,39],[-2,328],[-65,225]],[[10625,38056],[-824,-402]],[[9801,37654],[-89,-198],[28,-217],[-107,-189],[27,-256],[70,-177],[-40,-161],[-97,-29],[-154,-215],[-95,-231],[-12,-116],[102,-236]],[[75073,65222],[43,141],[200,212],[169,257],[100,73]],[[75585,65905],[-52,113],[-75,451],[-132,-93]],[[75326,66376],[-107,83],[-69,-50]],[[75150,66409],[-125,25]],[[75025,66434],[-80,-1198],[128,-14]],[[75613,62135],[44,-41],[-5,-189],[76,-71]],[[75728,61834],[173,-69]],[[75901,61765],[106,121],[18,117],[-50,293],[115,389],[-76,209]],[[76014,62894],[-317,64]],[[75697,62958],[-50,-164],[-53,-471],[19,-188]],[[72860,64399],[134,-25],[74,-338],[260,-310],[91,-604]],[[73419,63122],[69,-13]],[[73488,63109],[22,169],[-48,12],[32,447],[-22,85],[179,10]],[[73653,64979],[-380,59],[5,83],[-295,51]],[[72983,65172],[-123,-773]],[[23639,26575],[769,267]],[[24259,28152],[-37,-12],[-85,761]],[[24137,28901],[-194,-162],[-108,-2],[-32,-368],[-115,-86],[16,-176],[75,-154],[-68,-242],[-123,-31]],[[23588,27680],[-76,-38],[127,-1067]],[[64101,35122],[472,-67]],[[65359,36154],[-680,99],[-2,-56],[-436,56]],[[64241,36253],[-3,-109],[-92,9]],[[64146,36153],[-45,-1031]],[[40158,13162],[16,-293],[59,10],[42,-749]],[[40275,12130],[35,-52],[171,44],[15,94],[97,-164],[53,34],[108,-192],[81,129],[93,-13],[112,105],[144,7],[63,-62],[123,45],[20,97],[280,286],[169,-68],[42,218],[81,27]],[[41962,12665],[-21,506],[-91,1759]],[[41281,15006],[-139,-22],[35,-661],[-121,-19],[18,-328],[-572,-92],[18,-329],[-381,-65],[19,-328]],[[85908,53659],[133,102],[163,21],[44,209],[95,-27],[139,81]],[[86482,54045],[147,342],[24,330]],[[86653,54717],[-75,-29],[-129,170],[-59,177],[-222,415]],[[86168,55450],[-115,-172],[-99,-356],[-151,-104]],[[85803,54818],[41,-573],[64,-438],[0,-148]],[[43101,57083],[227,24]],[[43328,57107],[714,81]],[[43036,58797],[65,-1714]],[[72911,68956],[656,-130]],[[73567,68826],[145,892]],[[73712,69718],[66,93],[-19,125],[94,129],[-9,85]],[[73844,70150],[-282,82],[-11,58],[-548,114]],[[73003,70404],[-92,-1448]],[[13793,39495],[403,1055]],[[14196,40550],[-74,156],[-41,227],[69,447],[-80,319],[-109,19],[10,114],[-75,125]],[[13325,41278],[-79,-90],[35,-235]],[[10282,25535],[289,151],[1181,573]],[[11752,26259],[1311,677]],[[13063,26936],[-43,169],[-101,644],[12,6],[-343,2205]],[[9487,28436],[-39,-248],[28,-37],[25,-456],[-32,-83],[-252,-128]],[[9217,27484],[121,-234],[-4,-325],[-63,-260],[164,-451],[0,-398],[132,-184],[137,3],[130,-318]],[[31408,51207],[260,-511],[1295,286],[328,56]],[[33291,51038],[-89,129],[-69,519],[-136,185],[-11,89],[-165,80],[-115,381],[-90,109],[-19,276],[-98,330],[-93,195]],[[32406,53331],[-1149,-267]],[[73845,61483],[62,-14]],[[73907,61469],[274,-59]],[[74221,61918],[73,102],[-108,396],[43,557]],[[74229,62973],[-119,-129],[-151,87],[-191,11],[-14,-69]],[[73754,62873],[-40,-154],[74,-24],[-89,-93],[122,-27],[-24,-409],[63,-257],[-54,-149],[39,-277]],[[26565,30960],[551,166],[33,-331],[249,77],[32,-330],[125,38]],[[27555,30580],[56,17],[45,229],[75,-1],[-20,256],[-77,222],[80,45],[38,-114],[110,32],[34,231],[44,49]],[[27940,31546],[70,204],[-24,261],[-62,-20],[-65,654]],[[27859,32645],[-89,-23]],[[27770,32622],[-44,-31],[-1291,-384]],[[67593,50011],[318,-42],[4,103],[190,-25],[6,125]],[[68111,50172],[-5,170],[37,875]],[[68143,51217],[-219,114],[-115,-182],[-55,110]],[[67754,51259],[-20,74],[73,283],[-59,134],[-148,-72]],[[67600,51678],[-126,-337]],[[67474,51341],[134,-34],[-94,-83],[80,-233],[-62,-228],[122,-130],[3,-128],[-70,72],[55,-194],[69,-65],[-118,-307]],[[70652,51981],[166,-827]],[[70818,51154],[241,-120],[41,-230],[-68,-468]],[[71032,50336],[89,-49]],[[71121,50287],[14,34]],[[71135,50321],[55,17],[15,188],[85,-27],[45,248],[187,227]],[[71522,50974],[26,141],[92,146]],[[71640,51261],[-77,316],[-105,141],[-21,155],[-88,173],[-4,404]],[[71345,52450],[-269,12]],[[71076,52462],[-22,-175],[-120,-255],[-103,67],[-179,-118]],[[58222,82405],[1130,-58],[1,54],[252,-14]],[[59605,82387],[490,-23]],[[60361,84074],[-240,-123],[-400,-308],[-162,-97],[-280,-116],[-227,-6],[-96,53],[-246,-14],[-508,148],[-181,182]],[[58021,83793],[-168,-484],[128,-181]],[[55495,49038],[759,-14]],[[56254,49024],[3,1005]],[[56257,50029],[2,343]],[[56259,50372],[-773,12]],[[24117,23799],[-122,-7],[-87,-201],[-24,-426],[-230,524],[-128,-3],[-247,81],[-93,314],[-68,-46],[-82,245],[-140,195],[-167,44],[-144,133],[-155,-58]],[[22430,24594],[-9,18],[-365,-1005]],[[29223,26692],[352,120]],[[29575,26812],[244,69],[30,312],[101,17],[128,141],[10,75]],[[30088,27426],[-63,703]],[[30025,28129],[-103,1125]],[[29922,29254],[-861,-246]],[[29061,29008],[97,-992],[-368,-108],[30,-318],[-347,-104],[16,-165],[-87,-84],[-653,-197],[77,-762]],[[93834,26961],[208,-345],[-59,-495],[-60,44]],[[93923,26165],[97,-142],[116,117]],[[94136,26140],[-30,119],[64,125],[43,-224]],[[94213,26160],[116,120],[36,139],[162,243],[2,304],[-67,51],[105,137],[190,33],[84,243],[10,187]],[[94851,27617],[-121,249],[9,173]],[[94739,28039],[-129,-8],[28,189],[-62,-8],[15,204],[-77,-23],[-38,129]],[[94476,28522],[-144,-457],[-74,-90],[-157,123],[-38,-132],[74,-211],[-81,-237],[-97,-88],[-125,-469]],[[61877,78479],[119,-7],[56,87]],[[62052,78559],[-5,92]],[[62047,78651],[37,156],[-24,278],[74,58],[125,-42],[-17,-131],[-100,-124],[123,-4],[66,243],[-34,234],[-100,165],[80,68],[193,-36],[140,-91],[94,368]],[[62704,79793],[41,30],[-157,324],[-27,223],[-131,66]],[[62430,80436],[-185,71],[-1,-56],[-222,16]],[[62022,80467],[-105,7]],[[61917,80474],[44,-50],[-52,-197],[30,-543],[-74,-309],[-75,-92],[-18,-141]],[[61772,79142],[19,-61],[-14,-417],[100,-185]],[[65958,20565],[-60,-1235]],[[65898,19330],[762,-114],[49,991]],[[66073,21089],[-126,-129],[85,-188],[-74,-207]],[[57213,54356],[-1,226],[55,1]],[[57267,54583],[-1,934]],[[56294,55513],[-8,-1087]],[[44276,53775],[53,6]],[[45083,53856],[37,4]],[[45120,53860],[-43,1502]],[[45077,55362],[-850,-72]],[[44227,55290],[49,-1515]],[[62521,34098],[348,-30]],[[62869,34068],[804,-80]],[[63673,33988],[55,1185]],[[63728,35173],[-643,80]],[[63085,35253],[-129,-122],[-64,-183],[12,-195],[-95,-195]],[[62809,34558],[-124,-109],[-40,-106],[-139,-128],[15,-117]],[[63082,41297],[-10,-334]],[[63829,40892],[7,333],[191,-16],[18,428]],[[63970,41944],[-92,177],[-88,78],[-42,321],[-73,231],[-127,212]],[[63548,42963],[-419,25],[-10,-337]],[[82380,26525],[384,-19],[186,163],[206,106],[229,-248]],[[83497,27441],[-179,62],[44,343],[-154,49]],[[83208,27895],[-239,76],[-16,-163],[-281,97]],[[82672,27905],[-12,-189],[-75,15],[32,-378],[-143,50]],[[60107,12520],[124,4],[30,216],[90,162],[119,-52],[-5,245],[114,-102],[89,67],[85,-86],[177,-71],[160,-261],[152,-163]],[[61337,15219],[-208,394],[-129,342],[-307,611],[-141,148],[-132,298],[-56,39],[-129,260]],[[14187,21015],[1463,701],[736,333]],[[16386,22049],[-238,1607],[-56,-24],[-142,976],[-19,-9],[-94,636],[901,387],[-327,2284],[-71,536]],[[16340,28442],[-675,-310],[-331,-135]],[[15334,27997],[-452,-198],[-931,-431]],[[13951,27368],[425,-2791],[-722,-349],[358,-2261],[24,12],[151,-964]],[[93894,28609],[109,14],[111,592]],[[94114,29215],[-91,200],[-83,-312],[-50,-295],[-35,41],[84,503],[-93,39],[2,118],[-95,21],[56,-491],[-9,-165],[94,-265]],[[93633,28785],[31,-38],[99,195],[-130,-157]],[[93693,29555],[-29,-368],[39,-17],[41,273],[-51,112]],[[86756,23967],[-324,-1768]],[[86432,22199],[188,110],[311,-199]],[[86931,22110],[406,2136],[-71,607],[267,106]],[[87533,24959],[81,409],[-77,388],[40,126]],[[87577,25882],[55,179],[30,514]],[[87662,26575],[-198,-61],[-8,293],[-344,-195],[-38,206],[-109,55],[-14,-87]],[[86951,26786],[17,-9],[-110,-634],[149,-746],[-160,-61],[0,-184],[99,-138],[-190,-1047]],[[39969,54758],[1600,206]],[[41715,54983],[-82,1923]],[[41633,56906],[-69,-9],[-72,1713]],[[41492,58610],[-52,1215]],[[41440,59825],[-590,-78]],[[40850,59747],[45,-997],[33,-334],[-755,-103],[17,-339],[-376,-57],[8,-167]],[[39822,57750],[147,-2992]],[[55832,83116],[1028,-44]],[[56860,83072],[160,3],[20,1244]],[[57040,84319],[-32,26]],[[57008,84345],[-3,-159],[-96,121],[-168,94]],[[56741,84401],[-69,-110],[-370,186],[-78,-18],[136,-363],[27,-266],[-7,-241],[-116,-88],[-113,97],[-106,329],[-112,-8]],[[55933,83919],[-28,-162],[59,-192],[6,-210],[-138,-239]],[[17977,1540],[1153,530],[1700,740]],[[20830,2810],[-180,1271],[-46,-19],[-89,632],[36,15],[-271,1906],[-12,16]],[[20268,6631],[-183,-21]],[[20082,6536],[75,-190],[-63,-122],[-28,-378],[-130,-92],[-176,96],[-53,-75],[-99,215],[-87,-44],[-32,-115],[-125,1],[-227,143],[-42,-143],[46,-218],[-237,-42],[-90,66],[21,131],[-34,213]],[[17926,3350],[44,-153],[-98,-73],[-16,-173],[70,-92]],[[17926,2859],[148,-237],[-52,-225],[44,-248],[-39,-101],[11,-320],[-72,45],[-51,-164],[62,-69]],[[71390,66013],[75,-204],[52,83],[89,-106],[62,80],[61,244],[53,-27],[99,221]],[[71881,66304],[56,296],[-167,239],[4,116]],[[71774,66955],[-110,-21],[66,103],[-7,257],[-65,34],[66,160],[-70,203],[-86,-49],[-41,234],[-110,257]],[[71417,68133],[-24,-426],[-188,32],[-9,-167],[-64,12]],[[70973,66763],[-7,-141],[302,-184],[103,-214],[19,-211]],[[66260,33257],[189,-30],[-11,-223],[613,-83]],[[67051,32921],[-10,238],[52,435]],[[67093,33594],[-642,78]],[[66451,33672],[-168,29]],[[66283,33701],[-23,-444]],[[95852,97665],[53,4]],[[95905,97669],[-18,172],[209,96]],[[96096,97937],[7,151]],[[96054,98315],[-189,29]],[[95865,98344],[21,-106],[-71,-521],[25,-48]],[[64590,29499],[-560,69]],[[64030,29568],[-48,-1300]],[[62037,20810],[573,-57]],[[62610,20753],[394,-44]],[[63004,20709],[14,322]],[[63018,21031],[46,1305]],[[62108,23113],[-32,-994]],[[97355,96634],[-82,173]],[[97165,96712],[-23,-97],[-131,-113]],[[97011,96502],[184,27],[160,105]],[[24723,10251],[-24,64],[-168,13],[248,447],[14,186],[154,207],[119,75],[76,437],[72,101],[112,372],[26,304],[70,15],[38,165]],[[25460,12637],[-1275,-463],[-741,-278]],[[23444,11896],[41,-325]],[[23667,10115],[221,-1768]],[[23888,8347],[58,-471],[164,-137],[82,214],[65,-22],[78,247]],[[78789,55957],[232,-104],[227,-41]],[[79248,55812],[225,95],[158,170],[36,95]],[[79725,56938],[-42,122]],[[79683,57060],[-58,52],[-88,-77],[-193,78],[-94,-160],[-207,-140],[-199,-287]],[[78844,56526],[90,-436],[-145,-133]],[[46001,15939],[91,70],[20,-114],[187,-36],[119,175],[-28,173],[36,184]],[[46426,16391],[35,243],[75,183],[-23,168],[-63,70]],[[46450,17055],[-1247,-117]],[[45203,16938],[34,-987],[760,77],[4,-89]],[[53874,43176],[761,-4]],[[54635,43172],[117,59],[11,248],[140,271],[-47,202],[24,100],[102,17],[64,109]],[[55046,44178],[-53,0]],[[54993,44178],[-748,4]],[[54245,44182],[-372,0]],[[45985,42493],[931,74]],[[46916,42567],[-28,1343]],[[45979,43834],[-34,-4]],[[56288,80787],[369,-13],[-16,-137]],[[56641,80637],[897,-24]],[[57538,80613],[-86,385],[72,320],[-68,229],[7,158]],[[57470,82016],[-116,-102],[-110,88],[-78,-13],[-30,201],[-202,84],[-87,-57]],[[56847,82217],[-288,11],[-271,-1441]],[[68197,62407],[675,-93]],[[68872,62314],[681,-91]],[[69576,62221],[31,703],[-105,181],[35,53]],[[69537,63158],[-65,40],[-92,-162],[-148,10]],[[69232,63046],[-181,-97],[-315,278],[-40,112],[-130,72],[-216,-248],[-69,-234],[-165,-127],[-99,71]],[[68017,62873],[-107,-102],[-94,-270]],[[67816,62501],[-8,-46],[389,-48]],[[57260,57638],[368,-14]],[[57628,57624],[17,615],[83,123]],[[57728,58362],[-94,0],[2,280],[-32,1]],[[56441,59193],[-21,-230]],[[56420,58963],[-108,-1299]],[[63909,37517],[376,-47]],[[64285,37470],[757,-93]],[[64338,39149],[-13,-328],[-359,39]],[[71318,39982],[24,332]],[[71342,40314],[51,719]],[[71393,41033],[-222,41]],[[71171,41074],[-469,93]],[[70702,41167],[-6,-110]],[[70696,41057],[-40,-608]],[[70634,26523],[-70,-990],[-14,-333]],[[70929,30508],[-44,-670],[-396,77]],[[60370,53715],[38,1594]],[[60744,53188],[380,-14]],[[61444,55274],[-753,28]],[[63315,52808],[669,-62]],[[63984,52746],[6,170]],[[63990,52916],[22,215],[19,884],[-125,3]],[[63906,54018],[-575,49]],[[63697,75710],[888,-111],[24,-55]],[[64609,75544],[52,1407]],[[64661,76951],[-31,3]],[[63933,77029],[-32,-1004],[-194,19]],[[63707,76044],[-10,-334]],[[37887,64693],[53,-988],[800,125],[17,-332],[188,26],[17,-333],[376,56]],[[39338,63247],[-32,668],[322,48]],[[39628,63963],[-65,1326],[-27,681]],[[39536,65970],[-377,-58],[-18,337],[-1135,-195],[17,-336],[-192,-34]],[[37831,65684],[56,-991]],[[86116,55557],[52,-107]],[[86653,54717],[179,67],[164,154]],[[86996,54938],[98,478],[136,148],[-74,22],[-70,161],[21,389]],[[86605,56277],[-94,-248],[6,-81],[-208,-124],[-193,-267]],[[44703,16885],[500,53]],[[46450,17055],[39,332],[118,348],[-36,165],[84,303],[73,123],[133,-75],[-35,165]],[[46826,18416],[137,166],[-30,75],[60,157],[-55,103],[-26,294]],[[46912,19211],[-148,57],[-55,110],[-72,-76],[-71,44],[-157,-53],[-39,168],[-136,239]],[[46234,19700],[-35,-5],[11,-330],[-381,-36],[31,-986],[-634,-66],[12,-331],[-572,-60]],[[44666,17886],[37,-1001]],[[75404,36620],[813,-175]],[[76217,36445],[79,828]],[[76296,37273],[-164,43],[30,274]],[[76162,37590],[-477,108]],[[75514,37735],[-97,-983]],[[53832,60174],[377,3]],[[54304,60174],[0,504],[95,0],[1,671]],[[54400,61349],[-194,1],[-2,338],[-92,2],[0,335],[-188,0]],[[53924,62025],[-189,0],[0,-676],[-187,0],[1,-336]],[[82561,62817],[420,-785],[88,-9],[24,-182],[84,16],[40,-92]],[[83217,61765],[46,14]],[[83263,61779],[61,11],[117,198]],[[83441,61988],[-25,185],[134,304],[36,393],[60,155],[264,337],[102,34],[-7,108]],[[84005,63504],[-56,-46],[-242,230],[-260,-50],[-94,42],[-110,-85],[-99,27],[-83,-159],[-74,12]],[[82987,63475],[-126,35],[-73,-215]],[[82788,63295],[129,-200],[-214,-171]],[[82703,62924],[-142,-107]],[[79335,63518],[2,-172],[138,15],[90,-107],[183,114],[196,198],[122,-12]],[[80066,63554],[-111,806]],[[79955,64360],[-123,277]],[[79832,64637],[-347,-108],[-71,-84],[-71,-306],[-199,105]],[[79144,64244],[107,-480],[84,-246]],[[69945,51139],[83,-76],[17,-251],[135,-56],[-40,-139],[-7,-282],[48,-25]],[[70181,50310],[462,573],[175,271]],[[70652,51981],[-132,49],[17,91],[-110,5],[-188,-186],[-32,133],[-71,-25],[-23,141]],[[70113,52189],[-94,-196],[-7,-165]],[[70012,51828],[30,21],[-125,-513],[28,-197]],[[67754,51259],[219,507],[109,115],[53,341]],[[68135,52222],[-311,660]],[[67824,52882],[-115,-85],[-40,-152],[-71,172]],[[67598,52817],[-137,-247]],[[67461,52570],[-61,-330],[51,-183],[106,-153],[43,-226]],[[72918,54404],[164,-257],[8,-153],[76,23],[112,-225]],[[73278,53792],[123,129],[161,-98],[115,279],[80,97]],[[73757,54199],[11,243],[-68,54],[-75,227],[-145,560]],[[73468,55285],[-333,20]],[[73135,55305],[-44,-24],[-51,-245],[8,-260],[-130,-372]],[[72164,48729],[490,-10]],[[72663,49520],[-27,225],[-83,153]],[[72553,49898],[-236,-155],[-341,-159]],[[71976,49584],[4,-452],[-113,-62]],[[71867,49070],[30,-79],[209,-64],[58,-198]],[[87567,58363],[-143,153]],[[86450,58109],[-114,-96]],[[74072,58885],[87,-119],[52,-190],[121,-259],[51,21],[2,-192],[52,-69],[15,-238],[89,48],[27,-89]],[[74568,57798],[195,315]],[[74763,58113],[38,176],[-24,180],[84,185],[-83,212]],[[74778,58866],[-119,-13],[-73,-118],[-121,-14],[-64,111],[-53,-111],[-168,114],[0,106]],[[74180,58941],[-108,-56]],[[51155,74320],[1,-31],[724,-305]],[[51880,73984],[265,825],[83,-83]],[[52228,74726],[324,1000]],[[52153,76127],[-192,-596],[-450,442]],[[51511,75973],[-90,-167],[84,-132],[-187,-187],[43,-75],[-146,-154],[112,-162],[-78,-137],[-117,-41],[31,-264],[-46,-161],[38,-173]],[[85380,48290],[61,-73],[-92,-218],[13,-260]],[[85362,47739],[133,48],[98,-110],[86,38],[110,274],[305,158]],[[86094,48147],[128,142]],[[86222,48289],[-75,454]],[[86147,48743],[-38,131],[-197,-70],[-84,-207]],[[85828,48597],[-23,-268],[23,-136],[-94,-160],[-50,96],[-121,32],[32,75],[-110,51]],[[85485,48287],[-105,3]],[[78095,38418],[125,-30],[-18,-280],[243,-83]],[[78445,38025],[278,-73],[28,318],[94,-23],[13,165]],[[78858,38412],[13,168],[-94,23],[25,338],[-13,173]],[[78248,39228],[-37,-504],[-94,19],[-22,-325]],[[51054,11421],[1127,34]],[[52181,11455],[34,524],[-19,167],[44,305],[-39,325]],[[52201,12776],[-1128,-36]],[[50498,12717],[9,-661],[-39,-2],[10,-658]],[[64028,22562],[583,-62]],[[64611,22500],[190,-27],[10,331],[382,-51]],[[65193,22753],[26,663],[65,-8],[10,334]],[[64782,24149],[-376,46]],[[60602,23897],[192,-10],[-8,-328]],[[60786,23559],[952,-82]],[[61794,25138],[-1133,103]],[[60661,25241],[-28,-1013],[-31,-331]],[[61797,83402],[270,-442],[155,-392],[289,-65]],[[62511,82503],[117,186],[83,263],[-19,196],[68,61],[263,35],[225,178]],[[63248,83422],[-4,216],[46,60]],[[63290,83698],[-152,142],[-29,-62],[-169,294],[1,219],[72,153]],[[63013,84444],[-178,193],[4,-135],[-65,28],[77,-227],[-74,-126],[-194,181],[-74,-258],[-66,34],[-54,-383],[-182,11],[39,-112],[3,-281],[-222,-36],[-219,177],[-11,-108]],[[94527,97599],[44,58]],[[94571,97657],[123,180]],[[94694,97837],[-18,192]],[[94676,98029],[-3,422]],[[94673,98451],[-154,-66],[-59,38],[9,-174],[71,-100],[-75,-43],[55,-260],[7,-247]],[[12672,10199],[121,68],[116,-51]],[[12909,10216],[150,26],[248,529],[6,212],[51,305],[-25,426]],[[13339,11714],[-40,141],[0,324]],[[13299,12179],[-251,-98]],[[13048,12081],[-133,-187],[18,-101],[-487,-250]],[[12446,11543],[154,-956],[72,-388]],[[16386,22049],[46,-324]],[[16432,21725],[184,82],[146,-969],[181,81]],[[19175,21553],[-145,1002],[-210,1578],[-223,1623],[18,8],[-324,2391],[31,13],[-147,1043]],[[18175,29211],[-790,-310],[-989,-434]],[[16396,28467],[-56,-25]],[[50019,80229],[171,-613],[259,-453]],[[51410,79780],[82,66],[212,1071]],[[51704,80917],[-341,201]],[[51363,81118],[-66,-65]],[[51297,81053],[-268,-259],[-65,38],[-93,-105],[-338,261],[-140,-165],[-34,-284],[-164,-319],[-66,68],[-110,-59]],[[30914,37394],[760,190],[791,183]],[[32465,37767],[-100,1292]],[[32365,39059],[-123,-29],[-55,-97],[28,-391],[-64,-14],[21,-278],[-313,-76],[-21,257],[-163,156],[-43,-53],[3,-291],[-90,-19],[-167,77],[-121,-62],[-27,73],[-178,27],[-159,-219]],[[30893,38120],[-39,-25]],[[44683,85187],[96,-42],[9,-279],[64,-32],[34,-310],[21,-780]],[[44907,83744],[1123,93]],[[45980,85887],[-1071,-77]],[[44909,85810],[-197,-359],[-29,-264]],[[28734,35384],[142,55],[92,263],[-57,264],[93,65],[-95,250]],[[28173,37420],[-18,-206],[-118,-76]],[[28037,37138],[-44,-58],[-43,-354],[64,21],[-80,-272],[14,-450]],[[27948,36025],[18,-223],[183,-13],[103,160],[118,-77],[35,-103],[157,91],[115,-212],[57,-264]],[[86997,51100],[52,216]],[[87049,51316],[-98,-41],[-24,-130],[70,-45]],[[38919,44075],[0,0]],[[38711,44389],[2,-32]],[[38713,44357],[1,-8]],[[38714,44349],[141,-116],[138,192],[70,-116],[-91,-57],[68,-101],[-22,-172]],[[39018,43979],[690,117],[1277,183]],[[40953,44946],[-12,-2]],[[39357,44708],[-650,-106]],[[38707,44602],[4,-213]],[[72649,63132],[66,-190],[-7,-114],[57,-244],[-18,-277],[19,-172],[98,-439]],[[72864,61696],[175,-41]],[[73039,61655],[33,501],[111,-23],[21,304],[103,8]],[[73307,62445],[-30,190],[210,-41],[26,373]],[[73513,62967],[-25,142]],[[73419,63122],[-749,142]],[[72670,63264],[-21,-132]],[[68212,43245],[548,-90]],[[68760,43155],[16,329],[137,-20]],[[68913,43464],[49,1007]],[[68962,44471],[-311,41]],[[68651,44512],[-307,46]],[[68344,44558],[-31,-169],[7,-542],[-27,-154],[47,-119],[-146,-245],[18,-84]],[[71047,47481],[77,-40],[63,-269]],[[71373,47106],[20,302],[204,187],[19,277]],[[71616,47872],[-378,77],[-82,184]],[[71156,48133],[-67,-42],[-42,-610]],[[71052,53975],[-62,504]],[[70990,54479],[-167,193],[13,71],[-225,416]],[[70611,55159],[2,-121],[-323,-33],[-60,-194]],[[70230,54811],[-135,-430]],[[70095,54381],[68,-581],[-19,-128],[216,-76],[61,136],[113,-87]],[[58307,74015],[265,-11]],[[58572,74004],[80,1]],[[59104,74319],[98,349],[-35,182],[71,138],[-218,11],[3,265],[-79,66],[-127,-37],[-12,-128]],[[58805,75165],[-98,-209],[-65,-3],[-192,-439],[58,-103],[-35,-191],[-124,-84],[-42,-121]],[[55801,27018],[135,106],[46,130],[225,104],[98,123],[81,225],[62,32]],[[56448,27738],[11,597]],[[61291,48894],[-14,-1373]],[[61277,47521],[-2,-343],[373,-10]],[[61648,47168],[252,-11]],[[61900,47157],[9,567]],[[61678,48837],[-132,12],[-83,135],[-161,-93]],[[61302,48891],[-11,3]],[[64936,58986],[38,141],[132,212]],[[65106,59339],[-54,78],[-70,-71],[-87,67],[7,127],[109,143],[-132,66],[-51,180],[-101,83],[-60,-62],[-76,88],[-3,186],[63,129],[111,-66],[14,118],[-177,224],[93,172]],[[64692,60801],[-14,96],[-131,-164],[-88,56],[-14,128],[60,167],[-48,246]],[[64457,61330],[-7,17]],[[64450,61347],[-61,-283],[-92,173]],[[64297,61237],[-261,20]],[[64002,60251],[-44,-1142]],[[63958,59109],[580,-72]],[[60634,57460],[52,-4]],[[60686,57456],[785,-62]],[[61471,57394],[389,-24]],[[61860,57370],[10,626],[-196,8],[9,337],[-221,5]],[[60644,58376],[-10,-916]],[[71748,63873],[96,-33],[356,-626],[136,-490],[56,-52],[41,-306],[71,-124]],[[72504,62242],[145,890]],[[72670,63264],[40,242]],[[72710,63506],[-103,178],[5,169],[-84,299],[-221,458],[-121,79],[11,171]],[[72197,64860],[-472,84]],[[71725,64944],[-60,-869],[83,-202]],[[56667,63693],[142,-113],[35,54],[210,-86],[1,-340],[-41,-33],[195,-138]],[[57209,63037],[0,170],[122,2],[0,106],[660,1]],[[57991,63316],[5,1058]],[[57605,64696],[0,-55],[-159,-42],[-537,-2],[0,-111],[-247,-3]],[[56662,64483],[5,-790]],[[9217,27484],[-172,-85],[53,-308],[-462,-244]],[[8636,26847],[34,-537],[-19,-231],[22,-198],[-128,-364],[98,-204],[86,-334],[25,-219]],[[63817,33972],[702,-62]],[[64101,35122],[-373,51]],[[63673,33988],[144,-16]],[[69780,49025],[633,-108],[-6,-110]],[[70407,48807],[91,-16]],[[70498,48791],[30,279],[-58,6],[61,217],[-34,52],[-8,301],[-64,95]],[[70425,49741],[-56,-58],[-11,136],[80,24],[-124,210],[-99,-42]],[[70215,50011],[-18,-329],[-189,30],[-11,-226],[-185,44]],[[69812,49530],[-32,-505]],[[70876,48741],[65,-13]],[[70941,48728],[51,48],[270,-54],[92,193],[-57,80],[20,167]],[[71317,49162],[-62,57],[-8,145],[-88,247]],[[71159,49611],[-100,-3],[-14,-287],[-67,-45],[-81,-200],[-21,-335]],[[80283,71229],[48,-8],[190,260],[32,136],[134,12],[80,-81],[31,86],[105,-6],[86,349],[86,9],[58,180],[60,-34],[46,146],[123,74]],[[81362,72352],[31,87],[103,-6],[21,276],[-50,276],[-44,-36]],[[81423,72949],[-2,-116],[-150,-161],[-100,-9],[-215,129],[-126,-194]],[[80830,72598],[-298,-176],[-263,-354],[2,-369],[-89,-10],[-68,-126]],[[80114,71563],[104,-155]],[[25266,28829],[-95,868]],[[25058,29695],[-65,-32],[-153,82],[-154,-304],[-134,-98],[-56,-119],[-142,-54],[-102,-167],[-115,-102]],[[88046,44235],[7,-522],[93,-153],[70,-213]],[[88216,43347],[61,375],[591,-193]],[[88868,43529],[104,344],[-79,288],[-396,194]],[[88497,44355],[-94,-44],[-80,157],[-89,-39],[-42,135],[-97,102]],[[88095,44666],[-100,-61],[51,-370]],[[65271,16772],[-29,434],[54,248],[91,-299],[196,-391],[145,-162],[-6,88],[-129,242],[-51,210],[149,-298],[196,-58]],[[65887,16786],[26,558],[81,-11],[15,326],[-187,30],[46,982]],[[65868,18671],[-854,118]],[[65014,18789],[-72,-1640],[192,-26],[-16,-329],[153,-22]],[[21781,43694],[1587,545]],[[23368,44239],[-45,395]],[[23323,44634],[-177,1608]],[[23146,46242],[-233,2061]],[[22913,48303],[-250,2291]],[[22597,51190],[-1218,-417],[4,-37],[-1671,-595],[-5,43],[-267,-99]],[[19440,50085],[14,-72],[550,-4488],[1500,540],[277,-2371]],[[88791,39143],[152,154]],[[88943,39297],[257,259],[40,381]],[[89240,39937],[-27,71],[13,285],[-37,55],[34,174]],[[89223,40522],[-191,11],[-10,-74],[-139,57],[-27,132],[-97,-203],[-206,-106],[-116,-189],[-123,-84]],[[88314,40066],[-46,-264],[74,-42],[164,-468],[303,285],[-18,-434]],[[72269,46488],[1,-72]],[[72270,46416],[63,37],[151,-268],[75,-9],[118,-163]],[[72677,46013],[91,264],[-45,231]],[[72723,46508],[-455,83],[1,-103]],[[89883,34269],[47,-448]],[[89930,33821],[38,-345]],[[89968,33476],[78,308]],[[90046,33784],[-50,256]],[[89996,34040],[-68,250]],[[89928,34290],[-45,-21]],[[86675,18578],[29,152],[119,-45],[96,501],[467,2349],[-29,16],[49,256]],[[87406,21807],[-475,303]],[[86432,22199],[-481,-289]],[[85951,21910],[-722,-456]],[[85229,21454],[46,-131],[45,-344],[309,-859],[356,-805],[205,-294],[117,-254],[98,-38],[107,-170],[163,19]],[[62726,75140],[437,-8],[323,105],[-15,160],[216,-24]],[[63687,75373],[10,337]],[[63707,76044],[-777,76]],[[62930,76120],[-2,-78],[-147,18],[-130,-154],[-39,-278]],[[62612,75628],[105,-70],[-197,-18],[28,-281],[93,-76],[22,160],[72,-63],[-9,-140]],[[53906,66727],[383,0]],[[55415,66715],[5,847]],[[55420,67562],[-135,-90],[-40,214],[-102,98]],[[55143,67784],[-178,56],[-250,-51],[-29,-198],[-363,228]],[[54323,67819],[-143,-4],[-69,-160],[-108,-124],[-1,-682],[-96,-122]],[[61655,44787],[752,-61],[-11,-339]],[[62396,44387],[39,13],[538,-46]],[[62973,44354],[-39,194]],[[62998,45579],[-42,252],[3,238]],[[62959,46069],[-544,38]],[[62415,46107],[-177,-173],[-114,-338],[-81,-20],[-56,-198]],[[61987,45378],[-110,-113],[-116,-202]],[[61504,39721],[692,-56]],[[62196,39665],[1,10]],[[62197,39675],[16,136],[-21,425],[-57,70],[-146,349],[-18,484]],[[61971,41139],[-284,-195],[-23,-73],[-196,-139]],[[39487,10102],[1217,211]],[[40704,10313],[316,51],[-17,326],[190,31],[-17,328],[854,131]],[[42030,11180],[-68,1485]],[[40275,12130],[-46,-94],[-402,-102],[-48,105],[-52,-68],[-118,3],[-163,169],[-142,32]],[[39304,12175],[48,-787],[57,11],[78,-1297]],[[77223,62707],[204,-555]],[[77427,62152],[16,-41]],[[77443,62111],[7,-19]],[[77450,62092],[78,-211],[489,-692]],[[78430,62392],[-676,1239]],[[77754,63631],[-28,-218],[-55,-73]],[[77671,63340],[-52,-186],[-78,-76],[-77,-344],[-46,-73],[-195,46]],[[41174,28416],[2156,283],[-21,218],[-73,100],[-125,301]],[[43111,29318],[-40,113],[-109,-83],[-56,209],[-111,36],[-20,494]],[[41105,29853],[5,-98]],[[41110,29755],[64,-1339]],[[64420,61426],[30,-79]],[[64457,61330],[20,42],[468,-18],[1,-67],[131,-29],[2,76],[127,36]],[[65206,61370],[36,1466]],[[65242,62836],[-143,17]],[[65099,62853],[-1044,113]],[[64055,62966],[25,-181],[150,43],[51,-359],[59,-68],[71,60],[58,-81],[-98,-190],[64,-161],[-148,-119],[-13,-128],[96,-44],[50,-312]],[[88087,35374],[230,-496],[70,-90],[90,-341]],[[88477,34447],[129,129],[171,23]],[[88777,34599],[85,503],[-62,342],[-41,-31],[125,311]],[[88884,35724],[-94,67],[26,115],[-106,70],[37,109],[-138,74]],[[88609,36159],[-71,-202],[-149,-7],[-43,-142],[-38,-324],[-64,-77],[-99,54],[-58,-87]],[[81612,52504],[47,38],[12,-197],[425,39],[143,-198],[39,-123]],[[82278,52063],[-9,1233]],[[81685,53468],[-51,-432],[-87,-240],[-21,-209],[86,-83]],[[87721,49267],[91,7],[89,-113]],[[87901,49161],[42,114],[-18,335],[-30,-39],[-107,135]],[[87788,49706],[-105,-87],[-24,-281]],[[36054,7749],[1532,328]],[[37586,8077],[-22,327],[-38,-8],[-88,1293],[4,225],[-84,-46],[-18,133],[-64,-13],[-22,327],[60,12],[-23,335],[-160,-34],[-23,326],[-51,-11],[-91,1309],[-15,-3],[-47,673]],[[35544,13039],[-60,49],[-245,-260],[-72,26],[-144,-72],[-76,-133],[-64,1],[-8,-142],[-143,-234]],[[34732,12274],[60,-707],[386,100],[47,-259],[252,113],[69,-913],[33,8],[64,-847],[89,105],[41,-546],[40,9],[48,-652],[87,20],[48,-642],[34,8],[24,-322]],[[78315,72787],[198,-318],[55,-149],[67,-10]],[[78635,72310],[175,-198]],[[78810,72112],[108,-66]],[[78918,72046],[96,-13]],[[79014,72033],[41,487],[-162,39],[35,486]],[[78928,73045],[12,145],[-195,48]],[[29742,31172],[180,-1918]],[[30025,28129],[362,107],[-27,299],[371,100]],[[30731,28635],[-52,410],[-117,1318],[-57,-15],[-23,262],[53,15],[-89,994],[75,20],[-55,651],[535,146],[243,85]],[[31244,32521],[-80,916],[6,91],[-143,1633]],[[31027,35161],[-1610,-438]],[[29417,34723],[146,-1604]],[[29563,33119],[179,-1947]],[[68231,70169],[36,-169],[191,-6],[25,-123],[103,-69],[58,-146],[168,-181]],[[68812,69475],[35,521],[222,-35],[-7,43]],[[69062,70004],[-58,120],[43,105],[-78,96],[-94,260],[47,200],[-96,198],[115,22],[-33,157],[63,-20],[-16,318],[149,152],[-92,39],[-35,228]],[[68977,71879],[-77,-18]],[[68900,71861],[-93,-218],[68,-120],[-132,-25],[-222,184],[-52,-95],[37,-96],[-6,-206],[-41,55],[-73,-325],[61,-23],[-159,-279],[-109,-262],[57,-36],[-5,-246]],[[57612,65912],[25,629],[190,4],[4,673]],[[57831,67218],[-2,1006],[-228,-3]],[[57598,68221],[-26,-214],[-151,-300],[-34,-202],[22,-114],[-58,-253],[9,-352],[-47,-251],[-251,4]],[[57062,66539],[-26,-628],[576,1]],[[81603,45469],[204,97],[137,325],[294,88]],[[82238,45979],[-111,559],[-25,250],[-73,21],[-39,153]],[[81990,46962],[-91,-44],[-251,-12],[-169,-127]],[[85808,47258],[127,-386],[-4,-130],[109,32]],[[86040,46774],[58,18],[121,336],[146,205],[211,34],[295,442],[-8,149]],[[86863,47958],[-58,-109],[-94,108],[24,-171],[-216,105],[-265,-149]],[[86254,47742],[9,-143],[-129,64],[-5,-99],[-97,24],[3,-112],[-105,35],[-37,-149],[-85,-104]],[[61454,17032],[79,-64],[-1,145],[-78,-81]],[[60620,17981],[61,-11],[255,-251],[107,-71],[78,-133],[69,78],[39,-111],[149,-75],[94,-207],[79,31],[124,-111],[139,251],[-65,254],[-122,266],[56,211],[-85,147],[-53,257],[39,42]],[[61584,18548],[54,1639]],[[60682,20261],[-62,-2280]],[[61397,29518],[549,-49]],[[61946,29469],[755,-75],[190,-41]],[[62891,29353],[12,346]],[[62903,29699],[13,334]],[[62366,30592],[-853,79]],[[61513,30671],[-46,-103],[18,-193]],[[61485,30375],[-47,-182],[16,-127],[-63,-124],[6,-424]],[[50911,36749],[-3,671]],[[50908,37420],[-8,832]],[[55046,44178],[172,346],[110,106],[173,59],[73,-125]],[[55574,44564],[111,51],[-20,124],[107,119]],[[55772,44858],[-82,120],[34,117],[76,-16],[-38,141],[-120,-71],[-23,219],[-97,93],[-42,194]],[[55480,45655],[-75,-20],[-29,-122],[-377,4]],[[54999,45517],[-6,-1339]],[[14743,41976],[414,179],[186,-1314],[54,-323],[-185,-76],[48,-345],[208,-425],[291,116]],[[15759,39788],[1462,611]],[[17221,40399],[-583,54],[-42,303],[610,2015]],[[15683,44436],[-940,-2460]],[[67952,57227],[283,53],[178,-180],[216,-30]],[[68629,57070],[14,98],[130,7]],[[68773,57175],[-1,333],[-61,284]],[[68711,57792],[-38,-71],[-134,7],[-66,-73],[-181,-58],[-61,57],[-204,-11]],[[52337,89277],[-22,211]],[[52647,87605],[109,-49],[18,72],[288,14],[56,-102],[-10,213],[157,-3]],[[53265,87750],[1,124],[-110,962]],[[53156,88836],[-126,277],[-368,358],[-172,220],[-260,395]],[[52285,89783],[68,-187],[108,-5],[266,-388],[144,-112],[145,-54],[-4,-309],[-250,247],[-77,129],[-124,17],[-49,-353],[-110,-17]],[[52402,88751],[-42,-139],[-47,64],[-149,-296]],[[52164,88380],[-7,-161],[-68,-144],[150,-182],[253,-128],[155,-160]],[[72710,63506],[150,893]],[[72983,65172],[70,439]],[[73053,65611],[-172,61],[-58,71]],[[72823,65743],[-3,-56],[-380,24]],[[72440,65711],[-2,-80],[-134,-404],[-82,-26],[-25,-341]],[[36038,17320],[60,67]],[[36098,17387],[96,466],[60,68],[-12,164],[111,246],[16,226],[60,69],[-30,263],[-75,231]],[[36324,19120],[-247,-53],[-16,219],[-189,-41],[-7,110],[-135,81],[-7,109],[-252,-55],[-33,438],[-33,-7],[-74,1004],[-189,-42],[-8,110],[-188,-42],[-9,110],[-502,-129]],[[34435,20932],[-81,-19],[16,-223],[-94,-22],[-54,-125],[55,-321],[-101,82]],[[34176,20304],[-73,-294],[87,-1045],[-31,-8],[48,-655]],[[50127,40072],[-2,685]],[[50125,40757],[-10,656]],[[47159,32964],[99,155],[262,155],[171,26],[131,139],[162,27]],[[47984,33466],[-23,1140],[20,1],[-28,1340]],[[47953,35947],[-40,-3]],[[47134,35889],[34,-1335],[-25,-3],[34,-1335],[-18,-252]],[[34146,61644],[53,349],[538,107],[73,-125],[455,98],[24,133]],[[35175,63854],[-153,-97],[-453,-376],[-192,-225],[-570,-113]],[[33807,63043],[97,-1450],[242,51]],[[36739,58593],[662,117],[405,312],[137,231],[38,-60],[453,28],[669,120]],[[39103,59341],[615,84],[82,-67],[378,1521],[154,24],[-6,125]],[[40326,61028],[-27,572],[-391,-61],[4,-84],[-498,400]],[[39414,61855],[14,-283],[-1359,-215],[-710,-119],[-37,670]],[[36569,61778],[130,-2324],[40,-861]],[[81105,54815],[-7,-77]],[[81900,55486],[-303,26],[11,114],[-203,60],[-102,122]],[[81303,55808],[-153,-307],[-51,77]],[[85511,56023],[421,-141]],[[85932,55882],[61,613],[59,197]],[[86084,57431],[-88,154],[-78,-81],[-208,-5],[-51,85],[-156,-6]],[[85503,57578],[-145,-84],[-146,-204]],[[85212,57290],[18,-114],[224,-213],[-31,-254],[88,-686]],[[84349,59341],[174,-116],[468,-152],[67,-41]],[[85058,59032],[96,136],[136,285],[147,203],[59,229],[109,155]],[[85605,60040],[17,171],[157,118],[-113,296]],[[85666,60625],[-126,166],[-200,27],[-431,-223],[-276,119],[-87,-63]],[[84546,60651],[34,-71],[-52,-232],[26,-66],[22,-442],[-104,-152],[-123,-347]],[[30359,14280],[177,51],[31,-327],[379,105],[192,13],[26,-288],[116,34],[-16,312],[113,34],[116,126],[64,246],[144,159],[-14,173],[140,118]],[[31827,15036],[31,207],[85,26],[-12,122],[126,266],[142,-18],[64,93],[94,-119]],[[32184,17456],[-12,136]],[[32172,17592],[-190,-79],[-565,-155]],[[31417,17358],[-419,-115]],[[73818,51781],[128,24],[27,-264]],[[73973,51541],[144,61],[115,-54]],[[74394,52303],[-124,181],[8,145],[-62,26],[-36,348]],[[74180,53003],[-416,-600]],[[73764,52403],[54,-622]],[[78574,62645],[138,166],[26,102],[162,79],[278,303]],[[79178,63295],[157,223]],[[79144,64244],[-67,50]],[[79077,64294],[-6,-116],[-277,89],[-78,-114],[-109,189],[-67,-343]],[[78540,63999],[93,-196],[26,-282],[-65,-240],[-87,-105],[-68,-236],[135,-295]],[[69372,50895],[101,-42],[86,-192],[79,-76]],[[69638,50585],[128,311],[60,67],[113,-87],[6,263]],[[70012,51828],[-333,-238]],[[69679,51590],[0,-209],[-74,-178],[-100,29],[-48,-272],[-92,64],[7,-129]],[[72760,52280],[50,-4],[-25,-512]],[[72785,51764],[246,1],[83,-81]],[[73114,51684],[-1,316],[27,151],[237,211],[45,225],[-9,241]],[[73413,52828],[-279,532]],[[73134,53360],[-89,72],[-175,-290]],[[72870,53142],[-41,-267],[-200,-168]],[[72629,52707],[40,-295],[91,-132]],[[73267,50434],[47,-561]],[[73314,49873],[326,179],[100,340]],[[73740,50392],[-83,45],[49,133],[-99,153]],[[73607,50723],[-67,173],[-127,-149],[29,-124],[-107,-64],[-67,56]],[[73268,50615],[-1,-181]],[[78233,58900],[231,-73],[328,458],[22,269]],[[78814,59554],[-438,78]],[[78134,59708],[-15,-337],[114,-471]],[[78057,55968],[132,-5],[44,157],[86,-20]],[[78319,56100],[105,356],[-27,87],[57,161],[101,94]],[[78555,56798],[-96,251],[-89,29],[-51,124]],[[78319,57202],[-67,-392],[-70,-110],[-37,-202],[-128,80],[-63,-149],[-59,74],[-42,-202],[-108,73]],[[77745,56374],[93,-190],[183,-106],[36,-110]],[[88115,51318],[327,-121]],[[88442,51197],[437,-162]],[[88879,51035],[174,697],[137,447]],[[89190,52179],[-35,29]],[[89155,52208],[-61,-206],[-63,-56],[8,-135],[-70,-277],[-114,-219],[-159,12],[-9,-122],[-89,93],[62,182],[118,119],[63,-57],[30,241],[222,556],[106,305],[20,151],[-143,-162],[-8,-123],[-140,-283],[-69,-20]],[[88859,52207],[5,-119],[-211,-216],[-108,49],[-107,-228],[-323,-375]],[[80477,51070],[204,-217],[71,-142]],[[80752,50711],[162,-252],[117,73]],[[81031,50532],[19,123],[145,252],[64,452]],[[81259,51359],[-168,184],[-89,250],[-147,61],[-56,107],[-121,69]],[[85828,48597],[-119,8],[-100,-266],[-117,29],[-7,-81]],[[20577,11527],[-60,-7],[17,438],[-41,121]],[[20493,12079],[-17,-25]],[[20476,12054],[-132,-107],[-112,56],[-112,-112],[-261,254],[-73,324],[-134,157],[-61,-25],[-63,215],[-167,111],[-168,-22],[-126,127]],[[19067,13032],[-80,-136],[-138,-125],[-71,-180],[45,-145],[1,-216],[49,-236],[30,-315],[-147,-433],[-38,-277]],[[96415,96991],[153,53]],[[96568,97044],[-3,151]],[[50032,66139],[1040,38]],[[51068,67017],[-8,668]],[[51060,67685],[-50,-26],[1,-191],[-79,-109],[-98,-24],[-171,346],[-157,172],[-201,-163]],[[50305,67690],[63,-383],[-51,-66],[-122,46],[-85,-49],[-54,-259],[57,-222],[-88,-48]],[[78357,54521],[77,-253],[161,-222]],[[78595,54046],[311,-73]],[[78906,53973],[-45,105]],[[78861,54078],[-31,250],[41,216],[-36,312]],[[78835,54856],[59,200],[-160,-46],[-63,57],[-127,268]],[[78544,55335],[-19,92]],[[78525,55427],[-94,-66],[-48,-165],[-110,-104],[155,-450],[-71,-121]],[[73372,59942],[69,-237],[106,72],[78,-227],[-38,-199],[139,-37],[-9,-470],[99,-81],[-18,-242]],[[73798,58521],[104,172],[92,-38],[16,242]],[[74010,58897],[-152,510],[-137,357],[-58,349]],[[73663,60113],[-136,270]],[[73527,60383],[-79,-276],[-95,-45],[19,-120]],[[49271,28915],[188,10]],[[49451,30599],[-799,-47]],[[51886,72893],[90,4]],[[51976,72897],[937,27]],[[52913,72924],[48,71],[-12,173],[61,184],[78,88],[-33,202]],[[53055,73642],[127,116]],[[53182,73758],[-954,968]],[[51880,73984],[6,-1091]],[[50305,67690],[-22,1627]],[[49477,69286],[17,-1421]],[[49494,67865],[15,-953]],[[82334,49065],[139,-214],[85,-551],[154,-81]],[[82712,48219],[53,-60],[127,101],[30,219],[148,50],[209,529],[50,-9]],[[83114,49560],[-94,164]],[[83020,49724],[-62,6],[-137,-222]],[[82821,49508],[-148,-120],[-151,-13],[-81,-239],[-107,-71]],[[35033,50175],[208,22],[44,172],[118,154],[133,73],[-10,146]],[[34676,52174],[73,-965],[-36,-9],[80,-1007],[126,-62],[114,44]],[[78759,69006],[60,-74],[-48,-118],[178,-141]],[[78949,68673],[198,74],[122,-66]],[[79269,68681],[161,540],[167,176]],[[79597,69397],[-31,273]],[[79566,69670],[-97,-58],[-112,183],[-45,348],[-95,343],[50,115]],[[79267,70601],[-78,115],[-137,42],[-119,-209]],[[78933,70549],[22,-343],[-212,-147],[-296,-6]],[[78447,70053],[146,-113],[-69,-164],[217,-319],[-75,-126],[93,-325]],[[64552,43089],[-60,-113],[-82,4],[-105,120],[-247,25],[-122,-43],[-36,135]],[[63900,43217],[-115,41],[-112,163],[-252,53],[-55,-229],[-69,-25]],[[63297,43220],[141,-132],[87,7],[23,-132]],[[53030,32977],[1086,2]],[[54116,32979],[0,1340]],[[53087,34315],[-27,-268],[-94,-201],[-89,-91],[-1,-250],[85,-257],[57,-50],[12,-221]],[[50775,52879],[188,1],[2,-680]],[[50965,52200],[944,19]],[[51909,52219],[-13,1687]],[[51896,53906],[-1131,-25]],[[50765,53881],[10,-1002]],[[72078,48224],[57,-26],[166,-379]],[[72457,47743],[133,147],[-35,168],[88,-26],[43,285],[147,52],[-23,109],[55,116]],[[72164,48729],[-83,-161],[-49,-207],[46,-137]],[[64789,81494],[-22,441],[41,548],[58,158],[145,152],[-99,495]],[[64912,83288],[-225,19],[-58,-247],[-113,-54],[-92,-131],[-12,-131],[-99,-134]],[[64313,82610],[-33,-489],[165,-92],[75,-199],[144,-272],[125,-64]],[[69232,63046],[19,346],[-21,191],[-89,150],[-47,236]],[[69094,63969],[-1095,107]],[[67999,64076],[18,-1203]],[[22080,68031],[2054,629]],[[24134,68660],[1155,338],[748,232],[3,-37],[1289,341]],[[27329,69534],[-30,329]],[[27299,69863],[-52,675],[-182,1968]],[[25273,73199],[-2583,-2596],[-443,-441],[-353,-370]],[[21894,69792],[186,-1761]],[[29430,65646],[40,-140],[127,-35],[95,-94],[42,-141],[542,129]],[[30276,65365],[-173,2171]],[[29972,69178],[-107,1338]],[[29865,70516],[-122,-28]],[[29743,70488],[-173,-442],[69,-397],[-38,-422],[-102,-416],[-28,-9],[-222,-968],[181,-2188]],[[61983,62797],[59,-186],[-12,-117],[73,-331],[-44,-49],[-58,-399],[141,-161],[13,-121]],[[62155,61433],[167,-40],[12,340],[376,-21]],[[62729,62506],[12,567],[-186,11]],[[62174,63463],[-6,-536],[-175,15],[-10,-145]],[[85163,89682],[158,625],[68,853],[20,950]],[[85409,92110],[-256,48],[-192,-50],[7,79],[-1145,328]],[[83823,92515],[-152,-1533],[-73,-807]],[[80511,74118],[50,-287],[50,-10],[57,-222]],[[80668,73599],[163,257],[221,110],[325,58]],[[81377,74024],[-13,346],[-39,4],[-76,298],[-58,25],[1,455],[-42,12]],[[81150,75164],[-267,-241],[19,-96],[-132,83],[-107,-27],[-164,-140]],[[80499,74743],[-11,-121],[23,-504]],[[58677,40593],[756,-44]],[[59459,41735],[-127,13]],[[59332,41748],[-633,57]],[[61717,33644],[378,-34],[-3,-114]],[[62092,33496],[306,122],[85,254],[38,226]],[[62809,34558],[-308,28],[10,337],[-376,33]],[[72227,54232],[384,-24]],[[72611,54208],[-68,119],[114,146]],[[72657,54473],[-26,433],[-56,471]],[[72575,55377],[-243,76]],[[72006,54741],[54,-138],[139,-193],[28,-178]],[[61567,82267],[22,-141]],[[61589,82126],[143,11],[110,82],[168,-313],[125,38],[124,284],[176,-15],[37,-98],[225,-22]],[[62697,82093],[189,-18],[89,123]],[[62975,82198],[-53,211]],[[62922,82409],[-411,94]],[[61797,83402],[-41,-76],[49,-138],[45,49],[-9,-195],[-112,-18],[-90,81],[-68,-59]],[[61506,83979],[168,-172],[153,9],[265,254],[-97,125],[-2,132],[-148,54],[-361,-331],[22,-71]],[[67608,47607],[631,-105]],[[68239,47502],[79,274],[-23,319],[-120,134],[-79,396]],[[68096,48625],[-443,60]],[[86622,44174],[144,245],[136,56],[139,240]],[[87041,44715],[44,106],[76,-100],[54,40],[-25,155],[43,149],[145,260],[-22,81],[67,277],[-200,-174],[-54,-197],[-48,47],[16,193],[-109,-83],[-62,-187],[-76,-80],[-148,-26],[-209,65],[-27,-163],[-110,-255]],[[86396,44823],[-55,-81],[65,-233],[44,-311],[172,-24]],[[62767,79823],[76,-221],[762,-122]],[[63605,79480],[-108,278]],[[63497,79758],[-40,143],[-94,118],[43,304],[-39,167],[113,354],[89,74]],[[63569,80918],[-181,16],[-61,97]],[[63327,81031],[-230,14]],[[63097,81045],[-63,-74],[-116,9],[65,-371],[-35,-317],[-99,77],[28,-120],[-44,-137],[-93,-75],[27,-214]],[[59531,75985],[658,-41],[-5,-336],[477,-29]],[[60661,75579],[37,143],[-47,224],[46,15],[-62,298],[148,108],[-23,70],[87,131],[0,156],[152,57]],[[60999,76781],[-807,388],[-50,13],[-94,-235],[23,-80],[-52,-175]],[[60019,76692],[-159,-296],[-198,-91],[4,-138],[-115,-71],[-20,-111]],[[69024,29495],[-133,-444],[-18,-322],[91,-282],[32,-286]],[[53124,41159],[1041,3]],[[54165,41162],[-82,139],[68,271],[88,69],[64,194],[-24,92]],[[54279,41927],[14,228],[79,9]],[[54372,42164],[-592,3]],[[53122,42165],[2,-1006]],[[65636,33795],[647,-94]],[[66451,33672],[62,1311]],[[66513,34983],[-62,9]],[[66451,34992],[-566,81]],[[65696,35099],[-60,-1304]],[[48769,44033],[568,30]],[[49337,44063],[371,17]],[[49708,44080],[-27,1677]],[[49681,45757],[-905,-48]],[[66451,34992],[16,335],[-41,7],[16,308]],[[66442,35642],[48,1004]],[[35050,67894],[1122,207],[-17,328],[743,126],[-37,665]],[[36861,69220],[-35,652],[-67,-11],[-99,1695],[923,147]],[[37583,71703],[-100,1991]],[[37483,73694],[-130,-21]],[[37353,73673],[-945,-159],[-1050,-194]],[[35358,73320],[-700,-127]],[[34658,73193],[231,-3655],[66,11],[23,-361]],[[69638,50585],[73,-10],[-29,-190],[17,-181],[-77,-176],[11,-243]],[[69633,49785],[-10,-168],[193,-29],[-4,-58]],[[70215,50011],[54,124],[-23,145],[-65,30]],[[68239,47502],[0,-214]],[[68239,47288],[9,19],[477,-72],[-1,-24]],[[68965,47187],[-72,266],[-102,134],[-47,-36],[-9,390],[-31,112],[56,223],[36,330]],[[68796,48606],[-93,149],[-99,-113],[-92,80],[-89,-13]],[[68423,48709],[-46,154],[-133,38],[-36,162],[-240,177]],[[67968,49240],[-3,-234],[138,-164],[-7,-217]],[[78923,33015],[282,-310],[206,-287],[86,-306],[98,55],[249,-387],[182,-229]],[[80026,31551],[103,1028],[240,-74]],[[80369,32505],[55,566]],[[80424,33071],[-1455,430]],[[78969,33501],[-46,-486]],[[82419,67648],[183,-27],[273,52],[-29,-211],[114,-81],[17,-165],[-187,-237],[26,-82]],[[82816,66897],[104,100],[73,-66],[116,355],[108,-72],[-14,130],[86,185],[100,-209],[30,-203],[110,-120],[-2,-182],[146,-442],[16,-121],[139,-183],[53,33],[83,-285],[47,-26]],[[84011,65791],[196,174],[157,26],[-32,105]],[[84332,66096],[-62,98],[-23,332],[-117,4],[-104,85],[-83,-108],[-94,142],[-44,253],[86,17],[5,107],[-195,277],[-40,185],[-202,258],[-80,-103],[-65,150],[117,41],[-12,201],[-147,218],[-34,141],[-68,3],[-190,180],[-49,165],[-46,-48],[-115,184]],[[82770,68878],[-20,-46],[-113,150],[-133,-142],[41,-121],[-30,-297],[-62,-47],[-21,-170],[-65,-79],[58,-295],[-6,-183]],[[79952,59346],[508,-83]],[[80460,59263],[32,152],[-36,96],[42,150],[166,-291],[62,104]],[[80726,59474],[15,229],[106,312],[-17,428]],[[79834,60643],[-98,-393],[-20,-307],[132,-121],[-16,-339],[52,-124]],[[80926,69242],[417,-880],[148,215],[-7,177],[109,51],[46,-166]],[[81639,68639],[91,226],[15,290],[44,105],[-29,248],[40,57],[-65,274],[-82,-3],[-7,204],[-132,15],[40,137],[-27,131],[47,142],[94,87],[24,111],[135,185]],[[81827,70848],[3,176]],[[81830,71024],[-78,-6],[-154,-181],[-120,67],[-102,-78],[-39,-315],[-52,-85]],[[81285,70426],[28,-244],[-203,-474],[20,-162],[-189,-226],[-15,-78]],[[88917,31098],[142,-223],[34,95],[211,4],[-30,-119],[147,79],[154,-100]],[[89575,30834],[-33,294],[65,291]],[[89607,31419],[77,143],[-18,285]],[[89666,31847],[-312,847]],[[89354,32694],[-244,-143]],[[89110,32551],[-600,-368]],[[88510,32183],[-129,-216]],[[88381,31967],[-30,-260],[436,-214],[72,-310],[58,-85]],[[90484,23858],[225,33],[203,-141],[181,-68]],[[91093,23682],[10,279]],[[91103,23961],[69,279],[-33,128],[58,150],[-25,163],[-81,104],[6,275],[57,278],[175,247]],[[90587,25858],[-86,-706],[-136,46],[-82,-705],[201,-71],[-48,-571],[48,7]],[[31219,73322],[-127,1713],[-1563,-359]],[[29529,74676],[336,-4160]],[[30636,60856],[1022,242],[102,-1328],[1296,295],[12,-165],[187,39],[-13,168],[565,114]],[[33807,60221],[124,27],[52,344]],[[33983,60592],[163,1052]],[[33807,63043],[-933,-194]],[[32874,62849],[-2354,-540]],[[30520,62309],[116,-1453]],[[79209,50719],[-5,-135],[128,-234]],[[79332,50350],[17,-259],[100,-115],[73,16]],[[79522,49992],[457,495]],[[79979,50487],[-24,186],[71,125],[-77,146],[-128,122]],[[79821,51066],[-2,-36],[-220,153],[-178,219]],[[79421,51402],[-270,-328]],[[79189,41247],[45,-80],[-43,-129],[78,-44],[1,-486]],[[79270,40508],[359,-36]],[[79629,40472],[19,207]],[[79215,41745],[-76,-146],[61,-154],[-11,-198]],[[71577,71898],[117,-109],[59,-143],[124,-130],[96,210],[123,-14],[152,80],[40,-61]],[[72288,71731],[78,310],[146,211]],[[72512,72252],[-123,31],[-18,88],[50,761]],[[72421,73132],[22,318],[-361,70]],[[72082,73520],[-205,42],[-21,-325],[-190,32]],[[71434,72176],[61,-248],[82,-30]],[[71394,65397],[185,-358],[150,-40],[-4,-55]],[[72440,65711],[4,128],[-194,-49],[-94,73],[9,140],[-127,-8],[-35,199],[-122,110]],[[71390,66013],[-81,16],[57,-190],[-11,-208],[39,-234]],[[67991,64535],[8,-459]],[[69094,63969],[52,1007]],[[68957,64996],[-971,90]],[[67986,65086],[5,-551]],[[15324,88139],[10,1163]],[[15334,89302],[-178,4],[20,698]],[[14221,89986],[-435,-30],[3,-116],[-131,-12],[-4,117],[-529,-59],[-37,229],[-137,98],[-42,344],[-65,-9],[-12,232],[-65,-10],[-42,344],[-66,-10],[-12,231],[-89,-14],[-13,232],[-65,-11],[-42,344],[-138,93],[-41,343],[-66,-12],[-14,215]],[[12179,92525],[-16,14]],[[12163,92539],[-116,-22],[2,117]],[[12049,92634],[-18,96],[-161,122],[-65,-154],[78,-145],[12,-260],[-79,-424],[51,-138],[107,-127],[-117,-666],[-77,-290],[-47,23],[-19,190],[-78,-6],[-158,138],[-227,33],[-168,-99],[-7,-258],[-67,-89],[-91,-324],[-94,-85],[-50,-143],[72,-81],[-165,-108],[190,-169],[6,-214],[-39,-74]],[[9878,90043],[195,78],[187,-193],[40,60],[94,-81],[10,159],[145,87],[-41,296],[26,223],[-174,9],[-78,127],[-68,-160],[-79,-22],[-238,-381],[-19,-202]],[[7864,88764],[64,-113],[2,139],[201,374],[-140,-80],[-127,-320]],[[41174,28416],[55,-1099]],[[42174,27452],[1671,214],[0,-241],[61,-97],[-11,-127],[53,-325],[69,-92],[-1,-228],[134,-54],[87,105],[82,-23],[127,-246],[58,-22]],[[44504,26316],[-33,639],[-49,1336]],[[44422,28291],[-18,-2],[-40,1095],[-26,72],[-165,-64]],[[44173,29392],[-59,45],[-1003,-119]],[[49684,23921],[1139,62]],[[50823,23983],[-5,333]],[[50801,26313],[-1137,-58]],[[49664,25248],[20,-1327]],[[52603,32299],[562,8]],[[53165,32307],[-90,128],[14,348],[-59,194]],[[53172,34586],[-97,22],[-41,-118],[-116,40],[-45,-76]],[[52873,34454],[-127,-360],[39,-137],[-184,-76],[-6,-123]],[[52595,33758],[8,-1459]],[[81639,68639],[64,-187]],[[81703,68452],[124,78],[176,-19],[35,204],[82,99],[132,23],[40,131],[124,135]],[[82416,69103],[-5,97],[126,241],[-42,287],[-174,228],[-118,103],[-24,-133],[-139,-94],[-82,152],[97,72],[106,165],[-75,241],[-259,386]],[[76237,57428],[26,-441],[51,-314]],[[76314,56673],[-32,-145],[43,-111],[80,70],[0,-208]],[[76405,56279],[-4,94],[132,109],[410,587]],[[76943,57069],[17,278],[-83,335]],[[76877,57682],[-52,85],[-150,-28],[-134,127],[-36,145],[-118,85]],[[76387,58096],[-36,15],[-44,-309],[36,-104],[-106,-270]],[[87694,36209],[88,-308],[100,-232]],[[87882,35669],[187,-355]],[[88069,35314],[18,60]],[[88609,36159],[144,127],[64,152],[132,86],[112,213]],[[89061,36737],[-83,150],[-59,-4],[-55,202],[-163,195]],[[88701,37280],[-19,-268],[-91,-41]],[[88591,36971],[-897,-762]],[[51277,31943],[-9,1219]],[[51268,33162],[-223,0],[-86,-76],[-76,36],[-25,167],[-99,171],[-136,16],[-186,-295]],[[50437,33181],[59,-114],[-8,-158],[52,-243],[-31,-106],[10,-331],[56,-309]],[[68773,57175],[373,28],[27,-42]],[[69173,57161],[237,27],[-59,228],[17,141],[74,123],[-24,90],[-8,408]],[[69410,58178],[-19,354]],[[69391,58532],[-587,-38]],[[68804,58494],[-37,-85],[-1,-302],[-55,-315]],[[54262,55765],[460,-3]],[[54722,55762],[200,-2]],[[54922,55760],[0,218],[-42,0],[5,1333]],[[54885,57311],[-661,4]],[[54224,57315],[-2,-1329],[40,0],[0,-221]],[[52937,71892],[407,1],[0,-106]],[[53750,73650],[-695,-8]],[[52913,72924],[13,0],[11,-1032]],[[46676,66203],[395,534],[216,-8],[185,179],[135,-106]],[[47607,66802],[-21,968]],[[94571,97657],[153,14]],[[94724,97671],[-30,166]],[[94303,18652],[173,-17],[29,-254],[163,33]],[[94668,18414],[10,382],[-25,78],[183,-13],[37,298],[-34,153],[110,218]],[[94949,19530],[-36,341],[-131,220],[-92,-243]],[[94690,19848],[-25,-283],[-42,-40],[12,-319],[-93,177],[-72,23],[-122,-182]],[[94348,19224],[-36,-44],[-9,-528]],[[52369,69608],[820,39]],[[53189,69647],[0,218],[162,-41]],[[53345,71249],[-402,-6]],[[52943,71243],[-600,-27]],[[52343,71216],[26,-1608]],[[49298,76134],[-52,-155],[-329,73]],[[46944,76412],[125,198],[-47,113],[93,121],[46,-92]],[[47161,76752],[-37,1551]],[[41279,75581],[836,101]],[[42063,77849],[-164,-23]],[[41899,77826],[-71,-169],[11,-247],[-127,-243],[-141,-88],[-172,-246],[-177,118]],[[41222,76951],[57,-1370]],[[37583,71703],[17,3],[92,-1694],[1878,279]],[[39570,70291],[-80,1697],[168,24],[-94,1999]],[[39564,74011],[-476,-68]],[[39088,73943],[-82,-12]],[[39006,73931],[-1523,-237]],[[60720,51613],[94,-3],[118,-169],[450,-34],[-7,-396]],[[61375,51011],[165,-9]],[[61540,51002],[16,-1],[31,1402]],[[57209,63037],[1,-168],[192,3],[2,-282]],[[57404,62590],[0,-67],[192,0],[1,-346],[191,16],[0,-451],[106,248],[69,-44]],[[57963,61946],[69,-120],[136,78],[151,-60],[129,-123],[32,384],[155,-59],[61,51]],[[58734,62134],[4,404],[-316,3],[-126,277],[-237,-1],[-77,55],[9,444]],[[57658,45942],[18,1225]],[[57676,47167],[-138,-27],[-249,251],[44,-153],[-113,6],[10,143],[-136,47]],[[57094,47434],[-185,-239]],[[56909,47195],[-7,-956]],[[14874,45816],[1586,651]],[[17342,48775],[1781,4656]],[[19123,53431],[272,709]],[[15961,52872],[-502,-206],[-148,-25]],[[15311,52641],[42,-275],[45,0],[17,-478],[-36,-91],[-2,-514],[34,-66],[-47,-218],[-6,-294],[73,-172],[-69,-247],[23,-153],[-94,-50],[-32,-202],[30,-141],[-68,-190],[42,-150],[-57,-129],[-44,-271],[61,-30],[-24,-165]],[[80741,37591],[-186,-1904]],[[80555,35687],[87,450],[115,31],[-17,174],[534,-242],[98,-192]],[[81426,36436],[53,514],[-288,1051]],[[81191,38001],[-75,42],[-119,-116],[-75,-232],[-144,-155],[-36,51]],[[79451,57902],[1015,-194]],[[80507,57915],[20,350]],[[80527,58265],[-886,165]],[[79448,57918],[3,-16]],[[76877,57682],[42,195],[52,-35],[79,240]],[[77050,58082],[86,228],[52,-65],[103,210],[-29,382],[110,161]],[[77103,59573],[-85,-70],[-61,-189],[-295,-402],[-94,-77]],[[76568,58835],[42,-159],[-110,-354],[29,-89],[-137,-64]],[[76392,58169],[-5,-73]],[[75421,56569],[44,-177],[-23,-250],[41,-286]],[[75483,55856],[121,-118],[111,30],[55,-112],[84,-2],[7,-151],[90,-22]],[[76142,55508],[75,394]],[[76217,55902],[-53,115],[-76,-115],[-189,350],[-18,173]],[[75881,56425],[-131,2],[-157,182],[26,149],[-85,-60],[25,167]],[[75559,56865],[-138,-296]],[[82435,33410],[-6,-56],[346,-118]],[[82775,33236],[305,459],[98,-30]],[[83178,33665],[46,406],[-106,625]],[[83118,34696],[-237,25]],[[82881,34721],[-35,-353],[-32,10],[-32,-307],[-268,86],[-79,-747]],[[52414,32296],[189,3]],[[52595,33758],[-161,-116],[-92,49],[-29,-154],[-54,-5]],[[52259,33532],[-185,-44],[-46,-108]],[[52028,33380],[8,-1089]],[[86632,34657],[254,-367],[129,-151],[-81,-135],[-15,-163],[102,-190],[73,8]],[[87094,33659],[311,415],[-110,183],[227,453]],[[87522,34710],[-205,186]],[[87317,34896],[-130,117],[-85,169]],[[87102,35182],[-245,-227],[-225,-298]],[[81426,60288],[427,-109]],[[81853,60179],[697,-175]],[[82550,60004],[20,155],[119,238],[153,140],[-16,459]],[[82826,60996],[-82,184],[-286,80],[-385,605]],[[82073,61865],[-79,-212],[-38,-268],[-97,-164],[-89,-240]],[[81770,60981],[-57,-159],[-287,-534]],[[81600,66625],[464,-731],[52,198],[112,54],[118,-32]],[[82346,66114],[77,208],[66,45],[-46,144],[373,386]],[[82419,67648],[19,-113],[-92,-324],[34,-231],[-168,-75],[-209,85],[-159,-133],[-91,-181],[-153,-51]],[[58474,45214],[309,-28],[377,5]],[[59160,45191],[283,-9],[2,338]],[[59445,45520],[-8,7],[4,1108]],[[59441,46635],[-141,-76],[-91,458]],[[59209,47017],[-119,-14],[-73,-308],[-108,3],[-85,-82],[-56,-182]],[[58768,46434],[-24,-123],[-159,-91],[-31,-121],[-60,49],[-35,-223],[26,-118],[-24,-253]],[[88985,17556],[521,-235],[443,-160]],[[89949,17161],[127,635],[-41,223]],[[89591,18798],[-183,7],[-327,-144]],[[89081,18661],[-71,-163],[49,-224],[-20,-327],[-94,-121],[40,-270]],[[81565,33605],[0,-2]],[[81565,33603],[225,-66],[531,-199],[12,104],[102,-32]],[[82881,34721],[-671,127],[13,138],[-94,91]],[[81452,34747],[-30,-314],[37,-128],[175,8],[-69,-708]],[[87465,47754],[47,-100],[86,0]],[[87598,47654],[15,84],[94,-81],[65,115],[76,345],[-16,309],[-129,-166],[-131,-95]],[[87572,48165],[-82,-48],[-25,-363]],[[59650,50062],[222,-2]],[[59872,50060],[157,-1],[-1,325],[212,0],[59,54],[94,-56]],[[60393,50382],[2,167]],[[60395,50549],[8,504],[28,-1],[6,560]],[[60058,51619],[-188,7],[-130,-277],[-34,-286],[-63,1],[-1,-160],[-96,-29]],[[59546,50875],[0,-488],[96,-5],[8,-320]],[[38680,16453],[381,68],[-6,109],[323,57],[-20,331],[63,10],[-19,330],[127,22],[-12,220],[58,121],[317,57],[-6,111],[384,67],[6,-110],[190,32],[9,-165],[190,30]],[[40665,17743],[-26,496],[-262,-43],[-34,641],[30,5],[-36,671]],[[40337,19513],[-81,-13],[-73,1329],[-65,-11]],[[40118,20818],[-1848,-331]],[[38270,20487],[82,-1323],[58,10],[79,-1313],[52,9],[81,-1317],[55,-45]],[[40118,20818],[-99,1653],[-78,-13],[-73,1340]],[[39868,23798],[-60,-10]],[[39808,23788],[-1293,-228],[-174,-3]],[[38341,23557],[-369,-70]],[[37972,23487],[44,-707],[-25,-5]],[[37991,22775],[41,-654],[68,13],[105,-1659],[65,12]],[[68054,53349],[358,-486],[161,-125],[193,-349]],[[68939,53053],[-71,330],[-56,-1],[-7,197],[124,232],[-8,154]],[[68921,53965],[-62,106],[-197,56],[-53,87],[-286,-125]],[[68323,54089],[-153,-154],[-80,-167],[-14,-201],[-80,-97],[58,-121]],[[67367,18153],[143,-171],[83,52],[36,164],[102,100],[103,-3],[34,-159],[79,-4],[65,130],[9,-230],[-48,-167],[82,-78],[44,96],[-19,186],[96,70],[158,-365],[174,-133],[298,-416],[31,54],[378,-195]],[[69257,17786],[-755,133],[38,660],[-380,61],[38,662]],[[68198,19302],[-761,127]],[[67437,19429],[-70,-1276]],[[76173,49388],[52,-154],[214,75],[178,158],[223,90]],[[76840,49557],[-91,129],[53,99],[39,391]],[[76841,50176],[-220,-86],[-218,259],[-73,-33]],[[76330,50316],[-40,-296],[-74,-74],[-38,-151]],[[76178,49795],[57,-222],[-62,-185]],[[66489,43783],[875,-128]],[[67352,44408],[-161,41],[5,111],[-683,100]],[[66513,44660],[-27,-539]],[[76382,51134],[44,54]],[[76426,51188],[167,36],[10,202],[136,-30],[39,402],[78,70]],[[76856,51868],[-33,62]],[[76823,51930],[-148,47],[-245,434],[-44,-80]],[[76386,52331],[-99,-55],[-29,-104],[-84,34],[-19,-351],[-45,-274]],[[76110,51581],[-33,-195],[103,-294],[59,64],[143,-22]],[[50976,51187],[565,16]],[[51913,51544],[-4,675]],[[50965,52200],[11,-1013]],[[63795,48393],[-60,162],[51,273]],[[63673,49336],[-112,-251],[21,-218],[75,-249],[138,-225]],[[82627,38347],[203,90],[112,132],[-1,-227],[263,151],[28,-228]],[[83232,38265],[65,266],[190,171]],[[83487,38702],[-85,337],[53,91],[-77,635],[-20,313],[-92,433]],[[82561,40737],[44,-408],[-104,-882],[34,-61],[63,-700]],[[54999,45517],[-377,4]],[[54245,45523],[0,-1341]],[[58478,69243],[1,-1345],[19,0],[-1,-508]],[[58497,67390],[151,-8]],[[58648,67382],[95,185],[63,240],[130,55],[74,107],[71,-63],[67,145]],[[59148,68051],[0,1248]],[[59148,69299],[-191,1],[0,57],[-263,-3]],[[58694,69354],[-216,0],[0,-111]],[[58435,65913],[2,337],[-37,153],[107,17],[-20,301],[46,310],[103,239],[12,112]],[[58497,67390],[-128,59],[-163,-57],[-57,-87],[-184,-84],[-134,-3]],[[85880,49461],[48,-57]],[[85928,49404],[20,-23]],[[85948,49381],[43,-44]],[[85991,49337],[98,156],[-105,137]],[[85984,49630],[-102,-30],[-2,-139]],[[62415,46107],[252,324],[119,214],[12,104]],[[62798,46749],[-778,59],[6,341],[-126,8]],[[61648,47168],[-68,-675]],[[61580,46493],[-51,-506],[415,-606],[43,-3]],[[63799,47513],[-216,25],[7,293]],[[63590,47831],[-302,-140]],[[63288,47691],[-141,50],[-64,-128],[-72,-473]],[[63011,47140],[41,-240],[63,-62],[84,60],[294,-27],[-8,-195],[189,-22],[-7,-126],[93,-24]],[[81896,64735],[74,-296],[155,-49],[-28,-196],[214,-132],[26,-77],[451,-690]],[[82987,63475],[-46,274],[-125,235],[56,165],[-28,75],[-118,845]],[[82726,65069],[-83,96],[13,114],[-127,55]],[[82529,65334],[-233,119],[-164,-134],[-37,-175],[-100,-104]],[[81995,65040],[-99,-305]],[[77246,54466],[22,286],[-140,283],[45,82]],[[77141,55208],[-181,225],[-44,-14],[-120,191],[-39,-14],[-127,284],[-98,130]],[[76532,56010],[-170,-361],[-77,220],[-68,33]],[[66954,59551],[60,-144],[689,-67]],[[67703,59340],[18,802],[-78,321],[21,406]],[[67664,60869],[-210,46]],[[82826,60996],[54,163],[68,-147],[86,93],[-31,210],[78,142],[55,-35],[-1,166],[82,177]],[[82561,62817],[-181,-241],[68,-160],[-72,-320],[-86,-138],[-19,-151],[-102,195],[-95,-129]],[[82074,61873],[-1,-8]],[[87194,37508],[238,-503]],[[87432,37005],[244,45],[77,198],[118,53],[25,135],[55,-57],[62,119],[50,-37]],[[88063,37461],[-77,124],[-7,227],[-124,208],[-88,309],[23,137]],[[87790,38466],[-104,103],[-100,216],[-59,235]],[[87527,39020],[-570,213]],[[83263,61779],[202,-1325]],[[83465,60454],[796,1013]],[[84261,61467],[-83,205]],[[84178,61672],[-94,-104],[-60,144],[-167,-2],[-134,-74],[-185,98],[-97,254]],[[80817,34764],[125,-39],[-19,-188],[313,-76],[36,377]],[[80555,35687],[-7,-6]],[[65077,20334],[107,87],[14,-111],[147,-29],[145,145],[53,-70],[137,136],[73,-56],[205,129]],[[65522,21390],[-384,51],[-42,-988],[-19,-119]],[[80671,33878],[894,-273]],[[79872,75521],[94,-25],[17,-255],[241,45]],[[80224,75286],[58,17],[5,246],[47,48],[-27,194],[44,-2],[10,343]],[[80361,76132],[-91,-3],[-42,208],[-83,-18],[-5,510],[112,328],[5,341],[-24,442]],[[80233,77940],[-224,71],[-96,-230],[-3,-234],[-51,-74],[-1,-235]],[[79858,77238],[53,-849],[-55,-12],[-453,98],[-60,-831],[529,-123]],[[36506,54189],[34,430],[-39,281],[-17,633],[17,711],[-63,418],[-144,87],[-42,104],[337,319],[182,538],[341,399]],[[37112,58109],[-75,138],[-111,-42],[-54,73],[-98,-99]],[[36774,58179],[8,-87],[-622,-110],[13,277],[-335,-63]],[[35838,58196],[4,-137]],[[35842,58059],[10,-134],[-1119,-208],[55,-834],[-733,-141],[-557,-138]],[[33498,56604],[99,-1411],[68,-800],[40,-114],[123,-72],[157,-182],[11,-186],[65,-149]],[[57517,74206],[169,-5],[165,-229],[22,-150],[102,-188],[143,87],[89,-9],[99,180],[1,123]],[[58805,75165],[-157,79],[3,263]],[[58651,75507],[-815,39]],[[57836,75546],[-58,-186],[-128,-123],[-68,-210]],[[83965,53972],[53,547],[101,51]],[[84119,54570],[38,173],[76,24],[-10,200],[-59,186],[-80,-10],[-20,244],[-133,38]],[[83931,55425],[-189,79]],[[30953,56872],[895,210],[1587,362]],[[33435,57444],[556,124],[-148,2220],[-36,433]],[[30636,60856],[317,-3984]],[[85182,39875],[358,-124]],[[85540,39751],[349,-127]],[[85889,39624],[-33,878],[-25,180],[66,399]],[[85897,41081],[-151,-1],[-86,83],[-133,-27],[-104,97]],[[85423,41233],[33,-576],[-179,-245],[-161,-58],[79,-399],[-13,-80]],[[87946,39227],[17,88]],[[87963,39315],[-17,-88]],[[87790,38466],[159,-44],[152,66]],[[88101,38488],[9,27]],[[88110,38515],[-65,137],[-44,332]],[[88001,38984],[-111,180],[-15,218],[97,102],[-10,332],[187,377]],[[88149,40193],[-92,260],[-126,119],[-158,35]],[[87773,40607],[-49,-301]],[[87724,40306],[-168,-1045],[-29,-241]],[[43790,43614],[1068,115]],[[44858,43729],[-60,1671]],[[43731,45289],[1,-23]],[[79014,72033],[226,81],[39,-55],[132,80]],[[79411,72139],[155,14],[197,230]],[[79763,72383],[-98,131],[40,92],[-80,21],[97,1147]],[[79722,73774],[-41,11],[-151,-192]],[[79530,73593],[-32,-86],[-222,-199],[-202,-108],[-98,-165],[-48,10]],[[71566,70572],[673,-127]],[[72239,70445],[233,-41],[-40,304],[51,107],[39,591]],[[72522,71406],[-5,176],[-146,5],[-83,144]],[[71577,71898],[-70,-1137]],[[31531,49693],[377,90],[11,-54],[955,224],[59,300],[386,-54],[196,359]],[[33515,50558],[-35,199],[-171,63],[-18,218]],[[52094,9721],[1204,21]],[[53320,11464],[-1142,-15]],[[52178,11449],[99,-541],[-54,-153],[-55,-475],[-90,-438],[16,-121]],[[56789,78692],[614,-272]],[[57572,78280],[238,-100]],[[57810,78180],[96,805],[-33,2701]],[[57538,80613],[-41,-165],[67,-319],[-73,-137],[-63,9],[-44,-384],[-59,-25],[-73,-431],[17,-108],[-73,-103],[-5,-186],[-78,-105],[-242,59],[-82,-26]],[[84026,63572],[85,224],[74,58],[96,-71]],[[84281,63783],[111,129],[102,329],[177,-57]],[[84671,64184],[-113,382],[-72,434],[-11,489],[18,309],[-86,217],[-75,81]],[[84011,65791],[-55,-47],[-394,-174]],[[83562,65570],[-13,-121],[64,-157],[53,-295],[229,-590],[-23,-69],[24,-370],[130,-396]],[[54165,41162],[-22,-316],[55,-139]],[[54905,40703],[2,667],[24,1],[-3,569]],[[54928,41940],[-649,-13]],[[63051,43772],[126,-139],[6,-154],[114,-259]],[[63900,43217],[29,795]],[[63929,44012],[4,112]],[[63933,44124],[-984,88]],[[62949,44212],[72,-186],[30,-254]],[[90150,21208],[30,117],[544,121],[428,78]],[[91152,21524],[-113,320],[15,400]],[[91054,22244],[-56,107],[-3,263],[40,69],[16,497],[58,178],[-16,324]],[[90484,23858],[-24,-163],[-75,27]],[[90385,23722],[-22,-174],[45,-151],[116,53],[-11,-448],[-113,-56],[-23,-372],[25,6],[36,-393],[-201,-48],[11,-350],[-23,-68],[-135,-4],[-12,-68],[-113,173]],[[89965,21822],[-62,-194],[46,11],[102,-155],[39,146],[60,-422]],[[45158,13636],[1338,129]],[[47070,13820],[-18,658],[-130,-12],[-39,1315]],[[46883,15781],[-114,-11],[-19,647],[-324,-26]],[[46001,15939],[-130,-116],[-15,-291],[-56,-136],[-47,-290],[109,-147],[-80,-172],[-323,95],[-97,-48],[-165,142],[-115,-46],[-101,-135],[-101,-20],[-5,-124],[-187,7],[-64,-42]],[[44624,14616],[-83,-199],[19,-389],[-38,-102],[47,-106],[-106,-85],[-81,155]],[[44382,13890],[13,-340],[763,86]],[[85932,55882],[29,-2],[155,-323]],[[66136,53803],[30,-132],[342,-50]],[[66508,53621],[411,632],[16,352]],[[66935,54605],[-129,-24]],[[66806,54581],[-123,-147],[-180,-65],[-135,-155],[-218,-119]],[[66150,54095],[-14,-292]],[[87858,45112],[-16,112]],[[87842,45224],[-68,50],[-33,-297],[62,-66],[55,201]],[[87665,43507],[54,-99],[38,-337]],[[88171,43069],[45,278]],[[88046,44235],[-81,81],[-48,386],[-110,-209],[82,-90],[-87,-166],[-48,296],[49,76],[-10,156],[-56,-21],[-92,113],[-55,-22],[-144,-251],[-256,-586],[115,-87],[-73,-232],[-1,-159],[62,-98],[51,68],[60,-111],[21,113],[240,15]],[[22894,7628],[593,230],[7,-52],[187,71],[-49,375],[256,95]],[[22604,9893],[290,-2265]],[[91937,29855],[78,172],[176,-87],[82,354],[-197,135],[99,111],[126,362]],[[92301,30902],[-61,100],[-114,-18],[-124,147]],[[92002,31131],[-26,-87],[-136,-138],[-27,-211],[-93,-166],[-139,120],[-93,-578]],[[91488,30071],[34,-209],[320,-216],[95,209]],[[70051,35930],[440,-75]],[[70792,37046],[-660,127]],[[70122,37007],[-71,-1077]],[[43604,48960],[12,-317]],[[43556,50319],[1,-24]],[[43557,50295],[47,-1335]],[[62973,44354],[-24,-142]],[[63933,44124],[38,594],[124,603],[2,141]],[[63715,45510],[-248,27]],[[74574,53679],[94,-148],[130,16],[46,-241],[83,-90]],[[74927,53216],[105,86],[67,-56],[253,246],[90,-6]],[[75442,53486],[29,192],[-100,121],[-107,253],[-134,168],[-8,146],[-102,260]],[[57165,40667],[755,-36]],[[57938,41857],[-360,25]],[[57578,41882],[-399,30]],[[76103,49237],[57,-181],[138,-278],[-80,-223]],[[76218,48555],[115,-87],[85,-229]],[[76418,48239],[99,0],[56,-109],[143,-51],[22,68]],[[76738,48147],[12,292],[-32,139],[166,221],[78,247],[99,62],[-46,147]],[[77015,49255],[-145,2],[-30,300]],[[76173,49388],[-70,-151]],[[80495,43250],[236,-91],[193,-260]],[[80924,42899],[95,179],[74,41]],[[80739,44333],[44,-122],[-28,-235],[-121,33],[-85,-170],[-108,-67]],[[80441,43772],[-17,-222],[71,-300]],[[90048,26996],[14,-940]],[[90062,26056],[380,-143]],[[90614,26572],[19,56],[18,627],[-90,2],[37,222],[107,19]],[[90705,27498],[26,237],[9,418],[-60,7],[86,393]],[[90766,28553],[-690,253]],[[90076,28806],[-15,7]],[[90061,28813],[-36,-130],[23,-1687]],[[60471,47562],[806,-41]],[[61291,48894],[-135,-3],[-56,89],[-169,77],[-135,285],[-108,109]],[[60688,49451],[-94,61],[-180,-83],[-92,-231]],[[60322,49198],[0,-275],[129,-395],[-50,-193],[34,-772],[36,-1]],[[53190,23926],[262,86],[278,270]],[[53730,24282],[104,94]],[[53834,24376],[87,209],[242,423],[32,144],[105,50]],[[54300,25202],[-1,171],[-171,-1],[-2,331],[-939,-3]],[[53187,25700],[1,-659]],[[53188,25041],[2,-1115]],[[85070,47745],[154,39],[138,-45]],[[85380,48290],[-198,-118],[-99,44],[-30,-89],[-137,-109],[-79,7],[20,128],[-56,95],[-166,-75]],[[84449,47877],[99,-647]],[[30731,28635],[19,-214],[369,100],[29,-330],[451,119],[38,-328]],[[31637,27982],[466,125],[-31,370],[94,23],[18,222],[-46,163],[34,389],[117,354],[-10,273],[79,28],[144,312],[45,-14],[49,330],[104,251],[161,304],[-16,164],[97,26],[-73,992],[41,9],[-52,648]],[[32858,32951],[-799,-197],[-815,-233]],[[27859,32645],[964,274]],[[28823,32919],[37,213],[-60,115],[-30,230],[63,157],[6,548],[31,79],[-59,142],[-52,324],[-67,88],[-82,292]],[[28610,35107],[-302,-63],[-63,143],[-221,-153],[-17,-114]],[[28007,34920],[-38,-144],[67,-35],[-80,-331],[-64,55],[-12,-505],[-40,-159],[105,-338],[-44,-288],[-88,-273],[-43,-280]],[[24802,4391],[1202,445],[690,237]],[[24443,7293],[131,-1058]],[[79256,80244],[125,-172],[-1,-188],[85,-120]],[[79465,79764],[215,15]],[[79680,79779],[48,126],[122,3],[131,105],[153,-58],[112,18],[62,189],[59,12],[63,207]],[[80430,80381],[79,935]],[[80509,81316],[9,118],[-291,113],[-17,-205],[-370,90]],[[79840,81432],[-283,89],[-20,-217],[-186,54],[-9,-111]],[[79342,81247],[-86,-1003]],[[73740,50392],[36,-101],[80,32],[-34,-160],[73,22]],[[73895,50185],[108,-121],[23,152],[130,-37],[189,60]],[[74345,50239],[-60,169],[85,28],[-20,261],[31,254],[-57,112],[83,278]],[[73973,51541],[-222,-544],[-144,-274]],[[50361,85015],[408,-1031]],[[50769,83984],[67,75],[539,-574]],[[51375,83485],[354,548],[-23,58]],[[51512,85018],[-725,1031]],[[50787,86049],[-218,-435]],[[48664,33227],[169,-135],[323,-182],[102,200],[78,-4],[206,172],[86,-17],[115,118],[193,61],[76,-33],[177,63]],[[50189,33470],[-18,1247],[9,1]],[[48666,35985],[-20,-2]],[[48646,35983],[27,-1332],[-17,-2],[25,-1337],[-17,-85]],[[85081,55250],[31,160],[117,136]],[[85229,55546],[68,112],[102,333],[112,32]],[[85212,57290],[-171,185],[-144,12],[-103,-174]],[[84794,57313],[8,-75],[-294,-539],[-93,-60]],[[84415,56639],[337,-825],[329,-564]],[[61965,38681],[1045,-76]],[[63035,39618],[-568,37]],[[62467,39655],[-270,20]],[[62196,39665],[-76,-313],[-86,-32],[-127,-279],[58,-360]],[[60117,30484],[555,-42]],[[60672,30442],[189,-14]],[[60861,30428],[52,1606]],[[60153,32088],[-12,-500]],[[66179,61037],[-184,17],[4,138]],[[65999,61192],[-516,40]],[[65483,61232],[-14,-553],[-63,-124]],[[65406,60555],[55,-63],[-7,-338],[59,-257],[-24,-68],[58,-227],[81,10]],[[81458,41088],[139,-44]],[[81597,41044],[766,-244]],[[82229,41816],[-101,293],[-157,249],[-23,116]],[[81948,42474],[-166,299],[-69,211],[-74,66]],[[81639,43050],[-181,-1962]],[[80984,41232],[474,-144]],[[81639,43050],[4,43]],[[80924,42899],[-49,-518]],[[80875,42381],[-26,-173],[130,-594],[5,-382]],[[64530,16515],[35,-210],[125,-227],[73,-65],[150,-286],[120,-94],[85,-164]],[[65118,15469],[320,-45],[16,327],[106,-16]],[[65560,15735],[-19,247],[-143,248],[-16,220],[-111,322]],[[65014,18789],[-473,64]],[[64541,18853],[-39,-990],[189,-22],[-13,-325],[-104,14],[-44,-1015]],[[64692,60801],[60,-174],[191,-288],[166,54],[72,-89],[77,124],[148,127]],[[65483,61232],[-118,7],[-159,131]],[[64420,61426],[-125,-73],[18,114],[-78,-25],[62,-205]],[[72527,31508],[327,-74]],[[72854,31434],[102,1018],[23,320]],[[72243,32939],[-96,-1328]],[[51896,53906],[-3,1839]],[[51893,55745],[-547,-11]],[[51346,55734],[-592,-18]],[[50754,55716],[8,-1496]],[[50762,54220],[3,-339]],[[75504,46998],[209,-76],[37,-190],[104,-157]],[[75854,46575],[41,77],[-68,215],[16,141],[-134,387]],[[75709,47395],[-96,324],[37,331],[-182,120]],[[75468,48170],[-142,-267],[-65,72]],[[75261,47975],[-28,-60],[-205,-79],[-50,-264],[-79,-73]],[[74899,47499],[5,-336],[-44,-90]],[[74860,47073],[38,-192],[154,-108],[97,85],[176,25],[153,195],[26,-80]],[[58021,83793],[1,44],[-312,3],[-252,140],[-418,339]],[[56860,83072],[-13,-855]],[[53165,37692],[527,5]],[[53692,37697],[44,138],[-35,160],[57,121],[-25,105],[63,137],[93,-114],[8,132]],[[53994,38822],[-642,-9]],[[53352,38813],[0,-168],[-157,-169],[-30,-169],[0,-615]],[[15317,11917],[668,324],[730,341],[1049,477]],[[17764,13059],[-116,756]],[[17648,13815],[-208,0]],[[16427,13651],[-66,55],[-272,49],[-107,70]],[[15982,13825],[-33,-76],[-214,-66],[-92,108],[-79,-24],[-10,-262],[-162,-210],[-157,-44]],[[15235,13251],[-107,-160]],[[15128,13091],[5,-177],[-98,-96],[149,-965],[133,64]],[[61107,46452],[-16,-1003],[-12,-225]],[[61580,46493],[-473,16],[0,-57]],[[38934,33547],[-58,1315],[-100,1655]],[[38776,36517],[-74,1247],[-66,1278]],[[38636,39042],[-735,-123],[-762,-142]],[[36925,38731],[93,-1518],[414,78],[30,-578],[122,-2072],[83,-1326]],[[83179,47114],[84,-159],[-30,-168],[33,-325]],[[83266,46462],[137,-256],[-21,-61]],[[83916,46341],[290,113]],[[84093,46980],[-226,897]],[[83867,47877],[1,138],[-192,85],[-41,102]],[[83635,48202],[-74,6],[-12,-170],[-370,-924]],[[57676,47167],[98,-15],[82,-152],[155,107],[114,-23],[21,-269]],[[58146,46815],[-12,1352]],[[58133,48222],[-572,-12],[-1,113],[-472,-16]],[[57088,48307],[6,-873]],[[60395,50549],[293,-8],[649,-48]],[[61337,50493],[13,520],[25,-2]],[[60393,50382],[-1,-137],[131,-129],[-95,-231],[211,-27],[56,-133],[-7,-274]],[[61302,48891],[35,1602]],[[57607,29293],[-188,9]],[[57419,29302],[-19,-1335]],[[42074,10258],[1703,235]],[[43777,10493],[-14,328]],[[43763,10821],[-27,656],[85,9],[-40,941]],[[43781,12427],[-211,-81],[-143,3],[-54,-60],[-142,24],[-82,150],[24,115],[-223,116],[-70,-51],[-113,99],[-111,-213],[55,-106],[-181,-157],[-104,96],[43,112],[-61,85],[-51,-78],[-36,243],[-78,-91],[-27,157],[-78,53],[-65,-122],[-62,60],[-49,-116]],[[42030,11180],[44,-922]],[[83854,49447],[169,214],[75,-64]],[[84478,49362],[36,270]],[[84514,49632],[59,673]],[[84573,50305],[-54,83],[-145,37],[-133,148]],[[84241,50573],[-66,-1],[-140,-211],[-58,57],[-126,-170],[-86,-10],[1,-177]],[[87336,40456],[200,-13],[93,-116],[95,-21]],[[87773,40607],[30,189]],[[87803,40796],[-143,8],[-158,135],[-114,36],[-76,216],[49,99],[-89,252],[-62,75]],[[87210,41617],[-71,59],[25,289],[-64,-51],[-14,-241],[-99,-179],[74,-711],[99,-245],[149,-15],[27,-67]],[[62362,43046],[-7,-352]],[[63051,43772],[-155,40],[6,-85],[-133,-178],[-36,-193],[-363,32]],[[62370,43388],[-8,-342]],[[85000,41905],[422,-670]],[[85422,41235],[-25,59],[126,241],[106,19],[121,144],[117,245],[117,-29]],[[85984,41914],[-116,692]],[[85868,42606],[-77,-91],[-104,278]],[[85687,42793],[-58,-98],[-181,-22],[-10,-150],[-151,-77]],[[67458,61061],[36,1486]],[[67494,62547],[-723,100]],[[66771,62647],[-34,-972]],[[58435,71005],[56,-2]],[[58491,71003],[462,-20]],[[58953,70983],[21,1160],[94,-7],[23,506]],[[58744,73331],[-126,5],[-15,-336],[-13,-1011],[-55,-82],[35,-150],[-56,-404],[-94,-181],[15,-167]],[[86094,60749],[63,-41],[36,-192],[68,60],[175,-167],[34,111],[155,204],[48,-34]],[[86673,60690],[-152,580],[-47,387],[-47,561]],[[86427,62218],[-38,-154],[5,-226],[-48,-354],[-42,-106],[-39,-304],[-132,-185],[-39,-140]],[[65868,18671],[30,659]],[[65077,20334],[-198,-3],[-192,-174]],[[64687,20157],[-93,-78]],[[64556,19185],[-15,-332]],[[66935,54605],[54,-30],[46,-311],[-50,-191],[-132,-294],[50,-405],[100,-156]],[[67003,53218],[101,59]],[[67104,53277],[71,17],[53,234],[140,222],[49,201],[-35,146],[53,130]],[[67435,54227],[-53,262],[53,309],[-51,77]],[[67384,54875],[-129,-240],[-103,-46],[-196,189]],[[66956,54778],[-78,-39],[-72,-158]],[[10552,41346],[9,-99],[98,-81],[36,-150],[116,-183],[210,201],[137,-31],[161,64],[204,-81],[63,26]],[[11595,41316],[29,605]],[[10370,43712],[-28,-190],[-77,-105],[161,-1019]],[[10426,42398],[57,-106],[-68,-77],[79,-248],[-11,-212],[60,-103],[-33,-92],[42,-214]],[[66141,54092],[9,3]],[[66956,54778],[12,309]],[[66396,55146],[-6,-27]],[[66390,55119],[-249,-1027]],[[80627,68590],[123,-125],[115,-307],[-45,-194],[66,-74],[-11,-128],[251,-405]],[[81126,67357],[113,174],[104,257],[180,214],[140,400],[40,50]],[[80926,69242],[-88,5],[-122,-100]],[[80716,69147],[-65,-115],[37,-88],[-78,-183],[17,-171]],[[52414,37455],[-6,1103]],[[52408,38558],[-180,161],[-268,137],[-123,-31]],[[51837,38825],[13,-1382]],[[99289,99464],[46,-120],[-24,-131],[50,-99],[259,-42],[50,96],[329,-1],[-90,92],[-322,198],[-71,-43],[-227,50]],[[29735,18409],[152,53],[81,-122]],[[31417,17358],[-82,766],[-64,765],[-75,736],[-95,-26],[-24,248],[-93,-26],[-58,656],[-183,-51],[-133,1320]],[[30478,23008],[-57,730]],[[30421,23738],[-107,-106],[-17,-168],[-111,-206],[17,-160],[-118,-426],[-73,-125]],[[30012,22547],[219,-2261],[35,10],[101,-1100],[-280,-81],[-74,-245],[-171,-217],[10,-109],[-117,-135]],[[68080,59192],[93,-4],[108,118],[53,-136],[179,-34]],[[68513,59136],[-13,679],[161,186]],[[68581,60501],[-153,17],[-322,169],[-27,121]],[[68079,60808],[-66,-72],[108,-285],[-125,-367],[17,-271],[-37,-127],[71,-182],[24,-213]],[[21756,26225],[449,163],[225,-1794]],[[24080,24142],[-63,118],[-69,278],[37,131],[-60,146],[-20,205],[-82,27],[-184,1528]],[[23588,27680],[-63,540]],[[23525,28220],[-655,-232],[93,-607],[-252,-117],[-21,-78],[-241,-21],[-16,-139],[-113,-51],[-99,-142],[-73,201],[-69,-49],[-45,-157],[-136,-161],[-71,-167],[14,-168],[-85,-107]],[[42972,34108],[38,5],[-43,1335],[65,7],[-6,338]],[[43026,35793],[-268,-17],[-810,-114]],[[41948,35662],[-62,-11]],[[41886,35651],[15,-334],[-69,-10],[60,-1330]],[[93425,27590],[27,-13],[382,-616]],[[94476,28522],[-105,86],[-3,418],[-126,140],[-128,49]],[[93894,28609],[-66,-111]],[[93828,28498],[-81,-129],[-103,-47]],[[93644,28322],[-49,-66],[-53,-374],[-65,50],[-52,-342]],[[67968,49240],[-95,214],[-66,349],[-50,-102],[-40,142],[-54,-84],[-28,218],[-51,-69]],[[67584,49908],[-5,-10]],[[67579,49898],[61,-129],[-63,-414],[44,-223],[-38,-437]],[[75632,53677],[142,-12],[6,-122],[227,-239],[119,-231]],[[76126,53073],[109,52]],[[76235,53125],[-40,183],[351,-313],[133,128]],[[76679,53123],[30,78],[-20,237]],[[76689,53438],[-148,173],[-176,54],[-81,303],[4,149],[-100,38],[-439,393]],[[75749,54548],[-7,-125],[-82,-121],[11,-198],[-52,-81],[40,-172],[-27,-174]],[[69214,59723],[172,-282],[8,-489]],[[69394,58952],[327,158],[466,269]],[[70187,59379],[-50,48],[-3,444],[-75,354],[-123,185],[-3,134]],[[69495,60553],[-158,-19]],[[58171,81063],[481,-22],[-6,-337],[193,-7],[4,335],[481,-26]],[[59324,81006],[2,88],[189,-8],[9,455],[64,-4],[8,397],[196,-8],[-24,168],[41,110],[-207,15],[3,168]],[[58245,81665],[-4,-141],[-115,-195],[45,-266]],[[82834,55862],[531,-167],[-34,-117]],[[83931,55425],[5,97],[-57,931],[150,56]],[[84029,56509],[-71,265]],[[83958,56774],[-154,-142],[-20,-95],[-128,-86],[-48,53],[-67,256],[-82,-16],[-164,251]],[[83295,56995],[-359,121]],[[47296,87680],[25,1]],[[47290,89343],[-1399,-70]],[[45891,89273],[42,-1716]],[[76330,50316],[3,149],[85,124],[52,501],[-44,98]],[[76382,51134],[-133,-148],[-148,-288],[-70,116],[-73,-120],[-140,-75]],[[75818,50619],[-36,-159]],[[75782,50460],[23,-128],[-54,-85],[92,-216],[148,-210],[-36,-110],[223,84]],[[28037,37138],[-230,86],[-123,-37],[-12,-257],[29,-128],[-80,-21],[-256,217],[-211,238]],[[27154,37236],[-262,-1283]],[[26892,35953],[526,-139],[349,105],[181,106]],[[25866,45692],[767,230],[-3,32],[497,145]],[[27127,46099],[-167,254],[-92,1045]],[[26868,47398],[-370,-87],[-645,-211]],[[25853,47100],[104,-188],[149,-452],[-92,-270],[-162,-383],[14,-115]],[[77015,49255],[53,163],[95,34],[10,118]],[[77173,49570],[160,227],[26,170]],[[77359,49967],[-127,143],[28,153],[-88,32],[-118,-70],[-70,54]],[[76984,50279],[-143,-103]],[[60637,29114],[705,-58]],[[61342,29056],[71,272],[-16,190]],[[61485,30375],[-624,53]],[[60672,30442],[-35,-1328]],[[13339,11714],[107,-14],[1,-189],[87,-61],[40,74],[303,-87],[136,176],[62,13],[33,-162],[112,-141],[36,41]],[[14256,11364],[-307,1857]],[[13949,13221],[-123,-62],[-55,-138],[-139,-78],[-272,-294],[-107,-209],[46,-261]],[[66513,29628],[390,-60]],[[66903,29568],[-6,316],[-78,272],[-42,614],[37,164]],[[66814,30934],[-272,40]],[[66542,30974],[-31,-671],[35,-5],[-33,-670]],[[28773,16311],[-2,-152],[121,-106],[62,69],[97,-193],[81,29],[72,-117]],[[29735,18409],[-151,-167],[-14,-109],[-142,-48],[-132,28],[-72,248],[-90,64]],[[29134,18425],[-102,-177],[-204,-257],[34,-189],[-28,-211],[22,-356],[-39,-33],[29,-199],[-64,-188],[40,-173],[-110,-13]],[[28712,16629],[-9,-227],[70,-91]],[[75561,57028],[29,-24],[251,248],[100,139],[100,-63],[196,100]],[[76392,58169],[-84,182],[-225,218],[-78,208],[-199,-19],[-92,61]],[[75714,58819],[-35,-464],[-80,-64],[-207,-636]],[[75392,57655],[201,-335],[-32,-292]],[[96885,97842],[-76,195],[15,89]],[[96850,98381],[-179,141],[-133,52]],[[96538,98574],[28,-372],[83,-141]],[[20249,33974],[690,262],[-155,1257],[4,2128],[271,98]],[[21059,37719],[-54,477],[-7,581],[-68,330],[-53,121],[-35,540],[-142,405],[-69,30],[-136,1118]],[[20495,41321],[-1146,-429]],[[19349,40892],[126,-884],[311,-2554],[127,-924],[295,-2359],[41,-197]],[[59913,71924],[284,25],[98,101],[6,192],[190,-10],[7,336]],[[60498,72568],[7,335]],[[60505,72903],[-382,21],[5,167],[-287,15]],[[59640,72611],[31,-140],[-16,-218],[72,-144],[-4,-171],[190,-14]],[[59895,70945],[1201,-55]],[[61096,70890],[-26,167],[23,384],[53,267],[-16,277]],[[61130,71985],[-43,139],[-326,433],[-263,11]],[[59913,71924],[-18,-979]],[[92189,21096],[526,511],[165,52]],[[92880,21659],[-29,109],[139,571],[-78,315]],[[92912,22654],[-577,-400],[-69,101],[-89,-185],[-65,-5],[-113,-198]],[[91999,21967],[-21,-96],[106,-172],[-31,-237],[187,-139],[-51,-227]],[[61205,69380],[57,74],[-47,145],[22,149],[-116,100],[-2,82],[-127,139],[-35,235]],[[60957,70304],[-159,-168],[-9,-170],[-186,-23],[-47,-136]],[[60556,69807],[-53,-57],[3,-246],[57,-142],[47,-340],[-23,-84],[-30,-705]],[[45054,41061],[161,17]],[[45215,41078],[777,62]],[[45992,41140],[-11,171],[-28,1179]],[[45047,42403],[-32,-3]],[[85232,36246],[95,-322],[-24,-377],[47,-302]],[[85350,35245],[-96,-87],[-75,-193],[-7,-404],[-91,-232]],[[85081,34329],[16,-80],[141,-119],[92,-19]],[[85330,34111],[32,303],[-29,583],[203,-156],[181,50],[34,205],[39,-10]],[[85790,35086],[36,-13],[33,215],[144,-87],[74,202]],[[86077,35403],[-468,611],[1,20]],[[85610,36034],[-76,46],[-252,285],[-61,-75]],[[85221,36290],[11,-44]],[[87253,42560],[46,-130],[99,-47],[-11,-242],[250,11]],[[87665,43507],[-118,-163],[-108,-8],[-104,-95],[-122,-215],[-17,98],[-81,-35],[12,194],[-45,-11],[-18,-335],[69,-336],[139,96],[-19,-137]],[[54866,31644],[757,-11]],[[55623,31633],[8,1327]],[[55631,32960],[-760,11]],[[73968,60473],[57,-116],[268,-50],[32,-81]],[[74325,60226],[259,146],[30,108],[91,-29]],[[74705,60451],[7,847]],[[73907,61469],[47,-373],[-22,-13],[61,-348],[-25,-262]],[[52915,45853],[574,4]],[[53489,45857],[341,2]],[[53831,47208],[-6,347]],[[53825,47555],[-76,-259],[-157,19],[-92,-89],[-64,125],[-61,-70],[-42,146],[-100,-53]],[[53233,47374],[-119,-67],[-1,83],[-158,-42],[-14,-241],[-128,-198],[-13,-131],[-133,-300],[34,-223],[66,-53],[40,-168],[108,-181]],[[86529,41284],[-104,-41],[111,174]],[[86536,41417],[-79,28],[-74,-93]],[[86383,41352],[-171,-98],[-43,-355],[300,-108],[60,493]],[[93751,17589],[149,-185]],[[93900,17404],[105,361],[-42,69],[132,227],[53,342],[139,34],[16,215]],[[94348,19224],[-88,312],[-151,-103],[-224,-231],[-45,224],[-203,-84]],[[93637,19342],[-25,-101],[142,-666],[14,2],[0,-614],[-60,-281],[43,-93]],[[67996,46357],[103,-251],[-58,-150]],[[68041,45956],[612,-95]],[[68653,45861],[17,335]],[[68239,47288],[17,-184],[-118,-115],[-4,-265],[-81,-114],[-57,-253]],[[66030,64672],[-13,-337]],[[66017,64335],[-2,-55],[282,-38]],[[66929,64167],[13,337]],[[66942,64504],[-92,66],[16,389],[-58,120]],[[66808,65079],[-186,23],[-3,-55],[-571,72]],[[66048,65119],[-18,-447]],[[55615,30691],[-752,12]],[[27182,38427],[89,136],[131,-62],[73,219],[183,-171],[78,10],[141,-171],[128,29],[165,-131]],[[28170,38286],[32,126],[-34,227],[-89,119],[78,348],[121,51],[55,174],[-20,118],[214,74],[62,190],[-21,74],[59,230],[-9,165],[-70,251],[69,50],[166,453],[-14,164],[315,89]],[[29084,41189],[56,15],[-30,330]],[[29110,41534],[-645,-178]],[[28465,41356],[-652,-185]],[[27813,41171],[-206,-52],[66,-189],[-113,-360],[-21,84],[-137,77],[-132,303],[-140,78],[-68,-40],[58,-170],[-13,-142],[57,-94],[-70,-159],[7,-175],[-101,-178]],[[27000,40154],[12,-184],[71,-165],[-20,-190],[56,-57],[-36,-242],[8,-363],[38,-29],[-17,-472],[70,-25]],[[79696,49043],[219,-255]],[[80206,49242],[12,64],[-167,800],[-70,386]],[[79981,50492],[-2,-5]],[[79522,49992],[31,-216],[177,-337],[126,93],[-96,-206],[41,-107],[-105,-176]],[[28465,41356],[-38,414]],[[28427,41770],[-85,903],[-88,-25],[-153,1657]],[[28101,44305],[-925,-268],[11,-47],[-274,-80]],[[26913,43910],[97,-1024]],[[27010,42886],[8,-85],[96,28],[76,-152],[292,80],[27,-294],[58,15],[78,-893],[236,-110],[16,-168],[-84,-136]],[[65160,29464],[767,-94],[17,335]],[[65944,29705],[28,664],[-26,3],[31,672]],[[65790,31065],[-753,93]],[[65037,31158],[-15,-334]],[[65022,30824],[-7,-333],[-46,-1001]],[[51994,23798],[338,10],[23,-114],[808,12]],[[53163,23706],[27,220]],[[53188,25041],[-669,-5]],[[51990,24356],[4,-558]],[[83487,38702],[104,88],[265,37],[117,120]],[[83973,38947],[-65,250],[-63,715],[-115,448]],[[58920,25338],[614,-40],[371,-8]],[[59905,25290],[18,664]],[[59923,25954],[12,554],[-282,14]],[[59653,26522],[-51,-59],[-317,-24],[-33,-131],[-263,-406]],[[58989,25902],[-112,-116]],[[58877,25786],[43,-448]],[[32046,12813],[631,167]],[[32677,12980],[-18,218],[127,32],[-28,328],[189,48],[-14,163],[190,48],[-13,164],[172,42],[-90,1091],[-60,41],[-82,285],[103,109],[-10,330]],[[31827,15036],[30,-44],[73,-976],[-186,-54],[53,-516],[-27,-64],[68,-404],[190,51],[18,-216]],[[80726,59474],[142,252]],[[80868,59726],[127,222],[13,449],[418,-109]],[[81770,60981],[-232,280],[61,202],[-151,59],[-72,103],[-68,-124],[-77,160],[-28,-226],[-212,380]],[[80991,61815],[-45,-100],[18,-226]],[[85220,46667],[348,-1126]],[[85568,45541],[74,-20]],[[86037,45758],[-60,298],[165,202],[54,174]],[[86196,46432],[-136,19],[-46,104],[26,219]],[[85808,47258],[-82,75],[-133,-416],[-60,65],[-119,-88],[-69,-142],[-52,32],[-73,-117]],[[39600,32972],[379,59]],[[39979,33031],[-189,3666]],[[39790,36697],[-1014,-180]],[[58528,25250],[55,-18],[-16,-876],[-56,2]],[[58511,24358],[-10,-661]],[[58501,23697],[423,-20]],[[58924,23677],[-12,331]],[[58912,24008],[25,391],[-68,108],[51,216],[23,325],[-23,290]],[[58877,25786],[-82,-3],[-117,-122],[-120,44],[-30,-455]],[[65519,55017],[62,71],[27,-137],[-90,-169],[83,12],[111,171],[21,138],[102,-21]],[[65835,55082],[62,139]],[[65897,55221],[-49,381],[-65,153],[100,82]],[[65883,55837],[1,130],[-73,-21],[-49,174],[78,183],[-25,64]],[[65815,56367],[-56,280],[-76,68],[-132,-244]],[[65551,56471],[-91,-263],[-101,-156],[-179,-455]],[[65180,55597],[85,-266],[152,-131],[-4,-113],[106,-70]],[[87522,34710],[145,-126],[137,-184],[76,-274],[138,-213]],[[88018,33913],[161,334],[-89,407],[-59,4],[-14,349],[52,42],[0,265]],[[87882,35669],[-135,-121],[25,-146],[-112,-189],[-74,100],[-117,-273],[-98,42],[-54,-186]],[[58651,75507],[7,501],[192,-8],[13,676],[188,-10],[13,666]],[[59064,77332],[-289,16],[-92,340],[-174,9],[-27,350]],[[58482,78047],[-89,40]],[[58393,78087],[-43,-362],[-129,-144],[43,-194],[-74,-295],[-92,-115],[42,-138],[-104,-77],[-104,-230]],[[57932,76532],[13,-287],[39,-97],[-52,-228],[13,-108],[-109,-266]],[[71665,53440],[97,-67]],[[71762,53373],[107,202],[186,25]],[[72055,53600],[65,383],[120,185],[-13,64]],[[71752,54698],[-93,-1024],[-43,-103],[49,-131]],[[27561,66948],[-227,2566],[-5,20]],[[24134,68660],[303,-3047],[4,179],[72,66],[100,222],[903,260],[99,-987],[972,273]],[[29610,52658],[-435,5097],[305,78],[-47,552],[-29,-7],[-226,2652],[-13,-4],[-54,669],[-54,328],[6,279],[-118,1381],[-18,-5],[-112,1328],[-58,-16],[-68,800]],[[28689,65790],[-193,-85]],[[19662,66387],[63,-52],[132,60],[169,-33],[6,-131],[136,-165],[38,-233],[-45,-485]],[[22431,64731],[-351,3300]],[[21894,69792],[-2500,-2618],[57,-202],[4,-258],[95,-94],[112,-233]],[[58283,22050],[462,-23]],[[58745,22027],[-42,50],[-23,282]],[[58680,22359],[10,262],[171,17],[205,472],[-3,165],[-139,402]],[[58501,23697],[-8,-439]],[[65091,58254],[248,-38],[5,-98]],[[65344,58118],[578,-39]],[[65642,59365],[-124,-239],[-148,14],[-39,80],[-204,40],[-21,79]],[[74008,48295],[131,-370]],[[74139,47925],[164,68],[49,-37]],[[74352,47956],[57,52],[73,228],[73,-24],[80,165],[-20,75]],[[74615,48452],[-190,450]],[[74425,48902],[-90,-65],[-63,-150],[-112,-51],[-100,-287],[-52,-54]],[[56661,29329],[758,-27]],[[57626,30631],[-512,20]],[[57114,30651],[-440,13]],[[75404,52020],[156,-209],[128,129],[72,-178],[102,-98],[82,-194],[34,105],[132,6]],[[76386,52331],[-79,298],[47,230],[-9,176],[-110,90]],[[76126,53073],[1,-317],[-114,-108],[32,-155],[-225,-145],[-68,-257],[-88,-77],[-99,127],[-64,241]],[[75501,52382],[-39,-80]],[[56185,68437],[155,54],[12,83],[108,-40],[122,237],[63,-84]],[[57453,68991],[13,978]],[[57466,69969],[-178,22],[-48,-65],[-95,59],[-21,215],[-271,-47],[-68,-108],[-186,13],[-99,127],[-146,-70]],[[56354,70115],[-74,-166],[-101,-61]],[[56179,69888],[-10,-1440],[16,-11]],[[39868,23798],[1517,249]],[[41237,27166],[-503,-80],[-1103,-156]],[[39631,26930],[63,-1343],[56,-988],[13,5],[45,-816]],[[81805,62713],[66,-246],[-8,-261],[119,-69],[-32,-132],[124,-132]],[[82703,62924],[-32,163],[-77,25],[-176,270],[-34,-196],[-106,79],[-49,-152],[-110,-145],[-150,39],[-147,-80],[-17,-214]],[[39979,33031],[967,139]],[[40946,33170],[-114,2339]],[[40832,35509],[-57,1165]],[[40775,36674],[-25,513]],[[40750,37187],[-977,-152],[17,-338]],[[94136,26140],[77,20]],[[93583,26248],[-3,-105]],[[93176,27021],[185,-260],[-9,-188],[47,-19],[-76,-226],[152,-90],[79,106]],[[93848,26087],[30,168],[45,-90]],[[93425,27590],[-19,-125],[-182,90]],[[93224,27555],[-48,-534]],[[71640,51261],[81,123],[80,-3],[26,372],[-46,182],[108,91],[67,-135]],[[71956,51891],[33,14],[83,309]],[[72072,52214],[-60,-56],[-45,121],[-97,-43]],[[71870,52236],[-88,9],[-28,199]],[[71754,52444],[-409,6]],[[28556,24819],[188,58],[33,-328],[187,54],[16,-164],[86,25],[56,-486],[94,27],[31,-319],[269,79],[54,-560]],[[29835,22663],[106,22],[71,-138]],[[30421,23738],[-168,1859]],[[30253,25597],[-236,133],[-72,-84],[-123,78],[-60,-128],[-78,76]],[[29684,25672],[-46,36],[-111,-105],[-106,148],[-217,-63],[5,-55],[-217,-64],[11,-110],[-218,-64]],[[73880,64987],[-67,522],[-129,21],[12,185]],[[73091,65845],[-38,-234]],[[47174,32378],[-15,586]],[[46036,35790],[-940,-104]],[[45096,35686],[-937,-114]],[[44159,35572],[-55,-8],[52,-1330],[-46,-6],[48,-1313],[-29,-3],[34,-820]],[[75585,65905],[66,-143]],[[75651,65762],[133,133]],[[75611,66781],[-155,-104],[-130,-301]],[[17529,62842],[1101,400],[1507,506]],[[19662,66387],[-2546,-523]],[[17116,65864],[218,-1712],[39,14],[156,-1324]],[[22894,7628],[34,-251]],[[68199,42569],[-61,-134],[26,-112],[100,-87],[165,-406],[183,-153],[60,-110]],[[68672,41567],[31,583]],[[68703,42150],[57,1005]],[[68212,43245],[-40,-280],[27,-396]],[[71178,60347],[7,-357],[-35,-489]],[[71150,59501],[-13,-218],[64,-70]],[[71201,59213],[121,142],[191,38],[89,-83]],[[71602,59310],[85,320],[137,166]],[[71824,59796],[16,550],[-25,363]],[[71815,60709],[-230,-169],[-220,-33],[-176,144]],[[71189,60651],[-45,-201],[34,-103]],[[71736,58589],[232,-84],[126,49]],[[72094,58554],[148,113]],[[72242,58667],[58,676],[86,313]],[[72298,59678],[-321,114],[-48,61],[-105,-57]],[[71602,59310],[-34,-195],[121,-451],[47,-75]],[[76856,51868],[59,-99],[101,-568],[-34,-212],[-44,6],[0,-538],[-37,-101],[83,-77]],[[77359,49967],[89,252],[97,11],[110,107],[132,229],[261,18]],[[78048,50584],[-515,1073]],[[77533,51657],[-60,136],[-155,122],[-167,202]],[[77151,52117],[-17,30]],[[77134,52147],[-126,-170],[-66,96],[-119,-143]],[[74518,49899],[266,59],[74,-87]],[[74858,49871],[38,79],[223,224]],[[75119,50174],[-100,447]],[[74995,50626],[-106,-133],[-221,39],[-109,-134],[-11,-171],[-65,42]],[[74483,50269],[-5,-311],[40,-59]],[[70149,30324],[117,1667]],[[70266,31991],[-681,127]],[[69585,32118],[-46,-577],[-48,-365],[-86,-381]],[[70367,55755],[94,-90],[168,-22]],[[70629,55643],[361,-22]],[[70990,55621],[-6,592]],[[70921,56767],[-22,140],[-157,36],[-113,-78],[-100,162],[-57,-77],[-72,305]],[[70400,57255],[-81,-24],[-12,-127],[-150,-183],[-73,-233]],[[70084,56688],[107,-25],[59,-254],[15,-251],[102,-403]],[[82165,58802],[95,-6],[61,-100],[148,-57],[75,-109],[424,-48]],[[82968,58482],[87,135],[16,201],[133,-19],[83,56]],[[83287,58855],[-182,256],[-7,148],[59,157],[-92,255],[16,95],[-116,120]],[[82965,59886],[-414,118]],[[82551,60004],[25,-195],[78,-211],[-63,-293],[-64,-65],[27,-132],[-112,-280],[-111,150],[-139,-59],[-27,-117]],[[39857,79187],[1551,2553]],[[41408,81740],[442,719]],[[41850,82459],[-88,118],[-54,295],[-195,-89],[-98,113],[-49,-44],[-156,87],[-47,-37],[-53,245],[-89,123],[-12,161],[-55,10],[-13,175],[-75,91],[-92,619],[-70,9],[-67,349],[64,78],[-97,183],[-157,49],[-40,175],[-174,238],[-41,272],[-215,-52],[-104,22],[-89,-164],[-183,-103],[-131,-313],[-100,-151],[-166,-39],[-146,-144],[-120,-280]],[[38938,84455],[4,-47],[191,-4348]],[[36150,24798],[1273,268],[189,17],[653,114]],[[38265,25197],[-18,163],[-85,1338],[-69,1330],[-13,-2],[-76,1247]],[[36279,28918],[77,-1205],[-22,-4],[89,-1333],[-29,-6]],[[36394,26370],[44,-602],[-62,-106],[47,-68],[-51,-130],[9,-180],[-65,18],[-90,-117],[26,-137],[-102,-250]],[[58680,22359],[551,-26],[-5,-330],[574,-27],[7,328]],[[59807,22304],[36,1643]],[[59843,23947],[-931,61]],[[59843,23947],[7,337],[32,-2],[23,1008]],[[41633,56906],[1468,177]],[[43036,58797],[-1544,-187]],[[84643,36234],[230,-15],[187,-64],[63,112],[109,-21]],[[85221,36290],[-109,132],[-250,175],[35,76],[-180,225],[-357,591],[-28,135],[-140,352]],[[84192,37976],[-40,117]],[[84152,38093],[-129,-408]],[[84023,37685],[180,-503],[-10,-88],[158,-319],[-12,-105],[304,-436]],[[67768,38105],[-32,-661]],[[67736,37444],[-44,-914]],[[67692,36530],[93,123],[114,-36],[-31,139],[165,51],[165,-31]],[[68198,36776],[85,1465]],[[68283,38241],[-89,104]],[[68194,38345],[-73,137],[-142,116],[-184,14]],[[67795,38612],[-27,-507]],[[85959,33079],[26,-658]],[[85985,32421],[-14,-414],[131,-64]],[[86102,31943],[47,11],[588,-210]],[[86737,31744],[-76,496],[55,57],[-62,325]],[[86654,32622],[-253,263],[-442,194]],[[56248,47843],[-2,-268]],[[56246,47575],[145,-141],[101,108],[100,-182],[57,12],[127,-288],[133,111]],[[57088,48307],[-5,325]],[[57083,48632],[-260,2],[-570,-31]],[[56253,48603],[-5,-760]],[[79230,36254],[422,-132],[185,1],[98,143]],[[79935,36266],[-86,296],[65,549]],[[79328,37295],[-19,-186]],[[79309,37109],[-79,-855]],[[79099,34871],[638,-151],[199,-96]],[[80054,35832],[-119,434]],[[79230,36254],[-3,-31]],[[79227,36223],[-128,-1352]],[[85946,33345],[13,-266]],[[86654,32622],[23,121],[163,121],[91,1],[51,276],[43,8],[53,303],[76,30]],[[87154,33482],[-60,177]],[[86632,34657],[-44,60],[-312,-73]],[[86276,34644],[-80,-373],[-41,-326],[-75,54],[-104,-275],[-30,-379]],[[61470,38378],[-189,13]],[[60708,38098],[-38,-1347]],[[58657,39583],[20,1010]],[[57920,40631],[-16,-1013]],[[47877,55575],[793,46]],[[49450,57731],[-4,253],[-161,12],[-129,-97],[-46,-115],[-89,-17],[-112,-228],[-204,-14]],[[48705,57525],[7,-355],[-90,-164],[-79,-295],[-132,-268],[-193,-19],[-75,-138]],[[48143,56286],[-31,-143],[-102,-97],[-133,-471]],[[47583,57126],[542,25],[18,-865]],[[48705,57525],[-19,1003],[3,329]],[[48689,58857],[-750,-54]],[[47939,58803],[-376,-23],[-8,-319],[28,-1335]],[[37131,64566],[756,127]],[[37831,65684],[-51,1021],[-90,1625],[-6,356],[-34,-5],[-38,639],[-372,-34],[-379,-66]],[[35022,67543],[42,-691],[578,147],[41,-671],[231,43],[98,-1665]],[[44703,16885],[-69,-119]],[[44634,16766],[46,-1206],[-92,-10],[36,-934]],[[32596,67063],[89,-1334],[118,-1660],[-17,-3],[88,-1217]],[[68626,40814],[534,-86]],[[69160,40728],[126,-20],[29,497]],[[69361,42042],[-658,108]],[[68672,41567],[-25,-419]],[[67549,55296],[261,-205],[209,-224]],[[68019,54867],[34,31],[157,-116],[50,-114]],[[68260,54668],[134,118],[-4,340],[21,474],[-13,461]],[[68398,56061],[-276,57],[1,-118],[-388,1]],[[67735,56001],[-83,-255]],[[67652,55746],[-103,-450]],[[83287,58855],[224,320],[51,398]],[[83562,59573],[46,266],[-167,586]],[[83441,60425],[-444,-547],[-32,8]],[[66425,51595],[-763,103]],[[65662,51698],[-13,-339],[-46,5]],[[65603,51364],[49,-143],[30,-432],[-25,-107]],[[66986,51343],[409,-55],[79,53]],[[67461,52570],[-84,-84],[-337,46]],[[63011,47140],[-22,-173],[32,-142],[-73,-636],[11,-120]],[[78077,64309],[96,-249],[82,-56],[61,65],[224,-70]],[[79077,64294],[-187,141],[23,194],[85,165],[-85,272],[36,284],[145,183],[-24,151]],[[79070,65684],[-157,-93],[-58,-202]],[[78855,65389],[-89,-263],[-144,-198],[-330,-266],[-143,-144]],[[78149,64518],[-72,-209]],[[77427,62152],[16,-41]],[[77450,62092],[-58,-381],[-85,-48],[14,-196],[-77,-379],[-35,-294],[-54,-51],[61,-279]],[[84337,48142],[-330,-89],[-140,-176]],[[81586,63045],[65,-19],[154,-313]],[[81896,64735],[-114,-125],[-75,-208]],[[81707,64402],[27,-177],[-91,-232],[-24,-246],[16,-192],[-67,-115],[67,-174],[-79,-147],[30,-74]],[[87091,45837],[204,194],[131,30],[206,154],[2,221],[-85,112],[38,506]],[[87587,47054],[-108,-83],[-6,-222],[-68,-22],[-51,-153],[-155,-3]],[[86928,46165],[15,-144],[148,-184]],[[74421,47735],[130,111],[348,-347]],[[75261,47975],[-68,140],[9,311],[-194,364]],[[75008,48790],[-107,-60],[-44,-220],[-105,-75],[-137,17]],[[74352,47956],[69,-221]],[[74289,56615],[124,-43],[123,138],[-1,-257],[223,31],[56,-36],[45,-287],[58,109]],[[74917,56270],[133,297]],[[75050,56567],[-233,491],[71,129],[-146,224],[-81,-6],[-55,250],[-56,96]],[[74550,57751],[-161,-505]],[[74389,57246],[-78,-164],[-76,-34],[-51,-204]],[[28815,9121],[1222,376],[-16,162],[189,59],[-17,163],[94,28],[-21,218],[844,234]],[[31110,10361],[-102,1082]],[[31008,11443],[-379,-107],[-31,324],[-378,-110],[-39,397],[-180,-95]],[[37005,54278],[862,152]],[[37867,54430],[-34,122],[52,190],[-65,252],[-16,438],[-157,15],[-109,145],[24,175],[-47,102],[33,189],[-50,27],[89,250],[-74,140],[41,188],[-56,547]],[[37498,57210],[-125,76],[12,178],[-53,223],[-143,340],[-77,82]],[[70829,37590],[27,445],[-56,11],[36,504]],[[44722,20429],[230,-51],[6,171],[134,-38],[141,131],[61,-89],[43,109],[165,-54],[158,-180],[135,-84],[1,-109],[172,-42],[-8,-135],[155,-163],[24,-170],[95,-25]],[[46912,19211],[53,250],[-53,309],[30,123],[-119,388],[15,284],[153,414],[-10,87]],[[46981,21066],[-1389,-126],[-885,-96]],[[44707,20844],[15,-415]],[[72575,55377],[34,-9]],[[72609,55368],[29,201],[-21,167]],[[72617,55736],[-272,182],[-63,381]],[[72282,56299],[-157,-236],[-215,-54],[-20,-98],[-186,123]],[[71704,56034],[15,-477]],[[57466,69969],[12,1073]],[[57478,71042],[7,531]],[[57485,71573],[-1122,40]],[[56363,71613],[-9,-1498]],[[92380,15002],[231,909],[-63,48],[175,608],[69,394],[195,-344],[256,547],[-50,89],[430,-42],[38,238],[90,140]],[[93637,19342],[-49,-14],[-33,158],[-94,-60],[-47,-131],[6,-216],[-83,-147],[-246,490],[-66,-41],[42,162],[90,-5],[163,234],[-33,234],[34,68],[-70,122],[52,171]],[[93001,20597],[-316,-1810]],[[91991,15064],[104,-102],[-19,-103],[159,66],[68,236],[93,-17],[-16,-142]],[[75008,48790],[79,53],[-45,88],[172,77],[-8,98],[125,29],[-52,125]],[[75279,49260],[-131,-1],[3,183],[-138,-34],[-162,152]],[[74851,49560],[-128,-292],[-119,-189],[-164,-50],[-15,-127]],[[82046,57419],[-202,65]],[[81844,57484],[-74,-278],[-249,-311],[-22,-157],[-66,34],[-160,-57]],[[81273,56715],[-47,-167],[12,-150],[105,-87],[-34,-187],[68,3],[-74,-319]],[[94690,19848],[-62,18],[-72,313],[-75,-2],[-83,189],[-76,67],[-28,326],[50,102],[-32,123],[-82,-58],[-108,161]],[[56448,27738],[250,234],[267,170],[66,-58],[-16,-269]],[[86997,51100],[63,-338],[-3,-251],[36,-227],[-94,-163],[-2,-157]],[[86997,49964],[230,-330],[9,-330]],[[87236,49304],[44,327],[152,49],[203,228],[16,87]],[[87651,49995],[-71,74],[-508,1255]],[[87072,51324],[-23,-8]],[[32858,32951],[967,228],[1473,330]],[[35298,33509],[-46,665],[30,6],[-125,1643],[-681,-134],[-71,977],[20,5],[-112,1515]],[[34313,38186],[-543,-113],[-1305,-306]],[[30837,37373],[190,-2212]],[[25851,11470],[13,173],[94,32],[-19,162],[85,88],[13,172],[62,22],[7,221],[122,41],[-18,165],[94,33],[-60,96],[-102,-98],[-80,151],[-56,484],[26,9],[-37,322],[-191,-26]],[[25804,13517],[-154,103],[1,-318],[-133,-162],[-65,-220],[52,-216],[-45,-67]],[[85193,43601],[-32,-24]],[[85161,43577],[32,24]],[[63737,29608],[293,-40]],[[65022,30824],[-562,84],[-2,-49],[-568,71]],[[63890,30930],[58,-269],[119,-89],[-24,-680],[-212,-28],[20,-99],[-93,-49],[-22,-108]],[[63736,29608],[1,0]],[[96080,96395],[186,-2]],[[96069,96833],[11,-438]],[[45455,22729],[1739,155]],[[47194,22884],[95,356],[-72,239],[80,278]],[[47038,25074],[-27,206],[-203,299],[-101,-41],[-99,-214],[-61,2],[-9,192]],[[46538,25518],[-128,16],[-45,-78],[-138,40],[-169,159],[-176,-105]],[[45882,25550],[31,-944],[-565,-53],[27,-169],[44,-1326],[36,-329]],[[80139,67358],[110,-276],[337,105],[308,-125]],[[80627,68590],[-46,-137],[-5,-201],[-113,-135],[14,-76],[-100,-211],[14,-202],[-105,-116]],[[80286,67512],[-147,-154]],[[76405,56279],[127,-269]],[[77426,56362],[4,219]],[[77430,56581],[-59,-86],[-231,312],[-5,188],[-51,130],[-62,-91],[-79,35]],[[75501,52382],[14,120],[-69,158],[23,339],[95,273],[22,248]],[[75586,53520],[-144,-34]],[[74927,53216],[-43,-239],[-68,38],[-90,-198],[39,-157],[-18,-165]],[[67104,53277],[124,-202],[324,-125],[46,-133]],[[67824,52882],[1,211],[66,96],[91,-101],[15,176],[73,-29]],[[68070,53235],[-407,610],[-61,69],[-3,164]],[[67599,54078],[-35,101],[-129,48]],[[81853,60179],[-62,-1474]],[[81791,58705],[35,-71],[71,195],[95,5],[89,-206],[84,174]],[[82551,60004],[-1,0]],[[72935,56155],[30,-17],[2,-350],[63,-241],[169,-122],[144,15],[147,145],[91,-18]],[[73676,56145],[-137,203],[-13,115],[-133,74],[-47,307],[25,197]],[[73371,57041],[-169,46],[-48,-57],[-115,147]],[[73039,57177],[-36,-16]],[[73003,57161],[52,-211],[-97,-401],[-23,-394]],[[65815,56367],[49,0],[219,192],[150,-17],[67,48],[133,269]],[[66433,56859],[-814,87],[-80,25]],[[65539,56971],[-124,31]],[[65415,57002],[55,-458],[81,-73]],[[65297,57023],[-95,9]],[[65202,57032],[-63,-184],[45,-133],[113,34],[0,274]],[[76555,47185],[97,97],[50,193]],[[76702,47475],[17,296],[54,109],[-3,266],[-32,1]],[[76418,48239],[2,-463],[-81,-25]],[[76339,47751],[63,-248],[153,-318]],[[78430,62392],[144,253]],[[78077,64309],[-185,-412],[-78,-54],[-60,-212]],[[51379,83478],[563,-1002]],[[51942,82476],[9,75],[332,-316],[98,-169]],[[52381,82066],[52,84],[228,-22],[46,387]],[[52707,82515],[98,318]],[[52805,82833],[-283,642],[-303,608]],[[51375,83485],[4,-7]],[[17648,13815],[306,54],[96,-150],[88,-40],[114,126],[89,-8]],[[18341,13797],[-173,1166],[277,125],[-45,319],[154,67],[-231,1606],[-25,-11],[-46,322]],[[17483,17060],[-179,-78],[41,-270]],[[82905,36697],[-19,-25]],[[82886,36672],[393,-154]],[[83279,36518],[-145,301],[114,184],[-25,242],[84,40],[54,249],[-129,731]],[[95559,29277],[84,40],[164,-94],[89,-102],[34,-256],[146,288],[-63,194],[-166,63],[-245,-65],[-43,-68]],[[84005,63504],[21,68]],[[83562,65570],[-152,-51],[-60,-133],[-145,-91],[-90,-172],[-155,-138],[-234,84]],[[27127,46099],[20,-25],[758,217]],[[27905,46291],[-4,39],[1280,352],[878,231]],[[30110,48284],[-1287,-337],[-1228,-351],[-727,-198]],[[49305,78646],[993,18]],[[50019,80229],[-146,529],[48,67],[-55,157]],[[49288,79059],[-21,-332],[38,-81]],[[27204,17080],[56,20],[184,-247],[59,71],[103,-122],[61,-670],[372,116],[17,-163]],[[28056,16085],[717,226]],[[28712,16629],[-96,-12],[-76,127],[-145,-45],[-35,328],[-113,-35],[-66,174],[-85,-8],[1,228],[-177,190],[-97,11]],[[29134,18425],[-414,-102],[-79,-40],[-76,219],[-231,159]],[[52028,33380],[-82,-43],[-10,-136],[-140,-87],[-86,47],[-92,-45],[-109,57]],[[51509,33173],[-241,-11]],[[44422,28291],[1485,149]],[[45907,28440],[-18,590]],[[45889,29030],[-95,-22],[-170,197],[-49,1533]],[[44173,30589],[12,-333],[-44,-4],[32,-860]],[[72617,55736],[25,-40],[159,162],[134,297]],[[73003,57161],[-150,-1],[-219,-140],[-11,-68],[-167,-39],[-65,-85],[-20,-162],[-63,19]],[[72308,56685],[-26,-386]],[[28427,41770],[38,59],[33,292],[88,47],[4,243],[41,130],[-5,201],[1751,471]],[[30377,43213],[6,208],[-157,508],[22,191],[-87,129],[-18,203],[-82,164],[-47,207],[85,203],[94,-4],[49,183],[-100,-140],[-125,20],[-57,289],[79,499],[-73,191],[57,37],[-23,133],[91,84],[-43,182],[91,63],[-101,41],[103,73],[-82,236]],[[27905,46291],[55,-618],[14,4],[127,-1372]],[[50892,89658],[329,-846]],[[51642,88194],[108,-3],[27,78],[89,-57],[121,194],[129,55],[48,-81]],[[52402,88751],[-45,102],[-3,247]],[[51891,89605],[-246,191],[-122,213]],[[51435,90010],[-108,-236],[-122,-4],[-93,73],[-106,-197],[-114,12]],[[44985,57281],[229,20]],[[45214,57301],[714,63]],[[32406,53331],[1550,337]],[[33498,56604],[-63,840]],[[30953,56872],[304,-3808]],[[61460,59549],[436,-16],[2,171],[190,-9]],[[62088,59695],[280,-22]],[[62368,59673],[-51,304],[-170,292],[-35,178],[61,220],[-78,-4],[11,437],[-377,16]],[[61729,61116],[-376,15]],[[61259,60479],[-2,-169],[-68,-233],[33,-222]],[[58890,50754],[35,-35],[166,278],[340,10],[13,-89],[102,-43]],[[59297,52150],[-374,-6]],[[58923,52144],[2,-617]],[[51040,9691],[1054,30]],[[52178,11449],[3,6]],[[62368,59673],[294,-7]],[[62662,59666],[12,682]],[[62155,61433],[-422,23],[-4,-340]],[[52939,30702],[7,255],[111,153],[-4,325],[-87,45],[40,147]],[[53006,31627],[-9,137],[120,1],[72,425],[-24,117]],[[66433,56859],[13,-1]],[[66446,56858],[34,352],[-119,85],[-110,-60],[9,730]],[[65344,58118],[88,-191],[30,-362],[67,-229],[-20,-95],[30,-270]],[[79276,65882],[556,-1245]],[[79955,64360],[127,216],[99,36],[103,226],[260,69],[176,121]],[[80720,65028],[-278,709]],[[80442,65737],[-595,1296]],[[79847,67033],[-188,-143]],[[79659,66890],[16,-103],[-207,-227],[16,-379],[-135,-131],[-73,-168]],[[11424,15238],[678,353]],[[11784,17171],[-897,-462]],[[10887,16709],[-22,-256],[162,21],[39,-271],[184,96],[174,-1061]],[[10371,16467],[516,242]],[[13826,18272],[32,132],[-51,499],[-215,439],[-49,188],[-92,-33],[-103,158],[-35,355],[-41,60],[-57,298],[12,144],[-64,15]],[[13163,20527],[-231,119],[-72,432]],[[12860,21078],[-548,-275],[-386,-177],[65,-395],[-560,-265],[41,-243],[-45,-23],[104,-642],[-316,-164],[18,-107],[-184,-98],[-77,-120],[25,-141],[-77,-39],[-26,-225],[-114,-152],[-186,-100],[-233,208],[-320,-174]],[[10041,17946],[210,-854],[120,-625]],[[86196,46432],[119,271],[-29,73],[79,103],[101,-4],[24,169],[229,-128],[119,219]],[[86838,47135],[88,248],[132,167]],[[87058,47550],[8,288],[59,169],[-88,228]],[[87037,48235],[-66,-117]],[[86971,48118],[-108,-160]],[[64716,54659],[73,-64],[53,-231],[109,-146],[225,-98]],[[65176,54120],[49,-2],[17,239],[156,398],[-9,133],[130,129]],[[65180,55597],[-297,74]],[[64883,55671],[2,-247],[-201,-611],[32,-154]],[[53265,87750],[30,-1098]],[[53295,86652],[663,-699],[175,-317]],[[54133,85636],[65,210],[-9,252],[145,167],[-29,101],[39,271],[126,-9],[98,106],[30,169],[121,251],[123,21]],[[54842,87175],[-293,287],[-296,330],[-513,413],[-277,246],[-307,385]],[[48502,69505],[-25,1695]],[[48477,71200],[-266,-16]],[[47523,71143],[33,-1699]],[[59921,20317],[761,-56]],[[60752,22240],[-755,50]],[[59997,22290],[-35,-1313],[-26,2],[-15,-662]],[[25794,47092],[59,8]],[[28685,50294],[-625,-167],[-1368,-388],[-51,1],[-547,-165],[-332,-125],[-549,-169]],[[25213,49281],[93,-999],[187,62],[16,-332],[204,62],[15,-337],[66,-645]],[[53120,38810],[232,3]],[[54017,39593],[-664,2]],[[77880,54302],[100,-147],[109,-73],[-40,181]],[[78049,54263],[-169,39]],[[51693,14742],[868,18]],[[52616,15419],[-20,295],[41,324],[1,372]],[[61615,65168],[13,959],[216,2],[117,43],[33,279],[114,23],[17,206]],[[62125,66680],[-107,33],[-88,-117],[-89,76],[-4,-114],[-169,-191],[-61,-8],[12,419],[-36,-108],[-377,31],[2,112]],[[60703,66856],[-13,-648],[35,-1],[-14,-1011]],[[62221,58265],[33,122],[141,64],[42,149],[172,42],[414,-31]],[[63023,58611],[109,-9],[-121,281],[-55,347],[14,87]],[[62970,59317],[-26,340],[-282,9]],[[62088,59695],[-24,-1312],[158,-62],[-1,-56]],[[85928,49404],[-18,-122],[72,-153],[-34,252]],[[53793,75001],[1158,-307]],[[54951,74694],[9,251],[-54,228],[58,134],[-44,312],[62,30],[22,282],[74,36],[163,364],[6,247]],[[55247,76578],[-706,203],[9,56],[-172,89]],[[54378,76926],[-37,-111],[75,-79],[16,-238],[-48,-146],[-59,216],[-37,-80]],[[54288,76488],[8,-231],[-178,-78],[7,-212],[-202,-125],[26,-332],[-110,-17],[44,-114],[-90,-378]],[[65897,55221],[198,70],[123,-105],[172,-67]],[[66425,55815],[-442,58],[-100,-36]],[[74763,58113],[139,-210],[125,2],[-42,-116],[145,-33],[75,98],[99,-1],[88,-198]],[[75714,58819],[-190,70],[-83,168],[-99,48],[-108,244]],[[75234,59349],[-15,-9]],[[75219,59340],[33,-101],[-136,-80],[17,-147],[-148,78],[-67,-165],[-30,50],[-110,-109]],[[66756,58520],[68,-15],[-12,-204],[217,-22],[-3,-141]],[[67026,58138],[560,-55],[3,99]],[[67700,59228],[3,112]],[[67037,56785],[762,-92]],[[67799,56693],[-5,206],[139,304]],[[67026,58138],[-37,-1348]],[[90705,27498],[56,-148],[113,-4],[44,248],[-36,119],[188,-72],[39,131],[157,-4],[33,-373],[59,-3],[-21,146],[60,61],[287,-206],[38,166],[138,-245],[103,-97]],[[91963,27217],[-34,258],[112,40],[103,-47],[71,491]],[[92215,27959],[-589,244]],[[91626,28203],[-390,162],[1,132],[-76,54],[-16,-148],[-308,124]],[[90837,28527],[-71,26]],[[58768,46434],[-163,-62],[17,139],[-62,149],[-171,79],[2,230],[-105,96],[-13,-129],[-127,-121]],[[50636,82547],[118,-163]],[[50754,82384],[625,1094]],[[50769,83984],[-169,-128],[-225,-456],[-60,-227]],[[50315,83173],[-34,-99],[195,-228],[160,-299]],[[89383,22360],[234,-152],[-57,-255],[286,-159],[42,147],[77,-119]],[[90385,23722],[-605,204]],[[89780,23926],[-99,-793],[-110,-197],[-28,-140],[-107,50],[7,191],[-79,-26],[-19,-166],[38,-485]],[[14261,16225],[40,37],[953,463],[1081,505]],[[16335,17230],[-66,77],[10,138],[-111,730]],[[16168,18175],[-668,-303],[-48,320],[-245,-114],[-49,320],[-180,-86]],[[14978,18312],[-183,-96],[-928,-442]],[[78293,52063],[64,-142],[155,-147],[26,-151]],[[79421,51402],[-95,101],[50,153],[-98,160],[104,15],[11,133],[-139,173],[-172,136],[53,84]],[[79135,52357],[-67,111],[-1,-125],[-165,156],[-165,265],[-59,-156],[-118,103]],[[78560,52711],[-111,-343],[-130,-197],[-26,-108]],[[84030,42059],[395,387]],[[84252,42970],[-55,154]],[[84197,43124],[-107,-121],[-61,45],[-101,-60]],[[83928,42988],[102,-929]],[[95905,97669],[162,-93]],[[96067,97576],[52,120],[-23,241]],[[77791,78931],[226,-53]],[[78017,78878],[19,292],[65,258],[123,-16],[180,67],[11,59],[216,228],[123,311],[67,53]],[[78821,80130],[-8,234],[-50,23]],[[78010,80571],[-64,16],[-19,-249],[-34,8],[-102,-1415]],[[54712,54277],[-755,-7]],[[67579,49898],[-273,54]],[[50137,13763],[-149,-12],[-64,-322],[-94,69],[-71,-82],[-27,-222],[-282,249],[-10,-240],[-105,113],[6,-325],[-189,-191],[15,-815]],[[54928,41940],[284,4]],[[55212,41944],[3,383],[40,1],[-1,837]],[[55254,43165],[-623,-3]],[[54631,43162],[3,-103],[-168,-120],[48,-46],[-114,-520],[-12,-138],[64,-47],[-17,-175],[-63,151]],[[83126,53037],[13,-2043]],[[83139,50994],[167,68],[43,-89],[126,69]],[[83475,51042],[25,159],[140,-61],[50,94],[75,-202],[47,236],[-31,78],[160,193],[-13,136],[59,216],[-34,100],[91,143]],[[84044,52134],[-85,250],[1,389]],[[83960,52773],[-107,35]],[[83264,52993],[-138,44]],[[85687,42793],[103,102],[64,212]],[[85854,43107],[-112,24]],[[85742,43131],[-79,-99]],[[85618,42978],[69,-185]],[[15168,1954],[22,-124],[83,180],[-101,38],[-4,-94]],[[15459,1720],[1306,650],[930,444],[9,-58],[222,103]],[[17367,4013],[-1375,-662],[-585,-288]],[[15407,3063],[-26,-126],[-117,-209],[-42,-184],[25,-119],[-164,30],[-42,-288],[59,-90],[105,5],[59,81],[19,172],[95,32],[10,-365],[88,23],[45,-94],[-62,-211]],[[15067,1766],[51,-72],[37,176],[-90,66],[2,-170]],[[40665,17743],[9,-165],[190,32],[6,-110]],[[41709,17794],[-18,382]],[[41642,19166],[-62,1273]],[[41580,20439],[-10,241]],[[41570,20680],[-139,-20],[17,-331],[-391,-65],[17,-321],[-191,-29],[16,-309],[-562,-92]],[[86425,49709],[109,-322],[76,-93],[67,-210]],[[86677,49084],[56,36]],[[86733,49120],[73,98],[182,-47],[114,147],[57,-10],[27,-210],[50,206]],[[86997,49964],[-154,258]],[[86843,50222],[-68,-408],[-195,19],[-155,-124]],[[20476,12054],[-37,115],[-134,983],[186,76],[-45,324],[186,78],[-112,765]],[[20520,14395],[-1474,-614]],[[19046,13781],[82,-73],[10,-437],[-71,-239]],[[74276,63625],[126,-25],[9,118],[581,-122]],[[74992,63596],[12,176]],[[75004,63772],[40,570]],[[75044,64342],[-166,72],[-4,207],[-96,77],[9,136]],[[74787,64834],[-433,72]],[[53500,22052],[762,0]],[[54262,22052],[1,666],[16,0],[2,662]],[[54281,23380],[-571,2]],[[53710,23382],[-192,-3],[1,-661],[-18,0]],[[53501,22718],[-1,-666]],[[53952,54608],[1,1158]],[[53953,55766],[-64,1]],[[53889,55767],[-913,-4]],[[52976,55763],[5,-1173]],[[56215,43669],[4,-1005]],[[56219,42664],[638,-10]],[[56857,42654],[6,955]],[[56219,44004],[-4,-335]],[[83611,43932],[77,-255],[31,-255],[-61,-3],[11,-233]],[[83669,43186],[246,-120],[13,-78]],[[84197,43124],[-90,292],[30,71],[-103,141]],[[83820,44113],[-18,-77],[-191,-104]],[[47368,83913],[786,62],[46,41],[-21,187],[111,13],[239,-479]],[[48529,83737],[-25,1681]],[[48493,86030],[-1171,-70]],[[55772,44858],[458,-7]],[[56242,45967],[-843,6]],[[55399,45973],[-9,-156],[72,-14],[18,-148]],[[41570,20680],[-118,2549]],[[69740,24345],[270,-53]],[[70010,24292],[74,10],[68,-479],[-4,-324],[66,-78],[-17,555],[-71,159],[-13,195],[79,30],[29,-219],[76,-231]],[[70550,25200],[-753,142]],[[69797,25342],[-57,-997]],[[67524,62543],[292,-42]],[[67991,64535],[-310,43]],[[67681,64578],[-52,-1064],[-65,-49]],[[67564,63465],[-40,-922]],[[30276,65365],[244,-3056]],[[81636,39782],[106,-340],[46,21],[143,-731]],[[81597,41044],[-25,-126],[31,-264],[-98,-100],[13,-188],[118,-584]],[[84786,28601],[326,-133],[4,33],[302,-130]],[[85418,28371],[118,806]],[[85536,29177],[-63,112],[100,47],[18,257],[-169,-23],[-102,37],[24,209],[-202,-1]],[[85142,29815],[-129,42]],[[85013,29857],[-114,36],[-32,-346],[-94,-641]],[[85587,26109],[48,95],[23,242],[93,-16],[171,1097]],[[85922,27527],[-586,294]],[[85336,27821],[-165,-247],[-145,67],[-92,-597],[-45,22],[-53,-365],[39,-31],[-66,-449]],[[84261,61467],[890,1108]],[[85151,62575],[232,291]],[[85383,62866],[-288,292],[-154,271],[-182,463],[-88,292]],[[84281,63783],[-134,-266],[-70,-402],[-60,-12],[-104,-241],[43,-243],[90,-180],[-22,-78],[63,-189],[8,-172],[90,-204],[-7,-124]],[[32426,6852],[762,201],[1051,262]],[[34239,7315],[-50,319],[-106,1294],[46,175],[-22,272],[-47,-12],[-50,209],[-32,379],[-48,-12],[4,277],[-27,325]],[[33907,10541],[-283,-64],[27,-332],[-174,-35],[27,-326],[-1139,-300],[-29,324],[-190,-51]],[[88640,26709],[555,-420]],[[89195,26289],[92,-199],[112,96]],[[89399,26186],[0,353],[-42,335],[36,172],[3,403]],[[74589,66156],[175,-363],[16,-323],[110,-321],[-103,-315]],[[75044,64342],[20,292],[222,163],[84,-1]],[[75370,64796],[-122,114],[-14,117],[-144,79],[-17,116]],[[75025,66434],[-194,39],[25,373]],[[74856,66846],[-195,142],[-65,101]],[[74157,67145],[59,-255]],[[59923,25954],[756,-54]],[[60679,25900],[9,333]],[[60688,26233],[-548,41],[-43,43],[-69,692]],[[60028,27009],[-252,-163]],[[59776,26846],[-98,-170],[-25,-154]],[[69626,70428],[186,-32],[10,167],[548,-110]],[[70395,70864],[-33,426],[-51,202],[-41,323],[-569,113],[37,669],[-94,16]],[[69644,72613],[-94,16],[-35,-668]],[[69515,71961],[-36,-665],[94,-15],[-30,-670],[92,-16],[-9,-167]],[[17302,85295],[-253,44],[-101,-100]],[[78022,67280],[132,-112],[52,-120],[148,-137],[247,142]],[[78601,67053],[-245,464],[28,193],[-153,12]],[[78231,67722],[-156,-150],[-35,-238]],[[78040,67334],[-18,-54]],[[43332,74138],[798,81]],[[44071,75891],[-947,-97]],[[31811,25919],[-174,2063]],[[30088,27426],[165,-1829]],[[38713,44357],[1,-8]],[[38122,44503],[41,-694]],[[38163,43809],[37,-637]],[[38200,43172],[417,67]],[[38617,43239],[0,0]],[[38617,43239],[81,69],[76,-44]],[[38774,43264],[-27,473]],[[38747,43737],[-30,537],[-99,77],[93,38]],[[38707,44602],[-77,263],[-87,79],[11,143],[-85,90],[-2,177],[-190,555],[-134,290]],[[38141,46199],[-113,-19],[94,-1677]],[[34518,45164],[-147,2104]],[[32888,46945],[46,-616],[423,-206],[98,-263],[212,-265],[127,24],[86,-55],[146,174],[140,-141],[101,-191],[251,-242]],[[75150,66409],[83,204],[-61,173],[11,437],[-106,21],[21,320]],[[75098,67564],[-61,13]],[[75037,67577],[-48,-315],[30,-110],[-163,-306]],[[70347,47788],[60,1019]],[[69780,49025],[-30,-505]],[[69750,48520],[-36,-615]],[[92802,30777],[153,-206],[-100,193],[-53,13]],[[92557,31176],[81,-93],[-46,166],[-35,-73]],[[90647,33032],[7,-96],[140,45],[-9,-130],[91,70],[210,-3],[116,-144],[-7,-145],[158,-52],[429,-197],[213,-158],[214,-373],[149,-415],[176,-143],[-89,309],[116,134],[98,-5],[51,-106],[142,183],[53,-140],[120,-162],[-1,-93],[148,-89],[-1,98],[-339,472],[-392,593],[-539,653],[-410,554],[-227,238],[-153,105],[-38,-33],[-145,154]],[[84680,23729],[64,-193],[-5,156],[-59,37]],[[85951,21910],[-100,488],[108,72],[4,252],[-73,34],[30,147],[-96,22],[-195,437],[-129,28],[27,351],[101,-23],[65,366]],[[85037,24361],[-101,-449],[-124,-89],[40,-185],[76,-62],[22,101],[100,-175],[-31,-132],[-128,-112],[-112,90],[4,-152],[-93,-84],[-84,29],[-23,-261],[44,-403],[101,-55],[109,-181],[-15,-156],[216,-341],[50,0],[141,-290]],[[84549,23714],[49,-155],[55,-2],[-104,157]],[[56259,50372],[9,1269]],[[56268,51641],[1,89]],[[56269,51730],[-796,14]],[[78201,58617],[41,-211],[110,-61]],[[78352,58345],[36,30],[189,-106],[59,-90],[70,83],[214,-120],[22,-133]],[[78942,58009],[111,-179],[119,99]],[[79171,59488],[-189,35]],[[78982,59523],[-168,31]],[[78233,58900],[-50,-182],[18,-101]],[[88018,33913],[-27,-79],[145,-249],[67,-242]],[[88203,33343],[408,565]],[[88611,33908],[-78,453],[-56,86]],[[23323,44634],[1680,546],[892,276]],[[25895,45456],[-29,236]],[[25794,47092],[-1311,-413],[-1337,-437]],[[78473,52849],[283,471],[191,556],[22,-22]],[[78969,53854],[-63,119]],[[78595,54046],[-167,35],[-13,89],[-366,93]],[[77880,54302],[-88,22]],[[77690,53908],[168,-253],[198,-189],[-20,-139],[204,-225],[66,42],[167,-295]],[[72823,65743],[8,201],[-185,89],[7,111],[93,-16],[10,168],[-87,128],[29,478],[-176,221],[7,169],[-94,17]],[[72435,67309],[-4,-113],[-363,64],[-52,-48],[-67,-267],[-175,10]],[[76714,65862],[196,-185],[12,-110]],[[76922,65567],[309,172],[121,-94],[103,61]],[[77455,65706],[90,105],[-89,335],[78,333],[-43,90]],[[77491,66569],[-239,501]],[[77252,67070],[-155,-210],[-92,-231]],[[79311,39083],[182,-70]],[[79493,39013],[84,914]],[[79577,39927],[-277,-23]],[[79300,39904],[71,-317],[17,-223],[-77,-281]],[[13698,92719],[-385,273],[-159,-271],[41,-260],[-118,168],[-46,221],[50,293],[-82,115],[-65,-54],[-98,-432],[-136,-284],[-80,191],[-50,-152],[-101,-107],[10,-156],[-300,261]],[[12139,92853],[20,-148],[157,-124],[-97,298],[-80,-26]],[[12163,92539],[-114,95]],[[22681,62376],[1051,329],[790,700],[84,-204],[94,-103],[83,-263],[766,414],[412,119]],[[68796,48606],[113,-15],[49,102],[70,-95],[62,77]],[[69090,48675],[58,1085]],[[69148,49760],[-384,65],[-34,-50]],[[68730,49775],[-27,-521],[-154,48],[-12,-234],[-99,-98],[-15,-261]],[[72291,45017],[-21,1399]],[[72269,46488],[-109,83]],[[72160,46571],[-408,83]],[[49643,52839],[1132,40]],[[50762,54220],[-940,-27]],[[49711,45758],[933,40]],[[50637,46803],[-5,337]],[[50632,47140],[-946,-41]],[[49686,47099],[25,-1341]],[[47760,50690],[23,1],[-13,675]],[[46636,51619],[25,-1008]],[[53040,48542],[-1,168],[189,3],[0,335],[63,1]],[[52307,49537],[9,-782],[63,1],[1,-224]],[[57812,20456],[9,659],[-131,4],[21,945]],[[57726,22734],[-383,13]],[[57322,21745],[-16,-612],[-63,0],[-9,-661]],[[57234,20472],[17,-332]],[[66942,64504],[350,-48],[7,168]],[[67299,64624],[63,1446]],[[67362,66070],[-316,41],[2,57]],[[66857,66192],[-49,-1113]],[[65169,64548],[95,-11]],[[65264,64537],[328,-38],[97,120],[193,-35],[148,88]],[[66048,65119],[36,838]],[[65608,66011],[-4,-111],[-382,39]],[[65222,65939],[-53,-1391]],[[63687,75373],[29,-227],[-28,-781]],[[63688,74365],[904,-97]],[[64592,74268],[-30,73],[238,647],[-47,58],[21,164],[75,33],[-16,142]],[[64833,75385],[-224,159]],[[66698,76394],[378,-46]],[[67076,76348],[190,-26]],[[67266,76322],[74,1665],[12,0]],[[67352,77987],[15,335],[-95,11]],[[66797,78397],[-30,-345],[-69,-1658]],[[52201,12776],[-7,77]],[[88063,37461],[180,281]],[[88243,37742],[87,121],[-16,248],[90,9]],[[88404,38120],[-188,138],[-115,230]],[[92929,28851],[516,-263],[16,-109],[89,-40]],[[93550,28439],[55,135],[-23,143],[-95,31],[84,95]],[[93571,28843],[-83,116],[-8,129],[-479,241]],[[93001,29329],[-21,-162]],[[92980,29167],[-51,-316]],[[59911,36802],[759,-51]],[[52986,37466],[181,2],[-2,224]],[[52408,38570],[0,-12]],[[82885,41371],[-91,311],[-83,177],[-66,392],[-51,24],[-124,394]],[[82470,42669],[-286,-204],[-236,9]],[[61387,63073],[177,-140],[112,129],[99,0],[-4,-255],[212,-10]],[[62195,64809],[-389,15],[7,337],[-149,6]],[[28689,65790],[95,152],[45,193],[95,37],[39,-130],[218,-187],[43,-105],[138,-5],[68,-99]],[[29743,70488],[-208,-44],[-1723,-442],[-513,-139]],[[37571,40839],[76,59],[-26,201],[65,251],[101,155],[20,203],[46,56]],[[37853,41764],[-54,219],[7,169],[62,131],[-37,309],[-94,103],[-22,282],[27,39]],[[37742,43016],[-50,150],[7,155]],[[37699,43321],[-87,167],[-149,48],[-105,-63],[-7,231],[-77,134]],[[37274,43838],[-123,35],[-95,-175],[-23,-319],[-70,-162],[-66,-16],[-118,-292],[-238,-42],[-63,-55]],[[36478,42812],[-319,-61]],[[36159,42751],[2,-299],[92,-1300],[-34,-7],[27,-397]],[[35081,49442],[72,-1068],[1278,261]],[[36431,48635],[289,50],[39,-122],[79,55]],[[36838,48618],[182,443],[15,100],[124,220]],[[37159,49381],[178,493],[92,549],[63,232],[47,-5],[89,245]],[[37628,50895],[66,183],[-70,377]],[[35033,50175],[48,-733]],[[82864,87743],[521,-140]],[[83385,87603],[183,-55],[32,317],[188,-52]],[[83399,89262],[-112,-126],[-24,-162],[-110,-144],[17,-77],[-131,-41],[-96,-100],[-21,-130],[-127,-128],[-30,-142],[114,-298],[-15,-171]],[[75036,62667],[-98,100],[8,112],[-146,-15],[-14,71]],[[74786,62935],[-42,64],[-506,105]],[[74238,63104],[-9,-131]],[[78863,73997],[190,-44],[41,188],[119,-28]],[[79213,74113],[68,185],[16,206],[166,287],[57,-9]],[[79520,74782],[11,123],[147,45],[28,327],[166,244]],[[79858,77238],[-385,46]],[[79473,77284],[-33,-113],[-74,-783],[-111,29],[-36,-547],[-55,14],[-151,-177],[-199,-591]],[[60109,46491],[374,2],[624,-41]],[[60471,47562],[-6,-678],[-355,-1]],[[60110,46883],[-1,-392]],[[35838,58196],[-23,288]],[[35815,58484],[-4,63]],[[35811,58547],[130,68],[-75,180],[-79,71]],[[35787,58866],[-48,-149],[-197,-179],[32,-505],[146,57],[122,-31]],[[32677,12980],[80,26],[211,-191],[41,25],[248,-185],[60,-401],[12,-239],[166,78],[76,-104],[207,36]],[[33778,12025],[161,112],[178,-103],[67,-117],[205,96],[105,-51],[179,78],[59,234]],[[47984,33466],[223,66],[201,-197],[256,-108]],[[48646,35983],[-693,-36]],[[43763,10821],[957,115]],[[44720,10936],[383,40],[-24,661],[76,7],[-48,1320],[75,8],[-24,664]],[[44382,13890],[-259,-115],[-113,-179]],[[44010,13596],[4,-296],[132,-240],[23,-110],[-74,-190],[-88,-28],[11,-97],[-138,-87],[0,-132],[-99,11]],[[68143,51217],[59,-2],[3,257],[111,-54],[16,-190],[-68,-169],[34,-157],[167,231],[97,-150]],[[68562,50983],[122,2],[140,122]],[[68824,51107],[-19,310],[97,129],[-80,168],[-118,86],[-18,162]],[[68544,52124],[-409,98]],[[92756,27804],[468,-249]],[[93644,28322],[-58,106]],[[93586,28428],[-36,11]],[[92929,28851],[-173,-1047]],[[74381,55136],[59,-13]],[[74857,55042],[13,110],[145,484],[32,23]],[[75047,55659],[-73,90],[-12,403],[-45,118]],[[51182,93040],[60,2]],[[51242,93042],[-53,474],[-16,689],[17,327],[82,700],[62,386]],[[51334,95618],[-49,-1]],[[51285,95617],[-141,-763],[-21,-347],[10,-849],[49,-618]],[[49983,93265],[68,-89],[218,-33],[112,-148],[112,71],[179,-54]],[[50672,93012],[14,148],[214,51],[138,-116],[55,20],[-52,1027],[-50,673],[-24,10],[19,367],[48,420]],[[51034,95612],[-833,-18],[-189,-59]],[[50012,95535],[-55,-17],[7,-627]],[[82653,28401],[-19,-163],[53,-171],[-15,-162]],[[83208,27895],[87,277],[-61,67],[39,343],[-37,12],[59,337],[177,-54],[34,354]],[[83506,29231],[-269,79],[17,172],[-93,32],[23,242]],[[82664,29733],[-40,-213],[77,-165],[31,-216],[-79,-738]],[[76851,47482],[165,-153],[133,-72],[20,-525]],[[77281,46668],[314,377]],[[77595,47045],[46,379]],[[77641,47424],[-109,146],[-99,43],[-113,459]],[[77320,48072],[-63,-27],[-54,-342],[-46,109],[-306,-330]],[[11997,33802],[74,299],[-126,221],[-18,220],[-58,147],[4,176],[72,98],[0,119],[168,479],[-12,96],[92,217],[-17,107],[79,161]],[[12255,36142],[-143,100],[-16,108],[-256,-94],[-88,192],[-15,137],[-169,262],[-273,8],[-71,-90],[-33,78]],[[11191,36843],[-5,-43],[-453,-211]],[[10811,36306],[70,-229],[25,-228],[50,-86],[-224,-97],[82,-511],[101,-57],[-110,-453]],[[37274,43838],[-9,99],[214,181],[22,102],[-100,161]],[[37401,44381],[14,106],[-176,284],[-96,55],[-111,276],[-186,-104]],[[36846,44998],[-119,-22]],[[36727,44976],[-54,-351],[19,-275],[64,37],[6,-174],[64,-102],[-4,-180],[-71,-47],[-162,-400],[-35,14],[-87,-453],[11,-233]],[[77069,63544],[11,-289],[-20,-264],[56,-320]],[[77116,62671],[107,36]],[[77671,63340],[-241,218],[-104,171],[-76,-75],[-103,65]],[[62512,41323],[-45,-1668]],[[69112,44955],[427,-59]],[[69539,44896],[89,-16],[30,473]],[[69658,45353],[-90,58],[41,653]],[[68984,46160],[-35,-671],[187,-29],[-24,-505]],[[69090,48675],[254,-5]],[[69344,48670],[81,24],[61,-130],[264,-44]],[[69633,49785],[-384,70]],[[69249,49855],[-95,15],[-6,-110]],[[48717,49069],[16,2]],[[48733,49071],[-24,1344]],[[48709,50415],[-943,-61]],[[59911,36802],[-38,-1672]],[[74113,53765],[60,-168],[-31,-238],[67,-169],[-29,-187]],[[74222,53794],[-109,-29]],[[48702,51759],[187,9],[19,-1006]],[[48908,50762],[740,38]],[[49648,50800],[7,340]],[[49655,51140],[-19,1344]],[[59064,77332],[457,-8],[20,52]],[[59541,77376],[193,101],[2,110],[96,134],[38,1388]],[[59870,79109],[2,55],[-292,7]],[[59580,79171],[-333,0],[-528,30],[-79,90],[-85,-74],[-67,44]],[[58488,79261],[-18,-74],[75,-199],[-81,-144],[3,-102],[91,-78],[-59,-224],[-17,-393]],[[72854,31434],[374,-98]],[[73228,31336],[375,-94]],[[73603,31242],[136,1335]],[[59503,29245],[28,1280]],[[58617,30582],[-39,3]],[[65876,76495],[252,-31]],[[66128,76464],[15,335],[192,-24],[50,1287]],[[66385,78062],[-142,18],[3,106],[-95,9],[-52,-113],[-93,58],[-192,20]],[[65814,78160],[-64,-1651]],[[63542,69675],[294,-31],[-8,-225],[186,-20]],[[64014,69399],[7,239],[78,115],[86,-26],[-3,-138],[57,-110]],[[64239,69479],[24,643],[-47,164],[-21,-119],[-111,126],[8,133],[94,63],[33,118]],[[64219,70607],[-156,22],[10,329],[-379,41]],[[63694,70999],[-24,-668],[-80,9]],[[63590,70340],[26,-410],[-100,-110],[26,-145]],[[50931,34743],[563,14]],[[51494,34757],[190,4],[-3,334]],[[51672,36099],[-756,-17]],[[75119,50174],[182,-65],[40,-128]],[[75341,49981],[118,139],[81,3],[121,208],[121,129]],[[75818,50619],[-141,14],[-111,-73],[-44,46],[-51,246],[-112,-5]],[[68070,53235],[-16,114]],[[68323,54089],[-28,498],[-35,81]],[[68019,54867],[-191,-388],[-136,-395],[-93,-6]],[[44579,24301],[-74,2013]],[[44505,26314],[-1,2]],[[72779,51430],[-3,-184]],[[72776,51246],[471,-229]],[[73247,51017],[73,45],[96,226]],[[73416,51288],[4,64],[-306,332]],[[72785,51764],[-6,-334]],[[77620,56776],[68,-134],[57,-268]],[[78319,57202],[-76,362],[-134,155]],[[78109,57719],[-119,-146],[-70,-262],[-81,32]],[[77839,57343],[-105,-292],[-74,-19],[13,-154],[-53,-102]],[[70592,71084],[56,363],[-9,121],[104,315],[71,89],[-31,99],[66,219]],[[70742,73438],[-501,84],[-30,-144],[-85,-47],[-187,-345],[-75,19],[-58,-156],[-152,-72]],[[69654,72777],[-10,-164]],[[74885,68263],[76,-113],[146,43],[228,-46]],[[75349,68911],[-401,76],[-61,102]],[[71234,75376],[20,334],[49,-8],[28,254],[-60,102],[37,585]],[[71308,76643],[-121,58],[-19,-301],[-1232,205]],[[69936,76605],[115,-238],[101,-339],[157,-248],[61,-243],[32,-476],[141,-161],[1,-158],[114,-18],[148,-159]],[[60038,62847],[21,223],[-89,235],[99,158]],[[59133,64217],[-381,15]],[[58752,64232],[-7,-339],[-32,-54],[216,-400],[38,0],[93,-229],[114,-172]],[[74786,62935],[72,353],[112,-16],[22,324]],[[74276,63625],[-38,-521]],[[77103,67756],[16,-283],[180,-240],[-47,-163]],[[77491,66569],[59,70],[240,-42]],[[77790,66597],[55,49],[118,588],[59,46]],[[78040,67334],[-54,13],[-126,193],[-44,236],[-200,272],[-79,19]],[[77537,68067],[-80,138],[-42,-118],[19,-269],[-331,-62]],[[74859,71951],[52,-11],[49,153],[66,-10],[84,196],[176,-35]],[[75308,72884],[-5,188],[-270,53]],[[75033,73125],[-104,21]],[[74929,73146],[-7,-418],[-63,-777]],[[70741,41778],[-39,-611]],[[71171,41074],[77,1158]],[[71280,42736],[-475,98]],[[70805,42834],[-64,-1056]],[[69344,48670],[-64,-1199],[31,-6],[-18,-333]],[[45877,52580],[-753,-67]],[[45124,52513],[11,-358],[-24,-2],[53,-1678]],[[54614,46423],[656,-8]],[[55270,46415],[7,1120],[-10,328]],[[55267,47863],[-165,-8],[-95,59],[-162,-145],[-109,52]],[[54736,47821],[-163,-30],[11,-584]],[[69397,39337],[38,672]],[[69435,40009],[-277,46],[-24,283],[26,390]],[[68585,40148],[-24,-387],[187,-32],[-18,-285],[93,-16]],[[73413,52828],[252,-509],[99,84]],[[74113,53765],[-98,70],[-258,364]],[[73278,53792],[-134,-166],[-10,-266]],[[62396,44387],[-26,-999]],[[60725,74232],[-11,-504]],[[60714,73728],[514,-35]],[[61228,73693],[75,-4],[-17,185],[52,45],[1,193],[128,-21],[31,65]],[[61498,74156],[55,227],[-98,104],[46,97],[23,262]],[[61524,74846],[-23,171],[-187,15]],[[61314,75032],[-571,40]],[[60743,75072],[-18,-840]],[[58132,49660],[-944,-5]],[[57188,49655],[-94,-2],[-20,-336],[9,-685]],[[63990,52916],[492,-61]],[[64482,52855],[58,1823]],[[64540,54678],[-161,14],[11,281],[-62,62],[-201,18]],[[64127,55053],[-4,-173],[-196,19],[-21,-881]],[[62547,54999],[94,-15],[3,169],[322,-18]],[[62966,55135],[86,-5],[4,190],[101,276]],[[63157,55596],[35,165],[7,275]],[[63199,56036],[-407,34],[-384,-7]],[[62408,56063],[-190,9],[-3,-225]],[[52391,40139],[4,0]],[[53127,40264],[-3,895]],[[53122,42165],[-745,-12]],[[88777,34599],[252,-254],[99,201],[9,188],[88,-131]],[[89225,34603],[96,-12],[-10,191],[-53,101]],[[89258,34883],[-82,191],[141,194],[-166,374],[-35,190]],[[89116,35832],[-63,-43],[-102,103],[-67,-168]],[[81848,28647],[614,-212],[191,-34]],[[82235,29876],[-245,88],[-6,-66]],[[81984,29898],[-98,-923],[-40,12],[-32,-330],[34,-10]],[[84152,29373],[186,-69],[12,81],[155,-54],[-44,-293]],[[85013,29857],[-14,198],[-150,-2],[-22,-172],[-363,154],[4,33]],[[84468,30068],[-211,99],[-105,-794]],[[73742,40142],[0,-202],[186,-55]],[[73928,39885],[2,26],[598,-47],[2,20]],[[74530,39884],[28,1062]],[[74558,40946],[-391,27],[-2,-58],[-384,34]],[[74530,39884],[167,-43]],[[75213,41129],[11,138],[-60,11]],[[75164,41278],[-493,100]],[[74671,41378],[-18,-439],[-95,7]],[[82093,36248],[78,686]],[[82020,38269],[-78,-70],[-53,171],[-99,71],[-72,-139],[-293,-69],[-117,18],[-94,-64],[-23,-186]],[[71754,52444],[-40,474],[56,121],[-8,334]],[[71665,53440],[-275,134],[-263,-24]],[[70913,52935],[129,-85],[8,-116],[88,-69],[-62,-203]],[[69348,52331],[139,-293],[35,22],[181,-225],[-92,-121],[68,-124]],[[70113,52189],[-119,91],[123,564]],[[70117,52844],[-235,393],[-102,-78],[-11,184],[-108,288]],[[69661,53631],[-156,-197],[-16,-179],[-87,-167],[-71,-15],[-48,172],[-58,-20],[63,-167],[-16,-153]],[[47070,22407],[1097,87]],[[48167,22494],[15,1]],[[47194,22884],[-73,-156],[-81,2],[-63,-107],[93,-216]],[[75881,56425],[21,71],[150,-29],[178,48],[84,158]],[[75561,57028],[-79,-195],[77,32]],[[73359,47962],[118,-86],[6,-134]],[[73483,47742],[51,41],[73,-137],[324,-152]],[[73931,47494],[-10,107],[91,-16]],[[74012,47585],[-22,222],[149,118]],[[74008,48295],[-130,249],[-158,178],[-110,2]],[[76568,58835],[-90,-18],[-128,260],[-59,3],[-9,163],[48,103],[23,253]],[[76353,59599],[-162,60],[-104,123],[-320,152]],[[75767,59934],[-21,-169],[106,-106],[40,-133],[-4,-224],[-41,40],[-220,-29],[-131,39],[-195,-35],[-67,32]],[[54505,71330],[653,-14]],[[55445,71116],[2,426]],[[55452,72821],[-21,98],[-73,-103],[-62,44],[-200,-184],[-227,16],[-232,-311]],[[54562,72253],[-57,-923]],[[86712,53015],[49,-901],[87,-64],[-56,-132],[-135,-63]],[[86657,51855],[428,-140]],[[87085,51715],[30,77],[-57,220],[60,250],[209,74],[73,-19],[172,200]],[[87572,52517],[17,68]],[[87589,52585],[-34,144]],[[87555,52729],[-430,175],[-413,111]],[[56068,80779],[220,8]],[[55832,83116],[-33,-135],[24,-201],[-88,-81],[-128,-662]],[[55607,82037],[-135,-678]],[[70249,46406],[401,-77]],[[70650,46329],[4,55],[368,-88],[97,-125]],[[71047,47481],[-170,-99],[-67,59],[-119,-85],[-67,94],[-88,-66],[-150,104]],[[70264,46628],[-15,-222]],[[48709,50415],[-6,336],[205,11]],[[61205,81290],[98,-127],[71,-201],[116,40]],[[61490,81002],[66,29],[-19,131],[37,186],[-52,65],[67,87],[-64,215],[111,-32],[32,126],[-79,317]],[[53483,21053],[2,-332]],[[53500,22052],[2,-667],[-19,-332]],[[64849,72894],[-10,-149],[94,-170],[97,-54],[207,-416],[104,13]],[[65493,73506],[26,670]],[[65519,74176],[-927,92]],[[64592,74268],[-47,-395],[94,-141],[-32,-182],[50,-215],[192,-441]],[[63935,72573],[158,-170],[25,-103]],[[64118,72300],[11,328],[372,-36],[20,335],[328,-33]],[[63688,74365],[-40,-676]],[[83871,58163],[-4,-69]],[[83867,58094],[363,-264],[85,-142],[171,-83],[199,21]],[[84685,57626],[12,409],[-25,252],[63,316],[152,165],[171,264]],[[84349,59341],[-124,-267],[-164,-103]],[[84061,58971],[-125,-310],[-73,-305],[8,-193]],[[79248,55812],[70,-116],[58,-242],[-51,-142]],[[79325,55312],[98,-187],[79,-33],[-25,-285],[73,-74],[121,-7]],[[79671,54726],[100,-155],[34,-139],[50,64],[65,-128],[98,89],[44,136],[93,-138]],[[80155,54455],[197,240],[24,346]],[[73039,39511],[285,-66],[8,111],[188,-44],[5,56],[373,-88]],[[73898,39480],[30,405]],[[73066,40788],[-36,-8],[-89,-1248]],[[51860,62004],[3,-336]],[[51863,61668],[918,19]],[[52781,61687],[1,239]],[[52782,61926],[-54,33],[-126,-128],[-92,74],[-7,1949]],[[52503,63854],[-67,-174],[-129,69],[-80,-148]],[[52227,63601],[-154,217],[-114,-85],[-112,0]],[[53924,62360],[0,-335]],[[54400,61349],[653,-6],[4,998]],[[55057,62341],[-81,-132],[-108,123]],[[54868,62332],[-88,-18],[-22,134],[-432,346],[-67,-78],[-138,44],[-66,164],[-135,-31]],[[53920,62893],[4,-533]],[[12077,12732],[481,247],[20,126],[122,60],[56,259],[134,186]],[[12890,13610],[-9,225]],[[12442,14349],[-975,-508]],[[11467,13841],[-89,-48],[89,-511],[476,247],[134,-797]],[[87694,36209],[-87,-80]],[[87607,36129],[-694,-647]],[[86913,35482],[189,-300]],[[72072,52214],[215,-57],[174,157],[118,-198],[181,164]],[[72629,52707],[-38,156],[-200,140],[-56,220]],[[72335,53223],[-108,-102],[23,-107],[-173,-405],[-200,-228],[-7,-145]],[[71368,55230],[-53,-130],[-128,-159],[17,-91],[-50,-240],[-51,104],[-113,-235]],[[51297,81053],[-246,807],[-297,524]],[[50636,82547],[-863,-1301]],[[55607,82037],[-315,520],[-56,19],[-251,-332],[-122,29],[-24,-136],[-96,-102],[-75,133],[-155,133],[-248,45]],[[54265,82346],[-3,-595]],[[54262,81751],[0,-353],[-51,-1120]],[[43402,72460],[947,98]],[[76679,53123],[61,-137],[79,-29],[91,-166],[-22,-287],[246,-357]],[[77151,52117],[38,293],[148,361],[277,134]],[[77614,52905],[71,237],[-177,159]],[[76901,53748],[-212,-310]],[[83808,42484],[-10,-114],[93,50],[-55,227],[-28,-163]],[[76162,37590],[24,-6],[49,648],[80,121],[20,229],[64,-14],[58,654]],[[75989,39359],[-57,-608],[-163,33]],[[65519,74176],[126,-15],[19,127],[37,893]],[[65701,75181],[-189,44]],[[65106,75321],[-273,64]],[[59915,46887],[195,-4]],[[60322,49198],[-242,-133],[28,-91],[-91,-126]],[[60017,48848],[-27,-95],[44,-175],[-61,-35],[-108,-206],[-39,-183]],[[59721,47973],[-14,-106],[208,-980]],[[33907,10541],[-129,1484]],[[32046,12813],[9,-112],[-190,-51],[28,-298],[-142,-36],[-249,-351],[143,-346],[-637,-176]],[[31110,10361],[50,-543]],[[50125,40757],[230,-437],[96,-94],[148,-258],[191,-134],[97,-224]],[[35811,58547],[4,-63]],[[36774,58179],[-35,414]],[[35628,61612],[41,-673]],[[35669,60939],[13,-342],[105,-1731]],[[84685,57626],[38,-214],[71,-99]],[[85503,57578],[25,370],[26,45],[96,664],[-24,639],[125,82],[32,-56]],[[85783,59322],[-178,718]],[[52781,61687],[10,-680]],[[53924,62360],[-819,-4]],[[53105,62356],[2,-685],[-99,149],[-101,-99],[-27,62],[59,182],[-157,-39]],[[50209,57260],[1122,37]],[[51331,57297],[2,0]],[[51333,57297],[-13,1655]],[[51320,58952],[-378,-11]],[[50188,58914],[14,-1150]],[[75279,49260],[116,39]],[[75395,49299],[9,354],[-73,219],[10,109]],[[74858,49871],[-7,-311]],[[37498,57210],[833,141],[-10,167],[752,117]],[[39073,57635],[44,251],[-24,119],[65,231],[10,327],[46,94],[-38,180],[-93,189],[20,315]],[[51661,37438],[-753,-18]],[[51100,38764],[173,4],[-2,239]],[[14978,18312],[-138,938],[173,97],[-98,642],[361,182],[-48,319],[564,255],[-48,324],[183,83],[-47,322],[552,251]],[[14187,21015],[-1024,-488]],[[18175,29211],[904,364],[950,370]],[[20029,29945],[13,6]],[[20042,29951],[-487,3755]],[[19555,33706],[-174,1343],[-368,-142],[-145,403]],[[18868,35310],[75,-564],[-551,-252],[87,-652],[-1276,-515],[-559,-236],[55,-393],[-836,-358]],[[15863,32340],[-33,-14],[147,-1027],[40,19],[98,-672],[-30,-13],[90,-660],[221,-1506]],[[83564,31477],[1025,-362]],[[84589,31115],[61,-24]],[[84650,31091],[263,1498]],[[84913,32589],[-117,220],[-1020,390]],[[83776,33199],[-212,-1722]],[[70117,52844],[222,88],[40,154]],[[70095,54381],[-308,-167],[-169,-21]],[[69618,54193],[78,-88],[-21,-173],[-66,-1],[52,-300]],[[70425,49741],[109,149],[13,271],[174,186],[121,-30],[132,186],[58,-167]],[[73416,51288],[14,60],[340,410],[48,23]],[[75586,53520],[46,157]],[[75749,54548],[-123,27],[-230,303]],[[75396,54878],[-22,75],[-418,74]],[[72677,47445],[99,-161],[137,-114]],[[72913,47170],[46,387],[174,193],[111,266],[82,30]],[[87691,56578],[105,112],[363,-206],[-1,-400]],[[88158,56084],[192,-10],[85,209],[-83,402],[8,169],[-70,242],[-305,517],[-312,-217]],[[87569,54787],[40,-128],[8,-354],[38,-119]],[[87655,54186],[83,-344]],[[87738,53842],[35,25],[247,-124],[207,-234],[75,129]],[[88302,53638],[-12,123],[70,185],[-55,315],[39,336]],[[88344,54597],[-405,116]],[[87939,54713],[-359,126],[-11,-52]],[[79029,46458],[156,-372]],[[79185,46086],[69,-237]],[[79254,45849],[108,137],[21,118],[79,33],[101,254]],[[79563,46391],[117,79],[-135,287],[-488,725]],[[79057,47482],[-158,-776],[130,-248]],[[35430,22941],[1199,258],[75,29],[1268,259]],[[38341,23557],[-15,520],[-61,1120]],[[36150,24798],[-13,-132],[-132,-107],[-66,-197],[-141,-168],[-86,38],[-101,-151],[1,-191],[-116,-144],[28,-53],[-54,-260],[26,-135],[-66,-357]],[[96581,96469],[78,51]],[[96642,96605],[-57,159]],[[96585,96764],[-116,-19]],[[96469,96745],[-12,-232],[124,-44]],[[94724,97671],[73,-92]],[[94939,98045],[-177,-54],[-86,38]],[[87793,31500],[106,156],[93,247],[113,-27],[43,124],[233,-33]],[[88510,32183],[-87,79],[-103,313],[-23,390],[-132,401]],[[88165,33366],[-52,70],[-108,-200],[-133,15],[-6,-399],[-361,190]],[[87505,33042],[32,-377],[-80,-112],[133,-70],[4,-159],[90,-155],[109,-669]],[[72863,46650],[247,259]],[[73110,46909],[-200,88],[3,173]],[[72501,47093],[220,-172],[130,-19],[-32,-174],[44,-78]],[[83295,56995],[1,189],[150,225],[64,196],[158,100]],[[83668,57705],[-54,170],[146,165],[107,54]],[[83871,58163],[-45,44],[-231,-110],[-137,243],[-171,515]],[[82968,58482],[-82,-78],[-138,-394],[-182,-768]],[[83562,59573],[277,-67],[222,-535]],[[84546,60651],[-158,275],[17,113],[-70,85],[-33,286],[-41,57]],[[83465,60454],[-24,-29]],[[51363,81118],[254,255],[221,305],[104,798]],[[54953,78633],[887,-1275]],[[55840,77358],[-4,147],[97,43],[24,303],[70,87],[35,338]],[[56062,78276],[-178,404],[-486,843]],[[80212,53814],[111,-20]],[[80323,53794],[391,-105]],[[80714,53689],[300,-58]],[[80155,54455],[-29,-193],[64,-205],[22,-243]],[[42140,8880],[980,142],[637,81]],[[43757,9103],[-46,1051],[79,10],[-13,329]],[[42074,10258],[66,-1378]],[[97355,96634],[76,4],[87,142]],[[97518,96780],[-18,361]],[[97500,97141],[-16,41]],[[97484,97182],[-120,26]],[[97364,97208],[-26,-8]],[[81588,66643],[12,-18]],[[82770,68878],[-88,177],[-64,-52],[-81,123],[-28,-99],[-93,76]],[[71803,57444],[68,194],[159,22],[86,177]],[[72116,57837],[-22,173],[67,335],[-67,209]],[[71736,58589],[-12,-68],[-245,-356]],[[71479,58165],[-107,-465]],[[50894,76562],[617,-589]],[[88192,57545],[73,-130],[224,-151],[21,-256],[73,22],[43,206],[65,81],[113,-25],[-86,-220],[146,61],[49,241],[-92,301],[-104,80],[-107,506],[-13,244],[-116,-25],[-24,-262],[-74,-39],[38,263],[-97,60],[289,114],[99,-454],[158,-462],[127,-301],[217,-670],[67,41],[-144,333],[-344,927],[-133,531],[-41,304],[-49,-207],[-244,-99],[-167,44],[-233,139],[-337,284]],[[47161,76752],[120,40],[43,230],[141,-74],[-11,-112],[236,265],[149,-272],[65,65]],[[48113,76930],[-40,1993]],[[72758,35607],[26,339],[28,-5],[29,393],[70,95]],[[72911,36429],[16,222]],[[72177,36814],[-29,-398]],[[72148,36416],[-45,-634]],[[54133,85636],[50,-126]],[[54183,85510],[96,-173],[86,-64],[189,127],[143,-189],[55,-375],[169,-5],[71,-540]],[[54992,84291],[178,-74],[133,21],[16,150],[71,-10]],[[55390,84378],[-30,347],[340,997]],[[55700,85722],[-77,115],[-115,-58],[-11,289],[39,86],[75,-124]],[[55611,86030],[-25,173]],[[55586,86203],[-448,692],[-56,122],[-110,29],[-130,129]],[[78979,40097],[297,-75]],[[79276,40022],[-6,486]],[[79189,41247],[-693,122]],[[78496,41369],[-24,-320]],[[74317,44821],[56,80],[75,-170],[291,-517]],[[74739,44214],[364,-79]],[[75103,44135],[-2,430],[86,45],[2,206]],[[75189,44816],[-12,557]],[[75177,45373],[-369,226],[-104,17]],[[74704,45616],[-334,72],[-53,-867]],[[74375,35585],[36,453]],[[74475,36980],[24,334]],[[73749,37480],[-73,-942]],[[65814,27026],[332,-39]],[[66146,26987],[234,-30]],[[66447,28292],[-190,28]],[[66257,28320],[-7,-176],[-382,51]],[[65868,28195],[-54,-1169]],[[83989,36316],[354,-491],[110,-128]],[[84453,35697],[30,146]],[[84483,35843],[49,398],[111,-7]],[[84023,37685],[-165,108],[-107,-96],[104,-404],[-50,-208],[61,-265],[141,-325],[-18,-179]],[[46887,57076],[696,50]],[[47939,58803],[-10,584]],[[47929,59387],[-127,22],[-78,97],[-120,428],[-110,85],[-170,-80],[-158,-278],[7,-274],[-140,37],[-72,282],[-135,116]],[[46878,57437],[9,-361]],[[45907,28440],[28,2],[20,-664]],[[45955,27778],[1068,91]],[[47022,29604],[-28,-64],[-179,28],[-120,-67],[-70,-124],[-145,202],[-155,-60],[-235,-434],[-34,78],[-59,-155],[-108,22]],[[68398,56061],[93,-17]],[[68491,56044],[138,1026]],[[67799,56693],[28,-173],[-92,-519]],[[41114,67183],[38,-715],[47,-1120]],[[41199,65348],[1,-39]],[[41200,65309],[772,96]],[[95544,97750],[50,-85]],[[95594,97665],[44,-23]],[[95865,98344],[-90,54],[-84,-76],[-158,12]],[[95533,98334],[45,-470],[-34,-114]],[[46977,65136],[320,20],[18,-837]],[[48076,63991],[119,-138],[66,43],[-58,360],[39,206],[173,13],[13,96],[-92,26],[-17,118]],[[48319,64715],[33,184],[-144,2],[-110,355],[-22,412],[62,128],[-34,70]],[[48104,65866],[-86,-264],[-105,-27],[-106,-192],[-36,302],[-139,-80]],[[47632,65605],[-187,-90],[-39,159],[-173,-36],[-101,-162],[-155,-340]],[[78630,61167],[125,127],[35,149],[196,133],[122,177],[104,8]],[[79606,61895],[-79,337],[-33,20],[-79,350],[-176,288],[-61,405]],[[41580,20439],[1603,221]],[[43183,20660],[82,11]],[[78629,43997],[-41,146],[125,137],[47,269],[148,-23]],[[78908,44526],[-152,410],[-2,84]],[[78754,45020],[-100,100],[-193,-125],[-84,115]],[[78377,45110],[-95,-168],[16,-153],[-89,-57]],[[78209,44732],[225,-488],[195,-247]],[[65438,25746],[564,-56]],[[66002,25690],[85,-20],[59,1317]],[[65814,27026],[-526,74]],[[44722,20429],[22,-579]],[[44654,18215],[12,-329]],[[12473,9647],[106,15],[51,185],[-34,171],[76,181]],[[12446,11543],[-531,-250],[6,-37],[-367,-192]],[[11554,11064],[82,-454],[-13,-161],[102,-70],[34,-110],[40,-404],[-24,-441],[26,-34],[95,314],[64,81],[7,-125],[171,-4],[42,118],[94,-68],[67,47],[132,-106]],[[86077,35403],[106,-142],[-1,-322],[94,-295]],[[86913,35482],[-147,203],[-3,245],[-87,25],[-151,232],[-129,118],[-134,55],[-155,133]],[[85925,36326],[-315,-292]],[[84913,32589],[100,-9]],[[85013,32580],[185,660],[298,291],[245,25]],[[85741,33556],[-180,529],[-76,35]],[[85485,34120],[-155,-9]],[[85081,34329],[-107,0],[-2,240],[-260,166]],[[84712,34735],[-32,12],[-318,-480],[-47,12],[-344,-426],[-166,-414]],[[83805,33439],[-29,-240]],[[72825,58582],[39,73]],[[72864,58655],[-39,-73]],[[72116,57837],[133,-252],[91,-51],[359,126],[7,149],[86,36]],[[72792,57845],[54,246],[53,0],[-25,397],[-45,71]],[[72829,58559],[0,-111],[-164,130],[-203,-61],[-73,133],[-147,17]],[[60688,26233],[189,-14]],[[60877,26219],[35,1338],[-108,146],[-15,150],[77,85],[55,196],[-32,275]],[[60889,28409],[-144,-137],[-118,-240],[-158,-123],[-67,-106]],[[60402,27803],[-59,-157],[-39,-290],[-77,-178],[-199,-169]],[[94990,98121],[-47,306]],[[94943,98427],[-11,-57],[-159,-26],[-100,107]],[[94796,97072],[54,-330]],[[94850,96742],[189,63],[31,-61]],[[95070,96744],[48,103]],[[95118,96847],[12,-3]],[[95130,96844],[-36,245],[6,190]],[[95100,97279],[-273,-142]],[[94827,97137],[-31,-65]],[[43405,55211],[822,79]],[[45077,55362],[210,19]],[[45287,55381],[-17,576],[-15,0],[-41,1344]],[[43328,57107],[50,-1342],[27,-554]],[[85741,33556],[49,-147],[156,-64]],[[85790,35086],[-14,-296],[-99,-125],[-32,-201],[-84,-9],[-76,-335]],[[44704,20844],[3,0]],[[46981,21066],[19,2]],[[47000,21068],[164,298],[13,204],[91,421],[-17,130],[-139,79],[-42,207]],[[45455,22729],[-815,-85]],[[55247,76578],[123,84],[73,-52],[47,168],[82,79],[1,194],[66,-13],[116,173]],[[55755,77211],[85,147]],[[54333,78499],[-21,-161],[88,-107],[-37,-170],[43,-241],[127,-181],[-65,-218],[-37,-303],[-67,-15],[14,-177]],[[48300,76851],[118,196],[107,-26],[29,117],[149,13],[39,88],[30,-157],[77,152],[-5,199],[75,-109],[18,212],[110,-29],[-27,263],[66,94]],[[49086,77864],[-14,123],[108,169],[-73,120],[44,135],[80,-113],[44,161],[-52,42],[82,145]],[[86222,48289],[161,143],[137,47],[135,-25],[80,100]],[[86735,48554],[56,28],[45,396]],[[86836,48978],[-103,142]],[[86677,49084],[-89,-193],[-85,170],[-47,-146],[-62,53],[-256,19]],[[86138,48987],[9,-244]],[[83287,44893],[101,-558],[71,28],[152,-431]],[[83786,44643],[-45,273],[-77,179],[-8,186]],[[83622,45503],[-107,16],[-141,-111],[-32,-113],[-101,-21],[46,-381]],[[48236,32455],[-1062,-77]],[[47187,30872],[8,-334],[-26,-4],[23,-905]],[[38938,84455],[-82,-82],[-259,-105],[-306,-380],[-205,-532],[-140,-44],[-107,-218],[-120,-160],[-126,-276],[-31,-368],[-75,-198],[-111,-423],[10,-193],[-36,-194],[48,-228],[15,-359],[-116,-486],[-166,-370],[19,-106],[-57,-593],[-41,-139],[-103,-108]],[[25213,49281],[-370,-114],[-16,165]],[[24827,49332],[-232,-72],[-10,96],[-365,-145],[19,-178],[-375,-121],[35,-339],[-192,-62],[-6,52],[-788,-260]],[[55868,75597],[902,-16]],[[56770,75581],[55,172],[16,357],[35,200]],[[57028,77951],[-133,-294],[-100,-69],[-41,-240],[-136,-77],[-6,-103],[-157,-28],[-64,-69],[-123,9],[-259,-262]],[[56009,76818],[-50,-195],[-60,-5],[-81,-452],[-4,-215],[71,-50],[-80,-60],[63,-244]],[[52381,82066],[102,-140],[14,-167],[93,-56],[85,-155]],[[52675,81548],[414,-174],[235,-136]],[[53324,81238],[57,79],[132,-92],[94,54],[-10,148]],[[53597,81427],[115,80],[2,322]],[[53714,81829],[-125,71],[7,250],[-70,11],[87,261]],[[53613,82422],[-26,63],[-244,-165],[-439,117],[-128,1],[-69,77]],[[28007,34920],[-124,-41],[-24,235],[-116,79],[-339,-101],[-512,861]],[[26892,35953],[-526,140],[-652,-205],[-1360,-443]],[[24354,35445],[374,-3347],[42,-412]],[[51201,67619],[59,95],[-23,191],[65,88],[97,2],[68,-204],[145,40],[84,-201],[56,93],[22,200],[-71,148],[58,248],[136,40],[5,-255],[87,-88],[115,-264],[-15,-242],[90,2]],[[52179,67512],[-10,2051]],[[52169,69563],[-801,-71]],[[51179,69474],[22,-1855]],[[47607,66802],[25,-1197]],[[48104,65866],[29,472],[93,-14],[169,91],[166,-47]],[[48561,66368],[-28,1458]],[[53448,77275],[840,-787]],[[53437,78961],[-36,-125],[33,-210],[-71,-135],[-30,-326],[-63,-274],[23,-401]],[[50787,86049],[-277,383],[340,751]],[[50450,87725],[-90,-12],[-171,-194],[-176,106]],[[50013,87625],[-175,-376]],[[79821,51066],[-52,81],[318,413]],[[80013,51870],[-328,289],[-198,-44],[-97,139],[-137,297]],[[79253,52551],[-118,-194]],[[85735,50868],[327,-565]],[[86062,50303],[363,-594]],[[86843,50222],[-246,424],[-466,756]],[[86131,51402],[-108,-15],[-7,-556],[-81,98],[-116,14],[-84,-75]],[[84233,51314],[8,-741]],[[84573,50305],[26,82],[292,243],[125,-89]],[[85016,50541],[62,941]],[[85078,51482],[-154,-29],[-226,37],[-224,-130],[-102,64],[-139,-110]],[[78908,44526],[223,21]],[[79315,45636],[-61,213]],[[79185,46086],[-40,-95],[-97,7],[-55,-359],[-112,-178],[-6,-195],[-121,-246]],[[78048,50584],[77,79]],[[78293,52063],[-176,134],[-1,199],[-90,142],[-128,20]],[[77898,52558],[-37,-260],[-167,-354],[-44,-226],[-117,-61]],[[84044,52134],[189,-820]],[[85078,51482],[65,897]],[[85143,52379],[-478,159]],[[84437,52617],[-477,156]],[[74425,48902],[-153,334]],[[74272,49236],[-338,260]],[[73934,49496],[-173,-144],[26,-258],[-87,-96]],[[79427,53979],[785,-165]],[[79671,54726],[-60,-297],[-105,-167],[-79,-283]],[[84617,48976],[113,-27],[71,-181],[202,-2],[100,191]],[[85103,48957],[-16,210],[150,77],[-4,116],[92,106],[91,-134],[100,88]],[[85516,49420],[-135,330],[-82,28]],[[85299,49778],[-785,-146]],[[87058,47550],[106,22],[301,182]],[[87572,48165],[-53,153],[146,267],[58,23],[-238,217]],[[87151,48396],[-114,-161]],[[83267,43126],[161,60],[-1,-110],[75,-205],[82,-2],[9,138],[76,179]],[[83287,44893],[-445,-480]],[[82842,44413],[87,-506],[98,-231],[14,118],[129,-347],[38,58],[64,-230],[-5,-149]],[[77898,52558],[-77,61],[-100,187],[-107,99]],[[95270,97012],[117,-6]],[[95387,97006],[71,-94],[39,130],[231,-47]],[[95728,96995],[84,114]],[[95594,97665],[-48,-245],[-140,-35],[-44,-94],[-74,76]],[[95288,97367],[-18,-355]],[[59807,22304],[190,-14]],[[60752,22240],[34,1319]],[[60602,23897],[-759,50]],[[94407,96807],[166,-152]],[[94573,96655],[58,100]],[[94631,96755],[3,273]],[[94634,97028],[-110,18]],[[12011,7276],[1053,557]],[[13064,7833],[-236,1500]],[[12828,9333],[-536,-281],[-63,347]],[[12229,9399],[-118,-38],[-129,107],[-45,-46],[-71,-291],[-47,-51],[-119,130],[62,-205],[117,-601],[70,-510],[36,210],[-67,308],[-51,442],[90,47],[-9,-268],[33,-190],[47,151],[116,-225],[-34,-413],[78,-104],[159,-98],[-66,-161],[-50,67],[-164,-16],[-84,-192],[28,-176]],[[77527,49012],[235,-216],[187,-89]],[[77949,48707],[-68,169],[215,93],[140,17],[54,176],[-33,82],[119,193],[119,-114],[85,142]],[[78580,49465],[-255,212],[124,163],[-159,202]],[[78290,50042],[-112,-43],[-192,92],[-15,111],[-101,-212],[-71,19],[-57,-177],[-15,-194],[-80,-128],[51,-91],[-36,-147],[-69,-33],[-66,-227]],[[11675,46070],[139,-143],[204,0],[253,-60],[205,78],[100,-19]],[[12576,45926],[617,-657],[186,80],[24,-163],[130,-76],[37,-245],[578,-613]],[[14194,44426],[74,132],[42,-72],[123,64],[72,228],[19,401]],[[66743,25351],[34,-130]],[[66777,25221],[565,-82]],[[67342,25139],[-123,495],[-73,875]],[[66798,26564],[-55,-1213]],[[64473,45414],[282,-37]],[[65444,45972],[20,504]],[[64656,47421],[-100,12]],[[34518,45164],[188,-110]],[[34706,45054],[16,230],[123,198],[13,138],[363,75],[103,213],[-14,102],[147,224],[80,-51],[92,139],[105,-228],[158,23],[83,197]],[[35975,46314],[66,12],[131,356],[91,-23],[152,108],[-123,283],[-45,-13],[-35,386],[-61,98],[93,235],[46,221],[-14,183],[155,475]],[[35081,49442],[-966,-201]],[[34115,49241],[-7,-399],[-64,-217]],[[70078,45308],[217,-46]],[[70573,45202],[77,1127]],[[70249,46406],[-87,17],[-49,-776],[-35,-339]],[[78268,76542],[84,-97]],[[78352,76445],[244,74],[45,197],[136,156],[308,-3],[48,56],[28,397]],[[79161,77322],[-200,26]],[[78961,77348],[-844,102]],[[78117,77450],[-43,-631],[66,-244],[128,-33]],[[83668,57705],[290,-931]],[[84029,56509],[386,130]],[[85536,29177],[193,-81]],[[85729,29096],[160,648],[-35,189],[103,697]],[[85957,30630],[-63,23]],[[85894,30653],[-656,234]],[[85238,30887],[3,-203],[-81,-381],[42,-13],[-60,-475]],[[87783,52225],[170,-168]],[[87953,52057],[190,402],[107,33],[99,166]],[[88349,52658],[141,317],[-453,-182],[167,188],[142,24],[-36,78],[-148,91]],[[88162,53174],[-289,-24],[-92,-483],[21,-79],[-19,-363]],[[68804,58494],[8,90],[-294,291],[-5,261]],[[37537,52113],[82,-117],[258,-135],[98,161],[83,19],[-61,134],[61,150],[-14,347],[51,224],[-50,38],[0,371]],[[38045,53305],[-65,1143]],[[37980,54448],[-113,-18]],[[38921,42828],[0,0]],[[39182,39133],[1461,215]],[[41430,39460],[-53,1151],[-45,685]],[[40294,43168],[-1350,-209]],[[38944,42959],[-152,-25]],[[38792,42934],[52,-1005]],[[38844,41929],[16,-336],[184,31],[138,-2491]],[[73307,62445],[11,-204],[124,-24],[-11,-169],[66,-42],[48,-462]],[[73545,61544],[5,-1]],[[73550,61543],[295,-60]],[[73754,62873],[-18,75],[-223,19]],[[73821,46563],[36,77],[279,72]],[[74136,46712],[120,-87],[132,44]],[[74388,46669],[-99,701]],[[74289,47370],[-157,19],[-120,196]],[[73931,47494],[-118,-910],[8,-21]],[[70741,41778],[-630,127]],[[70074,41299],[-6,-112],[628,-130]],[[72611,54208],[27,-285],[59,-153],[173,-628]],[[72918,54404],[-86,139],[-217,-183],[42,113]],[[67549,55296],[-68,-255],[-97,-166]],[[47757,54093],[-28,1472]],[[47729,55565],[-802,-64]],[[46927,55501],[-152,-12]],[[46775,55489],[34,-1484],[-28,-3],[9,-339]],[[84494,54642],[-258,-123],[-117,51]],[[89708,56056],[14,52]],[[89722,56108],[-303,429],[-100,207],[24,-238],[365,-450]],[[88344,54597],[240,-61],[-12,327],[147,-11],[34,-408],[233,46]],[[88986,54490],[51,-34]],[[89037,54456],[195,-73],[95,305]],[[89327,54688],[-109,231],[-60,255],[-3,207],[-82,102],[6,132],[-109,207],[-170,-22],[-183,80],[-263,-2],[-113,-114],[-125,-342],[190,-79],[-5,-172]],[[88301,55171],[-136,-58],[-145,-199],[-81,-201]],[[63212,70717],[-11,-345],[389,-32]],[[63694,70999],[-178,352],[2,83],[120,-15],[15,187],[-93,151],[149,140],[-105,114]],[[63604,72011],[-445,39],[-17,-674],[78,-415],[-8,-244]],[[95544,97750],[-116,64],[-40,-82]],[[95388,97732],[-60,6]],[[95328,97738],[-62,-145]],[[95266,97593],[22,-226]],[[77537,68067],[-12,210],[46,151],[-33,160]],[[77538,68588],[-152,-205],[-358,404]],[[76822,67829],[183,26],[98,-99]],[[49892,32545],[47,198],[249,261]],[[50188,33004],[1,466]],[[48664,33227],[19,-744]],[[82672,46853],[22,-131],[140,-26],[-39,246],[-123,-89]],[[53365,40154],[184,191],[249,-268],[113,49],[178,-3]],[[49645,27931],[579,27]],[[29529,74676],[-1761,-441],[-852,-222]],[[56658,65337],[4,-854]],[[57062,66539],[-409,22]],[[56653,66561],[5,-1224]],[[80991,61815],[111,148],[57,-22],[55,126],[-62,440]],[[81152,62507],[-422,260],[-40,83],[-154,17],[21,172],[-97,-95],[-173,-84]],[[80287,62860],[-117,-305],[-141,-461],[-18,-154]],[[11913,58185],[115,62],[-12,96],[-108,-35],[5,-123]],[[12365,54917],[104,47],[-12,79],[183,80],[46,108],[-23,162],[463,207],[-11,81],[166,71]],[[13281,55752],[164,2048],[-18,190],[-65,-6],[-36,256],[-212,-90],[-316,235],[-23,108]],[[12775,58493],[-224,-306],[-72,-38],[-127,-238],[-37,-440],[-139,-325],[-158,-298]],[[11244,60871],[94,16],[144,289],[-89,11],[-115,-121],[-34,-195]],[[14079,60238],[153,-345],[176,-167],[20,-148],[341,137]],[[14924,60077],[114,446],[73,76],[-20,179],[102,67],[87,211],[-234,401],[-14,109]],[[15032,61566],[-15,133],[-132,9],[-65,238]],[[14820,61946],[-61,-236],[-114,-124],[-83,-354],[-137,-256],[-83,-86],[-263,-652]],[[79586,84545],[479,-121],[10,109],[296,-81]],[[79647,85535],[-1,-606],[-57,-205],[-3,-179]],[[80148,71018],[274,-215],[329,-288]],[[80751,70515],[130,530]],[[80881,71045],[61,170],[164,224],[69,247],[110,-76],[142,219],[-57,171],[72,330]],[[81442,72330],[-80,22]],[[57114,30651],[12,938]],[[57141,32925],[-755,23]],[[56386,32948],[-13,-1333]],[[43474,52701],[12,-364]],[[44276,53775],[-838,-92]],[[38045,53305],[99,-24],[183,-225],[124,-82],[85,48],[229,-40],[101,-126],[10,-155],[60,-33],[196,-258],[33,-178],[172,-444],[197,-277]],[[41128,52415],[565,75]],[[39969,54758],[-574,-76],[-1147,-181],[-268,-53]],[[64765,48398],[17,335],[-190,25]],[[63795,48393],[79,-137]],[[63874,48256],[1,-168],[-285,-257]],[[80694,90993],[235,-56],[-27,-330],[386,-95]],[[82334,91247],[-971,250]],[[81363,91497],[-28,-400],[-66,-30],[6,-268],[-78,35],[-102,170],[95,463],[-136,114]],[[81054,91581],[-107,-51]],[[80947,91530],[-46,-135],[-207,-402]],[[68730,49775],[8,170],[-255,42],[6,138]],[[68489,50125],[-378,47]],[[67593,50011],[-9,-103]],[[62197,36970],[182,-17],[123,130],[57,-108],[159,-8],[173,-73],[109,160],[149,-14]],[[63149,37040],[-33,319],[8,228],[-110,98],[-74,169],[-130,3],[-87,67],[-93,197],[-212,57]],[[12361,22605],[68,-251],[264,130],[159,-412],[14,-91],[122,-122],[-7,-398],[-38,-208],[-83,-175]],[[13951,27368],[-888,-432]],[[11752,26259],[291,-1724],[318,-1930]],[[52012,86100],[-642,903]],[[67873,74469],[19,-1289]],[[67896,72867],[904,-137]],[[68800,72730],[-158,121],[40,380],[-94,490],[-87,44],[9,140],[86,90]],[[68596,73995],[11,120],[-93,46],[67,100],[-73,76],[-77,333],[80,254],[69,-42],[42,230]],[[68622,75112],[-699,105]],[[67923,75217],[-50,-748]],[[67908,71827],[13,-1356]],[[67921,70471],[2,-240]],[[67923,70231],[308,-62]],[[68900,71861],[-86,47],[-123,272],[-100,107],[-16,220],[145,105],[80,118]],[[57628,57624],[495,-21]],[[58594,57583],[38,-2]],[[58632,57581],[11,1454]],[[58643,59035],[-315,2]],[[58328,59037],[-126,1],[-62,-227],[-63,-57],[0,-223],[-80,-58],[8,-109],[-277,-2]],[[11558,51024],[1124,499]],[[12682,51523],[1770,760],[859,358]],[[15413,56510],[-1607,-644],[-464,-196],[-61,82]],[[12312,54894],[95,-656],[-146,-108],[62,-339],[-198,-67],[48,-328],[-246,-113],[49,-326],[-122,-56],[49,-328],[-202,-91],[16,-109],[-121,-285],[50,-328],[-185,-83],[97,-653]],[[82334,91247],[89,960]],[[82423,92207],[33,339],[-189,56],[35,388],[-316,88],[-57,-39]],[[81929,93039],[-161,-330],[-221,-187],[-15,-142],[-105,19],[34,134],[-92,61],[-112,-560],[-100,-144],[104,-95],[75,111],[27,-409]],[[80990,91868],[15,-41],[98,289],[119,445],[190,133],[46,-69],[101,43],[-157,144],[-212,-201],[-189,-580],[-11,-163]],[[81054,91581],[-56,38],[-21,169],[-30,-258]],[[35295,38392],[753,154]],[[36159,42751],[-45,10],[-633,-122]],[[35520,41977],[33,-513],[-664,-130]],[[34889,41334],[102,-1216],[95,19],[15,-222],[94,20],[100,-1543]],[[65071,52915],[0,-18]],[[65071,52897],[85,25],[33,-152],[511,-64]],[[65700,52706],[194,-10]],[[65894,52696],[37,1028]],[[65931,53724],[-352,24]],[[65579,53748],[-411,51]],[[65168,53799],[90,-58],[14,-131],[-40,-215],[-67,-124],[-94,-356]],[[47877,55575],[-148,-10]],[[68824,51107],[63,67]],[[68887,51174],[87,100],[103,18],[71,203],[94,-81],[42,-413],[88,-106]],[[67420,81607],[99,196],[43,242],[-12,424],[-46,263],[-24,-67],[52,-431],[-16,-291],[-96,-336]],[[66545,81695],[271,-427],[-59,263],[110,185],[-99,177],[-25,-152],[-186,26],[-12,-72]],[[65578,82046],[41,192],[121,19],[87,-92],[-20,196],[102,140],[176,-70],[33,-303],[-18,-133],[159,-196],[17,-149],[215,138],[-110,123],[4,112],[104,44],[29,197],[98,-57],[70,-279],[108,68],[-18,183],[-93,14],[-74,153],[153,-28],[-21,99],[-242,128],[133,176],[75,-81],[-45,200],[-159,-103],[-73,190],[2,326],[-60,25],[-52,-278],[-72,6],[-9,217]],[[66239,83223],[-181,-19],[-112,-123],[-45,-135],[-165,-12],[-54,-149],[-82,41],[-107,-275]],[[65493,82551],[-39,-198],[-165,-79],[36,-171],[71,24],[108,-93],[74,12]],[[28315,28781],[-57,264],[-74,1],[-54,175],[23,258],[-54,142],[28,365],[84,-49],[139,41],[6,324],[40,83],[-34,353],[32,10],[-7,418]],[[28387,31166],[-31,-8],[-61,606],[-139,-42],[11,-110],[-227,-66]],[[27555,30580],[31,-245],[48,0],[39,-278],[-104,-229],[13,-138],[-62,-19],[-9,-228],[41,-464],[-85,-263],[-99,93],[-94,-3],[-68,96],[-2,-181]],[[27204,28721],[28,-137],[113,-94],[970,291]],[[44858,43729],[142,13]],[[76156,76141],[211,-44]],[[76367,76097],[9,136],[500,-96]],[[76876,76137],[79,1125],[15,320]],[[76970,77582],[-498,58]],[[76472,77640],[-144,17]],[[74284,75642],[-20,-206],[32,-271],[-20,-139],[36,-195]],[[74312,74831],[38,112],[166,-100],[219,-37]],[[75091,74993],[38,668]],[[74655,76478],[-190,27]],[[74465,76505],[-31,-120],[-153,-271],[-36,-340],[39,-132]],[[29575,26812],[109,-1140]],[[87336,40456],[-59,-17],[69,-268],[-61,2],[20,-420],[-166,119]],[[87139,39872],[-341,-579]],[[75365,29328],[48,246],[155,448],[-51,208],[-6,461],[38,172],[-41,610],[-111,256],[-60,-10],[-61,156],[-9,-215],[-58,-76],[117,-301],[-135,-27]],[[75191,31256],[-41,-78],[-75,-725],[-387,108]],[[62771,64442],[840,-63]],[[63611,64379],[71,276],[-31,169]],[[63651,64824],[-32,158],[50,190],[-130,208],[-21,220],[-64,25],[12,-180],[-141,29],[45,221],[-41,104],[-119,61],[-21,238],[-111,-136],[-43,118],[85,119],[129,-16],[-30,177],[-137,-94],[-77,182]],[[63006,66452],[-294,27]],[[62712,66479],[68,-102],[-32,-124],[56,-159],[-37,-125],[32,-337]],[[9397,40922],[133,90],[54,116],[154,-47],[132,44],[82,123],[116,-21]],[[10068,41227],[30,154],[153,92],[114,-84],[52,-112],[135,69]],[[10426,42398],[-718,41],[-78,-148],[33,-48],[-58,-168],[-207,-174],[-40,-269],[-62,-140],[-75,-3]],[[9221,41489],[-117,-110],[-36,-230],[113,-5],[20,-128],[110,61],[86,-155]],[[91089,30002],[68,-48],[34,333],[104,-70],[65,45],[128,-191]],[[92002,31131],[-59,-24],[-161,75],[-24,98],[-107,-41],[-230,173],[-29,-177],[-122,417],[-60,2],[-70,194]],[[91140,31848],[-35,-225],[29,-297],[-92,-84],[-153,-238],[-229,-142]],[[90660,30862],[-35,-123],[256,-155],[-36,-150],[105,-97],[38,-161],[101,-174]],[[69249,49855],[17,328],[-93,16],[-31,243],[-94,28],[-170,526],[9,178]],[[68562,50983],[-17,-362],[-39,7],[-17,-503]],[[70941,48728],[-14,-270],[181,-91],[48,-234]],[[71616,47872],[124,-26],[121,56]],[[71861,47902],[8,240]],[[71869,48142],[-99,236],[-146,97],[-68,286]],[[71556,48761],[-14,209],[-131,249],[-94,-57]],[[80867,83197],[564,-148],[-30,-330],[39,-10],[-82,-863]],[[81358,81846],[75,252],[168,70],[82,283],[68,-14],[31,118],[219,247],[34,331],[-21,74]],[[82014,83207],[-77,231],[18,148]],[[81636,85361],[-576,158]],[[73617,45850],[189,532]],[[73806,46382],[-295,328]],[[73511,46710],[-89,-153],[27,-216],[-52,-145],[8,-190],[-72,-92],[-48,-277]],[[73285,45637],[97,-96],[41,210],[194,99]],[[62957,78465],[218,-19]],[[63615,78404],[-63,226],[40,201],[-21,116],[50,171],[-16,362]],[[62767,79823],[-24,-15]],[[62743,79808],[-25,-172],[51,-67],[107,-373],[-10,-54],[91,-677]],[[78017,78878],[55,-211],[-15,-122],[66,-174]],[[78123,78371],[20,-128],[127,-111],[157,-3],[191,143],[226,113]],[[78844,78385],[108,1330],[68,63],[-63,145]],[[78957,79923],[-112,108],[-24,99]],[[62092,78536],[865,-71]],[[62743,79808],[-39,-15]],[[62047,78651],[45,-115]],[[61924,78377],[120,-8],[8,190]],[[61877,78479],[47,-102]],[[96403,17647],[83,122],[10,231],[-78,75],[-64,-257],[-10,-169]],[[96124,18829],[26,-143],[42,237],[-68,-94]],[[95915,17896],[20,-151],[115,-211],[42,177],[114,210],[-35,153],[-95,90],[-79,-41],[-26,-244],[-56,17]],[[95704,17459],[9,305],[-29,283],[120,41],[-58,124],[76,128],[-21,170],[-150,63],[-31,263],[-81,44],[18,189],[-54,59],[-9,-300],[-120,155],[-19,-201]],[[95355,18782],[-13,-197],[59,-3],[41,-206],[-71,-136],[-11,-143],[-98,-257],[-104,47],[-97,-157],[-34,-189],[54,-83]],[[73918,32521],[746,-221]],[[74664,32300],[339,-96]],[[75003,32204],[-56,398],[-213,184],[-79,326],[36,576],[-82,104],[16,140]],[[74625,33932],[-210,-203],[-376,121]],[[65099,62853],[34,857]],[[65133,63710],[-337,38],[-4,55],[-196,214],[-144,-80],[-43,-101],[-75,14],[-47,139]],[[64287,63989],[-22,-523],[-183,19]],[[64082,63485],[91,-190],[-13,-183],[-105,-146]],[[85422,41235],[1,-2]],[[85897,41081],[98,118],[63,-33],[21,180],[185,141]],[[86264,41487],[-111,375],[-77,129]],[[86076,41991],[-92,-77]],[[63984,52746],[58,-121]],[[64042,52625],[169,-599],[99,-218]],[[64310,51808],[63,13],[93,-149],[115,183],[73,23],[119,156]],[[64773,52034],[18,166],[91,33],[61,128],[108,52],[16,212],[78,168],[-74,104]],[[65071,52915],[-359,-88],[-230,28]],[[62798,46749],[83,516],[-47,126],[95,465]],[[62929,47856],[-232,112],[-2,129],[-225,-12],[-29,63]],[[55883,15741],[31,1647],[3,659],[-192,4]],[[55725,18051],[-569,8]],[[55156,18059],[-16,-1324]],[[55140,16735],[-4,-657],[-22,-331]],[[56296,55736],[-678,13]],[[55618,55749],[-115,2]],[[55503,55751],[-10,-1314]],[[52604,22707],[897,11]],[[53710,23382],[-2,659],[22,241]],[[53163,23706],[-79,-189],[-147,-125],[-102,-15],[-73,-174],[-51,-247],[-107,-249]],[[88149,40193],[145,151],[128,382],[-6,193],[71,361],[99,93],[94,276]],[[88680,41649],[-122,-17],[-13,177],[-131,108],[-84,301],[-276,127]],[[87865,41179],[-62,-383]],[[21273,21951],[683,267]],[[21391,23354],[-224,-29],[-73,-200],[-62,-25],[-18,-179]],[[21014,22921],[17,-131],[121,-370],[-35,-266],[74,-28],[82,-175]],[[72148,36416],[-631,142]],[[78801,81277],[314,-52],[38,77],[189,-55]],[[79840,81432],[91,1017],[-250,66],[51,642]],[[79732,83157],[-136,171],[-155,-57],[-119,186]],[[79322,83457],[-20,-230],[-116,-57],[2,-272],[-46,-34],[-328,3],[-95,205],[-91,-308],[-17,-189],[-154,-50]],[[79473,77284],[-78,9]],[[79395,77293],[-234,29]],[[78352,76445],[-95,-1195]],[[69787,35980],[-66,-1194]],[[69721,34786],[742,-128]],[[70051,35930],[-264,50]],[[65242,62836],[520,-57]],[[65762,62779],[23,576],[96,-12],[42,1005],[94,-13]],[[65264,64537],[-21,-504],[-95,11],[-15,-334]],[[70644,31920],[-378,71]],[[43931,39763],[1318,136]],[[45249,39899],[-34,1179]],[[43896,40741],[35,-972]],[[43931,39769],[0,-6]],[[90207,36472],[10,479],[55,848],[-128,862],[-90,255]],[[90054,38916],[-112,50],[-89,-197]],[[89853,38769],[25,-163],[-88,-667],[-419,-1043]],[[89371,36896],[192,-446],[238,-75],[56,181],[139,-22],[70,-147],[84,155],[57,-70]],[[68094,44600],[250,-42]],[[68651,44512],[16,336],[-65,8],[51,1005]],[[68041,45956],[28,-318],[77,-41],[-26,-497]],[[84589,31115],[-121,-1047]],[[85238,30887],[-588,204]],[[72723,46508],[144,37],[-4,105]],[[72218,47426],[-58,-855]],[[55157,18390],[-1,-331]],[[55725,18051],[23,1561],[74,95]],[[39772,29562],[1338,193]],[[41018,31680],[-72,1490]],[[56257,50029],[513,10],[95,79],[326,1]],[[57191,50119],[-5,898],[43,0]],[[57223,51702],[-133,-78],[-181,34],[-641,-17]],[[50093,44096],[19,-1341]],[[50864,42783],[-16,1343]],[[50848,44126],[-184,-6]],[[50664,44120],[-571,-24]],[[71985,47296],[-132,22],[-63,120],[71,464]],[[89395,32714],[578,304]],[[89973,33018],[2,314]],[[89975,33332],[-7,144]],[[89930,33821],[-67,-70],[-110,233],[-80,-9]],[[89673,33975],[11,-137]],[[89684,33838],[-5,-150],[-87,-392],[-141,-2],[-94,-119],[38,-461]],[[89665,31859],[675,-456]],[[90340,31403],[27,269],[152,265],[-333,583],[163,285],[9,101]],[[90358,32906],[-26,169],[-96,169],[2,141]],[[90238,33385],[-263,-53]],[[89973,33018],[-57,-498],[-194,-392],[16,-177],[-73,-92]],[[81741,27661],[18,150]],[[81759,27811],[-75,-12],[-138,146],[-200,8],[-149,188],[0,121],[-81,16],[-105,-143],[-116,39]],[[80895,28174],[-91,-17],[24,-242],[-90,-458],[349,-325],[297,-251],[258,-137]],[[78835,54856],[174,113],[151,263],[165,80]],[[78789,55957],[-52,-210],[-154,-146],[5,-219],[-44,-47]],[[53834,24376],[1225,-9]],[[54697,25902],[-25,-131],[-182,-243],[-89,-205],[-101,-121]],[[51893,55745],[693,13]],[[52586,55758],[-9,837],[-122,54],[-21,93],[-97,-32],[-75,250],[-172,-63],[-59,66],[32,315],[-23,35]],[[52040,57313],[-707,-16]],[[51331,57297],[15,-1563]],[[66977,52539],[26,679]],[[66508,53621],[-41,-1010]],[[87154,33482],[62,-267],[57,-58]],[[87273,33157],[232,-115]],[[88165,33366],[38,-23]],[[35669,60939],[-1686,-347]],[[27685,24889],[-464,-146],[102,-988]],[[70704,21877],[7,119],[78,-12],[84,224],[52,-85],[357,-65]],[[71282,22058],[21,333]],[[70296,22571],[9,-245],[227,-376],[172,-73]],[[69934,20248],[122,104],[-12,121],[-113,-102],[3,-123]],[[69829,21159],[18,-326],[43,-121],[-3,-187],[84,78],[71,426],[-61,178],[-152,-48]],[[69686,20656],[75,-41],[-20,182],[-55,-141]],[[73663,33948],[120,1366]],[[73594,35370],[-773,221]],[[60402,27803],[-347,26],[7,330]],[[59313,27872],[-13,-665],[188,-12],[-7,-333],[295,-16]],[[56254,47397],[-9,-1144]],[[56246,47575],[8,-178]],[[51871,60663],[6,-839]],[[51877,59824],[917,17]],[[51863,61668],[8,-1005]],[[66771,62647],[-65,9]],[[66360,62701],[-323,43]],[[66037,62744],[-38,-1552]],[[56196,10841],[60,-44],[183,44],[61,185],[320,13],[240,43],[79,426],[225,-22],[254,-111],[2,-175],[159,-82],[11,-58],[205,-70],[44,70],[132,-23]],[[58231,13821],[-1033,22],[2,199],[-956,36]],[[56210,12102],[-14,-1261]],[[53790,16748],[-192,2]],[[53598,16750],[-958,-7]],[[67996,46357],[-178,-57],[-343,68]],[[67333,45599],[-22,-391],[90,-15]],[[54566,16746],[574,-11]],[[53626,18399],[2,-988],[-29,0],[-1,-661]],[[53664,36992],[759,10]],[[53692,37697],[81,-91],[-50,-82],[62,-262],[-121,-270]],[[63651,64824],[318,358]],[[63922,66541],[11,336]],[[63933,66877],[-372,29]],[[40326,61028],[440,61],[17,-26],[67,-1316]],[[41440,59825],[-20,450]],[[41420,60275],[-74,1689]],[[41308,62844],[-431,-56],[-15,342],[-188,-27],[-16,336],[-188,-28],[-16,335],[-375,-56],[-16,336],[-58,-7]],[[40005,64019],[-377,-56]],[[39338,63247],[76,-1392]],[[89258,34883],[254,-139],[28,55],[140,-60]],[[89680,34739],[-49,209],[3,167]],[[89634,35115],[17,143],[65,18]],[[89716,35276],[-17,202],[-125,364],[-43,197],[-136,158]],[[89395,36197],[-5,-79],[-253,-101],[-21,-185]],[[81963,43925],[417,436]],[[82380,44361],[149,157]],[[82529,44518],[-36,243],[16,163],[-49,14],[-100,745]],[[82360,45683],[-122,296]],[[62177,69339],[35,1473]],[[62212,70812],[-1116,78]],[[61096,70890],[-116,-231],[27,-337],[-50,-18]],[[63933,66877],[22,670]],[[63955,67547],[59,1852]],[[63542,69675],[-87,7],[-31,-995]],[[63901,63610],[181,-125]],[[64287,63989],[-53,105],[34,196],[-39,84],[48,252],[36,16]],[[64313,64642],[6,167]],[[63611,64379],[49,-187],[17,218],[70,-27],[70,-152],[-28,-102],[-88,27],[-72,-95],[27,-229],[58,-83],[2,266],[113,-22],[-42,-238],[27,-99],[-48,-227],[74,-12],[61,193]],[[59332,41748],[54,108],[17,235],[-51,210],[72,141],[-23,251]],[[58265,42602],[-25,-760]],[[78629,43997],[36,-329],[33,-13]],[[78698,43655],[17,-160],[287,-160],[53,-101]],[[79055,43234],[79,23],[34,-203],[90,86],[15,255]],[[78938,42528],[134,-299]],[[79055,43234],[-77,-435],[-149,80]],[[78829,42879],[109,-351]],[[81259,51359],[81,-61]],[[81340,51298],[52,160],[9,336],[-25,172],[-50,2],[-77,338]],[[81249,52306],[-169,201],[-64,157],[6,205],[-86,13],[-21,159]],[[80915,53041],[-373,-766]],[[40158,13162],[-191,-32],[-56,985],[-64,-11],[-75,1316]],[[39772,15420],[-639,-111],[-19,333],[-191,-34],[21,-333],[-190,-35]],[[38444,12216],[-2,-232],[53,-156],[115,46],[129,135],[214,9],[99,125],[18,-100],[121,136],[37,-109],[76,105]],[[54736,47821],[2,721]],[[53981,48545],[0,-883],[-156,-107]],[[52492,28028],[687,5]],[[64145,79693],[-648,65]],[[62156,18497],[65,-28],[136,76]],[[63135,19479],[45,1210],[-176,20]],[[62610,20753],[-25,-661],[-187,23],[-11,-329],[-192,18],[-39,-1307]],[[39710,75374],[527,73]],[[41220,75573],[59,8]],[[41222,76951],[-115,89],[-186,-344],[-141,-99]],[[40780,76597],[-318,-38],[-116,-89],[-25,-150],[-130,43],[-115,-90],[-123,-6],[-52,-127],[-21,-416],[11,-227],[-181,-123]],[[48561,66368],[75,140],[184,92],[88,125],[121,-26],[87,-117],[59,31]],[[49494,67865],[-961,-39]],[[51334,95618],[123,719]],[[51457,96337],[-39,-1]],[[51418,96336],[-75,-499],[-165,-56],[124,-85],[-17,-79]],[[51034,95612],[47,177],[5,275],[65,4],[58,263]],[[51209,96331],[-81,-1],[-114,324],[-154,2],[-8,91],[-662,-205]],[[50190,96542],[3,-324],[-281,-68],[100,-615]],[[61430,72798],[41,-148],[93,90],[60,-208],[106,45],[71,-220],[63,3],[58,-221]],[[61922,72139],[74,-6],[11,327],[277,-22]],[[62266,72609],[-46,169],[25,341]],[[62245,73119],[-292,26],[-114,146],[-3,95],[-109,47],[-17,354],[-96,247],[-116,122]],[[61228,73693],[34,-333],[116,-338],[52,-224]],[[60983,41599],[62,171],[106,45],[6,132],[93,162],[65,6],[5,182],[70,98],[108,12]],[[61498,42407],[-67,144],[-48,366]],[[61383,42917],[-755,26]],[[60628,42943],[-3,-168]],[[79969,41857],[89,74],[323,-88],[362,470],[52,26]],[[80795,42339],[-124,236],[-98,89],[-63,-41],[-122,68]],[[80388,42691],[-156,-120],[-365,-29]],[[77866,44220],[39,-148]],[[77905,44072],[53,-61],[19,-193],[170,-12],[-3,-277],[161,-323],[148,227]],[[78453,43433],[93,145],[108,-5],[44,82]],[[78209,44732],[-301,-191]],[[80388,42691],[41,467],[66,92]],[[80441,43772],[-118,70]],[[80323,43842],[-517,-100]],[[37586,8077],[1551,305]],[[39137,8382],[-20,333],[-58,-11],[-20,326],[190,35],[-60,979],[318,58]],[[93195,24704],[12,-29]],[[93207,24675],[101,-27],[-37,-194],[66,-153],[114,7],[21,-220],[140,-165],[142,26],[42,-65]],[[93796,23884],[71,327],[92,308],[162,84],[48,-167],[94,71],[-47,334],[-44,-28],[-271,320],[61,78],[-48,256],[-93,112]],[[93719,25623],[-61,-96],[-6,-191],[-60,2],[-19,-301],[-113,92],[-220,-128],[20,-59],[-65,-238]],[[77845,55087],[76,-111],[116,47],[233,-393],[87,-109]],[[78525,55427],[-127,596],[-79,77]],[[78057,55968],[-84,-276],[-153,-38]],[[69500,55863],[517,-108]],[[70017,55755],[301,-65],[49,65]],[[70084,56688],[-47,185],[-63,49],[-161,-100]],[[69813,56822],[-128,73],[-35,-84],[-215,-209]],[[69435,56602],[-15,-364],[-29,-45],[15,-311]],[[62165,68667],[189,-16],[3,170],[191,-7],[22,-173]],[[62602,68762],[62,113],[-83,167],[47,86],[66,-78],[5,-174],[74,89],[-8,165],[-137,114],[80,85],[94,-60],[43,-229],[55,83],[-144,316],[6,195],[83,229],[25,-158],[74,27],[-82,196],[17,290],[-29,55],[-147,-26],[-29,126],[146,162],[-70,210]],[[62750,70745],[1,28]],[[62570,70785],[-313,22]],[[62257,70807],[-45,5]],[[70805,42834],[-121,86]],[[70684,42920],[-502,96]],[[69815,40618],[345,-67]],[[69842,41115],[-27,-497]],[[70684,42920],[-10,278],[40,609]],[[70231,44141],[-127,28]],[[69437,43383],[-524,81]],[[64118,72300],[83,-12],[146,-175],[76,-178],[147,-29],[274,-339],[122,-535]],[[64966,71032],[431,-70]],[[70142,16655],[261,-60],[166,-78],[-96,295],[39,584],[-39,72],[73,165],[116,-60],[218,120],[173,-195],[72,-4],[71,253],[195,-140],[47,-241],[251,-53],[33,-134],[148,-18],[34,93],[-30,335],[69,383],[24,306],[-153,41],[-33,223],[190,-58],[46,103],[117,48],[-58,163],[141,199],[70,-11],[125,113],[26,-124],[86,96],[38,-96],[-113,-302],[82,30],[204,-96],[85,36],[96,279],[99,81],[-41,222],[-73,81],[-155,-91],[-165,88],[-181,-98],[-205,80],[-152,-40]],[[72043,19245],[-192,16],[-23,-328],[-188,40],[-24,-327],[-1136,234],[-23,-331],[-189,38]],[[71257,19856],[66,-9],[38,130],[370,129],[-82,211],[-130,-33],[-262,-428]],[[72043,19245],[-208,130],[-114,24],[-64,107],[-215,-182],[-97,-138],[-67,37],[-79,-84],[-48,108],[22,210],[-52,26],[-1,232],[64,194],[-66,81],[-138,-112],[-23,-96],[-123,-99],[-150,-260],[-237,-124],[-68,36],[-222,-139],[-66,53],[-203,-9],[-123,270],[-76,258],[-195,-4],[-112,57]],[[69382,19821],[-64,-1049]],[[80361,76132],[72,90],[116,-19],[177,128],[127,-25],[217,56],[92,-74],[90,39]],[[81252,76327],[35,36],[3,375],[31,345]],[[81321,77083],[-124,-176],[-68,173],[-68,-37],[-67,-163],[-110,123],[-105,-16],[-170,449],[-346,841]],[[80263,78277],[-30,-337]],[[80795,42339],[80,42]],[[73663,60113],[147,112],[158,248]],[[73550,61543],[21,-111],[-63,-64],[-84,-376],[103,-609]],[[77219,77553],[480,-57]],[[77699,77496],[161,-17]],[[77860,77479],[101,591],[55,179],[107,122]],[[77791,78931],[-192,45],[-12,-167],[-660,153]],[[76927,78962],[54,-121],[-48,-144],[89,-73],[53,-200],[-50,-272],[53,-130],[121,-84],[54,-125],[-34,-260]],[[64239,69479],[90,-151],[-80,-129],[273,132]],[[65314,69702],[-123,416],[8,177],[-81,252],[-32,267],[-120,218]],[[64966,71032],[-700,-428],[-47,3]],[[66446,56858],[18,-2]],[[58526,26855],[-2,-167],[132,26],[54,-142],[197,-12],[-6,-331],[95,-4],[-7,-323]],[[58007,54023],[759,4]],[[58766,54027],[189,-2]],[[58046,55293],[-3,-708],[-36,0]],[[58007,54585],[0,-562]],[[72726,67488],[527,-89],[90,20]],[[73343,67419],[33,206]],[[73554,68745],[13,81]],[[72911,68956],[-110,24]],[[34658,73193],[-446,-83],[-30,328],[-46,66],[58,270],[131,198]],[[34325,73972],[-1421,-287]],[[84453,35697],[110,-284],[160,-585]],[[84723,34828],[-11,-93]],[[85350,35245],[-231,58],[-584,483],[-52,57]],[[46812,26399],[-103,-44],[-70,-110],[54,-469],[-22,-117],[-133,-141]],[[93186,21508],[-62,260],[-47,-164],[-100,139],[-63,-234],[-34,150]],[[92189,21096],[-125,-467],[297,-227],[-94,-380],[30,-197],[-69,-84],[-117,-399]],[[81454,50539],[72,-128],[98,-2],[75,153],[-94,309],[-154,-154]],[[61965,38680],[0,1]],[[55658,40695],[4,667],[26,0],[0,587]],[[55688,41949],[-476,-5]],[[81586,63045],[-173,169],[-306,-354],[45,-353]],[[26861,27992],[-98,937],[302,94],[139,-302]],[[9787,18826],[519,284],[-59,340],[90,45],[-56,312],[81,41],[-110,639],[91,49],[-105,630],[-93,-33],[-56,320],[-91,-48],[-109,634],[-9,137]],[[8963,21025],[142,-394],[32,-163],[95,-226],[85,-298],[-8,-147],[123,-117],[138,-268],[217,-586]],[[12361,22605],[-182,-90],[-125,164],[-155,-74],[-155,155],[-244,87],[-61,172],[-243,-109],[-105,38],[-217,-126],[-152,136]],[[9787,18826],[254,-880]],[[62400,31555],[-115,197],[-159,192],[-149,74],[-187,284],[-151,31]],[[61639,32333],[-43,-351]],[[61596,31982],[-3,-209],[174,-480],[-85,-216],[-177,-186],[8,-220]],[[81157,48105],[204,-68],[104,209],[236,-41],[112,127],[65,-138]],[[81878,48194],[75,27],[-77,411]],[[81331,49247],[-26,-43],[-168,300],[-140,-82]],[[80997,49422],[-86,-47],[-66,-160]],[[81310,48811],[72,-8],[-57,-205],[-15,213]],[[79981,50492],[171,171],[103,-116],[234,-375],[66,-51],[87,202]],[[80642,50323],[110,388]],[[78844,78385],[149,24],[110,-311],[-21,-128],[-99,-151],[-79,-308],[57,-163]],[[79395,77293],[143,1697]],[[79538,78990],[14,116],[-109,141],[-81,349],[103,168]],[[79256,80244],[-156,-78],[-85,-242],[-58,-1]],[[96598,97263],[97,-79]],[[96828,97116],[30,-23]],[[96750,97450],[-107,-55]],[[95860,97627],[68,-57],[21,-301],[95,-3]],[[96215,97587],[-148,-11]],[[58528,25250],[-50,-107],[-121,6],[-76,123]],[[58281,25272],[-35,-77],[-20,-484],[-29,2]],[[58197,24713],[-7,-340],[321,-15]],[[30566,41948],[327,-3828]],[[32365,39059],[-138,1679]],[[32227,40738],[-171,2148]],[[32006,43508],[-103,115],[-1525,-409]],[[30378,43214],[8,-378],[118,-501],[122,-152],[95,-195],[-155,-40]],[[81340,51298],[58,-167],[128,-83],[93,111],[165,-394]],[[81784,50765],[226,62],[90,119],[187,386]],[[82287,51332],[-9,731]],[[81612,52504],[-61,-167],[-302,-31]],[[33224,90799],[107,-101],[92,166]],[[55399,45973],[89,137],[22,130],[117,170]],[[55627,46410],[-357,5]],[[92269,27940],[476,-193],[11,57]],[[92980,29167],[-253,136],[-337,20],[-165,-113]],[[92225,29210],[110,-205],[-58,-298],[-84,36],[-66,-459],[185,-85],[-43,-259]],[[91937,29855],[79,-109]],[[92016,29746],[129,-68],[-31,-138],[89,-173],[22,-157]],[[93001,29329],[88,677],[-64,48],[54,245],[-36,112]],[[93043,30411],[-145,-4],[-109,132],[-101,34],[-68,111],[-82,-56],[-39,142],[-198,132]],[[12890,13610],[50,-90],[144,128],[61,-371]],[[13145,13277],[141,72],[28,-100],[1221,600]],[[14535,13849],[29,248],[100,164],[-17,295],[-49,132]],[[14598,14688],[4,117],[-112,40],[30,365],[43,10],[-21,201],[-104,63],[-93,-42],[-55,76],[-11,258],[85,197],[-42,60]],[[57932,76532],[-116,-94],[-162,169]],[[56770,75581],[-112,-303],[-2,-192]],[[78386,37363],[311,-83],[-10,-112],[121,-32],[9,110],[492,-137]],[[79405,38104],[-181,140],[-42,143]],[[79182,38387],[-135,-18],[-189,43]],[[78445,38025],[-59,-662]],[[13003,48882],[78,34],[-50,326],[91,42],[-71,494],[-93,-44],[-83,488],[-193,1301]],[[11558,51024],[-34,-16]],[[7758,32279],[767,399]],[[9371,33930],[-33,185],[50,182],[-68,483]],[[9320,34780],[-40,186],[-224,-72],[-71,25],[-79,345],[36,363],[-13,339],[-174,162],[-88,364],[28,219],[98,146],[2,390],[176,291]],[[8971,37538],[-421,-223],[-99,2],[-18,113],[-380,-185],[-19,110],[-212,-115],[-62,8]],[[7760,37248],[-137,-381],[-80,-332],[1,-147],[60,-62],[79,-282],[-36,-911],[21,-351],[69,-278],[145,-352],[0,-209],[42,-298],[-34,-175],[34,-421],[-69,-162],[-6,-191],[-91,-417]],[[39265,46385],[-624,-103]],[[48839,83544],[-179,101],[-76,-18]],[[48584,83627],[-261,-248]],[[58632,57581],[770,-40]],[[59402,57541],[-53,32],[17,1452]],[[59271,59027],[-628,8]],[[51320,58952],[187,26]],[[51507,58978],[-4,670],[53,-97],[84,148],[126,112],[111,13]],[[51871,60663],[-944,-30]],[[85823,24893],[370,59],[563,-985]],[[86951,26786],[-52,53]],[[86899,26839],[-292,145],[-63,-250],[-135,56],[-65,-392],[-68,35],[-125,-263],[-133,-140],[-247,120]],[[75736,60061],[31,-127]],[[76353,59599],[61,243],[70,123],[99,-61],[26,311],[153,211],[11,153],[86,186]],[[76859,60765],[-661,182]],[[76198,60947],[-52,-33],[-309,-533],[-137,48]],[[75700,60429],[53,-282],[-17,-86]],[[87784,21572],[280,-181],[-209,-977],[343,-228]],[[88198,20186],[310,-191],[50,-4],[240,-277],[23,-213],[186,-114]],[[89007,19387],[124,367],[-26,280],[88,389]],[[89193,20423],[-80,330],[4,567],[50,50],[52,349],[84,197],[26,249]],[[89329,22165],[-88,55]],[[89241,22220],[-922,616]],[[88319,22836],[-11,-200],[-174,-60],[-90,110],[-246,-351],[101,-216],[-115,-547]],[[81990,46962],[135,28],[-70,286],[22,30]],[[82077,47306],[-55,340],[-102,297],[-42,251]],[[77949,48707],[-75,-78],[42,-410],[88,37],[52,-296]],[[78056,47960],[111,-99],[207,-28],[4,138],[82,20],[167,198],[-24,148],[83,12],[84,290]],[[78770,48639],[-87,19],[-88,260],[47,325],[96,170]],[[78738,49413],[-97,135],[-61,-83]],[[78904,48674],[16,-755],[136,-436]],[[79056,47483],[147,105],[29,-43],[113,122],[20,-110],[90,42],[35,-75],[76,192],[137,214]],[[79696,49043],[-196,-10],[-41,-146],[-382,52],[-21,-208],[-97,-102],[-55,45]],[[78150,46308],[131,245],[167,-270]],[[78448,46283],[116,214],[465,-39]],[[79057,47482],[-1,1]],[[78904,48674],[-134,-35]],[[78056,47960],[38,-51],[-44,-362],[-170,6]],[[77880,47553],[3,-288],[268,-332],[-86,-425],[85,-200]],[[97500,97141],[11,-23]],[[97511,97118],[76,110],[47,-68],[150,-11]],[[97784,97149],[101,148],[-50,140],[-133,24]],[[97702,97461],[10,-60],[-228,-219]],[[95728,96995],[34,-37]],[[95881,96908],[147,-77]],[[32227,40738],[702,167],[1960,429]],[[70078,45308],[-419,69],[-1,-24]],[[69539,44896],[-15,-198],[57,-179],[-22,-135]],[[60661,75579],[40,-67],[42,-440]],[[61314,75032],[7,503],[43,1804]],[[61364,77339],[-35,-64],[-113,38]],[[61216,77313],[4,-114],[-126,-145],[-28,-237],[-67,-36]],[[60017,48848],[-145,1212]],[[59650,50062],[-382,-618],[-3,-336]],[[80424,33071],[85,858]],[[79099,34871],[-4,-42]],[[79095,34829],[-126,-1328]],[[75468,48170],[101,404],[101,44]],[[75670,48618],[72,49],[-17,173],[-64,80]],[[75661,48920],[-180,290],[-86,89]],[[69410,58178],[227,-21]],[[69637,58157],[36,213],[182,-276],[246,20],[316,212]],[[70417,58326],[-2,206],[58,286],[-7,189],[-87,13],[-24,317]],[[70355,59337],[-168,42]],[[69394,58952],[-3,-420]],[[50859,21326],[-45,-3]],[[95145,98152],[52,269]],[[95197,98421],[-142,105],[-112,-99]],[[23167,13614],[65,235],[166,62],[21,170]],[[22450,15179],[114,-901],[31,-8],[-6,-324],[333,127],[43,-83],[145,85],[36,-272],[-51,-220],[72,31]],[[22152,13384],[56,-430]],[[22208,12954],[476,179],[55,-153],[131,-114],[244,96]],[[23114,12962],[-49,492],[118,35],[-16,125]],[[22245,15647],[-74,-228],[-41,-361]],[[22130,15058],[-16,-411],[85,-208],[-44,-184],[26,-79],[-15,-292],[-76,-210],[62,-290]],[[49708,44080],[385,16]],[[50664,44120],[-15,1343]],[[49711,45758],[-30,-1]],[[52545,44170],[571,8]],[[53491,44181],[-2,1676]],[[52915,45853],[-380,-5]],[[56007,58975],[413,-12]],[[56557,60514],[40,464]],[[56597,60978],[-593,14]],[[76198,60947],[-117,31]],[[76081,60978],[-124,51],[-561,123]],[[75396,61152],[-122,27]],[[75274,61179],[76,-168],[-22,-63],[94,-155],[99,-276],[179,-88]],[[76859,60765],[169,-145]],[[77116,62671],[-109,-136]],[[77007,62535],[-137,-229],[-113,-2],[-214,-243]],[[76543,62061],[-32,-107]],[[76511,61954],[29,-293],[90,-144],[35,-220],[65,-50],[126,-250],[3,-232]],[[57495,60476],[92,1]],[[57587,60477],[0,112],[-93,-1],[-32,276],[-159,-1],[0,336],[94,1],[-2,438],[-84,62]],[[57311,61700],[-120,-14],[15,196],[-122,155],[-178,32],[-68,-70],[5,-142],[-87,-150],[-88,80]],[[56668,61787],[-71,-809]],[[98381,96918],[82,68],[88,-45],[69,120],[-126,117],[-93,-60],[-20,-200]],[[65814,78160],[-139,17]],[[65675,78177],[-202,23]],[[65473,78200],[-10,-278],[-160,18],[-40,-219],[-127,17],[-55,-161],[-38,-612]],[[65043,76965],[-8,-225],[153,-1]],[[64847,66090],[379,-39],[-4,-112]],[[64895,67113],[-34,-933],[-14,-90]],[[46916,42567],[171,9]],[[13034,9433],[1428,717]],[[14462,10150],[-206,1214]],[[12909,10216],[125,-783]],[[70244,62139],[94,-16]],[[70338,62123],[83,1694]],[[69829,63391],[-68,-136],[-158,-126],[-66,29]],[[73918,78576],[399,-69],[-3,-167],[441,-83]],[[74755,78257],[-87,332],[-16,450],[-48,289],[1,283],[-91,261]],[[74514,79872],[-517,99]],[[79732,83157],[146,-47],[87,112],[155,59],[65,89]],[[79586,84545],[-92,-80],[16,-143],[-90,-337],[63,-229],[-161,-299]],[[62750,70745],[462,-28]],[[63604,72011],[62,93],[-51,72]],[[70498,48791],[378,-50]],[[71159,49611],[11,364],[-49,312]],[[43405,55211],[-24,-2]],[[78982,59523],[191,529],[103,374],[83,57]],[[51573,47505],[-7,672]],[[50623,48146],[9,-1006]],[[36098,17387],[851,176],[28,62],[-18,274],[189,39],[-23,337],[32,9],[-44,650],[104,12],[-67,1011]],[[37150,19957],[-172,-35],[11,-165],[-189,-38],[11,-164],[-378,-79],[23,-328],[-132,-28]],[[52246,35110],[13,-1578]],[[52873,34454],[-146,-4],[-11,949]],[[52716,35399],[0,54],[-156,-3]],[[58745,22027],[84,-136],[24,-242],[84,-264],[101,-153],[133,-78],[44,-127],[76,38],[43,-168],[141,-12],[19,-163],[62,-62],[-7,-316]],[[59549,20344],[372,-27]],[[63715,31285],[48,-132],[115,-64],[12,-159]],[[65037,31158],[49,1343]],[[64518,32582],[-2,-44],[-751,84]],[[63765,32622],[-50,-1337]],[[62975,82198],[221,-162]],[[63196,82036],[188,-81],[81,41]],[[63465,81996],[18,338],[64,-7],[6,165],[75,-10],[5,116]],[[63633,82598],[-105,443],[-104,306]],[[63424,83347],[-134,351]],[[63248,83422],[2,-391],[-81,-130],[-104,-34],[-143,-458]],[[87148,31591],[-203,-1333]],[[86945,30258],[128,-49]],[[87073,30209],[224,152],[71,276],[127,-91],[55,65]],[[87550,30611],[116,110],[-11,158],[91,44],[74,510],[-27,67]],[[87273,33157],[90,-143],[-215,-1423]],[[86885,27347],[51,-179],[-37,-329]],[[87662,26575],[196,55]],[[87912,27838],[-90,85],[-115,17],[-175,242],[-61,179],[-112,77],[-134,297],[-105,8],[-50,199],[-167,92]],[[86903,29034],[-19,-256],[34,-152],[-77,-219],[27,-307],[48,-111],[-51,-359],[20,-283]],[[50904,63991],[1317,34]],[[52221,64025],[-4,838]],[[51081,65338],[5,-658],[-189,-20]],[[87406,21807],[378,-235]],[[88319,22836],[-235,158],[264,1301]],[[88348,24295],[90,427]],[[88438,24722],[-127,75],[18,98],[-154,89],[-20,-98],[-317,180],[-305,-107]],[[58328,59037],[2,168],[61,0],[-2,437],[-94,167],[-30,170],[15,455]],[[58280,60434],[-313,-6]],[[57967,60428],[-380,-6],[0,55]],[[85957,30630],[988,-372]],[[87148,31591],[-411,153]],[[86102,31943],[-208,-1290]],[[75462,81241],[187,-195],[-25,165],[-143,109],[-19,-79]],[[74742,80707],[23,-168],[876,-170]],[[75641,80369],[63,72],[85,-67],[64,82],[186,23]],[[76039,80479],[2,246],[-164,-2],[-39,-79],[-154,105],[-208,336],[-66,34],[-335,436],[-1,-150],[-75,-25],[-131,289],[-243,46],[100,141],[16,124],[115,48],[385,-385],[165,-312],[20,39],[-141,302],[-483,503],[-364,-278]],[[74438,81897],[27,-132],[167,-286],[132,-40],[29,-110],[-89,-379],[38,-243]],[[75953,77702],[-76,361],[-62,71],[-22,382],[-39,83],[-183,87],[-221,290]],[[75350,78976],[-135,-84],[-12,-164],[-125,28],[-17,-223],[-193,-16],[-20,-276],[-93,16]],[[74755,78257],[43,-59],[74,-320],[-16,-47]],[[74514,79872],[-45,425],[93,247],[169,106],[11,57]],[[74438,81897],[-127,2],[-111,116],[-106,-290],[-60,-329],[47,-200],[23,341],[58,291],[54,61],[56,-140],[-9,-275],[-196,-452]],[[76455,79182],[-43,-611],[52,-163],[-13,-183],[120,-27],[-82,-319],[-17,-239]],[[76970,77582],[249,-29]],[[76927,78962],[-27,94],[-136,167],[-51,239],[-48,406]],[[76665,79868],[-67,-60],[-95,51]],[[76503,79859],[-48,-677]],[[79436,86593],[67,407],[59,8],[-19,-271],[-60,-157]],[[79780,86504],[52,575]],[[79832,87079],[-83,-7],[28,207],[-69,108],[113,108],[84,-11],[109,334],[-59,156],[1,266],[-152,83],[49,218],[-60,114],[-39,-351],[-126,-295],[-84,-98],[-63,-231],[4,-515],[-55,-204],[-51,-355]],[[47896,62844],[1087,62],[27,57],[151,-78],[52,105]],[[49213,62990],[-13,935]],[[48814,64910],[-314,-17],[3,-167],[-184,-11]],[[57967,60428],[-4,1518]],[[57404,62590],[-97,-5],[4,-885]],[[52122,57649],[7,81],[113,120],[114,-58],[67,-191],[121,-171],[56,60],[53,281],[-9,154],[132,47],[104,200],[62,-100],[30,136],[-89,190],[102,68],[103,-130],[40,179],[165,217],[146,17],[-21,246]],[[53418,58995],[-52,-1]],[[52797,58998],[-348,-1],[2,-337],[-187,-3]],[[52264,58657],[2,-336],[-188,-3],[4,-670],[40,1]],[[52403,65370],[563,10]],[[52966,65380],[-1,330],[192,7]],[[53157,65717],[-3,1005]],[[53154,66722],[-83,0],[-1,165],[-238,-3]],[[52832,66884],[-61,-180],[-91,-44],[-476,-8]],[[57578,41882],[21,405],[13,804]],[[57612,43091],[6,505]],[[56857,42654],[-4,-332],[-28,1],[-5,-391]],[[65701,75181],[466,-118]],[[66167,75063],[59,1389]],[[66226,76452],[-98,12]],[[12828,9333],[206,100]],[[12473,9647],[-173,-120],[-21,-165],[-50,37]],[[80291,78604],[693,-194],[22,262]],[[81006,78672],[30,397],[166,166],[7,179],[77,272]],[[81286,79686],[-435,129],[-82,162],[-87,48],[-42,189],[-198,162]],[[80442,80376],[-3,-109],[-134,-1497]],[[80305,78770],[-14,-166]],[[69382,19821],[-83,92],[10,103],[-126,-92],[-304,9],[-120,102],[-62,149],[-35,452],[-93,17],[-46,130]],[[68523,20783],[-30,-526],[-47,9],[-57,-995],[-191,31]],[[59923,18223],[112,93],[185,-53],[400,-282]],[[59549,20344],[-21,-990]],[[75963,70564],[-7,34]],[[75956,70598],[-82,17]],[[75874,70615],[89,-51]],[[75546,71267],[-5,-91],[101,-41],[110,-431],[122,-89]],[[75874,70615],[69,45]],[[75943,70660],[157,-32],[167,107]],[[76267,70735],[27,107],[20,570]],[[75719,71781],[-71,9],[-16,-244],[-67,11],[-19,-290]],[[58953,70983],[458,-22]],[[59411,70961],[484,-16]],[[8971,37538],[90,230],[36,392],[71,55],[7,159]],[[9175,38374],[-73,240],[18,163],[101,213],[-7,198],[66,101],[-41,93],[54,208],[53,557],[-62,328],[-60,-21]],[[9224,40454],[7,59]],[[9231,40513],[-173,42]],[[9058,40555],[-85,-353],[-132,-41],[-134,-172],[-198,-541],[-105,-54],[-74,49]],[[8330,39443],[-96,-75],[29,-218],[-43,-386],[-160,-325],[-100,-271],[-115,-669],[-85,-251]],[[52227,63601],[-6,424]],[[50916,62137],[1,-6]],[[52360,44166],[8,-1343]],[[56065,69757],[114,131]],[[56363,71613],[-96,3]],[[56241,71520],[-91,-80],[-95,-218]],[[56055,71222],[10,-1465]],[[50918,61978],[9,-1345]],[[54143,70336],[138,-134],[101,-198],[105,12],[162,-221],[151,42],[185,-93],[104,38],[63,-61]],[[54505,71330],[-5,-73],[-357,1]],[[87577,25882],[369,97],[695,-270]],[[88641,25709],[21,99]],[[88662,25808],[43,216],[-226,426],[-3,62]],[[52586,55758],[390,5]],[[53889,55767],[0,2220]],[[53889,57987],[0,1012],[-471,-4]],[[52122,57649],[24,-85],[164,-83],[-17,-184],[-158,60],[-95,-44]],[[70483,77524],[707,-109]],[[71296,79747],[-224,99]],[[71072,79846],[-5,-61],[-286,138],[-191,141],[-106,-40],[2,-135],[169,-182],[2,-291],[-89,-145],[-81,-40],[-104,-198],[-49,-401],[-55,1],[-31,-253],[30,-104],[-46,-128],[47,-164],[-12,-142],[216,-318]],[[82014,83207],[103,144],[181,-42],[107,167],[76,-57],[48,-157],[78,39],[34,234],[105,191],[83,286]],[[75476,74901],[535,-129]],[[76011,74772],[-86,203],[-2,144],[-246,248],[-31,259],[-229,499],[9,171]],[[72435,61773],[233,-38]],[[72668,61735],[196,-39]],[[72504,62242],[-69,-469]],[[75388,74204],[283,-61]],[[75671,74143],[471,-109],[38,-111]],[[76180,73923],[48,86],[48,691]],[[76276,74700],[-265,72]],[[76276,74700],[27,415]],[[76303,75115],[64,982]],[[74831,77774],[-73,-76],[-62,-242],[-20,-257],[-100,-173],[-52,-244]],[[74524,76782],[-59,-277]],[[51507,58978],[376,8],[2,-336],[379,7]],[[72609,55368],[526,-63]],[[72335,53223],[-41,102],[-239,275]],[[52937,71892],[6,-649]],[[99508,96953],[177,-116],[110,89],[-92,14],[4,161],[-186,-70],[-13,-78]],[[99412,96842],[1,63]],[[37353,73673],[-39,716],[-182,3736],[-17,-3],[-37,657]],[[36949,78893],[-35,-227],[-104,-18],[-79,-233],[-76,-44],[-114,-212],[-81,0],[-241,-262],[2,-129],[-274,-438],[-65,-368],[-78,-142],[-220,-235],[-152,-497],[-112,-115],[-28,-204],[-76,-99]],[[35216,75670],[81,-127],[11,-210],[-63,-11],[113,-2002]],[[78448,46283],[-62,-217],[-9,-593],[-36,-290],[36,-73]],[[67012,74851],[61,-16]],[[67073,74835],[271,-72],[254,-113],[275,-181]],[[67923,75217],[74,999]],[[67997,76216],[-731,106]],[[67076,76348],[-64,-1497]],[[62774,31406],[55,1488]],[[62829,32894],[40,1174]],[[62092,33496],[-91,-36],[-168,-182],[-92,-550],[-71,-77],[-31,-318]],[[62187,75639],[273,-28],[36,75]],[[62496,75686],[-30,85],[3,350],[-53,39],[-130,-120],[-32,131],[61,94],[101,-48],[46,99],[-76,122],[-114,36],[6,339],[82,179],[-10,120],[-69,-15],[-68,-234],[-52,133],[140,320],[-15,145],[-104,63],[-119,-15],[-9,128],[107,158]],[[62161,77795],[-59,225],[13,100],[100,135],[9,119],[-132,162]],[[61924,78377],[32,-238],[-32,-108],[73,-211],[-60,-76],[-195,-93],[-47,-109]],[[61695,77542],[-55,-133],[25,-285],[126,-45],[-151,-137],[-7,-277],[60,17],[37,196],[129,17],[16,-124],[-133,-27],[30,-224],[-92,-152],[32,-227],[57,-73],[74,127],[55,-114],[9,-343],[113,1],[60,-130],[104,142],[3,-112]],[[55766,73582],[6,894]],[[55772,74476],[-880,22]],[[54892,74498],[-35,-45],[29,-209],[-48,-127],[76,-235],[-5,-228]],[[87732,18149],[208,1048],[30,-18],[99,488],[19,-13],[110,532]],[[86675,18578],[61,-44],[532,-182],[464,-203]],[[62116,75142],[115,-192],[-35,-110],[52,-125],[-24,-112],[30,-268],[-35,-213],[18,-223]],[[62237,73899],[318,-24],[87,-117],[71,74],[91,-144],[92,-23],[22,145]],[[63059,74132],[42,10]],[[63102,74166],[-119,264],[-79,-121],[-6,136],[131,103],[-202,232],[15,171],[-116,189]],[[62612,75628],[-116,58]],[[62187,75639],[-66,-164],[-5,-333]],[[62161,77795],[87,-189],[22,89],[80,-55],[25,-356],[83,10],[216,-194],[278,30]],[[62952,77130],[120,88]],[[67073,74835],[-72,-1522]],[[49676,23921],[8,0]],[[68872,62314],[20,-215],[-43,-1310]],[[66226,76452],[472,-58]],[[66416,78444],[-31,-382]],[[13064,7833],[306,152]],[[13370,7985],[-19,106],[791,408],[601,294]],[[15845,9245],[11,170],[97,164],[-98,66],[-4,244],[-74,212],[-71,64],[-11,224],[34,275],[-28,75],[-184,-88]],[[15517,10651],[-1055,-501]],[[82287,51332],[87,-41],[122,119],[-39,-193],[83,-16]],[[82540,51201],[52,-156],[111,-167],[71,59],[52,-118],[84,25],[59,230],[99,-169],[71,89]],[[83126,53037],[-215,68]],[[82692,53172],[-75,24]],[[83205,41339],[222,127]],[[83427,41466],[1,210],[56,214],[-92,406],[38,40],[-46,196],[71,97],[-141,356]],[[83314,42985],[-106,-134],[-98,82],[-492,-160],[-148,-104]],[[12255,36142],[134,-107]],[[11598,38081],[-32,-88],[-211,126]],[[11355,38119],[-224,-11],[-66,103],[7,-473],[58,-100],[21,-679],[40,-116]],[[83341,31555],[223,-78]],[[83805,33439],[-627,226]],[[82775,33236],[-163,-1441]],[[50190,96542],[-12,1053],[-13,51]],[[50165,97646],[-198,11],[-122,-60],[-22,95],[-73,-104],[-141,65],[-202,-98],[-169,-252],[-2,-109],[-100,28],[-152,-251],[-64,33],[-177,-168]],[[48743,96836],[399,-1387],[159,-592]],[[88294,47310],[170,-82],[92,66],[-16,223],[179,28],[56,-76]],[[88775,47469],[36,33],[-76,489],[-88,187],[29,184],[-12,216],[-86,298],[-114,68],[-12,140],[-44,-268],[-128,-347],[-15,-289],[29,-155],[-21,-251],[21,-464]],[[75282,71161],[131,35],[6,97],[127,-26]],[[75279,72121],[-16,-252],[35,-6],[-23,-250],[43,-8],[-36,-444]],[[60913,32034],[683,-52]],[[87572,52517],[82,-158],[129,-134]],[[88162,53174],[-58,222],[-87,105],[-115,36],[-74,-94],[-108,16],[-124,-367],[-20,-196],[46,-282],[-33,-29]],[[70851,63762],[43,165],[118,79],[80,-29],[48,-159],[99,15],[47,-278],[-47,-68]],[[71239,63487],[319,-56],[19,299],[89,-19],[31,208],[51,-46]],[[71394,65397],[-305,-567]],[[71089,64830],[-54,-158],[-187,25]],[[85729,29096],[418,-176]],[[86147,28920],[104,574],[44,26],[286,-106],[27,198],[346,-129]],[[86954,29483],[68,577],[51,149]],[[88662,25808],[148,28],[96,103],[73,-84],[44,219],[172,215]],[[52820,80022],[207,-185],[134,-457],[93,-216],[183,-203]],[[53573,79539],[11,205],[-29,229],[26,195],[-46,228],[154,680],[-77,149],[-15,202]],[[53324,81238],[51,-141],[-95,-164],[-68,-318],[-114,-17],[-7,-159],[-165,-156],[-172,-51],[66,-210]],[[84430,44160],[43,-20],[115,262],[-14,146],[130,172],[180,399],[67,-77],[103,31]],[[85054,45073],[45,151]],[[85099,45224],[-138,75]],[[84961,45299],[-126,-84],[-9,115],[-83,-41],[-136,48],[-129,169],[-57,167],[-96,34]],[[84325,45707],[-64,-205],[29,-77],[-99,-216],[-188,-265]],[[52069,80542],[650,-656]],[[52719,79886],[101,136]],[[52675,81548],[-102,-91],[-92,1],[-87,-273],[-159,-258],[-82,-315],[-84,-70]],[[67190,81011],[179,-55],[-143,109],[-36,-54]],[[66862,80966],[142,-14],[-40,127],[-102,-113]],[[67311,79225],[45,987],[137,147]],[[67493,80359],[-5,59],[-201,-101],[-301,137],[-383,297],[15,-181],[-119,-74]],[[66499,80496],[-44,-1050]],[[54148,69604],[2,-201]],[[54150,69403],[148,-119],[173,85],[70,-64],[141,36],[71,119],[64,-36],[137,164],[198,119]],[[55152,69707],[4,10]],[[24827,49332],[-194,1899]],[[43047,77983],[940,96]],[[44485,81163],[-1511,-149]],[[42974,81014],[46,-144],[153,-103],[-147,-259],[81,-130],[115,-384],[-4,-230],[-107,-142],[-107,-5]],[[43004,79617],[-67,-186],[-9,-202],[-88,-625],[-212,-319],[-104,-66],[-63,58],[-302,-247],[-80,15],[-180,-219]],[[81268,81685],[427,-329],[17,-75]],[[82331,81002],[354,983],[569,1220]],[[83254,83205],[-449,129],[68,666],[-44,12]],[[81358,81846],[-90,-161]],[[83506,29231],[197,-65]],[[83703,29166],[351,-123],[25,292],[73,38]],[[66596,32311],[388,-53]],[[66984,32258],[107,205],[-40,458]],[[66260,33257],[-42,-887]],[[58560,65692],[828,-14],[-4,-214],[62,-17],[-7,-222],[219,-3]],[[59889,65553],[3,1019]],[[59892,66572],[-376,-1]],[[59516,66571],[-260,-5],[-13,-290],[-299,-30],[0,-113],[-286,3],[-1,-225],[-95,1]],[[61540,51002],[-8,-225],[287,-19]],[[53185,26367],[2,-667]],[[75569,67673],[-97,-124],[-176,36],[-7,-62],[-191,41]],[[72512,72252],[73,-79],[53,220],[778,-158]],[[73416,72235],[33,334],[31,-6]],[[73480,72563],[-30,34],[29,475],[-155,33],[4,55],[-147,49],[-93,458]],[[73088,73667],[-246,46],[-19,-332],[-174,33],[-36,-303],[-192,21]],[[12266,43990],[82,794],[-9,168],[78,471],[-8,115],[130,230],[37,158]],[[10495,45853],[-39,-105],[25,-158],[86,-130],[-48,-108],[58,-154]],[[86735,48554],[-3,-214],[107,-110],[98,27],[34,-139]],[[87067,48719],[26,210],[109,-44]],[[87339,48984],[-12,189]],[[87327,49173],[-90,-180],[-134,76],[-36,100],[-79,-128],[-152,-63]],[[60505,72903],[7,337],[199,321],[3,167]],[[60725,74232],[-931,55]],[[87085,51715],[-4,-32]],[[87081,51683],[643,-222]],[[87724,51461],[104,118]],[[87828,51579],[19,159],[106,319]],[[61104,28549],[163,-15],[-30,-201],[109,-142],[71,67],[33,-135],[74,23]],[[61524,28146],[1,34],[281,-25]],[[61806,28155],[95,-12],[45,1326]],[[61342,29056],[-140,-335],[-98,-172]],[[75956,70598],[-13,62]],[[75147,70616],[65,-13],[-12,-185],[49,-93],[50,-355],[87,-123]],[[75386,69847],[95,15],[74,171]],[[75555,70033],[183,25],[68,132],[57,253],[100,121]],[[75282,71161],[-47,-266],[-50,-20],[-38,-259]],[[87828,51579],[112,128],[386,239],[69,260],[57,4]],[[88452,52210],[157,253],[68,33],[59,176],[-194,174],[-193,-188]],[[84793,43068],[-39,232],[-2,249],[413,911]],[[85165,44460],[-132,387],[21,226]],[[84014,45961],[76,125],[157,-175],[78,-204]],[[84961,45299],[-10,102],[-309,958]],[[85963,27776],[713,-354],[209,-75]],[[86903,29034],[51,449]],[[86147,28920],[-184,-1144]],[[83020,49724],[-197,306],[-83,-66]],[[82740,49964],[28,-155],[-75,-126],[128,-175]],[[52966,65380],[5,-673],[190,1],[1,-337]],[[53162,64371],[564,3]],[[53726,64374],[-1,335]],[[53725,64709],[-1,672],[-95,0],[0,337],[-472,-1]],[[53920,62893],[-54,38],[-134,355],[-6,1088]],[[53162,64371],[-2,-629],[-29,104],[-119,-28]],[[53012,63818],[3,-791],[88,1],[2,-672]],[[51704,80917],[365,-375]],[[82540,51201],[200,-1237]],[[83540,50304],[-65,738]],[[52503,63854],[85,166],[74,-100],[-43,-110],[77,-68],[37,106],[125,-54],[86,182],[68,-158]],[[14071,36475],[136,-871],[304,-2029],[373,-2556]],[[14884,31019],[450,-3022]],[[15863,32340],[-244,1651],[-41,-16],[-282,1942],[186,77]],[[15482,35994],[-56,374],[29,12],[-48,335],[49,108],[-57,404],[-46,97]],[[15353,37324],[-114,-43],[-56,86]],[[15183,37367],[-160,69],[-159,-60],[-209,56],[-82,106],[-118,-72],[-39,258],[67,30],[-81,194],[20,182],[-66,230],[-74,87]],[[14282,38447],[-115,91],[-96,-13],[-112,119],[-202,-91]],[[13757,38553],[82,-564]],[[87550,30611],[500,-848]],[[88050,29763],[587,322],[-128,566],[337,265],[71,182]],[[84324,38290],[21,45],[249,-483],[96,-142],[-74,256],[145,-193],[19,89],[121,-107],[420,-250],[89,-103]],[[85410,37402],[2,152],[134,202]],[[85546,37756],[-102,152],[53,104],[-193,139],[-144,356]],[[85160,38507],[-61,181],[-342,256],[-89,229]],[[84668,39173],[16,-117],[-161,-245],[-80,-250],[-89,-101],[-30,-170]],[[80323,43842],[18,574],[-80,339],[1,417],[42,147]],[[80192,45306],[5,-152],[-74,-68],[8,-131],[-92,-87],[-101,42],[-54,-162]],[[59323,80927],[123,-64],[548,-27],[0,-194],[272,-15]],[[59324,81006],[-1,-79]],[[46931,38543],[-756,-63]],[[46175,38480],[40,-1332]],[[73372,71566],[190,-41],[-21,-219],[503,-117],[-12,-132],[104,-30]],[[74136,71027],[30,214],[67,105],[-26,179]],[[74362,72062],[-156,226],[-76,187],[36,277]],[[74166,72752],[-250,53],[-155,-302],[-281,60]],[[73416,72235],[-44,-669]],[[61860,57370],[75,-4]],[[61935,57366],[90,116],[20,169],[71,-4],[98,337],[7,281]],[[71392,55591],[-402,30]],[[70629,55643],[-18,-484]],[[64789,81494],[193,-121]],[[64982,81373],[94,85]],[[65076,81458],[-6,712],[-18,234],[133,-23],[16,-95],[103,180]],[[65304,82466],[-31,167],[-75,100],[15,344],[174,446],[37,639],[105,424],[57,150]],[[65586,84736],[-338,538]],[[65248,85274],[102,-414],[54,-117],[-65,-122],[5,-370],[-59,-120],[-171,-42],[-79,-243],[35,-257],[-18,-260],[-140,-41]],[[89607,31419],[51,-216],[622,-413]],[[90280,30790],[60,613]],[[89665,31859],[1,-12]],[[89395,32714],[-41,-20]],[[90280,30790],[-53,-530]],[[90227,30260],[191,491],[22,115],[74,-125],[32,88],[114,33]],[[91140,31848],[-24,98],[-86,-43],[-109,242],[-45,-23],[-124,148],[0,181],[-164,109],[-121,238],[-39,-40],[-70,148]],[[60686,57456],[-12,-1140]],[[61456,55892],[7,390],[-25,1],[10,628],[23,483]],[[52719,79886],[19,-101],[-67,-84],[21,-97],[-110,-232],[19,-159],[-85,23],[-49,-106],[-67,-532],[-66,-155]],[[10659,40522],[146,-119],[92,-394],[-68,-162],[64,-38],[71,-294],[-68,-42],[-83,-371],[80,-161]],[[10893,38941],[194,98]],[[11087,39039],[550,351]],[[10068,41227],[106,72],[154,-25],[88,-255],[137,-78],[106,-419]],[[55057,62341],[59,-38],[89,129],[70,-12],[92,-149],[16,-229],[67,-12],[128,-336]],[[55578,61694],[82,173],[183,57],[1,197],[100,-95],[58,182]],[[56002,62208],[2,467],[-203,3],[4,556]],[[55805,63234],[-752,11]],[[55053,63245],[-2,-392],[-188,1],[5,-522]],[[55805,63234],[3,448],[-126,2],[3,336],[-110,2],[3,672]],[[54762,64703],[8,-1342],[283,-3],[0,-113]],[[79463,38718],[30,295]],[[79311,39083],[31,-276],[-78,-261],[-82,-159]],[[58041,69239],[437,4]],[[58694,69354],[-120,602],[-8,121],[-73,-3],[-2,929]],[[58435,71005],[-520,20]],[[57915,71025],[-105,-273],[10,-170],[101,-119],[41,58],[127,-373],[-50,-129],[75,4],[-15,-148],[49,-73],[-73,-70],[14,-133],[-58,-106],[10,-254]],[[89074,38876],[172,-548]],[[89246,38328],[117,107],[58,215],[64,-9],[275,188],[93,-60]],[[90054,38916],[27,101],[-122,488],[-181,311]],[[89778,39816],[-255,146],[-283,-25]],[[88943,39297],[131,-421]],[[24388,31555],[-504,-173],[-368,-158],[-332,-92]],[[23184,31132],[341,-2912]],[[49643,77176],[7,23],[-564,665]],[[77546,38500],[-79,-938]],[[78357,37034],[29,329]],[[78095,38418],[-246,49],[-291,159]],[[71417,68133],[77,133],[-44,75],[27,151],[-136,74],[16,125],[-119,293],[90,193],[-51,95]],[[71277,69272],[-34,62],[4,262]],[[70577,69596],[-99,-38],[-72,-121],[-13,-228],[-104,-13],[-19,-308]],[[11447,13958],[20,-117]],[[11424,15238],[-152,-79],[-19,-82],[194,-1119]],[[48756,47387],[926,48]],[[49682,47435],[10,5],[-17,1006]],[[49663,49117],[-930,-46]],[[55267,47863],[3,307],[37,-67],[152,64],[30,-69]],[[55489,48098],[6,940]],[[50848,44126],[756,22]],[[9224,40454],[348,174],[-17,-108],[99,-320],[-2,-178],[232,113],[2,-275],[-35,-194],[89,-295]],[[9940,39371],[78,23],[54,140],[148,-107],[204,128],[129,16],[66,75],[-125,791],[165,85]],[[9397,40922],[-30,-195],[-136,-214]],[[59971,57505],[663,-45]],[[60588,58876],[2,284],[-189,6],[4,336],[-189,5]],[[60213,59172],[-2,-278],[-127,-219],[2,-244],[-121,-19],[32,-137],[-89,-24],[67,-176],[-104,-25],[102,-113],[-2,-432]],[[87931,50050],[-27,-268],[99,-56],[155,76]],[[88158,49802],[29,395],[-55,-27]],[[88132,50170],[-101,108]],[[88031,50278],[-100,-228]],[[39570,70291],[88,12],[78,-1649],[82,11],[32,-668],[382,51]],[[40232,68048],[831,109]],[[40298,74112],[-734,-101]],[[62237,73899],[-80,5],[7,-374],[98,-69],[-28,-190],[61,-13],[-50,-139]],[[39710,75374],[-18,-208],[-115,-181],[-62,25],[-130,-138],[-16,-296],[-41,-172],[-89,61],[-151,-522]],[[38693,43081],[0,0]],[[38617,43239],[171,-218],[4,-87]],[[38944,42959],[-94,58],[-12,230],[-64,17]],[[38734,43083],[0,0]],[[55802,65360],[856,-23]],[[56653,66561],[-4,959]],[[56185,68437],[-70,-188],[-171,39],[-137,-252],[-46,-187],[-146,-10],[-150,-278],[-45,1]],[[79276,40022],[24,-118]],[[79577,39927],[52,545]],[[75736,60061],[-230,22],[-192,184],[-101,-30],[-66,-214]],[[75147,60023],[-32,-212],[48,-101],[-34,-119],[90,-251]],[[74705,60451],[-1,-73],[127,-185],[29,81],[178,-53],[109,-198]],[[75274,61179],[-220,48]],[[53314,35411],[-598,-12]],[[91605,25484],[557,-211]],[[92162,25273],[47,-18]],[[92209,25255],[84,107],[22,153],[123,-97],[191,43],[23,313],[71,-7],[9,-117],[132,-23],[27,80],[15,422],[-68,276],[84,119],[143,-142],[6,259],[-83,24],[-40,216],[92,100],[79,-71],[57,111]],[[92269,27940],[-54,19]],[[91963,27217],[-20,-254],[-95,79],[-49,-177],[-36,50]],[[72654,44109],[-11,-175]],[[72643,43934],[560,-121],[-6,-85]],[[73197,43728],[190,-35]],[[73488,44827],[-469,22],[-315,92]],[[57897,71025],[18,0]],[[58572,74004],[17,-48],[-146,-149],[-32,-158],[-125,-81],[-14,-175],[-108,-24],[-24,-333],[-111,-161],[28,-208],[-85,-463],[-69,-89],[64,-188],[-76,-28],[68,-253],[-68,-169],[34,-116],[-81,-68],[53,-268]],[[64285,37470],[-44,-1217]],[[13949,13221],[114,-63],[125,39],[306,-112]],[[14494,13085],[-53,482],[94,282]],[[13145,13277],[51,-307],[-137,-368],[-60,-232],[49,-289]],[[85849,60731],[38,-70],[207,88]],[[86427,62218],[-9,299],[-86,8],[-33,-105],[-294,-5],[-362,167],[-260,284]],[[85151,62575],[27,-152],[-36,-101],[98,-144],[23,-438],[39,-81],[175,46],[59,-275],[208,-113],[105,-586]],[[71825,57026],[261,47],[169,-146],[53,-242]],[[73039,57177],[-82,168],[-165,28],[0,472]],[[85354,53650],[71,-400],[17,-335],[-30,-469]],[[85412,52446],[143,-33],[82,46],[224,-70],[36,104],[144,79],[33,162],[-50,169],[91,95],[162,-138],[143,387],[183,114]],[[86603,53361],[134,203],[-137,109],[-17,76]],[[86583,53749],[-101,296]],[[85908,53659],[-183,120],[-139,24],[-70,-124],[-162,-29]],[[27548,26207],[-35,313],[-185,-41],[-35,327],[-188,-59],[-80,617],[-95,-29]],[[38747,43737],[233,66],[206,-22],[10,-167],[98,3],[12,-206],[219,32],[-48,291],[-238,-40],[35,214],[-155,-41],[-101,112]],[[62257,70807],[-1,97],[-125,403],[-98,98],[-60,268],[15,147],[-72,184],[6,135]],[[61430,72798],[13,-88],[-77,-220],[53,-288],[-46,12],[-76,-197],[-148,62],[-19,-94]],[[87691,49052],[92,-41],[118,150]],[[87797,50066],[79,-129],[55,113]],[[88031,50278],[7,90],[-137,99],[-37,-189],[-76,-86]],[[87788,50192],[9,-126]],[[37853,41764],[412,83],[579,82]],[[38200,43172],[4,-77],[-462,-79]],[[65076,81458],[130,23],[254,-195],[105,21],[101,101],[211,-80],[121,74]],[[65998,81402],[-98,181],[-6,124],[-81,61],[26,129],[-196,-36],[-65,185]],[[65493,82551],[-50,-90],[-139,5]],[[68596,73995],[750,-116]],[[69346,73879],[24,435],[87,15],[10,165],[220,-42]],[[69687,74452],[-29,61],[27,446],[-94,17],[31,548],[-97,165],[116,125],[-17,178],[-62,103],[-54,-57],[-119,110],[-20,224],[-63,-63],[-49,136],[42,115]],[[68980,77010],[22,-125],[-70,-343],[95,-40],[8,-225],[-85,36],[53,-198],[-4,-258],[-62,-107],[-158,-94],[-23,-120],[-85,-27],[-49,-397]],[[68977,71879],[154,-24],[8,167],[376,-61]],[[69654,72777],[-92,53],[26,467],[-188,30],[27,485],[-81,67]],[[69062,70004],[537,-69]],[[69599,69935],[27,493]],[[67955,67316],[18,-1213]],[[67973,66103],[399,-34],[68,106],[20,392]],[[68543,68084],[-597,48]],[[67946,68132],[9,-816]],[[67936,69082],[10,-950]],[[68735,68053],[77,1422]],[[67923,70231],[13,-1149]],[[54631,43162],[4,10]],[[85103,48957],[75,-57],[5,-130],[197,-480]],[[86138,48987],[-19,38]],[[86033,49056],[-42,281]],[[85880,49461],[-194,56],[-109,-141],[-61,44]],[[58393,78087],[-583,93]],[[69339,24405],[401,-60]],[[69149,25440],[-5,-293],[-68,-254],[32,-169],[214,-175],[17,-144]],[[56254,49024],[-1,-421]],[[57188,49655],[3,464]],[[71277,69272],[576,-108]],[[72157,69163],[82,1282]],[[38636,39042],[546,91]],[[70400,57255],[90,411],[49,-30],[30,150]],[[70569,57786],[-75,270],[-74,117],[-3,153]],[[69637,58157],[18,-192],[63,-143],[4,-375],[106,-564],[-15,-61]],[[83233,34906],[60,15],[24,-241],[101,-224],[40,279],[150,-65],[123,250],[201,-4],[238,423],[262,-185],[291,-326]],[[83989,36316],[-137,87],[-101,-61],[-172,262],[-300,-86]],[[82886,36672],[-36,-74],[104,-408],[62,-42],[24,-233],[211,-250],[10,-179],[-131,-391],[103,-189]],[[53613,82422],[117,250],[-90,258],[68,233],[-49,153],[36,103],[102,25],[31,288]],[[53828,83732],[40,31],[-25,447],[-122,5]],[[53721,84215],[-40,-80],[-126,-44]],[[53555,84091],[-160,-134],[-20,-183],[-78,-149],[-61,-284],[-133,18],[-233,-318],[-65,-208]],[[88758,17663],[227,-107]],[[89081,18661],[32,275],[-55,305],[-95,98]],[[88963,19339],[-71,-181],[-28,-480],[13,-253],[-84,-96],[18,-346],[-53,-320]],[[87651,49995],[16,123],[130,-52]],[[87788,50192],[-40,217],[62,1019]],[[87810,51428],[-86,33]],[[87081,51683],[-9,-359]],[[40176,48877],[749,106],[183,50]],[[41108,49033],[-39,968]],[[37159,49381],[1271,247]],[[38357,50943],[-51,-163],[-72,5],[-26,-215],[-79,-22],[-177,389],[-47,-161],[-176,158],[-101,-39]],[[63015,54277],[10,404],[-69,117],[10,337]],[[40780,76597],[-1178,2168]],[[38694,77332],[312,-3401]],[[40239,47544],[-63,1333]],[[38668,48653],[26,-501]],[[77628,43230],[22,-177],[195,1],[-46,-389],[210,-69]],[[78009,42596],[192,-37],[-20,-239],[103,32],[41,102],[189,-13],[-4,-53]],[[78510,42388],[69,86],[351,-69],[8,123]],[[78829,42879],[-98,132],[-47,188],[-78,22],[-153,212]],[[77905,44072],[-12,-207],[-162,31],[-74,-159],[-29,-507]],[[81323,50130],[-111,189],[-88,42],[-93,171]],[[80642,50323],[264,-407],[-69,-199],[160,-295]],[[69890,66062],[77,118],[51,260],[153,-20],[86,104]],[[70257,66524],[26,162]],[[69779,67937],[-93,10],[-16,-280],[-193,-26]],[[69031,66499],[-17,-333]],[[83427,41466],[226,220]],[[83653,41686],[377,373]],[[83267,43126],[47,-141]],[[34176,20304],[-141,-2],[-55,-66],[-156,91],[-89,-38],[-21,244],[-96,-23],[-18,221],[-252,-60],[-202,118],[-144,188],[-90,202],[-13,164],[-121,-31],[-30,357],[-170,-43]],[[32578,21626],[-406,-123]],[[32172,21503],[57,-668],[203,52],[57,-657],[186,48],[14,-164],[188,49],[14,-165],[188,47],[52,-660],[26,7],[24,-331],[65,18],[27,-336],[127,28],[35,-318]],[[64678,78292],[795,-92]],[[65675,78177],[-79,568],[-81,351],[-18,393]],[[65497,79489],[-268,32],[-505,-125]],[[71479,58165],[-241,70]],[[71238,58235],[-174,5],[-137,-68],[-358,-386]],[[23114,12962],[187,75],[143,-1141]],[[25804,13517],[68,139],[-43,171],[49,118]],[[64706,85543],[61,-82],[82,194],[-58,51],[-85,-163]],[[64641,84965],[36,16]],[[64677,84981],[-36,-16]],[[63633,82598],[191,-26],[-3,-54],[250,100]],[[64071,82618],[242,-8]],[[65248,85274],[-246,328],[-27,-164],[-85,-45],[23,-147],[-90,-318],[-91,-137],[-49,86]],[[64683,84877],[-26,-313],[-248,-403],[-231,-438],[-75,-29],[-91,-196],[-128,-120],[-47,-195],[-79,-101],[-21,115],[-79,9],[7,111],[-241,30]],[[71153,20166],[129,1892]],[[70704,21877],[99,2],[171,-157],[-17,-107],[-186,-20],[-83,-138],[-71,-340],[54,-242],[85,-103],[92,-315],[-118,-98],[268,5],[78,-45],[-14,-105],[91,-48]],[[85143,52379],[252,-86]],[[85395,52293],[17,153]],[[95399,96398],[113,45],[180,-82],[79,36]],[[95771,96397],[-4,365]],[[95387,97006],[12,-608]],[[74625,33932],[4,84],[-90,158],[-22,135],[-87,75],[-12,177],[-62,50],[-76,335],[46,177],[-46,42]],[[27699,10812],[-435,-138],[-3,325],[-78,122],[58,129],[25,224],[-41,129],[-1,259],[63,73],[-33,348],[-166,-55],[-18,163],[-374,-125]],[[27945,10892],[-168,1572],[242,76],[-138,1300]],[[27881,13840],[-169,-54],[-12,110],[-93,-31],[-24,218],[-97,-31],[-21,102],[-173,-56],[-24,217],[-236,-88]],[[38163,43809],[-239,-145],[-131,-293],[-94,-50]],[[77173,49570],[167,-389]],[[77340,49181],[187,-169]],[[78290,50042],[17,172],[-71,277]],[[83899,40708],[-104,181],[-77,-20],[-65,817]],[[68936,77133],[-97,85],[-567,83],[5,113],[-191,26]],[[68086,77440],[-89,-1224]],[[65586,44773],[360,-43]],[[65946,44730],[15,281],[153,-17],[11,223],[127,-16],[103,157],[5,113],[191,-24]],[[66551,45447],[13,279]],[[67988,42522],[72,69],[139,-22]],[[68037,43541],[-49,-1019]],[[89061,36737],[5,-124],[220,83]],[[89286,36696],[85,200]],[[89246,38328],[-165,-165],[-137,42],[-93,-339],[-98,-170],[-69,-6],[-8,-127],[-87,-13]],[[88589,37550],[112,-270]],[[60086,29155],[551,-41]],[[51326,71182],[671,21]],[[51997,71203],[-21,1694]],[[51886,72893],[-855,-44]],[[51031,72849],[28,-1687]],[[66513,34983],[712,-97]],[[67225,34886],[139,275],[150,686],[30,248],[148,435]],[[67736,37444],[-431,67],[-21,-339],[-189,35],[-21,-334],[-188,37],[-10,-168]],[[66876,36742],[101,-20],[79,-128],[-62,-1062],[-552,110]],[[88132,50170],[70,251],[109,10],[125,130],[39,124],[-85,78],[52,434]],[[88115,51318],[-305,110]],[[73119,29996],[109,1340]],[[73349,28129],[81,-29],[132,-428],[105,-118]],[[73667,27554],[29,240],[546,-158]],[[73835,29484],[-371,91]],[[43238,19384],[-55,1276]],[[41837,15183],[566,84]],[[61824,26136],[-379,32]],[[61445,26168],[-568,51]],[[60679,25900],[-18,-659]],[[13730,38752],[397,172],[-1,115],[330,142]],[[14456,39181],[391,180],[-48,349],[-153,-38],[-47,94],[-57,381],[6,176],[-45,281],[90,57],[-40,303],[31,14],[-60,426]],[[14524,41404],[-328,-854]],[[13706,38921],[24,-169]],[[71342,40314],[405,-81]],[[71763,40960],[-370,73]],[[71867,38849],[98,1337]],[[60092,67899],[451,-2]],[[60556,69807],[-145,122],[-79,-88],[-17,-128],[-77,47],[-20,-150],[-63,-39]],[[60155,69571],[-36,-117],[-126,-130],[-94,16],[-25,-193],[-106,-103],[109,-318],[-29,-233],[128,-44],[117,-297],[-1,-253]],[[66614,38650],[379,-70],[-19,-333],[794,-142]],[[67795,38612],[31,597]],[[67826,39209],[-991,197]],[[66646,39446],[-29,-459]],[[21889,18556],[113,-206],[124,-445]],[[22327,21208],[-165,-62],[-163,-247],[58,-463],[-113,-43],[-10,-191],[82,-659],[-418,-171]],[[92016,29746],[-97,-232],[-121,-508],[-48,34],[-83,-502],[32,-22],[-73,-313]],[[71556,48761],[311,309]],[[71976,49584],[0,113]],[[71976,49697],[-198,202],[-279,10],[-279,234],[-85,178]],[[66455,79446],[-382,44],[19,502],[-191,77],[6,168],[-80,8]],[[65827,80245],[-157,-196],[-173,-560]],[[63465,81996],[86,-187],[513,-253]],[[64064,81556],[-22,446],[-51,61],[49,207],[31,348]],[[30566,41948],[-897,-237],[2,-19],[-561,-158]],[[29084,41189],[55,-698],[121,-1329],[-11,-3],[87,-940]],[[50315,83173],[-241,396]],[[23887,39584],[1313,434],[1492,464],[19,-150],[113,54],[176,-232]],[[27010,42886],[-88,-85],[-194,-57],[53,-612],[-7,-254],[-1127,-338],[-1526,-490],[-3,32],[-384,-122]],[[23734,40960],[153,-1376]],[[85395,52293],[227,-80]],[[85622,52213],[809,-273]],[[86431,51940],[226,-85]],[[86712,53015],[-22,123],[-115,78],[28,145]],[[72082,73520],[38,132],[8,378],[-21,165],[94,-19],[32,489],[-53,155],[66,17]],[[72197,75531],[-158,-31],[-23,-278],[-197,335],[-25,-290],[-184,39]],[[29563,33119],[-740,-200]],[[28823,32919],[13,-266],[-123,-154],[34,-158],[-38,-267],[32,-139],[95,-94],[-24,-198],[67,-81],[-52,-264]],[[28827,31298],[36,-47],[-37,-557],[63,-61],[369,106],[127,182],[77,-174],[21,124],[-53,352],[99,48],[213,-99]],[[73197,42450],[444,-108],[11,143],[178,-17]],[[73830,42468],[4,114]],[[73197,43728],[-98,-1252]],[[72907,74714],[76,-14]],[[72983,74700],[615,-123]],[[73598,74577],[73,1161]],[[73671,75738],[6,110],[-126,21],[10,156],[-225,-58],[-111,34],[-70,298]],[[73155,76299],[-152,24]],[[9125,41888],[1,12]],[[9126,41900],[-1,-12]],[[8977,42127],[-184,-91]],[[8793,42036],[24,-280],[196,-25],[6,309],[-42,87]],[[34115,49241],[-7,187],[82,165],[-82,225],[-73,9],[31,112]],[[34066,49939],[-124,-26],[-6,170],[-106,88],[-70,-65]],[[33760,50106],[-5,-187],[-69,-153],[-91,-35],[-77,-148],[39,-340],[-102,-23],[-14,-144]],[[65931,53724],[7,137],[68,-75],[130,17]],[[66141,54092],[-117,28],[-148,282],[-25,148],[-97,209]],[[65754,54759],[-162,-127],[-22,-285],[17,-296],[78,-137],[-12,-122],[-74,-44]],[[62426,57321],[599,-59]],[[63025,57262],[15,234],[58,91],[10,497],[-94,75]],[[63014,58159],[9,452]],[[61935,57366],[491,-45]],[[60817,62976],[-12,-1143]],[[76296,37273],[269,-59]],[[76657,37470],[109,1232]],[[55437,61002],[-7,435],[88,252],[60,5]],[[64358,85634],[271,84],[-132,37],[-139,-121]],[[63993,85816],[169,-79],[20,53],[-183,85],[-6,-59]],[[64683,84877],[-6,104]],[[64641,84965],[6,-145],[-80,-175],[-82,218],[-94,-36],[-50,77],[-85,-61],[21,190],[-77,156],[-22,177],[-56,-15],[-29,190],[-57,-36],[-140,166],[-21,208],[-108,-43],[11,-149],[-205,-310],[-73,50],[-182,-53],[-71,-101],[-136,-9],[-155,-88],[-113,-185],[81,-55],[45,-194],[140,200],[44,-79],[5,224],[99,49],[-32,-340],[-118,-105],[-94,-247]],[[11031,13738],[416,220]],[[10371,16467],[97,-326],[96,-473],[139,-558],[98,-638],[96,-228],[134,-506]],[[73667,27554],[-47,-147],[66,-453],[36,159],[102,-127],[17,-102],[-125,-71],[139,-24],[73,-233],[124,-63],[199,-177],[26,-120],[162,-137],[206,133],[95,108],[127,379],[65,105],[108,601]],[[56157,41954],[267,-6]],[[56219,42664],[-19,-331],[-39,1],[-4,-380]],[[59445,45520],[657,-23]],[[60102,45497],[7,994]],[[59915,46887],[-474,-252]],[[30619,89295],[314,-28],[223,-428],[102,-47],[92,317],[178,378],[-9,267],[130,181],[28,-187],[86,8],[-33,208],[61,194],[119,208],[-121,138],[-114,-64],[-116,69],[-142,-175],[-189,-37],[-271,51],[-56,-273],[-80,-117],[-27,-166],[-83,-151],[-3,-199],[-89,-147]],[[23368,44239],[366,-3279]],[[26913,43910],[-27,187],[-81,5],[-10,111],[-114,-34],[-127,332],[-60,-18],[-42,526],[-173,148],[-229,-89],[-75,121],[-18,167],[-62,90]],[[23977,38786],[377,-3341]],[[27154,37236],[65,229],[-14,334],[25,106],[-48,522]],[[23887,39584],[90,-798]],[[84981,96536],[16,-100],[165,-157],[18,-206]],[[85180,96073],[28,70],[138,-170],[28,-134]],[[85374,95839],[40,25]],[[85414,95864],[-108,487],[-36,280],[-354,866],[-152,258],[-25,-33],[293,-616],[40,-183],[17,-377],[-108,-10]],[[84591,97958],[88,-224],[39,97],[-82,167],[-45,-40]],[[84411,98213],[56,-143],[51,81],[-107,62]],[[83896,98724],[349,-394],[52,85],[-300,347],[-101,-38]],[[82845,94816],[1176,-329]],[[84021,94487],[152,1649],[22,-7],[73,697]],[[84268,96826],[-72,162],[-350,176],[-137,-134],[-81,-202],[-1,-291],[34,-323],[-108,-289],[-92,-133],[0,-111],[-96,-223],[-67,-40],[-62,-264],[-120,24],[-94,-307],[-177,-55]],[[82566,99608],[103,-374],[297,-372],[155,-255],[102,-106],[297,142],[40,160],[111,109],[-301,274],[-29,-81],[-190,68],[-12,84],[-316,322],[-251,116],[-6,-87]],[[82166,99810],[249,-176],[-36,182],[-208,75],[-5,-81]],[[81860,99811],[33,-123],[80,-1],[-13,152],[-100,-28]],[[80295,99934],[104,-66],[39,63],[-141,68],[-2,-65]],[[78949,68673],[48,-409],[-74,-467],[16,-356],[37,-312],[-75,-122]],[[78901,67007],[159,-155],[154,215],[70,-61],[151,21],[157,-176],[67,39]],[[79847,67033],[1,150],[121,136],[170,39]],[[80286,67512],[-363,624]],[[79923,68136],[-177,-126],[-171,161],[-224,85],[-66,146],[-16,279]],[[73844,70150],[72,400],[53,132]],[[73969,70682],[167,345]],[[73372,71566],[-30,-332],[-93,19],[-332,-211],[-70,-95]],[[72847,70947],[-26,-388],[182,-155]],[[50354,89595],[483,194],[55,-131]],[[51675,90675],[-104,297],[-74,-8],[-49,-193],[-145,28],[-31,-60],[-221,31],[-76,-41],[-23,150]],[[50952,90879],[-166,-49],[-38,-132],[-56,93],[-102,-200],[-225,-74],[19,-231]],[[50384,90286],[-4,-163],[-158,-76]],[[50222,90047],[-39,-220],[171,-232]],[[55688,41949],[469,5]],[[56215,43669],[-729,0]],[[55486,43669],[-50,-503],[-182,-1]],[[24736,95090],[79,-118],[51,95],[-51,104],[-79,-81]],[[24471,94663],[13,-76],[94,94],[3,250],[-110,-268]],[[24523,93151],[132,-27],[160,80],[43,114],[84,8]],[[25070,93715],[60,227],[141,333],[-50,551],[-95,348],[-66,-105],[-67,38],[-83,-316],[-73,-108],[65,-185],[-63,-302],[-86,-260],[-73,-60],[124,281],[34,394],[-31,143],[-121,16],[-141,-77],[-103,-175],[22,-170],[-52,-334],[0,316],[-42,99],[26,150],[-127,-116]],[[19863,89861],[13,113],[187,47],[9,-122],[200,99],[83,-245],[224,-110],[3,366],[80,102],[138,60],[83,199],[453,496],[94,422]],[[21288,91487],[-7,-79],[-171,-184],[-147,-44],[-129,-111],[-181,-77],[-225,-162],[33,-152],[58,23],[-63,-346],[9,-235],[-56,319],[-177,249],[-229,14],[-222,-109],[44,-181],[-121,91],[-372,-50],[-104,16],[-328,185],[-69,74]],[[72361,39485],[41,597]],[[41776,47105],[756,92],[1131,99]],[[43604,48960],[-1727,-207],[-189,-14]],[[41688,48739],[28,-297],[60,-1337]],[[75047,55659],[170,-99],[152,319],[56,-93],[58,70]],[[75421,56569],[-300,50],[-71,-52]],[[67254,41325],[674,-122]],[[67931,41258],[57,1264]],[[67364,43655],[-73,-1327],[23,-4],[-40,-667]],[[14486,3518],[-31,-15],[-121,722],[-795,-407],[9,-52],[-1573,-829]],[[11975,2937],[-33,-350],[66,-497],[-16,-293],[48,-31],[159,-495],[-70,-237],[116,25],[110,150],[206,440],[171,170],[181,286],[-19,57],[157,222],[166,129],[230,70],[138,198],[220,89],[46,130],[209,102],[150,-121],[112,236],[15,163],[178,49],[-29,89]],[[12118,4392],[439,233],[-10,55],[774,408]],[[13321,5088],[-160,944],[20,12],[-107,641],[416,205]],[[13490,6890],[-56,320],[64,37],[-128,738]],[[12011,7276],[14,-436],[47,175],[185,-118],[197,-2],[-203,-276],[15,-147],[-131,-115],[-55,52],[-11,302],[-91,21],[99,-504],[37,-409],[14,-443],[-75,-311],[65,-673]],[[81006,78672],[102,-75],[170,71],[196,-59],[-55,-554],[107,-31]],[[81526,78024],[229,1036],[121,398],[40,274],[122,408]],[[81467,80480],[-49,-517],[-132,-277]],[[14486,3518],[60,102],[7,206],[64,-169],[-55,-143],[24,-125],[185,-35],[0,104],[-92,69],[23,183],[133,-166],[-11,334],[-82,-5],[35,159],[0,265],[53,96],[-131,11],[-15,137],[-103,70],[-48,191],[-117,203],[-19,-72],[118,-324],[-88,16],[-135,337],[-161,188]],[[14131,5150],[-755,-378],[-55,316]],[[12118,4392],[23,-380],[4,-450],[-50,-120],[11,-182],[-131,-323]],[[9058,40555],[-67,330],[60,169],[-81,40],[-43,123],[78,230],[-96,-98],[3,247],[-96,6],[-33,-148],[-125,-274],[-82,2],[-98,-280],[-35,-200],[-82,-157],[-91,-72],[-82,117],[-54,-72],[151,-363],[51,-180],[-27,-292],[45,-16],[-24,-224]],[[85984,49630],[78,673]],[[85735,50868],[-74,-40]],[[85661,50828],[-103,-42],[-115,-200],[-137,-37],[-81,55]],[[85225,50604],[-83,-581],[157,-245]],[[64612,43648],[-199,26],[2,226],[-110,68],[-376,44]],[[34313,38186],[982,206]],[[28387,31166],[440,132]],[[11355,38119],[-41,261],[-90,-42],[-103,648],[-34,53]],[[10893,38941],[33,-92],[-152,-75],[-38,-180],[29,-177],[-135,-166],[-5,-195]],[[41274,63639],[-74,1670]],[[41199,65348],[-1252,-171],[58,-1158]],[[89396,27449],[652,-453]],[[90061,28813],[-38,15],[28,273],[-305,18],[-348,-149],[-34,17]],[[89364,28987],[5,-194]],[[63955,67547],[487,-43],[1,169],[-196,77],[-31,100],[85,102],[48,-160],[37,54],[151,-14]],[[75396,61152],[55,223],[118,81],[56,-68],[103,446]],[[75613,62135],[-153,-39],[-70,113],[-75,304],[-164,-52],[-54,75]],[[74759,47086],[-55,-1470]],[[75177,45373],[120,-16],[84,122]],[[75381,45479],[123,1519]],[[74860,47073],[-101,13]],[[89778,39816],[-130,402],[-66,391],[-66,532],[-93,241],[-160,99],[-20,-269],[49,-462],[-14,-176],[-55,-52]],[[19123,53431],[96,-780],[-86,-37],[307,-2529]],[[55627,46410],[78,132],[64,-22],[-42,148],[13,175],[97,144],[26,202],[96,57]],[[55959,47246],[-211,-4],[-9,816]],[[55739,48058],[-190,-30],[-60,70]],[[20268,6631],[38,163],[136,124],[54,-131],[45,80],[120,31],[13,194],[111,52],[12,149],[126,68],[50,-185]],[[20973,7176],[162,-124],[50,13],[69,265],[11,208],[81,190],[105,-121],[73,74],[91,-58],[77,116]],[[21692,7739],[-285,2089]],[[21407,9828],[-201,-83]],[[14131,5150],[-273,449],[-135,337],[178,110],[195,-53],[77,-97],[-299,66],[-77,-130],[228,-394]],[[14025,5438],[310,156],[-72,426]],[[14230,6202],[-138,260],[-1,244],[-55,134]],[[14036,6840],[-70,4],[-28,-140],[-119,90],[-146,190],[-183,-94]],[[14859,837],[194,290],[-142,-111],[-52,-179]],[[14671,1109],[99,-37],[-11,104],[-88,-67]],[[14420,1390],[51,-76],[100,50],[51,235],[82,71],[-51,-259],[240,-242],[59,35],[157,276],[-120,109],[20,233],[-43,189],[-66,50],[-33,241],[-91,-29],[-48,-193],[-160,-77],[-93,-176],[-40,-166],[-15,-271]],[[14430,1030],[68,51],[82,244],[-150,-295]],[[63551,49907],[87,-225],[26,-302]],[[64328,50469],[-235,16],[13,337],[-286,215]],[[63820,51037],[-84,-145]],[[63736,50892],[-148,-224],[-57,-174],[-21,-400],[41,-187]],[[35206,44731],[1149,243]],[[36355,44974],[-21,172],[-90,-1],[-6,153],[-69,398],[-91,26],[-52,369]],[[36026,46091],[-51,223]],[[34706,45054],[29,-44],[-132,-204],[71,-186]],[[12770,30044],[721,339],[1393,636]],[[13826,36424],[92,-190],[100,-648],[-73,-149],[-35,-194],[27,-277],[-48,-109],[-149,-97],[-177,-442],[-20,-181],[-98,-104],[-96,-220],[-176,-114],[-72,119],[-143,78],[-24,157],[-96,-15],[-12,-120],[-92,-44],[-72,-176],[110,-707],[-428,-197]],[[42365,50162],[1192,133]],[[42258,52561],[28,-693],[13,0],[66,-1706]],[[22208,12954],[282,-2175]],[[83160,84946],[89,961],[-10,31],[92,985]],[[83331,86923],[-25,7],[79,673]],[[82864,87743],[-30,-251],[-207,-451],[-145,-37],[-34,-221],[-231,-232],[-48,-161],[107,91],[45,-291],[-211,56],[-20,-220],[-131,37],[-19,-219],[-84,-203],[-191,51],[-29,-331]],[[56581,23829],[6,-86],[107,-49],[40,64],[121,-255],[50,-216]],[[56905,23287],[141,166],[60,-26],[81,169],[174,164],[274,-2],[92,170]],[[57727,23928],[-73,111],[-108,40],[4,167],[-94,116],[-91,212],[-4,398]],[[56980,24984],[-379,10]],[[75633,69078],[21,316]],[[75654,69394],[13,185],[-46,9],[-66,445]],[[75386,69847],[-202,-110],[-68,-184],[-37,59],[-132,-192]],[[43046,38820],[909,105]],[[43955,38925],[-24,838]],[[43931,39769],[-936,-109]],[[42995,39660],[25,-174],[26,-666]],[[41420,60275],[1555,168]],[[75651,65762],[289,-623]],[[76220,65168],[120,59],[27,130],[132,91]],[[78231,67722],[145,331],[91,27],[42,267],[61,102],[12,368]],[[78582,68817],[-72,26],[-182,189],[-29,-46],[-151,144],[-75,-140],[-248,256]],[[77825,69246],[-64,-275],[-111,-59],[-112,-324]],[[89417,33639],[267,199]],[[89673,33975],[2,199],[72,-34],[0,248]],[[89747,34388],[-263,-82],[-149,-9]],[[89335,34297],[-19,-205],[37,-95],[-29,-364],[93,6]],[[79763,72383],[159,106]],[[79922,72489],[122,120],[136,285],[69,-6],[244,273],[75,132]],[[80568,73293],[118,238],[-18,68]],[[80511,74118],[-140,-94],[-220,126],[-228,-49]],[[79923,74101],[-47,-301],[-78,-79],[-76,53]],[[62852,49004],[113,-197],[209,-17],[8,-174],[64,-86],[77,-300],[133,-15],[44,-232],[56,-10],[205,248],[71,-51],[42,86]],[[63551,49907],[-1,-256],[-134,2],[10,-172],[-316,30],[-35,120],[-208,39]],[[64346,81104],[-38,184],[-81,140],[-153,-84]],[[64074,81344],[-32,-38],[-78,227],[-112,-243],[-122,-121],[-42,-160],[-119,-91]],[[74166,72752],[-3,281]],[[74163,73033],[-20,197],[-91,408],[42,220]],[[74094,73858],[8,65]],[[74102,73923],[-45,-31],[-99,141],[-9,154],[-371,57],[20,333]],[[72983,74700],[50,-174],[-13,-142],[82,-345],[-45,-275],[31,-97]],[[68432,80772],[374,-157],[7,-84],[99,130],[-56,89],[-73,-43],[-252,100],[-99,-35]],[[68958,78968],[-93,167],[21,122],[-73,439],[16,473],[-45,224],[-104,29],[1,-120],[-143,-111],[-103,62],[-33,-66],[-115,89]],[[68287,80276],[-98,-1393]],[[68189,78883],[-71,-1001]],[[68118,77882],[-32,-442]],[[21739,3191],[1092,443]],[[22357,7144],[-142,-58],[-124,936],[-90,-70],[-68,-185],[10,-140],[-214,183],[-37,-71]],[[20973,7176],[25,-303],[-43,-228],[78,-51],[98,77],[84,-56],[8,-262],[78,-3],[51,-267],[100,-171],[-24,-195],[13,-509],[80,-224],[59,-21],[110,-526],[43,-411],[-70,-259],[11,-362],[65,-214]],[[15181,1242],[34,-30],[73,424],[-69,-175],[-38,-219]],[[15459,1720],[-3,-267],[64,-118],[-50,-123],[-88,-26],[-132,85],[62,-130],[-81,-88],[22,-251],[-69,-161],[64,-71],[-65,-209],[111,-126],[927,460],[486,255],[1270,590]],[[14827,0],[82,139],[-88,-41],[6,-98]],[[77488,74301],[359,-70]],[[78117,75285],[27,136],[-236,54],[21,323],[-46,155]],[[77883,75953],[-182,35]],[[77701,75988],[18,-144],[-87,-110],[9,-273],[-61,-81],[-19,-200],[-96,-32],[-116,-197],[-1,-131]],[[29301,35971],[116,-1248]],[[85622,52213],[120,-701],[-81,-684]],[[86131,51402],[-107,183],[157,11],[121,168],[25,175],[104,1]],[[43004,79617],[-696,-87],[-9,223],[-386,-49],[-46,1203],[-424,-47],[-35,880]],[[63149,37040],[113,-221]],[[63262,36819],[30,408],[121,113],[-31,232]],[[72643,43934],[-40,-610]],[[72952,38343],[94,-21],[-47,-669]],[[73183,37612],[566,-132]],[[73820,38426],[-188,43],[4,57],[-187,42],[12,168],[-377,89]],[[33515,50558],[123,-157],[37,-167],[85,-128]],[[34066,49939],[56,94],[-25,267],[21,189],[77,82],[-34,153],[-35,494]],[[34126,51218],[-835,-180]],[[47026,82819],[-24,1072]],[[46217,83850],[-1,-204],[-86,-138],[73,-41],[-13,-216],[44,-54],[-28,-208],[59,-182],[36,-491],[47,-213],[398,59]],[[28056,16085],[180,-1759],[-123,47],[-85,-94],[16,-85],[-110,-313],[-53,-41]],[[78050,71613],[88,-205],[-28,-45]],[[78110,71363],[49,-5],[215,-498]],[[78374,70860],[125,15]],[[78499,70875],[30,198],[91,300],[-16,115],[90,439],[116,185]],[[78635,72310],[-103,-122],[-78,-174],[-314,-208],[-90,-193]],[[17529,62842],[-1684,-647],[-366,-163],[1,-67],[-208,-247],[19,-49],[-259,-103]],[[56307,57014],[-667,4]],[[55640,57018],[-6,-1052],[-62,-196],[46,-21]],[[97702,97461],[-160,128]],[[97360,97486],[4,-278]],[[73575,23216],[40,101],[30,317],[46,113],[-30,467],[20,317]],[[73681,24531],[-881,212]],[[34204,25883],[2190,487]],[[35610,28775],[-95,-20]],[[35515,28755],[39,-553],[-190,-38],[24,-334],[-378,-83],[24,-324],[-343,-77],[-8,-115],[-195,-38],[16,-215],[-188,-44],[30,-336],[-98,-22],[24,-334],[-94,-21]],[[51997,71203],[346,13]],[[95212,98419],[56,-171],[2,-164],[58,-346]],[[95388,97732],[7,367],[61,-13],[-51,168]],[[95405,98254],[-56,97],[-137,68]],[[66037,62744],[-275,35]],[[49686,47099],[-4,336]],[[94634,97028],[162,44]],[[94827,97137],[-93,133]],[[94734,97270],[-112,33],[-13,-93],[-96,12]],[[94513,97222],[-78,-114]],[[94734,97270],[130,228]],[[94527,97599],[54,-102],[-68,-275]],[[89943,25324],[-163,-1398]],[[90062,26056],[-70,-192],[-49,-540]],[[51852,90930],[-193,452],[-165,530]],[[51494,91912],[-89,0]],[[51405,91912],[163,-446],[72,-282],[60,-113],[-17,-156],[103,-287]],[[50952,90879],[63,79],[182,-48],[-30,209],[48,158],[222,177],[-143,513]],[[51294,91967],[-1011,-20],[-91,-238],[-104,-63]],[[50088,91646],[26,-949],[270,-411]],[[89949,17161],[371,-145],[618,-293]],[[90938,16723],[9,395],[99,78],[-101,400],[61,42]],[[91006,17638],[-71,310],[-182,-120],[75,227],[-98,-34],[-88,676],[-192,-80]],[[82470,42669],[-104,815],[116,394],[-102,483]],[[78495,65619],[18,-66],[180,-178],[162,14]],[[79070,65684],[174,156]],[[79244,65840],[-419,847]],[[85137,46627],[83,40]],[[86254,47742],[-160,405]],[[56065,69757],[-123,-115],[-60,41],[-337,-46],[-59,32]],[[55152,69707],[-9,-1923]],[[75103,44135],[136,-572]],[[76148,43923],[26,618]],[[76174,44541],[-27,159]],[[76147,44700],[-958,116]],[[77576,70610],[354,986],[180,-233]],[[78050,71613],[-441,1016]],[[77609,72629],[-49,-126],[-135,-157],[-48,-246],[14,-113],[-85,-84]],[[75370,64796],[-36,-174],[66,-287]],[[75400,64335],[368,189],[82,-132]],[[75055,62722],[14,246],[170,245],[238,132]],[[75477,63345],[15,232],[51,81]],[[75543,63658],[-539,114]],[[20548,14407],[557,233]],[[21289,14717],[841,341]],[[21160,18262],[42,-320],[-318,-127],[21,-162],[-66,-26],[26,-216],[-69,-195],[14,-104],[-93,-32],[-15,-366],[43,-323],[-66,-25],[51,-380],[-54,-307],[41,-313],[61,25],[44,-325],[-337,-136]],[[20485,14930],[63,-523]],[[78582,68817],[177,189]],[[78447,70053],[-52,-31],[-17,-339],[-244,-127],[7,-104],[-149,-77],[-169,70]],[[77823,69445],[2,-199]],[[78601,67053],[75,-163]],[[78731,66875],[170,132]],[[73830,42468],[-20,-619]],[[73810,41849],[870,-79]],[[74680,41770],[10,-1],[-59,952],[-100,6]],[[63802,59129],[91,-374],[140,-206],[73,-243]],[[64106,58306],[107,-124],[69,-173],[23,-330],[-35,-166],[-115,-79],[-25,-281],[-119,13]],[[64011,57166],[47,-350],[61,-175]],[[64119,56641],[331,-31]],[[64450,56610],[30,927]],[[63958,59109],[-156,20]],[[87732,18149],[1026,-486]],[[88963,19339],[44,48]],[[82077,47306],[571,497],[54,74]],[[82702,47877],[36,126],[-26,216]],[[82334,49065],[23,168],[-95,184]],[[85221,36290],[-43,253],[34,190],[77,185],[-92,313],[47,112],[116,-37],[50,96]],[[84324,38290],[-132,-314]],[[63025,57262],[364,-35]],[[63389,57227],[622,-61]],[[64106,58306],[-231,23],[-6,-226],[-855,56]],[[84030,42059],[66,-425],[165,-367],[16,-193]],[[27638,5401],[539,183],[982,311],[1175,359]],[[30334,6254],[-25,318],[-128,1294],[-26,333]],[[30155,8199],[-63,-41],[-505,-152],[-63,645],[-1125,-352]],[[89868,19394],[-26,202],[60,26],[-65,126],[-40,348],[26,11],[-25,464]],[[89798,20571],[-102,-478],[-436,318],[-67,12]],[[53006,31627],[1105,13]],[[56516,73472],[162,-1]],[[55868,75597],[-88,0],[-8,-1121]],[[75381,45479],[100,69],[15,120],[684,-116]],[[76180,45552],[91,-12],[15,349],[188,-23]],[[76474,45866],[10,392],[-55,5],[3,282],[-97,14],[65,307],[-119,132]],[[76281,46998],[-45,-49],[-144,-630],[-238,256]],[[22655,91654],[150,26],[73,-51]],[[22639,90626],[52,120],[186,83],[245,287],[-21,71],[165,239]],[[23171,91888],[-8,40]],[[23149,91993],[-200,-268],[-54,-280],[-15,125],[-198,37],[-116,-282],[-117,-203],[-34,-173]],[[62659,63597],[-4,-172],[264,-5],[971,-84]],[[63890,63336],[11,274]],[[63691,62429],[182,-34],[17,941]],[[66814,30934],[-3,212],[66,232],[-43,183],[106,311],[2,211],[42,175]],[[62822,27372],[12,358]],[[62834,27730],[-194,-3],[-718,80],[-129,123],[13,225]],[[61524,28146],[-21,-643],[-19,3],[-39,-1338]],[[89395,36197],[-94,289],[-81,62],[66,148]],[[78861,54078],[566,-99]],[[52701,18727],[764,3]],[[53483,21053],[-475,-5]],[[49286,21239],[-1090,-71]],[[48196,21168],[-248,-20]],[[47948,21148],[33,-1300]],[[90402,18946],[364,162],[-24,344],[-76,573]],[[90666,20025],[-88,-29],[15,359],[-240,-20],[-65,611],[-99,-23]],[[90189,20923],[-278,-50],[-87,-322],[-26,20]],[[53313,35647],[14,186],[128,206],[-7,255]],[[53448,36294],[-60,123],[-398,-6]],[[18868,35310],[-651,1818]],[[18217,37128],[-1144,-471],[-1591,-663]],[[90150,21208],[39,-285]],[[90666,20025],[108,35],[194,-122],[223,36]],[[91191,19974],[46,208],[-73,451],[38,266],[-71,297],[21,328]],[[67849,22457],[19,-269],[128,39],[63,-76],[-117,404],[-93,-98]],[[67234,23143],[61,-57],[22,205],[-83,-148]],[[66777,25221],[15,-185],[150,-460],[258,-249],[55,117],[-10,-170],[55,-328],[128,-381],[24,-333],[67,5],[111,-126],[3,-254],[72,-149],[114,-28],[12,303],[-73,-12],[4,511],[-107,135],[-19,179],[-68,180],[35,137],[-64,140],[24,82],[-91,125],[-50,170],[-80,509]],[[75053,37858],[-502,124]],[[81285,70426],[-93,-16],[-311,635]],[[80751,70515],[-19,-126],[-236,-491],[20,-131],[-54,-139]],[[80462,69628],[11,-80],[243,-401]],[[43030,31956],[1133,136]],[[44159,35572],[-16,335],[-94,-11]],[[44049,35896],[-991,-101]],[[43058,35795],[-32,-2]],[[51338,30673],[10,-1341]],[[65193,22753],[385,-46]],[[66681,24126],[-76,56],[-42,143],[31,100],[-102,261],[-49,281],[-59,147],[-2,164]],[[66382,25278],[-374,74],[-19,-25]],[[65989,25327],[-40,-660],[-374,42]],[[17365,86332],[-350,62],[10,193],[-516,70],[-802,788],[1,97],[-388,14]],[[89883,34269],[-22,127]],[[89861,34396],[-139,122]],[[89722,34518],[25,-130]],[[32906,26949],[107,218],[80,270],[-25,302],[373,92],[-4,55],[188,42],[-8,113],[188,44],[-14,165],[188,43],[-9,111],[188,44],[-9,110],[188,43],[-4,55],[286,65],[3,-42],[886,186],[7,-110]],[[35344,32850],[-46,659]],[[60102,45497],[3,0]],[[75891,42322],[27,-115],[-2,-454]],[[76448,41658],[13,360],[127,-16],[15,341],[64,-8],[14,338]],[[59148,69299],[0,279],[256,-2]],[[59404,69576],[7,1385]],[[62829,32894],[942,-104]],[[63771,32790],[46,1182]],[[89996,34040],[134,160],[38,-64],[92,225],[-7,160],[-125,128]],[[90128,34649],[-129,32],[-75,-169],[4,-222]],[[54281,23380],[760,-8]],[[64450,56610],[451,-44],[-41,-892],[23,-3]],[[65415,57002],[-56,153],[-62,-132]],[[65202,57032],[38,83],[-31,217],[64,172],[-56,149]],[[63771,32790],[-6,-168]],[[19555,33706],[694,268]],[[19349,40892],[-1205,-477],[-765,-30]],[[17379,40385],[-26,-216],[177,-198],[26,-117],[-26,-436],[44,-112],[82,32],[103,-119],[4,-163],[133,-142],[186,-37],[77,-274],[21,-203],[-14,-292],[51,-290],[73,-208],[0,-210],[-73,-272]],[[15183,37367],[-472,925],[-314,144],[-115,11]],[[78268,76542],[-73,-361],[-255,49],[-25,-285],[-32,8]],[[39487,29519],[144,-2589]],[[81037,30194],[122,25],[69,171],[138,76],[148,-99],[58,-118],[70,11],[139,-203],[203,-159]],[[82451,31849],[-975,318]],[[81476,32167],[-228,67]],[[81248,32234],[-211,-2040]],[[96920,96532],[93,177],[-16,91]],[[96997,96800],[-75,39],[-13,220]],[[96726,96446],[194,86]],[[96997,96800],[120,331]],[[97117,97131],[-54,-64],[-112,19]],[[56766,38342],[-4,-375],[-63,1],[-11,-1007]],[[42974,81014],[-72,1931]],[[42902,82945],[-172,-93],[-149,32],[-82,-89],[-147,80],[-124,-41],[-119,-219],[-87,-1],[-172,-155]],[[76504,62948],[43,-47],[346,-107],[114,-259]],[[76651,63835],[20,-149],[-119,-221],[-10,-402],[-38,-115]],[[66467,52611],[-573,85]],[[65700,52706],[-38,-1008]],[[78313,35042],[782,-213]],[[79227,36223],[-785,217]],[[65534,39855],[32,670]],[[65566,40525],[-95,16],[18,336],[-100,16],[8,141],[-94,21],[-49,115],[-224,37]],[[64535,40675],[-19,-176],[129,-508]],[[34126,51218],[-58,831]],[[77740,40192],[-38,-563],[-159,32],[-20,-284]],[[58283,22050],[-18,-956],[134,-8],[-10,-675]],[[59148,68051],[131,20],[249,-168]],[[59528,67903],[564,-4]],[[60155,69571],[-169,55],[-184,-113],[-80,63],[-318,0]],[[76162,35895],[149,-61],[90,-140],[277,-270],[74,17]],[[76752,35441],[45,592],[153,-37],[23,289]],[[76217,36445],[-55,-550]],[[77050,58082],[54,-103],[79,41],[152,-220],[80,-42],[246,-313],[178,-102]],[[78109,57719],[-28,85],[74,257],[-37,96],[79,102],[155,86]],[[78201,58617],[-128,-94],[-41,164],[-100,-28],[-60,112],[-287,125],[-98,-68],[-115,170]],[[62970,59317],[819,-67],[13,-121]],[[39536,65970],[188,30],[-48,1008],[226,31],[-32,626],[378,49],[-16,334]],[[41886,35651],[-1054,-142]],[[59892,66572],[334,0],[161,101],[129,206]],[[59528,67903],[24,-107],[-30,-250],[-129,-268],[123,-42],[0,-665]],[[78607,56595],[63,-172],[174,103]],[[79683,57060],[-90,376],[-142,466]],[[78942,58009],[-127,-531],[-234,-279],[96,-166],[19,-162],[-89,-276]],[[78555,56798],[52,-203]],[[77677,72816],[-68,-187]],[[80036,89453],[761,-176],[52,661],[385,-87]],[[80694,90993],[-172,-397],[-86,-288],[-229,-547],[-171,-308]],[[78149,64518],[-154,-73]],[[77995,64445],[-237,109]],[[77758,64554],[-156,-11],[-218,-179]],[[77364,76048],[337,-60]],[[78117,77450],[-257,29]],[[77699,77496],[-16,-78],[-153,-81],[-102,-223],[48,-63],[-1,-201],[177,-133],[-47,-152],[-138,-48],[7,-173],[-110,-296]],[[75147,70616],[-247,204],[-99,-25]],[[74701,70878],[37,-183],[-55,-66]],[[74683,70629],[-60,-938],[-19,-55]],[[85666,60625],[113,143],[70,-37]],[[75477,63345],[220,-387]],[[76014,62894],[112,254]],[[76126,63148],[-79,273],[109,250]],[[76156,63671],[-306,721]],[[75400,64335],[124,-135],[77,-364],[-58,-178]],[[61375,43104],[987,-58]],[[61518,44078],[-109,-343],[-33,-327],[-1,-304]],[[76267,70735],[96,62],[1,-255],[72,13],[45,-113],[-27,-394],[16,-223]],[[76470,69825],[0,-3]],[[76667,69886],[80,27],[37,304],[126,435]],[[56593,78599],[196,93]],[[56641,80637],[-227,-1853],[179,-185]],[[57754,25620],[128,-39],[91,100],[79,-25]],[[58052,25656],[27,614],[64,-4],[0,333]],[[65842,69365],[251,-29],[25,678]],[[76147,44700],[33,852]],[[80026,31551],[168,-230],[269,-454],[131,-344],[310,-412]],[[80904,30111],[133,83]],[[81248,32234],[-879,271]],[[85099,45224],[174,172]],[[85273,45396],[43,100],[107,-55]],[[85423,45441],[145,100]],[[62408,56063],[18,1258]],[[89716,35276],[139,-70],[249,80],[6,-151],[85,556],[12,781]],[[76474,45866],[127,-13]],[[76851,47482],[-149,-7]],[[76555,47185],[-127,-178],[-147,-9]],[[65887,16786],[217,-22],[248,133],[21,127],[85,-35],[129,186],[29,196],[98,146],[39,151],[100,155],[90,23],[6,262],[63,80],[142,26],[213,-61]],[[67437,19429],[-191,30],[33,662],[-190,29]],[[79213,74113],[130,-83],[187,-437]],[[79923,74101],[112,226],[-17,124],[-198,77],[-45,180],[-83,96],[-172,-22]],[[27516,87541],[10,-131],[80,-123],[31,-160],[355,-322],[98,90],[48,-98],[176,-9],[108,69],[114,269],[-7,149],[-76,204],[4,343],[-119,214],[-119,129],[-63,-52],[-263,-43],[-133,-234],[-199,-129],[-45,-166]],[[26571,88208],[114,-280],[131,-118],[31,-150],[84,-29],[-18,406],[-170,115],[-94,321],[-89,-137],[11,-128]],[[83118,34696],[115,210]],[[77154,73921],[-11,-392],[66,-64],[-15,-187]],[[56418,20038],[22,-46],[-19,-1302],[-22,1],[-3,-664],[857,-20]],[[57234,20472],[-861,28],[-35,-208],[80,-254]],[[37991,22775],[-752,-145],[42,-658],[60,17],[79,-1220],[-277,-98],[27,-396],[54,11],[11,-165],[-95,-18],[10,-146]],[[83823,92515],[28,277]],[[83851,92792],[-762,234],[-95,-987],[-571,168]],[[78401,65685],[-268,-670],[-138,-570]],[[80830,72598],[-95,504],[-167,191]],[[79922,72489],[118,-532],[-23,-105],[97,-289]],[[52084,86257],[204,163],[75,393],[100,96],[54,163],[23,278],[107,255]],[[74078,44843],[23,-1]],[[74101,44842],[10,243],[25,1627]],[[73821,46563],[-15,-181]],[[73617,45850],[-7,-591],[31,-121],[-79,-59],[89,-204]],[[53027,21379],[-31,439],[-139,334],[-248,304],[-39,174],[34,77]],[[51994,23798],[6,-996]],[[79563,46391],[144,-238],[68,106],[169,-51]],[[94996,96377],[-19,149],[93,218]],[[94850,96742],[-61,-259]],[[94789,96483],[-97,-205]],[[94692,96278],[174,16],[130,83]],[[95100,97279],[18,250]],[[94996,96377],[118,18]],[[95114,96395],[4,452]],[[95130,96844],[144,93]],[[95274,96937],[-4,75]],[[95266,97593],[-20,2]],[[97518,96780],[170,82]],[[97688,96862],[-132,288],[-45,-32]],[[95533,98334],[-128,-80]],[[93646,22957],[-66,25],[5,172],[-96,6],[-209,132],[39,-242],[-419,-352]],[[92900,22698],[12,-44]],[[63468,51251],[141,-216],[58,19],[69,-162]],[[63820,51037],[134,85],[69,165],[59,2],[114,190],[125,22],[-79,143],[68,164]],[[64042,52625],[-79,-102],[-75,125],[-473,-760],[220,-420],[-167,-217]],[[85165,44460],[58,-159],[69,18],[154,183],[124,23]],[[85570,44525],[-14,224],[42,242],[65,115]],[[85423,45441],[-48,-117],[-102,72]],[[43294,16718],[764,92],[4,-110],[572,66]],[[71815,60709],[87,239]],[[71902,60948],[18,9],[54,889]],[[71974,61846],[-796,134]],[[71178,61980],[-13,2]],[[71165,61982],[-30,-521]],[[71135,61461],[5,-420],[68,-247],[-19,-143]],[[44720,10936],[26,-656],[118,13],[13,-328],[191,22]],[[71902,60948],[86,-89],[152,76],[77,-107],[-41,-187],[260,-166]],[[72782,61076],[59,219],[-34,193],[-139,247]],[[72435,61773],[-461,73]],[[58052,25656],[120,-84],[109,-300]],[[71783,41237],[65,879]],[[57243,17141],[-9,-693],[-55,-82],[33,-247],[-153,-68],[-34,82],[-200,-279],[20,-136],[-80,-224],[-58,-45],[-311,257],[-134,-106]],[[73681,24531],[28,656],[-47,41],[-78,251],[-130,25],[-49,191],[-7,248]],[[50610,49827],[-12,1348]],[[50598,51175],[-943,-35]],[[49648,50800],[14,-1007]],[[55959,47246],[66,120],[83,-58],[43,99],[103,-10]],[[56248,47843],[-332,10],[-117,-57],[-60,262]],[[45700,89262],[191,11]],[[47099,92911],[-83,-32],[6,-121],[-84,-53],[67,-80],[60,-558],[-93,-56],[39,-247],[-82,-195],[-93,-111],[-70,53],[-56,-130],[-70,14],[-202,-467],[-57,25],[-67,-131],[-41,-249],[19,-133],[-81,-163],[14,-153],[-115,-60],[-45,-271],[-67,-81],[-53,-230],[-245,-220]],[[53721,84215],[56,50],[71,331],[-72,109],[166,237],[51,298],[100,70],[39,185],[51,15]],[[53295,86652],[-634,-1092]],[[52661,85560],[560,-600],[80,-414],[254,-455]],[[76111,68010],[25,183]],[[76077,69305],[-423,89]],[[76904,65236],[-44,153],[62,178]],[[75963,70564],[387,-716],[120,-23]],[[74163,73033],[39,48],[163,-30],[-31,102],[130,73]],[[74464,73226],[32,564],[-89,14]],[[74407,73804],[-124,52],[-189,2]],[[77609,40496],[-781,145]],[[74464,73226],[465,-80]],[[75033,73125],[33,566],[63,31],[87,307],[-6,215]],[[74708,74354],[-231,51],[-55,-355],[-15,-246]],[[97252,97800],[-101,-6]],[[78003,46134],[43,-21],[104,195]],[[77880,47553],[-120,261],[-95,-68],[-24,-322]],[[77595,47045],[-59,-505],[164,-233],[303,-173]],[[78738,49413],[98,1],[296,649],[32,167],[168,120]],[[89110,32551],[-159,530]],[[88951,33081],[-161,544],[2,169],[-82,121],[-99,-7]],[[69599,69935],[189,-41],[-5,-338],[46,-159],[151,-15],[-13,-252],[78,-152],[90,28],[64,-108]],[[67299,64624],[382,-46]],[[67986,65086],[-12,908]],[[67974,65994],[-612,76]],[[61383,42917],[-8,187]],[[60654,44130],[-26,-1187]],[[91054,22244],[194,-27],[240,57],[211,-35]],[[91699,22239],[-66,395],[-68,13],[40,232],[-30,234],[75,234],[124,211]],[[91774,23558],[-12,240]],[[91762,23798],[-219,86],[6,-202],[-326,241],[20,93],[-94,27],[-46,-82]],[[48736,11958],[-522,-37],[-33,1324],[53,4],[-15,660]],[[48219,13909],[-382,-28]],[[47837,13881],[-192,-16]],[[90046,33784],[200,-103]],[[90246,33681],[28,-7]],[[90413,34451],[-129,103],[-154,199],[-2,-104]],[[83173,54190],[-476,122]],[[63130,17701],[141,-218],[175,-76],[84,45],[155,-106],[117,-5],[273,-277],[167,-361],[196,-35],[92,-153]],[[64074,81344],[-10,212]],[[63196,82036],[131,-1005]],[[82048,87950],[816,-207]],[[74680,41770],[-9,-392]],[[75164,41278],[8,231],[-71,14],[31,298],[52,136],[-39,67],[45,398]],[[75210,42872],[-673,72]],[[83331,86923],[694,-194],[23,-132],[82,-47]],[[84130,86550],[166,418],[186,651]],[[56676,61948],[-8,-161]],[[56667,63693],[9,-1745]],[[67826,39209],[54,1050]],[[74841,71955],[18,-4]],[[76752,35441],[181,41],[186,-62],[210,-341],[156,-317]],[[77485,34762],[22,233],[156,-41]],[[76560,66922],[54,1007]],[[20845,23639],[84,86],[56,275],[136,151],[31,213],[-25,180],[195,503],[37,265],[97,99]],[[21456,25411],[137,39],[47,264],[-33,135],[99,330],[50,46]],[[23184,31132],[-439,-156],[-1675,-617],[-1028,-408]],[[20029,29945],[816,-6306]],[[9300,43257],[99,75]],[[9399,43332],[171,52],[29,67],[133,-57],[637,316]],[[9844,45792],[12,-74],[-101,-101],[-118,-527],[-140,-285],[-50,-30],[-189,-339],[-21,-193],[-52,-68],[-66,-285]],[[9119,43890],[-48,-151],[72,-420],[157,-62]],[[59541,77376],[127,-90],[74,-199],[107,-92],[170,-303]],[[61216,77313],[-139,132],[-61,-112],[-72,52],[14,729],[64,644],[-137,-1]],[[60295,79060],[-425,49]],[[67974,65994],[-1,109]],[[67955,67316],[-138,17],[-72,241],[-254,173]],[[67491,67747],[26,-119],[-404,54],[-23,-503]],[[88243,37742],[99,-175],[-116,-123],[48,-172],[205,103],[112,-404]],[[88589,37550],[-98,169],[17,270]],[[88508,37989],[-104,131]],[[92827,23789],[-16,-118],[89,-973]],[[93862,23105],[-69,511],[3,268]],[[93207,24675],[-181,-34],[-85,-165],[-63,24],[-97,-377],[100,-76],[-54,-258]],[[89399,26186],[9,-144],[-77,-260],[51,-213]],[[89382,25569],[561,-245]],[[80527,58265],[-49,96],[119,42],[-102,105],[-28,283],[54,434],[-61,38]],[[63888,55539],[55,-171],[123,-178],[-3,-132],[64,-5]],[[64540,54678],[176,-19]],[[64119,56641],[6,-254],[-122,-281],[-31,-270],[-76,-132],[-8,-165]],[[44049,35896],[-40,1026],[134,14]],[[44096,38272],[-116,-14],[-25,667]],[[43046,38820],[29,-667],[-38,-174]],[[43037,37979],[47,-1169],[-46,-6],[-13,-226],[33,-783]],[[81476,32167],[67,594],[-48,56],[70,786]],[[55503,55751],[-581,9]],[[54722,55762],[-2,-1485]],[[55632,57638],[8,-620]],[[55631,58981],[7,-338],[-6,-1005]],[[69303,36067],[484,-87]],[[69375,37319],[-20,-332],[52,-206],[-20,-302],[-63,7],[-21,-419]],[[88302,53638],[304,-302],[198,-72],[99,104],[16,138],[-53,285],[44,168],[76,531]],[[51494,91912],[-147,565],[-105,565]],[[51182,93040],[34,-280],[117,-588],[72,-260]],[[51294,91967],[-164,874],[-205,204],[-76,-62],[97,-65],[24,-191],[-54,-11],[-189,284],[-55,12]],[[49843,93063],[14,-1426],[231,9]],[[80915,53041],[10,136],[-92,141],[-126,-32],[-32,178],[39,225]],[[80323,53794],[-164,-311]],[[80121,53411],[-237,-462]],[[79884,52949],[494,-421]],[[20850,21200],[55,189],[112,-39],[63,222],[115,-6],[-15,173],[68,49],[25,163]],[[21014,22921],[-74,55],[-95,663]],[[86490,43240],[97,-108],[19,153],[161,-7]],[[86767,43278],[75,359],[31,331],[60,160],[217,296],[-22,264],[-87,27]],[[86622,44174],[-18,-136]],[[86604,44038],[-32,-311],[-91,-335],[9,-152]],[[55933,83919],[-67,-100],[-89,274],[59,105],[-66,180]],[[55770,84378],[-90,-13],[-73,181],[-114,54],[-103,-222]],[[54992,84291],[-333,-306],[-437,-484]],[[54222,83501],[-257,-1436],[221,286],[79,-5]],[[87788,49706],[-29,116],[-119,-212],[-193,-127],[-110,-126],[-10,-184]],[[16997,89160],[-262,35],[-94,-44]],[[16641,89151],[-69,-26],[-90,156],[-33,201],[-179,9],[-67,-64],[-117,151]],[[16086,89578],[-2,-83],[-133,10],[-5,-232],[-612,29]],[[58041,69239],[-59,-130],[-33,70],[-103,-424]],[[65169,64548],[-856,94]],[[89680,34739],[-17,-144],[59,-77]],[[89861,34396],[56,203],[-98,332],[-185,184]],[[47837,13881],[-17,658],[55,4],[-33,1315]],[[47842,15858],[-120,-9]],[[47722,15849],[-839,-68]],[[88050,29763],[444,-781]],[[89364,28987],[31,654],[57,125],[123,1068]],[[81273,56715],[-31,-90],[-116,-37],[-193,-178],[-134,10]],[[46707,64910],[135,-45],[135,271]],[[45955,27778],[-189,-16],[21,-670],[19,1],[42,-1327],[34,-216]],[[57612,43091],[659,-39]],[[58294,43951],[4,253]],[[13757,38553],[-27,199]],[[90837,28527],[5,284],[221,-121],[-4,305],[-39,23],[34,337],[-103,77],[138,570]],[[90227,30260],[-151,-1454]],[[73155,76299],[417,-97],[45,773]],[[73617,76975],[-18,4]],[[73599,76979],[-1003,203]],[[72311,77231],[-57,-754]],[[73671,75738],[613,-96]],[[74524,76782],[-907,193]],[[78969,53854],[95,-97],[-10,-173],[176,-107],[87,-114],[203,-145]],[[79520,53218],[298,-98],[66,-171]],[[41776,47105],[29,-346],[74,-1684]],[[53664,36992],[-32,-169],[48,-237],[-89,-20],[-6,-114],[-137,-158]],[[58488,79261],[11,168],[-118,323],[-1,180],[-114,213],[9,157],[-90,102],[-21,133],[50,79],[35,285],[-78,162]],[[77455,65706],[71,-172]],[[77526,65534],[159,400],[110,-163],[138,139],[119,16]],[[78052,65926],[-41,58],[-56,312],[-123,-11],[-76,231],[34,81]],[[46720,64193],[26,-1094]],[[53182,73758],[130,99],[49,182],[96,23],[69,166],[76,-31],[-21,217],[100,-8],[-9,254],[96,34],[21,281]],[[53789,74975],[-823,827]],[[78918,72046],[-1,-966],[-20,-287],[36,-244]],[[79267,70601],[23,153],[119,403],[-13,351],[15,631]],[[63080,51157],[48,22],[6,207],[52,43],[282,-178]],[[39073,57635],[749,115]],[[32172,21503],[-251,-65],[58,-668],[13,3],[141,-1649],[-109,-29],[115,-1316],[33,-187]],[[71956,51891],[89,-528],[72,-188]],[[72117,51175],[63,211],[210,124],[389,-80]],[[71238,58235],[-37,978]],[[71150,59501],[-178,-94],[-117,180],[-25,-111],[-125,2],[-95,-136],[-165,11],[-2,63]],[[70443,59416],[-88,-79]],[[15341,3209],[66,-146]],[[15071,4945],[122,-211],[108,-351],[131,-43],[24,-198],[-58,-108],[-75,-336],[42,-223],[-24,-172]],[[15341,3303],[0,-94]],[[73285,45637],[-82,7],[-110,114]],[[73093,45758],[-222,-238],[-116,187]],[[72755,45707],[-51,-766]],[[51060,67685],[141,-66]],[[30378,43214],[-1,-1]],[[66364,40944],[-190,29],[-40,-540],[-568,92]],[[58752,64232],[-192,12],[3,112]],[[74303,69590],[0,15],[-591,113]],[[80129,88448],[969,-248]],[[80036,89453],[-110,-183],[-129,-333],[89,137],[94,-120],[149,-506]],[[88557,45628],[56,-193]],[[88613,45435],[624,-369]],[[89237,45066],[-111,645],[-37,106],[-106,-29],[-67,171],[-78,409],[-27,513],[41,151],[-77,437]],[[88294,47310],[13,-293],[114,-595],[-39,-100],[119,-104],[64,-242],[-52,-134],[-81,43],[125,-257]],[[88011,45821],[-47,170],[-41,-137]],[[87923,45854],[88,-33]],[[76946,68914],[422,1120]],[[87253,42560],[-42,-290],[-54,-36],[-83,188],[-73,13],[28,154],[-69,80],[-17,-344],[54,-416],[66,201],[129,-10],[52,-123],[-55,-164],[21,-196]],[[62322,41327],[-465,47]],[[61857,41374],[99,-129],[15,-106]],[[55068,57645],[564,-7]],[[54877,59326],[6,-672],[-4,-1006],[189,-3]],[[90238,33385],[-54,204],[62,92]],[[74445,38682],[33,-7],[34,444],[129,28]],[[73898,39480],[-49,-670]],[[51650,38774],[132,-14],[55,65]],[[31967,44009],[-155,1879],[-124,1431]],[[30155,8199],[150,174],[117,56],[-16,165],[283,87],[-15,162],[189,56],[-46,486],[374,107]],[[14282,38447],[73,254],[143,65],[-44,180],[2,235]],[[79538,78990],[592,-175]],[[80130,78815],[2,128],[-124,324],[-62,40],[-66,293],[-200,179]],[[16936,90102],[-109,15],[-5,-149]],[[16822,89968],[-272,-200],[-131,-173],[127,-322],[95,-122]],[[64687,20157],[14,348],[-175,22],[14,332]],[[64540,20859],[-200,10],[11,162],[-193,8],[-6,-155],[-190,35],[-944,112]],[[65948,68679],[209,-250],[143,-73],[168,-23]],[[51616,42805],[-12,1343]],[[74213,64931],[31,505],[29,-5],[36,540]],[[73995,66134],[-253,-70]],[[21059,37719],[545,198],[1583,593],[790,276]],[[21781,43694],[-1286,-2373]],[[56277,71947],[363,373],[232,-12],[264,-197],[10,122],[112,34],[63,-146],[81,33],[-28,108],[119,34]],[[57493,72296],[14,1156]],[[75037,67577],[3,168],[-59,216],[-117,21]],[[71284,43353],[-61,13],[22,336]],[[61524,74846],[86,64],[79,225],[142,30],[105,-173],[38,-176],[94,-5],[8,334],[40,-3]],[[61695,77542],[-142,-106],[-68,101],[24,127],[-105,55],[-40,-380]],[[73322,46807],[189,-97]],[[73483,47742],[-161,-935]],[[79520,53218],[-159,-491],[-108,-176]],[[34336,22698],[573,135]],[[34909,22833],[521,108]],[[45882,25550],[-143,190],[-199,5],[-28,86],[-127,89],[-132,247],[-210,-82],[-130,56],[-101,141],[-148,-44],[-159,76]],[[94651,29538],[103,-48],[78,-389],[107,-214],[72,19],[56,186],[117,62],[33,-154],[42,270],[-405,219],[-81,201],[-122,-152]],[[94770,28794],[47,27]],[[94817,28821],[-151,339],[-229,256],[20,-97],[181,-204],[132,-321]],[[76156,63671],[117,139],[143,-69],[158,214]],[[68194,38345],[62,1179],[51,669]],[[54171,67944],[45,-69],[88,57],[19,-113]],[[54150,69403],[4,-1410],[17,-49]],[[56418,20038],[-131,-204],[-164,117],[-182,-170]],[[71776,43254],[71,1004]],[[10316,53706],[93,-372],[2,-276],[-126,-181],[-48,50],[-146,-251],[-46,-187],[97,-272],[40,-285],[-40,-201],[-157,-120],[-118,-407],[-61,-375],[-180,-239],[-34,-501]],[[50598,51175],[378,12]],[[45759,47171],[-60,1670]],[[74557,43588],[158,-14],[24,640]],[[74317,44821],[-216,21]],[[65989,25327],[13,363]],[[56676,61948],[-69,42],[-35,289],[-181,-98],[-131,130],[-102,-208],[-94,-2],[-62,107]],[[73371,57041],[150,250],[219,302],[93,316]],[[73833,57909],[-156,357]],[[73677,58266],[-219,289]],[[72863,58660],[1,-5]],[[72825,58582],[4,-23]],[[72348,67548],[87,-239]],[[73240,66779],[103,640]],[[75191,31256],[-133,147],[-23,152],[71,187],[-97,35],[-34,152],[28,275]],[[74664,32300],[-164,-1674]],[[73946,30787],[-372,121],[29,334]],[[65525,33815],[111,-20]],[[44010,13596],[-23,567],[-680,-88],[-56,1310]],[[65754,54759],[10,231],[71,92]],[[65176,54120],[-54,-111],[46,-210]],[[67352,77987],[766,-105]],[[68189,78883],[-888,119]],[[89225,34603],[110,-306]],[[64146,36153],[-756,90]],[[63390,36243],[9,-288],[-27,-112]],[[63372,35843],[-24,-309],[-93,-155],[-170,-126]],[[76873,72979],[246,-30]],[[76886,74083],[-143,-176],[-145,29],[-62,-686]],[[8977,42127],[-34,266],[15,189],[150,153],[115,332],[50,9],[27,181]],[[9119,43890],[-44,262],[-150,-72],[-15,93],[-127,-50],[-7,316]],[[8776,44439],[-68,-74],[-16,-231],[-50,-116],[4,-181],[103,-422],[-25,-321],[13,-172],[-82,-205],[42,-257],[71,-179],[25,-245]],[[79597,69397],[278,-236]],[[79875,69161],[77,9],[61,120],[172,189],[277,149]],[[79766,70667],[44,-581],[-125,-208],[-2,-139],[-117,-69]],[[63372,35843],[-1206,119]],[[48743,96836],[-165,63],[-165,-345],[-68,-28],[-67,-152],[-133,43],[-149,-162],[-141,-64],[-86,58],[-56,-116],[42,-190],[-68,-187],[-76,-46],[-3,-135]],[[88951,33081],[25,163],[81,-81],[114,121],[147,-8],[52,81],[47,282]],[[45992,41140],[916,75]],[[48477,71200],[688,44]],[[73656,36259],[-745,170]],[[59411,32814],[-24,-1175]],[[96975,97963],[45,64]],[[97177,98327],[-132,49],[-90,-41]],[[90938,16723],[593,-290]],[[91471,18864],[-77,267]],[[91394,19131],[-196,-282],[85,-256],[-107,-153],[65,-283],[-122,-87],[71,-308],[-184,-124]],[[70338,62123],[827,-141]],[[71178,61980],[103,159],[-117,53],[31,81],[-62,170],[54,155],[-35,379],[22,393],[65,117]],[[14524,41404],[219,572]],[[17116,65864],[-1874,-385],[19,-358],[-73,-273],[-98,39],[39,-513],[-20,-151],[72,-109],[16,-538],[-32,-444],[-165,-756],[-105,-314],[-75,-116]],[[41948,35662],[-44,996],[-20,168]],[[41884,36826],[-1109,-152]],[[67664,60869],[88,156],[126,-35],[101,-145],[75,87]],[[68054,60932],[43,154],[-13,201],[65,5],[48,1115]],[[67524,62543],[-30,4]],[[57485,71573],[8,723]],[[76081,60978],[18,175],[-95,53],[-81,251],[24,211]],[[75947,61668],[-46,97]],[[73093,45758],[95,737],[-9,302]],[[73179,46797],[-69,112]],[[72677,46013],[-28,-133],[106,-173]],[[69560,33470],[817,-156]],[[69721,34786],[-40,-658],[-228,42]],[[69453,34170],[83,-460],[24,-240]],[[44978,81205],[-71,2539]],[[44683,85187],[-157,-169],[-12,-99],[-230,-254],[-85,-352],[-173,-86],[-37,-147],[-165,-101],[37,-308],[-41,-50],[-53,218],[-37,-95],[3,-229],[-95,-42],[-81,-362],[-111,-103],[-112,51],[-22,-127],[-58,80],[-251,19],[-101,-86]],[[77823,69445],[-455,589]],[[76271,73138],[-57,185],[-58,19],[51,129],[-71,204],[44,248]],[[75671,74143],[-25,-649],[39,-151],[-72,-127],[-85,-16]],[[79267,70601],[392,54]],[[93900,17404],[132,-56],[-71,-141],[13,-242],[139,-12],[13,-151]],[[94926,17475],[-12,333],[-167,8],[9,204],[74,370],[-162,24]],[[57866,30621],[14,936]],[[59564,74297],[52,168],[53,361],[10,266],[-37,342],[-104,273],[-7,278]],[[95771,96397],[112,12]],[[95883,96409],[24,192],[-45,100]],[[45096,35686],[-43,1342]],[[61104,28549],[-26,-64],[-189,-76]],[[9175,38374],[291,-7],[168,-313],[48,-28],[-7,-193]],[[9675,37833],[56,142],[104,35],[20,571],[64,210],[21,580]],[[57735,23284],[7,647]],[[57742,23931],[-15,-3]],[[56905,23287],[-149,-264],[-14,-251]],[[35216,75670],[-151,-74],[-218,-300],[-57,-301],[-59,-92],[-29,-230],[-116,-454],[-123,-150],[-74,49],[-64,-146]],[[69426,54256],[192,-63]],[[70230,54811],[-129,172],[-80,468],[-4,304]],[[76174,44541],[190,-25],[2,50],[195,-14],[5,140],[195,-23],[15,397]],[[81150,75164],[-80,173],[131,46],[27,-89],[29,262],[-55,551],[50,220]],[[80224,75286],[22,-189],[139,-45],[27,-158],[87,-151]],[[2661,97629],[92,9],[33,99],[-100,71],[-25,-179]],[[2180,97770],[116,120],[83,354],[-84,-249],[-115,-225]],[[1640,96970],[158,-15],[70,-133],[30,91],[-218,165],[-40,-108]],[[180,94948],[148,-16],[-12,216],[-136,-200]],[[3,93989],[96,-21],[192,194],[70,315],[-70,-107],[-48,47],[-120,-62],[-48,-294],[-72,-72]],[[8624,99025],[198,-102],[43,40],[115,-207],[143,-23],[44,-87],[-103,-66],[-42,-110],[68,-138],[182,-32],[-14,119],[67,60],[67,-133],[62,124],[-179,237],[208,-121],[-7,104],[-90,97],[-130,39],[-115,210],[-175,-40],[-90,90],[-158,62],[-94,-123]],[[8005,99405],[47,-13],[124,-218],[15,-133],[89,-89],[114,59],[-25,-92],[61,-186],[166,-61],[89,94],[-45,168],[-216,115],[-115,211],[-333,186],[29,-41]],[[8352,94388],[115,58],[-45,83],[-70,-141]],[[7571,99248],[113,-18],[13,144],[-118,-45],[-8,-81]],[[8196,93559],[117,-32],[-70,110],[-47,-78]],[[7148,99402],[110,-86],[-5,130],[-96,42],[-9,-86]],[[6275,99403],[98,-80],[54,112],[-157,29],[5,-61]],[[5590,99277],[106,94],[91,-16],[109,136],[181,96],[-213,-19],[-241,-168],[-33,-123]],[[4987,99087],[158,47],[350,-23],[-3,-141],[101,-89],[68,166],[-88,212],[-173,60],[-151,-54],[-262,-178]],[[4606,98790],[92,108],[-56,122],[-55,-57],[19,-173]],[[4526,99098],[132,-43],[-3,92],[-108,44],[-21,-93]],[[4134,99135],[140,-179],[45,-182],[105,30],[-47,180],[136,41],[-32,164],[-82,-57],[-183,76],[-82,-73]],[[3833,98832],[250,11],[37,-145],[60,84],[-95,211],[-103,-103],[-149,-58]],[[3647,98464],[131,37],[37,197],[-112,200],[-51,-176],[69,19],[-74,-277]],[[17046,91159],[-208,-29],[-104,186],[31,-165],[-28,-195],[-61,287],[-18,239],[-55,-281],[13,416],[-116,-191],[42,157],[-152,355],[7,-228],[-104,224],[-54,6],[-95,278],[-119,28],[-41,-91],[-69,163],[-62,8],[-93,-123],[32,-226],[142,-94],[198,-416],[-50,12],[-147,203],[-145,-173],[58,-357],[102,-249],[48,-455],[-59,-226],[141,-114],[233,-345],[74,178],[74,43],[80,-148],[281,132]],[[15695,90739],[46,-223],[43,31],[-89,192]],[[16086,89578],[-66,200],[-116,56],[-115,218],[40,161],[-55,1],[-168,314],[31,150],[-120,233],[-72,-10],[70,214],[-89,263],[-155,25],[81,47],[-17,182],[-275,203],[14,145],[-153,94],[-16,467],[37,-73],[231,102],[89,187]],[[81321,77083],[70,89],[74,531],[61,321]],[[80291,78604],[-28,-327]],[[93526,30830],[24,-283],[78,270],[-102,13]],[[93571,28843],[44,236],[-65,66],[74,148],[34,232],[-46,423],[-217,142],[-136,179],[-203,192],[-13,-50]],[[38122,44503],[-721,-122]],[[59545,57534],[-10,-1190]],[[59971,57505],[-426,29]],[[41108,49033],[2,-28],[564,69],[14,-335]],[[42365,50162],[-1122,-139]],[[51457,96337],[53,402],[70,847],[-47,-155],[-33,-479],[-82,-616]],[[51209,96331],[135,537],[-62,151],[36,478],[39,70],[142,39],[7,115],[87,-57],[9,404],[-261,7],[-1,64],[-195,101],[1,255],[-100,-4],[-52,-120],[-144,-59],[-48,-182],[-202,-337],[-218,-47],[-84,-109],[-133,9]],[[59545,57534],[-143,7]],[[50163,61950],[-373,-13],[-3,-673]],[[58280,60434],[1,112],[628,-9]],[[75247,79337],[864,-194],[32,105],[312,-66]],[[76503,79859],[-147,120],[-219,-49],[6,113],[-164,264],[60,172]],[[75641,80369],[-168,-162],[-100,-233],[-11,-206],[-72,-226],[-81,-64],[38,-141]],[[72002,20605],[133,221],[45,210],[311,6],[177,218],[131,-7],[205,187],[156,-54],[202,295],[-41,98],[50,138]],[[72053,22245],[-124,-1620],[73,-20]],[[66491,36646],[375,-71],[10,167]],[[97884,97809],[368,-178],[260,104],[-132,84],[-296,63],[-130,58],[-70,-131]],[[17221,40399],[158,-14]],[[65117,28462],[761,-94],[-10,-173]],[[66257,28320],[66,1333]],[[66323,29653],[-379,52]],[[61857,41374],[-103,7],[-164,125],[-89,231],[69,154],[-1,458],[-71,58]],[[88348,24295],[415,-274],[73,237],[64,73],[16,214],[114,59],[26,-188],[128,-199],[73,-38]],[[89257,24179],[75,353],[20,287],[60,285],[-30,465]],[[88641,25709],[-203,-987]],[[61024,79194],[748,-52]],[[61917,80474],[157,383],[-253,22],[-110,-80],[-126,96],[-79,-43],[-16,150]],[[53725,64709],[377,0],[1,335],[377,-3]],[[53906,66727],[-752,-5]],[[77071,42958],[187,-25]],[[77258,42933],[16,350],[354,-53]],[[77001,44352],[-14,-344],[-65,8],[-13,-344]],[[70788,74269],[-1101,183]],[[80499,40349],[181,-243],[-14,-118],[54,-129],[-76,-114]],[[80644,39745],[218,-71],[191,120],[231,-308],[238,199],[32,107],[82,-10]],[[80984,41232],[-252,75]],[[70257,66524],[75,-71],[-16,-136],[178,-216],[52,10],[112,-326],[18,-195],[178,-176],[118,-536],[117,-48]],[[64968,81203],[14,170]],[[73833,57909],[221,-281],[169,-102],[166,-280]],[[74550,57751],[18,47]],[[74072,58885],[-62,12]],[[73798,58521],[-54,5],[2,-155],[-69,-105]],[[97117,97131],[50,89]],[[47000,21068],[948,80]],[[48196,21168],[-29,1326]],[[95212,98419],[-15,2]],[[63097,81045],[-320,31],[-104,-222],[-243,-418]],[[69112,44955],[-125,20],[-25,-504]],[[29061,29008],[-746,-227]],[[62230,16893],[16,-243],[80,-51],[-19,246],[-77,48]],[[62155,17383],[113,-121],[-22,124],[-91,-3]],[[61959,17215],[24,-70],[156,-113],[-24,205],[-132,46],[-24,-68]],[[61804,17559],[119,-235],[6,63],[-125,172]],[[61820,17080],[84,170],[-73,18],[-11,-188]],[[61758,16857],[187,-134],[69,174],[68,-120],[16,143],[-84,38],[-88,170],[-168,-271]],[[61765,17769],[87,-67],[166,-299],[75,96],[-158,124],[32,111],[-89,22],[-105,133],[-8,-120]],[[61584,18548],[253,-257],[21,-178],[298,384]],[[82529,44518],[70,-370],[243,265]],[[83266,46462],[-284,-303],[-30,22],[-592,-498]],[[39137,8382],[1534,270]],[[40671,8652],[-19,333],[29,5],[-55,980],[96,16],[-18,327]],[[94789,96483],[-88,91],[-70,181]],[[94573,96655],[-19,-194],[56,-149],[82,-34]],[[96920,96532],[91,-30]],[[95249,96384],[150,14]],[[95274,96937],[28,-167],[-53,-386]],[[53714,81829],[548,-78]],[[54222,83501],[-276,229],[-118,2]],[[97421,97985],[-113,221]],[[71153,20166],[31,77],[261,192],[157,159],[69,-81],[129,-8],[202,100]],[[32578,21626],[-53,625]],[[59323,80927],[-10,-667],[285,-17],[-18,-1072]],[[67001,73313],[-755,98]],[[62697,82093],[-43,-162],[-143,11],[-35,-483],[-167,-35],[-117,-251],[-50,-505],[-120,-201]],[[63888,55539],[-165,-1],[-566,58]],[[84377,25921],[37,-17],[94,-326]],[[85336,27821],[82,550]],[[76511,61954],[-149,-87],[-78,109],[-132,-69],[-88,-254],[-117,15]],[[73448,77650],[30,-268],[74,-171],[47,-232]],[[96568,97044],[17,-280]],[[69898,64821],[3,55]],[[72553,49898],[-96,274]],[[72457,50172],[-387,200],[-166,-165]],[[71904,50207],[-52,-70],[60,-342],[64,-98]],[[14036,6840],[72,-11],[22,234],[106,131]],[[52126,26690],[379,4]],[[52505,26694],[679,9]],[[50354,89595],[18,-25],[-524,-1847],[165,-98]],[[85801,43931],[-21,-145],[63,-150]],[[85843,43636],[104,318],[31,-130],[86,-89],[172,-50],[209,85],[40,220],[119,48]],[[86396,44823],[-26,102],[81,276],[-149,-94],[-116,-178],[-112,-348],[-282,436],[-82,-61],[-83,-361],[31,-287],[143,-377]],[[85013,32580],[972,-159]],[[56055,71222],[-131,-160],[-83,-185],[-198,19],[-151,138]],[[70717,60652],[62,-38],[89,143],[124,-127],[186,-283]],[[71135,61461],[-90,10],[-65,-402],[-58,-13],[-78,-186],[-121,-52],[-6,-166]],[[52824,67730],[21,-267],[-86,-173],[76,9],[65,-221],[-68,-194]],[[54171,67944],[-163,-178],[-11,98],[-95,-18],[-47,99],[-146,-29],[-138,128],[12,172],[-108,84],[-120,-65],[-40,253],[-83,27],[-31,-131]],[[53201,68384],[-78,-194],[-141,13],[-47,-187],[-84,6],[-103,-123],[76,-169]],[[75247,79337],[-12,-124],[115,-237]],[[67491,67747],[84,481],[-85,-98],[-132,185],[-127,23]],[[66590,68206],[-11,-281],[-32,11],[-14,-407]],[[55486,43669],[-28,233],[84,88],[39,400],[-7,174]],[[81759,27811],[89,836]],[[80904,30111],[87,-320],[6,-176],[187,-247],[84,-209],[-32,-214],[-160,-397],[-137,-71],[-44,-303]],[[77320,48072],[-9,331],[190,337],[-161,441]],[[39772,15420],[122,21],[-44,773],[192,33],[-13,220],[192,32],[51,229],[637,105]],[[69668,77659],[815,-135]],[[71072,79846],[-437,236],[-209,81],[-54,-22],[-412,231]],[[78447,70053],[15,166],[-68,49],[-8,169],[-67,359],[55,64]],[[58657,32856],[754,-42]],[[14598,14688],[320,153],[152,-965],[62,31],[103,-656]],[[15982,13825],[-36,311],[98,221],[-127,382],[-186,282],[-34,-61],[-85,104],[-32,244],[43,101],[176,83],[120,199],[61,205],[-37,117],[339,157]],[[16287,16232],[12,55],[-68,385],[47,246],[-45,92],[102,220]],[[51494,34757],[15,-1584]],[[91774,23558],[138,-138],[139,303],[270,-271],[96,347],[183,-142],[18,68],[209,64]],[[93195,24704],[-38,176],[-948,375]],[[92162,25273],[-66,-273],[-48,18],[-135,-553],[-87,35],[-64,-702]],[[79875,69161],[-59,-109],[107,-916]],[[88497,44355],[26,107],[134,227],[-36,150],[86,184],[-120,111],[-44,187],[70,114]],[[88557,45628],[-85,-70],[-117,59],[-104,254],[-66,-2],[-24,-186],[15,-243],[90,-130],[-121,-18],[61,-254],[-125,17],[-63,133],[-29,-281],[150,-148],[-44,-93]],[[87923,45854],[-29,-300],[98,4],[19,263]],[[87858,45112],[76,250],[-99,-37],[7,-101]],[[88868,43529],[487,-186]],[[89355,43343],[1,502],[-23,60],[-48,870],[-48,291]],[[43757,9103],[1338,161]],[[68198,36776],[162,-110],[291,-300]],[[68651,36366],[105,1817]],[[68756,38183],[-59,77],[-160,-167],[-120,-45],[-134,193]],[[85922,27527],[41,249]],[[21456,25411],[78,-635],[62,24],[83,-656],[-62,-23],[83,-649]],[[64364,39821],[-571,62]],[[47842,15858],[828,57]],[[47956,18510],[-251,-20]],[[47705,18490],[42,-1323],[-60,-5],[35,-1313]],[[78473,52849],[87,-138]],[[78052,65926],[52,-48]],[[74289,47370],[132,365]],[[12007,86075],[109,-33],[2,101],[-111,-68]],[[12006,86496],[128,-334],[83,143],[151,31],[157,-46],[148,-336],[-37,-433],[3,-196],[-82,-234],[-75,-27],[51,-162],[115,66],[79,-131],[14,-141],[-118,-292],[-71,181],[-93,-39],[-174,110],[-136,172],[-103,254],[-4,-237],[-89,-210],[-51,57],[82,169],[-75,-7],[-103,-152],[-271,-47],[-209,91],[-378,-319],[-58,-223],[42,-175],[-72,-178],[-36,-219],[71,56],[116,-183],[-55,-103],[-258,-173],[-184,-308],[9,-145],[196,-113],[254,-225],[354,-268],[205,-116],[255,-84]],[[8933,85044],[80,-289],[23,154],[196,243],[183,-97],[108,166],[-6,167],[145,223],[275,221],[-83,168],[-174,-76],[-127,242],[-39,-211],[-142,-347],[-142,-241],[-77,-48],[-144,95],[-79,-120],[3,-250]],[[44349,72545],[55,-1674]],[[49535,90017],[687,30]],[[69815,40618],[-28,-503],[-249,44],[-10,-165],[-93,15]],[[45265,38392],[910,88]],[[45249,39899],[-28,-170],[44,-1337]],[[64662,50436],[189,-21]],[[64851,50415],[36,1017]],[[64887,51432],[-91,384],[-23,218]],[[66323,29653],[190,-25]],[[85868,42606],[187,220],[-171,459]],[[85884,43285],[-30,-178]],[[86838,47135],[96,-198]],[[86934,46937],[119,57],[121,343],[95,106],[154,-62],[56,102],[196,8],[-77,163]],[[49359,42720],[-22,1343]],[[9399,43332],[-78,-231],[-11,-329],[21,-309],[-106,-269],[12,-151],[-111,-143]],[[9125,41888],[66,-134],[30,-265]],[[85884,43285],[0,25]],[[85884,43310],[-162,5],[20,-184]],[[62125,66680],[50,249]],[[62175,66929],[-78,43],[2,112],[-150,8],[4,746]],[[85783,59322],[174,-100],[44,50],[547,-202]],[[86954,60032],[-97,190],[-184,468]],[[67093,33594],[13,412],[-32,326],[74,350],[77,204]],[[45848,53588],[-10,336]],[[45838,53924],[-718,-64]],[[58923,52144],[-189,4],[-3,392]],[[58731,52540],[-665,-9],[1,-57]],[[85016,50541],[76,114],[133,-51]],[[85366,43211],[61,-81],[50,103],[-111,-22]],[[43037,37979],[-1196,-148]],[[41841,37831],[43,-1005]],[[65465,32471],[377,-52]],[[66031,44181],[-11,204],[-92,10],[18,335]],[[65240,44202],[-17,-400]],[[64632,49680],[143,-235],[128,-49],[100,36],[85,-126],[106,-11],[23,-82],[93,38],[262,-22]],[[65613,50347],[-762,68]],[[94708,14673],[700,-630],[-87,-283],[147,-136],[-299,-991],[-150,135],[-23,-264],[-61,-290],[181,-182],[-429,-2609]],[[63737,29608],[-147,-531],[-163,-292],[-42,-193],[48,-39],[-45,-271],[-52,-42],[-43,-307],[73,-135],[4,-171],[76,48],[30,-112],[-41,-122],[30,-141]],[[68095,80888],[193,-33],[-81,124],[-112,-91]],[[67595,80846],[106,-58],[248,112],[-160,6],[-194,-60]],[[68287,80276],[-199,212],[-64,-75],[-84,58],[-38,-93],[-122,-4],[-155,76],[-132,-91]],[[76303,75115],[643,-127]],[[77209,74941],[40,460],[-49,116],[-35,398]],[[77165,75915],[15,168],[-304,54]],[[80629,39473],[41,76],[-79,113],[53,83]],[[88680,41649],[9,80],[259,367],[105,56],[67,-85],[106,497],[129,779]],[[53042,47871],[187,3],[4,-500]],[[67652,55746],[-653,80]],[[75661,48920],[1,179],[147,194],[294,-56]],[[69067,54270],[-142,-208],[-4,-97]],[[20493,12079],[57,156],[117,-28],[320,62],[61,-102]],[[20548,14407],[-28,-12]],[[67012,74851],[-689,173]],[[66323,75024],[-22,-331],[-55,-1282]],[[72239,43445],[45,723]],[[48985,13960],[1148,63]],[[50156,15008],[-1144,-62]],[[49012,14946],[7,-324],[-47,-3],[13,-659]],[[73792,41294],[18,555]],[[51031,72849],[-122,-4]],[[48502,69505],[972,53]],[[56062,78276],[197,160],[225,62],[109,101]],[[28734,35384],[-84,-114],[-40,-163]],[[18072,10884],[-225,1528],[-83,647]],[[15317,11917],[200,-1266]],[[75292,35258],[-6,-239],[90,37],[-84,202]],[[74778,35474],[169,69],[125,191],[113,67],[116,-160],[24,-159],[93,160],[109,-32],[53,174]],[[75580,35784],[-67,80],[-133,4],[-207,154]],[[63288,47691],[-146,373],[-139,-39],[-74,-169]],[[55755,77211],[254,-393]],[[82346,66114],[88,-53],[91,-162],[4,-565]],[[52512,25696],[-7,998]],[[79276,65882],[-32,-42]],[[55212,22046],[19,1324]],[[77138,42105],[634,-104]],[[77772,42001],[96,-17],[24,336],[95,-19],[22,295]],[[77258,42933],[-18,-674],[-94,13],[-8,-167]],[[14494,13085],[107,-123],[91,-10],[105,102],[331,37]],[[58731,52540],[-1,281],[32,0],[4,1206]],[[58007,54023],[0,-560]],[[42507,70692],[243,24]],[[43455,70784],[-53,1676]],[[38049,47860],[-1084,-178]],[[36965,47682],[133,-415],[-52,-139],[35,-117],[-157,-303],[-140,-16],[14,-181],[-99,-33],[-22,-256]],[[36677,46222],[43,-110],[-64,-79],[69,-116],[24,-664],[81,-103],[16,-152]],[[80720,65028],[241,-277]],[[80961,64751],[219,323],[95,-64],[144,15],[234,256],[81,175],[86,-22],[-34,-102],[106,-289],[83,81],[20,-84]],[[80730,65855],[-156,-118],[-132,0]],[[36355,44974],[48,-65],[75,121],[113,37],[136,-91]],[[36677,46222],[-651,-131]],[[76339,47751],[-169,-57],[-97,44],[-158,-242],[-206,-101]],[[76543,62061],[-42,54],[-112,780]],[[76389,62895],[-142,-8],[-121,261]],[[34909,22833],[72,-335],[95,-155],[7,-134],[111,-165],[-900,-195],[30,-526],[56,-305],[55,-86]],[[62952,77130],[-22,-1010]],[[85193,43601],[23,137],[-119,50],[64,-211]],[[85167,43692],[0,0]],[[74180,58941],[267,821],[32,257],[-89,63],[-65,144]],[[45085,37031],[917,96]],[[45265,38392],[-225,-24]],[[54892,74498],[59,196]],[[53793,75001],[-4,-26]],[[89383,22360],[-54,-195]],[[41820,37994],[21,-163]],[[42995,39660],[-53,-6]],[[42942,39654],[-1198,-153]],[[68491,56044],[531,-97]],[[69435,56602],[-42,154],[-54,-17],[-163,297],[-3,125]],[[50431,74629],[439,-447],[29,15]],[[50899,74197],[85,107],[0,101],[99,67],[72,-152]],[[68054,60932],[78,-22],[-53,-102]],[[80287,62860],[-25,170]],[[80262,63030],[-108,106],[-44,198],[104,166],[-148,54]],[[66933,63547],[631,-82]],[[54871,32971],[5,1339]],[[46775,55489],[-945,-68]],[[45830,55421],[41,-1494],[-33,-3]],[[76832,41628],[120,-15],[15,342],[163,-24],[8,174]],[[50903,73755],[-4,442]],[[85374,95839],[126,-684],[-17,414],[-69,295]],[[84021,94487],[-60,-651]],[[83961,93836],[381,-104],[7,82],[759,-217],[-5,-51],[347,-119]],[[85450,93427],[45,502],[-6,675],[-39,-205],[-74,-65],[-82,129],[-36,318],[-40,102],[16,171],[-41,146],[-2,207],[56,293],[43,40],[-110,333]],[[84981,96536],[-96,2],[-235,140],[-152,196],[-142,-108],[-88,60]],[[48689,58857],[561,16]],[[47923,60162],[6,-775]],[[52137,67042],[-2,223],[63,2],[-1,225]],[[52197,67492],[-18,20]],[[77485,34762],[60,-180],[221,-398],[61,-21],[364,-465]],[[78191,33698],[47,532]],[[52661,85560],[-35,-62]],[[9675,37833],[-20,-169],[43,-65],[103,55]],[[80130,78815],[175,-45]],[[80442,80376],[-12,5]],[[81306,58795],[-321,763],[-117,168]],[[66402,41784],[19,450]],[[12077,12732],[42,-210],[124,-169],[187,-132],[-164,-200],[-65,-205],[20,-108],[182,95],[43,-260]],[[86264,41487],[119,-135]],[[86536,41417],[27,105],[182,116],[19,304],[93,130],[-115,194],[54,239],[-58,10],[-22,192],[60,75],[-84,311],[75,185]],[[86490,43240],[-60,-95],[16,-513],[-81,-274],[-111,-161],[-160,-89],[-18,-117]],[[60094,44158],[-95,3],[-8,-323]],[[59160,45191],[-7,-1302]],[[67272,69179],[664,-97]],[[67921,70471],[-850,128]],[[65043,76965],[-130,-43],[-252,29]],[[50754,55716],[-539,-17]],[[58007,54585],[-740,-2]],[[62903,29699],[833,-91]],[[63715,31285],[-102,80],[-146,-11],[-134,146],[-178,7]],[[58052,55970],[-787,-4]],[[85803,54818],[-574,728]],[[17135,19626],[-371,-163],[45,-308],[-184,-83],[26,-183],[-554,-240],[71,-474]],[[76218,48555],[-85,32],[-72,-114],[-65,79],[-203,-244],[-92,128],[-31,182]],[[77430,56581],[6,265],[100,44],[84,-114]],[[85032,43361],[90,160],[72,-14],[185,227],[154,57],[113,182]],[[85646,43973],[-76,552]],[[89074,38876],[-152,-296],[-76,-3],[-218,-341],[-5,-102],[-115,-145]],[[48992,15935],[20,-989]],[[68198,21380],[110,149],[-28,121],[-82,-270]],[[68523,20783],[-83,36],[-31,176],[-67,24],[5,146],[-60,38],[28,197],[-148,-138],[-20,-130],[73,-82],[36,-313],[73,2],[68,-314],[-94,-144],[-81,263],[-214,-64],[24,183],[-65,168],[-16,187],[-156,128],[-64,-28],[-27,-397],[-53,-100],[-53,152],[18,354],[-163,206],[-118,446]],[[73322,46807],[-143,-10]],[[95355,18782],[-76,56],[29,165],[-66,161],[-4,172],[-89,-131],[11,155],[-61,141],[-83,-49],[21,217],[-88,-139]],[[74272,49236],[246,663]],[[74483,50269],[-138,-30]],[[73895,50185],[-23,-87],[45,-210],[-26,-126],[63,-84],[-20,-182]],[[81646,57546],[198,-62]],[[81844,57484],[47,99],[99,33],[47,211],[86,94],[-36,206],[-4,260],[110,291],[-28,124]],[[81791,58705],[-129,158],[-197,50],[-71,-52]],[[70717,60652],[-133,-17]],[[70584,60635],[-34,-1],[-86,-251],[-22,-215],[1,-752]],[[83399,48986],[7,-353],[108,7],[112,-319],[9,-119]],[[96362,96784],[107,-39]],[[19046,13781],[-43,63],[-199,96],[-191,-110],[-272,-33]],[[81423,72949],[-106,76],[-10,94],[117,-52],[49,67],[-137,619],[41,271]],[[91699,22239],[87,-365],[85,227],[128,-134]],[[57008,84345],[-425,347],[-144,145],[-114,238],[-92,32],[22,-123],[179,-323],[149,-62],[51,-154],[67,53],[40,-97]],[[55611,86030],[194,-238],[238,-392],[103,-79],[26,-182],[154,79],[-138,204],[-425,510],[-177,271]],[[55770,84378],[70,165],[139,52],[-40,178],[78,63],[-3,479],[-112,71],[-202,336]],[[40718,37844],[32,-657]],[[87946,39227],[55,-243]],[[88110,38515],[90,234],[99,104],[218,8],[274,282]],[[88314,40066],[-123,-178],[-127,-37],[-34,-304],[17,-154],[-84,-78]],[[11031,13738],[154,-544],[90,-566],[68,-268],[14,-228],[41,-61],[124,-540],[32,-467]],[[89257,24179],[-146,-651],[0,-262],[122,-456],[7,-341],[-33,-108],[34,-141]],[[54885,9743],[243,-4],[-7,-1454],[138,115],[147,-66],[151,170],[43,112],[80,653],[35,78],[104,812],[-26,198],[18,202],[154,225],[199,90],[32,-33]],[[9320,34780],[241,120],[-127,729]],[[77526,65534],[-83,-164],[60,-279],[100,-307],[137,-143],[18,-87]],[[59077,47649],[41,-122],[-62,-41],[153,-469]],[[87607,36129],[-175,876]],[[71700,56375],[4,-341]],[[95883,96409],[131,49],[66,-63]],[[74388,46669],[223,232],[30,140],[118,45]],[[68816,36148],[162,-256],[142,-313],[167,-897],[166,-512]],[[69303,36067],[-487,81]],[[83179,47114],[-52,90],[-23,332],[-57,40],[-84,257],[-110,-107],[-151,151]],[[62712,66479],[-132,193],[26,211],[98,228],[-140,13],[-55,-67],[-203,84],[51,-172],[-125,79],[-57,-119]],[[89409,53263],[123,18],[104,211],[9,181],[-97,-45],[9,-131],[-148,-234]],[[89708,56056],[345,-419],[-4,-450],[-30,-643],[-22,-175],[-169,-615],[77,140],[128,472],[33,449],[23,622],[-1,340],[-143,80],[-223,251]],[[89190,52179],[96,268],[428,988],[99,262],[-57,-26],[-219,-529],[-73,-129],[-82,-5],[-130,-540],[-97,-260]],[[89037,54456],[1,-392],[-45,-493],[68,-195],[-44,-61],[160,-124],[136,109],[154,433],[-3,160],[81,274],[-38,100],[42,167],[-57,205],[-165,49]],[[77879,81202],[-254,-158],[-91,-154],[-48,-219],[-97,-202],[-103,-122],[-208,-159],[-287,-175],[-126,-145]],[[73039,61655],[506,-111]],[[64480,66147],[367,-57]],[[48985,13960],[-766,-51]],[[80262,63030],[81,103],[-13,98],[79,150],[185,-21],[148,218],[94,59],[92,246],[28,195]],[[80956,64078],[-43,48],[6,481],[68,-152],[168,49],[-194,247]],[[86246,39494],[541,-197]],[[87139,39872],[-47,202],[115,149],[-62,70],[-163,387],[-56,-84],[22,-191],[-56,-74],[-18,330],[61,91],[-24,163],[-96,-318],[-71,24]],[[86744,40621],[-79,-247],[-102,-130],[-176,-102],[-86,-246],[-55,-402]],[[69560,33470],[25,-241],[18,-822],[-18,-289]],[[53889,57987],[330,0]],[[54219,57987],[-3,1006],[94,-1]],[[49801,84746],[24,-137],[-183,-184],[-32,-123],[-117,-24],[-23,-129]],[[91394,19131],[-212,136],[-69,99],[-26,207],[48,107],[-1,193],[57,101]],[[85160,38507],[219,144],[121,267],[-11,168],[64,122],[-61,142],[48,401]],[[85182,39875],[-398,138]],[[84784,40013],[-116,-840]],[[15341,3303],[-82,-43],[-60,131],[17,234],[76,311],[-112,-327],[-61,-44],[-6,-200],[48,-236],[108,-28],[72,108]],[[14808,3040],[214,-393],[41,-164],[84,2],[0,229],[79,259],[-84,20],[-49,-89],[-209,227],[123,29],[35,161],[-31,655],[55,-67],[11,-218],[85,209],[91,123],[-12,314],[-72,159],[-66,-75],[-35,-317],[-99,43],[23,-103],[-71,-172],[70,-442],[-98,-61],[-85,-329]],[[50188,33004],[249,177]],[[15353,37324],[45,5],[174,-195],[-64,313],[-64,442],[-45,-20],[-71,488],[30,15],[128,461],[130,286],[100,501],[62,28],[-19,140]],[[73247,51017],[83,-141],[-62,-261]],[[72078,48224],[-209,-82]],[[85409,92110],[17,894],[24,423]],[[83961,93836],[-110,-1044]],[[45830,55421],[-543,-40]],[[49231,61576],[-18,1414]],[[72522,71406],[163,-35],[-23,-332],[157,-32],[28,-60]],[[85884,43310],[26,231],[-67,95]],[[85801,43931],[-112,109],[-43,-67]],[[64540,20859],[71,1641]],[[19224,17807],[44,-316],[-44,-19],[62,-431],[-165,-69],[31,-226],[-61,-26],[45,-327],[132,18],[277,116],[38,-275],[345,151],[22,-160],[123,49],[109,-811],[76,32],[43,-316],[54,-149],[108,45],[22,-163]],[[28170,38286],[78,-104]],[[69478,21819],[77,44],[14,191],[-91,-235]],[[69268,23024],[27,-79],[109,61],[18,289],[-56,6],[-83,-143],[-15,-134]],[[69339,24405],[-20,-488],[134,-26],[61,-252],[102,95],[94,-59],[70,-403],[91,-177],[74,-376],[115,-112],[22,123],[-116,213],[91,246],[-108,348],[65,-78],[19,244],[-60,215],[37,374]],[[69156,23544],[51,-156],[64,57],[-76,144],[-39,-45]],[[86179,45204],[69,60],[19,161],[230,118],[384,-78],[39,137],[112,90],[59,145]],[[86370,45928],[-128,-78],[-37,81],[-82,-249]],[[77364,76048],[-148,-52],[-51,-81]],[[65118,15469],[126,-342],[338,-378],[299,-126],[266,-16],[133,107],[15,126],[-153,105],[-212,22],[37,166],[-166,193],[-147,334],[-94,75]],[[63915,13379],[104,-237],[489,-525],[37,0],[213,-347],[156,-157],[35,32],[146,-118],[-211,434],[2,98],[-126,196],[-329,265],[-147,189],[138,48],[-305,277],[-99,1],[-103,-156]],[[78499,70875],[8,-55],[426,-271]],[[42942,39654],[-36,973]],[[77748,41667],[24,334]],[[81830,71024],[81,17],[-17,218],[-80,122],[-73,-32],[-22,167],[65,8],[-89,225],[-140,-37],[-3,188],[68,4],[-33,221],[-99,206],[-46,-1]],[[74312,74831],[-50,-389],[-143,-260],[-17,-259]],[[81098,88200],[-172,-1978],[-96,24]],[[53189,69647],[12,-1263]],[[73969,70682],[318,-63],[6,92],[390,-82]],[[63262,36819],[86,-87],[42,-489]],[[83254,83205],[352,648],[161,489],[-103,217],[-13,185],[36,400],[130,589],[155,439],[158,378]],[[70200,61093],[147,17],[77,-177],[162,-151],[-2,-147]],[[78510,42388],[-31,-387],[-64,16],[-46,-620],[127,-28]],[[62834,27730],[57,1623]],[[73314,49873],[31,-444]],[[72117,51175],[77,-118],[-11,-102],[79,-53],[6,-147],[157,-89],[-4,-201],[81,-14]],[[72502,50451],[210,-18]],[[72712,50433],[61,131],[3,682]],[[86583,53749],[19,53],[202,99],[64,277],[179,-22],[77,-95],[62,180],[-18,133],[69,-19],[85,-186],[95,95],[10,169],[56,6],[52,-165],[-16,-112],[136,24]],[[87569,54787],[-213,316],[-345,-197],[-15,32]],[[71373,77393],[-23,-19],[-42,-731]],[[13079,60870],[102,59],[152,243],[126,138],[66,310],[-46,127],[-77,-116],[-157,-89],[-26,-132],[33,-236],[-117,-103],[-56,-201]],[[12842,62541],[55,11],[103,480],[183,479],[-140,26],[-100,-244],[-101,-752]],[[14079,60238],[-105,-123],[-25,148],[-143,18],[-250,-256],[-13,-135],[98,-221],[-37,-409],[-91,-383],[-80,-90],[-314,-95],[-122,71],[-70,-161],[-152,-109]],[[82845,94816],[-337,-270],[-116,201],[-154,-372],[-144,-452],[-86,-546],[-79,-338]],[[54262,55765],[-309,1]],[[54224,57315],[-5,672]],[[34239,7315],[716,180],[1099,254]],[[87587,47054],[-22,105],[89,46],[-106,140],[-211,-142],[-53,112],[-182,-433],[-109,-54]],[[86456,46206],[14,99],[200,228],[165,327],[99,77]],[[30334,6254],[1331,393]],[[92380,15002],[-5,-360],[-53,-108],[48,-145],[126,101],[120,-29],[-57,-208],[-126,-118],[-23,-98],[62,-393],[101,-289]],[[72054,32980],[-566,116]],[[94770,28794],[47,-93],[-32,-429],[-53,-83],[7,-150]],[[94851,27617],[132,134],[165,12],[135,-47],[62,51],[87,-194],[237,-257],[20,-94],[-114,-427],[-33,193],[-99,-460],[-131,-136],[-59,119],[-94,-52],[77,-111],[123,-1],[159,122],[115,217],[162,481],[83,430],[-35,503],[-17,-326],[-71,-38],[-262,234],[-76,104],[-150,41],[-138,190],[-57,240],[-213,156],[-42,120]],[[40671,8652],[1469,228]],[[85546,37756],[190,127],[82,195]],[[86246,39494],[-357,130]],[[76504,62948],[-115,-53]],[[56545,21952],[-572,21]],[[69936,76605],[-115,19],[-124,145],[-109,-49]],[[86744,40621],[82,265],[-74,181],[76,46],[-135,293],[-103,-18],[-61,-104]],[[73150,59795],[66,104],[59,-44],[97,87]],[[84768,40019],[16,-6]],[[36965,47682],[70,66],[6,195],[57,119],[-74,361],[-50,-1],[-136,196]],[[66513,44660],[38,787]],[[84152,38093],[-111,418],[-68,436]],[[87555,52729],[-28,132],[16,252],[86,287],[109,256],[0,186]],[[52824,67730],[-129,-85],[-97,326],[-89,27],[-59,-173],[-68,-24],[-44,105],[-49,-80],[-28,-253],[-64,-81]],[[73267,50434],[-90,74],[-45,-224],[-78,-18],[37,-216]],[[73091,50050],[-111,-280],[29,-145],[-73,-114]],[[46887,57076],[40,-1575]],[[50823,23983],[19,-1331]],[[48529,83737],[55,-110]],[[81784,50765],[-32,-319]],[[22553,10289],[-1146,-461]],[[95114,96395],[135,-11]],[[75396,54878],[353,-67]],[[66499,80496],[31,265],[-161,206],[-84,310],[-105,-5]],[[66180,81272],[-86,12],[-96,-170],[-59,-224],[19,-200],[-112,-243],[-19,-202]],[[78191,33698],[159,-98],[573,-585]],[[55068,57645],[-2,-337],[-181,3]],[[51896,53906],[1086,14]],[[46826,18416],[879,74]],[[63199,56036],[61,-4],[15,507],[63,-6],[10,335],[32,-1],[9,360]],[[9430,45787],[-39,-343],[-86,-228],[-86,54],[-222,-115],[-133,-298],[-88,-418]],[[7758,32279],[-72,-152],[0,-299],[-106,-164],[-195,-630],[60,-185],[10,-310],[-28,-197],[96,-276],[148,-313],[389,-709],[116,-270],[105,-357],[-49,-128],[50,-334],[137,-276],[149,-507],[68,-325]],[[49717,21266],[-23,1327]],[[22152,13384],[-251,-90],[-10,-155]],[[20830,2810],[909,381]],[[75480,35383],[89,-78],[-29,133],[-60,-55]],[[75580,35784],[146,219],[235,125],[201,-233]],[[72712,50433],[70,-69],[73,-198],[95,31],[141,-147]],[[57742,23931],[141,124],[176,251],[54,152],[-4,260],[88,-5]],[[68651,36366],[165,-218]],[[56269,51730],[6,1405]],[[88158,49802],[165,26],[95,-126],[68,14],[154,577],[161,455],[78,287]],[[66382,25278],[-1,263],[-60,172],[63,97],[120,-6],[31,-179],[137,-232],[71,-42]],[[66167,75063],[156,-39]],[[88859,52207],[32,215],[104,95],[-203,-12],[-245,-309],[-95,14]],[[52169,69563],[200,45]],[[96457,97962],[-154,229]],[[96338,96438],[243,31]],[[21949,89903],[75,-132],[218,220],[47,281]],[[93828,28498],[5,151],[-58,167],[-47,-240],[-142,-148]],[[57478,71042],[419,-17]],[[71904,50207],[-71,112],[-52,321],[-161,303],[-98,31]],[[72502,50451],[-45,-279]],[[81707,64402],[-262,-47],[-126,19],[-104,-117],[-66,26],[-193,-205]],[[81268,81685],[8,-185],[-138,39],[-20,-222],[-63,19],[-21,-219],[-126,36],[-12,-130],[-299,152],[-88,141]],[[64887,51432],[716,-68]],[[88301,55171],[-19,76],[-203,72],[-47,128],[80,166],[70,265],[-244,-70],[-82,62],[-138,-65],[-204,-29],[-162,-106],[7,94],[127,163],[132,-31],[437,191],[103,-3]],[[83703,29166],[-41,-344],[45,-382],[537,-199]],[[45700,89262],[-151,-346],[14,-123],[-110,-336],[27,-151],[-56,-136],[61,-89],[-97,-61],[-40,-141],[29,-123],[-92,-101],[4,-125],[-101,-84],[-6,-301],[-47,-91],[-21,-240],[-44,-6],[-53,-293],[-57,-9],[-51,-696]],[[97688,96862],[107,-93],[-32,154],[21,226]],[[66082,83759],[117,-47],[-61,146],[-56,-99]],[[66239,83223],[1,83],[-248,50],[126,111],[3,107],[-162,-144],[88,178],[-79,56],[93,218],[136,21],[85,141],[48,256],[245,-51],[120,97],[11,-98],[148,280],[71,-153],[179,341],[55,230],[122,-108],[48,129],[-162,72],[-10,107],[111,-1],[-45,177],[-80,-69],[-68,237],[17,228],[-150,-99],[-3,-127],[-70,-97],[-198,478],[-102,146],[128,-487],[62,-76],[-12,-177],[62,-85],[-41,-229],[-63,39],[-33,238],[-113,20],[-154,-315],[-243,-113],[-69,-139],[-393,-64],[-114,105]],[[66935,28218],[24,311],[49,158],[8,338],[-113,543]],[[66180,81272],[-114,129],[-68,1]],[[78003,46134],[-80,-111],[32,-80],[-245,-504]],[[96538,98574],[-250,-233]],[[14025,5438],[111,-202],[198,-153],[160,-6],[59,-226],[122,-194],[140,-151],[50,22],[6,-324],[89,181],[-42,619],[-93,-54],[43,205],[-48,165],[-3,245],[-90,84],[-25,117],[67,85],[-77,125],[-62,229]],[[80129,88448],[116,-417],[79,-89],[57,-296],[-59,-231],[-153,-32],[64,358],[-166,-59],[38,-121],[-74,-326],[-199,-156]]]} +{"type":"Topology","bbox":[-57.66491068874468,12.97635452036684,973.4629348876791,606.5694262668667],"transform":{"scale":[0.010311381569579933,0.005935990077365771],"translate":[-57.66491068874468,12.97635452036684]},"objects":{"counties":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1,2,3,4,5,6,7]],"id":"04015"},{"type":"Polygon","arcs":[[8,9,10,11,12,13,14]],"id":"22105"},{"type":"Polygon","arcs":[[15,16,17,18,19]],"id":"16063"},{"type":"Polygon","arcs":[[20,21,22,23,24,25,26,27,28]],"id":"27119"},{"type":"Polygon","arcs":[[29,30,31,32,33,34,35]],"id":"38017"},{"type":"Polygon","arcs":[[36,37,38,39,40]],"id":"46081"},{"type":"Polygon","arcs":[[41,42,43,44,45,46]],"id":"36095"},{"type":"MultiPolygon","arcs":[[[47,48,49,50]],[[51]],[[52]]],"id":"02275"},{"type":"Polygon","arcs":[[53,54,55,56]],"id":"13143"},{"type":"Polygon","arcs":[[57,58,59,60,61]],"id":"13023"},{"type":"Polygon","arcs":[[62,63,64,65,66,67]],"id":"18093"},{"type":"Polygon","arcs":[[68,69,70,71,72,73]],"id":"18079"},{"type":"Polygon","arcs":[[74,75,76,77,78,79]],"id":"26087"},{"type":"Polygon","arcs":[[80,81,82,83,84,85]],"id":"28017"},{"type":"Polygon","arcs":[[86,87,88,89,90,91]],"id":"39033"},{"type":"Polygon","arcs":[[92,93,94,95,96,97,98]],"id":"46099"},{"type":"Polygon","arcs":[[99,-98,100,101,102,103]],"id":"46125"},{"type":"Polygon","arcs":[[104,105,106,107,108,109]],"id":"48471"},{"type":"Polygon","arcs":[[110,111,112,113]],"id":"72133"},{"type":"Polygon","arcs":[[114,115,116,117,118,119]],"id":"46003"},{"type":"Polygon","arcs":[[120,121,122,123,124,125,126]],"id":"48047"},{"type":"Polygon","arcs":[[127,128,129,130,131,132,133]],"id":"72025"},{"type":"Polygon","arcs":[[134,135,136,137,138]],"id":"72033"},{"type":"Polygon","arcs":[[139,140,141,142,143,144]],"id":"72101"},{"type":"Polygon","arcs":[[145,146,147,148,149]],"id":"31029"},{"type":"Polygon","arcs":[[150,151,152,153]],"id":"72054"},{"type":"Polygon","arcs":[[154,155,156,157,158,159]],"id":"08021"},{"type":"Polygon","arcs":[[160,161,162,163,164,165,166,167]],"id":"24043"},{"type":"Polygon","arcs":[[168,169,170,171,172,173]],"id":"20137"},{"type":"Polygon","arcs":[[174,175,176,177,178,179]],"id":"17053"},{"type":"Polygon","arcs":[[180,181,182,183,184,185]],"id":"48117"},{"type":"Polygon","arcs":[[186,187,188,189,190,191,192,193]],"id":"13261"},{"type":"Polygon","arcs":[[194,195,196,197,198,199]],"id":"55075"},{"type":"Polygon","arcs":[[200,201,202,203,204]],"id":"06069"},{"type":"Polygon","arcs":[[205,206,207,208,209,210,211]],"id":"13199"},{"type":"Polygon","arcs":[[212,213,214,215,216,217]],"id":"19013"},{"type":"Polygon","arcs":[[218,219,220,221]],"id":"19081"},{"type":"Polygon","arcs":[[222,-23]],"id":"27125"},{"type":"Polygon","arcs":[[223,224,225,226,227]],"id":"31125"},{"type":"Polygon","arcs":[[228,229,230,231]],"id":"42075"},{"type":"Polygon","arcs":[[232,233,234,235]],"id":"48219"},{"type":"Polygon","arcs":[[236,237,238,239,240,241]],"id":"48417"},{"type":"Polygon","arcs":[[242,243,244,245,246,247,248]],"id":"48451"},{"type":"Polygon","arcs":[[249,250,251,252,253,254]],"id":"48497"},{"type":"Polygon","arcs":[[255,256,257,-93,258,259]],"id":"46079"},{"type":"Polygon","arcs":[[260,261,262,263,264,265,266]],"id":"46069"},{"type":"Polygon","arcs":[[267,268,269,270,271,272]],"id":"48101"},{"type":"Polygon","arcs":[[273,274,275]],"id":"04023"},{"type":"Polygon","arcs":[[276,277,278,279,280]],"id":"19179"},{"type":"Polygon","arcs":[[281,282,283,284,285,286]],"id":"19031"},{"type":"Polygon","arcs":[[287,288,289,290,291,292,293]],"id":"30033"},{"type":"Polygon","arcs":[[294,295,296,297,298,299,300]],"id":"29185"},{"type":"Polygon","arcs":[[301,302,303,304,305]],"id":"12091"},{"type":"Polygon","arcs":[[306,307,308,309,310]],"id":"21219"},{"type":"Polygon","arcs":[[311,312,313,314,315]],"id":"23003"},{"type":"Polygon","arcs":[[316,317,318,-168,319,320,321,322]],"id":"24001"},{"type":"Polygon","arcs":[[323,324,325,326,327]],"id":"28075"},{"type":"Polygon","arcs":[[328,329,330,331,332,333]],"id":"38021"},{"type":"Polygon","arcs":[[334,335,336,337,338]],"id":"27093"},{"type":"Polygon","arcs":[[339,340,341,342]],"id":"46007"},{"type":"Polygon","arcs":[[343,344,345,346,347,348,349,350]],"id":"49043"},{"type":"Polygon","arcs":[[351,352,353,354,355,356]],"id":"36099"},{"type":"Polygon","arcs":[[357,358,359,360,361,362,363]],"id":"20073"},{"type":"Polygon","arcs":[[364,365,366,367]],"id":"20101"},{"type":"Polygon","arcs":[[368,369,370,371,372,373]],"id":"26123"},{"type":"Polygon","arcs":[[374,375,376,377,378,379]],"id":"31035"},{"type":"Polygon","arcs":[[380,381,382,383]],"id":"36073"},{"type":"Polygon","arcs":[[384,385,386,387,388,389,390]],"id":"38063"},{"type":"Polygon","arcs":[[391,392,393,394,395,396]],"id":"40011"},{"type":"Polygon","arcs":[[397,398,399,400,401]],"id":"48441"},{"type":"Polygon","arcs":[[402,403,404,405,406]],"id":"48011"},{"type":"Polygon","arcs":[[407,408,409,410]],"id":"48233"},{"type":"Polygon","arcs":[[-248,411,412,413]],"id":"48235"},{"type":"Polygon","arcs":[[414,415,416,417,418,419]],"id":"55137"},{"type":"Polygon","arcs":[[420,421,422,423,424,425,426]],"id":"47151"},{"type":"Polygon","arcs":[[427,428,429,430,431]],"id":"55113"},{"type":"Polygon","arcs":[[432,433,434,435,436]],"id":"26073"},{"type":"Polygon","arcs":[[437,438,439,440,441,442]],"id":"28131"},{"type":"Polygon","arcs":[[443,444,-86,445,446,447]],"id":"28013"},{"type":"Polygon","arcs":[[448,449,450,451,452]],"id":"31171"},{"type":"Polygon","arcs":[[453,454,455,456,457,458]],"id":"48335"},{"type":"Polygon","arcs":[[459,460,461,462,463]],"id":"08057"},{"type":"Polygon","arcs":[[464,465,466,467,468]],"id":"19089"},{"type":"Polygon","arcs":[[469,470,471,472,-75]],"id":"26151"},{"type":"Polygon","arcs":[[473,474,475,476,477,478,479]],"id":"18075"},{"type":"Polygon","arcs":[[480,481,482,483,484]],"id":"38075"},{"type":"Polygon","arcs":[[485,486,487,488,489]],"id":"41021"},{"type":"Polygon","arcs":[[490,491,492,493,494]],"id":"29119"},{"type":"Polygon","arcs":[[495,496,497,498]],"id":"48501"},{"type":"Polygon","arcs":[[499,500,501,-269,502]],"id":"48075"},{"type":"Polygon","arcs":[[503,504,505,506]],"id":"13097"},{"type":"Polygon","arcs":[[507,508,509,510]],"id":"02158"},{"type":"Polygon","arcs":[[511,512,513,514,515]],"id":"19181"},{"type":"Polygon","arcs":[[516,517,518,519,520,521]],"id":"40031"},{"type":"Polygon","arcs":[[522,523,524,525,526,527,528,529]],"id":"40009"},{"type":"Polygon","arcs":[[-264,530,531,532,533]],"id":"46017"},{"type":"Polygon","arcs":[[534,535,536,537,538,539]],"id":"48171"},{"type":"Polygon","arcs":[[540,541,542,543]],"id":"48125"},{"type":"Polygon","arcs":[[544,545,546,547,548]],"id":"48283"},{"type":"Polygon","arcs":[[549,550,551,552]],"id":"54093"},{"type":"Polygon","arcs":[[553,554,555,556,557,558]],"id":"06089"},{"type":"Polygon","arcs":[[559,560,561,562,563,564]],"id":"17165"},{"type":"Polygon","arcs":[[565,566,567,568,569]],"id":"26101"},{"type":"Polygon","arcs":[[570,571,572,573,574]],"id":"31071"},{"type":"Polygon","arcs":[[575,576,-574,577,578,579,580,581,582]],"id":"31041"},{"type":"Polygon","arcs":[[583,-260,584,585,586]],"id":"46097"},{"type":"Polygon","arcs":[[587,588,589,590,591,592]],"id":"46025"},{"type":"Polygon","arcs":[[593,594,595,596,597]],"id":"05037"},{"type":"Polygon","arcs":[[598,599,600,-160,601,602,603]],"id":"08007"},{"type":"Polygon","arcs":[[604,605,606,607]],"id":"12043"},{"type":"Polygon","arcs":[[608,609,610,611,612]],"id":"46053"},{"type":"Polygon","arcs":[[613,614,615,-408,616]],"id":"48195"},{"type":"MultiPolygon","arcs":[[[617,618,619,620,621]],[[622,623,624]]],"id":"53053"},{"type":"Polygon","arcs":[[625,626,627,-206,628,629,630]],"id":"13077"},{"type":"Polygon","arcs":[[631,632,633,634]],"id":"13059"},{"type":"Polygon","arcs":[[635,636,637,638,639]],"id":"18081"},{"type":"Polygon","arcs":[[640,641,642,643,644,645]],"id":"20115"},{"type":"Polygon","arcs":[[646,647,648,649,650]],"id":"27059"},{"type":"Polygon","arcs":[[651,652,653,654,655,656]],"id":"31003"},{"type":"Polygon","arcs":[[657,658,659,660,661]],"id":"39103"},{"type":"Polygon","arcs":[[662,663,664,665,666,667]],"id":"47153"},{"type":"Polygon","arcs":[[668,669,670,671]],"id":"48375"},{"type":"Polygon","arcs":[[672,673,674,675,676]],"id":"48145"},{"type":"Polygon","arcs":[[-388,677,678,679,680,681]],"id":"38039"},{"type":"Polygon","arcs":[[-118,682,683,684]],"id":"46043"},{"type":"Polygon","arcs":[[685,686,687,688,689,690]],"id":"48193"},{"type":"Polygon","arcs":[[691,692,693,694,695]],"id":"19185"},{"type":"Polygon","arcs":[[696,697,698,699,700,701,702]],"id":"38087"},{"type":"Polygon","arcs":[[703,-401,704,705,-245,706]],"id":"48399"},{"type":"Polygon","arcs":[[707,708,709,710,711,-4]],"id":"04005"},{"type":"Polygon","arcs":[[712,713,714,715,716]],"id":"16009"},{"type":"Polygon","arcs":[[717,718,719,720,721,722,723]],"id":"20007"},{"type":"Polygon","arcs":[[724,725,726,727,-95]],"id":"27133"},{"type":"Polygon","arcs":[[728,-312,729,730]],"id":"23029"},{"type":"Polygon","arcs":[[731,732,733,734,735]],"id":"30051"},{"type":"Polygon","arcs":[[736,737,738,739]],"id":"46091"},{"type":"Polygon","arcs":[[740,741,-352,742,743]],"id":"36117"},{"type":"Polygon","arcs":[[744,745]],"id":"02060"},{"type":"Polygon","arcs":[[746,747,748,749,750]],"id":"12027"},{"type":"Polygon","arcs":[[751,752,753,754,755,756]],"id":"13015"},{"type":"Polygon","arcs":[[757,758,759,760,761]],"id":"19127"},{"type":"Polygon","arcs":[[762,763,764,765,766,767]],"id":"20047"},{"type":"Polygon","arcs":[[768,769,770,771,772]],"id":"26129"},{"type":"Polygon","arcs":[[773,-227,774,775,776,777]],"id":"31093"},{"type":"Polygon","arcs":[[778,779,780,781,782,783]],"id":"39063"},{"type":"Polygon","arcs":[[784,785,786,787,788,789,790]],"id":"21209"},{"type":"Polygon","arcs":[[791,792,793,794,-665]],"id":"47007"},{"type":"Polygon","arcs":[[795,796,797,798,799,800]],"id":"37157"},{"type":"Polygon","arcs":[[801,802,803,804,805]],"id":"48189"},{"type":"Polygon","arcs":[[806]],"id":"51820"},{"type":"Polygon","arcs":[[807,808,809,810,811]],"id":"56025"},{"type":"Polygon","arcs":[[-107,812,813,814,815]],"id":"48407"},{"type":"Polygon","arcs":[[816,817,818,-416,819]],"id":"55135"},{"type":"Polygon","arcs":[[820,821,822,823,824]],"id":"39067"},{"type":"Polygon","arcs":[[825,826,827,828,829,830,831]],"id":"13087"},{"type":"Polygon","arcs":[[832,833,834,835,836]],"id":"22001"},{"type":"Polygon","arcs":[[837,838,839,840,841]],"id":"27019"},{"type":"Polygon","arcs":[[842,843,844,845,-561,846]],"id":"17065"},{"type":"Polygon","arcs":[[847,848,-339,849,850,851]],"id":"27067"},{"type":"Polygon","arcs":[[852,853,854,855,856]],"id":"55071"},{"type":"Polygon","arcs":[[857,858,859,860,861,862]],"id":"01013"},{"type":"Polygon","arcs":[[863,864,865,866,867,868,869]],"id":"13169"},{"type":"Polygon","arcs":[[870,871,872,873]],"id":"19069"},{"type":"Polygon","arcs":[[874,875,876,877,878,879]],"id":"18113"},{"type":"Polygon","arcs":[[880,881,882,883,884,885]],"id":"20193"},{"type":"Polygon","arcs":[[886,887,888,-433,889]],"id":"26035"},{"type":"Polygon","arcs":[[890,891,892,893]],"id":"26039"},{"type":"Polygon","arcs":[[894,895,896,897,898,899]],"id":"29225"},{"type":"Polygon","arcs":[[900,901,902,903,904]],"id":"31005"},{"type":"Polygon","arcs":[[905,906,907,908,909]],"id":"31143"},{"type":"Polygon","arcs":[[910,911,912,913,-589]],"id":"46029"},{"type":"Polygon","arcs":[[914,915,916,-121,917,918]],"id":"48131"},{"type":"Polygon","arcs":[[919,-411,920,-669,921,922]],"id":"48341"},{"type":"Polygon","arcs":[[923,924,925,926,927,928]],"id":"48317"},{"type":"Polygon","arcs":[[929,930,931,932,933,934,935]],"id":"39083"},{"type":"Polygon","arcs":[[936,937,938,939,940]],"id":"72073"},{"type":"Polygon","arcs":[[941,942,943,944,945,-674,946]],"id":"48293"},{"type":"Polygon","arcs":[[947,948,949,950,951]],"id":"19055"},{"type":"Polygon","arcs":[[952,953,954,955]],"id":"31159"},{"type":"Polygon","arcs":[[956,957,958,959]],"id":"48507"},{"type":"Polygon","arcs":[[960,961,962,963,964]],"id":"06091"},{"type":"Polygon","arcs":[[965,966,967,968,969]],"id":"17201"},{"type":"Polygon","arcs":[[970,971,972,973,974,975]],"id":"23031"},{"type":"Polygon","arcs":[[976,977,978,979,980]],"id":"24011"},{"type":"Polygon","arcs":[[981,982,983,984,985]],"id":"26119"},{"type":"Polygon","arcs":[[-34,986,987,988,989,990,991]],"id":"38077"},{"type":"Polygon","arcs":[[992,993,994,995,996,997]],"id":"42007"},{"type":"Polygon","arcs":[[998,999,1000,-236,-496]],"id":"48079"},{"type":"Polygon","arcs":[[1001,-772,1002,1003,1004,-889]],"id":"26051"},{"type":"Polygon","arcs":[[1005,1006,1007,1008,1009,1010,1011]],"id":"08121"},{"type":"Polygon","arcs":[[1012,-952,1013,1014,-214]],"id":"19019"},{"type":"Polygon","arcs":[[1015,1016,1017,1018,1019,1020,1021]],"id":"19187"},{"type":"Polygon","arcs":[[1022,-768,1023,1024,1025,1026]],"id":"20057"},{"type":"Polygon","arcs":[[-985,1027,1028,-769,-892]],"id":"26135"},{"type":"Polygon","arcs":[[1029,1030,1031,1032]],"id":"28099"},{"type":"Polygon","arcs":[[1033,1034,1035,1036,1037,1038]],"id":"31137"},{"type":"Polygon","arcs":[[1039,1040,1041,1042,1043,1044]],"id":"31039"},{"type":"Polygon","arcs":[[1045,1046,1047,1048,1049,1050,1051]],"id":"45045"},{"type":"Polygon","arcs":[[1052,1053,1054,1055,1056]],"id":"48151"},{"type":"Polygon","arcs":[[1057,1058,1059,1060,1061]],"id":"37069"},{"type":"Polygon","arcs":[[1062,1063,1064,1065,1066,1067]],"id":"39039"},{"type":"Polygon","arcs":[[1068,1069,1070,1071,1072,1073]],"id":"47055"},{"type":"Polygon","arcs":[[1074,1075,1076,1077,1078]],"id":"48023"},{"type":"Polygon","arcs":[[1079,1080,1081,1082,1083]],"id":"48365"},{"type":"Polygon","arcs":[[1084,1085,1086,1087]],"id":"53001"},{"type":"Polygon","arcs":[[-1019,1088,1089,1090,1091,1092]],"id":"19015"},{"type":"Polygon","arcs":[[1093,1094,1095,-255,1096,1097,1098]],"id":"48237"},{"type":"Polygon","arcs":[[1099,1100,1101,1102,1103]],"id":"72009"},{"type":"Polygon","arcs":[[1104,1105,-358,1106,-643]],"id":"20017"},{"type":"Polygon","arcs":[[-689,1107,1108,1109,1110]],"id":"48099"},{"type":"Polygon","arcs":[[1111,1112,1113,1114,1115]],"id":"26037"},{"type":"Polygon","arcs":[[1116,1117,1118,-361]],"id":"20207"},{"type":"Polygon","arcs":[[1119,1120,1121,1122,1123,1124,1125]],"id":"17037"},{"type":"Polygon","arcs":[[1126,1127,1128,1129,1130]],"id":"19159"},{"type":"Polygon","arcs":[[1131,1132,1133,1134,1135]],"id":"19165"},{"type":"Polygon","arcs":[[1136,1137,1138,1139,1140,1141,-204,1142]],"id":"06019"},{"type":"Polygon","arcs":[[1143,1144,1145,-1127,1146]],"id":"19175"},{"type":"Polygon","arcs":[[1147,1148,1149,1150,1151,1152]],"id":"17123"},{"type":"Polygon","arcs":[[1153,1154,1155,1156,1157,1158]],"id":"17147"},{"type":"Polygon","arcs":[[1159,1160,-1147,1161,1162]],"id":"19003"},{"type":"Polygon","arcs":[[1163,1164,1165,1166,1167,1168,1169]],"id":"17159"},{"type":"Polygon","arcs":[[1170,1171,1172,1173,1174]],"id":"47023"},{"type":"Polygon","arcs":[[1175,1176,1177,1178,1179]],"id":"26023"},{"type":"Polygon","arcs":[[1180,1181,1182,1183,1184,1185]],"id":"37151"},{"type":"Polygon","arcs":[[1186,1187,1188,1189,1190,1191]],"id":"20199"},{"type":"Polygon","arcs":[[1192,1193,1194,1195,1196,1197]],"id":"18177"},{"type":"Polygon","arcs":[[1198]],"id":"51595"},{"type":"Polygon","arcs":[[1199,1200,1201,1202,1203]],"id":"48295"},{"type":"Polygon","arcs":[[1204,1205,1206,1207]],"id":"47169"},{"type":"Polygon","arcs":[[1208,1209,1210,1211,1212,1213,1214,1215,1216,-709,1217]],"id":"49037"},{"type":"Polygon","arcs":[[1218,1219,1220,-277,1221,1222]],"id":"19123"},{"type":"Polygon","arcs":[[1223,1224,1225,1226]],"id":"16021"},{"type":"Polygon","arcs":[[1227,1228,1229,1230,1231,1232,1233]],"id":"17107"},{"type":"Polygon","arcs":[[1234,1235,1236,1237,1238]],"id":"20059"},{"type":"Polygon","arcs":[[1239,1240,1241,1242,1243,1244,1245,1246]],"id":"22013"},{"type":"Polygon","arcs":[[1247,1248,1249,1250,1251]],"id":"06005"},{"type":"Polygon","arcs":[[1252,1253,-1248,1254,1255]],"id":"06017"},{"type":"Polygon","arcs":[[1256,1257,1258,1259,1260]],"id":"05065"},{"type":"Polygon","arcs":[[1261]],"id":"51530"},{"type":"Polygon","arcs":[[1262,1263]],"id":"51590"},{"type":"Polygon","arcs":[[1264,1265]],"id":"51640"},{"type":"Polygon","arcs":[[1266]],"id":"51660"},{"type":"Polygon","arcs":[[1267]],"id":"51690"},{"type":"Polygon","arcs":[[1268,1269,1270,1271,1272,1273]],"id":"18049"},{"type":"Polygon","arcs":[[1274,1275,-1144,-1161,1276]],"id":"19001"},{"type":"Polygon","arcs":[[1277,-205,-1142,1278,1279,1280]],"id":"06053"},{"type":"Polygon","arcs":[[1281,1282,1283,1284,1285]],"id":"29219"},{"type":"Polygon","arcs":[[1286,1287,1288,1289,1290]],"id":"37197"},{"type":"Polygon","arcs":[[-435,1291,1292,1293,-1112,1294]],"id":"26057"},{"type":"Polygon","arcs":[[1295,1296,1297,1298,1299,1300]],"id":"21129"},{"type":"Polygon","arcs":[[1301,1302,1303,1304,1305,1306]],"id":"20133"},{"type":"Polygon","arcs":[[1307,-1116,1308,1309,1310]],"id":"26067"},{"type":"Polygon","arcs":[[1311,1312,1313,1314,1315]],"id":"26077"},{"type":"Polygon","arcs":[[1316,1317,1318,1319,1320,1321]],"id":"21149"},{"type":"Polygon","arcs":[[1322,1323,1324,1325,1326,1327]],"id":"27033"},{"type":"Polygon","arcs":[[-568,1328,1329,-370,1330]],"id":"26085"},{"type":"Polygon","arcs":[[-569,-1331,1331,1332]],"id":"26105"},{"type":"Polygon","arcs":[[1333,-437,1334,-371]],"id":"26107"},{"type":"Polygon","arcs":[[1335,-374,1336,1337,1338]],"id":"26121"},{"type":"Polygon","arcs":[[1339,1340,1341,1342,1343,1344]],"id":"27047"},{"type":"Polygon","arcs":[[1345,1346,1347,1348,1349,1350,1351]],"id":"17051"},{"type":"Polygon","arcs":[[1352,1353,1354,1355,-1348]],"id":"17049"},{"type":"Polygon","arcs":[[1356,1357,1358,1359]],"id":"27009"},{"type":"Polygon","arcs":[[1360,1361,1362,1363,-404]],"id":"48129"},{"type":"Polygon","arcs":[[1364,1365,1366,1367,1368]],"id":"27041"},{"type":"Polygon","arcs":[[1369,1370,1371,1372,-393]],"id":"40073"},{"type":"Polygon","arcs":[[1373,1374,1375,1376,1377,1378]],"id":"47053"},{"type":"Polygon","arcs":[[1379,1380,1381,1382,1383,1384,1385]],"id":"47005"},{"type":"Polygon","arcs":[[1386,1387,1388,1389]],"id":"45009"},{"type":"Polygon","arcs":[[1390,1391,1392,1393,1394,-546,1395,1396]],"id":"48013"},{"type":"Polygon","arcs":[[1397,1398,1399,-104,1400,1401,1402,-684]],"id":"46067"},{"type":"Polygon","arcs":[[1403,1404,1405,1406,-37,1407]],"id":"46019"},{"type":"MultiPolygon","arcs":[[[1408,1409,1410,1411]],[[1412,1413]],[[1414,1415]],[[1416]],[[1417,1418]],[[1419,1420,1421,1422]]],"id":"02105"},{"type":"Polygon","arcs":[[1423,1424,1425,1426,-531,-263]],"id":"46059"},{"type":"Polygon","arcs":[[-591,1427,1428,-256,-584,1429,1430]],"id":"46077"},{"type":"Polygon","arcs":[[1431,1432,1433,1434,1435]],"id":"47101"},{"type":"Polygon","arcs":[[1436,1437,1438,1439,1440]],"id":"55069"},{"type":"Polygon","arcs":[[1441,-1377,1442,1443,-1171,1444,1445]],"id":"47113"},{"type":"Polygon","arcs":[[1446]],"id":"51540"},{"type":"Polygon","arcs":[[1447,1448,1449,1450,1451,1452]],"id":"30037"},{"type":"Polygon","arcs":[[1453,1454,1455,1456,1457,1458,1459,-810]],"id":"56009"},{"type":"Polygon","arcs":[[1460,1461,1462,1463,1464]],"id":"47179"},{"type":"Polygon","arcs":[[1465,1466,-1441,1467,1468,1469]],"id":"55119"},{"type":"Polygon","arcs":[[1470,1471,1472,1473,1474,1475,1476,1477]],"id":"56029"},{"type":"Polygon","arcs":[[1478,1479,-1328,1480,-726,1481]],"id":"27101"},{"type":"Polygon","arcs":[[1482,1483,1484,1485,1486,1487]],"id":"55133"},{"type":"Polygon","arcs":[[1488,1489,-1482,-725,1490]],"id":"27117"},{"type":"Polygon","arcs":[[1491,1492,1493,1494,1495]],"id":"51099"},{"type":"Polygon","arcs":[[1496,1497,1498,1499,1500,1501,1502]],"id":"30001"},{"type":"Polygon","arcs":[[1503,1504,-1448,1505,1506]],"id":"30107"},{"type":"Polygon","arcs":[[1507,-899,1508,1509,1510,1511]],"id":"29043"},{"type":"Polygon","arcs":[[1512,1513,1514,1515,1516,1517]],"id":"29053"},{"type":"Polygon","arcs":[[1518,1519,1520,1521,1522,1523]],"id":"20029"},{"type":"Polygon","arcs":[[1524,1525,1526,1527,1528]],"id":"51159"},{"type":"Polygon","arcs":[[1529,-1378,-1442,1530,1531]],"id":"47033"},{"type":"Polygon","arcs":[[1532,1533,1534,1535,1536]],"id":"18063"},{"type":"Polygon","arcs":[[1537,1538,1539,1540,1541,1542,1543,-366]],"id":"20135"},{"type":"Polygon","arcs":[[1544,1545,1546,1547,1548,-1123]],"id":"17093"},{"type":"Polygon","arcs":[[1549,1550,1551,1552,1553]],"id":"18149"},{"type":"Polygon","arcs":[[1554,1555,1556,1557,1558,-637]],"id":"18145"},{"type":"Polygon","arcs":[[1559,1560,1561,1562,-896,1563]],"id":"29105"},{"type":"Polygon","arcs":[[1564,1565,1566,1567,1568,1569]],"id":"29117"},{"type":"Polygon","arcs":[[1570,1571,-986,-891,1572]],"id":"26137"},{"type":"Polygon","arcs":[[1573,1574,1575,1576,1577,1578,-1579]],"id":"31087"},{"type":"Polygon","arcs":[[-893,-773,-1002,-888,1579]],"id":"26143"},{"type":"Polygon","arcs":[[1580,1581,1582,1583,1584]],"id":"29011"},{"type":"Polygon","arcs":[[-405,-1364,1585,1586,1587,1588]],"id":"48045"},{"type":"Polygon","arcs":[[1589,1590,1591,1592,1593,1594]],"id":"26161"},{"type":"Polygon","arcs":[[1595,-1310,1596,1597,-1313,1598]],"id":"26015"},{"type":"Polygon","arcs":[[1599,1600,1601,1602,1603]],"id":"35029"},{"type":"Polygon","arcs":[[1604,1605,1606,1607,1608,1609,1610]],"id":"51169"},{"type":"Polygon","arcs":[[1611,1612,1613,1614,1615]],"id":"33007"},{"type":"Polygon","arcs":[[1616,1617,1618,1619,1620,1621]],"id":"38095"},{"type":"Polygon","arcs":[[1622,1623,1624,1625,-491,1626]],"id":"29145"},{"type":"MultiPolygon","arcs":[[[1627,1628]],[[-1411,1629,-48,1630]]],"id":"02195"},{"type":"Polygon","arcs":[[1631,-1045,1632,1633,1634]],"id":"31167"},{"type":"Polygon","arcs":[[1635,1636,1637,-1040,-1632,1638]],"id":"31179"},{"type":"Polygon","arcs":[[1639,1640,1641,1642,-197]],"id":"26109"},{"type":"Polygon","arcs":[[1643,1644,1645,1646,1647]],"id":"48175"},{"type":"Polygon","arcs":[[1648,-35,-992,1649,-331,1650]],"id":"38073"},{"type":"Polygon","arcs":[[1651,1652,-1361,1653]],"id":"48179"},{"type":"Polygon","arcs":[[1654,1655,1656,1657,1658,1659]],"id":"42121"},{"type":"Polygon","arcs":[[-1363,1660,-503,-268,1661,-1586]],"id":"48191"},{"type":"Polygon","arcs":[[1662,-1511,1663,1664,1665]],"id":"29209"},{"type":"Polygon","arcs":[[1666,1667,1668,1669,1670,1671]],"id":"39057"},{"type":"Polygon","arcs":[[1672,1673,-1570,1674,1675,1676]],"id":"29061"},{"type":"Polygon","arcs":[[1677,1678,1679,1680,1681,1682]],"id":"29199"},{"type":"Polygon","arcs":[[1683,1684,1685,1686,1687,1688,1689]],"id":"48049"},{"type":"Polygon","arcs":[[-498,1690,1691,-924,1692,1693]],"id":"48165"},{"type":"Polygon","arcs":[[-1110,1694,-677,1695,1696,1697,1698]],"id":"48027"},{"type":"Polygon","arcs":[[1699,-1227,1700,1701,1702]],"id":"53051"},{"type":"Polygon","arcs":[[1703,1704,1705,1706,1707,1708]],"id":"13277"},{"type":"Polygon","arcs":[[1709,1710,1711,1712,1713]],"id":"48435"},{"type":"Polygon","arcs":[[1714,1715,1716,1717,1718]],"id":"51023"},{"type":"Polygon","arcs":[[1719,1720,1721,1722,1723]],"id":"48405"},{"type":"Polygon","arcs":[[-132,1724,1725,1726,1727,1728,1729]],"id":"72129"},{"type":"Polygon","arcs":[[1730,1731,1732,1733,-142,1734]],"id":"72143"},{"type":"Polygon","arcs":[[1735,1736,1737,1738]],"id":"27017"},{"type":"Polygon","arcs":[[1739,1740,1741,1742,1743]],"id":"12029"},{"type":"Polygon","arcs":[[1744,1745,1746,1747,1748,1749]],"id":"13211"},{"type":"Polygon","arcs":[[1750,1751,1752,1753]],"id":"02188"},{"type":"Polygon","arcs":[[1754,1755,1756,-698,1757]],"id":"38007"},{"type":"Polygon","arcs":[[1758,1759,1760,-1739,1761,1762,1763,1764]],"id":"27001"},{"type":"Polygon","arcs":[[1765,1766,1767,1768,1769,1770,1771]],"id":"08045"},{"type":"Polygon","arcs":[[-1237,1772,1773,1774]],"id":"20003"},{"type":"Polygon","arcs":[[-272,1775,1776,1777,-542]],"id":"48269"},{"type":"Polygon","arcs":[[1778,-396,1779,1780,-524,1781]],"id":"40039"},{"type":"Polygon","arcs":[[1782,-91,1783,1784,1785,1786]],"id":"39101"},{"type":"Polygon","arcs":[[1787,1788,1789,1790,1791,1792]],"id":"17095"},{"type":"Polygon","arcs":[[1793,1794,1795,1796]],"id":"13013"},{"type":"Polygon","arcs":[[-1124,-1549,1797,1798,1799,-1150,1800,1801,1802]],"id":"17099"},{"type":"Polygon","arcs":[[1803,1804,1805,1806,1807]],"id":"01031"},{"type":"Polygon","arcs":[[1808,1809,1810,1811]],"id":"12085"},{"type":"Polygon","arcs":[[1812,1813,1814,-1089,-1018]],"id":"19079"},{"type":"Polygon","arcs":[[-873,1815,-758,1816,-1814]],"id":"19083"},{"type":"Polygon","arcs":[[1817,1818,1819,1820,1821,1822]],"id":"16037"},{"type":"Polygon","arcs":[[1823,1824,1825,1826,1827,1828]],"id":"13037"},{"type":"Polygon","arcs":[[1829,1830,1831,1832]],"id":"19093"},{"type":"Polygon","arcs":[[1833,1834,-155,-601,1835]],"id":"08105"},{"type":"Polygon","arcs":[[1836,-1223,1837,1838,-513,1839]],"id":"19125"},{"type":"Polygon","arcs":[[1840,-1007,1841,1842]],"id":"08087"},{"type":"Polygon","arcs":[[1843,1844,1845,-1220,1846]],"id":"19157"},{"type":"Polygon","arcs":[[1847,1848,1849,-1228,1850,1851]],"id":"17179"},{"type":"Polygon","arcs":[[1852,1853,1854,1855]],"id":"08039"},{"type":"Polygon","arcs":[[-1091,1856,1857,-1840,-512,1858]],"id":"19153"},{"type":"Polygon","arcs":[[1859,1860,1861,1862,1863,1864]],"id":"39149"},{"type":"Polygon","arcs":[[1865,-516,1866,-1145,-1276]],"id":"19121"},{"type":"Polygon","arcs":[[1867,1868,1869,1870,-660]],"id":"39153"},{"type":"Polygon","arcs":[[1871,1872,-748,1873]],"id":"12049"},{"type":"Polygon","arcs":[[1874,1875,1876,1877,1878,1879,1880]],"id":"39161"},{"type":"Polygon","arcs":[[1881,-1671,1882,1883,1884,1885]],"id":"39165"},{"type":"Polygon","arcs":[[1886,1887,1888,1889,-957,1890]],"id":"48463"},{"type":"Polygon","arcs":[[1891,1892,1893,1894,1895,-633,1896]],"id":"13195"},{"type":"Polygon","arcs":[[1897,1898,-825,1899,1900,1901]],"id":"39059"},{"type":"Polygon","arcs":[[1902,1903,1904,1905,-1392]],"id":"48493"},{"type":"Polygon","arcs":[[-1785,1906,-936,1907,1908,1909]],"id":"39041"},{"type":"Polygon","arcs":[[1910,1911,1912,1913,1914]],"id":"39055"},{"type":"Polygon","arcs":[[-527,1915,1916,1917]],"id":"40055"},{"type":"Polygon","arcs":[[1918,1919,1920,1921,1922,1923,1924]],"id":"27131"},{"type":"Polygon","arcs":[[1925,1926,1927,1928,1929,1930,1931]],"id":"05025"},{"type":"Polygon","arcs":[[1932,1933,1934,1935,1936,-190]],"id":"13093"},{"type":"Polygon","arcs":[[-412,-247,1937,-1710,1938]],"id":"48413"},{"type":"Polygon","arcs":[[1939,1940,1941,1942,-1325]],"id":"27165"},{"type":"Polygon","arcs":[[1943,1944,1945,-380,1946,1947]],"id":"31001"},{"type":"Polygon","arcs":[[1948,1949,1950,1951]],"id":"37003"},{"type":"Polygon","arcs":[[1952,-300,1953,1954,-1582]],"id":"29039"},{"type":"Polygon","arcs":[[1955,-406,-1589,1956,-803,1957]],"id":"48437"},{"type":"Polygon","arcs":[[1958,1959,1960,1961,1962,1963,1964]],"id":"30049"},{"type":"Polygon","arcs":[[1965,1966,1967,-1518,1968,1969,1970]],"id":"29159"},{"type":"Polygon","arcs":[[-1587,-1662,-273,-541,1971]],"id":"48345"},{"type":"Polygon","arcs":[[1972,1973,1974,-1497,1975,1976]],"id":"30081"},{"type":"Polygon","arcs":[[1977,1978,1979,-7,1980,1981,1982,1983]],"id":"06071"},{"type":"Polygon","arcs":[[1984,1985,1986,1987,1988,1989]],"id":"13189"},{"type":"MultiPolygon","arcs":[[[1990,1991,1992,1993,-1422,1994],[-1417]]],"id":"02100"},{"type":"Polygon","arcs":[[-1468,-1440,1995,1996,1997,1998,1999]],"id":"55073"},{"type":"MultiPolygon","arcs":[[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2007,2008]],[[2009]],[[2010]],[[2011]]],"id":"02013"},{"type":"MultiPolygon","arcs":[[[2012]],[[2013]],[[2014]],[[2015]],[[2016]],[[2017,2018,2019]]],"id":"02150"},{"type":"MultiPolygon","arcs":[[[2020]],[[2021,-745,2022,2023,2024,2025,-2020,2026,-2008]]],"id":"02164"},{"type":"MultiPolygon","arcs":[[[2027]],[[2028]],[[2029,2030,2031,2032,2033,2034,2035]]],"id":"02261"},{"type":"Polygon","arcs":[[2036,2037,-1398,-683,-117]],"id":"46035"},{"type":"Polygon","arcs":[[2038,2039,2040,2041,2042,2043,2044,2045]],"id":"41023"},{"type":"Polygon","arcs":[[2046,2047,2048,2049,2050,2051]],"id":"39129"},{"type":"Polygon","arcs":[[-1914,2052,2053,2054,-1869]],"id":"39133"},{"type":"Polygon","arcs":[[2055,2056,2057,2058,-830]],"id":"13131"},{"type":"Polygon","arcs":[[2059,2060,2061,2062,2063,2064]],"id":"72093"},{"type":"Polygon","arcs":[[2065,2066,2067,2068,2069,2070]],"id":"54075"},{"type":"Polygon","arcs":[[2071,2072,2073]],"id":"72117"},{"type":"Polygon","arcs":[[2074,2075,2076,2077,-1365,2078,2079]],"id":"27111"},{"type":"Polygon","arcs":[[2080,2081,2082,2083,2084,2085,2086]],"id":"13111"},{"type":"Polygon","arcs":[[2087,2088,2089,-24,-223,-22]],"id":"27113"},{"type":"Polygon","arcs":[[2090,2091,2092,2093]],"id":"17021"},{"type":"Polygon","arcs":[[2094,2095,2096,2097,2098,-1271]],"id":"18169"},{"type":"Polygon","arcs":[[2099,2100,2101,2102,2103,-1212]],"id":"08085"},{"type":"Polygon","arcs":[[2104,2105,2106,-10,2107]],"id":"28113"},{"type":"Polygon","arcs":[[-484,2108,2109,2110,2111,2112]],"id":"38049"},{"type":"Polygon","arcs":[[2113,2114,2115,2116,-1679,2117]],"id":"19177"},{"type":"Polygon","arcs":[[2118,2119,2120]],"id":"17171"},{"type":"Polygon","arcs":[[2121,-869,2122,2123,2124]],"id":"13021"},{"type":"Polygon","arcs":[[2125,-133,-1730,2126,2127,2128,-1102]],"id":"72035"},{"type":"Polygon","arcs":[[-1005,2129,2130,-1292,-434]],"id":"26111"},{"type":"Polygon","arcs":[[2131,2132,2133,2134,-1540,2135]],"id":"20051"},{"type":"Polygon","arcs":[[2136,2137,2138,-2109,-483]],"id":"38009"},{"type":"Polygon","arcs":[[-877,2139,-1067,2140,-1881,2141,2142,2143,2144]],"id":"18003"},{"type":"Polygon","arcs":[[2145,2146,2147,2148,2149,2150]],"id":"20085"},{"type":"Polygon","arcs":[[2151,2152,2153,2154,2155,-2115]],"id":"19087"},{"type":"Polygon","arcs":[[2156,2157,2158,-1533,2159]],"id":"18011"},{"type":"Polygon","arcs":[[2160,2161,2162,2163,2164,-558]],"id":"06103"},{"type":"Polygon","arcs":[[-1272,-2099,2165,2166,2167]],"id":"18103"},{"type":"Polygon","arcs":[[2168,2169,2170,2171,2172]],"id":"38047"},{"type":"Polygon","arcs":[[2173,2174,2175,2176,2177,2178]],"id":"40021"},{"type":"Polygon","arcs":[[2179,-265,-534,2180,2181,-609,2182,2183,2184,2185]],"id":"46085"},{"type":"Polygon","arcs":[[-26,2186,2187,2188]],"id":"27087"},{"type":"Polygon","arcs":[[-1469,-2000,2189,2190,2191,2192]],"id":"55019"},{"type":"Polygon","arcs":[[2193,2194,-368,2195,2196,2197]],"id":"20171"},{"type":"Polygon","arcs":[[2198,2199,2200,2201,2202]],"id":"27135"},{"type":"Polygon","arcs":[[2203,2204,2205,2206,2207,2208,2209]],"id":"05115"},{"type":"Polygon","arcs":[[2210,2211,2212,2213,2214]],"id":"26095"},{"type":"Polygon","arcs":[[-1970,2215,2216,2217,-297,2218]],"id":"29015"},{"type":"Polygon","arcs":[[2219,2220,2221,2222,2223,-2206]],"id":"05141"},{"type":"Polygon","arcs":[[2224,2225,2226,2227,2228,2229,2230,2231]],"id":"51199"},{"type":"Polygon","arcs":[[-898,2232,2233,2234,2235,2236,-1509]],"id":"29067"},{"type":"Polygon","arcs":[[2237,2238,2239,2240,-1965,2241,2242,2243,2244,2245]],"id":"30029"},{"type":"Polygon","arcs":[[2246,2247,2248,2249,2250]],"id":"48305"},{"type":"Polygon","arcs":[[2251,2252,2253,2254,2255,2256]],"id":"29065"},{"type":"Polygon","arcs":[[2257,2258,2259,2260,-1938]],"id":"48327"},{"type":"Polygon","arcs":[[-1056,-402,-704,2261,-456]],"id":"48353"},{"type":"Polygon","arcs":[[2262,-2255,2263,2264,2265,2266]],"id":"29203"},{"type":"Polygon","arcs":[[2267,2268,-458,2269,-243,2270]],"id":"48431"},{"type":"Polygon","arcs":[[2271,2272,2273,2274,2275]],"id":"08089"},{"type":"Polygon","arcs":[[2276,2277,2278,2279,-2248]],"id":"48169"},{"type":"Polygon","arcs":[[2280,2281,2282,2283,2284]],"id":"08119"},{"type":"Polygon","arcs":[[2285,-2245,2286,2287,2288,2289,2290]],"id":"30089"},{"type":"Polygon","arcs":[[2291,-241,2292,-1684,2293,-399]],"id":"48059"},{"type":"Polygon","arcs":[[-1778,2294,2295,-1054,2296]],"id":"48433"},{"type":"Polygon","arcs":[[2297,2298,2299,2300,-518,2301]],"id":"40051"},{"type":"Polygon","arcs":[[2302,2303,2304,2305,2306,2307]],"id":"48159"},{"type":"Polygon","arcs":[[2308,2309,2310,2311,2312,2313]],"id":"48467"},{"type":"Polygon","arcs":[[2314,-1039,2315,2316]],"id":"31073"},{"type":"Polygon","arcs":[[2317,2318,2319,2320,-377]],"id":"31059"},{"type":"Polygon","arcs":[[2321,2322,2323,2324,2325,-2309,2326,2327]],"id":"48231"},{"type":"Polygon","arcs":[[2328,2329,-110,2330,2331]],"id":"48313"},{"type":"Polygon","arcs":[[2332,2333,2334,2335,2336,2337,2338]],"id":"40019"},{"type":"Polygon","arcs":[[2339,2340,2341,2342,2343]],"id":"51157"},{"type":"Polygon","arcs":[[2344,2345,2346,2347,2348]],"id":"01103"},{"type":"Polygon","arcs":[[2349,2350,2351,2352,2353]],"id":"51079"},{"type":"Polygon","arcs":[[2354,-1752,2355,2356,2357,2358,2359,2360,2361,-509]],"id":"02290"},{"type":"Polygon","arcs":[[2362,2363,2364,2365,2366]],"id":"42059"},{"type":"Polygon","arcs":[[-1929,2367,2368,2369,2370,2371]],"id":"05043"},{"type":"Polygon","arcs":[[2372,2373,-447,2374,2375,2376,2377]],"id":"28043"},{"type":"Polygon","arcs":[[2378,2379],[2380]],"id":"51750"},{"type":"Polygon","arcs":[[2381,2382,2383,2384,2385]],"id":"29211"},{"type":"Polygon","arcs":[[2386,2387,2388,2389,2390]],"id":"54047"},{"type":"Polygon","arcs":[[2391,2392,2393,2394,2395]],"id":"37133"},{"type":"Polygon","arcs":[[2396,2397,2398,2399,2400,2401]],"id":"29049"},{"type":"Polygon","arcs":[[2402,2403,2404,2405,2406,2407]],"id":"12005"},{"type":"Polygon","arcs":[[-137,2408,2409,2410]],"id":"72061"},{"type":"Polygon","arcs":[[2411,2412,2413,2414,2415]],"id":"72029"},{"type":"Polygon","arcs":[[-143,-1734,2416,2417,2418,2419]],"id":"72047"},{"type":"MultiPolygon","arcs":[[[2420,2421,2422,2423,-619,2424]],[[2425]]],"id":"53033"},{"type":"Polygon","arcs":[[2426,2427,2428,2429,-2422,2430]],"id":"53007"},{"type":"Polygon","arcs":[[2431,2432,2433,2434]],"id":"12035"},{"type":"Polygon","arcs":[[-2430,2435,2436,2437,-2423]],"id":"53037"},{"type":"Polygon","arcs":[[2438,2439,2440,2441]],"id":"12095"},{"type":"Polygon","arcs":[[2442,-61,2443,2444,-1935]],"id":"13235"},{"type":"Polygon","arcs":[[2445,2446,-2108,-9,2447,2448,2449]],"id":"28005"},{"type":"Polygon","arcs":[[2450,2451,2452,2453,2454]],"id":"46045"},{"type":"Polygon","arcs":[[-1548,2455,2456,2457,-1798]],"id":"17063"},{"type":"Polygon","arcs":[[2458,2459,2460,-718,2461,-766]],"id":"20151"},{"type":"Polygon","arcs":[[2462,2463,2464,-871,-220]],"id":"19033"},{"type":"Polygon","arcs":[[2465,2466,2467,2468,2469,2470]],"id":"31155"},{"type":"Polygon","arcs":[[2471,2472,2473,2474,2475]],"id":"05125"},{"type":"Polygon","arcs":[[-1998,-820,-415,2476,2477]],"id":"55097"},{"type":"Polygon","arcs":[[2478,2479,-1585,2480,2481,2482,-1304]],"id":"20037"},{"type":"Polygon","arcs":[[2483,2484,2485,2486,2487]],"id":"48221"},{"type":"Polygon","arcs":[[2488,2489,2490,2491,-359,-1106]],"id":"20111"},{"type":"Polygon","arcs":[[2492,2493,2494,2495,2496]],"id":"46047"},{"type":"Polygon","arcs":[[2497,-294,2498,2499,2500]],"id":"30069"},{"type":"Polygon","arcs":[[2501,2502,2503,2504,2505,-2157,2506]],"id":"18023"},{"type":"Polygon","arcs":[[-679,2507,-36,-1649,2508,2509]],"id":"38003"},{"type":"Polygon","arcs":[[2510,2511,2512,2513,2514]],"id":"50015"},{"type":"Polygon","arcs":[[2515,2516,2517,2518,2519,2520]],"id":"13035"},{"type":"Polygon","arcs":[[-2190,-1999,-2478,2521,2522,2523]],"id":"55141"},{"type":"Polygon","arcs":[[2524,-221,-874,-1813,-1017]],"id":"19197"},{"type":"Polygon","arcs":[[2525,2526,2527,-535,2528,-2260]],"id":"48319"},{"type":"Polygon","arcs":[[2529,2530,2531,2532]],"id":"48183"},{"type":"Polygon","arcs":[[2533,2534,2535,2536,2537,2538]],"id":"28105"},{"type":"Polygon","arcs":[[-964,2539,2540,2541]],"id":"06057"},{"type":"Polygon","arcs":[[-2495,2542,2543,2544,2545]],"id":"31045"},{"type":"Polygon","arcs":[[2546,2547,2548,2549,2550]],"id":"41033"},{"type":"Polygon","arcs":[[-955,2551,2552,2553,-2319]],"id":"31151"},{"type":"Polygon","arcs":[[-1202,2554,2555,2556,2557]],"id":"48211"},{"type":"Polygon","arcs":[[2558,-2520,2559,2560,2561]],"id":"13171"},{"type":"Polygon","arcs":[[2562,2563,2564,2565,2566]],"id":"28065"},{"type":"Polygon","arcs":[[-1908,-935,2567,2568,2569,2570,2571]],"id":"39089"},{"type":"Polygon","arcs":[[-183,2572,-1958,-802,2573,2574]],"id":"48069"},{"type":"Polygon","arcs":[[2575,-1573,2576,2577,2578]],"id":"26009"},{"type":"Polygon","arcs":[[2579,2580,2581,2582,2583,-171]],"id":"20147"},{"type":"Polygon","arcs":[[2584,2585,2586,2587]],"id":"20067"},{"type":"Polygon","arcs":[[-1962,2588,2589,2590]],"id":"30007"},{"type":"Polygon","arcs":[[-580,2591,-777,2592,-1944,2593,-1035,2594]],"id":"31019"},{"type":"Polygon","arcs":[[2595,2596,2597,2598]],"id":"32009"},{"type":"Polygon","arcs":[[2599,2600,2601,2602,2603]],"id":"37135"},{"type":"Polygon","arcs":[[2604,2605,2606,2607,2608,2609]],"id":"16051"},{"type":"Polygon","arcs":[[2610,-1179,2611,-875,2612]],"id":"18087"},{"type":"Polygon","arcs":[[-950,2613,2614,2615,-283,2616]],"id":"19105"},{"type":"Polygon","arcs":[[2617,2618,2619,2620,2621,2622]],"id":"19027"},{"type":"Polygon","arcs":[[2623,2624,-680,-2510,2625,-2170,2626]],"id":"38093"},{"type":"Polygon","arcs":[[2627,-1020,-1093,2628,2629,-2620]],"id":"19073"},{"type":"Polygon","arcs":[[2630,2631,2632,2633,2634,2635,2636]],"id":"01003"},{"type":"Polygon","arcs":[[2637,2638,2639,-1595,2640,2641,2642]],"id":"26075"},{"type":"Polygon","arcs":[[2643,-1610,2644,2645,2646]],"id":"47067"},{"type":"Polygon","arcs":[[-172,-2584,2647,2648,2649,2650]],"id":"20065"},{"type":"Polygon","arcs":[[-1774,2651,-1302,-1118]],"id":"20001"},{"type":"Polygon","arcs":[[2652,2653,2654,2655,2656,2657]],"id":"40127"},{"type":"Polygon","arcs":[[2658,2659,2660,2661,2662]],"id":"48461"},{"type":"Polygon","arcs":[[2663,-2454,2664,-261,2665,2666]],"id":"46107"},{"type":"Polygon","arcs":[[-1037,2667,-2580,-170,2668]],"id":"31083"},{"type":"Polygon","arcs":[[2669,2670,2671,2672,2673]],"id":"19063"},{"type":"Polygon","arcs":[[2674,2675,2676,2677,-1618]],"id":"38019"},{"type":"Polygon","arcs":[[2678,2679,2680,2681,2682,2683]],"id":"06109"},{"type":"Polygon","arcs":[[-2649,2684,-2136,-1539,2685]],"id":"20195"},{"type":"Polygon","arcs":[[2686,-918,-127,2687,2688]],"id":"48247"},{"type":"Polygon","arcs":[[2689,2690,2691,2692]],"id":"72069"},{"type":"Polygon","arcs":[[2693,2694,2695]],"id":"55078"},{"type":"Polygon","arcs":[[-1942,2696,2697,2698,-2671,2699]],"id":"27091"},{"type":"Polygon","arcs":[[2700,2701,2702,-858,2703,2704]],"id":"01085"},{"type":"Polygon","arcs":[[2705,2706,-791,2707,2708,2709]],"id":"21073"},{"type":"Polygon","arcs":[[2710,2711,2712,2713,2714]],"id":"29205"},{"type":"Polygon","arcs":[[2715,2716,2717,2718,2719,2720]],"id":"40037"},{"type":"Polygon","arcs":[[2721,2722,2723,2724,2725,2726]],"id":"48285"},{"type":"Polygon","arcs":[[-418,2727,2728,2729,2730,2731]],"id":"55047"},{"type":"Polygon","arcs":[[-581,-2595,-1034,-2315,2732,2733]],"id":"31047"},{"type":"Polygon","arcs":[[-1315,-1180,-2611,2734,2735]],"id":"26149"},{"type":"Polygon","arcs":[[2736,2737,2738,-843,2739,2740]],"id":"17081"},{"type":"Polygon","arcs":[[2741,-469,2742,-2464,2743]],"id":"19131"},{"type":"Polygon","arcs":[[2744,-2358,2745,-2031,2746,2747]],"id":"02240"},{"type":"Polygon","arcs":[[-1801,-1149,2748]],"id":"17155"},{"type":"Polygon","arcs":[[2749,2750,-1163,2751,2752]],"id":"19137"},{"type":"Polygon","arcs":[[2753,2754,-213,2755]],"id":"19017"},{"type":"Polygon","arcs":[[2756,-1350,2757,2758,-2738,2759]],"id":"17121"},{"type":"Polygon","arcs":[[2760,2761,2762,2763,2764]],"id":"37025"},{"type":"Polygon","arcs":[[2765,-928,2766,-2660,2767]],"id":"48329"},{"type":"Polygon","arcs":[[-2261,-2529,-540,2768,2769,-1711]],"id":"48267"},{"type":"Polygon","arcs":[[2770,2771,2772,2773,2774]],"id":"55103"},{"type":"Polygon","arcs":[[-921,-410,2775,-1654,-403,-670]],"id":"48065"},{"type":"Polygon","arcs":[[2776,2777,2778,2779,2780]],"id":"21061"},{"type":"Polygon","arcs":[[2781,2782,2783,2784,2785,2786,2787]],"id":"18047"},{"type":"Polygon","arcs":[[2788,2789,2790,-1823,2791,2792]],"id":"16085"},{"type":"Polygon","arcs":[[2793,2794,2795,2796,2797,2798]],"id":"51109"},{"type":"Polygon","arcs":[[2799,-1098,2800,-2488,2801,2802,2803]],"id":"48363"},{"type":"Polygon","arcs":[[2804,-2574,-806,-233,2805]],"id":"48279"},{"type":"Polygon","arcs":[[2806,2807,2808,2809,-2408,2810,-304]],"id":"12131"},{"type":"Polygon","arcs":[[-45,2811,2812,2813,2814]],"id":"36039"},{"type":"Polygon","arcs":[[-1194,2815,-478,2816,-1864,2817,2818,2819]],"id":"39037"},{"type":"Polygon","arcs":[[-2201,2820,2821,2822,2823,2824,2825,-2089,2826]],"id":"27007"},{"type":"Polygon","arcs":[[2827,2828,-890,-1334,-1330]],"id":"26133"},{"type":"Polygon","arcs":[[-363,2829,2830,2831,2832,2833]],"id":"20049"},{"type":"Polygon","arcs":[[2834,2835,2836,2837,2838]],"id":"20075"},{"type":"Polygon","arcs":[[2839,2840,2841,2842,-1736,-1761,2843,2844]],"id":"27137"},{"type":"Polygon","arcs":[[2845,2846,2847,-2153,2848,2849]],"id":"19183"},{"type":"Polygon","arcs":[[-240,2850,-2803,2851,2852,-1685,-2293]],"id":"48133"},{"type":"Polygon","arcs":[[-2769,-539,2853,2854,2855,2856]],"id":"48265"},{"type":"Polygon","arcs":[[2857,2858,2859,2860,2861,2862]],"id":"36003"},{"type":"Polygon","arcs":[[-805,2863,-2247,-234]],"id":"48303"},{"type":"Polygon","arcs":[[2864,2865]],"id":"51775"},{"type":"Polygon","arcs":[[2866,2867]],"id":"51670"},{"type":"Polygon","arcs":[[2868,2869,2870,2871,-1789,2872]],"id":"17073"},{"type":"Polygon","arcs":[[2873,2874,-1033,2875,2876]],"id":"28079"},{"type":"Polygon","arcs":[[2877,2878,2879,2880,2881,2882,2883]],"id":"35057"},{"type":"Polygon","arcs":[[2884,2885,-146,2886,2887]],"id":"08095"},{"type":"Polygon","arcs":[[2888,-2887,-150,2889,2890,2891,-1009]],"id":"08125"},{"type":"Polygon","arcs":[[2892,2893,2894,2895]],"id":"19141"},{"type":"Polygon","arcs":[[-2877,2896,2897,2898,2899]],"id":"28123"},{"type":"Polygon","arcs":[[-573,2900,2901,2902,-578]],"id":"31175"},{"type":"Polygon","arcs":[[2903,-1290,2904,2905,-2761,2906,2907,2908,-1950]],"id":"37097"},{"type":"Polygon","arcs":[[2909,2910,2911,2912,2913]],"id":"01057"},{"type":"Polygon","arcs":[[2914,2915,-174,2916,-882,2917]],"id":"20039"},{"type":"Polygon","arcs":[[2918,2919,2920,2921,2922,-2042]],"id":"41001"},{"type":"Polygon","arcs":[[2923,2924,2925,2926,2927]],"id":"01133"},{"type":"Polygon","arcs":[[2928,2929,2930,2931,2932]],"id":"29221"},{"type":"Polygon","arcs":[[2933,2934,2935]],"id":"72015"},{"type":"Polygon","arcs":[[2936,2937,2938,2939,2940,2941,2942]],"id":"18007"},{"type":"MultiPolygon","arcs":[[[2943]],[[2944]],[[2945]],[[2946,2947,2948,2949]]],"id":"06083"},{"type":"Polygon","arcs":[[2950,-559,-2165,2951,2952]],"id":"06105"},{"type":"Polygon","arcs":[[2953,2954,2955,2956,2957,2958]],"id":"17117"},{"type":"Polygon","arcs":[[2959,2960,2961,2962,-1293,-2131]],"id":"26145"},{"type":"Polygon","arcs":[[-2802,-2487,2963,2964,-687,2965,-2852]],"id":"48143"},{"type":"MultiPolygon","arcs":[[[2966,2967,2968,2969,2970,2971]],[[2972,2973]]],"id":"12101"},{"type":"Polygon","arcs":[[2974,2975,-801,2976,2977]],"id":"37169"},{"type":"Polygon","arcs":[[2978,2979,-2793,2980,2981,2982,2983]],"id":"16045"},{"type":"Polygon","arcs":[[2984,2985,2986,2987,2988]],"id":"54021"},{"type":"Polygon","arcs":[[-721,2989,2990,2991,2992,2993]],"id":"40003"},{"type":"Polygon","arcs":[[2994,2995,2996,2997,2998,-1520,2999]],"id":"20201"},{"type":"Polygon","arcs":[[3000,3001,3002,3003,3004]],"id":"13109"},{"type":"Polygon","arcs":[[3005,3006,3007,-1198,3008,3009,3010]],"id":"18065"},{"type":"Polygon","arcs":[[3011,3012,3013,3014]],"id":"45023"},{"type":"Polygon","arcs":[[3015,-1981,-6,3016,3017,3018,3019]],"id":"04012"},{"type":"Polygon","arcs":[[3020,3021,3022,-576,3023,-450]],"id":"31009"},{"type":"Polygon","arcs":[[-2791,3024,-1976,-1503,3025,3026,-1818]],"id":"16059"},{"type":"Polygon","arcs":[[3027,-1027,3028,3029,3030]],"id":"20069"},{"type":"Polygon","arcs":[[-2376,3031,3032,3033,3034]],"id":"28097"},{"type":"Polygon","arcs":[[3035,3036,3037,3038,-2533,3039,3040]],"id":"48459"},{"type":"Polygon","arcs":[[3041,3042,3043,3044,3045,3046,-537]],"id":"48031"},{"type":"Polygon","arcs":[[3047,3048,3049,3050,3051]],"id":"20061"},{"type":"Polygon","arcs":[[3052,3053,3054,3055,3056,3057]],"id":"21041"},{"type":"Polygon","arcs":[[3058,3059,-1269,-1552,3060]],"id":"18099"},{"type":"Polygon","arcs":[[3061,-800,3062,-1181,3063]],"id":"37081"},{"type":"Polygon","arcs":[[3064,3065]],"id":"51610"},{"type":"Polygon","arcs":[[3066]],"id":"51678"},{"type":"Polygon","arcs":[[3067,-2642,3068,3069,3070,3071,-1177]],"id":"26059"},{"type":"Polygon","arcs":[[-1189,3072,-2198,3073,-2836,3074]],"id":"20203"},{"type":"Polygon","arcs":[[-1922,3075,3076,3077,3078]],"id":"27039"},{"type":"Polygon","arcs":[[3079,-1154,3080,-1230]],"id":"17039"},{"type":"Polygon","arcs":[[-1693,-929,-2766,3081,3082,3083]],"id":"48003"},{"type":"Polygon","arcs":[[3084,-1430,-587,3085,-2037,-116,3086]],"id":"46111"},{"type":"Polygon","arcs":[[3087,3088,-1925,3089,3090,3091]],"id":"27079"},{"type":"Polygon","arcs":[[3092,3093,3094,3095,-967,3096]],"id":"55105"},{"type":"Polygon","arcs":[[-1923,-3079,3097,-1341,3098]],"id":"27147"},{"type":"Polygon","arcs":[[3099,3100,3101,3102,3103,3104]],"id":"42065"},{"type":"Polygon","arcs":[[3105,3106,-1022,3107,3108]],"id":"19151"},{"type":"Polygon","arcs":[[-1481,-1327,3109,3110,3111,-727]],"id":"27105"},{"type":"MultiPolygon","arcs":[[[3112,3113]],[[3114]],[[3115]],[[3116]],[[3117]],[[-1629,3118]],[[3119,3120]]],"id":"02198"},{"type":"Polygon","arcs":[[3121,3122,3123,-341]],"id":"46121"},{"type":"Polygon","arcs":[[3124,3125,3126,3127,3128]],"id":"13003"},{"type":"MultiPolygon","arcs":[[[-3121,3129]],[[3130]],[[-1418,3131]]],"id":"02220"},{"type":"Polygon","arcs":[[-2377,-3035,3132,3133,3134]],"id":"28015"},{"type":"Polygon","arcs":[[3135,3136,-1809,3137]],"id":"12111"},{"type":"Polygon","arcs":[[-280,-2118,-1678,3138,3139]],"id":"19051"},{"type":"Polygon","arcs":[[3140,3141,3142,3143,3144]],"id":"17109"},{"type":"Polygon","arcs":[[3145,3146,3147,3148,3149]],"id":"39143"},{"type":"Polygon","arcs":[[-2759,3150,-1169,3151,3152,-844,-2739]],"id":"17191"},{"type":"Polygon","arcs":[[3153,3154,3155,3156,3157,3158]],"id":"48243"},{"type":"Polygon","arcs":[[3159,-841,3160,-3088,3161,3162]],"id":"27143"},{"type":"Polygon","arcs":[[3163,-1078,3164,-1777]],"id":"48275"},{"type":"Polygon","arcs":[[3165,3166,3167,3168,3169,3170,3171]],"id":"17163"},{"type":"Polygon","arcs":[[-771,3172,3173,3174,-1003]],"id":"26011"},{"type":"Polygon","arcs":[[-1355,3175,3176,3177,-1164,3178]],"id":"17079"},{"type":"Polygon","arcs":[[-1521,-2999,3179,-3048,3180,3181]],"id":"20027"},{"type":"Polygon","arcs":[[3182,3183,3184,3185,-1977,-3025,-2790,3186,3187]],"id":"16049"},{"type":"Polygon","arcs":[[3188,-1622,3189,-2138]],"id":"38079"},{"type":"Polygon","arcs":[[-2917,-173,-2651,3190,-883]],"id":"20179"},{"type":"Polygon","arcs":[[3191,3192,-3042,-536,-2528]],"id":"48299"},{"type":"Polygon","arcs":[[3193,3194,3195,-2276,3196,3197,3198]],"id":"08101"},{"type":"Polygon","arcs":[[3199,3200,-2551,3201,3202]],"id":"41015"},{"type":"Polygon","arcs":[[3203,-2538,3204,3205,-1030,3206]],"id":"28159"},{"type":"Polygon","arcs":[[-2594,-1948,3207,3208,-1036]],"id":"31099"},{"type":"Polygon","arcs":[[-2419,3209,3210,3211,-1100,3212,3213]],"id":"72019"},{"type":"Polygon","arcs":[[3214,-2366,3215,3216,3217,3218,3219,3220]],"id":"54103"},{"type":"Polygon","arcs":[[3221,-827,3222,3223]],"id":"13201"},{"type":"Polygon","arcs":[[-1835,3224,3225,3226,-156]],"id":"08003"},{"type":"Polygon","arcs":[[-767,-2462,-724,3227,3228,-1024]],"id":"20097"},{"type":"Polygon","arcs":[[3229,3230,3231,-700]],"id":"38041"},{"type":"Polygon","arcs":[[-3077,3232,3233,3234,3235,3236]],"id":"27109"},{"type":"Polygon","arcs":[[3237,-2415,3238,-1726]],"id":"72077"},{"type":"Polygon","arcs":[[-1832,3239,-2623,-1132,3240,3241]],"id":"19047"},{"type":"Polygon","arcs":[[3242,3243,3244,-1239,3245,-2491]],"id":"20139"},{"type":"Polygon","arcs":[[3246,-217,3247,-759,-1816]],"id":"19075"},{"type":"Polygon","arcs":[[3248,3249,-886,3250,-1187,3251]],"id":"20181"},{"type":"Polygon","arcs":[[-2063,3252,3253,3254,3255]],"id":"72121"},{"type":"Polygon","arcs":[[-2622,3256,3257,-1133]],"id":"19009"},{"type":"MultiPolygon","arcs":[[[3258]],[[3259]],[[3260]],[[3261]],[[3262,-731,3263,3264,3265,3266]]],"id":"23009"},{"type":"Polygon","arcs":[[3267,3268,3269,3270,3271,3272]],"id":"05081"},{"type":"Polygon","arcs":[[3273,3274,3275,3276]],"id":"05143"},{"type":"Polygon","arcs":[[3277,3278,3279,3280,-2472,3281]],"id":"05119"},{"type":"Polygon","arcs":[[3282,3283,3284,3285,-3279,3286]],"id":"05085"},{"type":"Polygon","arcs":[[3287,3288,3289,3290,3291,3292,3293]],"id":"08009"},{"type":"Polygon","arcs":[[3294,3295,3296,3297,3298,3299,3300,3301]],"id":"16031"},{"type":"Polygon","arcs":[[3302,3303,3304,3305,3306,3307,3308]],"id":"01021"},{"type":"Polygon","arcs":[[-1937,3309,3310,3311,3312,-191]],"id":"13081"},{"type":"Polygon","arcs":[[3313,3314,-1479,-1490,3315]],"id":"27083"},{"type":"Polygon","arcs":[[3316,3317,3318,3319,3320,3321]],"id":"51049"},{"type":"Polygon","arcs":[[3322,3323,3324,3325,3326,3327]],"id":"31133"},{"type":"Polygon","arcs":[[-2557,3328,-530,3329,-1653]],"id":"48483"},{"type":"Polygon","arcs":[[-387,3330,3331,-30,-2508,-678]],"id":"38091"},{"type":"Polygon","arcs":[[-909,-956,-2318,-376,3332]],"id":"31185"},{"type":"Polygon","arcs":[[-2577,-894,3333,3334]],"id":"26079"},{"type":"Polygon","arcs":[[-2583,3335,3336,-2132,-2685,-2648]],"id":"20163"},{"type":"Polygon","arcs":[[3337,3338,3339,-3176,-1354]],"id":"17035"},{"type":"Polygon","arcs":[[3340,3341,3342,3343,-2066,3344,3345]],"id":"54101"},{"type":"Polygon","arcs":[[3346,3347,3348,3349,3350]],"id":"28139"},{"type":"Polygon","arcs":[[3351,3352,3353,3354,3355,3356,-3125,3357]],"id":"13069"},{"type":"Polygon","arcs":[[3358,3359,3360,3361,3362]],"id":"20169"},{"type":"Polygon","arcs":[[3363,3364,3365,3366]],"id":"28119"},{"type":"Polygon","arcs":[[-2626,-2509,-1651,-330,3367,-2171]],"id":"38045"},{"type":"Polygon","arcs":[[3368,-3363,3369,3370,3371,3372]],"id":"20053"},{"type":"Polygon","arcs":[[3373,3374,3375,-63,3376,3377,3378,3379]],"id":"18055"},{"type":"Polygon","arcs":[[3380,3381,-1682,3382,3383,3384,-2383]],"id":"29001"},{"type":"Polygon","arcs":[[3385,3386,3387,3388,-933,3389]],"id":"39075"},{"type":"Polygon","arcs":[[-2207,-2224,3390,3391,3392]],"id":"05029"},{"type":"Polygon","arcs":[[-1553,-1274,3393,3394,3395]],"id":"18131"},{"type":"Polygon","arcs":[[3396,3397,3398,3399,-3211]],"id":"72045"},{"type":"Polygon","arcs":[[3400,3401,-228,-774,3402,-2902]],"id":"31077"},{"type":"Polygon","arcs":[[3403,-544,-2277,-2864]],"id":"48107"},{"type":"Polygon","arcs":[[3404,3405,3406,3407,3408,3409,3410]],"id":"21083"},{"type":"Polygon","arcs":[[3411,3412,3413,3414,3415,3416]],"id":"21171"},{"type":"Polygon","arcs":[[3417,-1352,3418,3419]],"id":"17005"},{"type":"Polygon","arcs":[[3420,3421,3422,3423,3424,3425,3426]],"id":"05097"},{"type":"Polygon","arcs":[[3427,3428,3429,3430,3431,-1207]],"id":"47159"},{"type":"Polygon","arcs":[[3432,3433,3434,3435,3436,3437]],"id":"17045"},{"type":"Polygon","arcs":[[3438,3439,3440,3441,3442,3443]],"id":"42021"},{"type":"Polygon","arcs":[[3444,3445,3446,3447,3448,3449]],"id":"41043"},{"type":"Polygon","arcs":[[-850,-338,3450,-3163,3451,3452,3453,3454,3455]],"id":"27129"},{"type":"Polygon","arcs":[[3456,3457,3458,3459,-1366,-2078]],"id":"27153"},{"type":"Polygon","arcs":[[3460,3461,3462,3463,-3446,3464]],"id":"41047"},{"type":"Polygon","arcs":[[3465,-231,3466,3467,3468,3469,3470]],"id":"42071"},{"type":"Polygon","arcs":[[3471,3472,3473,3474,-2222]],"id":"05023"},{"type":"Polygon","arcs":[[3475,3476,-3353,3477,3478]],"id":"13017"},{"type":"MultiPolygon","arcs":[[[3479]],[[3480]],[[3481]],[[3482,3483]]],"id":"15009"},{"type":"Polygon","arcs":[[3484,3485,3486,3487,3488,-1561]],"id":"29169"},{"type":"Polygon","arcs":[[-1395,3489,-915,-547]],"id":"48311"},{"type":"Polygon","arcs":[[-1014,-951,-2617,-282,3490,3491]],"id":"19113"},{"type":"Polygon","arcs":[[-409,-616,3492,-1203,-2558,-1652,-2776]],"id":"48393"},{"type":"Polygon","arcs":[[-1846,3493,-2850,3494,-278,-1221]],"id":"19107"},{"type":"Polygon","arcs":[[-2050,3495,3496,3497,3498,3499]],"id":"39073"},{"type":"Polygon","arcs":[[3500,3501,3502,3503,3504]],"id":"13053"},{"type":"Polygon","arcs":[[3505,-2500,3506,3507,-1450]],"id":"30065"},{"type":"Polygon","arcs":[[3508,-630,3509,3510]],"id":"13149"},{"type":"Polygon","arcs":[[3511,3512]],"id":"27031"},{"type":"Polygon","arcs":[[3513,3514,-2618,-3240,-1831]],"id":"19161"},{"type":"Polygon","arcs":[[3515,3516,3517,-2601,3518]],"id":"37145"},{"type":"Polygon","arcs":[[-2356,-1751,3519]],"id":"02185"},{"type":"Polygon","arcs":[[3520,3521,3522]],"id":"72095"},{"type":"Polygon","arcs":[[3523,-2144,3524,3525,-2097]],"id":"18069"},{"type":"Polygon","arcs":[[3526,-2932,3527,3528,3529,3530,-2253]],"id":"29093"},{"type":"Polygon","arcs":[[-543,-2297,-1053,3531,-2278]],"id":"48263"},{"type":"Polygon","arcs":[[3532,3533,-2380,3534,3535,3536,3537,3538]],"id":"51155"},{"type":"Polygon","arcs":[[3539,-1675,-1569,3540,3541,-2398]],"id":"29025"},{"type":"Polygon","arcs":[[3542,3543,3544,3545,3546,3547]],"id":"01073"},{"type":"Polygon","arcs":[[3548]],"id":"15001"},{"type":"Polygon","arcs":[[3549,3550,3551,3552]],"id":"53023"},{"type":"Polygon","arcs":[[3553,3554,3555,3556,3557]],"id":"01027"},{"type":"Polygon","arcs":[[3558,3559,-1833,3560,3561,3562,3563]],"id":"19193"},{"type":"Polygon","arcs":[[3564,-1135,3565,-2750,3566,3567,3568,3569]],"id":"19155"},{"type":"Polygon","arcs":[[-1820,3570,3571,3572,-3297,3573,-17,3574,3575]],"id":"16013"},{"type":"MultiPolygon","arcs":[[[3576]],[[3577,3578,-3267,3579,3580,3581,3582]]],"id":"23027"},{"type":"Polygon","arcs":[[3583,3584,3585,3586,3587,3588]],"id":"25025"},{"type":"Polygon","arcs":[[3589,3590,3591,3592,3593,3594]],"id":"25011"},{"type":"Polygon","arcs":[[-1004,-3175,3595,3596,-2960,-2130]],"id":"26017"},{"type":"Polygon","arcs":[[3597,3598,-3316,-1489,3599]],"id":"27081"},{"type":"Polygon","arcs":[[3600,3601,3602,3603,3604,3605]],"id":"28011"},{"type":"Polygon","arcs":[[3606,3607,3608,-1028,-984]],"id":"26007"},{"type":"Polygon","arcs":[[3609,3610,3611,3612,3613]],"id":"26053"},{"type":"Polygon","arcs":[[3614,-315,3615,3616,-3578,3617,3618]],"id":"23025"},{"type":"Polygon","arcs":[[3619,3620,3621,3622,3623,3624,3625,3626,3627]],"id":"28149"},{"type":"Polygon","arcs":[[3628,3629,3630,3631,3632,3633,3634]],"id":"36075"},{"type":"Polygon","arcs":[[3635,-3454,3636,-1323,-1480,-3315]],"id":"27127"},{"type":"Polygon","arcs":[[3637,3638,3639,3640,3641,3642,3643]],"id":"39095"},{"type":"Polygon","arcs":[[3644,-286,3645,3646,3647]],"id":"19139"},{"type":"Polygon","arcs":[[-520,3648,3649,3650,3651,3652]],"id":"40033"},{"type":"Polygon","arcs":[[-3567,-2753,3653,3654,3655]],"id":"19129"},{"type":"Polygon","arcs":[[3656,3657,3658,3659]],"id":"36059"},{"type":"Polygon","arcs":[[3660,3661,3662,3663,3664,3665]],"id":"30109"},{"type":"Polygon","arcs":[[3666,3667,3668,3669,3670]],"id":"29155"},{"type":"Polygon","arcs":[[3671,3672,3673,3674,3675,-2713]],"id":"29127"},{"type":"Polygon","arcs":[[3676,3677,-1604,3678,3679]],"id":"35017"},{"type":"Polygon","arcs":[[3680,-164,3681,3682,3683,3684,3685,3686]],"id":"51107"},{"type":"Polygon","arcs":[[3687,3688,3689,3690,3691,-1406]],"id":"46105"},{"type":"Polygon","arcs":[[3692,-3046,3693,3694,3695]],"id":"48091"},{"type":"Polygon","arcs":[[3696,-2689,3697,3698]],"id":"48505"},{"type":"MultiPolygon","arcs":[[[3699,3700,3701,3702]],[[3703,3704,3705,3706]],[[3707,3708,3709]]],"id":"48007"},{"type":"Polygon","arcs":[[3710,3711,3712,3713,3714,3715]],"id":"48361"},{"type":"Polygon","arcs":[[3716,-3083,3717,3718,3719]],"id":"48495"},{"type":"Polygon","arcs":[[3720,3721,3722,3723,3724,3725]],"id":"51011"},{"type":"Polygon","arcs":[[3726,3727,3728,-1088,3729,3730,3731,-2437]],"id":"53025"},{"type":"Polygon","arcs":[[3732,-3219,3733,3734,-2986,3735]],"id":"54017"},{"type":"Polygon","arcs":[[3736,-552,3737,3738,-2067,-3344,3739]],"id":"54083"},{"type":"Polygon","arcs":[[-3111,3740,3741,-2893,3742]],"id":"19143"},{"type":"Polygon","arcs":[[-1300,3743,3744,3745,3746]],"id":"21189"},{"type":"Polygon","arcs":[[3747,3748,-1058,3749]],"id":"37181"},{"type":"Polygon","arcs":[[-711,3750,3751,3752,3753,3754]],"id":"04007"},{"type":"Polygon","arcs":[[3755,3756,3757,3758,-2220,-2205,3759]],"id":"05129"},{"type":"Polygon","arcs":[[3760,3761,3762,3763,3764,3765]],"id":"05095"},{"type":"Polygon","arcs":[[3766,3767,-2403,-2810]],"id":"12133"},{"type":"Polygon","arcs":[[3768,3769,-1750,3770,-2517,3771]],"id":"13217"},{"type":"Polygon","arcs":[[3772,3773,3774,-2968,3775,3776]],"id":"12119"},{"type":"Polygon","arcs":[[-1558,3777,-2787,3778,-69,3779]],"id":"18031"},{"type":"Polygon","arcs":[[3780,3781,3782,-1013,-2755]],"id":"19065"},{"type":"Polygon","arcs":[[3783,-761,-1847,-1219,-1837,-1858]],"id":"19099"},{"type":"Polygon","arcs":[[3784,3785,-1301,-3747,3786,3787,3788]],"id":"21109"},{"type":"Polygon","arcs":[[3789,3790,3791,-3621,3792,3793]],"id":"22035"},{"type":"Polygon","arcs":[[-836,3794,3795,3796,3797,3798]],"id":"22113"},{"type":"Polygon","arcs":[[3799,3800,3801,3802,-833,3803]],"id":"22039"},{"type":"Polygon","arcs":[[3804,-1676,-3540,-2397,3805,3806]],"id":"29063"},{"type":"Polygon","arcs":[[-1284,3807,3808,3809,-2929,3810,3811]],"id":"29071"},{"type":"Polygon","arcs":[[3812,3813,-3323,3814]],"id":"31097"},{"type":"Polygon","arcs":[[3815,-656,3816,-3401,-2901,-572]],"id":"31183"},{"type":"Polygon","arcs":[[3817,3818,3819,3820,-1600,-3678,3821]],"id":"35051"},{"type":"Polygon","arcs":[[3822,3823,3824,3825,3826,3827]],"id":"37107"},{"type":"Polygon","arcs":[[3828,3829,3830,3831,3832,3833]],"id":"37045"},{"type":"Polygon","arcs":[[3834,3835,3836,3837,3838]],"id":"31105"},{"type":"Polygon","arcs":[[3839,3840,-2179,3841,3842,3843]],"id":"40145"},{"type":"Polygon","arcs":[[3844,3845,3846,3847]],"id":"40027"},{"type":"Polygon","arcs":[[3848,3849,3850,-2335]],"id":"40099"},{"type":"Polygon","arcs":[[3851,3852,3853,3854,-996]],"id":"42003"},{"type":"Polygon","arcs":[[3855,3856,3857,-3015,3858,3859,3860]],"id":"45087"},{"type":"Polygon","arcs":[[3861,-266,-2180,3862]],"id":"46065"},{"type":"Polygon","arcs":[[3863,3864,3865,3866,3867,3868]],"id":"21235"},{"type":"Polygon","arcs":[[3869,3870,-1052,3871,3872,3873]],"id":"37175"},{"type":"Polygon","arcs":[[3874,3875,3876,3877,3878,3879,-3825]],"id":"37049"},{"type":"Polygon","arcs":[[-2296,3880,-242,-2292,-398,-1055]],"id":"48253"},{"type":"Polygon","arcs":[[3881]],"id":"51720"},{"type":"Polygon","arcs":[[3882,3883,3884,3885,3886,3887]],"id":"39105"},{"type":"Polygon","arcs":[[3888,3889,-3888,3890,3891,3892]],"id":"39053"},{"type":"Polygon","arcs":[[3893,-3345,-2071,3894,3895,3896,3897,3898]],"id":"54025"},{"type":"MultiPolygon","arcs":[[[3899,3900]]],"id":"78030"},{"type":"Polygon","arcs":[[3901,3902,3903,-595,3904]],"id":"05111"},{"type":"Polygon","arcs":[[3905,3906,3907,-2683,3908,3909,3910]],"id":"06099"},{"type":"Polygon","arcs":[[3911,3912,3913,3914,3915]],"id":"06011"},{"type":"Polygon","arcs":[[3916,3917,3918,3919,3920]],"id":"13089"},{"type":"Polygon","arcs":[[3921,3922,3923,3924,3925]],"id":"13311"},{"type":"Polygon","arcs":[[3926,3927,3928,-752,3929,3930]],"id":"13115"},{"type":"Polygon","arcs":[[3931,-20,3932,3933,3934]],"id":"16047"},{"type":"Polygon","arcs":[[3935,-969,-1126,3936,3937,3938]],"id":"17141"},{"type":"Polygon","arcs":[[3939,3940,3941,-3662,3942]],"id":"30083"},{"type":"Polygon","arcs":[[3943,3944,3945,3946,3947]],"id":"37065"},{"type":"Polygon","arcs":[[3948,3949,-617,-920,3950]],"id":"48421"},{"type":"Polygon","arcs":[[3951,3952,3953,3954,3955]],"id":"01017"},{"type":"Polygon","arcs":[[-1249,-1254,3956,3957,-2679,3958]],"id":"06003"},{"type":"Polygon","arcs":[[-2549,3959,3960,3961,-554,-2951,3962,3963]],"id":"06093"},{"type":"Polygon","arcs":[[3964,3965,3966,-1215]],"id":"08083"},{"type":"Polygon","arcs":[[3967,3968,-2087,3969,3970,3971]],"id":"13213"},{"type":"Polygon","arcs":[[3972,3973,3974,3975,3976,-3299]],"id":"16071"},{"type":"Polygon","arcs":[[3977,3978,3979,3980,3981,3982]],"id":"18129"},{"type":"Polygon","arcs":[[3983,3984,3985,3986,3987,3988,3989,3990,3991]],"id":"21093"},{"type":"Polygon","arcs":[[-3714,3992,3993,-3798,3994,3995]],"id":"22023"},{"type":"Polygon","arcs":[[3996,3997,3998,3999,-1236]],"id":"20121"},{"type":"Polygon","arcs":[[-2792,-1822,4000,4001,-2981]],"id":"16015"},{"type":"Polygon","arcs":[[-2608,4002,4003,4004,4005,4006,4007]],"id":"16019"},{"type":"Polygon","arcs":[[4008,4009,4010,4011,4012,4013,4014]],"id":"25023"},{"type":"Polygon","arcs":[[4015,4016,4017,4018,4019,4020,4021,4022]],"id":"22077"},{"type":"Polygon","arcs":[[4023,4024,-1640,-196,4025]],"id":"26043"},{"type":"Polygon","arcs":[[-2481,-1584,4026,4027,-1624,4028]],"id":"29097"},{"type":"Polygon","arcs":[[4029,-2587,4030,4031,4032,4033]],"id":"20189"},{"type":"Polygon","arcs":[[4034,4035,4036,4037,4038,4039]],"id":"17085"},{"type":"Polygon","arcs":[[-3143,4040,-1792,4041,-1852,4042,4043]],"id":"17057"},{"type":"Polygon","arcs":[[4044,-744,4045,4046,4047,-382]],"id":"36055"},{"type":"Polygon","arcs":[[4048,-3513,4049,-2841]],"id":"27075"},{"type":"Polygon","arcs":[[4050,4051,4052,4053,4054]],"id":"41037"},{"type":"MultiPolygon","arcs":[[[4055,4056]],[[4057]],[[4058]]],"id":"44005"},{"type":"Polygon","arcs":[[4059,4060,4061,4062,4063,4064,4065]],"id":"36043"},{"type":"Polygon","arcs":[[4066,-3293,4067,4068,4069,4070,4071,4072]],"id":"35059"},{"type":"Polygon","arcs":[[4073,4074,4075,4076,4077,4078]],"id":"48071"},{"type":"Polygon","arcs":[[4079,4080,4081,-3728,4082,-2428,4083,4084]],"id":"53047"},{"type":"Polygon","arcs":[[4085,4086,4087,4088,-3545,4089]],"id":"01115"},{"type":"Polygon","arcs":[[4090,4091,4092,4093,4094]],"id":"55059"},{"type":"Polygon","arcs":[[-939,4095,4096,4097,-111,4098,4099]],"id":"72075"},{"type":"Polygon","arcs":[[-419,-2732,4100,4101]],"id":"55077"},{"type":"Polygon","arcs":[[-430,4102,4103,4104,4105,-1437,-1467,4106]],"id":"55099"},{"type":"Polygon","arcs":[[4107,-2412,4108,4109]],"id":"72087"},{"type":"Polygon","arcs":[[-2290,4110,4111,4112,-714,4113,4114]],"id":"16079"},{"type":"Polygon","arcs":[[4115,4116,-1952,4117,4118,4119]],"id":"37027"},{"type":"Polygon","arcs":[[4120,4121,4122,4123]],"id":"38065"},{"type":"Polygon","arcs":[[-3325,4124,4125,4126,4127,4128]],"id":"31147"},{"type":"Polygon","arcs":[[4129,4130,-2915,4131,-1577]],"id":"31145"},{"type":"Polygon","arcs":[[4132,4133,4134,-3716,4135,4136]],"id":"48199"},{"type":"Polygon","arcs":[[4137,4138,-1073,4139,4140,4141,4142,4143]],"id":"01077"},{"type":"Polygon","arcs":[[-493,4144,4145,4146,-3274,4147,4148]],"id":"05007"},{"type":"Polygon","arcs":[[4149,4150,-1802,-2749,-1148,4151,-2871]],"id":"17011"},{"type":"Polygon","arcs":[[-2098,-3526,4152,4153,4154,4155,4156,4157,-2166]],"id":"18053"},{"type":"Polygon","arcs":[[-3334,-1580,-887,-2829,4158]],"id":"26113"},{"type":"Polygon","arcs":[[-1335,-436,-1295,-1308,4159,-372]],"id":"26117"},{"type":"Polygon","arcs":[[-1563,4160,-2233,-897]],"id":"29229"},{"type":"Polygon","arcs":[[-1562,-3489,4161,-2256,-2263,4162,-2234,-4161]],"id":"29215"},{"type":"Polygon","arcs":[[4163,4164,4165,4166,-3529]],"id":"29123"},{"type":"Polygon","arcs":[[4167,4168,4169,-2105,-2447,4170,4171]],"id":"28085"},{"type":"Polygon","arcs":[[4172,4173,4174,4175,4176]],"id":"35011"},{"type":"Polygon","arcs":[[4177,-3946,4178,4179,-3875,-3824,4180]],"id":"37147"},{"type":"Polygon","arcs":[[4181,-4123,4182,4183,4184,4185,4186]],"id":"38059"},{"type":"Polygon","arcs":[[4187,4188,4189,4190,-88,4191,-3148]],"id":"39077"},{"type":"Polygon","arcs":[[-2718,4192,-3843,4193,4194,4195]],"id":"40111"},{"type":"Polygon","arcs":[[4196,4197,4198,4199,4200,4201,4202,4203]],"id":"45041"},{"type":"Polygon","arcs":[[4204,4205,4206,4207,4208]],"id":"45081"},{"type":"Polygon","arcs":[[4209,4210,-3984,4211,4212,4213]],"id":"21027"},{"type":"Polygon","arcs":[[-3981,4214,4215,4216,4217,4218]],"id":"21225"},{"type":"Polygon","arcs":[[4219,4220,4221,-421,4222,4223]],"id":"21231"},{"type":"Polygon","arcs":[[4224,-2710,4225,4226,4227,4228]],"id":"21211"},{"type":"Polygon","arcs":[[-3826,-3880,4229,-2392,4230]],"id":"37103"},{"type":"Polygon","arcs":[[4231,4232,4233,4234,4235]],"id":"47105"},{"type":"Polygon","arcs":[[4236,4237,4238,-942,4239,4240]],"id":"48217"},{"type":"Polygon","arcs":[[4241,4242,4243,4244,4245,4246,4247]],"id":"51087"},{"type":"Polygon","arcs":[[4248,4249,4250,-822,4251]],"id":"39019"},{"type":"Polygon","arcs":[[-2677,4252,4253,4254,-385,4255]],"id":"38099"},{"type":"Polygon","arcs":[[4256,4257,4258,-2696,4259,-1996,-1439]],"id":"55067"},{"type":"Polygon","arcs":[[4260,4261,-1470,-2193,4262,4263]],"id":"55017"},{"type":"Polygon","arcs":[[4264,4265,4266,4267,4268]],"id":"22101"},{"type":"Polygon","arcs":[[4269,4270,4271,4272,4273]],"id":"72023"},{"type":"Polygon","arcs":[[4274,4275,4276,4277,4278,4279]],"id":"41009"},{"type":"Polygon","arcs":[[4280,4281,-2044,4282,4283,4284,-4052]],"id":"41025"},{"type":"Polygon","arcs":[[4285,-1697,4286,4287,4288,4289]],"id":"48491"},{"type":"Polygon","arcs":[[4290,4291,4292,4293,-348]],"id":"49009"},{"type":"Polygon","arcs":[[4294,4295,-1891,4296,4297]],"id":"48271"},{"type":"Polygon","arcs":[[4298,-344,4299,4300,4301]],"id":"49029"},{"type":"Polygon","arcs":[[4302,4303]],"id":"51620"},{"type":"MultiPolygon","arcs":[[[4304]],[[4305,4306,4307,4308,-1012,4309,-1853,4310,4311]]],"id":"08005"},{"type":"Polygon","arcs":[[4312,4313,4314,4315,4316,-3928,4317,4318]],"id":"13295"},{"type":"Polygon","arcs":[[4319,4320,4321,4322,4323,4324]],"id":"18121"},{"type":"Polygon","arcs":[[4325,-72,4326,4327,4328]],"id":"18143"},{"type":"Polygon","arcs":[[-2780,4329,4330,4331,4332,4333]],"id":"21227"},{"type":"Polygon","arcs":[[4334,4335,-1246,4336,4337]],"id":"22081"},{"type":"Polygon","arcs":[[-3453,4338,4339,-1940,-1324,-3637]],"id":"27015"},{"type":"Polygon","arcs":[[4340,4341,4342,4343,-1286,4344,4345]],"id":"29139"},{"type":"Polygon","arcs":[[-3670,4346,4347,4348,4349,4350,4351,-3903,4352,4353]],"id":"05093"},{"type":"Polygon","arcs":[[4354,4355,4356,4357,-1257,4358]],"id":"05049"},{"type":"Polygon","arcs":[[4359,4360,-4319,4361,4362,4363,4364]],"id":"01049"},{"type":"Polygon","arcs":[[4365,4366,4367,-3421,4368,4369]],"id":"05127"},{"type":"Polygon","arcs":[[-3202,-2550,-3964,4370,4371]],"id":"06015"},{"type":"Polygon","arcs":[[4372,-970,-3936,4373,-4037,4374]],"id":"17177"},{"type":"Polygon","arcs":[[4375,4376,4377,4378,4379,4380]],"id":"18025"},{"type":"Polygon","arcs":[[4381,4382,4383,4384]],"id":"18043"},{"type":"Polygon","arcs":[[-3003,4385,4386,4387,4388,4389]],"id":"13179"},{"type":"Polygon","arcs":[[-19,4390,-3295,4391,-3933]],"id":"16053"},{"type":"Polygon","arcs":[[4392,4393,4394,4395,4396]],"id":"24045"},{"type":"Polygon","arcs":[[4397,4398,4399,4400]],"id":"26013"},{"type":"Polygon","arcs":[[4401,4402,4403,4404,4405,-1,4406,4407]],"id":"32017"},{"type":"Polygon","arcs":[[4408,4409,4410,4411,4412]],"id":"34011"},{"type":"Polygon","arcs":[[4413,4414,4415,4416]],"id":"18115"},{"type":"Polygon","arcs":[[4417,4418,4419,4420,4421,4422]],"id":"36061"},{"type":"Polygon","arcs":[[4423,4424,-4061,4425,4426,4427]],"id":"36089"},{"type":"Polygon","arcs":[[4428,4429,-4172,4430,4431,4432]],"id":"28063"},{"type":"Polygon","arcs":[[4433,-2657,4434,4435,4436,4437]],"id":"40023"},{"type":"Polygon","arcs":[[4438,4439,4440,-2121,4441,4442,4443,4444,-3674]],"id":"17149"},{"type":"Polygon","arcs":[[4445,4446,4447,4448,-2155]],"id":"19057"},{"type":"Polygon","arcs":[[4449,4450,4451,-3941,4452,4453]],"id":"30085"},{"type":"Polygon","arcs":[[4454,4455,4456,4457,-1050,4458,4459,4460]],"id":"45007"},{"type":"Polygon","arcs":[[4461,4462,-2493,4463,4464]],"id":"46033"},{"type":"Polygon","arcs":[[4465,-4350,4466,4467,4468,4469,4470]],"id":"47157"},{"type":"Polygon","arcs":[[4471,4472,4473,4474,4475]],"id":"34019"},{"type":"Polygon","arcs":[[4476,4477,-796,-2976,4478],[-1268]],"id":"51089"},{"type":"Polygon","arcs":[[-2228,4479,4480,4481]],"id":"51650"},{"type":"Polygon","arcs":[[4482,4483,-288,-2498,4484,4485]],"id":"30071"},{"type":"Polygon","arcs":[[4486,4487,4488,4489,4490,4491,-3355]],"id":"13161"},{"type":"Polygon","arcs":[[4492,-4006,4493,4494,4495,4496,4497,4498]],"id":"56023"},{"type":"Polygon","arcs":[[4499,4500,4501,4502,4503]],"id":"01063"},{"type":"Polygon","arcs":[[4504,4505,-3269,4506,4507]],"id":"05061"},{"type":"Polygon","arcs":[[4508,4509,4510,-2069]],"id":"51091"},{"type":"Polygon","arcs":[[4511,4512,4513,4514]],"id":"51101"},{"type":"MultiPolygon","arcs":[[[4515]],[[4516,4517,-428,4518]]],"id":"55007"},{"type":"Polygon","arcs":[[4519,4520,4521,4522,-2775,4523,4524,4525]],"id":"55123"},{"type":"Polygon","arcs":[[-655,4526,4527,-224,-3402,-3817]],"id":"31011"},{"type":"Polygon","arcs":[[-4127,4528,4529,4530,4531,4532]],"id":"20043"},{"type":"Polygon","arcs":[[-2903,-3403,-778,-2592,-579]],"id":"31163"},{"type":"Polygon","arcs":[[4533,4534,4535,-2599,4536]],"id":"32021"},{"type":"Polygon","arcs":[[4537,4538,4539,4540,-1382]],"id":"47083"},{"type":"MultiPolygon","arcs":[[[-3705,4541]],[[4542,4543,4544,-3701,4545,4546,4547]]],"id":"48057"},{"type":"Polygon","arcs":[[4548,-3931,4549,4550,4551,4552,-4363]],"id":"01019"},{"type":"Polygon","arcs":[[-1451,-3508,4553,4554,4555,4556,4557]],"id":"30111"},{"type":"Polygon","arcs":[[-776,4558,4559,-1945,-2593]],"id":"31079"},{"type":"Polygon","arcs":[[4560,4561,4562,-3022,4563]],"id":"31017"},{"type":"Polygon","arcs":[[4564,-2884,4565,4566]],"id":"35061"},{"type":"Polygon","arcs":[[4567,4568,4569,4570,-2880,4571]],"id":"35047"},{"type":"Polygon","arcs":[[4572,-2977,-3062,4573,4574,-1288]],"id":"37067"},{"type":"Polygon","arcs":[[4575,4576,-3828,4577,4578,4579]],"id":"37191"},{"type":"Polygon","arcs":[[4580,4581,4582,4583,4584]],"id":"37017"},{"type":"Polygon","arcs":[[4585,4586,-1507,4587,4588,4589,-2589,-1961]],"id":"30059"},{"type":"Polygon","arcs":[[4590,4591,-3789,4592,4593,4594]],"id":"21203"},{"type":"Polygon","arcs":[[4595,4596,-4209,4597,4598,4599]],"id":"45047"},{"type":"Polygon","arcs":[[4600,4601,-4214,4602,4603]],"id":"21091"},{"type":"Polygon","arcs":[[4604,4605,4606,4607,4608,4609,4610]],"id":"21045"},{"type":"Polygon","arcs":[[4611,4612,4613,4614,4615]],"id":"21113"},{"type":"Polygon","arcs":[[4616,4617,-1047,4618]],"id":"37149"},{"type":"Polygon","arcs":[[4619,4620,4621,4622,4623]],"id":"37121"},{"type":"Polygon","arcs":[[4624,4625,4626,4627,4628,4629]],"id":"37053"},{"type":"MultiPolygon","arcs":[[[-2381]],[[4630,4631,4632,4633,-3535,-2379,-3534]]],"id":"51121"},{"type":"Polygon","arcs":[[-4247,4634]],"id":"51760"},{"type":"Polygon","arcs":[[-3730,-1087,4635,4636,4637,4638]],"id":"53021"},{"type":"Polygon","arcs":[[-2418,4639,4640,-3397,-3210]],"id":"72105"},{"type":"Polygon","arcs":[[4641,-2339,4642,4643,4644,-3650]],"id":"40067"},{"type":"Polygon","arcs":[[4645,4646,4647,4648,4649,4650,4651]],"id":"47091"},{"type":"Polygon","arcs":[[4652,4653,4654,4655,4656]],"id":"47121"},{"type":"Polygon","arcs":[[-533,4657,-120,4658,-2181]],"id":"46015"},{"type":"Polygon","arcs":[[4659,4660,4661,4662,4663,-4238,4664]],"id":"48139"},{"type":"Polygon","arcs":[[-3651,-4645,4665,-1095,4666,4667]],"id":"48077"},{"type":"Polygon","arcs":[[4668,4669,-3726,4670,4671,4672]],"id":"51009"},{"type":"Polygon","arcs":[[4673,-1836,-600,4674]],"id":"08079"},{"type":"Polygon","arcs":[[4675,4676,4677,4678,4679,4680,4681,4682]],"id":"13107"},{"type":"Polygon","arcs":[[-4043,-1851,-1234,4683,4684,4685]],"id":"17125"},{"type":"Polygon","arcs":[[-1815,-1817,-762,-3784,-1857,-1090]],"id":"19169"},{"type":"Polygon","arcs":[[4686,4687,-3559,4688]],"id":"19149"},{"type":"Polygon","arcs":[[4689,4690,4691,4692,4693]],"id":"20173"},{"type":"Polygon","arcs":[[4694,-3056,4695,-2706,-4225,4696]],"id":"21103"},{"type":"Polygon","arcs":[[4697,4698,4699]],"id":"22089"},{"type":"Polygon","arcs":[[-4142,4700,4701,4702]],"id":"01033"},{"type":"Polygon","arcs":[[4703,4704,4705,4706,-276,4707,4708]],"id":"04019"},{"type":"Polygon","arcs":[[4709,4710,-3680,4711,4712,4713]],"id":"04011"},{"type":"Polygon","arcs":[[4714,4715,-598,4716,-3761,4717]],"id":"05147"},{"type":"Polygon","arcs":[[-1811,4718,4719,4720]],"id":"12099"},{"type":"Polygon","arcs":[[4721,4722,4723,4724,4725]],"id":"13127"},{"type":"Polygon","arcs":[[4726,-3140,4727,4728,-693]],"id":"19007"},{"type":"Polygon","arcs":[[4729,4730,-4040,4731,-2614,-949]],"id":"19061"},{"type":"Polygon","arcs":[[4732,4733,4734,4735,-3414,4736]],"id":"21057"},{"type":"MultiPolygon","arcs":[[[4737,4738,4739,4740,4741,-4265,4742,-3796]],[[4743]]],"id":"22045"},{"type":"Polygon","arcs":[[4744,4745,4746,-1166]],"id":"17101"},{"type":"Polygon","arcs":[[4747,4748,4749]],"id":"24037"},{"type":"Polygon","arcs":[[4750,4751,4752,4753,4754,4755]],"id":"22033"},{"type":"Polygon","arcs":[[4756,4757,4758,4759]],"id":"22043"},{"type":"Polygon","arcs":[[-1332,-369,-1336,4760]],"id":"26127"},{"type":"Polygon","arcs":[[4761,4762,4763,4764,-3813,4765]],"id":"31131"},{"type":"Polygon","arcs":[[4766,-4094,4767,4768,4769,-1121,4770]],"id":"17111"},{"type":"Polygon","arcs":[[4771,4772,4773,4774,-3336,-2582]],"id":"20183"},{"type":"Polygon","arcs":[[-4770,4775,4776,-1545,-1122]],"id":"17089"},{"type":"Polygon","arcs":[[-3820,4777,4778,4779,4780,4781,4782,4783]],"id":"35035"},{"type":"Polygon","arcs":[[4784,4785,-4380,4786,-4210,-4602]],"id":"18123"},{"type":"Polygon","arcs":[[-4746,4787,4788,-3379,4789,4790,4791,4792]],"id":"18083"},{"type":"Polygon","arcs":[[4793,4794,4795,4796,4797]],"id":"42049"},{"type":"Polygon","arcs":[[4798,4799,4800,4801,4802]],"id":"45019"},{"type":"Polygon","arcs":[[-3832,4803,4804,4805,-3012,-3858,4806]],"id":"45091"},{"type":"Polygon","arcs":[[4807,4808,4809,4810,4811]],"id":"45053"},{"type":"Polygon","arcs":[[4812,4813,4814,4815,4816,4817,4818,4819]],"id":"36071"},{"type":"Polygon","arcs":[[4820,4821,4822,-3591,4823]],"id":"50025"},{"type":"Polygon","arcs":[[-4712,-3679,-1603,4824,4825]],"id":"35023"},{"type":"Polygon","arcs":[[4826,4827,4828,-4567,4829,4830,4831]],"id":"35006"},{"type":"Polygon","arcs":[[-2389,4832,4833,4834,4835,4836,4837]],"id":"54055"},{"type":"Polygon","arcs":[[4838,4839,4840,-2367,-3215,4841]],"id":"54051"},{"type":"Polygon","arcs":[[4842,4843,4844,4845,4846,-2702,4847]],"id":"01101"},{"type":"Polygon","arcs":[[4848,-4364,-4553,4849,-4086,4850]],"id":"01055"},{"type":"Polygon","arcs":[[4851,-4702,4852,-2924,4853,4854]],"id":"01059"},{"type":"MultiPolygon","arcs":[[[-510,-2362,4855,4856,-2025,4857,4858,4859,4860]],[[4861]],[[4862]]],"id":"02050"},{"type":"Polygon","arcs":[[4863,-39,4864,4865,4866,4867,-4462]],"id":"46103"},{"type":"Polygon","arcs":[[4868,4869,-593,4870,-1425,4871]],"id":"46115"},{"type":"Polygon","arcs":[[4872,4873,-4689,-3564,4874,4875,4876]],"id":"46127"},{"type":"Polygon","arcs":[[4877,4878,4879,-4809]],"id":"45013"},{"type":"Polygon","arcs":[[4880,4881,4882,4883,4884,4885]],"id":"47029"},{"type":"Polygon","arcs":[[4886,4887,4888,-4476,4889,4890,4891,4892]],"id":"42017"},{"type":"Polygon","arcs":[[-1402,4893,4894,4895]],"id":"46009"},{"type":"Polygon","arcs":[[-4540,4896,4897,4898,4899,4900]],"id":"47043"},{"type":"Polygon","arcs":[[4901,4902,4903,4904,4905]],"id":"40105"},{"type":"Polygon","arcs":[[4906,-2327,-2314,4907,-4662,4908]],"id":"48257"},{"type":"Polygon","arcs":[[4909,4910,-1079,-3164,-1776,-271]],"id":"48155"},{"type":"Polygon","arcs":[[4911,4912,-4271]],"id":"72067"},{"type":"Polygon","arcs":[[4913,4914,4915,4916,4917]],"id":"23023"},{"type":"Polygon","arcs":[[4918,4919,-2322,4920,4921,4922]],"id":"48085"},{"type":"Polygon","arcs":[[-2853,-2966,-686,4923,-1686]],"id":"48093"},{"type":"Polygon","arcs":[[-706,4924,4925,-2258,-246]],"id":"48095"},{"type":"Polygon","arcs":[[4926,-2663,4927,4928,4929]],"id":"48103"},{"type":"Polygon","arcs":[[4930,4931,4932,4933,4934,-4780]],"id":"35015"},{"type":"Polygon","arcs":[[4935,4936,4937,-2257,-4162,-3488]],"id":"29161"},{"type":"Polygon","arcs":[[4938,4939,4940,-2209,4941,-4367]],"id":"05083"},{"type":"Polygon","arcs":[[-2399,-3542,4942,4943,4944,4945]],"id":"29177"},{"type":"Polygon","arcs":[[4946,-2597,4947,4948,-1979,4949,4950,-1139]],"id":"06027"},{"type":"Polygon","arcs":[[4951,4952,-3105,4953,4954,-3853]],"id":"42005"},{"type":"Polygon","arcs":[[4955,-2908,4956,4957,-3830,4958]],"id":"37109"},{"type":"Polygon","arcs":[[-4885,4959,4960,-3870,4961,4962,4963]],"id":"37087"},{"type":"Polygon","arcs":[[4964,4965,-2646,4966,4967,4968,4969]],"id":"47057"},{"type":"Polygon","arcs":[[4970,4971,4972,4973,4974]],"id":"42023"},{"type":"Polygon","arcs":[[-102,4975,-4877,4976,4977,4978]],"id":"46027"},{"type":"Polygon","arcs":[[4979,4980,4981,4982,4983]],"id":"42025"},{"type":"Polygon","arcs":[[4984,4985,4986,4987,4988,4989]],"id":"45025"},{"type":"Polygon","arcs":[[4990,4991,-4799,4992]],"id":"45035"},{"type":"Polygon","arcs":[[4993,4994,4995,4996,4997,4998,-1567]],"id":"29041"},{"type":"Polygon","arcs":[[4999,5000,-2515,5001,5002]],"id":"50011"},{"type":"Polygon","arcs":[[5003,5004,-4975,5005,-3102,5006]],"id":"42047"},{"type":"Polygon","arcs":[[5007,5008,5009]],"id":"51115"},{"type":"Polygon","arcs":[[5010,5011,5012,5013,-3486,5014,5015]],"id":"29131"},{"type":"Polygon","arcs":[[-292,5016,5017,5018,5019,5020]],"id":"30017"},{"type":"Polygon","arcs":[[-5020,5021,5022,5023,5024,5025,5026]],"id":"30075"},{"type":"Polygon","arcs":[[5027,-1321,5028,5029,5030]],"id":"21107"},{"type":"Polygon","arcs":[[5031,-2211,5032,5033,5034]],"id":"26003"},{"type":"Polygon","arcs":[[5035,5036,5037,5038,5039]],"id":"21115"},{"type":"Polygon","arcs":[[-1157,5040,-3438,5041,5042]],"id":"17041"},{"type":"Polygon","arcs":[[5043,5044,5045,5046,5047,5048]],"id":"21119"},{"type":"Polygon","arcs":[[5049,-645,5050,-4691,5051]],"id":"20079"},{"type":"Polygon","arcs":[[5052,-3166,5053]],"id":"29510"},{"type":"Polygon","arcs":[[-3442,5054,5055,5056,-318,5057]],"id":"42009"},{"type":"Polygon","arcs":[[-4128,-4533,5058,-2147,5059]],"id":"20013"},{"type":"Polygon","arcs":[[5060,5061,5062,5063,5064,5065]],"id":"05099"},{"type":"Polygon","arcs":[[-3426,5066,-5062,5067,-4505]],"id":"05109"},{"type":"Polygon","arcs":[[5068,5069,5070,5071,5072]],"id":"51730"},{"type":"Polygon","arcs":[[-4444,5073,5074,-4343,5075,5076]],"id":"29163"},{"type":"Polygon","arcs":[[-2958,5077,5078,5079,5080]],"id":"17083"},{"type":"Polygon","arcs":[[5081,-4202,5082,5083,5084,5085]],"id":"45027"},{"type":"Polygon","arcs":[[-2645,-1609,5086,-1465,5087,5088,-4967]],"id":"47073"},{"type":"Polygon","arcs":[[5089,5090,5091,-1172,-1444]],"id":"47077"},{"type":"Polygon","arcs":[[-4988,5092,-4197,5093,5094]],"id":"45031"},{"type":"Polygon","arcs":[[-3468,5095,5096,5097,5098,5099]],"id":"42029"},{"type":"Polygon","arcs":[[5100,5101,5102,5103,-4199]],"id":"45033"},{"type":"Polygon","arcs":[[5104,-3100,-4953,5105,-1658]],"id":"42031"},{"type":"Polygon","arcs":[[5106,-4026,-195,5107]],"id":"55037"},{"type":"Polygon","arcs":[[5108,-5007,-3101,-5105,-1657]],"id":"42053"},{"type":"Polygon","arcs":[[5109,5110,5111,5112,5113]],"id":"13049"},{"type":"Polygon","arcs":[[-602,-159,5114,5115,5116,5117,5118,5119]],"id":"35039"},{"type":"Polygon","arcs":[[5120,-4338,5121,5122,5123,-1082]],"id":"22031"},{"type":"Polygon","arcs":[[-3518,5124,5125,5126,-2602]],"id":"37063"},{"type":"Polygon","arcs":[[5127,5128,-4827,5129]],"id":"35031"},{"type":"Polygon","arcs":[[5130,5131,5132,5133,5134]],"id":"24013"},{"type":"MultiPolygon","arcs":[[[5135,5136]],[[-5099,5137,5138,5139,5140,5141,5142,5143]]],"id":"10003"},{"type":"Polygon","arcs":[[5144,5145,-3249,5146,-2891]],"id":"20023"},{"type":"Polygon","arcs":[[5147,5148,5149,5150,5151,-4491]],"id":"13001"},{"type":"Polygon","arcs":[[5152,5153,5154,-4843,5155,-3306]],"id":"01051"},{"type":"Polygon","arcs":[[5156,5157,-3965,-1214]],"id":"08033"},{"type":"Polygon","arcs":[[5158,-2203,5159,5160]],"id":"27069"},{"type":"Polygon","arcs":[[5161,-1722,5162,5163,-3711,-4135,5164]],"id":"48241"},{"type":"Polygon","arcs":[[5165,5166,5167,-4801,5168,5169]],"id":"45043"},{"type":"Polygon","arcs":[[5170,-3654,5171,5172,-4763]],"id":"19071"},{"type":"Polygon","arcs":[[5173,-4685,5174,5175,5176,5177]],"id":"17017"},{"type":"Polygon","arcs":[[5178,5179,5180,-4821,5181,5182,5183]],"id":"50027"},{"type":"Polygon","arcs":[[5184,-2112,5185,5186,-4121,5187,5188,5189]],"id":"38055"},{"type":"Polygon","arcs":[[5190,-4181,-3823,-4577]],"id":"37079"},{"type":"Polygon","arcs":[[5191,5192,5193,5194,5195]],"id":"17127"},{"type":"MultiPolygon","arcs":[[[5196,5197]],[[5198,-980,5199,-4393,5200]]],"id":"24019"},{"type":"Polygon","arcs":[[5201,-4114,-713,5202]],"id":"16055"},{"type":"Polygon","arcs":[[5203,5204,5205,5206]],"id":"09007"},{"type":"Polygon","arcs":[[5207,-2735,-2613,-880,5208,-3059,5209]],"id":"18039"},{"type":"Polygon","arcs":[[5210,-1190,-3075,-2835,5211,5212]],"id":"20071"},{"type":"Polygon","arcs":[[5213,-5177,5214,-2954,5215,-2119,-4441]],"id":"17137"},{"type":"Polygon","arcs":[[5216,5217,5218,-3865]],"id":"21121"},{"type":"Polygon","arcs":[[5219,-696,5220,5221,-1128]],"id":"19053"},{"type":"Polygon","arcs":[[5222,5223,5224,5225,5226,-5036,5227]],"id":"21127"},{"type":"Polygon","arcs":[[5228,5229,-553,-3737,5230,5231]],"id":"54001"},{"type":"Polygon","arcs":[[5232,5233,-3595,5234,5235,5236,5237,5238]],"id":"25003"},{"type":"Polygon","arcs":[[5239,-4341,5240,5241,5242]],"id":"29027"},{"type":"Polygon","arcs":[[5243,5244,5245,5246,5247,5248]],"id":"27073"},{"type":"Polygon","arcs":[[-2798,5249,-4242,5250,-3319,5251]],"id":"51075"},{"type":"Polygon","arcs":[[5252,5253,5254,-4495]],"id":"56035"},{"type":"Polygon","arcs":[[5255,5256,5257,5258,-3976]],"id":"49005"},{"type":"Polygon","arcs":[[-1225,5259,-2246,-2286,5260]],"id":"30053"},{"type":"Polygon","arcs":[[5261,5262,5263,5264,5265,5266,5267]],"id":"12001"},{"type":"Polygon","arcs":[[-4614,5268,5269,5270,-3785,-4592,5271]],"id":"21151"},{"type":"Polygon","arcs":[[5272,5273,5274,-2727,5275,5276,-1905]],"id":"48177"},{"type":"Polygon","arcs":[[5277,5278,-657,-3816,-571,5279,5280]],"id":"31089"},{"type":"Polygon","arcs":[[5281,5282,-4580,5283,5284,5285]],"id":"37101"},{"type":"Polygon","arcs":[[5286,-2873,-1788,5287,5288,-4447,5289]],"id":"17131"},{"type":"Polygon","arcs":[[-467,5290,5291,5292,-3782,5293]],"id":"19191"},{"type":"Polygon","arcs":[[-1531,-1446,5294,5295,5296,5297]],"id":"47075"},{"type":"Polygon","arcs":[[5298,5299,-323,5300,5301,5302]],"id":"24023"},{"type":"Polygon","arcs":[[5303,-5303,5304,-550,-5230,5305,5306]],"id":"54077"},{"type":"Polygon","arcs":[[5307,5308,5309,-4401,5310,5311]],"id":"26061"},{"type":"MultiPolygon","arcs":[[[5312,-5297,5313,-4467,-4349]],[[-4351,-4466,5314]]],"id":"47167"},{"type":"Polygon","arcs":[[-1114,5315,5316,-2639,5317]],"id":"26065"},{"type":"Polygon","arcs":[[-4693,5318,5319,5320,5321,5322]],"id":"20191"},{"type":"Polygon","arcs":[[5323,5324,5325,5326,5327,5328,5329]],"id":"21135"},{"type":"Polygon","arcs":[[-4136,-3715,-3996,5330,-4075,5331]],"id":"48245"},{"type":"Polygon","arcs":[[5332,5333,-3570,5334,5335]],"id":"31177"},{"type":"Polygon","arcs":[[5336,5337,5338,-486,5339,5340,5341,5342]],"id":"53039"},{"type":"Polygon","arcs":[[5343,-3675,-4445,-5077,5344]],"id":"29173"},{"type":"Polygon","arcs":[[-1459,5345,5346,5347,-461,5348]],"id":"56001"},{"type":"Polygon","arcs":[[5349,5350,-2353,5351,-2794,5352,5353,5354],[-1447]],"id":"51003"},{"type":"Polygon","arcs":[[-4944,5355,5356,-1967,5357,5358]],"id":"29107"},{"type":"Polygon","arcs":[[5359,5360,-4936,-3487,-5014]],"id":"29125"},{"type":"Polygon","arcs":[[5361,-5241,-4346,5362,-5360,-5013]],"id":"29151"},{"type":"Polygon","arcs":[[-3090,-1924,-3099,-1340,5363,5364]],"id":"27161"},{"type":"Polygon","arcs":[[5365,5366,5367,5368,-4452,5369]],"id":"38105"},{"type":"Polygon","arcs":[[-3723,5370,-3322,5371,5372,5373,5374]],"id":"51147"},{"type":"Polygon","arcs":[[5375,-5143,5376,5377,5378]],"id":"24029"},{"type":"Polygon","arcs":[[5379,-3144,-4044,-4686,-5174,5380,5381]],"id":"17169"},{"type":"Polygon","arcs":[[5382,5383,5384,5385,5386,-3683]],"id":"24031"},{"type":"Polygon","arcs":[[-1174,5387,5388,5389]],"id":"47109"},{"type":"Polygon","arcs":[[5390,5391,5392,-1240,5393]],"id":"22119"},{"type":"Polygon","arcs":[[5394,5395,5396]],"id":"37129"},{"type":"Polygon","arcs":[[-5311,-4400,5397,-4024,-5107,5398,5399,-3612,5400]],"id":"26071"},{"type":"Polygon","arcs":[[-5194,5401,5402,5403,5404,5405,5406]],"id":"21139"},{"type":"Polygon","arcs":[[5407,-1251,5408,-3907,5409,5410]],"id":"06077"},{"type":"Polygon","arcs":[[5411,-5195,-5407,5412,-3406,5413,5414]],"id":"21145"},{"type":"Polygon","arcs":[[5415,5416,-4878,-4808,5417,5418]],"id":"45049"},{"type":"Polygon","arcs":[[-1633,-1044,5419,5420,5421]],"id":"31037"},{"type":"MultiPolygon","arcs":[[[5422]]],"id":"78010"},{"type":"Polygon","arcs":[[5423,-2590,-4590,5424,-1478,5425,5426,5427]],"id":"30031"},{"type":"Polygon","arcs":[[-1384,5428,5429,-1436,5430,5431]],"id":"47135"},{"type":"Polygon","arcs":[[5432,-4001,-1821,-3576,5433,-3935,5434,5435]],"id":"16039"},{"type":"Polygon","arcs":[[-2545,5436,5437,5438,5439]],"id":"31013"},{"type":"MultiPolygon","arcs":[[[5440,-4015,5441,-4056,5442,5443,5444]]],"id":"25005"},{"type":"Polygon","arcs":[[-1167,-4747,-4793,5445,5446,5447]],"id":"17185"},{"type":"Polygon","arcs":[[5448,5449,5450,5451,5452,5453]],"id":"21095"},{"type":"Polygon","arcs":[[5454,5455,5456,-1069,5457,-1433]],"id":"47119"},{"type":"Polygon","arcs":[[5458,5459,-3993,-3713,5460]],"id":"22019"},{"type":"Polygon","arcs":[[5461,-2603,-5127,5462,5463,5464,5465,-1183]],"id":"37037"},{"type":"Polygon","arcs":[[-959,5466,-549,5467,5468]],"id":"48127"},{"type":"Polygon","arcs":[[-5039,5469,-5044,5470,5471,5472]],"id":"21153"},{"type":"Polygon","arcs":[[-4301,5473,5474,5475]],"id":"49011"},{"type":"Polygon","arcs":[[5476,5477,5478,5479]],"id":"49031"},{"type":"Polygon","arcs":[[-5227,5480,5481,5482,5483,-5037]],"id":"21159"},{"type":"Polygon","arcs":[[5484,5485,-4526,5486,-5292,5487]],"id":"27055"},{"type":"Polygon","arcs":[[5488,5489,5490,-4277]],"id":"53011"},{"type":"Polygon","arcs":[[5491,5492,5493,5494]],"id":"55089"},{"type":"Polygon","arcs":[[5495,-1963,-2591,-5424,5496,5497,5498]],"id":"30043"},{"type":"Polygon","arcs":[[5499,-4886,-4964,5500,5501,5502]],"id":"47155"},{"type":"Polygon","arcs":[[-2128,5503,-2936,5504,5505]],"id":"72057"},{"type":"Polygon","arcs":[[5506,5507,5508,5509]],"id":"32011"},{"type":"Polygon","arcs":[[5510,5511,5512,-1242,5513]],"id":"22061"},{"type":"Polygon","arcs":[[5514,5515,5516,-5511,5517]],"id":"22111"},{"type":"Polygon","arcs":[[5518,5519,5520,5521]],"id":"33001"},{"type":"Polygon","arcs":[[-1930,-2372,5522,5523,5524]],"id":"05011"},{"type":"Polygon","arcs":[[5525,5526,5527,-1575,5528,-148]],"id":"31085"},{"type":"Polygon","arcs":[[5529,5530,5531,5532,5533,5534,5535,5536]],"id":"42097"},{"type":"MultiPolygon","arcs":[[[5537,-981,-5199,5538]]],"id":"24041"},{"type":"Polygon","arcs":[[5539,5540,5541,-2894]],"id":"19041"},{"type":"Polygon","arcs":[[5542,5543,5544,-2081,-3969,5545]],"id":"47139"},{"type":"Polygon","arcs":[[5546,5547,-2151,5548,5549,5550]],"id":"20149"},{"type":"Polygon","arcs":[[5551,5552,5553]],"id":"24510"},{"type":"Polygon","arcs":[[5554,5555,-4918,5556,5557]],"id":"23001"},{"type":"Polygon","arcs":[[5558,5559,5560,-3380,-4789,5561]],"id":"18153"},{"type":"Polygon","arcs":[[5562,5563,-3350,5564,5565,5566,5567]],"id":"28145"},{"type":"Polygon","arcs":[[-1326,-1943,-2700,-2670,5568,-3741,-3110]],"id":"27063"},{"type":"Polygon","arcs":[[5569,5570,5571,5572,5573,5574,5575]],"id":"49049"},{"type":"Polygon","arcs":[[5576,-3898,5577,5578,-4835,5579]],"id":"54089"},{"type":"Polygon","arcs":[[-5574,5580,5581,5582,5583,5584]],"id":"49039"},{"type":"Polygon","arcs":[[-2730,5585,5586,-1483,5587,5588,5589]],"id":"55027"},{"type":"Polygon","arcs":[[5590,5591,-5249,5592,-912,5593]],"id":"46051"},{"type":"Polygon","arcs":[[-5057,5594,5595,-161,-319]],"id":"42057"},{"type":"Polygon","arcs":[[5596,5597,5598,5599,5600,5601]],"id":"55093"},{"type":"Polygon","arcs":[[5602,5603,-1504,-4587,5604]],"id":"30045"},{"type":"Polygon","arcs":[[5605,5606,-4990,5607,5608,-3013,-4806]],"id":"45057"},{"type":"Polygon","arcs":[[5609,5610,-1495,5611,5612,-4512,5613]],"id":"51033"},{"type":"Polygon","arcs":[[5614,5615,5616,-5346,-1458]],"id":"56031"},{"type":"Polygon","arcs":[[5617,5618,5619,5620,5621,-5602,5622]],"id":"27163"},{"type":"Polygon","arcs":[[5623,5624,5625,5626,5627,5628,5629]],"id":"29133"},{"type":"Polygon","arcs":[[-4982,5630,5631,-4888,5632]],"id":"42095"},{"type":"Polygon","arcs":[[-5123,5633,5634,5635,5636,5637]],"id":"22085"},{"type":"Polygon","arcs":[[5638,5639,5640,-4737,-3413,5641]],"id":"21169"},{"type":"Polygon","arcs":[[-3753,5642,-4705,5643]],"id":"04021"},{"type":"Polygon","arcs":[[-1217,5644,5645,-3751,-710]],"id":"04017"},{"type":"Polygon","arcs":[[5646,-3019,5647,-4709,5648]],"id":"04027"},{"type":"Polygon","arcs":[[5649,5650,5651,-5620,5652,-648]],"id":"27025"},{"type":"Polygon","arcs":[[-3669,5653,5654,-1379,-1530,5655,-4347]],"id":"47045"},{"type":"Polygon","arcs":[[5656,5657,5658,5659,5660]],"id":"21181"},{"type":"Polygon","arcs":[[5661,-5364,-1345,5662,5663,-2698]],"id":"27043"},{"type":"Polygon","arcs":[[5664,-5048,5665,-5450,5666,5667,-3745]],"id":"21193"},{"type":"Polygon","arcs":[[5668,-3272,5669,5670,5671,5672]],"id":"48037"},{"type":"Polygon","arcs":[[-5023,5673,-1408,-41,5674,5675]],"id":"56011"},{"type":"Polygon","arcs":[[5676,-5094,-4204,5677]],"id":"45061"},{"type":"Polygon","arcs":[[5678,5679,5680,5681,5682,-5616]],"id":"56015"},{"type":"MultiPolygon","arcs":[[[5683,-4011]],[[-3585,5684]],[[5685,-3589,5686,-4009,-5441,5687,5688]]],"id":"25021"},{"type":"Polygon","arcs":[[5689,5690,5691,5692,5693,-3990]],"id":"21123"},{"type":"Polygon","arcs":[[5694,-1501,5695,-5427,5696,5697,5698,-2606]],"id":"16043"},{"type":"Polygon","arcs":[[-3930,-757,5699,-54,5700,-4550]],"id":"13233"},{"type":"Polygon","arcs":[[-342,-3124,5701,-4564,-3021,-449,5702,5703,5704]],"id":"31031"},{"type":"Polygon","arcs":[[-3918,5705,5706,-3769,5707]],"id":"13247"},{"type":"Polygon","arcs":[[5708,-3020,-5647,5709,5710]],"id":"06025"},{"type":"Polygon","arcs":[[-1701,-1226,-5261,-2291,-4115,-5202,5711]],"id":"16017"},{"type":"Polygon","arcs":[[5712,5713,5714,-4320,5715]],"id":"18045"},{"type":"Polygon","arcs":[[5716,5717,5718,5719,5720,5721,5722]],"id":"47031"},{"type":"Polygon","arcs":[[5723,5724,5725,-663,5726,-5720,5727]],"id":"47177"},{"type":"Polygon","arcs":[[5728,-5483,5729,5730,5731,5732,5733,-5046]],"id":"21195"},{"type":"Polygon","arcs":[[5734,5735,5736,-1297,5737,5738]],"id":"21197"},{"type":"Polygon","arcs":[[-1338,5739,5740,5741]],"id":"26139"},{"type":"Polygon","arcs":[[5742,5743,5744,-1205,5745,5746,5747]],"id":"47165"},{"type":"Polygon","arcs":[[5748,5749,5750,5751,5752]],"id":"37153"},{"type":"Polygon","arcs":[[-3157,5753,5754,5755,5756]],"id":"48043"},{"type":"Polygon","arcs":[[5757,5758,-1454,-809,5759,5760]],"id":"56019"},{"type":"Polygon","arcs":[[5761,5762,5763,-5621,-5652]],"id":"55095"},{"type":"Polygon","arcs":[[-5764,5764,-5597,-5622]],"id":"55109"},{"type":"Polygon","arcs":[[5765,-3951,5766,-4069]],"id":"48111"},{"type":"Polygon","arcs":[[5767,-5537,5768,5769,5770,5771]],"id":"42067"},{"type":"Polygon","arcs":[[5772,5773,5774,5775,5776,5777,5778]],"id":"18089"},{"type":"Polygon","arcs":[[5779,5780,5781,5782,5783]],"id":"42131"},{"type":"Polygon","arcs":[[5784,5785,-4945,-5359,5786,5787,5788]],"id":"29095"},{"type":"Polygon","arcs":[[5789,5790,-994,5791,5792]],"id":"42073"},{"type":"Polygon","arcs":[[5793,-1660,5794,-5790,5795,5796]],"id":"42085"},{"type":"Polygon","arcs":[[5797,-5784,5798,5799,-4980,5800,5801]],"id":"42079"},{"type":"Polygon","arcs":[[-3575,-16,-3932,-5434]],"id":"16025"},{"type":"Polygon","arcs":[[-3491,-287,-3645,5802,-2847,5803]],"id":"19103"},{"type":"Polygon","arcs":[[-514,-1839,5804,-692,5805]],"id":"19117"},{"type":"Polygon","arcs":[[5806,-722,-2994,5807,5808,5809]],"id":"40151"},{"type":"Polygon","arcs":[[5810,-5809,5811,5812,5813]],"id":"40153"},{"type":"Polygon","arcs":[[-2882,5814,-4177,5815,-4778,-3819,5816]],"id":"35027"},{"type":"Polygon","arcs":[[-5188,-4124,-4182,5817,5818]],"id":"38057"},{"type":"Polygon","arcs":[[-4830,-4566,-2883,-5817,-3818,5819]],"id":"35053"},{"type":"Polygon","arcs":[[5820,5821,-2502,5822,-5714,5823,-2941]],"id":"18157"},{"type":"Polygon","arcs":[[5824,5825,5826,5827,5828,5829]],"id":"21221"},{"type":"Polygon","arcs":[[-5751,5830,5831,5832]],"id":"37165"},{"type":"Polygon","arcs":[[-2740,-847,-560,5833,5834,5835]],"id":"17055"},{"type":"Polygon","arcs":[[-846,5836,-3982,-4219,5837,-562]],"id":"17059"},{"type":"Polygon","arcs":[[-4442,-2120,-5216,-2959,-5081,5838]],"id":"17061"},{"type":"Polygon","arcs":[[-3959,-2684,-3908,-5409,-1250]],"id":"06009"},{"type":"Polygon","arcs":[[5839,-4599,5840,5841,5842,5843]],"id":"45065"},{"type":"MultiPolygon","arcs":[[[-4456,5844]],[[-3872,-1051,-4458,5845]]],"id":"45077"},{"type":"Polygon","arcs":[[-5353,-2799,-5252,-3318,5846]],"id":"51065"},{"type":"Polygon","arcs":[[5847,-5678,-4203,-5082,5848,5849]],"id":"45085"},{"type":"Polygon","arcs":[[5850,5851,-1526,5852]],"id":"51133"},{"type":"Polygon","arcs":[[5853,-5328,5854,5855,-5659,5856]],"id":"21069"},{"type":"Polygon","arcs":[[-424,5857,5858,5859,5860,5861]],"id":"47001"},{"type":"Polygon","arcs":[[5862,5863,5864,-1959,-2241]],"id":"30099"},{"type":"Polygon","arcs":[[-158,5865,5866,5867,-5115]],"id":"35055"},{"type":"Polygon","arcs":[[-3060,-5209,-879,5868,-2095,-1270]],"id":"18085"},{"type":"Polygon","arcs":[[5869,-4185,5870,5871,5872]],"id":"38085"},{"type":"Polygon","arcs":[[-3415,-4736,5873,5874,5875,5876,5877]],"id":"47027"},{"type":"Polygon","arcs":[[-5671,5878,5879,5880,5881]],"id":"48067"},{"type":"Polygon","arcs":[[5882,-5558,5883,-971,5884,-1613,5885]],"id":"23017"},{"type":"Polygon","arcs":[[-5660,-5856,5886,5887,5888]],"id":"21011"},{"type":"Polygon","arcs":[[-4574,-3064,-1186,5889,5890,5891]],"id":"37057"},{"type":"Polygon","arcs":[[-5557,-4917,5892,-972,-5884]],"id":"23005"},{"type":"Polygon","arcs":[[5893,-3091,-5365,-5662,-2697,-1941,-4340]],"id":"27013"},{"type":"Polygon","arcs":[[5894,5895,5896,5897,5898,-4303]],"id":"51093"},{"type":"Polygon","arcs":[[-5255,5899,5900,5901,-4291,-347,5902,-4496]],"id":"56037"},{"type":"Polygon","arcs":[[-2289,5903,5904,-4111]],"id":"30061"},{"type":"Polygon","arcs":[[5905,5906]],"id":"51685"},{"type":"Polygon","arcs":[[5907,-4101,-2731,-5590,5908,5909,5910]],"id":"55021"},{"type":"Polygon","arcs":[[5911,-1735,-141,5912]],"id":"72145"},{"type":"Polygon","arcs":[[5913,5914,-2667,5915,5916,5917]],"id":"46041"},{"type":"Polygon","arcs":[[5918,-1389,-5416,5919,5920]],"id":"45005"},{"type":"Polygon","arcs":[[5921,-5088,-1464,5922,5923,-4883]],"id":"47059"},{"type":"Polygon","arcs":[[-3787,-3746,-5668,5924,5925,-5218,5926]],"id":"21051"},{"type":"Polygon","arcs":[[5927,-4217,5928,5929,5930,-5404]],"id":"21055"},{"type":"Polygon","arcs":[[5931,5932,-5753,5933,-4986]],"id":"37007"},{"type":"Polygon","arcs":[[5934,-426,5935,5936,5937,5938]],"id":"47049"},{"type":"MultiPolygon","arcs":[[[-5628,5939,5940,5941,5942]],[[5943,5944]]],"id":"21075"},{"type":"Polygon","arcs":[[5945,5946,-5225,5947,5948]],"id":"21019"},{"type":"Polygon","arcs":[[-4459,5949,-4600,-5840,5950]],"id":"45001"},{"type":"Polygon","arcs":[[5951,5952,5953,5954,5955,-2722,-5275,5956]],"id":"48149"},{"type":"Polygon","arcs":[[-5339,5957,5958,-2039,5959,-487]],"id":"41049"},{"type":"Polygon","arcs":[[5960,5961,5962,-5055,-3441]],"id":"42013"},{"type":"Polygon","arcs":[[5963]],"id":"25019"},{"type":"Polygon","arcs":[[-5083,-4201,5964,-5170,5965]],"id":"45089"},{"type":"Polygon","arcs":[[-3452,-3162,-3092,-5894,-4339]],"id":"27103"},{"type":"Polygon","arcs":[[5966,5967,-1210,5968,-5478]],"id":"49055"},{"type":"Polygon","arcs":[[5969,-1698,-4286,5970,-3043,-3193,5971]],"id":"48053"},{"type":"Polygon","arcs":[[5972,5973,-5499,5974,-1498,-1975]],"id":"30023"},{"type":"Polygon","arcs":[[-5498,5975,-1499,-5975]],"id":"30093"},{"type":"Polygon","arcs":[[-1401,-103,-4979,5976,5977,-4894]],"id":"46135"},{"type":"Polygon","arcs":[[-4867,5978,5979,5980,-340,5981]],"id":"46071"},{"type":"Polygon","arcs":[[-5876,5982,-5939,5983,5984]],"id":"47133"},{"type":"Polygon","arcs":[[-5582,5985,5986,-5968,5987]],"id":"49015"},{"type":"Polygon","arcs":[[5988,-1647,5989,-4547,5990,-3707,5991,-3710,5992]],"id":"48391"},{"type":"Polygon","arcs":[[5993,5994,-1204,-3493,-615]],"id":"48357"},{"type":"Polygon","arcs":[[-3967,5995,-603,-5120,5996,-5128,5997]],"id":"35045"},{"type":"Polygon","arcs":[[-1259,5998,5999,6000,6001,-3473,6002]],"id":"05063"},{"type":"Polygon","arcs":[[6003,-5015,-3485,-1560,6004,6005,-2217]],"id":"29029"},{"type":"Polygon","arcs":[[6006,-5161,6007,-4253,-2676]],"id":"38067"},{"type":"Polygon","arcs":[[-6001,6008,6009,-3905,-594,-4716,6010]],"id":"05067"},{"type":"Polygon","arcs":[[-97,6011,6012,-4873,-4976,-101]],"id":"46083"},{"type":"Polygon","arcs":[[-5941,6013,6014,-1374,-5655,6015]],"id":"47131"},{"type":"Polygon","arcs":[[6016,-4207,6017,6018,6019,6020,6021]],"id":"45003"},{"type":"Polygon","arcs":[[6022,-3450,6023,6024]],"id":"41003"},{"type":"Polygon","arcs":[[6025,-6024,-3449,6026,6027,6028,6029]],"id":"41039"},{"type":"Polygon","arcs":[[6030,6031,6032,6033,6034,-4513,-5613]],"id":"51097"},{"type":"Polygon","arcs":[[6035,6036,-5630,6037,6038]],"id":"29201"},{"type":"Polygon","arcs":[[-4544,6039,6040,6041,6042]],"id":"48321"},{"type":"Polygon","arcs":[[-1077,6043,6044,-238,6045]],"id":"48447"},{"type":"Polygon","arcs":[[6046,-432,6047,6048]],"id":"55129"},{"type":"Polygon","arcs":[[6049,-5479,-5969,-1209,6050,6051]],"id":"49017"},{"type":"Polygon","arcs":[[6052,-5335,-3569,6053,-2467]],"id":"31055"},{"type":"Polygon","arcs":[[6054,6055]],"id":"51520"},{"type":"Polygon","arcs":[[6056,-28,6057,-31,-3332]],"id":"38097"},{"type":"Polygon","arcs":[[-3280,-3286,6058,6059,-1927,6060]],"id":"05069"},{"type":"Polygon","arcs":[[6061,6062,6063,-6009,-6000,6064]],"id":"05075"},{"type":"Polygon","arcs":[[-5070,6065]],"id":"51570"},{"type":"Polygon","arcs":[[6066,6067,6068,6069,6070]],"id":"48001"},{"type":"Polygon","arcs":[[6071,-5414,-3405,6072,-5626]],"id":"21039"},{"type":"Polygon","arcs":[[-4234,6073,-5502,6074,6075,6076]],"id":"47009"},{"type":"Polygon","arcs":[[6077,6078,-1386,6079,-5090,-1443,-1376]],"id":"47017"},{"type":"Polygon","arcs":[[-3409,6080,6081,-1380,-6079,6082]],"id":"47079"},{"type":"Polygon","arcs":[[6083,6084,6085,6086,6087,-5236]],"id":"25013"},{"type":"Polygon","arcs":[[-3541,-1568,-4999,6088,-5356,-4943]],"id":"29033"},{"type":"Polygon","arcs":[[6089,6090,-5957,-5274,6091,6092]],"id":"48055"},{"type":"Polygon","arcs":[[6093,-5183,6094,6095]],"id":"50021"},{"type":"Polygon","arcs":[[-3464,6096,6097,6098,6099,-3447]],"id":"41031"},{"type":"Polygon","arcs":[[6100,-2390,-4838,6101,6102,6103]],"id":"51185"},{"type":"Polygon","arcs":[[6104,-3687,6105,6106,6107]],"id":"51043"},{"type":"Polygon","arcs":[[6108,6109,-4097]],"id":"72149"},{"type":"Polygon","arcs":[[6110,6111,6112,-1741,6113]],"id":"12067"},{"type":"Polygon","arcs":[[-362,-1119,-1307,6114,-2830]],"id":"20205"},{"type":"Polygon","arcs":[[-1168,-5448,6115,-3152]],"id":"17047"},{"type":"Polygon","arcs":[[-1619,-2678,-4256,-391,6116]],"id":"38071"},{"type":"Polygon","arcs":[[-5976,-5497,-5428,-5696,-1500]],"id":"30057"},{"type":"Polygon","arcs":[[-5173,6117,6118,6119,6120,-4764]],"id":"29005"},{"type":"Polygon","arcs":[[6121,6122,6123,6124,6125,-3516,6126]],"id":"51083"},{"type":"Polygon","arcs":[[6127,6128,6129,-3065,6130]],"id":"51013"},{"type":"MultiPolygon","arcs":[[[6131]],[[6132,-4084,-2427,6133,6134]],[[6135]]],"id":"53057"},{"type":"Polygon","arcs":[[6136,-3665,6137,-703,6138,6139,6140,-5018]],"id":"30025"},{"type":"Polygon","arcs":[[6141,6142,6143,-5896,6144,6145]],"id":"51181"},{"type":"Polygon","arcs":[[6146,6147,6148,-4638]],"id":"53071"},{"type":"Polygon","arcs":[[6149,6150,6151,6152,6153,-754]],"id":"13057"},{"type":"Polygon","arcs":[[6154,6155,6156,6157,6158]],"id":"27149"},{"type":"Polygon","arcs":[[-2832,6159,6160,6161,6162]],"id":"20019"},{"type":"Polygon","arcs":[[6163,6164,6165,-1677,-3805,6166]],"id":"29075"},{"type":"Polygon","arcs":[[6167,6168,-6107,6169,-2340,6170]],"id":"51187"},{"type":"Polygon","arcs":[[-1838,-1222,-281,-4727,-5805]],"id":"19135"},{"type":"Polygon","arcs":[[6171,6172,-1397,6173,-1890]],"id":"48325"},{"type":"Polygon","arcs":[[-4531,6174,-3806,-2402,6175,6176]],"id":"29021"},{"type":"Polygon","arcs":[[-5019,-6141,6177,-1404,-5674,-5022]],"id":"30011"},{"type":"Polygon","arcs":[[6178,6179,-2578,-3335,6180,6181]],"id":"26055"},{"type":"Polygon","arcs":[[6182,-4143,-4703,-4852,6183,6184,6185]],"id":"28141"},{"type":"Polygon","arcs":[[6186,-4831,-5820,-3822,-3677,-4711]],"id":"35003"},{"type":"Polygon","arcs":[[6187,-3443,-5058,-317,-5300,6188]],"id":"42111"},{"type":"Polygon","arcs":[[-354,6189,6190,6191,6192,6193]],"id":"36109"},{"type":"Polygon","arcs":[[-3633,6194,6195,6196]],"id":"36067"},{"type":"Polygon","arcs":[[-5103,6197,6198,6199,-5167,6200]],"id":"45051"},{"type":"Polygon","arcs":[[6201,6202,6203,-734]],"id":"30041"},{"type":"Polygon","arcs":[[6204,6205,6206,-2812,-44]],"id":"36001"},{"type":"Polygon","arcs":[[-506,6207,-6153,6208,6209,-3921,6210,6211,-626,6212]],"id":"13121"},{"type":"Polygon","arcs":[[-5599,6213,6214,6215,6216,6217]],"id":"55091"},{"type":"Polygon","arcs":[[6218,-3309,6219,6220,6221]],"id":"01105"},{"type":"Polygon","arcs":[[-2745,6222,-2359]],"id":"02090"},{"type":"Polygon","arcs":[[6223,6224,6225,6226]],"id":"13125"},{"type":"Polygon","arcs":[[-927,6227,-2268,6228,-2767]],"id":"48173"},{"type":"Polygon","arcs":[[-1477,6229,-5253,-4494,-4005,6230,-5697,-5426]],"id":"56039"},{"type":"MultiPolygon","arcs":[[[-4307,6231]],[[6232,6233,6234,6235,6236,6237,6238,-4312,6239,-2285,6240]]],"id":"08059"},{"type":"Polygon","arcs":[[6241,-2101,6242]],"id":"08029"},{"type":"Polygon","arcs":[[-3920,6243,6244,6245,-6211]],"id":"13063"},{"type":"Polygon","arcs":[[-67,6246,-4376,6247,6248]],"id":"18117"},{"type":"MultiPolygon","arcs":[[[6249]],[[6250]],[[-3657,6251]]],"id":"36103"},{"type":"MultiPolygon","arcs":[[[6252]],[[-4427,6253,-3629,6254]],[[6255]]],"id":"36045"},{"type":"Polygon","arcs":[[-4000,6256,6257,6258,-1773]],"id":"20107"},{"type":"Polygon","arcs":[[6259,6260,6261,-3834,6262,6263,-4617,6264]],"id":"37161"},{"type":"Polygon","arcs":[[6265,6266,6267,-4472,-4889,-5632]],"id":"34041"},{"type":"Polygon","arcs":[[6268,6269,-5480,-6050,6270,-4404]],"id":"49001"},{"type":"Polygon","arcs":[[6271,6272,-4647,6273,-6055,6274,-1607,6275]],"id":"51191"},{"type":"Polygon","arcs":[[-4850,-4552,6276,6277,-4087]],"id":"01015"},{"type":"Polygon","arcs":[[6278,6279,6280,6281,6282,-1747]],"id":"13133"},{"type":"Polygon","arcs":[[6283,6284,6285,6286]],"id":"54009"},{"type":"MultiPolygon","arcs":[[[-2024,6287,-4858]],[[6288]],[[6289,-4860]]],"id":"02070"},{"type":"Polygon","arcs":[[-3018,6290,-3754,-5644,-4704,-5648]],"id":"04013"},{"type":"Polygon","arcs":[[-4791,6291,6292,6293,6294]],"id":"18125"},{"type":"Polygon","arcs":[[-3779,-2786,6295,-4414,6296,6297,-70]],"id":"18137"},{"type":"Polygon","arcs":[[-2461,6298,-4694,-5323,6299,-719]],"id":"20095"},{"type":"Polygon","arcs":[[6300,-1523,6301,6302,6303]],"id":"20123"},{"type":"Polygon","arcs":[[-1543,6304,-763,-1023,-3028,6305]],"id":"20083"},{"type":"Polygon","arcs":[[-3051,6306,-2489,-1105,-642,6307]],"id":"20127"},{"type":"Polygon","arcs":[[-1764,6308,-651,6309,-1357,6310,6311]],"id":"27095"},{"type":"Polygon","arcs":[[-5566,6312,6313,6314,-82,6315]],"id":"28081"},{"type":"Polygon","arcs":[[6316,6317,-5568,6318,-444,6319,6320]],"id":"28071"},{"type":"Polygon","arcs":[[6321,6322,6323,6324,-4168,-4430]],"id":"28029"},{"type":"Polygon","arcs":[[6325,6326,6327,6328,-439,6329]],"id":"28111"},{"type":"Polygon","arcs":[[-4255,6330,-29,-6057,-3331,-386]],"id":"38035"},{"type":"Polygon","arcs":[[6331,6332,6333,-5138,-5098]],"id":"42045"},{"type":"Polygon","arcs":[[6334,6335,6336,6337,6338]],"id":"44003"},{"type":"Polygon","arcs":[[6339,-5804,-2846,-3494,-1845]],"id":"19095"},{"type":"Polygon","arcs":[[-1043,6340,-5336,-6053,-2466,6341,-5420]],"id":"31053"},{"type":"Polygon","arcs":[[-322,6342,6343,-5301]],"id":"54057"},{"type":"Polygon","arcs":[[6344,-4718,-3766,6345,-3284]],"id":"05117"},{"type":"Polygon","arcs":[[-5646,6346,-4714,6347,-4706,-5643,-3752]],"id":"04009"},{"type":"Polygon","arcs":[[-463,6348,6349,6350,6351,6352,6353,6354]],"id":"08049"},{"type":"Polygon","arcs":[[6355,6356,6357,6358,6359,-3225,-1834,-4674,6360]],"id":"08109"},{"type":"Polygon","arcs":[[6361,6362,-3138,-1812,-606,6363]],"id":"12093"},{"type":"Polygon","arcs":[[-2086,6364,6365,6366,-3970]],"id":"13123"},{"type":"Polygon","arcs":[[-3357,6367,6368,6369,-5114,6370,6371,-3126]],"id":"13299"},{"type":"Polygon","arcs":[[6372,-5345,-5076,-4342,-5240,6373,6374]],"id":"29007"},{"type":"Polygon","arcs":[[-5118,6375,6376,6377,6378]],"id":"35028"},{"type":"Polygon","arcs":[[6379,6380,-4485,-2501,-3506,-1449,-1505,-5604]],"id":"30027"},{"type":"Polygon","arcs":[[6381,-5281,6382,-4562]],"id":"31149"},{"type":"Polygon","arcs":[[6383,6384,-5190,6385,6386,-5368]],"id":"38061"},{"type":"Polygon","arcs":[[6387,6388,6389,-1317,6390,-4215,-3980]],"id":"21101"},{"type":"Polygon","arcs":[[6391,-5688,-5445,6392,6393,-6335,6394]],"id":"44007"},{"type":"Polygon","arcs":[[6395,-3868,6396,6397,-5858,-423]],"id":"47013"},{"type":"MultiPolygon","arcs":[[[6398,6399,6400,6401]],[[6402,6403,6404,6405,-124]]],"id":"48261"},{"type":"Polygon","arcs":[[6406,-4047,6407,6408,-2859,6409]],"id":"36051"},{"type":"Polygon","arcs":[[6410,-3892,6411,6412,6413,6414]],"id":"54011"},{"type":"Polygon","arcs":[[6415,6416,6417,-3913,6418,-2162]],"id":"06007"},{"type":"Polygon","arcs":[[-6353,6419,6420,6421,6422]],"id":"08117"},{"type":"Polygon","arcs":[[6423,6424,-4461,6425,-1894]],"id":"13147"},{"type":"Polygon","arcs":[[-5288,-1793,-4041,-3142,6426]],"id":"17187"},{"type":"Polygon","arcs":[[6427,6428,6429,-3375,6430]],"id":"18119"},{"type":"Polygon","arcs":[[6431,6432,-6248,-4381,-4786,6433,6434,-6293]],"id":"18037"},{"type":"Polygon","arcs":[[-2135,6435,6436,6437,-1541]],"id":"20165"},{"type":"Polygon","arcs":[[-215,-1015,-3492,-6340,6438]],"id":"19011"},{"type":"Polygon","arcs":[[6439,-4593,-3788,-5927,-5217,-3864,6440]],"id":"21125"},{"type":"Polygon","arcs":[[6441,6442,6443,6444,-2459,-765]],"id":"20185"},{"type":"Polygon","arcs":[[-5635,6445,6446,6447,6448,6449]],"id":"22115"},{"type":"Polygon","arcs":[[6450,6451,6452,-1590,-2640,-5317]],"id":"26093"},{"type":"Polygon","arcs":[[-3098,-3078,-3237,6453,-465,-2742,6454,-1342]],"id":"27099"},{"type":"Polygon","arcs":[[-2565,6455,6456,6457,6458]],"id":"28073"},{"type":"Polygon","arcs":[[6459,6460,6461,6462,6463,6464]],"id":"28053"},{"type":"Polygon","arcs":[[6465,6466,-1639,6467,-653]],"id":"31139"},{"type":"Polygon","arcs":[[6468,6469,-5472,6470,-1298,-5737]],"id":"21237"},{"type":"Polygon","arcs":[[6471,-5031,6472,-5826,6473,-5930]],"id":"21033"},{"type":"Polygon","arcs":[[-1407,-3692,6474,6475,-4865,-38]],"id":"46093"},{"type":"Polygon","arcs":[[6476,6477,6478,6479,-4606,6480]],"id":"21021"},{"type":"Polygon","arcs":[[6481,-4623,6482,6483,6484]],"id":"37199"},{"type":"Polygon","arcs":[[-6220,-3308,6485,-2705,6486,6487]],"id":"01047"},{"type":"Polygon","arcs":[[6488,-2562,6489,-208]],"id":"13231"},{"type":"Polygon","arcs":[[-861,6490,6491,6492]],"id":"01035"},{"type":"Polygon","arcs":[[-3392,6493,-3282,-2476,6494,6495]],"id":"05105"},{"type":"Polygon","arcs":[[-6366,6496,-6150,6497]],"id":"13227"},{"type":"Polygon","arcs":[[6498,-6282,6499,6500,-6227,6501,6502]],"id":"13141"},{"type":"Polygon","arcs":[[6503,-194,6504,6505,6506]],"id":"13307"},{"type":"Polygon","arcs":[[6507,-4156,6508,-3006,6509,6510]],"id":"18095"},{"type":"Polygon","arcs":[[-3377,-68,-6249,-6433,6511]],"id":"18101"},{"type":"Polygon","arcs":[[-2196,-367,-1544,-6306,-3031,6512,6513]],"id":"20055"},{"type":"Polygon","arcs":[[-2149,6514,6515,6516,6517]],"id":"20087"},{"type":"Polygon","arcs":[[-3395,6518,6519,-5821,-2940,6520]],"id":"18181"},{"type":"Polygon","arcs":[[-4608,6521,-4594,-6440,6522,-4221,6523]],"id":"21199"},{"type":"Polygon","arcs":[[-5381,-5178,-5214,-4440,6524]],"id":"17009"},{"type":"Polygon","arcs":[[6525,6526,6527,6528,6529,6530,6531]],"id":"22021"},{"type":"Polygon","arcs":[[-5787,-5358,-1966,6532,6533]],"id":"29101"},{"type":"Polygon","arcs":[[-4166,6534,6535,6536,6537]],"id":"29017"},{"type":"Polygon","arcs":[[-2265,6538,6539,6540,6541,6542]],"id":"29035"},{"type":"Polygon","arcs":[[-954,6543,-2470,6544,-4766,6545,-2552]],"id":"31109"},{"type":"Polygon","arcs":[[6546,6547,6548,6549,-4474]],"id":"34035"},{"type":"Polygon","arcs":[[6550,-6410,-2858,6551,6552]],"id":"36121"},{"type":"Polygon","arcs":[[6553,-355,-6194,6554,6555]],"id":"36097"},{"type":"Polygon","arcs":[[6556,6557,6558,6559,-1861]],"id":"39091"},{"type":"Polygon","arcs":[[6560,-1786,-1910,6561,6562,6563,-6559]],"id":"39159"},{"type":"Polygon","arcs":[[-4954,-3104,6564,-3439,6565]],"id":"42063"},{"type":"Polygon","arcs":[[-3991,-5694,6566,-5639,6567,-2778,6568]],"id":"21099"},{"type":"Polygon","arcs":[[-1319,6569,-4603,-4213,6570,6571,6572]],"id":"21183"},{"type":"Polygon","arcs":[[6573,6574,-2455,-2664,-5915,6575]],"id":"46129"},{"type":"Polygon","arcs":[[-4969,6576,-4881,-5500,6577]],"id":"47089"},{"type":"Polygon","arcs":[[6578,6579,6580,6581,-5657,6582,-787]],"id":"21097"},{"type":"Polygon","arcs":[[-5501,-4963,6583,6584,6585,-6075]],"id":"37173"},{"type":"Polygon","arcs":[[6586,-2307,6587,-3041,6588,-2311,6589]],"id":"48499"},{"type":"Polygon","arcs":[[6590,6591,6592,6593,6594,6595]],"id":"37091"},{"type":"Polygon","arcs":[[-815,6596,-4137,-5332,-4074,6597,6598]],"id":"48291"},{"type":"Polygon","arcs":[[6599,6600,-73,-4326,6601,-65,6602]],"id":"18071"},{"type":"Polygon","arcs":[[-6438,6603,-6442,-764,-6305,-1542]],"id":"20145"},{"type":"Polygon","arcs":[[-2492,-3246,-1238,-1775,-1117,-360]],"id":"20031"},{"type":"Polygon","arcs":[[-835,6604,6605,-4738,-3795]],"id":"22055"},{"type":"Polygon","arcs":[[6606,-2079,-1369,-6155,6607]],"id":"27051"},{"type":"Polygon","arcs":[[6608,-2899,6609,6610,6611]],"id":"28121"},{"type":"Polygon","arcs":[[6612,6613,-6612,-6323,6614,-3624]],"id":"28049"},{"type":"Polygon","arcs":[[6615,6616,6617,-4581,6618,6619]],"id":"37051"},{"type":"Polygon","arcs":[[6620,6621,6622,6623,-1291,-2904,-1949,-4117]],"id":"37193"},{"type":"Polygon","arcs":[[-1878,6624,6625,-6557,-1860,6626]],"id":"39011"},{"type":"Polygon","arcs":[[6627,6628,6629,6630,6631,6632,-3846]],"id":"40125"},{"type":"Polygon","arcs":[[6633,-4195,6634,6635,6636,6637]],"id":"40091"},{"type":"Polygon","arcs":[[6638,6639,-3461,6640,6641]],"id":"41071"},{"type":"Polygon","arcs":[[-4983,-5633,-4887,6642,6643,6644]],"id":"42077"},{"type":"Polygon","arcs":[[-5692,6645,-4611,6646,6647]],"id":"21217"},{"type":"Polygon","arcs":[[-4330,-2779,-6568,-5642,-3412,6648]],"id":"21009"},{"type":"Polygon","arcs":[[-5971,-4290,6649,-6090,6650,-3044]],"id":"48453"},{"type":"Polygon","arcs":[[-108,-816,-6599,6651,6652,6653]],"id":"48339"},{"type":"Polygon","arcs":[[6654,-459,-2269,-6228,-926]],"id":"48227"},{"type":"Polygon","arcs":[[6655,-5733,6656,6657,-1605,6658,-5452],[-3882]],"id":"51195"},{"type":"Polygon","arcs":[[6659]],"id":"51840"},{"type":"Polygon","arcs":[[-4191,6660,-931,6661,-89]],"id":"39139"},{"type":"Polygon","arcs":[[-6611,6662,6663,-2563,6664,-6324]],"id":"28127"},{"type":"Polygon","arcs":[[6665,-6374,-5243,6666,6667,-1515,6668]],"id":"29019"},{"type":"Polygon","arcs":[[-735,-6204,6669,-6380,-5603,6670,-5864,6671]],"id":"30015"},{"type":"Polygon","arcs":[[6672,-910,-3333,-375,-1946,-4560]],"id":"31081"},{"type":"Polygon","arcs":[[-6378,6673,-6376,-5117,6674,-4572,-2879,6675,6676]],"id":"35049"},{"type":"Polygon","arcs":[[6677,-5284,-4579,6678,6679,-4582,-6618]],"id":"37163"},{"type":"Polygon","arcs":[[6680,-2719,-4196,-6634,6681,6682,-6630]],"id":"40107"},{"type":"Polygon","arcs":[[6683,6684,6685,6686,-1371,6687,-2992]],"id":"40047"},{"type":"Polygon","arcs":[[-5888,6688,6689,-6469,-5736,6690]],"id":"21165"},{"type":"Polygon","arcs":[[-5116,-5868,6691,6692,-4568,-6675]],"id":"35033"},{"type":"Polygon","arcs":[[-6468,-1635,6693,-4527,-654]],"id":"31119"},{"type":"Polygon","arcs":[[-226,6694,-906,-6673,-4559,-775]],"id":"31121"},{"type":"Polygon","arcs":[[-3448,-6100,6695,-4281,-4051,6696,-6027]],"id":"41017"},{"type":"Polygon","arcs":[[-4284,6697,6698,6699,6700,6701,6702]],"id":"32013"},{"type":"Polygon","arcs":[[6703,6704,6705,6706,6707]],"id":"42117"},{"type":"Polygon","arcs":[[-6572,6708,-2781,-4334,6709,6710]],"id":"21031"},{"type":"Polygon","arcs":[[-4379,6711,-3985,-4211,-4787]],"id":"21163"},{"type":"Polygon","arcs":[[-6480,6712,-4595,-6522,-4607]],"id":"21137"},{"type":"Polygon","arcs":[[-5219,-5926,6713,-5454,6714,6715,-3866]],"id":"21013"},{"type":"Polygon","arcs":[[-3055,6716,6717,-785,-2707,-4696]],"id":"21187"},{"type":"Polygon","arcs":[[6718,6719,-3877]],"id":"37137"},{"type":"Polygon","arcs":[[6720,6721,6722,6723,6724,6725]],"id":"37187"},{"type":"Polygon","arcs":[[6726,6727,6728,6729,6730]],"id":"54015"},{"type":"Polygon","arcs":[[6731,-5025,6732,-5758,6733]],"id":"56033"},{"type":"Polygon","arcs":[[6734,-139,6735,6736,6737]],"id":"72137"},{"type":"Polygon","arcs":[[-4913,6738,-2064,-3256,6739,-4272]],"id":"72125"},{"type":"Polygon","arcs":[[6740,-4819,6741,6742,6743]],"id":"42103"},{"type":"Polygon","arcs":[[6744,6745,-6717,-3054,6746]],"id":"21077"},{"type":"Polygon","arcs":[[-1184,-5466,6747,6748,-6616,6749,-5750,6750]],"id":"37125"},{"type":"Polygon","arcs":[[-5832,6751,-6619,-4585,6752,-5102,6753]],"id":"37155"},{"type":"Polygon","arcs":[[-4289,6754,-5952,-6091,-6650]],"id":"48021"},{"type":"Polygon","arcs":[[6755,6756,6757,-813,-106]],"id":"48455"},{"type":"Polygon","arcs":[[6758,6759,6760,-2978,-4573,-1287,-6624,6761]],"id":"37171"},{"type":"Polygon","arcs":[[6762,6763,-5366,6764]],"id":"38023"},{"type":"Polygon","arcs":[[-4108,6765,6766,6767,6768,6769,-2413]],"id":"72119"},{"type":"Polygon","arcs":[[-1388,6770,-4993,-4803,6771,-4879,-5417]],"id":"45029"},{"type":"Polygon","arcs":[[-3431,6772,6773,-5724,6774,6775]],"id":"47041"},{"type":"Polygon","arcs":[[-4240,-947,-673,-1695,-1109,6776]],"id":"48309"},{"type":"Polygon","arcs":[[-3879,6777,-2393,-4230]],"id":"37031"},{"type":"Polygon","arcs":[[-4926,6778,-1689,6779,-2526,-2259]],"id":"48307"},{"type":"Polygon","arcs":[[-3071,6780,6781,-1063,6782,6783]],"id":"39171"},{"type":"Polygon","arcs":[[6784,6785,6786,6787,6788,6789,6790,-6042]],"id":"48039"},{"type":"Polygon","arcs":[[-1900,-824,6791,6792,-4839,6793,6794]],"id":"39013"},{"type":"Polygon","arcs":[[6795,6796,6797,6798,6799,6800]],"id":"39071"},{"type":"Polygon","arcs":[[-3643,6801,-3150,6802,-779,6803]],"id":"39173"},{"type":"Polygon","arcs":[[6804,6805,-857,6806,6807,6808]],"id":"55015"},{"type":"Polygon","arcs":[[6809,6810,6811,-5772,6812]],"id":"42087"},{"type":"Polygon","arcs":[[6813,-5814,6814,6815,-2555,-1201,6816]],"id":"40045"},{"type":"Polygon","arcs":[[6817,6818,-2185,6819,-5980]],"id":"46075"},{"type":"Polygon","arcs":[[-5828,6820,6821,-4538,-1381,-6082,6822]],"id":"47161"},{"type":"Polygon","arcs":[[6823,6824,6825,-2806,-1001]],"id":"48017"},{"type":"MultiPolygon","arcs":[[[6826,6827,-940,-4100,6828,6829]]],"id":"72113"},{"type":"Polygon","arcs":[[6830,-1917,6831,6832,6833,6834]],"id":"40065"},{"type":"Polygon","arcs":[[-1049,6835,-3861,6836,-4596,-5950]],"id":"45059"},{"type":"Polygon","arcs":[[6837,6838,-3688,-1405,-6178,-6140]],"id":"46063"},{"type":"Polygon","arcs":[[6839,6840,6841,6842,6843]],"id":"54105"},{"type":"Polygon","arcs":[[6844,6845,-6805,6846,-818]],"id":"55087"},{"type":"Polygon","arcs":[[-4186,-5870,6847,-3231,6848]],"id":"38037"},{"type":"Polygon","arcs":[[6849,-4280,6850,6851]],"id":"41007"},{"type":"Polygon","arcs":[[6852,-5801,-4984,-6645,6853,-229,6854,-5535]],"id":"42107"},{"type":"Polygon","arcs":[[-6707,6855,6856,6857,6858,-5532,6859,6860,6861]],"id":"42081"},{"type":"MultiPolygon","arcs":[[[6862,6863]],[[-6774,6864,6865,6866,-5725]]],"id":"47185"},{"type":"Polygon","arcs":[[6867,6868,6869,6870,-6216]],"id":"55011"},{"type":"Polygon","arcs":[[-6740,-3255,6871,6872,-4273]],"id":"72079"},{"type":"Polygon","arcs":[[6873,6874,6875,6876,6877,6878,6879]],"id":"72131"},{"type":"Polygon","arcs":[[6880,-4033,6881,6882,-5994,-614,-3950,6883]],"id":"40139"},{"type":"Polygon","arcs":[[-6858,6884,-5802,-6853,-5534,6885]],"id":"42037"},{"type":"Polygon","arcs":[[6886,-5872,6887,6888,-6576,-5914,6889,-3690]],"id":"46031"},{"type":"Polygon","arcs":[[-6069,6890,6891,-6756,-105,-2330,6892]],"id":"48225"},{"type":"Polygon","arcs":[[-6780,-1688,6893,6894,-5972,-3192,-2527]],"id":"48411"},{"type":"Polygon","arcs":[[-4245,6895,6896,6897,-6143,6898,6899]],"id":"51036"},{"type":"Polygon","arcs":[[6900,-6171,-2344,6901,-2350,6902]],"id":"51139"},{"type":"Polygon","arcs":[[-2183,-613,6903,-3123,6904]],"id":"46123"},{"type":"Polygon","arcs":[[-3158,-5757,6905]],"id":"48377"},{"type":"Polygon","arcs":[[-6271,-6052,6906,6907,-4405]],"id":"49021"},{"type":"Polygon","arcs":[[6908,6909,-1724,6910,6911]],"id":"48347"},{"type":"Polygon","arcs":[[6912,6913,6914,6915,6916,6917,-5954]],"id":"48477"},{"type":"Polygon","arcs":[[-3300,-3977,-5259,6918,6919,6920]],"id":"49003"},{"type":"Polygon","arcs":[[6921,6922,6923,-251,6924]],"id":"48097"},{"type":"Polygon","arcs":[[6925,-6834,6926,6927,-1075,-4911]],"id":"48487"},{"type":"Polygon","arcs":[[-945,6928,-6070,-6893,-2329,6929]],"id":"48289"},{"type":"Polygon","arcs":[[-1906,-5277,6930,-1644,6931,6932,-1393]],"id":"48255"},{"type":"Polygon","arcs":[[-4837,6933,-3539,6934,6935,-6102]],"id":"51021"},{"type":"Polygon","arcs":[[6936,6937,-6146,6938,6939]],"id":"51183"},{"type":"Polygon","arcs":[[6940,-5374,6941,6942,6943]],"id":"51111"},{"type":"Polygon","arcs":[[6944,-2989,6945,-6728,6946,-6841]],"id":"54013"},{"type":"Polygon","arcs":[[6947,-2391,-6101,6948,6949,-5731]],"id":"51027"},{"type":"Polygon","arcs":[[6950,-6944,6951,6952,-3748,6953,-6125]],"id":"51117"},{"type":"Polygon","arcs":[[-6583,-5661,6954,6955,6956,-788]],"id":"21017"},{"type":"Polygon","arcs":[[-18,-3574,-3296,-4391]],"id":"16067"},{"type":"Polygon","arcs":[[6957,-6762,-6623,6958]],"id":"37005"},{"type":"Polygon","arcs":[[-3321,6959,6960,6961,6962,-5372]],"id":"51007"},{"type":"Polygon","arcs":[[6963,-5010,6964,-2225,6965,-6033]],"id":"51073"},{"type":"Polygon","arcs":[[6966,-6168,-6901,6967,6968]],"id":"51171"},{"type":"Polygon","arcs":[[-6950,6969,-6657,-5732]],"id":"51051"},{"type":"Polygon","arcs":[[6970,6971,6972,-941,-6828,6973,6974]],"id":"72141"},{"type":"Polygon","arcs":[[6975,-6048,6976,-4261,6977,-5763]],"id":"55005"},{"type":"Polygon","arcs":[[6978,6979,6980,6981,-2072]],"id":"72003"},{"type":"Polygon","arcs":[[6982,6983,6984,6985]],"id":"53049"},{"type":"Polygon","arcs":[[6986,6987,6988,6989]],"id":"54045"},{"type":"Polygon","arcs":[[6990,6991,-2681,6992,-1137]],"id":"06039"},{"type":"Polygon","arcs":[[6993,6994,6995,-854,6996]],"id":"55061"},{"type":"Polygon","arcs":[[6997,-2093,6998,-1346,-3418,6999,-2956]],"id":"17135"},{"type":"Polygon","arcs":[[-2102,-6242,7000,7001,7002,-6356,7003,7004]],"id":"08051"},{"type":"Polygon","arcs":[[7005,-639,7006,-6600,7007]],"id":"18013"},{"type":"Polygon","arcs":[[7008,7009,7010,7011,7012]],"id":"13101"},{"type":"Polygon","arcs":[[7013,-5464,7014,-5285,-6678,-6617,-6749]],"id":"37085"},{"type":"Polygon","arcs":[[-6192,7015,7016,7017,7018,7019]],"id":"36107"},{"type":"Polygon","arcs":[[-6750,-6620,-6752,-5831]],"id":"37093"},{"type":"Polygon","arcs":[[7020,7021,7022,7023]],"id":"37143"},{"type":"Polygon","arcs":[[-4541,-4901,7024,-5429,-1383]],"id":"47085"},{"type":"Polygon","arcs":[[-671,-407,-1956,-2573,-182]],"id":"48381"},{"type":"Polygon","arcs":[[-3227,7025,7026,7027,-5866,-157]],"id":"08023"},{"type":"MultiPolygon","arcs":[[[7028]],[[7029,-3838,7030,-1843,7031,7032,7033,7034]]],"id":"08123"},{"type":"Polygon","arcs":[[7035,7036,7037,-3972,7038,-4316]],"id":"13313"},{"type":"Polygon","arcs":[[7039,7040,7041,7042,-6581,7043]],"id":"21023"},{"type":"Polygon","arcs":[[-4157,-6508,7044,-2505,7045]],"id":"18159"},{"type":"Polygon","arcs":[[7046,-4609,-6524,-4220,7047,-4734]],"id":"21207"},{"type":"Polygon","arcs":[[-5931,-6474,-5825,7048,-5405]],"id":"21143"},{"type":"Polygon","arcs":[[-1025,-3229,7049,7050,7051,7052]],"id":"20025"},{"type":"Polygon","arcs":[[-3517,-6126,-6954,-3750,-1062,7053,-5125]],"id":"37077"},{"type":"MultiPolygon","arcs":[[[7054,7055]],[[-6725,7056,7057,7058,7059,7060]]],"id":"37095"},{"type":"Polygon","arcs":[[7061,-6464,7062,7063]],"id":"28125"},{"type":"Polygon","arcs":[[-6974,-6827,7064,7065,7066,7067]],"id":"72001"},{"type":"Polygon","arcs":[[-6503,7068,7069,-866,7070]],"id":"13009"},{"type":"Polygon","arcs":[[-4212,-3992,-6569,-2777,-6709,-6571]],"id":"21085"},{"type":"Polygon","arcs":[[-5567,-6316,-81,-445,-6319]],"id":"28115"},{"type":"Polygon","arcs":[[-611,7071,7072,-5278,7073]],"id":"31015"},{"type":"Polygon","arcs":[[7074]],"id":"51790"},{"type":"Polygon","arcs":[[-2469,7075,-3655,-5171,-4762,-6545]],"id":"31025"},{"type":"Polygon","arcs":[[-1427,7076,-3087,-115,-4658,-532]],"id":"46073"},{"type":"Polygon","arcs":[[-4707,-6348,-4713,-4826,7077,-274]],"id":"04003"},{"type":"Polygon","arcs":[[7078,-4369,-3427,-4508,7079,7080]],"id":"05113"},{"type":"Polygon","arcs":[[-3014,-5609,7081,7082,7083,-3859]],"id":"45039"},{"type":"MultiPolygon","arcs":[[[7084]],[[-2949,7085,7086,7087]],[[7088]]],"id":"06111"},{"type":"Polygon","arcs":[[7089,-1983,7090,7091,7092]],"id":"06059"},{"type":"Polygon","arcs":[[7093,-3776,-2967,7094]],"id":"12053"},{"type":"Polygon","arcs":[[7095,7096,7097,7098,-4386,-3002]],"id":"13029"},{"type":"Polygon","arcs":[[-2699,-5664,7099,-222,7100,7101,-2672]],"id":"19109"},{"type":"Polygon","arcs":[[7102,-2838,-2588,-4030,7103,-3290]],"id":"20187"},{"type":"Polygon","arcs":[[7104,-3197,-2275,7105,-3294,-4067,7106,-7027]],"id":"08071"},{"type":"Polygon","arcs":[[-2957,-7000,-3420,7107,-3167,-5053,7108,7109,-5078]],"id":"17119"},{"type":"Polygon","arcs":[[7110,-750,-608,7111,7112,7113,7114]],"id":"12015"},{"type":"Polygon","arcs":[[-5446,-4792,-6295,7115,7116,-3978,7117]],"id":"18051"},{"type":"Polygon","arcs":[[7118,7119,-3646,-285]],"id":"19163"},{"type":"Polygon","arcs":[[7120,-6028,-6697,-4055,7121,-3961,7122]],"id":"41035"},{"type":"Polygon","arcs":[[-5276,-2726,7123,-1645,-6931]],"id":"48123"},{"type":"Polygon","arcs":[[7124,-326,7125,7126,7127,7128,7129]],"id":"01023"},{"type":"Polygon","arcs":[[7130,7131,7132,-4504,7133,-7126,-325]],"id":"01119"},{"type":"Polygon","arcs":[[7134,-1665,7135,7136,7137,7138,-4146]],"id":"05015"},{"type":"Polygon","arcs":[[7139,7140,-4950,-1978,7141,-7086,-2948,7142]],"id":"06029"},{"type":"MultiPolygon","arcs":[[[-7112,7143,7144,7145]],[[7146]],[[-7114,7147]]],"id":"12071"},{"type":"Polygon","arcs":[[7148,-464,-6355,7149,-1768,7150,7151]],"id":"08107"},{"type":"Polygon","arcs":[[7152,7153,7154,7155,7156,7157,7158]],"id":"17181"},{"type":"Polygon","arcs":[[-3228,-723,-5807,7159,-7050]],"id":"20033"},{"type":"Polygon","arcs":[[7160,7161,-4604,-6570,-1318,-6390]],"id":"21059"},{"type":"MultiPolygon","arcs":[[[7162]],[[7163]],[[7164,7165,7166]]],"id":"22087"},{"type":"Polygon","arcs":[[7167,7168,-3974,7169,7170]],"id":"16005"},{"type":"Polygon","arcs":[[7171,-1579,-1578,-4132,-2918,-881,-3250,-5146]],"id":"20153"},{"type":"Polygon","arcs":[[7172,7173,7174,7175,7176,-2057]],"id":"13275"},{"type":"Polygon","arcs":[[7177,7178,-1829,7179,-3224,7180,7181]],"id":"13099"},{"type":"Polygon","arcs":[[-5698,-6231,-4004,7182]],"id":"16081"},{"type":"Polygon","arcs":[[-3469,-5100,-5144,-5376,7183,7184]],"id":"24015"},{"type":"Polygon","arcs":[[-473,7185,7186,-76]],"id":"26147"},{"type":"Polygon","arcs":[[-3764,7187,7188,7189,-3602,7190,7191]],"id":"05107"},{"type":"Polygon","arcs":[[7192,7193,-5411,7194,7195]],"id":"06013"},{"type":"Polygon","arcs":[[7196,-5206,7197,7198,7199]],"id":"09009"},{"type":"Polygon","arcs":[[-7116,-6294,-6435,7200,-7161,-6389,7201]],"id":"18173"},{"type":"Polygon","arcs":[[7202,-4328,7203,7204,7205,7206,-4383]],"id":"18019"},{"type":"Polygon","arcs":[[7207,7208,7209,-2442,7210,-3774]],"id":"12069"},{"type":"Polygon","arcs":[[7211,7212,7213,7214]],"id":"21037"},{"type":"Polygon","arcs":[[7215,-2449,7216,-4751,7217,7218]],"id":"22037"},{"type":"Polygon","arcs":[[7219,7220,7221,7222,-6112]],"id":"12121"},{"type":"MultiPolygon","arcs":[[[7223,-7219,7224,-4018,7225]],[[7226,-4016,7227]]],"id":"22125"},{"type":"MultiPolygon","arcs":[[[-3265,7228]],[[7229]],[[7230]],[[-3581,7231,7232]]],"id":"23013"},{"type":"Polygon","arcs":[[7233,7234,7235,7236,-1592]],"id":"26163"},{"type":"Polygon","arcs":[[-4470,7237,7238,7239,7240]],"id":"28033"},{"type":"Polygon","arcs":[[7241,-5134,7242,7243,7244,-5384]],"id":"24027"},{"type":"Polygon","arcs":[[7245,7246,7247,7248,-7153,7249,-6535,-4165]],"id":"29157"},{"type":"Polygon","arcs":[[-5075,7250,7251,-1282,-4344]],"id":"29113"},{"type":"Polygon","arcs":[[-2825,7252,7253,7254,7255]],"id":"27057"},{"type":"Polygon","arcs":[[-2482,-4029,-1623,7256,7257,7258]],"id":"20021"},{"type":"Polygon","arcs":[[7259,-6158,7260,-5244,-5592,7261]],"id":"27011"},{"type":"Polygon","arcs":[[-5142,7262,7263,-978,7264,-5377]],"id":"10001"},{"type":"Polygon","arcs":[[7265,-2984,7266,7267]],"id":"16075"},{"type":"Polygon","arcs":[[-1178,-3072,-6784,7268,-2612]],"id":"18151"},{"type":"Polygon","arcs":[[-1743,7269,-5267,7270,7271,7272]],"id":"12075"},{"type":"Polygon","arcs":[[-3127,-6372,7273,7274,-7010,7275]],"id":"13065"},{"type":"Polygon","arcs":[[7276,7277,-2736,-5208,7278]],"id":"26027"},{"type":"Polygon","arcs":[[-4469,7279,7280,-5563,-6318,7281,-7238]],"id":"28093"},{"type":"Polygon","arcs":[[-373,-4160,-1311,-1596,7282,-5740,-1337]],"id":"26081"},{"type":"Polygon","arcs":[[7283,7284,-5526,-147,-2886,7285,7286]],"id":"31135"},{"type":"Polygon","arcs":[[7287,7288,7289,7290]],"id":"34029"},{"type":"Polygon","arcs":[[-3435,7291,-4324,7292,-5560,7293]],"id":"18167"},{"type":"Polygon","arcs":[[7294,-6555,-6193,-7020,7295,-6705]],"id":"36015"},{"type":"Polygon","arcs":[[-4417,7296,-6747,-3053,7297,-6297]],"id":"18155"},{"type":"Polygon","arcs":[[7298,-7254,7299,-3457,-2077]],"id":"27159"},{"type":"Polygon","arcs":[[7300,-4464,-2497,7301,-5679,-5615,-1457]],"id":"56027"},{"type":"Polygon","arcs":[[-3999,7302,7303,-295,7304,-6257]],"id":"29013"},{"type":"Polygon","arcs":[[7305,-378,-2321,7306,7307,7308]],"id":"31129"},{"type":"Polygon","arcs":[[-71,-6298,-7298,-3058,7309,-7204,-4327]],"id":"18077"},{"type":"Polygon","arcs":[[7310,7311,7312,-4419,7313,7314,7315]],"id":"34003"},{"type":"Polygon","arcs":[[7316,7317,7318,7319,-7312,7320]],"id":"36119"},{"type":"Polygon","arcs":[[-384,7321,7322,7323]],"id":"36063"},{"type":"Polygon","arcs":[[7324,-6621,-4116,7325,-4650]],"id":"37189"},{"type":"Polygon","arcs":[[7326,-851,-3456,7327,-5246]],"id":"27023"},{"type":"Polygon","arcs":[[-5320,7328,7329,7330,-6685,7331]],"id":"40071"},{"type":"Polygon","arcs":[[-564,7332,-5402,-5193,7333]],"id":"17151"},{"type":"Polygon","arcs":[[-5800,7334,7335,-6743,7336,-6266,-5631,-4981]],"id":"42089"},{"type":"MultiPolygon","arcs":[[[-6674,-6377]],[[-5119,-6379,-6677,7337,-4828,-5129,-5997]]],"id":"35043"},{"type":"Polygon","arcs":[[-3026,-1502,-5695,-2605,7338]],"id":"16033"},{"type":"MultiPolygon","arcs":[[[7339,7340,-1571,-2576,7341]],[[7342]],[[7343]],[[7344]]],"id":"26029"},{"type":"Polygon","arcs":[[-2641,-1594,7345,-3639,7346,-3069]],"id":"26091"},{"type":"Polygon","arcs":[[-6217,-6871,7347,-3234,7348]],"id":"27157"},{"type":"Polygon","arcs":[[7349,-2400,-4946,-5786,7350]],"id":"29047"},{"type":"Polygon","arcs":[[7351,7352,-2720,-6681,-6629,7353]],"id":"40081"},{"type":"Polygon","arcs":[[-5295,-1445,-1175,-5390,7354,-3347,7355,7356]],"id":"47069"},{"type":"Polygon","arcs":[[7357,-2845,7358,-2822,7359]],"id":"27071"},{"type":"Polygon","arcs":[[-27,-2189,7360,7361,-32,-6058]],"id":"27107"},{"type":"Polygon","arcs":[[-3436,-7294,-5559,7362,-3177,-3340,7363]],"id":"17023"},{"type":"Polygon","arcs":[[-7361,-2188,7364,-7255,-7299,-2076,7365]],"id":"27005"},{"type":"Polygon","arcs":[[7366,-3241,-1136,-3565,-5334,7367]],"id":"19085"},{"type":"Polygon","arcs":[[7368,-3367,7369,7370,-3603,-7190]],"id":"28027"},{"type":"Polygon","arcs":[[-4570,7371,-4071,7372,7373,-186,7374,7375,-4174,7376]],"id":"35037"},{"type":"Polygon","arcs":[[-6549,7377,7378,7379,7380,7381]],"id":"34023"},{"type":"Polygon","arcs":[[-3739,7382,7383,7384,7385,-4509,-2068]],"id":"54071"},{"type":"Polygon","arcs":[[-2371,7386,7387,7388,-5523]],"id":"05003"},{"type":"Polygon","arcs":[[-3604,-7371,7389,7390,-6460,7391]],"id":"28133"},{"type":"Polygon","arcs":[[7392,-7240,7393,7394,-3364,-7369,-7189,7395]],"id":"28143"},{"type":"Polygon","arcs":[[-694,-4729,7396,-3381,-2382,7397]],"id":"29171"},{"type":"Polygon","arcs":[[-4728,-3139,-1683,-3382,-7397]],"id":"29197"},{"type":"Polygon","arcs":[[7398,7399,7400,-3736,-2985,-6945,-6840]],"id":"54085"},{"type":"Polygon","arcs":[[7401,-3220,-3733,-7401,7402,7403]],"id":"54095"},{"type":"Polygon","arcs":[[-4634,7404,7405,7406,7407,-3536]],"id":"51063"},{"type":"Polygon","arcs":[[-4453,-3940,7408,7409,-290,7410]],"id":"30055"},{"type":"Polygon","arcs":[[-2150,-6518,7411,-3244,7412,-5549]],"id":"20177"},{"type":"Polygon","arcs":[[-7269,-6783,-1068,-2140,-876]],"id":"18033"},{"type":"Polygon","arcs":[[7413,-1491,-94,-258]],"id":"46101"},{"type":"Polygon","arcs":[[-7217,-2448,-15,7414,-4752]],"id":"22091"},{"type":"Polygon","arcs":[[7415,-3614,7416,-4104,7417]],"id":"55051"},{"type":"Polygon","arcs":[[7418,-3719,7419,-4930,7420,7421]],"id":"48475"},{"type":"Polygon","arcs":[[7422,-3652,-4668,7423,-6928]],"id":"48485"},{"type":"MultiPolygon","arcs":[[[-6401,7424,7425,7426]],[[-6405,7427,7428,7429]]],"id":"48489"},{"type":"Polygon","arcs":[[7430,7431,-3794,7432,7433,-6528,7434]],"id":"22083"},{"type":"Polygon","arcs":[[-1680,-2117,7435,7436,7437,7438]],"id":"29045"},{"type":"Polygon","arcs":[[7439,7440,7441,-3217]],"id":"54049"},{"type":"Polygon","arcs":[[7442,7443,7444,-7399,-6844,7445,-3885]],"id":"54107"},{"type":"Polygon","arcs":[[-3218,-7442,7446,-5232,7447,7448,-3734]],"id":"54033"},{"type":"Polygon","arcs":[[7449,7450,-4454,-7411,-289,-4484]],"id":"30105"},{"type":"Polygon","arcs":[[7451,7452,7453,-3587,7454]],"id":"25009"},{"type":"Polygon","arcs":[[7455,-4652,7456,-4620,7457,-1462]],"id":"47019"},{"type":"Polygon","arcs":[[-310,7458,7459,-5748,7460,7461,7462]],"id":"47147"},{"type":"Polygon","arcs":[[-2370,7463,-3606,7464,7465,-3791,7466,7467,-7387]],"id":"05017"},{"type":"Polygon","arcs":[[-7045,-6511,7468,7469,-2158,-2506]],"id":"18057"},{"type":"Polygon","arcs":[[7470,-2167,-4158,-7046,-2504,7471]],"id":"18067"},{"type":"Polygon","arcs":[[-2159,-7470,7472,-1555,-636,7473,-1534]],"id":"18097"},{"type":"Polygon","arcs":[[-5823,-2507,-2160,-1537,7474,-4321,-5715]],"id":"18107"},{"type":"Polygon","arcs":[[7475,7476,-2874,-2900,-6609,-6614]],"id":"28089"},{"type":"MultiPolygon","arcs":[[[7477,7478,-2213]]],"id":"26033"},{"type":"MultiPolygon","arcs":[[[7479]],[[-2214,-7479,7480,7481]]],"id":"26097"},{"type":"Polygon","arcs":[[7482,7483,7484,7485,-5112]],"id":"12089"},{"type":"Polygon","arcs":[[-7441,7486,-5306,-5229,-7447]],"id":"54091"},{"type":"Polygon","arcs":[[-4656,7487,-5546,-3968,-7038,7488]],"id":"47011"},{"type":"Polygon","arcs":[[7489,7490,7491,-7220,-6111,7492,7493]],"id":"12079"},{"type":"Polygon","arcs":[[7494,-3134,7495,7496,-6462]],"id":"28051"},{"type":"Polygon","arcs":[[7497,-3410,-6083,-6078,-1375,-6015]],"id":"47183"},{"type":"Polygon","arcs":[[7498,-5600,-6218,-7349,-3233,-3076,-1921]],"id":"27049"},{"type":"Polygon","arcs":[[7499,7500,-900,-1508,7501,7502]],"id":"29077"},{"type":"Polygon","arcs":[[7503,7504,-3511,7505,-3952,7506,-3555]],"id":"01111"},{"type":"Polygon","arcs":[[-3821,-4784,7507,7508,-1601]],"id":"35013"},{"type":"Polygon","arcs":[[7509,7510,-6860,-5531,7511,-6811]],"id":"42119"},{"type":"Polygon","arcs":[[-2666,-267,-3862,7512,-5916]],"id":"46119"},{"type":"Polygon","arcs":[[-1614,-5885,-976,7513,-5519,7514]],"id":"33003"},{"type":"Polygon","arcs":[[-2865,7515]],"id":"51770"},{"type":"Polygon","arcs":[[-5803,-3648,7516,-5290,-4446,-2154,-2848]],"id":"19115"},{"type":"Polygon","arcs":[[-2752,7517,7518,-6118,-5172]],"id":"19145"},{"type":"Polygon","arcs":[[-5608,-4989,-5095,-5677,-5848,7519,-7082]],"id":"45055"},{"type":"Polygon","arcs":[[7520,-7170,-3973,-3298,-3573]],"id":"16077"},{"type":"Polygon","arcs":[[7521,-3200,7522]],"id":"41011"},{"type":"Polygon","arcs":[[-6029,-7121,7523,-2547,-3201,-7522,7524]],"id":"41019"},{"type":"Polygon","arcs":[[-4524,-2774,7525,7526,7527]],"id":"55023"},{"type":"Polygon","arcs":[[7528,7529,-1716,7530,7531,-3896],[7532]],"id":"51005"},{"type":"Polygon","arcs":[[-4836,-5579,7533,7534,-4631,-3533,-6934]],"id":"51071"},{"type":"Polygon","arcs":[[-7222,7535,-7011,-7275,7536,7537,-5262,7538]],"id":"12023"},{"type":"Polygon","arcs":[[7539,-2410,7540,-128,7541,-3399]],"id":"72007"},{"type":"Polygon","arcs":[[-938,7542,-144,-2420,-3214,7543,-6109,-4096]],"id":"72107"},{"type":"Polygon","arcs":[[-5618,7544,7545,7546]],"id":"27123"},{"type":"Polygon","arcs":[[7547,-4293,7548,7549,-1766,7550,7551]],"id":"49047"},{"type":"Polygon","arcs":[[7552,7553,7554,-4477,7555,-7406]],"id":"51067"},{"type":"Polygon","arcs":[[7556,-3483]],"id":"15005"},{"type":"Polygon","arcs":[[-5059,-4532,-6177,7557,7558,-6515,-2148]],"id":"20005"},{"type":"Polygon","arcs":[[7559,-6395,-6339,7560,7561]],"id":"09015"},{"type":"Polygon","arcs":[[7562,7563,-7561,-6338,7564,7565,-5204]],"id":"09011"},{"type":"Polygon","arcs":[[7566,7567,7568,7569,-3462,-6640]],"id":"41005"},{"type":"Polygon","arcs":[[-1083,-5124,-5638,7570,-1720,-6910,7571]],"id":"48419"},{"type":"Polygon","arcs":[[7572,-5792,-993,7573,7574,-4250,7575]],"id":"39029"},{"type":"Polygon","arcs":[[-1141,7576,-7140,7577,-1279]],"id":"06031"},{"type":"Polygon","arcs":[[7578,-2952,-2164,7579,7580,7581,7582]],"id":"06045"},{"type":"Polygon","arcs":[[-4311,-1856,7583,-2281,-6240]],"id":"08035"},{"type":"Polygon","arcs":[[-538,-3047,-3693,7584,7585,-2854]],"id":"48259"},{"type":"Polygon","arcs":[[7586,7587,-3756,7588,-7137]],"id":"05009"},{"type":"Polygon","arcs":[[-6687,7589,7590,-7352,7591,-1372]],"id":"40083"},{"type":"Polygon","arcs":[[7592,-4066,7593,7594,-3631]],"id":"36065"},{"type":"Polygon","arcs":[[7595,-6585,7596,7597,7598,7599]],"id":"37113"},{"type":"Polygon","arcs":[[7600,7601,7602,7603,7604,7605,7606]],"id":"36031"},{"type":"Polygon","arcs":[[-2070,-4511,7607,7608,-7529,-3895]],"id":"51017"},{"type":"Polygon","arcs":[[7609,7610,7611,7612,-6988]],"id":"54005"},{"type":"Polygon","arcs":[[7613,7614,-3899,-5577,7615]],"id":"54019"},{"type":"Polygon","arcs":[[7616,7617,-6731,7618,-7614,7619,-7611,7620,7621]],"id":"54039"},{"type":"Polygon","arcs":[[7622,7623,7624,7625,-6768]],"id":"72037"},{"type":"Polygon","arcs":[[7626,-153,7627,-145,-7543,-937,-6973]],"id":"72039"},{"type":"Polygon","arcs":[[7628,-7151,-1767,-7550]],"id":"08103"},{"type":"Polygon","arcs":[[-1535,-7474,-640,-7006,7629,-6429,7630]],"id":"18109"},{"type":"Polygon","arcs":[[7631,-6531,7632,7633,7634,-4758]],"id":"22059"},{"type":"Polygon","arcs":[[-1516,-6668,7635,-5011,7636]],"id":"29135"},{"type":"Polygon","arcs":[[-4797,7637,-1655,-5794,7638,7639]],"id":"42039"},{"type":"Polygon","arcs":[[-5855,-5327,7640,7641,7642,-6689,-5887]],"id":"21205"},{"type":"Polygon","arcs":[[-4899,7643,7644,7645,7646,-5456,7647]],"id":"47187"},{"type":"Polygon","arcs":[[-1650,-991,-737,7648,-332]],"id":"38081"},{"type":"Polygon","arcs":[[-6872,-3254,7649,7650]],"id":"72055"},{"type":"Polygon","arcs":[[7651,-3184,7652]],"id":"16061"},{"type":"Polygon","arcs":[[7653,7654,7655,-7653,-3183,7656,7657]],"id":"16069"},{"type":"Polygon","arcs":[[7658,-7309,7659,-1524,-6301,7660,-4774]],"id":"20089"},{"type":"Polygon","arcs":[[7661,-3327,7662,-5547,7663,-2997]],"id":"20117"},{"type":"Polygon","arcs":[[-3326,-4129,-5060,-2146,-5548,-7663]],"id":"20131"},{"type":"Polygon","arcs":[[7664,-4148,-3277,7665,7666,-2176]],"id":"40001"},{"type":"Polygon","arcs":[[-7599,7667,7668,7669,7670]],"id":"37043"},{"type":"Polygon","arcs":[[7671,-3873,-5846,-4457,-5845,-4455,-6425,7672,7673,7674,7675]],"id":"45073"},{"type":"Polygon","arcs":[[-3276,7676,7677,7678,7679,-7666]],"id":"05033"},{"type":"Polygon","arcs":[[-3074,-2197,-6514,-2585,-2837]],"id":"20093"},{"type":"Polygon","arcs":[[7680]],"id":"72049"},{"type":"Polygon","arcs":[[-2566,-6459,7681,7682,7683,7684]],"id":"28091"},{"type":"Polygon","arcs":[[7685,-6320,-448,-2374,7686]],"id":"28161"},{"type":"Polygon","arcs":[[7687,-2316,-1038,-2669,-169,-2916,-4131]],"id":"31065"},{"type":"Polygon","arcs":[[7688,7689,-5489,-4276,7690]],"id":"53015"},{"type":"Polygon","arcs":[[-1072,7691,7692,-2345,7693,-4140]],"id":"01083"},{"type":"Polygon","arcs":[[7694,7695,7696,-2405]],"id":"12013"},{"type":"Polygon","arcs":[[7697,-3777,-7094,7698,-7272]],"id":"12017"},{"type":"Polygon","arcs":[[-7466,7699,-7064,7700,-3622,-3792]],"id":"28055"},{"type":"Polygon","arcs":[[7701,-4385,7702,-3986,-6712,-4378]],"id":"18061"},{"type":"Polygon","arcs":[[-7104,-4034,-6881,7703,-3291]],"id":"20129"},{"type":"Polygon","arcs":[[-4618,-6264,7704,-3856,-6836,-1048]],"id":"45083"},{"type":"Polygon","arcs":[[-1522,-3182,7705,-3360,7706,-6302]],"id":"20143"},{"type":"Polygon","arcs":[[7707,7708,-4555]],"id":"30103"},{"type":"Polygon","arcs":[[7709,-4977,-4876,7710,7711,-1637]],"id":"31051"},{"type":"Polygon","arcs":[[7712,7713,-6049,-6976,-5762,-5651]],"id":"55013"},{"type":"Polygon","arcs":[[7714,-5909,-5589,7715,-3093,7716,7717]],"id":"55025"},{"type":"Polygon","arcs":[[7718,7719,7720,7721,7722,-4267,7723,-4741]],"id":"22007"},{"type":"Polygon","arcs":[[7724,7725,7726,7727,-6744,-7336,7728]],"id":"42127"},{"type":"Polygon","arcs":[[7729,-7594,-4065,7730,-47,7731,7732]],"id":"36077"},{"type":"Polygon","arcs":[[7733,7734,-3849,-2334,7735,-2300]],"id":"40049"},{"type":"Polygon","arcs":[[-4425,7736,-7607,7737,7738,7739,-4062]],"id":"36041"},{"type":"Polygon","arcs":[[-4147,-7139,7740,7741,7742,-7677,-3275]],"id":"05087"},{"type":"Polygon","arcs":[[7743,-7725,7744,-5782,7745,-7018]],"id":"42115"},{"type":"MultiPolygon","arcs":[[[7746]],[[7747,7748,7749,7750]]],"id":"12037"},{"type":"Polygon","arcs":[[-831,-2059,7751,7752,7753]],"id":"12039"},{"type":"Polygon","arcs":[[-2406,-7697,7754,-7751,7755]],"id":"12045"},{"type":"Polygon","arcs":[[7756,-7176,7757,-7494,7758,7759,7760]],"id":"12065"},{"type":"Polygon","arcs":[[7761,-2971,7762,7763,-2973]],"id":"12103"},{"type":"Polygon","arcs":[[7764,7765,-522,7766,-6832,-1916,-526]],"id":"40075"},{"type":"Polygon","arcs":[[-7678,-7743,7767,-4940,7768]],"id":"05047"},{"type":"Polygon","arcs":[[7769,7770,-2716,7771,7772]],"id":"40117"},{"type":"Polygon","arcs":[[-3851,7773,7774,7775,7776,7777,-2336]],"id":"40069"},{"type":"Polygon","arcs":[[-1129,-5222,7778,7779,-1673,-6166,7780]],"id":"29081"},{"type":"Polygon","arcs":[[-6664,7781,7782,7783,-6456,-2564]],"id":"28031"},{"type":"Polygon","arcs":[[7784,-7691,-4275,-6850,7785,-6985]],"id":"53069"},{"type":"Polygon","arcs":[[7786,7787,7788,7789,7790]],"id":"12019"},{"type":"Polygon","arcs":[[-2215,-7482,7791,7792,-5033]],"id":"26153"},{"type":"Polygon","arcs":[[-1737,-2843,7793,-4519,-6047,-7714,7794]],"id":"55031"},{"type":"MultiPolygon","arcs":[[[7795,7796,7797]],[[7798,7799,7800,7801,-1933,-189,7802]]],"id":"13193"},{"type":"Polygon","arcs":[[7803,7804,-5518,-5514,-1241,-5393]],"id":"22027"},{"type":"Polygon","arcs":[[-7582,7805,7806,7807,7808,7809,7810]],"id":"06097"},{"type":"Polygon","arcs":[[-3847,-6633,7811,-7734,-2299,7812]],"id":"40087"},{"type":"Polygon","arcs":[[7813,-2553,-6546,-3815,-3328,-7662,-2996]],"id":"31067"},{"type":"Polygon","arcs":[[7814,-5672,-5882,7815,-3037,7816,7817]],"id":"48343"},{"type":"Polygon","arcs":[[-7592,-7354,-6628,-3845,7818]],"id":"40109"},{"type":"Polygon","arcs":[[7819,-2308,-6587,7820,-2325]],"id":"48223"},{"type":"Polygon","arcs":[[-4064,7821,7822,7823,-42,-7731]],"id":"36057"},{"type":"Polygon","arcs":[[7824,-6162,7825,7826,-7770,7827,-7330]],"id":"40113"},{"type":"Polygon","arcs":[[7828,-306,7829,7830]],"id":"12113"},{"type":"Polygon","arcs":[[-7210,7831,-2439]],"id":"12117"},{"type":"Polygon","arcs":[[-1828,7832,7833,-828,-3222,-7180]],"id":"13007"},{"type":"Polygon","arcs":[[7834,7835,-4313,-4361,7836]],"id":"13083"},{"type":"Polygon","arcs":[[7837,7838,7839,7840,-7833,-1827]],"id":"13095"},{"type":"Polygon","arcs":[[-7841,7841,7842,-7173,-2056,-829,-7834]],"id":"13205"},{"type":"Polygon","arcs":[[-7181,-3223,-826,7843,7844]],"id":"13253"},{"type":"Polygon","arcs":[[7845,-7772,-2721,-7353,-7591]],"id":"40119"},{"type":"Polygon","arcs":[[-5875,7846,-4223,-427,-5935,-5983]],"id":"47137"},{"type":"Polygon","arcs":[[-5693,-6648,7847,-5640,-6567]],"id":"21087"},{"type":"Polygon","arcs":[[-4921,-2328,-4907,7848]],"id":"48397"},{"type":"MultiPolygon","arcs":[[[7849]],[[7850,-3900]]],"id":"78020"},{"type":"Polygon","arcs":[[-4782,7851,-3159,7852,7853]],"id":"48229"},{"type":"Polygon","arcs":[[-6842,-6947,-6727,-7618,7854]],"id":"54087"},{"type":"Polygon","arcs":[[-6523,-6441,-3869,-6396,-422,-4222]],"id":"21147"},{"type":"Polygon","arcs":[[7855,7856,-7130,7857,7858,-6327,7859]],"id":"28153"},{"type":"Polygon","arcs":[[-7526,-2773,7860,7861,-4035,-4731,7862]],"id":"55043"},{"type":"Polygon","arcs":[[7863,7864,7865,-7226,-4017,-7227,7866,7867]],"id":"22029"},{"type":"Polygon","arcs":[[-6589,-3040,-2532,7868,7869,7870,-2312]],"id":"48423"},{"type":"Polygon","arcs":[[7871,-7601,-7737,-4424,7872]],"id":"36033"},{"type":"Polygon","arcs":[[7873,7874,-3628,7875,-3626,7876,-4433,7877,-7864,7878]],"id":"22107"},{"type":"Polygon","arcs":[[7879,7880,-2450,-7216,-7224,-7866]],"id":"28157"},{"type":"Polygon","arcs":[[-3625,-6615,-6322,-4429,-7877]],"id":"28021"},{"type":"Polygon","arcs":[[-327,-7125,-7857,7881]],"id":"28023"},{"type":"Polygon","arcs":[[-2453,7882,-4872,-1424,-262,-2665]],"id":"46049"},{"type":"Polygon","arcs":[[-1434,-5458,-1074,-4139,7883]],"id":"47099"},{"type":"Polygon","arcs":[[-7784,7884,-6330,-438,7885,-6457]],"id":"28035"},{"type":"Polygon","arcs":[[7886,7887,-621,7888,7889,-7689,-7785,-6984]],"id":"53041"},{"type":"Polygon","arcs":[[-7555,7890,7891,-6122,7892,-1264,7893,-797,-4478]],"id":"51143"},{"type":"Polygon","arcs":[[-321,7894,7895,7896,-6343]],"id":"54027"},{"type":"Polygon","arcs":[[-6417,7897,-965,-2542,7898,7899]],"id":"06115"},{"type":"Polygon","arcs":[[-6463,-7497,-7476,-6613,-3623,-7701,-7063]],"id":"28163"},{"type":"Polygon","arcs":[[-2861,7900,-6708,-6862,7901,-4972,7902]],"id":"42105"},{"type":"Polygon","arcs":[[-125,-6406,-7430,7903,7904,7905]],"id":"48215"},{"type":"Polygon","arcs":[[7906,7907]],"id":"51131"},{"type":"Polygon","arcs":[[-4426,-4060,-7593,-3630,-6254]],"id":"36049"},{"type":"Polygon","arcs":[[7908,-7803,-188,7909]],"id":"13249"},{"type":"Polygon","arcs":[[7910,-7527,-7863,-4730,-948,-3783]],"id":"19043"},{"type":"Polygon","arcs":[[-6594,7911,-7024,7912]],"id":"37041"},{"type":"Polygon","arcs":[[7913,7914,-4365,-4849,7915,7916,-2347]],"id":"01095"},{"type":"Polygon","arcs":[[7917,7918,7919,-7726,-7744,-7017]],"id":"36007"},{"type":"Polygon","arcs":[[-7824,7920,-6205,-43]],"id":"36093"},{"type":"Polygon","arcs":[[7921,-2332,7922,-6915,7923]],"id":"48041"},{"type":"Polygon","arcs":[[7924,7925,7926,7927,7928,-2342]],"id":"51047"},{"type":"Polygon","arcs":[[7929,7930,-7924,-6914,7931]],"id":"48051"},{"type":"MultiPolygon","arcs":[[[7932]],[[7933]],[[-442,7934,7935,7936]]],"id":"28047"},{"type":"Polygon","arcs":[[7937,7938,7939,-2303,-7820,-2324]],"id":"48119"},{"type":"Polygon","arcs":[[-6908,7940,-2,-4406]],"id":"49053"},{"type":"Polygon","arcs":[[-6859,-6886,-5533]],"id":"42093"},{"type":"Polygon","arcs":[[-4928,-2662,7941,-413,-1939,-1714,7942,7943,7944]],"id":"48105"},{"type":"Polygon","arcs":[[7945,-2434,7946,7947,-7832,-7209,7948]],"id":"12127"},{"type":"Polygon","arcs":[[-6409,7949,7950,-6556,-7295,-6704,-7901,-2860]],"id":"36101"},{"type":"Polygon","arcs":[[-1486,7951,7952,-4091,7953]],"id":"55101"},{"type":"Polygon","arcs":[[7954,-2474,7955,7956,7957,-3424]],"id":"05059"},{"type":"Polygon","arcs":[[-7101,-2525,-1016,-3107]],"id":"19091"},{"type":"Polygon","arcs":[[-3811,-2933,-3527,-2252,-4938,7958]],"id":"29055"},{"type":"Polygon","arcs":[[-5247,-7328,-3455,-3636,-3314,-3599,7959]],"id":"27173"},{"type":"Polygon","arcs":[[-3919,-5708,-3772,-2516,7960,-6244]],"id":"13151"},{"type":"Polygon","arcs":[[7961,7962,7963,7964,-4845]],"id":"01011"},{"type":"Polygon","arcs":[[-3910,7965,-6991,-1143,-203,7966]],"id":"06047"},{"type":"Polygon","arcs":[[7967,-6034,-6966,-2232,7968,-2230,7969,7970,-6897]],"id":"51095"},{"type":"Polygon","arcs":[[-5513,7971,-6526,7972,-1243]],"id":"22049"},{"type":"Polygon","arcs":[[7973,7974,7975,7976,-7021,-7912,-6593]],"id":"37073"},{"type":"Polygon","arcs":[[7977,7978,7979,-4520,-5486,7980]],"id":"55063"},{"type":"MultiPolygon","arcs":[[[-7797,7981,-7800]],[[7982,7983,7984,-7798,-7799,-7909,7985]]],"id":"13269"},{"type":"Polygon","arcs":[[7986,7987,-7022,-7977]],"id":"37139"},{"type":"Polygon","arcs":[[-6106,-3686,7988,7989,-7925,-2341,-6170]],"id":"51061"},{"type":"Polygon","arcs":[[-2352,7990,-7928,7991,-2795,-5352]],"id":"51137"},{"type":"Polygon","arcs":[[7992,-7733,7993,-7919,7994]],"id":"36017"},{"type":"Polygon","arcs":[[-4672,7995,7996]],"id":"51680"},{"type":"Polygon","arcs":[[7997,7998,7999,8000,-7775]],"id":"40029"},{"type":"Polygon","arcs":[[-6682,-6638,8001,-7999,8002,8003]],"id":"40063"},{"type":"Polygon","arcs":[[-4288,8004,-7932,-6913,-5953,-6755]],"id":"48287"},{"type":"Polygon","arcs":[[8005,-7996,-4671,-3725,8006,-6123,-7892]],"id":"51031"},{"type":"Polygon","arcs":[[-7812,-6632,8007,-8003,-7998,-7774,-3850,-7735]],"id":"40123"},{"type":"Polygon","arcs":[[-2540,-963,8008,8009,-4053,-4285,-6703,8010,8011,8012,8013,8014,8015]],"id":"32031"},{"type":"Polygon","arcs":[[8016,8017,-4820,-6741,-7728]],"id":"36105"},{"type":"Polygon","arcs":[[8018,8019,8020,8021,8022]],"id":"42041"},{"type":"Polygon","arcs":[[-3735,-7449,8023,-3342,8024,-2987]],"id":"54041"},{"type":"Polygon","arcs":[[8025,-3804,-837,-3799,-3994,-5460,8026]],"id":"22053"},{"type":"Polygon","arcs":[[-451,-3024,-583,8027,8028]],"id":"31113"},{"type":"Polygon","arcs":[[8029,8030,-3505,8031,8032,-7963,8033]],"id":"01113"},{"type":"Polygon","arcs":[[-4358,8034,8035,-6065,-5999,-1258]],"id":"05135"},{"type":"Polygon","arcs":[[-4951,-7141,-7577,-1140]],"id":"06107"},{"type":"Polygon","arcs":[[-4331,-6649,-3417,8036,-5744,8037]],"id":"21003"},{"type":"Polygon","arcs":[[8038,8039,8040,8041,8042,8043,-4698]],"id":"22051"},{"type":"Polygon","arcs":[[-4815,8044,8045,-7317,8046]],"id":"36079"},{"type":"Polygon","arcs":[[-4816,-8047,-7321,-7311,8047]],"id":"36087"},{"type":"Polygon","arcs":[[-8046,8048,8049,-7199,8050,-7318]],"id":"09001"},{"type":"Polygon","arcs":[[8051,-2235,-4163,-2267,8052,-4356]],"id":"29091"},{"type":"Polygon","arcs":[[-675,-946,-6930,-7922,-7931,8053]],"id":"48395"},{"type":"Polygon","arcs":[[8054,8055,8056,-1255,-1252,-5408,-7194,8057]],"id":"06067"},{"type":"Polygon","arcs":[[-6636,8058,8059,8060,8061,8062]],"id":"40061"},{"type":"Polygon","arcs":[[-8062,8063,-2654,8064]],"id":"40077"},{"type":"Polygon","arcs":[[-7574,-998,8065,-6284,8066]],"id":"54029"},{"type":"Polygon","arcs":[[8067,-5066,8068,-5391,8069,8070]],"id":"05073"},{"type":"Polygon","arcs":[[8071,8072,-7289,8073,8074,-4410,8075]],"id":"34001"},{"type":"Polygon","arcs":[[-5435,-3934,-4392,-3302,8076,8077]],"id":"16083"},{"type":"Polygon","arcs":[[-1687,-4924,-691,8078,-6894]],"id":"48333"},{"type":"Polygon","arcs":[[-4735,-7048,-4224,-7847,-5874]],"id":"21053"},{"type":"Polygon","arcs":[[8079,-1870,-2055,8080,-7576,-4249,8081,-3387]],"id":"39151"},{"type":"Polygon","arcs":[[-3546,-4089,8082,8083,-3304,8084]],"id":"01117"},{"type":"Polygon","arcs":[[8085,-6641,-3465,-3445,-6023,8086]],"id":"41053"},{"type":"Polygon","arcs":[[8087,8088,-3373,8089,-6436,-2134]],"id":"20167"},{"type":"Polygon","arcs":[[-6517,8090,8091,-1235,-3245,-7412]],"id":"20045"},{"type":"Polygon","arcs":[[-7308,8092,-3000,-1519,-7660]],"id":"20157"},{"type":"Polygon","arcs":[[8093,8094,-8058,-7193,8095,-7808]],"id":"06095"},{"type":"Polygon","arcs":[[8096,-4359,-1261,8097,-3758,8098]],"id":"05005"},{"type":"Polygon","arcs":[[8099,8100,8101,8102]],"id":"51710"},{"type":"Polygon","arcs":[[8103,8104,-999,-499,-1694,-3084,-3717,8105,-4932]],"id":"35025"},{"type":"MultiPolygon","arcs":[[[-7876,-3627]],[[-7433,-3793,-3620,-7875,8106]]],"id":"22065"},{"type":"Polygon","arcs":[[-4933,-8106,-3720,-7419,8107]],"id":"48301"},{"type":"MultiPolygon","arcs":[[[8108]],[[8109,-7033,8110,-6237,-6236],[8111],[-7029]]],"id":"08014"},{"type":"Polygon","arcs":[[-2656,8112,-7081,8113,-3273,-5669,8114,-4435]],"id":"40089"},{"type":"Polygon","arcs":[[8115,-6286,8116,-4840,-6793]],"id":"54069"},{"type":"Polygon","arcs":[[-6076,-6586,-7596,8117,8118]],"id":"37075"},{"type":"Polygon","arcs":[[8119,-8118,-7600,-7671,8120,-2082,-5545]],"id":"37039"},{"type":"Polygon","arcs":[[-4875,-3563,8121,-7711]],"id":"31043"},{"type":"Polygon","arcs":[[8122,8123,8124,-5689,-6392,-7560,8125,-6085,8126,-3593]],"id":"25027"},{"type":"Polygon","arcs":[[8127,8128,8129,-1886,8130,-2784]],"id":"39017"},{"type":"Polygon","arcs":[[8131,-8070,-5394,-1247,-4336,8132]],"id":"22015"},{"type":"Polygon","arcs":[[-3937,-1125,-1803,-4151,8133]],"id":"17103"},{"type":"Polygon","arcs":[[-4278,-5491,8134,8135,-7568,8136]],"id":"41051"},{"type":"Polygon","arcs":[[8137,-5397,8138,-6199,8139]],"id":"37019"},{"type":"Polygon","arcs":[[8140,-5984,-5938,8141,-6865,-6773,-3430]],"id":"47141"},{"type":"Polygon","arcs":[[8142,8143,8144,8145,-3944,8146]],"id":"37083"},{"type":"Polygon","arcs":[[-3027,-7339,-2610,8147,-3571,-1819]],"id":"16023"},{"type":"Polygon","arcs":[[8148,-4308,-6232,-4306,-6239],[-4305]],"id":"08031"},{"type":"Polygon","arcs":[[-7388,-7468,8149,-7431,8150,-5516]],"id":"22067"},{"type":"Polygon","arcs":[[8151,-4480,-2227]],"id":"51735"},{"type":"Polygon","arcs":[[8152,-8103,8153,8154]],"id":"51740"},{"type":"MultiPolygon","arcs":[[[-8112]],[[8155,-7034,-8110,-6235,8156,-6350],[-8109]]],"id":"08013"},{"type":"Polygon","arcs":[[8157,8158,-7167,8159,-8041]],"id":"22071"},{"type":"Polygon","arcs":[[-4962,-3874,-7672,-7597,-6584]],"id":"37099"},{"type":"Polygon","arcs":[[8160,8161,8162,-2633,8163,-7128]],"id":"01025"},{"type":"Polygon","arcs":[[-7134,-4503,8164,-6221,-6488,8165,-8161,-7127]],"id":"01091"},{"type":"Polygon","arcs":[[8166,8167,-6222,-8165,-4502]],"id":"01065"},{"type":"Polygon","arcs":[[8168,8169,-2914,8170,8171]],"id":"01075"},{"type":"Polygon","arcs":[[8172,-8171,-2913,8173,-4500,-7133,8174]],"id":"01107"},{"type":"Polygon","arcs":[[-4765,-6121,8175,-4125,-3324,-3814]],"id":"31127"},{"type":"Polygon","arcs":[[8176,-4248,-4635,-4246,-6900,8177,-2867,8178,-5071,-6066,-5069,8179,-6961]],"id":"51041"},{"type":"Polygon","arcs":[[-7571,-5637,8180,-5163,-1721]],"id":"48403"},{"type":"Polygon","arcs":[[8181,-6182,-566,8182]],"id":"26019"},{"type":"Polygon","arcs":[[8183,-5788,-6534,8184,-7303,-3998]],"id":"29037"},{"type":"Polygon","arcs":[[-8084,8185,-3557,8186,-5153,-3305]],"id":"01037"},{"type":"Polygon","arcs":[[-5348,8187,-7035,-8156,-6349,-462]],"id":"08069"},{"type":"Polygon","arcs":[[-7461,-5747,8188,8189,-7645,8190]],"id":"47037"},{"type":"Polygon","arcs":[[8191,-7510,-6810,8192,-5962,8193]],"id":"42027"},{"type":"Polygon","arcs":[[8194,8195,8196,8197,-5955,-6918]],"id":"48015"},{"type":"Polygon","arcs":[[8198,-5003,8199,8200]],"id":"50013"},{"type":"Polygon","arcs":[[-5898,8201,-8155,8202,8203,-7975,8204]],"id":"51800"},{"type":"Polygon","arcs":[[8205,8206,-2272,-3196]],"id":"08025"},{"type":"Polygon","arcs":[[8207,-3199,8208,-6359]],"id":"08027"},{"type":"Polygon","arcs":[[-5512,-5517,-8151,-7435,-6527,-7972]],"id":"22073"},{"type":"Polygon","arcs":[[-6229,-2271,-249,-414,-7942,-2661]],"id":"48383"},{"type":"Polygon","arcs":[[-2301,-7736,-2333,-4642,-3649,-519]],"id":"40137"},{"type":"Polygon","arcs":[[-3531,8209,-6539,-2264,-2254]],"id":"29179"},{"type":"Polygon","arcs":[[-4934,-8108,-7422,8210,-3155,8211]],"id":"48389"},{"type":"Polygon","arcs":[[-7584,-1855,8212,-3195,8213,-2282]],"id":"08041"},{"type":"Polygon","arcs":[[8214,8215,8216,-7404,8217,-7444,8218]],"id":"39167"},{"type":"Polygon","arcs":[[-7531,-1715,8219,-4632,-7535,8220]],"id":"51045"},{"type":"Polygon","arcs":[[-2927,8221,8222,-3543,8223,-2911,8224]],"id":"01127"},{"type":"Polygon","arcs":[[-7896,8225,8226,-6108,-6169,-6967,8227],[-6660]],"id":"51069"},{"type":"Polygon","arcs":[[-1452,-4558,8228,8229,8230]],"id":"30095"},{"type":"Polygon","arcs":[[-2107,8231,-7683,8232,8233,-11]],"id":"22117"},{"type":"Polygon","arcs":[[-5746,-1208,-3432,-6776,8234,8235,-8189]],"id":"47189"},{"type":"Polygon","arcs":[[8236,-4112,-5905,8237,-3185,-7652,-7656]],"id":"16035"},{"type":"MultiPolygon","arcs":[[[8238]],[[8239,8240]],[[8241,8242,-4699,-8044,8243,8244,-7722]]],"id":"22057"},{"type":"Polygon","arcs":[[8245,-7340,8246]],"id":"26047"},{"type":"Polygon","arcs":[[-6953,8247,8248,-8143,-1059,-3749]],"id":"37185"},{"type":"Polygon","arcs":[[8249,8250,-154,-7627,-6972,8251]],"id":"72013"},{"type":"Polygon","arcs":[[-1593,-7237,8252,-3640,-7346]],"id":"26115"},{"type":"Polygon","arcs":[[-2244,8253,-2287]],"id":"30047"},{"type":"Polygon","arcs":[[-2288,-8254,-2243,8254,8255,-1973,-3186,-8238,-5904]],"id":"30063"},{"type":"Polygon","arcs":[[-8157,-6234,8256,-6351]],"id":"08047"},{"type":"Polygon","arcs":[[-6360,-8209,-3198,-7105,-7026,-3226]],"id":"08055"},{"type":"Polygon","arcs":[[8257,8258,-6990,8259,-2387,-6948,-5730,-5482]],"id":"54059"},{"type":"Polygon","arcs":[[-167,8260,-8226,-7895,-320]],"id":"54065"},{"type":"Polygon","arcs":[[-7129,-8164,-2632,8261,8262,-7858]],"id":"01129"},{"type":"Polygon","arcs":[[-2092,8263,8264,8265,-3338,-1353,-1347,-6999]],"id":"17173"},{"type":"Polygon","arcs":[[8266,-5716,-4325,-7292,-3434,8267]],"id":"18165"},{"type":"Polygon","arcs":[[-4891,8268,8269,-7290,-8073,8270,8271]],"id":"34005"},{"type":"Polygon","arcs":[[-3236,8272,-5488,-5291,-466,-6454]],"id":"27045"},{"type":"Polygon","arcs":[[-253,8273,8274,-4660,8275,8276]],"id":"48439"},{"type":"Polygon","arcs":[[-4769,8277,8278,-5774,8279,8280,-4776]],"id":"17031"},{"type":"Polygon","arcs":[[-8154,-8102,8281,-4625,8282,-8203]],"id":"51550"},{"type":"Polygon","arcs":[[-2963,8283,-6451,-5316,-1113,-1294]],"id":"26155"},{"type":"Polygon","arcs":[[8284,8285,-470,-80,8286,-2961,-3597]],"id":"26157"},{"type":"Polygon","arcs":[[-702,8287,-6838,-6139]],"id":"38011"},{"type":"Polygon","arcs":[[8288,-1758,-697,-6138,-3664]],"id":"38033"},{"type":"Polygon","arcs":[[-4263,-2192,8289,8290,-6868,-6215,8291]],"id":"55035"},{"type":"Polygon","arcs":[[8292,8293,8294,-3957,-1253,8295]],"id":"32005"},{"type":"Polygon","arcs":[[8296,-474,8297,-4154]],"id":"18009"},{"type":"Polygon","arcs":[[-3525,-2143,8298,-475,-8297,-4153]],"id":"18179"},{"type":"Polygon","arcs":[[8299,-1931,-5525,8300,8301]],"id":"05013"},{"type":"Polygon","arcs":[[-2457,8302,-5779,8303,8304,-176,8305]],"id":"17091"},{"type":"Polygon","arcs":[[-7117,-7202,-6388,-3979]],"id":"18163"},{"type":"Polygon","arcs":[[8306,-3187,-2789,-2980,8307,-2921]],"id":"16003"},{"type":"Polygon","arcs":[[-6086,-8126,-7562,-7564,8308]],"id":"09013"},{"type":"Polygon","arcs":[[-4384,-7207,8309,-4228,8310,8311,-3987,-7703]],"id":"21111"},{"type":"Polygon","arcs":[[-8233,-7682,-6458,-7886,-443,8312,8313]],"id":"28109"},{"type":"Polygon","arcs":[[8314,8315,-8242,-7721]],"id":"22093"},{"type":"Polygon","arcs":[[-349,-4294,-7548,8316,-5572,8317]],"id":"49013"},{"type":"Polygon","arcs":[[-6651,-6093,8318,-3694,-3045]],"id":"48209"},{"type":"Polygon","arcs":[[8319,-5575,-5585,8320,8321]],"id":"49023"},{"type":"Polygon","arcs":[[8322,8323,8324,-6591,8325,-8144,-8249]],"id":"37131"},{"type":"Polygon","arcs":[[-2703,-4847,8326,-1804,8327,-859]],"id":"01041"},{"type":"Polygon","arcs":[[-4499,8328,8329,8330]],"id":"16007"},{"type":"Polygon","arcs":[[-2819,8331,8332,-1672,-1882,-8130,8333]],"id":"39113"},{"type":"Polygon","arcs":[[8334,8335,8336,8337,8338,-1806]],"id":"01045"},{"type":"MultiPolygon","arcs":[[[8339,8340]],[[8341,8342]]],"id":"06075"},{"type":"Polygon","arcs":[[-7005,8343,8344,8345,-2103]],"id":"08091"},{"type":"Polygon","arcs":[[-7157,8346,-5196,-5412,8347,8348]],"id":"17153"},{"type":"Polygon","arcs":[[8349,8350,8351,-6062,-8036,8352]],"id":"05121"},{"type":"Polygon","arcs":[[-3474,-6002,-6011,-4715,-6345,-3283,8353]],"id":"05145"},{"type":"Polygon","arcs":[[8354,-662,8355,-3390,-932,-6661,-4190]],"id":"39005"},{"type":"Polygon","arcs":[[-3842,-2178,8356,-8059,-6635,-4194]],"id":"40101"},{"type":"MultiPolygon","arcs":[[[8357]],[[8358]],[[-4268,-7723,-8245,8359,-8240,8360]]],"id":"22109"},{"type":"Polygon","arcs":[[8361,-8087,-6025,-6026,8362]],"id":"41041"},{"type":"Polygon","arcs":[[-471,-8286,8363]],"id":"26063"},{"type":"Polygon","arcs":[[8364,-1130,-7781,-6165,8365]],"id":"29227"},{"type":"Polygon","arcs":[[8366,8367,-6375,-6666,8368,-4996]],"id":"29175"},{"type":"Polygon","arcs":[[8369]],"id":"15003"},{"type":"Polygon","arcs":[[8370,-8321,-5584,8371,-6269,-4403]],"id":"49027"},{"type":"Polygon","arcs":[[-8372,-5583,-5988,-5967,-5477,-6270]],"id":"49041"},{"type":"Polygon","arcs":[[8372,-6920,-5475,8373,-5576,-8320,8374]],"id":"49045"},{"type":"MultiPolygon","arcs":[[[8375,8376,8377,8378]],[[8379]],[[8380]],[[8381]],[[8382,8383,8384]],[[8385]],[[8386]],[[8387]],[[8388]]],"id":"12087"},{"type":"Polygon","arcs":[[8389,8390,-6021,8391,-5921,8392,8393,-4677]],"id":"13033"},{"type":"Polygon","arcs":[[-3955,8394,8395,-8030,8396,8397]],"id":"01081"},{"type":"Polygon","arcs":[[8398,-5993,-3709,8399,8400,8401,8402]],"id":"48409"},{"type":"Polygon","arcs":[[-6992,-7966,-3909,-2682]],"id":"06043"},{"type":"Polygon","arcs":[[-7519,8403,-8366,-6164,8404,8405,-6119]],"id":"29147"},{"type":"Polygon","arcs":[[-1349,-1356,-3179,-1170,-3151,-2758]],"id":"17025"},{"type":"MultiPolygon","arcs":[[[8406]],[[8407]],[[-50,8408,-3114,8409]]],"id":"02130"},{"type":"Polygon","arcs":[[8410,-1420,8411,-2033]],"id":"02282"},{"type":"Polygon","arcs":[[-2142,-1880,8412,-476,-8299]],"id":"18001"},{"type":"Polygon","arcs":[[8413,-1191,-5211,8414,8415]],"id":"08017"},{"type":"Polygon","arcs":[[-6398,8416,-4965,8417,-5859]],"id":"47173"},{"type":"Polygon","arcs":[[-178,8418,-2943,8419,-8268,-3433,8420]],"id":"17183"},{"type":"Polygon","arcs":[[8421,8422]],"id":"53009"},{"type":"Polygon","arcs":[[8423,8424,8425,-7887,-6983,8426]],"id":"53027"},{"type":"Polygon","arcs":[[8427,8428,-2432,8429,-7788]],"id":"12109"},{"type":"Polygon","arcs":[[-8422,8430,8431,-8424,8432]],"id":"53031"},{"type":"MultiPolygon","arcs":[[[-7810,8433]]],"id":"06041"},{"type":"Polygon","arcs":[[-6962,-8180,-5073,8434,-6937,8435,8436,8437]],"id":"51053"},{"type":"Polygon","arcs":[[-4684,-1233,8438,-5175]],"id":"17129"},{"type":"Polygon","arcs":[[-4292,-5902,8439,-7152,-7629,-7549]],"id":"08081"},{"type":"Polygon","arcs":[[-7169,8440,-8330,-5256,-3975]],"id":"16041"},{"type":"Polygon","arcs":[[-6418,-7900,8441,-8056,8442,-3914]],"id":"06101"},{"type":"Polygon","arcs":[[-7575,-8067,-6287,-8116,-6792,-823,-4251]],"id":"39081"},{"type":"Polygon","arcs":[[-7375,-185,8443,-6825,8444]],"id":"35009"},{"type":"Polygon","arcs":[[-2813,8445,-5239,8446,8447]],"id":"36021"},{"type":"Polygon","arcs":[[-7391,8448,-2378,-3135,-7495,-6461]],"id":"28083"},{"type":"Polygon","arcs":[[-8121,-7670,8449,-3922,8450,-2083]],"id":"13291"},{"type":"Polygon","arcs":[[8451,-6800,8452,8453,-5330,8454]],"id":"39001"},{"type":"Polygon","arcs":[[-4411,-8075,8455]],"id":"34009"},{"type":"Polygon","arcs":[[-4407,-8,-1980,-4949,8456]],"id":"32003"},{"type":"Polygon","arcs":[[-7559,8457,8458,8459,-8091,-6516]],"id":"20103"},{"type":"Polygon","arcs":[[-3320,-5251,-8177,-6960]],"id":"51145"},{"type":"Polygon","arcs":[[-4082,8460,8461,8462,8463,-1085,-3729]],"id":"53043"},{"type":"Polygon","arcs":[[8464,8465,-623,8466,8467,-8425,-8432]],"id":"53045"},{"type":"MultiPolygon","arcs":[[[8468]],[[8469]],[[8470]],[[8471]]],"id":"53055"},{"type":"Polygon","arcs":[[8472,-3171,8473,8474,8475]],"id":"17133"},{"type":"Polygon","arcs":[[-1770,8476,8477,8478,-7002,8479]],"id":"08097"},{"type":"Polygon","arcs":[[8480,-8009,-962,8481,-556]],"id":"06035"},{"type":"Polygon","arcs":[[-3495,-2849,-2152,-2114,-279]],"id":"19101"},{"type":"Polygon","arcs":[[8482,-5212,-2839,-7103,-3289,8483]],"id":"08099"},{"type":"Polygon","arcs":[[-715,-4113,-8237,-7655,8484]],"id":"16057"},{"type":"Polygon","arcs":[[-2441,8485,8486,-6362,8487]],"id":"12097"},{"type":"Polygon","arcs":[[8488,8489,8490,-838,8491,-336]],"id":"27171"},{"type":"Polygon","arcs":[[-6490,-2561,8492,8493,-7984,8494,-209]],"id":"13293"},{"type":"Polygon","arcs":[[8495,8496,-7287,8497,8498]],"id":"31049"},{"type":"Polygon","arcs":[[8499,-922,-672,-181,-7374]],"id":"48359"},{"type":"Polygon","arcs":[[8500,-1796,8501,-1745,-3770,-5707]],"id":"13297"},{"type":"Polygon","arcs":[[-6502,-6226,8502,8503,8504,-7069]],"id":"13303"},{"type":"Polygon","arcs":[[8505,-7315,8506,8507,8508]],"id":"34013"},{"type":"Polygon","arcs":[[8509,8510,8511,-4722,8512,8513,-5150]],"id":"13305"},{"type":"Polygon","arcs":[[8514,-7109,-5054,-3172,-8473,8515,-3809]],"id":"29189"},{"type":"Polygon","arcs":[[-7415,-14,8516,8517,-4753]],"id":"22063"},{"type":"Polygon","arcs":[[-3307,-5156,-4848,-2701,-6486]],"id":"01001"},{"type":"Polygon","arcs":[[-7964,-8033,8518,8519,8520,8521,-8336,8522]],"id":"01005"},{"type":"MultiPolygon","arcs":[[[8523]],[[-8262,-2631,8524,8525,8526,8527]]],"id":"01097"},{"type":"Polygon","arcs":[[8528,-1703,8529,-8462,8530]],"id":"53065"},{"type":"MultiPolygon","arcs":[[[8531]],[[-4085,-6133,8532]],[[8533]]],"id":"53073"},{"type":"Polygon","arcs":[[-1706,8534,-3358,-3129,8535,8536,8537]],"id":"13019"},{"type":"Polygon","arcs":[[8538,-4497,-5903,-346]],"id":"56041"},{"type":"Polygon","arcs":[[8539,-8436,-6940,8540,-8324],[-1199]],"id":"51081"},{"type":"Polygon","arcs":[[-8211,-7421,-4929,-7945,8541,-5754,-3156]],"id":"48371"},{"type":"Polygon","arcs":[[-3647,-7120,8542,8543,-2869,-5287,-7517]],"id":"17161"},{"type":"Polygon","arcs":[[-1195,-2820,-8334,-8129,8544]],"id":"39135"},{"type":"Polygon","arcs":[[8545,-1065,8546,-784,8547,-1876]],"id":"39137"},{"type":"Polygon","arcs":[[8548,-8345,8549,8550,-5158]],"id":"08111"},{"type":"Polygon","arcs":[[-2856,8551,-1888,8552]],"id":"48385"},{"type":"Polygon","arcs":[[-2242,-1964,-5496,-5974,8553,-8255]],"id":"30077"},{"type":"Polygon","arcs":[[8554,8555,8556,8557,-4488,8558]],"id":"13309"},{"type":"Polygon","arcs":[[-3016,-5709,8559,-7091,-1982]],"id":"06065"},{"type":"Polygon","arcs":[[-7257,-1627,-495,8560,8561]],"id":"40115"},{"type":"Polygon","arcs":[[-6769,-7626,8562,-2691,8563]],"id":"72103"},{"type":"Polygon","arcs":[[-3609,8564,8565,-1029]],"id":"26001"},{"type":"Polygon","arcs":[[8566,-5760,-808,8567,8568,-1474]],"id":"56043"},{"type":"Polygon","arcs":[[8569,-4922,-7849,-4909,-4661,-8275]],"id":"48113"},{"type":"Polygon","arcs":[[8570,-7066,8571,8572]],"id":"72059"},{"type":"Polygon","arcs":[[-878,-2145,-3524,-2096,-5869]],"id":"18183"},{"type":"Polygon","arcs":[[-5314,-5296,-7357,8573,-7280,-4468]],"id":"47047"},{"type":"Polygon","arcs":[[-4775,-7661,-6304,8574,-8088,-2133,-3337]],"id":"20141"},{"type":"Polygon","arcs":[[-6982,8575,-6880,8576,8577,8578,-2073]],"id":"72011"},{"type":"MultiPolygon","arcs":[[[-8578,8579,-2065,-6739,-4912,-4270,8580]]],"id":"72097"},{"type":"Polygon","arcs":[[8581,-6095,-5182,-4824,-3590,-5234,8582]],"id":"50003"},{"type":"Polygon","arcs":[[-4083,-3727,-2436,-2429]],"id":"53017"},{"type":"MultiPolygon","arcs":[[[-3703,8583,8584,8585]],[[-8401,8586,8587,8588]]],"id":"48355"},{"type":"Polygon","arcs":[[8589,8590,8591,-2511,-5001]],"id":"50019"},{"type":"Polygon","arcs":[[-5302,-6344,8592,-7383,-3738,-551,-5305]],"id":"54023"},{"type":"Polygon","arcs":[[8593,-5842,8594,8595,-1986]],"id":"13073"},{"type":"Polygon","arcs":[[-2797,8596,-5614,-4515,8597,-4243,-5250]],"id":"51085"},{"type":"Polygon","arcs":[[-4436,-8115,-5673,-7815,8598,-2304,-7940,8599]],"id":"48387"},{"type":"Polygon","arcs":[[8600,-2051,-3500,8601,8602,8603,-6798]],"id":"39141"},{"type":"Polygon","arcs":[[-60,8604,-8555,8605,8606,-2444]],"id":"13091"},{"type":"Polygon","arcs":[[-6210,8607,8608,-1797,-8501,-5706,-3917]],"id":"13135"},{"type":"Polygon","arcs":[[-6365,-2085,8609,8610,8611,-6151,-6497]],"id":"13085"},{"type":"Polygon","arcs":[[8612,-3552,8613,-7657,-3188,-8307,-2920,8614,8615]],"id":"41063"},{"type":"Polygon","arcs":[[-8504,8616,-4683,8617,8618]],"id":"13167"},{"type":"Polygon","arcs":[[-6225,8619,-1988,8620,-8390,-4676,-8617,-8503]],"id":"13163"},{"type":"Polygon","arcs":[[8621,8622,8623,-1667,-8333]],"id":"39023"},{"type":"Polygon","arcs":[[8624,8625,8626,8627,8628,-3671,-4354,8629]],"id":"29069"},{"type":"Polygon","arcs":[[8630,-8201,8631,-7602,-7872]],"id":"36019"},{"type":"Polygon","arcs":[[-7530,-7609,8632,8633,-4669,8634,-1717],[-3067],[-1262]],"id":"51163"},{"type":"Polygon","arcs":[[-5769,8635,-8019,8636]],"id":"42099"},{"type":"Polygon","arcs":[[8637,8638,-8626,8639,-8351]],"id":"05021"},{"type":"Polygon","arcs":[[-165,-3681,-6105,8640]],"id":"54037"},{"type":"Polygon","arcs":[[8641,8642,8643,-2239]],"id":"30035"},{"type":"Polygon","arcs":[[-8200,-5002,-2514,8644,8645,-7603,-8632]],"id":"50007"},{"type":"Polygon","arcs":[[8646,-2896,-4687,-4874,-6013]],"id":"19167"},{"type":"Polygon","arcs":[[-705,-400,-2294,-1690,-6779,-4925]],"id":"48083"},{"type":"Polygon","arcs":[[-2531,8647,-1084,-7572,-6909,8648,-7869]],"id":"48401"},{"type":"Polygon","arcs":[[8649,8650,8651,8652,-5324,-8454]],"id":"39145"},{"type":"MultiPolygon","arcs":[[[8653,-1415]],[[8654,-1409,8655,-1413,8656,-1993]]],"id":"02110"},{"type":"Polygon","arcs":[[8657,8658,-7396,-7188,-3763]],"id":"05077"},{"type":"Polygon","arcs":[[-4717,-597,8659,-8658,-3762]],"id":"05123"},{"type":"Polygon","arcs":[[-5494,8660,-7952,-1485]],"id":"55079"},{"type":"Polygon","arcs":[[-8290,-2191,-2524,8661,8662,-7979,8663]],"id":"55053"},{"type":"Polygon","arcs":[[-4475,-6550,-7382,8664,-8269,-4890]],"id":"34021"},{"type":"Polygon","arcs":[[8665,-6959,-6622,-7325,-4649]],"id":"37009"},{"type":"Polygon","arcs":[[8666,-2080,-6607,8667,-988]],"id":"27167"},{"type":"Polygon","arcs":[[-2172,-3368,-329,8668,8669,8670]],"id":"38051"},{"type":"Polygon","arcs":[[-8645,-2513,8671,8672,8673]],"id":"50023"},{"type":"Polygon","arcs":[[-7712,-8122,-3562,8674,8675,-1041,-1638]],"id":"31173"},{"type":"Polygon","arcs":[[-6702,8676,8677,-8011]],"id":"32027"},{"type":"Polygon","arcs":[[8678,-8673,8679,8680,-5179]],"id":"50017"},{"type":"MultiPolygon","arcs":[[[8681]],[[8682]],[[-6995,8683]]],"id":"55029"},{"type":"Polygon","arcs":[[-557,-8482,-961,-7898,-6416,-2161]],"id":"06063"},{"type":"Polygon","arcs":[[-6803,-3149,-4192,-87,8684,-780]],"id":"39147"},{"type":"Polygon","arcs":[[-5418,-4812,8685,-7097,8686,8687]],"id":"13103"},{"type":"Polygon","arcs":[[8688,-5705,8689,8690,8691,-5437,-2544]],"id":"31161"},{"type":"Polygon","arcs":[[-585,-259,-99,-100,-1400,8692]],"id":"46087"},{"type":"Polygon","arcs":[[8693,-199,8694,8695,8696,-2694,-4259]],"id":"55083"},{"type":"Polygon","arcs":[[-2360,-6223,-2748,8697]],"id":"02068"},{"type":"Polygon","arcs":[[-7314,-4418,8698,8699,8700,-8507]],"id":"34017"},{"type":"Polygon","arcs":[[-1476,8701,-8568,-812,8702,-5900,-5254,-6230]],"id":"56013"},{"type":"Polygon","arcs":[[8703,-2714,-3676,-5344,-6373,-8368]],"id":"29137"},{"type":"Polygon","arcs":[[8704,-2571,8705,-3496,-2049]],"id":"39045"},{"type":"Polygon","arcs":[[-8069,-5065,8706,8707,-7804,-5392]],"id":"05027"},{"type":"Polygon","arcs":[[8708,8709,-4375,-4036,-7862]],"id":"55065"},{"type":"Polygon","arcs":[[-4422,8710,8711]],"id":"36047"},{"type":"Polygon","arcs":[[-1969,-1517,-7637,-5016,-6004,-2216]],"id":"29141"},{"type":"Polygon","arcs":[[-6157,8712,-852,-7327,-5245,-7261]],"id":"27151"},{"type":"Polygon","arcs":[[8713,-6038,-5629,-5943,8714,-5945,8715,-3667,-8629]],"id":"29143"},{"type":"Polygon","arcs":[[-7717,-3097,-966,-4373,-8710,8716]],"id":"55045"},{"type":"Polygon","arcs":[[-8677,-6701,8717,-5510,8718,8719]],"id":"32015"},{"type":"Polygon","arcs":[[8720,-8014]],"id":"32029"},{"type":"Polygon","arcs":[[-7338,-6676,-2878,-4565,-4829]],"id":"35001"},{"type":"Polygon","arcs":[[-3128,-7276,-7009,8721,-8536]],"id":"13173"},{"type":"Polygon","arcs":[[-5675,-40,-4864,-4465,-7301,-1456,8722]],"id":"56045"},{"type":"Polygon","arcs":[[8723,-6552,-2863,8724,8725,8726]],"id":"36009"},{"type":"Polygon","arcs":[[8727,8728,-129,-7541,-2409,-136,8729]],"id":"72127"},{"type":"Polygon","arcs":[[8730,8731,-130,-8729]],"id":"72139"},{"type":"Polygon","arcs":[[-2629,-1092,-1859,-1866,8732]],"id":"19049"},{"type":"Polygon","arcs":[[-7944,8733,8734,-5755,-8542]],"id":"48443"},{"type":"Polygon","arcs":[[8735,-7673,-6424,-1893,8736]],"id":"13119"},{"type":"Polygon","arcs":[[-5834,-565,8737,-7155,8738]],"id":"17199"},{"type":"Polygon","arcs":[[-1913,8739,-7639,-5797,8740,-2053]],"id":"39155"},{"type":"Polygon","arcs":[[-1151,-1800,8741,8742,-1849,8743]],"id":"17203"},{"type":"Polygon","arcs":[[-8551,8744,-604,-5996,-3966]],"id":"08067"},{"type":"Polygon","arcs":[[-3388,-8082,-4252,-821,-1899,8745]],"id":"39157"},{"type":"Polygon","arcs":[[-5160,-2202,-2827,-2088,-21,-6331,-4254,-6008]],"id":"27089"},{"type":"Polygon","arcs":[[-1762,-1738,-7795,-7713,-5650,8746]],"id":"27115"},{"type":"Polygon","arcs":[[-5064,8747,8748,-8302,8749,-8707]],"id":"05103"},{"type":"Polygon","arcs":[[8750,8751,-658,-8355,-4189,8752]],"id":"39093"},{"type":"Polygon","arcs":[[8753,-6484,8754,-6260,8755,-4961]],"id":"37021"},{"type":"Polygon","arcs":[[-6064,8756,-8630,-4353,-3902,-6010]],"id":"05031"},{"type":"Polygon","arcs":[[-5816,-4176,8757,-8104,-4931,-4779]],"id":"35005"},{"type":"Polygon","arcs":[[-2496,-2546,-5440,8758,-5680,-7302]],"id":"31165"},{"type":"Polygon","arcs":[[-7957,8759,-1932,-8300,-8749,8760]],"id":"05039"},{"type":"Polygon","arcs":[[8761,-4119,8762,-4959,-3829,-6262,8763]],"id":"37023"},{"type":"Polygon","arcs":[[-6483,-4622,8764,-8764,-6261,-8755]],"id":"37111"},{"type":"Polygon","arcs":[[-7512,-5530,-5768,-6812]],"id":"42109"},{"type":"Polygon","arcs":[[-8606,-8559,-4487,-3354,-3477,8765]],"id":"13271"},{"type":"Polygon","arcs":[[8766,-751,-7111,8767]],"id":"12115"},{"type":"Polygon","arcs":[[-6426,-4460,-5951,-5844,8768,8769,8770,-1895]],"id":"13105"},{"type":"Polygon","arcs":[[8771,-8537,-8722,-7013,8772,-7491,8773]],"id":"13185"},{"type":"Polygon","arcs":[[-210,-8495,-7983,8774,-3502,8775,8776]],"id":"13263"},{"type":"Polygon","arcs":[[-6753,-4584,8777,-8140,-6198]],"id":"37047"},{"type":"Polygon","arcs":[[-563,-5838,-4218,-5928,-5403,-7333]],"id":"17069"},{"type":"Polygon","arcs":[[-8611,8778,-3925,8779,8780,8781,-8609,8782]],"id":"13139"},{"type":"Polygon","arcs":[[8783,-5382,-6525,-4439,-3673,8784]],"id":"17001"},{"type":"Polygon","arcs":[[8785,8786,-2124,8787,-62,-2443,-1934,-7802]],"id":"13153"},{"type":"Polygon","arcs":[[8788,-5165,-4134,8789]],"id":"48457"},{"type":"Polygon","arcs":[[-6113,-7223,-7539,-5268,-7270,-1742]],"id":"12041"},{"type":"Polygon","arcs":[[-840,8790,8791,-1919,-3089,-3161]],"id":"27139"},{"type":"Polygon","arcs":[[-3133,-3034,8792,-3207,-2875,-7477,-7496]],"id":"28007"},{"type":"Polygon","arcs":[[-8604,8793,-8650,-8453,-6799]],"id":"39131"},{"type":"Polygon","arcs":[[-6820,-2184,-6905,-3122,-5981]],"id":"46095"},{"type":"Polygon","arcs":[[8794,8795,-8727,8796,-4795]],"id":"36013"},{"type":"Polygon","arcs":[[-7992,-7927,8797,8798,8799,-5610,-8597,-2796]],"id":"51177"},{"type":"Polygon","arcs":[[-2266,-6543,8800,-8353,-8035,-4357,-8053]],"id":"29149"},{"type":"Polygon","arcs":[[-7381,8801,-7291,-8270,-8665]],"id":"34025"},{"type":"Polygon","arcs":[[-8652,8802,-3893,-6411,8803,-5946,8804]],"id":"39087"},{"type":"Polygon","arcs":[[-4399,8805,-5035,8806,-1641,-4025,-5398]],"id":"26103"},{"type":"Polygon","arcs":[[8807,-5151,-8514,8808,-6369]],"id":"13229"},{"type":"MultiPolygon","arcs":[[[8809]],[[8810]]],"id":"15007"},{"type":"Polygon","arcs":[[-3103,-5006,-4974,8811,-8194,-5961,-3440,-6565]],"id":"42033"},{"type":"Polygon","arcs":[[-2826,-7256,-7365,-2187,-25,-2090]],"id":"27029"},{"type":"Polygon","arcs":[[8812,-3478,-3352,-8535,-1705]],"id":"13155"},{"type":"Polygon","arcs":[[8813,-1765,-6312,8814]],"id":"27035"},{"type":"Polygon","arcs":[[-293,-5021,-5027,8815,-7708,-4554,-3507,-2499]],"id":"30087"},{"type":"Polygon","arcs":[[-661,-1871,-8080,-3386,-8356]],"id":"39169"},{"type":"Polygon","arcs":[[-607,-4721,8816,8817,-7144]],"id":"12051"},{"type":"Polygon","arcs":[[-8769,-5843,-8594,-1985,8818]],"id":"13181"},{"type":"Polygon","arcs":[[-4389,8819,-8511,8820]],"id":"13183"},{"type":"Polygon","arcs":[[-7124,-2725,8821,-4548,-5990,-1646]],"id":"48469"},{"type":"Polygon","arcs":[[-1884,8822,8823,-7040,8824,-7212,8825]],"id":"39025"},{"type":"Polygon","arcs":[[-990,8826,-7262,-5591,8827,-738]],"id":"46109"},{"type":"Polygon","arcs":[[-4868,-5982,-343,-8689,-2543,-2494,-4463]],"id":"46102"},{"type":"Polygon","arcs":[[-6730,8828,-3346,-3894,-7615,-7619]],"id":"54067"},{"type":"Polygon","arcs":[[8829,-6875,8830,8831,8832]],"id":"72071"},{"type":"Polygon","arcs":[[-6879,8833,-2060,-8580,-8577]],"id":"72083"},{"type":"Polygon","arcs":[[8834,8835,-6876,-8830]],"id":"72115"},{"type":"Polygon","arcs":[[-6878,8836,8837,-6975,-7068,8838,-2061,-8834]],"id":"72081"},{"type":"Polygon","arcs":[[8839,8840,-7623,-6767]],"id":"72089"},{"type":"Polygon","arcs":[[-7065,-6830,8841,-8572]],"id":"72111"},{"type":"Polygon","arcs":[[-5520,-7514,-975,8842,8843]],"id":"33017"},{"type":"Polygon","arcs":[[-3391,-2223,-3475,-8354,-3287,-3278,-6494]],"id":"05045"},{"type":"Polygon","arcs":[[8844,-8475,8845,-7247,8846]],"id":"29186"},{"type":"Polygon","arcs":[[-6054,-3568,-3656,-7076,-2468]],"id":"31153"},{"type":"Polygon","arcs":[[-7990,8847,8848,-1496,-5611,-8800,8849,-8798,-7926]],"id":"51179"},{"type":"Polygon","arcs":[[8850,-5818,-4187,-6849,-3230,-699,-1757]],"id":"38089"},{"type":"Polygon","arcs":[[-5722,8851,8852,8853,8854,8855,8856]],"id":"47051"},{"type":"Polygon","arcs":[[-485,-2113,-5185,-6385,8857]],"id":"38101"},{"type":"Polygon","arcs":[[8858,-667,8859,-7835,8860,-8853]],"id":"47115"},{"type":"Polygon","arcs":[[8861,-7545,-5623,-5601,-7499,-1920,-8792]],"id":"27037"},{"type":"Polygon","arcs":[[-4155,-8298,-480,8862,-3007,-6509]],"id":"18035"},{"type":"Polygon","arcs":[[-7359,-2844,-1760,8863,-2823]],"id":"27061"},{"type":"Polygon","arcs":[[-8566,8864,-3173,-770]],"id":"26069"},{"type":"Polygon","arcs":[[-3371,8865,8866,-6444,8867]],"id":"20159"},{"type":"Polygon","arcs":[[8868,-7351,-5785,8869,-8459]],"id":"20209"},{"type":"Polygon","arcs":[[8870,-5468,-548,-919,-2687,-3697,8871]],"id":"48479"},{"type":"Polygon","arcs":[[-8197,8872,-6785,-6041,8873,8874]],"id":"48481"},{"type":"Polygon","arcs":[[-2560,-2519,8875,-870,-2122,8876,-8493]],"id":"13207"},{"type":"Polygon","arcs":[[-1795,-635,8877,-6279,-1746,-8502]],"id":"13219"},{"type":"Polygon","arcs":[[-7796,8878,-8786,-7801,-7982]],"id":"13225"},{"type":"Polygon","arcs":[[8879,8880,8881,-8520]],"id":"13239"},{"type":"Polygon","arcs":[[-3389,-8746,-1898,8882,-2568,-934]],"id":"39031"},{"type":"Polygon","arcs":[[-8881,8883,-6506,8884,-1825,8885]],"id":"13243"},{"type":"Polygon","arcs":[[-3239,-2414,-6770,-8564,-2690,8886,-1727]],"id":"72085"},{"type":"Polygon","arcs":[[8887,-7622,8888,-6413,8889]],"id":"54079"},{"type":"Polygon","arcs":[[-6989,-7613,8890,-4833,-2388,-8260]],"id":"54109"},{"type":"Polygon","arcs":[[-6742,-4818,8891,8892,-6267,-7337]],"id":"34037"},{"type":"Polygon","arcs":[[8893,-3547,-8085,-3303,-6219,-8168]],"id":"01007"},{"type":"Polygon","arcs":[[8894,-6184,-4855,8895,8896,-6314]],"id":"28057"},{"type":"Polygon","arcs":[[-7438,8897,-8785,-3672,-2712,8898]],"id":"29111"},{"type":"Polygon","arcs":[[-5181,8899,8900,8901,8902,-4822]],"id":"33019"},{"type":"Polygon","arcs":[[-2139,-3190,-1621,8903,8904,8905,-2110]],"id":"38069"},{"type":"Polygon","arcs":[[8906,8907,-3659,8908,-8711,-4421]],"id":"36081"},{"type":"Polygon","arcs":[[-7894,-1263,-7893,-6127,-3519,-2600,8909,-798]],"id":"37033"},{"type":"Polygon","arcs":[[8910,-5312,-5401,-3611]],"id":"26131"},{"type":"Polygon","arcs":[[-4754,-8518,8911,-8315,-7720,8912]],"id":"22005"},{"type":"Polygon","arcs":[[8913,-6364,-605,-749,-1873]],"id":"12055"},{"type":"Polygon","arcs":[[-6265,-4619,-1046,-3871,-8756]],"id":"37089"},{"type":"Polygon","arcs":[[-1134,-3258,-1277,-1160,-2751,-3566]],"id":"19029"},{"type":"Polygon","arcs":[[-8624,8914,-6563,8915,-2047,8916,-1668]],"id":"39097"},{"type":"Polygon","arcs":[[8917,8918,-3136,-6363,-8487]],"id":"12061"},{"type":"Polygon","arcs":[[8919,-7679,-7769,-4939,-4366,8920]],"id":"05131"},{"type":"Polygon","arcs":[[-8305,8921,-2937,-8419,-177]],"id":"17075"},{"type":"Polygon","arcs":[[-8032,-3504,8922,-6507,-8884,-8880,-8519]],"id":"13259"},{"type":"Polygon","arcs":[[8923,8924,-1915,-1868,-659,-8752]],"id":"39035"},{"type":"Polygon","arcs":[[-3771,-1749,8925,-864,-8876,-2518]],"id":"13159"},{"type":"Polygon","arcs":[[-6152,-8612,-8783,-8608,-6209]],"id":"13117"},{"type":"Polygon","arcs":[[8926,8927,-5436,-8078,8928,-6699,8929]],"id":"16073"},{"type":"Polygon","arcs":[[8930,8931,-3911,-7967,-202,8932,8933]],"id":"06085"},{"type":"Polygon","arcs":[[8934,-4759,-7635,8935,-3801,8936,-6447]],"id":"22079"},{"type":"Polygon","arcs":[[-83,-6315,-8897,8937,-8169,8938,8939]],"id":"28095"},{"type":"Polygon","arcs":[[8940,-4892,-8272,8941,8942,-6333]],"id":"42101"},{"type":"Polygon","arcs":[[8943,-8843,-974,8944,-7453,8945]],"id":"33015"},{"type":"Polygon","arcs":[[8946,8947,-8583,-5233,-8446,-6207]],"id":"36083"},{"type":"Polygon","arcs":[[-4958,8948,-4804,-3831]],"id":"37071"},{"type":"Polygon","arcs":[[8949,-6537,8950,-6039,-8714,-8628,8951]],"id":"29207"},{"type":"Polygon","arcs":[[-8691,8952,-905,8953,-8496,8954,8955]],"id":"31069"},{"type":"Polygon","arcs":[[-4846,-7965,-8523,-8335,-1805,-8327]],"id":"01109"},{"type":"Polygon","arcs":[[-4796,-8797,-8726,8956,-5004,-5109,-1656,-7638]],"id":"42123"},{"type":"Polygon","arcs":[[-1305,-2483,-7259,8957,-4903,8958]],"id":"20099"},{"type":"Polygon","arcs":[[-1867,-515,-5806,-5220,-1146]],"id":"19039"},{"type":"Polygon","arcs":[[8959,-8561,-494,-4149,-7665,-2175,8960]],"id":"40041"},{"type":"Polygon","arcs":[[8961,-7279,-5210,-3061,-1551,8962]],"id":"18141"},{"type":"Polygon","arcs":[[8963,-7057,-6724]],"id":"37177"},{"type":"Polygon","arcs":[[-7004,-6361,-4675,-599,-8745,-8550,-8344]],"id":"08053"},{"type":"MultiPolygon","arcs":[[[-8585,8964,-6399,8965]],[[-8588,8966,-6403,-123,8967]]],"id":"48273"},{"type":"Polygon","arcs":[[-3537,-7408,8968,-6760,8969,-1265,8970,8971]],"id":"51035"},{"type":"Polygon","arcs":[[-2923,8972,-7268,8973,-8930,-6698,-4283,-2043]],"id":"41045"},{"type":"Polygon","arcs":[[8974,8975,-4748,8976,8977]],"id":"24009"},{"type":"Polygon","arcs":[[-5038,-5484,-5729,-5045,-5470]],"id":"21071"},{"type":"Polygon","arcs":[[-6652,-6598,-4079,8978,8979,-6787,8980,8981]],"id":"48201"},{"type":"Polygon","arcs":[[-7970,-2229,-4482,8982]],"id":"51700"},{"type":"Polygon","arcs":[[-8698,-2747,-2030,8983,8984,8985,-4856,-2361]],"id":"02170"},{"type":"Polygon","arcs":[[-4506,-5068,-5061,-8068,8986,-3270]],"id":"05057"},{"type":"Polygon","arcs":[[-7239,-7282,-6317,8987,-7394]],"id":"28137"},{"type":"Polygon","arcs":[[8988,-8700,8989,-7379]],"id":"36085"},{"type":"Polygon","arcs":[[-2111,-8906,8990,8991,8992,-5186]],"id":"38083"},{"type":"Polygon","arcs":[[8993,-2814,-8448,8994,-4813,-8018]],"id":"36111"},{"type":"Polygon","arcs":[[-2905,-1289,-4575,-5892,8995]],"id":"37059"},{"type":"Polygon","arcs":[[-502,8996,-6835,-6926,-4910,-270]],"id":"48197"},{"type":"Polygon","arcs":[[-5917,-7513,-3863,-2186,-6819,8997]],"id":"46117"},{"type":"Polygon","arcs":[[8998,-2385,8999,-1565,-1674,-7780]],"id":"29079"},{"type":"Polygon","arcs":[[-6562,-1909,-2572,-8705,-2048,-8916]],"id":"39049"},{"type":"Polygon","arcs":[[-7899,-2541,-8016,9000,-8296,-1256,-8057,-8442]],"id":"06061"},{"type":"Polygon","arcs":[[-8460,-8870,-5789,-8184,-3997,-8092]],"id":"20091"},{"type":"Polygon","arcs":[[-5237,-6088,9001,-7200,-8050,9002]],"id":"09005"},{"type":"Polygon","arcs":[[-1807,-8339,9003,9004,9005,-2808,9006]],"id":"01061"},{"type":"Polygon","arcs":[[9007,-7182,-7845,9008,-9004,-8338]],"id":"01069"},{"type":"Polygon","arcs":[[-6273,9009,9010,-8971,-1266,-8970,-6759,-6958,-8666,-4648]],"id":"51077"},{"type":"Polygon","arcs":[[-1010,-2892,-5147,-3252,-1192,-8414,9011]],"id":"08063"},{"type":"Polygon","arcs":[[-3561,-3242,-7367,9012,-8675]],"id":"19133"},{"type":"Polygon","arcs":[[-8181,-5636,-6450,9013,-5461,-3712,-5164]],"id":"48351"},{"type":"Polygon","arcs":[[9014,9015,9016,-6500,-6281]],"id":"13265"},{"type":"Polygon","arcs":[[-528,-1918,-6831,-8997,-501,9017]],"id":"40057"},{"type":"Polygon","arcs":[[-4664,9018,9019,-943,-4239]],"id":"48349"},{"type":"Polygon","arcs":[[9020,-4681,9021,-5148,-4490]],"id":"13279"},{"type":"Polygon","arcs":[[-2931,9022,-8847,-7246,-4164,-3528]],"id":"29187"},{"type":"Polygon","arcs":[[9023,-4072,-7372,-4569,-6693]],"id":"35021"},{"type":"Polygon","arcs":[[-4588,-1506,-1453,-8231,9024]],"id":"30097"},{"type":"Polygon","arcs":[[9025,9026,-6481,-4605,-6646,-5691]],"id":"21155"},{"type":"Polygon","arcs":[[-8190,-8236,9027,-5718,9028,9029,-7646]],"id":"47149"},{"type":"MultiPolygon","arcs":[[[9030,-6134,-2431,-2421,9031,9032]]],"id":"53061"},{"type":"Polygon","arcs":[[-6176,-2401,-7350,-8869,-8458,-7558]],"id":"29165"},{"type":"Polygon","arcs":[[-8131,-1885,-8826,-7215,9033,9034,9035]],"id":"39061"},{"type":"Polygon","arcs":[[-7025,-4900,-7648,-5455,-1432,-5430]],"id":"47081"},{"type":"Polygon","arcs":[[-4666,-4644,9036,-6925,-250,-1096]],"id":"48337"},{"type":"Polygon","arcs":[[-5573,-8317,-7552,9037,-5986,-5581]],"id":"49007"},{"type":"Polygon","arcs":[[-7706,-3181,-3052,-6308,-641,-3361]],"id":"20041"},{"type":"Polygon","arcs":[[-2458,-8306,-175,9038,-8742,-1799]],"id":"17105"},{"type":"Polygon","arcs":[[-4942,-2208,-3393,-6496,9039,-3422,-4368]],"id":"05149"},{"type":"Polygon","arcs":[[-5699,-7183,-4003,-2607]],"id":"16065"},{"type":"Polygon","arcs":[[-3510,-629,-212,9040,-3953,-7506]],"id":"13285"},{"type":"Polygon","arcs":[[9041,-1874,-747,-8767,9042]],"id":"12081"},{"type":"MultiPolygon","arcs":[[[9043,9044,9045,-7907,9046]],[[9047,9048]]],"id":"51001"},{"type":"Polygon","arcs":[[-868,9049,-58,-8788,-2123]],"id":"13289"},{"type":"Polygon","arcs":[[-5378,-7265,-977,-5538,9050]],"id":"24035"},{"type":"Polygon","arcs":[[-3594,-8127,-6084,-5235]],"id":"25015"},{"type":"Polygon","arcs":[[-4448,-5289,-6427,-3141,9051,9052]],"id":"17071"},{"type":"Polygon","arcs":[[9053,-8961,-2174,-3841,9054]],"id":"40097"},{"type":"Polygon","arcs":[[-5072,-8179,-2868,-8178,-6899,-6142,-6938,-8435]],"id":"51149"},{"type":"Polygon","arcs":[[-7313,-7320,9055,-8907,-4420]],"id":"36005"},{"type":"Polygon","arcs":[[-3425,-7958,-8761,-8748,-5063,-5067]],"id":"05019"},{"type":"Polygon","arcs":[[-782,9056,-1787,-6561,-6558,-6626,9057]],"id":"39065"},{"type":"Polygon","arcs":[[-6174,-1396,-545,-5467,-958]],"id":"48163"},{"type":"Polygon","arcs":[[-9040,-6495,-2475,-7955,-3423]],"id":"05051"},{"type":"Polygon","arcs":[[-149,-5529,-1574,1578,-7172,-5145,-2890]],"id":"31057"},{"type":"Polygon","arcs":[[9058,-5421,-6342,-2471,-6544,-953,-908]],"id":"31023"},{"type":"Polygon","arcs":[[-9038,-7551,-1772,9059,-1211,-5987]],"id":"49019"},{"type":"Polygon","arcs":[[-8598,-4514,-6035,-7968,-6896,-4244]],"id":"51127"},{"type":"Polygon","arcs":[[-8896,-4854,-2928,-8225,-2910,-8170,-8938]],"id":"01093"},{"type":"Polygon","arcs":[[-8644,9060,-736,-6672,-5863,-2240]],"id":"30073"},{"type":"Polygon","arcs":[[-8015,9061,-8293,-9001]],"id":"32510"},{"type":"Polygon","arcs":[[9062,9063,-5263,-7538]],"id":"12125"},{"type":"MultiPolygon","arcs":[[[-8984,-2036,9064,9065]]],"id":"02020"},{"type":"Polygon","arcs":[[-7417,-3613,-5400,9066,9067,-4105]],"id":"55125"},{"type":"Polygon","arcs":[[9068,-2539,-3204,-8793,-3033]],"id":"28019"},{"type":"Polygon","arcs":[[-2320,9069,-8093,-7307]],"id":"31169"},{"type":"Polygon","arcs":[[-756,9070,-504,9071,-55,-5700]],"id":"13223"},{"type":"Polygon","arcs":[[9072,-8375,-8322,-8371,-4402,9073,-5508]],"id":"32033"},{"type":"Polygon","arcs":[[9074,9075,-1080,-8648,-2530,-3039]],"id":"48203"},{"type":"Polygon","arcs":[[-6212,-6246,9076,-627]],"id":"13113"},{"type":"Polygon","arcs":[[-7469,-6510,-3011,9077,-1556,-7473]],"id":"18059"},{"type":"Polygon","arcs":[[-7633,-6530,9078,-7879,-7868,9079]],"id":"22025"},{"type":"Polygon","arcs":[[9080,-7213,-8825,-7044,-6580,9081]],"id":"21191"},{"type":"Polygon","arcs":[[-3538,-8972,-9011,9082,-6935]],"id":"51197"},{"type":"Polygon","arcs":[[9083,9084,-6734,-5761,-8567,-1473]],"id":"56003"},{"type":"Polygon","arcs":[[-3691,-6890,-5918,9085,-6475]],"id":"46137"},{"type":"MultiPolygon","arcs":[[[9086]],[[9087,9088]]],"id":"25007"},{"type":"Polygon","arcs":[[-8782,9089,-1897,-632,-1794]],"id":"13157"},{"type":"Polygon","arcs":[[-5778,9090,-2938,-8922,-8304]],"id":"18111"},{"type":"Polygon","arcs":[[9091,-4437,-8600,-7939,9092]],"id":"48277"},{"type":"Polygon","arcs":[[-7253,-2824,-8864,-1759,-8814,9093,-3458,-7300]],"id":"27021"},{"type":"Polygon","arcs":[[-1957,-1588,-1972,-3404,-804]],"id":"48153"},{"type":"Polygon","arcs":[[-3010,9094,-2788,-3778,-1557,-9078]],"id":"18139"},{"type":"Polygon","arcs":[[-1280,-7578,-7143,-2947,9095]],"id":"06079"},{"type":"Polygon","arcs":[[-8867,9096,-5052,-4690,-6299,-2460,-6445]],"id":"20155"},{"type":"Polygon","arcs":[[-3108,-1021,-2628,-2619,-3515]],"id":"19025"},{"type":"Polygon","arcs":[[-1763,-8747,-647,-6309]],"id":"27065"},{"type":"Polygon","arcs":[[-4973,-7902,-6861,-7511,-8192,-8812]],"id":"42035"},{"type":"Polygon","arcs":[[-3251,-885,9097,-2194,-3073,-1188]],"id":"20109"},{"type":"Polygon","arcs":[[-1883,-1670,9098,-6796,9099,-8823]],"id":"39027"},{"type":"Polygon","arcs":[[-8548,-783,-9058,-6625,-1877]],"id":"39003"},{"type":"Polygon","arcs":[[-4260,-2695,-8697,9100,-6845,-817,-1997]],"id":"55115"},{"type":"Polygon","arcs":[[-2177,-7667,-7680,-8920,9101,-8060,-8357]],"id":"40135"},{"type":"Polygon","arcs":[[-6866,-8142,-5937,9102,9103,9104,-793,9105,-6863,9106]],"id":"47035"},{"type":"Polygon","arcs":[[9107,-6277,-4551,-5701,-57,9108,-7504,-3554]],"id":"01029"},{"type":"Polygon","arcs":[[-77,-7187,9109,-7235,9110]],"id":"26099"},{"type":"Polygon","arcs":[[-8287,-79,9111,-6452,-8284,-2962]],"id":"26049"},{"type":"Polygon","arcs":[[-3096,9112,-4771,-1120,-968]],"id":"17007"},{"type":"Polygon","arcs":[[-3942,-5369,-6387,9113,-1755,-8289,-3663]],"id":"38053"},{"type":"Polygon","arcs":[[-7407,-7556,-4479,-2975,-6761,-8969]],"id":"51141"},{"type":"Polygon","arcs":[[-7158,-8349,9114,-5624,-6037,9115]],"id":"17003"},{"type":"Polygon","arcs":[[-7080,-4507,-3268,-8114]],"id":"05133"},{"type":"Polygon","arcs":[[-6329,9116,-8527,9117,-440]],"id":"28039"},{"type":"Polygon","arcs":[[-6548,9118,-8508,-8701,-8989,-7378]],"id":"34039"},{"type":"Polygon","arcs":[[-4038,-4374,-3939,9119,9120,9121]],"id":"17015"},{"type":"Polygon","arcs":[[-3311,9122,-3479,-8813,-1704,9123]],"id":"13287"},{"type":"Polygon","arcs":[[-8342,9124,-8934,9125,9126]],"id":"06081"},{"type":"Polygon","arcs":[[9127,9128,-8687,-7096,-3001,9129,-4679]],"id":"13031"},{"type":"Polygon","arcs":[[-4732,-4039,-9122,9130,-2615]],"id":"19097"},{"type":"Polygon","arcs":[[-2104,-8346,-8549,-5157,-1213]],"id":"08113"},{"type":"Polygon","arcs":[[-3698,-2688,-126,-7906,9131]],"id":"48427"},{"type":"Polygon","arcs":[[-2084,-8451,-3926,-8779,-8610]],"id":"13187"},{"type":"Polygon","arcs":[[-8893,9132,-8509,-9119,-6547,-4473,-6268]],"id":"34027"},{"type":"Polygon","arcs":[[9133,-2733,-2317,-7688,-4130,-1576,-5528]],"id":"31063"},{"type":"Polygon","arcs":[[-6978,-4264,-8292,-6214,-5598,-5765]],"id":"55033"},{"type":"Polygon","arcs":[[-6045,9134,-2804,-2851,-239]],"id":"48429"},{"type":"Polygon","arcs":[[-9077,-6245,-7961,-2521,-2559,-6489,-207,-628]],"id":"13255"},{"type":"Polygon","arcs":[[-3070,-7347,-3638,9135,-6781]],"id":"39051"},{"type":"Polygon","arcs":[[-468,-5294,-3781,-2754,9136]],"id":"19037"},{"type":"Polygon","arcs":[[-8444,-184,-2575,-2805,-6826]],"id":"48369"},{"type":"Polygon","arcs":[[-2127,-1729,9137,-3523,9138,-2934,-5504]],"id":"72109"},{"type":"Polygon","arcs":[[-5795,-1659,-5106,-4952,-3852,-995,-5791]],"id":"42019"},{"type":"Polygon","arcs":[[9139,-1616,9140,9141,-8591]],"id":"50009"},{"type":"Polygon","arcs":[[-2621,-2630,-8733,-1275,-3257]],"id":"19077"},{"type":"Polygon","arcs":[[-8929,-8077,-3301,-6921,-8373,-9073,-5507,-8718,-6700]],"id":"32007"},{"type":"Polygon","arcs":[[9142,-8855,9143,-7914,-2346,-7693]],"id":"01089"},{"type":"Polygon","arcs":[[-3958,-8295,9144,-4537,-2598,-4947,-1138,-6993,-2680]],"id":"06051"},{"type":"Polygon","arcs":[[-7092,-8560,-5711,9145]],"id":"06073"},{"type":"Polygon","arcs":[[-4563,-6383,-5280,-575,-577,-3023]],"id":"31115"},{"type":"Polygon","arcs":[[-8759,-5439,9146,9147,-5681]],"id":"31157"},{"type":"Polygon","arcs":[[-701,-3232,-6848,-5873,-6887,-3689,-6839,-8288]],"id":"38001"},{"type":"Polygon","arcs":[[-1173,-5092,9148,9149,-4144,-6183,9150,-5388]],"id":"47071"},{"type":"Polygon","arcs":[[-7816,-5881,9151,-9075,-3038]],"id":"48315"},{"type":"Polygon","arcs":[[-7669,9152,9153,-3923,-8450]],"id":"13281"},{"type":"Polygon","arcs":[[-9035,9154,9155,-6745,-7297,-4416,9156]],"id":"21015"},{"type":"Polygon","arcs":[[9157,-1316,-7278,9158,9159]],"id":"26159"},{"type":"Polygon","arcs":[[-7943,-1713,9160,-4295,9161,-8734]],"id":"48465"},{"type":"Polygon","arcs":[[-7070,-8505,-8619,9162,-9050,-867]],"id":"13319"},{"type":"Polygon","arcs":[[-3313,9163,-7839,9164,-192]],"id":"13177"},{"type":"Polygon","arcs":[[9165,-3004,-4390,-8821,-8510,-5149,-9022]],"id":"13267"},{"type":"Polygon","arcs":[[9166,-3618,-3583,9167,-4914,-5556]],"id":"23011"},{"type":"Polygon","arcs":[[-5663,-1344,9168,-219,-7100]],"id":"19189"},{"type":"Polygon","arcs":[[-5569,-2674,-5540,-3742]],"id":"19059"},{"type":"Polygon","arcs":[[-5122,-4337,-1245,9169,-4760,-8935,-6446,-5634]],"id":"22069"},{"type":"Polygon","arcs":[[9170,9171,-151,-8251]],"id":"72017"},{"type":"Polygon","arcs":[[-8690,-5704,9172,-901,-8953]],"id":"31075"},{"type":"Polygon","arcs":[[-7434,-8107,-7874,-9079,-6529]],"id":"22041"},{"type":"Polygon","arcs":[[-8775,-7986,-7910,-187,-6504,-8923,-3503]],"id":"13197"},{"type":"Polygon","arcs":[[-6939,-6145,-5895,-4304,-5899,-8205,-7974,-6592,-8325,-8541]],"id":"51175"},{"type":"Polygon","arcs":[[-8291,-8664,-7978,9173,-6869]],"id":"55121"},{"type":"Polygon","arcs":[[9174,9175,-8094,-7807]],"id":"06055"},{"type":"Polygon","arcs":[[-3759,-8098,-1260,-6003,-3472,-2221]],"id":"05137"},{"type":"Polygon","arcs":[[-1358,-6310,-650,9176,9177,-8490,9178]],"id":"27141"},{"type":"Polygon","arcs":[[-4783,-7854,9179,-7508]],"id":"48141"},{"type":"Polygon","arcs":[[-166,-8641,-8227,-8261]],"id":"54003"},{"type":"Polygon","arcs":[[9180,-6710,-4333,9181,-7459,-309]],"id":"21141"},{"type":"Polygon","arcs":[[-457,-2262,-707,-244,-2270]],"id":"48081"},{"type":"Polygon","arcs":[[-8603,9182,-3889,-8803,-8651,-8794]],"id":"39079"},{"type":"Polygon","arcs":[[-4725,9183,-7483,-5111,9184]],"id":"13039"},{"type":"Polygon","arcs":[[-4651,-7326,-4120,-8762,-8765,-4621,-7457]],"id":"37011"},{"type":"MultiPolygon","arcs":[[[9185]],[[9186]],[[9187]],[[9188]],[[9189]],[[9190]],[[9191]],[[9192]],[[9193]],[[9194]],[[9195]],[[9196]],[[9197]],[[9198]],[[9199]],[[9200]],[[9201]],[[9202]],[[9203]]],"id":"02016"},{"type":"MultiPolygon","arcs":[[[-9065,-2035,9204]],[[9205]],[[-4857,-8986,9206,-2018,-2026]]],"id":"02122"},{"type":"Polygon","arcs":[[-7485,9207,-8428,-7787,9208]],"id":"12031"},{"type":"MultiPolygon","arcs":[[[9209]],[[-7565,-6337,9210]]],"id":"44009"},{"type":"Polygon","arcs":[[-6352,-8257,-6233,9211,-6420]],"id":"08019"},{"type":"Polygon","arcs":[[9212,-2236,-8052,-4355,-8097,9213]],"id":"29153"},{"type":"Polygon","arcs":[[9214,-8415,-5213,-8483,9215,-2273,-8207]],"id":"08061"},{"type":"MultiPolygon","arcs":[[[9216,-7426]],[[-7429,9217,-7904]]],"id":"48061"},{"type":"Polygon","arcs":[[-1510,-2237,-9213,9218,-7587,-7136,-1664]],"id":"29213"},{"type":"Polygon","arcs":[[-1373,-7819,-3848,-7813,-2298,9219,-394]],"id":"40017"},{"type":"Polygon","arcs":[[-7742,9220,-2210,-4941,-7768]],"id":"05071"},{"type":"Polygon","arcs":[[-8716,-5944,-8715,-5942,-6016,-5654,-3668]],"id":"47095"},{"type":"Polygon","arcs":[[-3724,-5375,-6941,-6951,-6124,-8007]],"id":"51037"},{"type":"Polygon","arcs":[[-8352,-8640,-8625,-8757,-6063]],"id":"05055"},{"type":"Polygon","arcs":[[9221,-7761,9222,-7749,9223]],"id":"12129"},{"type":"Polygon","arcs":[[9224,-3607,-983,9225]],"id":"26141"},{"type":"Polygon","arcs":[[9226,-8280,-5773,-8303,-2456,-1547]],"id":"17197"},{"type":"Polygon","arcs":[[9227]],"id":"72147"},{"type":"Polygon","arcs":[[-7620,-7616,-5580,-4834,-8891,-7612]],"id":"54081"},{"type":"Polygon","arcs":[[-56,-9072,-507,-6213,-631,-3509,-7505,-9109]],"id":"13045"},{"type":"Polygon","arcs":[[9228,-8719,-5509,-9074,-4408,-8457,-4948,-2596,-4536]],"id":"32023"},{"type":"Polygon","arcs":[[9229,-6808,9230,9231,-5586,-2729]],"id":"55039"},{"type":"Polygon","arcs":[[-2156,-4449,-9053,9232,-7436,-2116]],"id":"19111"},{"type":"Polygon","arcs":[[9233,9234,-8947,-6206,-7921,-7823,9235,-7739]],"id":"36091"},{"type":"Polygon","arcs":[[9236,-4022,9237,-6605,-834,-3803]],"id":"22097"},{"type":"Polygon","arcs":[[-8001,9238,-2658,-4434,9239,-7776]],"id":"40005"},{"type":"Polygon","arcs":[[-7740,-9236,-7822,-4063]],"id":"36035"},{"type":"Polygon","arcs":[[-8002,-6637,-8063,-8065,-2653,-9239,-8000]],"id":"40121"},{"type":"Polygon","arcs":[[-3498,9240,9241,-8219,-7443,-3884,9242]],"id":"39009"},{"type":"Polygon","arcs":[[-8166,-6487,-2704,-863,9243,-8162]],"id":"01131"},{"type":"Polygon","arcs":[[9244,9245,-6189,-5299,-5304,9246,-2364]],"id":"42051"},{"type":"Polygon","arcs":[[9247,-7916,-4851,-4090,-3544,-8223]],"id":"01009"},{"type":"Polygon","arcs":[[-4317,-7039,-3971,-6367,-6498,-753,-3929]],"id":"13129"},{"type":"Polygon","arcs":[[-8912,-8517,-13,9248,-8039,-4700,-8243,-8316]],"id":"22095"},{"type":"Polygon","arcs":[[-5783,-7745,-7729,-7335,-5799]],"id":"42069"},{"type":"Polygon","arcs":[[-9104,9249,-5861,9250,-4232,9251,-4654,9252]],"id":"47145"},{"type":"Polygon","arcs":[[-8732,9253,-3238,-1725,-131]],"id":"72063"},{"type":"Polygon","arcs":[[9254,-8670,9255,-6574,-6889]],"id":"46021"},{"type":"Polygon","arcs":[[-2062,-8839,-7067,-8571,9256,-7650,-3253]],"id":"72153"},{"type":"Polygon","arcs":[[-7225,-7218,-4756,9257,-4019]],"id":"22121"},{"type":"Polygon","arcs":[[-4322,-7475,-1536,-7631,-6428,9258]],"id":"18133"},{"type":"Polygon","arcs":[[-1162,-1131,-8365,-8404,-7518]],"id":"19173"},{"type":"Polygon","arcs":[[-3572,-8148,-2609,-4008,9259,-7171,-7521]],"id":"16011"},{"type":"MultiPolygon","arcs":[[[9260]],[[9261]],[[9262]],[[9263]],[[9264]],[[9265]],[[9266]],[[9267,-7418,-4103,-429,-4518]]],"id":"55003"},{"type":"Polygon","arcs":[[-6870,-9174,-7981,-5485,-8273,-3235,-7348]],"id":"27169"},{"type":"Polygon","arcs":[[9268,-6968,-6903,-2354,-5351,9269,-7385],[-1267]],"id":"51165"},{"type":"Polygon","arcs":[[9270,9271,-4450,-7451]],"id":"30019"},{"type":"Polygon","arcs":[[-7448,-5231,-3740,-3343,-8024]],"id":"54097"},{"type":"Polygon","arcs":[[-8832,9272,-6980,9273]],"id":"72005"},{"type":"Polygon","arcs":[[9274,-4109,-2416,-9254,-8731,-8728]],"id":"72031"},{"type":"Polygon","arcs":[[9275,-8252,-6971,-8838,9276]],"id":"72065"},{"type":"Polygon","arcs":[[9277,-6653,-8982,9278,-8195,-6917]],"id":"48473"},{"type":"Polygon","arcs":[[-1728,-8887,-2693,9279,-3521,-9138]],"id":"72151"},{"type":"Polygon","arcs":[[-6434,-4785,-4601,-7162,-7201]],"id":"18147"},{"type":"Polygon","arcs":[[-8246,9280,-9226,-982,-1572,-7341]],"id":"26031"},{"type":"Polygon","arcs":[[-8995,-8447,-5238,-9003,-8049,-8045,-4814]],"id":"36027"},{"type":"Polygon","arcs":[[-5425,-4589,-9025,-8230,9281,-1471]],"id":"30067"},{"type":"Polygon","arcs":[[-6448,-8937,-3800,-8026,9282]],"id":"22003"},{"type":"Polygon","arcs":[[-2876,-1032,-328,9283,-2897]],"id":"28101"},{"type":"Polygon","arcs":[[-4020,-9258,-4755,-8913,-7719,-4740,9284]],"id":"22047"},{"type":"Polygon","arcs":[[-3530,-4167,-6538,-8950,9285,-6540,-8210]],"id":"29223"},{"type":"Polygon","arcs":[[-7767,-521,-3653,-7423,-6927,-6833]],"id":"40141"},{"type":"Polygon","arcs":[[-742,9286,-3634,-6197,9287,-6190,-353]],"id":"36011"},{"type":"Polygon","arcs":[[-7668,-7598,-7676,9288,-9153]],"id":"13241"},{"type":"Polygon","arcs":[[-3904,-4352,-5315,-4471,-7241,-7393,-8659,-8660,-596]],"id":"05035"},{"type":"Polygon","arcs":[[-9005,-9009,-7844,-832,-7754,-7695,-2404,-3768,9289]],"id":"12063"},{"type":"Polygon","arcs":[[9290,-6736,-138,-2411,-7540,-3398,-4641]],"id":"72021"},{"type":"Polygon","arcs":[[-3400,-7542,-134,-2126,-1101,-3212]],"id":"72041"},{"type":"Polygon","arcs":[[-4701,-4141,-7694,-2349,9291,-2925,-4853]],"id":"01079"},{"type":"Polygon","arcs":[[-8311,-4227,9292,9293,9294]],"id":"21215"},{"type":"Polygon","arcs":[[-8468,9295,-622,-7888,-8426]],"id":"53067"},{"type":"Polygon","arcs":[[9296,9297,-3600,-7414,-257,-1429]],"id":"46011"},{"type":"Polygon","arcs":[[-5721,-5727,-668,-8859,-8852]],"id":"47061"},{"type":"Polygon","arcs":[[-6932,-1648,-5989,-8399,9298]],"id":"48025"},{"type":"Polygon","arcs":[[9299,9300,-8977,-4750,9301]],"id":"24017"},{"type":"Polygon","arcs":[[-5780,-5798,-6885,-6857,9302]],"id":"42113"},{"type":"Polygon","arcs":[[-2231,-7969]],"id":"51830"},{"type":"Polygon","arcs":[[-8599,-7818,9303,-2305]],"id":"48449"},{"type":"Polygon","arcs":[[-2306,-9304,-7817,-3036,-6588]],"id":"48063"},{"type":"Polygon","arcs":[[9304,-5723,-8857,9305]],"id":"47127"},{"type":"Polygon","arcs":[[9306,-7777,-9240,-4438,-9092,9307,9308]],"id":"40013"},{"type":"Polygon","arcs":[[-2331,-109,-6654,-9278,-6916,-7923]],"id":"48185"},{"type":"Polygon","arcs":[[-7752,-2058,-7177,-7757,-9222,9309]],"id":"12073"},{"type":"Polygon","arcs":[[-84,-8940,9310,-2535,9311]],"id":"28025"},{"type":"Polygon","arcs":[[-6120,-8406,9312,-4529,-4126,-8176]],"id":"29087"},{"type":"Polygon","arcs":[[-7323,9313,-6553,-8724,-8796,9314]],"id":"36029"},{"type":"Polygon","arcs":[[-8308,-2979,-7266,-8973,-2922]],"id":"16087"},{"type":"Polygon","arcs":[[-6476,-9086,-8998,-6818,-5979,-4866]],"id":"46055"},{"type":"Polygon","arcs":[[-8061,-9102,-8921,-4370,-7079,-8113,-2655,-8064]],"id":"40079"},{"type":"Polygon","arcs":[[-5947,-8804,-6415,9315,-8258,-5481,-5226]],"id":"54099"},{"type":"Polygon","arcs":[[-7410,9316,-3666,-6137,-5017,-291]],"id":"30079"},{"type":"Polygon","arcs":[[9317,-7831,9318,-2636]],"id":"12033"},{"type":"Polygon","arcs":[[-9163,-8618,9319,-8556,-8605,-59]],"id":"13175"},{"type":"Polygon","arcs":[[9320,-2756,-218,-3247,-872]],"id":"19023"},{"type":"Polygon","arcs":[[9321,-5341,9322,-489,9323,-6097,-3463,-7570]],"id":"41065"},{"type":"Polygon","arcs":[[-5977,-4978,-7710,-1636,-6467,9324]],"id":"31027"},{"type":"Polygon","arcs":[[-8902,9325,-8946,-7452,9326,-8124,9327]],"id":"33011"},{"type":"Polygon","arcs":[[-8393,-5920,-5419,-8688,-9129,9328]],"id":"13251"},{"type":"Polygon","arcs":[[-8676,-9013,-7368,-5333,-6341,-1042]],"id":"31021"},{"type":"MultiPolygon","arcs":[[[-4396,9329,-9044,9330]],[[-9049,9331]],[[-5197,9332]]],"id":"24039"},{"type":"Polygon","arcs":[[-4395,9333,9334,-9045,-9330]],"id":"24047"},{"type":"Polygon","arcs":[[9335,-481,-8858,-6384,-5367,-6764]],"id":"38013"},{"type":"Polygon","arcs":[[9336,9337,9338,-5776]],"id":"18127"},{"type":"Polygon","arcs":[[-8185,-6533,-1971,-2219,-296,-7304]],"id":"29083"},{"type":"Polygon","arcs":[[-6196,9339,-7995,-7918,-7016,-6191,-9288]],"id":"36023"},{"type":"Polygon","arcs":[[-2982,-4002,-5433,-8928,9340]],"id":"16001"},{"type":"Polygon","arcs":[[-2872,-4152,-1153,9341,-1790]],"id":"17175"},{"type":"Polygon","arcs":[[-8992,9342,-2627,-2169,9343,9344]],"id":"38043"},{"type":"Polygon","arcs":[[-6103,-6936,-9083,-9010,-6272,9345]],"id":"51173"},{"type":"Polygon","arcs":[[9346,-1989,-8620,-6224,-6501,-9017]],"id":"13301"},{"type":"Polygon","arcs":[[-7043,9347,-5857,-5658,-6582]],"id":"21201"},{"type":"MultiPolygon","arcs":[[[9348]],[[-1753,-2355,-508,9349]],[[9350]]],"id":"02180"},{"type":"Polygon","arcs":[[-2279,-3532,-1057,-455,9351]],"id":"48415"},{"type":"Polygon","arcs":[[9352,-8402,-8589,-8968,-122,-917]],"id":"48249"},{"type":"Polygon","arcs":[[-9070,-2554,-7814,-2995]],"id":"31095"},{"type":"Polygon","arcs":[[-8235,-6775,-5728,-5719,-9028]],"id":"47015"},{"type":"Polygon","arcs":[[-3394,-1273,-2168,-7471,9353,-6519]],"id":"18017"},{"type":"Polygon","arcs":[[-9273,-8831,-6874,-8576,-6981]],"id":"72099"},{"type":"Polygon","arcs":[[-9316,-6414,-8889,-7621,-7610,-6987,-8259]],"id":"54043"},{"type":"Polygon","arcs":[[9354,-8028,-582,-2734,-9134,-5527,-7285,9355]],"id":"31111"},{"type":"Polygon","arcs":[[-8474,-3170,9356,9357,9358,-7248,-8846]],"id":"17157"},{"type":"Polygon","arcs":[[-9232,9359,-5495,-1484,-5587]],"id":"55131"},{"type":"Polygon","arcs":[[-5386,9360,9361,-6128]],"id":"11001"},{"type":"Polygon","arcs":[[9362,9363,-5008,-6964,-6032]],"id":"51119"},{"type":"Polygon","arcs":[[-3209,9364,-4772,-2581,-2668]],"id":"31061"},{"type":"Polygon","arcs":[[-7195,-5410,-3906,-8932,9365,-8340,9366]],"id":"06001"},{"type":"Polygon","arcs":[[-6129,-9362,9367,9368]],"id":"51510"},{"type":"Polygon","arcs":[[-6060,9369,9370,-2368,-1928]],"id":"05079"},{"type":"Polygon","arcs":[[-6680,9371,-2395,9372,-5395,-8138,-8778,-4583]],"id":"37141"},{"type":"Polygon","arcs":[[-6087,-8309,-7563,-5207,-7197,-9002]],"id":"09003"},{"type":"Polygon","arcs":[[-4093,9373,-8278,-4768]],"id":"17097"},{"type":"Polygon","arcs":[[-6694,-1634,-5422,-9059,-907,-6695,-225,-4528]],"id":"31141"},{"type":"Polygon","arcs":[[-6513,-3030,9374,9375,-4031,-2586]],"id":"20081"},{"type":"Polygon","arcs":[[-3082,-2768,-2659,-4927,-7420,-3718]],"id":"48135"},{"type":"Polygon","arcs":[[-298,-2218,-6006,9376,9377]],"id":"29085"},{"type":"Polygon","arcs":[[-6952,-6943,9378,-8437,-8540,-8323,-8248]],"id":"51025"},{"type":"Polygon","arcs":[[-2743,-9137,-9321,-2465]],"id":"19067"},{"type":"Polygon","arcs":[[9379]],"id":"51600"},{"type":"Polygon","arcs":[[-5438,-8692,-8956,9380,9381,-9147]],"id":"31123"},{"type":"Polygon","arcs":[[9382,-1487,-7954,-4095,-4767,-9113,-3095]],"id":"55127"},{"type":"Polygon","arcs":[[-9130,-3005,-9166,-4680]],"id":"13043"},{"type":"Polygon","arcs":[[-1231,-3081,-1159,9383,-8264,-2091,9384]],"id":"17115"},{"type":"Polygon","arcs":[[-884,-3191,-2650,-2686,-1538,-365,-2195,-9098]],"id":"20063"},{"type":"Polygon","arcs":[[-7859,-8263,-8528,-9117,-6328]],"id":"28041"},{"type":"Polygon","arcs":[[9385,-2760,-2737,9386,-9357,-3169]],"id":"17189"},{"type":"Polygon","arcs":[[9387,-313,-729,-3263,-3579,-3617]],"id":"23019"},{"type":"Polygon","arcs":[[-2522,-2477,-420,-4102,-5908,9388]],"id":"55001"},{"type":"MultiPolygon","arcs":[[[9389]],[[9390]],[[-9118,-8526,9391,-7935,-441]]],"id":"28059"},{"type":"Polygon","arcs":[[9392,-1708,9393,9394,-7174,-7843]],"id":"13071"},{"type":"Polygon","arcs":[[-8117,-6285,-8066,-997,-3855,9395,-9245,-2363,-4841]],"id":"42125"},{"type":"Polygon","arcs":[[-7264,9396,-9334,-4394,-5200,-979]],"id":"10005"},{"type":"Polygon","arcs":[[-3050,9397,-5550,-7413,-3243,-2490,-6307]],"id":"20197"},{"type":"Polygon","arcs":[[-5413,-5406,-7049,-5830,9398,-3407]],"id":"21157"},{"type":"Polygon","arcs":[[-7643,9399,-5228,-5040,-5473,-6470,-6690]],"id":"21175"},{"type":"Polygon","arcs":[[-1320,-6573,-6711,-9181,-308,9400,-5029]],"id":"21177"},{"type":"Polygon","arcs":[[-9182,-4332,-8038,-5743,-7460]],"id":"21213"},{"type":"Polygon","arcs":[[-4118,-1951,-2909,-4956,-8763]],"id":"37035"},{"type":"Polygon","arcs":[[-7331,-7828,-7773,-7846,-7590,-6686]],"id":"40103"},{"type":"Polygon","arcs":[[-4637,9401,-3553,-8613,9402,-6147]],"id":"53013"},{"type":"Polygon","arcs":[[-9284,-7882,-7856,9403,9404]],"id":"28061"},{"type":"Polygon","arcs":[[-7363,-5562,-4788,-4745,-1165,-3178]],"id":"17033"},{"type":"Polygon","arcs":[[-4871,-592,-1431,-3085,-7077,-1426]],"id":"46005"},{"type":"Polygon","arcs":[[-9136,-3644,-6804,-8547,-1064,-6782]],"id":"39069"},{"type":"Polygon","arcs":[[-8917,-2052,-8601,-6797,-9099,-1669]],"id":"39047"},{"type":"Polygon","arcs":[[-3009,-1197,9405,-2782,-9095]],"id":"18041"},{"type":"Polygon","arcs":[[-7821,-6590,-2310,-2326]],"id":"48379"},{"type":"Polygon","arcs":[[-5221,-695,-7398,-2386,-8999,-7779]],"id":"29129"},{"type":"Polygon","arcs":[[9406,-389,-682,9407,9408]],"id":"38027"},{"type":"Polygon","arcs":[[-3086,-586,-8693,-1399,-2038]],"id":"46061"},{"type":"Polygon","arcs":[[-1863,9409,-8622,-8332,-2818]],"id":"39109"},{"type":"Polygon","arcs":[[-1097,-254,-8277,9410,-2484,-2801]],"id":"48367"},{"type":"Polygon","arcs":[[9411,-1099,-2800,-9135,-6044]],"id":"48503"},{"type":"Polygon","arcs":[[-6758,9412,-8790,-4133,-6597,-814]],"id":"48373"},{"type":"Polygon","arcs":[[-6449,-9283,-8027,-5459,-9014]],"id":"22011"},{"type":"Polygon","arcs":[[-8329,-4498,-8539,-345,-4299,9413,-5257]],"id":"49033"},{"type":"Polygon","arcs":[[-2424,-2438,-3732,9414,-5337,9415,-7889,-620]],"id":"53077"},{"type":"MultiPolygon","arcs":[[[9416]],[[-3642,9417,9418,-3146,-6802]]],"id":"39123"},{"type":"Polygon","arcs":[[-4443,-5839,-5080,9419,-7251,-5074]],"id":"17013"},{"type":"Polygon","arcs":[[-7028,-7107,-4073,-9024,-6692,-5867]],"id":"35007"},{"type":"Polygon","arcs":[[-6904,-612,-7074,-6382,-4561,-5702]],"id":"31103"},{"type":"Polygon","arcs":[[-1475,-8569,-8702]],"id":"56017"},{"type":"Polygon","arcs":[[-8348,-5415,-6072,-5625,-9115]],"id":"21007"},{"type":"Polygon","arcs":[[9420,-6911,-1723,-5162,-8789,-9413,-6757,-6892]],"id":"48005"},{"type":"Polygon","arcs":[[-5084,-5966,-5169,-4800,-4992,9421]],"id":"45015"},{"type":"Polygon","arcs":[[-914,9422,-9297,-1428,-590]],"id":"46057"},{"type":"Polygon","arcs":[[-4598,-4208,-6017,9423,-8595,-5841]],"id":"45037"},{"type":"Polygon","arcs":[[-1394,-6933,-9299,-8403,-9353,-916,-3490]],"id":"48297"},{"type":"Polygon","arcs":[[-1368,9424,-848,-8713,-6156]],"id":"27121"},{"type":"Polygon","arcs":[[9425,9426,-8215,-9242,9427]],"id":"39115"},{"type":"Polygon","arcs":[[9428,-5342,-9322,-7569,-8136]],"id":"41027"},{"type":"Polygon","arcs":[[-299,-9378,9429,-7500,9430,-1954]],"id":"29167"},{"type":"Polygon","arcs":[[9431,-2250,9432,-925,-1692]],"id":"48115"},{"type":"Polygon","arcs":[[-2365,-9247,-5307,-7487,-7440,-3216]],"id":"54061"},{"type":"Polygon","arcs":[[-3165,-6046,-237,-3881,-2295]],"id":"48207"},{"type":"Polygon","arcs":[[-235,-2251,-9432,-1691,-497]],"id":"48445"},{"type":"Polygon","arcs":[[-7424,-4667,-1094,-9412,-1076]],"id":"48009"},{"type":"Polygon","arcs":[[-1343,-6455,-2744,-2463,-9169]],"id":"19195"},{"type":"Polygon","arcs":[[-7848,-6647,-4610,-7047,-4733,-5641]],"id":"21001"},{"type":"Polygon","arcs":[[-6421,-9212,-6241,-2284,9433,9434,9435]],"id":"08093"},{"type":"Polygon","arcs":[[-6019,9436,9437,-5085,-9422,-4991,-6771,-1387,9438]],"id":"45075"},{"type":"Polygon","arcs":[[9439,-6422,-9436,9440,-8478]],"id":"08065"},{"type":"Polygon","arcs":[[-8653,-8805,-5949,9441,-5325]],"id":"21089"},{"type":"Polygon","arcs":[[-9289,-7675,9442,9443,-8780,-3924,-9154]],"id":"13137"},{"type":"Polygon","arcs":[[-3499,-9243,-3883,-3890,-9183,-8602]],"id":"39163"},{"type":"Polygon","arcs":[[-8685,-92,-1783,-9057,-781]],"id":"39175"},{"type":"Polygon","arcs":[[-4556,-7709,-8816,-5026,-6732,-9085,9444]],"id":"30003"},{"type":"Polygon","arcs":[[-4431,-4171,-2446,-7881,9445]],"id":"28037"},{"type":"Polygon","arcs":[[-5906,9446],[9447]],"id":"51683"},{"type":"Polygon","arcs":[[-4655,-9252,-4236,9448,-5543,-7488]],"id":"47107"},{"type":"Polygon","arcs":[[9449,-452,-8029,-9355,9450,-903]],"id":"31117"},{"type":"Polygon","arcs":[[-6683,-8004,-8008,-6631]],"id":"40133"},{"type":"Polygon","arcs":[[-4908,-2313,-7871,9451,-6067,9452,-9019,-4663]],"id":"48213"},{"type":"Polygon","arcs":[[-8646,-8674,-8679,-5184,-6094,9453,-7604]],"id":"50001"},{"type":"Polygon","arcs":[[9454,-9381,-8955,-8499,9455,9456,-3836]],"id":"31033"},{"type":"Polygon","arcs":[[9457,-311,-7463,9458,-4897,-4539,-6822]],"id":"47125"},{"type":"Polygon","arcs":[[9459,9460,-4241,-6777,-1108,-688,-2965]],"id":"48035"},{"type":"Polygon","arcs":[[9461,-5431,-1435,-7884,-4138,-9150]],"id":"47181"},{"type":"Polygon","arcs":[[-6837,-3860,-7084,9462,9463,-4205,-4597]],"id":"45071"},{"type":"Polygon","arcs":[[-5767,-923,-8500,-7373,-4070]],"id":"48205"},{"type":"Polygon","arcs":[[-431,-4107,-1466,-4262,-6977]],"id":"55107"},{"type":"Polygon","arcs":[[-3349,9464,-6185,-8895,-6313,-5565]],"id":"28117"},{"type":"Polygon","arcs":[[-2895,9465,-1830,-3560,-4688]],"id":"19035"},{"type":"Polygon","arcs":[[-3029,-1026,-7053,9466,9467,-9375]],"id":"20119"},{"type":"Polygon","arcs":[[-3330,-529,-9018,-500,-1661,-1362]],"id":"48087"},{"type":"Polygon","arcs":[[-6963,-8438,-9379,-6942,-5373]],"id":"51135"},{"type":"Polygon","arcs":[[-2570,9468,-9428,-9241,-3497,-8706]],"id":"39127"},{"type":"Polygon","arcs":[[-3632,-7595,-7730,-7993,-9340,-6195]],"id":"36053"},{"type":"Polygon","arcs":[[-2942,-5824,-5713,-8267,-8420]],"id":"18171"},{"type":"Polygon","arcs":[[-8492,-842,-3160,-3451,-337]],"id":"27085"},{"type":"Polygon","arcs":[[-2486,9469,-9460,-2964]],"id":"48425"},{"type":"Polygon","arcs":[[-1862,-6560,-6564,-8915,-8623,-9410]],"id":"39021"},{"type":"MultiPolygon","arcs":[[[9470,-8378]],[[9471,9472,9473,-8376,9474,-8384]]],"id":"12086"},{"type":"Polygon","arcs":[[-9329,-9128,-4678,-8394]],"id":"13165"},{"type":"Polygon","arcs":[[-5813,9475,-397,-1779,9476,-6815]],"id":"40043"},{"type":"Polygon","arcs":[[-2338,9477,9478,-6922,-9037,-4643]],"id":"40085"},{"type":"Polygon","arcs":[[-4492,-5152,-8808,-6368,-3356]],"id":"13005"},{"type":"Polygon","arcs":[[-314,-9388,-3616]],"id":"23021"},{"type":"Polygon","arcs":[[9479,9480,-1911,-8925]],"id":"39085"},{"type":"Polygon","arcs":[[-5956,-8198,-8875,9481,-2723]],"id":"48089"},{"type":"Polygon","arcs":[[-5667,-5449,-6714,-5925]],"id":"21131"},{"type":"Polygon","arcs":[[-3915,-8443,-8055,-8095,-9176,9482]],"id":"06113"},{"type":"Polygon","arcs":[[-9064,9483,-7790,9484,-5264]],"id":"12007"},{"type":"Polygon","arcs":[[-8949,-4957,-2907,-2765,9485,-5606,-4805]],"id":"37119"},{"type":"Polygon","arcs":[[-8743,-9039,-180,9486,-1155,-3080,-1229,-1850]],"id":"17113"},{"type":"Polygon","arcs":[[-4279,-8137,-7567,-6639,9487]],"id":"41067"},{"type":"Polygon","arcs":[[-7293,-4323,-9259,-6431,-3374,-5561]],"id":"18021"},{"type":"Polygon","arcs":[[-9020,-9453,-6071,-6929,-944]],"id":"48161"},{"type":"Polygon","arcs":[[-7244,9488,-5553,9489,-8975,9490]],"id":"24003"},{"type":"Polygon","arcs":[[-8725,-2862,-7903,-4971,-5005,-8957]],"id":"42083"},{"type":"Polygon","arcs":[[-1681,-7439,-8899,-2711,9491,-3383]],"id":"29103"},{"type":"Polygon","arcs":[[-2673,-7102,-3106,-5541]],"id":"19147"},{"type":"Polygon","arcs":[[-3384,-9492,-2715,-8704,-8367,-4995,9492]],"id":"29121"},{"type":"Polygon","arcs":[[-2537,9493,-8175,-7132,9494,-3205]],"id":"28103"},{"type":"Polygon","arcs":[[-6325,-6665,-2567,-7685,9495,-4169]],"id":"28077"},{"type":"Polygon","arcs":[[-1854,-4310,-1011,-9012,-8416,-9215,-8206,-8213]],"id":"08073"},{"type":"Polygon","arcs":[[-6300,-5322,9496,-2990,-720]],"id":"20077"},{"type":"Polygon","arcs":[[-216,-6439,-1844,-760,-3248]],"id":"19171"},{"type":"Polygon","arcs":[[-9311,-8939,-8172,-8173,-9494,-2536]],"id":"28087"},{"type":"Polygon","arcs":[[-1583,-1955,-9431,-7503,9497,-4027]],"id":"29057"},{"type":"Polygon","arcs":[[-2249,-2280,-9352,-454,-6655,-9433]],"id":"48033"},{"type":"Polygon","arcs":[[-5542,-3109,-3514,-9466]],"id":"19021"},{"type":"Polygon","arcs":[[-6080,-1385,-5432,-9462,-9149,-5091]],"id":"47039"},{"type":"Polygon","arcs":[[-7267,-2983,-9341,-8927,-8974]],"id":"16027"},{"type":"Polygon","arcs":[[-4170,-9496,-7684,-8232,-2106]],"id":"28147"},{"type":"Polygon","arcs":[[-8903,-9328,-8123,-3592,-4823]],"id":"33005"},{"type":"Polygon","arcs":[[-9000,-2384,-3385,-9493,-4994,-1566]],"id":"29115"},{"type":"Polygon","arcs":[[-6816,-9477,-1782,-523,-3329,-2556]],"id":"40129"},{"type":"Polygon","arcs":[[9498,-5910,-7715,9499,-2771,-4523]],"id":"55111"},{"type":"Polygon","arcs":[[-8936,-7634,-9080,-7867,-7228,-4023,-9237,-3802]],"id":"22009"},{"type":"Polygon","arcs":[[-4028,-9498,-7502,-1512,-1663,9500,-1625]],"id":"29109"},{"type":"Polygon","arcs":[[-1060,-8147,-3948,9501,-5282]],"id":"37127"},{"type":"Polygon","arcs":[[-488,-5960,-2046,9502,-6098,-9324]],"id":"41069"},{"type":"Polygon","arcs":[[-5326,-9442,-5948,-5224,9503,-7641]],"id":"21043"},{"type":"Polygon","arcs":[[-5924,9504,-6485,-8754,-4960,-4884]],"id":"37115"},{"type":"MultiPolygon","arcs":[[[-9448]],[[-3685,9505,9506,-8848,-7989],[-5907,-9447]]],"id":"51153"},{"type":"Polygon","arcs":[[-8271,-8072,9507,-8942]],"id":"34007"},{"type":"Polygon","arcs":[[-9408,-681,-2625,9508]],"id":"38031"},{"type":"Polygon","arcs":[[-6970,-6949,-6104,-9346,-6276,-1606,-6658]],"id":"51167"},{"type":"MultiPolygon","arcs":[[[9509]],[[-8807,-5034,-7793,9510,-1642]]],"id":"26041"},{"type":"Polygon","arcs":[[-6602,-4329,-7203,-4382,-7702,-4377,-6247,-66]],"id":"18175"},{"type":"Polygon","arcs":[[-4571,-7377,-4173,-5815,-2881]],"id":"35019"},{"type":"Polygon","arcs":[[-6296,-2785,-9036,-9157,-4415]],"id":"18029"},{"type":"Polygon","arcs":[[-9034,-7214,-9081,9511,-9155]],"id":"21117"},{"type":"MultiPolygon","arcs":[[[-9168,-3582,-7233,9512,-4915]]],"id":"23015"},{"type":"Polygon","arcs":[[-8574,-7356,-3351,-5564,-7281]],"id":"28009"},{"type":"Polygon","arcs":[[-96,-728,-3112,-3743,-8647,-6012]],"id":"19119"},{"type":"Polygon","arcs":[[-6956,9513,-5739,9514,-5270,9515]],"id":"21049"},{"type":"Polygon","arcs":[[9516,9517,-5933,9518,-2763]],"id":"37167"},{"type":"Polygon","arcs":[[-9029,-5717,-9305,9519,9520]],"id":"47003"},{"type":"Polygon","arcs":[[-5354,-5847,-3317,-5371,-3722,9521]],"id":"51029"},{"type":"Polygon","arcs":[[-9219,-9214,-8099,-3757,-7588]],"id":"05089"},{"type":"Polygon","arcs":[[-8405,-6167,-3807,-6175,-4530,-9313]],"id":"29003"},{"type":"Polygon","arcs":[[-2912,-8224,-3548,-8894,-8167,-4501,-8174]],"id":"01125"},{"type":"Polygon","arcs":[[9522,-6737,-9291,-4640,-2417,-1733]],"id":"72135"},{"type":"Polygon","arcs":[[-5089,-5922,-4882,-6577,-4968]],"id":"47063"},{"type":"Polygon","arcs":[[-3731,-4639,-6149,9523,-5958,-5338,-9415]],"id":"53005"},{"type":"Polygon","arcs":[[-8820,-4388,9524,-4723,-8512]],"id":"13191"},{"type":"Polygon","arcs":[[-4781,-4935,-8212,-3154,-7852]],"id":"48109"},{"type":"Polygon","arcs":[[-1987,-8596,-9424,-6022,-8391,-8621]],"id":"13245"},{"type":"Polygon","arcs":[[-9399,-5829,-6823,-6081,-3408]],"id":"21035"},{"type":"Polygon","arcs":[[9525,-5521,-8844,-8944,-9326,-8901]],"id":"33013"},{"type":"MultiPolygon","arcs":[[[-4077,9526]],[[9527,-6790]],[[-8980,9528,-6788]]],"id":"48167"},{"type":"Polygon","arcs":[[-9148,-9382,-9455,-3835,9529,-5682]],"id":"31007"},{"type":"Polygon","arcs":[[-2473,-3281,-6061,-1926,-8760,-7956]],"id":"05053"},{"type":"Polygon","arcs":[[9530,-5140,9531,-4413,9532,-5136]],"id":"34033"},{"type":"Polygon","arcs":[[-6851,-9488,-6642,-8086,-8362,9533]],"id":"41057"},{"type":"Polygon","arcs":[[-7605,-9454,-6096,-8582,-8948,-9235,9534]],"id":"36115"},{"type":"Polygon","arcs":[[9535,-7360,-2821,-2200]],"id":"27077"},{"type":"Polygon","arcs":[[-8111,-7032,-1842,-1006,-4309,-8149,-6238]],"id":"08001"},{"type":"Polygon","arcs":[[9536,-3916,-9483,-9175,-7806,-7581]],"id":"06033"},{"type":"Polygon","arcs":[[-8770,-8819,-1990,-9347,-9016,9537]],"id":"13317"},{"type":"Polygon","arcs":[[-4997,-8369,-6669,-1514,9538]],"id":"29089"},{"type":"Polygon","arcs":[[-6644,9539,-5096,-3467,-230,-6854]],"id":"42011"},{"type":"Polygon","arcs":[[9540,-5877,-5985,-8141,-3429]],"id":"47087"},{"type":"Polygon","arcs":[[9541,-5913,-140,-7628,-152,-9172]],"id":"72091"},{"type":"Polygon","arcs":[[-2988,-8025,-3341,-8829,-6729,-6946]],"id":"54007"},{"type":"Polygon","arcs":[[-7042,9542,-8455,-5329,-5854,-9348]],"id":"21161"},{"type":"Polygon","arcs":[[9543,-9159,-7277,-8962,9544]],"id":"26021"},{"type":"Polygon","arcs":[[-9487,-179,-8421,-5041,-1156]],"id":"17019"},{"type":"Polygon","arcs":[[-4510,-7386,-9270,-5350,9545,-8633,-7608],[-7075],[-807]],"id":"51015"},{"type":"Polygon","arcs":[[-3285,-6346,-3765,-7192,9546,-9370,-6059]],"id":"05001"},{"type":"Polygon","arcs":[[-8494,-8877,-2125,-8787,-8879,-7985]],"id":"13079"},{"type":"Polygon","arcs":[[-3378,-6512,-6432,-6292,-4790]],"id":"18027"},{"type":"MultiPolygon","arcs":[[[9547]],[[9548,-7055]],[[-4628,9549]],[[-7059,9550]]],"id":"37055"},{"type":"Polygon","arcs":[[-3943,-3661,-9317,-7409]],"id":"30021"},{"type":"Polygon","arcs":[[-8079,-690,-1111,-1699,-5970,-6895]],"id":"48281"},{"type":"Polygon","arcs":[[-7493,-6114,-1740,9551,-7759]],"id":"12123"},{"type":"Polygon","arcs":[[9552,-7036,-4315]],"id":"13047"},{"type":"Polygon","arcs":[[-755,-6154,-6208,-505,-9071]],"id":"13067"},{"type":"MultiPolygon","arcs":[[[-4742,-7724,-4266]],[[-4021,-9285,-4739,-6606,-9238]]],"id":"22099"},{"type":"Polygon","arcs":[[-7370,-3366,9553,-7687,-2373,-8449,-7390]],"id":"28135"},{"type":"Polygon","arcs":[[-9377,-6005,-1564,-895,-7501,-9430]],"id":"29059"},{"type":"Polygon","arcs":[[-3947,-4178,-5191,-4576,-5283,-9502]],"id":"37195"},{"type":"Polygon","arcs":[[-1620,-6117,-390,-9407,9554,-8904]],"id":"38005"},{"type":"Polygon","arcs":[[-9464,9555,9556,-9437,-6018,-4206]],"id":"45063"},{"type":"Polygon","arcs":[[-1712,-2770,-2857,-8553,-1887,-4296,-9161]],"id":"48137"},{"type":"Polygon","arcs":[[-4318,-3927,-4549,-4362]],"id":"13055"},{"type":"Polygon","arcs":[[9557,-3470,-7185,9558,9559]],"id":"24025"},{"type":"Polygon","arcs":[[-5934,-5752,-5833,-6754,-5101,-4198,-5093,-4987]],"id":"45069"},{"type":"Polygon","arcs":[[-2998,-7664,-5551,-9398,-3049,-3180]],"id":"20161"},{"type":"Polygon","arcs":[[-5741,-7283,-1599,-1312,-9158,9560]],"id":"26005"},{"type":"Polygon","arcs":[[-6667,-5242,-5362,-5012,-7636]],"id":"29051"},{"type":"Polygon","arcs":[[-7771,-7827,9561,9562,-3844,-4193,-2717]],"id":"40143"},{"type":"Polygon","arcs":[[-3695,-8319,-6092,-5273,-1904,9563]],"id":"48187"},{"type":"Polygon","arcs":[[-8592,-9142,9564,-8680,-8672,-2512]],"id":"50005"},{"type":"Polygon","arcs":[[-5588,-1488,-9383,-3094,-7716]],"id":"55055"},{"type":"Polygon","arcs":[[-8022,9565,-5131,9566,9567]],"id":"42001"},{"type":"Polygon","arcs":[[-6303,-7707,-3359,-3369,-8089,-8575]],"id":"20105"},{"type":"MultiPolygon","arcs":[[[-9033,9568]],[[9569]]],"id":"53029"},{"type":"Polygon","arcs":[[9570,-4895,-5978,-9325,-6466,-652,-5279,-7073]],"id":"31107"},{"type":"Polygon","arcs":[[-8721,-8013,9571,-4534,-9145,-8294,-9062]],"id":"32019"},{"type":"Polygon","arcs":[[-7642,-9504,-5223,-9400]],"id":"21063"},{"type":"Polygon","arcs":[[-4615,-5272,-4591,-6713,-6479,9572]],"id":"21079"},{"type":"Polygon","arcs":[[-5666,-5047,-5734,-6656,-5451]],"id":"21133"},{"type":"Polygon","arcs":[[-3057,-4695,9573,-7205,-7310]],"id":"21223"},{"type":"Polygon","arcs":[[-4235,-6077,-8119,-8120,-5544,-9449]],"id":"47123"},{"type":"Polygon","arcs":[[-2343,-7929,-7991,-2351,-6902]],"id":"51113"},{"type":"Polygon","arcs":[[-7108,-3419,-1351,-2757,-9386,-3168]],"id":"17027"},{"type":"Polygon","arcs":[[-4720,9574,-9473,9575,-8817]],"id":"12011"},{"type":"Polygon","arcs":[[-9376,-9468,9576,-6882,-4032]],"id":"20175"},{"type":"Polygon","arcs":[[-7870,-8649,-6912,-9421,-6891,-6068,-9452]],"id":"48073"},{"type":"Polygon","arcs":[[-9547,-7191,-3601,-7464,-2369,-9371]],"id":"05041"},{"type":"Polygon","arcs":[[-9260,-4007,-4493,-8331,-8441,-7168]],"id":"16029"},{"type":"Polygon","arcs":[[-4578,-3827,-4231,-2396,-9372,-6679]],"id":"37061"},{"type":"Polygon","arcs":[[-8090,-3372,-8868,-6443,-6604,-6437]],"id":"20009"},{"type":"Polygon","arcs":[[-1781,9577,-7765,-525]],"id":"40149"},{"type":"Polygon","arcs":[[-7150,-6354,-6423,-9440,-8477,-1769]],"id":"08037"},{"type":"Polygon","arcs":[[-2054,-8741,-5796,-5793,-7573,-8081]],"id":"39099"},{"type":"Polygon","arcs":[[-5155,9578,-8397,-8034,-7962,-4844]],"id":"01087"},{"type":"Polygon","arcs":[[-8413,-1879,-6627,-1865,-2817,-477]],"id":"39107"},{"type":"Polygon","arcs":[[-3684,-5387,-6131,-3066,-6130,-9369,9579,-9300,9580,-9506],[-9380]],"id":"51059"},{"type":"Polygon","arcs":[[-9068,9581,-4257,-1438,-4106]],"id":"55085"},{"type":"Polygon","arcs":[[-8615,-2919,-2041,9582]],"id":"41061"},{"type":"Polygon","arcs":[[-6020,-9439,-1390,-5919,-8392]],"id":"45011"},{"type":"Polygon","arcs":[[9583,-350,-8318,-5571]],"id":"49051"},{"type":"MultiPolygon","arcs":[[[9584]],[[9585]],[[-6179,-8182,9586]],[[9587]]],"id":"26089"},{"type":"Polygon","arcs":[[-7437,-9233,-9052,-3145,-5380,-8784,-8898]],"id":"17067"},{"type":"Polygon","arcs":[[9588,-5853,-1525,9589,-1493]],"id":"51193"},{"type":"Polygon","arcs":[[-3556,-7507,-3956,-8398,-9579,-5154,-8187]],"id":"01123"},{"type":"Polygon","arcs":[[-1707,-8538,-8772,9590,-9394]],"id":"13075"},{"type":"MultiPolygon","arcs":[[[-5309,9591]],[[9592]]],"id":"26083"},{"type":"Polygon","arcs":[[-3206,-9495,-7131,-324,-1031]],"id":"28069"},{"type":"Polygon","arcs":[[-1066,-8546,-1875,-2141]],"id":"39125"},{"type":"Polygon","arcs":[[-5923,-1463,-7458,-4624,-6482,-9505]],"id":"47171"},{"type":"Polygon","arcs":[[-9021,-4489,-8558,9593]],"id":"13209"},{"type":"Polygon","arcs":[[-9395,-9591,-8774,-7490,-7758,-7175]],"id":"13027"},{"type":"Polygon","arcs":[[-3837,-9457,9594,-2888,-2889,-1008,-1841,-7031]],"id":"08075"},{"type":"Polygon","arcs":[[-1784,-90,-6662,-930,-1907]],"id":"39117"},{"type":"Polygon","arcs":[[-8883,-1902,9595,-9426,-9469,-2569]],"id":"39119"},{"type":"Polygon","arcs":[[-8686,-4811,9596,-7098]],"id":"13051"},{"type":"Polygon","arcs":[[-8882,-8886,-1824,-7179,9597,-8521]],"id":"13061"},{"type":"Polygon","arcs":[[-9456,-8498,-7286,-2885,-9595]],"id":"08115"},{"type":"Polygon","arcs":[[-3775,-7211,-8488,-8914,-1872,9598,-2969]],"id":"12105"},{"type":"Polygon","arcs":[[9599,-9308,-9093,-7938,-2323,-4920]],"id":"48147"},{"type":"Polygon","arcs":[[-6073,-3411,-7498,-6014,-5940,-5627]],"id":"21105"},{"type":"Polygon","arcs":[[-8854,-8861,-7837,-4360,-7915,-9144]],"id":"01071"},{"type":"Polygon","arcs":[[-8776,-3501,-8031,-8396,9600]],"id":"13215"},{"type":"Polygon","arcs":[[9601,-9120,-3938,-8134,-4150,-2870,-8544]],"id":"17195"},{"type":"Polygon","arcs":[[9602,-8918,-8486,-2440,-7948]],"id":"12009"},{"type":"Polygon","arcs":[[-3312,-9124,-1709,-9393,-7842,-7840,-9164]],"id":"13321"},{"type":"Polygon","arcs":[[-8809,-8513,-4726,-9185,-5110,-6370]],"id":"13025"},{"type":"Polygon","arcs":[[-1780,-395,-9220,-2302,-517,-7766,-9578]],"id":"40015"},{"type":"Polygon","arcs":[[9603,-9520,-9306,-8856,-9143,-7692,-1071]],"id":"47103"},{"type":"Polygon","arcs":[[-6794,-4842,-3221,-7402,-8217,9604]],"id":"39111"},{"type":"Polygon","arcs":[[9605,-4521,-7980,-8663]],"id":"55081"},{"type":"Polygon","arcs":[[-6263,-3833,-4807,-3857,-7705]],"id":"45021"},{"type":"Polygon","arcs":[[-5399,-5108,-200,-8694,-4258,-9582,-9067]],"id":"55041"},{"type":"Polygon","arcs":[[-789,-6957,-9516,-5269,-4613,9606]],"id":"21067"},{"type":"Polygon","arcs":[[-383,-4048,-6407,-6551,-9314,-7322]],"id":"36037"},{"type":"Polygon","arcs":[[9607,9608,9609,-6477,-9027]],"id":"21229"},{"type":"Polygon","arcs":[[-8146,9610,-6721,9611,-4179,-3945]],"id":"37117"},{"type":"Polygon","arcs":[[-3292,-7704,-6884,-3949,-5766,-4068]],"id":"40025"},{"type":"Polygon","arcs":[[-5104,-6201,-5166,-5965,-4200]],"id":"45067"},{"type":"Polygon","arcs":[[-860,-8328,-1808,-9007,-2807,-303,9612,-6491]],"id":"01039"},{"type":"MultiPolygon","arcs":[[[9613]],[[9614]],[[-7142,-1984,-7090,9615,-7087]]],"id":"06037"},{"type":"Polygon","arcs":[[-8773,-7012,-7536,-7221,-7492]],"id":"12047"},{"type":"Polygon","arcs":[[-7145,-8818,-9576,-9472,-8383,9616]],"id":"12021"},{"type":"Polygon","arcs":[[-2831,-6115,-1306,-8959,-4902,9617,-6160]],"id":"20125"},{"type":"Polygon","arcs":[[-3153,-6116,-5447,-7118,-3983,-5837,-845]],"id":"17193"},{"type":"Polygon","arcs":[[-492,-1626,-9501,-1666,-7135,-4145]],"id":"29009"},{"type":"Polygon","arcs":[[-78,-9111,-7234,-1591,-6453,-9112]],"id":"26125"},{"type":"Polygon","arcs":[[-5487,-4525,-7528,-7911,-5293]],"id":"19005"},{"type":"Polygon","arcs":[[-6161,-9618,-4906,9618,-9562,-7826]],"id":"40147"},{"type":"Polygon","arcs":[[9619,-4486,-6381,-6670,-6203]],"id":"30005"},{"type":"Polygon","arcs":[[-5852,9620,-1527]],"id":"51103"},{"type":"Polygon","arcs":[[-6371,-5113,-7486,-9209,-7791,-9484,-9063,-7537,-7274]],"id":"12003"},{"type":"Polygon","arcs":[[-1244,-7973,-6532,-7632,-4757,-9170]],"id":"22127"},{"type":"Polygon","arcs":[[-7647,-9030,-9521,-9604,-1070,-5457]],"id":"47117"},{"type":"Polygon","arcs":[[-1494,-9590,-1529,9621,-9363,-6031,-5612]],"id":"51057"},{"type":"Polygon","arcs":[[-479,-2816,-1193,-3008,-8863]],"id":"18135"},{"type":"Polygon","arcs":[[9622,-732,-9061,-8643]],"id":"30101"},{"type":"Polygon","arcs":[[-3619,-9167,-5555,-5883,9623]],"id":"23007"},{"type":"Polygon","arcs":[[-1309,-1115,-5318,-2638,9624,-1597]],"id":"26045"},{"type":"Polygon","arcs":[[-8439,-1232,-9385,-2094,-6998,-2955,-5215,-5176]],"id":"17167"},{"type":"Polygon","arcs":[[9625,-4013,9626,-9088]],"id":"25001"},{"type":"Polygon","arcs":[[9627,-6765,-5370,-4451,-9272]],"id":"30091"},{"type":"Polygon","arcs":[[-7376,-8445,-6824,-1000,-8105,-8758,-4175]],"id":"35041"},{"type":"Polygon","arcs":[[-9497,-5321,-7332,-6684,-2991]],"id":"40053"},{"type":"Polygon","arcs":[[-8021,9628,-3471,-9558,9629,-5132,-9566]],"id":"42133"},{"type":"Polygon","arcs":[[-1748,-6283,-6499,-7071,-865,-8926]],"id":"13237"},{"type":"Polygon","arcs":[[-9443,-7674,-8736,9630]],"id":"13257"},{"type":"Polygon","arcs":[[-9444,-9631,-8737,-1892,-9090,-8781]],"id":"13011"},{"type":"Polygon","arcs":[[-5777,-9339,-1554,-3396,-6521,-2939,-9091]],"id":"18073"},{"type":"Polygon","arcs":[[-3362,-646,-5050,-9097,-8866,-3370]],"id":"20113"},{"type":"Polygon","arcs":[[-9094,-8815,-6311,-1360,9631,-3459]],"id":"27097"},{"type":"Polygon","arcs":[[-5126,-7054,-1061,-5286,-7015,-5463]],"id":"37183"},{"type":"Polygon","arcs":[[-3605,-7392,-6465,-7062,-7700,-7465]],"id":"28151"},{"type":"Polygon","arcs":[[-9131,-9121,-9602,-8543,-7119,-284,-2616]],"id":"19045"},{"type":"Polygon","arcs":[[-7606,-9535,-9234,-7738]],"id":"36113"},{"type":"Polygon","arcs":[[-9244,-862,-6493,9632,-2634,-8163]],"id":"01099"},{"type":"Polygon","arcs":[[-5465,-7014,-6748]],"id":"37105"},{"type":"Polygon","arcs":[[-9630,-9560,9633,-5554,-9489,-7243,-5133]],"id":"24005"},{"type":"Polygon","arcs":[[-8860,-666,-795,9634,-4657,-7489,-7037,-9553,-4314,-7836]],"id":"47065"},{"type":"Polygon","arcs":[[-163,9635,-9567,-5135,-7242,-5383,-3682]],"id":"24021"},{"type":"Polygon","arcs":[[-5656,-1532,-5298,-5313,-4348]],"id":"47097"},{"type":"Polygon","arcs":[[-7994,-7732,-46,-2815,-8994,-8017,-7727,-7920]],"id":"36025"},{"type":"Polygon","arcs":[[-4088,-6278,-9108,-3558,-8186,-8083]],"id":"01121"},{"type":"Polygon","arcs":[[-1598,-9625,-2643,-3068,-1176,-1314]],"id":"26025"},{"type":"Polygon","arcs":[[-8479,-9441,-9435,9636,-6357,-7003]],"id":"08015"},{"type":"Polygon","arcs":[[-1158,-5043,9637,-8265,-9384]],"id":"17139"},{"type":"Polygon","arcs":[[-8988,-6321,-7686,-9554,-3365,-7395]],"id":"28107"},{"type":"Polygon","arcs":[[-8256,-8554,-5973,-1974]],"id":"30039"},{"type":"Polygon","arcs":[[-9540,-6643,-4893,-8941,-6332,-5097]],"id":"42091"},{"type":"Polygon","arcs":[[-8193,-6813,-5771,9638,-5595,-5056,-5963]],"id":"42061"},{"type":"Polygon","arcs":[[-8196,-9279,-8981,-6786,-8873]],"id":"48157"},{"type":"Polygon","arcs":[[-6099,-9503,-2045,-4282,-6696]],"id":"41013"},{"type":"Polygon","arcs":[[-8145,-8326,-6596,9639,-6722,-9611]],"id":"37015"},{"type":"Polygon","arcs":[[-8662,-2523,-9389,-5911,-9499,-4522,-9606]],"id":"55057"},{"type":"Polygon","arcs":[[-2337,-7778,-9307,9640,-9478]],"id":"40095"},{"type":"Polygon","arcs":[[-1696,-676,-8054,-7930,-8005,-4287]],"id":"48331"},{"type":"Polygon","arcs":[[-6181,-4159,-2828,-1329,-567]],"id":"26165"},{"type":"Polygon","arcs":[[-8996,-5891,-9517,-2762,-2906]],"id":"37159"},{"type":"Polygon","arcs":[[-790,-9607,-4612,9641,9642,-2708]],"id":"21239"},{"type":"Polygon","arcs":[[-7051,-7160,-5810,-5811,-6814,9643]],"id":"40059"},{"type":"Polygon","arcs":[[-819,-6847,-6809,-9230,-2728,-417]],"id":"55139"},{"type":"Polygon","arcs":[[-5030,-9401,-307,-9458,-6821,-5827,-6473]],"id":"21047"},{"type":"Polygon","arcs":[[-3063,-799,-8910,-2604,-5462,-1182]],"id":"37001"},{"type":"Polygon","arcs":[[-9515,-5738,-1296,-3786,-5271]],"id":"21065"},{"type":"Polygon","arcs":[[-3854,-4955,-6566,-3444,-6188,-9246,-9396]],"id":"42129"},{"type":"Polygon","arcs":[[-6089,-4998,-9539,-1513,-1968,-5357]],"id":"29195"},{"type":"Polygon","arcs":[[9644,-739,-8828,-5594,-911,-588,-4870]],"id":"46037"},{"type":"Polygon","arcs":[[9645,-7585,-3696,-9564,-1903,-1391,-6173]],"id":"48029"},{"type":"Polygon","arcs":[[-1718,-8635,-4673,-7997,-8006,-7891,-7554,9646]],"id":"51019"},{"type":"Polygon","arcs":[[-8824,-9100,-6801,-8452,-9543,-7041]],"id":"39015"},{"type":"Polygon","arcs":[[-9524,-6148,-9403,-8616,-9583,-2040,-5959]],"id":"41059"},{"type":"Polygon","arcs":[[-425,-5862,-9250,-9103,-5936]],"id":"47129"},{"type":"Polygon","arcs":[[-8220,-1719,-9647,-7553,-7405,-4633],[-7516,-2866]],"id":"51161"},{"type":"Polygon","arcs":[[-8799,-8850]],"id":"51630"},{"type":"Polygon","arcs":[[-8530,-1702,-5712,-5203,-717,9647,-8463]],"id":"53063"},{"type":"Polygon","arcs":[[-8218,-7403,-7400,-7445]],"id":"54073"},{"type":"Polygon","arcs":[[9648,-9277,-8837,-6877,-8836]],"id":"72027"},{"type":"Polygon","arcs":[[-9577,-9467,-7052,-9644,-6817,-1200,-5995,-6883]],"id":"40007"},{"type":"Polygon","arcs":[[-3867,-6716,9649,-2647,-4966,-8417,-6397]],"id":"47025"},{"type":"Polygon","arcs":[[-1216,-5998,-5130,-4832,-6187,-4710,-6347,-5645]],"id":"04001"},{"type":"Polygon","arcs":[[-9041,-211,-8777,-9601,-8395,-3954]],"id":"13145"},{"type":"Polygon","arcs":[[-7696,-7753,-9310,-9224,-7748,-7755]],"id":"12077"},{"type":"Polygon","arcs":[[-8313,-7937,9650,9651]],"id":"28045"},{"type":"Polygon","arcs":[[9652,-4798,-7640,-8740,-1912,-9481]],"id":"39007"},{"type":"Polygon","arcs":[[-2163,-6419,-3912,-9537,-7580]],"id":"06021"},{"type":"Polygon","arcs":[[-8958,-7258,-8562,-8960,-9054,9653,-4904]],"id":"40035"},{"type":"Polygon","arcs":[[-7156,-8738,-7334,-5192,-8347]],"id":"17087"},{"type":"Polygon","arcs":[[-7252,-9420,-5079,-7110,-8515,-3808,-1283]],"id":"29183"},{"type":"Polygon","arcs":[[9654,-2833,-6163,-7825,-7329,-5319]],"id":"20035"},{"type":"Polygon","arcs":[[-7467,-3790,-7432,-8150]],"id":"22123"},{"type":"Polygon","arcs":[[9655,-9344,-2173,-8671,-9255,-6888,-5871,-4184]],"id":"38029"},{"type":"Polygon","arcs":[[-6542,9656,-8638,-8350,-8801]],"id":"29181"},{"type":"Polygon","arcs":[[-8933,-201,-1278,9657,-9126]],"id":"06087"},{"type":"Polygon","arcs":[[-4371,-3963,-2953,-7579,9658]],"id":"06023"},{"type":"Polygon","arcs":[[-8669,-334,9659,-2451,-6575,-9256]],"id":"46089"},{"type":"Polygon","arcs":[[-1086,-8464,-9648,-716,-8485,-7654,9660,-3550,-9402,-4636]],"id":"53075"},{"type":"Polygon","arcs":[[9661,-8531,-8461,-4081]],"id":"53019"},{"type":"Polygon","arcs":[[-6505,-193,-9165,-7838,-1826,-8885]],"id":"13273"},{"type":"Polygon","arcs":[[-634,-1896,-8771,-9538,-9015,-6280,-8878]],"id":"13221"},{"type":"Polygon","arcs":[[-8229,-4557,-9445,-9084,-1472,-9282]],"id":"30009"},{"type":"Polygon","arcs":[[-5617,-5683,-9530,-3839,-7030,-8188,-5347]],"id":"56021"},{"type":"Polygon","arcs":[[-638,-1559,-3780,-74,-6601,-7007]],"id":"18005"},{"type":"Polygon","arcs":[[-9156,-9512,-9082,-6579,-786,-6718,-6746]],"id":"21081"},{"type":"MultiPolygon","arcs":[[[9662]],[[-9419,9663,-8753,-4188,-3147]]],"id":"39043"},{"type":"Polygon","arcs":[[9664,-9642,-4616,-9573,-6478,-9610]],"id":"21167"},{"type":"Polygon","arcs":[[-7362,-7366,-2075,-8667,-987,-33]],"id":"27027"},{"type":"Polygon","arcs":[[-5889,-6691,-5735,-9514,-6955]],"id":"21173"},{"type":"Polygon","arcs":[[-5890,-1185,-6751,-5749,-9518]],"id":"37123"},{"type":"Polygon","arcs":[[-9178,9665,-7546,-8862,-8791,-839,-8491]],"id":"27053"},{"type":"Polygon","arcs":[[-4216,-6391,-1322,-5028,-6472,-5929]],"id":"21233"},{"type":"Polygon","arcs":[[9666,-9545,-8963,-1550,-9338]],"id":"18091"},{"type":"Polygon","arcs":[[-2652,-6259,9667,-2479,-1303]],"id":"20011"},{"type":"Polygon","arcs":[[-9486,-2764,-9519,-5932,-4985,-5607]],"id":"37179"},{"type":"Polygon","arcs":[[-8101,9668,-4626,-8282]],"id":"51810"},{"type":"Polygon","arcs":[[-8696,9669,-6997,-853,-6806,-6846,-9101]],"id":"55009"},{"type":"Polygon","arcs":[[-9637,-9434,-2283,-8214,-3194,-8208,-6358]],"id":"08043"},{"type":"Polygon","arcs":[[9670,-9404,-7860,-6326,-7885,-7783]],"id":"28067"},{"type":"Polygon","arcs":[[-3208,-1947,-379,-7306,-7659,-4773,-9365]],"id":"31181"},{"type":"Polygon","arcs":[[-8283,-4630,9671,-7987,-7976,-8204]],"id":"37029"},{"type":"Polygon","arcs":[[-9411,-8276,-4665,-4237,-9461,-9470,-2485]],"id":"48251"},{"type":"Polygon","arcs":[[-1771,-8480,-7001,-6243,-2100,-9060]],"id":"08077"},{"type":"Polygon","arcs":[[-5865,-6671,-5605,-4586,-1960]],"id":"30013"},{"type":"Polygon","arcs":[[-5051,-644,-1107,-364,-2834,-9655,-4692]],"id":"20015"},{"type":"Polygon","arcs":[[-6386,-5189,-5819,-8851,-1756,-9114]],"id":"38025"},{"type":"Polygon","arcs":[[-5474,-4300,-351,-9584,-5570,-8374]],"id":"49035"},{"type":"Polygon","arcs":[[-6924,9672,-4923,-8570,-8274,-252]],"id":"48121"},{"type":"Polygon","arcs":[[-2182,-4659,-119,-685,-1403,-4896,-9571,-7072,-610]],"id":"46023"},{"type":"Polygon","arcs":[[-9546,-5355,-9522,-3721,-4670,-8634]],"id":"51125"},{"type":"Polygon","arcs":[[-7544,-3213,-1104,9673,-112,-4098,-6110]],"id":"72043"},{"type":"Polygon","arcs":[[-8905,-9555,-9409,-9509,-2624,-9343,-8991]],"id":"38103"},{"type":"Polygon","arcs":[[9674,-6738,-9523,-1732]],"id":"72051"},{"type":"Polygon","arcs":[[-1791,-9342,-1152,-8744,-1848,-4042]],"id":"17143"},{"type":"Polygon","arcs":[[-6334,-8943,-9508,-8076,-4409,-9532,-5139]],"id":"34015"},{"type":"Polygon","arcs":[[-649,-5653,-5619,-7547,-9666,-9177]],"id":"27003"},{"type":"Polygon","arcs":[[-333,-7649,-740,-9645,-4869,-7883,-2452,-9660]],"id":"46013"},{"type":"Polygon","arcs":[[-5808,-2993,-6688,-1370,-392,-9476,-5812]],"id":"40093"},{"type":"Polygon","arcs":[[-913,-5593,-5248,-7960,-3598,-9298,-9423]],"id":"46039"},{"type":"Polygon","arcs":[[-1991,9675]],"id":"02230"},{"type":"Polygon","arcs":[[-1608,-6275,-6056,-6274,-4646,-7456,-1461,-5087]],"id":"47163"},{"type":"Polygon","arcs":[[-6393,-5444,9676]],"id":"44001"},{"type":"Polygon","arcs":[[-8418,-4970,-6578,-5503,-6074,-4233,-9251,-5860]],"id":"47093"},{"type":"Polygon","arcs":[[-8703,-811,-1460,-5349,-460,-7149,-8440,-5901]],"id":"56007"},{"type":"Polygon","arcs":[[-5536,-6855,-232,-3466,-9629,-8020,-8636]],"id":"42043"},{"type":"Polygon","arcs":[[-7533]],"id":"51580"},{"type":"Polygon","arcs":[[-2772,-9500,-7718,-8717,-8709,-7861]],"id":"55049"},{"type":"Polygon","arcs":[[-6867,-9107,-6864,-9106,-792,-664,-5726]],"id":"47175"},{"type":"Polygon","arcs":[[-2855,-7586,-9646,-6172,-1889,-8552]],"id":"48019"},{"type":"Polygon","arcs":[[-9006,-9290,-3767,-2809]],"id":"12059"},{"type":"Polygon","arcs":[[-5340,-490,-9323]],"id":"41055"},{"type":"Polygon","arcs":[[-8522,-9598,-7178,-9008,-8337]],"id":"01067"},{"type":"Polygon","arcs":[[-8750,-8301,-5524,-7389,-5515,-7805,-8708]],"id":"05139"},{"type":"Polygon","arcs":[[-7897,-8228,-6969,-9269,-7384,-8593]],"id":"54031"},{"type":"Polygon","arcs":[[-9152,-5880,9677,-8133,-4335,-5121,-1081,-9076]],"id":"22017"},{"type":"Polygon","arcs":[[-2548,-7524,-7123,-3960]],"id":"41029"},{"type":"Polygon","arcs":[[-7122,-4054,-8010,-8481,-555,-3962]],"id":"06049"},{"type":"Polygon","arcs":[[-7355,-5389,-9151,-6186,-9465,-3348]],"id":"28003"},{"type":"Polygon","arcs":[[-9216,-8484,-3288,-7106,-2274]],"id":"08011"},{"type":"Polygon","arcs":[[-7630,-7008,-6603,-64,-3376,-6430]],"id":"18105"},{"type":"Polygon","arcs":[[-8312,-9295,9678,-3988]],"id":"21029"},{"type":"Polygon","arcs":[[-1901,-6795,-9605,-8216,-9427,-9596]],"id":"39121"},{"type":"Polygon","arcs":[[-4226,-2709,-9643,-9665,-9609,9679,-9293]],"id":"21005"},{"type":"Polygon","arcs":[[-9679,-9294,-9680,-9608,-9026,-5690,-3989]],"id":"21179"},{"type":"Polygon","arcs":[[-6919,-5258,-9414,-4302,-5476]],"id":"49057"},{"type":"Polygon","arcs":[[-6907,-6051,-1218,-708,-3,-7941]],"id":"49025"},{"type":"Polygon","arcs":[[-3271,-8987,-8071,-8132,-9678,-5879,-5670]],"id":"05091"},{"type":"Polygon","arcs":[[-7083,-7520,-5850,9680,-9556,-9463]],"id":"45079"},{"type":"Polygon","arcs":[[-9485,-7789,-8430,-2435,-7946,9681,-5265]],"id":"12107"},{"type":"Polygon","arcs":[[9682,-5835,-8739,-7154,-7249,-9359]],"id":"17077"},{"type":"Polygon","arcs":[[-9612,-6726,-7061,9683,-6719,-3876,-4180]],"id":"37013"},{"type":"Polygon","arcs":[[-356,-6554,-7951,9684]],"id":"36123"},{"type":"Polygon","arcs":[[-8037,-3416,-5878,-9541,-3428,-1206,-5745]],"id":"47111"},{"type":"Polygon","arcs":[[-4297,-960,-5469,-8871,9685]],"id":"48323"},{"type":"Polygon","arcs":[[-989,-8668,-6608,-6159,-7260,-8827]],"id":"27155"},{"type":"Polygon","arcs":[[-8678,-8720,-9229,-4535,-9572,-8012]],"id":"32001"},{"type":"Polygon","arcs":[[-5024,-5676,-8723,-1455,-5759,-6733]],"id":"56005"},{"type":"Polygon","arcs":[[-7690,-7890,-9416,-5343,-9429,-8135,-5490]],"id":"53059"},{"type":"Polygon","arcs":[[-1936,-2445,-8607,-8766,-3476,-9123,-3310]],"id":"13315"},{"type":"MultiPolygon","arcs":[[[-8841,9686,-7624]]],"id":"72053"},{"type":"Polygon","arcs":[[-9105,-9253,-4653,-9635,-794]],"id":"47143"},{"type":"Polygon","arcs":[[-1299,-6471,-5471,-5049,-5665,-3744]],"id":"21025"},{"type":"Polygon","arcs":[[-6258,-7305,-301,-1953,-1581,-2480,-9668]],"id":"29217"},{"type":"Polygon","arcs":[[-9633,-6492,-9613,-302,-7829,-9318,-2635]],"id":"01053"},{"type":"Polygon","arcs":[[-5266,-9682,-7949,-7208,-3773,-7698,-7271]],"id":"12083"},{"type":"Polygon","arcs":[[-9661,-7658,-8614,-3551]],"id":"53003"},{"type":"Polygon","arcs":[[-9286,-8952,-8627,-8639,-9657,-6541]],"id":"29023"},{"type":"Polygon","arcs":[[-7250,-7159,-9116,-6036,-8951,-6536]],"id":"29031"},{"type":"Polygon","arcs":[[-5453,-6659,-1611,-2644,-9650,-6715]],"id":"51105"},{"type":"Polygon","arcs":[[-2926,-9292,-2348,-7917,-9248,-8222]],"id":"01043"},{"type":"Polygon","arcs":[[-5042,-3437,-7364,-3339,-8266,-9638]],"id":"17029"},{"type":"Polygon","arcs":[[-9354,-7472,-2503,-5822,-6520]],"id":"18015"},{"type":"MultiPolygon","arcs":[[[9687]],[[-8160,-7166,9688,-8042]]],"id":"22075"},{"type":"Polygon","arcs":[[-5703,-453,-9450,-902,-9173]],"id":"31091"},{"type":"Polygon","arcs":[[-5187,-8993,-9345,-9656,-4183,-4122]],"id":"38015"},{"type":"Polygon","arcs":[[-5578,-3897,-7532,-8221,-7534]],"id":"54063"},{"type":"Polygon","arcs":[[-7462,-8191,-7644,-4898,-9459]],"id":"47021"},{"type":"Polygon","arcs":[[-7019,-7746,-5781,-9303,-6856,-6706,-7296]],"id":"42015"},{"type":"Polygon","arcs":[[-9574,-4697,-4229,-8310,-7206]],"id":"21185"},{"type":"Polygon","arcs":[[-7138,-7589,-3760,-2204,-9221,-7741]],"id":"05101"},{"type":"Polygon","arcs":[[-8681,-9565,-9141,-1615,-7515,-5522,-9526,-8900,-5180]],"id":"33009"},{"type":"Polygon","arcs":[[-6807,-856,9689,-5492,-9360,-9231]],"id":"55117"},{"type":"Polygon","arcs":[[-2898,-9405,-9671,-7782,-6663,-6610]],"id":"28129"},{"type":"Polygon","arcs":[[-8234,-8314,-9652,9690,-8158,-8040,-9249,-12]],"id":"22103"},{"type":"Polygon","arcs":[[-9368,-9361,-5385,-7245,-9491,-8978,-9301,-9580]],"id":"24033"},{"type":"Polygon","arcs":[[-1367,-3460,-9632,-1359,-9179,-8489,-335,-849,-9425]],"id":"27145"},{"type":"Polygon","arcs":[[-9327,-7455,-3586,-5685,-3584,-5686,-8125]],"id":"25017"},{"type":"Polygon","arcs":[[-5596,-9639,-5770,-8637,-8023,-9568,-9636,-162]],"id":"42055"},{"type":"Polygon","arcs":[[-9387,-2741,-5836,-9683,-9358]],"id":"17145"},{"type":"Polygon","arcs":[[-5363,-4345,-1285,-3812,-7959,-4937,-5361]],"id":"29073"},{"type":"Polygon","arcs":[[-1196,-8545,-8128,-2783,-9406]],"id":"18161"},{"type":"Polygon","arcs":[[-8516,-8476,-8845,-9023,-2930,-3810]],"id":"29099"},{"type":"Polygon","arcs":[[-9619,-4905,-9654,-9055,-3840,-9563]],"id":"40131"},{"type":"Polygon","arcs":[[-9681,-5849,-5086,-9438,-9557]],"id":"45017"},{"type":"Polygon","arcs":[[-3886,-7446,-6843,-7855,-7617,-8888,9691]],"id":"54035"},{"type":"Polygon","arcs":[[-9674,-1103,-2129,-5506,9692,-113]],"id":"72123"},{"type":"Polygon","arcs":[[-2724,-9482,-8874,-6040,-4543,-8822]],"id":"48239"},{"type":"MultiPolygon","arcs":[[[-624,-8466,9693]]],"id":"53035"},{"type":"Polygon","arcs":[[-2970,-9599,-9042,9694,-7763]],"id":"12057"},{"type":"Polygon","arcs":[[-8281,-9227,-1546,-4777]],"id":"17043"},{"type":"Polygon","arcs":[[-8892,-4817,-8048,-7316,-8506,-9133]],"id":"34031"},{"type":"Polygon","arcs":[[-9479,-9641,-9309,-9600,-4919,-9673,-6923]],"id":"48181"},{"type":"Polygon","arcs":[[-4682,-9594,-8557,-9320]],"id":"13283"},{"type":"Polygon","arcs":[[-446,-85,-9312,-2534,-9069,-3032,-2375]],"id":"28155"},{"type":"Polygon","arcs":[[-8954,-904,-9451,-9356,-7284,-8497]],"id":"31101"},{"type":"Polygon","arcs":[[-7878,-4432,-9446,-7880,-7865]],"id":"28001"},{"type":"Polygon","arcs":[[-4046,-743,-357,-9685,-7950,-6408]],"id":"36069"},{"type":"Polygon","arcs":[[-3887,-9692,-8890,-6412,-3891]],"id":"54053"},{"type":"Polygon","arcs":[[-712,-3755,-6291,-3017,-5]],"id":"04025"}]},"states":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[-1217,-1216,-5998,-5130,-4832,-6187,4710,-3680,4711,-4826,7077,274,4707,5648,5646,3019,3015,-1981,6,7,0,1,2,707,708]]],"id":"04"},{"type":"MultiPolygon","arcs":[[[-8314,-9652,9690,8158,7164,9688,8042,8243,8359,8240,8360,4268,4742,3796,3994,3995,-3714,-3713,5460,-9014,6449,5635,5636,5637,5123,-1082,-1081,-9076,-9152,-5880,9677,8131,-8070,5390,5391,7803,7804,5514,-7388,-7468,-7467,3790,3791,-3621,-3620,-3628,-3627,-3626,7876,-4433,7877,7864,7865,7223,7215,-2449,-2448,8,9,-2107,8231,-7683,8232]],[[4743]],[[7162]],[[7163]],[[8238]],[[8357]],[[8358]],[[9687]]],"id":"22"},{"type":"MultiPolygon","arcs":[[[8928,-6699,8929,-8974,7267,-8973,-2922,-2921,8306,3187,7656,7657,7653,8484,715,716,5202,5711,-1701,1226,1223,1224,-5261,-2291,-2290,4110,-5905,8237,3185,-1977,-1976,-1503,-1502,-1501,5695,-5427,5696,-6231,4004,4005,-4493,-4499,8328,-5256,3975,3976,3299,3300,8076]]],"id":"16"},{"type":"MultiPolygon","arcs":[[[5160,5158,2198,9535,7357,2839,4048,3511,4049,2841,2842,1736,-7795,-7713,5650,5651,5620,5621,-5602,-5601,-5600,-6218,-6217,-6871,-6870,-9174,-7981,5485,-4526,5486,-5292,-5291,-466,-465,-2742,6454,1342,1343,5662,5663,2698,-2671,-2670,5568,-3741,3110,3111,727,-95,1490,3599,3597,7959,5247,5248,-5592,7261,-8827,-989,-988,-987,-33,-32,-6058,27,28,-6331,-4254,-6008]]],"id":"27"},{"type":"MultiPolygon","arcs":[[[31,32,986,987,988,989,-737,7648,332,333,8668,8669,-9255,-6888,5871,-6887,-3689,-6839,-6838,-6139,702,-6138,-3664,-3663,-3942,-4452,5369,6764,6762,9335,481,2136,3188,1616,2674,6006,-5161,6007,4253,6330,-29,-28,6057]]],"id":"38"},{"type":"MultiPolygon","arcs":[[[1403,-6178,-6140,6837,6838,3688,6886,-5872,6887,9254,-8670,-8669,-334,-333,-7649,736,-990,8826,-7262,5591,-5249,-5248,-7960,-3598,-3600,-1491,94,95,6011,6012,4873,-4689,-3564,4874,4875,4976,4977,5976,5977,4894,-9571,-7072,610,611,6903,3123,341,-8689,-2543,2494,2495,2496,4463,4464,4863,39,40,1407]]],"id":"46"},{"type":"MultiPolygon","arcs":[[[-7726,-7744,7017,7018,7295,-6705,-6704,-7901,2860,2861,8724,8725,8796,-4795,8794,9314,7323,380,4044,740,9286,3634,6254,4427,7872,8630,-8201,8631,7602,7603,-9454,-6096,-8582,-8583,-5233,-5239,-5238,-9003,-8049,8045,7317,7318,9055,8907,3659,6251,3657,8908,8711,4422,4417,4418,-7313,-7312,-7311,8047,4816,4817,4818,-6741,-7728,-7727]],[[6249]],[[6250]],[[6252]],[[6255]],[[8988,-8700,8989,-7379]]],"id":"36"},{"type":"MultiPolygon","arcs":[[[8656,1993,1422,8411,2033,9204,9065,8984,9206,2018,2026,2008,2021,745,2022,6287,4858,6289,4860,510,9349,1753,3519,2356,2745,2031,8410,1420,1994,9675,1991,8654,1409,1629,48,8408,3112,8409,50,1630,1411,8655,1413]],[[51]],[[52]],[[1415,8653]],[[1418,3131]],[[1627,3118]],[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2009]],[[2010]],[[2011]],[[2012]],[[2013]],[[2014]],[[2015]],[[2016]],[[2020]],[[2027]],[[2028]],[[3114]],[[3115]],[[3116]],[[3117]],[[3119,3129]],[[3130]],[[4861]],[[4862]],[[6288]],[[8406]],[[8407]],[[9185]],[[9186]],[[9187]],[[9188]],[[9189]],[[9190]],[[9191]],[[9192]],[[9193]],[[9194]],[[9195]],[[9196]],[[9197]],[[9198]],[[9199]],[[9200]],[[9201]],[[9202]],[[9203]],[[9205]],[[9348]],[[9350]]],"id":"02"},{"type":"MultiPolygon","arcs":[[[3930,-4549,-4362,4318,-4361,7836,7834,7835,4313,9552,7036,7037,3967,3968,2080,2081,-8121,-7670,-7669,-7668,-7598,-7676,-7675,-7674,-7673,6424,-4461,-4460,-5951,-5844,-5843,-5842,8594,-9424,-6022,-6021,8391,-5921,-5920,-5419,-5418,-4812,-4811,9596,7098,4386,9524,4723,9183,-7483,5111,5112,6370,7273,7274,7010,7011,8772,-7491,-7490,-7758,7175,7176,2057,2058,830,831,7843,7844,7181,7177,9597,-8521,-8520,-8519,-8032,3504,-8031,-8396,-8395,-3954,-3953,-7506,3510,-7505,-9109,56,5700,-4550]]],"id":"13"},{"type":"MultiPolygon","arcs":[[[5558,7293,-3435,-3434,8267,-8420,2942,2936,-8922,-8304,5778,5772,5773,5774,9336,9666,-9545,8961,-7279,5207,-2735,2610,-1179,-1178,-3072,-6784,-6783,-1068,-1067,2140,-1881,-1880,8412,476,477,-2816,1193,1194,-8545,-8128,2783,-9036,-9157,4415,7296,-6747,-3053,-3058,7309,7204,7205,7206,4383,7702,-3986,-6712,4378,4786,-4210,-4602,-4601,-7162,-7161,-6389,-6388,3979,3980,3981,3982,7117,-5446,4792,-4746,4787,5561]]],"id":"18"},{"type":"MultiPolygon","arcs":[[[7185,9109,7235,8252,-3640,-3639,7346,3069,3070,3071,1177,1178,-2611,2734,-5208,7278,-8962,9544,9543,9159,9560,5741,1338,4760,1332,569,8182,9586,6179,2578,7341,8246,9280,9224,3607,8564,8864,3173,3595,8284,8363,471]],[[-5107,5398,5399,3612,3613,3609,8910,5307,9591,5309,4397,8805,5031,2211,7477,7480,7791,9510,1642,-197,-196,4025]],[[7342]],[[7343]],[[7344]],[[7479]],[[9509]],[[9584]],[[9585]],[[9587]],[[9592]]],"id":"26"},{"type":"MultiPolygon","arcs":[[[-8172,-8173,-8175,-7132,-7131,324,325,-7125,-7130,7857,-8263,-8528,-8527,-8526,9391,7935,9650,9651,8313,-8233,7682,-8232,2106,-10,-9,2447,2448,-7216,-7224,-7866,-7865,-7878,4432,-7877,3625,3626,3627,3619,3620,-3792,-7466,-7465,3605,3600,3601,-7190,-7189,7395,7392,7240,-4470,-4469,7279,-8574,-7356,3346,-7355,-5389,-9151,6182,-4143,-4703,-4852,-4855,8895,8937,-8169]],[[7932]],[[7933]],[[9389]],[[9390]]],"id":"28"},{"type":"MultiPolygon","arcs":[[[1066,1067,6782,6783,-3071,-3070,-7347,3638,3639,3640,9417,9663,8750,8923,9479,9652,-4798,-7640,-7639,-5797,-5796,-5793,-5792,-993,7573,-8067,-6287,-8116,6792,-4839,-4842,-3221,-7402,-7404,8217,-7444,-7443,3884,3885,3886,3890,3891,-6411,8803,-5946,8804,8652,-5324,-5330,8454,-9543,-7041,-7040,8824,-7212,-7215,9033,9034,9035,-2784,8127,8544,-1195,-1194,2815,-478,-477,-8413,1879,1880,-2141]],[[9416]],[[9662]]],"id":"39"},{"type":"MultiPolygon","arcs":[[[8734,5755,6905,7852,9179,-7508,-4783,-4782,-4781,-4935,-4934,-4933,-8106,3716,3083,1693,498,998,999,6823,6824,-8444,184,185,-7374,-7373,-4070,-4069,5765,3948,3949,613,5993,5994,1199,1200,2554,2555,3328,-530,-529,-9018,500,8996,-6835,-6834,6926,7422,-3652,-3651,-4645,-4644,9036,6921,-9479,-9641,-9309,-9308,9091,-4437,-4436,-8115,5668,-3272,5669,5878,5879,9151,9075,1080,1081,-5124,-5638,-5637,-5636,-6450,9013,-5461,3712,3713,-3996,5330,4075,9526,4077,8978,9528,6788,9527,6790,6042,4544,3701,8583,8964,6399,7424,9216,7426,6401,8965,8585,3699,4545,5990,3703,4541,3705,5991,3707,8399,8586,8966,6403,7427,9217,7904,9131,3698,8871,9685,4297,9161]]],"id":"48"},{"type":"MultiPolygon","arcs":[[[6828,8841,8572,9256,7650,6872,4273,8580,8578,2073,6978,9273,8832,8834,9648,9275,8249,9170,9541,5911,1730,9674,6734,134,8729,9274,4109,6765,8839,9686,7624,8562,2691,9279,3521,9138,2934,5504,9692,113,4098]],[[7680]],[[9227]]],"id":"72"},{"type":"MultiPolygon","arcs":[[[-7172,-5145,-2890,149,145,-2886,7285,8497,9455,9456,3836,3837,3838,9529,-5682,-5681,-5680,-7302,-2496,-2495,2542,8688,-342,-3124,-6904,-612,-611,7071,9570,-4895,-5978,-5977,-4978,-4977,-4876,-4875,-3563,-3562,8674,-9013,-7368,5333,-3570,-3569,-3568,-3656,-3655,-5171,4762,4763,-6121,8175,4125,4126,4127,4128,3325,3326,-7662,-2996,-2995,-8093,7307,7308,-7659,-4773,-4772,-2581,-2580,-170,-169,-2916,-2915,4131,1577]]],"id":"31"},{"type":"MultiPolygon","arcs":[[[157,158,601,602,-5996,3966,-1215,-1214,-1213,-1212,-9060,1771,1765,-7550,-7549,-4292,-5902,8439,7148,459,460,-5348,8187,7029,-3838,-3837,-9457,-9456,-8498,-7286,2885,-146,-150,2889,2890,-5147,-3252,-1192,-1191,-5211,-5213,-5212,-2839,-7103,3289,3290,3291,3292,-4067,7106,7027,-5866]]],"id":"08"},{"type":"MultiPolygon","arcs":[[[-9630,9557,-3470,-3469,-5100,-5144,-5143,5376,-7265,977,978,5199,4393,9333,9334,-9045,-9044,9330,4396,5200,5538,9050,5378,7183,9558,9633,5551,9489,8975,4748,9301,9299,-9580,-9368,-9361,5385,5386,-3683,-3682,163,164,165,166,319,320,321,5300,5301,5302,5298,5299,316,317,318,160,161,9635,-9567,5130,5131]],[[5197,9332]],[[-9049,9331]]],"id":"24"},{"type":"MultiPolygon","arcs":[[[4771,4772,7658,-7309,-7308,8092,2994,2995,7661,-3327,-3326,-4129,-4128,-4127,4528,4529,4530,-6177,7557,8457,8868,-7351,-5785,-5789,-8184,3997,3998,6256,6257,9667,2479,-1585,2480,-4029,-1623,7256,7257,8957,-4903,-4902,9617,6160,6161,-7825,-7329,5319,5320,9496,-2990,720,721,-5807,7159,7050,7051,9466,9576,-6882,4032,-6881,7703,-3291,-3290,7102,2838,5211,5212,5210,1190,1191,3251,5146,-2891,5144,7171,-1579,-1578,-4132,2914,2915,168,169,2579,2580]]],"id":"20"},{"type":"MultiPolygon","arcs":[[[8921,-2937,-2943,8419,-8268,3433,3434,-7294,-5559,-5562,-4788,4745,-4793,5445,-7118,-3983,-3982,-4219,-4218,-5928,-5403,-5402,5193,5194,-5412,8347,9114,-5624,-6037,9115,7158,7152,-7249,-7248,-8846,8474,8475,8472,3171,3165,-5053,7108,7109,5078,9419,-7251,-5074,4443,4444,-3674,-3673,8784,-8898,-7437,-9233,9052,-4448,-4447,5289,-7517,-3647,-7120,8542,9601,9120,9121,4038,4039,4034,4035,4374,4372,965,966,-3096,9112,4766,-4094,-4093,9373,8278,-5774,-5773,-5779,8303]]],"id":"17"},{"type":"MultiPolygon","arcs":[[[195,196,197,8694,9669,6993,8683,6995,854,9689,5492,8660,7952,4091,4092,4093,-4767,-9113,3095,-967,-966,-4373,-4375,-4036,-4035,-4731,7862,7526,7527,4524,4525,-5486,7980,9173,6869,6870,6216,6217,5599,5600,5601,-5622,-5621,-5652,-5651,7712,7794,-1737,-2843,7793,4516,9267,7415,-3614,-3613,-5400,-5399,5106,-4026]],[[4515]],[[8681]],[[8682]],[[9260]],[[9261]],[[9262]],[[9263]],[[9264]],[[9265]],[[9266]]],"id":"55"},{"type":"MultiPolygon","arcs":[[[9126,8342,9124,8930,9365,8340,9366,7195,8095,7808,8433,7810,7582,9658,4371,-3202,-2550,-2549,3959,3960,-7122,-4054,-8010,-8009,962,2539,-8016,9000,-8296,1252,3956,-8295,9144,-4537,-2598,-2597,4947,4948,1979,-7,1980,-3016,-3020,-5647,5709,9145,7092,9615,7087,2949,9095,1280,9657]],[[2943]],[[2944]],[[2945]],[[7084]],[[7088]],[[9613]],[[9614]]],"id":"06"},{"type":"MultiPolygon","arcs":[[[4688,-4874,-6013,-6012,-96,-728,-3112,-3111,3740,-5569,2669,2670,-2699,-5664,-5663,-1344,-1343,-6455,2741,464,465,5290,5291,-5487,-4525,-7528,-7527,-7863,4730,-4040,-4039,-9122,-9121,-9602,-8543,7119,3646,7516,-5290,4446,4447,-9053,9232,-7436,2116,-1679,-1678,3138,4727,4728,693,694,5220,5221,1128,1129,-8365,-8404,7518,-6118,5172,-4763,5170,3654,3655,3567,3568,3569,-5334,7367,9012,-8675,3561,3562,3563]]],"id":"19"},{"type":"MultiPolygon","arcs":[[[-9558,9629,-5132,-5131,9566,-9636,-162,-161,-319,-318,-317,-5300,-5299,-5304,9246,2364,2365,2366,-4841,-8117,-6285,-8066,997,992,5791,5792,5795,5796,7638,7639,4797,4793,4794,-8797,-8726,-8725,-2862,-2861,7900,6703,6704,-7296,-7019,-7018,7743,7725,7726,7727,6740,-4819,6741,7336,-6266,5631,4888,-4476,4889,4890,-8272,8941,8942,6333,-5138,5098,5099,3468,3469]]],"id":"42"},{"type":"MultiPolygon","arcs":[[[7449,9270,9627,-6765,-5370,4451,3941,3662,3663,6137,-703,6138,6139,6177,-1404,-5674,5022,5023,5024,-6732,-9085,-9084,-1472,-1471,-1478,5425,5426,-5696,1500,1501,1502,1975,1976,-3186,-8238,5904,-4111,2289,2290,5260,-1225,5259,2237,8641,9622,732,6201,9619,4482]]],"id":"30"},{"type":"MultiPolygon","arcs":[[[-3999,-3998,8183,5788,5784,7350,-8869,-8458,-7558,6176,-4531,-4530,-4529,-4126,-8176,6120,-4764,-5173,6117,-7519,8403,8364,-1130,-1129,-5222,-5221,-695,-694,-4729,-4728,-3139,1677,1678,-2117,7435,7436,8897,-8785,3672,3673,-4445,-4444,5073,7250,-9420,-5079,-7110,-7109,5052,-3166,-3172,-8473,-8476,-8475,8845,7247,7248,-7153,-7159,-9116,6036,5623,5624,5625,5626,5627,-5943,8714,-5945,8715,3667,3668,3669,-4354,8629,8624,8625,-8639,-8638,-8350,-8353,-8035,-4357,-4356,-4355,-8097,9213,9218,-7587,-7136,1664,-7135,-4145,492,493,494,1626,1622,4028,-2481,1584,-2480,-9668,-6258,-6257]]],"id":"29"},{"type":"MultiPolygon","arcs":[[[-9005,-9009,-7844,-832,-831,-2059,-2058,-7177,-7176,7757,7489,7490,-8773,-7012,-7011,-7275,-7274,-6371,-5113,-5112,7482,7483,9207,8428,2432,7946,9602,8918,3136,1809,4718,9574,9473,8376,9470,8378,9474,8384,9616,7145,7112,7147,7114,8767,9042,9694,7763,2973,7761,2971,7094,7698,7272,1743,9551,7759,9222,7749,7755,2406,2810,304,7829,9318,-2636,9317,7828,301,302,2806,2807,-9006]],[[7146]],[[7746]],[[8379]],[[8380]],[[8381]],[[8385]],[[8386]],[[8387]],[[8388]]],"id":"12"},{"type":"MultiPolygon","arcs":[[[5827,-6823,-6081,3408,3409,-7498,-6014,5940,5941,5942,-5628,-5627,-5626,-5625,-9115,-8348,5411,-5195,-5194,5401,5402,5927,4217,4218,-3981,-3980,6387,6388,7160,7161,4600,4601,4209,-4787,-4379,6711,3985,-7703,-4384,-7207,-7206,-7205,-7310,3057,3052,6746,-7297,-4416,9156,-9035,-9034,7214,7211,-8825,7039,7040,9542,-8455,5329,5323,-8653,-8805,5945,5946,5225,5480,5481,5729,5730,5731,5732,-6656,5451,5452,6714,6715,3866,3867,-6396,-422,-421,4222,-7847,-5874,4735,3414,3415,8036,-5744,-5743,-7460,-7459,309,310,-9458,-6821]],[[5943,5944]]],"id":"21"},{"type":"MultiPolygon","arcs":[[[3263,7228,3265,3579,7231,9512,4915,5892,972,973,974,975,5884,-1613,5885,9623,3614,315,729]],[[3258]],[[3259]],[[3260]],[[3261]],[[3576]],[[7229]],[[7230]]],"id":"23"},{"type":"MultiPolygon","arcs":[[[345,346,4290,4291,7548,7549,-1766,-1772,9059,1211,1212,1213,1214,1215,1216,-709,-708,-3,-2,-4406,-4405,-4404,-4403,8370,8321,8374,8372,6920,-3300,-3977,-3976,5255,-8329,-4498,-8539]]],"id":"49"},{"type":"MultiPolygon","arcs":[[[-2555,-1201,-1200,-5995,-5994,-614,-3950,-3949,-5766,-4068,-3292,-7704,6880,-4033,6881,-9577,-9467,-7052,-7051,-7160,5806,-722,-721,2989,-9497,-5321,-5320,7328,7824,-6162,-6161,-9618,4901,4902,-8958,-7258,-7257,-1627,-495,-494,-4149,-4148,-3277,7665,-7680,-8920,-8921,-4370,-7079,-7081,8113,-3273,-5669,8114,4435,4436,-9092,9307,9308,9640,9478,-6922,-9037,4643,4644,3650,3651,-7423,-6927,6833,6834,-8997,-501,9017,528,529,-3329,-2556]]],"id":"40"},{"type":"MultiPolygon","arcs":[[[-3867,-6716,9649,2643,-1610,-1609,-1608,-6275,-6056,-6274,4646,4647,4648,4649,4650,7456,-4620,-4624,-6482,-9505,5923,4883,4884,-4964,5500,6074,6075,-8119,-8120,5544,-2081,-3969,-3968,-7038,-7037,-9553,-4314,-7836,-7835,8860,8853,8854,-9143,-7692,1071,1072,-4139,-4138,-4144,-6183,9150,5388,7354,-3347,7355,8573,-7280,4468,4469,4470,5314,-4351,-4350,-4349,-4348,-4347,-3669,-3668,-8716,-5944,-8715,-5942,-5941,6013,7497,-3410,-3409,6080,6822,-5828,6820,9457,-311,-310,7458,7459,5742,5743,-8037,-3416,-3415,-4736,5873,7846,-4223,420,421,6395,-3868]]],"id":"47"},{"type":"MultiPolygon","arcs":[[[-9524,-6148,-9403,8612,-3552,8613,-7657,-3188,-8307,2920,2921,8972,-7268,8973,-8930,-6698,4283,4284,4052,4053,7121,-3961,-3960,2548,2549,3201,3202,7522,7524,6029,8362,9533,6851,6849,4274,4275,4276,-5491,8134,9428,-5342,-5341,-5340,485,-5339,5957]]],"id":"41"},{"type":"MultiPolygon","arcs":[[[-5302,-5301,-322,-321,-320,-167,-166,-165,-3681,-6105,-8227,-8226,7895,-8228,-6969,-9269,7384,7385,-4509,2068,2069,3894,3895,-7532,-8221,-7534,5578,4835,4836,4837,2389,2390,-6948,-5730,-5482,-5481,-5226,-5947,-8804,6410,-3892,-3891,-3887,-3886,-3885,7442,7443,-8218,7403,7401,3220,4841,4838,-6793,8115,6286,8066,-7574,-998,8065,6284,8116,4840,-2367,-2366,-2365,-9247,5303,-5303]]],"id":"54"},{"type":"MultiPolygon","arcs":[[[-7396,7188,7189,-3602,-3601,-3606,7464,7465,-3791,7466,7467,7387,-5515,-7805,-7804,-5392,-5391,8069,-8132,-9678,-5879,-5670,3271,3272,-8114,7080,7078,4369,8920,8919,7679,-7666,3276,4147,4148,-493,4144,7134,-1665,7135,7586,-9219,-9214,8096,4354,4355,4356,8034,8352,8349,8637,8638,-8626,-8625,-8630,4353,-3670,4346,4347,4348,4349,4350,-5315,-4471,-7241,-7393]]],"id":"05"},{"type":"MultiPolygon","arcs":[[[9031,9568,9030,6134,8532,4079,9661,8528,1699,-1227,1700,-5712,-5203,-717,-716,-8485,-7654,-7658,-8614,3551,-8613,9402,6147,9523,-5958,5338,-486,5339,5340,5341,-9429,-8135,5490,-4277,-4276,-4275,-6850,7785,6985,8426,8432,8422,8430,8464,9693,624,8466,9295,617,2424]],[[2425]],[[6131]],[[6135]],[[8468]],[[8469]],[[8470]],[[8471]],[[8531]],[[8533]],[[9569]]],"id":"53"},{"type":"MultiPolygon","arcs":[[[3515,-6126,-6954,3747,-6953,8247,8322,8323,8324,6591,7973,7974,-8204,-8283,4624,4625,4626,9549,4628,9671,7987,7022,7912,6594,9639,6722,8963,7057,9550,7059,9683,6719,3877,6777,2393,9372,5395,8138,-6199,-6198,-5102,6753,5832,5751,5933,-4986,-4985,-5607,-5606,-4805,-4804,3831,3832,6262,6263,4617,-1047,-1046,-1052,3871,3872,-7672,7597,7667,7668,7669,8120,-2082,-5545,8119,8118,-6076,-6075,-5501,4963,-4885,-4884,-5924,9504,6481,4623,4619,-7457,-4651,-4650,-4649,8665,6957,6758,6759,6760,2974,2975,795,796,-7894,-1263,-7893,-6127]],[[7055,9548]],[[9547]]],"id":"37"},{"type":"MultiPolygon","arcs":[[[4508,-7386,-7385,9268,6968,8227,-7896,8225,8226,6104,3680,-164,3681,3682,-5387,6127,-9362,9367,9579,-9300,9580,9506,8848,1491,9588,5850,9620,1527,9621,9363,5008,6964,2225,8151,4480,8982,7970,6897,6143,5896,8201,8152,8099,9668,-4626,-4625,8282,8203,-7975,-7974,-6592,-8325,-8324,-8323,-8248,6952,-3748,6953,6125,-3516,6126,7892,1262,7893,-797,-796,-2976,-2975,-6761,-6760,-6759,-6958,-8666,-4648,-4647,6273,6055,6274,1607,1608,1609,-2644,-9650,-6715,-5453,-5452,6655,-5733,-5732,-5731,6947,-2391,-2390,-4838,-4837,-4836,-5579,7533,8220,7531,-3896,-3895,-2070,-2069]],[[9043,9044,9045,7907,9046]],[[9047,9048]]],"id":"51"},{"type":"MultiPolygon","arcs":[[[5901,-4291,-347,-346,8538,4497,4498,4492,-4006,-4005,6230,-5697,-5426,1477,1470,1471,9083,9084,6731,-5025,-5024,-5023,5673,-1408,-41,-40,-4864,-4465,-4464,-2497,7301,5679,5680,5681,-9530,-3839,-7030,-8188,5347,-461,-460,-7149,-8440]]],"id":"56"},{"type":"MultiPolygon","arcs":[[[-302,-7829,-9318,2635,2636,8524,8525,8526,8527,8262,-7858,7129,7124,-326,-325,7130,7131,8174,8172,8171,8168,-8938,-8896,4854,4851,4702,4142,4143,4137,4138,-1073,-1072,7691,9142,-8855,-8854,-8861,-7837,4360,-4319,4361,4548,-3931,4549,-5701,-57,9108,7504,-3511,7505,3952,3953,8394,8395,8030,-3505,8031,8518,8519,8520,-9598,-7178,-7182,-7845,9008,9004,9005,-2808,-2807,-303]],[[8523]]],"id":"01"},{"type":"MultiPolygon","arcs":[[[-6263,-3833,-3832,4803,4804,5605,5606,4984,4985,-5934,-5752,-5833,-6754,5101,6197,6198,6199,5167,4801,6771,4879,4809,4810,4811,5417,5418,5919,5920,-8392,6020,6021,9423,-8595,5841,5842,5843,5950,4459,4460,-6425,7672,7673,7674,7675,7671,-3873,-3872,1051,1045,1046,-4618,-6264]]],"id":"45"},{"type":"MultiPolygon","arcs":[[[1601,4824,4825,-4712,3679,-4711,6186,4831,5129,5997,-3967,5995,-603,-602,-159,-158,5865,-7028,-7107,4066,-3293,4067,4068,4069,7372,7373,-186,-185,8443,-6825,-6824,-1000,-999,-499,-1694,-3084,-3717,8105,4932,4933,4934,4780,4781,4782,7507,7508]]],"id":"35"},{"type":"MultiPolygon","arcs":[[[-975,-974,8944,-7453,-7452,9326,-8124,-8123,-3592,-4823,-4822,-5181,-5180,-8681,-9565,-9141,1615,1611,1612,-5885,-976]]],"id":"33"},{"type":"MultiPolygon","arcs":[[[9139,-1616,9140,9564,8680,5179,5180,4821,4822,-3591,-3590,-5234,8582,8581,6095,9453,-7604,-7603,-8632,8200,8198,4999,8589]]],"id":"50"},{"type":"MultiPolygon","arcs":[[[2596,2597,4536,-9145,8294,-3957,-1253,8295,-9001,8015,-2540,-963,8008,8009,-4053,-4285,-4284,6697,6698,-8929,-8077,-3301,-6921,-8373,-8375,-8322,-8371,4402,4403,4404,4405,-1,-8,-1980,-4949,-4948]]],"id":"32"},{"type":"MultiPolygon","arcs":[[[3479]],[[3480]],[[3481]],[[3483,7556]],[[3548]],[[8369]],[[8809]],[[8810]]],"id":"15"},{"type":"MultiPolygon","arcs":[[[7451,7452,7453,3587,5686,4009,5683,4011,9626,9088,9625,4013,5441,-4056,5442,5443,5444,5687,-6392,-7560,8125,6085,6086,6087,5236,5237,5238,5232,5233,3589,3590,3591,8122,8123,-9327]],[[5963]],[[9086]]],"id":"25"},{"type":"MultiPolygon","arcs":[[[3900,7850]],[[5422]],[[7849]]],"id":"78"},{"type":"MultiPolygon","arcs":[[[4055,4056]],[[4057]],[[4058]],[[6393,6335,9210,-7565,6337,6338,6394,6391,-5688,-5445,-5444,9676]],[[9209]]],"id":"44"},{"type":"MultiPolygon","arcs":[[[-6334,-8943,-8942,8271,-4891,-4890,4475,-4889,-5632,6265,-7337,-6742,-4818,-4817,-8048,7310,7311,7312,-4419,-4418,8698,8699,-8989,7378,7379,8801,7287,8073,8455,4411,9532,-5136,9530,-5140,-5139]]],"id":"34"},{"type":"MultiPolygon","arcs":[[[5135,5136]],[[-978,7264,-5377,5142,5143,-5099,5137,5138,5139,5140,7262,9396,-9334,-4394,-5200,-979]]],"id":"10"},{"type":"MultiPolygon","arcs":[[[5204,7197,8050,-7318,-8046,8048,9002,-5237,-6088,-6087,-6086,-8126,7559,-6395,-6339,-6338,7564,7565]]],"id":"09"},{"type":"MultiPolygon","arcs":[[[-5386,9360,9361,-6128]]],"id":"11"}]},"nation":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[1601,4824,7077,274,4707,5648,5709,9145,7092,9615,7087,2949,9095,1280,9657,9126,8342,9124,8930,9365,8340,9366,7195,8095,7808,8433,7810,7582,9658,4371,3202,7522,7524,6029,8362,9533,6851,7785,6985,8426,8432,8422,8430,8464,9693,624,8466,9295,617,2424,9031,9568,9030,6134,8532,4079,9661,8528,1699,1223,5259,2237,8641,9622,732,6201,9619,4482,7449,9270,9627,6762,9335,481,2136,3188,1616,2674,6006,5158,2198,9535,7357,2839,4048,3511,4049,2841,7793,4516,9267,7415,3609,8910,5307,9591,5309,4397,8805,5031,2211,7477,7480,7791,9510,1642,197,8694,9669,6993,8683,6995,854,9689,5492,8660,7952,4091,9373,8278,5774,9336,9666,9543,9159,9560,5741,1338,4760,1332,569,8182,9586,6179,2578,7341,8246,9280,9224,3607,8564,8864,3173,3595,8284,8363,471,7185,9109,7235,8252,3640,9417,9663,8750,8923,9479,9652,4793,8794,9314,7323,380,4044,740,9286,3634,6254,4427,7872,8630,8198,4999,8589,9139,1611,5885,9623,3614,315,729,3263,7228,3265,3579,7231,9512,4915,5892,972,8944,7453,3587,5686,4009,5683,4011,9626,9088,9625,4013,5441,4056,5442,9676,6393,6335,9210,7565,5204,7197,8050,7318,9055,8907,3659,6251,3657,8908,8711,4422,8698,8989,7379,8801,7287,8073,8455,4411,9532,5136,9530,5140,7262,9396,9334,9045,7907,9046,9330,4396,5200,5538,9050,5378,7183,9558,9633,5551,9489,8975,4748,9301,9580,9506,8848,1491,9588,5850,9620,1527,9621,9363,5008,6964,2225,8151,4480,8982,7970,6897,6143,5896,8201,8152,8099,9668,4626,9549,4628,9671,7987,7022,7912,6594,9639,6722,8963,7057,9550,7059,9683,6719,3877,6777,2393,9372,5395,8138,6199,5167,4801,6771,4879,4809,9596,7098,4386,9524,4723,9183,7483,9207,8428,2432,7946,9602,8918,3136,1809,4718,9574,9473,8376,9470,8378,9474,8384,9616,7145,7112,7147,7114,8767,9042,9694,7763,2973,7761,2971,7094,7698,7272,1743,9551,7759,9222,7749,7755,2406,2810,304,7829,9318,2636,8524,9391,7935,9650,9690,8158,7164,9688,8042,8243,8359,8240,8360,4268,4742,3796,3994,5330,4075,9526,4077,8978,9528,6788,9527,6790,6042,4544,3701,8583,8964,6399,7424,9216,7426,6401,8965,8585,3699,4545,5990,3703,4541,3705,5991,3707,8399,8586,8966,6403,7427,9217,7904,9131,3698,8871,9685,4297,9161,8734,5755,6905,7852,9179,7508],[-1579]],[[4743]],[[7162]],[[7163]],[[8238]],[[8357]],[[8358]],[[9687]],[[6249]],[[6250]],[[6252]],[[6255]],[[8656,1993,1422,8411,2033,9204,9065,8984,9206,2018,2026,2008,2021,745,2022,6287,4858,6289,4860,510,9349,1753,3519,2356,2745,2031,8410,1420,1994,9675,1991,8654,1409,1629,48,8408,3112,8409,50,1630,1411,8655,1413]],[[51]],[[52]],[[1415,8653]],[[1418,3131]],[[1627,3118]],[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2009]],[[2010]],[[2011]],[[2012]],[[2013]],[[2014]],[[2015]],[[2016]],[[2020]],[[2027]],[[2028]],[[3114]],[[3115]],[[3116]],[[3117]],[[3119,3129]],[[3130]],[[4861]],[[4862]],[[6288]],[[8406]],[[8407]],[[9185]],[[9186]],[[9187]],[[9188]],[[9189]],[[9190]],[[9191]],[[9192]],[[9193]],[[9194]],[[9195]],[[9196]],[[9197]],[[9198]],[[9199]],[[9200]],[[9201]],[[9202]],[[9203]],[[9205]],[[9348]],[[9350]],[[7342]],[[7343]],[[7344]],[[7479]],[[9509]],[[9584]],[[9585]],[[9587]],[[9592]],[[7932]],[[7933]],[[9389]],[[9390]],[[9416]],[[9662]],[[6828,8841,8572,9256,7650,6872,4273,8580,8578,2073,6978,9273,8832,8834,9648,9275,8249,9170,9541,5911,1730,9674,6734,134,8729,9274,4109,6765,8839,9686,7624,8562,2691,9279,3521,9138,2934,5504,9692,113,4098]],[[7680]],[[9227]],[[5197,9332]],[[9331,9047]],[[4515]],[[8681]],[[8682]],[[9260]],[[9261]],[[9262]],[[9263]],[[9264]],[[9265]],[[9266]],[[2943]],[[2944]],[[2945]],[[7084]],[[7088]],[[9613]],[[9614]],[[7146]],[[7746]],[[8379]],[[8380]],[[8381]],[[8385]],[[8386]],[[8387]],[[8388]],[[3258]],[[3259]],[[3260]],[[3261]],[[3576]],[[7229]],[[7230]],[[2425]],[[6131]],[[6135]],[[8468]],[[8469]],[[8470]],[[8471]],[[8531]],[[8533]],[[9569]],[[7055,9548]],[[9547]],[[8523]],[[3479]],[[3480]],[[3481]],[[3483,7556]],[[3548]],[[8369]],[[8809]],[[8810]],[[5963]],[[9086]],[[3900,7850]],[[5422]],[[7849]],[[4057]],[[4058]],[[9209]]]}]}},"arcs":[[[22597,51190],[66,-596]],[[22663,50594],[842,279],[1128,358]],[[24633,51231],[618,190]],[[25251,51421],[-2,188],[-228,650],[-57,310],[-1,288],[-85,204],[-16,148],[47,131],[-43,77],[7,215],[-85,189],[-100,-16],[-158,203],[-122,-33],[-64,86],[-195,6],[-256,201],[-115,27],[-62,205],[-147,-72],[-91,163],[21,356],[-49,174],[31,126],[-75,292],[-111,1043]],[[23295,56582],[-486,4588]],[[22809,61170],[-60,73],[-309,-148],[-149,254],[-181,16],[-54,-136],[-181,3],[-11,-107],[-317,-140],[-84,-182],[-86,-46]],[[21377,60757],[-49,-197],[-80,-92],[-157,-384],[-87,-60],[41,-268],[-82,-748],[-120,-252],[-30,-281],[-64,-143],[54,-514]],[[20803,57818],[82,-258],[-62,-128],[145,-95],[26,-167],[14,-552],[-18,-338],[-53,-333],[52,-143],[43,-301],[-45,-175],[-2,-237],[75,-538],[62,-57],[-81,-300],[39,-317],[-19,-239],[41,-54],[218,-26],[86,-54],[106,115],[236,35],[86,297],[-22,59],[112,209],[150,14],[215,-544],[42,-39],[107,-942],[159,-1520]],[[64101,78355],[36,-4]],[[64137,78351],[377,-40]],[[64514,78311],[13,363],[58,50],[55,318],[64,152],[20,202]],[[64724,79396],[31,247],[38,1082],[105,192],[70,286]],[[64968,81203],[-274,-202],[-348,103]],[[64346,81104],[-15,-299],[-118,-275],[-47,-214],[-21,-623]],[[64145,79693],[-44,-1338]],[[24408,26842],[344,113]],[[24752,26955],[1035,345]],[[25787,27300],[-143,1322],[-78,-26],[-35,322],[-265,-89]],[[25266,28829],[-186,-62],[18,-164],[-466,-159],[-13,-168],[-360,-124]],[[24259,28152],[149,-1310]],[[52194,12853],[955,11]],[[53149,12864],[-2,578],[27,220]],[[53174,13662],[-1,441],[193,1],[1,331],[766,-1],[0,-332],[190,-2],[-1,-331]],[[54322,13769],[190,6]],[[54512,13775],[7,988],[38,0],[1,659]],[[54558,15422],[-769,6]],[[53789,15428],[-1173,-9]],[[52616,15419],[3,-343],[-58,-316]],[[52561,14760],[-70,-366],[-61,-143],[-52,-434],[-65,-170],[-18,-335],[-43,-78],[-58,-381]],[[51328,16372],[382,15]],[[51710,16387],[928,23]],[[52638,16410],[2,333]],[[52640,16743],[19,218],[-8,471],[92,138],[-30,347],[-32,86],[30,351],[-20,359]],[[52691,18713],[-741,0]],[[51950,18713],[-609,-18]],[[51341,18695],[14,-1327],[-37,-1],[10,-995]],[[41308,25674],[191,-4],[181,-71],[394,58]],[[42074,25657],[-71,1328],[190,24],[-19,443]],[[42174,27452],[-945,-135]],[[41229,27317],[8,-151]],[[41237,27166],[71,-1492]],[[87858,26630],[142,9],[189,82],[253,-144],[34,-65]],[[88476,26512],[27,145],[-68,66],[69,103],[138,-49],[-2,-68]],[[88640,26709],[48,227],[-54,483],[49,203],[2,339]],[[88685,27961],[31,111],[-149,144],[-61,-47],[-92,112]],[[88414,28281],[-310,-150],[-192,-293]],[[87912,27838],[74,-459],[-119,-442],[-9,-307]],[[23859,93116],[128,-327]],[[23987,92789],[120,51],[66,249],[99,-76],[251,138]],[[24523,93151],[70,146],[-142,286],[55,137],[-111,-36],[-82,97],[-18,303],[47,187],[-73,132]],[[24269,94403],[-4,-279],[-47,-275],[15,-216],[-61,230],[44,113],[-90,164],[-85,-215],[-99,-7],[-29,-132],[43,-187],[79,-60],[-57,-170],[82,-8],[-189,-138],[-12,-107]],[[23785,93842],[16,-68],[84,176],[-100,-108]],[[23737,93691],[33,-161],[140,12],[12,158],[-79,94],[-106,-103]],[[73091,65845],[314,-52],[291,-78]],[[73696,65715],[24,-4],[22,353]],[[73742,66064],[1,377],[-155,88],[-261,237],[-87,13]],[[73240,66779],[-149,-934]],[[76910,70652],[458,-618]],[[77368,70034],[208,576]],[[77576,70610],[-72,-97],[-208,477],[44,59],[-100,224]],[[77240,71273],[-315,-428]],[[76925,70845],[-15,-193]],[[69667,47067],[-19,-337]],[[69648,46730],[616,-102]],[[70264,46628],[62,-11],[60,871]],[[70386,47488],[-52,128],[13,172]],[[70347,47788],[-633,117]],[[69714,47905],[-47,-838]],[[71292,45897],[202,-46],[197,-282]],[[71691,45569],[61,1085]],[[71752,46654],[-157,34],[9,112],[-117,135],[8,113],[-122,58]],[[71373,47106],[-87,-47],[-99,113]],[[71187,47172],[-68,-1001]],[[71119,46171],[-16,-231],[189,-43]],[[74342,28963],[15,164],[187,-49],[46,497]],[[74590,29575],[98,986]],[[74688,30561],[-188,65]],[[74500,30626],[-554,161]],[[73946,30787],[-111,-1303]],[[73835,29484],[168,-86],[-29,-330],[368,-105]],[[66290,66268],[567,-76]],[[66857,66192],[191,-24]],[[67048,66168],[42,1011]],[[67090,67179],[-382,46],[9,223],[-187,25],[3,56]],[[66533,67529],[-285,39]],[[66248,67568],[-8,-281],[94,-13],[-44,-1006]],[[75053,37858],[461,-123]],[[75514,37735],[171,-37]],[[75685,37698],[84,1086]],[[75769,38784],[-213,76]],[[75556,38860],[-414,107]],[[75142,38967],[-89,-1109]],[[52106,29355],[380,6]],[[52486,29361],[688,4]],[[53174,29365],[-3,1340]],[[53171,30705],[-232,-3]],[[52939,30702],[-518,-5]],[[52421,30697],[-325,-5]],[[52096,30692],[10,-1337]],[[51664,30682],[432,10]],[[52421,30697],[-7,1599]],[[52414,32296],[-378,-5]],[[52036,32291],[2,-334],[-381,-6]],[[51657,31951],[7,-1269]],[[54610,79125],[343,-492]],[[54953,78633],[2,463],[103,218],[-31,86],[130,-8]],[[55157,79392],[-54,1361]],[[55103,80753],[-454,-13],[-438,-462]],[[54211,80278],[-62,-896]],[[54149,79382],[147,-59],[129,-124],[116,69],[69,-143]],[[96054,98315],[49,-227]],[[96103,98088],[147,22],[53,81]],[[96303,98191],[-15,150]],[[96288,98341],[-98,143],[-136,-169]],[[49459,28925],[752,26]],[[50211,28951],[5,333]],[[50216,29284],[-12,1352]],[[50204,30636],[-612,-30]],[[49592,30606],[-141,-7]],[[49451,30599],[19,-1341],[-11,-333]],[[48929,93009],[571,35]],[[49500,93044],[343,19]],[[49843,93063],[142,7],[-2,195]],[[49983,93265],[-19,1626]],[[49964,94891],[-663,-34]],[[49301,94857],[-201,-10]],[[49100,94847],[24,-1032],[-96,-2],[4,-331],[-51,-3],[5,-353],[-57,-117]],[[96750,97450],[58,-68],[50,-289]],[[96858,97093],[51,-34]],[[96909,97059],[42,27]],[[96951,97086],[16,304],[34,71]],[[97001,97461],[-47,240],[-68,119]],[[96886,97820],[-89,-214]],[[96797,97606],[-47,-156]],[[96659,96520],[67,-74]],[[96726,96446],[44,129]],[[96770,96575],[-49,54]],[[96721,96629],[-79,-24]],[[96642,96605],[17,-85]],[[96028,96831],[41,2]],[[96069,96833],[101,-3],[38,106]],[[96208,96936],[25,42]],[[96233,96978],[-26,150]],[[96207,97128],[-67,117],[-96,21]],[[96044,97266],[-16,-435]],[[43852,41933],[36,-991]],[[43888,40942],[1166,119]],[[45054,41061],[-39,1339]],[[45015,42400],[-1176,-118]],[[43839,42282],[13,-349]],[[95767,96762],[95,-61]],[[95862,96701],[19,207]],[[95881,96908],[-119,50]],[[95762,96958],[5,-196]],[[35445,52403],[327,80],[772,140]],[[36544,52623],[-10,168],[510,93]],[[37044,52884],[25,263],[-61,269],[19,149],[-37,293],[-65,227],[80,193]],[[37005,54278],[-499,-89]],[[36506,54189],[-813,-147]],[[35693,54042],[-160,-599],[0,-213],[-132,-156],[44,-671]],[[83328,40491],[402,-131]],[[83730,40360],[1038,-341]],[[84768,40019],[-67,373],[-56,63],[-39,455],[27,142],[-39,584]],[[84594,41636],[-69,34]],[[84525,41670],[-65,-28],[-34,-340],[-53,-10],[-41,-188],[-55,-30]],[[84277,41074],[-15,-133],[-57,75],[-45,-175],[60,-23],[-11,-161],[-157,98],[-153,-47]],[[83899,40708],[-111,-157],[-185,-42],[-107,335],[-118,-31]],[[83378,40813],[-32,-143],[43,-80],[-61,-99]],[[46915,43912],[917,65]],[[47832,43977],[5,0]],[[47837,43977],[-41,1675]],[[47796,45652],[-897,-64]],[[46899,45588],[-31,-1]],[[46868,45587],[47,-1675]],[[66364,40944],[370,-55],[-88,-1443]],[[66646,39446],[189,-40]],[[66835,39406],[116,1955],[303,-36]],[[67254,41325],[20,332]],[[67274,41657],[-872,127]],[[66402,41784],[-38,-840]],[[41346,61964],[1556,188]],[[42902,62152],[-65,1676]],[[42837,63828],[-637,-72]],[[42200,63756],[-926,-117]],[[41274,63639],[34,-795]],[[41308,62844],[38,-880]],[[75286,72244],[-7,-123]],[[75279,72121],[456,-68],[-16,-272]],[[75719,71781],[88,-13],[11,163],[90,-43],[110,54]],[[76018,71942],[162,509]],[[76180,72451],[90,301],[15,144]],[[76285,72896],[-769,142],[12,162]],[[75528,73200],[-220,-316]],[[75308,72884],[-22,-640]],[[65522,21390],[562,-44],[-11,-257]],[[66073,21089],[93,-70],[54,130],[131,-2],[57,117]],[[66408,21264],[109,171],[-60,109],[72,114],[-15,204],[-50,-18],[67,234],[-22,160],[-70,124],[-11,214],[68,98],[125,-12],[85,-169],[80,182],[-53,167],[-49,493],[127,224],[112,32]],[[66923,23591],[-45,200],[6,261],[-203,74]],[[66681,24126],[-1,-95],[-286,33],[-3,-105],[-276,28],[-12,-330],[-109,9],[-11,-329],[-191,13],[-25,-660],[-189,17]],[[65578,22707],[-56,-1317]],[[9735,45761],[109,31]],[[9844,45792],[34,25],[170,-263],[66,8],[40,133],[341,158]],[[10495,45853],[-53,113],[54,76],[51,334],[319,535]],[[10866,46911],[389,1186],[-79,602],[-113,-3],[-61,167]],[[11002,48863],[-91,-214],[8,429],[-76,-15],[-144,-441],[-83,-113],[-75,109],[-44,-87],[-91,80],[6,-192],[-37,-192],[-185,-569],[-4,-127],[-119,-38],[40,-94],[-39,-120],[48,-202],[-51,-206],[-153,-189],[47,-147],[-215,-579],[-9,-195]],[[74219,68373],[10,-128],[636,-122]],[[74865,68123],[20,140]],[[74885,68263],[-22,244],[-4,438],[28,144]],[[74887,69089],[60,331]],[[74947,69420],[-106,165],[-237,51]],[[74604,69636],[-99,-75],[-202,29]],[[74303,69590],[-84,-1217]],[[59432,33831],[760,-50]],[[60192,33781],[16,668],[28,-2],[15,657]],[[60251,35104],[-378,26]],[[59873,35130],[-379,26]],[[59494,35156],[-15,-663],[-33,2],[-7,-332]],[[59439,34163],[-7,-332]],[[57126,31589],[754,-32]],[[57880,31557],[19,1333]],[[57899,32890],[-758,35]],[[57141,32925],[-15,-1336]],[[53174,13662],[1148,-1],[0,108]],[[50143,38398],[314,13],[96,-111],[255,5],[92,-53]],[[50900,38252],[206,4],[-6,508]],[[51100,38764],[-6,330],[-316,-7],[0,57],[-255,-8],[-80,109],[-286,-12],[10,-499],[-21,-1]],[[50146,38733],[-8,0]],[[50138,38733],[5,-335]],[[85925,36326],[182,167]],[[86107,36493],[552,508]],[[86659,37001],[-227,323],[-201,139],[-194,234]],[[86037,37697],[-307,-984],[195,-387]],[[41896,67279],[959,113]],[[42855,67392],[-44,1674]],[[42811,69066],[-945,-106]],[[41866,68960],[30,-1681]],[[47265,71127],[258,16]],[[47523,71143],[688,41]],[[48211,71184],[-32,1700]],[[48179,72884],[-34,-2]],[[48145,72882],[-917,-56]],[[47228,72826],[37,-1699]],[[44059,76253],[751,47],[24,-548],[65,42]],[[44899,75794],[1098,103]],[[45997,75897],[-8,425],[229,25]],[[46218,76347],[-55,1886]],[[46163,78233],[-1076,-81]],[[45087,78152],[40,-1677],[-1072,-116]],[[44055,76359],[4,-106]],[[50393,69449],[786,25]],[[51179,69474],[189,18]],[[51368,69492],[-42,1690]],[[51326,71182],[-267,-20]],[[51059,71162],[-692,-49]],[[50367,71113],[26,-1664]],[[51736,28015],[378,5]],[[52114,28020],[378,8]],[[52492,28028],[-6,1333]],[[52106,29355],[-380,-11]],[[51726,29344],[10,-1329]],[[48176,25159],[156,11]],[[48332,25170],[406,26]],[[48738,25196],[-28,1338],[18,2],[-26,1350]],[[48702,27886],[-435,-18]],[[48267,27868],[-134,-105]],[[48133,27763],[28,-1266],[-20,-1]],[[48141,26496],[35,-1337]],[[45748,65785],[179,17]],[[45927,65802],[757,64]],[[46684,65866],[-8,337]],[[46676,66203],[-89,-27],[-39,1515]],[[46548,67691],[-853,-66]],[[45695,67625],[53,-1840]],[[27065,72506],[-55,440],[-94,1067]],[[26916,74013],[-1137,-307],[-506,-507]],[[25273,73199],[34,-360],[374,103],[71,-774],[568,155],[2,-19],[743,202]],[[59410,39538],[378,-27]],[[59788,39511],[378,-28]],[[60166,39483],[25,1013]],[[60191,40496],[-758,53]],[[59433,40549],[-23,-1011]],[[61427,36697],[-9,-336]],[[61418,36361],[758,-63]],[[62176,36298],[21,672]],[[62197,36970],[18,670]],[[62215,37640],[-761,63]],[[61454,37703],[-27,-1006]],[[36106,13674],[69,-6],[14,-218],[80,-107],[82,11],[122,-286],[66,-73],[195,78],[115,91],[55,-242]],[[36904,12922],[190,83],[48,82],[549,49],[44,-218],[187,49],[43,-136],[164,-16],[160,-329],[-24,-98],[69,-98],[-13,-100],[112,-47],[11,73]],[[38444,12216],[89,18],[-21,335],[144,27],[-81,1281],[-55,-11],[-41,660],[190,35],[-40,657],[125,22]],[[38754,15240],[-74,1213]],[[38680,16453],[-3,55]],[[38677,16508],[-953,-179],[4,-55],[-1122,-227],[-2,31],[-636,-137]],[[35968,15941],[-64,-116],[67,-335],[48,-109],[-77,-502],[56,-143],[-34,-319],[36,-128],[0,-261],[91,-182],[15,-172]],[[57223,51702],[6,-685]],[[57229,51017],[844,16],[58,-26]],[[58131,51007],[45,29],[-4,487]],[[58172,51523],[-5,616],[-97,-1],[-3,336]],[[58067,52474],[-95,-1]],[[57972,52473],[-315,-7],[1,-224],[-442,-16]],[[57216,52226],[7,-524]],[[71190,77415],[183,-22]],[[71373,77393],[561,-96]],[[71934,77297],[121,2350]],[[72055,79647],[-448,10],[-311,90]],[[71296,79747],[-106,-2332]],[[69022,55947],[45,-1677]],[[69067,54270],[22,120],[228,-53],[109,-81]],[[69426,54256],[74,1607]],[[69500,55863],[-94,19]],[[69406,55882],[-384,65]],[[96624,11265],[-331,336]],[[96293,11601],[-493,524],[-38,-12],[-220,-1334],[-76,-353],[-212,-1240],[-378,193],[-8,-48],[-181,92]],[[94687,9423],[-113,-644],[-1312,652]],[[93262,9431],[-441,219]],[[92821,9650],[-34,-466],[660,-3350],[228,26],[51,-40],[67,478],[50,185],[242,141],[225,-362],[140,-81],[32,-192],[82,-76],[208,-78],[-38,-186],[51,-104],[149,-59],[139,61],[38,81],[329,223],[167,285],[151,66],[299,1688],[216,1170],[218,1226],[61,68],[-56,166],[110,182],[-56,110],[74,453]],[[82363,40800],[198,-63]],[[82561,40737],[705,-226]],[[83266,40511],[62,-20]],[[83378,40813],[-157,123],[76,96],[-102,33],[62,91],[-52,183]],[[83205,41339],[-162,42],[-158,-10]],[[82885,41371],[-226,-188],[68,-78],[-112,-49],[-87,483],[-104,258],[5,82],[-200,-63]],[[82229,41816],[134,-1016]],[[66942,71961],[966,-134]],[[67908,71827],[-12,1040]],[[67896,72867],[-4,313]],[[67892,73180],[-891,133]],[[67001,73313],[-59,-1352]],[[49286,21239],[28,-1308]],[[49314,19931],[1476,68]],[[50790,19999],[42,3]],[[50832,20002],[-18,1321]],[[50814,21323],[-1097,-57]],[[49717,21266],[-431,-27]],[[55803,23689],[587,-18],[2,168],[189,-10]],[[56581,23829],[20,1165]],[[56601,24994],[-382,10],[2,335]],[[56221,25339],[-398,10]],[[55823,25349],[-20,-1660]],[[44173,30589],[1402,149]],[[45575,30738],[-47,1501]],[[45528,32239],[-635,-57],[-730,-90]],[[44163,32092],[20,-498],[-44,-5],[34,-1000]],[[28173,37420],[54,-32],[80,145],[62,-29],[89,-234],[-58,-255],[18,-130],[-84,-42],[-12,-139],[164,-227],[215,-32],[38,-157],[170,-7]],[[28909,36281],[51,20],[236,-188],[105,-142]],[[29301,35971],[-89,965],[887,254],[738,183]],[[30837,37373],[77,21]],[[30914,37394],[-60,701]],[[30854,38095],[-171,-24],[-256,-165],[-140,27],[-49,98],[-187,-15],[-68,53],[-224,23],[-152,-69],[-100,110],[-134,-95],[-37,181]],[[29336,38219],[-51,-23],[-99,314],[-86,37],[-152,-93],[-65,146],[-132,-151],[-129,-214],[-65,-41],[-25,-250],[-141,145],[-42,161],[-101,-68]],[[28248,38182],[-63,-241],[31,-119],[-65,-309],[22,-93]],[[84146,27299],[387,-180]],[[84533,27119],[-9,276],[86,423],[-14,199],[52,282],[138,302]],[[84786,28601],[160,231],[-173,74]],[[84773,28906],[-312,132]],[[84461,29038],[-56,-459],[-161,-338]],[[84244,28241],[-58,-391],[22,-23],[-62,-528]],[[52994,51565],[282,5],[3,-336]],[[53279,51234],[682,9]],[[53961,51243],[0,505]],[[53961,51748],[-3,1180]],[[53958,52928],[0,504]],[[53958,53432],[-974,-17]],[[52984,53415],[10,-1850]],[[45921,48859],[749,69]],[[46670,48928],[-39,1681]],[[46631,50609],[-752,-69]],[[45879,50540],[42,-1681]],[[69694,29395],[-78,-1330]],[[69616,28065],[747,-140]],[[70363,27925],[84,1326]],[[70447,29251],[42,664]],[[70489,29915],[-360,73]],[[70129,29988],[-394,71],[-41,-664]],[[50123,41414],[748,27]],[[50871,41441],[2,0]],[[50873,41441],[-14,1341]],[[50859,42782],[-747,-27]],[[50112,42755],[-8,0]],[[50104,42755],[19,-1341]],[[81642,26744],[147,-68],[217,-42],[199,-91],[175,-18]],[[82380,26525],[94,878]],[[82474,27403],[-733,258]],[[81741,27661],[-99,-917]],[[50498,12717],[575,23]],[[51073,12740],[-7,659],[31,1],[-15,1322]],[[51082,14722],[-153,-5]],[[50929,14717],[-769,-32]],[[50160,14685],[-37,-2],[10,-660]],[[50133,14023],[4,-260]],[[50137,13763],[6,-402],[152,7],[11,-658],[192,7]],[[49250,58873],[750,34]],[[50000,58907],[-16,1696]],[[49984,60603],[-188,-8],[-9,669]],[[49787,61264],[-550,-25]],[[49237,61239],[-16,-1],[16,-1005]],[[49237,60233],[13,-1360]],[[46243,72725],[953,76],[-1,23]],[[47195,72824],[-40,1664]],[[47155,74488],[-153,-14]],[[47002,74474],[-812,-60]],[[46190,74414],[53,-1689]],[[43871,62257],[955,97]],[[44826,62354],[-59,1670]],[[44767,64024],[-682,-63]],[[44085,63961],[-282,-30]],[[43803,63931],[68,-1674]],[[43985,58898],[946,94]],[[44931,58992],[-52,1656]],[[44879,60648],[-950,-89]],[[43929,60559],[56,-1661]],[[45087,78152],[-513,-30]],[[44574,78122],[-587,-43]],[[43987,78079],[68,-1720]],[[63943,27259],[585,-61]],[[64528,27198],[530,-65]],[[65058,27133],[44,992]],[[65102,28125],[-444,59]],[[64658,28184],[-676,84]],[[63982,28268],[-39,-1009]],[[73468,55285],[12,-2]],[[73480,55283],[901,-147]],[[74381,55136],[34,218],[-54,129],[-78,-5],[-22,173],[48,294],[36,392],[-73,113],[17,165]],[[74289,56615],[-42,172],[-63,57]],[[74184,56844],[-63,-143],[-179,-92],[-83,-112],[-183,-352]],[[73676,56145],[66,-108],[-69,-142],[-92,-328]],[[73581,55567],[-113,-282]],[[60682,20261],[956,-74]],[[61638,20187],[19,661],[380,-38]],[[62037,20810],[39,1309]],[[62076,22119],[-1324,121]],[[60752,22240],[-38,-1316],[-15,-1],[-17,-662]],[[71108,27787],[758,-162]],[[71866,27625],[90,1332]],[[71956,28957],[-377,77]],[[71579,29034],[-377,77]],[[71202,29111],[-94,-1324]],[[66416,78444],[381,-47]],[[66797,78397],[475,-64]],[[67272,78333],[29,669]],[[67301,79002],[10,223]],[[67311,79225],[-669,85],[-9,116],[-178,20]],[[66455,79446],[-39,-1002]],[[65608,66011],[476,-54]],[[66084,65957],[16,335],[190,-24]],[[66248,67568],[2,64],[-571,70]],[[65679,67702],[-22,-559]],[[65657,67143],[-49,-1132]],[[46036,35790],[936,86]],[[46972,35876],[-31,1332]],[[46941,37208],[-726,-60]],[[46215,37148],[-213,-21]],[[46002,37127],[34,-1337]],[[44349,72558],[0,-13]],[[44349,72545],[947,94]],[[45296,72639],[-57,1688]],[[45239,74327],[-289,-30]],[[44950,74297],[-671,-64]],[[44279,74233],[70,-1675]],[[36048,38546],[877,185]],[[36925,38731],[214,46]],[[37139,38777],[-10,230],[84,280],[114,273],[126,654],[44,300],[-7,197],[65,-9],[16,137]],[[37571,40839],[-73,52],[-34,261],[-98,180],[-102,-106],[-205,124],[-36,-58],[-112,51],[-38,-133],[-94,87],[-69,-121],[-155,-4],[-55,-230],[-77,147],[-124,-71],[-53,-270]],[[36246,40748],[8,-202],[-54,-313],[0,-159],[82,-295],[17,-237],[59,-130],[-63,-367],[-75,42],[-69,-148],[-108,-89],[-28,-184],[33,-120]],[[59365,30536],[166,-11]],[[59531,30525],[586,-41]],[[60117,30484],[24,1104]],[[60141,31588],[-754,51]],[[59387,31639],[-22,-1103]],[[74342,28963],[26,-8],[-126,-1319]],[[74242,27636],[798,-251]],[[75040,27385],[78,549],[105,387],[93,800],[49,207]],[[75365,29328],[-775,247]],[[71763,40960],[22,-4],[-38,-723]],[[71747,40233],[218,-47]],[[71965,40186],[437,-104]],[[72402,40082],[54,841]],[[72456,40923],[12,163]],[[72468,41086],[-685,151]],[[71783,41237],[-20,-277]],[[45068,9987],[27,-723]],[[45095,9264],[765,78]],[[45860,9342],[-35,1054],[67,7],[-22,657],[576,58]],[[46446,11118],[-11,328]],[[46435,11446],[-1151,-119],[35,-983],[-263,-29],[12,-328]],[[16427,13651],[140,60],[58,178],[151,73],[302,31],[80,-106],[282,-72]],[[17440,13815],[-315,2048],[186,86],[-51,325],[187,82],[-50,326],[-52,30]],[[17345,16712],[-242,-100],[-816,-380]],[[16287,16232],[-5,-62]],[[16282,16170],[72,-47],[42,-141],[-26,-221],[-60,-61],[-8,-190],[80,-251],[43,-286],[77,-34],[14,-183],[118,-70],[100,17],[-41,-227],[15,-133],[-85,-280],[-79,-94],[-117,-318]],[[56303,56633],[960,43]],[[57263,56676],[-3,962]],[[57260,57638],[-948,26]],[[56312,57664],[-5,-650]],[[56307,57014],[-4,-381]],[[41026,68855],[840,105]],[[41866,68960],[-66,1649]],[[41800,70609],[-860,-108]],[[40940,70501],[86,-1646]],[[45975,64131],[745,62]],[[46720,64193],[-13,717]],[[46707,64910],[-23,956]],[[45927,65802],[48,-1671]],[[73995,66134],[126,-7],[192,-89],[-4,-67]],[[74309,65971],[182,-33],[98,218]],[[74589,66156],[-119,257],[2,80],[-169,161],[-87,236]],[[74216,66890],[-175,38],[-46,-794]],[[12006,86496],[72,17],[107,374],[396,77]],[[12581,86964],[-57,142],[-28,463],[-18,-4],[-29,463],[47,9],[-20,347],[136,24]],[[12612,88408],[95,134],[-197,128],[-139,162],[-291,104],[-213,-149],[-91,-2],[-161,88],[-66,-50],[-123,157],[-119,-79],[-10,171],[-89,276],[-148,71],[-27,-59],[-195,22]],[[10838,89382],[-16,-88],[94,-38],[-119,-223],[-94,76],[0,-240],[-85,-117],[-2,-116],[70,-86],[-49,-94],[-92,29],[21,-156],[124,-16],[-79,-221],[163,10],[-22,-218],[50,-173],[364,-634],[-2,-135],[123,-392],[86,-131],[103,-36],[134,97],[124,269],[97,-9],[175,-244]],[[57503,38284],[619,-3],[26,72],[111,-22]],[[58259,38331],[22,1272]],[[58281,39603],[-377,15]],[[57904,39618],[-381,13]],[[57523,39631],[-20,-1347]],[[49200,63925],[944,40]],[[50144,63965],[-2,670]],[[50142,64635],[-95,-4],[-9,671]],[[50038,65302],[-183,-7],[-3,167],[-94,52],[-376,-17],[-2,111],[-188,-9],[-95,52]],[[49097,65651],[6,-391],[-295,-15],[6,-335]],[[48814,64910],[17,-1006],[369,21]],[[46783,61589],[754,55],[7,-336],[376,24]],[[47920,61332],[-4,168]],[[47916,61500],[-20,1344]],[[47896,62844],[-88,3]],[[47808,62847],[-55,17],[-611,-70],[-8,334],[-188,-14]],[[46946,63114],[-200,-15]],[[46746,63099],[14,-586]],[[46760,62513],[23,-924]],[[48702,27886],[588,27]],[[49290,27913],[-19,1002]],[[49271,28915],[-677,-35]],[[48594,28880],[8,-234],[-131,-206],[-112,-38],[-77,-184],[38,-184],[-53,-166]],[[47641,80589],[642,42]],[[48283,80631],[705,30]],[[48988,80661],[-15,1382]],[[48973,82043],[-631,-29]],[[48342,82014],[-723,-26],[10,-583]],[[47629,81405],[12,-816]],[[44748,67550],[947,75]],[[45695,67625],[-44,1684]],[[45651,69309],[-950,-81]],[[44701,69228],[47,-1678]],[[47321,87681],[1151,39]],[[48472,87720],[0,1]],[[48472,87721],[-27,1696],[-16,551]],[[48429,89968],[-1142,39],[3,-664]],[[47290,89343],[31,-1662]],[[81093,43119],[194,-214],[314,117],[42,71]],[[81643,43093],[39,51],[254,-200],[38,67],[-54,181],[-16,245],[101,22],[-31,415],[-26,28]],[[81948,43902],[-257,37],[-485,-97],[2,-155],[-98,-124]],[[81110,43563],[-27,-51],[10,-393]],[[10923,29152],[1665,808]],[[12588,29960],[182,84]],[[12770,30044],[-164,1035],[20,8],[-282,1707]],[[12344,32794],[-271,-130]],[[12073,32664],[-245,-75],[-51,-97],[-90,26],[-182,-116],[-161,30],[-103,-93],[-319,-3],[-250,-55],[-183,-108],[-90,-113],[-246,133],[-127,-211],[-210,-38],[-100,118],[-86,-77],[-160,31]],[[9470,32016],[28,-180],[92,-85],[75,-163],[161,-27],[129,-174],[82,10],[74,-133],[132,-25],[-25,-449],[86,-178],[120,-117],[17,-156],[148,-233],[43,-254],[147,-123],[37,-214],[113,-18],[60,-217],[-66,-128]],[[66425,51595],[-8,-168]],[[66417,51427],[570,-81]],[[66987,51346],[53,1186]],[[67040,52532],[-63,7]],[[66977,52539],[-510,72]],[[66467,52611],[-42,-1016]],[[69149,25440],[648,-98]],[[69797,25342],[77,1330]],[[69874,26672],[-348,53]],[[69526,26725],[-540,53]],[[68986,26778],[147,-669],[16,-669]],[[48666,35985],[748,38]],[[49414,36023],[-19,1340]],[[49395,37363],[-738,-41]],[[48657,37322],[-16,-1]],[[48641,37321],[25,-1336]],[[46965,37210],[919,64]],[[47884,37274],[757,47]],[[48657,37322],[-27,1333],[15,2]],[[48645,38657],[-33,1336]],[[48612,39993],[-359,-20]],[[48253,39973],[-1313,-92]],[[46940,39881],[-23,-1],[38,-1335],[-24,-2]],[[46931,38543],[34,-1333]],[[50982,27992],[754,23]],[[51726,29344],[-378,-12]],[[51348,29332],[-383,-15]],[[50965,29317],[17,-1325]],[[50818,24316],[756,30]],[[51574,24346],[-7,1331]],[[51567,25677],[-11,996]],[[51556,26673],[-564,-19]],[[50992,26654],[-1,-333],[-190,-8]],[[50801,26313],[13,-998],[-9,0],[13,-999]],[[62710,61712],[-9,-348]],[[62701,61364],[192,-7],[568,-81],[193,8]],[[63654,61284],[37,1145]],[[63691,62429],[-962,77]],[[62729,62506],[-19,-794]],[[34068,52049],[608,125]],[[34676,52174],[-8,117],[719,129],[2,-30]],[[35389,52390],[56,13]],[[35693,54042],[-681,-128],[-11,-32],[-940,-192]],[[34061,53690],[-105,-22]],[[33956,53668],[112,-1619]],[[82254,90253],[575,-150],[-31,-332],[193,-55],[-31,-329],[439,-125]],[[83399,89262],[159,170],[40,743]],[[83598,90175],[-51,744],[-1213,328]],[[82334,91247],[-80,-994]],[[48277,30529],[375,24]],[[48652,30553],[-22,120],[84,124],[141,15],[147,449],[136,245],[134,53],[63,358],[127,40],[128,273],[115,15],[148,141],[39,159]],[[49892,32545],[-1209,-62]],[[48683,32483],[-447,-28]],[[48236,32455],[41,-1926]],[[44042,57188],[943,93]],[[44985,57281],[-54,1702]],[[44931,58983],[0,9]],[[43985,58898],[57,-1710]],[[14236,7194],[129,-189],[65,-9],[160,-369],[7,-96],[98,246],[70,-178]],[[14765,6599],[82,290],[276,137],[36,258],[194,323],[138,47],[88,-74],[141,161],[44,-20],[93,207],[131,73],[47,144],[95,38]],[[16130,8183],[-89,306],[-68,41],[-49,202],[-126,139],[32,54],[15,320]],[[15845,9245],[-443,-212],[-137,144],[-168,-179],[-105,-1],[-249,-204]],[[14743,8793],[-138,-172],[31,-138],[-249,-281],[18,-139],[-79,-151],[13,-124],[-99,-96],[-38,-389],[34,-109]],[[14230,6202],[33,-182]],[[14263,6020],[367,185]],[[14630,6205],[-3,107],[-88,183],[18,140],[-120,208],[-97,-311],[88,-284],[-100,94],[-68,180],[11,166],[102,173],[-61,24],[-26,182],[-62,25],[-62,-187],[-48,-382],[83,-84],[33,-237]],[[74157,67145],[416,-83],[23,27]],[[74596,67089],[-22,104],[40,278],[63,161],[99,66],[88,284]],[[74864,67982],[1,141]],[[74219,68373],[-8,-125],[-140,25]],[[74071,68273],[-190,-739]],[[73881,67534],[47,-132],[91,60],[138,-317]],[[76400,64895],[296,-358]],[[76696,64537],[195,115]],[[76891,64652],[-14,225],[73,129],[-46,230]],[[76904,65236],[-91,-6],[-195,-234],[-156,20],[-62,-121]],[[70231,44141],[496,-108]],[[70727,44033],[69,1116]],[[70796,45149],[-223,53]],[[70573,45202],[-278,60]],[[70295,45262],[-64,-1121]],[[51555,49522],[752,15]],[[52307,49537],[-2,336],[188,3]],[[52493,49876],[-3,671],[-31,-1],[-10,1015]],[[52449,51561],[-536,-17]],[[51913,51544],[2,-336],[-374,-5]],[[51541,51203],[14,-1681]],[[57711,22064],[572,-14]],[[58283,22050],[11,659],[184,-6],[15,555]],[[58493,23258],[-758,26]],[[57735,23284],[-9,-550]],[[57726,22734],[-15,-670]],[[50180,34718],[751,25]],[[50931,34743],[-15,1339]],[[50916,36082],[-5,667]],[[50911,36749],[-752,-23]],[[50159,36726],[1,-669]],[[50160,36057],[20,-1339]],[[76565,37214],[-21,-281],[156,-38],[-18,-242],[160,-41],[-22,-287],[153,-40]],[[76973,36285],[313,-90]],[[77286,36195],[90,1101]],[[77376,37296],[-719,174]],[[76657,37470],[-72,17],[-20,-273]],[[72298,59678],[88,-22]],[[72386,59656],[169,-86],[58,-92]],[[72613,59478],[-15,104],[70,177],[348,468]],[[73016,60227],[-27,142],[-207,707]],[[72782,61076],[-47,-285],[-82,-138],[-217,-178]],[[72436,60475],[83,-165],[25,-193],[-95,-79],[-15,-213],[-136,-147]],[[42974,60472],[955,102]],[[43929,60574],[-58,1683]],[[43871,62257],[-969,-105]],[[42902,62152],[72,-1680]],[[51496,77760],[898,-913]],[[52394,76847],[377,1161]],[[52771,78008],[-437,435]],[[52334,78443],[-1,-18],[-455,469]],[[51878,78894],[-382,-1134]],[[50929,14717],[-18,1314],[39,2],[-5,325]],[[50945,16358],[-760,-31]],[[50185,16327],[5,-327],[-48,-2]],[[50142,15998],[14,-990]],[[50156,15008],[4,-323]],[[50204,30636],[327,15]],[[50531,30651],[-6,1158]],[[50525,31809],[-901,-717],[-41,10],[9,-496]],[[49298,76134],[580,-582],[-92,-294]],[[49786,75258],[381,-371]],[[50167,74887],[430,1341]],[[50597,76228],[-782,773]],[[49815,77001],[-172,175]],[[49643,77176],[-345,-1042]],[[57920,40631],[757,-38]],[[58677,40593],[22,1212]],[[58699,41805],[-459,37]],[[58240,41842],[-302,15]],[[57938,41857],[-18,-1226]],[[41691,18176],[369,54],[16,-337],[290,40]],[[42366,17933],[571,77]],[[42937,18010],[459,59]],[[43396,18069],[-51,1325]],[[43345,19394],[-107,-10]],[[43238,19384],[-556,-70],[-1040,-148]],[[41642,19166],[49,-990]],[[46036,74403],[154,11]],[[47002,74474],[-58,1938]],[[46944,76412],[-726,-65]],[[45997,75897],[39,-1494]],[[25251,51421],[2040,598]],[[27291,52019],[1031,278]],[[28322,52297],[-940,10439]],[[27382,62736],[-51,-192],[-121,136],[-76,-164],[-106,-76],[-92,-215],[-124,-165],[-98,56],[-99,-157],[-56,-191],[-117,65],[-155,-44],[-55,183],[-5,-270],[-148,77],[-66,-33],[154,-105],[-142,-97]],[[26025,61544],[124,-1257],[-399,-118],[65,-675],[-57,1],[-927,-262],[65,-666],[-187,-61],[45,-421],[-65,67],[-181,-75],[-180,-322],[-107,-13],[-329,-297],[-24,-152],[-267,-420],[-35,-120],[-144,-137],[-127,-34]],[[22604,9893],[604,213],[83,-137],[376,146]],[[23667,10115],[-182,1456]],[[23485,11571],[-190,-72],[7,-54],[-557,-197],[-68,-204],[-76,12],[-11,-191],[-100,-86]],[[22490,10779],[63,-490]],[[22553,10289],[51,-396]],[[48681,53804],[948,45]],[[49629,53849],[-6,335],[199,9]],[[49822,54193],[-16,1490]],[[49806,55683],[-344,-20]],[[49462,55663],[-792,-42]],[[48670,55621],[25,-1484],[-18,-1]],[[48677,54136],[4,-332]],[[53174,29365],[614,4]],[[53788,29369],[20,0]],[[53808,29369],[-2,1340]],[[53806,30709],[-635,-4]],[[96529,13024],[161,-146],[-81,-298],[-316,-979]],[[96624,11265],[137,-3],[3,-68],[138,190],[232,-19],[63,-97],[51,68],[29,221],[-85,167],[76,191],[122,152],[-38,414],[200,369],[119,74],[48,-111],[-16,-155],[116,33],[98,-43],[160,283],[159,408],[102,76],[70,368],[-199,774],[-156,275],[1,-202],[-63,-203],[-127,172],[95,148],[-38,172],[-65,-11],[-39,220],[-128,50],[30,103],[110,77],[-85,245],[-96,-108],[-65,-161],[-105,210],[-68,-167],[-5,217],[-40,69],[-4,256],[-57,-25],[-93,120]],[[97211,16014],[-201,-589],[33,-30],[-88,-292],[-26,24],[-274,-916],[173,-158],[-299,-1029]],[[31191,9492],[196,55],[244,-2592],[34,-308]],[[31665,6647],[761,205]],[[32426,6852],[-280,2905]],[[32146,9757],[-105,-28],[-29,323],[-852,-234]],[[31160,9818],[31,-326]],[[50859,21326],[1150,36]],[[52009,21362],[-9,1440]],[[52000,22802],[-212,-7],[-13,-111],[-933,-32]],[[50842,22652],[17,-1326]],[[83385,26527],[409,-182],[129,21],[128,-43],[65,-106],[163,-128],[98,-168]],[[84377,25921],[149,980],[7,218]],[[84146,27299],[-266,96],[-13,-103],[-370,149]],[[83497,27441],[-112,-914]],[[13781,92672],[269,18],[-7,361],[-377,-27]],[[13666,93024],[75,-117],[40,-235]],[[81234,89851],[-40,-491]],[[81194,89360],[955,-259]],[[82149,89101],[105,1152]],[[82254,90253],[-822,210],[-144,49]],[[81288,90512],[-54,-661]],[[73653,64979],[-26,-449],[38,-7],[-33,-512],[19,-179]],[[73651,63832],[94,-45],[391,-70],[-4,-63],[144,-29]],[[74276,63625],[78,1281]],[[74354,64906],[-141,25]],[[74213,64931],[-333,56]],[[73880,64987],[-224,44],[-3,-52]],[[58371,35560],[372,-21]],[[58743,35539],[379,-25]],[[59122,35514],[29,1337]],[[59151,36851],[-758,41]],[[58393,36892],[-22,-1332]],[[47755,52038],[15,-672]],[[47770,51366],[376,23],[-7,335],[563,35]],[[48702,51759],[-13,674],[16,1]],[[48705,52434],[-7,357]],[[48698,52791],[-940,-64]],[[47758,52727],[-3,-689]],[[72049,24913],[751,-170]],[[72800,24743],[101,1319]],[[72901,26062],[-440,97]],[[72461,26159],[-315,73]],[[72146,26232],[-97,-1319]],[[49397,38697],[741,36]],[[50146,38733],[-19,1339]],[[50127,40072],[-716,-34]],[[49411,40038],[-43,-2]],[[49368,40036],[29,-1339]],[[73749,37480],[750,-166]],[[74499,37314],[52,668]],[[74551,37982],[-61,15],[-6,338],[-62,14],[23,333]],[[74445,38682],[-596,128]],[[73849,38810],[-29,-384]],[[73820,38426],[-71,-946]],[[73086,48565],[178,-343],[62,-176]],[[73326,48046],[33,-84]],[[73359,47962],[66,218],[113,132],[72,412]],[[73610,48724],[90,274]],[[73700,48998],[-351,379],[-4,52]],[[73345,49429],[-66,-199],[-125,-69]],[[73154,49161],[-68,-596]],[[72613,59478],[241,-644],[9,-174]],[[72863,58660],[373,-98],[28,93],[194,-100]],[[73458,58555],[-195,596],[-94,203],[25,141],[-72,179],[28,121]],[[73150,59795],[-58,23],[-76,409]],[[81730,53455],[539,-159]],[[82269,53296],[348,-100]],[[82617,53196],[80,1116]],[[82697,54312],[2,32]],[[82699,54344],[-877,200]],[[81822,54544],[-92,-1089]],[[42916,65514],[166,19]],[[43082,65533],[780,84]],[[43862,65617],[-61,1854]],[[43801,67471],[-946,-79]],[[42855,67392],[61,-1878]],[[82982,47090],[66,-140],[68,-6],[11,214],[-82,61],[-63,-129]],[[35610,28775],[669,143]],[[36279,28918],[-2,30],[1048,206],[583,103]],[[37908,29257],[2,85],[-161,2653],[-7,0],[-79,1319]],[[37663,33314],[-881,-157],[-1438,-307]],[[35344,32850],[-31,-6],[91,-1326],[67,14],[91,-1323],[-23,-4],[92,-1315],[-21,-115]],[[55157,79392],[27,-148],[114,-35],[41,251],[59,63]],[[55398,79523],[131,162],[-6,337],[58,136],[94,-87],[89,283],[-39,104],[121,7],[233,112],[-11,202]],[[56068,80779],[13,23],[-609,557]],[[55472,81359],[-114,99],[43,-109],[-63,-119],[-137,-100],[-98,-377]],[[64461,25523],[964,-113],[13,336]],[[65438,25746],[-203,27],[53,1327]],[[65288,27100],[-230,33]],[[64528,27198],[-67,-1675]],[[78211,40093],[-25,-344],[97,-23],[-35,-498]],[[78248,39228],[541,-114]],[[78789,39114],[126,-29],[64,1012]],[[78979,40097],[-569,115]],[[78410,40212],[-187,43],[-12,-162]],[[74831,77774],[37,-180],[110,-134],[34,-369],[-33,-558],[34,-115]],[[75013,76418],[348,-111]],[[75361,76307],[65,-11]],[[75426,76296],[245,-54]],[[75671,76242],[97,1482]],[[75768,77724],[-912,107]],[[74856,77831],[-25,-57]],[[60263,80653],[262,-14]],[[60525,80639],[470,-30],[5,167],[128,-10],[9,334],[68,190]],[[61205,81290],[-59,225],[-137,155],[-61,217]],[[60948,81887],[-166,321],[-88,72],[-160,-104],[-100,-134],[-128,98]],[[60306,82140],[6,-319],[50,-103],[-69,-106],[5,-420],[-23,-148],[63,-162],[-75,-229]],[[56980,24984],[381,-12]],[[57361,24972],[5,333],[379,-18],[9,333]],[[57754,25620],[-122,89],[-47,172],[23,115],[-231,268]],[[57377,26264],[-2,-127],[-188,8],[-2,-167],[-190,6]],[[56995,25984],[-15,-1000]],[[66384,50586],[-19,-506]],[[66365,50080],[566,-73]],[[66931,50007],[55,1336]],[[66986,51343],[1,3]],[[66417,51427],[-33,-841]],[[55041,23372],[190,-2]],[[55231,23370],[570,-13],[2,332]],[[55823,25349],[-763,17]],[[55060,25366],[-1,-999]],[[55059,24367],[-15,-330],[-3,-665]],[[66380,26957],[243,-33],[-16,-333],[191,-27]],[[66798,26564],[348,-55]],[[67146,26509],[73,365],[-7,193],[-185,318],[-92,833]],[[66935,28218],[-488,74]],[[66447,28292],[-67,-1335]],[[70851,73751],[756,-139]],[[71607,73612],[68,1180],[-94,18],[29,496]],[[71610,75306],[-376,70]],[[71234,75376],[-256,39],[-55,-73],[-93,-317],[-24,-460]],[[70806,74565],[-18,-296]],[[70788,74269],[-32,-500],[95,-18]],[[76136,68193],[478,-264]],[[76614,67929],[208,-100]],[[76822,67829],[53,298],[153,660]],[[77028,68787],[-82,127]],[[76946,68914],[-178,248]],[[76768,69162],[-169,-128],[-108,25],[-113,-226]],[[76378,68833],[-98,-407],[-144,-233]],[[57899,32890],[758,-34]],[[58657,32856],[21,1348]],[[58678,34204],[-760,35]],[[57918,34239],[-19,-1349]],[[70769,36715],[748,-157]],[[71517,36558],[69,1003]],[[71586,37561],[-188,38]],[[71398,37599],[-375,65],[-6,-112],[-188,38]],[[70829,37590],[-37,-544]],[[70792,37046],[-23,-331]],[[44840,45404],[1087,102]],[[45927,45506],[35,3]],[[45962,45509],[-50,1675]],[[45912,47184],[-153,-13]],[[45759,47171],[-978,-98]],[[44781,47073],[59,-1669]],[[71021,26450],[369,-64]],[[71390,26386],[381,-75]],[[71771,26311],[95,1314]],[[71108,27787],[-87,-1337]],[[71217,23734],[736,-143]],[[71953,23591],[96,1322]],[[72049,24913],[-748,142]],[[71301,25055],[-84,-1321]],[[58955,54025],[-2,-279],[377,-8]],[[59330,53738],[289,-7]],[[59619,53731],[7,841],[23,0],[3,757]],[[59652,55329],[-378,9]],[[59274,55338],[0,-57],[-283,2]],[[58991,55283],[-5,-699],[-27,1],[-4,-560]],[[44143,36936],[910,92]],[[45053,37028],[32,3]],[[45085,37031],[-45,1337]],[[45040,38368],[-944,-96]],[[44096,38272],[47,-1336]],[[50887,39610],[105,-233],[279,-370]],[[51271,39007],[125,-107],[119,-23],[135,-103]],[[51650,38774],[-11,1346]],[[51639,40120],[-754,-21]],[[50885,40099],[2,-489]],[[51574,24346],[416,10]],[[51990,24356],[530,16],[-1,664]],[[52519,25036],[-7,660]],[[52512,25696],[-945,-19]],[[48429,89968],[914,42]],[[49343,90010],[192,7]],[[49535,90017],[-35,3027]],[[48929,93009],[6,-297],[-131,-65],[-410,-2]],[[48394,92645],[35,-2677]],[[43036,58797],[949,101]],[[43929,60559],[0,15]],[[42974,60472],[1,-29]],[[42975,60443],[61,-1646]],[[42440,72363],[15,2]],[[42455,72365],[947,95]],[[43402,72460],[-70,1678]],[[43332,74138],[-150,-14]],[[43182,74124],[-806,-88]],[[42376,74036],[64,-1673]],[[75851,40172],[164,-22],[-58,-784],[32,-7]],[[75989,39359],[468,-137]],[[76457,39222],[188,-99]],[[76645,39123],[65,-36],[29,448]],[[76739,39535],[51,834]],[[76790,40369],[-466,91],[-4,-73],[-456,65]],[[75864,40452],[-13,-280]],[[95812,97109],[4,214],[66,161],[-22,143]],[[95860,97627],[-8,38]],[[95852,97665],[-12,4]],[[95840,97669],[-80,-79],[-122,52]],[[95638,97642],[51,-335],[123,-198]],[[52153,76127],[399,-401]],[[52552,75726],[414,76]],[[52966,75802],[482,1473]],[[53448,77275],[-162,150],[7,65]],[[53293,77490],[-522,518]],[[52394,76847],[-241,-720]],[[60955,33716],[762,-72]],[[61717,33644],[44,1344]],[[61761,34988],[-377,31]],[[61384,35019],[-377,31]],[[61007,35050],[-19,-664],[-18,1],[-15,-671]],[[51639,40120],[752,19]],[[52391,40139],[-11,1342]],[[52380,41481],[-753,-19]],[[51627,41462],[12,-1342]],[[45980,85887],[1342,73]],[[47322,85960],[-26,1720]],[[47296,87680],[-1363,-123]],[[45933,87557],[47,-1670]],[[12389,36035],[133,-113],[52,-205],[119,-85],[96,308],[61,-9],[93,208],[88,-73],[795,358]],[[13826,36424],[214,92],[31,-41]],[[14071,36475],[-157,1035]],[[13914,37510],[-810,-371],[-81,-345],[-124,-71],[-209,200],[-465,26]],[[12225,36949],[51,-467],[-25,-102],[67,-56],[71,-289]],[[64519,33910],[57,-6]],[[64576,33904],[685,-66]],[[65261,33838],[57,1315]],[[65318,35153],[-376,56],[-9,-207],[-360,53]],[[64573,35055],[-54,-1145]],[[93001,20597],[302,-230]],[[93303,20367],[38,69],[101,-99],[74,35],[44,322],[130,-5],[32,-119],[178,197],[-32,157],[254,163]],[[94122,21087],[-21,202],[65,161],[-72,232],[34,96],[-170,183],[-37,362],[44,88],[-21,358],[-41,275],[-41,61]],[[93862,23105],[-216,-148]],[[93646,22957],[-35,-80],[-8,-309],[-152,-157],[-102,-166],[-35,24],[-93,-273],[26,-108],[-61,-380]],[[93186,21508],[-33,-100],[-152,-811]],[[87637,42152],[-13,-224],[63,-189],[51,-375],[127,-185]],[[87865,41179],[189,1166]],[[88054,42345],[117,724]],[[88171,43069],[-116,-157],[-133,-20],[-165,179]],[[87757,43071],[-141,-163],[57,-223],[101,-166],[-64,-81],[-73,-286]],[[71869,22284],[184,-39]],[[72053,22245],[561,-136]],[[72614,22109],[50,650],[-16,4],[52,659]],[[72700,23422],[-747,169]],[[71953,23591],[-84,-1307]],[[52691,18713],[10,14]],[[52701,18727],[49,181],[19,360],[106,430],[102,173],[5,421],[61,519],[-35,237]],[[53008,21048],[19,331]],[[53027,21379],[-1018,-17]],[[52009,21362],[1,-218],[-48,-19],[9,-1088],[-32,-1]],[[51939,20036],[11,-1323]],[[79405,38104],[-77,-809]],[[79328,37295],[586,-184]],[[79914,37111],[83,683]],[[79997,37794],[28,230],[-56,32],[-247,587]],[[79722,38643],[-259,75]],[[79463,38718],[-58,-614]],[[41026,68855],[37,-698]],[[41063,68157],[51,-974]],[[41114,67183],[782,96]],[[71771,26311],[375,-79]],[[72461,26159],[45,627]],[[72506,26786],[45,652]],[[72551,27438],[-313,58],[4,56],[-376,73]],[[40985,44279],[49,-1005]],[[41034,43274],[389,53],[62,-1338],[25,-332]],[[41510,41657],[1135,140]],[[42645,41797],[-37,332],[-54,1342],[-18,-2],[-67,1673]],[[42469,45142],[-590,-67]],[[41879,45075],[-926,-129]],[[40953,44946],[32,-667]],[[60192,33781],[763,-65]],[[61007,35050],[-379,19]],[[60628,35069],[-377,35]],[[56395,33959],[758,-23]],[[57153,33936],[4,333]],[[57157,34269],[4,331],[65,-2],[13,1008]],[[57239,35606],[-378,13]],[[56861,35619],[-376,15]],[[56485,35634],[-11,-1016],[-73,2],[-3,-329]],[[56398,34291],[-3,-332]],[[46626,51954],[1129,84]],[[47758,52727],[-16,1031]],[[47742,53758],[-378,-25],[-574,-70]],[[46790,53663],[-188,-15]],[[46602,53648],[37,-1356],[-13,-338]],[[72700,23422],[0,1]],[[72700,23423],[100,1320]],[[66143,70694],[552,-67],[189,-7]],[[66884,70620],[58,1341]],[[66942,71961],[-741,96]],[[66201,72057],[-58,-1363]],[[47865,41343],[372,78]],[[48237,41421],[393,64]],[[48630,41485],[-23,1194]],[[48607,42679],[-749,-49]],[[47858,42630],[-20,-1]],[[47838,42629],[27,-1286]],[[52238,36113],[317,6]],[[52555,36119],[435,7],[0,285]],[[52990,36411],[-4,1055]],[[52986,37466],[-572,-11]],[[52414,37455],[-185,-4]],[[52229,37451],[9,-1338]],[[77760,59990],[191,-181],[46,29],[61,-201],[76,71]],[[78134,59708],[242,-76]],[[78376,59632],[92,1323],[162,212]],[[78630,61167],[-98,798],[20,194],[-122,233]],[[78430,62392],[-206,-219],[-88,-257],[-55,-451],[11,-127],[-75,-149]],[[78017,61189],[-37,-286],[-57,-109],[-58,-331],[-98,53],[-13,-199],[-150,19],[-123,96],[-33,-71]],[[77448,60361],[165,-235],[147,-136]],[[45352,70957],[250,23]],[[45602,70980],[687,66]],[[46289,71046],[-46,1679]],[[46243,72725],[-947,-86]],[[45296,72639],[56,-1682]],[[84518,54033],[134,-1],[46,-293],[70,-20],[41,-138]],[[84809,53581],[309,-24],[66,124],[170,-31]],[[85354,53650],[-273,1600]],[[85081,55250],[-72,-197],[-217,-174],[-72,-126],[-226,-111]],[[84494,54642],[-21,-225],[45,-384]],[[72177,36814],[750,-163]],[[72927,36651],[184,-41],[72,1002]],[[73183,37612],[-184,41]],[[72999,37653],[-12,-167],[-188,39],[-13,-168],[-564,121]],[[72222,37478],[-5,-72]],[[72217,37406],[-40,-592]],[[69495,60553],[132,-110],[306,101]],[[69933,60544],[65,45],[53,334],[87,44],[62,126]],[[70200,61093],[44,1046]],[[70244,62139],[-668,82]],[[69576,62221],[-23,2]],[[69553,62223],[-8,-478],[-54,-991],[4,-201]],[[47586,67770],[947,56]],[[48533,67826],[-31,1679]],[[48502,69505],[-946,-61]],[[47556,69444],[24,-1289]],[[47580,68155],[6,-385]],[[56678,73471],[95,120],[105,-20],[63,152],[566,-271]],[[57507,73452],[10,754]],[[57517,74206],[8,755],[57,66]],[[57582,75027],[-926,59]],[[56656,75086],[-165,7],[-6,-410],[35,-472],[90,-268],[66,-327],[2,-145]],[[19719,9119],[1487,626]],[[21206,9745],[-212,1451],[-58,50],[-49,228],[-121,-26],[-189,79]],[[20577,11527],[-345,-136],[-1360,-584]],[[18872,10807],[94,-645],[565,249],[188,-1292]],[[57239,35606],[377,-13]],[[57616,35593],[19,1331]],[[57635,36924],[-191,8]],[[57444,36932],[-567,21]],[[56877,36953],[-16,-1334]],[[49474,69558],[3,-272]],[[49477,69286],[806,31]],[[50283,69317],[-1,129],[111,3]],[[50367,71113],[-246,-17]],[[50121,71096],[-679,-45]],[[49442,71051],[32,-1493]],[[96338,97670],[151,-107]],[[96489,97563],[54,141]],[[96543,97704],[-16,183]],[[96527,97887],[-70,75]],[[96457,97962],[-132,-192],[13,-100]],[[52493,49876],[794,11]],[[53287,49887],[-8,1347]],[[52994,51565],[-545,-4]],[[50597,76228],[144,-143],[153,477]],[[50894,76562],[340,1037]],[[51234,77599],[-926,934]],[[50308,78533],[-493,-1532]],[[71684,30356],[744,-152]],[[72428,30204],[99,1304]],[[72527,31508],[1,22],[-381,81]],[[72147,31611],[-373,75]],[[71774,31686],[-90,-1330]],[[53961,51748],[755,4]],[[54716,51752],[2,841],[-10,338]],[[54708,52931],[-750,-3]],[[65318,35153],[378,-54]],[[65696,35099],[189,-26]],[[65885,35073],[-6,337],[60,1332]],[[65939,36742],[14,339]],[[65953,37081],[-547,84]],[[65406,37165],[-47,-1011]],[[65359,36154],[-41,-1001]],[[56413,40681],[752,-14]],[[57165,40667],[14,1245]],[[57179,41912],[-359,20]],[[56820,41932],[-396,16]],[[56424,41948],[-11,-1267]],[[54611,37000],[755,-9]],[[55366,36991],[6,1006],[85,-2],[2,376]],[[55459,38371],[-186,1]],[[55273,38372],[-562,3]],[[54711,38375],[0,-370],[-99,0],[-1,-1005]],[[11675,46070],[79,568],[-38,176],[117,263],[-16,94],[230,165],[115,-81],[169,-13],[81,80],[89,-65],[65,56],[112,-48],[115,85],[190,-394],[220,-117],[68,-158],[59,55],[69,-135],[-45,-71],[114,-73],[41,174],[108,-167],[53,81],[132,-166],[52,-405],[57,-130],[613,-665]],[[14524,45179],[61,141],[97,67],[72,327],[97,-10],[23,112]],[[14874,45816],[-76,473],[128,195],[18,180],[-41,91],[19,366],[85,44],[222,423],[-2,248],[40,400],[-29,207],[-45,8],[6,354]],[[15199,48805],[-1057,-434],[-49,314],[-541,-247],[-47,325],[-273,-125],[-229,244]],[[13003,48882],[-196,192],[-159,-3],[-349,-151],[-122,820],[-760,750]],[[11417,50490],[-44,-247],[-122,-75],[-55,-190],[-159,-319],[3,-117],[-78,-62],[-8,-228],[99,-110],[-51,-279]],[[10866,46911],[565,-587],[110,51],[13,-178],[121,-127]],[[56404,39687],[376,-10]],[[56780,39677],[374,-11]],[[57154,39666],[11,1001]],[[56413,40681],[-9,-994]],[[64338,39149],[282,-33]],[[64620,39116],[225,-25],[-41,176],[322,-41]],[[65126,39226],[187,-27],[30,688]],[[65343,39887],[-698,104]],[[64645,39991],[33,-205],[-314,35]],[[64364,39821],[-26,-672]],[[65987,43170],[-7,-168],[95,-12],[-7,-168],[164,-561]],[[66232,42261],[189,-27]],[[66421,42234],[68,1549]],[[66489,43783],[-3,338]],[[66486,44121],[-455,60]],[[66031,44181],[-44,-1011]],[[55653,39701],[373,-7]],[[56026,39694],[378,-7]],[[56413,40681],[-755,14]],[[55658,40695],[-5,-994]],[[67015,47703],[529,-87]],[[67544,47616],[64,-9]],[[67608,47607],[45,1078]],[[67653,48685],[-70,10]],[[67583,48695],[-329,52]],[[67254,48747],[-6,-111],[-180,20]],[[67068,48656],[-79,-123],[37,-115],[-32,-264],[44,-4],[-23,-447]],[[66600,60996],[46,-4],[238,-270],[93,-396]],[[66977,60326],[85,-7],[120,274],[165,92],[88,-53],[19,283]],[[67454,60915],[4,146]],[[67458,61061],[-363,45],[-127,100],[-78,207],[-43,248],[-110,14]],[[66737,61675],[-33,-311],[-97,-201],[-7,-167]],[[71219,34504],[753,-154]],[[71972,34350],[83,1194]],[[72055,35544],[-601,122]],[[71454,35666],[-155,30]],[[71299,35696],[-80,-1192]],[[81927,55830],[887,-183]],[[82814,55647],[20,215]],[[82834,55862],[102,1254]],[[82936,57116],[-370,126]],[[82566,57242],[-520,177]],[[82046,57419],[-119,-1589]],[[43674,46965],[961,95]],[[44635,47060],[-67,1673]],[[44568,48733],[-140,-12]],[[44428,48721],[-812,-78]],[[43616,48643],[47,-1347]],[[43663,47296],[11,-331]],[[71888,42390],[648,-133]],[[72536,42257],[20,338]],[[72556,42595],[47,729]],[[72603,43324],[-368,65],[4,56]],[[72239,43445],[-251,47],[-16,-280],[-63,12]],[[71909,43224],[-20,-326],[33,-8],[-34,-500]],[[85912,51454],[94,88],[-77,58],[-17,-146]],[[45928,57364],[950,73]],[[46878,57437],[5,0],[-41,1712]],[[46842,59149],[-950,-78]],[[45892,59071],[-12,-1]],[[45880,59070],[48,-1706]],[[70921,56767],[1,-409],[62,-145]],[[70984,56213],[68,6],[47,141],[335,9]],[[71434,56369],[0,117],[-162,187],[-84,246]],[[71188,56919],[-132,-157],[-67,154],[-68,-149]],[[28685,50294],[172,-318],[122,-61],[38,-170],[115,-229],[-70,-135],[75,-33],[78,-240],[318,38],[36,-172],[145,-224],[96,44],[135,-374],[87,-3],[78,-133]],[[30110,48284],[84,-118],[-46,-156],[-2,-233],[-68,-303],[-68,-125],[58,-107],[24,-243],[-33,-86]],[[30059,46913],[1629,406]],[[31688,47319],[-68,858],[-6,476]],[[31614,48653],[-83,1040]],[[31531,49693],[-123,1514]],[[31408,51207],[-151,1857]],[[31257,53064],[-1647,-406]],[[29610,52658],[-808,-212],[-50,-38],[-430,-111]],[[27291,52019],[126,-108],[75,75],[124,-261],[221,64],[171,-54],[12,-91],[100,-74],[156,-520],[141,-15],[74,-111],[-37,-151],[100,-76],[-71,-120],[58,-89],[95,38],[49,-232]],[[59005,38223],[188,-12]],[[59193,38211],[563,-38]],[[59756,38173],[32,1338]],[[59410,39538],[-377,23]],[[59033,39561],[-28,-1338]],[[23397,3862],[1405,529]],[[24802,4391],[-228,1844]],[[24574,6235],[-1059,-396],[163,-1280],[-354,-135]],[[23324,4424],[73,-562]],[[64520,42329],[562,-88]],[[65082,42241],[9,171],[188,-28]],[[65279,42384],[44,896]],[[65323,43280],[24,503],[-124,19]],[[65223,43802],[-313,34],[-133,-42],[-7,-167],[-158,21]],[[64612,43648],[-18,-448],[-42,-111]],[[64552,43089],[-32,-760]],[[54739,49047],[756,-9]],[[55495,49038],[-15,169],[6,1177]],[[55486,50384],[-756,9]],[[54730,50393],[0,-169]],[[54730,50224],[-3,-1008],[12,-169]],[[58744,73331],[251,-12],[-2,-169],[165,-13],[-67,-495]],[[59091,72642],[549,-31]],[[59640,72611],[12,503],[189,-8]],[[59841,73106],[23,835],[-49,100],[-21,246]],[[59794,74287],[-230,10]],[[59564,74297],[-460,22]],[[59104,74319],[-54,-332],[-398,18]],[[58652,74005],[36,-188],[-38,-93],[41,-231],[-40,-110],[93,-52]],[[11705,40237],[156,-9],[83,55],[127,-81],[153,121],[139,238],[190,57],[416,-4],[149,-210],[133,3],[49,-174],[88,0]],[[13388,40233],[-107,720]],[[13281,40953],[-220,-59],[-138,34],[-184,-28],[-45,-67],[-87,64],[-287,97],[-55,152],[-325,81],[-182,180],[-163,-91]],[[11595,41316],[-9,-304]],[[11586,41012],[119,-775]],[[13706,38921],[-35,255],[122,319]],[[13793,39495],[9,256],[-196,287],[-218,195]],[[11705,40237],[-29,-848],[-39,1]],[[11637,39390],[126,-354],[83,-82],[74,-245],[66,22],[125,-120],[127,100],[104,-143],[138,48],[108,288],[98,165],[108,-17],[87,-97],[94,-208],[172,102],[241,75],[87,-106],[231,103]],[[60644,58376],[818,-30]],[[61462,58346],[29,340],[13,633],[-48,2],[4,228]],[[61460,59549],[-76,2],[-162,304]],[[61222,59855],[-84,-53],[-105,-181],[-90,54],[-78,-87],[-114,34],[45,-116],[-28,-152],[72,-116],[-101,-109],[-50,-181],[-88,33],[-13,-105]],[[60588,58876],[-37,-161],[95,-1],[-2,-338]],[[82380,48560],[94,-33],[-59,205],[-35,-172]],[[82911,53105],[-219,67]],[[82692,53172],[9,-143],[-117,-69],[25,-65],[143,25],[24,-177],[190,230],[-55,132]],[[80121,53411],[86,-106],[-48,178]],[[80159,53483],[-38,-72]],[[82895,45674],[57,-185],[98,202],[-134,162],[-21,-179]],[[81889,52853],[29,-116],[79,6],[32,217],[-140,-107]],[[69527,38305],[636,-119]],[[70163,38186],[23,337],[94,-22],[10,169],[119,-25]],[[70409,38645],[9,167]],[[70418,38812],[-363,79],[19,330]],[[70074,39221],[-492,87]],[[69582,39308],[-55,-1003]],[[56015,38361],[751,-19]],[[56766,38342],[14,1335]],[[56026,39694],[-11,-1333]],[[9430,45787],[144,-165],[144,50],[17,89]],[[11417,50490],[67,35],[38,177],[-44,63],[46,243]],[[11524,51008],[-1537,-725],[-395,-194]],[[9592,50089],[-144,-430],[-2,-460],[-101,-133],[-47,-394],[-101,-372],[-140,-224],[-87,-377],[31,-289],[-10,-373],[60,-269],[-50,-116],[109,-154],[93,139],[87,-142],[149,-516],[-9,-192]],[[61909,47724],[128,-9],[6,232],[134,-11],[5,228],[259,-16]],[[62441,48148],[28,1247]],[[62469,49395],[-200,-221],[-92,51],[-163,-76],[-4,-82],[-152,-233],[-95,36]],[[61763,48870],[-85,-33]],[[61678,48837],[-10,-523],[256,-16],[-15,-574]],[[80376,55041],[167,-199],[209,29],[38,-144],[60,49],[73,-82],[30,93],[120,-35],[32,63]],[[81105,54815],[60,384],[-117,211],[51,168]],[[81099,55578],[-345,80]],[[80754,55658],[-329,75]],[[80425,55733],[-49,-692]],[[71956,28957],[375,-80]],[[72331,28877],[94,1287]],[[72425,30164],[3,40]],[[71684,30356],[-43,-662],[-16,4],[-46,-664]],[[74731,51361],[108,-502],[110,-218],[46,-15]],[[74995,50626],[24,-5]],[[75019,50621],[171,154],[169,72]],[[75359,50847],[-59,528]],[[75300,51375],[-106,-107],[-69,125],[-91,-16],[-11,108],[-146,61],[-105,-96]],[[74772,51450],[-41,-89]],[[54708,52931],[754,-9]],[[55462,52922],[1,224]],[[55463,53146],[6,1122]],[[55469,54268],[-749,9]],[[54720,54277],[-8,0]],[[54712,54277],[-4,-1346]],[[70929,30508],[755,-152]],[[71774,31686],[-379,76]],[[71395,31762],[-375,78]],[[71020,31840],[-91,-1332]],[[70377,33314],[355,-70]],[[70732,33244],[392,-70]],[[71124,33174],[95,1330]],[[71219,34504],[-756,154]],[[70463,34658],[-86,-1344]],[[68544,52124],[142,-162]],[[68686,51962],[265,196],[297,166],[100,7]],[[69348,52331],[-95,326],[19,248]],[[69272,52905],[-122,29],[-62,137],[-149,-18]],[[68939,53053],[-102,-113],[-16,-360],[-55,-191]],[[68766,52389],[-161,-68],[-61,-197]],[[54736,28035],[556,-4]],[[55292,28031],[15,333],[379,-7]],[[55686,28357],[7,997]],[[55693,29354],[-937,15]],[[54756,29369],[-16,1]],[[54740,29370],[-4,-1335]],[[69874,26672],[401,-78]],[[70275,26594],[88,1331]],[[69616,28065],[-90,-1340]],[[69616,28065],[-620,96]],[[68996,28161],[-84,-570],[-100,-318],[96,-201],[78,-294]],[[70363,27925],[745,-138]],[[71202,29111],[-755,140]],[[69024,29495],[670,-100]],[[70129,29988],[20,336]],[[70149,30324],[-187,31],[22,333],[-579,107]],[[69405,30795],[-241,-721],[-140,-579]],[[57607,29293],[382,-17]],[[57989,29276],[564,-30]],[[58553,29246],[25,1339]],[[58578,30585],[-712,36]],[[57866,30621],[-240,10]],[[57626,30631],[-19,-1338]],[[65308,47230],[-30,-729],[186,-25]],[[65464,46476],[564,-66]],[[66028,46410],[49,1173],[191,-37]],[[66268,47546],[12,340]],[[66280,47886],[-749,105],[13,339]],[[65544,48330],[-197,2]],[[65347,48332],[-46,-989],[7,-113]],[[66028,46410],[563,-71]],[[66591,46339],[8,168],[186,-25]],[[66785,46482],[44,1002]],[[66829,47484],[-561,62]],[[57322,21745],[21,1002]],[[57343,22747],[-601,25]],[[56742,22772],[-86,-228],[7,-188],[-118,-404]],[[56545,21952],[-127,-175],[904,-32]],[[44826,62354],[975,82]],[[45801,62436],[-49,1676]],[[45752,64112],[-724,-65]],[[45028,64047],[-261,-23]],[[54243,20725],[953,-7]],[[55196,20718],[16,1273]],[[55212,21991],[0,55]],[[55212,22046],[-950,6]],[[54262,22052],[-2,-664],[-16,0],[-1,-663]],[[50000,58907],[188,7]],[[50188,58914],[754,27]],[[50942,58941],[-15,1692]],[[50927,60633],[-943,-30]],[[65922,58079],[339,-32],[-1,-82]],[[66260,57965],[225,355],[132,26],[139,174]],[[66756,58520],[21,1048]],[[66777,59568],[-370,25]],[[66407,59593],[-93,-103],[-259,-104],[-63,-400],[-98,-111]],[[65894,58875],[40,-107],[-12,-689]],[[67589,58182],[58,-115],[59,-283],[85,-172],[-44,-191],[3,-187],[183,-31]],[[67933,57203],[19,24]],[[67952,57227],[52,152],[23,264]],[[68027,57643],[75,308],[0,118],[-124,414],[-6,316],[154,20],[-11,271],[-35,102]],[[68080,59192],[-9,99]],[[68071,59291],[-101,33],[-7,-110],[-263,14]],[[67700,59228],[-70,7],[-41,-1053]],[[80730,65855],[69,92],[206,84],[281,203],[193,200],[109,209]],[[81588,66643],[-158,245],[34,142],[-31,111],[-71,-145],[-236,361]],[[81126,67357],[-232,-295]],[[80894,67062],[-77,-143],[-56,-908],[-31,-156]],[[48504,85418],[755,557]],[[49259,85975],[405,903]],[[49664,86878],[174,371]],[[49838,87249],[-467,646]],[[49371,87895],[2,-135],[-901,-39]],[[48472,87720],[21,-1690]],[[48493,86030],[11,-612]],[[50531,30651],[238,6]],[[50769,30657],[569,16]],[[51338,30673],[326,9]],[[51657,31951],[-380,-8]],[[51277,31943],[-702,-23]],[[50575,31920],[-50,-111]],[[41385,24047],[28,0],[39,-818]],[[41452,23229],[1672,230]],[[43124,23459],[-28,661]],[[43096,24120],[-81,1661],[-941,-124]],[[41308,25674],[77,-1627]],[[23171,91888],[95,-462]],[[23266,91426],[75,171],[260,402]],[[23601,91999],[-94,50],[-21,-138],[-126,40],[-138,-37],[-13,76]],[[23209,91990],[-38,-102]],[[23149,91993],[14,-65]],[[23163,91928],[-14,65]],[[22655,91654],[1,178],[48,65],[174,-268]],[[22878,91629],[16,105],[170,287],[31,155],[-169,-205],[54,162],[116,142],[85,314],[-175,553],[-42,18],[-61,-238],[35,-251],[-83,-125],[-96,-243],[-13,-143],[-90,-329],[-77,-125],[-58,-244],[134,192]],[[21940,90354],[0,0]],[[22601,92319],[-41,34],[-320,-180],[-14,233],[-136,74]],[[22090,92480],[-98,-85],[-24,-198],[60,-128],[-38,-153],[83,100],[97,-88],[57,-146],[136,97],[-32,201],[33,49],[24,-214],[207,16],[61,309],[-55,79]],[[21288,91487],[142,-199]],[[21430,91288],[219,-445],[91,-51],[17,-139]],[[21757,90653],[241,0],[85,51],[116,259],[-50,73],[0,166],[83,7],[128,199],[-66,44],[40,119]],[[22334,91571],[-78,-1],[-97,114],[-51,-307],[-109,-222],[-48,110],[-112,-66],[-45,-158],[-33,119],[-93,-53],[-7,89],[131,14],[130,153],[57,1],[128,346],[-118,172],[-64,3],[0,141],[-172,-168],[-64,30],[-215,-176],[-186,-225]],[[48738,25196],[926,52]],[[49664,25248],[17,1],[-17,1006]],[[49664,26255],[-19,1676]],[[49645,27931],[-355,-18]],[[51556,26673],[570,17]],[[52126,26690],[-12,1330]],[[50982,27992],[-6,0]],[[50976,27992],[16,-1338]],[[68661,60001],[118,-187],[71,78],[161,33],[203,-202]],[[69214,59723],[-8,289],[126,145],[32,222],[-27,155]],[[69337,60534],[-58,-37],[-217,29],[7,143],[-116,105],[-104,15]],[[68849,60789],[-64,-136],[-70,-12],[-5,-118],[-129,-22]],[[68581,60501],[43,-257],[58,-89],[-21,-154]],[[63089,22996],[-25,-660]],[[63064,22336],[946,-110],[18,336]],[[64028,22562],[52,1328]],[[64080,23890],[-957,106]],[[63123,23996],[-34,-1000]],[[66154,60030],[88,72],[208,-463],[-43,-46]],[[66777,59568],[177,-17]],[[66954,59551],[23,775]],[[66600,60996],[-421,41]],[[66179,61037],[-25,-1007]],[[83720,47024],[47,-183],[65,19],[6,144],[-118,20]],[[33131,17704],[379,93],[83,-1023],[22,6],[62,-766]],[[33677,16014],[18,-218],[569,141]],[[34264,15937],[-40,489],[19,171],[126,33],[-27,329],[56,160],[-28,328],[100,359],[-44,548]],[[34426,18354],[-219,-52]],[[34207,18302],[-744,-180],[-28,331]],[[33435,18453],[-285,-72],[29,-330],[-75,-19],[27,-328]],[[37908,29257],[96,16]],[[38004,29273],[1483,246]],[[39487,29519],[285,43]],[[39772,29562],[-145,2724],[-27,686]],[[39600,32972],[-632,-94],[-34,669]],[[38934,33547],[-78,-12],[-59,201],[-41,327],[-243,-38],[-137,-84],[15,-280],[63,12],[43,-198],[-830,-160]],[[37667,33315],[-4,-1]],[[77173,55117],[140,-1],[255,-145],[82,9],[72,113],[123,-6]],[[77845,55087],[-25,567]],[[77820,55654],[-137,417],[-156,61],[-101,230]],[[77426,56362],[-107,-169],[-51,-1021],[-127,36]],[[77141,55208],[32,-91]],[[61738,23477],[-10,-333],[380,-31]],[[62108,23113],[341,-30],[640,-87]],[[63123,23996],[-238,24],[12,332],[-182,18]],[[62715,24370],[-184,30],[-759,73]],[[61772,24473],[-34,-996]],[[30610,21746],[400,103],[119,74],[778,192],[140,7],[478,129]],[[32525,22251],[1071,251],[29,31],[711,165]],[[34336,22698],[-36,490],[44,10],[-103,1330],[30,8],[-103,1338],[36,9]],[[34204,25883],[-26,338]],[[34178,26221],[-377,-88],[-26,337],[-194,-46],[-21,329],[-282,-66],[-27,329],[-345,-67]],[[32906,26949],[-74,-132],[-92,-362],[-176,-138],[-164,160],[-35,195],[-212,126],[-86,-100],[61,-228],[-53,-170],[24,-102],[-217,-37],[-71,-242]],[[31811,25919],[33,-388],[-102,-155],[40,-248],[-27,-307],[-80,-100],[-18,-257],[-86,-249],[58,-323],[-136,-286],[-445,-118],[28,-316],[-598,-164]],[[30478,23008],[117,-1267],[15,5]],[[53790,28037],[740,1]],[[54530,28038],[206,-3]],[[54740,29370],[-932,-1]],[[53788,29369],[2,-1332]],[[65790,31065],[187,-21]],[[65977,31044],[565,-70]],[[66542,30974],[54,1337]],[[66596,32311],[-378,59]],[[66218,32370],[-376,49]],[[65842,32419],[-52,-1354]],[[53179,28033],[588,3]],[[53767,28036],[23,1]],[[53174,29365],[5,-1332]],[[85663,45106],[87,37],[244,-229],[55,-147],[64,80],[-4,249],[70,108]],[[86179,45204],[-71,94],[15,384]],[[86123,45682],[-86,76]],[[86037,45758],[-186,-120],[-62,53],[25,-218],[-172,48]],[[85642,45521],[-38,-51],[3,-332],[56,-32]],[[26459,17822],[52,-31],[12,-180],[84,-110],[49,136],[237,-283],[162,27],[108,-85],[42,-210]],[[27205,17086],[30,20],[84,686],[108,-147],[93,11],[89,-159],[84,-47],[116,51],[14,86]],[[27823,17587],[127,242],[118,147],[171,117],[44,315],[50,52],[1,201]],[[28334,18661],[-62,337],[1,193],[79,191],[74,65],[114,-17],[45,205],[-105,1153],[188,58],[-34,331],[219,66],[-32,331],[37,12],[-33,323],[156,50],[-16,160],[436,138],[-26,272],[460,134]],[[29835,22663],[-1,167],[-103,206],[68,225],[-53,31],[-123,-124],[-53,37]],[[29570,23205],[-130,-80],[-24,58],[-176,82],[-55,-229],[-181,54],[-76,-62],[-124,64],[-114,-82],[-78,-159],[-67,-22],[-127,116],[-74,292],[-120,-161],[-49,51],[-69,-106],[-169,-55],[-83,-98],[-104,44],[-108,208],[16,183]],[[27658,23303],[-55,56],[-49,-162],[-159,-264],[-17,-185],[40,-100],[-87,-324],[48,-49],[7,-235],[-40,-82],[-21,-300],[-158,-245],[-160,97],[-8,-139],[-133,-221],[-36,-311],[91,-39],[27,-377],[-90,-161],[19,-80],[-88,-80],[-12,-248],[-105,-278],[-48,-294],[30,-252],[-50,-260],[54,-237],[-104,-35],[76,-292],[-122,-203],[-49,-181]],[[32357,15613],[246,-45],[129,44],[95,-40],[204,281],[112,26]],[[33143,15879],[534,135]],[[33131,17704],[-947,-248]],[[32184,17456],[89,-1015],[13,3],[71,-831]],[[58046,55293],[945,-10]],[[59274,55338],[9,1009]],[[59283,56347],[-690,7]],[[58593,56354],[-66,1],[-2,-676],[-475,9]],[[58050,55688],[-4,-395]],[[58890,48185],[1,-170],[186,-366]],[[59077,47649],[37,165],[108,145],[103,33],[128,-54],[268,35]],[[59721,47973],[105,181]],[[59826,48154],[-182,890],[0,56],[-379,8]],[[59265,49108],[-375,-15]],[[58890,49093],[0,-908]],[[50649,45463],[945,28]],[[51594,45491],[-3,335]],[[51591,45826],[-11,1007]],[[51580,46833],[-943,-30]],[[50637,46803],[7,-1005]],[[50644,45798],[5,-335]],[[86370,45928],[80,-214],[117,191],[122,87],[2,120],[193,7],[44,46]],[[86928,46165],[148,85],[41,232],[82,89]],[[87199,46571],[-95,40],[-111,217]],[[86993,46828],[-154,-119],[-168,-289],[-69,-11],[-42,-139],[-104,-64]],[[86456,46206],[-86,-278]],[[65642,59365],[109,-34],[120,-312],[23,-144]],[[66154,60030],[-85,-15],[-162,-165],[-119,-15],[-160,-223]],[[65628,59612],[14,-247]],[[69425,43161],[613,-112]],[[70038,43049],[66,1120]],[[70104,44169],[-233,50],[7,112],[-319,53]],[[69559,44384],[18,-115],[-76,12],[-50,-900],[-14,2]],[[69437,43383],[-12,-222]],[[46670,48928],[158,15]],[[46828,48943],[944,70]],[[47772,49013],[23,2]],[[47795,49015],[-29,1339]],[[47766,50354],[-6,336]],[[47760,50690],[-1099,-79]],[[46661,50611],[-30,-2]],[[65939,36742],[551,-96]],[[66490,36646],[1,0]],[[66491,36646],[62,1002]],[[66553,37648],[-559,101]],[[65994,37749],[-41,-668]],[[68756,38183],[229,-226],[63,-151],[47,-319],[88,-134],[192,-34]],[[69375,37319],[94,-17]],[[69469,37302],[58,1003]],[[69527,38305],[-758,126]],[[68769,38431],[-13,-248]],[[70727,44033],[-13,-226]],[[70714,43807],[531,-105]],[[71245,43702],[66,942]],[[71311,44644],[23,393],[-91,18]],[[71243,45055],[-447,94]],[[59297,52150],[404,-12],[39,199],[91,148],[80,-110],[84,8],[72,-139]],[[60067,52244],[4,560],[290,234],[3,169]],[[60364,53207],[6,508]],[[60370,53715],[-751,16]],[[59330,53738],[-5,-915],[-23,1],[-5,-674]],[[57631,44264],[667,-60]],[[58298,44204],[12,1017],[164,-7]],[[58474,45214],[-33,85],[20,255]],[[58461,45554],[-806,53]],[[57655,45607],[-10,-668]],[[57645,44939],[-14,-675]],[[71135,22754],[189,-32],[-21,-331]],[[71303,22391],[566,-107]],[[71217,23734],[-82,-980]],[[45003,43742],[44,-1339]],[[45047,42403],[906,87]],[[45953,42490],[32,3]],[[45985,42493],[-40,1337]],[[45945,43830],[-942,-88]],[[45003,43742],[-3,0]],[[71390,26386],[-77,-1046],[-12,-285]],[[56275,53210],[940,25]],[[57215,53235],[-1,225]],[[57214,53460],[-1,896]],[[57213,54356],[-928,-29]],[[56285,54327],[-10,-1117]],[[45028,64047],[-52,1676]],[[44976,65723],[-172,-14]],[[44804,65709],[-774,-74]],[[44030,65635],[55,-1674]],[[72994,32768],[299,-64],[446,-127]],[[73739,32577],[179,-56]],[[73918,32521],[121,1329]],[[74039,33850],[-376,98]],[[73663,33948],[-573,169]],[[73090,34117],[-96,-1349]],[[70644,31920],[376,-80]],[[71395,31762],[93,1334]],[[71488,33096],[-364,78]],[[70732,33244],[-88,-1324]],[[32549,70430],[565,119]],[[33114,70549],[-210,3136]],[[32904,73685],[-1685,-363]],[[31219,73322],[7,-311]],[[31226,73011],[61,-821],[-24,-6],[126,-1664],[559,121],[24,-331],[577,120]],[[76901,53748],[31,-134],[90,39],[91,-262],[399,-123],[-4,33]],[[77508,53301],[182,607]],[[77690,53908],[102,416]],[[77792,54324],[-546,142]],[[77246,54466],[-383,95]],[[76863,54561],[-268,65]],[[76595,54626],[40,-330],[197,-272],[69,-276]],[[91531,16433],[-27,-214],[73,-267],[-13,-333],[129,-404],[114,156],[144,-45],[40,-262]],[[91991,15064],[384,2000],[310,1723]],[[92685,18787],[-51,28],[30,170],[-322,123],[-4,607],[-49,21],[-61,-264],[-117,-130]],[[92111,19342],[-63,-118],[-105,-7],[-99,79],[-45,-179],[-182,-25],[-146,-228]],[[91471,18864],[139,-197],[4,-141],[87,-145],[-53,-229],[48,-21],[-25,-235],[-70,-94],[-121,-313],[67,-186],[-5,-274],[56,-225],[-106,-238],[39,-133]],[[48738,9581],[768,43]],[[49506,9624],[-19,1064],[43,3],[-12,657]],[[49518,11348],[-12,657],[-339,-20]],[[49167,11985],[-431,-27]],[[48736,11958],[13,-658]],[[48749,11300],[14,-656],[-48,-3],[23,-1060]],[[56296,55736],[-2,-223]],[[56294,55513],[972,4]],[[57266,55517],[-1,449]],[[57265,55966],[-2,710]],[[56303,56633],[-7,-897]],[[23478,92913],[90,-42],[128,212],[199,195],[-90,178],[-138,25],[-6,124],[-96,-12]],[[23565,93593],[-126,-470],[82,-111],[-43,-99]],[[23601,91999],[253,410],[-17,181],[137,-19],[13,218]],[[23859,93116],[-118,-107],[-136,-197],[-242,-69],[-17,-242],[-61,-269],[-82,-12],[-19,-132],[212,28],[-187,-126]],[[51672,36099],[566,14]],[[52229,37451],[-379,-8]],[[51850,37443],[-189,-5]],[[51661,37438],[11,-1339]],[[51681,35095],[565,15]],[[52246,35110],[-1,334],[315,6]],[[52560,35450],[-5,669]],[[51672,36099],[9,-1004]],[[66408,21264],[229,-38],[-33,-669],[121,-19],[-16,-331]],[[66709,20207],[380,-57]],[[67089,20150],[17,328],[65,-9],[66,1322],[98,-12]],[[67335,21779],[-86,410],[15,63],[-90,249],[-57,299],[-231,655],[37,136]],[[50450,87725],[400,-542]],[[50850,87183],[307,-419],[149,116],[64,123]],[[51370,87003],[5,72],[138,-74],[88,126],[51,217],[-50,631],[40,219]],[[51642,88194],[-421,618]],[[51221,88812],[-202,-177],[-137,-67],[-12,-243],[-168,-31],[-98,-82],[-65,-335],[-89,-152]],[[50807,18674],[534,21]],[[51939,20036],[-1107,-34]],[[50790,19999],[17,-1325]],[[44879,60672],[966,84]],[[45845,60756],[-44,1680]],[[44826,62354],[53,-1682]],[[79936,34624],[105,-217],[121,-366],[349,-86],[-2,-26]],[[80509,33929],[162,-51]],[[80671,33878],[60,604],[65,79],[21,203]],[[80817,34764],[19,193],[-198,116],[16,168],[-65,111],[15,136],[-56,193]],[[80548,35681],[-494,151]],[[80054,35832],[-118,-1208]],[[45752,64112],[223,19]],[[45748,65785],[-772,-62]],[[58052,55970],[-2,-282]],[[58593,56354],[1,1229]],[[58594,57583],[-471,20]],[[58123,57603],[0,-1240],[-68,1],[-3,-394]],[[73834,42582],[191,-17],[2,58],[191,-18],[3,96],[310,26]],[[74531,42727],[6,217]],[[74537,42944],[20,644]],[[74557,43588],[-517,42]],[[74040,43630],[-231,17]],[[73809,43647],[-37,-1005],[62,-60]],[[56863,43609],[755,-13]],[[57618,43596],[13,668]],[[57645,44939],[-749,11]],[[56896,44950],[-6,-948],[-26,0]],[[56864,44002],[-1,-393]],[[59934,41680],[282,-32]],[[60216,41648],[392,-49]],[[60608,41599],[17,1176]],[[60625,42775],[-661,39]],[[59964,42814],[-8,-168]],[[59956,42646],[-22,-966]],[[47963,74546],[143,7]],[[48106,74553],[360,26]],[[48466,74579],[451,1473]],[[48917,76052],[-171,40],[-42,294],[-404,465]],[[48300,76851],[-93,-30],[-94,109]],[[48113,76930],[-209,-36]],[[47904,76894],[59,-2348]],[[41800,70609],[707,83]],[[42507,70692],[-52,1673]],[[42440,72363],[-1571,-187]],[[40869,72176],[71,-1675]],[[51234,77599],[138,295],[124,-134]],[[51878,78894],[-358,363],[-110,523]],[[51410,79780],[-580,-467],[-381,-150]],[[50449,79163],[-151,-499]],[[50298,78664],[10,-131]],[[22831,3634],[566,228]],[[23324,4424],[-231,1754],[-165,1199]],[[22928,7377],[-571,-233]],[[22357,7144],[41,-323],[-93,-37],[258,-1922],[-185,-73],[42,-320],[94,36],[46,-345],[94,37],[41,-318],[98,39],[38,-284]],[[76886,74083],[-7,-108],[275,-54]],[[77154,73921],[7,91],[153,29],[102,252],[72,8]],[[77488,74301],[-53,55],[16,243],[-103,221]],[[77348,74820],[-42,103],[-97,18]],[[77209,74941],[-263,47]],[[76946,74988],[-60,-905]],[[44533,79563],[1592,116]],[[46125,79679],[-40,1608]],[[46085,81287],[-1107,-82]],[[44978,81205],[-493,-42]],[[44485,81163],[48,-1600]],[[81323,50130],[77,-368],[57,-149],[-130,-274],[4,-92]],[[81331,49247],[154,-259],[134,-428],[257,72]],[[81876,48632],[37,257],[-15,133],[213,195],[-2,59],[153,141]],[[82262,49417],[-121,363],[-134,-98],[-234,388],[69,66],[-4,121],[-86,189]],[[81752,50446],[-39,-64],[-365,-204],[-25,-48]],[[56876,76310],[577,108],[201,189]],[[57654,76607],[7,397],[-112,219],[43,176],[-43,262],[35,213],[-31,363],[19,43]],[[57572,78280],[-8,61],[-161,79]],[[57403,78420],[-120,-137],[-51,-141],[-204,-191]],[[57028,77951],[-26,-147],[43,-159],[-29,-212],[45,-239],[-31,-88],[35,-314],[-22,-239],[-167,-243]],[[97001,97461],[98,-85]],[[97099,97376],[45,122],[2,208]],[[97146,97706],[5,88]],[[97151,97794],[-15,100],[-161,69]],[[96975,97963],[-87,-131]],[[96888,97832],[-2,-12]],[[96266,96393],[72,45]],[[96338,96438],[24,346]],[[96362,96784],[-32,63]],[[96330,96847],[-97,131]],[[96208,96936],[58,-543]],[[58336,18094],[1149,-60],[23,382]],[[59508,18416],[20,938]],[[59528,19354],[-1158,62]],[[58370,19416],[-24,-662],[-10,-660]],[[77879,81202],[87,-16],[17,-304],[39,-143],[-12,-168]],[[78010,80571],[753,-184]],[[78763,80387],[-34,277],[21,441],[51,172]],[[78801,81277],[-58,206],[5,270],[-125,409],[17,86],[-183,277]],[[78457,82525],[-34,-207],[-103,-268],[-151,-32],[-43,-136],[-181,-118],[-66,-562]],[[76248,66363],[251,-915]],[[76499,65448],[52,48],[85,290],[78,76]],[[76714,65862],[135,349],[160,223],[-4,195]],[[77005,66629],[-445,293]],[[76560,66922],[-294,-289]],[[76266,66633],[-18,-270]],[[11677,79978],[254,74],[21,-227],[507,128],[9,-114],[199,44],[-8,114],[133,28],[8,-114],[133,25],[-7,114],[267,47],[7,-115],[133,21],[-6,115],[731,84],[-3,115],[265,19],[-2,114],[266,13],[0,46]],[[14584,80509],[-18,298],[197,235],[-20,461],[134,1],[46,116],[0,461],[-20,115],[-198,-2],[-2,230],[-200,-6],[-18,346],[-133,-6],[-62,-235],[-131,-8],[-6,231],[-132,-10],[6,-231],[-264,-24],[-15,462],[-332,-39],[-10,231],[-199,-28],[-24,577]],[[13183,83684],[-72,105],[-528,-91],[-730,-166],[19,-229],[-65,-17],[20,-228],[-88,-24],[41,-457],[-23,-6],[41,-457],[-11,-144]],[[11787,81970],[175,32],[3,186],[-77,336],[31,183],[186,49],[133,-11],[105,107],[83,-50],[89,95],[109,-270],[171,40],[-33,-143],[-117,-104],[-124,45],[27,-218],[-75,-253],[-89,-77],[-31,-168],[99,-102],[77,263],[-28,147],[132,305],[80,-38],[-149,-350],[85,-311],[-30,-121],[-217,48],[-356,-286],[2,-300],[-33,-259],[-338,-767]],[[42403,15267],[848,118]],[[43251,15385],[100,13],[-57,1320]],[[43294,16718],[-298,-38],[-59,1330]],[[42366,17933],[61,-1329],[-86,-12],[62,-1325]],[[57253,18007],[-10,-866]],[[57243,17141],[1084,-36]],[[58327,17105],[9,989]],[[58370,19416],[19,995]],[[58389,20411],[-577,45]],[[57812,20456],[-4,-352],[-557,36]],[[57251,20140],[-22,-28],[-18,-1270],[50,-23],[-8,-812]],[[32006,43508],[50,-622]],[[32056,42886],[259,62],[-3,39],[567,133],[12,-166],[1026,228],[36,-500],[407,68],[436,100],[24,-342],[187,49],[49,-672],[464,92]],[[35520,41977],[-39,662]],[[35481,42639],[-133,-27],[-142,2119]],[[35206,44731],[-532,-111]],[[34674,44620],[-1636,-357],[-1071,-254]],[[31967,44009],[39,-501]],[[55486,50384],[4,507],[-17,0],[0,853]],[[55473,51744],[-757,8]],[[54716,51752],[1,-854],[13,-505]],[[46548,67691],[94,7]],[[46642,67698],[-31,1687]],[[46611,69385],[-960,-76]],[[47923,60162],[1314,71]],[[49237,61239],[-6,337]],[[49231,61576],[-1315,-76]],[[47920,61332],[-20,-167],[23,-1003]],[[74641,39147],[188,-44],[-4,-58],[317,-78]],[[75556,38860],[16,224],[-158,80],[43,554],[-94,47],[9,195]],[[75372,39960],[-378,50]],[[74994,40010],[-18,-241],[-279,72]],[[74697,39841],[-56,-694]],[[63035,39618],[-8,-336]],[[63027,39282],[743,-72]],[[63770,39210],[23,673]],[[63793,39883],[36,1009]],[[63829,40892],[-757,71]],[[63072,40963],[-37,-1345]],[[75850,64392],[114,217],[274,7],[96,38],[66,241]],[[76400,64895],[-180,273]],[[76220,65168],[-55,-32],[-148,121],[-77,-118]],[[75940,65139],[-147,-256],[57,-491]],[[65994,37749],[76,1337]],[[66070,39086],[-565,84],[29,685]],[[65534,39855],[-191,32]],[[65126,39226],[-35,-792]],[[65091,38434],[-49,-1057]],[[65042,37377],[-8,-166],[372,-46]],[[72197,75531],[-22,-343],[92,-46],[-21,-305]],[[72246,74837],[661,-123]],[[72907,74714],[96,1609]],[[73003,76323],[-749,154]],[[72254,76477],[-57,-946]],[[83916,89135],[762,-218],[-18,-218],[164,-45]],[[84824,88654],[294,856],[45,172]],[[85163,89682],[-116,88],[-1449,405]],[[83598,90175],[348,-724],[-30,-316]],[[57157,34269],[761,-30]],[[57918,34239],[5,333],[59,-2],[15,1006]],[[57997,35576],[-381,17]],[[58678,34204],[6,331],[39,-1],[20,1005]],[[58371,35560],[-374,16]],[[24766,20669],[-38,224],[125,421],[127,36],[62,322],[89,-79],[56,57],[89,-192],[84,-56],[36,-131],[-35,-129],[86,-45],[28,-128],[149,-168],[105,-15],[-78,426],[117,104],[89,-71],[73,498],[199,500],[29,120],[187,167],[39,81],[231,186],[96,-84],[38,282],[74,282],[-4,322]],[[26819,23599],[-148,-48],[-70,656],[-64,-21],[-40,553],[-32,136],[65,86],[30,207],[-102,-28],[-21,123],[-147,172],[-400,245],[-82,182]],[[25808,25862],[-87,-346],[-130,-268],[-25,-234],[-113,84],[-70,-46],[-25,-140],[-184,-285],[-2,-219],[-109,13],[-70,-107],[-150,-65],[-55,190],[-80,-50],[-19,-172],[-102,-168],[-205,-72],[28,-245],[-92,-32],[-175,152]],[[24143,23852],[-26,-53]],[[24117,23799],[40,-227],[-73,-58],[0,-154],[87,-123],[-65,-109],[55,-64],[-205,-313],[24,-358],[-155,-166],[-4,-59]],[[23821,22168],[140,-288],[13,-360],[-52,-23],[-7,-241],[46,-91],[191,-86],[62,-297],[110,-116],[185,254],[257,-251]],[[74735,74806],[-27,-452]],[[74708,74354],[299,-63],[7,-93],[196,46]],[[75210,74244],[178,-40]],[[75388,74204],[11,282],[104,331],[-27,84]],[[75476,74901],[-38,-62],[-73,120],[-274,34]],[[75091,74993],[-282,49],[-31,-245],[-43,9]],[[54307,34316],[569,-6]],[[54876,34310],[2,334],[105,-1],[3,1015]],[[54986,35658],[-563,4]],[[54423,35662],[1,-1013],[-117,0],[0,-333]],[[35526,50742],[182,39],[-20,333],[939,175]],[[36627,51289],[-83,1334]],[[35389,52390],[64,-998],[27,5],[46,-655]],[[58258,38266],[747,-43]],[[59033,39561],[-376,22]],[[58657,39583],[-376,20]],[[58259,38331],[-1,-65]],[[41332,41296],[190,26],[-12,335]],[[41034,43274],[-740,-106]],[[40294,43168],[104,-2011],[934,139]],[[59151,36851],[760,-49]],[[59911,36802],[32,1358]],[[59943,38160],[-187,13]],[[59193,38211],[-24,-355],[-18,-1005]],[[64045,41637],[95,-119],[252,-130],[-6,-131],[62,-251],[89,-150],[-2,-181]],[[64535,40675],[371,-47],[25,509],[99,70]],[[65030,41207],[52,1034]],[[64520,42329],[-186,25],[-20,-448],[-344,38]],[[63970,41944],[75,-307]],[[39357,44708],[1584,236]],[[40941,44944],[-90,1683],[-45,1007],[-567,-90]],[[40239,47544],[55,-996],[-1029,-163]],[[39265,46385],[92,-1677]],[[57635,36924],[570,-24]],[[58205,36900],[15,1009],[32,-3],[6,360]],[[57503,38284],[-5,-341],[-38,1],[-16,-1012]],[[73066,40788],[-6,-91],[157,-35],[-28,-391],[553,-129]],[[73742,40142],[46,652],[-7,155]],[[73781,40949],[11,345]],[[73792,41294],[-328,9],[-353,88]],[[73111,41391],[-46,-602]],[[73065,40789],[1,-1]],[[56766,38342],[564,-18],[173,-40]],[[57523,39631],[-369,35]],[[77286,36195],[194,-54],[-78,-265],[335,-79]],[[77737,35797],[120,1371]],[[77857,37168],[-38,10],[21,314],[-373,70]],[[77467,37562],[-24,-284],[-67,18]],[[81098,88200],[950,-250]],[[82048,87950],[101,1151]],[[81194,89360],[-96,-1160]],[[72291,38485],[661,-142]],[[72952,38343],[25,333],[94,-22],[13,171]],[[73084,38825],[12,164],[-94,21],[37,501]],[[73039,39511],[-98,21]],[[72941,39532],[-12,-167],[-568,120]],[[72361,39485],[-52,-744]],[[72309,38741],[-18,-256]],[[73387,43693],[422,-46]],[[74040,43630],[38,1213]],[[74078,44843],[-427,32]],[[73651,44875],[-10,-66],[-153,18]],[[73488,44827],[-34,-989],[-53,30],[-14,-175]],[[46030,83837],[187,13]],[[46217,83850],[785,41]],[[47002,83891],[366,22]],[[47368,83913],[-46,2047]],[[45980,85887],[50,-2050]],[[76574,63955],[77,-120]],[[76651,63835],[92,-180],[48,50],[182,-3],[96,-158]],[[77069,63544],[78,175]],[[77147,63719],[-29,204],[68,54],[73,199],[125,188]],[[77384,64364],[-122,136],[-144,-89],[-160,220],[-67,21]],[[76696,64537],[-51,-26],[34,-264],[-26,-180],[-79,-112]],[[77609,40496],[75,-15],[-18,-274],[74,-15]],[[77740,40192],[471,-99]],[[78410,40212],[62,837]],[[78472,41049],[-251,70],[8,113],[-125,25],[7,111],[-190,38],[17,225],[-190,36]],[[77748,41667],[-24,-337],[-62,12],[-53,-846]],[[49259,85975],[542,-1229]],[[49801,84746],[36,293],[56,-51],[468,27]],[[50361,85015],[-36,90],[244,509]],[[50569,85614],[-905,1264]],[[75372,39960],[2,57],[161,-23],[10,219],[306,-41]],[[75864,40452],[28,581]],[[75892,41033],[-679,96]],[[75213,41129],[-34,-386],[-126,29],[-59,-762]],[[77663,34954],[154,-42],[-23,-271],[312,-87],[-27,-277],[159,-47]],[[78238,34230],[75,812]],[[78313,35042],[53,585]],[[78366,35627],[-629,170]],[[77737,35797],[-74,-843]],[[47808,62847],[140,289],[-13,373],[56,84],[-19,255],[104,143]],[[48076,63991],[-7,36],[-279,-18],[-3,169],[-57,-4],[22,171],[-437,-26]],[[47315,64319],[-28,-171],[-63,-4],[-5,-678],[-281,-19],[8,-333]],[[57763,26618],[380,-19]],[[58143,26599],[4,276],[379,-20]],[[58526,26855],[17,1055]],[[58543,27910],[-8,0]],[[58535,27910],[-567,30]],[[57968,27940],[-186,10]],[[57782,27950],[-19,-1332]],[[60516,66879],[187,-23]],[[60703,66856],[505,-43]],[[61208,66813],[10,335],[-43,2],[19,714]],[[61194,67864],[8,336]],[[61202,68200],[-645,33]],[[60557,68233],[-14,-336]],[[60543,67897],[-8,-127],[-227,-541],[-36,2],[1,-326],[243,-26]],[[76018,71942],[94,-318],[202,-212]],[[76314,71412],[428,-87]],[[76742,71325],[17,-3],[45,648]],[[76804,71970],[24,345]],[[76828,72315],[-648,136]],[[46163,78233],[-38,1446]],[[44533,79563],[41,-1441]],[[55686,28357],[773,-22]],[[56459,28335],[10,1000]],[[56469,29335],[-768,19]],[[55701,29354],[-8,0]],[[49385,41413],[5,-35]],[[49390,41378],[725,35]],[[50115,41413],[8,1]],[[50104,42755],[-740,-34]],[[49364,42721],[21,-1308]],[[79667,56172],[103,-142],[124,-79],[233,-41],[45,-68]],[[80172,55842],[62,174],[-18,548],[-91,342]],[[80125,56906],[-76,-179],[-324,211]],[[79725,56938],[-58,-481],[0,-285]],[[57215,53235],[1,-1009]],[[57972,52473],[-2,336],[39,1],[-2,653]],[[58007,53463],[-793,-3]],[[43142,63859],[661,72]],[[44030,65635],[-168,-18]],[[43082,65533],[60,-1674]],[[28791,9796],[-1,146],[54,367],[-42,234],[-3,263],[101,357],[369,11],[198,171],[23,214],[123,80],[42,146],[346,67]],[[30001,11852],[-114,1212],[96,63],[38,166],[221,122],[-79,806],[196,59]],[[30359,14280],[62,152],[-68,116],[56,154],[148,110],[-13,103]],[[30544,14915],[-150,-104],[-69,135],[-50,635],[-234,-66]],[[30041,15515],[-346,-99],[-115,168],[-76,-43],[-114,52],[28,176],[-153,114],[-61,-42]],[[29204,15841],[48,-578],[47,-105],[-22,-203],[-134,-41],[16,-163],[-186,-57],[50,-505],[-387,-110],[132,-1293],[-388,-132],[120,-1154],[-81,-34],[-2,-406]],[[28417,11060],[49,-238],[-32,-236],[136,-73],[32,-92],[48,-406],[-22,-133],[163,-86]],[[58132,49660],[10,-1283],[-9,-155]],[[58133,48222],[1,-55]],[[58134,48167],[756,18]],[[58890,49093],[-1,630]],[[58889,49723],[-380,-1],[-1,112],[-377,-6]],[[58131,49828],[1,-168]],[[44748,67550],[56,-1841]],[[26280,13977],[752,250]],[[27032,14227],[-6,277],[-134,289],[18,247],[66,327],[-33,286],[46,77],[-125,170],[9,253],[45,162],[-100,215],[166,108],[17,222],[115,197],[88,23]],[[27204,17080],[1,6]],[[26459,17822],[-113,-63],[-18,167],[-82,54],[-132,229],[-96,49],[-79,-63],[-75,229],[-91,52],[-103,-232],[-46,-216],[-147,-68]],[[25477,17960],[49,-143],[-21,-136],[106,-77],[21,-127],[-77,-301],[134,-253],[135,43],[45,-104],[-42,-222],[48,-62],[-82,-184],[-10,-203],[69,-171],[-80,-136],[28,-156],[106,12],[13,-381],[65,-35],[47,-370],[92,-185],[-16,-222],[81,-9],[104,-504],[-12,-57]],[[15413,56510],[61,26],[318,-2361],[169,-1303]],[[15961,52872],[1693,673],[1581,600],[7,-59],[153,54]],[[19395,54140],[1408,3678]],[[21377,60757],[-10,153],[-62,33],[-187,235],[-141,97],[-175,55],[-46,94]],[[20756,61424],[-1562,-539],[-20,165],[-2118,-777],[-737,-289],[-14,110],[-500,-193],[-16,-63],[-257,-105],[0,-57],[-323,-127],[-22,169],[-100,26],[-25,174],[-78,-29],[-60,188]],[[14924,60077],[-155,-362]],[[14769,59715],[-19,-123],[88,-153],[62,33],[162,-491],[120,-454],[99,-1024],[132,-993]],[[78401,65685],[94,-66]],[[78495,65619],[39,196],[-28,194],[120,290],[103,159],[96,229]],[[78825,66687],[-94,188]],[[78731,66875],[-55,15]],[[78676,66890],[-128,-79],[-161,-26],[-50,-214],[-66,-115],[-167,-578]],[[78104,65878],[50,-103],[130,-57],[60,-98],[57,65]],[[21949,89903],[209,429],[131,-60]],[[22289,90272],[144,63],[110,110],[96,181]],[[22639,90626],[-279,140],[55,183]],[[22415,90949],[-64,-10],[-71,-286],[-118,-243],[-83,78],[134,181],[9,112],[182,452],[-9,61],[112,317],[23,155],[-129,-48],[-67,-147]],[[21757,90653],[-36,-268],[65,-31],[-46,-166],[209,-285]],[[64080,23890],[312,-36],[14,341]],[[64406,24195],[55,1328]],[[64461,25523],[-416,34],[-552,67]],[[63493,25624],[-734,79]],[[62759,25703],[-44,-1333]],[[12555,97824],[12,-154],[46,127],[-58,27]],[[12482,97489],[66,-76],[-9,284],[-61,-20],[4,-188]],[[12205,97795],[103,-347],[105,47],[-28,107],[-180,193]],[[11969,97232],[71,-101],[58,105],[1,273],[-66,-120],[-51,93],[-13,-250]],[[11495,97411],[39,-75],[103,122],[-75,52],[-67,-99]],[[11244,97611],[53,-64],[33,134],[-45,75],[-41,-145]],[[11020,98205],[7,-58],[198,186],[-52,52],[-153,-180]],[[12910,95377],[-74,176],[-95,-13],[-5,116],[-132,-19],[-5,116],[-132,-20],[-12,232],[40,6],[-24,463],[-32,111],[132,20],[-14,332]],[[12557,96897],[-81,80],[56,-341],[-71,-46],[-115,163],[-153,135],[-72,160],[-139,-94],[-173,196],[-119,-30],[84,-328],[-109,-5],[-66,296],[-96,212],[-60,-41],[26,166],[-90,-84],[-30,163],[-108,-55],[2,-267],[-93,20],[52,124],[-12,221],[-126,31],[-83,-269],[-72,76],[73,152],[-163,152],[80,55],[44,164],[-115,-146],[-123,154],[-220,-68],[-119,89],[-17,84],[-137,62],[-87,-60],[-26,-222],[116,-83],[90,-265],[245,-61],[67,-76],[159,27],[76,247],[28,-326],[160,-22],[112,-158],[240,-460],[211,-226],[282,-107],[153,5],[-65,263],[51,123],[18,-196],[126,51],[6,100],[109,-37],[-147,-228],[109,-343],[261,-358],[124,-86],[256,-267],[24,64]],[[9918,98386],[131,-10],[-15,76],[-116,-66]],[[9732,98128],[27,-56],[91,143],[-77,113],[-41,-200]],[[9532,98209],[111,-63],[74,186],[-174,16],[-11,-139]],[[15204,93819],[41,-103],[60,69],[-2,-172],[158,-206],[-44,-44],[108,-105],[-24,-118],[124,-104],[-60,286],[63,3],[90,167],[61,-77],[-34,266],[-95,-86],[21,114],[-136,-53],[-22,160],[-131,106],[-178,-103]],[[14814,95861],[113,-100],[60,148],[-118,21],[-55,-69]],[[14644,94754],[64,-192],[167,-201],[100,18],[38,193],[13,-197],[-32,-217],[87,-105],[62,78],[99,-25],[-52,-152],[149,129],[-88,-167],[175,75],[-6,121],[72,-20],[98,-147],[75,287],[-60,-38],[-7,239],[129,-34],[-73,268],[-168,-105],[61,163],[-89,160],[-159,63],[139,91],[-143,104],[-35,115],[-44,-119],[22,-151],[-139,441],[-90,126],[-104,34],[126,-263],[-54,-17],[71,-272],[-206,417],[-94,-196],[-1,-238],[-103,-266]],[[14625,96003],[116,-221],[60,63],[-176,158]],[[14212,96805],[70,-113],[-3,201],[-67,-88]],[[14845,93031],[195,0],[0,-117],[71,0],[0,-155],[151,-2]],[[15262,92757],[-73,196],[-93,133],[-90,19],[-61,145],[23,152],[-91,327],[-98,99],[-103,2],[-164,132],[7,119],[-94,44],[7,143],[-97,-88],[-82,315],[-127,-26],[6,168],[-77,-51],[-146,237],[90,-55],[-13,236]],[[13986,95004],[-164,-15],[60,-227],[108,-244],[98,22],[27,-98],[103,-15],[56,-264],[150,-99],[5,-426],[132,-127],[219,-90],[66,-132],[-1,-258]],[[13558,95803],[34,-53],[115,65],[-149,-12]],[[12910,95377],[92,23],[8,-256],[132,-318],[134,-147],[166,-260],[7,-212],[67,-540],[77,-54],[-57,-145],[48,-302],[82,-142]],[[13781,92672],[22,-130],[-105,177]],[[13698,92719],[10,-322],[-25,-236],[69,-110],[132,10],[42,-230],[69,-112],[132,8],[66,-113],[28,-1628]],[[14221,89986],[955,18]],[[15176,90004],[19,581],[-49,1],[2,465],[-49,1],[1,465],[-114,117],[0,233],[-67,117],[-112,-1],[-1,233],[-132,-2],[19,233],[-2,465],[20,117],[134,2]],[[13986,95004],[-88,231],[-139,30],[-140,239],[-70,-133],[-85,205],[45,85],[-95,36],[-35,-97],[-67,134],[12,136],[-99,-74],[-94,40],[-75,182],[152,167],[-159,166],[-21,150],[-58,-166],[-5,187],[-83,-70],[-28,88],[-258,72],[-39,285]],[[17308,91326],[75,-299],[103,-179],[58,-326],[112,60],[-147,356],[-47,170],[46,59],[-200,159]],[[17268,90713],[43,-321],[77,-154],[-44,583],[-76,-108]],[[16997,89160],[459,-75],[93,-76],[-77,-1039],[197,-38],[-57,-807],[-48,-412]],[[17564,86713],[128,-92],[328,-72],[9,115],[199,-29],[497,-133],[61,148],[-50,241],[76,63],[-42,170],[126,31],[23,-160],[145,-4],[12,114],[129,78],[48,458],[58,45],[30,281],[295,-98]],[[19636,87869],[227,1992]],[[19863,89861],[-85,-30],[-215,71],[-12,-115],[-522,159],[-202,733],[4,49]],[[18831,90728],[-116,16],[-128,306],[42,-206],[73,-155],[62,-18],[-99,-108],[-244,-49],[59,-74],[-90,-38],[35,-191],[-144,213],[-197,-177],[-77,43],[75,-189],[-138,182],[18,139],[-112,73],[-73,131],[-51,-136],[28,-190],[61,16],[235,-232],[-52,-143],[-97,142],[42,-170],[-164,120],[-81,-68],[184,-179],[-135,77],[-83,-183],[35,-225],[-117,271],[-48,-239],[-29,256],[-69,86],[-48,-100],[-78,202],[-154,53],[54,-382],[-113,228],[-21,208],[98,20],[-65,366],[83,-174],[65,194],[-56,288],[131,221],[-77,173],[-82,21],[-48,-271],[-25,268],[-54,15]],[[17046,91159],[-22,-641],[-38,6],[-17,-426],[-33,4]],[[16936,90102],[-4,-155],[99,-14],[-34,-773]],[[50216,29284],[565,23]],[[50781,29307],[-12,1350]],[[17483,17060],[769,331]],[[18252,17391],[972,416]],[[19224,17807],[117,92],[-10,84],[124,-60],[82,151],[82,45]],[[19619,18119],[19,87],[-63,271],[-81,-36],[-59,435],[-109,-48],[-177,93],[-73,-31],[-1,153],[227,235],[32,188],[-129,177],[-36,243],[-80,11],[-47,180],[25,120],[-110,110],[-76,215],[15,67],[383,155]],[[19279,20744],[-104,809]],[[19175,21553],[-551,-231],[-348,-177],[-46,324],[-1287,-550]],[[16943,20919],[192,-1293]],[[17135,19626],[285,-1915],[-29,-13],[92,-638]],[[75210,42872],[-20,-450]],[[75190,42422],[701,-100]],[[75891,42322],[40,900],[188,-18]],[[76119,43204],[11,333]],[[76130,43537],[-432,59],[1,-103],[-460,70]],[[75239,43563],[-29,-691]],[[78366,35627],[76,813]],[[78442,36440],[52,557],[-137,37]],[[78357,37034],[-500,134]],[[75671,76242],[485,-101]],[[76156,76141],[26,413],[97,225],[49,878]],[[76328,77657],[-375,45]],[[75953,77702],[-185,22]],[[94864,97498],[86,-47],[168,78]],[[95118,97529],[128,66]],[[95246,97595],[-42,122],[-146,-49]],[[95058,97668],[-107,28]],[[94951,97696],[-154,-117]],[[94797,97579],[67,-81]],[[80542,47213],[-30,-458],[41,25],[123,-242]],[[80676,46538],[188,-388],[150,13],[245,-435],[67,-743],[93,72],[5,124],[98,27],[22,-107],[69,80]],[[81613,45181],[29,161],[-39,127]],[[81603,45469],[7,295],[-46,98],[32,236],[-63,322],[-92,220],[38,139]],[[81479,46779],[-75,126],[-126,462],[41,84],[-41,182]],[[81278,47633],[-245,103],[-98,106],[-166,7],[-192,-209],[-35,-427]],[[94407,96807],[117,239]],[[94524,97046],[-89,62]],[[94435,97108],[-95,-252],[67,-49]],[[53465,18730],[164,1],[-3,-332]],[[53626,18399],[1119,3],[412,-12]],[[55157,18390],[14,334],[5,995]],[[55176,19719],[17,330],[3,669]],[[54243,20725],[-758,-4]],[[53485,20721],[2,-663],[-23,0],[1,-1328]],[[74181,61410],[531,-112]],[[74712,61298],[342,-71]],[[75054,61227],[-78,155],[145,221],[-60,178],[24,141],[85,3],[2,285],[-75,326]],[[75097,62536],[-42,186]],[[75055,62722],[-19,-55]],[[75036,62667],[-1,-81],[-111,-76],[-14,-205],[-136,-317],[-205,-151],[-348,81]],[[74221,61918],[-40,-508]],[[53149,12864],[581,12],[762,-6]],[[54492,12870],[3,577],[15,0]],[[54510,13447],[2,328]],[[65240,44202],[128,31],[28,561],[190,-21]],[[65586,44773],[50,1186],[-192,13]],[[65444,45972],[-658,81],[-31,-676]],[[64755,45377],[-20,-449],[95,-10],[-7,-166],[90,-9],[-12,-302],[49,71],[68,-124],[84,-25],[87,-205],[51,44]],[[70409,38645],[427,-95]],[[70836,38550],[12,171],[65,-13]],[[70913,38708],[93,1336]],[[71006,40044],[-372,75]],[[70634,40119],[-123,26],[-93,-1333]],[[31688,47319],[1151,269],[49,-643]],[[32888,46945],[1483,323]],[[34371,47268],[-98,1405],[-229,-48]],[[34044,48625],[7,-116],[-842,-182],[41,79],[15,231],[127,28],[116,166],[-35,251],[-32,-6]],[[33441,49076],[-1598,-376],[-229,-47]],[[64092,77012],[538,-58]],[[64630,76954],[48,1338]],[[64678,78292],[-164,19]],[[64137,78351],[-45,-1339]],[[46446,11118],[10,-329],[958,85],[-8,330],[191,14]],[[47597,11218],[-17,656],[58,5],[-34,1322],[59,4],[-18,660]],[[47645,13865],[-575,-45]],[[47070,13820],[-574,-55]],[[46496,13765],[21,-659],[-66,-6],[42,-1319],[-68,-6],[10,-329]],[[60191,40496],[759,-62]],[[60950,40434],[8,337]],[[60958,40771],[25,828]],[[60983,41599],[-22,-57],[-353,57]],[[60216,41648],[-25,-1152]],[[62934,44548],[194,-16],[4,138],[187,-19],[9,338],[125,100],[14,448]],[[63467,45537],[-469,42]],[[62998,45579],[2,-147],[-134,-542],[68,-342]],[[76077,69305],[301,-472]],[[76768,69162],[33,163],[-121,272],[-44,-3],[31,292]],[[76667,69886],[-197,-64]],[[76470,69822],[-65,9],[-145,-108],[-174,-306],[-9,-112]],[[96543,97704],[177,41],[77,-139]],[[96888,97832],[-3,10]],[[96885,97842],[-159,71],[-21,198],[-56,-50]],[[96649,98061],[-76,15],[-46,-189]],[[72551,27438],[70,979]],[[72621,28417],[20,332],[-314,69],[4,59]],[[47820,47333],[919,53]],[[48739,47386],[17,1]],[[48756,47387],[-39,1682]],[[48717,49069],[-922,-54]],[[47772,49013],[48,-1680]],[[45860,9342],[542,55],[1377,116]],[[47779,9513],[-28,1058],[55,5],[-17,656]],[[47789,11232],[-192,-14]],[[71586,37561],[631,-155]],[[72222,37478],[69,1007]],[[72309,38741],[-442,108]],[[71867,38849],[-429,88]],[[71438,38937],[-22,-338]],[[71416,38599],[-48,-665],[47,-10],[-17,-325]],[[53830,45859],[415,0],[0,-336]],[[54245,45523],[377,-2]],[[54622,45521],[-8,902]],[[54614,46423],[-32,0],[2,784]],[[54584,47207],[-753,1]],[[53831,47208],[-1,-1349]],[[60950,40434],[-22,-1008]],[[60928,39426],[378,-29]],[[61306,39397],[189,-11],[9,335]],[[61504,39721],[26,1007],[-62,4]],[[61468,40732],[-510,39]],[[69368,42179],[751,-140]],[[70119,42039],[63,977]],[[70182,43016],[-144,33]],[[69425,43161],[-57,-982]],[[12073,32664],[24,99],[-39,269],[138,111],[46,144],[-99,343],[-124,10],[-22,162]],[[11997,33802],[-43,99],[-105,36],[-122,-59],[-40,152],[-85,88],[-41,153],[-91,-51],[-122,251],[-100,42],[-388,-186],[-66,141],[11,177]],[[10805,34645],[-1434,-715]],[[9371,33930],[-7,-192],[55,-224],[54,-11],[15,-236]],[[9488,33267],[-16,-89],[48,-385],[-17,-191],[57,-136],[22,-209],[-112,-241]],[[70634,40119],[22,330]],[[70656,40449],[-496,102]],[[70160,40551],[-86,-1330]],[[47956,18510],[706,53]],[[48662,18563],[625,42]],[[49287,18605],[-25,1322]],[[49262,19927],[-1281,-79]],[[47981,19848],[-59,-6],[34,-1332]],[[55286,59323],[158,-2],[-2,-336],[189,-4]],[[55631,58981],[376,-6]],[[56007,58975],[8,1005],[-18,0],[7,1012]],[[56004,60992],[-567,10]],[[55437,61002],[-3,-671],[-245,2]],[[55189,60333],[60,-147],[-90,-203],[4,-232],[94,-175],[29,-253]],[[47699,27819],[79,257],[183,-11],[176,143],[67,-3],[7,-173],[-133,-99],[55,-170]],[[48594,28880],[3,161],[67,127],[-97,255],[-71,64],[-1,266],[-79,66],[-7,119],[133,4],[50,295],[86,196],[-26,119]],[[48652,30552],[0,1]],[[48277,30529],[-140,-68],[18,-870],[-129,-42],[-71,150],[-80,-5],[-108,127],[-60,-96],[-162,13],[-6,-59],[-164,74],[-183,-124]],[[47192,29629],[-79,60],[-91,-85]],[[47022,29604],[12,-499],[-42,-3],[31,-1233]],[[47023,27869],[2,-99],[674,49]],[[54558,15422],[8,1324]],[[54566,16746],[-776,2]],[[53790,16748],[-1,-1320]],[[62759,25703],[34,997]],[[62793,26700],[-760,83],[-10,-333],[-189,17],[-10,-331]],[[61824,26136],[-30,-998]],[[61794,25138],[-22,-665]],[[45173,48790],[526,51]],[[45699,48841],[222,18]],[[45879,50540],[-715,-65]],[[45164,50475],[-38,-4]],[[45126,50471],[47,-1681]],[[53298,9742],[1587,1]],[[54885,9743],[29,356],[96,85],[142,-53],[68,-98],[7,784],[-371,5],[3,654]],[[54859,11476],[-383,9]],[[54476,11485],[-1156,-21]],[[53320,11464],[2,-653],[-26,0],[2,-1069]],[[58909,60537],[378,-4]],[[59287,60533],[250,-6]],[[59537,60527],[7,669],[-64,3],[4,333]],[[59484,61532],[14,1118],[-74,13]],[[59424,62663],[-223,41],[-39,175],[-71,-31],[9,-199],[-93,-1],[-50,-209],[-82,-137],[-82,-16],[-59,-152]],[[58734,62134],[-38,-37]],[[58696,62097],[-3,-550],[128,-1],[-4,-503],[95,0],[-3,-506]],[[69257,17786],[-42,-702]],[[69215,17084],[107,15],[314,-35],[157,-52],[349,-357]],[[70142,16655],[126,1932]],[[70268,18587],[-950,185]],[[69318,18772],[-61,-986]],[[58889,49723],[1,1031]],[[58890,50754],[-3,296],[40,1],[-2,476]],[[58925,51527],[-753,-4]],[[58131,51007],[0,-1179]],[[59537,60527],[317,-3],[-4,-279],[377,-16]],[[60227,60229],[3,280],[315,-6]],[[60545,60503],[9,1344]],[[60554,61847],[-407,9]],[[60147,61856],[-3,-335],[-660,11]],[[87151,48396],[128,215],[206,214]],[[87485,48825],[57,77],[128,-82],[21,232]],[[87691,49052],[30,215]],[[87721,49267],[-62,71]],[[87659,49338],[-42,-8],[-134,-258],[-102,-129],[-42,41]],[[87339,48984],[-27,-86],[-110,-13]],[[87202,48885],[-51,-144],[-84,-22]],[[87067,48719],[-54,-234],[138,-89]],[[59652,55329],[756,-20]],[[60408,55309],[283,-7]],[[60691,55302],[11,1013],[-28,1]],[[60674,56316],[-1139,28]],[[59535,56344],[-252,3]],[[26694,5073],[944,328]],[[27638,5401],[42,355],[-68,48],[119,321],[74,-88],[168,65],[14,273],[63,245],[-111,356],[184,197],[105,15],[94,174],[-55,329],[83,168],[79,13],[22,159],[-93,139],[41,129]],[[28399,8299],[139,287],[-22,289],[61,1],[67,164],[107,-12],[64,93]],[[28815,9121],[26,228],[91,198],[22,216],[-60,93],[-103,-60]],[[28417,11060],[-472,-168]],[[27945,10892],[-246,-80]],[[27699,10812],[67,-222],[26,-217],[-54,-12],[-26,-337],[56,-282],[-88,-290],[-132,-150],[-32,-295],[-210,-69],[-84,82],[33,245],[-662,-221],[-51,647],[-185,-63]],[[26357,9628],[36,-319],[-563,-185],[57,-485],[-25,-64]],[[25862,8575],[77,-779],[249,87],[147,-1290],[-56,-19],[37,-316],[359,124],[-67,-100],[38,-163],[93,-37],[-51,-237],[-83,-68],[72,-100],[2,-371],[64,-111],[-49,-122]],[[42811,69066],[946,80]],[[43757,69146],[-57,1666]],[[43700,70812],[-245,-28]],[[43455,70784],[-705,-68]],[[42750,70716],[61,-1650]],[[61587,52403],[380,-25],[5,336],[271,-13]],[[62243,52701],[10,421]],[[62253,53122],[-272,6],[6,338],[179,-3],[8,334]],[[62174,53797],[-752,34]],[[61422,53831],[-188,10],[-17,-674],[-93,7]],[[61124,53174],[-14,-742],[477,-29]],[[46163,78233],[961,70]],[[47124,78303],[-13,562],[224,15]],[[47335,78880],[-17,880]],[[47318,79760],[-1193,-81]],[[46036,74403],[-797,-76]],[[61444,55274],[-6,-770],[-16,-673]],[[62174,53797],[63,-3],[10,394],[36,219],[63,-4],[1,213],[163,102],[37,281]],[[62547,54999],[-345,68],[13,780]],[[62215,55847],[-759,45]],[[61456,55892],[-12,-618]],[[44071,75891],[59,-1672]],[[44130,74219],[149,14]],[[44950,74297],[-51,1497]],[[44059,76253],[12,-362]],[[40098,50321],[358,142],[16,41],[370,52],[10,-223],[188,22],[29,-354]],[[41069,50001],[174,22]],[[41243,50023],[-76,1703],[-39,689]],[[41128,52415],[-1124,-161],[12,-350]],[[40016,51904],[82,-1583]],[[43757,69146],[944,82]],[[44701,69228],[-50,1641]],[[44651,70869],[-247,2]],[[44404,70871],[-704,-59]],[[38143,46199],[498,83]],[[38641,46282],[-47,1004],[-64,-13],[-24,268],[225,47],[-37,564]],[[38694,48152],[-505,-76],[15,-188],[-155,-28]],[[38049,47860],[92,-1661]],[[38141,46199],[2,0]],[[24443,7293],[25,189],[79,109],[45,-119],[215,-71],[110,-116],[66,240],[-45,108],[51,186],[-14,195],[103,418],[-44,134],[43,151],[197,88],[100,-23],[45,123],[141,-53],[103,-348],[199,71]],[[26357,9628],[10,172],[-60,539],[342,115],[13,177],[-56,44],[-55,206],[130,-6],[-125,369],[81,159],[126,43],[-73,649],[6,171]],[[26696,12266],[-157,-5],[-84,-153],[22,-64],[-147,-172],[-141,-230],[-174,-136],[-40,62],[-124,-98]],[[25851,11470],[-54,-131],[-180,-120],[21,-314],[-404,-498],[-42,45],[-134,-100],[-70,49],[-108,-154],[-19,70],[-138,-66]],[[24723,10251],[-82,-53],[2,-163],[-59,-128],[102,-119],[-42,-245],[37,-149],[-131,-277],[3,-279],[-64,-82],[-129,-553],[-25,-25]],[[24335,8178],[108,-885]],[[47195,72824],[33,2]],[[48145,72882],[-39,1671]],[[47963,74546],[-808,-58]],[[46611,69385],[-37,1682]],[[46574,71067],[-285,-21]],[[45602,70980],[49,-1671]],[[50163,61950],[140,5],[110,126],[61,-26],[325,125],[117,-43]],[[50916,62137],[-17,1843],[5,11]],[[50904,63991],[-7,669]],[[50897,64660],[-755,-25]],[[50144,63965],[19,-1344],[0,-671]],[[55152,69721],[4,-4]],[[55156,69717],[92,39],[238,-87]],[[55486,69669],[6,1365]],[[55492,71034],[-47,82]],[[55445,71116],[-37,199],[-250,1]],[[55158,71316],[-6,-1595]],[[53749,71801],[262,5]],[[54011,71806],[130,231],[125,6],[157,114],[94,131],[45,-35]],[[54562,72253],[75,128]],[[54637,72381],[3,796],[171,270],[98,207]],[[54909,73654],[-1159,-4]],[[53750,73650],[-1,-1849]],[[47307,41246],[467,33],[91,64]],[[47838,42629],[-751,-53]],[[47087,42576],[8,-337],[188,15],[24,-1008]],[[50873,41441],[754,21]],[[51627,41462],[-11,1343]],[[51616,42805],[-752,-22]],[[50864,42783],[-5,-1]],[[53345,71249],[6,-1425]],[[53351,69824],[797,-220]],[[54148,69604],[-5,732]],[[54143,70336],[0,922]],[[54143,71258],[-152,-1],[-77,398],[97,151]],[[53749,71801],[-405,-14]],[[53344,71787],[1,-538]],[[53437,78961],[132,-79],[230,-282],[138,-92],[396,-9]],[[54333,78499],[203,56],[41,161],[-87,193],[81,231],[39,-15]],[[54149,79382],[-576,157]],[[53573,79539],[-84,-339],[29,-78],[-81,-161]],[[51072,66177],[9,-839]],[[51081,65338],[378,11]],[[51459,65349],[-5,503],[546,14],[36,166],[172,3]],[[52208,66035],[-4,617]],[[52204,66652],[-63,-1],[-4,391]],[[52137,67042],[-1069,-25]],[[51068,67017],[4,-840]],[[83820,44113],[134,-112],[80,-373]],[[84034,43628],[66,113],[138,91],[47,254],[145,74]],[[84430,44160],[-216,459],[-113,338],[-98,-13]],[[84003,44944],[-217,-301]],[[83786,44643],[27,-105],[-48,-185],[55,-240]],[[69829,63391],[376,350],[216,76]],[[70421,63817],[149,-173],[74,130],[113,-136],[94,124]],[[70851,63762],[-17,680],[14,255]],[[70848,64697],[-950,124]],[[69898,64821],[-69,-1430]],[[83622,45503],[34,-222]],[[83656,45281],[40,87],[43,312],[171,296],[104,-15]],[[84014,45961],[-98,380]],[[83916,46341],[-534,-196]],[[83382,46145],[162,-276],[78,-366]],[[12581,86964],[21,-346],[65,11],[13,-348],[72,-104],[131,22],[73,-222],[66,10],[17,-347],[-70,-11],[43,-925],[61,10],[12,-231],[66,10],[19,-462],[66,9],[13,-347],[-66,-9]],[[14584,80509],[557,5],[501,-19],[488,-40],[428,-53],[730,-129],[-46,-659],[645,-155],[762,-232]],[[18649,79227],[396,3471]],[[19045,82698],[-86,212],[0,110],[-126,286],[-80,-7],[-189,262],[-2,227],[-77,75],[-113,244],[41,178],[-57,217],[-132,13]],[[18224,84515],[-29,-153],[35,-373],[-31,-57],[-147,101],[-178,-32],[-198,174],[-24,-197],[-107,-33],[-50,-112],[41,-109],[-66,-59],[-111,48],[-1,109],[-98,93],[-132,38],[-82,107],[-356,54],[43,832],[30,-47],[185,340]],[[16948,85239],[-892,89],[-173,497],[-174,-86],[-83,102],[1,232],[-59,3],[4,232],[-220,8],[25,406],[133,53],[2,163],[-192,618]],[[15320,87556],[4,583]],[[15324,88139],[-24,117],[-116,2],[1,117],[-132,1],[0,116],[-758,-16],[-430,-27],[3,-117],[-526,-52],[-4,116],[-264,-34],[-5,116],[-457,-70]],[[79648,40679],[331,-266],[218,-72],[84,52],[106,-113],[31,112],[81,-43]],[[80499,40349],[-9,99],[88,-5],[96,257],[-25,141],[69,186],[-38,59],[52,221]],[[80732,41307],[-835,243]],[[79897,41550],[-162,45]],[[79735,41595],[-87,-916]],[[61194,67864],[566,-45],[193,19]],[[61953,67838],[195,-5],[17,834]],[[62165,68667],[12,672]],[[62177,69339],[-972,41]],[[61205,69380],[-45,-502],[58,-6],[-16,-672]],[[64537,67832],[-11,-337],[286,-33],[93,-64],[-10,-285]],[[64895,67113],[283,-29],[5,115],[474,-56]],[[65679,67702],[7,170]],[[65686,67872],[-508,63]],[[65178,67935],[-618,67]],[[64560,68002],[-23,-170]],[[80649,51455],[-71,193]],[[80578,51648],[-35,-140],[106,-53]],[[80667,51457],[0,0]],[[58265,42602],[849,-56],[3,167]],[[59117,42713],[21,1177]],[[59138,43890],[-844,61]],[[58294,43951],[-23,-899]],[[58271,43052],[-6,-450]],[[78125,50663],[111,-172]],[[78236,50491],[79,145],[192,-6],[135,-125],[47,85],[133,33],[111,-60],[62,119],[51,-75],[163,112]],[[79209,50719],[-58,355]],[[79151,51074],[-71,271],[-53,24],[-171,295],[-200,74],[-118,-115]],[[78538,51623],[-50,-131],[-162,-5],[-173,-318],[-16,-213],[-118,-127],[106,-166]],[[86450,58109],[58,-61],[245,-26],[265,149],[49,-137],[118,12],[108,176],[67,214],[64,80]],[[87424,58516],[130,219],[35,291]],[[87589,59026],[-210,282],[-122,246],[-303,478]],[[86954,60032],[-118,-100],[-288,-862]],[[86548,59070],[-25,-242],[-10,-542],[-63,-177]],[[56233,45130],[665,-14]],[[56898,45116],[5,844]],[[56903,45960],[-1,279]],[[56902,46239],[-657,14]],[[56245,46253],[-3,-286]],[[56242,45967],[-9,-837]],[[72815,79469],[47,-91],[153,-27],[50,-126],[689,-115],[-29,-499],[97,-19]],[[73822,78592],[96,-16]],[[73918,78576],[79,1395]],[[73997,79971],[70,1051]],[[74067,81022],[-77,-83],[-120,-21],[-110,-112],[-103,-210],[-215,-118],[-163,-198],[-208,-190],[-235,-162]],[[72836,79928],[-21,-459]],[[96770,96575],[18,368],[40,173]],[[96828,97116],[-133,68]],[[96695,97184],[26,-555]],[[97165,96712],[103,-22],[5,117]],[[97273,96807],[-1,322],[66,71]],[[97338,97200],[-34,78]],[[97304,97278],[-137,-58]],[[97167,97220],[32,-193],[-34,-315]],[[96330,96847],[85,144]],[[96415,96991],[-38,276],[-36,32]],[[96341,97299],[-78,30]],[[96263,97329],[-56,-201]],[[15071,4945],[578,294],[1256,583]],[[16905,5822],[39,279],[-97,66],[-38,328]],[[16809,6495],[-165,31],[-172,248],[-218,154],[-76,482],[121,88],[-68,191],[62,79],[-8,247],[-178,35],[24,132]],[[16131,8182],[-1,1]],[[14765,6599],[151,-35],[25,-158],[2,-354],[-29,-388],[122,0],[-85,-309],[124,-216],[-4,-194]],[[14633,6382],[72,-321],[93,-198],[33,192],[-42,213],[81,114],[-143,108],[-100,-10],[6,-98]],[[17367,4013],[-87,-127],[66,-150],[-16,-116],[62,-128],[-20,-120],[58,-111],[124,41],[18,-109],[142,-4],[109,202],[103,-41]],[[17926,3350],[77,30],[-64,288],[6,216],[71,107],[-35,217],[100,110],[34,140],[134,310],[-42,148],[181,424],[79,87],[79,440],[255,115]],[[18801,5982],[6,75],[-102,114],[-27,140],[-68,35],[-85,214],[-295,-47],[-66,112],[12,166],[-82,161],[-14,128],[-119,179],[-81,282],[10,256],[213,201],[48,129],[-54,277]],[[18097,8404],[-411,-181],[-143,-282],[-108,-27],[0,-100],[-122,-87],[-70,-227],[-84,-155],[-65,13],[-105,-136],[4,-93],[-156,-442],[-28,-192]],[[16905,5822],[89,-127],[-86,-120],[-22,-187],[92,-316],[54,-50],[-26,-161],[59,-52],[162,-4],[110,-103],[4,-111],[81,-130],[-75,-353],[20,-95]],[[81467,80480],[376,-113],[92,-170],[103,-57]],[[82038,80140],[293,862]],[[82331,81002],[-97,89],[61,544],[-506,156],[-53,-521],[-24,11]],[[81712,81281],[-81,29],[-35,-180],[-83,-190],[-46,-460]],[[18097,8404],[7,146],[97,66]],[[18201,8616],[-44,349],[-90,175],[29,139],[13,382],[-44,314],[32,178],[-111,265]],[[17986,10418],[-786,-359],[51,-319],[-183,-88],[48,-318],[-573,-263],[-46,-336],[-222,-489],[-124,12],[-20,-76]],[[81955,83586],[0,184],[-62,108],[30,275],[245,-62],[11,109],[650,-188]],[[82829,84012],[61,26],[66,219],[115,110],[30,115],[-45,162],[104,302]],[[83160,84946],[-1524,415]],[[81636,85361],[-141,-1582],[16,-78],[444,-115]],[[76742,71325],[136,-472],[47,-8]],[[77240,71273],[-43,98],[173,235],[-64,297]],[[77306,71903],[-153,-69],[-31,68],[-318,68]],[[63072,77218],[207,-125],[654,-64]],[[63933,77029],[159,-17]],[[64101,78355],[-486,49]],[[63615,78404],[-440,42]],[[63175,78446],[-31,-1084],[-72,-144]],[[48182,22495],[1512,98]],[[49694,22593],[-18,1328]],[[49676,23921],[-1316,-82]],[[48360,23839],[-210,-16]],[[48150,23823],[32,-1328]],[[66553,37648],[61,1002]],[[66614,38650],[3,337]],[[66617,38987],[-547,99]],[[48705,52434],[931,50]],[[49636,52484],[7,355]],[[49643,52839],[-14,1010]],[[48681,53804],[17,-1013]],[[57880,31557],[755,-38]],[[58635,31519],[3,164]],[[58638,31683],[19,1173]],[[52408,38570],[142,53],[119,-35],[90,94],[201,-26],[160,154]],[[53120,38810],[80,113],[22,191],[93,191],[-24,120],[62,170]],[[53353,39595],[26,288],[-47,126],[33,145]],[[53365,40154],[-50,115],[-188,-5]],[[53127,40264],[0,-112],[-732,-13]],[[52395,40139],[13,-1569]],[[59727,63869],[159,-3],[1,336],[183,-1],[7,279],[196,54],[0,174],[171,-6],[6,167],[188,-7],[5,336]],[[60643,65198],[-284,10],[2,169],[-333,7],[-60,168],[-79,1]],[[59889,65553],[-35,-225],[-96,3],[-1,-114],[-99,5]],[[59658,65222],[-33,-333],[-124,5],[-1,-170],[-187,2],[9,-521],[-189,12]],[[59133,64217],[-4,-332],[437,-14],[162,95],[-1,-97]],[[63943,27259],[-199,16]],[[63744,27275],[-41,-1007],[-184,19],[-26,-663]],[[55463,53146],[812,-11]],[[56275,53135],[0,75]],[[56285,54327],[1,99]],[[56286,54426],[-793,11]],[[55493,54437],[-24,-169]],[[50079,72804],[830,41]],[[50909,72845],[-6,910]],[[50903,73755],[-310,-1],[-305,309]],[[50288,74063],[-214,-1077]],[[50074,72986],[5,-182]],[[53287,49887],[4,-838]],[[53291,49049],[692,1]],[[53983,49050],[-8,1177]],[[53975,50227],[1,673],[-15,343]],[[41105,29853],[1670,234]],[[42775,30087],[-78,1825]],[[42697,31912],[-804,-108]],[[41893,31804],[-875,-124]],[[41018,31680],[87,-1827]],[[35544,13039],[198,59],[173,-31],[194,160],[30,226],[-33,221]],[[35968,15941],[62,204],[8,177]],[[36038,16322],[-1208,-246]],[[34830,16076],[27,-330],[29,7],[79,-985],[-191,-45],[26,-321],[25,6],[26,-327],[190,45],[11,-137],[379,81],[33,-20],[80,-1011]],[[69361,42042],[-46,-837]],[[69315,41205],[527,-90]],[[69842,41115],[110,-19],[9,167],[113,36]],[[70074,41299],[37,606]],[[70111,41905],[8,134]],[[69368,42179],[-7,-137]],[[50945,16358],[383,14]],[[50807,18674],[-614,-27]],[[50193,18647],[19,-1327],[-42,-1],[15,-992]],[[90035,18019],[275,111],[-50,374],[190,113]],[[90450,18617],[-48,329]],[[90402,18946],[-44,348],[-188,-140],[-44,340],[-258,-100]],[[89868,19394],[-55,-6],[28,-197],[-63,-155],[-187,-238]],[[89591,18798],[69,-338],[94,34],[27,-384],[192,-143],[62,52]],[[75569,67673],[72,-60],[38,-211],[119,-78],[-25,-120],[79,-160]],[[75852,67044],[131,265]],[[75983,67309],[125,462],[3,239]],[[76111,68010],[-73,-62],[-332,65]],[[75706,68013],[-149,32]],[[75557,68045],[12,-372]],[[63744,27275],[-279,25]],[[63465,27300],[-643,72]],[[62822,27372],[-29,-672]],[[57153,33936],[-12,-1011]],[[47335,78880],[738,43]],[[48073,78923],[-2,73],[241,15]],[[48312,79011],[-29,1620]],[[47641,80589],[-341,-20],[18,-809]],[[56282,72489],[6,886],[111,87],[117,10]],[[56516,73472],[-39,135],[-69,-38],[-642,13]],[[55766,73582],[-7,-640]],[[55759,72942],[306,-211],[135,-299],[82,57]],[[66468,68333],[-4,-110],[126,-17]],[[66590,68206],[630,-94],[11,226]],[[67231,68338],[41,841]],[[67272,69179],[-262,37]],[[67010,69216],[-502,66]],[[66508,69282],[-40,-949]],[[13914,37510],[-75,479]],[[13839,37989],[-1045,-470],[-149,39],[-259,207],[-254,265],[-157,312],[-104,-41],[-39,-122],[-94,55],[-140,-153]],[[11598,38081],[114,-729],[47,-147],[79,-2],[44,-115],[165,-177],[178,38]],[[42697,31912],[333,44]],[[43030,31956],[-35,824],[31,3],[-54,1325]],[[42972,34108],[-1080,-131]],[[41892,33977],[-58,-7],[60,-1333],[-36,-5],[35,-828]],[[10023,22270],[-28,164],[208,107],[41,142],[112,100],[170,-74],[145,105],[51,144]],[[10722,22958],[-440,2577]],[[10282,25535],[-448,-218]],[[9834,25317],[-477,-227]],[[9357,25090],[-11,-185],[69,-169],[-19,-202],[84,-73],[69,-190],[-70,-554],[-206,-136],[-6,-109],[99,-181],[21,-193],[188,75],[153,-301],[52,-182],[243,-420]],[[52380,41481],[-3,672]],[[52377,42153],[-9,670]],[[52368,42823],[-752,-18]],[[46842,59149],[-16,673]],[[46826,59822],[-25,1009]],[[46801,60831],[-956,-75]],[[45845,60756],[47,-1685]],[[75335,68147],[228,-9],[-6,-93]],[[75706,68013],[66,973],[-139,92]],[[75633,69078],[-15,-219],[-269,52]],[[75349,68911],[26,-193],[-40,-571]],[[65106,75321],[406,-96]],[[65512,75225],[23,632],[224,168],[105,165],[12,305]],[[65876,76495],[-126,14]],[[65750,76509],[-317,35],[8,169],[-253,26]],[[65188,76739],[-19,-505],[-32,4],[-31,-917]],[[76790,40369],[38,272]],[[76828,40641],[50,832],[-46,155]],[[76832,41628],[-384,30]],[[76448,41658],[-16,25],[-516,70]],[[75916,41753],[-24,-720]],[[42837,63828],[305,31]],[[42916,65514],[-783,-90]],[[42133,65424],[67,-1668]],[[70296,22571],[254,-42],[20,334],[565,-109]],[[71217,23734],[-687,132],[-52,192]],[[70478,24058],[-88,-165],[-93,17]],[[70297,23910],[54,-284],[-1,-716],[-54,-339]],[[47837,43977],[745,46]],[[48582,44023],[187,10]],[[48769,44033],[-30,1674]],[[48739,45707],[-900,-52]],[[47839,45655],[-43,-3]],[[44372,52440],[752,73]],[[45124,52513],[-41,1343]],[[45083,53856],[-754,-75]],[[44329,53781],[43,-1341]],[[30544,14915],[55,82],[-12,240],[44,177],[118,62],[-46,347],[108,192],[-6,219],[126,4],[142,192],[-30,209],[-88,129],[-23,133],[61,118],[5,224]],[[30998,17243],[-369,-84],[-223,428],[-20,248],[-61,-16],[-23,147],[-200,133],[-134,241]],[[29968,18340],[77,-812],[-187,-57],[183,-1956]],[[48612,39993],[756,43]],[[49411,40038],[-21,1340]],[[49385,41413],[-303,127],[-452,-55]],[[48237,41421],[-12,-112],[28,-1336]],[[17206,42771],[642,2125],[-506,3879]],[[17342,48775],[-882,-2308]],[[16460,46467],[-777,-2031]],[[15683,44436],[126,63],[251,-318],[1146,-1410]],[[83173,54190],[181,-50]],[[83354,54140],[353,-100]],[[83707,54040],[35,1464]],[[83742,55504],[-114,45],[-297,29]],[[83331,55578],[-40,-134],[-118,-1254]],[[27685,24889],[34,-326],[837,256]],[[28556,24819],[-34,327],[279,84],[-16,165]],[[28785,25395],[-74,653],[88,-25],[204,414],[88,106],[142,41],[-10,108]],[[29223,26692],[-1397,-414]],[[27826,26278],[-278,-71]],[[27548,26207],[137,-1318]],[[70704,35814],[595,-118]],[[71454,35666],[63,892]],[[70769,36715],[-65,-901]],[[61761,34988],[374,-32]],[[62135,34956],[31,1006]],[[62166,35962],[10,336]],[[61418,36361],[-34,-1342]],[[55362,35655],[377,-4]],[[55739,35651],[371,-8]],[[56110,35643],[11,1334]],[[56121,36977],[-189,6]],[[55932,36983],[-566,8]],[[55366,36991],[-4,-1336]],[[48670,15915],[322,20]],[[48992,15935],[1150,63]],[[50193,18647],[-906,-42]],[[48662,18563],[32,-1329],[-52,-2],[28,-1317]],[[56110,35643],[375,-9]],[[56877,36953],[-189,8]],[[56688,36961],[-567,16]],[[68958,78968],[-46,-257],[63,-232],[77,-72],[-75,-123],[42,-248],[51,-48],[-83,-113],[30,-313],[-73,-149],[56,-230],[-64,-50]],[[68936,77133],[44,-123]],[[68980,77010],[62,12],[125,-232],[18,-128],[114,-102]],[[69299,76560],[87,-35],[85,145],[117,50]],[[69588,76720],[49,944],[31,-5]],[[69668,77659],[24,123],[-66,390],[171,280],[45,157],[249,224],[34,165],[-78,476],[73,193],[88,89],[-100,97],[-34,248],[-80,121],[58,51],[-92,99]],[[69960,80372],[-256,157],[-339,138],[-235,26],[44,-129],[85,72],[235,-124],[15,-113],[-185,-303],[-122,-105],[-66,-290],[44,-199],[-28,-297],[-54,-152],[-140,-85]],[[72054,32980],[189,-41]],[[72243,32939],[736,-167]],[[72979,32772],[15,-4]],[[73090,34117],[-373,73]],[[72717,34190],[-556,129]],[[72161,34319],[-107,-1339]],[[75749,54811],[846,-185]],[[76863,54561],[-193,244],[-111,-54],[-176,236],[-127,312],[27,61],[-141,148]],[[76142,55508],[-132,-67],[-59,40]],[[75951,55481],[17,-183],[-72,-278],[-147,-209]],[[47839,45655],[-42,1676]],[[47797,47331],[-917,-64]],[[46880,47267],[-27,-1]],[[46853,47266],[46,-1678]],[[55473,51744],[2,841],[-13,337]],[[54480,65041],[283,-3],[-1,-335]],[[54762,64703],[816,-9]],[[55578,64694],[219,-5],[5,671]],[[55802,65360],[-197,2],[6,1015],[-189,3],[-7,335]],[[55415,66715],[-1126,12]],[[54289,66727],[-2,-1348],[194,-2],[-1,-336]],[[42115,75682],[57,7]],[[42172,75689],[952,105]],[[43124,75794],[-77,2189]],[[43047,77983],[-984,-134]],[[42063,77849],[5,-429],[47,-1738]],[[47297,23757],[853,66]],[[48360,23839],[-28,1331]],[[48176,25159],[-1138,-85]],[[47038,25074],[-20,-355],[56,-138],[155,61],[-47,-329],[78,-222],[37,-334]],[[48607,42679],[-25,1344]],[[47832,43977],[26,-1347]],[[55615,30691],[95,-3]],[[55710,30688],[654,-16]],[[56364,30672],[9,943]],[[56373,31615],[-750,18]],[[55623,31633],[-8,-942]],[[49506,9624],[1534,67]],[[51040,9691],[-12,1069],[33,1],[-7,660]],[[51054,11421],[-576,-25]],[[50478,11396],[-960,-48]],[[13325,41278],[181,389],[250,-130],[87,66],[-26,166],[79,188]],[[13896,41957],[-38,158],[46,202],[-63,132],[161,309],[37,-50],[50,249],[43,-43],[106,157],[42,165],[-51,291],[153,385],[-50,356],[-138,158]],[[14194,44426],[-46,-174]],[[14148,44252],[-81,-281],[-73,-137],[-105,-35],[-120,-181],[-48,98],[-114,56],[-91,127],[-219,62],[-86,-99],[-122,-18],[-118,-245],[-85,-105],[-101,139],[-86,-90],[-25,93],[-284,41],[28,225],[-43,71],[-82,-172],[-26,188]],[[12267,43989],[-331,-942]],[[11936,43047],[179,-180],[125,-196],[-13,-130],[126,-29],[220,-410],[459,-713],[293,-111]],[[47797,47331],[23,2]],[[46828,48943],[52,-1676]],[[48081,92950],[307,22],[6,-327]],[[49100,94847],[-1051,-60]],[[48049,94787],[32,-1837]],[[97252,97800],[49,-226],[59,-88]],[[97360,97486],[70,-24],[112,127]],[[97542,97589],[-58,95],[-63,301]],[[97421,97985],[-169,-185]],[[65294,23742],[243,-31],[38,998]],[[65575,24709],[-384,49],[-14,-332],[-381,52],[-14,-329]],[[64782,24149],[-16,-340],[528,-67]],[[56469,29335],[192,-6]],[[56661,29329],[13,1335]],[[56674,30664],[-310,8]],[[55710,30688],[-9,-1334]],[[70849,72290],[38,118],[39,-131],[-21,-204],[109,-51],[74,179],[46,-178],[76,76],[224,77]],[[71434,72176],[44,42],[-9,183],[149,129],[48,739]],[[71666,73269],[21,332],[-80,11]],[[70851,73751],[-16,-330],[-93,17]],[[70742,73438],[-40,-677],[180,-29],[-109,-163],[76,-279]],[[72654,48719],[145,-182],[66,57]],[[72865,48594],[135,42],[86,-71]],[[73154,49161],[-223,256],[5,94]],[[72936,49511],[-57,103],[-216,-94]],[[72663,49520],[5,-568],[56,-234],[-70,1]],[[60094,44158],[560,-28]],[[60654,44130],[187,-10]],[[60841,44120],[18,1118]],[[60859,45238],[-568,24],[-8,227],[-178,8]],[[60105,45497],[-11,-1339]],[[52797,58998],[569,-4]],[[53366,58994],[0,333],[473,3],[-7,844]],[[53832,60174],[-281,-2],[-2,841]],[[53549,61013],[-758,-6]],[[52791,61007],[3,-1166]],[[52794,59841],[3,-843]],[[51706,84091],[513,-8]],[[52219,84083],[78,215],[76,-1],[442,930],[-189,271]],[[52626,85498],[-542,759]],[[52084,86257],[-72,-157]],[[52012,86100],[-500,-1082]],[[51512,85018],[76,-469],[-1,-279],[119,-179]],[[65102,28125],[15,337]],[[65117,28462],[43,1002]],[[65160,29464],[-191,26]],[[64969,29490],[-190,29],[-2,-45],[-187,25]],[[64590,29499],[-18,-447],[122,-37],[-56,-172],[-10,-247],[47,-5],[-17,-407]],[[47307,41246],[-399,-31]],[[46908,41215],[32,-1334]],[[70704,35814],[-213,41]],[[70491,35855],[41,-162],[-69,-1035]],[[65613,50347],[-37,-1006]],[[65576,49341],[758,-102]],[[66334,49239],[31,841]],[[66384,50586],[-727,96]],[[65657,50682],[-34,4],[-10,-339]],[[58617,30582],[748,-46]],[[59387,31639],[-749,44]],[[58635,31519],[-18,-937]],[[17302,85295],[217,-75],[32,-120],[157,-152],[65,35],[180,-257],[123,-61],[148,-150]],[[19045,82698],[591,5171]],[[17564,86713],[-25,-419],[-174,38]],[[17365,86332],[-63,-1037]],[[64620,39116],[-13,-328],[180,-20],[25,-264],[106,-95],[173,25]],[[54902,39707],[376,-2]],[[55278,39705],[375,-4]],[[55658,40695],[-753,8]],[[54905,40703],[-3,-996]],[[59411,32814],[757,-51]],[[60168,32763],[24,1018]],[[59432,33831],[-21,-1017]],[[65572,49229],[-28,-899]],[[66280,47886],[32,847]],[[66312,48733],[22,506]],[[65576,49341],[-4,-112]],[[80789,57778],[82,-22]],[[80871,57756],[775,-210]],[[81646,57546],[-252,1315]],[[81394,58861],[-88,-66]],[[81306,58795],[-226,-168],[-74,-286],[-149,-173],[21,-55],[-89,-335]],[[42236,74020],[140,16]],[[43182,74124],[-58,1670]],[[42172,75689],[64,-1669]],[[47629,81405],[-857,-71]],[[46772,81334],[-687,-47]],[[62916,30033],[189,-24],[50,1498]],[[63155,31507],[-111,-117],[-145,-31],[-125,47]],[[62774,31406],[-186,-22],[-188,171]],[[62400,31555],[-34,-963]],[[62366,30592],[-21,-497],[571,-62]],[[44879,60648],[0,24]],[[70379,53086],[534,-151]],[[70913,52935],[215,428],[-1,187]],[[71127,53550],[-5,443],[-70,-18]],[[71052,53975],[-139,-35],[-52,-97],[-104,109],[-223,-307]],[[70534,53645],[-155,-559]],[[71847,44258],[437,-90]],[[72284,44168],[370,-59]],[[72654,44109],[50,832]],[[72704,44941],[-413,76]],[[72291,45017],[-255,46],[-122,180]],[[71914,45243],[-48,-709]],[[71866,44534],[-19,-276]],[[22571,21086],[-1,-336],[92,-451],[-42,-292],[59,-304],[101,-273],[77,-108],[-20,-102],[95,-204],[-59,-201]],[[22873,18815],[58,-178],[58,44],[189,-189],[-9,90],[1945,690]],[[25114,19272],[-50,49],[-53,316],[-24,340],[-33,117],[-16,311],[-172,264]],[[23821,22168],[-85,-63],[-19,160],[-96,136],[-165,48],[-915,-345],[-75,320],[-144,-68]],[[22322,22356],[82,-648],[93,35],[74,-657]],[[84093,46980],[113,-526]],[[84206,46454],[172,-141],[264,46]],[[84642,46359],[62,-20],[237,86],[196,202]],[[85137,46627],[-67,1118]],[[85070,47745],[-191,-89],[-114,-272],[-77,-15],[-58,-118],[-82,-21]],[[84548,47230],[-455,-250]],[[49165,71244],[272,21],[5,-214]],[[50121,71096],[-42,1708]],[[50074,72986],[-750,-37]],[[49324,72949],[-186,-17]],[[49138,72932],[27,-1688]],[[41972,65405],[161,19]],[[41896,67279],[76,-1874]],[[71934,77297],[377,-66]],[[72311,77231],[285,-49]],[[72596,77182],[61,1101],[363,-61]],[[73020,78222],[-33,160],[-84,117],[8,153],[77,142],[-4,141],[58,104],[-68,190],[-116,37],[-43,203]],[[72836,79928],[-185,-99],[-407,-156],[-189,-26]],[[88685,27961],[711,-512]],[[89396,27449],[29,341],[62,317],[-72,259],[8,151],[-54,276]],[[89369,28793],[-170,-127],[-60,51],[-14,297],[-376,83],[-255,-115]],[[88494,28982],[-151,-66],[99,-623],[-28,-12]],[[72536,42257],[-68,-1171]],[[72456,40923],[609,-134]],[[73111,41391],[86,1059]],[[73197,42450],[-98,26]],[[73099,42476],[-543,119]],[[54859,11476],[192,-2],[4,659],[1155,-31]],[[56210,12102],[34,1976]],[[56244,14078],[18,1522]],[[56262,15600],[1,125],[-380,16]],[[55883,15741],[-769,6]],[[55114,15747],[-21,-990],[-3,-755],[-78,-40],[-47,-228],[70,-290],[-525,3]],[[54492,12870],[-1,-729],[-13,0],[-2,-656]],[[70275,26594],[359,-71]],[[70634,26523],[387,-73]],[[53958,53432],[-1,838]],[[53957,54270],[-5,338]],[[53952,54608],[-971,-18]],[[52981,54590],[1,-670]],[[52982,53920],[2,-505]],[[43556,50319],[815,84]],[[44371,50403],[43,4]],[[44414,50407],[-58,1678],[28,3],[-12,352]],[[44372,52440],[-886,-103]],[[43486,52337],[70,-2018]],[[58171,11037],[203,-21],[32,87],[301,238],[137,-22],[0,165],[-91,22],[-18,122],[86,95],[218,-56],[79,172],[-16,187],[159,488],[145,-115],[-60,-255],[62,-150],[83,30],[222,-67],[85,137],[-5,212],[75,118],[95,-25],[46,112],[98,9]],[[60107,12520],[79,2484],[49,2307]],[[60235,17311],[-131,139],[-307,472],[126,301]],[[59923,18223],[-116,-155],[-171,190],[46,59],[-52,142],[-122,-43]],[[58327,17105],[-21,-314],[-25,-1081],[-9,-1239],[-31,1],[-10,-651]],[[58231,13821],[-35,-665],[-25,-2119]],[[60517,38116],[191,-18]],[[60708,38098],[505,-38],[68,331]],[[61281,38391],[25,1006]],[[60928,39426],[-377,26]],[[60551,39452],[-34,-1336]],[[48179,72884],[959,48]],[[49324,72949],[-11,822],[-144,138]],[[49169,73909],[-703,670]],[[48342,82014],[-19,1365]],[[48323,83379],[-487,-462],[-192,-46],[-618,-52]],[[47026,82819],[-168,-15],[17,-632],[-129,-10]],[[46746,82162],[26,-828]],[[82235,29876],[429,-143]],[[82664,29733],[314,-90],[19,163],[187,-50]],[[83184,29756],[58,724],[99,1075]],[[83341,31555],[-729,240]],[[82612,31795],[-161,54]],[[82451,31849],[-216,-1973]],[[43801,67471],[-44,1675]],[[81454,50539],[-3,178]],[[81451,50717],[-68,43],[-89,-91],[134,-185],[26,55]],[[86033,49056],[86,-31]],[[86119,49025],[61,55],[-107,160],[-40,-184]],[[63010,38605],[-13,-500],[154,-236],[225,-137],[6,-160]],[[63382,37572],[527,-55]],[[63909,37517],[17,252],[40,1091]],[[63966,38860],[-5,331],[-191,19]],[[63027,39282],[-17,-677]],[[65433,71925],[-36,-963]],[[65397,70962],[-7,-172],[753,-96]],[[66201,72057],[-9,1]],[[66192,72058],[-750,85],[-9,-218]],[[35289,62206],[466,89],[19,-306],[-167,-45],[21,-332]],[[35628,61612],[941,166]],[[36569,61778],[753,130]],[[37322,61908],[-94,1670],[-40,-8],[-57,996]],[[37131,64566],[-19,334],[-1100,-194]],[[36012,64706],[-879,-163],[42,-689]],[[35175,63854],[20,-314],[-95,-17],[96,-1334],[93,17]],[[42906,40627],[990,114]],[[43896,40741],[-8,201]],[[43852,41933],[-1016,-113]],[[42836,41820],[41,-1026],[29,-167]],[[42645,41797],[191,23]],[[43839,42282],[-49,1332]],[[43790,43614],[-58,1652]],[[43732,45266],[-1263,-124]],[[54111,31640],[755,4]],[[54866,31644],[5,1327]],[[54871,32971],[-755,8]],[[54116,32979],[-5,-1339]],[[66192,72058],[54,1353]],[[66246,73411],[-753,95]],[[65493,73506],[-18,-502],[-134,-886]],[[65341,72118],[92,-193]],[[49395,37363],[11,1]],[[49406,37364],[-21,1333]],[[49385,38697],[-740,-40]],[[80172,55842],[88,-76],[165,-33]],[[80754,55658],[45,762]],[[80799,56420],[-47,720],[119,616]],[[80789,57778],[-219,27],[-63,110]],[[80507,57915],[-41,-207]],[[80466,57708],[36,-293],[-172,-306],[-98,25],[-107,-228]],[[68460,66567],[571,-68]],[[69031,66499],[8,166],[190,-12],[40,672],[190,-18],[18,334]],[[69477,67641],[-379,29],[-57,124],[11,223],[-317,36]],[[68735,68053],[-192,31]],[[68543,68084],[-83,-1517]],[[45979,43834],[909,76]],[[46888,43910],[27,2]],[[46868,45587],[-906,-78]],[[45927,45506],[52,-1672]],[[19619,18119],[105,-189],[112,-63],[77,143],[142,141],[179,-201],[101,197],[8,135],[323,128],[44,-322],[450,174]],[[21160,18262],[729,294]],[[21889,18556],[-124,174],[-36,154],[17,193],[-148,295]],[[21598,19372],[-79,195],[-185,80],[-118,270],[-131,416],[-153,183],[-13,217],[-58,98],[52,256],[-63,113]],[[20850,21200],[-410,-158],[44,-324],[-113,-157],[-18,-121],[-581,-233],[-220,249],[-145,283],[-128,5]],[[68957,64996],[189,-20]],[[69146,64976],[755,-100]],[[69901,64876],[60,1178],[-71,8]],[[69890,66062],[-630,87],[-246,17]],[[69014,66166],[-57,-1170]],[[62284,50739],[540,-50]],[[62824,50689],[182,374],[74,94]],[[63080,51157],[34,1318]],[[63114,52475],[-394,40],[-390,13]],[[62330,52528],[-16,-840],[-30,-949]],[[96824,98126],[52,-28],[79,237]],[[96955,98335],[-105,46]],[[96850,98381],[-26,-255]],[[67928,41203],[-48,-944]],[[67880,40259],[427,-66]],[[68307,40193],[278,-45]],[[68585,40148],[41,666]],[[68626,40814],[21,334]],[[68647,41148],[-716,110]],[[67931,41258],[-3,-55]],[[11083,57627],[162,169],[113,35],[101,191],[116,65],[64,-104],[119,113],[-91,114],[-185,-43],[-117,53],[-255,-196],[23,-195],[-50,-202]],[[10466,57649],[285,58],[91,-23],[-25,131],[109,116],[-13,156],[-286,57],[-70,-124],[-91,-371]],[[10133,57356],[172,-64],[77,233],[-102,-13],[-147,-156]],[[10316,53706],[27,60],[239,-9],[106,66],[195,408],[27,-96],[-9,-330],[260,34],[43,-129],[161,-63],[158,270],[88,39],[136,268],[128,185],[137,74],[189,376],[111,35]],[[12312,54894],[53,23]],[[12365,54917],[-237,1635],[-39,220],[-71,76]],[[12018,56848],[-122,-197],[-195,-97],[-76,49],[-137,-150],[-143,-28],[-206,-297],[-224,-153],[-284,-103],[-306,-63],[-27,-312],[-200,-323],[139,-379],[-25,-266],[97,-302],[-32,-247],[-39,-30],[78,-244]],[[9487,28436],[149,232],[47,279],[186,100],[94,195],[-4,124],[112,42],[76,105],[45,-99],[-10,-165],[-61,-114],[73,-344],[121,-24],[152,55],[43,-60],[365,-237],[74,-78],[79,189],[-69,155],[-36,361]],[[9488,33267],[-979,-497],[16,-92]],[[8525,32678],[439,-2557],[43,-302],[12,-325],[-20,-310],[95,-22],[86,177],[92,-62],[112,-248],[-41,-220],[144,-373]],[[63715,45510],[382,-48]],[[64097,45462],[376,-48]],[[64473,45414],[25,734],[58,1285]],[[64556,47433],[-757,80]],[[63799,47513],[-39,-1009]],[[63760,46504],[-45,-994]],[[72621,28417],[186,-35],[10,165],[369,-75],[12,165],[187,-41]],[[73385,28596],[79,979]],[[73464,29575],[-374,88],[29,333]],[[73119,29996],[-694,168]],[[50288,74063],[143,566]],[[50431,74629],[-264,258]],[[49786,75258],[-77,-244],[-144,143],[-396,-1248]],[[79647,85535],[816,-209],[-11,-167],[378,-94]],[[80830,85065],[51,625]],[[80881,85690],[18,203],[-97,23],[28,330]],[[80830,86246],[-1050,258]],[[79780,86504],[-297,76]],[[79483,86580],[68,-196],[35,-290],[18,-425],[43,-134]],[[79436,86593],[-57,13]],[[79379,86606],[-17,-169],[60,-19],[14,175]],[[81014,53631],[252,-46],[419,-117]],[[81685,53468],[45,-13]],[[81822,54544],[-724,194]],[[81098,54738],[-84,-1107]],[[21956,22218],[144,55],[84,-462],[13,-172],[130,-431]],[[22327,21208],[107,-39],[56,-159],[81,76]],[[22322,22356],[-91,-34],[-175,1285]],[[22056,23607],[-356,-135]],[[21700,23472],[-309,-118]],[[21391,23354],[83,-652],[216,86],[75,-83],[27,-214],[122,49],[42,-322]],[[79131,44547],[191,-196],[116,-174],[27,-113]],[[79465,44064],[146,13]],[[79611,44077],[50,327],[223,344]],[[79884,44748],[-103,74],[-466,814]],[[79315,45636],[-147,-254],[72,-226],[-41,-438],[-68,-171]],[[49806,55683],[409,16]],[[50215,55699],[-15,1557],[9,4]],[[50209,57260],[-7,504]],[[50202,57764],[-752,-33]],[[49450,57731],[17,-1848],[-5,-220]],[[51604,44148],[756,18]],[[52360,44166],[185,4]],[[52545,44170],[-10,1678]],[[52535,45848],[-255,-5]],[[52280,45843],[-689,-17]],[[51594,45491],[10,-1343]],[[79766,70667],[138,-59],[152,106],[92,304]],[[80148,71018],[61,172],[74,39]],[[80283,71229],[-65,179]],[[80218,71408],[-235,51],[-176,-75],[-148,-729]],[[79659,70655],[107,12]],[[71280,42736],[-32,-504]],[[71248,42232],[600,-116]],[[71848,42116],[40,274]],[[71909,43224],[-133,30]],[[71776,43254],[-492,99]],[[71284,43353],[-20,-331],[33,-6],[-17,-280]],[[79803,60720],[1027,-277]],[[80830,60443],[50,114],[61,343],[-42,261],[65,328]],[[80964,61489],[-224,44],[-754,111]],[[79986,61644],[-9,-238],[-82,-140],[-27,-327],[-65,-219]],[[20137,63748],[17,-85],[147,-244],[70,-56],[44,-484],[68,-46],[6,-591],[56,-59],[-29,-272],[210,-273],[30,-214]],[[22809,61170],[-128,1206]],[[22681,62376],[-250,2355]],[[22431,64731],[-1120,-366],[36,-329],[-554,-182],[-186,1637],[-446,-143]],[[20161,65348],[-260,-109],[-56,-237],[80,-252],[52,-417],[-75,-96],[75,-261],[-27,-156],[187,-72]],[[46972,35876],[162,13]],[[47134,35889],[779,55]],[[47913,35944],[-29,1330]],[[46965,37210],[-24,-2]],[[25114,19272],[45,-127],[134,-196],[-129,-437],[-97,-189],[30,-270],[181,208],[69,-164],[130,-137]],[[27658,23303],[-57,554],[-278,-102]],[[27323,23755],[-504,-156]],[[46636,51619],[-10,335]],[[46602,53648],[-754,-60]],[[45848,53588],[29,-1008]],[[45877,52580],[11,-356],[-23,-3],[20,-669],[751,67]],[[65686,67872],[34,837],[228,-30]],[[65948,68679],[-129,120],[23,566]],[[65842,69365],[-349,42]],[[65493,69407],[-19,-449],[-255,-23],[-41,-1000]],[[55447,71542],[794,-22]],[[56241,71520],[26,96]],[[56267,71616],[10,331]],[[56277,71947],[5,542]],[[55759,72942],[-282,-45],[-25,-76]],[[55452,72821],[-5,-1279]],[[48988,80661],[341,8],[113,66]],[[49442,80735],[424,247]],[[49866,80982],[-93,264]],[[49773,81246],[-254,1208]],[[49519,82454],[-227,375]],[[49292,82829],[-319,-786]],[[52262,47518],[5,-338]],[[52267,47180],[189,7],[-6,505],[246,-8],[0,69],[347,6],[-1,112]],[[53042,47871],[-2,671]],[[53040,48542],[-660,-10]],[[52380,48532],[-62,-2],[3,-419],[-63,53],[4,-646]],[[72218,47426],[50,1],[233,-334]],[[72501,47093],[124,295],[52,57]],[[72677,47445],[-220,298]],[[72457,47743],[-156,76]],[[72301,47819],[-71,34],[-42,-173],[-203,-384]],[[71985,47296],[147,-12],[86,142]],[[70122,37007],[10,166]],[[70132,37173],[69,1005],[-38,8]],[[69469,37302],[-10,-166],[663,-129]],[[81900,55486],[-78,-942]],[[82699,54344],[115,1303]],[[81927,55830],[-27,-344]],[[85618,42978],[45,54]],[[85663,43032],[-45,-54]],[[82227,48434],[0,0]],[[71972,34350],[189,-31]],[[72717,34190],[104,1401]],[[72821,35591],[-63,16]],[[72758,35607],[-655,175]],[[72103,35782],[-48,-238]],[[44568,48733],[605,57]],[[45126,50471],[-712,-64]],[[44371,50403],[57,-1682]],[[58543,27910],[569,-28]],[[59112,27882],[28,1330],[-18,1]],[[59122,29213],[-563,33]],[[58559,29246],[-24,-1336]],[[65279,42384],[953,-123]],[[65987,43170],[-664,110]],[[42236,74020],[-948,-109]],[[41288,73911],[-490,-67]],[[40798,73844],[71,-1668]],[[50224,27958],[752,34]],[[50965,29317],[-184,-10]],[[50211,28951],[13,-993]],[[57134,26978],[66,-239],[-41,-94]],[[57159,26645],[604,-27]],[[57782,27950],[-382,17]],[[57400,27967],[-2,-166],[-383,14]],[[57015,27815],[-22,-69],[141,-336],[-47,-79],[47,-353]],[[64518,32582],[568,-81]],[[65086,32501],[379,-30]],[[65465,32471],[60,1344]],[[65525,33815],[-264,23]],[[64576,33904],[-58,-1322]],[[58559,29246],[-6,0]],[[57989,29276],[-21,-1336]],[[81372,35908],[-100,-1070]],[[81272,34838],[167,-30],[13,-61]],[[81452,34747],[185,-198],[26,48],[401,262],[65,218]],[[82129,35077],[-91,26],[-34,287],[89,858]],[[82093,36248],[-667,188]],[[81426,36436],[-54,-528]],[[55631,32960],[755,-12]],[[56386,32948],[9,1011]],[[56398,34291],[-759,13]],[[55639,34304],[-8,-1344]],[[54756,29369],[1,1334]],[[54757,30703],[-645,6]],[[54112,30709],[-306,0]],[[24942,93326],[52,-62],[86,232],[-10,219]],[[25070,93715],[-144,-158],[16,-231]],[[24647,95023],[14,-161],[-45,-173],[90,49],[55,249],[-114,36]],[[23652,95001],[0,-142],[72,104],[58,-192],[62,15],[-21,222],[-94,166],[-6,-170],[-71,-3]],[[23524,94360],[60,-318],[-61,-29],[7,-201],[178,-50],[179,317],[131,63],[102,138],[28,124],[187,208],[-183,-60],[-16,137],[76,-81],[137,130],[57,198],[67,-14],[-17,286],[52,-91],[71,293],[-8,132],[-121,47],[-101,-29],[52,-130],[-139,-80],[-37,-261],[-57,78],[28,178],[-82,-21],[-47,-206],[-87,-9],[181,397],[57,-93],[88,178],[-70,-22],[70,166],[-90,13],[-183,-257],[-91,-329],[-87,73],[-26,-152],[69,16],[61,-202],[-114,-158],[-232,-176],[48,-97],[-17,-246],[-63,209],[-57,-69]],[[23310,94551],[102,-60],[-49,146],[-53,-86]],[[23565,93593],[-90,115],[-45,-119],[6,641],[-53,147],[-76,-120],[-67,-291],[-1,-247],[-55,-4],[-104,-356],[38,-143],[92,-32],[69,128],[-27,-204],[-67,-59],[49,-123],[244,-13]],[[23117,94130],[12,152]],[[23129,94282],[-12,-152]],[[45575,30738],[1612,134]],[[47187,30872],[-25,1006],[24,1],[-12,499]],[[47174,32378],[-1646,-139]],[[77872,74426],[338,-68],[6,54],[220,-48],[52,131],[349,-83]],[[78837,74412],[27,339],[-130,19],[13,209],[67,137]],[[78814,75116],[-557,134]],[[78257,75250],[-140,35]],[[78117,75285],[-3,-354],[-65,-196],[-106,-123],[-71,-186]],[[23129,94282],[-72,-54],[-206,-400],[-114,-154],[-83,-4],[11,-339],[-72,-67],[22,-219],[-75,52],[-84,-132],[66,-321],[172,116],[88,-32],[-19,155],[57,51],[226,738],[71,458]],[[22418,93146],[15,-154],[115,129],[5,281],[-85,61],[14,-185],[-64,-132]],[[22601,92319],[67,-28],[104,316],[-102,94],[-231,-169],[-45,56],[87,186],[-33,181],[-81,-17],[-128,-193],[-44,15],[-105,-280]],[[65493,69407],[-102,13],[-77,282]],[[65314,69702],[-792,-371]],[[64522,69331],[-12,-321],[67,-5],[-5,-164],[66,-6],[-31,-775],[-47,-58]],[[83788,87813],[694,-194]],[[84482,87619],[75,198],[120,430],[147,407]],[[83916,89135],[-128,-1322]],[[59934,41680],[-475,55]],[[59459,41735],[-26,-1186]],[[62322,41327],[190,-4]],[[62512,41323],[570,-26]],[[63082,41297],[37,1354]],[[63119,42651],[-764,43]],[[62355,42694],[-33,-1367]],[[74411,36038],[123,-32],[14,166],[625,-150]],[[75173,36022],[8,107],[170,-42],[53,533]],[[75404,36620],[13,132]],[[75417,36752],[-942,228]],[[74475,36980],[-64,-942]],[[66312,48733],[756,-77]],[[67254,48747],[52,1205]],[[67306,49952],[-375,55]],[[37078,78779],[1616,-1447]],[[38694,77332],[908,1433]],[[39602,78765],[255,422]],[[39857,79187],[-724,873]],[[39133,80060],[-190,-26],[-1994,-1141]],[[36949,78893],[129,-114]],[[56234,26009],[4,334],[379,-13],[-2,-335],[380,-11]],[[57377,26264],[-139,80],[-68,130],[-11,171]],[[57134,26978],[-1088,37]],[[56046,27015],[-17,-999],[205,-7]],[[46642,67698],[292,21],[5,73],[140,-5],[96,87],[13,-104],[169,164],[43,-55],[150,146],[30,130]],[[47556,69444],[-945,-59]],[[63673,49336],[114,-320],[-1,-188]],[[63786,48828],[806,-70]],[[64592,48758],[40,922]],[[64632,49680],[30,756]],[[64662,50436],[-334,33]],[[64328,50469],[-52,-198],[15,-135],[-210,19],[-2,-56],[-199,-322],[-1,-54],[-215,-343]],[[63664,49380],[9,-44]],[[72901,26062],[497,-119]],[[73398,25943],[2,413],[-144,111],[11,161],[-231,72],[-68,130],[-34,197]],[[72934,27027],[-214,44],[-25,-326],[-189,41]],[[66785,46482],[594,-96]],[[67379,46386],[96,-18]],[[67475,46368],[69,1248]],[[67015,47703],[-175,7],[-11,-226]],[[52280,45843],[-13,1337]],[[52262,47518],[-689,-13]],[[51573,47505],[7,-672]],[[22245,15647],[114,-104],[-17,-194],[108,-170]],[[22450,15179],[56,39],[40,-137],[101,54],[50,128],[51,-133],[44,-338],[46,47],[80,-260],[36,-12],[175,203],[143,110],[106,-187],[138,54],[70,-43],[-130,-302],[-37,-321]],[[23419,14081],[135,88],[89,249],[311,267],[59,-94],[70,-272],[164,-190],[21,-130],[1610,-54]],[[25878,13945],[76,-17],[114,89],[76,-87],[136,47]],[[22873,18815],[-243,-96],[38,-64],[-21,-552],[-521,-198]],[[22126,17905],[46,-193],[186,-404],[60,-55],[32,-174],[171,-296],[-66,-373],[20,-159],[-65,-198],[-107,-55],[-30,-160],[-125,-69],[-3,-122]],[[47779,9513],[959,68]],[[48749,11300],[-960,-68]],[[46853,47266],[-941,-82]],[[48312,79011],[976,48]],[[49288,79059],[-25,162],[150,176],[-107,165],[13,154],[92,19],[-125,276],[70,290],[0,133],[88,24],[-2,277]],[[38430,49628],[186,29],[52,-1004]],[[38668,48653],[636,100],[872,124]],[[40176,48877],[-78,1444]],[[40016,51904],[-482,-393]],[[39534,51511],[-489,-398],[-633,-28],[-55,-142]],[[38357,50943],[73,-1315]],[[8963,21025],[339,178],[45,110],[66,369],[-43,67],[-57,325],[33,17],[-38,275],[78,-34],[144,75],[143,-142],[23,-128],[184,39]],[[9880,22176],[143,94]],[[9357,25090],[-603,-330]],[[8754,24760],[-102,-269],[-47,-279],[36,-246],[-32,-298],[25,-314],[61,-403],[158,-458],[15,-341],[-43,-80],[2,-228],[-60,-49],[10,-412],[186,-358]],[[66118,70014],[189,-25],[-13,-339],[191,-25],[-14,-338],[37,-5]],[[67010,69216],[61,1383]],[[67071,70599],[-187,21]],[[66143,70694],[-25,-680]],[[49364,42721],[-5,-1]],[[49359,42720],[-752,-41]],[[96341,97299],[98,15]],[[96439,97314],[6,231],[48,0]],[[96493,97545],[-4,18]],[[96338,97670],[-123,-83]],[[96215,97587],[48,-258]],[[79215,41745],[520,-150]],[[79897,41550],[72,307]],[[79969,41857],[-62,10],[-14,175],[-66,145],[71,281],[-31,74]],[[79867,42542],[-69,178]],[[79798,42720],[-131,-46]],[[79667,42674],[-206,-103],[-235,-365],[-49,98],[-105,-75]],[[79072,42229],[100,-81],[1,-258],[42,-145]],[[75129,75661],[196,-29],[36,675]],[[75013,76418],[-358,60]],[[74655,76478],[-38,-700],[512,-117]],[[36627,51289],[997,166]],[[37624,51455],[-111,578],[24,80]],[[37537,52113],[-22,51],[-471,720]],[[48677,54136],[-920,-43]],[[47757,54093],[-15,-335]],[[43396,18069],[1258,146]],[[44654,18215],[69,8],[-43,1322],[75,8],[-11,297]],[[44744,19850],[-761,-89],[12,-293],[-650,-74]],[[59112,27882],[201,-10]],[[59313,27872],[365,-21],[7,331],[377,-23]],[[60062,28159],[24,996]],[[60086,29155],[-584,35],[1,55]],[[59503,29245],[-379,24],[-2,-56]],[[97099,97376],[68,-156]],[[97304,97278],[-158,428]],[[54986,35658],[376,-3]],[[54611,37000],[-188,2]],[[54423,37002],[0,-1340]],[[53983,49050],[-2,-505]],[[53981,48545],[757,-3]],[[54738,48542],[1,505]],[[54730,50224],[-755,3]],[[58678,34204],[761,-41]],[[59494,35156],[-379,25],[7,333]],[[43731,45289],[1067,111]],[[44798,45400],[42,4]],[[44781,47073],[-146,-13]],[[43674,46965],[57,-1676]],[[95058,97668],[53,426],[34,58]],[[95145,98152],[-155,-31]],[[94990,98121],[-51,-76]],[[94939,98045],[12,-349]],[[55932,36983],[9,1002],[71,-1],[3,377]],[[56015,38361],[-556,10]],[[96730,17157],[79,-70],[-28,138],[-51,-68]],[[96556,17379],[-8,-281],[186,209],[-57,185],[-121,-113]],[[96398,16723],[17,-160],[73,213],[-90,-53]],[[95997,17360],[71,-41],[40,118],[-111,-77]],[[95755,15698],[122,30],[41,-265],[77,32],[22,-160],[242,-214],[-220,-755],[176,-158],[-86,-299],[178,-159],[-127,-419],[349,-307]],[[97211,16014],[-60,67],[-24,317],[-99,-58],[-27,-136],[-108,98],[49,203],[-45,269],[72,74],[-178,149],[-143,-34],[-142,-295],[16,-110],[102,-144],[-56,-122],[-35,147],[-46,-141],[-72,64],[-105,207],[56,128],[-9,155],[107,174],[10,148],[-83,309],[56,9],[-44,155]],[[96403,17647],[-59,2]],[[96344,17649],[-120,-121],[-58,-192],[56,-203],[-128,-74],[-38,-101],[-87,115],[-52,-360],[34,-170],[-77,-272]],[[95874,16271],[-127,-314],[8,-259]],[[56649,67520],[119,53],[48,-58],[-4,177],[278,350],[86,46],[271,19],[0,110],[151,4]],[[57598,68221],[3,0]],[[57601,68221],[-14,303],[93,160],[79,-19],[87,90]],[[57846,68755],[-57,-4],[-71,155],[-60,-40],[-37,131],[-31,-122],[-137,116]],[[57453,68991],[-109,-66],[-37,72],[-110,-151],[-77,154],[-132,-86],[-109,131],[-35,-120],[-148,-87],[-3,-180],[-48,29]],[[56645,68687],[4,-1167]],[[56441,59193],[277,3],[7,-167],[94,-1],[2,-280],[634,21],[1,-95],[148,-31]],[[57604,58643],[-92,559],[-1,995],[-16,279]],[[57495,60476],[-286,-4],[0,55],[-652,-13]],[[56557,60514],[-116,-1321]],[[60069,63463],[109,2],[63,187],[53,-120],[339,-7],[-3,-335],[189,-5]],[[60819,63185],[91,-5],[11,1087],[-52,416],[151,-4],[11,508]],[[61031,65187],[-320,9]],[[60711,65196],[-68,2]],[[59727,63869],[-29,-221],[186,-7],[1,-113],[185,0],[-1,-65]],[[60817,62976],[190,-52],[244,182],[136,-33]],[[61387,63073],[8,419],[197,-7],[12,954],[117,168],[-43,181],[60,100],[-74,279]],[[61664,65167],[-49,1]],[[61615,65168],[-584,19]],[[60819,63185],[-2,-209]],[[41693,52490],[565,71]],[[42258,52561],[1216,140]],[[43474,52701],[-36,982]],[[43438,53683],[-57,1526]],[[43381,55209],[-1139,-141],[-527,-85]],[[41715,54983],[-146,-19]],[[41569,54964],[69,-1468],[14,2],[41,-1008]],[[25058,29695],[113,2]],[[25171,29697],[93,-25],[69,78],[87,-56],[50,150],[141,-6],[169,-373],[173,-37]],[[25953,29428],[164,-19],[85,258],[105,47]],[[26307,29714],[99,24],[-16,143],[273,92],[-98,987]],[[26565,30960],[-130,1247]],[[26435,32207],[-1430,-421],[-235,-100]],[[24770,31686],[-382,-131]],[[24388,31555],[173,-1600],[343,116],[44,-367],[110,-9]],[[70370,70453],[261,-40],[-54,-817]],[[70577,69596],[-6,-84],[496,-76],[114,177],[66,-17]],[[71247,69596],[23,348],[77,199],[55,32],[1,192],[163,205]],[[71566,70572],[-69,23],[10,166]],[[71507,70761],[-551,101],[11,168],[-375,54]],[[70592,71084],[-183,34],[-14,-254]],[[70395,70864],[-25,-411]],[[76828,72315],[45,664]],[[76873,72979],[14,190],[-351,81]],[[76536,73250],[-87,-89],[-178,-23]],[[76271,73138],[14,-242]],[[53745,26373],[764,0],[16,336]],[[54525,26709],[5,1329]],[[53767,28036],[-2,-1328],[-20,-335]],[[84098,49597],[246,-1242],[-7,-213]],[[84337,48142],[112,-265]],[[84449,47877],[113,89],[-1,141],[74,66]],[[84635,48173],[-14,120],[-4,683]],[[84617,48976],[-62,68],[-77,318]],[[84478,49362],[-124,271],[-123,56],[-133,-92]],[[53119,43170],[661,4]],[[53780,43174],[94,2]],[[53874,43176],[-1,1006]],[[53873,44182],[-382,-1]],[[53491,44181],[-375,-3]],[[53116,44178],[3,-1008]],[[46801,60831],[-18,758]],[[46760,62513],[-959,-77]],[[51082,14722],[611,20]],[[51693,14742],[-14,1318],[34,2],[-3,325]],[[50871,41441],[14,-1342]],[[71301,25055],[-751,145]],[[70550,25200],[-72,-1142]],[[48739,45707],[37,2]],[[48776,45709],[-37,1677]],[[66591,46339],[-27,-613]],[[66564,45726],[769,-127]],[[67333,45599],[46,787]],[[79944,46208],[196,-521],[52,-381]],[[80192,45306],[112,13]],[[80304,45319],[66,-31],[76,159],[60,-58]],[[80506,45389],[223,598],[-53,551]],[[80542,47213],[-144,-121]],[[80398,47092],[-324,-264],[-108,-180],[31,-55],[-91,-284],[38,-101]],[[66360,62701],[346,-45]],[[66706,62656],[22,524],[126,-17],[17,392],[62,-8]],[[66933,63547],[28,616],[-32,4]],[[66929,64167],[-632,75]],[[66297,64242],[-35,-834],[95,-12],[24,-171],[-21,-524]],[[77847,74231],[61,-37],[70,-354],[-12,-175],[76,-113],[17,-150]],[[78059,73402],[-27,-411]],[[78032,72991],[28,-54],[207,-8],[48,-142]],[[78315,72787],[44,550],[386,-99]],[[78745,73238],[34,435],[59,-13],[25,337]],[[78863,73997],[-57,14],[31,401]],[[77872,74426],[-25,-195]],[[50619,48483],[4,-337]],[[50623,48146],[943,31]],[[51566,48177],[-11,1345]],[[51555,49522],[-942,-31]],[[50613,49491],[6,-1008]],[[63969,65182],[176,-21],[-16,-326],[190,-26]],[[64319,64809],[36,806],[111,124],[14,408]],[[64480,66147],[11,335],[-569,59]],[[63922,66541],[-24,-728],[93,-7],[-22,-624]],[[49314,19931],[-52,-4]],[[49675,48446],[944,37]],[[50613,49491],[-3,336]],[[50610,49827],[-948,-34]],[[49662,49793],[1,-676]],[[49663,49117],[12,-671]],[[68670,46196],[314,-36]],[[68984,46160],[625,-96]],[[69609,46064],[39,666]],[[69667,47067],[-374,65]],[[69293,47132],[-328,55]],[[68965,47187],[-241,24]],[[68724,47211],[-54,-1015]],[[59117,42713],[284,-20]],[[59401,42693],[555,-47]],[[59964,42814],[27,1024]],[[59991,43838],[-838,51]],[[59153,43889],[-15,1]],[[76766,38702],[780,-202]],[[77546,38500],[12,126]],[[77558,38626],[-32,17],[62,721],[-65,13]],[[77523,39377],[-784,158]],[[76645,39123],[-33,-379],[154,-42]],[[60147,61856],[2,338],[-71,356],[52,58],[-33,230],[-59,9]],[[60038,62847],[-158,153],[35,-129],[-163,154],[-578,13]],[[59174,63038],[-3,-123],[108,-41],[95,-199],[50,-12]],[[69582,39308],[-185,29]],[[69397,39337],[-574,91]],[[68823,39428],[-54,-997]],[[96439,97314],[126,-119]],[[96565,97195],[33,68]],[[96598,97263],[45,132]],[[96643,97395],[-150,150]],[[49406,37364],[744,31]],[[50150,37395],[-7,1003]],[[49397,38697],[-12,0]],[[43801,67471],[947,79]],[[66425,55815],[-29,-669]],[[66396,55146],[572,-59]],[[66968,55087],[31,739]],[[66999,55826],[38,959]],[[67037,56785],[-48,5]],[[66989,56790],[-525,66]],[[66464,56856],[-39,-1041]],[[71368,55230],[271,-434],[113,-98]],[[71752,54698],[221,-8],[33,51]],[[72006,54741],[23,153],[81,-5],[54,158],[80,-23],[-35,172],[123,257]],[[72332,55453],[-89,31],[-524,73]],[[71719,55557],[-327,34]],[[71392,55591],[38,-135],[-62,-226]],[[64656,47421],[90,-12],[-5,-111],[567,-68]],[[65347,48332],[-582,66]],[[64765,48398],[-23,-505],[-64,8],[-22,-480]],[[57605,64696],[94,-2],[12,-183],[159,-28],[126,-109]],[[57996,64374],[567,-18]],[[58563,64356],[-11,224],[8,1112]],[[58560,65692],[2,220]],[[58562,65912],[-127,1]],[[58435,65913],[-823,-1]],[[57612,65912],[-7,-1216]],[[71434,56369],[266,6]],[[71700,56375],[-3,481],[41,120],[87,50]],[[71825,57026],[-22,418]],[[71803,57444],[-90,163],[-171,-34],[-42,99],[-128,28]],[[71372,57700],[-184,-781]],[[67364,43655],[673,-114]],[[68037,43541],[57,1059]],[[68094,44600],[26,500]],[[68120,45100],[-264,42],[1,-41],[-456,92]],[[67401,45193],[-49,-785]],[[67352,44408],[-24,-409],[53,-8],[-17,-336]],[[82020,38269],[49,-348],[102,-987]],[[82171,36934],[734,-237]],[[82905,36697],[-62,335],[-53,29],[11,192],[-41,212],[-74,160],[15,527],[-74,195]],[[82627,38347],[-29,339]],[[82598,38686],[-371,111],[-94,-128],[-202,63]],[[81931,38732],[89,-463]],[[12102,15591],[26,-102]],[[12128,15489],[145,119],[32,219],[362,-234],[167,145],[107,3],[182,223],[296,165],[50,239],[154,-29],[129,209],[352,184]],[[14104,16732],[-57,247],[14,87],[-69,276],[-72,66],[-53,366]],[[13867,17774],[-61,396],[20,102]],[[13826,18272],[-774,-340],[-108,89],[-285,-184],[-81,-196],[-161,-176],[-157,-66],[-75,75],[-39,213],[-392,-196],[39,-86],[-9,-234]],[[11784,17171],[-69,-228],[57,-82],[32,-271],[41,-24],[28,-233],[-40,-221],[133,-61],[50,-161],[156,15],[-70,-314]],[[56221,25339],[13,670]],[[56046,27015],[-245,3]],[[55801,27018],[-135,-156]],[[55666,26862],[-193,-180],[-42,14],[-269,-309],[-91,-162],[-72,23],[-110,-141]],[[54889,26107],[-192,-205]],[[54697,25902],[-2,-529],[365,-7]],[[55176,19719],[646,-12]],[[55822,19707],[119,74]],[[55941,19781],[10,252],[22,1940]],[[55973,21973],[-761,18]],[[12442,14349],[134,-101],[-33,-112],[56,-68],[-26,-234],[65,19],[84,-200],[83,154],[76,28]],[[12881,13835],[106,-3],[55,86],[-75,306],[-74,133],[81,324],[140,226],[39,348],[188,299],[981,479]],[[14322,16033],[-61,192]],[[14261,16225],[-90,20],[-27,117],[67,108],[-87,90],[-20,172]],[[12128,15489],[117,-190],[-114,-139],[159,-313],[124,-38],[-20,-244],[48,-216]],[[85818,38078],[156,-332],[63,-49]],[[86659,37001],[535,507]],[[87194,37508],[-93,137],[37,276],[-56,358],[44,313],[-74,457],[-95,184]],[[86957,39233],[-159,60]],[[86798,39293],[-11,4]],[[86787,39297],[-84,-182],[-123,-138],[-129,-311],[-158,-89],[-139,-349],[-216,31],[-120,-181]],[[60545,60503],[714,-24]],[[61259,60479],[84,-33],[10,685]],[[61353,61131],[4,303],[-94,81],[4,302],[-462,16]],[[60805,61833],[-251,14]],[[77119,72949],[558,-133]],[[77677,72816],[81,111],[100,-12],[115,101],[59,-25]],[[78059,73402],[-330,59],[6,102],[-165,29],[-6,-98],[-111,23],[-22,-289],[-237,50]],[[77194,73278],[-75,-329]],[[33875,91804],[70,-328],[152,-99],[95,106],[148,419],[183,-96],[127,-117],[196,69],[124,217],[78,50],[35,129],[232,119],[35,277],[-137,261],[-184,118],[-104,-31],[-227,175],[-155,30],[-138,-112],[-15,-447],[-27,-213],[-53,-63],[-100,76],[-194,-162],[-97,-188],[-44,-190]],[[33871,93280],[259,-283],[70,101],[-14,227],[-112,-15],[-163,67],[-40,-97]],[[33125,91867],[150,-106],[192,64],[124,196],[57,207],[-59,170],[-147,95],[-122,17],[-89,-454],[-106,-189]],[[33224,90799],[150,96],[49,-31]],[[33423,90864],[104,14],[199,-59],[129,81],[-62,180],[-130,168],[-155,68],[-451,-206],[-325,60],[-120,-53],[112,-264],[-13,-189],[513,135]],[[60067,52244],[-9,-625]],[[60058,51619],[379,-7]],[[60437,51612],[283,1]],[[60720,51613],[24,1575]],[[60744,53188],[-380,19]],[[49371,87895],[-28,2115]],[[61427,36697],[-757,54]],[[60670,36751],[-23,-673],[-19,-1009]],[[44931,58983],[949,87]],[[59943,38160],[574,-44]],[[60551,39452],[-385,31]],[[76119,43204],[-2,-56],[185,-26],[-10,-171],[204,-28],[-9,-227],[194,-23]],[[76681,42673],[10,225],[198,-26],[6,109],[176,-23]],[[77071,42958],[15,349],[-190,22],[13,343]],[[76909,43672],[-379,49],[3,102],[-197,23],[3,56],[-191,21]],[[76148,43923],[-18,-386]],[[74207,71525],[71,-8],[107,-155],[206,-81],[58,-350],[52,-53]],[[74701,70878],[100,-83]],[[74801,70795],[-26,160],[66,1000]],[[74841,71955],[-479,107]],[[74362,72062],[43,-135],[-86,-117],[-131,-66],[19,-219]],[[34264,15937],[566,139]],[[36038,16322],[-7,201],[39,97],[-90,301],[64,13],[-30,381],[24,5]],[[36038,17320],[-29,381],[-221,-49],[-142,194],[-47,269],[-440,-98],[-135,77],[-30,389],[-568,-129]],[[73376,67625],[505,-91]],[[74071,68273],[-257,257],[-260,215]],[[73554,68745],[-178,-1120]],[[61242,12479],[209,-236],[69,17],[14,191],[89,93],[-28,88],[87,162],[147,-48],[85,-85],[41,101],[626,-124],[165,84],[59,218],[177,133],[75,-121],[104,-43],[253,75],[133,-87],[-139,201],[-159,113],[-135,205],[-189,132],[-71,128],[-400,263],[-121,113],[-155,72],[-144,123],[-287,327],[-189,275],[-221,370]],[[61337,15219],[-45,-1604],[-10,-54],[-40,-1082]],[[54876,34310],[763,-6]],[[55639,34304],[2,331],[93,-1],[5,1017]],[[83264,52993],[589,-185]],[[83853,52808],[112,1164]],[[83965,53972],[-258,68]],[[83354,54140],[-90,-1147]],[[11677,79978],[-154,-190],[-31,-147],[-143,-222],[99,-35],[61,-171],[49,-409],[242,104],[307,-10],[222,-224],[89,-177],[124,-664],[214,-452],[135,-156],[152,74],[132,-81],[169,-212],[163,-284],[128,-88],[127,133],[203,-65],[102,-115],[189,-427],[72,-5],[235,172],[8,146],[-112,124],[8,164],[76,21],[35,-151],[88,-111],[38,-154],[109,165],[6,256],[101,77],[76,-154],[167,-50],[264,120],[-62,180],[15,104],[189,64],[-43,163],[193,58],[49,-112],[141,-13],[16,65],[231,-168],[182,129],[46,-33],[75,145],[36,-63],[148,172],[141,34],[71,-53],[273,-28],[132,149],[128,66],[88,-35],[176,-246],[163,-87],[543,444],[121,25],[170,1487]],[[97020,98027],[288,179]],[[97308,98206],[-131,121]],[[97177,98327],[-62,-46],[-95,-254]],[[70913,38708],[503,-109]],[[71438,38937],[67,1006],[-187,39]],[[71318,39982],[-312,62]],[[62243,52701],[7,-169],[80,-4]],[[63114,52475],[6,355],[195,-22]],[[63315,52808],[-16,176],[32,1083]],[[63331,54067],[4,173],[-320,37]],[[63015,54277],[-31,7],[-6,-396],[-40,0],[-21,-884],[-376,32],[-288,86]],[[45352,70957],[-612,-60],[-89,-28]],[[80087,51560],[80,-148],[310,-342]],[[80477,51070],[54,225],[118,160]],[[80578,51648],[100,382]],[[80678,52030],[-136,245]],[[80542,52275],[-70,163],[-94,90]],[[80378,52528],[-315,-492],[-50,-166]],[[80013,51870],[-45,-150],[119,-160]],[[56898,45116],[-2,-166]],[[57655,45607],[3,335]],[[57658,45942],[-755,18]],[[69779,67937],[138,-188],[-39,-82],[39,-142],[154,-79],[57,-120],[16,-283],[51,-234],[88,-123]],[[70283,66686],[120,-128],[226,-28],[218,252],[126,-19]],[[70973,66763],[64,-11],[55,413],[-39,146],[12,226],[67,47]],[[71132,67584],[-142,329],[-114,22],[-81,208],[-62,12],[-37,196],[-93,39],[6,111],[-95,13],[-67,222],[-97,140],[-80,12]],[[70270,68888],[-71,10]],[[70199,68898],[-6,-112],[-181,-89],[-76,-187],[-174,-290],[-96,-46],[2,-138],[84,11],[27,-110]],[[35213,96281],[15,-144],[139,-250],[118,-51],[68,-280],[119,-168],[14,-226],[-81,-164],[-68,-255],[-14,-226],[31,-191],[77,-62],[221,147],[30,102],[164,144],[110,154],[87,-20],[189,102],[412,337],[263,355],[125,268],[-16,427],[180,-8],[54,184],[-5,187],[168,268],[186,152],[-17,187],[-326,507],[-317,284],[-150,60],[-189,-19],[-132,221],[-118,81],[-75,138],[-108,55],[-108,214],[6,107],[-97,315],[-145,208],[-114,-197],[-167,-169],[-163,-95],[-78,-312],[69,-824],[-78,-550],[-60,-27],[-16,-221],[-79,-366],[-139,-334],[15,-45]],[[21048,12167],[76,27],[123,-220],[139,35],[61,132],[121,31],[89,-53],[130,511],[105,186],[-1,323]],[[21891,13139],[-26,189],[-188,-78],[-109,71],[-128,971],[-90,-36],[-61,461]],[[21289,14717],[-184,-77]],[[21105,14640],[47,-461],[109,-807],[-94,-34],[24,-169],[-56,-79],[6,-286],[-187,-73],[94,-564]],[[72348,67548],[-28,90],[160,-1],[24,-118],[222,-31]],[[72726,67488],[75,1492]],[[72801,68980],[-584,114],[-60,69]],[[72157,69163],[-3,-55],[-301,56]],[[71853,69164],[-18,-350],[96,-13],[-20,-390],[252,-38],[-14,-336],[92,-73],[10,-398],[97,-18]],[[53087,34315],[1029,4]],[[54116,34319],[191,-3]],[[54423,35662],[-1110,-15]],[[53313,35647],[54,-56],[-53,-180]],[[53314,35411],[-83,-235],[-5,-283],[42,-244],[-96,-63]],[[53172,34586],[-72,-115],[-13,-156]],[[53897,38376],[814,-1]],[[55273,38372],[5,1333]],[[54902,39707],[-816,4]],[[54086,39711],[27,-108],[-96,-10]],[[54017,39593],[19,-181],[-30,-182],[76,-122],[-121,-125],[33,-161]],[[53994,38822],[18,-263],[-129,-50],[14,-133]],[[25808,25862],[158,-8],[9,333],[59,30],[-54,490],[427,140],[-33,311],[556,177]],[[26930,27335],[-69,657]],[[26861,27992],[-370,-118],[-106,994],[-23,328],[91,29],[-34,329],[-92,-29],[-20,189]],[[25953,29428],[72,-680],[93,30],[141,-1325],[-472,-153]],[[24752,26955],[-6,-229],[29,-260],[-215,-100],[40,-241],[-15,-151],[81,-138],[-117,-249],[26,-99],[-135,-170],[61,-254],[-29,-109],[56,-184],[-42,-315],[-80,62],[-146,-51],[21,-89],[-201,-236]],[[24080,24142],[13,-214],[50,-76]],[[95795,17401],[36,-249],[-19,-265],[74,19],[-9,490],[-82,5]],[[94766,16160],[77,-71],[14,-217],[66,-17],[46,118],[86,-73]],[[95055,15900],[88,-75],[84,299],[484,-477],[44,51]],[[95874,16271],[-2,251],[-55,165],[-80,-73],[-96,173],[118,218],[10,161],[-55,107],[-10,186]],[[95704,17459],[-144,47],[-289,-290],[-83,267],[-107,-25]],[[95081,17458],[-155,17]],[[94926,17475],[18,-491],[79,-12],[-18,-340],[-71,9],[-19,-346],[-105,26],[-44,-161]],[[93554,26344],[29,-96]],[[93583,26248],[-3,-105]],[[93580,26143],[16,-180],[92,17],[31,-357]],[[93719,25623],[102,-44]],[[93821,25579],[-26,158],[92,186],[-82,49],[43,115]],[[93848,26087],[-73,72],[-96,346],[-125,-161]],[[90442,25913],[145,-55]],[[90587,25858],[742,-273]],[[91329,25585],[276,-101]],[[91605,25484],[44,168],[72,14],[28,174],[-53,83],[34,253],[49,57],[-54,159],[38,523]],[[91763,26915],[-53,59],[-84,-306],[-163,125],[-24,-94],[-320,252],[-20,-179],[-283,-1],[-40,-209],[-162,10]],[[90614,26572],[-25,-421],[-69,-3],[57,-147],[-116,56],[-19,-144]],[[72934,27027],[4,515],[-32,109],[93,281],[98,86],[45,-122],[37,117],[170,116]],[[73349,28129],[36,467]],[[53184,26703],[1,-336]],[[53185,26367],[560,6]],[[53179,28033],[5,-1330]],[[62570,68641],[173,-142],[-13,-119],[-149,-125],[-7,-121],[107,-64],[145,179],[94,-126],[-72,-104],[-88,51],[-52,-78],[3,-195],[266,-10],[-154,-309],[105,-272],[-126,-99],[-19,-80],[122,-119],[38,139],[68,-59],[-52,-146],[159,-33],[46,-223],[-158,-134]],[[63006,66452],[-1,-4]],[[63005,66448],[535,-46],[21,504]],[[63561,66906],[43,1428],[-190,19],[10,334]],[[63424,68687],[-822,75]],[[62602,68762],[-32,-121]],[[72614,22109],[757,-192]],[[73371,21917],[129,272],[103,383],[-210,-132],[-74,166],[43,82],[-3,216],[91,169],[120,59],[5,84]],[[73575,23216],[-875,207]],[[62357,18545],[374,-342],[202,-132],[197,-370]],[[63130,17701],[39,-3],[23,656],[188,-20],[12,330],[569,-69],[26,658],[569,-68]],[[64556,19185],[38,894]],[[64594,20079],[-160,-137],[-1299,-463]],[[63135,19479],[-296,-109],[-84,-384],[-108,-256],[-124,-100],[-124,39],[-42,-124]],[[92573,13355],[211,-367],[-85,-193],[78,-268],[100,-201],[-3,-209],[-125,-19],[29,-139],[-63,-64],[37,-148],[-53,-24],[58,-356],[-106,-124],[42,-564],[114,-356],[58,-74],[-44,-599]],[[93262,9431],[110,659],[-19,9],[256,1529],[62,-58],[126,416],[-46,71],[-43,-117],[32,475],[-86,13],[41,285],[78,16],[85,161],[-8,246],[-57,124],[452,1537],[104,303],[149,-130],[6,-117],[204,-180]],[[94708,14673],[271,915],[76,312]],[[94766,16160],[-35,-92],[-211,191],[126,245],[-12,182],[-275,12],[-6,127],[-118,-119],[-109,96]],[[94126,16802],[-87,-237],[-52,40],[-167,-663],[-137,122],[-87,-320],[59,-51],[-180,-632],[-190,166],[-60,-189],[-147,152],[-364,-1285],[18,-16],[-159,-534]],[[62918,73810],[133,-115],[107,83],[41,-153],[-18,-167],[54,45],[124,-297],[-65,76],[-173,-94],[62,-259],[-116,12],[-165,-176],[54,-173],[115,150],[66,-41],[-167,-187],[8,-62]],[[62978,72452],[47,-57]],[[63025,72395],[146,-10],[21,631],[18,-130],[166,-9],[-14,-508],[244,11],[9,-204]],[[63615,72176],[122,100],[8,168],[122,-12],[68,141]],[[63935,72573],[-89,119],[38,126],[-84,281],[19,133],[-124,-40],[3,183],[-50,314]],[[63648,73689],[-272,451],[-49,-62],[-12,198],[-87,-87],[-126,-23]],[[63102,74166],[-1,-24]],[[63101,74142],[41,-144],[-84,-75],[1,209]],[[63059,74132],[-204,-14],[-10,-247],[73,-61]],[[85037,24361],[282,-56],[-23,-144],[397,-77]],[[85693,24084],[130,809]],[[85823,24893],[-97,-15],[-38,637],[40,8],[43,627]],[[85771,26150],[-184,-41]],[[85587,26109],[-284,-130],[-83,-81],[38,200],[-41,63],[-69,-103],[-18,150],[-53,-96],[-268,109]],[[84809,26221],[-16,-108],[-195,65],[-90,-600]],[[84508,25578],[274,-507],[181,-26],[88,-96],[29,-191],[-43,-397]],[[54525,26709],[366,-2],[-2,-600]],[[55666,26862],[5,827],[-379,9],[0,333]],[[73656,36259],[-62,-889]],[[73594,35370],[189,-56]],[[73783,35314],[497,-149]],[[74280,35165],[20,96],[120,51],[74,-76],[171,183],[113,55]],[[74778,35474],[-403,111]],[[74375,35585],[-249,64],[-56,193],[-135,193],[-4,142],[-100,191],[-155,170]],[[73676,36538],[-20,-279]],[[61470,38378],[-16,-675]],[[62215,37640],[190,-15],[13,553]],[[62418,38178],[-99,0],[-132,143],[-75,-42],[-116,100],[-31,301]],[[61965,38680],[-487,33],[-8,-335]],[[50038,65302],[-6,837]],[[50032,66139],[-7,570]],[[50025,66709],[-55,104],[-236,-88],[-114,-91],[-111,278]],[[49509,66912],[-116,76],[-159,-340],[-59,-35]],[[49175,66613],[12,-680],[-95,-3],[5,-279]],[[54905,40703],[-707,4]],[[54198,40707],[-38,-76],[13,-196],[-58,-96],[-26,-216]],[[54089,40123],[28,-135],[-31,-277]],[[90647,33032],[85,187],[127,537],[69,400]],[[90928,34156],[-203,195],[-312,100]],[[90413,34451],[-47,-127],[55,-129],[-44,-254],[30,-133],[-133,-134]],[[90274,33674],[53,-299],[96,-15],[18,-144],[206,-184]],[[40909,16833],[162,26],[207,-300],[114,-343],[11,-527],[-85,-426],[-90,-131],[53,-126]],[[41281,15006],[431,68],[9,-165],[129,21]],[[41850,14930],[-13,253]],[[41837,15183],[-128,2611]],[[41709,17794],[-467,-70],[6,-110],[-93,-70],[-285,-44]],[[40870,17500],[39,-667]],[[64480,57537],[366,-32],[30,-163],[100,91],[114,-52],[123,183],[4,89]],[[65217,57653],[-116,0],[3,121],[139,133],[-86,130],[-191,-29],[-14,68],[139,178]],[[65091,58254],[71,216],[-143,182],[-37,327],[-46,7]],[[64936,58986],[-398,51]],[[64538,59037],[-58,-1500]],[[60841,44120],[677,-42]],[[61518,44078],[29,65],[-43,196],[35,152],[89,95],[27,201]],[[61655,44787],[-1,114],[107,162]],[[61761,45063],[-685,50],[3,111]],[[61079,45224],[-220,14]],[[30103,67536],[726,169],[354,114],[815,183]],[[31998,68002],[246,58],[16,517],[-55,240],[38,158],[98,73],[-25,370],[79,370],[-74,500],[228,142]],[[31226,73011],[-567,-127],[62,-823],[-24,-5],[129,-1664],[-201,-46],[26,-332],[-377,-87],[49,-663],[-351,-86]],[[29972,69178],[131,-1642]],[[84425,42446],[65,-661],[35,-115]],[[84594,41636],[111,46],[80,-41],[60,142],[155,122]],[[85000,41905],[-82,319],[138,229],[231,-7]],[[85287,42446],[-255,915]],[[85032,43361],[-44,-139],[-195,-154]],[[84793,43068],[-541,-98]],[[84252,42970],[137,-310],[36,-214]],[[43124,23459],[106,-1979],[35,-809]],[[43265,20671],[1439,173]],[[44704,20844],[-64,1800]],[[44640,22644],[-61,1657]],[[44579,24301],[-1483,-181]],[[48839,83544],[453,-715]],[[49519,82454],[500,745],[55,370]],[[50074,83569],[-177,257],[-427,323]],[[49470,84149],[-65,-99],[6,-132],[-73,-81],[6,-112],[80,-66],[-146,-100],[-23,105],[-233,-171],[-62,72],[-121,-21]],[[47099,92911],[168,-197],[69,179],[745,57]],[[48049,94787],[-120,414],[-321,374]],[[47608,95575],[-56,-325],[-11,-260],[-60,-84],[-49,-373],[-117,-146],[16,-102],[-111,-111],[7,-150],[-72,-169],[-61,-26],[40,-256],[12,-323],[-47,-339]],[[51786,90628],[120,-113],[272,-692],[107,-40]],[[52285,89783],[-55,303]],[[52230,90086],[-298,572],[-80,272]],[[51852,90930],[-66,-302]],[[52354,89100],[-17,177]],[[52337,89277],[-22,211]],[[52315,89488],[-244,352],[-179,-97],[-1,-138]],[[51891,89605],[-143,-162],[-42,-173],[648,-170]],[[51523,90009],[151,78],[219,-206],[-2,268],[-216,526]],[[51675,90675],[-240,-665]],[[51435,90010],[88,-1]],[[57463,81705],[410,-19]],[[57873,81686],[372,-21]],[[58245,81665],[-28,133],[66,260],[-81,204],[20,143]],[[58222,82405],[-119,237],[-122,486]],[[57981,83128],[24,-303],[-40,-127],[-330,-181],[0,-125],[-119,-84],[36,-118],[-82,-174]],[[57470,82016],[45,-171],[-52,-140]],[[40298,74112],[485,63],[15,-331]],[[41288,73911],[-68,1662]],[[41220,75573],[-983,-126]],[[40237,75447],[61,-1335]],[[83329,49049],[70,-63]],[[83399,48986],[245,301],[210,160]],[[83854,49447],[21,202],[-109,412]],[[83766,50061],[-80,138],[-76,-11],[-70,116]],[[83540,50304],[-81,-113],[-98,12],[-24,-116],[-223,-527]],[[83114,49560],[182,-387],[33,-124]],[[18201,8616],[58,-366],[149,-108],[102,-241],[499,207],[47,-319],[230,-231],[131,1],[85,-360],[163,-212],[46,-320],[102,-15],[94,-191],[175,75]],[[20082,6536],[3,74]],[[20085,6610],[-366,2509]],[[18872,10807],[-31,220],[-123,-58]],[[18718,10969],[-60,-216],[-200,226],[-386,-95]],[[18072,10884],[-80,-223],[-6,-243]],[[79273,43395],[82,-214],[140,-242],[22,-144],[150,-121]],[[79798,42720],[46,257],[-94,316],[114,168],[44,140],[-102,141]],[[79806,43742],[-92,128],[-55,214],[-48,-7]],[[79465,44064],[-226,-576],[34,-93]],[[80739,44333],[306,-193],[18,-394],[47,-183]],[[81948,43902],[15,23]],[[81963,43925],[-27,152],[-138,7],[30,113],[-101,120],[-35,146],[72,216],[-61,267],[-90,235]],[[80506,45389],[54,-208],[185,-62],[12,-374],[-39,-209],[21,-203]],[[54757,30703],[106,0]],[[54863,30703],[3,941]],[[54111,31640],[1,-931]],[[75300,51375],[103,322],[1,323]],[[75404,52020],[7,182],[51,100]],[[75462,52302],[-72,-18],[-173,-312],[-38,89],[-186,-3]],[[74993,52058],[-140,-355],[-67,-99],[-14,-154]],[[84437,52617],[228,-79]],[[84665,52538],[179,874],[-35,169]],[[84518,54033],[-23,-23],[-116,-1030],[-1,-234],[59,-129]],[[27382,62736],[-91,1002],[1343,355],[-138,1612]],[[28496,65705],[-29,337],[-108,59],[-157,-39],[-135,73],[-234,-19],[-60,95],[-81,-21],[-79,115],[-34,257],[57,410],[-75,-24]],[[27561,66948],[-104,5],[-178,156],[-68,-53],[-193,232],[-21,160],[-112,135],[-205,-1089],[-18,-364],[-75,-504]],[[26587,65626],[-129,-861],[-116,140],[-34,112],[-64,-97],[-102,-285],[-1,-119],[-76,-144],[52,-273],[-50,-252],[25,-128],[-81,-25],[39,-306],[-89,-20]],[[25961,63368],[80,-261],[-30,-248],[35,-57],[-418,-121],[42,-105],[12,-227],[78,-154],[47,-380],[206,-148],[12,-123]],[[59271,59027],[95,-2]],[[59366,59025],[94,-4],[4,169],[749,-18]],[[60213,59172],[3,335]],[[60216,59507],[11,722]],[[59287,60533],[-3,-1339],[-13,-167]],[[62174,63463],[132,-10],[-5,-280],[97,-82],[157,-7]],[[62555,63084],[5,349],[64,-5],[35,169]],[[62659,63597],[11,510],[95,-6],[6,341]],[[62771,64442],[15,673],[97,-3],[12,512],[-96,8]],[[62799,65632],[-68,-22],[-159,-397],[-236,-302],[14,-108],[-155,6]],[[62195,64809],[-2,-113],[-128,-52],[-5,-225],[130,-5],[-10,-610],[42,-193],[-48,-148]],[[73020,78222],[22,-342],[131,-21],[40,160],[220,-32],[15,-337]],[[73448,77650],[221,-38],[10,166],[94,-17],[49,831]],[[75611,66781],[170,-525],[3,-361]],[[75784,65895],[464,468]],[[76266,66633],[24,146],[-110,49],[-147,203],[1,169],[-51,109]],[[75852,67044],[-51,-134],[-159,-28],[-31,-101]],[[80185,83370],[682,-173]],[[80867,83197],[132,1541],[61,781]],[[81060,85519],[11,137],[-125,-25],[-65,59]],[[80830,85065],[-13,-163],[-83,6],[-91,-131],[-145,4],[-146,-280],[19,-49]],[[80371,84452],[11,-196],[101,-184],[-7,-241],[-198,-241],[-93,-220]],[[71311,44644],[555,-110]],[[71914,45243],[-223,326]],[[71292,45897],[-49,-842]],[[60168,32763],[-15,-675]],[[60153,32088],[760,-54]],[[60913,32034],[42,1682]],[[58205,36900],[188,-8]],[[74232,51548],[38,-143],[137,-64]],[[74407,51341],[210,-105],[114,125]],[[74993,52058],[-246,437]],[[74747,52495],[-107,12],[-246,-204]],[[74394,52303],[5,-149],[-77,-91],[8,-127],[-95,-246],[-3,-142]],[[62284,72438],[86,-113],[-11,-321],[91,-252],[-1,-406],[50,-113],[-3,-176],[52,-62],[22,-210]],[[62570,70785],[181,-12]],[[62751,70773],[-77,322],[115,68],[21,-301],[89,5],[40,333],[-129,181],[-29,127],[13,265],[182,45],[-3,95],[-157,253],[58,209],[136,-97],[39,-155],[44,137],[-68,135]],[[62978,72452],[-115,106],[-597,51]],[[62266,72609],[18,-171]],[[60948,81887],[156,7],[144,93],[75,-52],[47,205],[197,127]],[[61567,82267],[-51,205],[55,574]],[[61571,83046],[-8,129],[-257,250],[-42,-104],[-120,62],[64,199],[126,18],[-62,103],[60,201],[139,-78],[-57,110],[47,62],[-223,36],[-174,173],[-137,40],[-566,-173]],[[60361,84074],[-32,-1728],[-234,18]],[[60095,82364],[211,-224]],[[60266,80627],[83,-310],[-29,-61],[-25,-1196]],[[60295,79060],[167,-9],[49,-220],[184,-197],[96,136],[94,-13]],[[60885,78757],[3,112],[136,325]],[[61024,79194],[7,213],[76,91],[8,361],[-69,237],[4,172],[-96,7],[2,112],[-288,20],[-82,46],[-61,186]],[[60263,80653],[3,-26]],[[56219,44004],[645,-2]],[[56233,45130],[-3,-279]],[[56230,44851],[-11,-847]],[[62469,49395],[119,14],[200,-226],[64,-179]],[[62852,49004],[15,666]],[[62867,49670],[4,197],[-47,822]],[[62284,50739],[-464,41],[-1,-22]],[[61819,50758],[-56,-1888]],[[53122,42165],[658,2]],[[53780,42167],[0,1007]],[[53119,43170],[3,-1005]],[[49414,36023],[746,34]],[[50159,36726],[-9,669]],[[32596,67063],[2241,461],[185,19]],[[35022,67543],[-20,342],[48,9]],[[35050,67894],[-72,1294]],[[34978,69188],[-1055,685],[-11,166],[-752,-156],[-46,666]],[[31998,68002],[77,-1057],[521,118]],[[86052,56692],[187,-95],[47,101],[143,-153],[176,-268]],[[86605,56277],[71,193],[114,86]],[[86790,56556],[-86,177],[57,136],[-68,155]],[[86693,57024],[-100,-21],[65,254],[-121,439],[-201,317]],[[86336,58013],[-32,-45],[-43,-324],[-50,-129],[-127,-84]],[[86084,57431],[-53,-634],[21,-105]],[[79172,57929],[82,51],[194,-62]],[[79448,57918],[193,512]],[[79641,58430],[122,227],[82,66],[24,201],[61,50],[22,372]],[[79952,59346],[-68,13]],[[79884,59359],[-713,129]],[[79171,59488],[1,-165],[55,-539],[-55,-855]],[[40718,37844],[1102,150]],[[41820,37994],[-57,1333],[-19,174]],[[41744,39501],[-314,-41]],[[41430,39460],[-787,-112]],[[40643,39348],[75,-1504]],[[54310,58992],[251,0],[91,127],[-6,209],[231,-2]],[[54877,59326],[409,-3]],[[55189,60333],[-171,-34],[-102,90],[-101,-17],[-152,64],[-47,87],[-86,-85],[-22,-266],[-204,2]],[[54304,60174],[-95,3]],[[54209,60177],[0,-175],[103,1],[-2,-1011]],[[50918,61978],[942,26]],[[51860,62004],[-13,1729]],[[51847,63733],[-355,-146],[-19,-435],[-85,-39],[-7,-200],[-237,-300],[-44,-129],[15,-167],[-198,-186]],[[50917,62131],[1,-153]],[[51459,65349],[374,9],[-98,-450],[104,-53],[378,8]],[[52217,64863],[-2,168],[189,3],[-1,336]],[[52403,65370],[-97,-1],[-4,667],[-94,-1]],[[79997,37794],[744,-203]],[[80741,37591],[1,0]],[[80742,37591],[-23,248],[-64,78],[14,165],[113,61],[30,349],[-79,185],[-12,627],[-92,169]],[[80629,39473],[-153,-28],[61,-160],[-471,-175],[-344,-467]],[[79212,61761],[25,-339],[21,-618],[101,-321]],[[79359,60483],[422,68],[53,92]],[[79834,60643],[-31,77]],[[79986,61644],[25,296]],[[80011,61940],[-107,46],[-85,198],[-32,-116],[-181,-173]],[[79606,61895],[-394,-134]],[[46812,26399],[1329,97]],[[47699,27819],[77,-174],[-46,-97],[-96,-15],[-155,-165],[-229,-83],[-205,-131],[-25,-326],[-136,-90],[-98,53],[-67,-72],[93,-320]],[[74222,53794],[125,-82],[74,65],[94,-141],[59,43]],[[74574,53679],[74,380],[157,173],[64,272],[151,122]],[[75020,54626],[-124,190],[60,211]],[[74956,55027],[-99,15]],[[74857,55042],[-417,81]],[[74440,55123],[-162,-294],[-49,-308],[-72,-188],[59,-97],[-22,-221],[28,-221]],[[77103,59573],[148,-138],[121,-437]],[[77372,58998],[259,401],[92,518],[37,73]],[[77448,60361],[-39,-58],[-193,161]],[[77216,60464],[-188,156]],[[77028,60620],[-93,-80],[106,-329],[-33,-115],[89,-260],[6,-263]],[[86790,56556],[75,18],[76,-226],[70,83],[38,-202],[58,-93]],[[87107,56136],[453,303],[131,139]],[[87691,56578],[-92,253],[-24,180],[115,105],[-17,280]],[[87673,57396],[-54,27],[40,146],[168,127],[245,59],[120,-210]],[[88192,57545],[66,76],[-41,284],[-103,127],[-219,83],[-109,180],[-219,68]],[[87567,58363],[43,-113],[-105,58],[-72,-708],[-42,-203],[-110,107],[-24,-94],[-277,-174],[-287,-212]],[[46574,71067],[691,60]],[[77050,53240],[103,-169],[-14,210],[-89,-41]],[[76967,45047],[-30,-686],[64,-9]],[[77001,44352],[865,-132]],[[77866,44220],[42,321]],[[77908,44541],[-106,91],[105,222],[14,357],[-75,-71],[-43,186],[-93,113]],[[77710,45439],[-38,-79],[32,-150],[-71,-177],[-185,-100],[-83,284]],[[77365,45217],[-9,-171],[-386,57],[-3,-56]],[[76601,45853],[202,-51],[-27,-736]],[[76776,45066],[191,-19]],[[77365,45217],[-55,249],[12,235],[-104,187],[87,317],[46,338],[-70,125]],[[77281,46668],[-112,64]],[[77169,46732],[-127,22],[-16,-350],[-201,25],[-47,-339],[-169,16],[-8,-253]],[[79703,47930],[297,12],[398,-850]],[[81278,47633],[-45,291],[-76,181]],[[81157,48105],[-120,308],[-149,539],[19,97],[-62,166]],[[80845,49215],[-152,41],[-24,-88],[-84,153],[-379,-79]],[[80206,49242],[-19,-117],[-167,-237],[-105,-100]],[[79915,48788],[99,-13],[-135,-291],[56,-157],[-115,-149],[37,-133],[-111,49],[-43,-164]],[[99412,96842],[1,63]],[[99413,96905],[44,142],[-117,39],[-114,-74],[-51,63],[-88,-158],[-179,46],[52,-176],[74,75],[104,-151],[170,146],[104,-15]],[[62674,60348],[765,-58],[184,-29],[379,-10]],[[64002,60251],[34,1006]],[[64036,61257],[-382,27]],[[62701,61364],[-27,-1016]],[[10369,43710],[1,2]],[[10370,43712],[547,-566],[302,-108],[107,11],[111,141],[187,-1269]],[[11624,41921],[312,1126]],[[12267,43989],[-1,1]],[[12266,43990],[-1129,412],[3,215],[-563,581]],[[10577,45198],[-63,-225],[-89,28],[-34,-87],[-86,102],[-30,-553],[105,-63],[35,-297],[-70,-58],[24,-335]],[[9434,35629],[978,476],[18,-108],[206,105],[-20,109],[195,95]],[[10811,36306],[-78,283]],[[10733,36589],[-103,204],[-32,227],[28,444],[66,39],[-2,328],[-65,225]],[[10625,38056],[-824,-402]],[[9801,37654],[-89,-198],[28,-217],[-107,-189],[27,-256],[70,-177],[-40,-161],[-97,-29],[-154,-215],[-95,-231],[-12,-116],[102,-236]],[[75073,65222],[43,141],[200,212],[169,257],[100,73]],[[75585,65905],[-52,113],[-75,451],[-132,-93]],[[75326,66376],[-107,83],[-69,-50]],[[75150,66409],[-125,25]],[[75025,66434],[-80,-1198],[128,-14]],[[75613,62135],[44,-41],[-5,-189],[76,-71]],[[75728,61834],[173,-69]],[[75901,61765],[106,121],[18,117],[-50,293],[115,389],[-76,209]],[[76014,62894],[-317,64]],[[75697,62958],[-50,-164],[-53,-471],[19,-188]],[[72860,64399],[134,-25],[74,-338],[260,-310],[91,-604]],[[73419,63122],[69,-13]],[[73488,63109],[22,169],[-48,12],[32,447],[-22,85],[179,10]],[[73653,64979],[-380,59],[5,83],[-295,51]],[[72983,65172],[-123,-773]],[[23639,26575],[769,267]],[[24259,28152],[-37,-12],[-85,761]],[[24137,28901],[-194,-162],[-108,-2],[-32,-368],[-115,-86],[16,-176],[75,-154],[-68,-242],[-123,-31]],[[23588,27680],[-76,-38],[127,-1067]],[[64101,35122],[472,-67]],[[65359,36154],[-680,99],[-2,-56],[-436,56]],[[64241,36253],[-3,-109],[-92,9]],[[64146,36153],[-45,-1031]],[[40158,13162],[16,-293],[59,10],[42,-749]],[[40275,12130],[35,-52],[171,44],[15,94],[97,-164],[53,34],[108,-192],[81,129],[93,-13],[112,105],[144,7],[63,-62],[123,45],[20,97],[280,286],[169,-68],[42,218],[81,27]],[[41962,12665],[-21,506],[-91,1759]],[[41281,15006],[-139,-22],[35,-661],[-121,-19],[18,-328],[-572,-92],[18,-329],[-381,-65],[19,-328]],[[85908,53659],[133,102],[163,21],[44,209],[95,-27],[139,81]],[[86482,54045],[147,342],[24,330]],[[86653,54717],[-75,-29],[-129,170],[-59,177],[-222,415]],[[86168,55450],[-115,-172],[-99,-356],[-151,-104]],[[85803,54818],[41,-573],[64,-438],[0,-148]],[[43101,57083],[227,24]],[[43328,57107],[714,81]],[[43036,58797],[65,-1714]],[[72911,68956],[656,-130]],[[73567,68826],[145,892]],[[73712,69718],[66,93],[-19,125],[94,129],[-9,85]],[[73844,70150],[-282,82],[-11,58],[-548,114]],[[73003,70404],[-92,-1448]],[[13793,39495],[403,1055]],[[14196,40550],[-74,156],[-41,227],[69,447],[-80,319],[-109,19],[10,114],[-75,125]],[[13325,41278],[-79,-90],[35,-235]],[[10282,25535],[289,151],[1181,573]],[[11752,26259],[1311,677]],[[13063,26936],[-43,169],[-101,644],[12,6],[-343,2205]],[[9487,28436],[-39,-248],[28,-37],[25,-456],[-32,-83],[-252,-128]],[[9217,27484],[121,-234],[-4,-325],[-63,-260],[164,-451],[0,-398],[132,-184],[137,3],[130,-318]],[[31408,51207],[260,-511],[1295,286],[328,56]],[[33291,51038],[-89,129],[-69,519],[-136,185],[-11,89],[-165,80],[-115,381],[-90,109],[-19,276],[-98,330],[-93,195]],[[32406,53331],[-1149,-267]],[[73845,61483],[62,-14]],[[73907,61469],[274,-59]],[[74221,61918],[73,102],[-108,396],[43,557]],[[74229,62973],[-119,-129],[-151,87],[-191,11],[-14,-69]],[[73754,62873],[-40,-154],[74,-24],[-89,-93],[122,-27],[-24,-409],[63,-257],[-54,-149],[39,-277]],[[26565,30960],[551,166],[33,-331],[249,77],[32,-330],[125,38]],[[27555,30580],[56,17],[45,229],[75,-1],[-20,256],[-77,222],[80,45],[38,-114],[110,32],[34,231],[44,49]],[[27940,31546],[70,204],[-24,261],[-62,-20],[-65,654]],[[27859,32645],[-89,-23]],[[27770,32622],[-44,-31],[-1291,-384]],[[67593,50011],[318,-42],[4,103],[190,-25],[6,125]],[[68111,50172],[-5,170],[37,875]],[[68143,51217],[-219,114],[-115,-182],[-55,110]],[[67754,51259],[-20,74],[73,283],[-59,134],[-148,-72]],[[67600,51678],[-126,-337]],[[67474,51341],[134,-34],[-94,-83],[80,-233],[-62,-228],[122,-130],[3,-128],[-70,72],[55,-194],[69,-65],[-118,-307]],[[70652,51981],[166,-827]],[[70818,51154],[241,-120],[41,-230],[-68,-468]],[[71032,50336],[89,-49]],[[71121,50287],[14,34]],[[71135,50321],[55,17],[15,188],[85,-27],[45,248],[187,227]],[[71522,50974],[26,141],[92,146]],[[71640,51261],[-77,316],[-105,141],[-21,155],[-88,173],[-4,404]],[[71345,52450],[-269,12]],[[71076,52462],[-22,-175],[-120,-255],[-103,67],[-179,-118]],[[58222,82405],[1130,-58],[1,54],[252,-14]],[[59605,82387],[490,-23]],[[60361,84074],[-240,-123],[-400,-308],[-162,-97],[-280,-116],[-227,-6],[-96,53],[-246,-14],[-508,148],[-181,182]],[[58021,83793],[-168,-484],[128,-181]],[[55495,49038],[759,-14]],[[56254,49024],[3,1005]],[[56257,50029],[2,343]],[[56259,50372],[-773,12]],[[24117,23799],[-122,-7],[-87,-201],[-24,-426],[-230,524],[-128,-3],[-247,81],[-93,314],[-68,-46],[-82,245],[-140,195],[-167,44],[-144,133],[-155,-58]],[[22430,24594],[-9,18],[-365,-1005]],[[29223,26692],[352,120]],[[29575,26812],[244,69],[30,312],[101,17],[128,141],[10,75]],[[30088,27426],[-63,703]],[[30025,28129],[-103,1125]],[[29922,29254],[-861,-246]],[[29061,29008],[97,-992],[-368,-108],[30,-318],[-347,-104],[16,-165],[-87,-84],[-653,-197],[77,-762]],[[93834,26961],[208,-345],[-59,-495],[-60,44]],[[93923,26165],[97,-142],[116,117]],[[94136,26140],[-30,119],[64,125],[43,-224]],[[94213,26160],[116,120],[36,139],[162,243],[2,304],[-67,51],[105,137],[190,33],[84,243],[10,187]],[[94851,27617],[-121,249],[9,173]],[[94739,28039],[-129,-8],[28,189],[-62,-8],[15,204],[-77,-23],[-38,129]],[[94476,28522],[-144,-457],[-74,-90],[-157,123],[-38,-132],[74,-211],[-81,-237],[-97,-88],[-125,-469]],[[61877,78479],[119,-7],[56,87]],[[62052,78559],[-5,92]],[[62047,78651],[37,156],[-24,278],[74,58],[125,-42],[-17,-131],[-100,-124],[123,-4],[66,243],[-34,234],[-100,165],[80,68],[193,-36],[140,-91],[94,368]],[[62704,79793],[41,30],[-157,324],[-27,223],[-131,66]],[[62430,80436],[-185,71],[-1,-56],[-222,16]],[[62022,80467],[-105,7]],[[61917,80474],[44,-50],[-52,-197],[30,-543],[-74,-309],[-75,-92],[-18,-141]],[[61772,79142],[19,-61],[-14,-417],[100,-185]],[[65958,20565],[-60,-1235]],[[65898,19330],[762,-114],[49,991]],[[66073,21089],[-126,-129],[85,-188],[-74,-207]],[[57213,54356],[-1,226],[55,1]],[[57267,54583],[-1,934]],[[56294,55513],[-8,-1087]],[[44276,53775],[53,6]],[[45083,53856],[37,4]],[[45120,53860],[-43,1502]],[[45077,55362],[-850,-72]],[[44227,55290],[49,-1515]],[[62521,34098],[348,-30]],[[62869,34068],[804,-80]],[[63673,33988],[55,1185]],[[63728,35173],[-643,80]],[[63085,35253],[-129,-122],[-64,-183],[12,-195],[-95,-195]],[[62809,34558],[-124,-109],[-40,-106],[-139,-128],[15,-117]],[[63082,41297],[-10,-334]],[[63829,40892],[7,333],[191,-16],[18,428]],[[63970,41944],[-92,177],[-88,78],[-42,321],[-73,231],[-127,212]],[[63548,42963],[-419,25],[-10,-337]],[[82380,26525],[384,-19],[186,163],[206,106],[229,-248]],[[83497,27441],[-179,62],[44,343],[-154,49]],[[83208,27895],[-239,76],[-16,-163],[-281,97]],[[82672,27905],[-12,-189],[-75,15],[32,-378],[-143,50]],[[60107,12520],[124,4],[30,216],[90,162],[119,-52],[-5,245],[114,-102],[89,67],[85,-86],[177,-71],[160,-261],[152,-163]],[[61337,15219],[-208,394],[-129,342],[-307,611],[-141,148],[-132,298],[-56,39],[-129,260]],[[14187,21015],[1463,701],[736,333]],[[16386,22049],[-238,1607],[-56,-24],[-142,976],[-19,-9],[-94,636],[901,387],[-327,2284],[-71,536]],[[16340,28442],[-675,-310],[-331,-135]],[[15334,27997],[-452,-198],[-931,-431]],[[13951,27368],[425,-2791],[-722,-349],[358,-2261],[24,12],[151,-964]],[[93894,28609],[109,14],[111,592]],[[94114,29215],[-91,200],[-83,-312],[-50,-295],[-35,41],[84,503],[-93,39],[2,118],[-95,21],[56,-491],[-9,-165],[94,-265]],[[93633,28785],[31,-38],[99,195],[-130,-157]],[[93693,29555],[-29,-368],[39,-17],[41,273],[-51,112]],[[86756,23967],[-324,-1768]],[[86432,22199],[188,110],[311,-199]],[[86931,22110],[406,2136],[-71,607],[267,106]],[[87533,24959],[81,409],[-77,388],[40,126]],[[87577,25882],[55,179],[30,514]],[[87662,26575],[-198,-61],[-8,293],[-344,-195],[-38,206],[-109,55],[-14,-87]],[[86951,26786],[17,-9],[-110,-634],[149,-746],[-160,-61],[0,-184],[99,-138],[-190,-1047]],[[39969,54758],[1600,206]],[[41715,54983],[-82,1923]],[[41633,56906],[-69,-9],[-72,1713]],[[41492,58610],[-52,1215]],[[41440,59825],[-590,-78]],[[40850,59747],[45,-997],[33,-334],[-755,-103],[17,-339],[-376,-57],[8,-167]],[[39822,57750],[147,-2992]],[[55832,83116],[1028,-44]],[[56860,83072],[160,3],[20,1244]],[[57040,84319],[-32,26]],[[57008,84345],[-3,-159],[-96,121],[-168,94]],[[56741,84401],[-69,-110],[-370,186],[-78,-18],[136,-363],[27,-266],[-7,-241],[-116,-88],[-113,97],[-106,329],[-112,-8]],[[55933,83919],[-28,-162],[59,-192],[6,-210],[-138,-239]],[[17977,1540],[1153,530],[1700,740]],[[20830,2810],[-180,1271],[-46,-19],[-89,632],[36,15],[-271,1906],[-12,16]],[[20268,6631],[-183,-21]],[[20082,6536],[75,-190],[-63,-122],[-28,-378],[-130,-92],[-176,96],[-53,-75],[-99,215],[-87,-44],[-32,-115],[-125,1],[-227,143],[-42,-143],[46,-218],[-237,-42],[-90,66],[21,131],[-34,213]],[[17926,3350],[44,-153],[-98,-73],[-16,-173],[70,-92]],[[17926,2859],[148,-237],[-52,-225],[44,-248],[-39,-101],[11,-320],[-72,45],[-51,-164],[62,-69]],[[71390,66013],[75,-204],[52,83],[89,-106],[62,80],[61,244],[53,-27],[99,221]],[[71881,66304],[56,296],[-167,239],[4,116]],[[71774,66955],[-110,-21],[66,103],[-7,257],[-65,34],[66,160],[-70,203],[-86,-49],[-41,234],[-110,257]],[[71417,68133],[-24,-426],[-188,32],[-9,-167],[-64,12]],[[70973,66763],[-7,-141],[302,-184],[103,-214],[19,-211]],[[66260,33257],[189,-30],[-11,-223],[613,-83]],[[67051,32921],[-10,238],[52,435]],[[67093,33594],[-642,78]],[[66451,33672],[-168,29]],[[66283,33701],[-23,-444]],[[95852,97665],[53,4]],[[95905,97669],[-18,172],[209,96]],[[96096,97937],[7,151]],[[96054,98315],[-189,29]],[[95865,98344],[21,-106],[-71,-521],[25,-48]],[[64590,29499],[-560,69]],[[64030,29568],[-48,-1300]],[[62037,20810],[573,-57]],[[62610,20753],[394,-44]],[[63004,20709],[14,322]],[[63018,21031],[46,1305]],[[62108,23113],[-32,-994]],[[97355,96634],[-82,173]],[[97165,96712],[-23,-97],[-131,-113]],[[97011,96502],[184,27],[160,105]],[[24723,10251],[-24,64],[-168,13],[248,447],[14,186],[154,207],[119,75],[76,437],[72,101],[112,372],[26,304],[70,15],[38,165]],[[25460,12637],[-1275,-463],[-741,-278]],[[23444,11896],[41,-325]],[[23667,10115],[221,-1768]],[[23888,8347],[58,-471],[164,-137],[82,214],[65,-22],[78,247]],[[78789,55957],[232,-104],[227,-41]],[[79248,55812],[225,95],[158,170],[36,95]],[[79725,56938],[-42,122]],[[79683,57060],[-58,52],[-88,-77],[-193,78],[-94,-160],[-207,-140],[-199,-287]],[[78844,56526],[90,-436],[-145,-133]],[[46001,15939],[91,70],[20,-114],[187,-36],[119,175],[-28,173],[36,184]],[[46426,16391],[35,243],[75,183],[-23,168],[-63,70]],[[46450,17055],[-1247,-117]],[[45203,16938],[34,-987],[760,77],[4,-89]],[[53874,43176],[761,-4]],[[54635,43172],[117,59],[11,248],[140,271],[-47,202],[24,100],[102,17],[64,109]],[[55046,44178],[-53,0]],[[54993,44178],[-748,4]],[[54245,44182],[-372,0]],[[45985,42493],[931,74]],[[46916,42567],[-28,1343]],[[45979,43834],[-34,-4]],[[56288,80787],[369,-13],[-16,-137]],[[56641,80637],[897,-24]],[[57538,80613],[-86,385],[72,320],[-68,229],[7,158]],[[57470,82016],[-116,-102],[-110,88],[-78,-13],[-30,201],[-202,84],[-87,-57]],[[56847,82217],[-288,11],[-271,-1441]],[[68197,62407],[675,-93]],[[68872,62314],[681,-91]],[[69576,62221],[31,703],[-105,181],[35,53]],[[69537,63158],[-65,40],[-92,-162],[-148,10]],[[69232,63046],[-181,-97],[-315,278],[-40,112],[-130,72],[-216,-248],[-69,-234],[-165,-127],[-99,71]],[[68017,62873],[-107,-102],[-94,-270]],[[67816,62501],[-8,-46],[389,-48]],[[57260,57638],[368,-14]],[[57628,57624],[17,615],[83,123]],[[57728,58362],[-94,0],[2,280],[-32,1]],[[56441,59193],[-21,-230]],[[56420,58963],[-108,-1299]],[[63909,37517],[376,-47]],[[64285,37470],[757,-93]],[[64338,39149],[-13,-328],[-359,39]],[[71318,39982],[24,332]],[[71342,40314],[51,719]],[[71393,41033],[-222,41]],[[71171,41074],[-469,93]],[[70702,41167],[-6,-110]],[[70696,41057],[-40,-608]],[[70634,26523],[-70,-990],[-14,-333]],[[70929,30508],[-44,-670],[-396,77]],[[60370,53715],[38,1594]],[[60744,53188],[380,-14]],[[61444,55274],[-753,28]],[[63315,52808],[669,-62]],[[63984,52746],[6,170]],[[63990,52916],[22,215],[19,884],[-125,3]],[[63906,54018],[-575,49]],[[63697,75710],[888,-111],[24,-55]],[[64609,75544],[52,1407]],[[64661,76951],[-31,3]],[[63933,77029],[-32,-1004],[-194,19]],[[63707,76044],[-10,-334]],[[37887,64693],[53,-988],[800,125],[17,-332],[188,26],[17,-333],[376,56]],[[39338,63247],[-32,668],[322,48]],[[39628,63963],[-65,1326],[-27,681]],[[39536,65970],[-377,-58],[-18,337],[-1135,-195],[17,-336],[-192,-34]],[[37831,65684],[56,-991]],[[86116,55557],[52,-107]],[[86653,54717],[179,67],[164,154]],[[86996,54938],[98,478],[136,148],[-74,22],[-70,161],[21,389]],[[86605,56277],[-94,-248],[6,-81],[-208,-124],[-193,-267]],[[44703,16885],[500,53]],[[46450,17055],[39,332],[118,348],[-36,165],[84,303],[73,123],[133,-75],[-35,165]],[[46826,18416],[137,166],[-30,75],[60,157],[-55,103],[-26,294]],[[46912,19211],[-148,57],[-55,110],[-72,-76],[-71,44],[-157,-53],[-39,168],[-136,239]],[[46234,19700],[-35,-5],[11,-330],[-381,-36],[31,-986],[-634,-66],[12,-331],[-572,-60]],[[44666,17886],[37,-1001]],[[75404,36620],[813,-175]],[[76217,36445],[79,828]],[[76296,37273],[-164,43],[30,274]],[[76162,37590],[-477,108]],[[75514,37735],[-97,-983]],[[53832,60174],[377,3]],[[54304,60174],[0,504],[95,0],[1,671]],[[54400,61349],[-194,1],[-2,338],[-92,2],[0,335],[-188,0]],[[53924,62025],[-189,0],[0,-676],[-187,0],[1,-336]],[[82561,62817],[420,-785],[88,-9],[24,-182],[84,16],[40,-92]],[[83217,61765],[46,14]],[[83263,61779],[61,11],[117,198]],[[83441,61988],[-25,185],[134,304],[36,393],[60,155],[264,337],[102,34],[-7,108]],[[84005,63504],[-56,-46],[-242,230],[-260,-50],[-94,42],[-110,-85],[-99,27],[-83,-159],[-74,12]],[[82987,63475],[-126,35],[-73,-215]],[[82788,63295],[129,-200],[-214,-171]],[[82703,62924],[-142,-107]],[[79335,63518],[2,-172],[138,15],[90,-107],[183,114],[196,198],[122,-12]],[[80066,63554],[-111,806]],[[79955,64360],[-123,277]],[[79832,64637],[-347,-108],[-71,-84],[-71,-306],[-199,105]],[[79144,64244],[107,-480],[84,-246]],[[69945,51139],[83,-76],[17,-251],[135,-56],[-40,-139],[-7,-282],[48,-25]],[[70181,50310],[462,573],[175,271]],[[70652,51981],[-132,49],[17,91],[-110,5],[-188,-186],[-32,133],[-71,-25],[-23,141]],[[70113,52189],[-94,-196],[-7,-165]],[[70012,51828],[30,21],[-125,-513],[28,-197]],[[67754,51259],[219,507],[109,115],[53,341]],[[68135,52222],[-311,660]],[[67824,52882],[-115,-85],[-40,-152],[-71,172]],[[67598,52817],[-137,-247]],[[67461,52570],[-61,-330],[51,-183],[106,-153],[43,-226]],[[72918,54404],[164,-257],[8,-153],[76,23],[112,-225]],[[73278,53792],[123,129],[161,-98],[115,279],[80,97]],[[73757,54199],[11,243],[-68,54],[-75,227],[-145,560]],[[73468,55285],[-333,20]],[[73135,55305],[-44,-24],[-51,-245],[8,-260],[-130,-372]],[[72164,48729],[490,-10]],[[72663,49520],[-27,225],[-83,153]],[[72553,49898],[-236,-155],[-341,-159]],[[71976,49584],[4,-452],[-113,-62]],[[71867,49070],[30,-79],[209,-64],[58,-198]],[[87567,58363],[-143,153]],[[86450,58109],[-114,-96]],[[74072,58885],[87,-119],[52,-190],[121,-259],[51,21],[2,-192],[52,-69],[15,-238],[89,48],[27,-89]],[[74568,57798],[195,315]],[[74763,58113],[38,176],[-24,180],[84,185],[-83,212]],[[74778,58866],[-119,-13],[-73,-118],[-121,-14],[-64,111],[-53,-111],[-168,114],[0,106]],[[74180,58941],[-108,-56]],[[51155,74320],[1,-31],[724,-305]],[[51880,73984],[265,825],[83,-83]],[[52228,74726],[324,1000]],[[52153,76127],[-192,-596],[-450,442]],[[51511,75973],[-90,-167],[84,-132],[-187,-187],[43,-75],[-146,-154],[112,-162],[-78,-137],[-117,-41],[31,-264],[-46,-161],[38,-173]],[[85380,48290],[61,-73],[-92,-218],[13,-260]],[[85362,47739],[133,48],[98,-110],[86,38],[110,274],[305,158]],[[86094,48147],[128,142]],[[86222,48289],[-75,454]],[[86147,48743],[-38,131],[-197,-70],[-84,-207]],[[85828,48597],[-23,-268],[23,-136],[-94,-160],[-50,96],[-121,32],[32,75],[-110,51]],[[85485,48287],[-105,3]],[[78095,38418],[125,-30],[-18,-280],[243,-83]],[[78445,38025],[278,-73],[28,318],[94,-23],[13,165]],[[78858,38412],[13,168],[-94,23],[25,338],[-13,173]],[[78248,39228],[-37,-504],[-94,19],[-22,-325]],[[51054,11421],[1127,34]],[[52181,11455],[34,524],[-19,167],[44,305],[-39,325]],[[52201,12776],[-1128,-36]],[[50498,12717],[9,-661],[-39,-2],[10,-658]],[[64028,22562],[583,-62]],[[64611,22500],[190,-27],[10,331],[382,-51]],[[65193,22753],[26,663],[65,-8],[10,334]],[[64782,24149],[-376,46]],[[60602,23897],[192,-10],[-8,-328]],[[60786,23559],[952,-82]],[[61794,25138],[-1133,103]],[[60661,25241],[-28,-1013],[-31,-331]],[[61797,83402],[270,-442],[155,-392],[289,-65]],[[62511,82503],[117,186],[83,263],[-19,196],[68,61],[263,35],[225,178]],[[63248,83422],[-4,216],[46,60]],[[63290,83698],[-152,142],[-29,-62],[-169,294],[1,219],[72,153]],[[63013,84444],[-178,193],[4,-135],[-65,28],[77,-227],[-74,-126],[-194,181],[-74,-258],[-66,34],[-54,-383],[-182,11],[39,-112],[3,-281],[-222,-36],[-219,177],[-11,-108]],[[94527,97599],[44,58]],[[94571,97657],[123,180]],[[94694,97837],[-18,192]],[[94676,98029],[-3,422]],[[94673,98451],[-154,-66],[-59,38],[9,-174],[71,-100],[-75,-43],[55,-260],[7,-247]],[[12672,10199],[121,68],[116,-51]],[[12909,10216],[150,26],[248,529],[6,212],[51,305],[-25,426]],[[13339,11714],[-40,141],[0,324]],[[13299,12179],[-251,-98]],[[13048,12081],[-133,-187],[18,-101],[-487,-250]],[[12446,11543],[154,-956],[72,-388]],[[16386,22049],[46,-324]],[[16432,21725],[184,82],[146,-969],[181,81]],[[19175,21553],[-145,1002],[-210,1578],[-223,1623],[18,8],[-324,2391],[31,13],[-147,1043]],[[18175,29211],[-790,-310],[-989,-434]],[[16396,28467],[-56,-25]],[[50019,80229],[171,-613],[259,-453]],[[51410,79780],[82,66],[212,1071]],[[51704,80917],[-341,201]],[[51363,81118],[-66,-65]],[[51297,81053],[-268,-259],[-65,38],[-93,-105],[-338,261],[-140,-165],[-34,-284],[-164,-319],[-66,68],[-110,-59]],[[30914,37394],[760,190],[791,183]],[[32465,37767],[-100,1292]],[[32365,39059],[-123,-29],[-55,-97],[28,-391],[-64,-14],[21,-278],[-313,-76],[-21,257],[-163,156],[-43,-53],[3,-291],[-90,-19],[-167,77],[-121,-62],[-27,73],[-178,27],[-159,-219]],[[30893,38120],[-39,-25]],[[44683,85187],[96,-42],[9,-279],[64,-32],[34,-310],[21,-780]],[[44907,83744],[1123,93]],[[45980,85887],[-1071,-77]],[[44909,85810],[-197,-359],[-29,-264]],[[28734,35384],[142,55],[92,263],[-57,264],[93,65],[-95,250]],[[28173,37420],[-18,-206],[-118,-76]],[[28037,37138],[-44,-58],[-43,-354],[64,21],[-80,-272],[14,-450]],[[27948,36025],[18,-223],[183,-13],[103,160],[118,-77],[35,-103],[157,91],[115,-212],[57,-264]],[[86997,51100],[52,216]],[[87049,51316],[-98,-41],[-24,-130],[70,-45]],[[38919,44075],[0,0]],[[38711,44389],[2,-32]],[[38713,44357],[1,-8]],[[38714,44349],[141,-116],[138,192],[70,-116],[-91,-57],[68,-101],[-22,-172]],[[39018,43979],[690,117],[1277,183]],[[40953,44946],[-12,-2]],[[39357,44708],[-650,-106]],[[38707,44602],[4,-213]],[[72649,63132],[66,-190],[-7,-114],[57,-244],[-18,-277],[19,-172],[98,-439]],[[72864,61696],[175,-41]],[[73039,61655],[33,501],[111,-23],[21,304],[103,8]],[[73307,62445],[-30,190],[210,-41],[26,373]],[[73513,62967],[-25,142]],[[73419,63122],[-749,142]],[[72670,63264],[-21,-132]],[[68212,43245],[548,-90]],[[68760,43155],[16,329],[137,-20]],[[68913,43464],[49,1007]],[[68962,44471],[-311,41]],[[68651,44512],[-307,46]],[[68344,44558],[-31,-169],[7,-542],[-27,-154],[47,-119],[-146,-245],[18,-84]],[[71047,47481],[77,-40],[63,-269]],[[71373,47106],[20,302],[204,187],[19,277]],[[71616,47872],[-378,77],[-82,184]],[[71156,48133],[-67,-42],[-42,-610]],[[71052,53975],[-62,504]],[[70990,54479],[-167,193],[13,71],[-225,416]],[[70611,55159],[2,-121],[-323,-33],[-60,-194]],[[70230,54811],[-135,-430]],[[70095,54381],[68,-581],[-19,-128],[216,-76],[61,136],[113,-87]],[[58307,74015],[265,-11]],[[58572,74004],[80,1]],[[59104,74319],[98,349],[-35,182],[71,138],[-218,11],[3,265],[-79,66],[-127,-37],[-12,-128]],[[58805,75165],[-98,-209],[-65,-3],[-192,-439],[58,-103],[-35,-191],[-124,-84],[-42,-121]],[[55801,27018],[135,106],[46,130],[225,104],[98,123],[81,225],[62,32]],[[56448,27738],[11,597]],[[61291,48894],[-14,-1373]],[[61277,47521],[-2,-343],[373,-10]],[[61648,47168],[252,-11]],[[61900,47157],[9,567]],[[61678,48837],[-132,12],[-83,135],[-161,-93]],[[61302,48891],[-11,3]],[[64936,58986],[38,141],[132,212]],[[65106,59339],[-54,78],[-70,-71],[-87,67],[7,127],[109,143],[-132,66],[-51,180],[-101,83],[-60,-62],[-76,88],[-3,186],[63,129],[111,-66],[14,118],[-177,224],[93,172]],[[64692,60801],[-14,96],[-131,-164],[-88,56],[-14,128],[60,167],[-48,246]],[[64457,61330],[-7,17]],[[64450,61347],[-61,-283],[-92,173]],[[64297,61237],[-261,20]],[[64002,60251],[-44,-1142]],[[63958,59109],[580,-72]],[[60634,57460],[52,-4]],[[60686,57456],[785,-62]],[[61471,57394],[389,-24]],[[61860,57370],[10,626],[-196,8],[9,337],[-221,5]],[[60644,58376],[-10,-916]],[[71748,63873],[96,-33],[356,-626],[136,-490],[56,-52],[41,-306],[71,-124]],[[72504,62242],[145,890]],[[72670,63264],[40,242]],[[72710,63506],[-103,178],[5,169],[-84,299],[-221,458],[-121,79],[11,171]],[[72197,64860],[-472,84]],[[71725,64944],[-60,-869],[83,-202]],[[56667,63693],[142,-113],[35,54],[210,-86],[1,-340],[-41,-33],[195,-138]],[[57209,63037],[0,170],[122,2],[0,106],[660,1]],[[57991,63316],[5,1058]],[[57605,64696],[0,-55],[-159,-42],[-537,-2],[0,-111],[-247,-3]],[[56662,64483],[5,-790]],[[9217,27484],[-172,-85],[53,-308],[-462,-244]],[[8636,26847],[34,-537],[-19,-231],[22,-198],[-128,-364],[98,-204],[86,-334],[25,-219]],[[63817,33972],[702,-62]],[[64101,35122],[-373,51]],[[63673,33988],[144,-16]],[[69780,49025],[633,-108],[-6,-110]],[[70407,48807],[91,-16]],[[70498,48791],[30,279],[-58,6],[61,217],[-34,52],[-8,301],[-64,95]],[[70425,49741],[-56,-58],[-11,136],[80,24],[-124,210],[-99,-42]],[[70215,50011],[-18,-329],[-189,30],[-11,-226],[-185,44]],[[69812,49530],[-32,-505]],[[70876,48741],[65,-13]],[[70941,48728],[51,48],[270,-54],[92,193],[-57,80],[20,167]],[[71317,49162],[-62,57],[-8,145],[-88,247]],[[71159,49611],[-100,-3],[-14,-287],[-67,-45],[-81,-200],[-21,-335]],[[80283,71229],[48,-8],[190,260],[32,136],[134,12],[80,-81],[31,86],[105,-6],[86,349],[86,9],[58,180],[60,-34],[46,146],[123,74]],[[81362,72352],[31,87],[103,-6],[21,276],[-50,276],[-44,-36]],[[81423,72949],[-2,-116],[-150,-161],[-100,-9],[-215,129],[-126,-194]],[[80830,72598],[-298,-176],[-263,-354],[2,-369],[-89,-10],[-68,-126]],[[80114,71563],[104,-155]],[[25266,28829],[-95,868]],[[25058,29695],[-65,-32],[-153,82],[-154,-304],[-134,-98],[-56,-119],[-142,-54],[-102,-167],[-115,-102]],[[88046,44235],[7,-522],[93,-153],[70,-213]],[[88216,43347],[61,375],[591,-193]],[[88868,43529],[104,344],[-79,288],[-396,194]],[[88497,44355],[-94,-44],[-80,157],[-89,-39],[-42,135],[-97,102]],[[88095,44666],[-100,-61],[51,-370]],[[65271,16772],[-29,434],[54,248],[91,-299],[196,-391],[145,-162],[-6,88],[-129,242],[-51,210],[149,-298],[196,-58]],[[65887,16786],[26,558],[81,-11],[15,326],[-187,30],[46,982]],[[65868,18671],[-854,118]],[[65014,18789],[-72,-1640],[192,-26],[-16,-329],[153,-22]],[[21781,43694],[1587,545]],[[23368,44239],[-45,395]],[[23323,44634],[-177,1608]],[[23146,46242],[-233,2061]],[[22913,48303],[-250,2291]],[[22597,51190],[-1218,-417],[4,-37],[-1671,-595],[-5,43],[-267,-99]],[[19440,50085],[14,-72],[550,-4488],[1500,540],[277,-2371]],[[88791,39143],[152,154]],[[88943,39297],[257,259],[40,381]],[[89240,39937],[-27,71],[13,285],[-37,55],[34,174]],[[89223,40522],[-191,11],[-10,-74],[-139,57],[-27,132],[-97,-203],[-206,-106],[-116,-189],[-123,-84]],[[88314,40066],[-46,-264],[74,-42],[164,-468],[303,285],[-18,-434]],[[72269,46488],[1,-72]],[[72270,46416],[63,37],[151,-268],[75,-9],[118,-163]],[[72677,46013],[91,264],[-45,231]],[[72723,46508],[-455,83],[1,-103]],[[89883,34269],[47,-448]],[[89930,33821],[38,-345]],[[89968,33476],[78,308]],[[90046,33784],[-50,256]],[[89996,34040],[-68,250]],[[89928,34290],[-45,-21]],[[86675,18578],[29,152],[119,-45],[96,501],[467,2349],[-29,16],[49,256]],[[87406,21807],[-475,303]],[[86432,22199],[-481,-289]],[[85951,21910],[-722,-456]],[[85229,21454],[46,-131],[45,-344],[309,-859],[356,-805],[205,-294],[117,-254],[98,-38],[107,-170],[163,19]],[[62726,75140],[437,-8],[323,105],[-15,160],[216,-24]],[[63687,75373],[10,337]],[[63707,76044],[-777,76]],[[62930,76120],[-2,-78],[-147,18],[-130,-154],[-39,-278]],[[62612,75628],[105,-70],[-197,-18],[28,-281],[93,-76],[22,160],[72,-63],[-9,-140]],[[53906,66727],[383,0]],[[55415,66715],[5,847]],[[55420,67562],[-135,-90],[-40,214],[-102,98]],[[55143,67784],[-178,56],[-250,-51],[-29,-198],[-363,228]],[[54323,67819],[-143,-4],[-69,-160],[-108,-124],[-1,-682],[-96,-122]],[[61655,44787],[752,-61],[-11,-339]],[[62396,44387],[39,13],[538,-46]],[[62973,44354],[-39,194]],[[62998,45579],[-42,252],[3,238]],[[62959,46069],[-544,38]],[[62415,46107],[-177,-173],[-114,-338],[-81,-20],[-56,-198]],[[61987,45378],[-110,-113],[-116,-202]],[[61504,39721],[692,-56]],[[62196,39665],[1,10]],[[62197,39675],[16,136],[-21,425],[-57,70],[-146,349],[-18,484]],[[61971,41139],[-284,-195],[-23,-73],[-196,-139]],[[39487,10102],[1217,211]],[[40704,10313],[316,51],[-17,326],[190,31],[-17,328],[854,131]],[[42030,11180],[-68,1485]],[[40275,12130],[-46,-94],[-402,-102],[-48,105],[-52,-68],[-118,3],[-163,169],[-142,32]],[[39304,12175],[48,-787],[57,11],[78,-1297]],[[77223,62707],[204,-555]],[[77427,62152],[16,-41]],[[77443,62111],[7,-19]],[[77450,62092],[78,-211],[489,-692]],[[78430,62392],[-676,1239]],[[77754,63631],[-28,-218],[-55,-73]],[[77671,63340],[-52,-186],[-78,-76],[-77,-344],[-46,-73],[-195,46]],[[41174,28416],[2156,283],[-21,218],[-73,100],[-125,301]],[[43111,29318],[-40,113],[-109,-83],[-56,209],[-111,36],[-20,494]],[[41105,29853],[5,-98]],[[41110,29755],[64,-1339]],[[64420,61426],[30,-79]],[[64457,61330],[20,42],[468,-18],[1,-67],[131,-29],[2,76],[127,36]],[[65206,61370],[36,1466]],[[65242,62836],[-143,17]],[[65099,62853],[-1044,113]],[[64055,62966],[25,-181],[150,43],[51,-359],[59,-68],[71,60],[58,-81],[-98,-190],[64,-161],[-148,-119],[-13,-128],[96,-44],[50,-312]],[[88087,35374],[230,-496],[70,-90],[90,-341]],[[88477,34447],[129,129],[171,23]],[[88777,34599],[85,503],[-62,342],[-41,-31],[125,311]],[[88884,35724],[-94,67],[26,115],[-106,70],[37,109],[-138,74]],[[88609,36159],[-71,-202],[-149,-7],[-43,-142],[-38,-324],[-64,-77],[-99,54],[-58,-87]],[[81612,52504],[47,38],[12,-197],[425,39],[143,-198],[39,-123]],[[82278,52063],[-9,1233]],[[81685,53468],[-51,-432],[-87,-240],[-21,-209],[86,-83]],[[87721,49267],[91,7],[89,-113]],[[87901,49161],[42,114],[-18,335],[-30,-39],[-107,135]],[[87788,49706],[-105,-87],[-24,-281]],[[36054,7749],[1532,328]],[[37586,8077],[-22,327],[-38,-8],[-88,1293],[4,225],[-84,-46],[-18,133],[-64,-13],[-22,327],[60,12],[-23,335],[-160,-34],[-23,326],[-51,-11],[-91,1309],[-15,-3],[-47,673]],[[35544,13039],[-60,49],[-245,-260],[-72,26],[-144,-72],[-76,-133],[-64,1],[-8,-142],[-143,-234]],[[34732,12274],[60,-707],[386,100],[47,-259],[252,113],[69,-913],[33,8],[64,-847],[89,105],[41,-546],[40,9],[48,-652],[87,20],[48,-642],[34,8],[24,-322]],[[78315,72787],[198,-318],[55,-149],[67,-10]],[[78635,72310],[175,-198]],[[78810,72112],[108,-66]],[[78918,72046],[96,-13]],[[79014,72033],[41,487],[-162,39],[35,486]],[[78928,73045],[12,145],[-195,48]],[[29742,31172],[180,-1918]],[[30025,28129],[362,107],[-27,299],[371,100]],[[30731,28635],[-52,410],[-117,1318],[-57,-15],[-23,262],[53,15],[-89,994],[75,20],[-55,651],[535,146],[243,85]],[[31244,32521],[-80,916],[6,91],[-143,1633]],[[31027,35161],[-1610,-438]],[[29417,34723],[146,-1604]],[[29563,33119],[179,-1947]],[[68231,70169],[36,-169],[191,-6],[25,-123],[103,-69],[58,-146],[168,-181]],[[68812,69475],[35,521],[222,-35],[-7,43]],[[69062,70004],[-58,120],[43,105],[-78,96],[-94,260],[47,200],[-96,198],[115,22],[-33,157],[63,-20],[-16,318],[149,152],[-92,39],[-35,228]],[[68977,71879],[-77,-18]],[[68900,71861],[-93,-218],[68,-120],[-132,-25],[-222,184],[-52,-95],[37,-96],[-6,-206],[-41,55],[-73,-325],[61,-23],[-159,-279],[-109,-262],[57,-36],[-5,-246]],[[57612,65912],[25,629],[190,4],[4,673]],[[57831,67218],[-2,1006],[-228,-3]],[[57598,68221],[-26,-214],[-151,-300],[-34,-202],[22,-114],[-58,-253],[9,-352],[-47,-251],[-251,4]],[[57062,66539],[-26,-628],[576,1]],[[81603,45469],[204,97],[137,325],[294,88]],[[82238,45979],[-111,559],[-25,250],[-73,21],[-39,153]],[[81990,46962],[-91,-44],[-251,-12],[-169,-127]],[[85808,47258],[127,-386],[-4,-130],[109,32]],[[86040,46774],[58,18],[121,336],[146,205],[211,34],[295,442],[-8,149]],[[86863,47958],[-58,-109],[-94,108],[24,-171],[-216,105],[-265,-149]],[[86254,47742],[9,-143],[-129,64],[-5,-99],[-97,24],[3,-112],[-105,35],[-37,-149],[-85,-104]],[[61454,17032],[79,-64],[-1,145],[-78,-81]],[[60620,17981],[61,-11],[255,-251],[107,-71],[78,-133],[69,78],[39,-111],[149,-75],[94,-207],[79,31],[124,-111],[139,251],[-65,254],[-122,266],[56,211],[-85,147],[-53,257],[39,42]],[[61584,18548],[54,1639]],[[60682,20261],[-62,-2280]],[[61397,29518],[549,-49]],[[61946,29469],[755,-75],[190,-41]],[[62891,29353],[12,346]],[[62903,29699],[13,334]],[[62366,30592],[-853,79]],[[61513,30671],[-46,-103],[18,-193]],[[61485,30375],[-47,-182],[16,-127],[-63,-124],[6,-424]],[[50911,36749],[-3,671]],[[50908,37420],[-8,832]],[[55046,44178],[172,346],[110,106],[173,59],[73,-125]],[[55574,44564],[111,51],[-20,124],[107,119]],[[55772,44858],[-82,120],[34,117],[76,-16],[-38,141],[-120,-71],[-23,219],[-97,93],[-42,194]],[[55480,45655],[-75,-20],[-29,-122],[-377,4]],[[54999,45517],[-6,-1339]],[[14743,41976],[414,179],[186,-1314],[54,-323],[-185,-76],[48,-345],[208,-425],[291,116]],[[15759,39788],[1462,611]],[[17221,40399],[-583,54],[-42,303],[610,2015]],[[15683,44436],[-940,-2460]],[[67952,57227],[283,53],[178,-180],[216,-30]],[[68629,57070],[14,98],[130,7]],[[68773,57175],[-1,333],[-61,284]],[[68711,57792],[-38,-71],[-134,7],[-66,-73],[-181,-58],[-61,57],[-204,-11]],[[52337,89277],[-22,211]],[[52647,87605],[109,-49],[18,72],[288,14],[56,-102],[-10,213],[157,-3]],[[53265,87750],[1,124],[-110,962]],[[53156,88836],[-126,277],[-368,358],[-172,220],[-260,395]],[[52285,89783],[68,-187],[108,-5],[266,-388],[144,-112],[145,-54],[-4,-309],[-250,247],[-77,129],[-124,17],[-49,-353],[-110,-17]],[[52402,88751],[-42,-139],[-47,64],[-149,-296]],[[52164,88380],[-7,-161],[-68,-144],[150,-182],[253,-128],[155,-160]],[[72710,63506],[150,893]],[[72983,65172],[70,439]],[[73053,65611],[-172,61],[-58,71]],[[72823,65743],[-3,-56],[-380,24]],[[72440,65711],[-2,-80],[-134,-404],[-82,-26],[-25,-341]],[[36038,17320],[60,67]],[[36098,17387],[96,466],[60,68],[-12,164],[111,246],[16,226],[60,69],[-30,263],[-75,231]],[[36324,19120],[-247,-53],[-16,219],[-189,-41],[-7,110],[-135,81],[-7,109],[-252,-55],[-33,438],[-33,-7],[-74,1004],[-189,-42],[-8,110],[-188,-42],[-9,110],[-502,-129]],[[34435,20932],[-81,-19],[16,-223],[-94,-22],[-54,-125],[55,-321],[-101,82]],[[34176,20304],[-73,-294],[87,-1045],[-31,-8],[48,-655]],[[50127,40072],[-2,685]],[[50125,40757],[-10,656]],[[47159,32964],[99,155],[262,155],[171,26],[131,139],[162,27]],[[47984,33466],[-23,1140],[20,1],[-28,1340]],[[47953,35947],[-40,-3]],[[47134,35889],[34,-1335],[-25,-3],[34,-1335],[-18,-252]],[[34146,61644],[53,349],[538,107],[73,-125],[455,98],[24,133]],[[35175,63854],[-153,-97],[-453,-376],[-192,-225],[-570,-113]],[[33807,63043],[97,-1450],[242,51]],[[36739,58593],[662,117],[405,312],[137,231],[38,-60],[453,28],[669,120]],[[39103,59341],[615,84],[82,-67],[378,1521],[154,24],[-6,125]],[[40326,61028],[-27,572],[-391,-61],[4,-84],[-498,400]],[[39414,61855],[14,-283],[-1359,-215],[-710,-119],[-37,670]],[[36569,61778],[130,-2324],[40,-861]],[[81105,54815],[-7,-77]],[[81900,55486],[-303,26],[11,114],[-203,60],[-102,122]],[[81303,55808],[-153,-307],[-51,77]],[[85511,56023],[421,-141]],[[85932,55882],[61,613],[59,197]],[[86084,57431],[-88,154],[-78,-81],[-208,-5],[-51,85],[-156,-6]],[[85503,57578],[-145,-84],[-146,-204]],[[85212,57290],[18,-114],[224,-213],[-31,-254],[88,-686]],[[84349,59341],[174,-116],[468,-152],[67,-41]],[[85058,59032],[96,136],[136,285],[147,203],[59,229],[109,155]],[[85605,60040],[17,171],[157,118],[-113,296]],[[85666,60625],[-126,166],[-200,27],[-431,-223],[-276,119],[-87,-63]],[[84546,60651],[34,-71],[-52,-232],[26,-66],[22,-442],[-104,-152],[-123,-347]],[[30359,14280],[177,51],[31,-327],[379,105],[192,13],[26,-288],[116,34],[-16,312],[113,34],[116,126],[64,246],[144,159],[-14,173],[140,118]],[[31827,15036],[31,207],[85,26],[-12,122],[126,266],[142,-18],[64,93],[94,-119]],[[32184,17456],[-12,136]],[[32172,17592],[-190,-79],[-565,-155]],[[31417,17358],[-419,-115]],[[73818,51781],[128,24],[27,-264]],[[73973,51541],[144,61],[115,-54]],[[74394,52303],[-124,181],[8,145],[-62,26],[-36,348]],[[74180,53003],[-416,-600]],[[73764,52403],[54,-622]],[[78574,62645],[138,166],[26,102],[162,79],[278,303]],[[79178,63295],[157,223]],[[79144,64244],[-67,50]],[[79077,64294],[-6,-116],[-277,89],[-78,-114],[-109,189],[-67,-343]],[[78540,63999],[93,-196],[26,-282],[-65,-240],[-87,-105],[-68,-236],[135,-295]],[[69372,50895],[101,-42],[86,-192],[79,-76]],[[69638,50585],[128,311],[60,67],[113,-87],[6,263]],[[70012,51828],[-333,-238]],[[69679,51590],[0,-209],[-74,-178],[-100,29],[-48,-272],[-92,64],[7,-129]],[[72760,52280],[50,-4],[-25,-512]],[[72785,51764],[246,1],[83,-81]],[[73114,51684],[-1,316],[27,151],[237,211],[45,225],[-9,241]],[[73413,52828],[-279,532]],[[73134,53360],[-89,72],[-175,-290]],[[72870,53142],[-41,-267],[-200,-168]],[[72629,52707],[40,-295],[91,-132]],[[73267,50434],[47,-561]],[[73314,49873],[326,179],[100,340]],[[73740,50392],[-83,45],[49,133],[-99,153]],[[73607,50723],[-67,173],[-127,-149],[29,-124],[-107,-64],[-67,56]],[[73268,50615],[-1,-181]],[[78233,58900],[231,-73],[328,458],[22,269]],[[78814,59554],[-438,78]],[[78134,59708],[-15,-337],[114,-471]],[[78057,55968],[132,-5],[44,157],[86,-20]],[[78319,56100],[105,356],[-27,87],[57,161],[101,94]],[[78555,56798],[-96,251],[-89,29],[-51,124]],[[78319,57202],[-67,-392],[-70,-110],[-37,-202],[-128,80],[-63,-149],[-59,74],[-42,-202],[-108,73]],[[77745,56374],[93,-190],[183,-106],[36,-110]],[[88115,51318],[327,-121]],[[88442,51197],[437,-162]],[[88879,51035],[174,697],[137,447]],[[89190,52179],[-35,29]],[[89155,52208],[-61,-206],[-63,-56],[8,-135],[-70,-277],[-114,-219],[-159,12],[-9,-122],[-89,93],[62,182],[118,119],[63,-57],[30,241],[222,556],[106,305],[20,151],[-143,-162],[-8,-123],[-140,-283],[-69,-20]],[[88859,52207],[5,-119],[-211,-216],[-108,49],[-107,-228],[-323,-375]],[[80477,51070],[204,-217],[71,-142]],[[80752,50711],[162,-252],[117,73]],[[81031,50532],[19,123],[145,252],[64,452]],[[81259,51359],[-168,184],[-89,250],[-147,61],[-56,107],[-121,69]],[[85828,48597],[-119,8],[-100,-266],[-117,29],[-7,-81]],[[20577,11527],[-60,-7],[17,438],[-41,121]],[[20493,12079],[-17,-25]],[[20476,12054],[-132,-107],[-112,56],[-112,-112],[-261,254],[-73,324],[-134,157],[-61,-25],[-63,215],[-167,111],[-168,-22],[-126,127]],[[19067,13032],[-80,-136],[-138,-125],[-71,-180],[45,-145],[1,-216],[49,-236],[30,-315],[-147,-433],[-38,-277]],[[96415,96991],[153,53]],[[96568,97044],[-3,151]],[[50032,66139],[1040,38]],[[51068,67017],[-8,668]],[[51060,67685],[-50,-26],[1,-191],[-79,-109],[-98,-24],[-171,346],[-157,172],[-201,-163]],[[50305,67690],[63,-383],[-51,-66],[-122,46],[-85,-49],[-54,-259],[57,-222],[-88,-48]],[[78357,54521],[77,-253],[161,-222]],[[78595,54046],[311,-73]],[[78906,53973],[-45,105]],[[78861,54078],[-31,250],[41,216],[-36,312]],[[78835,54856],[59,200],[-160,-46],[-63,57],[-127,268]],[[78544,55335],[-19,92]],[[78525,55427],[-94,-66],[-48,-165],[-110,-104],[155,-450],[-71,-121]],[[73372,59942],[69,-237],[106,72],[78,-227],[-38,-199],[139,-37],[-9,-470],[99,-81],[-18,-242]],[[73798,58521],[104,172],[92,-38],[16,242]],[[74010,58897],[-152,510],[-137,357],[-58,349]],[[73663,60113],[-136,270]],[[73527,60383],[-79,-276],[-95,-45],[19,-120]],[[49271,28915],[188,10]],[[49451,30599],[-799,-47]],[[51886,72893],[90,4]],[[51976,72897],[937,27]],[[52913,72924],[48,71],[-12,173],[61,184],[78,88],[-33,202]],[[53055,73642],[127,116]],[[53182,73758],[-954,968]],[[51880,73984],[6,-1091]],[[50305,67690],[-22,1627]],[[49477,69286],[17,-1421]],[[49494,67865],[15,-953]],[[82334,49065],[139,-214],[85,-551],[154,-81]],[[82712,48219],[53,-60],[127,101],[30,219],[148,50],[209,529],[50,-9]],[[83114,49560],[-94,164]],[[83020,49724],[-62,6],[-137,-222]],[[82821,49508],[-148,-120],[-151,-13],[-81,-239],[-107,-71]],[[35033,50175],[208,22],[44,172],[118,154],[133,73],[-10,146]],[[34676,52174],[73,-965],[-36,-9],[80,-1007],[126,-62],[114,44]],[[78759,69006],[60,-74],[-48,-118],[178,-141]],[[78949,68673],[198,74],[122,-66]],[[79269,68681],[161,540],[167,176]],[[79597,69397],[-31,273]],[[79566,69670],[-97,-58],[-112,183],[-45,348],[-95,343],[50,115]],[[79267,70601],[-78,115],[-137,42],[-119,-209]],[[78933,70549],[22,-343],[-212,-147],[-296,-6]],[[78447,70053],[146,-113],[-69,-164],[217,-319],[-75,-126],[93,-325]],[[64552,43089],[-60,-113],[-82,4],[-105,120],[-247,25],[-122,-43],[-36,135]],[[63900,43217],[-115,41],[-112,163],[-252,53],[-55,-229],[-69,-25]],[[63297,43220],[141,-132],[87,7],[23,-132]],[[53030,32977],[1086,2]],[[54116,32979],[0,1340]],[[53087,34315],[-27,-268],[-94,-201],[-89,-91],[-1,-250],[85,-257],[57,-50],[12,-221]],[[50775,52879],[188,1],[2,-680]],[[50965,52200],[944,19]],[[51909,52219],[-13,1687]],[[51896,53906],[-1131,-25]],[[50765,53881],[10,-1002]],[[72078,48224],[57,-26],[166,-379]],[[72457,47743],[133,147],[-35,168],[88,-26],[43,285],[147,52],[-23,109],[55,116]],[[72164,48729],[-83,-161],[-49,-207],[46,-137]],[[64789,81494],[-22,441],[41,548],[58,158],[145,152],[-99,495]],[[64912,83288],[-225,19],[-58,-247],[-113,-54],[-92,-131],[-12,-131],[-99,-134]],[[64313,82610],[-33,-489],[165,-92],[75,-199],[144,-272],[125,-64]],[[69232,63046],[19,346],[-21,191],[-89,150],[-47,236]],[[69094,63969],[-1095,107]],[[67999,64076],[18,-1203]],[[22080,68031],[2054,629]],[[24134,68660],[1155,338],[748,232],[3,-37],[1289,341]],[[27329,69534],[-30,329]],[[27299,69863],[-52,675],[-182,1968]],[[25273,73199],[-2583,-2596],[-443,-441],[-353,-370]],[[21894,69792],[186,-1761]],[[29430,65646],[40,-140],[127,-35],[95,-94],[42,-141],[542,129]],[[30276,65365],[-173,2171]],[[29972,69178],[-107,1338]],[[29865,70516],[-122,-28]],[[29743,70488],[-173,-442],[69,-397],[-38,-422],[-102,-416],[-28,-9],[-222,-968],[181,-2188]],[[61983,62797],[59,-186],[-12,-117],[73,-331],[-44,-49],[-58,-399],[141,-161],[13,-121]],[[62155,61433],[167,-40],[12,340],[376,-21]],[[62729,62506],[12,567],[-186,11]],[[62174,63463],[-6,-536],[-175,15],[-10,-145]],[[85163,89682],[158,625],[68,853],[20,950]],[[85409,92110],[-256,48],[-192,-50],[7,79],[-1145,328]],[[83823,92515],[-152,-1533],[-73,-807]],[[80511,74118],[50,-287],[50,-10],[57,-222]],[[80668,73599],[163,257],[221,110],[325,58]],[[81377,74024],[-13,346],[-39,4],[-76,298],[-58,25],[1,455],[-42,12]],[[81150,75164],[-267,-241],[19,-96],[-132,83],[-107,-27],[-164,-140]],[[80499,74743],[-11,-121],[23,-504]],[[58677,40593],[756,-44]],[[59459,41735],[-127,13]],[[59332,41748],[-633,57]],[[61717,33644],[378,-34],[-3,-114]],[[62092,33496],[306,122],[85,254],[38,226]],[[62809,34558],[-308,28],[10,337],[-376,33]],[[72227,54232],[384,-24]],[[72611,54208],[-68,119],[114,146]],[[72657,54473],[-26,433],[-56,471]],[[72575,55377],[-243,76]],[[72006,54741],[54,-138],[139,-193],[28,-178]],[[61567,82267],[22,-141]],[[61589,82126],[143,11],[110,82],[168,-313],[125,38],[124,284],[176,-15],[37,-98],[225,-22]],[[62697,82093],[189,-18],[89,123]],[[62975,82198],[-53,211]],[[62922,82409],[-411,94]],[[61797,83402],[-41,-76],[49,-138],[45,49],[-9,-195],[-112,-18],[-90,81],[-68,-59]],[[61506,83979],[168,-172],[153,9],[265,254],[-97,125],[-2,132],[-148,54],[-361,-331],[22,-71]],[[67608,47607],[631,-105]],[[68239,47502],[79,274],[-23,319],[-120,134],[-79,396]],[[68096,48625],[-443,60]],[[86622,44174],[144,245],[136,56],[139,240]],[[87041,44715],[44,106],[76,-100],[54,40],[-25,155],[43,149],[145,260],[-22,81],[67,277],[-200,-174],[-54,-197],[-48,47],[16,193],[-109,-83],[-62,-187],[-76,-80],[-148,-26],[-209,65],[-27,-163],[-110,-255]],[[86396,44823],[-55,-81],[65,-233],[44,-311],[172,-24]],[[62767,79823],[76,-221],[762,-122]],[[63605,79480],[-108,278]],[[63497,79758],[-40,143],[-94,118],[43,304],[-39,167],[113,354],[89,74]],[[63569,80918],[-181,16],[-61,97]],[[63327,81031],[-230,14]],[[63097,81045],[-63,-74],[-116,9],[65,-371],[-35,-317],[-99,77],[28,-120],[-44,-137],[-93,-75],[27,-214]],[[59531,75985],[658,-41],[-5,-336],[477,-29]],[[60661,75579],[37,143],[-47,224],[46,15],[-62,298],[148,108],[-23,70],[87,131],[0,156],[152,57]],[[60999,76781],[-807,388],[-50,13],[-94,-235],[23,-80],[-52,-175]],[[60019,76692],[-159,-296],[-198,-91],[4,-138],[-115,-71],[-20,-111]],[[69024,29495],[-133,-444],[-18,-322],[91,-282],[32,-286]],[[53124,41159],[1041,3]],[[54165,41162],[-82,139],[68,271],[88,69],[64,194],[-24,92]],[[54279,41927],[14,228],[79,9]],[[54372,42164],[-592,3]],[[53122,42165],[2,-1006]],[[65636,33795],[647,-94]],[[66451,33672],[62,1311]],[[66513,34983],[-62,9]],[[66451,34992],[-566,81]],[[65696,35099],[-60,-1304]],[[48769,44033],[568,30]],[[49337,44063],[371,17]],[[49708,44080],[-27,1677]],[[49681,45757],[-905,-48]],[[66451,34992],[16,335],[-41,7],[16,308]],[[66442,35642],[48,1004]],[[35050,67894],[1122,207],[-17,328],[743,126],[-37,665]],[[36861,69220],[-35,652],[-67,-11],[-99,1695],[923,147]],[[37583,71703],[-100,1991]],[[37483,73694],[-130,-21]],[[37353,73673],[-945,-159],[-1050,-194]],[[35358,73320],[-700,-127]],[[34658,73193],[231,-3655],[66,11],[23,-361]],[[69638,50585],[73,-10],[-29,-190],[17,-181],[-77,-176],[11,-243]],[[69633,49785],[-10,-168],[193,-29],[-4,-58]],[[70215,50011],[54,124],[-23,145],[-65,30]],[[68239,47502],[0,-214]],[[68239,47288],[9,19],[477,-72],[-1,-24]],[[68965,47187],[-72,266],[-102,134],[-47,-36],[-9,390],[-31,112],[56,223],[36,330]],[[68796,48606],[-93,149],[-99,-113],[-92,80],[-89,-13]],[[68423,48709],[-46,154],[-133,38],[-36,162],[-240,177]],[[67968,49240],[-3,-234],[138,-164],[-7,-217]],[[78923,33015],[282,-310],[206,-287],[86,-306],[98,55],[249,-387],[182,-229]],[[80026,31551],[103,1028],[240,-74]],[[80369,32505],[55,566]],[[80424,33071],[-1455,430]],[[78969,33501],[-46,-486]],[[82419,67648],[183,-27],[273,52],[-29,-211],[114,-81],[17,-165],[-187,-237],[26,-82]],[[82816,66897],[104,100],[73,-66],[116,355],[108,-72],[-14,130],[86,185],[100,-209],[30,-203],[110,-120],[-2,-182],[146,-442],[16,-121],[139,-183],[53,33],[83,-285],[47,-26]],[[84011,65791],[196,174],[157,26],[-32,105]],[[84332,66096],[-62,98],[-23,332],[-117,4],[-104,85],[-83,-108],[-94,142],[-44,253],[86,17],[5,107],[-195,277],[-40,185],[-202,258],[-80,-103],[-65,150],[117,41],[-12,201],[-147,218],[-34,141],[-68,3],[-190,180],[-49,165],[-46,-48],[-115,184]],[[82770,68878],[-20,-46],[-113,150],[-133,-142],[41,-121],[-30,-297],[-62,-47],[-21,-170],[-65,-79],[58,-295],[-6,-183]],[[79952,59346],[508,-83]],[[80460,59263],[32,152],[-36,96],[42,150],[166,-291],[62,104]],[[80726,59474],[15,229],[106,312],[-17,428]],[[79834,60643],[-98,-393],[-20,-307],[132,-121],[-16,-339],[52,-124]],[[80926,69242],[417,-880],[148,215],[-7,177],[109,51],[46,-166]],[[81639,68639],[91,226],[15,290],[44,105],[-29,248],[40,57],[-65,274],[-82,-3],[-7,204],[-132,15],[40,137],[-27,131],[47,142],[94,87],[24,111],[135,185]],[[81827,70848],[3,176]],[[81830,71024],[-78,-6],[-154,-181],[-120,67],[-102,-78],[-39,-315],[-52,-85]],[[81285,70426],[28,-244],[-203,-474],[20,-162],[-189,-226],[-15,-78]],[[88917,31098],[142,-223],[34,95],[211,4],[-30,-119],[147,79],[154,-100]],[[89575,30834],[-33,294],[65,291]],[[89607,31419],[77,143],[-18,285]],[[89666,31847],[-312,847]],[[89354,32694],[-244,-143]],[[89110,32551],[-600,-368]],[[88510,32183],[-129,-216]],[[88381,31967],[-30,-260],[436,-214],[72,-310],[58,-85]],[[90484,23858],[225,33],[203,-141],[181,-68]],[[91093,23682],[10,279]],[[91103,23961],[69,279],[-33,128],[58,150],[-25,163],[-81,104],[6,275],[57,278],[175,247]],[[90587,25858],[-86,-706],[-136,46],[-82,-705],[201,-71],[-48,-571],[48,7]],[[31219,73322],[-127,1713],[-1563,-359]],[[29529,74676],[336,-4160]],[[30636,60856],[1022,242],[102,-1328],[1296,295],[12,-165],[187,39],[-13,168],[565,114]],[[33807,60221],[124,27],[52,344]],[[33983,60592],[163,1052]],[[33807,63043],[-933,-194]],[[32874,62849],[-2354,-540]],[[30520,62309],[116,-1453]],[[79209,50719],[-5,-135],[128,-234]],[[79332,50350],[17,-259],[100,-115],[73,16]],[[79522,49992],[457,495]],[[79979,50487],[-24,186],[71,125],[-77,146],[-128,122]],[[79821,51066],[-2,-36],[-220,153],[-178,219]],[[79421,51402],[-270,-328]],[[79189,41247],[45,-80],[-43,-129],[78,-44],[1,-486]],[[79270,40508],[359,-36]],[[79629,40472],[19,207]],[[79215,41745],[-76,-146],[61,-154],[-11,-198]],[[71577,71898],[117,-109],[59,-143],[124,-130],[96,210],[123,-14],[152,80],[40,-61]],[[72288,71731],[78,310],[146,211]],[[72512,72252],[-123,31],[-18,88],[50,761]],[[72421,73132],[22,318],[-361,70]],[[72082,73520],[-205,42],[-21,-325],[-190,32]],[[71434,72176],[61,-248],[82,-30]],[[71394,65397],[185,-358],[150,-40],[-4,-55]],[[72440,65711],[4,128],[-194,-49],[-94,73],[9,140],[-127,-8],[-35,199],[-122,110]],[[71390,66013],[-81,16],[57,-190],[-11,-208],[39,-234]],[[67991,64535],[8,-459]],[[69094,63969],[52,1007]],[[68957,64996],[-971,90]],[[67986,65086],[5,-551]],[[15324,88139],[10,1163]],[[15334,89302],[-178,4],[20,698]],[[14221,89986],[-435,-30],[3,-116],[-131,-12],[-4,117],[-529,-59],[-37,229],[-137,98],[-42,344],[-65,-9],[-12,232],[-65,-10],[-42,344],[-66,-10],[-12,231],[-89,-14],[-13,232],[-65,-11],[-42,344],[-138,93],[-41,343],[-66,-12],[-14,215]],[[12179,92525],[-16,14]],[[12163,92539],[-116,-22],[2,117]],[[12049,92634],[-18,96],[-161,122],[-65,-154],[78,-145],[12,-260],[-79,-424],[51,-138],[107,-127],[-117,-666],[-77,-290],[-47,23],[-19,190],[-78,-6],[-158,138],[-227,33],[-168,-99],[-7,-258],[-67,-89],[-91,-324],[-94,-85],[-50,-143],[72,-81],[-165,-108],[190,-169],[6,-214],[-39,-74]],[[9878,90043],[195,78],[187,-193],[40,60],[94,-81],[10,159],[145,87],[-41,296],[26,223],[-174,9],[-78,127],[-68,-160],[-79,-22],[-238,-381],[-19,-202]],[[7864,88764],[64,-113],[2,139],[201,374],[-140,-80],[-127,-320]],[[41174,28416],[55,-1099]],[[42174,27452],[1671,214],[0,-241],[61,-97],[-11,-127],[53,-325],[69,-92],[-1,-228],[134,-54],[87,105],[82,-23],[127,-246],[58,-22]],[[44504,26316],[-33,639],[-49,1336]],[[44422,28291],[-18,-2],[-40,1095],[-26,72],[-165,-64]],[[44173,29392],[-59,45],[-1003,-119]],[[49684,23921],[1139,62]],[[50823,23983],[-5,333]],[[50801,26313],[-1137,-58]],[[49664,25248],[20,-1327]],[[52603,32299],[562,8]],[[53165,32307],[-90,128],[14,348],[-59,194]],[[53172,34586],[-97,22],[-41,-118],[-116,40],[-45,-76]],[[52873,34454],[-127,-360],[39,-137],[-184,-76],[-6,-123]],[[52595,33758],[8,-1459]],[[81639,68639],[64,-187]],[[81703,68452],[124,78],[176,-19],[35,204],[82,99],[132,23],[40,131],[124,135]],[[82416,69103],[-5,97],[126,241],[-42,287],[-174,228],[-118,103],[-24,-133],[-139,-94],[-82,152],[97,72],[106,165],[-75,241],[-259,386]],[[76237,57428],[26,-441],[51,-314]],[[76314,56673],[-32,-145],[43,-111],[80,70],[0,-208]],[[76405,56279],[-4,94],[132,109],[410,587]],[[76943,57069],[17,278],[-83,335]],[[76877,57682],[-52,85],[-150,-28],[-134,127],[-36,145],[-118,85]],[[76387,58096],[-36,15],[-44,-309],[36,-104],[-106,-270]],[[87694,36209],[88,-308],[100,-232]],[[87882,35669],[187,-355]],[[88069,35314],[18,60]],[[88609,36159],[144,127],[64,152],[132,86],[112,213]],[[89061,36737],[-83,150],[-59,-4],[-55,202],[-163,195]],[[88701,37280],[-19,-268],[-91,-41]],[[88591,36971],[-897,-762]],[[51277,31943],[-9,1219]],[[51268,33162],[-223,0],[-86,-76],[-76,36],[-25,167],[-99,171],[-136,16],[-186,-295]],[[50437,33181],[59,-114],[-8,-158],[52,-243],[-31,-106],[10,-331],[56,-309]],[[68773,57175],[373,28],[27,-42]],[[69173,57161],[237,27],[-59,228],[17,141],[74,123],[-24,90],[-8,408]],[[69410,58178],[-19,354]],[[69391,58532],[-587,-38]],[[68804,58494],[-37,-85],[-1,-302],[-55,-315]],[[54262,55765],[460,-3]],[[54722,55762],[200,-2]],[[54922,55760],[0,218],[-42,0],[5,1333]],[[54885,57311],[-661,4]],[[54224,57315],[-2,-1329],[40,0],[0,-221]],[[52937,71892],[407,1],[0,-106]],[[53750,73650],[-695,-8]],[[52913,72924],[13,0],[11,-1032]],[[46676,66203],[395,534],[216,-8],[185,179],[135,-106]],[[47607,66802],[-21,968]],[[94571,97657],[153,14]],[[94724,97671],[-30,166]],[[94303,18652],[173,-17],[29,-254],[163,33]],[[94668,18414],[10,382],[-25,78],[183,-13],[37,298],[-34,153],[110,218]],[[94949,19530],[-36,341],[-131,220],[-92,-243]],[[94690,19848],[-25,-283],[-42,-40],[12,-319],[-93,177],[-72,23],[-122,-182]],[[94348,19224],[-36,-44],[-9,-528]],[[52369,69608],[820,39]],[[53189,69647],[0,218],[162,-41]],[[53345,71249],[-402,-6]],[[52943,71243],[-600,-27]],[[52343,71216],[26,-1608]],[[49298,76134],[-52,-155],[-329,73]],[[46944,76412],[125,198],[-47,113],[93,121],[46,-92]],[[47161,76752],[-37,1551]],[[41279,75581],[836,101]],[[42063,77849],[-164,-23]],[[41899,77826],[-71,-169],[11,-247],[-127,-243],[-141,-88],[-172,-246],[-177,118]],[[41222,76951],[57,-1370]],[[37583,71703],[17,3],[92,-1694],[1878,279]],[[39570,70291],[-80,1697],[168,24],[-94,1999]],[[39564,74011],[-476,-68]],[[39088,73943],[-82,-12]],[[39006,73931],[-1523,-237]],[[60720,51613],[94,-3],[118,-169],[450,-34],[-7,-396]],[[61375,51011],[165,-9]],[[61540,51002],[16,-1],[31,1402]],[[57209,63037],[1,-168],[192,3],[2,-282]],[[57404,62590],[0,-67],[192,0],[1,-346],[191,16],[0,-451],[106,248],[69,-44]],[[57963,61946],[69,-120],[136,78],[151,-60],[129,-123],[32,384],[155,-59],[61,51]],[[58734,62134],[4,404],[-316,3],[-126,277],[-237,-1],[-77,55],[9,444]],[[57658,45942],[18,1225]],[[57676,47167],[-138,-27],[-249,251],[44,-153],[-113,6],[10,143],[-136,47]],[[57094,47434],[-185,-239]],[[56909,47195],[-7,-956]],[[14874,45816],[1586,651]],[[17342,48775],[1781,4656]],[[19123,53431],[272,709]],[[15961,52872],[-502,-206],[-148,-25]],[[15311,52641],[42,-275],[45,0],[17,-478],[-36,-91],[-2,-514],[34,-66],[-47,-218],[-6,-294],[73,-172],[-69,-247],[23,-153],[-94,-50],[-32,-202],[30,-141],[-68,-190],[42,-150],[-57,-129],[-44,-271],[61,-30],[-24,-165]],[[80741,37591],[-186,-1904]],[[80555,35687],[87,450],[115,31],[-17,174],[534,-242],[98,-192]],[[81426,36436],[53,514],[-288,1051]],[[81191,38001],[-75,42],[-119,-116],[-75,-232],[-144,-155],[-36,51]],[[79451,57902],[1015,-194]],[[80507,57915],[20,350]],[[80527,58265],[-886,165]],[[79448,57918],[3,-16]],[[76877,57682],[42,195],[52,-35],[79,240]],[[77050,58082],[86,228],[52,-65],[103,210],[-29,382],[110,161]],[[77103,59573],[-85,-70],[-61,-189],[-295,-402],[-94,-77]],[[76568,58835],[42,-159],[-110,-354],[29,-89],[-137,-64]],[[76392,58169],[-5,-73]],[[75421,56569],[44,-177],[-23,-250],[41,-286]],[[75483,55856],[121,-118],[111,30],[55,-112],[84,-2],[7,-151],[90,-22]],[[76142,55508],[75,394]],[[76217,55902],[-53,115],[-76,-115],[-189,350],[-18,173]],[[75881,56425],[-131,2],[-157,182],[26,149],[-85,-60],[25,167]],[[75559,56865],[-138,-296]],[[82435,33410],[-6,-56],[346,-118]],[[82775,33236],[305,459],[98,-30]],[[83178,33665],[46,406],[-106,625]],[[83118,34696],[-237,25]],[[82881,34721],[-35,-353],[-32,10],[-32,-307],[-268,86],[-79,-747]],[[52414,32296],[189,3]],[[52595,33758],[-161,-116],[-92,49],[-29,-154],[-54,-5]],[[52259,33532],[-185,-44],[-46,-108]],[[52028,33380],[8,-1089]],[[86632,34657],[254,-367],[129,-151],[-81,-135],[-15,-163],[102,-190],[73,8]],[[87094,33659],[311,415],[-110,183],[227,453]],[[87522,34710],[-205,186]],[[87317,34896],[-130,117],[-85,169]],[[87102,35182],[-245,-227],[-225,-298]],[[81426,60288],[427,-109]],[[81853,60179],[697,-175]],[[82550,60004],[20,155],[119,238],[153,140],[-16,459]],[[82826,60996],[-82,184],[-286,80],[-385,605]],[[82073,61865],[-79,-212],[-38,-268],[-97,-164],[-89,-240]],[[81770,60981],[-57,-159],[-287,-534]],[[81600,66625],[464,-731],[52,198],[112,54],[118,-32]],[[82346,66114],[77,208],[66,45],[-46,144],[373,386]],[[82419,67648],[19,-113],[-92,-324],[34,-231],[-168,-75],[-209,85],[-159,-133],[-91,-181],[-153,-51]],[[58474,45214],[309,-28],[377,5]],[[59160,45191],[283,-9],[2,338]],[[59445,45520],[-8,7],[4,1108]],[[59441,46635],[-141,-76],[-91,458]],[[59209,47017],[-119,-14],[-73,-308],[-108,3],[-85,-82],[-56,-182]],[[58768,46434],[-24,-123],[-159,-91],[-31,-121],[-60,49],[-35,-223],[26,-118],[-24,-253]],[[88985,17556],[521,-235],[443,-160]],[[89949,17161],[127,635],[-41,223]],[[89591,18798],[-183,7],[-327,-144]],[[89081,18661],[-71,-163],[49,-224],[-20,-327],[-94,-121],[40,-270]],[[81565,33605],[0,-2]],[[81565,33603],[225,-66],[531,-199],[12,104],[102,-32]],[[82881,34721],[-671,127],[13,138],[-94,91]],[[81452,34747],[-30,-314],[37,-128],[175,8],[-69,-708]],[[87465,47754],[47,-100],[86,0]],[[87598,47654],[15,84],[94,-81],[65,115],[76,345],[-16,309],[-129,-166],[-131,-95]],[[87572,48165],[-82,-48],[-25,-363]],[[59650,50062],[222,-2]],[[59872,50060],[157,-1],[-1,325],[212,0],[59,54],[94,-56]],[[60393,50382],[2,167]],[[60395,50549],[8,504],[28,-1],[6,560]],[[60058,51619],[-188,7],[-130,-277],[-34,-286],[-63,1],[-1,-160],[-96,-29]],[[59546,50875],[0,-488],[96,-5],[8,-320]],[[38680,16453],[381,68],[-6,109],[323,57],[-20,331],[63,10],[-19,330],[127,22],[-12,220],[58,121],[317,57],[-6,111],[384,67],[6,-110],[190,32],[9,-165],[190,30]],[[40665,17743],[-26,496],[-262,-43],[-34,641],[30,5],[-36,671]],[[40337,19513],[-81,-13],[-73,1329],[-65,-11]],[[40118,20818],[-1848,-331]],[[38270,20487],[82,-1323],[58,10],[79,-1313],[52,9],[81,-1317],[55,-45]],[[40118,20818],[-99,1653],[-78,-13],[-73,1340]],[[39868,23798],[-60,-10]],[[39808,23788],[-1293,-228],[-174,-3]],[[38341,23557],[-369,-70]],[[37972,23487],[44,-707],[-25,-5]],[[37991,22775],[41,-654],[68,13],[105,-1659],[65,12]],[[68054,53349],[358,-486],[161,-125],[193,-349]],[[68939,53053],[-71,330],[-56,-1],[-7,197],[124,232],[-8,154]],[[68921,53965],[-62,106],[-197,56],[-53,87],[-286,-125]],[[68323,54089],[-153,-154],[-80,-167],[-14,-201],[-80,-97],[58,-121]],[[67367,18153],[143,-171],[83,52],[36,164],[102,100],[103,-3],[34,-159],[79,-4],[65,130],[9,-230],[-48,-167],[82,-78],[44,96],[-19,186],[96,70],[158,-365],[174,-133],[298,-416],[31,54],[378,-195]],[[69257,17786],[-755,133],[38,660],[-380,61],[38,662]],[[68198,19302],[-761,127]],[[67437,19429],[-70,-1276]],[[76173,49388],[52,-154],[214,75],[178,158],[223,90]],[[76840,49557],[-91,129],[53,99],[39,391]],[[76841,50176],[-220,-86],[-218,259],[-73,-33]],[[76330,50316],[-40,-296],[-74,-74],[-38,-151]],[[76178,49795],[57,-222],[-62,-185]],[[66489,43783],[875,-128]],[[67352,44408],[-161,41],[5,111],[-683,100]],[[66513,44660],[-27,-539]],[[76382,51134],[44,54]],[[76426,51188],[167,36],[10,202],[136,-30],[39,402],[78,70]],[[76856,51868],[-33,62]],[[76823,51930],[-148,47],[-245,434],[-44,-80]],[[76386,52331],[-99,-55],[-29,-104],[-84,34],[-19,-351],[-45,-274]],[[76110,51581],[-33,-195],[103,-294],[59,64],[143,-22]],[[50976,51187],[565,16]],[[51913,51544],[-4,675]],[[50965,52200],[11,-1013]],[[63795,48393],[-60,162],[51,273]],[[63673,49336],[-112,-251],[21,-218],[75,-249],[138,-225]],[[82627,38347],[203,90],[112,132],[-1,-227],[263,151],[28,-228]],[[83232,38265],[65,266],[190,171]],[[83487,38702],[-85,337],[53,91],[-77,635],[-20,313],[-92,433]],[[82561,40737],[44,-408],[-104,-882],[34,-61],[63,-700]],[[54999,45517],[-377,4]],[[54245,45523],[0,-1341]],[[58478,69243],[1,-1345],[19,0],[-1,-508]],[[58497,67390],[151,-8]],[[58648,67382],[95,185],[63,240],[130,55],[74,107],[71,-63],[67,145]],[[59148,68051],[0,1248]],[[59148,69299],[-191,1],[0,57],[-263,-3]],[[58694,69354],[-216,0],[0,-111]],[[58435,65913],[2,337],[-37,153],[107,17],[-20,301],[46,310],[103,239],[12,112]],[[58497,67390],[-128,59],[-163,-57],[-57,-87],[-184,-84],[-134,-3]],[[85880,49461],[48,-57]],[[85928,49404],[20,-23]],[[85948,49381],[43,-44]],[[85991,49337],[98,156],[-105,137]],[[85984,49630],[-102,-30],[-2,-139]],[[62415,46107],[252,324],[119,214],[12,104]],[[62798,46749],[-778,59],[6,341],[-126,8]],[[61648,47168],[-68,-675]],[[61580,46493],[-51,-506],[415,-606],[43,-3]],[[63799,47513],[-216,25],[7,293]],[[63590,47831],[-302,-140]],[[63288,47691],[-141,50],[-64,-128],[-72,-473]],[[63011,47140],[41,-240],[63,-62],[84,60],[294,-27],[-8,-195],[189,-22],[-7,-126],[93,-24]],[[81896,64735],[74,-296],[155,-49],[-28,-196],[214,-132],[26,-77],[451,-690]],[[82987,63475],[-46,274],[-125,235],[56,165],[-28,75],[-118,845]],[[82726,65069],[-83,96],[13,114],[-127,55]],[[82529,65334],[-233,119],[-164,-134],[-37,-175],[-100,-104]],[[81995,65040],[-99,-305]],[[77246,54466],[22,286],[-140,283],[45,82]],[[77141,55208],[-181,225],[-44,-14],[-120,191],[-39,-14],[-127,284],[-98,130]],[[76532,56010],[-170,-361],[-77,220],[-68,33]],[[66954,59551],[60,-144],[689,-67]],[[67703,59340],[18,802],[-78,321],[21,406]],[[67664,60869],[-210,46]],[[82826,60996],[54,163],[68,-147],[86,93],[-31,210],[78,142],[55,-35],[-1,166],[82,177]],[[82561,62817],[-181,-241],[68,-160],[-72,-320],[-86,-138],[-19,-151],[-102,195],[-95,-129]],[[82074,61873],[-1,-8]],[[87194,37508],[238,-503]],[[87432,37005],[244,45],[77,198],[118,53],[25,135],[55,-57],[62,119],[50,-37]],[[88063,37461],[-77,124],[-7,227],[-124,208],[-88,309],[23,137]],[[87790,38466],[-104,103],[-100,216],[-59,235]],[[87527,39020],[-570,213]],[[83263,61779],[202,-1325]],[[83465,60454],[796,1013]],[[84261,61467],[-83,205]],[[84178,61672],[-94,-104],[-60,144],[-167,-2],[-134,-74],[-185,98],[-97,254]],[[80817,34764],[125,-39],[-19,-188],[313,-76],[36,377]],[[80555,35687],[-7,-6]],[[65077,20334],[107,87],[14,-111],[147,-29],[145,145],[53,-70],[137,136],[73,-56],[205,129]],[[65522,21390],[-384,51],[-42,-988],[-19,-119]],[[80671,33878],[894,-273]],[[79872,75521],[94,-25],[17,-255],[241,45]],[[80224,75286],[58,17],[5,246],[47,48],[-27,194],[44,-2],[10,343]],[[80361,76132],[-91,-3],[-42,208],[-83,-18],[-5,510],[112,328],[5,341],[-24,442]],[[80233,77940],[-224,71],[-96,-230],[-3,-234],[-51,-74],[-1,-235]],[[79858,77238],[53,-849],[-55,-12],[-453,98],[-60,-831],[529,-123]],[[36506,54189],[34,430],[-39,281],[-17,633],[17,711],[-63,418],[-144,87],[-42,104],[337,319],[182,538],[341,399]],[[37112,58109],[-75,138],[-111,-42],[-54,73],[-98,-99]],[[36774,58179],[8,-87],[-622,-110],[13,277],[-335,-63]],[[35838,58196],[4,-137]],[[35842,58059],[10,-134],[-1119,-208],[55,-834],[-733,-141],[-557,-138]],[[33498,56604],[99,-1411],[68,-800],[40,-114],[123,-72],[157,-182],[11,-186],[65,-149]],[[57517,74206],[169,-5],[165,-229],[22,-150],[102,-188],[143,87],[89,-9],[99,180],[1,123]],[[58805,75165],[-157,79],[3,263]],[[58651,75507],[-815,39]],[[57836,75546],[-58,-186],[-128,-123],[-68,-210]],[[83965,53972],[53,547],[101,51]],[[84119,54570],[38,173],[76,24],[-10,200],[-59,186],[-80,-10],[-20,244],[-133,38]],[[83931,55425],[-189,79]],[[30953,56872],[895,210],[1587,362]],[[33435,57444],[556,124],[-148,2220],[-36,433]],[[30636,60856],[317,-3984]],[[85182,39875],[358,-124]],[[85540,39751],[349,-127]],[[85889,39624],[-33,878],[-25,180],[66,399]],[[85897,41081],[-151,-1],[-86,83],[-133,-27],[-104,97]],[[85423,41233],[33,-576],[-179,-245],[-161,-58],[79,-399],[-13,-80]],[[87946,39227],[17,88]],[[87963,39315],[-17,-88]],[[87790,38466],[159,-44],[152,66]],[[88101,38488],[9,27]],[[88110,38515],[-65,137],[-44,332]],[[88001,38984],[-111,180],[-15,218],[97,102],[-10,332],[187,377]],[[88149,40193],[-92,260],[-126,119],[-158,35]],[[87773,40607],[-49,-301]],[[87724,40306],[-168,-1045],[-29,-241]],[[43790,43614],[1068,115]],[[44858,43729],[-60,1671]],[[43731,45289],[1,-23]],[[79014,72033],[226,81],[39,-55],[132,80]],[[79411,72139],[155,14],[197,230]],[[79763,72383],[-98,131],[40,92],[-80,21],[97,1147]],[[79722,73774],[-41,11],[-151,-192]],[[79530,73593],[-32,-86],[-222,-199],[-202,-108],[-98,-165],[-48,10]],[[71566,70572],[673,-127]],[[72239,70445],[233,-41],[-40,304],[51,107],[39,591]],[[72522,71406],[-5,176],[-146,5],[-83,144]],[[71577,71898],[-70,-1137]],[[31531,49693],[377,90],[11,-54],[955,224],[59,300],[386,-54],[196,359]],[[33515,50558],[-35,199],[-171,63],[-18,218]],[[52094,9721],[1204,21]],[[53320,11464],[-1142,-15]],[[52178,11449],[99,-541],[-54,-153],[-55,-475],[-90,-438],[16,-121]],[[56789,78692],[614,-272]],[[57572,78280],[238,-100]],[[57810,78180],[96,805],[-33,2701]],[[57538,80613],[-41,-165],[67,-319],[-73,-137],[-63,9],[-44,-384],[-59,-25],[-73,-431],[17,-108],[-73,-103],[-5,-186],[-78,-105],[-242,59],[-82,-26]],[[84026,63572],[85,224],[74,58],[96,-71]],[[84281,63783],[111,129],[102,329],[177,-57]],[[84671,64184],[-113,382],[-72,434],[-11,489],[18,309],[-86,217],[-75,81]],[[84011,65791],[-55,-47],[-394,-174]],[[83562,65570],[-13,-121],[64,-157],[53,-295],[229,-590],[-23,-69],[24,-370],[130,-396]],[[54165,41162],[-22,-316],[55,-139]],[[54905,40703],[2,667],[24,1],[-3,569]],[[54928,41940],[-649,-13]],[[63051,43772],[126,-139],[6,-154],[114,-259]],[[63900,43217],[29,795]],[[63929,44012],[4,112]],[[63933,44124],[-984,88]],[[62949,44212],[72,-186],[30,-254]],[[90150,21208],[30,117],[544,121],[428,78]],[[91152,21524],[-113,320],[15,400]],[[91054,22244],[-56,107],[-3,263],[40,69],[16,497],[58,178],[-16,324]],[[90484,23858],[-24,-163],[-75,27]],[[90385,23722],[-22,-174],[45,-151],[116,53],[-11,-448],[-113,-56],[-23,-372],[25,6],[36,-393],[-201,-48],[11,-350],[-23,-68],[-135,-4],[-12,-68],[-113,173]],[[89965,21822],[-62,-194],[46,11],[102,-155],[39,146],[60,-422]],[[45158,13636],[1338,129]],[[47070,13820],[-18,658],[-130,-12],[-39,1315]],[[46883,15781],[-114,-11],[-19,647],[-324,-26]],[[46001,15939],[-130,-116],[-15,-291],[-56,-136],[-47,-290],[109,-147],[-80,-172],[-323,95],[-97,-48],[-165,142],[-115,-46],[-101,-135],[-101,-20],[-5,-124],[-187,7],[-64,-42]],[[44624,14616],[-83,-199],[19,-389],[-38,-102],[47,-106],[-106,-85],[-81,155]],[[44382,13890],[13,-340],[763,86]],[[85932,55882],[29,-2],[155,-323]],[[66136,53803],[30,-132],[342,-50]],[[66508,53621],[411,632],[16,352]],[[66935,54605],[-129,-24]],[[66806,54581],[-123,-147],[-180,-65],[-135,-155],[-218,-119]],[[66150,54095],[-14,-292]],[[87858,45112],[-16,112]],[[87842,45224],[-68,50],[-33,-297],[62,-66],[55,201]],[[87665,43507],[54,-99],[38,-337]],[[88171,43069],[45,278]],[[88046,44235],[-81,81],[-48,386],[-110,-209],[82,-90],[-87,-166],[-48,296],[49,76],[-10,156],[-56,-21],[-92,113],[-55,-22],[-144,-251],[-256,-586],[115,-87],[-73,-232],[-1,-159],[62,-98],[51,68],[60,-111],[21,113],[240,15]],[[22894,7628],[593,230],[7,-52],[187,71],[-49,375],[256,95]],[[22604,9893],[290,-2265]],[[91937,29855],[78,172],[176,-87],[82,354],[-197,135],[99,111],[126,362]],[[92301,30902],[-61,100],[-114,-18],[-124,147]],[[92002,31131],[-26,-87],[-136,-138],[-27,-211],[-93,-166],[-139,120],[-93,-578]],[[91488,30071],[34,-209],[320,-216],[95,209]],[[70051,35930],[440,-75]],[[70792,37046],[-660,127]],[[70122,37007],[-71,-1077]],[[43604,48960],[12,-317]],[[43556,50319],[1,-24]],[[43557,50295],[47,-1335]],[[62973,44354],[-24,-142]],[[63933,44124],[38,594],[124,603],[2,141]],[[63715,45510],[-248,27]],[[74574,53679],[94,-148],[130,16],[46,-241],[83,-90]],[[74927,53216],[105,86],[67,-56],[253,246],[90,-6]],[[75442,53486],[29,192],[-100,121],[-107,253],[-134,168],[-8,146],[-102,260]],[[57165,40667],[755,-36]],[[57938,41857],[-360,25]],[[57578,41882],[-399,30]],[[76103,49237],[57,-181],[138,-278],[-80,-223]],[[76218,48555],[115,-87],[85,-229]],[[76418,48239],[99,0],[56,-109],[143,-51],[22,68]],[[76738,48147],[12,292],[-32,139],[166,221],[78,247],[99,62],[-46,147]],[[77015,49255],[-145,2],[-30,300]],[[76173,49388],[-70,-151]],[[80495,43250],[236,-91],[193,-260]],[[80924,42899],[95,179],[74,41]],[[80739,44333],[44,-122],[-28,-235],[-121,33],[-85,-170],[-108,-67]],[[80441,43772],[-17,-222],[71,-300]],[[90048,26996],[14,-940]],[[90062,26056],[380,-143]],[[90614,26572],[19,56],[18,627],[-90,2],[37,222],[107,19]],[[90705,27498],[26,237],[9,418],[-60,7],[86,393]],[[90766,28553],[-690,253]],[[90076,28806],[-15,7]],[[90061,28813],[-36,-130],[23,-1687]],[[60471,47562],[806,-41]],[[61291,48894],[-135,-3],[-56,89],[-169,77],[-135,285],[-108,109]],[[60688,49451],[-94,61],[-180,-83],[-92,-231]],[[60322,49198],[0,-275],[129,-395],[-50,-193],[34,-772],[36,-1]],[[53190,23926],[262,86],[278,270]],[[53730,24282],[104,94]],[[53834,24376],[87,209],[242,423],[32,144],[105,50]],[[54300,25202],[-1,171],[-171,-1],[-2,331],[-939,-3]],[[53187,25700],[1,-659]],[[53188,25041],[2,-1115]],[[85070,47745],[154,39],[138,-45]],[[85380,48290],[-198,-118],[-99,44],[-30,-89],[-137,-109],[-79,7],[20,128],[-56,95],[-166,-75]],[[84449,47877],[99,-647]],[[30731,28635],[19,-214],[369,100],[29,-330],[451,119],[38,-328]],[[31637,27982],[466,125],[-31,370],[94,23],[18,222],[-46,163],[34,389],[117,354],[-10,273],[79,28],[144,312],[45,-14],[49,330],[104,251],[161,304],[-16,164],[97,26],[-73,992],[41,9],[-52,648]],[[32858,32951],[-799,-197],[-815,-233]],[[27859,32645],[964,274]],[[28823,32919],[37,213],[-60,115],[-30,230],[63,157],[6,548],[31,79],[-59,142],[-52,324],[-67,88],[-82,292]],[[28610,35107],[-302,-63],[-63,143],[-221,-153],[-17,-114]],[[28007,34920],[-38,-144],[67,-35],[-80,-331],[-64,55],[-12,-505],[-40,-159],[105,-338],[-44,-288],[-88,-273],[-43,-280]],[[24802,4391],[1202,445],[690,237]],[[24443,7293],[131,-1058]],[[79256,80244],[125,-172],[-1,-188],[85,-120]],[[79465,79764],[215,15]],[[79680,79779],[48,126],[122,3],[131,105],[153,-58],[112,18],[62,189],[59,12],[63,207]],[[80430,80381],[79,935]],[[80509,81316],[9,118],[-291,113],[-17,-205],[-370,90]],[[79840,81432],[-283,89],[-20,-217],[-186,54],[-9,-111]],[[79342,81247],[-86,-1003]],[[73740,50392],[36,-101],[80,32],[-34,-160],[73,22]],[[73895,50185],[108,-121],[23,152],[130,-37],[189,60]],[[74345,50239],[-60,169],[85,28],[-20,261],[31,254],[-57,112],[83,278]],[[73973,51541],[-222,-544],[-144,-274]],[[50361,85015],[408,-1031]],[[50769,83984],[67,75],[539,-574]],[[51375,83485],[354,548],[-23,58]],[[51512,85018],[-725,1031]],[[50787,86049],[-218,-435]],[[48664,33227],[169,-135],[323,-182],[102,200],[78,-4],[206,172],[86,-17],[115,118],[193,61],[76,-33],[177,63]],[[50189,33470],[-18,1247],[9,1]],[[48666,35985],[-20,-2]],[[48646,35983],[27,-1332],[-17,-2],[25,-1337],[-17,-85]],[[85081,55250],[31,160],[117,136]],[[85229,55546],[68,112],[102,333],[112,32]],[[85212,57290],[-171,185],[-144,12],[-103,-174]],[[84794,57313],[8,-75],[-294,-539],[-93,-60]],[[84415,56639],[337,-825],[329,-564]],[[61965,38681],[1045,-76]],[[63035,39618],[-568,37]],[[62467,39655],[-270,20]],[[62196,39665],[-76,-313],[-86,-32],[-127,-279],[58,-360]],[[60117,30484],[555,-42]],[[60672,30442],[189,-14]],[[60861,30428],[52,1606]],[[60153,32088],[-12,-500]],[[66179,61037],[-184,17],[4,138]],[[65999,61192],[-516,40]],[[65483,61232],[-14,-553],[-63,-124]],[[65406,60555],[55,-63],[-7,-338],[59,-257],[-24,-68],[58,-227],[81,10]],[[81458,41088],[139,-44]],[[81597,41044],[766,-244]],[[82229,41816],[-101,293],[-157,249],[-23,116]],[[81948,42474],[-166,299],[-69,211],[-74,66]],[[81639,43050],[-181,-1962]],[[80984,41232],[474,-144]],[[81639,43050],[4,43]],[[80924,42899],[-49,-518]],[[80875,42381],[-26,-173],[130,-594],[5,-382]],[[64530,16515],[35,-210],[125,-227],[73,-65],[150,-286],[120,-94],[85,-164]],[[65118,15469],[320,-45],[16,327],[106,-16]],[[65560,15735],[-19,247],[-143,248],[-16,220],[-111,322]],[[65014,18789],[-473,64]],[[64541,18853],[-39,-990],[189,-22],[-13,-325],[-104,14],[-44,-1015]],[[64692,60801],[60,-174],[191,-288],[166,54],[72,-89],[77,124],[148,127]],[[65483,61232],[-118,7],[-159,131]],[[64420,61426],[-125,-73],[18,114],[-78,-25],[62,-205]],[[72527,31508],[327,-74]],[[72854,31434],[102,1018],[23,320]],[[72243,32939],[-96,-1328]],[[51896,53906],[-3,1839]],[[51893,55745],[-547,-11]],[[51346,55734],[-592,-18]],[[50754,55716],[8,-1496]],[[50762,54220],[3,-339]],[[75504,46998],[209,-76],[37,-190],[104,-157]],[[75854,46575],[41,77],[-68,215],[16,141],[-134,387]],[[75709,47395],[-96,324],[37,331],[-182,120]],[[75468,48170],[-142,-267],[-65,72]],[[75261,47975],[-28,-60],[-205,-79],[-50,-264],[-79,-73]],[[74899,47499],[5,-336],[-44,-90]],[[74860,47073],[38,-192],[154,-108],[97,85],[176,25],[153,195],[26,-80]],[[58021,83793],[1,44],[-312,3],[-252,140],[-418,339]],[[56860,83072],[-13,-855]],[[53165,37692],[527,5]],[[53692,37697],[44,138],[-35,160],[57,121],[-25,105],[63,137],[93,-114],[8,132]],[[53994,38822],[-642,-9]],[[53352,38813],[0,-168],[-157,-169],[-30,-169],[0,-615]],[[15317,11917],[668,324],[730,341],[1049,477]],[[17764,13059],[-116,756]],[[17648,13815],[-208,0]],[[16427,13651],[-66,55],[-272,49],[-107,70]],[[15982,13825],[-33,-76],[-214,-66],[-92,108],[-79,-24],[-10,-262],[-162,-210],[-157,-44]],[[15235,13251],[-107,-160]],[[15128,13091],[5,-177],[-98,-96],[149,-965],[133,64]],[[61107,46452],[-16,-1003],[-12,-225]],[[61580,46493],[-473,16],[0,-57]],[[38934,33547],[-58,1315],[-100,1655]],[[38776,36517],[-74,1247],[-66,1278]],[[38636,39042],[-735,-123],[-762,-142]],[[36925,38731],[93,-1518],[414,78],[30,-578],[122,-2072],[83,-1326]],[[83179,47114],[84,-159],[-30,-168],[33,-325]],[[83266,46462],[137,-256],[-21,-61]],[[83916,46341],[290,113]],[[84093,46980],[-226,897]],[[83867,47877],[1,138],[-192,85],[-41,102]],[[83635,48202],[-74,6],[-12,-170],[-370,-924]],[[57676,47167],[98,-15],[82,-152],[155,107],[114,-23],[21,-269]],[[58146,46815],[-12,1352]],[[58133,48222],[-572,-12],[-1,113],[-472,-16]],[[57088,48307],[6,-873]],[[60395,50549],[293,-8],[649,-48]],[[61337,50493],[13,520],[25,-2]],[[60393,50382],[-1,-137],[131,-129],[-95,-231],[211,-27],[56,-133],[-7,-274]],[[61302,48891],[35,1602]],[[57607,29293],[-188,9]],[[57419,29302],[-19,-1335]],[[42074,10258],[1703,235]],[[43777,10493],[-14,328]],[[43763,10821],[-27,656],[85,9],[-40,941]],[[43781,12427],[-211,-81],[-143,3],[-54,-60],[-142,24],[-82,150],[24,115],[-223,116],[-70,-51],[-113,99],[-111,-213],[55,-106],[-181,-157],[-104,96],[43,112],[-61,85],[-51,-78],[-36,243],[-78,-91],[-27,157],[-78,53],[-65,-122],[-62,60],[-49,-116]],[[42030,11180],[44,-922]],[[83854,49447],[169,214],[75,-64]],[[84478,49362],[36,270]],[[84514,49632],[59,673]],[[84573,50305],[-54,83],[-145,37],[-133,148]],[[84241,50573],[-66,-1],[-140,-211],[-58,57],[-126,-170],[-86,-10],[1,-177]],[[87336,40456],[200,-13],[93,-116],[95,-21]],[[87773,40607],[30,189]],[[87803,40796],[-143,8],[-158,135],[-114,36],[-76,216],[49,99],[-89,252],[-62,75]],[[87210,41617],[-71,59],[25,289],[-64,-51],[-14,-241],[-99,-179],[74,-711],[99,-245],[149,-15],[27,-67]],[[62362,43046],[-7,-352]],[[63051,43772],[-155,40],[6,-85],[-133,-178],[-36,-193],[-363,32]],[[62370,43388],[-8,-342]],[[85000,41905],[422,-670]],[[85422,41235],[-25,59],[126,241],[106,19],[121,144],[117,245],[117,-29]],[[85984,41914],[-116,692]],[[85868,42606],[-77,-91],[-104,278]],[[85687,42793],[-58,-98],[-181,-22],[-10,-150],[-151,-77]],[[67458,61061],[36,1486]],[[67494,62547],[-723,100]],[[66771,62647],[-34,-972]],[[58435,71005],[56,-2]],[[58491,71003],[462,-20]],[[58953,70983],[21,1160],[94,-7],[23,506]],[[58744,73331],[-126,5],[-15,-336],[-13,-1011],[-55,-82],[35,-150],[-56,-404],[-94,-181],[15,-167]],[[86094,60749],[63,-41],[36,-192],[68,60],[175,-167],[34,111],[155,204],[48,-34]],[[86673,60690],[-152,580],[-47,387],[-47,561]],[[86427,62218],[-38,-154],[5,-226],[-48,-354],[-42,-106],[-39,-304],[-132,-185],[-39,-140]],[[65868,18671],[30,659]],[[65077,20334],[-198,-3],[-192,-174]],[[64687,20157],[-93,-78]],[[64556,19185],[-15,-332]],[[66935,54605],[54,-30],[46,-311],[-50,-191],[-132,-294],[50,-405],[100,-156]],[[67003,53218],[101,59]],[[67104,53277],[71,17],[53,234],[140,222],[49,201],[-35,146],[53,130]],[[67435,54227],[-53,262],[53,309],[-51,77]],[[67384,54875],[-129,-240],[-103,-46],[-196,189]],[[66956,54778],[-78,-39],[-72,-158]],[[10552,41346],[9,-99],[98,-81],[36,-150],[116,-183],[210,201],[137,-31],[161,64],[204,-81],[63,26]],[[11595,41316],[29,605]],[[10370,43712],[-28,-190],[-77,-105],[161,-1019]],[[10426,42398],[57,-106],[-68,-77],[79,-248],[-11,-212],[60,-103],[-33,-92],[42,-214]],[[66141,54092],[9,3]],[[66956,54778],[12,309]],[[66396,55146],[-6,-27]],[[66390,55119],[-249,-1027]],[[80627,68590],[123,-125],[115,-307],[-45,-194],[66,-74],[-11,-128],[251,-405]],[[81126,67357],[113,174],[104,257],[180,214],[140,400],[40,50]],[[80926,69242],[-88,5],[-122,-100]],[[80716,69147],[-65,-115],[37,-88],[-78,-183],[17,-171]],[[52414,37455],[-6,1103]],[[52408,38558],[-180,161],[-268,137],[-123,-31]],[[51837,38825],[13,-1382]],[[99289,99464],[46,-120],[-24,-131],[50,-99],[259,-42],[50,96],[329,-1],[-90,92],[-322,198],[-71,-43],[-227,50]],[[29735,18409],[152,53],[81,-122]],[[31417,17358],[-82,766],[-64,765],[-75,736],[-95,-26],[-24,248],[-93,-26],[-58,656],[-183,-51],[-133,1320]],[[30478,23008],[-57,730]],[[30421,23738],[-107,-106],[-17,-168],[-111,-206],[17,-160],[-118,-426],[-73,-125]],[[30012,22547],[219,-2261],[35,10],[101,-1100],[-280,-81],[-74,-245],[-171,-217],[10,-109],[-117,-135]],[[68080,59192],[93,-4],[108,118],[53,-136],[179,-34]],[[68513,59136],[-13,679],[161,186]],[[68581,60501],[-153,17],[-322,169],[-27,121]],[[68079,60808],[-66,-72],[108,-285],[-125,-367],[17,-271],[-37,-127],[71,-182],[24,-213]],[[21756,26225],[449,163],[225,-1794]],[[24080,24142],[-63,118],[-69,278],[37,131],[-60,146],[-20,205],[-82,27],[-184,1528]],[[23588,27680],[-63,540]],[[23525,28220],[-655,-232],[93,-607],[-252,-117],[-21,-78],[-241,-21],[-16,-139],[-113,-51],[-99,-142],[-73,201],[-69,-49],[-45,-157],[-136,-161],[-71,-167],[14,-168],[-85,-107]],[[42972,34108],[38,5],[-43,1335],[65,7],[-6,338]],[[43026,35793],[-268,-17],[-810,-114]],[[41948,35662],[-62,-11]],[[41886,35651],[15,-334],[-69,-10],[60,-1330]],[[93425,27590],[27,-13],[382,-616]],[[94476,28522],[-105,86],[-3,418],[-126,140],[-128,49]],[[93894,28609],[-66,-111]],[[93828,28498],[-81,-129],[-103,-47]],[[93644,28322],[-49,-66],[-53,-374],[-65,50],[-52,-342]],[[67968,49240],[-95,214],[-66,349],[-50,-102],[-40,142],[-54,-84],[-28,218],[-51,-69]],[[67584,49908],[-5,-10]],[[67579,49898],[61,-129],[-63,-414],[44,-223],[-38,-437]],[[75632,53677],[142,-12],[6,-122],[227,-239],[119,-231]],[[76126,53073],[109,52]],[[76235,53125],[-40,183],[351,-313],[133,128]],[[76679,53123],[30,78],[-20,237]],[[76689,53438],[-148,173],[-176,54],[-81,303],[4,149],[-100,38],[-439,393]],[[75749,54548],[-7,-125],[-82,-121],[11,-198],[-52,-81],[40,-172],[-27,-174]],[[69214,59723],[172,-282],[8,-489]],[[69394,58952],[327,158],[466,269]],[[70187,59379],[-50,48],[-3,444],[-75,354],[-123,185],[-3,134]],[[69495,60553],[-158,-19]],[[58171,81063],[481,-22],[-6,-337],[193,-7],[4,335],[481,-26]],[[59324,81006],[2,88],[189,-8],[9,455],[64,-4],[8,397],[196,-8],[-24,168],[41,110],[-207,15],[3,168]],[[58245,81665],[-4,-141],[-115,-195],[45,-266]],[[82834,55862],[531,-167],[-34,-117]],[[83931,55425],[5,97],[-57,931],[150,56]],[[84029,56509],[-71,265]],[[83958,56774],[-154,-142],[-20,-95],[-128,-86],[-48,53],[-67,256],[-82,-16],[-164,251]],[[83295,56995],[-359,121]],[[47296,87680],[25,1]],[[47290,89343],[-1399,-70]],[[45891,89273],[42,-1716]],[[76330,50316],[3,149],[85,124],[52,501],[-44,98]],[[76382,51134],[-133,-148],[-148,-288],[-70,116],[-73,-120],[-140,-75]],[[75818,50619],[-36,-159]],[[75782,50460],[23,-128],[-54,-85],[92,-216],[148,-210],[-36,-110],[223,84]],[[28037,37138],[-230,86],[-123,-37],[-12,-257],[29,-128],[-80,-21],[-256,217],[-211,238]],[[27154,37236],[-262,-1283]],[[26892,35953],[526,-139],[349,105],[181,106]],[[25866,45692],[767,230],[-3,32],[497,145]],[[27127,46099],[-167,254],[-92,1045]],[[26868,47398],[-370,-87],[-645,-211]],[[25853,47100],[104,-188],[149,-452],[-92,-270],[-162,-383],[14,-115]],[[77015,49255],[53,163],[95,34],[10,118]],[[77173,49570],[160,227],[26,170]],[[77359,49967],[-127,143],[28,153],[-88,32],[-118,-70],[-70,54]],[[76984,50279],[-143,-103]],[[60637,29114],[705,-58]],[[61342,29056],[71,272],[-16,190]],[[61485,30375],[-624,53]],[[60672,30442],[-35,-1328]],[[13339,11714],[107,-14],[1,-189],[87,-61],[40,74],[303,-87],[136,176],[62,13],[33,-162],[112,-141],[36,41]],[[14256,11364],[-307,1857]],[[13949,13221],[-123,-62],[-55,-138],[-139,-78],[-272,-294],[-107,-209],[46,-261]],[[66513,29628],[390,-60]],[[66903,29568],[-6,316],[-78,272],[-42,614],[37,164]],[[66814,30934],[-272,40]],[[66542,30974],[-31,-671],[35,-5],[-33,-670]],[[28773,16311],[-2,-152],[121,-106],[62,69],[97,-193],[81,29],[72,-117]],[[29735,18409],[-151,-167],[-14,-109],[-142,-48],[-132,28],[-72,248],[-90,64]],[[29134,18425],[-102,-177],[-204,-257],[34,-189],[-28,-211],[22,-356],[-39,-33],[29,-199],[-64,-188],[40,-173],[-110,-13]],[[28712,16629],[-9,-227],[70,-91]],[[75561,57028],[29,-24],[251,248],[100,139],[100,-63],[196,100]],[[76392,58169],[-84,182],[-225,218],[-78,208],[-199,-19],[-92,61]],[[75714,58819],[-35,-464],[-80,-64],[-207,-636]],[[75392,57655],[201,-335],[-32,-292]],[[96885,97842],[-76,195],[15,89]],[[96850,98381],[-179,141],[-133,52]],[[96538,98574],[28,-372],[83,-141]],[[20249,33974],[690,262],[-155,1257],[4,2128],[271,98]],[[21059,37719],[-54,477],[-7,581],[-68,330],[-53,121],[-35,540],[-142,405],[-69,30],[-136,1118]],[[20495,41321],[-1146,-429]],[[19349,40892],[126,-884],[311,-2554],[127,-924],[295,-2359],[41,-197]],[[59913,71924],[284,25],[98,101],[6,192],[190,-10],[7,336]],[[60498,72568],[7,335]],[[60505,72903],[-382,21],[5,167],[-287,15]],[[59640,72611],[31,-140],[-16,-218],[72,-144],[-4,-171],[190,-14]],[[59895,70945],[1201,-55]],[[61096,70890],[-26,167],[23,384],[53,267],[-16,277]],[[61130,71985],[-43,139],[-326,433],[-263,11]],[[59913,71924],[-18,-979]],[[92189,21096],[526,511],[165,52]],[[92880,21659],[-29,109],[139,571],[-78,315]],[[92912,22654],[-577,-400],[-69,101],[-89,-185],[-65,-5],[-113,-198]],[[91999,21967],[-21,-96],[106,-172],[-31,-237],[187,-139],[-51,-227]],[[61205,69380],[57,74],[-47,145],[22,149],[-116,100],[-2,82],[-127,139],[-35,235]],[[60957,70304],[-159,-168],[-9,-170],[-186,-23],[-47,-136]],[[60556,69807],[-53,-57],[3,-246],[57,-142],[47,-340],[-23,-84],[-30,-705]],[[45054,41061],[161,17]],[[45215,41078],[777,62]],[[45992,41140],[-11,171],[-28,1179]],[[45047,42403],[-32,-3]],[[85232,36246],[95,-322],[-24,-377],[47,-302]],[[85350,35245],[-96,-87],[-75,-193],[-7,-404],[-91,-232]],[[85081,34329],[16,-80],[141,-119],[92,-19]],[[85330,34111],[32,303],[-29,583],[203,-156],[181,50],[34,205],[39,-10]],[[85790,35086],[36,-13],[33,215],[144,-87],[74,202]],[[86077,35403],[-468,611],[1,20]],[[85610,36034],[-76,46],[-252,285],[-61,-75]],[[85221,36290],[11,-44]],[[87253,42560],[46,-130],[99,-47],[-11,-242],[250,11]],[[87665,43507],[-118,-163],[-108,-8],[-104,-95],[-122,-215],[-17,98],[-81,-35],[12,194],[-45,-11],[-18,-335],[69,-336],[139,96],[-19,-137]],[[54866,31644],[757,-11]],[[55623,31633],[8,1327]],[[55631,32960],[-760,11]],[[73968,60473],[57,-116],[268,-50],[32,-81]],[[74325,60226],[259,146],[30,108],[91,-29]],[[74705,60451],[7,847]],[[73907,61469],[47,-373],[-22,-13],[61,-348],[-25,-262]],[[52915,45853],[574,4]],[[53489,45857],[341,2]],[[53831,47208],[-6,347]],[[53825,47555],[-76,-259],[-157,19],[-92,-89],[-64,125],[-61,-70],[-42,146],[-100,-53]],[[53233,47374],[-119,-67],[-1,83],[-158,-42],[-14,-241],[-128,-198],[-13,-131],[-133,-300],[34,-223],[66,-53],[40,-168],[108,-181]],[[86529,41284],[-104,-41],[111,174]],[[86536,41417],[-79,28],[-74,-93]],[[86383,41352],[-171,-98],[-43,-355],[300,-108],[60,493]],[[93751,17589],[149,-185]],[[93900,17404],[105,361],[-42,69],[132,227],[53,342],[139,34],[16,215]],[[94348,19224],[-88,312],[-151,-103],[-224,-231],[-45,224],[-203,-84]],[[93637,19342],[-25,-101],[142,-666],[14,2],[0,-614],[-60,-281],[43,-93]],[[67996,46357],[103,-251],[-58,-150]],[[68041,45956],[612,-95]],[[68653,45861],[17,335]],[[68239,47288],[17,-184],[-118,-115],[-4,-265],[-81,-114],[-57,-253]],[[66030,64672],[-13,-337]],[[66017,64335],[-2,-55],[282,-38]],[[66929,64167],[13,337]],[[66942,64504],[-92,66],[16,389],[-58,120]],[[66808,65079],[-186,23],[-3,-55],[-571,72]],[[66048,65119],[-18,-447]],[[55615,30691],[-752,12]],[[27182,38427],[89,136],[131,-62],[73,219],[183,-171],[78,10],[141,-171],[128,29],[165,-131]],[[28170,38286],[32,126],[-34,227],[-89,119],[78,348],[121,51],[55,174],[-20,118],[214,74],[62,190],[-21,74],[59,230],[-9,165],[-70,251],[69,50],[166,453],[-14,164],[315,89]],[[29084,41189],[56,15],[-30,330]],[[29110,41534],[-645,-178]],[[28465,41356],[-652,-185]],[[27813,41171],[-206,-52],[66,-189],[-113,-360],[-21,84],[-137,77],[-132,303],[-140,78],[-68,-40],[58,-170],[-13,-142],[57,-94],[-70,-159],[7,-175],[-101,-178]],[[27000,40154],[12,-184],[71,-165],[-20,-190],[56,-57],[-36,-242],[8,-363],[38,-29],[-17,-472],[70,-25]],[[79696,49043],[219,-255]],[[80206,49242],[12,64],[-167,800],[-70,386]],[[79981,50492],[-2,-5]],[[79522,49992],[31,-216],[177,-337],[126,93],[-96,-206],[41,-107],[-105,-176]],[[28465,41356],[-38,414]],[[28427,41770],[-85,903],[-88,-25],[-153,1657]],[[28101,44305],[-925,-268],[11,-47],[-274,-80]],[[26913,43910],[97,-1024]],[[27010,42886],[8,-85],[96,28],[76,-152],[292,80],[27,-294],[58,15],[78,-893],[236,-110],[16,-168],[-84,-136]],[[65160,29464],[767,-94],[17,335]],[[65944,29705],[28,664],[-26,3],[31,672]],[[65790,31065],[-753,93]],[[65037,31158],[-15,-334]],[[65022,30824],[-7,-333],[-46,-1001]],[[51994,23798],[338,10],[23,-114],[808,12]],[[53163,23706],[27,220]],[[53188,25041],[-669,-5]],[[51990,24356],[4,-558]],[[83487,38702],[104,88],[265,37],[117,120]],[[83973,38947],[-65,250],[-63,715],[-115,448]],[[58920,25338],[614,-40],[371,-8]],[[59905,25290],[18,664]],[[59923,25954],[12,554],[-282,14]],[[59653,26522],[-51,-59],[-317,-24],[-33,-131],[-263,-406]],[[58989,25902],[-112,-116]],[[58877,25786],[43,-448]],[[32046,12813],[631,167]],[[32677,12980],[-18,218],[127,32],[-28,328],[189,48],[-14,163],[190,48],[-13,164],[172,42],[-90,1091],[-60,41],[-82,285],[103,109],[-10,330]],[[31827,15036],[30,-44],[73,-976],[-186,-54],[53,-516],[-27,-64],[68,-404],[190,51],[18,-216]],[[80726,59474],[142,252]],[[80868,59726],[127,222],[13,449],[418,-109]],[[81770,60981],[-232,280],[61,202],[-151,59],[-72,103],[-68,-124],[-77,160],[-28,-226],[-212,380]],[[80991,61815],[-45,-100],[18,-226]],[[85220,46667],[348,-1126]],[[85568,45541],[74,-20]],[[86037,45758],[-60,298],[165,202],[54,174]],[[86196,46432],[-136,19],[-46,104],[26,219]],[[85808,47258],[-82,75],[-133,-416],[-60,65],[-119,-88],[-69,-142],[-52,32],[-73,-117]],[[39600,32972],[379,59]],[[39979,33031],[-189,3666]],[[39790,36697],[-1014,-180]],[[58528,25250],[55,-18],[-16,-876],[-56,2]],[[58511,24358],[-10,-661]],[[58501,23697],[423,-20]],[[58924,23677],[-12,331]],[[58912,24008],[25,391],[-68,108],[51,216],[23,325],[-23,290]],[[58877,25786],[-82,-3],[-117,-122],[-120,44],[-30,-455]],[[65519,55017],[62,71],[27,-137],[-90,-169],[83,12],[111,171],[21,138],[102,-21]],[[65835,55082],[62,139]],[[65897,55221],[-49,381],[-65,153],[100,82]],[[65883,55837],[1,130],[-73,-21],[-49,174],[78,183],[-25,64]],[[65815,56367],[-56,280],[-76,68],[-132,-244]],[[65551,56471],[-91,-263],[-101,-156],[-179,-455]],[[65180,55597],[85,-266],[152,-131],[-4,-113],[106,-70]],[[87522,34710],[145,-126],[137,-184],[76,-274],[138,-213]],[[88018,33913],[161,334],[-89,407],[-59,4],[-14,349],[52,42],[0,265]],[[87882,35669],[-135,-121],[25,-146],[-112,-189],[-74,100],[-117,-273],[-98,42],[-54,-186]],[[58651,75507],[7,501],[192,-8],[13,676],[188,-10],[13,666]],[[59064,77332],[-289,16],[-92,340],[-174,9],[-27,350]],[[58482,78047],[-89,40]],[[58393,78087],[-43,-362],[-129,-144],[43,-194],[-74,-295],[-92,-115],[42,-138],[-104,-77],[-104,-230]],[[57932,76532],[13,-287],[39,-97],[-52,-228],[13,-108],[-109,-266]],[[71665,53440],[97,-67]],[[71762,53373],[107,202],[186,25]],[[72055,53600],[65,383],[120,185],[-13,64]],[[71752,54698],[-93,-1024],[-43,-103],[49,-131]],[[27561,66948],[-227,2566],[-5,20]],[[24134,68660],[303,-3047],[4,179],[72,66],[100,222],[903,260],[99,-987],[972,273]],[[29610,52658],[-435,5097],[305,78],[-47,552],[-29,-7],[-226,2652],[-13,-4],[-54,669],[-54,328],[6,279],[-118,1381],[-18,-5],[-112,1328],[-58,-16],[-68,800]],[[28689,65790],[-193,-85]],[[19662,66387],[63,-52],[132,60],[169,-33],[6,-131],[136,-165],[38,-233],[-45,-485]],[[22431,64731],[-351,3300]],[[21894,69792],[-2500,-2618],[57,-202],[4,-258],[95,-94],[112,-233]],[[58283,22050],[462,-23]],[[58745,22027],[-42,50],[-23,282]],[[58680,22359],[10,262],[171,17],[205,472],[-3,165],[-139,402]],[[58501,23697],[-8,-439]],[[65091,58254],[248,-38],[5,-98]],[[65344,58118],[578,-39]],[[65642,59365],[-124,-239],[-148,14],[-39,80],[-204,40],[-21,79]],[[74008,48295],[131,-370]],[[74139,47925],[164,68],[49,-37]],[[74352,47956],[57,52],[73,228],[73,-24],[80,165],[-20,75]],[[74615,48452],[-190,450]],[[74425,48902],[-90,-65],[-63,-150],[-112,-51],[-100,-287],[-52,-54]],[[56661,29329],[758,-27]],[[57626,30631],[-512,20]],[[57114,30651],[-440,13]],[[75404,52020],[156,-209],[128,129],[72,-178],[102,-98],[82,-194],[34,105],[132,6]],[[76386,52331],[-79,298],[47,230],[-9,176],[-110,90]],[[76126,53073],[1,-317],[-114,-108],[32,-155],[-225,-145],[-68,-257],[-88,-77],[-99,127],[-64,241]],[[75501,52382],[-39,-80]],[[56185,68437],[155,54],[12,83],[108,-40],[122,237],[63,-84]],[[57453,68991],[13,978]],[[57466,69969],[-178,22],[-48,-65],[-95,59],[-21,215],[-271,-47],[-68,-108],[-186,13],[-99,127],[-146,-70]],[[56354,70115],[-74,-166],[-101,-61]],[[56179,69888],[-10,-1440],[16,-11]],[[39868,23798],[1517,249]],[[41237,27166],[-503,-80],[-1103,-156]],[[39631,26930],[63,-1343],[56,-988],[13,5],[45,-816]],[[81805,62713],[66,-246],[-8,-261],[119,-69],[-32,-132],[124,-132]],[[82703,62924],[-32,163],[-77,25],[-176,270],[-34,-196],[-106,79],[-49,-152],[-110,-145],[-150,39],[-147,-80],[-17,-214]],[[39979,33031],[967,139]],[[40946,33170],[-114,2339]],[[40832,35509],[-57,1165]],[[40775,36674],[-25,513]],[[40750,37187],[-977,-152],[17,-338]],[[94136,26140],[77,20]],[[93583,26248],[-3,-105]],[[93176,27021],[185,-260],[-9,-188],[47,-19],[-76,-226],[152,-90],[79,106]],[[93848,26087],[30,168],[45,-90]],[[93425,27590],[-19,-125],[-182,90]],[[93224,27555],[-48,-534]],[[71640,51261],[81,123],[80,-3],[26,372],[-46,182],[108,91],[67,-135]],[[71956,51891],[33,14],[83,309]],[[72072,52214],[-60,-56],[-45,121],[-97,-43]],[[71870,52236],[-88,9],[-28,199]],[[71754,52444],[-409,6]],[[28556,24819],[188,58],[33,-328],[187,54],[16,-164],[86,25],[56,-486],[94,27],[31,-319],[269,79],[54,-560]],[[29835,22663],[106,22],[71,-138]],[[30421,23738],[-168,1859]],[[30253,25597],[-236,133],[-72,-84],[-123,78],[-60,-128],[-78,76]],[[29684,25672],[-46,36],[-111,-105],[-106,148],[-217,-63],[5,-55],[-217,-64],[11,-110],[-218,-64]],[[73880,64987],[-67,522],[-129,21],[12,185]],[[73091,65845],[-38,-234]],[[47174,32378],[-15,586]],[[46036,35790],[-940,-104]],[[45096,35686],[-937,-114]],[[44159,35572],[-55,-8],[52,-1330],[-46,-6],[48,-1313],[-29,-3],[34,-820]],[[75585,65905],[66,-143]],[[75651,65762],[133,133]],[[75611,66781],[-155,-104],[-130,-301]],[[17529,62842],[1101,400],[1507,506]],[[19662,66387],[-2546,-523]],[[17116,65864],[218,-1712],[39,14],[156,-1324]],[[22894,7628],[34,-251]],[[68199,42569],[-61,-134],[26,-112],[100,-87],[165,-406],[183,-153],[60,-110]],[[68672,41567],[31,583]],[[68703,42150],[57,1005]],[[68212,43245],[-40,-280],[27,-396]],[[71178,60347],[7,-357],[-35,-489]],[[71150,59501],[-13,-218],[64,-70]],[[71201,59213],[121,142],[191,38],[89,-83]],[[71602,59310],[85,320],[137,166]],[[71824,59796],[16,550],[-25,363]],[[71815,60709],[-230,-169],[-220,-33],[-176,144]],[[71189,60651],[-45,-201],[34,-103]],[[71736,58589],[232,-84],[126,49]],[[72094,58554],[148,113]],[[72242,58667],[58,676],[86,313]],[[72298,59678],[-321,114],[-48,61],[-105,-57]],[[71602,59310],[-34,-195],[121,-451],[47,-75]],[[76856,51868],[59,-99],[101,-568],[-34,-212],[-44,6],[0,-538],[-37,-101],[83,-77]],[[77359,49967],[89,252],[97,11],[110,107],[132,229],[261,18]],[[78048,50584],[-515,1073]],[[77533,51657],[-60,136],[-155,122],[-167,202]],[[77151,52117],[-17,30]],[[77134,52147],[-126,-170],[-66,96],[-119,-143]],[[74518,49899],[266,59],[74,-87]],[[74858,49871],[38,79],[223,224]],[[75119,50174],[-100,447]],[[74995,50626],[-106,-133],[-221,39],[-109,-134],[-11,-171],[-65,42]],[[74483,50269],[-5,-311],[40,-59]],[[70149,30324],[117,1667]],[[70266,31991],[-681,127]],[[69585,32118],[-46,-577],[-48,-365],[-86,-381]],[[70367,55755],[94,-90],[168,-22]],[[70629,55643],[361,-22]],[[70990,55621],[-6,592]],[[70921,56767],[-22,140],[-157,36],[-113,-78],[-100,162],[-57,-77],[-72,305]],[[70400,57255],[-81,-24],[-12,-127],[-150,-183],[-73,-233]],[[70084,56688],[107,-25],[59,-254],[15,-251],[102,-403]],[[82165,58802],[95,-6],[61,-100],[148,-57],[75,-109],[424,-48]],[[82968,58482],[87,135],[16,201],[133,-19],[83,56]],[[83287,58855],[-182,256],[-7,148],[59,157],[-92,255],[16,95],[-116,120]],[[82965,59886],[-414,118]],[[82551,60004],[25,-195],[78,-211],[-63,-293],[-64,-65],[27,-132],[-112,-280],[-111,150],[-139,-59],[-27,-117]],[[39857,79187],[1551,2553]],[[41408,81740],[442,719]],[[41850,82459],[-88,118],[-54,295],[-195,-89],[-98,113],[-49,-44],[-156,87],[-47,-37],[-53,245],[-89,123],[-12,161],[-55,10],[-13,175],[-75,91],[-92,619],[-70,9],[-67,349],[64,78],[-97,183],[-157,49],[-40,175],[-174,238],[-41,272],[-215,-52],[-104,22],[-89,-164],[-183,-103],[-131,-313],[-100,-151],[-166,-39],[-146,-144],[-120,-280]],[[38938,84455],[4,-47],[191,-4348]],[[36150,24798],[1273,268],[189,17],[653,114]],[[38265,25197],[-18,163],[-85,1338],[-69,1330],[-13,-2],[-76,1247]],[[36279,28918],[77,-1205],[-22,-4],[89,-1333],[-29,-6]],[[36394,26370],[44,-602],[-62,-106],[47,-68],[-51,-130],[9,-180],[-65,18],[-90,-117],[26,-137],[-102,-250]],[[58680,22359],[551,-26],[-5,-330],[574,-27],[7,328]],[[59807,22304],[36,1643]],[[59843,23947],[-931,61]],[[59843,23947],[7,337],[32,-2],[23,1008]],[[41633,56906],[1468,177]],[[43036,58797],[-1544,-187]],[[84643,36234],[230,-15],[187,-64],[63,112],[109,-21]],[[85221,36290],[-109,132],[-250,175],[35,76],[-180,225],[-357,591],[-28,135],[-140,352]],[[84192,37976],[-40,117]],[[84152,38093],[-129,-408]],[[84023,37685],[180,-503],[-10,-88],[158,-319],[-12,-105],[304,-436]],[[67768,38105],[-32,-661]],[[67736,37444],[-44,-914]],[[67692,36530],[93,123],[114,-36],[-31,139],[165,51],[165,-31]],[[68198,36776],[85,1465]],[[68283,38241],[-89,104]],[[68194,38345],[-73,137],[-142,116],[-184,14]],[[67795,38612],[-27,-507]],[[85959,33079],[26,-658]],[[85985,32421],[-14,-414],[131,-64]],[[86102,31943],[47,11],[588,-210]],[[86737,31744],[-76,496],[55,57],[-62,325]],[[86654,32622],[-253,263],[-442,194]],[[56248,47843],[-2,-268]],[[56246,47575],[145,-141],[101,108],[100,-182],[57,12],[127,-288],[133,111]],[[57088,48307],[-5,325]],[[57083,48632],[-260,2],[-570,-31]],[[56253,48603],[-5,-760]],[[79230,36254],[422,-132],[185,1],[98,143]],[[79935,36266],[-86,296],[65,549]],[[79328,37295],[-19,-186]],[[79309,37109],[-79,-855]],[[79099,34871],[638,-151],[199,-96]],[[80054,35832],[-119,434]],[[79230,36254],[-3,-31]],[[79227,36223],[-128,-1352]],[[85946,33345],[13,-266]],[[86654,32622],[23,121],[163,121],[91,1],[51,276],[43,8],[53,303],[76,30]],[[87154,33482],[-60,177]],[[86632,34657],[-44,60],[-312,-73]],[[86276,34644],[-80,-373],[-41,-326],[-75,54],[-104,-275],[-30,-379]],[[61470,38378],[-189,13]],[[60708,38098],[-38,-1347]],[[58657,39583],[20,1010]],[[57920,40631],[-16,-1013]],[[47877,55575],[793,46]],[[49450,57731],[-4,253],[-161,12],[-129,-97],[-46,-115],[-89,-17],[-112,-228],[-204,-14]],[[48705,57525],[7,-355],[-90,-164],[-79,-295],[-132,-268],[-193,-19],[-75,-138]],[[48143,56286],[-31,-143],[-102,-97],[-133,-471]],[[47583,57126],[542,25],[18,-865]],[[48705,57525],[-19,1003],[3,329]],[[48689,58857],[-750,-54]],[[47939,58803],[-376,-23],[-8,-319],[28,-1335]],[[37131,64566],[756,127]],[[37831,65684],[-51,1021],[-90,1625],[-6,356],[-34,-5],[-38,639],[-372,-34],[-379,-66]],[[35022,67543],[42,-691],[578,147],[41,-671],[231,43],[98,-1665]],[[44703,16885],[-69,-119]],[[44634,16766],[46,-1206],[-92,-10],[36,-934]],[[32596,67063],[89,-1334],[118,-1660],[-17,-3],[88,-1217]],[[68626,40814],[534,-86]],[[69160,40728],[126,-20],[29,497]],[[69361,42042],[-658,108]],[[68672,41567],[-25,-419]],[[67549,55296],[261,-205],[209,-224]],[[68019,54867],[34,31],[157,-116],[50,-114]],[[68260,54668],[134,118],[-4,340],[21,474],[-13,461]],[[68398,56061],[-276,57],[1,-118],[-388,1]],[[67735,56001],[-83,-255]],[[67652,55746],[-103,-450]],[[83287,58855],[224,320],[51,398]],[[83562,59573],[46,266],[-167,586]],[[83441,60425],[-444,-547],[-32,8]],[[66425,51595],[-763,103]],[[65662,51698],[-13,-339],[-46,5]],[[65603,51364],[49,-143],[30,-432],[-25,-107]],[[66986,51343],[409,-55],[79,53]],[[67461,52570],[-84,-84],[-337,46]],[[63011,47140],[-22,-173],[32,-142],[-73,-636],[11,-120]],[[78077,64309],[96,-249],[82,-56],[61,65],[224,-70]],[[79077,64294],[-187,141],[23,194],[85,165],[-85,272],[36,284],[145,183],[-24,151]],[[79070,65684],[-157,-93],[-58,-202]],[[78855,65389],[-89,-263],[-144,-198],[-330,-266],[-143,-144]],[[78149,64518],[-72,-209]],[[77427,62152],[16,-41]],[[77450,62092],[-58,-381],[-85,-48],[14,-196],[-77,-379],[-35,-294],[-54,-51],[61,-279]],[[84337,48142],[-330,-89],[-140,-176]],[[81586,63045],[65,-19],[154,-313]],[[81896,64735],[-114,-125],[-75,-208]],[[81707,64402],[27,-177],[-91,-232],[-24,-246],[16,-192],[-67,-115],[67,-174],[-79,-147],[30,-74]],[[87091,45837],[204,194],[131,30],[206,154],[2,221],[-85,112],[38,506]],[[87587,47054],[-108,-83],[-6,-222],[-68,-22],[-51,-153],[-155,-3]],[[86928,46165],[15,-144],[148,-184]],[[74421,47735],[130,111],[348,-347]],[[75261,47975],[-68,140],[9,311],[-194,364]],[[75008,48790],[-107,-60],[-44,-220],[-105,-75],[-137,17]],[[74352,47956],[69,-221]],[[74289,56615],[124,-43],[123,138],[-1,-257],[223,31],[56,-36],[45,-287],[58,109]],[[74917,56270],[133,297]],[[75050,56567],[-233,491],[71,129],[-146,224],[-81,-6],[-55,250],[-56,96]],[[74550,57751],[-161,-505]],[[74389,57246],[-78,-164],[-76,-34],[-51,-204]],[[28815,9121],[1222,376],[-16,162],[189,59],[-17,163],[94,28],[-21,218],[844,234]],[[31110,10361],[-102,1082]],[[31008,11443],[-379,-107],[-31,324],[-378,-110],[-39,397],[-180,-95]],[[37005,54278],[862,152]],[[37867,54430],[-34,122],[52,190],[-65,252],[-16,438],[-157,15],[-109,145],[24,175],[-47,102],[33,189],[-50,27],[89,250],[-74,140],[41,188],[-56,547]],[[37498,57210],[-125,76],[12,178],[-53,223],[-143,340],[-77,82]],[[70829,37590],[27,445],[-56,11],[36,504]],[[44722,20429],[230,-51],[6,171],[134,-38],[141,131],[61,-89],[43,109],[165,-54],[158,-180],[135,-84],[1,-109],[172,-42],[-8,-135],[155,-163],[24,-170],[95,-25]],[[46912,19211],[53,250],[-53,309],[30,123],[-119,388],[15,284],[153,414],[-10,87]],[[46981,21066],[-1389,-126],[-885,-96]],[[44707,20844],[15,-415]],[[72575,55377],[34,-9]],[[72609,55368],[29,201],[-21,167]],[[72617,55736],[-272,182],[-63,381]],[[72282,56299],[-157,-236],[-215,-54],[-20,-98],[-186,123]],[[71704,56034],[15,-477]],[[57466,69969],[12,1073]],[[57478,71042],[7,531]],[[57485,71573],[-1122,40]],[[56363,71613],[-9,-1498]],[[92380,15002],[231,909],[-63,48],[175,608],[69,394],[195,-344],[256,547],[-50,89],[430,-42],[38,238],[90,140]],[[93637,19342],[-49,-14],[-33,158],[-94,-60],[-47,-131],[6,-216],[-83,-147],[-246,490],[-66,-41],[42,162],[90,-5],[163,234],[-33,234],[34,68],[-70,122],[52,171]],[[93001,20597],[-316,-1810]],[[91991,15064],[104,-102],[-19,-103],[159,66],[68,236],[93,-17],[-16,-142]],[[75008,48790],[79,53],[-45,88],[172,77],[-8,98],[125,29],[-52,125]],[[75279,49260],[-131,-1],[3,183],[-138,-34],[-162,152]],[[74851,49560],[-128,-292],[-119,-189],[-164,-50],[-15,-127]],[[82046,57419],[-202,65]],[[81844,57484],[-74,-278],[-249,-311],[-22,-157],[-66,34],[-160,-57]],[[81273,56715],[-47,-167],[12,-150],[105,-87],[-34,-187],[68,3],[-74,-319]],[[94690,19848],[-62,18],[-72,313],[-75,-2],[-83,189],[-76,67],[-28,326],[50,102],[-32,123],[-82,-58],[-108,161]],[[56448,27738],[250,234],[267,170],[66,-58],[-16,-269]],[[86997,51100],[63,-338],[-3,-251],[36,-227],[-94,-163],[-2,-157]],[[86997,49964],[230,-330],[9,-330]],[[87236,49304],[44,327],[152,49],[203,228],[16,87]],[[87651,49995],[-71,74],[-508,1255]],[[87072,51324],[-23,-8]],[[32858,32951],[967,228],[1473,330]],[[35298,33509],[-46,665],[30,6],[-125,1643],[-681,-134],[-71,977],[20,5],[-112,1515]],[[34313,38186],[-543,-113],[-1305,-306]],[[30837,37373],[190,-2212]],[[25851,11470],[13,173],[94,32],[-19,162],[85,88],[13,172],[62,22],[7,221],[122,41],[-18,165],[94,33],[-60,96],[-102,-98],[-80,151],[-56,484],[26,9],[-37,322],[-191,-26]],[[25804,13517],[-154,103],[1,-318],[-133,-162],[-65,-220],[52,-216],[-45,-67]],[[85193,43601],[-32,-24]],[[85161,43577],[32,24]],[[63737,29608],[293,-40]],[[65022,30824],[-562,84],[-2,-49],[-568,71]],[[63890,30930],[58,-269],[119,-89],[-24,-680],[-212,-28],[20,-99],[-93,-49],[-22,-108]],[[63736,29608],[1,0]],[[96080,96395],[186,-2]],[[96069,96833],[11,-438]],[[45455,22729],[1739,155]],[[47194,22884],[95,356],[-72,239],[80,278]],[[47038,25074],[-27,206],[-203,299],[-101,-41],[-99,-214],[-61,2],[-9,192]],[[46538,25518],[-128,16],[-45,-78],[-138,40],[-169,159],[-176,-105]],[[45882,25550],[31,-944],[-565,-53],[27,-169],[44,-1326],[36,-329]],[[80139,67358],[110,-276],[337,105],[308,-125]],[[80627,68590],[-46,-137],[-5,-201],[-113,-135],[14,-76],[-100,-211],[14,-202],[-105,-116]],[[80286,67512],[-147,-154]],[[76405,56279],[127,-269]],[[77426,56362],[4,219]],[[77430,56581],[-59,-86],[-231,312],[-5,188],[-51,130],[-62,-91],[-79,35]],[[75501,52382],[14,120],[-69,158],[23,339],[95,273],[22,248]],[[75586,53520],[-144,-34]],[[74927,53216],[-43,-239],[-68,38],[-90,-198],[39,-157],[-18,-165]],[[67104,53277],[124,-202],[324,-125],[46,-133]],[[67824,52882],[1,211],[66,96],[91,-101],[15,176],[73,-29]],[[68070,53235],[-407,610],[-61,69],[-3,164]],[[67599,54078],[-35,101],[-129,48]],[[81853,60179],[-62,-1474]],[[81791,58705],[35,-71],[71,195],[95,5],[89,-206],[84,174]],[[82551,60004],[-1,0]],[[72935,56155],[30,-17],[2,-350],[63,-241],[169,-122],[144,15],[147,145],[91,-18]],[[73676,56145],[-137,203],[-13,115],[-133,74],[-47,307],[25,197]],[[73371,57041],[-169,46],[-48,-57],[-115,147]],[[73039,57177],[-36,-16]],[[73003,57161],[52,-211],[-97,-401],[-23,-394]],[[65815,56367],[49,0],[219,192],[150,-17],[67,48],[133,269]],[[66433,56859],[-814,87],[-80,25]],[[65539,56971],[-124,31]],[[65415,57002],[55,-458],[81,-73]],[[65297,57023],[-95,9]],[[65202,57032],[-63,-184],[45,-133],[113,34],[0,274]],[[76555,47185],[97,97],[50,193]],[[76702,47475],[17,296],[54,109],[-3,266],[-32,1]],[[76418,48239],[2,-463],[-81,-25]],[[76339,47751],[63,-248],[153,-318]],[[78430,62392],[144,253]],[[78077,64309],[-185,-412],[-78,-54],[-60,-212]],[[51379,83478],[563,-1002]],[[51942,82476],[9,75],[332,-316],[98,-169]],[[52381,82066],[52,84],[228,-22],[46,387]],[[52707,82515],[98,318]],[[52805,82833],[-283,642],[-303,608]],[[51375,83485],[4,-7]],[[17648,13815],[306,54],[96,-150],[88,-40],[114,126],[89,-8]],[[18341,13797],[-173,1166],[277,125],[-45,319],[154,67],[-231,1606],[-25,-11],[-46,322]],[[17483,17060],[-179,-78],[41,-270]],[[82905,36697],[-19,-25]],[[82886,36672],[393,-154]],[[83279,36518],[-145,301],[114,184],[-25,242],[84,40],[54,249],[-129,731]],[[95559,29277],[84,40],[164,-94],[89,-102],[34,-256],[146,288],[-63,194],[-166,63],[-245,-65],[-43,-68]],[[84005,63504],[21,68]],[[83562,65570],[-152,-51],[-60,-133],[-145,-91],[-90,-172],[-155,-138],[-234,84]],[[27127,46099],[20,-25],[758,217]],[[27905,46291],[-4,39],[1280,352],[878,231]],[[30110,48284],[-1287,-337],[-1228,-351],[-727,-198]],[[49305,78646],[993,18]],[[50019,80229],[-146,529],[48,67],[-55,157]],[[49288,79059],[-21,-332],[38,-81]],[[27204,17080],[56,20],[184,-247],[59,71],[103,-122],[61,-670],[372,116],[17,-163]],[[28056,16085],[717,226]],[[28712,16629],[-96,-12],[-76,127],[-145,-45],[-35,328],[-113,-35],[-66,174],[-85,-8],[1,228],[-177,190],[-97,11]],[[29134,18425],[-414,-102],[-79,-40],[-76,219],[-231,159]],[[52028,33380],[-82,-43],[-10,-136],[-140,-87],[-86,47],[-92,-45],[-109,57]],[[51509,33173],[-241,-11]],[[44422,28291],[1485,149]],[[45907,28440],[-18,590]],[[45889,29030],[-95,-22],[-170,197],[-49,1533]],[[44173,30589],[12,-333],[-44,-4],[32,-860]],[[72617,55736],[25,-40],[159,162],[134,297]],[[73003,57161],[-150,-1],[-219,-140],[-11,-68],[-167,-39],[-65,-85],[-20,-162],[-63,19]],[[72308,56685],[-26,-386]],[[28427,41770],[38,59],[33,292],[88,47],[4,243],[41,130],[-5,201],[1751,471]],[[30377,43213],[6,208],[-157,508],[22,191],[-87,129],[-18,203],[-82,164],[-47,207],[85,203],[94,-4],[49,183],[-100,-140],[-125,20],[-57,289],[79,499],[-73,191],[57,37],[-23,133],[91,84],[-43,182],[91,63],[-101,41],[103,73],[-82,236]],[[27905,46291],[55,-618],[14,4],[127,-1372]],[[50892,89658],[329,-846]],[[51642,88194],[108,-3],[27,78],[89,-57],[121,194],[129,55],[48,-81]],[[52402,88751],[-45,102],[-3,247]],[[51891,89605],[-246,191],[-122,213]],[[51435,90010],[-108,-236],[-122,-4],[-93,73],[-106,-197],[-114,12]],[[44985,57281],[229,20]],[[45214,57301],[714,63]],[[32406,53331],[1550,337]],[[33498,56604],[-63,840]],[[30953,56872],[304,-3808]],[[61460,59549],[436,-16],[2,171],[190,-9]],[[62088,59695],[280,-22]],[[62368,59673],[-51,304],[-170,292],[-35,178],[61,220],[-78,-4],[11,437],[-377,16]],[[61729,61116],[-376,15]],[[61259,60479],[-2,-169],[-68,-233],[33,-222]],[[58890,50754],[35,-35],[166,278],[340,10],[13,-89],[102,-43]],[[59297,52150],[-374,-6]],[[58923,52144],[2,-617]],[[51040,9691],[1054,30]],[[52178,11449],[3,6]],[[62368,59673],[294,-7]],[[62662,59666],[12,682]],[[62155,61433],[-422,23],[-4,-340]],[[52939,30702],[7,255],[111,153],[-4,325],[-87,45],[40,147]],[[53006,31627],[-9,137],[120,1],[72,425],[-24,117]],[[66433,56859],[13,-1]],[[66446,56858],[34,352],[-119,85],[-110,-60],[9,730]],[[65344,58118],[88,-191],[30,-362],[67,-229],[-20,-95],[30,-270]],[[79276,65882],[556,-1245]],[[79955,64360],[127,216],[99,36],[103,226],[260,69],[176,121]],[[80720,65028],[-278,709]],[[80442,65737],[-595,1296]],[[79847,67033],[-188,-143]],[[79659,66890],[16,-103],[-207,-227],[16,-379],[-135,-131],[-73,-168]],[[11424,15238],[678,353]],[[11784,17171],[-897,-462]],[[10887,16709],[-22,-256],[162,21],[39,-271],[184,96],[174,-1061]],[[10371,16467],[516,242]],[[13826,18272],[32,132],[-51,499],[-215,439],[-49,188],[-92,-33],[-103,158],[-35,355],[-41,60],[-57,298],[12,144],[-64,15]],[[13163,20527],[-231,119],[-72,432]],[[12860,21078],[-548,-275],[-386,-177],[65,-395],[-560,-265],[41,-243],[-45,-23],[104,-642],[-316,-164],[18,-107],[-184,-98],[-77,-120],[25,-141],[-77,-39],[-26,-225],[-114,-152],[-186,-100],[-233,208],[-320,-174]],[[10041,17946],[210,-854],[120,-625]],[[86196,46432],[119,271],[-29,73],[79,103],[101,-4],[24,169],[229,-128],[119,219]],[[86838,47135],[88,248],[132,167]],[[87058,47550],[8,288],[59,169],[-88,228]],[[87037,48235],[-66,-117]],[[86971,48118],[-108,-160]],[[64716,54659],[73,-64],[53,-231],[109,-146],[225,-98]],[[65176,54120],[49,-2],[17,239],[156,398],[-9,133],[130,129]],[[65180,55597],[-297,74]],[[64883,55671],[2,-247],[-201,-611],[32,-154]],[[53265,87750],[30,-1098]],[[53295,86652],[663,-699],[175,-317]],[[54133,85636],[65,210],[-9,252],[145,167],[-29,101],[39,271],[126,-9],[98,106],[30,169],[121,251],[123,21]],[[54842,87175],[-293,287],[-296,330],[-513,413],[-277,246],[-307,385]],[[48502,69505],[-25,1695]],[[48477,71200],[-266,-16]],[[47523,71143],[33,-1699]],[[59921,20317],[761,-56]],[[60752,22240],[-755,50]],[[59997,22290],[-35,-1313],[-26,2],[-15,-662]],[[25794,47092],[59,8]],[[28685,50294],[-625,-167],[-1368,-388],[-51,1],[-547,-165],[-332,-125],[-549,-169]],[[25213,49281],[93,-999],[187,62],[16,-332],[204,62],[15,-337],[66,-645]],[[53120,38810],[232,3]],[[54017,39593],[-664,2]],[[77880,54302],[100,-147],[109,-73],[-40,181]],[[78049,54263],[-169,39]],[[51693,14742],[868,18]],[[52616,15419],[-20,295],[41,324],[1,372]],[[61615,65168],[13,959],[216,2],[117,43],[33,279],[114,23],[17,206]],[[62125,66680],[-107,33],[-88,-117],[-89,76],[-4,-114],[-169,-191],[-61,-8],[12,419],[-36,-108],[-377,31],[2,112]],[[60703,66856],[-13,-648],[35,-1],[-14,-1011]],[[62221,58265],[33,122],[141,64],[42,149],[172,42],[414,-31]],[[63023,58611],[109,-9],[-121,281],[-55,347],[14,87]],[[62970,59317],[-26,340],[-282,9]],[[62088,59695],[-24,-1312],[158,-62],[-1,-56]],[[85928,49404],[-18,-122],[72,-153],[-34,252]],[[53793,75001],[1158,-307]],[[54951,74694],[9,251],[-54,228],[58,134],[-44,312],[62,30],[22,282],[74,36],[163,364],[6,247]],[[55247,76578],[-706,203],[9,56],[-172,89]],[[54378,76926],[-37,-111],[75,-79],[16,-238],[-48,-146],[-59,216],[-37,-80]],[[54288,76488],[8,-231],[-178,-78],[7,-212],[-202,-125],[26,-332],[-110,-17],[44,-114],[-90,-378]],[[65897,55221],[198,70],[123,-105],[172,-67]],[[66425,55815],[-442,58],[-100,-36]],[[74763,58113],[139,-210],[125,2],[-42,-116],[145,-33],[75,98],[99,-1],[88,-198]],[[75714,58819],[-190,70],[-83,168],[-99,48],[-108,244]],[[75234,59349],[-15,-9]],[[75219,59340],[33,-101],[-136,-80],[17,-147],[-148,78],[-67,-165],[-30,50],[-110,-109]],[[66756,58520],[68,-15],[-12,-204],[217,-22],[-3,-141]],[[67026,58138],[560,-55],[3,99]],[[67700,59228],[3,112]],[[67037,56785],[762,-92]],[[67799,56693],[-5,206],[139,304]],[[67026,58138],[-37,-1348]],[[90705,27498],[56,-148],[113,-4],[44,248],[-36,119],[188,-72],[39,131],[157,-4],[33,-373],[59,-3],[-21,146],[60,61],[287,-206],[38,166],[138,-245],[103,-97]],[[91963,27217],[-34,258],[112,40],[103,-47],[71,491]],[[92215,27959],[-589,244]],[[91626,28203],[-390,162],[1,132],[-76,54],[-16,-148],[-308,124]],[[90837,28527],[-71,26]],[[58768,46434],[-163,-62],[17,139],[-62,149],[-171,79],[2,230],[-105,96],[-13,-129],[-127,-121]],[[50636,82547],[118,-163]],[[50754,82384],[625,1094]],[[50769,83984],[-169,-128],[-225,-456],[-60,-227]],[[50315,83173],[-34,-99],[195,-228],[160,-299]],[[89383,22360],[234,-152],[-57,-255],[286,-159],[42,147],[77,-119]],[[90385,23722],[-605,204]],[[89780,23926],[-99,-793],[-110,-197],[-28,-140],[-107,50],[7,191],[-79,-26],[-19,-166],[38,-485]],[[14261,16225],[40,37],[953,463],[1081,505]],[[16335,17230],[-66,77],[10,138],[-111,730]],[[16168,18175],[-668,-303],[-48,320],[-245,-114],[-49,320],[-180,-86]],[[14978,18312],[-183,-96],[-928,-442]],[[78293,52063],[64,-142],[155,-147],[26,-151]],[[79421,51402],[-95,101],[50,153],[-98,160],[104,15],[11,133],[-139,173],[-172,136],[53,84]],[[79135,52357],[-67,111],[-1,-125],[-165,156],[-165,265],[-59,-156],[-118,103]],[[78560,52711],[-111,-343],[-130,-197],[-26,-108]],[[84030,42059],[395,387]],[[84252,42970],[-55,154]],[[84197,43124],[-107,-121],[-61,45],[-101,-60]],[[83928,42988],[102,-929]],[[95905,97669],[162,-93]],[[96067,97576],[52,120],[-23,241]],[[77791,78931],[226,-53]],[[78017,78878],[19,292],[65,258],[123,-16],[180,67],[11,59],[216,228],[123,311],[67,53]],[[78821,80130],[-8,234],[-50,23]],[[78010,80571],[-64,16],[-19,-249],[-34,8],[-102,-1415]],[[54712,54277],[-755,-7]],[[67579,49898],[-273,54]],[[50137,13763],[-149,-12],[-64,-322],[-94,69],[-71,-82],[-27,-222],[-282,249],[-10,-240],[-105,113],[6,-325],[-189,-191],[15,-815]],[[54928,41940],[284,4]],[[55212,41944],[3,383],[40,1],[-1,837]],[[55254,43165],[-623,-3]],[[54631,43162],[3,-103],[-168,-120],[48,-46],[-114,-520],[-12,-138],[64,-47],[-17,-175],[-63,151]],[[83126,53037],[13,-2043]],[[83139,50994],[167,68],[43,-89],[126,69]],[[83475,51042],[25,159],[140,-61],[50,94],[75,-202],[47,236],[-31,78],[160,193],[-13,136],[59,216],[-34,100],[91,143]],[[84044,52134],[-85,250],[1,389]],[[83960,52773],[-107,35]],[[83264,52993],[-138,44]],[[85687,42793],[103,102],[64,212]],[[85854,43107],[-112,24]],[[85742,43131],[-79,-99]],[[85618,42978],[69,-185]],[[15168,1954],[22,-124],[83,180],[-101,38],[-4,-94]],[[15459,1720],[1306,650],[930,444],[9,-58],[222,103]],[[17367,4013],[-1375,-662],[-585,-288]],[[15407,3063],[-26,-126],[-117,-209],[-42,-184],[25,-119],[-164,30],[-42,-288],[59,-90],[105,5],[59,81],[19,172],[95,32],[10,-365],[88,23],[45,-94],[-62,-211]],[[15067,1766],[51,-72],[37,176],[-90,66],[2,-170]],[[40665,17743],[9,-165],[190,32],[6,-110]],[[41709,17794],[-18,382]],[[41642,19166],[-62,1273]],[[41580,20439],[-10,241]],[[41570,20680],[-139,-20],[17,-331],[-391,-65],[17,-321],[-191,-29],[16,-309],[-562,-92]],[[86425,49709],[109,-322],[76,-93],[67,-210]],[[86677,49084],[56,36]],[[86733,49120],[73,98],[182,-47],[114,147],[57,-10],[27,-210],[50,206]],[[86997,49964],[-154,258]],[[86843,50222],[-68,-408],[-195,19],[-155,-124]],[[20476,12054],[-37,115],[-134,983],[186,76],[-45,324],[186,78],[-112,765]],[[20520,14395],[-1474,-614]],[[19046,13781],[82,-73],[10,-437],[-71,-239]],[[74276,63625],[126,-25],[9,118],[581,-122]],[[74992,63596],[12,176]],[[75004,63772],[40,570]],[[75044,64342],[-166,72],[-4,207],[-96,77],[9,136]],[[74787,64834],[-433,72]],[[53500,22052],[762,0]],[[54262,22052],[1,666],[16,0],[2,662]],[[54281,23380],[-571,2]],[[53710,23382],[-192,-3],[1,-661],[-18,0]],[[53501,22718],[-1,-666]],[[53952,54608],[1,1158]],[[53953,55766],[-64,1]],[[53889,55767],[-913,-4]],[[52976,55763],[5,-1173]],[[56215,43669],[4,-1005]],[[56219,42664],[638,-10]],[[56857,42654],[6,955]],[[56219,44004],[-4,-335]],[[83611,43932],[77,-255],[31,-255],[-61,-3],[11,-233]],[[83669,43186],[246,-120],[13,-78]],[[84197,43124],[-90,292],[30,71],[-103,141]],[[83820,44113],[-18,-77],[-191,-104]],[[47368,83913],[786,62],[46,41],[-21,187],[111,13],[239,-479]],[[48529,83737],[-25,1681]],[[48493,86030],[-1171,-70]],[[55772,44858],[458,-7]],[[56242,45967],[-843,6]],[[55399,45973],[-9,-156],[72,-14],[18,-148]],[[41570,20680],[-118,2549]],[[69740,24345],[270,-53]],[[70010,24292],[74,10],[68,-479],[-4,-324],[66,-78],[-17,555],[-71,159],[-13,195],[79,30],[29,-219],[76,-231]],[[70550,25200],[-753,142]],[[69797,25342],[-57,-997]],[[67524,62543],[292,-42]],[[67991,64535],[-310,43]],[[67681,64578],[-52,-1064],[-65,-49]],[[67564,63465],[-40,-922]],[[30276,65365],[244,-3056]],[[81636,39782],[106,-340],[46,21],[143,-731]],[[81597,41044],[-25,-126],[31,-264],[-98,-100],[13,-188],[118,-584]],[[84786,28601],[326,-133],[4,33],[302,-130]],[[85418,28371],[118,806]],[[85536,29177],[-63,112],[100,47],[18,257],[-169,-23],[-102,37],[24,209],[-202,-1]],[[85142,29815],[-129,42]],[[85013,29857],[-114,36],[-32,-346],[-94,-641]],[[85587,26109],[48,95],[23,242],[93,-16],[171,1097]],[[85922,27527],[-586,294]],[[85336,27821],[-165,-247],[-145,67],[-92,-597],[-45,22],[-53,-365],[39,-31],[-66,-449]],[[84261,61467],[890,1108]],[[85151,62575],[232,291]],[[85383,62866],[-288,292],[-154,271],[-182,463],[-88,292]],[[84281,63783],[-134,-266],[-70,-402],[-60,-12],[-104,-241],[43,-243],[90,-180],[-22,-78],[63,-189],[8,-172],[90,-204],[-7,-124]],[[32426,6852],[762,201],[1051,262]],[[34239,7315],[-50,319],[-106,1294],[46,175],[-22,272],[-47,-12],[-50,209],[-32,379],[-48,-12],[4,277],[-27,325]],[[33907,10541],[-283,-64],[27,-332],[-174,-35],[27,-326],[-1139,-300],[-29,324],[-190,-51]],[[88640,26709],[555,-420]],[[89195,26289],[92,-199],[112,96]],[[89399,26186],[0,353],[-42,335],[36,172],[3,403]],[[74589,66156],[175,-363],[16,-323],[110,-321],[-103,-315]],[[75044,64342],[20,292],[222,163],[84,-1]],[[75370,64796],[-122,114],[-14,117],[-144,79],[-17,116]],[[75025,66434],[-194,39],[25,373]],[[74856,66846],[-195,142],[-65,101]],[[74157,67145],[59,-255]],[[59923,25954],[756,-54]],[[60679,25900],[9,333]],[[60688,26233],[-548,41],[-43,43],[-69,692]],[[60028,27009],[-252,-163]],[[59776,26846],[-98,-170],[-25,-154]],[[69626,70428],[186,-32],[10,167],[548,-110]],[[70395,70864],[-33,426],[-51,202],[-41,323],[-569,113],[37,669],[-94,16]],[[69644,72613],[-94,16],[-35,-668]],[[69515,71961],[-36,-665],[94,-15],[-30,-670],[92,-16],[-9,-167]],[[17302,85295],[-253,44],[-101,-100]],[[78022,67280],[132,-112],[52,-120],[148,-137],[247,142]],[[78601,67053],[-245,464],[28,193],[-153,12]],[[78231,67722],[-156,-150],[-35,-238]],[[78040,67334],[-18,-54]],[[43332,74138],[798,81]],[[44071,75891],[-947,-97]],[[31811,25919],[-174,2063]],[[30088,27426],[165,-1829]],[[38713,44357],[1,-8]],[[38122,44503],[41,-694]],[[38163,43809],[37,-637]],[[38200,43172],[417,67]],[[38617,43239],[0,0]],[[38617,43239],[81,69],[76,-44]],[[38774,43264],[-27,473]],[[38747,43737],[-30,537],[-99,77],[93,38]],[[38707,44602],[-77,263],[-87,79],[11,143],[-85,90],[-2,177],[-190,555],[-134,290]],[[38141,46199],[-113,-19],[94,-1677]],[[34518,45164],[-147,2104]],[[32888,46945],[46,-616],[423,-206],[98,-263],[212,-265],[127,24],[86,-55],[146,174],[140,-141],[101,-191],[251,-242]],[[75150,66409],[83,204],[-61,173],[11,437],[-106,21],[21,320]],[[75098,67564],[-61,13]],[[75037,67577],[-48,-315],[30,-110],[-163,-306]],[[70347,47788],[60,1019]],[[69780,49025],[-30,-505]],[[69750,48520],[-36,-615]],[[92802,30777],[153,-206],[-100,193],[-53,13]],[[92557,31176],[81,-93],[-46,166],[-35,-73]],[[90647,33032],[7,-96],[140,45],[-9,-130],[91,70],[210,-3],[116,-144],[-7,-145],[158,-52],[429,-197],[213,-158],[214,-373],[149,-415],[176,-143],[-89,309],[116,134],[98,-5],[51,-106],[142,183],[53,-140],[120,-162],[-1,-93],[148,-89],[-1,98],[-339,472],[-392,593],[-539,653],[-410,554],[-227,238],[-153,105],[-38,-33],[-145,154]],[[84680,23729],[64,-193],[-5,156],[-59,37]],[[85951,21910],[-100,488],[108,72],[4,252],[-73,34],[30,147],[-96,22],[-195,437],[-129,28],[27,351],[101,-23],[65,366]],[[85037,24361],[-101,-449],[-124,-89],[40,-185],[76,-62],[22,101],[100,-175],[-31,-132],[-128,-112],[-112,90],[4,-152],[-93,-84],[-84,29],[-23,-261],[44,-403],[101,-55],[109,-181],[-15,-156],[216,-341],[50,0],[141,-290]],[[84549,23714],[49,-155],[55,-2],[-104,157]],[[56259,50372],[9,1269]],[[56268,51641],[1,89]],[[56269,51730],[-796,14]],[[78201,58617],[41,-211],[110,-61]],[[78352,58345],[36,30],[189,-106],[59,-90],[70,83],[214,-120],[22,-133]],[[78942,58009],[111,-179],[119,99]],[[79171,59488],[-189,35]],[[78982,59523],[-168,31]],[[78233,58900],[-50,-182],[18,-101]],[[88018,33913],[-27,-79],[145,-249],[67,-242]],[[88203,33343],[408,565]],[[88611,33908],[-78,453],[-56,86]],[[23323,44634],[1680,546],[892,276]],[[25895,45456],[-29,236]],[[25794,47092],[-1311,-413],[-1337,-437]],[[78473,52849],[283,471],[191,556],[22,-22]],[[78969,53854],[-63,119]],[[78595,54046],[-167,35],[-13,89],[-366,93]],[[77880,54302],[-88,22]],[[77690,53908],[168,-253],[198,-189],[-20,-139],[204,-225],[66,42],[167,-295]],[[72823,65743],[8,201],[-185,89],[7,111],[93,-16],[10,168],[-87,128],[29,478],[-176,221],[7,169],[-94,17]],[[72435,67309],[-4,-113],[-363,64],[-52,-48],[-67,-267],[-175,10]],[[76714,65862],[196,-185],[12,-110]],[[76922,65567],[309,172],[121,-94],[103,61]],[[77455,65706],[90,105],[-89,335],[78,333],[-43,90]],[[77491,66569],[-239,501]],[[77252,67070],[-155,-210],[-92,-231]],[[79311,39083],[182,-70]],[[79493,39013],[84,914]],[[79577,39927],[-277,-23]],[[79300,39904],[71,-317],[17,-223],[-77,-281]],[[13698,92719],[-385,273],[-159,-271],[41,-260],[-118,168],[-46,221],[50,293],[-82,115],[-65,-54],[-98,-432],[-136,-284],[-80,191],[-50,-152],[-101,-107],[10,-156],[-300,261]],[[12139,92853],[20,-148],[157,-124],[-97,298],[-80,-26]],[[12163,92539],[-114,95]],[[22681,62376],[1051,329],[790,700],[84,-204],[94,-103],[83,-263],[766,414],[412,119]],[[68796,48606],[113,-15],[49,102],[70,-95],[62,77]],[[69090,48675],[58,1085]],[[69148,49760],[-384,65],[-34,-50]],[[68730,49775],[-27,-521],[-154,48],[-12,-234],[-99,-98],[-15,-261]],[[72291,45017],[-21,1399]],[[72269,46488],[-109,83]],[[72160,46571],[-408,83]],[[49643,52839],[1132,40]],[[50762,54220],[-940,-27]],[[49711,45758],[933,40]],[[50637,46803],[-5,337]],[[50632,47140],[-946,-41]],[[49686,47099],[25,-1341]],[[47760,50690],[23,1],[-13,675]],[[46636,51619],[25,-1008]],[[53040,48542],[-1,168],[189,3],[0,335],[63,1]],[[52307,49537],[9,-782],[63,1],[1,-224]],[[57812,20456],[9,659],[-131,4],[21,945]],[[57726,22734],[-383,13]],[[57322,21745],[-16,-612],[-63,0],[-9,-661]],[[57234,20472],[17,-332]],[[66942,64504],[350,-48],[7,168]],[[67299,64624],[63,1446]],[[67362,66070],[-316,41],[2,57]],[[66857,66192],[-49,-1113]],[[65169,64548],[95,-11]],[[65264,64537],[328,-38],[97,120],[193,-35],[148,88]],[[66048,65119],[36,838]],[[65608,66011],[-4,-111],[-382,39]],[[65222,65939],[-53,-1391]],[[63687,75373],[29,-227],[-28,-781]],[[63688,74365],[904,-97]],[[64592,74268],[-30,73],[238,647],[-47,58],[21,164],[75,33],[-16,142]],[[64833,75385],[-224,159]],[[66698,76394],[378,-46]],[[67076,76348],[190,-26]],[[67266,76322],[74,1665],[12,0]],[[67352,77987],[15,335],[-95,11]],[[66797,78397],[-30,-345],[-69,-1658]],[[52201,12776],[-7,77]],[[88063,37461],[180,281]],[[88243,37742],[87,121],[-16,248],[90,9]],[[88404,38120],[-188,138],[-115,230]],[[92929,28851],[516,-263],[16,-109],[89,-40]],[[93550,28439],[55,135],[-23,143],[-95,31],[84,95]],[[93571,28843],[-83,116],[-8,129],[-479,241]],[[93001,29329],[-21,-162]],[[92980,29167],[-51,-316]],[[59911,36802],[759,-51]],[[52986,37466],[181,2],[-2,224]],[[52408,38570],[0,-12]],[[82885,41371],[-91,311],[-83,177],[-66,392],[-51,24],[-124,394]],[[82470,42669],[-286,-204],[-236,9]],[[61387,63073],[177,-140],[112,129],[99,0],[-4,-255],[212,-10]],[[62195,64809],[-389,15],[7,337],[-149,6]],[[28689,65790],[95,152],[45,193],[95,37],[39,-130],[218,-187],[43,-105],[138,-5],[68,-99]],[[29743,70488],[-208,-44],[-1723,-442],[-513,-139]],[[37571,40839],[76,59],[-26,201],[65,251],[101,155],[20,203],[46,56]],[[37853,41764],[-54,219],[7,169],[62,131],[-37,309],[-94,103],[-22,282],[27,39]],[[37742,43016],[-50,150],[7,155]],[[37699,43321],[-87,167],[-149,48],[-105,-63],[-7,231],[-77,134]],[[37274,43838],[-123,35],[-95,-175],[-23,-319],[-70,-162],[-66,-16],[-118,-292],[-238,-42],[-63,-55]],[[36478,42812],[-319,-61]],[[36159,42751],[2,-299],[92,-1300],[-34,-7],[27,-397]],[[35081,49442],[72,-1068],[1278,261]],[[36431,48635],[289,50],[39,-122],[79,55]],[[36838,48618],[182,443],[15,100],[124,220]],[[37159,49381],[178,493],[92,549],[63,232],[47,-5],[89,245]],[[37628,50895],[66,183],[-70,377]],[[35033,50175],[48,-733]],[[82864,87743],[521,-140]],[[83385,87603],[183,-55],[32,317],[188,-52]],[[83399,89262],[-112,-126],[-24,-162],[-110,-144],[17,-77],[-131,-41],[-96,-100],[-21,-130],[-127,-128],[-30,-142],[114,-298],[-15,-171]],[[75036,62667],[-98,100],[8,112],[-146,-15],[-14,71]],[[74786,62935],[-42,64],[-506,105]],[[74238,63104],[-9,-131]],[[78863,73997],[190,-44],[41,188],[119,-28]],[[79213,74113],[68,185],[16,206],[166,287],[57,-9]],[[79520,74782],[11,123],[147,45],[28,327],[166,244]],[[79858,77238],[-385,46]],[[79473,77284],[-33,-113],[-74,-783],[-111,29],[-36,-547],[-55,14],[-151,-177],[-199,-591]],[[60109,46491],[374,2],[624,-41]],[[60471,47562],[-6,-678],[-355,-1]],[[60110,46883],[-1,-392]],[[35838,58196],[-23,288]],[[35815,58484],[-4,63]],[[35811,58547],[130,68],[-75,180],[-79,71]],[[35787,58866],[-48,-149],[-197,-179],[32,-505],[146,57],[122,-31]],[[32677,12980],[80,26],[211,-191],[41,25],[248,-185],[60,-401],[12,-239],[166,78],[76,-104],[207,36]],[[33778,12025],[161,112],[178,-103],[67,-117],[205,96],[105,-51],[179,78],[59,234]],[[47984,33466],[223,66],[201,-197],[256,-108]],[[48646,35983],[-693,-36]],[[43763,10821],[957,115]],[[44720,10936],[383,40],[-24,661],[76,7],[-48,1320],[75,8],[-24,664]],[[44382,13890],[-259,-115],[-113,-179]],[[44010,13596],[4,-296],[132,-240],[23,-110],[-74,-190],[-88,-28],[11,-97],[-138,-87],[0,-132],[-99,11]],[[68143,51217],[59,-2],[3,257],[111,-54],[16,-190],[-68,-169],[34,-157],[167,231],[97,-150]],[[68562,50983],[122,2],[140,122]],[[68824,51107],[-19,310],[97,129],[-80,168],[-118,86],[-18,162]],[[68544,52124],[-409,98]],[[92756,27804],[468,-249]],[[93644,28322],[-58,106]],[[93586,28428],[-36,11]],[[92929,28851],[-173,-1047]],[[74381,55136],[59,-13]],[[74857,55042],[13,110],[145,484],[32,23]],[[75047,55659],[-73,90],[-12,403],[-45,118]],[[51182,93040],[60,2]],[[51242,93042],[-53,474],[-16,689],[17,327],[82,700],[62,386]],[[51334,95618],[-49,-1]],[[51285,95617],[-141,-763],[-21,-347],[10,-849],[49,-618]],[[49983,93265],[68,-89],[218,-33],[112,-148],[112,71],[179,-54]],[[50672,93012],[14,148],[214,51],[138,-116],[55,20],[-52,1027],[-50,673],[-24,10],[19,367],[48,420]],[[51034,95612],[-833,-18],[-189,-59]],[[50012,95535],[-55,-17],[7,-627]],[[82653,28401],[-19,-163],[53,-171],[-15,-162]],[[83208,27895],[87,277],[-61,67],[39,343],[-37,12],[59,337],[177,-54],[34,354]],[[83506,29231],[-269,79],[17,172],[-93,32],[23,242]],[[82664,29733],[-40,-213],[77,-165],[31,-216],[-79,-738]],[[76851,47482],[165,-153],[133,-72],[20,-525]],[[77281,46668],[314,377]],[[77595,47045],[46,379]],[[77641,47424],[-109,146],[-99,43],[-113,459]],[[77320,48072],[-63,-27],[-54,-342],[-46,109],[-306,-330]],[[11997,33802],[74,299],[-126,221],[-18,220],[-58,147],[4,176],[72,98],[0,119],[168,479],[-12,96],[92,217],[-17,107],[79,161]],[[12255,36142],[-143,100],[-16,108],[-256,-94],[-88,192],[-15,137],[-169,262],[-273,8],[-71,-90],[-33,78]],[[11191,36843],[-5,-43],[-453,-211]],[[10811,36306],[70,-229],[25,-228],[50,-86],[-224,-97],[82,-511],[101,-57],[-110,-453]],[[37274,43838],[-9,99],[214,181],[22,102],[-100,161]],[[37401,44381],[14,106],[-176,284],[-96,55],[-111,276],[-186,-104]],[[36846,44998],[-119,-22]],[[36727,44976],[-54,-351],[19,-275],[64,37],[6,-174],[64,-102],[-4,-180],[-71,-47],[-162,-400],[-35,14],[-87,-453],[11,-233]],[[77069,63544],[11,-289],[-20,-264],[56,-320]],[[77116,62671],[107,36]],[[77671,63340],[-241,218],[-104,171],[-76,-75],[-103,65]],[[62512,41323],[-45,-1668]],[[69112,44955],[427,-59]],[[69539,44896],[89,-16],[30,473]],[[69658,45353],[-90,58],[41,653]],[[68984,46160],[-35,-671],[187,-29],[-24,-505]],[[69090,48675],[254,-5]],[[69344,48670],[81,24],[61,-130],[264,-44]],[[69633,49785],[-384,70]],[[69249,49855],[-95,15],[-6,-110]],[[48717,49069],[16,2]],[[48733,49071],[-24,1344]],[[48709,50415],[-943,-61]],[[59911,36802],[-38,-1672]],[[74113,53765],[60,-168],[-31,-238],[67,-169],[-29,-187]],[[74222,53794],[-109,-29]],[[48702,51759],[187,9],[19,-1006]],[[48908,50762],[740,38]],[[49648,50800],[7,340]],[[49655,51140],[-19,1344]],[[59064,77332],[457,-8],[20,52]],[[59541,77376],[193,101],[2,110],[96,134],[38,1388]],[[59870,79109],[2,55],[-292,7]],[[59580,79171],[-333,0],[-528,30],[-79,90],[-85,-74],[-67,44]],[[58488,79261],[-18,-74],[75,-199],[-81,-144],[3,-102],[91,-78],[-59,-224],[-17,-393]],[[72854,31434],[374,-98]],[[73228,31336],[375,-94]],[[73603,31242],[136,1335]],[[59503,29245],[28,1280]],[[58617,30582],[-39,3]],[[65876,76495],[252,-31]],[[66128,76464],[15,335],[192,-24],[50,1287]],[[66385,78062],[-142,18],[3,106],[-95,9],[-52,-113],[-93,58],[-192,20]],[[65814,78160],[-64,-1651]],[[63542,69675],[294,-31],[-8,-225],[186,-20]],[[64014,69399],[7,239],[78,115],[86,-26],[-3,-138],[57,-110]],[[64239,69479],[24,643],[-47,164],[-21,-119],[-111,126],[8,133],[94,63],[33,118]],[[64219,70607],[-156,22],[10,329],[-379,41]],[[63694,70999],[-24,-668],[-80,9]],[[63590,70340],[26,-410],[-100,-110],[26,-145]],[[50931,34743],[563,14]],[[51494,34757],[190,4],[-3,334]],[[51672,36099],[-756,-17]],[[75119,50174],[182,-65],[40,-128]],[[75341,49981],[118,139],[81,3],[121,208],[121,129]],[[75818,50619],[-141,14],[-111,-73],[-44,46],[-51,246],[-112,-5]],[[68070,53235],[-16,114]],[[68323,54089],[-28,498],[-35,81]],[[68019,54867],[-191,-388],[-136,-395],[-93,-6]],[[44579,24301],[-74,2013]],[[44505,26314],[-1,2]],[[72779,51430],[-3,-184]],[[72776,51246],[471,-229]],[[73247,51017],[73,45],[96,226]],[[73416,51288],[4,64],[-306,332]],[[72785,51764],[-6,-334]],[[77620,56776],[68,-134],[57,-268]],[[78319,57202],[-76,362],[-134,155]],[[78109,57719],[-119,-146],[-70,-262],[-81,32]],[[77839,57343],[-105,-292],[-74,-19],[13,-154],[-53,-102]],[[70592,71084],[56,363],[-9,121],[104,315],[71,89],[-31,99],[66,219]],[[70742,73438],[-501,84],[-30,-144],[-85,-47],[-187,-345],[-75,19],[-58,-156],[-152,-72]],[[69654,72777],[-10,-164]],[[74885,68263],[76,-113],[146,43],[228,-46]],[[75349,68911],[-401,76],[-61,102]],[[71234,75376],[20,334],[49,-8],[28,254],[-60,102],[37,585]],[[71308,76643],[-121,58],[-19,-301],[-1232,205]],[[69936,76605],[115,-238],[101,-339],[157,-248],[61,-243],[32,-476],[141,-161],[1,-158],[114,-18],[148,-159]],[[60038,62847],[21,223],[-89,235],[99,158]],[[59133,64217],[-381,15]],[[58752,64232],[-7,-339],[-32,-54],[216,-400],[38,0],[93,-229],[114,-172]],[[74786,62935],[72,353],[112,-16],[22,324]],[[74276,63625],[-38,-521]],[[77103,67756],[16,-283],[180,-240],[-47,-163]],[[77491,66569],[59,70],[240,-42]],[[77790,66597],[55,49],[118,588],[59,46]],[[78040,67334],[-54,13],[-126,193],[-44,236],[-200,272],[-79,19]],[[77537,68067],[-80,138],[-42,-118],[19,-269],[-331,-62]],[[74859,71951],[52,-11],[49,153],[66,-10],[84,196],[176,-35]],[[75308,72884],[-5,188],[-270,53]],[[75033,73125],[-104,21]],[[74929,73146],[-7,-418],[-63,-777]],[[70741,41778],[-39,-611]],[[71171,41074],[77,1158]],[[71280,42736],[-475,98]],[[70805,42834],[-64,-1056]],[[69344,48670],[-64,-1199],[31,-6],[-18,-333]],[[45877,52580],[-753,-67]],[[45124,52513],[11,-358],[-24,-2],[53,-1678]],[[54614,46423],[656,-8]],[[55270,46415],[7,1120],[-10,328]],[[55267,47863],[-165,-8],[-95,59],[-162,-145],[-109,52]],[[54736,47821],[-163,-30],[11,-584]],[[69397,39337],[38,672]],[[69435,40009],[-277,46],[-24,283],[26,390]],[[68585,40148],[-24,-387],[187,-32],[-18,-285],[93,-16]],[[73413,52828],[252,-509],[99,84]],[[74113,53765],[-98,70],[-258,364]],[[73278,53792],[-134,-166],[-10,-266]],[[62396,44387],[-26,-999]],[[60725,74232],[-11,-504]],[[60714,73728],[514,-35]],[[61228,73693],[75,-4],[-17,185],[52,45],[1,193],[128,-21],[31,65]],[[61498,74156],[55,227],[-98,104],[46,97],[23,262]],[[61524,74846],[-23,171],[-187,15]],[[61314,75032],[-571,40]],[[60743,75072],[-18,-840]],[[58132,49660],[-944,-5]],[[57188,49655],[-94,-2],[-20,-336],[9,-685]],[[63990,52916],[492,-61]],[[64482,52855],[58,1823]],[[64540,54678],[-161,14],[11,281],[-62,62],[-201,18]],[[64127,55053],[-4,-173],[-196,19],[-21,-881]],[[62547,54999],[94,-15],[3,169],[322,-18]],[[62966,55135],[86,-5],[4,190],[101,276]],[[63157,55596],[35,165],[7,275]],[[63199,56036],[-407,34],[-384,-7]],[[62408,56063],[-190,9],[-3,-225]],[[52391,40139],[4,0]],[[53127,40264],[-3,895]],[[53122,42165],[-745,-12]],[[88777,34599],[252,-254],[99,201],[9,188],[88,-131]],[[89225,34603],[96,-12],[-10,191],[-53,101]],[[89258,34883],[-82,191],[141,194],[-166,374],[-35,190]],[[89116,35832],[-63,-43],[-102,103],[-67,-168]],[[81848,28647],[614,-212],[191,-34]],[[82235,29876],[-245,88],[-6,-66]],[[81984,29898],[-98,-923],[-40,12],[-32,-330],[34,-10]],[[84152,29373],[186,-69],[12,81],[155,-54],[-44,-293]],[[85013,29857],[-14,198],[-150,-2],[-22,-172],[-363,154],[4,33]],[[84468,30068],[-211,99],[-105,-794]],[[73742,40142],[0,-202],[186,-55]],[[73928,39885],[2,26],[598,-47],[2,20]],[[74530,39884],[28,1062]],[[74558,40946],[-391,27],[-2,-58],[-384,34]],[[74530,39884],[167,-43]],[[75213,41129],[11,138],[-60,11]],[[75164,41278],[-493,100]],[[74671,41378],[-18,-439],[-95,7]],[[82093,36248],[78,686]],[[82020,38269],[-78,-70],[-53,171],[-99,71],[-72,-139],[-293,-69],[-117,18],[-94,-64],[-23,-186]],[[71754,52444],[-40,474],[56,121],[-8,334]],[[71665,53440],[-275,134],[-263,-24]],[[70913,52935],[129,-85],[8,-116],[88,-69],[-62,-203]],[[69348,52331],[139,-293],[35,22],[181,-225],[-92,-121],[68,-124]],[[70113,52189],[-119,91],[123,564]],[[70117,52844],[-235,393],[-102,-78],[-11,184],[-108,288]],[[69661,53631],[-156,-197],[-16,-179],[-87,-167],[-71,-15],[-48,172],[-58,-20],[63,-167],[-16,-153]],[[47070,22407],[1097,87]],[[48167,22494],[15,1]],[[47194,22884],[-73,-156],[-81,2],[-63,-107],[93,-216]],[[75881,56425],[21,71],[150,-29],[178,48],[84,158]],[[75561,57028],[-79,-195],[77,32]],[[73359,47962],[118,-86],[6,-134]],[[73483,47742],[51,41],[73,-137],[324,-152]],[[73931,47494],[-10,107],[91,-16]],[[74012,47585],[-22,222],[149,118]],[[74008,48295],[-130,249],[-158,178],[-110,2]],[[76568,58835],[-90,-18],[-128,260],[-59,3],[-9,163],[48,103],[23,253]],[[76353,59599],[-162,60],[-104,123],[-320,152]],[[75767,59934],[-21,-169],[106,-106],[40,-133],[-4,-224],[-41,40],[-220,-29],[-131,39],[-195,-35],[-67,32]],[[54505,71330],[653,-14]],[[55445,71116],[2,426]],[[55452,72821],[-21,98],[-73,-103],[-62,44],[-200,-184],[-227,16],[-232,-311]],[[54562,72253],[-57,-923]],[[86712,53015],[49,-901],[87,-64],[-56,-132],[-135,-63]],[[86657,51855],[428,-140]],[[87085,51715],[30,77],[-57,220],[60,250],[209,74],[73,-19],[172,200]],[[87572,52517],[17,68]],[[87589,52585],[-34,144]],[[87555,52729],[-430,175],[-413,111]],[[56068,80779],[220,8]],[[55832,83116],[-33,-135],[24,-201],[-88,-81],[-128,-662]],[[55607,82037],[-135,-678]],[[70249,46406],[401,-77]],[[70650,46329],[4,55],[368,-88],[97,-125]],[[71047,47481],[-170,-99],[-67,59],[-119,-85],[-67,94],[-88,-66],[-150,104]],[[70264,46628],[-15,-222]],[[48709,50415],[-6,336],[205,11]],[[61205,81290],[98,-127],[71,-201],[116,40]],[[61490,81002],[66,29],[-19,131],[37,186],[-52,65],[67,87],[-64,215],[111,-32],[32,126],[-79,317]],[[53483,21053],[2,-332]],[[53500,22052],[2,-667],[-19,-332]],[[64849,72894],[-10,-149],[94,-170],[97,-54],[207,-416],[104,13]],[[65493,73506],[26,670]],[[65519,74176],[-927,92]],[[64592,74268],[-47,-395],[94,-141],[-32,-182],[50,-215],[192,-441]],[[63935,72573],[158,-170],[25,-103]],[[64118,72300],[11,328],[372,-36],[20,335],[328,-33]],[[63688,74365],[-40,-676]],[[83871,58163],[-4,-69]],[[83867,58094],[363,-264],[85,-142],[171,-83],[199,21]],[[84685,57626],[12,409],[-25,252],[63,316],[152,165],[171,264]],[[84349,59341],[-124,-267],[-164,-103]],[[84061,58971],[-125,-310],[-73,-305],[8,-193]],[[79248,55812],[70,-116],[58,-242],[-51,-142]],[[79325,55312],[98,-187],[79,-33],[-25,-285],[73,-74],[121,-7]],[[79671,54726],[100,-155],[34,-139],[50,64],[65,-128],[98,89],[44,136],[93,-138]],[[80155,54455],[197,240],[24,346]],[[73039,39511],[285,-66],[8,111],[188,-44],[5,56],[373,-88]],[[73898,39480],[30,405]],[[73066,40788],[-36,-8],[-89,-1248]],[[51860,62004],[3,-336]],[[51863,61668],[918,19]],[[52781,61687],[1,239]],[[52782,61926],[-54,33],[-126,-128],[-92,74],[-7,1949]],[[52503,63854],[-67,-174],[-129,69],[-80,-148]],[[52227,63601],[-154,217],[-114,-85],[-112,0]],[[53924,62360],[0,-335]],[[54400,61349],[653,-6],[4,998]],[[55057,62341],[-81,-132],[-108,123]],[[54868,62332],[-88,-18],[-22,134],[-432,346],[-67,-78],[-138,44],[-66,164],[-135,-31]],[[53920,62893],[4,-533]],[[12077,12732],[481,247],[20,126],[122,60],[56,259],[134,186]],[[12890,13610],[-9,225]],[[12442,14349],[-975,-508]],[[11467,13841],[-89,-48],[89,-511],[476,247],[134,-797]],[[87694,36209],[-87,-80]],[[87607,36129],[-694,-647]],[[86913,35482],[189,-300]],[[72072,52214],[215,-57],[174,157],[118,-198],[181,164]],[[72629,52707],[-38,156],[-200,140],[-56,220]],[[72335,53223],[-108,-102],[23,-107],[-173,-405],[-200,-228],[-7,-145]],[[71368,55230],[-53,-130],[-128,-159],[17,-91],[-50,-240],[-51,104],[-113,-235]],[[51297,81053],[-246,807],[-297,524]],[[50636,82547],[-863,-1301]],[[55607,82037],[-315,520],[-56,19],[-251,-332],[-122,29],[-24,-136],[-96,-102],[-75,133],[-155,133],[-248,45]],[[54265,82346],[-3,-595]],[[54262,81751],[0,-353],[-51,-1120]],[[43402,72460],[947,98]],[[76679,53123],[61,-137],[79,-29],[91,-166],[-22,-287],[246,-357]],[[77151,52117],[38,293],[148,361],[277,134]],[[77614,52905],[71,237],[-177,159]],[[76901,53748],[-212,-310]],[[83808,42484],[-10,-114],[93,50],[-55,227],[-28,-163]],[[76162,37590],[24,-6],[49,648],[80,121],[20,229],[64,-14],[58,654]],[[75989,39359],[-57,-608],[-163,33]],[[65519,74176],[126,-15],[19,127],[37,893]],[[65701,75181],[-189,44]],[[65106,75321],[-273,64]],[[59915,46887],[195,-4]],[[60322,49198],[-242,-133],[28,-91],[-91,-126]],[[60017,48848],[-27,-95],[44,-175],[-61,-35],[-108,-206],[-39,-183]],[[59721,47973],[-14,-106],[208,-980]],[[33907,10541],[-129,1484]],[[32046,12813],[9,-112],[-190,-51],[28,-298],[-142,-36],[-249,-351],[143,-346],[-637,-176]],[[31110,10361],[50,-543]],[[50125,40757],[230,-437],[96,-94],[148,-258],[191,-134],[97,-224]],[[35811,58547],[4,-63]],[[36774,58179],[-35,414]],[[35628,61612],[41,-673]],[[35669,60939],[13,-342],[105,-1731]],[[84685,57626],[38,-214],[71,-99]],[[85503,57578],[25,370],[26,45],[96,664],[-24,639],[125,82],[32,-56]],[[85783,59322],[-178,718]],[[52781,61687],[10,-680]],[[53924,62360],[-819,-4]],[[53105,62356],[2,-685],[-99,149],[-101,-99],[-27,62],[59,182],[-157,-39]],[[50209,57260],[1122,37]],[[51331,57297],[2,0]],[[51333,57297],[-13,1655]],[[51320,58952],[-378,-11]],[[50188,58914],[14,-1150]],[[75279,49260],[116,39]],[[75395,49299],[9,354],[-73,219],[10,109]],[[74858,49871],[-7,-311]],[[37498,57210],[833,141],[-10,167],[752,117]],[[39073,57635],[44,251],[-24,119],[65,231],[10,327],[46,94],[-38,180],[-93,189],[20,315]],[[51661,37438],[-753,-18]],[[51100,38764],[173,4],[-2,239]],[[14978,18312],[-138,938],[173,97],[-98,642],[361,182],[-48,319],[564,255],[-48,324],[183,83],[-47,322],[552,251]],[[14187,21015],[-1024,-488]],[[18175,29211],[904,364],[950,370]],[[20029,29945],[13,6]],[[20042,29951],[-487,3755]],[[19555,33706],[-174,1343],[-368,-142],[-145,403]],[[18868,35310],[75,-564],[-551,-252],[87,-652],[-1276,-515],[-559,-236],[55,-393],[-836,-358]],[[15863,32340],[-33,-14],[147,-1027],[40,19],[98,-672],[-30,-13],[90,-660],[221,-1506]],[[83564,31477],[1025,-362]],[[84589,31115],[61,-24]],[[84650,31091],[263,1498]],[[84913,32589],[-117,220],[-1020,390]],[[83776,33199],[-212,-1722]],[[70117,52844],[222,88],[40,154]],[[70095,54381],[-308,-167],[-169,-21]],[[69618,54193],[78,-88],[-21,-173],[-66,-1],[52,-300]],[[70425,49741],[109,149],[13,271],[174,186],[121,-30],[132,186],[58,-167]],[[73416,51288],[14,60],[340,410],[48,23]],[[75586,53520],[46,157]],[[75749,54548],[-123,27],[-230,303]],[[75396,54878],[-22,75],[-418,74]],[[72677,47445],[99,-161],[137,-114]],[[72913,47170],[46,387],[174,193],[111,266],[82,30]],[[87691,56578],[105,112],[363,-206],[-1,-400]],[[88158,56084],[192,-10],[85,209],[-83,402],[8,169],[-70,242],[-305,517],[-312,-217]],[[87569,54787],[40,-128],[8,-354],[38,-119]],[[87655,54186],[83,-344]],[[87738,53842],[35,25],[247,-124],[207,-234],[75,129]],[[88302,53638],[-12,123],[70,185],[-55,315],[39,336]],[[88344,54597],[-405,116]],[[87939,54713],[-359,126],[-11,-52]],[[79029,46458],[156,-372]],[[79185,46086],[69,-237]],[[79254,45849],[108,137],[21,118],[79,33],[101,254]],[[79563,46391],[117,79],[-135,287],[-488,725]],[[79057,47482],[-158,-776],[130,-248]],[[35430,22941],[1199,258],[75,29],[1268,259]],[[38341,23557],[-15,520],[-61,1120]],[[36150,24798],[-13,-132],[-132,-107],[-66,-197],[-141,-168],[-86,38],[-101,-151],[1,-191],[-116,-144],[28,-53],[-54,-260],[26,-135],[-66,-357]],[[96581,96469],[78,51]],[[96642,96605],[-57,159]],[[96585,96764],[-116,-19]],[[96469,96745],[-12,-232],[124,-44]],[[94724,97671],[73,-92]],[[94939,98045],[-177,-54],[-86,38]],[[87793,31500],[106,156],[93,247],[113,-27],[43,124],[233,-33]],[[88510,32183],[-87,79],[-103,313],[-23,390],[-132,401]],[[88165,33366],[-52,70],[-108,-200],[-133,15],[-6,-399],[-361,190]],[[87505,33042],[32,-377],[-80,-112],[133,-70],[4,-159],[90,-155],[109,-669]],[[72863,46650],[247,259]],[[73110,46909],[-200,88],[3,173]],[[72501,47093],[220,-172],[130,-19],[-32,-174],[44,-78]],[[83295,56995],[1,189],[150,225],[64,196],[158,100]],[[83668,57705],[-54,170],[146,165],[107,54]],[[83871,58163],[-45,44],[-231,-110],[-137,243],[-171,515]],[[82968,58482],[-82,-78],[-138,-394],[-182,-768]],[[83562,59573],[277,-67],[222,-535]],[[84546,60651],[-158,275],[17,113],[-70,85],[-33,286],[-41,57]],[[83465,60454],[-24,-29]],[[51363,81118],[254,255],[221,305],[104,798]],[[54953,78633],[887,-1275]],[[55840,77358],[-4,147],[97,43],[24,303],[70,87],[35,338]],[[56062,78276],[-178,404],[-486,843]],[[80212,53814],[111,-20]],[[80323,53794],[391,-105]],[[80714,53689],[300,-58]],[[80155,54455],[-29,-193],[64,-205],[22,-243]],[[42140,8880],[980,142],[637,81]],[[43757,9103],[-46,1051],[79,10],[-13,329]],[[42074,10258],[66,-1378]],[[97355,96634],[76,4],[87,142]],[[97518,96780],[-18,361]],[[97500,97141],[-16,41]],[[97484,97182],[-120,26]],[[97364,97208],[-26,-8]],[[81588,66643],[12,-18]],[[82770,68878],[-88,177],[-64,-52],[-81,123],[-28,-99],[-93,76]],[[71803,57444],[68,194],[159,22],[86,177]],[[72116,57837],[-22,173],[67,335],[-67,209]],[[71736,58589],[-12,-68],[-245,-356]],[[71479,58165],[-107,-465]],[[50894,76562],[617,-589]],[[88192,57545],[73,-130],[224,-151],[21,-256],[73,22],[43,206],[65,81],[113,-25],[-86,-220],[146,61],[49,241],[-92,301],[-104,80],[-107,506],[-13,244],[-116,-25],[-24,-262],[-74,-39],[38,263],[-97,60],[289,114],[99,-454],[158,-462],[127,-301],[217,-670],[67,41],[-144,333],[-344,927],[-133,531],[-41,304],[-49,-207],[-244,-99],[-167,44],[-233,139],[-337,284]],[[47161,76752],[120,40],[43,230],[141,-74],[-11,-112],[236,265],[149,-272],[65,65]],[[48113,76930],[-40,1993]],[[72758,35607],[26,339],[28,-5],[29,393],[70,95]],[[72911,36429],[16,222]],[[72177,36814],[-29,-398]],[[72148,36416],[-45,-634]],[[54133,85636],[50,-126]],[[54183,85510],[96,-173],[86,-64],[189,127],[143,-189],[55,-375],[169,-5],[71,-540]],[[54992,84291],[178,-74],[133,21],[16,150],[71,-10]],[[55390,84378],[-30,347],[340,997]],[[55700,85722],[-77,115],[-115,-58],[-11,289],[39,86],[75,-124]],[[55611,86030],[-25,173]],[[55586,86203],[-448,692],[-56,122],[-110,29],[-130,129]],[[78979,40097],[297,-75]],[[79276,40022],[-6,486]],[[79189,41247],[-693,122]],[[78496,41369],[-24,-320]],[[74317,44821],[56,80],[75,-170],[291,-517]],[[74739,44214],[364,-79]],[[75103,44135],[-2,430],[86,45],[2,206]],[[75189,44816],[-12,557]],[[75177,45373],[-369,226],[-104,17]],[[74704,45616],[-334,72],[-53,-867]],[[74375,35585],[36,453]],[[74475,36980],[24,334]],[[73749,37480],[-73,-942]],[[65814,27026],[332,-39]],[[66146,26987],[234,-30]],[[66447,28292],[-190,28]],[[66257,28320],[-7,-176],[-382,51]],[[65868,28195],[-54,-1169]],[[83989,36316],[354,-491],[110,-128]],[[84453,35697],[30,146]],[[84483,35843],[49,398],[111,-7]],[[84023,37685],[-165,108],[-107,-96],[104,-404],[-50,-208],[61,-265],[141,-325],[-18,-179]],[[46887,57076],[696,50]],[[47939,58803],[-10,584]],[[47929,59387],[-127,22],[-78,97],[-120,428],[-110,85],[-170,-80],[-158,-278],[7,-274],[-140,37],[-72,282],[-135,116]],[[46878,57437],[9,-361]],[[45907,28440],[28,2],[20,-664]],[[45955,27778],[1068,91]],[[47022,29604],[-28,-64],[-179,28],[-120,-67],[-70,-124],[-145,202],[-155,-60],[-235,-434],[-34,78],[-59,-155],[-108,22]],[[68398,56061],[93,-17]],[[68491,56044],[138,1026]],[[67799,56693],[28,-173],[-92,-519]],[[41114,67183],[38,-715],[47,-1120]],[[41199,65348],[1,-39]],[[41200,65309],[772,96]],[[95544,97750],[50,-85]],[[95594,97665],[44,-23]],[[95865,98344],[-90,54],[-84,-76],[-158,12]],[[95533,98334],[45,-470],[-34,-114]],[[46977,65136],[320,20],[18,-837]],[[48076,63991],[119,-138],[66,43],[-58,360],[39,206],[173,13],[13,96],[-92,26],[-17,118]],[[48319,64715],[33,184],[-144,2],[-110,355],[-22,412],[62,128],[-34,70]],[[48104,65866],[-86,-264],[-105,-27],[-106,-192],[-36,302],[-139,-80]],[[47632,65605],[-187,-90],[-39,159],[-173,-36],[-101,-162],[-155,-340]],[[78630,61167],[125,127],[35,149],[196,133],[122,177],[104,8]],[[79606,61895],[-79,337],[-33,20],[-79,350],[-176,288],[-61,405]],[[41580,20439],[1603,221]],[[43183,20660],[82,11]],[[78629,43997],[-41,146],[125,137],[47,269],[148,-23]],[[78908,44526],[-152,410],[-2,84]],[[78754,45020],[-100,100],[-193,-125],[-84,115]],[[78377,45110],[-95,-168],[16,-153],[-89,-57]],[[78209,44732],[225,-488],[195,-247]],[[65438,25746],[564,-56]],[[66002,25690],[85,-20],[59,1317]],[[65814,27026],[-526,74]],[[44722,20429],[22,-579]],[[44654,18215],[12,-329]],[[12473,9647],[106,15],[51,185],[-34,171],[76,181]],[[12446,11543],[-531,-250],[6,-37],[-367,-192]],[[11554,11064],[82,-454],[-13,-161],[102,-70],[34,-110],[40,-404],[-24,-441],[26,-34],[95,314],[64,81],[7,-125],[171,-4],[42,118],[94,-68],[67,47],[132,-106]],[[86077,35403],[106,-142],[-1,-322],[94,-295]],[[86913,35482],[-147,203],[-3,245],[-87,25],[-151,232],[-129,118],[-134,55],[-155,133]],[[85925,36326],[-315,-292]],[[84913,32589],[100,-9]],[[85013,32580],[185,660],[298,291],[245,25]],[[85741,33556],[-180,529],[-76,35]],[[85485,34120],[-155,-9]],[[85081,34329],[-107,0],[-2,240],[-260,166]],[[84712,34735],[-32,12],[-318,-480],[-47,12],[-344,-426],[-166,-414]],[[83805,33439],[-29,-240]],[[72825,58582],[39,73]],[[72864,58655],[-39,-73]],[[72116,57837],[133,-252],[91,-51],[359,126],[7,149],[86,36]],[[72792,57845],[54,246],[53,0],[-25,397],[-45,71]],[[72829,58559],[0,-111],[-164,130],[-203,-61],[-73,133],[-147,17]],[[60688,26233],[189,-14]],[[60877,26219],[35,1338],[-108,146],[-15,150],[77,85],[55,196],[-32,275]],[[60889,28409],[-144,-137],[-118,-240],[-158,-123],[-67,-106]],[[60402,27803],[-59,-157],[-39,-290],[-77,-178],[-199,-169]],[[94990,98121],[-47,306]],[[94943,98427],[-11,-57],[-159,-26],[-100,107]],[[94796,97072],[54,-330]],[[94850,96742],[189,63],[31,-61]],[[95070,96744],[48,103]],[[95118,96847],[12,-3]],[[95130,96844],[-36,245],[6,190]],[[95100,97279],[-273,-142]],[[94827,97137],[-31,-65]],[[43405,55211],[822,79]],[[45077,55362],[210,19]],[[45287,55381],[-17,576],[-15,0],[-41,1344]],[[43328,57107],[50,-1342],[27,-554]],[[85741,33556],[49,-147],[156,-64]],[[85790,35086],[-14,-296],[-99,-125],[-32,-201],[-84,-9],[-76,-335]],[[44704,20844],[3,0]],[[46981,21066],[19,2]],[[47000,21068],[164,298],[13,204],[91,421],[-17,130],[-139,79],[-42,207]],[[45455,22729],[-815,-85]],[[55247,76578],[123,84],[73,-52],[47,168],[82,79],[1,194],[66,-13],[116,173]],[[55755,77211],[85,147]],[[54333,78499],[-21,-161],[88,-107],[-37,-170],[43,-241],[127,-181],[-65,-218],[-37,-303],[-67,-15],[14,-177]],[[48300,76851],[118,196],[107,-26],[29,117],[149,13],[39,88],[30,-157],[77,152],[-5,199],[75,-109],[18,212],[110,-29],[-27,263],[66,94]],[[49086,77864],[-14,123],[108,169],[-73,120],[44,135],[80,-113],[44,161],[-52,42],[82,145]],[[86222,48289],[161,143],[137,47],[135,-25],[80,100]],[[86735,48554],[56,28],[45,396]],[[86836,48978],[-103,142]],[[86677,49084],[-89,-193],[-85,170],[-47,-146],[-62,53],[-256,19]],[[86138,48987],[9,-244]],[[83287,44893],[101,-558],[71,28],[152,-431]],[[83786,44643],[-45,273],[-77,179],[-8,186]],[[83622,45503],[-107,16],[-141,-111],[-32,-113],[-101,-21],[46,-381]],[[48236,32455],[-1062,-77]],[[47187,30872],[8,-334],[-26,-4],[23,-905]],[[38938,84455],[-82,-82],[-259,-105],[-306,-380],[-205,-532],[-140,-44],[-107,-218],[-120,-160],[-126,-276],[-31,-368],[-75,-198],[-111,-423],[10,-193],[-36,-194],[48,-228],[15,-359],[-116,-486],[-166,-370],[19,-106],[-57,-593],[-41,-139],[-103,-108]],[[25213,49281],[-370,-114],[-16,165]],[[24827,49332],[-232,-72],[-10,96],[-365,-145],[19,-178],[-375,-121],[35,-339],[-192,-62],[-6,52],[-788,-260]],[[55868,75597],[902,-16]],[[56770,75581],[55,172],[16,357],[35,200]],[[57028,77951],[-133,-294],[-100,-69],[-41,-240],[-136,-77],[-6,-103],[-157,-28],[-64,-69],[-123,9],[-259,-262]],[[56009,76818],[-50,-195],[-60,-5],[-81,-452],[-4,-215],[71,-50],[-80,-60],[63,-244]],[[52381,82066],[102,-140],[14,-167],[93,-56],[85,-155]],[[52675,81548],[414,-174],[235,-136]],[[53324,81238],[57,79],[132,-92],[94,54],[-10,148]],[[53597,81427],[115,80],[2,322]],[[53714,81829],[-125,71],[7,250],[-70,11],[87,261]],[[53613,82422],[-26,63],[-244,-165],[-439,117],[-128,1],[-69,77]],[[28007,34920],[-124,-41],[-24,235],[-116,79],[-339,-101],[-512,861]],[[26892,35953],[-526,140],[-652,-205],[-1360,-443]],[[24354,35445],[374,-3347],[42,-412]],[[51201,67619],[59,95],[-23,191],[65,88],[97,2],[68,-204],[145,40],[84,-201],[56,93],[22,200],[-71,148],[58,248],[136,40],[5,-255],[87,-88],[115,-264],[-15,-242],[90,2]],[[52179,67512],[-10,2051]],[[52169,69563],[-801,-71]],[[51179,69474],[22,-1855]],[[47607,66802],[25,-1197]],[[48104,65866],[29,472],[93,-14],[169,91],[166,-47]],[[48561,66368],[-28,1458]],[[53448,77275],[840,-787]],[[53437,78961],[-36,-125],[33,-210],[-71,-135],[-30,-326],[-63,-274],[23,-401]],[[50787,86049],[-277,383],[340,751]],[[50450,87725],[-90,-12],[-171,-194],[-176,106]],[[50013,87625],[-175,-376]],[[79821,51066],[-52,81],[318,413]],[[80013,51870],[-328,289],[-198,-44],[-97,139],[-137,297]],[[79253,52551],[-118,-194]],[[85735,50868],[327,-565]],[[86062,50303],[363,-594]],[[86843,50222],[-246,424],[-466,756]],[[86131,51402],[-108,-15],[-7,-556],[-81,98],[-116,14],[-84,-75]],[[84233,51314],[8,-741]],[[84573,50305],[26,82],[292,243],[125,-89]],[[85016,50541],[62,941]],[[85078,51482],[-154,-29],[-226,37],[-224,-130],[-102,64],[-139,-110]],[[78908,44526],[223,21]],[[79315,45636],[-61,213]],[[79185,46086],[-40,-95],[-97,7],[-55,-359],[-112,-178],[-6,-195],[-121,-246]],[[78048,50584],[77,79]],[[78293,52063],[-176,134],[-1,199],[-90,142],[-128,20]],[[77898,52558],[-37,-260],[-167,-354],[-44,-226],[-117,-61]],[[84044,52134],[189,-820]],[[85078,51482],[65,897]],[[85143,52379],[-478,159]],[[84437,52617],[-477,156]],[[74425,48902],[-153,334]],[[74272,49236],[-338,260]],[[73934,49496],[-173,-144],[26,-258],[-87,-96]],[[79427,53979],[785,-165]],[[79671,54726],[-60,-297],[-105,-167],[-79,-283]],[[84617,48976],[113,-27],[71,-181],[202,-2],[100,191]],[[85103,48957],[-16,210],[150,77],[-4,116],[92,106],[91,-134],[100,88]],[[85516,49420],[-135,330],[-82,28]],[[85299,49778],[-785,-146]],[[87058,47550],[106,22],[301,182]],[[87572,48165],[-53,153],[146,267],[58,23],[-238,217]],[[87151,48396],[-114,-161]],[[83267,43126],[161,60],[-1,-110],[75,-205],[82,-2],[9,138],[76,179]],[[83287,44893],[-445,-480]],[[82842,44413],[87,-506],[98,-231],[14,118],[129,-347],[38,58],[64,-230],[-5,-149]],[[77898,52558],[-77,61],[-100,187],[-107,99]],[[95270,97012],[117,-6]],[[95387,97006],[71,-94],[39,130],[231,-47]],[[95728,96995],[84,114]],[[95594,97665],[-48,-245],[-140,-35],[-44,-94],[-74,76]],[[95288,97367],[-18,-355]],[[59807,22304],[190,-14]],[[60752,22240],[34,1319]],[[60602,23897],[-759,50]],[[94407,96807],[166,-152]],[[94573,96655],[58,100]],[[94631,96755],[3,273]],[[94634,97028],[-110,18]],[[12011,7276],[1053,557]],[[13064,7833],[-236,1500]],[[12828,9333],[-536,-281],[-63,347]],[[12229,9399],[-118,-38],[-129,107],[-45,-46],[-71,-291],[-47,-51],[-119,130],[62,-205],[117,-601],[70,-510],[36,210],[-67,308],[-51,442],[90,47],[-9,-268],[33,-190],[47,151],[116,-225],[-34,-413],[78,-104],[159,-98],[-66,-161],[-50,67],[-164,-16],[-84,-192],[28,-176]],[[77527,49012],[235,-216],[187,-89]],[[77949,48707],[-68,169],[215,93],[140,17],[54,176],[-33,82],[119,193],[119,-114],[85,142]],[[78580,49465],[-255,212],[124,163],[-159,202]],[[78290,50042],[-112,-43],[-192,92],[-15,111],[-101,-212],[-71,19],[-57,-177],[-15,-194],[-80,-128],[51,-91],[-36,-147],[-69,-33],[-66,-227]],[[11675,46070],[139,-143],[204,0],[253,-60],[205,78],[100,-19]],[[12576,45926],[617,-657],[186,80],[24,-163],[130,-76],[37,-245],[578,-613]],[[14194,44426],[74,132],[42,-72],[123,64],[72,228],[19,401]],[[66743,25351],[34,-130]],[[66777,25221],[565,-82]],[[67342,25139],[-123,495],[-73,875]],[[66798,26564],[-55,-1213]],[[64473,45414],[282,-37]],[[65444,45972],[20,504]],[[64656,47421],[-100,12]],[[34518,45164],[188,-110]],[[34706,45054],[16,230],[123,198],[13,138],[363,75],[103,213],[-14,102],[147,224],[80,-51],[92,139],[105,-228],[158,23],[83,197]],[[35975,46314],[66,12],[131,356],[91,-23],[152,108],[-123,283],[-45,-13],[-35,386],[-61,98],[93,235],[46,221],[-14,183],[155,475]],[[35081,49442],[-966,-201]],[[34115,49241],[-7,-399],[-64,-217]],[[70078,45308],[217,-46]],[[70573,45202],[77,1127]],[[70249,46406],[-87,17],[-49,-776],[-35,-339]],[[78268,76542],[84,-97]],[[78352,76445],[244,74],[45,197],[136,156],[308,-3],[48,56],[28,397]],[[79161,77322],[-200,26]],[[78961,77348],[-844,102]],[[78117,77450],[-43,-631],[66,-244],[128,-33]],[[83668,57705],[290,-931]],[[84029,56509],[386,130]],[[85536,29177],[193,-81]],[[85729,29096],[160,648],[-35,189],[103,697]],[[85957,30630],[-63,23]],[[85894,30653],[-656,234]],[[85238,30887],[3,-203],[-81,-381],[42,-13],[-60,-475]],[[87783,52225],[170,-168]],[[87953,52057],[190,402],[107,33],[99,166]],[[88349,52658],[141,317],[-453,-182],[167,188],[142,24],[-36,78],[-148,91]],[[88162,53174],[-289,-24],[-92,-483],[21,-79],[-19,-363]],[[68804,58494],[8,90],[-294,291],[-5,261]],[[37537,52113],[82,-117],[258,-135],[98,161],[83,19],[-61,134],[61,150],[-14,347],[51,224],[-50,38],[0,371]],[[38045,53305],[-65,1143]],[[37980,54448],[-113,-18]],[[38921,42828],[0,0]],[[39182,39133],[1461,215]],[[41430,39460],[-53,1151],[-45,685]],[[40294,43168],[-1350,-209]],[[38944,42959],[-152,-25]],[[38792,42934],[52,-1005]],[[38844,41929],[16,-336],[184,31],[138,-2491]],[[73307,62445],[11,-204],[124,-24],[-11,-169],[66,-42],[48,-462]],[[73545,61544],[5,-1]],[[73550,61543],[295,-60]],[[73754,62873],[-18,75],[-223,19]],[[73821,46563],[36,77],[279,72]],[[74136,46712],[120,-87],[132,44]],[[74388,46669],[-99,701]],[[74289,47370],[-157,19],[-120,196]],[[73931,47494],[-118,-910],[8,-21]],[[70741,41778],[-630,127]],[[70074,41299],[-6,-112],[628,-130]],[[72611,54208],[27,-285],[59,-153],[173,-628]],[[72918,54404],[-86,139],[-217,-183],[42,113]],[[67549,55296],[-68,-255],[-97,-166]],[[47757,54093],[-28,1472]],[[47729,55565],[-802,-64]],[[46927,55501],[-152,-12]],[[46775,55489],[34,-1484],[-28,-3],[9,-339]],[[84494,54642],[-258,-123],[-117,51]],[[89708,56056],[14,52]],[[89722,56108],[-303,429],[-100,207],[24,-238],[365,-450]],[[88344,54597],[240,-61],[-12,327],[147,-11],[34,-408],[233,46]],[[88986,54490],[51,-34]],[[89037,54456],[195,-73],[95,305]],[[89327,54688],[-109,231],[-60,255],[-3,207],[-82,102],[6,132],[-109,207],[-170,-22],[-183,80],[-263,-2],[-113,-114],[-125,-342],[190,-79],[-5,-172]],[[88301,55171],[-136,-58],[-145,-199],[-81,-201]],[[63212,70717],[-11,-345],[389,-32]],[[63694,70999],[-178,352],[2,83],[120,-15],[15,187],[-93,151],[149,140],[-105,114]],[[63604,72011],[-445,39],[-17,-674],[78,-415],[-8,-244]],[[95544,97750],[-116,64],[-40,-82]],[[95388,97732],[-60,6]],[[95328,97738],[-62,-145]],[[95266,97593],[22,-226]],[[77537,68067],[-12,210],[46,151],[-33,160]],[[77538,68588],[-152,-205],[-358,404]],[[76822,67829],[183,26],[98,-99]],[[49892,32545],[47,198],[249,261]],[[50188,33004],[1,466]],[[48664,33227],[19,-744]],[[82672,46853],[22,-131],[140,-26],[-39,246],[-123,-89]],[[53365,40154],[184,191],[249,-268],[113,49],[178,-3]],[[49645,27931],[579,27]],[[29529,74676],[-1761,-441],[-852,-222]],[[56658,65337],[4,-854]],[[57062,66539],[-409,22]],[[56653,66561],[5,-1224]],[[80991,61815],[111,148],[57,-22],[55,126],[-62,440]],[[81152,62507],[-422,260],[-40,83],[-154,17],[21,172],[-97,-95],[-173,-84]],[[80287,62860],[-117,-305],[-141,-461],[-18,-154]],[[11913,58185],[115,62],[-12,96],[-108,-35],[5,-123]],[[12365,54917],[104,47],[-12,79],[183,80],[46,108],[-23,162],[463,207],[-11,81],[166,71]],[[13281,55752],[164,2048],[-18,190],[-65,-6],[-36,256],[-212,-90],[-316,235],[-23,108]],[[12775,58493],[-224,-306],[-72,-38],[-127,-238],[-37,-440],[-139,-325],[-158,-298]],[[11244,60871],[94,16],[144,289],[-89,11],[-115,-121],[-34,-195]],[[14079,60238],[153,-345],[176,-167],[20,-148],[341,137]],[[14924,60077],[114,446],[73,76],[-20,179],[102,67],[87,211],[-234,401],[-14,109]],[[15032,61566],[-15,133],[-132,9],[-65,238]],[[14820,61946],[-61,-236],[-114,-124],[-83,-354],[-137,-256],[-83,-86],[-263,-652]],[[79586,84545],[479,-121],[10,109],[296,-81]],[[79647,85535],[-1,-606],[-57,-205],[-3,-179]],[[80148,71018],[274,-215],[329,-288]],[[80751,70515],[130,530]],[[80881,71045],[61,170],[164,224],[69,247],[110,-76],[142,219],[-57,171],[72,330]],[[81442,72330],[-80,22]],[[57114,30651],[12,938]],[[57141,32925],[-755,23]],[[56386,32948],[-13,-1333]],[[43474,52701],[12,-364]],[[44276,53775],[-838,-92]],[[38045,53305],[99,-24],[183,-225],[124,-82],[85,48],[229,-40],[101,-126],[10,-155],[60,-33],[196,-258],[33,-178],[172,-444],[197,-277]],[[41128,52415],[565,75]],[[39969,54758],[-574,-76],[-1147,-181],[-268,-53]],[[64765,48398],[17,335],[-190,25]],[[63795,48393],[79,-137]],[[63874,48256],[1,-168],[-285,-257]],[[80694,90993],[235,-56],[-27,-330],[386,-95]],[[82334,91247],[-971,250]],[[81363,91497],[-28,-400],[-66,-30],[6,-268],[-78,35],[-102,170],[95,463],[-136,114]],[[81054,91581],[-107,-51]],[[80947,91530],[-46,-135],[-207,-402]],[[68730,49775],[8,170],[-255,42],[6,138]],[[68489,50125],[-378,47]],[[67593,50011],[-9,-103]],[[62197,36970],[182,-17],[123,130],[57,-108],[159,-8],[173,-73],[109,160],[149,-14]],[[63149,37040],[-33,319],[8,228],[-110,98],[-74,169],[-130,3],[-87,67],[-93,197],[-212,57]],[[12361,22605],[68,-251],[264,130],[159,-412],[14,-91],[122,-122],[-7,-398],[-38,-208],[-83,-175]],[[13951,27368],[-888,-432]],[[11752,26259],[291,-1724],[318,-1930]],[[52012,86100],[-642,903]],[[67873,74469],[19,-1289]],[[67896,72867],[904,-137]],[[68800,72730],[-158,121],[40,380],[-94,490],[-87,44],[9,140],[86,90]],[[68596,73995],[11,120],[-93,46],[67,100],[-73,76],[-77,333],[80,254],[69,-42],[42,230]],[[68622,75112],[-699,105]],[[67923,75217],[-50,-748]],[[67908,71827],[13,-1356]],[[67921,70471],[2,-240]],[[67923,70231],[308,-62]],[[68900,71861],[-86,47],[-123,272],[-100,107],[-16,220],[145,105],[80,118]],[[57628,57624],[495,-21]],[[58594,57583],[38,-2]],[[58632,57581],[11,1454]],[[58643,59035],[-315,2]],[[58328,59037],[-126,1],[-62,-227],[-63,-57],[0,-223],[-80,-58],[8,-109],[-277,-2]],[[11558,51024],[1124,499]],[[12682,51523],[1770,760],[859,358]],[[15413,56510],[-1607,-644],[-464,-196],[-61,82]],[[12312,54894],[95,-656],[-146,-108],[62,-339],[-198,-67],[48,-328],[-246,-113],[49,-326],[-122,-56],[49,-328],[-202,-91],[16,-109],[-121,-285],[50,-328],[-185,-83],[97,-653]],[[82334,91247],[89,960]],[[82423,92207],[33,339],[-189,56],[35,388],[-316,88],[-57,-39]],[[81929,93039],[-161,-330],[-221,-187],[-15,-142],[-105,19],[34,134],[-92,61],[-112,-560],[-100,-144],[104,-95],[75,111],[27,-409]],[[80990,91868],[15,-41],[98,289],[119,445],[190,133],[46,-69],[101,43],[-157,144],[-212,-201],[-189,-580],[-11,-163]],[[81054,91581],[-56,38],[-21,169],[-30,-258]],[[35295,38392],[753,154]],[[36159,42751],[-45,10],[-633,-122]],[[35520,41977],[33,-513],[-664,-130]],[[34889,41334],[102,-1216],[95,19],[15,-222],[94,20],[100,-1543]],[[65071,52915],[0,-18]],[[65071,52897],[85,25],[33,-152],[511,-64]],[[65700,52706],[194,-10]],[[65894,52696],[37,1028]],[[65931,53724],[-352,24]],[[65579,53748],[-411,51]],[[65168,53799],[90,-58],[14,-131],[-40,-215],[-67,-124],[-94,-356]],[[47877,55575],[-148,-10]],[[68824,51107],[63,67]],[[68887,51174],[87,100],[103,18],[71,203],[94,-81],[42,-413],[88,-106]],[[67420,81607],[99,196],[43,242],[-12,424],[-46,263],[-24,-67],[52,-431],[-16,-291],[-96,-336]],[[66545,81695],[271,-427],[-59,263],[110,185],[-99,177],[-25,-152],[-186,26],[-12,-72]],[[65578,82046],[41,192],[121,19],[87,-92],[-20,196],[102,140],[176,-70],[33,-303],[-18,-133],[159,-196],[17,-149],[215,138],[-110,123],[4,112],[104,44],[29,197],[98,-57],[70,-279],[108,68],[-18,183],[-93,14],[-74,153],[153,-28],[-21,99],[-242,128],[133,176],[75,-81],[-45,200],[-159,-103],[-73,190],[2,326],[-60,25],[-52,-278],[-72,6],[-9,217]],[[66239,83223],[-181,-19],[-112,-123],[-45,-135],[-165,-12],[-54,-149],[-82,41],[-107,-275]],[[65493,82551],[-39,-198],[-165,-79],[36,-171],[71,24],[108,-93],[74,12]],[[28315,28781],[-57,264],[-74,1],[-54,175],[23,258],[-54,142],[28,365],[84,-49],[139,41],[6,324],[40,83],[-34,353],[32,10],[-7,418]],[[28387,31166],[-31,-8],[-61,606],[-139,-42],[11,-110],[-227,-66]],[[27555,30580],[31,-245],[48,0],[39,-278],[-104,-229],[13,-138],[-62,-19],[-9,-228],[41,-464],[-85,-263],[-99,93],[-94,-3],[-68,96],[-2,-181]],[[27204,28721],[28,-137],[113,-94],[970,291]],[[44858,43729],[142,13]],[[76156,76141],[211,-44]],[[76367,76097],[9,136],[500,-96]],[[76876,76137],[79,1125],[15,320]],[[76970,77582],[-498,58]],[[76472,77640],[-144,17]],[[74284,75642],[-20,-206],[32,-271],[-20,-139],[36,-195]],[[74312,74831],[38,112],[166,-100],[219,-37]],[[75091,74993],[38,668]],[[74655,76478],[-190,27]],[[74465,76505],[-31,-120],[-153,-271],[-36,-340],[39,-132]],[[29575,26812],[109,-1140]],[[87336,40456],[-59,-17],[69,-268],[-61,2],[20,-420],[-166,119]],[[87139,39872],[-341,-579]],[[75365,29328],[48,246],[155,448],[-51,208],[-6,461],[38,172],[-41,610],[-111,256],[-60,-10],[-61,156],[-9,-215],[-58,-76],[117,-301],[-135,-27]],[[75191,31256],[-41,-78],[-75,-725],[-387,108]],[[62771,64442],[840,-63]],[[63611,64379],[71,276],[-31,169]],[[63651,64824],[-32,158],[50,190],[-130,208],[-21,220],[-64,25],[12,-180],[-141,29],[45,221],[-41,104],[-119,61],[-21,238],[-111,-136],[-43,118],[85,119],[129,-16],[-30,177],[-137,-94],[-77,182]],[[63006,66452],[-294,27]],[[62712,66479],[68,-102],[-32,-124],[56,-159],[-37,-125],[32,-337]],[[9397,40922],[133,90],[54,116],[154,-47],[132,44],[82,123],[116,-21]],[[10068,41227],[30,154],[153,92],[114,-84],[52,-112],[135,69]],[[10426,42398],[-718,41],[-78,-148],[33,-48],[-58,-168],[-207,-174],[-40,-269],[-62,-140],[-75,-3]],[[9221,41489],[-117,-110],[-36,-230],[113,-5],[20,-128],[110,61],[86,-155]],[[91089,30002],[68,-48],[34,333],[104,-70],[65,45],[128,-191]],[[92002,31131],[-59,-24],[-161,75],[-24,98],[-107,-41],[-230,173],[-29,-177],[-122,417],[-60,2],[-70,194]],[[91140,31848],[-35,-225],[29,-297],[-92,-84],[-153,-238],[-229,-142]],[[90660,30862],[-35,-123],[256,-155],[-36,-150],[105,-97],[38,-161],[101,-174]],[[69249,49855],[17,328],[-93,16],[-31,243],[-94,28],[-170,526],[9,178]],[[68562,50983],[-17,-362],[-39,7],[-17,-503]],[[70941,48728],[-14,-270],[181,-91],[48,-234]],[[71616,47872],[124,-26],[121,56]],[[71861,47902],[8,240]],[[71869,48142],[-99,236],[-146,97],[-68,286]],[[71556,48761],[-14,209],[-131,249],[-94,-57]],[[80867,83197],[564,-148],[-30,-330],[39,-10],[-82,-863]],[[81358,81846],[75,252],[168,70],[82,283],[68,-14],[31,118],[219,247],[34,331],[-21,74]],[[82014,83207],[-77,231],[18,148]],[[81636,85361],[-576,158]],[[73617,45850],[189,532]],[[73806,46382],[-295,328]],[[73511,46710],[-89,-153],[27,-216],[-52,-145],[8,-190],[-72,-92],[-48,-277]],[[73285,45637],[97,-96],[41,210],[194,99]],[[62957,78465],[218,-19]],[[63615,78404],[-63,226],[40,201],[-21,116],[50,171],[-16,362]],[[62767,79823],[-24,-15]],[[62743,79808],[-25,-172],[51,-67],[107,-373],[-10,-54],[91,-677]],[[78017,78878],[55,-211],[-15,-122],[66,-174]],[[78123,78371],[20,-128],[127,-111],[157,-3],[191,143],[226,113]],[[78844,78385],[108,1330],[68,63],[-63,145]],[[78957,79923],[-112,108],[-24,99]],[[62092,78536],[865,-71]],[[62743,79808],[-39,-15]],[[62047,78651],[45,-115]],[[61924,78377],[120,-8],[8,190]],[[61877,78479],[47,-102]],[[96403,17647],[83,122],[10,231],[-78,75],[-64,-257],[-10,-169]],[[96124,18829],[26,-143],[42,237],[-68,-94]],[[95915,17896],[20,-151],[115,-211],[42,177],[114,210],[-35,153],[-95,90],[-79,-41],[-26,-244],[-56,17]],[[95704,17459],[9,305],[-29,283],[120,41],[-58,124],[76,128],[-21,170],[-150,63],[-31,263],[-81,44],[18,189],[-54,59],[-9,-300],[-120,155],[-19,-201]],[[95355,18782],[-13,-197],[59,-3],[41,-206],[-71,-136],[-11,-143],[-98,-257],[-104,47],[-97,-157],[-34,-189],[54,-83]],[[73918,32521],[746,-221]],[[74664,32300],[339,-96]],[[75003,32204],[-56,398],[-213,184],[-79,326],[36,576],[-82,104],[16,140]],[[74625,33932],[-210,-203],[-376,121]],[[65099,62853],[34,857]],[[65133,63710],[-337,38],[-4,55],[-196,214],[-144,-80],[-43,-101],[-75,14],[-47,139]],[[64287,63989],[-22,-523],[-183,19]],[[64082,63485],[91,-190],[-13,-183],[-105,-146]],[[85422,41235],[1,-2]],[[85897,41081],[98,118],[63,-33],[21,180],[185,141]],[[86264,41487],[-111,375],[-77,129]],[[86076,41991],[-92,-77]],[[63984,52746],[58,-121]],[[64042,52625],[169,-599],[99,-218]],[[64310,51808],[63,13],[93,-149],[115,183],[73,23],[119,156]],[[64773,52034],[18,166],[91,33],[61,128],[108,52],[16,212],[78,168],[-74,104]],[[65071,52915],[-359,-88],[-230,28]],[[62798,46749],[83,516],[-47,126],[95,465]],[[62929,47856],[-232,112],[-2,129],[-225,-12],[-29,63]],[[55883,15741],[31,1647],[3,659],[-192,4]],[[55725,18051],[-569,8]],[[55156,18059],[-16,-1324]],[[55140,16735],[-4,-657],[-22,-331]],[[56296,55736],[-678,13]],[[55618,55749],[-115,2]],[[55503,55751],[-10,-1314]],[[52604,22707],[897,11]],[[53710,23382],[-2,659],[22,241]],[[53163,23706],[-79,-189],[-147,-125],[-102,-15],[-73,-174],[-51,-247],[-107,-249]],[[88149,40193],[145,151],[128,382],[-6,193],[71,361],[99,93],[94,276]],[[88680,41649],[-122,-17],[-13,177],[-131,108],[-84,301],[-276,127]],[[87865,41179],[-62,-383]],[[21273,21951],[683,267]],[[21391,23354],[-224,-29],[-73,-200],[-62,-25],[-18,-179]],[[21014,22921],[17,-131],[121,-370],[-35,-266],[74,-28],[82,-175]],[[72148,36416],[-631,142]],[[78801,81277],[314,-52],[38,77],[189,-55]],[[79840,81432],[91,1017],[-250,66],[51,642]],[[79732,83157],[-136,171],[-155,-57],[-119,186]],[[79322,83457],[-20,-230],[-116,-57],[2,-272],[-46,-34],[-328,3],[-95,205],[-91,-308],[-17,-189],[-154,-50]],[[79473,77284],[-78,9]],[[79395,77293],[-234,29]],[[78352,76445],[-95,-1195]],[[69787,35980],[-66,-1194]],[[69721,34786],[742,-128]],[[70051,35930],[-264,50]],[[65242,62836],[520,-57]],[[65762,62779],[23,576],[96,-12],[42,1005],[94,-13]],[[65264,64537],[-21,-504],[-95,11],[-15,-334]],[[70644,31920],[-378,71]],[[43931,39763],[1318,136]],[[45249,39899],[-34,1179]],[[43896,40741],[35,-972]],[[43931,39769],[0,-6]],[[90207,36472],[10,479],[55,848],[-128,862],[-90,255]],[[90054,38916],[-112,50],[-89,-197]],[[89853,38769],[25,-163],[-88,-667],[-419,-1043]],[[89371,36896],[192,-446],[238,-75],[56,181],[139,-22],[70,-147],[84,155],[57,-70]],[[68094,44600],[250,-42]],[[68651,44512],[16,336],[-65,8],[51,1005]],[[68041,45956],[28,-318],[77,-41],[-26,-497]],[[84589,31115],[-121,-1047]],[[85238,30887],[-588,204]],[[72723,46508],[144,37],[-4,105]],[[72218,47426],[-58,-855]],[[55157,18390],[-1,-331]],[[55725,18051],[23,1561],[74,95]],[[39772,29562],[1338,193]],[[41018,31680],[-72,1490]],[[56257,50029],[513,10],[95,79],[326,1]],[[57191,50119],[-5,898],[43,0]],[[57223,51702],[-133,-78],[-181,34],[-641,-17]],[[50093,44096],[19,-1341]],[[50864,42783],[-16,1343]],[[50848,44126],[-184,-6]],[[50664,44120],[-571,-24]],[[71985,47296],[-132,22],[-63,120],[71,464]],[[89395,32714],[578,304]],[[89973,33018],[2,314]],[[89975,33332],[-7,144]],[[89930,33821],[-67,-70],[-110,233],[-80,-9]],[[89673,33975],[11,-137]],[[89684,33838],[-5,-150],[-87,-392],[-141,-2],[-94,-119],[38,-461]],[[89665,31859],[675,-456]],[[90340,31403],[27,269],[152,265],[-333,583],[163,285],[9,101]],[[90358,32906],[-26,169],[-96,169],[2,141]],[[90238,33385],[-263,-53]],[[89973,33018],[-57,-498],[-194,-392],[16,-177],[-73,-92]],[[81741,27661],[18,150]],[[81759,27811],[-75,-12],[-138,146],[-200,8],[-149,188],[0,121],[-81,16],[-105,-143],[-116,39]],[[80895,28174],[-91,-17],[24,-242],[-90,-458],[349,-325],[297,-251],[258,-137]],[[78835,54856],[174,113],[151,263],[165,80]],[[78789,55957],[-52,-210],[-154,-146],[5,-219],[-44,-47]],[[53834,24376],[1225,-9]],[[54697,25902],[-25,-131],[-182,-243],[-89,-205],[-101,-121]],[[51893,55745],[693,13]],[[52586,55758],[-9,837],[-122,54],[-21,93],[-97,-32],[-75,250],[-172,-63],[-59,66],[32,315],[-23,35]],[[52040,57313],[-707,-16]],[[51331,57297],[15,-1563]],[[66977,52539],[26,679]],[[66508,53621],[-41,-1010]],[[87154,33482],[62,-267],[57,-58]],[[87273,33157],[232,-115]],[[88165,33366],[38,-23]],[[35669,60939],[-1686,-347]],[[27685,24889],[-464,-146],[102,-988]],[[70704,21877],[7,119],[78,-12],[84,224],[52,-85],[357,-65]],[[71282,22058],[21,333]],[[70296,22571],[9,-245],[227,-376],[172,-73]],[[69934,20248],[122,104],[-12,121],[-113,-102],[3,-123]],[[69829,21159],[18,-326],[43,-121],[-3,-187],[84,78],[71,426],[-61,178],[-152,-48]],[[69686,20656],[75,-41],[-20,182],[-55,-141]],[[73663,33948],[120,1366]],[[73594,35370],[-773,221]],[[60402,27803],[-347,26],[7,330]],[[59313,27872],[-13,-665],[188,-12],[-7,-333],[295,-16]],[[56254,47397],[-9,-1144]],[[56246,47575],[8,-178]],[[51871,60663],[6,-839]],[[51877,59824],[917,17]],[[51863,61668],[8,-1005]],[[66771,62647],[-65,9]],[[66360,62701],[-323,43]],[[66037,62744],[-38,-1552]],[[56196,10841],[60,-44],[183,44],[61,185],[320,13],[240,43],[79,426],[225,-22],[254,-111],[2,-175],[159,-82],[11,-58],[205,-70],[44,70],[132,-23]],[[58231,13821],[-1033,22],[2,199],[-956,36]],[[56210,12102],[-14,-1261]],[[53790,16748],[-192,2]],[[53598,16750],[-958,-7]],[[67996,46357],[-178,-57],[-343,68]],[[67333,45599],[-22,-391],[90,-15]],[[54566,16746],[574,-11]],[[53626,18399],[2,-988],[-29,0],[-1,-661]],[[53664,36992],[759,10]],[[53692,37697],[81,-91],[-50,-82],[62,-262],[-121,-270]],[[63651,64824],[318,358]],[[63922,66541],[11,336]],[[63933,66877],[-372,29]],[[40326,61028],[440,61],[17,-26],[67,-1316]],[[41440,59825],[-20,450]],[[41420,60275],[-74,1689]],[[41308,62844],[-431,-56],[-15,342],[-188,-27],[-16,336],[-188,-28],[-16,335],[-375,-56],[-16,336],[-58,-7]],[[40005,64019],[-377,-56]],[[39338,63247],[76,-1392]],[[89258,34883],[254,-139],[28,55],[140,-60]],[[89680,34739],[-49,209],[3,167]],[[89634,35115],[17,143],[65,18]],[[89716,35276],[-17,202],[-125,364],[-43,197],[-136,158]],[[89395,36197],[-5,-79],[-253,-101],[-21,-185]],[[81963,43925],[417,436]],[[82380,44361],[149,157]],[[82529,44518],[-36,243],[16,163],[-49,14],[-100,745]],[[82360,45683],[-122,296]],[[62177,69339],[35,1473]],[[62212,70812],[-1116,78]],[[61096,70890],[-116,-231],[27,-337],[-50,-18]],[[63933,66877],[22,670]],[[63955,67547],[59,1852]],[[63542,69675],[-87,7],[-31,-995]],[[63901,63610],[181,-125]],[[64287,63989],[-53,105],[34,196],[-39,84],[48,252],[36,16]],[[64313,64642],[6,167]],[[63611,64379],[49,-187],[17,218],[70,-27],[70,-152],[-28,-102],[-88,27],[-72,-95],[27,-229],[58,-83],[2,266],[113,-22],[-42,-238],[27,-99],[-48,-227],[74,-12],[61,193]],[[59332,41748],[54,108],[17,235],[-51,210],[72,141],[-23,251]],[[58265,42602],[-25,-760]],[[78629,43997],[36,-329],[33,-13]],[[78698,43655],[17,-160],[287,-160],[53,-101]],[[79055,43234],[79,23],[34,-203],[90,86],[15,255]],[[78938,42528],[134,-299]],[[79055,43234],[-77,-435],[-149,80]],[[78829,42879],[109,-351]],[[81259,51359],[81,-61]],[[81340,51298],[52,160],[9,336],[-25,172],[-50,2],[-77,338]],[[81249,52306],[-169,201],[-64,157],[6,205],[-86,13],[-21,159]],[[80915,53041],[-373,-766]],[[40158,13162],[-191,-32],[-56,985],[-64,-11],[-75,1316]],[[39772,15420],[-639,-111],[-19,333],[-191,-34],[21,-333],[-190,-35]],[[38444,12216],[-2,-232],[53,-156],[115,46],[129,135],[214,9],[99,125],[18,-100],[121,136],[37,-109],[76,105]],[[54736,47821],[2,721]],[[53981,48545],[0,-883],[-156,-107]],[[52492,28028],[687,5]],[[64145,79693],[-648,65]],[[62156,18497],[65,-28],[136,76]],[[63135,19479],[45,1210],[-176,20]],[[62610,20753],[-25,-661],[-187,23],[-11,-329],[-192,18],[-39,-1307]],[[39710,75374],[527,73]],[[41220,75573],[59,8]],[[41222,76951],[-115,89],[-186,-344],[-141,-99]],[[40780,76597],[-318,-38],[-116,-89],[-25,-150],[-130,43],[-115,-90],[-123,-6],[-52,-127],[-21,-416],[11,-227],[-181,-123]],[[48561,66368],[75,140],[184,92],[88,125],[121,-26],[87,-117],[59,31]],[[49494,67865],[-961,-39]],[[51334,95618],[123,719]],[[51457,96337],[-39,-1]],[[51418,96336],[-75,-499],[-165,-56],[124,-85],[-17,-79]],[[51034,95612],[47,177],[5,275],[65,4],[58,263]],[[51209,96331],[-81,-1],[-114,324],[-154,2],[-8,91],[-662,-205]],[[50190,96542],[3,-324],[-281,-68],[100,-615]],[[61430,72798],[41,-148],[93,90],[60,-208],[106,45],[71,-220],[63,3],[58,-221]],[[61922,72139],[74,-6],[11,327],[277,-22]],[[62266,72609],[-46,169],[25,341]],[[62245,73119],[-292,26],[-114,146],[-3,95],[-109,47],[-17,354],[-96,247],[-116,122]],[[61228,73693],[34,-333],[116,-338],[52,-224]],[[60983,41599],[62,171],[106,45],[6,132],[93,162],[65,6],[5,182],[70,98],[108,12]],[[61498,42407],[-67,144],[-48,366]],[[61383,42917],[-755,26]],[[60628,42943],[-3,-168]],[[79969,41857],[89,74],[323,-88],[362,470],[52,26]],[[80795,42339],[-124,236],[-98,89],[-63,-41],[-122,68]],[[80388,42691],[-156,-120],[-365,-29]],[[77866,44220],[39,-148]],[[77905,44072],[53,-61],[19,-193],[170,-12],[-3,-277],[161,-323],[148,227]],[[78453,43433],[93,145],[108,-5],[44,82]],[[78209,44732],[-301,-191]],[[80388,42691],[41,467],[66,92]],[[80441,43772],[-118,70]],[[80323,43842],[-517,-100]],[[37586,8077],[1551,305]],[[39137,8382],[-20,333],[-58,-11],[-20,326],[190,35],[-60,979],[318,58]],[[93195,24704],[12,-29]],[[93207,24675],[101,-27],[-37,-194],[66,-153],[114,7],[21,-220],[140,-165],[142,26],[42,-65]],[[93796,23884],[71,327],[92,308],[162,84],[48,-167],[94,71],[-47,334],[-44,-28],[-271,320],[61,78],[-48,256],[-93,112]],[[93719,25623],[-61,-96],[-6,-191],[-60,2],[-19,-301],[-113,92],[-220,-128],[20,-59],[-65,-238]],[[77845,55087],[76,-111],[116,47],[233,-393],[87,-109]],[[78525,55427],[-127,596],[-79,77]],[[78057,55968],[-84,-276],[-153,-38]],[[69500,55863],[517,-108]],[[70017,55755],[301,-65],[49,65]],[[70084,56688],[-47,185],[-63,49],[-161,-100]],[[69813,56822],[-128,73],[-35,-84],[-215,-209]],[[69435,56602],[-15,-364],[-29,-45],[15,-311]],[[62165,68667],[189,-16],[3,170],[191,-7],[22,-173]],[[62602,68762],[62,113],[-83,167],[47,86],[66,-78],[5,-174],[74,89],[-8,165],[-137,114],[80,85],[94,-60],[43,-229],[55,83],[-144,316],[6,195],[83,229],[25,-158],[74,27],[-82,196],[17,290],[-29,55],[-147,-26],[-29,126],[146,162],[-70,210]],[[62750,70745],[1,28]],[[62570,70785],[-313,22]],[[62257,70807],[-45,5]],[[70805,42834],[-121,86]],[[70684,42920],[-502,96]],[[69815,40618],[345,-67]],[[69842,41115],[-27,-497]],[[70684,42920],[-10,278],[40,609]],[[70231,44141],[-127,28]],[[69437,43383],[-524,81]],[[64118,72300],[83,-12],[146,-175],[76,-178],[147,-29],[274,-339],[122,-535]],[[64966,71032],[431,-70]],[[70142,16655],[261,-60],[166,-78],[-96,295],[39,584],[-39,72],[73,165],[116,-60],[218,120],[173,-195],[72,-4],[71,253],[195,-140],[47,-241],[251,-53],[33,-134],[148,-18],[34,93],[-30,335],[69,383],[24,306],[-153,41],[-33,223],[190,-58],[46,103],[117,48],[-58,163],[141,199],[70,-11],[125,113],[26,-124],[86,96],[38,-96],[-113,-302],[82,30],[204,-96],[85,36],[96,279],[99,81],[-41,222],[-73,81],[-155,-91],[-165,88],[-181,-98],[-205,80],[-152,-40]],[[72043,19245],[-192,16],[-23,-328],[-188,40],[-24,-327],[-1136,234],[-23,-331],[-189,38]],[[71257,19856],[66,-9],[38,130],[370,129],[-82,211],[-130,-33],[-262,-428]],[[72043,19245],[-208,130],[-114,24],[-64,107],[-215,-182],[-97,-138],[-67,37],[-79,-84],[-48,108],[22,210],[-52,26],[-1,232],[64,194],[-66,81],[-138,-112],[-23,-96],[-123,-99],[-150,-260],[-237,-124],[-68,36],[-222,-139],[-66,53],[-203,-9],[-123,270],[-76,258],[-195,-4],[-112,57]],[[69382,19821],[-64,-1049]],[[80361,76132],[72,90],[116,-19],[177,128],[127,-25],[217,56],[92,-74],[90,39]],[[81252,76327],[35,36],[3,375],[31,345]],[[81321,77083],[-124,-176],[-68,173],[-68,-37],[-67,-163],[-110,123],[-105,-16],[-170,449],[-346,841]],[[80263,78277],[-30,-337]],[[80795,42339],[80,42]],[[73663,60113],[147,112],[158,248]],[[73550,61543],[21,-111],[-63,-64],[-84,-376],[103,-609]],[[77219,77553],[480,-57]],[[77699,77496],[161,-17]],[[77860,77479],[101,591],[55,179],[107,122]],[[77791,78931],[-192,45],[-12,-167],[-660,153]],[[76927,78962],[54,-121],[-48,-144],[89,-73],[53,-200],[-50,-272],[53,-130],[121,-84],[54,-125],[-34,-260]],[[64239,69479],[90,-151],[-80,-129],[273,132]],[[65314,69702],[-123,416],[8,177],[-81,252],[-32,267],[-120,218]],[[64966,71032],[-700,-428],[-47,3]],[[66446,56858],[18,-2]],[[58526,26855],[-2,-167],[132,26],[54,-142],[197,-12],[-6,-331],[95,-4],[-7,-323]],[[58007,54023],[759,4]],[[58766,54027],[189,-2]],[[58046,55293],[-3,-708],[-36,0]],[[58007,54585],[0,-562]],[[72726,67488],[527,-89],[90,20]],[[73343,67419],[33,206]],[[73554,68745],[13,81]],[[72911,68956],[-110,24]],[[34658,73193],[-446,-83],[-30,328],[-46,66],[58,270],[131,198]],[[34325,73972],[-1421,-287]],[[84453,35697],[110,-284],[160,-585]],[[84723,34828],[-11,-93]],[[85350,35245],[-231,58],[-584,483],[-52,57]],[[46812,26399],[-103,-44],[-70,-110],[54,-469],[-22,-117],[-133,-141]],[[93186,21508],[-62,260],[-47,-164],[-100,139],[-63,-234],[-34,150]],[[92189,21096],[-125,-467],[297,-227],[-94,-380],[30,-197],[-69,-84],[-117,-399]],[[81454,50539],[72,-128],[98,-2],[75,153],[-94,309],[-154,-154]],[[61965,38680],[0,1]],[[55658,40695],[4,667],[26,0],[0,587]],[[55688,41949],[-476,-5]],[[81586,63045],[-173,169],[-306,-354],[45,-353]],[[26861,27992],[-98,937],[302,94],[139,-302]],[[9787,18826],[519,284],[-59,340],[90,45],[-56,312],[81,41],[-110,639],[91,49],[-105,630],[-93,-33],[-56,320],[-91,-48],[-109,634],[-9,137]],[[8963,21025],[142,-394],[32,-163],[95,-226],[85,-298],[-8,-147],[123,-117],[138,-268],[217,-586]],[[12361,22605],[-182,-90],[-125,164],[-155,-74],[-155,155],[-244,87],[-61,172],[-243,-109],[-105,38],[-217,-126],[-152,136]],[[9787,18826],[254,-880]],[[62400,31555],[-115,197],[-159,192],[-149,74],[-187,284],[-151,31]],[[61639,32333],[-43,-351]],[[61596,31982],[-3,-209],[174,-480],[-85,-216],[-177,-186],[8,-220]],[[81157,48105],[204,-68],[104,209],[236,-41],[112,127],[65,-138]],[[81878,48194],[75,27],[-77,411]],[[81331,49247],[-26,-43],[-168,300],[-140,-82]],[[80997,49422],[-86,-47],[-66,-160]],[[81310,48811],[72,-8],[-57,-205],[-15,213]],[[79981,50492],[171,171],[103,-116],[234,-375],[66,-51],[87,202]],[[80642,50323],[110,388]],[[78844,78385],[149,24],[110,-311],[-21,-128],[-99,-151],[-79,-308],[57,-163]],[[79395,77293],[143,1697]],[[79538,78990],[14,116],[-109,141],[-81,349],[103,168]],[[79256,80244],[-156,-78],[-85,-242],[-58,-1]],[[96598,97263],[97,-79]],[[96828,97116],[30,-23]],[[96750,97450],[-107,-55]],[[95860,97627],[68,-57],[21,-301],[95,-3]],[[96215,97587],[-148,-11]],[[58528,25250],[-50,-107],[-121,6],[-76,123]],[[58281,25272],[-35,-77],[-20,-484],[-29,2]],[[58197,24713],[-7,-340],[321,-15]],[[30566,41948],[327,-3828]],[[32365,39059],[-138,1679]],[[32227,40738],[-171,2148]],[[32006,43508],[-103,115],[-1525,-409]],[[30378,43214],[8,-378],[118,-501],[122,-152],[95,-195],[-155,-40]],[[81340,51298],[58,-167],[128,-83],[93,111],[165,-394]],[[81784,50765],[226,62],[90,119],[187,386]],[[82287,51332],[-9,731]],[[81612,52504],[-61,-167],[-302,-31]],[[33224,90799],[107,-101],[92,166]],[[55399,45973],[89,137],[22,130],[117,170]],[[55627,46410],[-357,5]],[[92269,27940],[476,-193],[11,57]],[[92980,29167],[-253,136],[-337,20],[-165,-113]],[[92225,29210],[110,-205],[-58,-298],[-84,36],[-66,-459],[185,-85],[-43,-259]],[[91937,29855],[79,-109]],[[92016,29746],[129,-68],[-31,-138],[89,-173],[22,-157]],[[93001,29329],[88,677],[-64,48],[54,245],[-36,112]],[[93043,30411],[-145,-4],[-109,132],[-101,34],[-68,111],[-82,-56],[-39,142],[-198,132]],[[12890,13610],[50,-90],[144,128],[61,-371]],[[13145,13277],[141,72],[28,-100],[1221,600]],[[14535,13849],[29,248],[100,164],[-17,295],[-49,132]],[[14598,14688],[4,117],[-112,40],[30,365],[43,10],[-21,201],[-104,63],[-93,-42],[-55,76],[-11,258],[85,197],[-42,60]],[[57932,76532],[-116,-94],[-162,169]],[[56770,75581],[-112,-303],[-2,-192]],[[78386,37363],[311,-83],[-10,-112],[121,-32],[9,110],[492,-137]],[[79405,38104],[-181,140],[-42,143]],[[79182,38387],[-135,-18],[-189,43]],[[78445,38025],[-59,-662]],[[13003,48882],[78,34],[-50,326],[91,42],[-71,494],[-93,-44],[-83,488],[-193,1301]],[[11558,51024],[-34,-16]],[[7758,32279],[767,399]],[[9371,33930],[-33,185],[50,182],[-68,483]],[[9320,34780],[-40,186],[-224,-72],[-71,25],[-79,345],[36,363],[-13,339],[-174,162],[-88,364],[28,219],[98,146],[2,390],[176,291]],[[8971,37538],[-421,-223],[-99,2],[-18,113],[-380,-185],[-19,110],[-212,-115],[-62,8]],[[7760,37248],[-137,-381],[-80,-332],[1,-147],[60,-62],[79,-282],[-36,-911],[21,-351],[69,-278],[145,-352],[0,-209],[42,-298],[-34,-175],[34,-421],[-69,-162],[-6,-191],[-91,-417]],[[39265,46385],[-624,-103]],[[48839,83544],[-179,101],[-76,-18]],[[48584,83627],[-261,-248]],[[58632,57581],[770,-40]],[[59402,57541],[-53,32],[17,1452]],[[59271,59027],[-628,8]],[[51320,58952],[187,26]],[[51507,58978],[-4,670],[53,-97],[84,148],[126,112],[111,13]],[[51871,60663],[-944,-30]],[[85823,24893],[370,59],[563,-985]],[[86951,26786],[-52,53]],[[86899,26839],[-292,145],[-63,-250],[-135,56],[-65,-392],[-68,35],[-125,-263],[-133,-140],[-247,120]],[[75736,60061],[31,-127]],[[76353,59599],[61,243],[70,123],[99,-61],[26,311],[153,211],[11,153],[86,186]],[[76859,60765],[-661,182]],[[76198,60947],[-52,-33],[-309,-533],[-137,48]],[[75700,60429],[53,-282],[-17,-86]],[[87784,21572],[280,-181],[-209,-977],[343,-228]],[[88198,20186],[310,-191],[50,-4],[240,-277],[23,-213],[186,-114]],[[89007,19387],[124,367],[-26,280],[88,389]],[[89193,20423],[-80,330],[4,567],[50,50],[52,349],[84,197],[26,249]],[[89329,22165],[-88,55]],[[89241,22220],[-922,616]],[[88319,22836],[-11,-200],[-174,-60],[-90,110],[-246,-351],[101,-216],[-115,-547]],[[81990,46962],[135,28],[-70,286],[22,30]],[[82077,47306],[-55,340],[-102,297],[-42,251]],[[77949,48707],[-75,-78],[42,-410],[88,37],[52,-296]],[[78056,47960],[111,-99],[207,-28],[4,138],[82,20],[167,198],[-24,148],[83,12],[84,290]],[[78770,48639],[-87,19],[-88,260],[47,325],[96,170]],[[78738,49413],[-97,135],[-61,-83]],[[78904,48674],[16,-755],[136,-436]],[[79056,47483],[147,105],[29,-43],[113,122],[20,-110],[90,42],[35,-75],[76,192],[137,214]],[[79696,49043],[-196,-10],[-41,-146],[-382,52],[-21,-208],[-97,-102],[-55,45]],[[78150,46308],[131,245],[167,-270]],[[78448,46283],[116,214],[465,-39]],[[79057,47482],[-1,1]],[[78904,48674],[-134,-35]],[[78056,47960],[38,-51],[-44,-362],[-170,6]],[[77880,47553],[3,-288],[268,-332],[-86,-425],[85,-200]],[[97500,97141],[11,-23]],[[97511,97118],[76,110],[47,-68],[150,-11]],[[97784,97149],[101,148],[-50,140],[-133,24]],[[97702,97461],[10,-60],[-228,-219]],[[95728,96995],[34,-37]],[[95881,96908],[147,-77]],[[32227,40738],[702,167],[1960,429]],[[70078,45308],[-419,69],[-1,-24]],[[69539,44896],[-15,-198],[57,-179],[-22,-135]],[[60661,75579],[40,-67],[42,-440]],[[61314,75032],[7,503],[43,1804]],[[61364,77339],[-35,-64],[-113,38]],[[61216,77313],[4,-114],[-126,-145],[-28,-237],[-67,-36]],[[60017,48848],[-145,1212]],[[59650,50062],[-382,-618],[-3,-336]],[[80424,33071],[85,858]],[[79099,34871],[-4,-42]],[[79095,34829],[-126,-1328]],[[75468,48170],[101,404],[101,44]],[[75670,48618],[72,49],[-17,173],[-64,80]],[[75661,48920],[-180,290],[-86,89]],[[69410,58178],[227,-21]],[[69637,58157],[36,213],[182,-276],[246,20],[316,212]],[[70417,58326],[-2,206],[58,286],[-7,189],[-87,13],[-24,317]],[[70355,59337],[-168,42]],[[69394,58952],[-3,-420]],[[50859,21326],[-45,-3]],[[95145,98152],[52,269]],[[95197,98421],[-142,105],[-112,-99]],[[23167,13614],[65,235],[166,62],[21,170]],[[22450,15179],[114,-901],[31,-8],[-6,-324],[333,127],[43,-83],[145,85],[36,-272],[-51,-220],[72,31]],[[22152,13384],[56,-430]],[[22208,12954],[476,179],[55,-153],[131,-114],[244,96]],[[23114,12962],[-49,492],[118,35],[-16,125]],[[22245,15647],[-74,-228],[-41,-361]],[[22130,15058],[-16,-411],[85,-208],[-44,-184],[26,-79],[-15,-292],[-76,-210],[62,-290]],[[49708,44080],[385,16]],[[50664,44120],[-15,1343]],[[49711,45758],[-30,-1]],[[52545,44170],[571,8]],[[53491,44181],[-2,1676]],[[52915,45853],[-380,-5]],[[56007,58975],[413,-12]],[[56557,60514],[40,464]],[[56597,60978],[-593,14]],[[76198,60947],[-117,31]],[[76081,60978],[-124,51],[-561,123]],[[75396,61152],[-122,27]],[[75274,61179],[76,-168],[-22,-63],[94,-155],[99,-276],[179,-88]],[[76859,60765],[169,-145]],[[77116,62671],[-109,-136]],[[77007,62535],[-137,-229],[-113,-2],[-214,-243]],[[76543,62061],[-32,-107]],[[76511,61954],[29,-293],[90,-144],[35,-220],[65,-50],[126,-250],[3,-232]],[[57495,60476],[92,1]],[[57587,60477],[0,112],[-93,-1],[-32,276],[-159,-1],[0,336],[94,1],[-2,438],[-84,62]],[[57311,61700],[-120,-14],[15,196],[-122,155],[-178,32],[-68,-70],[5,-142],[-87,-150],[-88,80]],[[56668,61787],[-71,-809]],[[98381,96918],[82,68],[88,-45],[69,120],[-126,117],[-93,-60],[-20,-200]],[[65814,78160],[-139,17]],[[65675,78177],[-202,23]],[[65473,78200],[-10,-278],[-160,18],[-40,-219],[-127,17],[-55,-161],[-38,-612]],[[65043,76965],[-8,-225],[153,-1]],[[64847,66090],[379,-39],[-4,-112]],[[64895,67113],[-34,-933],[-14,-90]],[[46916,42567],[171,9]],[[13034,9433],[1428,717]],[[14462,10150],[-206,1214]],[[12909,10216],[125,-783]],[[70244,62139],[94,-16]],[[70338,62123],[83,1694]],[[69829,63391],[-68,-136],[-158,-126],[-66,29]],[[73918,78576],[399,-69],[-3,-167],[441,-83]],[[74755,78257],[-87,332],[-16,450],[-48,289],[1,283],[-91,261]],[[74514,79872],[-517,99]],[[79732,83157],[146,-47],[87,112],[155,59],[65,89]],[[79586,84545],[-92,-80],[16,-143],[-90,-337],[63,-229],[-161,-299]],[[62750,70745],[462,-28]],[[63604,72011],[62,93],[-51,72]],[[70498,48791],[378,-50]],[[71159,49611],[11,364],[-49,312]],[[43405,55211],[-24,-2]],[[78982,59523],[191,529],[103,374],[83,57]],[[51573,47505],[-7,672]],[[50623,48146],[9,-1006]],[[36098,17387],[851,176],[28,62],[-18,274],[189,39],[-23,337],[32,9],[-44,650],[104,12],[-67,1011]],[[37150,19957],[-172,-35],[11,-165],[-189,-38],[11,-164],[-378,-79],[23,-328],[-132,-28]],[[52246,35110],[13,-1578]],[[52873,34454],[-146,-4],[-11,949]],[[52716,35399],[0,54],[-156,-3]],[[58745,22027],[84,-136],[24,-242],[84,-264],[101,-153],[133,-78],[44,-127],[76,38],[43,-168],[141,-12],[19,-163],[62,-62],[-7,-316]],[[59549,20344],[372,-27]],[[63715,31285],[48,-132],[115,-64],[12,-159]],[[65037,31158],[49,1343]],[[64518,32582],[-2,-44],[-751,84]],[[63765,32622],[-50,-1337]],[[62975,82198],[221,-162]],[[63196,82036],[188,-81],[81,41]],[[63465,81996],[18,338],[64,-7],[6,165],[75,-10],[5,116]],[[63633,82598],[-105,443],[-104,306]],[[63424,83347],[-134,351]],[[63248,83422],[2,-391],[-81,-130],[-104,-34],[-143,-458]],[[87148,31591],[-203,-1333]],[[86945,30258],[128,-49]],[[87073,30209],[224,152],[71,276],[127,-91],[55,65]],[[87550,30611],[116,110],[-11,158],[91,44],[74,510],[-27,67]],[[87273,33157],[90,-143],[-215,-1423]],[[86885,27347],[51,-179],[-37,-329]],[[87662,26575],[196,55]],[[87912,27838],[-90,85],[-115,17],[-175,242],[-61,179],[-112,77],[-134,297],[-105,8],[-50,199],[-167,92]],[[86903,29034],[-19,-256],[34,-152],[-77,-219],[27,-307],[48,-111],[-51,-359],[20,-283]],[[50904,63991],[1317,34]],[[52221,64025],[-4,838]],[[51081,65338],[5,-658],[-189,-20]],[[87406,21807],[378,-235]],[[88319,22836],[-235,158],[264,1301]],[[88348,24295],[90,427]],[[88438,24722],[-127,75],[18,98],[-154,89],[-20,-98],[-317,180],[-305,-107]],[[58328,59037],[2,168],[61,0],[-2,437],[-94,167],[-30,170],[15,455]],[[58280,60434],[-313,-6]],[[57967,60428],[-380,-6],[0,55]],[[85957,30630],[988,-372]],[[87148,31591],[-411,153]],[[86102,31943],[-208,-1290]],[[75462,81241],[187,-195],[-25,165],[-143,109],[-19,-79]],[[74742,80707],[23,-168],[876,-170]],[[75641,80369],[63,72],[85,-67],[64,82],[186,23]],[[76039,80479],[2,246],[-164,-2],[-39,-79],[-154,105],[-208,336],[-66,34],[-335,436],[-1,-150],[-75,-25],[-131,289],[-243,46],[100,141],[16,124],[115,48],[385,-385],[165,-312],[20,39],[-141,302],[-483,503],[-364,-278]],[[74438,81897],[27,-132],[167,-286],[132,-40],[29,-110],[-89,-379],[38,-243]],[[75953,77702],[-76,361],[-62,71],[-22,382],[-39,83],[-183,87],[-221,290]],[[75350,78976],[-135,-84],[-12,-164],[-125,28],[-17,-223],[-193,-16],[-20,-276],[-93,16]],[[74755,78257],[43,-59],[74,-320],[-16,-47]],[[74514,79872],[-45,425],[93,247],[169,106],[11,57]],[[74438,81897],[-127,2],[-111,116],[-106,-290],[-60,-329],[47,-200],[23,341],[58,291],[54,61],[56,-140],[-9,-275],[-196,-452]],[[76455,79182],[-43,-611],[52,-163],[-13,-183],[120,-27],[-82,-319],[-17,-239]],[[76970,77582],[249,-29]],[[76927,78962],[-27,94],[-136,167],[-51,239],[-48,406]],[[76665,79868],[-67,-60],[-95,51]],[[76503,79859],[-48,-677]],[[79436,86593],[67,407],[59,8],[-19,-271],[-60,-157]],[[79780,86504],[52,575]],[[79832,87079],[-83,-7],[28,207],[-69,108],[113,108],[84,-11],[109,334],[-59,156],[1,266],[-152,83],[49,218],[-60,114],[-39,-351],[-126,-295],[-84,-98],[-63,-231],[4,-515],[-55,-204],[-51,-355]],[[47896,62844],[1087,62],[27,57],[151,-78],[52,105]],[[49213,62990],[-13,935]],[[48814,64910],[-314,-17],[3,-167],[-184,-11]],[[57967,60428],[-4,1518]],[[57404,62590],[-97,-5],[4,-885]],[[52122,57649],[7,81],[113,120],[114,-58],[67,-191],[121,-171],[56,60],[53,281],[-9,154],[132,47],[104,200],[62,-100],[30,136],[-89,190],[102,68],[103,-130],[40,179],[165,217],[146,17],[-21,246]],[[53418,58995],[-52,-1]],[[52797,58998],[-348,-1],[2,-337],[-187,-3]],[[52264,58657],[2,-336],[-188,-3],[4,-670],[40,1]],[[52403,65370],[563,10]],[[52966,65380],[-1,330],[192,7]],[[53157,65717],[-3,1005]],[[53154,66722],[-83,0],[-1,165],[-238,-3]],[[52832,66884],[-61,-180],[-91,-44],[-476,-8]],[[57578,41882],[21,405],[13,804]],[[57612,43091],[6,505]],[[56857,42654],[-4,-332],[-28,1],[-5,-391]],[[65701,75181],[466,-118]],[[66167,75063],[59,1389]],[[66226,76452],[-98,12]],[[12828,9333],[206,100]],[[12473,9647],[-173,-120],[-21,-165],[-50,37]],[[80291,78604],[693,-194],[22,262]],[[81006,78672],[30,397],[166,166],[7,179],[77,272]],[[81286,79686],[-435,129],[-82,162],[-87,48],[-42,189],[-198,162]],[[80442,80376],[-3,-109],[-134,-1497]],[[80305,78770],[-14,-166]],[[69382,19821],[-83,92],[10,103],[-126,-92],[-304,9],[-120,102],[-62,149],[-35,452],[-93,17],[-46,130]],[[68523,20783],[-30,-526],[-47,9],[-57,-995],[-191,31]],[[59923,18223],[112,93],[185,-53],[400,-282]],[[59549,20344],[-21,-990]],[[75963,70564],[-7,34]],[[75956,70598],[-82,17]],[[75874,70615],[89,-51]],[[75546,71267],[-5,-91],[101,-41],[110,-431],[122,-89]],[[75874,70615],[69,45]],[[75943,70660],[157,-32],[167,107]],[[76267,70735],[27,107],[20,570]],[[75719,71781],[-71,9],[-16,-244],[-67,11],[-19,-290]],[[58953,70983],[458,-22]],[[59411,70961],[484,-16]],[[8971,37538],[90,230],[36,392],[71,55],[7,159]],[[9175,38374],[-73,240],[18,163],[101,213],[-7,198],[66,101],[-41,93],[54,208],[53,557],[-62,328],[-60,-21]],[[9224,40454],[7,59]],[[9231,40513],[-173,42]],[[9058,40555],[-85,-353],[-132,-41],[-134,-172],[-198,-541],[-105,-54],[-74,49]],[[8330,39443],[-96,-75],[29,-218],[-43,-386],[-160,-325],[-100,-271],[-115,-669],[-85,-251]],[[52227,63601],[-6,424]],[[50916,62137],[1,-6]],[[52360,44166],[8,-1343]],[[56065,69757],[114,131]],[[56363,71613],[-96,3]],[[56241,71520],[-91,-80],[-95,-218]],[[56055,71222],[10,-1465]],[[50918,61978],[9,-1345]],[[54143,70336],[138,-134],[101,-198],[105,12],[162,-221],[151,42],[185,-93],[104,38],[63,-61]],[[54505,71330],[-5,-73],[-357,1]],[[87577,25882],[369,97],[695,-270]],[[88641,25709],[21,99]],[[88662,25808],[43,216],[-226,426],[-3,62]],[[52586,55758],[390,5]],[[53889,55767],[0,2220]],[[53889,57987],[0,1012],[-471,-4]],[[52122,57649],[24,-85],[164,-83],[-17,-184],[-158,60],[-95,-44]],[[70483,77524],[707,-109]],[[71296,79747],[-224,99]],[[71072,79846],[-5,-61],[-286,138],[-191,141],[-106,-40],[2,-135],[169,-182],[2,-291],[-89,-145],[-81,-40],[-104,-198],[-49,-401],[-55,1],[-31,-253],[30,-104],[-46,-128],[47,-164],[-12,-142],[216,-318]],[[82014,83207],[103,144],[181,-42],[107,167],[76,-57],[48,-157],[78,39],[34,234],[105,191],[83,286]],[[75476,74901],[535,-129]],[[76011,74772],[-86,203],[-2,144],[-246,248],[-31,259],[-229,499],[9,171]],[[72435,61773],[233,-38]],[[72668,61735],[196,-39]],[[72504,62242],[-69,-469]],[[75388,74204],[283,-61]],[[75671,74143],[471,-109],[38,-111]],[[76180,73923],[48,86],[48,691]],[[76276,74700],[-265,72]],[[76276,74700],[27,415]],[[76303,75115],[64,982]],[[74831,77774],[-73,-76],[-62,-242],[-20,-257],[-100,-173],[-52,-244]],[[74524,76782],[-59,-277]],[[51507,58978],[376,8],[2,-336],[379,7]],[[72609,55368],[526,-63]],[[72335,53223],[-41,102],[-239,275]],[[52937,71892],[6,-649]],[[99508,96953],[177,-116],[110,89],[-92,14],[4,161],[-186,-70],[-13,-78]],[[99412,96842],[1,63]],[[37353,73673],[-39,716],[-182,3736],[-17,-3],[-37,657]],[[36949,78893],[-35,-227],[-104,-18],[-79,-233],[-76,-44],[-114,-212],[-81,0],[-241,-262],[2,-129],[-274,-438],[-65,-368],[-78,-142],[-220,-235],[-152,-497],[-112,-115],[-28,-204],[-76,-99]],[[35216,75670],[81,-127],[11,-210],[-63,-11],[113,-2002]],[[78448,46283],[-62,-217],[-9,-593],[-36,-290],[36,-73]],[[67012,74851],[61,-16]],[[67073,74835],[271,-72],[254,-113],[275,-181]],[[67923,75217],[74,999]],[[67997,76216],[-731,106]],[[67076,76348],[-64,-1497]],[[62774,31406],[55,1488]],[[62829,32894],[40,1174]],[[62092,33496],[-91,-36],[-168,-182],[-92,-550],[-71,-77],[-31,-318]],[[62187,75639],[273,-28],[36,75]],[[62496,75686],[-30,85],[3,350],[-53,39],[-130,-120],[-32,131],[61,94],[101,-48],[46,99],[-76,122],[-114,36],[6,339],[82,179],[-10,120],[-69,-15],[-68,-234],[-52,133],[140,320],[-15,145],[-104,63],[-119,-15],[-9,128],[107,158]],[[62161,77795],[-59,225],[13,100],[100,135],[9,119],[-132,162]],[[61924,78377],[32,-238],[-32,-108],[73,-211],[-60,-76],[-195,-93],[-47,-109]],[[61695,77542],[-55,-133],[25,-285],[126,-45],[-151,-137],[-7,-277],[60,17],[37,196],[129,17],[16,-124],[-133,-27],[30,-224],[-92,-152],[32,-227],[57,-73],[74,127],[55,-114],[9,-343],[113,1],[60,-130],[104,142],[3,-112]],[[55766,73582],[6,894]],[[55772,74476],[-880,22]],[[54892,74498],[-35,-45],[29,-209],[-48,-127],[76,-235],[-5,-228]],[[87732,18149],[208,1048],[30,-18],[99,488],[19,-13],[110,532]],[[86675,18578],[61,-44],[532,-182],[464,-203]],[[62116,75142],[115,-192],[-35,-110],[52,-125],[-24,-112],[30,-268],[-35,-213],[18,-223]],[[62237,73899],[318,-24],[87,-117],[71,74],[91,-144],[92,-23],[22,145]],[[63059,74132],[42,10]],[[63102,74166],[-119,264],[-79,-121],[-6,136],[131,103],[-202,232],[15,171],[-116,189]],[[62612,75628],[-116,58]],[[62187,75639],[-66,-164],[-5,-333]],[[62161,77795],[87,-189],[22,89],[80,-55],[25,-356],[83,10],[216,-194],[278,30]],[[62952,77130],[120,88]],[[67073,74835],[-72,-1522]],[[49676,23921],[8,0]],[[68872,62314],[20,-215],[-43,-1310]],[[66226,76452],[472,-58]],[[66416,78444],[-31,-382]],[[13064,7833],[306,152]],[[13370,7985],[-19,106],[791,408],[601,294]],[[15845,9245],[11,170],[97,164],[-98,66],[-4,244],[-74,212],[-71,64],[-11,224],[34,275],[-28,75],[-184,-88]],[[15517,10651],[-1055,-501]],[[82287,51332],[87,-41],[122,119],[-39,-193],[83,-16]],[[82540,51201],[52,-156],[111,-167],[71,59],[52,-118],[84,25],[59,230],[99,-169],[71,89]],[[83126,53037],[-215,68]],[[82692,53172],[-75,24]],[[83205,41339],[222,127]],[[83427,41466],[1,210],[56,214],[-92,406],[38,40],[-46,196],[71,97],[-141,356]],[[83314,42985],[-106,-134],[-98,82],[-492,-160],[-148,-104]],[[12255,36142],[134,-107]],[[11598,38081],[-32,-88],[-211,126]],[[11355,38119],[-224,-11],[-66,103],[7,-473],[58,-100],[21,-679],[40,-116]],[[83341,31555],[223,-78]],[[83805,33439],[-627,226]],[[82775,33236],[-163,-1441]],[[50190,96542],[-12,1053],[-13,51]],[[50165,97646],[-198,11],[-122,-60],[-22,95],[-73,-104],[-141,65],[-202,-98],[-169,-252],[-2,-109],[-100,28],[-152,-251],[-64,33],[-177,-168]],[[48743,96836],[399,-1387],[159,-592]],[[88294,47310],[170,-82],[92,66],[-16,223],[179,28],[56,-76]],[[88775,47469],[36,33],[-76,489],[-88,187],[29,184],[-12,216],[-86,298],[-114,68],[-12,140],[-44,-268],[-128,-347],[-15,-289],[29,-155],[-21,-251],[21,-464]],[[75282,71161],[131,35],[6,97],[127,-26]],[[75279,72121],[-16,-252],[35,-6],[-23,-250],[43,-8],[-36,-444]],[[60913,32034],[683,-52]],[[87572,52517],[82,-158],[129,-134]],[[88162,53174],[-58,222],[-87,105],[-115,36],[-74,-94],[-108,16],[-124,-367],[-20,-196],[46,-282],[-33,-29]],[[70851,63762],[43,165],[118,79],[80,-29],[48,-159],[99,15],[47,-278],[-47,-68]],[[71239,63487],[319,-56],[19,299],[89,-19],[31,208],[51,-46]],[[71394,65397],[-305,-567]],[[71089,64830],[-54,-158],[-187,25]],[[85729,29096],[418,-176]],[[86147,28920],[104,574],[44,26],[286,-106],[27,198],[346,-129]],[[86954,29483],[68,577],[51,149]],[[88662,25808],[148,28],[96,103],[73,-84],[44,219],[172,215]],[[52820,80022],[207,-185],[134,-457],[93,-216],[183,-203]],[[53573,79539],[11,205],[-29,229],[26,195],[-46,228],[154,680],[-77,149],[-15,202]],[[53324,81238],[51,-141],[-95,-164],[-68,-318],[-114,-17],[-7,-159],[-165,-156],[-172,-51],[66,-210]],[[84430,44160],[43,-20],[115,262],[-14,146],[130,172],[180,399],[67,-77],[103,31]],[[85054,45073],[45,151]],[[85099,45224],[-138,75]],[[84961,45299],[-126,-84],[-9,115],[-83,-41],[-136,48],[-129,169],[-57,167],[-96,34]],[[84325,45707],[-64,-205],[29,-77],[-99,-216],[-188,-265]],[[52069,80542],[650,-656]],[[52719,79886],[101,136]],[[52675,81548],[-102,-91],[-92,1],[-87,-273],[-159,-258],[-82,-315],[-84,-70]],[[67190,81011],[179,-55],[-143,109],[-36,-54]],[[66862,80966],[142,-14],[-40,127],[-102,-113]],[[67311,79225],[45,987],[137,147]],[[67493,80359],[-5,59],[-201,-101],[-301,137],[-383,297],[15,-181],[-119,-74]],[[66499,80496],[-44,-1050]],[[54148,69604],[2,-201]],[[54150,69403],[148,-119],[173,85],[70,-64],[141,36],[71,119],[64,-36],[137,164],[198,119]],[[55152,69707],[4,10]],[[24827,49332],[-194,1899]],[[43047,77983],[940,96]],[[44485,81163],[-1511,-149]],[[42974,81014],[46,-144],[153,-103],[-147,-259],[81,-130],[115,-384],[-4,-230],[-107,-142],[-107,-5]],[[43004,79617],[-67,-186],[-9,-202],[-88,-625],[-212,-319],[-104,-66],[-63,58],[-302,-247],[-80,15],[-180,-219]],[[81268,81685],[427,-329],[17,-75]],[[82331,81002],[354,983],[569,1220]],[[83254,83205],[-449,129],[68,666],[-44,12]],[[81358,81846],[-90,-161]],[[83506,29231],[197,-65]],[[83703,29166],[351,-123],[25,292],[73,38]],[[66596,32311],[388,-53]],[[66984,32258],[107,205],[-40,458]],[[66260,33257],[-42,-887]],[[58560,65692],[828,-14],[-4,-214],[62,-17],[-7,-222],[219,-3]],[[59889,65553],[3,1019]],[[59892,66572],[-376,-1]],[[59516,66571],[-260,-5],[-13,-290],[-299,-30],[0,-113],[-286,3],[-1,-225],[-95,1]],[[61540,51002],[-8,-225],[287,-19]],[[53185,26367],[2,-667]],[[75569,67673],[-97,-124],[-176,36],[-7,-62],[-191,41]],[[72512,72252],[73,-79],[53,220],[778,-158]],[[73416,72235],[33,334],[31,-6]],[[73480,72563],[-30,34],[29,475],[-155,33],[4,55],[-147,49],[-93,458]],[[73088,73667],[-246,46],[-19,-332],[-174,33],[-36,-303],[-192,21]],[[12266,43990],[82,794],[-9,168],[78,471],[-8,115],[130,230],[37,158]],[[10495,45853],[-39,-105],[25,-158],[86,-130],[-48,-108],[58,-154]],[[86735,48554],[-3,-214],[107,-110],[98,27],[34,-139]],[[87067,48719],[26,210],[109,-44]],[[87339,48984],[-12,189]],[[87327,49173],[-90,-180],[-134,76],[-36,100],[-79,-128],[-152,-63]],[[60505,72903],[7,337],[199,321],[3,167]],[[60725,74232],[-931,55]],[[87085,51715],[-4,-32]],[[87081,51683],[643,-222]],[[87724,51461],[104,118]],[[87828,51579],[19,159],[106,319]],[[61104,28549],[163,-15],[-30,-201],[109,-142],[71,67],[33,-135],[74,23]],[[61524,28146],[1,34],[281,-25]],[[61806,28155],[95,-12],[45,1326]],[[61342,29056],[-140,-335],[-98,-172]],[[75956,70598],[-13,62]],[[75147,70616],[65,-13],[-12,-185],[49,-93],[50,-355],[87,-123]],[[75386,69847],[95,15],[74,171]],[[75555,70033],[183,25],[68,132],[57,253],[100,121]],[[75282,71161],[-47,-266],[-50,-20],[-38,-259]],[[87828,51579],[112,128],[386,239],[69,260],[57,4]],[[88452,52210],[157,253],[68,33],[59,176],[-194,174],[-193,-188]],[[84793,43068],[-39,232],[-2,249],[413,911]],[[85165,44460],[-132,387],[21,226]],[[84014,45961],[76,125],[157,-175],[78,-204]],[[84961,45299],[-10,102],[-309,958]],[[85963,27776],[713,-354],[209,-75]],[[86903,29034],[51,449]],[[86147,28920],[-184,-1144]],[[83020,49724],[-197,306],[-83,-66]],[[82740,49964],[28,-155],[-75,-126],[128,-175]],[[52966,65380],[5,-673],[190,1],[1,-337]],[[53162,64371],[564,3]],[[53726,64374],[-1,335]],[[53725,64709],[-1,672],[-95,0],[0,337],[-472,-1]],[[53920,62893],[-54,38],[-134,355],[-6,1088]],[[53162,64371],[-2,-629],[-29,104],[-119,-28]],[[53012,63818],[3,-791],[88,1],[2,-672]],[[51704,80917],[365,-375]],[[82540,51201],[200,-1237]],[[83540,50304],[-65,738]],[[52503,63854],[85,166],[74,-100],[-43,-110],[77,-68],[37,106],[125,-54],[86,182],[68,-158]],[[14071,36475],[136,-871],[304,-2029],[373,-2556]],[[14884,31019],[450,-3022]],[[15863,32340],[-244,1651],[-41,-16],[-282,1942],[186,77]],[[15482,35994],[-56,374],[29,12],[-48,335],[49,108],[-57,404],[-46,97]],[[15353,37324],[-114,-43],[-56,86]],[[15183,37367],[-160,69],[-159,-60],[-209,56],[-82,106],[-118,-72],[-39,258],[67,30],[-81,194],[20,182],[-66,230],[-74,87]],[[14282,38447],[-115,91],[-96,-13],[-112,119],[-202,-91]],[[13757,38553],[82,-564]],[[87550,30611],[500,-848]],[[88050,29763],[587,322],[-128,566],[337,265],[71,182]],[[84324,38290],[21,45],[249,-483],[96,-142],[-74,256],[145,-193],[19,89],[121,-107],[420,-250],[89,-103]],[[85410,37402],[2,152],[134,202]],[[85546,37756],[-102,152],[53,104],[-193,139],[-144,356]],[[85160,38507],[-61,181],[-342,256],[-89,229]],[[84668,39173],[16,-117],[-161,-245],[-80,-250],[-89,-101],[-30,-170]],[[80323,43842],[18,574],[-80,339],[1,417],[42,147]],[[80192,45306],[5,-152],[-74,-68],[8,-131],[-92,-87],[-101,42],[-54,-162]],[[59323,80927],[123,-64],[548,-27],[0,-194],[272,-15]],[[59324,81006],[-1,-79]],[[46931,38543],[-756,-63]],[[46175,38480],[40,-1332]],[[73372,71566],[190,-41],[-21,-219],[503,-117],[-12,-132],[104,-30]],[[74136,71027],[30,214],[67,105],[-26,179]],[[74362,72062],[-156,226],[-76,187],[36,277]],[[74166,72752],[-250,53],[-155,-302],[-281,60]],[[73416,72235],[-44,-669]],[[61860,57370],[75,-4]],[[61935,57366],[90,116],[20,169],[71,-4],[98,337],[7,281]],[[71392,55591],[-402,30]],[[70629,55643],[-18,-484]],[[64789,81494],[193,-121]],[[64982,81373],[94,85]],[[65076,81458],[-6,712],[-18,234],[133,-23],[16,-95],[103,180]],[[65304,82466],[-31,167],[-75,100],[15,344],[174,446],[37,639],[105,424],[57,150]],[[65586,84736],[-338,538]],[[65248,85274],[102,-414],[54,-117],[-65,-122],[5,-370],[-59,-120],[-171,-42],[-79,-243],[35,-257],[-18,-260],[-140,-41]],[[89607,31419],[51,-216],[622,-413]],[[90280,30790],[60,613]],[[89665,31859],[1,-12]],[[89395,32714],[-41,-20]],[[90280,30790],[-53,-530]],[[90227,30260],[191,491],[22,115],[74,-125],[32,88],[114,33]],[[91140,31848],[-24,98],[-86,-43],[-109,242],[-45,-23],[-124,148],[0,181],[-164,109],[-121,238],[-39,-40],[-70,148]],[[60686,57456],[-12,-1140]],[[61456,55892],[7,390],[-25,1],[10,628],[23,483]],[[52719,79886],[19,-101],[-67,-84],[21,-97],[-110,-232],[19,-159],[-85,23],[-49,-106],[-67,-532],[-66,-155]],[[10659,40522],[146,-119],[92,-394],[-68,-162],[64,-38],[71,-294],[-68,-42],[-83,-371],[80,-161]],[[10893,38941],[194,98]],[[11087,39039],[550,351]],[[10068,41227],[106,72],[154,-25],[88,-255],[137,-78],[106,-419]],[[55057,62341],[59,-38],[89,129],[70,-12],[92,-149],[16,-229],[67,-12],[128,-336]],[[55578,61694],[82,173],[183,57],[1,197],[100,-95],[58,182]],[[56002,62208],[2,467],[-203,3],[4,556]],[[55805,63234],[-752,11]],[[55053,63245],[-2,-392],[-188,1],[5,-522]],[[55805,63234],[3,448],[-126,2],[3,336],[-110,2],[3,672]],[[54762,64703],[8,-1342],[283,-3],[0,-113]],[[79463,38718],[30,295]],[[79311,39083],[31,-276],[-78,-261],[-82,-159]],[[58041,69239],[437,4]],[[58694,69354],[-120,602],[-8,121],[-73,-3],[-2,929]],[[58435,71005],[-520,20]],[[57915,71025],[-105,-273],[10,-170],[101,-119],[41,58],[127,-373],[-50,-129],[75,4],[-15,-148],[49,-73],[-73,-70],[14,-133],[-58,-106],[10,-254]],[[89074,38876],[172,-548]],[[89246,38328],[117,107],[58,215],[64,-9],[275,188],[93,-60]],[[90054,38916],[27,101],[-122,488],[-181,311]],[[89778,39816],[-255,146],[-283,-25]],[[88943,39297],[131,-421]],[[24388,31555],[-504,-173],[-368,-158],[-332,-92]],[[23184,31132],[341,-2912]],[[49643,77176],[7,23],[-564,665]],[[77546,38500],[-79,-938]],[[78357,37034],[29,329]],[[78095,38418],[-246,49],[-291,159]],[[71417,68133],[77,133],[-44,75],[27,151],[-136,74],[16,125],[-119,293],[90,193],[-51,95]],[[71277,69272],[-34,62],[4,262]],[[70577,69596],[-99,-38],[-72,-121],[-13,-228],[-104,-13],[-19,-308]],[[11447,13958],[20,-117]],[[11424,15238],[-152,-79],[-19,-82],[194,-1119]],[[48756,47387],[926,48]],[[49682,47435],[10,5],[-17,1006]],[[49663,49117],[-930,-46]],[[55267,47863],[3,307],[37,-67],[152,64],[30,-69]],[[55489,48098],[6,940]],[[50848,44126],[756,22]],[[9224,40454],[348,174],[-17,-108],[99,-320],[-2,-178],[232,113],[2,-275],[-35,-194],[89,-295]],[[9940,39371],[78,23],[54,140],[148,-107],[204,128],[129,16],[66,75],[-125,791],[165,85]],[[9397,40922],[-30,-195],[-136,-214]],[[59971,57505],[663,-45]],[[60588,58876],[2,284],[-189,6],[4,336],[-189,5]],[[60213,59172],[-2,-278],[-127,-219],[2,-244],[-121,-19],[32,-137],[-89,-24],[67,-176],[-104,-25],[102,-113],[-2,-432]],[[87931,50050],[-27,-268],[99,-56],[155,76]],[[88158,49802],[29,395],[-55,-27]],[[88132,50170],[-101,108]],[[88031,50278],[-100,-228]],[[39570,70291],[88,12],[78,-1649],[82,11],[32,-668],[382,51]],[[40232,68048],[831,109]],[[40298,74112],[-734,-101]],[[62237,73899],[-80,5],[7,-374],[98,-69],[-28,-190],[61,-13],[-50,-139]],[[39710,75374],[-18,-208],[-115,-181],[-62,25],[-130,-138],[-16,-296],[-41,-172],[-89,61],[-151,-522]],[[38693,43081],[0,0]],[[38617,43239],[171,-218],[4,-87]],[[38944,42959],[-94,58],[-12,230],[-64,17]],[[38734,43083],[0,0]],[[55802,65360],[856,-23]],[[56653,66561],[-4,959]],[[56185,68437],[-70,-188],[-171,39],[-137,-252],[-46,-187],[-146,-10],[-150,-278],[-45,1]],[[79276,40022],[24,-118]],[[79577,39927],[52,545]],[[75736,60061],[-230,22],[-192,184],[-101,-30],[-66,-214]],[[75147,60023],[-32,-212],[48,-101],[-34,-119],[90,-251]],[[74705,60451],[-1,-73],[127,-185],[29,81],[178,-53],[109,-198]],[[75274,61179],[-220,48]],[[53314,35411],[-598,-12]],[[91605,25484],[557,-211]],[[92162,25273],[47,-18]],[[92209,25255],[84,107],[22,153],[123,-97],[191,43],[23,313],[71,-7],[9,-117],[132,-23],[27,80],[15,422],[-68,276],[84,119],[143,-142],[6,259],[-83,24],[-40,216],[92,100],[79,-71],[57,111]],[[92269,27940],[-54,19]],[[91963,27217],[-20,-254],[-95,79],[-49,-177],[-36,50]],[[72654,44109],[-11,-175]],[[72643,43934],[560,-121],[-6,-85]],[[73197,43728],[190,-35]],[[73488,44827],[-469,22],[-315,92]],[[57897,71025],[18,0]],[[58572,74004],[17,-48],[-146,-149],[-32,-158],[-125,-81],[-14,-175],[-108,-24],[-24,-333],[-111,-161],[28,-208],[-85,-463],[-69,-89],[64,-188],[-76,-28],[68,-253],[-68,-169],[34,-116],[-81,-68],[53,-268]],[[64285,37470],[-44,-1217]],[[13949,13221],[114,-63],[125,39],[306,-112]],[[14494,13085],[-53,482],[94,282]],[[13145,13277],[51,-307],[-137,-368],[-60,-232],[49,-289]],[[85849,60731],[38,-70],[207,88]],[[86427,62218],[-9,299],[-86,8],[-33,-105],[-294,-5],[-362,167],[-260,284]],[[85151,62575],[27,-152],[-36,-101],[98,-144],[23,-438],[39,-81],[175,46],[59,-275],[208,-113],[105,-586]],[[71825,57026],[261,47],[169,-146],[53,-242]],[[73039,57177],[-82,168],[-165,28],[0,472]],[[85354,53650],[71,-400],[17,-335],[-30,-469]],[[85412,52446],[143,-33],[82,46],[224,-70],[36,104],[144,79],[33,162],[-50,169],[91,95],[162,-138],[143,387],[183,114]],[[86603,53361],[134,203],[-137,109],[-17,76]],[[86583,53749],[-101,296]],[[85908,53659],[-183,120],[-139,24],[-70,-124],[-162,-29]],[[27548,26207],[-35,313],[-185,-41],[-35,327],[-188,-59],[-80,617],[-95,-29]],[[38747,43737],[233,66],[206,-22],[10,-167],[98,3],[12,-206],[219,32],[-48,291],[-238,-40],[35,214],[-155,-41],[-101,112]],[[62257,70807],[-1,97],[-125,403],[-98,98],[-60,268],[15,147],[-72,184],[6,135]],[[61430,72798],[13,-88],[-77,-220],[53,-288],[-46,12],[-76,-197],[-148,62],[-19,-94]],[[87691,49052],[92,-41],[118,150]],[[87797,50066],[79,-129],[55,113]],[[88031,50278],[7,90],[-137,99],[-37,-189],[-76,-86]],[[87788,50192],[9,-126]],[[37853,41764],[412,83],[579,82]],[[38200,43172],[4,-77],[-462,-79]],[[65076,81458],[130,23],[254,-195],[105,21],[101,101],[211,-80],[121,74]],[[65998,81402],[-98,181],[-6,124],[-81,61],[26,129],[-196,-36],[-65,185]],[[65493,82551],[-50,-90],[-139,5]],[[68596,73995],[750,-116]],[[69346,73879],[24,435],[87,15],[10,165],[220,-42]],[[69687,74452],[-29,61],[27,446],[-94,17],[31,548],[-97,165],[116,125],[-17,178],[-62,103],[-54,-57],[-119,110],[-20,224],[-63,-63],[-49,136],[42,115]],[[68980,77010],[22,-125],[-70,-343],[95,-40],[8,-225],[-85,36],[53,-198],[-4,-258],[-62,-107],[-158,-94],[-23,-120],[-85,-27],[-49,-397]],[[68977,71879],[154,-24],[8,167],[376,-61]],[[69654,72777],[-92,53],[26,467],[-188,30],[27,485],[-81,67]],[[69062,70004],[537,-69]],[[69599,69935],[27,493]],[[67955,67316],[18,-1213]],[[67973,66103],[399,-34],[68,106],[20,392]],[[68543,68084],[-597,48]],[[67946,68132],[9,-816]],[[67936,69082],[10,-950]],[[68735,68053],[77,1422]],[[67923,70231],[13,-1149]],[[54631,43162],[4,10]],[[85103,48957],[75,-57],[5,-130],[197,-480]],[[86138,48987],[-19,38]],[[86033,49056],[-42,281]],[[85880,49461],[-194,56],[-109,-141],[-61,44]],[[58393,78087],[-583,93]],[[69339,24405],[401,-60]],[[69149,25440],[-5,-293],[-68,-254],[32,-169],[214,-175],[17,-144]],[[56254,49024],[-1,-421]],[[57188,49655],[3,464]],[[71277,69272],[576,-108]],[[72157,69163],[82,1282]],[[38636,39042],[546,91]],[[70400,57255],[90,411],[49,-30],[30,150]],[[70569,57786],[-75,270],[-74,117],[-3,153]],[[69637,58157],[18,-192],[63,-143],[4,-375],[106,-564],[-15,-61]],[[83233,34906],[60,15],[24,-241],[101,-224],[40,279],[150,-65],[123,250],[201,-4],[238,423],[262,-185],[291,-326]],[[83989,36316],[-137,87],[-101,-61],[-172,262],[-300,-86]],[[82886,36672],[-36,-74],[104,-408],[62,-42],[24,-233],[211,-250],[10,-179],[-131,-391],[103,-189]],[[53613,82422],[117,250],[-90,258],[68,233],[-49,153],[36,103],[102,25],[31,288]],[[53828,83732],[40,31],[-25,447],[-122,5]],[[53721,84215],[-40,-80],[-126,-44]],[[53555,84091],[-160,-134],[-20,-183],[-78,-149],[-61,-284],[-133,18],[-233,-318],[-65,-208]],[[88758,17663],[227,-107]],[[89081,18661],[32,275],[-55,305],[-95,98]],[[88963,19339],[-71,-181],[-28,-480],[13,-253],[-84,-96],[18,-346],[-53,-320]],[[87651,49995],[16,123],[130,-52]],[[87788,50192],[-40,217],[62,1019]],[[87810,51428],[-86,33]],[[87081,51683],[-9,-359]],[[40176,48877],[749,106],[183,50]],[[41108,49033],[-39,968]],[[37159,49381],[1271,247]],[[38357,50943],[-51,-163],[-72,5],[-26,-215],[-79,-22],[-177,389],[-47,-161],[-176,158],[-101,-39]],[[63015,54277],[10,404],[-69,117],[10,337]],[[40780,76597],[-1178,2168]],[[38694,77332],[312,-3401]],[[40239,47544],[-63,1333]],[[38668,48653],[26,-501]],[[77628,43230],[22,-177],[195,1],[-46,-389],[210,-69]],[[78009,42596],[192,-37],[-20,-239],[103,32],[41,102],[189,-13],[-4,-53]],[[78510,42388],[69,86],[351,-69],[8,123]],[[78829,42879],[-98,132],[-47,188],[-78,22],[-153,212]],[[77905,44072],[-12,-207],[-162,31],[-74,-159],[-29,-507]],[[81323,50130],[-111,189],[-88,42],[-93,171]],[[80642,50323],[264,-407],[-69,-199],[160,-295]],[[69890,66062],[77,118],[51,260],[153,-20],[86,104]],[[70257,66524],[26,162]],[[69779,67937],[-93,10],[-16,-280],[-193,-26]],[[69031,66499],[-17,-333]],[[83427,41466],[226,220]],[[83653,41686],[377,373]],[[83267,43126],[47,-141]],[[34176,20304],[-141,-2],[-55,-66],[-156,91],[-89,-38],[-21,244],[-96,-23],[-18,221],[-252,-60],[-202,118],[-144,188],[-90,202],[-13,164],[-121,-31],[-30,357],[-170,-43]],[[32578,21626],[-406,-123]],[[32172,21503],[57,-668],[203,52],[57,-657],[186,48],[14,-164],[188,49],[14,-165],[188,47],[52,-660],[26,7],[24,-331],[65,18],[27,-336],[127,28],[35,-318]],[[64678,78292],[795,-92]],[[65675,78177],[-79,568],[-81,351],[-18,393]],[[65497,79489],[-268,32],[-505,-125]],[[71479,58165],[-241,70]],[[71238,58235],[-174,5],[-137,-68],[-358,-386]],[[23114,12962],[187,75],[143,-1141]],[[25804,13517],[68,139],[-43,171],[49,118]],[[64706,85543],[61,-82],[82,194],[-58,51],[-85,-163]],[[64641,84965],[36,16]],[[64677,84981],[-36,-16]],[[63633,82598],[191,-26],[-3,-54],[250,100]],[[64071,82618],[242,-8]],[[65248,85274],[-246,328],[-27,-164],[-85,-45],[23,-147],[-90,-318],[-91,-137],[-49,86]],[[64683,84877],[-26,-313],[-248,-403],[-231,-438],[-75,-29],[-91,-196],[-128,-120],[-47,-195],[-79,-101],[-21,115],[-79,9],[7,111],[-241,30]],[[71153,20166],[129,1892]],[[70704,21877],[99,2],[171,-157],[-17,-107],[-186,-20],[-83,-138],[-71,-340],[54,-242],[85,-103],[92,-315],[-118,-98],[268,5],[78,-45],[-14,-105],[91,-48]],[[85143,52379],[252,-86]],[[85395,52293],[17,153]],[[95399,96398],[113,45],[180,-82],[79,36]],[[95771,96397],[-4,365]],[[95387,97006],[12,-608]],[[74625,33932],[4,84],[-90,158],[-22,135],[-87,75],[-12,177],[-62,50],[-76,335],[46,177],[-46,42]],[[27699,10812],[-435,-138],[-3,325],[-78,122],[58,129],[25,224],[-41,129],[-1,259],[63,73],[-33,348],[-166,-55],[-18,163],[-374,-125]],[[27945,10892],[-168,1572],[242,76],[-138,1300]],[[27881,13840],[-169,-54],[-12,110],[-93,-31],[-24,218],[-97,-31],[-21,102],[-173,-56],[-24,217],[-236,-88]],[[38163,43809],[-239,-145],[-131,-293],[-94,-50]],[[77173,49570],[167,-389]],[[77340,49181],[187,-169]],[[78290,50042],[17,172],[-71,277]],[[83899,40708],[-104,181],[-77,-20],[-65,817]],[[68936,77133],[-97,85],[-567,83],[5,113],[-191,26]],[[68086,77440],[-89,-1224]],[[65586,44773],[360,-43]],[[65946,44730],[15,281],[153,-17],[11,223],[127,-16],[103,157],[5,113],[191,-24]],[[66551,45447],[13,279]],[[67988,42522],[72,69],[139,-22]],[[68037,43541],[-49,-1019]],[[89061,36737],[5,-124],[220,83]],[[89286,36696],[85,200]],[[89246,38328],[-165,-165],[-137,42],[-93,-339],[-98,-170],[-69,-6],[-8,-127],[-87,-13]],[[88589,37550],[112,-270]],[[60086,29155],[551,-41]],[[51326,71182],[671,21]],[[51997,71203],[-21,1694]],[[51886,72893],[-855,-44]],[[51031,72849],[28,-1687]],[[66513,34983],[712,-97]],[[67225,34886],[139,275],[150,686],[30,248],[148,435]],[[67736,37444],[-431,67],[-21,-339],[-189,35],[-21,-334],[-188,37],[-10,-168]],[[66876,36742],[101,-20],[79,-128],[-62,-1062],[-552,110]],[[88132,50170],[70,251],[109,10],[125,130],[39,124],[-85,78],[52,434]],[[88115,51318],[-305,110]],[[73119,29996],[109,1340]],[[73349,28129],[81,-29],[132,-428],[105,-118]],[[73667,27554],[29,240],[546,-158]],[[73835,29484],[-371,91]],[[43238,19384],[-55,1276]],[[41837,15183],[566,84]],[[61824,26136],[-379,32]],[[61445,26168],[-568,51]],[[60679,25900],[-18,-659]],[[13730,38752],[397,172],[-1,115],[330,142]],[[14456,39181],[391,180],[-48,349],[-153,-38],[-47,94],[-57,381],[6,176],[-45,281],[90,57],[-40,303],[31,14],[-60,426]],[[14524,41404],[-328,-854]],[[13706,38921],[24,-169]],[[71342,40314],[405,-81]],[[71763,40960],[-370,73]],[[71867,38849],[98,1337]],[[60092,67899],[451,-2]],[[60556,69807],[-145,122],[-79,-88],[-17,-128],[-77,47],[-20,-150],[-63,-39]],[[60155,69571],[-36,-117],[-126,-130],[-94,16],[-25,-193],[-106,-103],[109,-318],[-29,-233],[128,-44],[117,-297],[-1,-253]],[[66614,38650],[379,-70],[-19,-333],[794,-142]],[[67795,38612],[31,597]],[[67826,39209],[-991,197]],[[66646,39446],[-29,-459]],[[21889,18556],[113,-206],[124,-445]],[[22327,21208],[-165,-62],[-163,-247],[58,-463],[-113,-43],[-10,-191],[82,-659],[-418,-171]],[[92016,29746],[-97,-232],[-121,-508],[-48,34],[-83,-502],[32,-22],[-73,-313]],[[71556,48761],[311,309]],[[71976,49584],[0,113]],[[71976,49697],[-198,202],[-279,10],[-279,234],[-85,178]],[[66455,79446],[-382,44],[19,502],[-191,77],[6,168],[-80,8]],[[65827,80245],[-157,-196],[-173,-560]],[[63465,81996],[86,-187],[513,-253]],[[64064,81556],[-22,446],[-51,61],[49,207],[31,348]],[[30566,41948],[-897,-237],[2,-19],[-561,-158]],[[29084,41189],[55,-698],[121,-1329],[-11,-3],[87,-940]],[[50315,83173],[-241,396]],[[23887,39584],[1313,434],[1492,464],[19,-150],[113,54],[176,-232]],[[27010,42886],[-88,-85],[-194,-57],[53,-612],[-7,-254],[-1127,-338],[-1526,-490],[-3,32],[-384,-122]],[[23734,40960],[153,-1376]],[[85395,52293],[227,-80]],[[85622,52213],[809,-273]],[[86431,51940],[226,-85]],[[86712,53015],[-22,123],[-115,78],[28,145]],[[72082,73520],[38,132],[8,378],[-21,165],[94,-19],[32,489],[-53,155],[66,17]],[[72197,75531],[-158,-31],[-23,-278],[-197,335],[-25,-290],[-184,39]],[[29563,33119],[-740,-200]],[[28823,32919],[13,-266],[-123,-154],[34,-158],[-38,-267],[32,-139],[95,-94],[-24,-198],[67,-81],[-52,-264]],[[28827,31298],[36,-47],[-37,-557],[63,-61],[369,106],[127,182],[77,-174],[21,124],[-53,352],[99,48],[213,-99]],[[73197,42450],[444,-108],[11,143],[178,-17]],[[73830,42468],[4,114]],[[73197,43728],[-98,-1252]],[[72907,74714],[76,-14]],[[72983,74700],[615,-123]],[[73598,74577],[73,1161]],[[73671,75738],[6,110],[-126,21],[10,156],[-225,-58],[-111,34],[-70,298]],[[73155,76299],[-152,24]],[[9125,41888],[1,12]],[[9126,41900],[-1,-12]],[[8977,42127],[-184,-91]],[[8793,42036],[24,-280],[196,-25],[6,309],[-42,87]],[[34115,49241],[-7,187],[82,165],[-82,225],[-73,9],[31,112]],[[34066,49939],[-124,-26],[-6,170],[-106,88],[-70,-65]],[[33760,50106],[-5,-187],[-69,-153],[-91,-35],[-77,-148],[39,-340],[-102,-23],[-14,-144]],[[65931,53724],[7,137],[68,-75],[130,17]],[[66141,54092],[-117,28],[-148,282],[-25,148],[-97,209]],[[65754,54759],[-162,-127],[-22,-285],[17,-296],[78,-137],[-12,-122],[-74,-44]],[[62426,57321],[599,-59]],[[63025,57262],[15,234],[58,91],[10,497],[-94,75]],[[63014,58159],[9,452]],[[61935,57366],[491,-45]],[[60817,62976],[-12,-1143]],[[76296,37273],[269,-59]],[[76657,37470],[109,1232]],[[55437,61002],[-7,435],[88,252],[60,5]],[[64358,85634],[271,84],[-132,37],[-139,-121]],[[63993,85816],[169,-79],[20,53],[-183,85],[-6,-59]],[[64683,84877],[-6,104]],[[64641,84965],[6,-145],[-80,-175],[-82,218],[-94,-36],[-50,77],[-85,-61],[21,190],[-77,156],[-22,177],[-56,-15],[-29,190],[-57,-36],[-140,166],[-21,208],[-108,-43],[11,-149],[-205,-310],[-73,50],[-182,-53],[-71,-101],[-136,-9],[-155,-88],[-113,-185],[81,-55],[45,-194],[140,200],[44,-79],[5,224],[99,49],[-32,-340],[-118,-105],[-94,-247]],[[11031,13738],[416,220]],[[10371,16467],[97,-326],[96,-473],[139,-558],[98,-638],[96,-228],[134,-506]],[[73667,27554],[-47,-147],[66,-453],[36,159],[102,-127],[17,-102],[-125,-71],[139,-24],[73,-233],[124,-63],[199,-177],[26,-120],[162,-137],[206,133],[95,108],[127,379],[65,105],[108,601]],[[56157,41954],[267,-6]],[[56219,42664],[-19,-331],[-39,1],[-4,-380]],[[59445,45520],[657,-23]],[[60102,45497],[7,994]],[[59915,46887],[-474,-252]],[[30619,89295],[314,-28],[223,-428],[102,-47],[92,317],[178,378],[-9,267],[130,181],[28,-187],[86,8],[-33,208],[61,194],[119,208],[-121,138],[-114,-64],[-116,69],[-142,-175],[-189,-37],[-271,51],[-56,-273],[-80,-117],[-27,-166],[-83,-151],[-3,-199],[-89,-147]],[[23368,44239],[366,-3279]],[[26913,43910],[-27,187],[-81,5],[-10,111],[-114,-34],[-127,332],[-60,-18],[-42,526],[-173,148],[-229,-89],[-75,121],[-18,167],[-62,90]],[[23977,38786],[377,-3341]],[[27154,37236],[65,229],[-14,334],[25,106],[-48,522]],[[23887,39584],[90,-798]],[[84981,96536],[16,-100],[165,-157],[18,-206]],[[85180,96073],[28,70],[138,-170],[28,-134]],[[85374,95839],[40,25]],[[85414,95864],[-108,487],[-36,280],[-354,866],[-152,258],[-25,-33],[293,-616],[40,-183],[17,-377],[-108,-10]],[[84591,97958],[88,-224],[39,97],[-82,167],[-45,-40]],[[84411,98213],[56,-143],[51,81],[-107,62]],[[83896,98724],[349,-394],[52,85],[-300,347],[-101,-38]],[[82845,94816],[1176,-329]],[[84021,94487],[152,1649],[22,-7],[73,697]],[[84268,96826],[-72,162],[-350,176],[-137,-134],[-81,-202],[-1,-291],[34,-323],[-108,-289],[-92,-133],[0,-111],[-96,-223],[-67,-40],[-62,-264],[-120,24],[-94,-307],[-177,-55]],[[82566,99608],[103,-374],[297,-372],[155,-255],[102,-106],[297,142],[40,160],[111,109],[-301,274],[-29,-81],[-190,68],[-12,84],[-316,322],[-251,116],[-6,-87]],[[82166,99810],[249,-176],[-36,182],[-208,75],[-5,-81]],[[81860,99811],[33,-123],[80,-1],[-13,152],[-100,-28]],[[80295,99934],[104,-66],[39,63],[-141,68],[-2,-65]],[[78949,68673],[48,-409],[-74,-467],[16,-356],[37,-312],[-75,-122]],[[78901,67007],[159,-155],[154,215],[70,-61],[151,21],[157,-176],[67,39]],[[79847,67033],[1,150],[121,136],[170,39]],[[80286,67512],[-363,624]],[[79923,68136],[-177,-126],[-171,161],[-224,85],[-66,146],[-16,279]],[[73844,70150],[72,400],[53,132]],[[73969,70682],[167,345]],[[73372,71566],[-30,-332],[-93,19],[-332,-211],[-70,-95]],[[72847,70947],[-26,-388],[182,-155]],[[50354,89595],[483,194],[55,-131]],[[51675,90675],[-104,297],[-74,-8],[-49,-193],[-145,28],[-31,-60],[-221,31],[-76,-41],[-23,150]],[[50952,90879],[-166,-49],[-38,-132],[-56,93],[-102,-200],[-225,-74],[19,-231]],[[50384,90286],[-4,-163],[-158,-76]],[[50222,90047],[-39,-220],[171,-232]],[[55688,41949],[469,5]],[[56215,43669],[-729,0]],[[55486,43669],[-50,-503],[-182,-1]],[[24736,95090],[79,-118],[51,95],[-51,104],[-79,-81]],[[24471,94663],[13,-76],[94,94],[3,250],[-110,-268]],[[24523,93151],[132,-27],[160,80],[43,114],[84,8]],[[25070,93715],[60,227],[141,333],[-50,551],[-95,348],[-66,-105],[-67,38],[-83,-316],[-73,-108],[65,-185],[-63,-302],[-86,-260],[-73,-60],[124,281],[34,394],[-31,143],[-121,16],[-141,-77],[-103,-175],[22,-170],[-52,-334],[0,316],[-42,99],[26,150],[-127,-116]],[[19863,89861],[13,113],[187,47],[9,-122],[200,99],[83,-245],[224,-110],[3,366],[80,102],[138,60],[83,199],[453,496],[94,422]],[[21288,91487],[-7,-79],[-171,-184],[-147,-44],[-129,-111],[-181,-77],[-225,-162],[33,-152],[58,23],[-63,-346],[9,-235],[-56,319],[-177,249],[-229,14],[-222,-109],[44,-181],[-121,91],[-372,-50],[-104,16],[-328,185],[-69,74]],[[72361,39485],[41,597]],[[41776,47105],[756,92],[1131,99]],[[43604,48960],[-1727,-207],[-189,-14]],[[41688,48739],[28,-297],[60,-1337]],[[75047,55659],[170,-99],[152,319],[56,-93],[58,70]],[[75421,56569],[-300,50],[-71,-52]],[[67254,41325],[674,-122]],[[67931,41258],[57,1264]],[[67364,43655],[-73,-1327],[23,-4],[-40,-667]],[[14486,3518],[-31,-15],[-121,722],[-795,-407],[9,-52],[-1573,-829]],[[11975,2937],[-33,-350],[66,-497],[-16,-293],[48,-31],[159,-495],[-70,-237],[116,25],[110,150],[206,440],[171,170],[181,286],[-19,57],[157,222],[166,129],[230,70],[138,198],[220,89],[46,130],[209,102],[150,-121],[112,236],[15,163],[178,49],[-29,89]],[[12118,4392],[439,233],[-10,55],[774,408]],[[13321,5088],[-160,944],[20,12],[-107,641],[416,205]],[[13490,6890],[-56,320],[64,37],[-128,738]],[[12011,7276],[14,-436],[47,175],[185,-118],[197,-2],[-203,-276],[15,-147],[-131,-115],[-55,52],[-11,302],[-91,21],[99,-504],[37,-409],[14,-443],[-75,-311],[65,-673]],[[81006,78672],[102,-75],[170,71],[196,-59],[-55,-554],[107,-31]],[[81526,78024],[229,1036],[121,398],[40,274],[122,408]],[[81467,80480],[-49,-517],[-132,-277]],[[14486,3518],[60,102],[7,206],[64,-169],[-55,-143],[24,-125],[185,-35],[0,104],[-92,69],[23,183],[133,-166],[-11,334],[-82,-5],[35,159],[0,265],[53,96],[-131,11],[-15,137],[-103,70],[-48,191],[-117,203],[-19,-72],[118,-324],[-88,16],[-135,337],[-161,188]],[[14131,5150],[-755,-378],[-55,316]],[[12118,4392],[23,-380],[4,-450],[-50,-120],[11,-182],[-131,-323]],[[9058,40555],[-67,330],[60,169],[-81,40],[-43,123],[78,230],[-96,-98],[3,247],[-96,6],[-33,-148],[-125,-274],[-82,2],[-98,-280],[-35,-200],[-82,-157],[-91,-72],[-82,117],[-54,-72],[151,-363],[51,-180],[-27,-292],[45,-16],[-24,-224]],[[85984,49630],[78,673]],[[85735,50868],[-74,-40]],[[85661,50828],[-103,-42],[-115,-200],[-137,-37],[-81,55]],[[85225,50604],[-83,-581],[157,-245]],[[64612,43648],[-199,26],[2,226],[-110,68],[-376,44]],[[34313,38186],[982,206]],[[28387,31166],[440,132]],[[11355,38119],[-41,261],[-90,-42],[-103,648],[-34,53]],[[10893,38941],[33,-92],[-152,-75],[-38,-180],[29,-177],[-135,-166],[-5,-195]],[[41274,63639],[-74,1670]],[[41199,65348],[-1252,-171],[58,-1158]],[[89396,27449],[652,-453]],[[90061,28813],[-38,15],[28,273],[-305,18],[-348,-149],[-34,17]],[[89364,28987],[5,-194]],[[63955,67547],[487,-43],[1,169],[-196,77],[-31,100],[85,102],[48,-160],[37,54],[151,-14]],[[75396,61152],[55,223],[118,81],[56,-68],[103,446]],[[75613,62135],[-153,-39],[-70,113],[-75,304],[-164,-52],[-54,75]],[[74759,47086],[-55,-1470]],[[75177,45373],[120,-16],[84,122]],[[75381,45479],[123,1519]],[[74860,47073],[-101,13]],[[89778,39816],[-130,402],[-66,391],[-66,532],[-93,241],[-160,99],[-20,-269],[49,-462],[-14,-176],[-55,-52]],[[19123,53431],[96,-780],[-86,-37],[307,-2529]],[[55627,46410],[78,132],[64,-22],[-42,148],[13,175],[97,144],[26,202],[96,57]],[[55959,47246],[-211,-4],[-9,816]],[[55739,48058],[-190,-30],[-60,70]],[[20268,6631],[38,163],[136,124],[54,-131],[45,80],[120,31],[13,194],[111,52],[12,149],[126,68],[50,-185]],[[20973,7176],[162,-124],[50,13],[69,265],[11,208],[81,190],[105,-121],[73,74],[91,-58],[77,116]],[[21692,7739],[-285,2089]],[[21407,9828],[-201,-83]],[[14131,5150],[-273,449],[-135,337],[178,110],[195,-53],[77,-97],[-299,66],[-77,-130],[228,-394]],[[14025,5438],[310,156],[-72,426]],[[14230,6202],[-138,260],[-1,244],[-55,134]],[[14036,6840],[-70,4],[-28,-140],[-119,90],[-146,190],[-183,-94]],[[14859,837],[194,290],[-142,-111],[-52,-179]],[[14671,1109],[99,-37],[-11,104],[-88,-67]],[[14420,1390],[51,-76],[100,50],[51,235],[82,71],[-51,-259],[240,-242],[59,35],[157,276],[-120,109],[20,233],[-43,189],[-66,50],[-33,241],[-91,-29],[-48,-193],[-160,-77],[-93,-176],[-40,-166],[-15,-271]],[[14430,1030],[68,51],[82,244],[-150,-295]],[[63551,49907],[87,-225],[26,-302]],[[64328,50469],[-235,16],[13,337],[-286,215]],[[63820,51037],[-84,-145]],[[63736,50892],[-148,-224],[-57,-174],[-21,-400],[41,-187]],[[35206,44731],[1149,243]],[[36355,44974],[-21,172],[-90,-1],[-6,153],[-69,398],[-91,26],[-52,369]],[[36026,46091],[-51,223]],[[34706,45054],[29,-44],[-132,-204],[71,-186]],[[12770,30044],[721,339],[1393,636]],[[13826,36424],[92,-190],[100,-648],[-73,-149],[-35,-194],[27,-277],[-48,-109],[-149,-97],[-177,-442],[-20,-181],[-98,-104],[-96,-220],[-176,-114],[-72,119],[-143,78],[-24,157],[-96,-15],[-12,-120],[-92,-44],[-72,-176],[110,-707],[-428,-197]],[[42365,50162],[1192,133]],[[42258,52561],[28,-693],[13,0],[66,-1706]],[[22208,12954],[282,-2175]],[[83160,84946],[89,961],[-10,31],[92,985]],[[83331,86923],[-25,7],[79,673]],[[82864,87743],[-30,-251],[-207,-451],[-145,-37],[-34,-221],[-231,-232],[-48,-161],[107,91],[45,-291],[-211,56],[-20,-220],[-131,37],[-19,-219],[-84,-203],[-191,51],[-29,-331]],[[56581,23829],[6,-86],[107,-49],[40,64],[121,-255],[50,-216]],[[56905,23287],[141,166],[60,-26],[81,169],[174,164],[274,-2],[92,170]],[[57727,23928],[-73,111],[-108,40],[4,167],[-94,116],[-91,212],[-4,398]],[[56980,24984],[-379,10]],[[75633,69078],[21,316]],[[75654,69394],[13,185],[-46,9],[-66,445]],[[75386,69847],[-202,-110],[-68,-184],[-37,59],[-132,-192]],[[43046,38820],[909,105]],[[43955,38925],[-24,838]],[[43931,39769],[-936,-109]],[[42995,39660],[25,-174],[26,-666]],[[41420,60275],[1555,168]],[[75651,65762],[289,-623]],[[76220,65168],[120,59],[27,130],[132,91]],[[78231,67722],[145,331],[91,27],[42,267],[61,102],[12,368]],[[78582,68817],[-72,26],[-182,189],[-29,-46],[-151,144],[-75,-140],[-248,256]],[[77825,69246],[-64,-275],[-111,-59],[-112,-324]],[[89417,33639],[267,199]],[[89673,33975],[2,199],[72,-34],[0,248]],[[89747,34388],[-263,-82],[-149,-9]],[[89335,34297],[-19,-205],[37,-95],[-29,-364],[93,6]],[[79763,72383],[159,106]],[[79922,72489],[122,120],[136,285],[69,-6],[244,273],[75,132]],[[80568,73293],[118,238],[-18,68]],[[80511,74118],[-140,-94],[-220,126],[-228,-49]],[[79923,74101],[-47,-301],[-78,-79],[-76,53]],[[62852,49004],[113,-197],[209,-17],[8,-174],[64,-86],[77,-300],[133,-15],[44,-232],[56,-10],[205,248],[71,-51],[42,86]],[[63551,49907],[-1,-256],[-134,2],[10,-172],[-316,30],[-35,120],[-208,39]],[[64346,81104],[-38,184],[-81,140],[-153,-84]],[[64074,81344],[-32,-38],[-78,227],[-112,-243],[-122,-121],[-42,-160],[-119,-91]],[[74166,72752],[-3,281]],[[74163,73033],[-20,197],[-91,408],[42,220]],[[74094,73858],[8,65]],[[74102,73923],[-45,-31],[-99,141],[-9,154],[-371,57],[20,333]],[[72983,74700],[50,-174],[-13,-142],[82,-345],[-45,-275],[31,-97]],[[68432,80772],[374,-157],[7,-84],[99,130],[-56,89],[-73,-43],[-252,100],[-99,-35]],[[68958,78968],[-93,167],[21,122],[-73,439],[16,473],[-45,224],[-104,29],[1,-120],[-143,-111],[-103,62],[-33,-66],[-115,89]],[[68287,80276],[-98,-1393]],[[68189,78883],[-71,-1001]],[[68118,77882],[-32,-442]],[[21739,3191],[1092,443]],[[22357,7144],[-142,-58],[-124,936],[-90,-70],[-68,-185],[10,-140],[-214,183],[-37,-71]],[[20973,7176],[25,-303],[-43,-228],[78,-51],[98,77],[84,-56],[8,-262],[78,-3],[51,-267],[100,-171],[-24,-195],[13,-509],[80,-224],[59,-21],[110,-526],[43,-411],[-70,-259],[11,-362],[65,-214]],[[15181,1242],[34,-30],[73,424],[-69,-175],[-38,-219]],[[15459,1720],[-3,-267],[64,-118],[-50,-123],[-88,-26],[-132,85],[62,-130],[-81,-88],[22,-251],[-69,-161],[64,-71],[-65,-209],[111,-126],[927,460],[486,255],[1270,590]],[[14827,0],[82,139],[-88,-41],[6,-98]],[[77488,74301],[359,-70]],[[78117,75285],[27,136],[-236,54],[21,323],[-46,155]],[[77883,75953],[-182,35]],[[77701,75988],[18,-144],[-87,-110],[9,-273],[-61,-81],[-19,-200],[-96,-32],[-116,-197],[-1,-131]],[[29301,35971],[116,-1248]],[[85622,52213],[120,-701],[-81,-684]],[[86131,51402],[-107,183],[157,11],[121,168],[25,175],[104,1]],[[43004,79617],[-696,-87],[-9,223],[-386,-49],[-46,1203],[-424,-47],[-35,880]],[[63149,37040],[113,-221]],[[63262,36819],[30,408],[121,113],[-31,232]],[[72643,43934],[-40,-610]],[[72952,38343],[94,-21],[-47,-669]],[[73183,37612],[566,-132]],[[73820,38426],[-188,43],[4,57],[-187,42],[12,168],[-377,89]],[[33515,50558],[123,-157],[37,-167],[85,-128]],[[34066,49939],[56,94],[-25,267],[21,189],[77,82],[-34,153],[-35,494]],[[34126,51218],[-835,-180]],[[47026,82819],[-24,1072]],[[46217,83850],[-1,-204],[-86,-138],[73,-41],[-13,-216],[44,-54],[-28,-208],[59,-182],[36,-491],[47,-213],[398,59]],[[28056,16085],[180,-1759],[-123,47],[-85,-94],[16,-85],[-110,-313],[-53,-41]],[[78050,71613],[88,-205],[-28,-45]],[[78110,71363],[49,-5],[215,-498]],[[78374,70860],[125,15]],[[78499,70875],[30,198],[91,300],[-16,115],[90,439],[116,185]],[[78635,72310],[-103,-122],[-78,-174],[-314,-208],[-90,-193]],[[17529,62842],[-1684,-647],[-366,-163],[1,-67],[-208,-247],[19,-49],[-259,-103]],[[56307,57014],[-667,4]],[[55640,57018],[-6,-1052],[-62,-196],[46,-21]],[[97702,97461],[-160,128]],[[97360,97486],[4,-278]],[[73575,23216],[40,101],[30,317],[46,113],[-30,467],[20,317]],[[73681,24531],[-881,212]],[[34204,25883],[2190,487]],[[35610,28775],[-95,-20]],[[35515,28755],[39,-553],[-190,-38],[24,-334],[-378,-83],[24,-324],[-343,-77],[-8,-115],[-195,-38],[16,-215],[-188,-44],[30,-336],[-98,-22],[24,-334],[-94,-21]],[[51997,71203],[346,13]],[[95212,98419],[56,-171],[2,-164],[58,-346]],[[95388,97732],[7,367],[61,-13],[-51,168]],[[95405,98254],[-56,97],[-137,68]],[[66037,62744],[-275,35]],[[49686,47099],[-4,336]],[[94634,97028],[162,44]],[[94827,97137],[-93,133]],[[94734,97270],[-112,33],[-13,-93],[-96,12]],[[94513,97222],[-78,-114]],[[94734,97270],[130,228]],[[94527,97599],[54,-102],[-68,-275]],[[89943,25324],[-163,-1398]],[[90062,26056],[-70,-192],[-49,-540]],[[51852,90930],[-193,452],[-165,530]],[[51494,91912],[-89,0]],[[51405,91912],[163,-446],[72,-282],[60,-113],[-17,-156],[103,-287]],[[50952,90879],[63,79],[182,-48],[-30,209],[48,158],[222,177],[-143,513]],[[51294,91967],[-1011,-20],[-91,-238],[-104,-63]],[[50088,91646],[26,-949],[270,-411]],[[89949,17161],[371,-145],[618,-293]],[[90938,16723],[9,395],[99,78],[-101,400],[61,42]],[[91006,17638],[-71,310],[-182,-120],[75,227],[-98,-34],[-88,676],[-192,-80]],[[82470,42669],[-104,815],[116,394],[-102,483]],[[78495,65619],[18,-66],[180,-178],[162,14]],[[79070,65684],[174,156]],[[79244,65840],[-419,847]],[[85137,46627],[83,40]],[[86254,47742],[-160,405]],[[56065,69757],[-123,-115],[-60,41],[-337,-46],[-59,32]],[[55152,69707],[-9,-1923]],[[75103,44135],[136,-572]],[[76148,43923],[26,618]],[[76174,44541],[-27,159]],[[76147,44700],[-958,116]],[[77576,70610],[354,986],[180,-233]],[[78050,71613],[-441,1016]],[[77609,72629],[-49,-126],[-135,-157],[-48,-246],[14,-113],[-85,-84]],[[75370,64796],[-36,-174],[66,-287]],[[75400,64335],[368,189],[82,-132]],[[75055,62722],[14,246],[170,245],[238,132]],[[75477,63345],[15,232],[51,81]],[[75543,63658],[-539,114]],[[20548,14407],[557,233]],[[21289,14717],[841,341]],[[21160,18262],[42,-320],[-318,-127],[21,-162],[-66,-26],[26,-216],[-69,-195],[14,-104],[-93,-32],[-15,-366],[43,-323],[-66,-25],[51,-380],[-54,-307],[41,-313],[61,25],[44,-325],[-337,-136]],[[20485,14930],[63,-523]],[[78582,68817],[177,189]],[[78447,70053],[-52,-31],[-17,-339],[-244,-127],[7,-104],[-149,-77],[-169,70]],[[77823,69445],[2,-199]],[[78601,67053],[75,-163]],[[78731,66875],[170,132]],[[73830,42468],[-20,-619]],[[73810,41849],[870,-79]],[[74680,41770],[10,-1],[-59,952],[-100,6]],[[63802,59129],[91,-374],[140,-206],[73,-243]],[[64106,58306],[107,-124],[69,-173],[23,-330],[-35,-166],[-115,-79],[-25,-281],[-119,13]],[[64011,57166],[47,-350],[61,-175]],[[64119,56641],[331,-31]],[[64450,56610],[30,927]],[[63958,59109],[-156,20]],[[87732,18149],[1026,-486]],[[88963,19339],[44,48]],[[82077,47306],[571,497],[54,74]],[[82702,47877],[36,126],[-26,216]],[[82334,49065],[23,168],[-95,184]],[[85221,36290],[-43,253],[34,190],[77,185],[-92,313],[47,112],[116,-37],[50,96]],[[84324,38290],[-132,-314]],[[63025,57262],[364,-35]],[[63389,57227],[622,-61]],[[64106,58306],[-231,23],[-6,-226],[-855,56]],[[84030,42059],[66,-425],[165,-367],[16,-193]],[[27638,5401],[539,183],[982,311],[1175,359]],[[30334,6254],[-25,318],[-128,1294],[-26,333]],[[30155,8199],[-63,-41],[-505,-152],[-63,645],[-1125,-352]],[[89868,19394],[-26,202],[60,26],[-65,126],[-40,348],[26,11],[-25,464]],[[89798,20571],[-102,-478],[-436,318],[-67,12]],[[53006,31627],[1105,13]],[[56516,73472],[162,-1]],[[55868,75597],[-88,0],[-8,-1121]],[[75381,45479],[100,69],[15,120],[684,-116]],[[76180,45552],[91,-12],[15,349],[188,-23]],[[76474,45866],[10,392],[-55,5],[3,282],[-97,14],[65,307],[-119,132]],[[76281,46998],[-45,-49],[-144,-630],[-238,256]],[[22655,91654],[150,26],[73,-51]],[[22639,90626],[52,120],[186,83],[245,287],[-21,71],[165,239]],[[23171,91888],[-8,40]],[[23149,91993],[-200,-268],[-54,-280],[-15,125],[-198,37],[-116,-282],[-117,-203],[-34,-173]],[[62659,63597],[-4,-172],[264,-5],[971,-84]],[[63890,63336],[11,274]],[[63691,62429],[182,-34],[17,941]],[[66814,30934],[-3,212],[66,232],[-43,183],[106,311],[2,211],[42,175]],[[62822,27372],[12,358]],[[62834,27730],[-194,-3],[-718,80],[-129,123],[13,225]],[[61524,28146],[-21,-643],[-19,3],[-39,-1338]],[[89395,36197],[-94,289],[-81,62],[66,148]],[[78861,54078],[566,-99]],[[52701,18727],[764,3]],[[53483,21053],[-475,-5]],[[49286,21239],[-1090,-71]],[[48196,21168],[-248,-20]],[[47948,21148],[33,-1300]],[[90402,18946],[364,162],[-24,344],[-76,573]],[[90666,20025],[-88,-29],[15,359],[-240,-20],[-65,611],[-99,-23]],[[90189,20923],[-278,-50],[-87,-322],[-26,20]],[[53313,35647],[14,186],[128,206],[-7,255]],[[53448,36294],[-60,123],[-398,-6]],[[18868,35310],[-651,1818]],[[18217,37128],[-1144,-471],[-1591,-663]],[[90150,21208],[39,-285]],[[90666,20025],[108,35],[194,-122],[223,36]],[[91191,19974],[46,208],[-73,451],[38,266],[-71,297],[21,328]],[[67849,22457],[19,-269],[128,39],[63,-76],[-117,404],[-93,-98]],[[67234,23143],[61,-57],[22,205],[-83,-148]],[[66777,25221],[15,-185],[150,-460],[258,-249],[55,117],[-10,-170],[55,-328],[128,-381],[24,-333],[67,5],[111,-126],[3,-254],[72,-149],[114,-28],[12,303],[-73,-12],[4,511],[-107,135],[-19,179],[-68,180],[35,137],[-64,140],[24,82],[-91,125],[-50,170],[-80,509]],[[75053,37858],[-502,124]],[[81285,70426],[-93,-16],[-311,635]],[[80751,70515],[-19,-126],[-236,-491],[20,-131],[-54,-139]],[[80462,69628],[11,-80],[243,-401]],[[43030,31956],[1133,136]],[[44159,35572],[-16,335],[-94,-11]],[[44049,35896],[-991,-101]],[[43058,35795],[-32,-2]],[[51338,30673],[10,-1341]],[[65193,22753],[385,-46]],[[66681,24126],[-76,56],[-42,143],[31,100],[-102,261],[-49,281],[-59,147],[-2,164]],[[66382,25278],[-374,74],[-19,-25]],[[65989,25327],[-40,-660],[-374,42]],[[17365,86332],[-350,62],[10,193],[-516,70],[-802,788],[1,97],[-388,14]],[[89883,34269],[-22,127]],[[89861,34396],[-139,122]],[[89722,34518],[25,-130]],[[32906,26949],[107,218],[80,270],[-25,302],[373,92],[-4,55],[188,42],[-8,113],[188,44],[-14,165],[188,43],[-9,111],[188,44],[-9,110],[188,43],[-4,55],[286,65],[3,-42],[886,186],[7,-110]],[[35344,32850],[-46,659]],[[60102,45497],[3,0]],[[75891,42322],[27,-115],[-2,-454]],[[76448,41658],[13,360],[127,-16],[15,341],[64,-8],[14,338]],[[59148,69299],[0,279],[256,-2]],[[59404,69576],[7,1385]],[[62829,32894],[942,-104]],[[63771,32790],[46,1182]],[[89996,34040],[134,160],[38,-64],[92,225],[-7,160],[-125,128]],[[90128,34649],[-129,32],[-75,-169],[4,-222]],[[54281,23380],[760,-8]],[[64450,56610],[451,-44],[-41,-892],[23,-3]],[[65415,57002],[-56,153],[-62,-132]],[[65202,57032],[38,83],[-31,217],[64,172],[-56,149]],[[63771,32790],[-6,-168]],[[19555,33706],[694,268]],[[19349,40892],[-1205,-477],[-765,-30]],[[17379,40385],[-26,-216],[177,-198],[26,-117],[-26,-436],[44,-112],[82,32],[103,-119],[4,-163],[133,-142],[186,-37],[77,-274],[21,-203],[-14,-292],[51,-290],[73,-208],[0,-210],[-73,-272]],[[15183,37367],[-472,925],[-314,144],[-115,11]],[[78268,76542],[-73,-361],[-255,49],[-25,-285],[-32,8]],[[39487,29519],[144,-2589]],[[81037,30194],[122,25],[69,171],[138,76],[148,-99],[58,-118],[70,11],[139,-203],[203,-159]],[[82451,31849],[-975,318]],[[81476,32167],[-228,67]],[[81248,32234],[-211,-2040]],[[96920,96532],[93,177],[-16,91]],[[96997,96800],[-75,39],[-13,220]],[[96726,96446],[194,86]],[[96997,96800],[120,331]],[[97117,97131],[-54,-64],[-112,19]],[[56766,38342],[-4,-375],[-63,1],[-11,-1007]],[[42974,81014],[-72,1931]],[[42902,82945],[-172,-93],[-149,32],[-82,-89],[-147,80],[-124,-41],[-119,-219],[-87,-1],[-172,-155]],[[76504,62948],[43,-47],[346,-107],[114,-259]],[[76651,63835],[20,-149],[-119,-221],[-10,-402],[-38,-115]],[[66467,52611],[-573,85]],[[65700,52706],[-38,-1008]],[[78313,35042],[782,-213]],[[79227,36223],[-785,217]],[[65534,39855],[32,670]],[[65566,40525],[-95,16],[18,336],[-100,16],[8,141],[-94,21],[-49,115],[-224,37]],[[64535,40675],[-19,-176],[129,-508]],[[34126,51218],[-58,831]],[[77740,40192],[-38,-563],[-159,32],[-20,-284]],[[58283,22050],[-18,-956],[134,-8],[-10,-675]],[[59148,68051],[131,20],[249,-168]],[[59528,67903],[564,-4]],[[60155,69571],[-169,55],[-184,-113],[-80,63],[-318,0]],[[76162,35895],[149,-61],[90,-140],[277,-270],[74,17]],[[76752,35441],[45,592],[153,-37],[23,289]],[[76217,36445],[-55,-550]],[[77050,58082],[54,-103],[79,41],[152,-220],[80,-42],[246,-313],[178,-102]],[[78109,57719],[-28,85],[74,257],[-37,96],[79,102],[155,86]],[[78201,58617],[-128,-94],[-41,164],[-100,-28],[-60,112],[-287,125],[-98,-68],[-115,170]],[[62970,59317],[819,-67],[13,-121]],[[39536,65970],[188,30],[-48,1008],[226,31],[-32,626],[378,49],[-16,334]],[[41886,35651],[-1054,-142]],[[59892,66572],[334,0],[161,101],[129,206]],[[59528,67903],[24,-107],[-30,-250],[-129,-268],[123,-42],[0,-665]],[[78607,56595],[63,-172],[174,103]],[[79683,57060],[-90,376],[-142,466]],[[78942,58009],[-127,-531],[-234,-279],[96,-166],[19,-162],[-89,-276]],[[78555,56798],[52,-203]],[[77677,72816],[-68,-187]],[[80036,89453],[761,-176],[52,661],[385,-87]],[[80694,90993],[-172,-397],[-86,-288],[-229,-547],[-171,-308]],[[78149,64518],[-154,-73]],[[77995,64445],[-237,109]],[[77758,64554],[-156,-11],[-218,-179]],[[77364,76048],[337,-60]],[[78117,77450],[-257,29]],[[77699,77496],[-16,-78],[-153,-81],[-102,-223],[48,-63],[-1,-201],[177,-133],[-47,-152],[-138,-48],[7,-173],[-110,-296]],[[75147,70616],[-247,204],[-99,-25]],[[74701,70878],[37,-183],[-55,-66]],[[74683,70629],[-60,-938],[-19,-55]],[[85666,60625],[113,143],[70,-37]],[[75477,63345],[220,-387]],[[76014,62894],[112,254]],[[76126,63148],[-79,273],[109,250]],[[76156,63671],[-306,721]],[[75400,64335],[124,-135],[77,-364],[-58,-178]],[[61375,43104],[987,-58]],[[61518,44078],[-109,-343],[-33,-327],[-1,-304]],[[76267,70735],[96,62],[1,-255],[72,13],[45,-113],[-27,-394],[16,-223]],[[76470,69825],[0,-3]],[[76667,69886],[80,27],[37,304],[126,435]],[[56593,78599],[196,93]],[[56641,80637],[-227,-1853],[179,-185]],[[57754,25620],[128,-39],[91,100],[79,-25]],[[58052,25656],[27,614],[64,-4],[0,333]],[[65842,69365],[251,-29],[25,678]],[[76147,44700],[33,852]],[[80026,31551],[168,-230],[269,-454],[131,-344],[310,-412]],[[80904,30111],[133,83]],[[81248,32234],[-879,271]],[[85099,45224],[174,172]],[[85273,45396],[43,100],[107,-55]],[[85423,45441],[145,100]],[[62408,56063],[18,1258]],[[89716,35276],[139,-70],[249,80],[6,-151],[85,556],[12,781]],[[76474,45866],[127,-13]],[[76851,47482],[-149,-7]],[[76555,47185],[-127,-178],[-147,-9]],[[65887,16786],[217,-22],[248,133],[21,127],[85,-35],[129,186],[29,196],[98,146],[39,151],[100,155],[90,23],[6,262],[63,80],[142,26],[213,-61]],[[67437,19429],[-191,30],[33,662],[-190,29]],[[79213,74113],[130,-83],[187,-437]],[[79923,74101],[112,226],[-17,124],[-198,77],[-45,180],[-83,96],[-172,-22]],[[27516,87541],[10,-131],[80,-123],[31,-160],[355,-322],[98,90],[48,-98],[176,-9],[108,69],[114,269],[-7,149],[-76,204],[4,343],[-119,214],[-119,129],[-63,-52],[-263,-43],[-133,-234],[-199,-129],[-45,-166]],[[26571,88208],[114,-280],[131,-118],[31,-150],[84,-29],[-18,406],[-170,115],[-94,321],[-89,-137],[11,-128]],[[83118,34696],[115,210]],[[77154,73921],[-11,-392],[66,-64],[-15,-187]],[[56418,20038],[22,-46],[-19,-1302],[-22,1],[-3,-664],[857,-20]],[[57234,20472],[-861,28],[-35,-208],[80,-254]],[[37991,22775],[-752,-145],[42,-658],[60,17],[79,-1220],[-277,-98],[27,-396],[54,11],[11,-165],[-95,-18],[10,-146]],[[83823,92515],[28,277]],[[83851,92792],[-762,234],[-95,-987],[-571,168]],[[78401,65685],[-268,-670],[-138,-570]],[[80830,72598],[-95,504],[-167,191]],[[79922,72489],[118,-532],[-23,-105],[97,-289]],[[52084,86257],[204,163],[75,393],[100,96],[54,163],[23,278],[107,255]],[[74078,44843],[23,-1]],[[74101,44842],[10,243],[25,1627]],[[73821,46563],[-15,-181]],[[73617,45850],[-7,-591],[31,-121],[-79,-59],[89,-204]],[[53027,21379],[-31,439],[-139,334],[-248,304],[-39,174],[34,77]],[[51994,23798],[6,-996]],[[79563,46391],[144,-238],[68,106],[169,-51]],[[94996,96377],[-19,149],[93,218]],[[94850,96742],[-61,-259]],[[94789,96483],[-97,-205]],[[94692,96278],[174,16],[130,83]],[[95100,97279],[18,250]],[[94996,96377],[118,18]],[[95114,96395],[4,452]],[[95130,96844],[144,93]],[[95274,96937],[-4,75]],[[95266,97593],[-20,2]],[[97518,96780],[170,82]],[[97688,96862],[-132,288],[-45,-32]],[[95533,98334],[-128,-80]],[[93646,22957],[-66,25],[5,172],[-96,6],[-209,132],[39,-242],[-419,-352]],[[92900,22698],[12,-44]],[[63468,51251],[141,-216],[58,19],[69,-162]],[[63820,51037],[134,85],[69,165],[59,2],[114,190],[125,22],[-79,143],[68,164]],[[64042,52625],[-79,-102],[-75,125],[-473,-760],[220,-420],[-167,-217]],[[85165,44460],[58,-159],[69,18],[154,183],[124,23]],[[85570,44525],[-14,224],[42,242],[65,115]],[[85423,45441],[-48,-117],[-102,72]],[[43294,16718],[764,92],[4,-110],[572,66]],[[71815,60709],[87,239]],[[71902,60948],[18,9],[54,889]],[[71974,61846],[-796,134]],[[71178,61980],[-13,2]],[[71165,61982],[-30,-521]],[[71135,61461],[5,-420],[68,-247],[-19,-143]],[[44720,10936],[26,-656],[118,13],[13,-328],[191,22]],[[71902,60948],[86,-89],[152,76],[77,-107],[-41,-187],[260,-166]],[[72782,61076],[59,219],[-34,193],[-139,247]],[[72435,61773],[-461,73]],[[58052,25656],[120,-84],[109,-300]],[[71783,41237],[65,879]],[[57243,17141],[-9,-693],[-55,-82],[33,-247],[-153,-68],[-34,82],[-200,-279],[20,-136],[-80,-224],[-58,-45],[-311,257],[-134,-106]],[[73681,24531],[28,656],[-47,41],[-78,251],[-130,25],[-49,191],[-7,248]],[[50610,49827],[-12,1348]],[[50598,51175],[-943,-35]],[[49648,50800],[14,-1007]],[[55959,47246],[66,120],[83,-58],[43,99],[103,-10]],[[56248,47843],[-332,10],[-117,-57],[-60,262]],[[45700,89262],[191,11]],[[47099,92911],[-83,-32],[6,-121],[-84,-53],[67,-80],[60,-558],[-93,-56],[39,-247],[-82,-195],[-93,-111],[-70,53],[-56,-130],[-70,14],[-202,-467],[-57,25],[-67,-131],[-41,-249],[19,-133],[-81,-163],[14,-153],[-115,-60],[-45,-271],[-67,-81],[-53,-230],[-245,-220]],[[53721,84215],[56,50],[71,331],[-72,109],[166,237],[51,298],[100,70],[39,185],[51,15]],[[53295,86652],[-634,-1092]],[[52661,85560],[560,-600],[80,-414],[254,-455]],[[76111,68010],[25,183]],[[76077,69305],[-423,89]],[[76904,65236],[-44,153],[62,178]],[[75963,70564],[387,-716],[120,-23]],[[74163,73033],[39,48],[163,-30],[-31,102],[130,73]],[[74464,73226],[32,564],[-89,14]],[[74407,73804],[-124,52],[-189,2]],[[77609,40496],[-781,145]],[[74464,73226],[465,-80]],[[75033,73125],[33,566],[63,31],[87,307],[-6,215]],[[74708,74354],[-231,51],[-55,-355],[-15,-246]],[[97252,97800],[-101,-6]],[[78003,46134],[43,-21],[104,195]],[[77880,47553],[-120,261],[-95,-68],[-24,-322]],[[77595,47045],[-59,-505],[164,-233],[303,-173]],[[78738,49413],[98,1],[296,649],[32,167],[168,120]],[[89110,32551],[-159,530]],[[88951,33081],[-161,544],[2,169],[-82,121],[-99,-7]],[[69599,69935],[189,-41],[-5,-338],[46,-159],[151,-15],[-13,-252],[78,-152],[90,28],[64,-108]],[[67299,64624],[382,-46]],[[67986,65086],[-12,908]],[[67974,65994],[-612,76]],[[61383,42917],[-8,187]],[[60654,44130],[-26,-1187]],[[91054,22244],[194,-27],[240,57],[211,-35]],[[91699,22239],[-66,395],[-68,13],[40,232],[-30,234],[75,234],[124,211]],[[91774,23558],[-12,240]],[[91762,23798],[-219,86],[6,-202],[-326,241],[20,93],[-94,27],[-46,-82]],[[48736,11958],[-522,-37],[-33,1324],[53,4],[-15,660]],[[48219,13909],[-382,-28]],[[47837,13881],[-192,-16]],[[90046,33784],[200,-103]],[[90246,33681],[28,-7]],[[90413,34451],[-129,103],[-154,199],[-2,-104]],[[83173,54190],[-476,122]],[[63130,17701],[141,-218],[175,-76],[84,45],[155,-106],[117,-5],[273,-277],[167,-361],[196,-35],[92,-153]],[[64074,81344],[-10,212]],[[63196,82036],[131,-1005]],[[82048,87950],[816,-207]],[[74680,41770],[-9,-392]],[[75164,41278],[8,231],[-71,14],[31,298],[52,136],[-39,67],[45,398]],[[75210,42872],[-673,72]],[[83331,86923],[694,-194],[23,-132],[82,-47]],[[84130,86550],[166,418],[186,651]],[[56676,61948],[-8,-161]],[[56667,63693],[9,-1745]],[[67826,39209],[54,1050]],[[74841,71955],[18,-4]],[[76752,35441],[181,41],[186,-62],[210,-341],[156,-317]],[[77485,34762],[22,233],[156,-41]],[[76560,66922],[54,1007]],[[20845,23639],[84,86],[56,275],[136,151],[31,213],[-25,180],[195,503],[37,265],[97,99]],[[21456,25411],[137,39],[47,264],[-33,135],[99,330],[50,46]],[[23184,31132],[-439,-156],[-1675,-617],[-1028,-408]],[[20029,29945],[816,-6306]],[[9300,43257],[99,75]],[[9399,43332],[171,52],[29,67],[133,-57],[637,316]],[[9844,45792],[12,-74],[-101,-101],[-118,-527],[-140,-285],[-50,-30],[-189,-339],[-21,-193],[-52,-68],[-66,-285]],[[9119,43890],[-48,-151],[72,-420],[157,-62]],[[59541,77376],[127,-90],[74,-199],[107,-92],[170,-303]],[[61216,77313],[-139,132],[-61,-112],[-72,52],[14,729],[64,644],[-137,-1]],[[60295,79060],[-425,49]],[[67974,65994],[-1,109]],[[67955,67316],[-138,17],[-72,241],[-254,173]],[[67491,67747],[26,-119],[-404,54],[-23,-503]],[[88243,37742],[99,-175],[-116,-123],[48,-172],[205,103],[112,-404]],[[88589,37550],[-98,169],[17,270]],[[88508,37989],[-104,131]],[[92827,23789],[-16,-118],[89,-973]],[[93862,23105],[-69,511],[3,268]],[[93207,24675],[-181,-34],[-85,-165],[-63,24],[-97,-377],[100,-76],[-54,-258]],[[89399,26186],[9,-144],[-77,-260],[51,-213]],[[89382,25569],[561,-245]],[[80527,58265],[-49,96],[119,42],[-102,105],[-28,283],[54,434],[-61,38]],[[63888,55539],[55,-171],[123,-178],[-3,-132],[64,-5]],[[64540,54678],[176,-19]],[[64119,56641],[6,-254],[-122,-281],[-31,-270],[-76,-132],[-8,-165]],[[44049,35896],[-40,1026],[134,14]],[[44096,38272],[-116,-14],[-25,667]],[[43046,38820],[29,-667],[-38,-174]],[[43037,37979],[47,-1169],[-46,-6],[-13,-226],[33,-783]],[[81476,32167],[67,594],[-48,56],[70,786]],[[55503,55751],[-581,9]],[[54722,55762],[-2,-1485]],[[55632,57638],[8,-620]],[[55631,58981],[7,-338],[-6,-1005]],[[69303,36067],[484,-87]],[[69375,37319],[-20,-332],[52,-206],[-20,-302],[-63,7],[-21,-419]],[[88302,53638],[304,-302],[198,-72],[99,104],[16,138],[-53,285],[44,168],[76,531]],[[51494,91912],[-147,565],[-105,565]],[[51182,93040],[34,-280],[117,-588],[72,-260]],[[51294,91967],[-164,874],[-205,204],[-76,-62],[97,-65],[24,-191],[-54,-11],[-189,284],[-55,12]],[[49843,93063],[14,-1426],[231,9]],[[80915,53041],[10,136],[-92,141],[-126,-32],[-32,178],[39,225]],[[80323,53794],[-164,-311]],[[80121,53411],[-237,-462]],[[79884,52949],[494,-421]],[[20850,21200],[55,189],[112,-39],[63,222],[115,-6],[-15,173],[68,49],[25,163]],[[21014,22921],[-74,55],[-95,663]],[[86490,43240],[97,-108],[19,153],[161,-7]],[[86767,43278],[75,359],[31,331],[60,160],[217,296],[-22,264],[-87,27]],[[86622,44174],[-18,-136]],[[86604,44038],[-32,-311],[-91,-335],[9,-152]],[[55933,83919],[-67,-100],[-89,274],[59,105],[-66,180]],[[55770,84378],[-90,-13],[-73,181],[-114,54],[-103,-222]],[[54992,84291],[-333,-306],[-437,-484]],[[54222,83501],[-257,-1436],[221,286],[79,-5]],[[87788,49706],[-29,116],[-119,-212],[-193,-127],[-110,-126],[-10,-184]],[[16997,89160],[-262,35],[-94,-44]],[[16641,89151],[-69,-26],[-90,156],[-33,201],[-179,9],[-67,-64],[-117,151]],[[16086,89578],[-2,-83],[-133,10],[-5,-232],[-612,29]],[[58041,69239],[-59,-130],[-33,70],[-103,-424]],[[65169,64548],[-856,94]],[[89680,34739],[-17,-144],[59,-77]],[[89861,34396],[56,203],[-98,332],[-185,184]],[[47837,13881],[-17,658],[55,4],[-33,1315]],[[47842,15858],[-120,-9]],[[47722,15849],[-839,-68]],[[88050,29763],[444,-781]],[[89364,28987],[31,654],[57,125],[123,1068]],[[81273,56715],[-31,-90],[-116,-37],[-193,-178],[-134,10]],[[46707,64910],[135,-45],[135,271]],[[45955,27778],[-189,-16],[21,-670],[19,1],[42,-1327],[34,-216]],[[57612,43091],[659,-39]],[[58294,43951],[4,253]],[[13757,38553],[-27,199]],[[90837,28527],[5,284],[221,-121],[-4,305],[-39,23],[34,337],[-103,77],[138,570]],[[90227,30260],[-151,-1454]],[[73155,76299],[417,-97],[45,773]],[[73617,76975],[-18,4]],[[73599,76979],[-1003,203]],[[72311,77231],[-57,-754]],[[73671,75738],[613,-96]],[[74524,76782],[-907,193]],[[78969,53854],[95,-97],[-10,-173],[176,-107],[87,-114],[203,-145]],[[79520,53218],[298,-98],[66,-171]],[[41776,47105],[29,-346],[74,-1684]],[[53664,36992],[-32,-169],[48,-237],[-89,-20],[-6,-114],[-137,-158]],[[58488,79261],[11,168],[-118,323],[-1,180],[-114,213],[9,157],[-90,102],[-21,133],[50,79],[35,285],[-78,162]],[[77455,65706],[71,-172]],[[77526,65534],[159,400],[110,-163],[138,139],[119,16]],[[78052,65926],[-41,58],[-56,312],[-123,-11],[-76,231],[34,81]],[[46720,64193],[26,-1094]],[[53182,73758],[130,99],[49,182],[96,23],[69,166],[76,-31],[-21,217],[100,-8],[-9,254],[96,34],[21,281]],[[53789,74975],[-823,827]],[[78918,72046],[-1,-966],[-20,-287],[36,-244]],[[79267,70601],[23,153],[119,403],[-13,351],[15,631]],[[63080,51157],[48,22],[6,207],[52,43],[282,-178]],[[39073,57635],[749,115]],[[32172,21503],[-251,-65],[58,-668],[13,3],[141,-1649],[-109,-29],[115,-1316],[33,-187]],[[71956,51891],[89,-528],[72,-188]],[[72117,51175],[63,211],[210,124],[389,-80]],[[71238,58235],[-37,978]],[[71150,59501],[-178,-94],[-117,180],[-25,-111],[-125,2],[-95,-136],[-165,11],[-2,63]],[[70443,59416],[-88,-79]],[[15341,3209],[66,-146]],[[15071,4945],[122,-211],[108,-351],[131,-43],[24,-198],[-58,-108],[-75,-336],[42,-223],[-24,-172]],[[15341,3303],[0,-94]],[[73285,45637],[-82,7],[-110,114]],[[73093,45758],[-222,-238],[-116,187]],[[72755,45707],[-51,-766]],[[51060,67685],[141,-66]],[[30378,43214],[-1,-1]],[[66364,40944],[-190,29],[-40,-540],[-568,92]],[[58752,64232],[-192,12],[3,112]],[[74303,69590],[0,15],[-591,113]],[[80129,88448],[969,-248]],[[80036,89453],[-110,-183],[-129,-333],[89,137],[94,-120],[149,-506]],[[88557,45628],[56,-193]],[[88613,45435],[624,-369]],[[89237,45066],[-111,645],[-37,106],[-106,-29],[-67,171],[-78,409],[-27,513],[41,151],[-77,437]],[[88294,47310],[13,-293],[114,-595],[-39,-100],[119,-104],[64,-242],[-52,-134],[-81,43],[125,-257]],[[88011,45821],[-47,170],[-41,-137]],[[87923,45854],[88,-33]],[[76946,68914],[422,1120]],[[87253,42560],[-42,-290],[-54,-36],[-83,188],[-73,13],[28,154],[-69,80],[-17,-344],[54,-416],[66,201],[129,-10],[52,-123],[-55,-164],[21,-196]],[[62322,41327],[-465,47]],[[61857,41374],[99,-129],[15,-106]],[[55068,57645],[564,-7]],[[54877,59326],[6,-672],[-4,-1006],[189,-3]],[[90238,33385],[-54,204],[62,92]],[[74445,38682],[33,-7],[34,444],[129,28]],[[73898,39480],[-49,-670]],[[51650,38774],[132,-14],[55,65]],[[31967,44009],[-155,1879],[-124,1431]],[[30155,8199],[150,174],[117,56],[-16,165],[283,87],[-15,162],[189,56],[-46,486],[374,107]],[[14282,38447],[73,254],[143,65],[-44,180],[2,235]],[[79538,78990],[592,-175]],[[80130,78815],[2,128],[-124,324],[-62,40],[-66,293],[-200,179]],[[16936,90102],[-109,15],[-5,-149]],[[16822,89968],[-272,-200],[-131,-173],[127,-322],[95,-122]],[[64687,20157],[14,348],[-175,22],[14,332]],[[64540,20859],[-200,10],[11,162],[-193,8],[-6,-155],[-190,35],[-944,112]],[[65948,68679],[209,-250],[143,-73],[168,-23]],[[51616,42805],[-12,1343]],[[74213,64931],[31,505],[29,-5],[36,540]],[[73995,66134],[-253,-70]],[[21059,37719],[545,198],[1583,593],[790,276]],[[21781,43694],[-1286,-2373]],[[56277,71947],[363,373],[232,-12],[264,-197],[10,122],[112,34],[63,-146],[81,33],[-28,108],[119,34]],[[57493,72296],[14,1156]],[[75037,67577],[3,168],[-59,216],[-117,21]],[[71284,43353],[-61,13],[22,336]],[[61524,74846],[86,64],[79,225],[142,30],[105,-173],[38,-176],[94,-5],[8,334],[40,-3]],[[61695,77542],[-142,-106],[-68,101],[24,127],[-105,55],[-40,-380]],[[73322,46807],[189,-97]],[[73483,47742],[-161,-935]],[[79520,53218],[-159,-491],[-108,-176]],[[34336,22698],[573,135]],[[34909,22833],[521,108]],[[45882,25550],[-143,190],[-199,5],[-28,86],[-127,89],[-132,247],[-210,-82],[-130,56],[-101,141],[-148,-44],[-159,76]],[[94651,29538],[103,-48],[78,-389],[107,-214],[72,19],[56,186],[117,62],[33,-154],[42,270],[-405,219],[-81,201],[-122,-152]],[[94770,28794],[47,27]],[[94817,28821],[-151,339],[-229,256],[20,-97],[181,-204],[132,-321]],[[76156,63671],[117,139],[143,-69],[158,214]],[[68194,38345],[62,1179],[51,669]],[[54171,67944],[45,-69],[88,57],[19,-113]],[[54150,69403],[4,-1410],[17,-49]],[[56418,20038],[-131,-204],[-164,117],[-182,-170]],[[71776,43254],[71,1004]],[[10316,53706],[93,-372],[2,-276],[-126,-181],[-48,50],[-146,-251],[-46,-187],[97,-272],[40,-285],[-40,-201],[-157,-120],[-118,-407],[-61,-375],[-180,-239],[-34,-501]],[[50598,51175],[378,12]],[[45759,47171],[-60,1670]],[[74557,43588],[158,-14],[24,640]],[[74317,44821],[-216,21]],[[65989,25327],[13,363]],[[56676,61948],[-69,42],[-35,289],[-181,-98],[-131,130],[-102,-208],[-94,-2],[-62,107]],[[73371,57041],[150,250],[219,302],[93,316]],[[73833,57909],[-156,357]],[[73677,58266],[-219,289]],[[72863,58660],[1,-5]],[[72825,58582],[4,-23]],[[72348,67548],[87,-239]],[[73240,66779],[103,640]],[[75191,31256],[-133,147],[-23,152],[71,187],[-97,35],[-34,152],[28,275]],[[74664,32300],[-164,-1674]],[[73946,30787],[-372,121],[29,334]],[[65525,33815],[111,-20]],[[44010,13596],[-23,567],[-680,-88],[-56,1310]],[[65754,54759],[10,231],[71,92]],[[65176,54120],[-54,-111],[46,-210]],[[67352,77987],[766,-105]],[[68189,78883],[-888,119]],[[89225,34603],[110,-306]],[[64146,36153],[-756,90]],[[63390,36243],[9,-288],[-27,-112]],[[63372,35843],[-24,-309],[-93,-155],[-170,-126]],[[76873,72979],[246,-30]],[[76886,74083],[-143,-176],[-145,29],[-62,-686]],[[8977,42127],[-34,266],[15,189],[150,153],[115,332],[50,9],[27,181]],[[9119,43890],[-44,262],[-150,-72],[-15,93],[-127,-50],[-7,316]],[[8776,44439],[-68,-74],[-16,-231],[-50,-116],[4,-181],[103,-422],[-25,-321],[13,-172],[-82,-205],[42,-257],[71,-179],[25,-245]],[[79597,69397],[278,-236]],[[79875,69161],[77,9],[61,120],[172,189],[277,149]],[[79766,70667],[44,-581],[-125,-208],[-2,-139],[-117,-69]],[[63372,35843],[-1206,119]],[[48743,96836],[-165,63],[-165,-345],[-68,-28],[-67,-152],[-133,43],[-149,-162],[-141,-64],[-86,58],[-56,-116],[42,-190],[-68,-187],[-76,-46],[-3,-135]],[[88951,33081],[25,163],[81,-81],[114,121],[147,-8],[52,81],[47,282]],[[45992,41140],[916,75]],[[48477,71200],[688,44]],[[73656,36259],[-745,170]],[[59411,32814],[-24,-1175]],[[96975,97963],[45,64]],[[97177,98327],[-132,49],[-90,-41]],[[90938,16723],[593,-290]],[[91471,18864],[-77,267]],[[91394,19131],[-196,-282],[85,-256],[-107,-153],[65,-283],[-122,-87],[71,-308],[-184,-124]],[[70338,62123],[827,-141]],[[71178,61980],[103,159],[-117,53],[31,81],[-62,170],[54,155],[-35,379],[22,393],[65,117]],[[14524,41404],[219,572]],[[17116,65864],[-1874,-385],[19,-358],[-73,-273],[-98,39],[39,-513],[-20,-151],[72,-109],[16,-538],[-32,-444],[-165,-756],[-105,-314],[-75,-116]],[[41948,35662],[-44,996],[-20,168]],[[41884,36826],[-1109,-152]],[[67664,60869],[88,156],[126,-35],[101,-145],[75,87]],[[68054,60932],[43,154],[-13,201],[65,5],[48,1115]],[[67524,62543],[-30,4]],[[57485,71573],[8,723]],[[76081,60978],[18,175],[-95,53],[-81,251],[24,211]],[[75947,61668],[-46,97]],[[73093,45758],[95,737],[-9,302]],[[73179,46797],[-69,112]],[[72677,46013],[-28,-133],[106,-173]],[[69560,33470],[817,-156]],[[69721,34786],[-40,-658],[-228,42]],[[69453,34170],[83,-460],[24,-240]],[[44978,81205],[-71,2539]],[[44683,85187],[-157,-169],[-12,-99],[-230,-254],[-85,-352],[-173,-86],[-37,-147],[-165,-101],[37,-308],[-41,-50],[-53,218],[-37,-95],[3,-229],[-95,-42],[-81,-362],[-111,-103],[-112,51],[-22,-127],[-58,80],[-251,19],[-101,-86]],[[77823,69445],[-455,589]],[[76271,73138],[-57,185],[-58,19],[51,129],[-71,204],[44,248]],[[75671,74143],[-25,-649],[39,-151],[-72,-127],[-85,-16]],[[79267,70601],[392,54]],[[93900,17404],[132,-56],[-71,-141],[13,-242],[139,-12],[13,-151]],[[94926,17475],[-12,333],[-167,8],[9,204],[74,370],[-162,24]],[[57866,30621],[14,936]],[[59564,74297],[52,168],[53,361],[10,266],[-37,342],[-104,273],[-7,278]],[[95771,96397],[112,12]],[[95883,96409],[24,192],[-45,100]],[[45096,35686],[-43,1342]],[[61104,28549],[-26,-64],[-189,-76]],[[9175,38374],[291,-7],[168,-313],[48,-28],[-7,-193]],[[9675,37833],[56,142],[104,35],[20,571],[64,210],[21,580]],[[57735,23284],[7,647]],[[57742,23931],[-15,-3]],[[56905,23287],[-149,-264],[-14,-251]],[[35216,75670],[-151,-74],[-218,-300],[-57,-301],[-59,-92],[-29,-230],[-116,-454],[-123,-150],[-74,49],[-64,-146]],[[69426,54256],[192,-63]],[[70230,54811],[-129,172],[-80,468],[-4,304]],[[76174,44541],[190,-25],[2,50],[195,-14],[5,140],[195,-23],[15,397]],[[81150,75164],[-80,173],[131,46],[27,-89],[29,262],[-55,551],[50,220]],[[80224,75286],[22,-189],[139,-45],[27,-158],[87,-151]],[[2661,97629],[92,9],[33,99],[-100,71],[-25,-179]],[[2180,97770],[116,120],[83,354],[-84,-249],[-115,-225]],[[1640,96970],[158,-15],[70,-133],[30,91],[-218,165],[-40,-108]],[[180,94948],[148,-16],[-12,216],[-136,-200]],[[3,93989],[96,-21],[192,194],[70,315],[-70,-107],[-48,47],[-120,-62],[-48,-294],[-72,-72]],[[8624,99025],[198,-102],[43,40],[115,-207],[143,-23],[44,-87],[-103,-66],[-42,-110],[68,-138],[182,-32],[-14,119],[67,60],[67,-133],[62,124],[-179,237],[208,-121],[-7,104],[-90,97],[-130,39],[-115,210],[-175,-40],[-90,90],[-158,62],[-94,-123]],[[8005,99405],[47,-13],[124,-218],[15,-133],[89,-89],[114,59],[-25,-92],[61,-186],[166,-61],[89,94],[-45,168],[-216,115],[-115,211],[-333,186],[29,-41]],[[8352,94388],[115,58],[-45,83],[-70,-141]],[[7571,99248],[113,-18],[13,144],[-118,-45],[-8,-81]],[[8196,93559],[117,-32],[-70,110],[-47,-78]],[[7148,99402],[110,-86],[-5,130],[-96,42],[-9,-86]],[[6275,99403],[98,-80],[54,112],[-157,29],[5,-61]],[[5590,99277],[106,94],[91,-16],[109,136],[181,96],[-213,-19],[-241,-168],[-33,-123]],[[4987,99087],[158,47],[350,-23],[-3,-141],[101,-89],[68,166],[-88,212],[-173,60],[-151,-54],[-262,-178]],[[4606,98790],[92,108],[-56,122],[-55,-57],[19,-173]],[[4526,99098],[132,-43],[-3,92],[-108,44],[-21,-93]],[[4134,99135],[140,-179],[45,-182],[105,30],[-47,180],[136,41],[-32,164],[-82,-57],[-183,76],[-82,-73]],[[3833,98832],[250,11],[37,-145],[60,84],[-95,211],[-103,-103],[-149,-58]],[[3647,98464],[131,37],[37,197],[-112,200],[-51,-176],[69,19],[-74,-277]],[[17046,91159],[-208,-29],[-104,186],[31,-165],[-28,-195],[-61,287],[-18,239],[-55,-281],[13,416],[-116,-191],[42,157],[-152,355],[7,-228],[-104,224],[-54,6],[-95,278],[-119,28],[-41,-91],[-69,163],[-62,8],[-93,-123],[32,-226],[142,-94],[198,-416],[-50,12],[-147,203],[-145,-173],[58,-357],[102,-249],[48,-455],[-59,-226],[141,-114],[233,-345],[74,178],[74,43],[80,-148],[281,132]],[[15695,90739],[46,-223],[43,31],[-89,192]],[[16086,89578],[-66,200],[-116,56],[-115,218],[40,161],[-55,1],[-168,314],[31,150],[-120,233],[-72,-10],[70,214],[-89,263],[-155,25],[81,47],[-17,182],[-275,203],[14,145],[-153,94],[-16,467],[37,-73],[231,102],[89,187]],[[81321,77083],[70,89],[74,531],[61,321]],[[80291,78604],[-28,-327]],[[93526,30830],[24,-283],[78,270],[-102,13]],[[93571,28843],[44,236],[-65,66],[74,148],[34,232],[-46,423],[-217,142],[-136,179],[-203,192],[-13,-50]],[[38122,44503],[-721,-122]],[[59545,57534],[-10,-1190]],[[59971,57505],[-426,29]],[[41108,49033],[2,-28],[564,69],[14,-335]],[[42365,50162],[-1122,-139]],[[51457,96337],[53,402],[70,847],[-47,-155],[-33,-479],[-82,-616]],[[51209,96331],[135,537],[-62,151],[36,478],[39,70],[142,39],[7,115],[87,-57],[9,404],[-261,7],[-1,64],[-195,101],[1,255],[-100,-4],[-52,-120],[-144,-59],[-48,-182],[-202,-337],[-218,-47],[-84,-109],[-133,9]],[[59545,57534],[-143,7]],[[50163,61950],[-373,-13],[-3,-673]],[[58280,60434],[1,112],[628,-9]],[[75247,79337],[864,-194],[32,105],[312,-66]],[[76503,79859],[-147,120],[-219,-49],[6,113],[-164,264],[60,172]],[[75641,80369],[-168,-162],[-100,-233],[-11,-206],[-72,-226],[-81,-64],[38,-141]],[[72002,20605],[133,221],[45,210],[311,6],[177,218],[131,-7],[205,187],[156,-54],[202,295],[-41,98],[50,138]],[[72053,22245],[-124,-1620],[73,-20]],[[66491,36646],[375,-71],[10,167]],[[97884,97809],[368,-178],[260,104],[-132,84],[-296,63],[-130,58],[-70,-131]],[[17221,40399],[158,-14]],[[65117,28462],[761,-94],[-10,-173]],[[66257,28320],[66,1333]],[[66323,29653],[-379,52]],[[61857,41374],[-103,7],[-164,125],[-89,231],[69,154],[-1,458],[-71,58]],[[88348,24295],[415,-274],[73,237],[64,73],[16,214],[114,59],[26,-188],[128,-199],[73,-38]],[[89257,24179],[75,353],[20,287],[60,285],[-30,465]],[[88641,25709],[-203,-987]],[[61024,79194],[748,-52]],[[61917,80474],[157,383],[-253,22],[-110,-80],[-126,96],[-79,-43],[-16,150]],[[53725,64709],[377,0],[1,335],[377,-3]],[[53906,66727],[-752,-5]],[[77071,42958],[187,-25]],[[77258,42933],[16,350],[354,-53]],[[77001,44352],[-14,-344],[-65,8],[-13,-344]],[[70788,74269],[-1101,183]],[[80499,40349],[181,-243],[-14,-118],[54,-129],[-76,-114]],[[80644,39745],[218,-71],[191,120],[231,-308],[238,199],[32,107],[82,-10]],[[80984,41232],[-252,75]],[[70257,66524],[75,-71],[-16,-136],[178,-216],[52,10],[112,-326],[18,-195],[178,-176],[118,-536],[117,-48]],[[64968,81203],[14,170]],[[73833,57909],[221,-281],[169,-102],[166,-280]],[[74550,57751],[18,47]],[[74072,58885],[-62,12]],[[73798,58521],[-54,5],[2,-155],[-69,-105]],[[97117,97131],[50,89]],[[47000,21068],[948,80]],[[48196,21168],[-29,1326]],[[95212,98419],[-15,2]],[[63097,81045],[-320,31],[-104,-222],[-243,-418]],[[69112,44955],[-125,20],[-25,-504]],[[29061,29008],[-746,-227]],[[62230,16893],[16,-243],[80,-51],[-19,246],[-77,48]],[[62155,17383],[113,-121],[-22,124],[-91,-3]],[[61959,17215],[24,-70],[156,-113],[-24,205],[-132,46],[-24,-68]],[[61804,17559],[119,-235],[6,63],[-125,172]],[[61820,17080],[84,170],[-73,18],[-11,-188]],[[61758,16857],[187,-134],[69,174],[68,-120],[16,143],[-84,38],[-88,170],[-168,-271]],[[61765,17769],[87,-67],[166,-299],[75,96],[-158,124],[32,111],[-89,22],[-105,133],[-8,-120]],[[61584,18548],[253,-257],[21,-178],[298,384]],[[82529,44518],[70,-370],[243,265]],[[83266,46462],[-284,-303],[-30,22],[-592,-498]],[[39137,8382],[1534,270]],[[40671,8652],[-19,333],[29,5],[-55,980],[96,16],[-18,327]],[[94789,96483],[-88,91],[-70,181]],[[94573,96655],[-19,-194],[56,-149],[82,-34]],[[96920,96532],[91,-30]],[[95249,96384],[150,14]],[[95274,96937],[28,-167],[-53,-386]],[[53714,81829],[548,-78]],[[54222,83501],[-276,229],[-118,2]],[[97421,97985],[-113,221]],[[71153,20166],[31,77],[261,192],[157,159],[69,-81],[129,-8],[202,100]],[[32578,21626],[-53,625]],[[59323,80927],[-10,-667],[285,-17],[-18,-1072]],[[67001,73313],[-755,98]],[[62697,82093],[-43,-162],[-143,11],[-35,-483],[-167,-35],[-117,-251],[-50,-505],[-120,-201]],[[63888,55539],[-165,-1],[-566,58]],[[84377,25921],[37,-17],[94,-326]],[[85336,27821],[82,550]],[[76511,61954],[-149,-87],[-78,109],[-132,-69],[-88,-254],[-117,15]],[[73448,77650],[30,-268],[74,-171],[47,-232]],[[96568,97044],[17,-280]],[[69898,64821],[3,55]],[[72553,49898],[-96,274]],[[72457,50172],[-387,200],[-166,-165]],[[71904,50207],[-52,-70],[60,-342],[64,-98]],[[14036,6840],[72,-11],[22,234],[106,131]],[[52126,26690],[379,4]],[[52505,26694],[679,9]],[[50354,89595],[18,-25],[-524,-1847],[165,-98]],[[85801,43931],[-21,-145],[63,-150]],[[85843,43636],[104,318],[31,-130],[86,-89],[172,-50],[209,85],[40,220],[119,48]],[[86396,44823],[-26,102],[81,276],[-149,-94],[-116,-178],[-112,-348],[-282,436],[-82,-61],[-83,-361],[31,-287],[143,-377]],[[85013,32580],[972,-159]],[[56055,71222],[-131,-160],[-83,-185],[-198,19],[-151,138]],[[70717,60652],[62,-38],[89,143],[124,-127],[186,-283]],[[71135,61461],[-90,10],[-65,-402],[-58,-13],[-78,-186],[-121,-52],[-6,-166]],[[52824,67730],[21,-267],[-86,-173],[76,9],[65,-221],[-68,-194]],[[54171,67944],[-163,-178],[-11,98],[-95,-18],[-47,99],[-146,-29],[-138,128],[12,172],[-108,84],[-120,-65],[-40,253],[-83,27],[-31,-131]],[[53201,68384],[-78,-194],[-141,13],[-47,-187],[-84,6],[-103,-123],[76,-169]],[[75247,79337],[-12,-124],[115,-237]],[[67491,67747],[84,481],[-85,-98],[-132,185],[-127,23]],[[66590,68206],[-11,-281],[-32,11],[-14,-407]],[[55486,43669],[-28,233],[84,88],[39,400],[-7,174]],[[81759,27811],[89,836]],[[80904,30111],[87,-320],[6,-176],[187,-247],[84,-209],[-32,-214],[-160,-397],[-137,-71],[-44,-303]],[[77320,48072],[-9,331],[190,337],[-161,441]],[[39772,15420],[122,21],[-44,773],[192,33],[-13,220],[192,32],[51,229],[637,105]],[[69668,77659],[815,-135]],[[71072,79846],[-437,236],[-209,81],[-54,-22],[-412,231]],[[78447,70053],[15,166],[-68,49],[-8,169],[-67,359],[55,64]],[[58657,32856],[754,-42]],[[14598,14688],[320,153],[152,-965],[62,31],[103,-656]],[[15982,13825],[-36,311],[98,221],[-127,382],[-186,282],[-34,-61],[-85,104],[-32,244],[43,101],[176,83],[120,199],[61,205],[-37,117],[339,157]],[[16287,16232],[12,55],[-68,385],[47,246],[-45,92],[102,220]],[[51494,34757],[15,-1584]],[[91774,23558],[138,-138],[139,303],[270,-271],[96,347],[183,-142],[18,68],[209,64]],[[93195,24704],[-38,176],[-948,375]],[[92162,25273],[-66,-273],[-48,18],[-135,-553],[-87,35],[-64,-702]],[[79875,69161],[-59,-109],[107,-916]],[[88497,44355],[26,107],[134,227],[-36,150],[86,184],[-120,111],[-44,187],[70,114]],[[88557,45628],[-85,-70],[-117,59],[-104,254],[-66,-2],[-24,-186],[15,-243],[90,-130],[-121,-18],[61,-254],[-125,17],[-63,133],[-29,-281],[150,-148],[-44,-93]],[[87923,45854],[-29,-300],[98,4],[19,263]],[[87858,45112],[76,250],[-99,-37],[7,-101]],[[88868,43529],[487,-186]],[[89355,43343],[1,502],[-23,60],[-48,870],[-48,291]],[[43757,9103],[1338,161]],[[68198,36776],[162,-110],[291,-300]],[[68651,36366],[105,1817]],[[68756,38183],[-59,77],[-160,-167],[-120,-45],[-134,193]],[[85922,27527],[41,249]],[[21456,25411],[78,-635],[62,24],[83,-656],[-62,-23],[83,-649]],[[64364,39821],[-571,62]],[[47842,15858],[828,57]],[[47956,18510],[-251,-20]],[[47705,18490],[42,-1323],[-60,-5],[35,-1313]],[[78473,52849],[87,-138]],[[78052,65926],[52,-48]],[[74289,47370],[132,365]],[[12007,86075],[109,-33],[2,101],[-111,-68]],[[12006,86496],[128,-334],[83,143],[151,31],[157,-46],[148,-336],[-37,-433],[3,-196],[-82,-234],[-75,-27],[51,-162],[115,66],[79,-131],[14,-141],[-118,-292],[-71,181],[-93,-39],[-174,110],[-136,172],[-103,254],[-4,-237],[-89,-210],[-51,57],[82,169],[-75,-7],[-103,-152],[-271,-47],[-209,91],[-378,-319],[-58,-223],[42,-175],[-72,-178],[-36,-219],[71,56],[116,-183],[-55,-103],[-258,-173],[-184,-308],[9,-145],[196,-113],[254,-225],[354,-268],[205,-116],[255,-84]],[[8933,85044],[80,-289],[23,154],[196,243],[183,-97],[108,166],[-6,167],[145,223],[275,221],[-83,168],[-174,-76],[-127,242],[-39,-211],[-142,-347],[-142,-241],[-77,-48],[-144,95],[-79,-120],[3,-250]],[[44349,72545],[55,-1674]],[[49535,90017],[687,30]],[[69815,40618],[-28,-503],[-249,44],[-10,-165],[-93,15]],[[45265,38392],[910,88]],[[45249,39899],[-28,-170],[44,-1337]],[[64662,50436],[189,-21]],[[64851,50415],[36,1017]],[[64887,51432],[-91,384],[-23,218]],[[66323,29653],[190,-25]],[[85868,42606],[187,220],[-171,459]],[[85884,43285],[-30,-178]],[[86838,47135],[96,-198]],[[86934,46937],[119,57],[121,343],[95,106],[154,-62],[56,102],[196,8],[-77,163]],[[49359,42720],[-22,1343]],[[9399,43332],[-78,-231],[-11,-329],[21,-309],[-106,-269],[12,-151],[-111,-143]],[[9125,41888],[66,-134],[30,-265]],[[85884,43285],[0,25]],[[85884,43310],[-162,5],[20,-184]],[[62125,66680],[50,249]],[[62175,66929],[-78,43],[2,112],[-150,8],[4,746]],[[85783,59322],[174,-100],[44,50],[547,-202]],[[86954,60032],[-97,190],[-184,468]],[[67093,33594],[13,412],[-32,326],[74,350],[77,204]],[[45848,53588],[-10,336]],[[45838,53924],[-718,-64]],[[58923,52144],[-189,4],[-3,392]],[[58731,52540],[-665,-9],[1,-57]],[[85016,50541],[76,114],[133,-51]],[[85366,43211],[61,-81],[50,103],[-111,-22]],[[43037,37979],[-1196,-148]],[[41841,37831],[43,-1005]],[[65465,32471],[377,-52]],[[66031,44181],[-11,204],[-92,10],[18,335]],[[65240,44202],[-17,-400]],[[64632,49680],[143,-235],[128,-49],[100,36],[85,-126],[106,-11],[23,-82],[93,38],[262,-22]],[[65613,50347],[-762,68]],[[94708,14673],[700,-630],[-87,-283],[147,-136],[-299,-991],[-150,135],[-23,-264],[-61,-290],[181,-182],[-429,-2609]],[[63737,29608],[-147,-531],[-163,-292],[-42,-193],[48,-39],[-45,-271],[-52,-42],[-43,-307],[73,-135],[4,-171],[76,48],[30,-112],[-41,-122],[30,-141]],[[68095,80888],[193,-33],[-81,124],[-112,-91]],[[67595,80846],[106,-58],[248,112],[-160,6],[-194,-60]],[[68287,80276],[-199,212],[-64,-75],[-84,58],[-38,-93],[-122,-4],[-155,76],[-132,-91]],[[76303,75115],[643,-127]],[[77209,74941],[40,460],[-49,116],[-35,398]],[[77165,75915],[15,168],[-304,54]],[[80629,39473],[41,76],[-79,113],[53,83]],[[88680,41649],[9,80],[259,367],[105,56],[67,-85],[106,497],[129,779]],[[53042,47871],[187,3],[4,-500]],[[67652,55746],[-653,80]],[[75661,48920],[1,179],[147,194],[294,-56]],[[69067,54270],[-142,-208],[-4,-97]],[[20493,12079],[57,156],[117,-28],[320,62],[61,-102]],[[20548,14407],[-28,-12]],[[67012,74851],[-689,173]],[[66323,75024],[-22,-331],[-55,-1282]],[[72239,43445],[45,723]],[[48985,13960],[1148,63]],[[50156,15008],[-1144,-62]],[[49012,14946],[7,-324],[-47,-3],[13,-659]],[[73792,41294],[18,555]],[[51031,72849],[-122,-4]],[[48502,69505],[972,53]],[[56062,78276],[197,160],[225,62],[109,101]],[[28734,35384],[-84,-114],[-40,-163]],[[18072,10884],[-225,1528],[-83,647]],[[15317,11917],[200,-1266]],[[75292,35258],[-6,-239],[90,37],[-84,202]],[[74778,35474],[169,69],[125,191],[113,67],[116,-160],[24,-159],[93,160],[109,-32],[53,174]],[[75580,35784],[-67,80],[-133,4],[-207,154]],[[63288,47691],[-146,373],[-139,-39],[-74,-169]],[[55755,77211],[254,-393]],[[82346,66114],[88,-53],[91,-162],[4,-565]],[[52512,25696],[-7,998]],[[79276,65882],[-32,-42]],[[55212,22046],[19,1324]],[[77138,42105],[634,-104]],[[77772,42001],[96,-17],[24,336],[95,-19],[22,295]],[[77258,42933],[-18,-674],[-94,13],[-8,-167]],[[14494,13085],[107,-123],[91,-10],[105,102],[331,37]],[[58731,52540],[-1,281],[32,0],[4,1206]],[[58007,54023],[0,-560]],[[42507,70692],[243,24]],[[43455,70784],[-53,1676]],[[38049,47860],[-1084,-178]],[[36965,47682],[133,-415],[-52,-139],[35,-117],[-157,-303],[-140,-16],[14,-181],[-99,-33],[-22,-256]],[[36677,46222],[43,-110],[-64,-79],[69,-116],[24,-664],[81,-103],[16,-152]],[[80720,65028],[241,-277]],[[80961,64751],[219,323],[95,-64],[144,15],[234,256],[81,175],[86,-22],[-34,-102],[106,-289],[83,81],[20,-84]],[[80730,65855],[-156,-118],[-132,0]],[[36355,44974],[48,-65],[75,121],[113,37],[136,-91]],[[36677,46222],[-651,-131]],[[76339,47751],[-169,-57],[-97,44],[-158,-242],[-206,-101]],[[76543,62061],[-42,54],[-112,780]],[[76389,62895],[-142,-8],[-121,261]],[[34909,22833],[72,-335],[95,-155],[7,-134],[111,-165],[-900,-195],[30,-526],[56,-305],[55,-86]],[[62952,77130],[-22,-1010]],[[85193,43601],[23,137],[-119,50],[64,-211]],[[85167,43692],[0,0]],[[74180,58941],[267,821],[32,257],[-89,63],[-65,144]],[[45085,37031],[917,96]],[[45265,38392],[-225,-24]],[[54892,74498],[59,196]],[[53793,75001],[-4,-26]],[[89383,22360],[-54,-195]],[[41820,37994],[21,-163]],[[42995,39660],[-53,-6]],[[42942,39654],[-1198,-153]],[[68491,56044],[531,-97]],[[69435,56602],[-42,154],[-54,-17],[-163,297],[-3,125]],[[50431,74629],[439,-447],[29,15]],[[50899,74197],[85,107],[0,101],[99,67],[72,-152]],[[68054,60932],[78,-22],[-53,-102]],[[80287,62860],[-25,170]],[[80262,63030],[-108,106],[-44,198],[104,166],[-148,54]],[[66933,63547],[631,-82]],[[54871,32971],[5,1339]],[[46775,55489],[-945,-68]],[[45830,55421],[41,-1494],[-33,-3]],[[76832,41628],[120,-15],[15,342],[163,-24],[8,174]],[[50903,73755],[-4,442]],[[85374,95839],[126,-684],[-17,414],[-69,295]],[[84021,94487],[-60,-651]],[[83961,93836],[381,-104],[7,82],[759,-217],[-5,-51],[347,-119]],[[85450,93427],[45,502],[-6,675],[-39,-205],[-74,-65],[-82,129],[-36,318],[-40,102],[16,171],[-41,146],[-2,207],[56,293],[43,40],[-110,333]],[[84981,96536],[-96,2],[-235,140],[-152,196],[-142,-108],[-88,60]],[[48689,58857],[561,16]],[[47923,60162],[6,-775]],[[52137,67042],[-2,223],[63,2],[-1,225]],[[52197,67492],[-18,20]],[[77485,34762],[60,-180],[221,-398],[61,-21],[364,-465]],[[78191,33698],[47,532]],[[52661,85560],[-35,-62]],[[9675,37833],[-20,-169],[43,-65],[103,55]],[[80130,78815],[175,-45]],[[80442,80376],[-12,5]],[[81306,58795],[-321,763],[-117,168]],[[66402,41784],[19,450]],[[12077,12732],[42,-210],[124,-169],[187,-132],[-164,-200],[-65,-205],[20,-108],[182,95],[43,-260]],[[86264,41487],[119,-135]],[[86536,41417],[27,105],[182,116],[19,304],[93,130],[-115,194],[54,239],[-58,10],[-22,192],[60,75],[-84,311],[75,185]],[[86490,43240],[-60,-95],[16,-513],[-81,-274],[-111,-161],[-160,-89],[-18,-117]],[[60094,44158],[-95,3],[-8,-323]],[[59160,45191],[-7,-1302]],[[67272,69179],[664,-97]],[[67921,70471],[-850,128]],[[65043,76965],[-130,-43],[-252,29]],[[50754,55716],[-539,-17]],[[58007,54585],[-740,-2]],[[62903,29699],[833,-91]],[[63715,31285],[-102,80],[-146,-11],[-134,146],[-178,7]],[[58052,55970],[-787,-4]],[[85803,54818],[-574,728]],[[17135,19626],[-371,-163],[45,-308],[-184,-83],[26,-183],[-554,-240],[71,-474]],[[76218,48555],[-85,32],[-72,-114],[-65,79],[-203,-244],[-92,128],[-31,182]],[[77430,56581],[6,265],[100,44],[84,-114]],[[85032,43361],[90,160],[72,-14],[185,227],[154,57],[113,182]],[[85646,43973],[-76,552]],[[89074,38876],[-152,-296],[-76,-3],[-218,-341],[-5,-102],[-115,-145]],[[48992,15935],[20,-989]],[[68198,21380],[110,149],[-28,121],[-82,-270]],[[68523,20783],[-83,36],[-31,176],[-67,24],[5,146],[-60,38],[28,197],[-148,-138],[-20,-130],[73,-82],[36,-313],[73,2],[68,-314],[-94,-144],[-81,263],[-214,-64],[24,183],[-65,168],[-16,187],[-156,128],[-64,-28],[-27,-397],[-53,-100],[-53,152],[18,354],[-163,206],[-118,446]],[[73322,46807],[-143,-10]],[[95355,18782],[-76,56],[29,165],[-66,161],[-4,172],[-89,-131],[11,155],[-61,141],[-83,-49],[21,217],[-88,-139]],[[74272,49236],[246,663]],[[74483,50269],[-138,-30]],[[73895,50185],[-23,-87],[45,-210],[-26,-126],[63,-84],[-20,-182]],[[81646,57546],[198,-62]],[[81844,57484],[47,99],[99,33],[47,211],[86,94],[-36,206],[-4,260],[110,291],[-28,124]],[[81791,58705],[-129,158],[-197,50],[-71,-52]],[[70717,60652],[-133,-17]],[[70584,60635],[-34,-1],[-86,-251],[-22,-215],[1,-752]],[[83399,48986],[7,-353],[108,7],[112,-319],[9,-119]],[[96362,96784],[107,-39]],[[19046,13781],[-43,63],[-199,96],[-191,-110],[-272,-33]],[[81423,72949],[-106,76],[-10,94],[117,-52],[49,67],[-137,619],[41,271]],[[91699,22239],[87,-365],[85,227],[128,-134]],[[57008,84345],[-425,347],[-144,145],[-114,238],[-92,32],[22,-123],[179,-323],[149,-62],[51,-154],[67,53],[40,-97]],[[55611,86030],[194,-238],[238,-392],[103,-79],[26,-182],[154,79],[-138,204],[-425,510],[-177,271]],[[55770,84378],[70,165],[139,52],[-40,178],[78,63],[-3,479],[-112,71],[-202,336]],[[40718,37844],[32,-657]],[[87946,39227],[55,-243]],[[88110,38515],[90,234],[99,104],[218,8],[274,282]],[[88314,40066],[-123,-178],[-127,-37],[-34,-304],[17,-154],[-84,-78]],[[11031,13738],[154,-544],[90,-566],[68,-268],[14,-228],[41,-61],[124,-540],[32,-467]],[[89257,24179],[-146,-651],[0,-262],[122,-456],[7,-341],[-33,-108],[34,-141]],[[54885,9743],[243,-4],[-7,-1454],[138,115],[147,-66],[151,170],[43,112],[80,653],[35,78],[104,812],[-26,198],[18,202],[154,225],[199,90],[32,-33]],[[9320,34780],[241,120],[-127,729]],[[77526,65534],[-83,-164],[60,-279],[100,-307],[137,-143],[18,-87]],[[59077,47649],[41,-122],[-62,-41],[153,-469]],[[87607,36129],[-175,876]],[[71700,56375],[4,-341]],[[95883,96409],[131,49],[66,-63]],[[74388,46669],[223,232],[30,140],[118,45]],[[68816,36148],[162,-256],[142,-313],[167,-897],[166,-512]],[[69303,36067],[-487,81]],[[83179,47114],[-52,90],[-23,332],[-57,40],[-84,257],[-110,-107],[-151,151]],[[62712,66479],[-132,193],[26,211],[98,228],[-140,13],[-55,-67],[-203,84],[51,-172],[-125,79],[-57,-119]],[[89409,53263],[123,18],[104,211],[9,181],[-97,-45],[9,-131],[-148,-234]],[[89708,56056],[345,-419],[-4,-450],[-30,-643],[-22,-175],[-169,-615],[77,140],[128,472],[33,449],[23,622],[-1,340],[-143,80],[-223,251]],[[89190,52179],[96,268],[428,988],[99,262],[-57,-26],[-219,-529],[-73,-129],[-82,-5],[-130,-540],[-97,-260]],[[89037,54456],[1,-392],[-45,-493],[68,-195],[-44,-61],[160,-124],[136,109],[154,433],[-3,160],[81,274],[-38,100],[42,167],[-57,205],[-165,49]],[[77879,81202],[-254,-158],[-91,-154],[-48,-219],[-97,-202],[-103,-122],[-208,-159],[-287,-175],[-126,-145]],[[73039,61655],[506,-111]],[[64480,66147],[367,-57]],[[48985,13960],[-766,-51]],[[80262,63030],[81,103],[-13,98],[79,150],[185,-21],[148,218],[94,59],[92,246],[28,195]],[[80956,64078],[-43,48],[6,481],[68,-152],[168,49],[-194,247]],[[86246,39494],[541,-197]],[[87139,39872],[-47,202],[115,149],[-62,70],[-163,387],[-56,-84],[22,-191],[-56,-74],[-18,330],[61,91],[-24,163],[-96,-318],[-71,24]],[[86744,40621],[-79,-247],[-102,-130],[-176,-102],[-86,-246],[-55,-402]],[[69560,33470],[25,-241],[18,-822],[-18,-289]],[[53889,57987],[330,0]],[[54219,57987],[-3,1006],[94,-1]],[[49801,84746],[24,-137],[-183,-184],[-32,-123],[-117,-24],[-23,-129]],[[91394,19131],[-212,136],[-69,99],[-26,207],[48,107],[-1,193],[57,101]],[[85160,38507],[219,144],[121,267],[-11,168],[64,122],[-61,142],[48,401]],[[85182,39875],[-398,138]],[[84784,40013],[-116,-840]],[[15341,3303],[-82,-43],[-60,131],[17,234],[76,311],[-112,-327],[-61,-44],[-6,-200],[48,-236],[108,-28],[72,108]],[[14808,3040],[214,-393],[41,-164],[84,2],[0,229],[79,259],[-84,20],[-49,-89],[-209,227],[123,29],[35,161],[-31,655],[55,-67],[11,-218],[85,209],[91,123],[-12,314],[-72,159],[-66,-75],[-35,-317],[-99,43],[23,-103],[-71,-172],[70,-442],[-98,-61],[-85,-329]],[[50188,33004],[249,177]],[[15353,37324],[45,5],[174,-195],[-64,313],[-64,442],[-45,-20],[-71,488],[30,15],[128,461],[130,286],[100,501],[62,28],[-19,140]],[[73247,51017],[83,-141],[-62,-261]],[[72078,48224],[-209,-82]],[[85409,92110],[17,894],[24,423]],[[83961,93836],[-110,-1044]],[[45830,55421],[-543,-40]],[[49231,61576],[-18,1414]],[[72522,71406],[163,-35],[-23,-332],[157,-32],[28,-60]],[[85884,43310],[26,231],[-67,95]],[[85801,43931],[-112,109],[-43,-67]],[[64540,20859],[71,1641]],[[19224,17807],[44,-316],[-44,-19],[62,-431],[-165,-69],[31,-226],[-61,-26],[45,-327],[132,18],[277,116],[38,-275],[345,151],[22,-160],[123,49],[109,-811],[76,32],[43,-316],[54,-149],[108,45],[22,-163]],[[28170,38286],[78,-104]],[[69478,21819],[77,44],[14,191],[-91,-235]],[[69268,23024],[27,-79],[109,61],[18,289],[-56,6],[-83,-143],[-15,-134]],[[69339,24405],[-20,-488],[134,-26],[61,-252],[102,95],[94,-59],[70,-403],[91,-177],[74,-376],[115,-112],[22,123],[-116,213],[91,246],[-108,348],[65,-78],[19,244],[-60,215],[37,374]],[[69156,23544],[51,-156],[64,57],[-76,144],[-39,-45]],[[86179,45204],[69,60],[19,161],[230,118],[384,-78],[39,137],[112,90],[59,145]],[[86370,45928],[-128,-78],[-37,81],[-82,-249]],[[77364,76048],[-148,-52],[-51,-81]],[[65118,15469],[126,-342],[338,-378],[299,-126],[266,-16],[133,107],[15,126],[-153,105],[-212,22],[37,166],[-166,193],[-147,334],[-94,75]],[[63915,13379],[104,-237],[489,-525],[37,0],[213,-347],[156,-157],[35,32],[146,-118],[-211,434],[2,98],[-126,196],[-329,265],[-147,189],[138,48],[-305,277],[-99,1],[-103,-156]],[[78499,70875],[8,-55],[426,-271]],[[42942,39654],[-36,973]],[[77748,41667],[24,334]],[[81830,71024],[81,17],[-17,218],[-80,122],[-73,-32],[-22,167],[65,8],[-89,225],[-140,-37],[-3,188],[68,4],[-33,221],[-99,206],[-46,-1]],[[74312,74831],[-50,-389],[-143,-260],[-17,-259]],[[81098,88200],[-172,-1978],[-96,24]],[[53189,69647],[12,-1263]],[[73969,70682],[318,-63],[6,92],[390,-82]],[[63262,36819],[86,-87],[42,-489]],[[83254,83205],[352,648],[161,489],[-103,217],[-13,185],[36,400],[130,589],[155,439],[158,378]],[[70200,61093],[147,17],[77,-177],[162,-151],[-2,-147]],[[78510,42388],[-31,-387],[-64,16],[-46,-620],[127,-28]],[[62834,27730],[57,1623]],[[73314,49873],[31,-444]],[[72117,51175],[77,-118],[-11,-102],[79,-53],[6,-147],[157,-89],[-4,-201],[81,-14]],[[72502,50451],[210,-18]],[[72712,50433],[61,131],[3,682]],[[86583,53749],[19,53],[202,99],[64,277],[179,-22],[77,-95],[62,180],[-18,133],[69,-19],[85,-186],[95,95],[10,169],[56,6],[52,-165],[-16,-112],[136,24]],[[87569,54787],[-213,316],[-345,-197],[-15,32]],[[71373,77393],[-23,-19],[-42,-731]],[[13079,60870],[102,59],[152,243],[126,138],[66,310],[-46,127],[-77,-116],[-157,-89],[-26,-132],[33,-236],[-117,-103],[-56,-201]],[[12842,62541],[55,11],[103,480],[183,479],[-140,26],[-100,-244],[-101,-752]],[[14079,60238],[-105,-123],[-25,148],[-143,18],[-250,-256],[-13,-135],[98,-221],[-37,-409],[-91,-383],[-80,-90],[-314,-95],[-122,71],[-70,-161],[-152,-109]],[[82845,94816],[-337,-270],[-116,201],[-154,-372],[-144,-452],[-86,-546],[-79,-338]],[[54262,55765],[-309,1]],[[54224,57315],[-5,672]],[[34239,7315],[716,180],[1099,254]],[[87587,47054],[-22,105],[89,46],[-106,140],[-211,-142],[-53,112],[-182,-433],[-109,-54]],[[86456,46206],[14,99],[200,228],[165,327],[99,77]],[[30334,6254],[1331,393]],[[92380,15002],[-5,-360],[-53,-108],[48,-145],[126,101],[120,-29],[-57,-208],[-126,-118],[-23,-98],[62,-393],[101,-289]],[[72054,32980],[-566,116]],[[94770,28794],[47,-93],[-32,-429],[-53,-83],[7,-150]],[[94851,27617],[132,134],[165,12],[135,-47],[62,51],[87,-194],[237,-257],[20,-94],[-114,-427],[-33,193],[-99,-460],[-131,-136],[-59,119],[-94,-52],[77,-111],[123,-1],[159,122],[115,217],[162,481],[83,430],[-35,503],[-17,-326],[-71,-38],[-262,234],[-76,104],[-150,41],[-138,190],[-57,240],[-213,156],[-42,120]],[[40671,8652],[1469,228]],[[85546,37756],[190,127],[82,195]],[[86246,39494],[-357,130]],[[76504,62948],[-115,-53]],[[56545,21952],[-572,21]],[[69936,76605],[-115,19],[-124,145],[-109,-49]],[[86744,40621],[82,265],[-74,181],[76,46],[-135,293],[-103,-18],[-61,-104]],[[73150,59795],[66,104],[59,-44],[97,87]],[[84768,40019],[16,-6]],[[36965,47682],[70,66],[6,195],[57,119],[-74,361],[-50,-1],[-136,196]],[[66513,44660],[38,787]],[[84152,38093],[-111,418],[-68,436]],[[87555,52729],[-28,132],[16,252],[86,287],[109,256],[0,186]],[[52824,67730],[-129,-85],[-97,326],[-89,27],[-59,-173],[-68,-24],[-44,105],[-49,-80],[-28,-253],[-64,-81]],[[73267,50434],[-90,74],[-45,-224],[-78,-18],[37,-216]],[[73091,50050],[-111,-280],[29,-145],[-73,-114]],[[46887,57076],[40,-1575]],[[50823,23983],[19,-1331]],[[48529,83737],[55,-110]],[[81784,50765],[-32,-319]],[[22553,10289],[-1146,-461]],[[95114,96395],[135,-11]],[[75396,54878],[353,-67]],[[66499,80496],[31,265],[-161,206],[-84,310],[-105,-5]],[[66180,81272],[-86,12],[-96,-170],[-59,-224],[19,-200],[-112,-243],[-19,-202]],[[78191,33698],[159,-98],[573,-585]],[[55068,57645],[-2,-337],[-181,3]],[[51896,53906],[1086,14]],[[46826,18416],[879,74]],[[63199,56036],[61,-4],[15,507],[63,-6],[10,335],[32,-1],[9,360]],[[9430,45787],[-39,-343],[-86,-228],[-86,54],[-222,-115],[-133,-298],[-88,-418]],[[7758,32279],[-72,-152],[0,-299],[-106,-164],[-195,-630],[60,-185],[10,-310],[-28,-197],[96,-276],[148,-313],[389,-709],[116,-270],[105,-357],[-49,-128],[50,-334],[137,-276],[149,-507],[68,-325]],[[49717,21266],[-23,1327]],[[22152,13384],[-251,-90],[-10,-155]],[[20830,2810],[909,381]],[[75480,35383],[89,-78],[-29,133],[-60,-55]],[[75580,35784],[146,219],[235,125],[201,-233]],[[72712,50433],[70,-69],[73,-198],[95,31],[141,-147]],[[57742,23931],[141,124],[176,251],[54,152],[-4,260],[88,-5]],[[68651,36366],[165,-218]],[[56269,51730],[6,1405]],[[88158,49802],[165,26],[95,-126],[68,14],[154,577],[161,455],[78,287]],[[66382,25278],[-1,263],[-60,172],[63,97],[120,-6],[31,-179],[137,-232],[71,-42]],[[66167,75063],[156,-39]],[[88859,52207],[32,215],[104,95],[-203,-12],[-245,-309],[-95,14]],[[52169,69563],[200,45]],[[96457,97962],[-154,229]],[[96338,96438],[243,31]],[[21949,89903],[75,-132],[218,220],[47,281]],[[93828,28498],[5,151],[-58,167],[-47,-240],[-142,-148]],[[57478,71042],[419,-17]],[[71904,50207],[-71,112],[-52,321],[-161,303],[-98,31]],[[72502,50451],[-45,-279]],[[81707,64402],[-262,-47],[-126,19],[-104,-117],[-66,26],[-193,-205]],[[81268,81685],[8,-185],[-138,39],[-20,-222],[-63,19],[-21,-219],[-126,36],[-12,-130],[-299,152],[-88,141]],[[64887,51432],[716,-68]],[[88301,55171],[-19,76],[-203,72],[-47,128],[80,166],[70,265],[-244,-70],[-82,62],[-138,-65],[-204,-29],[-162,-106],[7,94],[127,163],[132,-31],[437,191],[103,-3]],[[83703,29166],[-41,-344],[45,-382],[537,-199]],[[45700,89262],[-151,-346],[14,-123],[-110,-336],[27,-151],[-56,-136],[61,-89],[-97,-61],[-40,-141],[29,-123],[-92,-101],[4,-125],[-101,-84],[-6,-301],[-47,-91],[-21,-240],[-44,-6],[-53,-293],[-57,-9],[-51,-696]],[[97688,96862],[107,-93],[-32,154],[21,226]],[[66082,83759],[117,-47],[-61,146],[-56,-99]],[[66239,83223],[1,83],[-248,50],[126,111],[3,107],[-162,-144],[88,178],[-79,56],[93,218],[136,21],[85,141],[48,256],[245,-51],[120,97],[11,-98],[148,280],[71,-153],[179,341],[55,230],[122,-108],[48,129],[-162,72],[-10,107],[111,-1],[-45,177],[-80,-69],[-68,237],[17,228],[-150,-99],[-3,-127],[-70,-97],[-198,478],[-102,146],[128,-487],[62,-76],[-12,-177],[62,-85],[-41,-229],[-63,39],[-33,238],[-113,20],[-154,-315],[-243,-113],[-69,-139],[-393,-64],[-114,105]],[[66935,28218],[24,311],[49,158],[8,338],[-113,543]],[[66180,81272],[-114,129],[-68,1]],[[78003,46134],[-80,-111],[32,-80],[-245,-504]],[[96538,98574],[-250,-233]],[[14025,5438],[111,-202],[198,-153],[160,-6],[59,-226],[122,-194],[140,-151],[50,22],[6,-324],[89,181],[-42,619],[-93,-54],[43,205],[-48,165],[-3,245],[-90,84],[-25,117],[67,85],[-77,125],[-62,229]],[[80129,88448],[116,-417],[79,-89],[57,-296],[-59,-231],[-153,-32],[64,358],[-166,-59],[38,-121],[-74,-326],[-199,-156]]]} \ No newline at end of file diff --git a/frontend/public/waterways-topo.json b/frontend/public/waterways-topo.json index a34eb7b9..08d321b0 100644 --- a/frontend/public/waterways-topo.json +++ b/frontend/public/waterways-topo.json @@ -1 +1 @@ -{"type":"Topology","bbox":[6.041335543554169,11.578588406896188,967.94029901827,609.199999],"transform":{"scale":[0.009619085825605415,0.005976273868669725],"translate":[6.041335543554169,11.578588406896188]},"objects":{"overlay":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[1],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[2],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[3],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[4],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[5],"properties":{"coalpetro":23703323,"foodfarm":439982,"crudemat":139081,"chem":16191,"manu":1456029,"other":948,"total":25755554}},{"type":"LineString","arcs":[6],"properties":{"coalpetro":23235703,"foodfarm":398986,"crudemat":125780,"chem":12769,"manu":1436409,"other":142,"total":25209789}},{"type":"LineString","arcs":[7],"properties":{"coalpetro":470052,"foodfarm":997923,"crudemat":8818,"chem":15912,"manu":155090,"other":4486,"total":1652281}},{"type":"LineString","arcs":[8],"properties":{"coalpetro":261273,"foodfarm":185384,"crudemat":8653,"chem":9972,"manu":110207,"other":538,"total":576027}},{"type":"LineString","arcs":[9],"properties":{"coalpetro":95680,"foodfarm":160131,"crudemat":11578,"chem":7239,"manu":124687,"other":164,"total":399479}},{"type":"LineString","arcs":[10],"properties":{"coalpetro":23248174,"foodfarm":451739,"crudemat":156171,"chem":21084,"manu":1760416,"other":142,"total":25637726}},{"type":"LineString","arcs":[11],"properties":{"coalpetro":23242077,"foodfarm":456141,"crudemat":134024,"chem":21348,"manu":1762702,"other":299,"total":25616591}},{"type":"LineString","arcs":[12],"properties":{"coalpetro":23235089,"foodfarm":398570,"crudemat":124471,"chem":12878,"manu":1438411,"other":142,"total":25209561}},{"type":"LineString","arcs":[13],"properties":{"coalpetro":23235089,"foodfarm":399397,"crudemat":124482,"chem":12878,"manu":1438564,"other":142,"total":25210552}},{"type":"LineString","arcs":[14],"properties":{"coalpetro":23235703,"foodfarm":398986,"crudemat":125780,"chem":12769,"manu":1436409,"other":142,"total":25209789}},{"type":"LineString","arcs":[15],"properties":{"coalpetro":23235530,"foodfarm":463218,"crudemat":134802,"chem":20867,"manu":1757396,"other":1690,"total":25613503}},{"type":"LineString","arcs":[16],"properties":{"coalpetro":23235703,"foodfarm":398986,"crudemat":125780,"chem":12769,"manu":1436409,"other":142,"total":25209789}},{"type":"LineString","arcs":[17],"properties":{"coalpetro":23235089,"foodfarm":398570,"crudemat":124471,"chem":12878,"manu":1438411,"other":142,"total":25209561}},{"type":"LineString","arcs":[18],"properties":{"coalpetro":5081747,"foodfarm":305355,"crudemat":216481,"chem":26057,"manu":1484212,"other":147,"total":7113999}},{"type":"LineString","arcs":[19],"properties":{"coalpetro":5083087,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1484212,"other":147,"total":7093889}},{"type":"LineString","arcs":[20],"properties":{"coalpetro":5084488,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1484212,"other":147,"total":7095290}},{"type":"LineString","arcs":[21],"properties":{"coalpetro":4901954,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1484212,"other":147,"total":6912756}},{"type":"LineString","arcs":[22],"properties":{"coalpetro":4901954,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1484212,"other":147,"total":6912756}},{"type":"LineString","arcs":[23],"properties":{"coalpetro":4901954,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1484212,"other":147,"total":6912756}},{"type":"LineString","arcs":[24],"properties":{"coalpetro":1901125,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1482354,"other":147,"total":3910069}},{"type":"LineString","arcs":[25],"properties":{"coalpetro":1276953,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1482354,"other":147,"total":3285897}},{"type":"LineString","arcs":[26],"properties":{"coalpetro":323094,"foodfarm":170026,"crudemat":15383,"chem":10470,"manu":161535,"other":182,"total":680690}},{"type":"LineString","arcs":[27],"properties":{"coalpetro":4812598,"foodfarm":412144,"crudemat":126379,"chem":13109,"manu":1454328,"other":182,"total":6818740}},{"type":"LineString","arcs":[28],"properties":{"coalpetro":4812598,"foodfarm":412144,"crudemat":126379,"chem":13109,"manu":1454328,"other":182,"total":6818740}},{"type":"LineString","arcs":[29],"properties":{"coalpetro":1276953,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1482354,"other":147,"total":3285897}},{"type":"LineString","arcs":[30],"properties":{"coalpetro":1276953,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1482354,"other":147,"total":3285897}},{"type":"LineString","arcs":[31],"properties":{"coalpetro":1276953,"foodfarm":305355,"crudemat":161483,"chem":26057,"manu":1482354,"other":147,"total":3252349}},{"type":"LineString","arcs":[32],"properties":{"coalpetro":4821603,"foodfarm":412144,"crudemat":128455,"chem":13109,"manu":1459618,"other":222,"total":6835151}},{"type":"LineString","arcs":[33],"properties":{"coalpetro":23248174,"foodfarm":451739,"crudemat":133706,"chem":21084,"manu":1760416,"other":142,"total":25615261}},{"type":"LineString","arcs":[34],"properties":{"coalpetro":777944,"foodfarm":44,"crudemat":0,"chem":25401,"manu":3077,"other":0,"total":806466}},{"type":"LineString","arcs":[35],"properties":{"coalpetro":779084,"foodfarm":44,"crudemat":0,"chem":25401,"manu":402,"other":0,"total":804931}},{"type":"LineString","arcs":[36],"properties":{"coalpetro":779084,"foodfarm":44,"crudemat":0,"chem":25401,"manu":402,"other":0,"total":804931}},{"type":"LineString","arcs":[37],"properties":{"coalpetro":95680,"foodfarm":160131,"crudemat":11578,"chem":7239,"manu":124687,"other":164,"total":399479}},{"type":"LineString","arcs":[38],"properties":{"coalpetro":111833,"foodfarm":166494,"crudemat":11633,"chem":7239,"manu":127935,"other":164,"total":425298}},{"type":"LineString","arcs":[39],"properties":{"coalpetro":111833,"foodfarm":166494,"crudemat":11633,"chem":7239,"manu":127935,"other":164,"total":425298}},{"type":"LineString","arcs":[40],"properties":{"coalpetro":106956,"foodfarm":162638,"crudemat":11723,"chem":7236,"manu":128117,"other":178,"total":416848}},{"type":"LineString","arcs":[41],"properties":{"coalpetro":4877,"foodfarm":15756,"crudemat":506,"chem":3,"manu":6696,"other":14,"total":27852}},{"type":"LineString","arcs":[42],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":144,"other":0,"total":144}},{"type":"LineString","arcs":[43],"properties":{"coalpetro":105498,"foodfarm":160972,"crudemat":11649,"chem":7236,"manu":127747,"other":178,"total":413280}},{"type":"LineString","arcs":[44],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":144,"other":0,"total":144}},{"type":"LineString","arcs":[45],"properties":{"coalpetro":108498,"foodfarm":160972,"crudemat":11649,"chem":7236,"manu":127747,"other":178,"total":416280}},{"type":"LineString","arcs":[46],"properties":{"coalpetro":145650,"foodfarm":176138,"crudemat":15383,"chem":8296,"manu":160396,"other":182,"total":506045}},{"type":"LineString","arcs":[47],"properties":{"coalpetro":147372,"foodfarm":170026,"crudemat":15383,"chem":8296,"manu":160342,"other":182,"total":501601}},{"type":"LineString","arcs":[48],"properties":{"coalpetro":451530,"foodfarm":2102725,"crudemat":462098,"chem":2180711,"manu":403014,"other":0,"total":5600078}},{"type":"LineString","arcs":[49],"properties":{"coalpetro":451530,"foodfarm":2102725,"crudemat":462098,"chem":2180711,"manu":403014,"other":0,"total":5600078}},{"type":"LineString","arcs":[50],"properties":{"coalpetro":451530,"foodfarm":2257351,"crudemat":462098,"chem":2180711,"manu":403014,"other":0,"total":5754704}},{"type":"LineString","arcs":[51],"properties":{"coalpetro":451530,"foodfarm":2257351,"crudemat":462098,"chem":2180711,"manu":403014,"other":0,"total":5754704}},{"type":"LineString","arcs":[52],"properties":{"coalpetro":451530,"foodfarm":2257351,"crudemat":462098,"chem":2180711,"manu":403014,"other":0,"total":5754704}},{"type":"LineString","arcs":[53],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[54],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[55],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[56],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[57],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[58],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[59],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[60],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[61],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[62],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[63],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[64],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[65],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[66],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[67],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[68],"properties":{"coalpetro":7307610,"foodfarm":421486,"crudemat":125268,"chem":1438823,"manu":41240,"other":0,"total":9334427}},{"type":"LineString","arcs":[69],"properties":{"coalpetro":7307610,"foodfarm":421486,"crudemat":125268,"chem":1438823,"manu":41240,"other":0,"total":9334427}},{"type":"LineString","arcs":[70],"properties":{"coalpetro":7307610,"foodfarm":421486,"crudemat":125268,"chem":1438823,"manu":41240,"other":0,"total":9334427}},{"type":"LineString","arcs":[71],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[72],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[73],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[74],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[75],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[76],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[77],"properties":{"coalpetro":4379485,"foodfarm":7908,"crudemat":192610,"chem":47770,"manu":216417,"other":0,"total":4844190}},{"type":"LineString","arcs":[78],"properties":{"coalpetro":33348717,"foodfarm":72043224,"crudemat":32093370,"chem":20047313,"manu":13498317,"other":0,"total":171030941}},{"type":"LineString","arcs":[79],"properties":{"coalpetro":33348717,"foodfarm":72043224,"crudemat":32093370,"chem":20047313,"manu":13498317,"other":0,"total":171030941}},{"type":"LineString","arcs":[80],"properties":{"coalpetro":4379485,"foodfarm":7908,"crudemat":192610,"chem":47770,"manu":216417,"other":0,"total":4844190}},{"type":"LineString","arcs":[81],"properties":{"coalpetro":1300609,"foodfarm":2338712,"crudemat":4575901,"chem":948618,"manu":1703772,"other":0,"total":10867612}},{"type":"LineString","arcs":[82],"properties":{"coalpetro":39472981,"foodfarm":10420445,"crudemat":10802167,"chem":6341080,"manu":5496077,"other":0,"total":72532750}},{"type":"LineString","arcs":[83],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":533483,"chem":0,"manu":159929,"other":0,"total":693412}},{"type":"LineString","arcs":[84],"properties":{"coalpetro":1928091,"foodfarm":766102,"crudemat":27961,"chem":714728,"manu":680248,"other":0,"total":4117130}},{"type":"LineString","arcs":[85],"properties":{"coalpetro":33936994,"foodfarm":73251882,"crudemat":28990255,"chem":19758236,"manu":12828248,"other":0,"total":168765615}},{"type":"LineString","arcs":[86],"properties":{"coalpetro":33348717,"foodfarm":72043224,"crudemat":32093370,"chem":20047313,"manu":13498317,"other":0,"total":171030941}},{"type":"LineString","arcs":[87],"properties":{"coalpetro":1506488,"foodfarm":106802,"crudemat":3024026,"chem":1590682,"manu":447147,"other":0,"total":6675145}},{"type":"LineString","arcs":[88],"properties":{"coalpetro":1300609,"foodfarm":2338712,"crudemat":4575901,"chem":948618,"manu":1703772,"other":0,"total":10867612}},{"type":"LineString","arcs":[89],"properties":{"coalpetro":33348717,"foodfarm":72043224,"crudemat":32093370,"chem":20047313,"manu":13498317,"other":0,"total":171030941}},{"type":"LineString","arcs":[90],"properties":{"coalpetro":33348717,"foodfarm":72043224,"crudemat":32093370,"chem":20047313,"manu":13498317,"other":0,"total":171030941}},{"type":"LineString","arcs":[91],"properties":{"coalpetro":33348717,"foodfarm":72043224,"crudemat":32093370,"chem":20047313,"manu":13498317,"other":0,"total":171030941}},{"type":"LineString","arcs":[92],"properties":{"coalpetro":19506779,"foodfarm":52960977,"crudemat":16022203,"chem":12665828,"manu":8006602,"other":0,"total":109162389}},{"type":"LineString","arcs":[93],"properties":{"coalpetro":1300609,"foodfarm":2338712,"crudemat":4575901,"chem":948618,"manu":1703772,"other":0,"total":10867612}},{"type":"LineString","arcs":[94],"properties":{"coalpetro":25709325,"foodfarm":16233766,"crudemat":23099220,"chem":7773436,"manu":7888365,"other":0,"total":80704112}},{"type":"LineString","arcs":[95],"properties":{"coalpetro":25709325,"foodfarm":16233766,"crudemat":23099220,"chem":7773436,"manu":7888365,"other":0,"total":80704112}},{"type":"LineString","arcs":[96],"properties":{"coalpetro":25709325,"foodfarm":16233766,"crudemat":23099220,"chem":7773436,"manu":7888365,"other":0,"total":80704112}},{"type":"LineString","arcs":[97],"properties":{"coalpetro":25709325,"foodfarm":16233766,"crudemat":23099220,"chem":7773436,"manu":7888365,"other":0,"total":80704112}},{"type":"LineString","arcs":[98],"properties":{"coalpetro":25212156,"foodfarm":13331597,"crudemat":22717393,"chem":7475793,"manu":7795848,"other":0,"total":76532787}},{"type":"LineString","arcs":[99],"properties":{"coalpetro":25544216,"foodfarm":10543336,"crudemat":20970379,"chem":6187519,"manu":5347169,"other":0,"total":68592619}},{"type":"LineString","arcs":[100],"properties":{"coalpetro":9177625,"foodfarm":3206907,"crudemat":9683683,"chem":2087285,"manu":2777521,"other":0,"total":26933021}},{"type":"LineString","arcs":[101],"properties":{"coalpetro":1300609,"foodfarm":2338712,"crudemat":4575901,"chem":948618,"manu":1703772,"other":0,"total":10867612}},{"type":"LineString","arcs":[102],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[103],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[104],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[105],"properties":{"coalpetro":42827203,"foodfarm":419022,"crudemat":1236189,"chem":5435070,"manu":77169,"other":0,"total":49994653}},{"type":"LineString","arcs":[106],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[107],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":1098867,"chem":2743763,"manu":1196704,"other":0,"total":8703054}},{"type":"LineString","arcs":[108],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[109],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[110],"properties":{"coalpetro":34273590,"foodfarm":82600549,"crudemat":26910714,"chem":22293311,"manu":12061989,"other":0,"total":178140153}},{"type":"LineString","arcs":[111],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":1098867,"chem":2743763,"manu":1196704,"other":0,"total":8703054}},{"type":"LineString","arcs":[112],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":1098867,"chem":2743763,"manu":1196704,"other":0,"total":8703054}},{"type":"LineString","arcs":[113],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":1098867,"chem":2743763,"manu":1196704,"other":0,"total":8703054}},{"type":"LineString","arcs":[114],"properties":{"coalpetro":33290056,"foodfarm":78768273,"crudemat":26909278,"chem":21949592,"manu":12061989,"other":0,"total":172979188}},{"type":"LineString","arcs":[115],"properties":{"coalpetro":33329535,"foodfarm":75467425,"crudemat":27231936,"chem":20051046,"manu":12420597,"other":0,"total":168500539}},{"type":"LineString","arcs":[116],"properties":{"coalpetro":33329535,"foodfarm":75467425,"crudemat":27231936,"chem":20051046,"manu":12420597,"other":0,"total":168500539}},{"type":"LineString","arcs":[117],"properties":{"coalpetro":33329535,"foodfarm":74170754,"crudemat":27398959,"chem":19843185,"manu":12420597,"other":0,"total":167163030}},{"type":"LineString","arcs":[118],"properties":{"coalpetro":33329535,"foodfarm":74170754,"crudemat":27398959,"chem":19843185,"manu":12420597,"other":0,"total":167163030}},{"type":"LineString","arcs":[119],"properties":{"coalpetro":7219028,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":0,"total":8985093}},{"type":"LineString","arcs":[120],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11821,"other":0,"total":13354757}},{"type":"LineString","arcs":[121],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11746,"other":0,"total":13354682}},{"type":"LineString","arcs":[122],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11746,"other":0,"total":13354682}},{"type":"LineString","arcs":[123],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11746,"other":0,"total":13354682}},{"type":"LineString","arcs":[124],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11746,"other":0,"total":13354682}},{"type":"LineString","arcs":[125],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11746,"other":0,"total":13354682}},{"type":"LineString","arcs":[126],"properties":{"coalpetro":49877674,"foodfarm":8954428,"crudemat":9304025,"chem":2489964,"manu":8822297,"other":748203,"total":80196591}},{"type":"LineString","arcs":[127],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11746,"other":0,"total":13354682}},{"type":"LineString","arcs":[128],"properties":{"coalpetro":49877674,"foodfarm":8954428,"crudemat":9304025,"chem":2489964,"manu":8822297,"other":748203,"total":80196591}},{"type":"LineString","arcs":[129],"properties":{"coalpetro":1803936,"foodfarm":8587,"crudemat":2447264,"chem":73231,"manu":129144,"other":0,"total":4462162}},{"type":"LineString","arcs":[130],"properties":{"coalpetro":34700931,"foodfarm":57017,"crudemat":0,"chem":3875204,"manu":31239,"other":338,"total":38664729}},{"type":"LineString","arcs":[131],"properties":{"coalpetro":11964594,"foodfarm":17089,"crudemat":33925,"chem":2599906,"manu":157575,"other":41,"total":14773130}},{"type":"LineString","arcs":[132],"properties":{"coalpetro":11951387,"foodfarm":536912,"crudemat":34464,"chem":2605856,"manu":170112,"other":26186,"total":15324917}},{"type":"LineString","arcs":[133],"properties":{"coalpetro":11951387,"foodfarm":536912,"crudemat":34464,"chem":2605856,"manu":170112,"other":26186,"total":15324917}},{"type":"LineString","arcs":[134],"properties":{"coalpetro":7527184,"foodfarm":435724,"crudemat":325929,"chem":2260800,"manu":111678,"other":4312,"total":10665627}},{"type":"LineString","arcs":[135],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[136],"properties":{"coalpetro":1625612,"foodfarm":2029,"crudemat":127608,"chem":3320,"manu":67174,"other":0,"total":1825743}},{"type":"LineString","arcs":[137],"properties":{"coalpetro":1625612,"foodfarm":2029,"crudemat":127608,"chem":3320,"manu":67174,"other":0,"total":1825743}},{"type":"LineString","arcs":[138],"properties":{"coalpetro":1625612,"foodfarm":2029,"crudemat":127608,"chem":3320,"manu":67154,"other":0,"total":1825723}},{"type":"LineString","arcs":[139],"properties":{"coalpetro":1625612,"foodfarm":2029,"crudemat":127608,"chem":3320,"manu":67154,"other":0,"total":1825723}},{"type":"LineString","arcs":[140],"properties":{"coalpetro":4672176,"foodfarm":32670,"crudemat":2575522,"chem":1694768,"manu":5500101,"other":0,"total":14475237}},{"type":"LineString","arcs":[141],"properties":{"coalpetro":4672176,"foodfarm":32670,"crudemat":2575522,"chem":1694768,"manu":5500101,"other":0,"total":14475237}},{"type":"LineString","arcs":[142],"properties":{"coalpetro":4379485,"foodfarm":7908,"crudemat":192610,"chem":47770,"manu":216417,"other":0,"total":4844190}},{"type":"LineString","arcs":[143],"properties":{"coalpetro":4379485,"foodfarm":7908,"crudemat":192610,"chem":47770,"manu":216417,"other":0,"total":4844190}},{"type":"LineString","arcs":[144],"properties":{"coalpetro":4379485,"foodfarm":7908,"crudemat":192610,"chem":47770,"manu":216417,"other":0,"total":4844190}},{"type":"LineString","arcs":[145],"properties":{"coalpetro":4379485,"foodfarm":7908,"crudemat":192610,"chem":47770,"manu":216417,"other":0,"total":4844190}},{"type":"LineString","arcs":[146],"properties":{"coalpetro":4379485,"foodfarm":7908,"crudemat":192610,"chem":47770,"manu":216417,"other":0,"total":4844190}},{"type":"LineString","arcs":[147],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[148],"properties":{"coalpetro":125825997,"foodfarm":90183664,"crudemat":20101662,"chem":24407998,"manu":10314546,"other":2181583,"total":273015450}},{"type":"LineString","arcs":[149],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[150],"properties":{"coalpetro":16461705,"foodfarm":2217,"crudemat":222403,"chem":9853,"manu":17972,"other":0,"total":16714150}},{"type":"LineString","arcs":[151],"properties":{"coalpetro":49877674,"foodfarm":8954428,"crudemat":9304025,"chem":2489964,"manu":8822297,"other":748203,"total":80196591}},{"type":"LineString","arcs":[152],"properties":{"coalpetro":49877674,"foodfarm":8954428,"crudemat":9304025,"chem":2489964,"manu":8822297,"other":748203,"total":80196591}},{"type":"LineString","arcs":[153],"properties":{"coalpetro":26910564,"foodfarm":1565778,"crudemat":1182443,"chem":1491794,"manu":2049674,"other":67104,"total":33267357}},{"type":"LineString","arcs":[154],"properties":{"coalpetro":26910564,"foodfarm":1565778,"crudemat":1182443,"chem":1491794,"manu":2049674,"other":67104,"total":33267357}},{"type":"LineString","arcs":[155],"properties":{"coalpetro":49877674,"foodfarm":8954428,"crudemat":9304025,"chem":2489964,"manu":8822297,"other":748203,"total":80196591}},{"type":"LineString","arcs":[156],"properties":{"coalpetro":1769195,"foodfarm":850951,"crudemat":460746,"chem":1073825,"manu":1083410,"other":10019,"total":5248146}},{"type":"LineString","arcs":[157],"properties":{"coalpetro":1769195,"foodfarm":850951,"crudemat":460694,"chem":1073825,"manu":1083302,"other":10019,"total":5247986}},{"type":"LineString","arcs":[158],"properties":{"coalpetro":1769195,"foodfarm":850951,"crudemat":460694,"chem":1073825,"manu":1083302,"other":10019,"total":5247986}},{"type":"LineString","arcs":[159],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[160],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[161],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[162],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[163],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[164],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[165],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[166],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[167],"properties":{"coalpetro":2997587,"foodfarm":1042023,"crudemat":1463242,"chem":1129756,"manu":1672414,"other":10019,"total":8315041}},{"type":"LineString","arcs":[168],"properties":{"coalpetro":2997587,"foodfarm":1042023,"crudemat":1463242,"chem":1129756,"manu":1672414,"other":10019,"total":8315041}},{"type":"LineString","arcs":[169],"properties":{"coalpetro":2997587,"foodfarm":850951,"crudemat":1099765,"chem":1073825,"manu":1085253,"other":10019,"total":7117400}},{"type":"LineString","arcs":[170],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11821,"other":0,"total":13354757}},{"type":"LineString","arcs":[171],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11821,"other":0,"total":13354757}},{"type":"LineString","arcs":[172],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11824,"other":0,"total":13354760}},{"type":"LineString","arcs":[173],"properties":{"coalpetro":16461705,"foodfarm":2217,"crudemat":222403,"chem":9853,"manu":17972,"other":0,"total":16714150}},{"type":"LineString","arcs":[174],"properties":{"coalpetro":16461705,"foodfarm":2217,"crudemat":222403,"chem":9853,"manu":17972,"other":0,"total":16714150}},{"type":"LineString","arcs":[175],"properties":{"coalpetro":16461705,"foodfarm":2217,"crudemat":222403,"chem":9853,"manu":17972,"other":0,"total":16714150}},{"type":"LineString","arcs":[176],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[177],"properties":{"coalpetro":50385770,"foodfarm":1887148,"crudemat":2460363,"chem":1743301,"manu":2246917,"other":80390,"total":58803889}},{"type":"LineString","arcs":[178],"properties":{"coalpetro":50385770,"foodfarm":1887148,"crudemat":2460363,"chem":1743301,"manu":2246917,"other":80390,"total":58803889}},{"type":"LineString","arcs":[179],"properties":{"coalpetro":26910564,"foodfarm":1565778,"crudemat":1308258,"chem":1491794,"manu":2051148,"other":67104,"total":33394646}},{"type":"LineString","arcs":[180],"properties":{"coalpetro":26928102,"foodfarm":1565778,"crudemat":1463928,"chem":1491794,"manu":2050778,"other":67104,"total":33567484}},{"type":"LineString","arcs":[181],"properties":{"coalpetro":23776686,"foodfarm":1565778,"crudemat":1463941,"chem":1464657,"manu":2050804,"other":61523,"total":30383389}},{"type":"LineString","arcs":[182],"properties":{"coalpetro":23776686,"foodfarm":1565778,"crudemat":1463941,"chem":1464657,"manu":2050804,"other":61523,"total":30383389}},{"type":"LineString","arcs":[183],"properties":{"coalpetro":23776686,"foodfarm":1565778,"crudemat":1463941,"chem":1464657,"manu":2050804,"other":61523,"total":30383389}},{"type":"LineString","arcs":[184],"properties":{"coalpetro":23776686,"foodfarm":1565778,"crudemat":1463941,"chem":1464657,"manu":2050804,"other":61523,"total":30383389}},{"type":"LineString","arcs":[185],"properties":{"coalpetro":23776686,"foodfarm":1565778,"crudemat":1463941,"chem":1464657,"manu":2050804,"other":61523,"total":30383389}},{"type":"LineString","arcs":[186],"properties":{"coalpetro":3991919,"foodfarm":1042023,"crudemat":1463242,"chem":1153846,"manu":1672414,"other":29809,"total":9353253}},{"type":"LineString","arcs":[187],"properties":{"coalpetro":2997587,"foodfarm":1042023,"crudemat":1463242,"chem":1129756,"manu":1672414,"other":10019,"total":8315041}},{"type":"LineString","arcs":[188],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11824,"other":0,"total":13354760}},{"type":"LineString","arcs":[189],"properties":{"coalpetro":13186705,"foodfarm":276,"crudemat":217777,"chem":80095,"manu":17987,"other":0,"total":13502840}},{"type":"LineString","arcs":[190],"properties":{"coalpetro":13186705,"foodfarm":276,"crudemat":217777,"chem":80095,"manu":17970,"other":0,"total":13502823}},{"type":"LineString","arcs":[191],"properties":{"coalpetro":13186705,"foodfarm":276,"crudemat":217777,"chem":80095,"manu":15506,"other":0,"total":13500359}},{"type":"LineString","arcs":[192],"properties":{"coalpetro":13187009,"foodfarm":276,"crudemat":217777,"chem":80095,"manu":15506,"other":0,"total":13500663}},{"type":"LineString","arcs":[193],"properties":{"coalpetro":13192043,"foodfarm":276,"crudemat":217777,"chem":80095,"manu":11844,"other":0,"total":13502035}},{"type":"LineString","arcs":[194],"properties":{"coalpetro":13192043,"foodfarm":276,"crudemat":217777,"chem":80095,"manu":11844,"other":0,"total":13502035}},{"type":"LineString","arcs":[195],"properties":{"coalpetro":13192043,"foodfarm":276,"crudemat":217777,"chem":80095,"manu":11844,"other":0,"total":13502035}},{"type":"LineString","arcs":[196],"properties":{"coalpetro":12439957,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11844,"other":0,"total":12689663}},{"type":"LineString","arcs":[197],"properties":{"coalpetro":12439957,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11895,"other":0,"total":12689714}},{"type":"LineString","arcs":[198],"properties":{"coalpetro":9173664,"foodfarm":551434,"crudemat":1460180,"chem":85362,"manu":942165,"other":383,"total":12213188}},{"type":"LineString","arcs":[199],"properties":{"coalpetro":776289,"foodfarm":44,"crudemat":0,"chem":25401,"manu":3077,"other":0,"total":804811}},{"type":"LineString","arcs":[200],"properties":{"coalpetro":777944,"foodfarm":44,"crudemat":0,"chem":25401,"manu":3077,"other":0,"total":806466}},{"type":"LineString","arcs":[201],"properties":{"coalpetro":2880583,"foodfarm":12880373,"crudemat":5257487,"chem":8588182,"manu":2748205,"other":388974,"total":32743804}},{"type":"LineString","arcs":[202],"properties":{"coalpetro":2880583,"foodfarm":27172819,"crudemat":2888636,"chem":8613622,"manu":3084332,"other":496729,"total":45136721}},{"type":"LineString","arcs":[203],"properties":{"coalpetro":2880583,"foodfarm":27172819,"crudemat":2888636,"chem":8613622,"manu":3084332,"other":496729,"total":45136721}},{"type":"LineString","arcs":[204],"properties":{"coalpetro":1159881,"foodfarm":4630976,"crudemat":2220417,"chem":349964,"manu":0,"other":314394,"total":8675632}},{"type":"LineString","arcs":[205],"properties":{"coalpetro":1159881,"foodfarm":4630976,"crudemat":2220417,"chem":349964,"manu":0,"other":314394,"total":8675632}},{"type":"LineString","arcs":[206],"properties":{"coalpetro":17783901,"foodfarm":2217,"crudemat":101944,"chem":653,"manu":17972,"other":0,"total":17906687}},{"type":"LineString","arcs":[207],"properties":{"coalpetro":17783901,"foodfarm":2217,"crudemat":101944,"chem":653,"manu":17972,"other":0,"total":17906687}},{"type":"LineString","arcs":[208],"properties":{"coalpetro":17783901,"foodfarm":2217,"crudemat":101944,"chem":653,"manu":21278,"other":0,"total":17909993}},{"type":"LineString","arcs":[209],"properties":{"coalpetro":17783901,"foodfarm":56464,"crudemat":4626,"chem":653,"manu":14434,"other":39684,"total":17899762}},{"type":"LineString","arcs":[210],"properties":{"coalpetro":17783901,"foodfarm":56464,"crudemat":4626,"chem":653,"manu":14434,"other":39684,"total":17899762}},{"type":"LineString","arcs":[211],"properties":{"coalpetro":17783901,"foodfarm":56464,"crudemat":4626,"chem":653,"manu":14434,"other":39684,"total":17899762}},{"type":"LineString","arcs":[212],"properties":{"coalpetro":17783901,"foodfarm":56464,"crudemat":4626,"chem":653,"manu":14434,"other":39684,"total":17899762}},{"type":"LineString","arcs":[213],"properties":{"coalpetro":17783901,"foodfarm":56464,"crudemat":4626,"chem":653,"manu":14434,"other":39684,"total":17899762}},{"type":"LineString","arcs":[214],"properties":{"coalpetro":17783901,"foodfarm":56464,"crudemat":4626,"chem":653,"manu":14434,"other":39684,"total":17899762}},{"type":"LineString","arcs":[215],"properties":{"coalpetro":3854925,"foodfarm":34142326,"crudemat":5395016,"chem":9339813,"manu":2831203,"other":496732,"total":56060015}},{"type":"LineString","arcs":[216],"properties":{"coalpetro":3854925,"foodfarm":34142326,"crudemat":5395016,"chem":9339813,"manu":2831203,"other":496732,"total":56060015}},{"type":"LineString","arcs":[217],"properties":{"coalpetro":3854925,"foodfarm":34142326,"crudemat":5395016,"chem":9339813,"manu":2831203,"other":496732,"total":56060015}},{"type":"LineString","arcs":[218],"properties":{"coalpetro":3854925,"foodfarm":34142326,"crudemat":5395016,"chem":9339813,"manu":2831203,"other":496732,"total":56060015}},{"type":"LineString","arcs":[219],"properties":{"coalpetro":3854925,"foodfarm":34142326,"crudemat":5454397,"chem":9339813,"manu":2831203,"other":496732,"total":56119396}},{"type":"LineString","arcs":[220],"properties":{"coalpetro":3854925,"foodfarm":34142326,"crudemat":5466397,"chem":9339813,"manu":2831203,"other":496732,"total":56131396}},{"type":"LineString","arcs":[221],"properties":{"coalpetro":3854925,"foodfarm":34142326,"crudemat":5466397,"chem":9339813,"manu":2831203,"other":496732,"total":56131396}},{"type":"LineString","arcs":[222],"properties":{"coalpetro":1159881,"foodfarm":4630976,"crudemat":2220417,"chem":349964,"manu":0,"other":314394,"total":8675632}},{"type":"LineString","arcs":[223],"properties":{"coalpetro":1159881,"foodfarm":4560585,"crudemat":731319,"chem":349964,"manu":0,"other":314394,"total":7116143}},{"type":"LineString","arcs":[224],"properties":{"coalpetro":1159881,"foodfarm":4560585,"crudemat":731319,"chem":349964,"manu":0,"other":314394,"total":7116143}},{"type":"LineString","arcs":[225],"properties":{"coalpetro":1159881,"foodfarm":4560585,"crudemat":731319,"chem":349964,"manu":0,"other":314394,"total":7116143}},{"type":"LineString","arcs":[226],"properties":{"coalpetro":1159881,"foodfarm":3790602,"crudemat":234613,"chem":282176,"manu":0,"other":0,"total":5467272}},{"type":"LineString","arcs":[227],"properties":{"coalpetro":1159881,"foodfarm":3790602,"crudemat":234613,"chem":282176,"manu":0,"other":0,"total":5467272}},{"type":"LineString","arcs":[228],"properties":{"coalpetro":1159881,"foodfarm":3790602,"crudemat":234613,"chem":282176,"manu":0,"other":0,"total":5467272}},{"type":"LineString","arcs":[229],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[230],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[231],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[232],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[233],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[234],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[235],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[236],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[237],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[238],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[239],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[240],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[241],"properties":{"coalpetro":3854925,"foodfarm":34610563,"crudemat":5729110,"chem":9331189,"manu":3263323,"other":496732,"total":57285842}},{"type":"LineString","arcs":[242],"properties":{"coalpetro":1138461,"foodfarm":10104236,"crudemat":3805191,"chem":814966,"manu":1313269,"other":110891,"total":17287014}},{"type":"LineString","arcs":[243],"properties":{"coalpetro":1233816,"foodfarm":11411794,"crudemat":3098424,"chem":744824,"manu":1069729,"other":110890,"total":17669477}},{"type":"LineString","arcs":[244],"properties":{"coalpetro":2880583,"foodfarm":12880373,"crudemat":5278487,"chem":8588182,"manu":2748205,"other":388974,"total":32764804}},{"type":"LineString","arcs":[245],"properties":{"coalpetro":2880583,"foodfarm":12880373,"crudemat":5257487,"chem":8588182,"manu":2748205,"other":388974,"total":32743804}},{"type":"LineString","arcs":[246],"properties":{"coalpetro":17783901,"foodfarm":56464,"crudemat":4626,"chem":653,"manu":14434,"other":39684,"total":17899762}},{"type":"LineString","arcs":[247],"properties":{"coalpetro":3854925,"foodfarm":34133014,"crudemat":5154630,"chem":9331189,"manu":2831203,"other":496732,"total":55801693}},{"type":"LineString","arcs":[248],"properties":{"coalpetro":3854925,"foodfarm":34133014,"crudemat":5154630,"chem":9331189,"manu":2831203,"other":496732,"total":55801693}},{"type":"LineString","arcs":[249],"properties":{"coalpetro":3854925,"foodfarm":34133014,"crudemat":5195575,"chem":9331189,"manu":3263323,"other":496732,"total":56274758}},{"type":"LineString","arcs":[250],"properties":{"coalpetro":3854925,"foodfarm":34133014,"crudemat":5154630,"chem":9331189,"manu":2831203,"other":496732,"total":55801693}},{"type":"LineString","arcs":[251],"properties":{"coalpetro":3854925,"foodfarm":34133014,"crudemat":5154630,"chem":9331189,"manu":2831203,"other":496732,"total":55801693}},{"type":"LineString","arcs":[252],"properties":{"coalpetro":3854925,"foodfarm":34133014,"crudemat":5164159,"chem":9331189,"manu":3263597,"other":496732,"total":56243616}},{"type":"LineString","arcs":[253],"properties":{"coalpetro":56506907,"foodfarm":438744,"crudemat":2315027,"chem":6187205,"manu":615974,"other":192060,"total":66255917}},{"type":"LineString","arcs":[254],"properties":{"coalpetro":23365357,"foodfarm":729937,"crudemat":5299683,"chem":2069216,"manu":8062545,"other":356731,"total":39883469}},{"type":"LineString","arcs":[255],"properties":{"coalpetro":23366657,"foodfarm":729937,"crudemat":5299683,"chem":2069216,"manu":8100072,"other":356731,"total":39922296}},{"type":"LineString","arcs":[256],"properties":{"coalpetro":23366657,"foodfarm":729937,"crudemat":5299683,"chem":2069216,"manu":8100072,"other":356731,"total":39922296}},{"type":"LineString","arcs":[257],"properties":{"coalpetro":28321562,"foodfarm":775854,"crudemat":6678448,"chem":5210131,"manu":9106767,"other":366376,"total":50459138}},{"type":"LineString","arcs":[258],"properties":{"coalpetro":125573176,"foodfarm":90255314,"crudemat":20059653,"chem":24332370,"manu":10236008,"other":2181583,"total":272638104}},{"type":"LineString","arcs":[259],"properties":{"coalpetro":125830304,"foodfarm":90255314,"crudemat":20090888,"chem":24332370,"manu":10236008,"other":2181583,"total":272926467}},{"type":"LineString","arcs":[260],"properties":{"coalpetro":125574960,"foodfarm":90255314,"crudemat":20081544,"chem":24332370,"manu":10236007,"other":2181583,"total":272661778}},{"type":"LineString","arcs":[261],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":2546,"other":0,"total":2546}},{"type":"LineString","arcs":[262],"properties":{"coalpetro":40751281,"foodfarm":419022,"crudemat":157996,"chem":5750061,"manu":33830,"other":0,"total":47112190}},{"type":"LineString","arcs":[263],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":2546,"other":0,"total":2546}},{"type":"LineString","arcs":[264],"properties":{"coalpetro":40751281,"foodfarm":419022,"crudemat":157996,"chem":5750061,"manu":33830,"other":0,"total":47112190}},{"type":"LineString","arcs":[265],"properties":{"coalpetro":13416206,"foodfarm":160040,"crudemat":1764383,"chem":7362099,"manu":74089,"other":0,"total":22776817}},{"type":"LineString","arcs":[266],"properties":{"coalpetro":165265818,"foodfarm":7346997,"crudemat":4512134,"chem":29748897,"manu":21870187,"other":4315022,"total":233059055}},{"type":"LineString","arcs":[267],"properties":{"coalpetro":165231339,"foodfarm":7346997,"crudemat":4512134,"chem":29748897,"manu":21870187,"other":4315022,"total":233024576}},{"type":"LineString","arcs":[268],"properties":{"coalpetro":163400892,"foodfarm":8604837,"crudemat":4638049,"chem":31256634,"manu":22650677,"other":4409923,"total":234961012}},{"type":"LineString","arcs":[269],"properties":{"coalpetro":163400892,"foodfarm":8604837,"crudemat":4638049,"chem":31256634,"manu":22650677,"other":4409923,"total":234961012}},{"type":"LineString","arcs":[270],"properties":{"coalpetro":163400892,"foodfarm":8604837,"crudemat":4638049,"chem":31256634,"manu":22650677,"other":4409923,"total":234961012}},{"type":"LineString","arcs":[271],"properties":{"coalpetro":13573497,"foodfarm":0,"crudemat":202054,"chem":1662203,"manu":0,"other":1742,"total":15439496}},{"type":"LineString","arcs":[272],"properties":{"coalpetro":17017136,"foodfarm":32542,"crudemat":0,"chem":3430726,"manu":30290,"other":0,"total":20510694}},{"type":"LineString","arcs":[273],"properties":{"coalpetro":43803197,"foodfarm":419022,"crudemat":157996,"chem":6004257,"manu":32517,"other":0,"total":50416989}},{"type":"LineString","arcs":[274],"properties":{"coalpetro":4672176,"foodfarm":32670,"crudemat":2575522,"chem":1694768,"manu":5500101,"other":0,"total":14475237}},{"type":"LineString","arcs":[275],"properties":{"coalpetro":35659323,"foodfarm":347968,"crudemat":2594343,"chem":10191078,"manu":1445860,"other":0,"total":50238572}},{"type":"LineString","arcs":[276],"properties":{"coalpetro":138348824,"foodfarm":907350,"crudemat":5564428,"chem":14841867,"manu":1852116,"other":920033,"total":162434618}},{"type":"LineString","arcs":[277],"properties":{"coalpetro":13053340,"foodfarm":160040,"crudemat":1764383,"chem":6449863,"manu":74089,"other":0,"total":21501715}},{"type":"LineString","arcs":[278],"properties":{"coalpetro":13047340,"foodfarm":160040,"crudemat":1764383,"chem":6449863,"manu":74089,"other":0,"total":21495715}},{"type":"LineString","arcs":[279],"properties":{"coalpetro":1723555,"foodfarm":129254,"crudemat":161166,"chem":109743,"manu":69322,"other":0,"total":2193040}},{"type":"LineString","arcs":[280],"properties":{"coalpetro":1496623,"foodfarm":36094,"crudemat":2170737,"chem":1630041,"manu":466915,"other":0,"total":5800410}},{"type":"LineString","arcs":[281],"properties":{"coalpetro":31254624,"foodfarm":57017,"crudemat":0,"chem":3760288,"manu":30395,"other":0,"total":35102324}},{"type":"LineString","arcs":[282],"properties":{"coalpetro":92418,"foodfarm":0,"crudemat":336786,"chem":74855,"manu":133334,"other":0,"total":637393}},{"type":"LineString","arcs":[283],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[284],"properties":{"coalpetro":92418,"foodfarm":0,"crudemat":336786,"chem":74855,"manu":133334,"other":0,"total":637393}},{"type":"LineString","arcs":[285],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[286],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[287],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[288],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[289],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[290],"properties":{"coalpetro":13416206,"foodfarm":160040,"crudemat":1764383,"chem":7362099,"manu":74089,"other":0,"total":22776817}},{"type":"LineString","arcs":[291],"properties":{"coalpetro":172392692,"foodfarm":7426936,"crudemat":6171646,"chem":36777155,"manu":22991837,"other":4090373,"total":249850639}},{"type":"LineString","arcs":[292],"properties":{"coalpetro":172392692,"foodfarm":7426936,"crudemat":6171646,"chem":36777155,"manu":22991837,"other":4090373,"total":249850639}},{"type":"LineString","arcs":[293],"properties":{"coalpetro":172395338,"foodfarm":7426936,"crudemat":5694374,"chem":36777155,"manu":22994537,"other":4090373,"total":249378713}},{"type":"LineString","arcs":[294],"properties":{"coalpetro":35659323,"foodfarm":347968,"crudemat":2594343,"chem":10191078,"manu":1445860,"other":0,"total":50238572}},{"type":"LineString","arcs":[295],"properties":{"coalpetro":35659323,"foodfarm":347968,"crudemat":2594343,"chem":10191078,"manu":1445860,"other":0,"total":50238572}},{"type":"LineString","arcs":[296],"properties":{"coalpetro":35659323,"foodfarm":347968,"crudemat":2594343,"chem":10191078,"manu":1445860,"other":0,"total":50238572}},{"type":"LineString","arcs":[297],"properties":{"coalpetro":1491476,"foodfarm":0,"crudemat":0,"chem":44435,"manu":0,"other":0,"total":1535911}},{"type":"LineString","arcs":[298],"properties":{"coalpetro":13416206,"foodfarm":160040,"crudemat":1764383,"chem":7362099,"manu":74089,"other":0,"total":22776817}},{"type":"LineString","arcs":[299],"properties":{"coalpetro":13573497,"foodfarm":0,"crudemat":202054,"chem":1662203,"manu":0,"other":1742,"total":15439496}},{"type":"LineString","arcs":[300],"properties":{"coalpetro":13416206,"foodfarm":160040,"crudemat":1764383,"chem":7362099,"manu":74089,"other":0,"total":22776817}},{"type":"LineString","arcs":[301],"properties":{"coalpetro":13416206,"foodfarm":160040,"crudemat":1764383,"chem":7362099,"manu":74089,"other":0,"total":22776817}},{"type":"LineString","arcs":[302],"properties":{"coalpetro":13416206,"foodfarm":160040,"crudemat":1764383,"chem":7362099,"manu":74089,"other":0,"total":22776817}},{"type":"LineString","arcs":[303],"properties":{"coalpetro":11054799,"foodfarm":130760,"crudemat":1441537,"chem":3523922,"manu":73939,"other":0,"total":16224957}},{"type":"LineString","arcs":[304],"properties":{"coalpetro":11764048,"foodfarm":130760,"crudemat":1803783,"chem":3951214,"manu":74052,"other":0,"total":17723857}},{"type":"LineString","arcs":[305],"properties":{"coalpetro":11764048,"foodfarm":130760,"crudemat":1809383,"chem":3951214,"manu":74052,"other":0,"total":17729457}},{"type":"LineString","arcs":[306],"properties":{"coalpetro":12025751,"foodfarm":130760,"crudemat":1809383,"chem":4573316,"manu":74052,"other":0,"total":18613262}},{"type":"LineString","arcs":[307],"properties":{"coalpetro":12438023,"foodfarm":0,"crudemat":202054,"chem":902724,"manu":0,"other":1742,"total":13544543}},{"type":"LineString","arcs":[308],"properties":{"coalpetro":12201183,"foodfarm":130760,"crudemat":1809383,"chem":4573316,"manu":74052,"other":0,"total":18788694}},{"type":"LineString","arcs":[309],"properties":{"coalpetro":12201183,"foodfarm":130760,"crudemat":1809383,"chem":4573316,"manu":74052,"other":0,"total":18788694}},{"type":"LineString","arcs":[310],"properties":{"coalpetro":17200777,"foodfarm":435928,"crudemat":945020,"chem":654126,"manu":584770,"other":179969,"total":20000590}},{"type":"LineString","arcs":[311],"properties":{"coalpetro":10166097,"foodfarm":129254,"crudemat":555738,"chem":2009148,"manu":73939,"other":0,"total":12934176}},{"type":"LineString","arcs":[312],"properties":{"coalpetro":11054799,"foodfarm":130760,"crudemat":1441537,"chem":3523922,"manu":73939,"other":0,"total":16224957}},{"type":"LineString","arcs":[313],"properties":{"coalpetro":12438023,"foodfarm":0,"crudemat":202054,"chem":902724,"manu":0,"other":1742,"total":13544543}},{"type":"LineString","arcs":[314],"properties":{"coalpetro":1625612,"foodfarm":2029,"crudemat":127608,"chem":3320,"manu":67154,"other":0,"total":1825723}},{"type":"LineString","arcs":[315],"properties":{"coalpetro":1721655,"foodfarm":129254,"crudemat":127608,"chem":109743,"manu":67154,"other":0,"total":2155414}},{"type":"LineString","arcs":[316],"properties":{"coalpetro":1723555,"foodfarm":129254,"crudemat":161166,"chem":109743,"manu":69322,"other":0,"total":2193040}},{"type":"LineString","arcs":[317],"properties":{"coalpetro":1491476,"foodfarm":0,"crudemat":0,"chem":44435,"manu":0,"other":0,"total":1535911}},{"type":"LineString","arcs":[318],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[319],"properties":{"coalpetro":10051478,"foodfarm":129254,"crudemat":555738,"chem":2009148,"manu":73939,"other":0,"total":12819557}},{"type":"LineString","arcs":[320],"properties":{"coalpetro":9966196,"foodfarm":129254,"crudemat":555738,"chem":2009148,"manu":73939,"other":0,"total":12734275}},{"type":"LineString","arcs":[321],"properties":{"coalpetro":10166097,"foodfarm":129254,"crudemat":555738,"chem":2009148,"manu":73939,"other":0,"total":12934176}},{"type":"LineString","arcs":[322],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[323],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[324],"properties":{"coalpetro":168532227,"foodfarm":5542092,"crudemat":4787010,"chem":29609527,"manu":16000751,"other":2767790,"total":227239397}},{"type":"LineString","arcs":[325],"properties":{"coalpetro":168532227,"foodfarm":5542092,"crudemat":4787010,"chem":29609527,"manu":16000751,"other":2767790,"total":227239397}},{"type":"LineString","arcs":[326],"properties":{"coalpetro":168532227,"foodfarm":5542092,"crudemat":4787010,"chem":29609527,"manu":16000751,"other":2767790,"total":227239397}},{"type":"LineString","arcs":[327],"properties":{"coalpetro":168565338,"foodfarm":4339873,"crudemat":4068345,"chem":27866641,"manu":11352355,"other":1785326,"total":217977878}},{"type":"LineString","arcs":[328],"properties":{"coalpetro":168565338,"foodfarm":4339873,"crudemat":4068345,"chem":27866641,"manu":11352355,"other":1785326,"total":217977878}},{"type":"LineString","arcs":[329],"properties":{"coalpetro":168776300,"foodfarm":4339873,"crudemat":4068345,"chem":27187111,"manu":11352355,"other":1785326,"total":217509310}},{"type":"LineString","arcs":[330],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[331],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[332],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[333],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[334],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[335],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[336],"properties":{"coalpetro":172395338,"foodfarm":7426936,"crudemat":5694374,"chem":36777155,"manu":22994537,"other":4090373,"total":249378713}},{"type":"LineString","arcs":[337],"properties":{"coalpetro":172395338,"foodfarm":7426936,"crudemat":5694374,"chem":36777155,"manu":22994537,"other":4090373,"total":249378713}},{"type":"LineString","arcs":[338],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[339],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[340],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[341],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[342],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[343],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[344],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[345],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[346],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[347],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[348],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[349],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[350],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[351],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[352],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[353],"properties":{"coalpetro":13736334,"foodfarm":852770,"crudemat":4434136,"chem":5115199,"manu":1251208,"other":312506,"total":25702153}},{"type":"LineString","arcs":[354],"properties":{"coalpetro":1047768,"foodfarm":1478,"crudemat":598062,"chem":252207,"manu":5516063,"other":313756,"total":7729334}},{"type":"LineString","arcs":[355],"properties":{"coalpetro":152573062,"foodfarm":149052376,"crudemat":31222345,"chem":48343535,"manu":14395879,"other":832069,"total":396419266}},{"type":"LineString","arcs":[356],"properties":{"coalpetro":53051382,"foodfarm":88939111,"crudemat":22886292,"chem":25024130,"manu":11624973,"other":65914,"total":201591802}},{"type":"LineString","arcs":[357],"properties":{"coalpetro":34854627,"foodfarm":83371867,"crudemat":25868344,"chem":22236239,"manu":11976403,"other":0,"total":178307480}},{"type":"LineString","arcs":[358],"properties":{"coalpetro":4892310,"foodfarm":5937,"crudemat":963815,"chem":667206,"manu":176370,"other":0,"total":6705638}},{"type":"LineString","arcs":[359],"properties":{"coalpetro":56506907,"foodfarm":438744,"crudemat":2315027,"chem":6187205,"manu":615974,"other":192060,"total":66255917}},{"type":"LineString","arcs":[360],"properties":{"coalpetro":2041686,"foodfarm":171634,"crudemat":2662753,"chem":90483,"manu":129144,"other":0,"total":5095700}},{"type":"LineString","arcs":[361],"properties":{"coalpetro":36015831,"foodfarm":83505244,"crudemat":21202477,"chem":22264425,"manu":11654747,"other":0,"total":174642724}},{"type":"LineString","arcs":[362],"properties":{"coalpetro":5364724,"foodfarm":412183,"crudemat":1826513,"chem":2304442,"manu":578782,"other":156615,"total":10643259}},{"type":"LineString","arcs":[363],"properties":{"coalpetro":11764244,"foodfarm":314083,"crudemat":5343772,"chem":4934123,"manu":926583,"other":0,"total":23282805}},{"type":"LineString","arcs":[364],"properties":{"coalpetro":5352389,"foodfarm":412183,"crudemat":1756897,"chem":2303527,"manu":593093,"other":128815,"total":10546904}},{"type":"LineString","arcs":[365],"properties":{"coalpetro":5347028,"foodfarm":405783,"crudemat":2011122,"chem":2308911,"manu":599545,"other":128815,"total":10801204}},{"type":"LineString","arcs":[366],"properties":{"coalpetro":13420090,"foodfarm":852770,"crudemat":4057545,"chem":4937634,"manu":1234584,"other":312506,"total":24815129}},{"type":"LineString","arcs":[367],"properties":{"coalpetro":13540187,"foodfarm":852770,"crudemat":4080708,"chem":4937634,"manu":1239400,"other":312506,"total":24963205}},{"type":"LineString","arcs":[368],"properties":{"coalpetro":13167098,"foodfarm":852770,"crudemat":4091740,"chem":4938463,"manu":1237766,"other":312506,"total":24600343}},{"type":"LineString","arcs":[369],"properties":{"coalpetro":152573062,"foodfarm":149052376,"crudemat":31222345,"chem":48343535,"manu":14395879,"other":832069,"total":396419266}},{"type":"LineString","arcs":[370],"properties":{"coalpetro":152573062,"foodfarm":149052376,"crudemat":31222345,"chem":48343535,"manu":14395879,"other":832069,"total":396419266}},{"type":"LineString","arcs":[371],"properties":{"coalpetro":152573062,"foodfarm":149052376,"crudemat":31222345,"chem":48343535,"manu":14395879,"other":832069,"total":396419266}},{"type":"LineString","arcs":[372],"properties":{"coalpetro":33557,"foodfarm":0,"crudemat":0,"chem":0,"manu":59,"other":0,"total":33616}},{"type":"LineString","arcs":[373],"properties":{"coalpetro":1047768,"foodfarm":1478,"crudemat":598062,"chem":252207,"manu":5516063,"other":313756,"total":7729334}},{"type":"LineString","arcs":[374],"properties":{"coalpetro":936658,"foodfarm":348,"crudemat":19513,"chem":27668,"manu":59720,"other":1250,"total":1045157}},{"type":"LineString","arcs":[375],"properties":{"coalpetro":52966685,"foodfarm":102188,"crudemat":0,"chem":3986310,"manu":24818,"other":338,"total":57080339}},{"type":"LineString","arcs":[376],"properties":{"coalpetro":52966685,"foodfarm":102188,"crudemat":0,"chem":3986310,"manu":24818,"other":338,"total":57080339}},{"type":"LineString","arcs":[377],"properties":{"coalpetro":47347574,"foodfarm":433173,"crudemat":1034768,"chem":6082958,"manu":151573,"other":127858,"total":55177904}},{"type":"LineString","arcs":[378],"properties":{"coalpetro":126943250,"foodfarm":90183664,"crudemat":20163301,"chem":24353372,"manu":10226845,"other":2178531,"total":274048963}},{"type":"LineString","arcs":[379],"properties":{"coalpetro":34273590,"foodfarm":82600549,"crudemat":26910714,"chem":22293311,"manu":12061989,"other":0,"total":178140153}},{"type":"LineString","arcs":[380],"properties":{"coalpetro":34273590,"foodfarm":82600549,"crudemat":26910714,"chem":22293311,"manu":12061989,"other":0,"total":178140153}},{"type":"LineString","arcs":[381],"properties":{"coalpetro":34273590,"foodfarm":82600549,"crudemat":26910714,"chem":22293311,"manu":12061989,"other":0,"total":178140153}},{"type":"LineString","arcs":[382],"properties":{"coalpetro":143455372,"foodfarm":99546026,"crudemat":22766425,"chem":27342448,"manu":11964706,"other":2178531,"total":307253508}},{"type":"LineString","arcs":[383],"properties":{"coalpetro":129896612,"foodfarm":98886634,"crudemat":26052053,"chem":29333940,"manu":12522706,"other":1258002,"total":297949947}},{"type":"LineString","arcs":[384],"properties":{"coalpetro":133190207,"foodfarm":90105832,"crudemat":25214488,"chem":29376817,"manu":11779503,"other":1394276,"total":291061123}},{"type":"LineString","arcs":[385],"properties":{"coalpetro":138056243,"foodfarm":91081389,"crudemat":24094288,"chem":28850835,"manu":12455947,"other":1599237,"total":296137939}},{"type":"LineString","arcs":[386],"properties":{"coalpetro":28343169,"foodfarm":763969,"crudemat":5106426,"chem":3891446,"manu":8875757,"other":341219,"total":47321986}},{"type":"LineString","arcs":[387],"properties":{"coalpetro":28343169,"foodfarm":763969,"crudemat":5106426,"chem":3891446,"manu":8874752,"other":341219,"total":47320981}},{"type":"LineString","arcs":[388],"properties":{"coalpetro":28343169,"foodfarm":763969,"crudemat":5106426,"chem":3891446,"manu":8874752,"other":341219,"total":47320981}},{"type":"LineString","arcs":[389],"properties":{"coalpetro":31192251,"foodfarm":763969,"crudemat":5106426,"chem":3888048,"manu":13299830,"other":341219,"total":54591743}},{"type":"LineString","arcs":[390],"properties":{"coalpetro":19270898,"foodfarm":515465,"crudemat":5175400,"chem":3266385,"manu":9037324,"other":235050,"total":37500522}},{"type":"LineString","arcs":[391],"properties":{"coalpetro":14684117,"foodfarm":69370,"crudemat":3083604,"chem":2715849,"manu":5510216,"other":13669,"total":26076825}},{"type":"LineString","arcs":[392],"properties":{"coalpetro":5911712,"foodfarm":32670,"crudemat":2488569,"chem":1670968,"manu":5531322,"other":0,"total":15635241}},{"type":"LineString","arcs":[393],"properties":{"coalpetro":4672176,"foodfarm":32670,"crudemat":2575522,"chem":1694768,"manu":5500101,"other":0,"total":14475237}},{"type":"LineString","arcs":[394],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[395],"properties":{"coalpetro":127155654,"foodfarm":90183664,"crudemat":20162822,"chem":24354143,"manu":10297896,"other":2178531,"total":274332710}},{"type":"LineString","arcs":[396],"properties":{"coalpetro":40751281,"foodfarm":419022,"crudemat":157996,"chem":5750061,"manu":33830,"other":0,"total":47112190}},{"type":"LineString","arcs":[397],"properties":{"coalpetro":40751281,"foodfarm":419022,"crudemat":157996,"chem":5750061,"manu":33830,"other":0,"total":47112190}},{"type":"LineString","arcs":[398],"properties":{"coalpetro":40751281,"foodfarm":419022,"crudemat":157996,"chem":5750061,"manu":33830,"other":0,"total":47112190}},{"type":"LineString","arcs":[399],"properties":{"coalpetro":15504132,"foodfarm":2398417,"crudemat":1121200,"chem":473331,"manu":4477849,"other":828807,"total":24803736}},{"type":"LineString","arcs":[400],"properties":{"coalpetro":41345756,"foodfarm":419022,"crudemat":233621,"chem":5361336,"manu":85261,"other":0,"total":47444996}},{"type":"LineString","arcs":[401],"properties":{"coalpetro":11229199,"foodfarm":536912,"crudemat":71446,"chem":2664862,"manu":128260,"other":26317,"total":14656996}},{"type":"LineString","arcs":[402],"properties":{"coalpetro":7574681,"foodfarm":436095,"crudemat":33997,"chem":2524436,"manu":41603,"other":0,"total":10610812}},{"type":"LineString","arcs":[403],"properties":{"coalpetro":7574737,"foodfarm":436095,"crudemat":33997,"chem":2524436,"manu":42001,"other":0,"total":10611266}},{"type":"LineString","arcs":[404],"properties":{"coalpetro":7574737,"foodfarm":436095,"crudemat":33997,"chem":2440331,"manu":42152,"other":0,"total":10527312}},{"type":"LineString","arcs":[405],"properties":{"coalpetro":41345756,"foodfarm":419022,"crudemat":233621,"chem":5361336,"manu":85261,"other":0,"total":47444996}},{"type":"LineString","arcs":[406],"properties":{"coalpetro":7527184,"foodfarm":435724,"crudemat":325929,"chem":2260800,"manu":111678,"other":4312,"total":10665627}},{"type":"LineString","arcs":[407],"properties":{"coalpetro":7527184,"foodfarm":435724,"crudemat":325929,"chem":2260800,"manu":111678,"other":4312,"total":10665627}},{"type":"LineString","arcs":[408],"properties":{"coalpetro":1575003,"foodfarm":332606,"crudemat":31560446,"chem":183629,"manu":2391769,"other":138721,"total":36182174}},{"type":"LineString","arcs":[409],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":992927,"chem":0,"manu":0,"other":0,"total":992927}},{"type":"LineString","arcs":[410],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":992927,"chem":0,"manu":8285,"other":0,"total":1001212}},{"type":"LineString","arcs":[411],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":992927,"chem":0,"manu":0,"other":0,"total":992927}},{"type":"LineString","arcs":[412],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":992927,"chem":0,"manu":0,"other":0,"total":992927}},{"type":"LineString","arcs":[413],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":1055646,"chem":0,"manu":0,"other":0,"total":1055646}},{"type":"LineString","arcs":[414],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":1836204,"chem":0,"manu":0,"other":0,"total":1836204}},{"type":"LineString","arcs":[415],"properties":{"coalpetro":9315622,"foodfarm":1614895,"crudemat":57276878,"chem":211130,"manu":1947611,"other":179757,"total":70545893}},{"type":"LineString","arcs":[416],"properties":{"coalpetro":9315622,"foodfarm":1614895,"crudemat":57276878,"chem":211130,"manu":1947611,"other":179757,"total":70545893}},{"type":"LineString","arcs":[417],"properties":{"coalpetro":9315622,"foodfarm":1614895,"crudemat":57800459,"chem":211130,"manu":1928088,"other":131940,"total":71002134}},{"type":"LineString","arcs":[418],"properties":{"coalpetro":9315622,"foodfarm":1614895,"crudemat":56683448,"chem":211130,"manu":1947588,"other":179757,"total":69952440}},{"type":"LineString","arcs":[419],"properties":{"coalpetro":10459428,"foodfarm":1947501,"crudemat":41769151,"chem":277327,"manu":3531349,"other":137014,"total":58121770}},{"type":"LineString","arcs":[420],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":44423,"chem":0,"manu":0,"other":0,"total":865363}},{"type":"LineString","arcs":[421],"properties":{"coalpetro":9315622,"foodfarm":1614895,"crudemat":57276878,"chem":211130,"manu":1947611,"other":179757,"total":70545893}},{"type":"LineString","arcs":[422],"properties":{"coalpetro":10459428,"foodfarm":1947501,"crudemat":41769151,"chem":277327,"manu":3531349,"other":137014,"total":58121770}},{"type":"LineString","arcs":[423],"properties":{"coalpetro":4577274,"foodfarm":2241631,"crudemat":30207983,"chem":225470,"manu":2181854,"other":203319,"total":39637531}},{"type":"LineString","arcs":[424],"properties":{"coalpetro":5202434,"foodfarm":2246631,"crudemat":41546620,"chem":225470,"manu":3272090,"other":244345,"total":52737590}},{"type":"LineString","arcs":[425],"properties":{"coalpetro":5202434,"foodfarm":2246631,"crudemat":41546620,"chem":225470,"manu":3272090,"other":244345,"total":52737590}},{"type":"LineString","arcs":[426],"properties":{"coalpetro":5202434,"foodfarm":2246631,"crudemat":41546620,"chem":225470,"manu":3272090,"other":244345,"total":52737590}},{"type":"LineString","arcs":[427],"properties":{"coalpetro":3603425,"foodfarm":2171320,"crudemat":40579855,"chem":225470,"manu":3009258,"other":153783,"total":49743111}},{"type":"LineString","arcs":[428],"properties":{"coalpetro":39472981,"foodfarm":10420445,"crudemat":10802167,"chem":6341080,"manu":5496077,"other":0,"total":72532750}},{"type":"LineString","arcs":[429],"properties":{"coalpetro":39472981,"foodfarm":10420445,"crudemat":10802167,"chem":6341080,"manu":5496077,"other":0,"total":72532750}},{"type":"LineString","arcs":[430],"properties":{"coalpetro":39472981,"foodfarm":10420445,"crudemat":10802167,"chem":6341080,"manu":5496077,"other":0,"total":72532750}},{"type":"LineString","arcs":[431],"properties":{"coalpetro":39472981,"foodfarm":10420445,"crudemat":10802167,"chem":6341080,"manu":5496077,"other":0,"total":72532750}},{"type":"LineString","arcs":[432],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[433],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[434],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[435],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[436],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[437],"properties":{"coalpetro":2530479,"foodfarm":192892,"crudemat":6591718,"chem":1820803,"manu":2833820,"other":0,"total":13969712}},{"type":"LineString","arcs":[438],"properties":{"coalpetro":2530479,"foodfarm":192892,"crudemat":6591718,"chem":1820803,"manu":2833820,"other":0,"total":13969712}},{"type":"LineString","arcs":[439],"properties":{"coalpetro":359885,"foodfarm":21477,"crudemat":3458767,"chem":1185029,"manu":371605,"other":0,"total":5396763}},{"type":"LineString","arcs":[440],"properties":{"coalpetro":19626,"foodfarm":6367,"crudemat":1722441,"chem":20441,"manu":7624,"other":0,"total":1776499}},{"type":"LineString","arcs":[441],"properties":{"coalpetro":19626,"foodfarm":6367,"crudemat":3465,"chem":11134,"manu":1424,"other":0,"total":42016}},{"type":"LineString","arcs":[442],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56208699,"chem":112320,"manu":1399202,"other":87504,"total":67785765}},{"type":"LineString","arcs":[443],"properties":{"coalpetro":25459279,"foodfarm":789305,"crudemat":13341239,"chem":2665413,"manu":3835405,"other":0,"total":46090641}},{"type":"LineString","arcs":[444],"properties":{"coalpetro":25459279,"foodfarm":789305,"crudemat":13341239,"chem":2665413,"manu":3835405,"other":0,"total":46090641}},{"type":"LineString","arcs":[445],"properties":{"coalpetro":25459279,"foodfarm":789305,"crudemat":13341239,"chem":2665413,"manu":3835405,"other":0,"total":46090641}},{"type":"LineString","arcs":[446],"properties":{"coalpetro":25459279,"foodfarm":789305,"crudemat":13341239,"chem":2665413,"manu":3835405,"other":0,"total":46090641}},{"type":"LineString","arcs":[447],"properties":{"coalpetro":24887283,"foodfarm":298046,"crudemat":10411582,"chem":1547418,"manu":3402889,"other":0,"total":40547218}},{"type":"LineString","arcs":[448],"properties":{"coalpetro":24887283,"foodfarm":298046,"crudemat":10411582,"chem":1547418,"manu":3402889,"other":0,"total":40547218}},{"type":"LineString","arcs":[449],"properties":{"coalpetro":24887283,"foodfarm":298046,"crudemat":10411582,"chem":1547418,"manu":3402889,"other":0,"total":40547218}},{"type":"LineString","arcs":[450],"properties":{"coalpetro":29825700,"foodfarm":298046,"crudemat":9600841,"chem":1140716,"manu":3307423,"other":0,"total":44172726}},{"type":"LineString","arcs":[451],"properties":{"coalpetro":29825700,"foodfarm":298046,"crudemat":9600841,"chem":1140716,"manu":3307423,"other":0,"total":44172726}},{"type":"LineString","arcs":[452],"properties":{"coalpetro":2632064,"foodfarm":1079804,"crudemat":4480741,"chem":138505,"manu":512513,"other":56198,"total":8899825}},{"type":"LineString","arcs":[453],"properties":{"coalpetro":979686,"foodfarm":327606,"crudemat":30130729,"chem":159664,"manu":3228863,"other":60201,"total":34886749}},{"type":"LineString","arcs":[454],"properties":{"coalpetro":1024889,"foodfarm":0,"crudemat":3021991,"chem":113559,"manu":2112968,"other":0,"total":6273407}},{"type":"LineString","arcs":[455],"properties":{"coalpetro":1024889,"foodfarm":0,"crudemat":3021991,"chem":113559,"manu":2112968,"other":0,"total":6273407}},{"type":"LineString","arcs":[456],"properties":{"coalpetro":24323954,"foodfarm":2678413,"crudemat":14409120,"chem":3905349,"manu":5272099,"other":0,"total":50588935}},{"type":"LineString","arcs":[457],"properties":{"coalpetro":24323954,"foodfarm":2678413,"crudemat":14409120,"chem":3905349,"manu":5272099,"other":0,"total":50588935}},{"type":"LineString","arcs":[458],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":30064790,"chem":159664,"manu":3120756,"other":23053,"total":34469001}},{"type":"LineString","arcs":[459],"properties":{"coalpetro":24323954,"foodfarm":2678413,"crudemat":14409120,"chem":3905349,"manu":5272099,"other":0,"total":50588935}},{"type":"LineString","arcs":[460],"properties":{"coalpetro":25459279,"foodfarm":789305,"crudemat":13341239,"chem":2665413,"manu":3835405,"other":0,"total":46090641}},{"type":"LineString","arcs":[461],"properties":{"coalpetro":25459279,"foodfarm":789305,"crudemat":13341239,"chem":2665413,"manu":3835405,"other":0,"total":46090641}},{"type":"LineString","arcs":[462],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[463],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[464],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[465],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27805944,"chem":126204,"manu":1974299,"other":23053,"total":30841311}},{"type":"LineString","arcs":[466],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27830841,"chem":126204,"manu":1976649,"other":23053,"total":30868558}},{"type":"LineString","arcs":[467],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27888861,"chem":126204,"manu":2077184,"other":23053,"total":31027113}},{"type":"LineString","arcs":[468],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27990331,"chem":126204,"manu":2075035,"other":23053,"total":31126434}},{"type":"LineString","arcs":[469],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27990331,"chem":126204,"manu":2075034,"other":23053,"total":31126433}},{"type":"LineString","arcs":[470],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27990331,"chem":126204,"manu":2075034,"other":23053,"total":31126433}},{"type":"LineString","arcs":[471],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27990331,"chem":126204,"manu":2075034,"other":23053,"total":31126433}},{"type":"LineString","arcs":[472],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27990331,"chem":126204,"manu":2075034,"other":23053,"total":31126433}},{"type":"LineString","arcs":[473],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":28235261,"chem":126204,"manu":2075034,"other":23053,"total":31371363}},{"type":"LineString","arcs":[474],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":28235261,"chem":126204,"manu":2075034,"other":23053,"total":31371363}},{"type":"LineString","arcs":[475],"properties":{"coalpetro":741748,"foodfarm":308790,"crudemat":29103775,"chem":126204,"manu":2929364,"other":23053,"total":33232934}},{"type":"LineString","arcs":[476],"properties":{"coalpetro":773132,"foodfarm":308790,"crudemat":29378040,"chem":126204,"manu":3066924,"other":23053,"total":33676143}},{"type":"LineString","arcs":[477],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":29940382,"chem":126204,"manu":3120756,"other":23053,"total":34311133}},{"type":"LineString","arcs":[478],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":29940382,"chem":126204,"manu":3120756,"other":23053,"total":34311133}},{"type":"LineString","arcs":[479],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":29940382,"chem":126204,"manu":3120756,"other":23053,"total":34311133}},{"type":"LineString","arcs":[480],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":29940382,"chem":126204,"manu":3120756,"other":23053,"total":34311133}},{"type":"LineString","arcs":[481],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":29940382,"chem":126204,"manu":3120756,"other":23053,"total":34311133}},{"type":"LineString","arcs":[482],"properties":{"coalpetro":451530,"foodfarm":2102725,"crudemat":462098,"chem":2180711,"manu":403014,"other":0,"total":5600078}},{"type":"LineString","arcs":[483],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[484],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[485],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[486],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[487],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[488],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[489],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[490],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[491],"properties":{"coalpetro":0,"foodfarm":71959,"crudemat":153488,"chem":3040,"manu":160675,"other":0,"total":389162}},{"type":"LineString","arcs":[492],"properties":{"coalpetro":0,"foodfarm":71959,"crudemat":153130,"chem":3040,"manu":160675,"other":0,"total":388804}},{"type":"LineString","arcs":[493],"properties":{"coalpetro":0,"foodfarm":71959,"crudemat":153488,"chem":3040,"manu":160675,"other":0,"total":389162}},{"type":"LineString","arcs":[494],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[495],"properties":{"coalpetro":0,"foodfarm":71959,"crudemat":153488,"chem":3040,"manu":160675,"other":0,"total":389162}},{"type":"LineString","arcs":[496],"properties":{"coalpetro":104301,"foodfarm":243896,"crudemat":2478372,"chem":126490,"manu":261207,"other":0,"total":3214266}},{"type":"LineString","arcs":[497],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":3055,"chem":0,"manu":0,"other":0,"total":3055}},{"type":"LineString","arcs":[498],"properties":{"coalpetro":7517295,"foodfarm":2765936,"crudemat":8907952,"chem":1273516,"manu":2646342,"other":0,"total":23111041}},{"type":"LineString","arcs":[499],"properties":{"coalpetro":7517295,"foodfarm":2765936,"crudemat":8907952,"chem":1273516,"manu":2646342,"other":0,"total":23111041}},{"type":"LineString","arcs":[500],"properties":{"coalpetro":27323023,"foodfarm":10314095,"crudemat":11497757,"chem":6142189,"manu":5399748,"other":0,"total":60676812}},{"type":"LineString","arcs":[501],"properties":{"coalpetro":104301,"foodfarm":243896,"crudemat":2478372,"chem":126490,"manu":261207,"other":0,"total":3214266}},{"type":"LineString","arcs":[502],"properties":{"coalpetro":104301,"foodfarm":219896,"crudemat":19874,"chem":124990,"manu":103613,"other":0,"total":572674}},{"type":"LineString","arcs":[503],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[504],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[505],"properties":{"coalpetro":104301,"foodfarm":219896,"crudemat":1022798,"chem":124990,"manu":103613,"other":0,"total":1575598}},{"type":"LineString","arcs":[506],"properties":{"coalpetro":15840558,"foodfarm":51211447,"crudemat":15242055,"chem":12690244,"manu":9771759,"other":0,"total":104756063}},{"type":"LineString","arcs":[507],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[508],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[509],"properties":{"coalpetro":9815459,"foodfarm":35287292,"crudemat":5729176,"chem":10039842,"manu":5707267,"other":0,"total":66579036}},{"type":"LineString","arcs":[510],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[511],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[512],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[513],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[514],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[515],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[516],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[517],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[518],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[519],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[520],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[521],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[522],"properties":{"coalpetro":19506779,"foodfarm":52960977,"crudemat":16022203,"chem":12665828,"manu":8006602,"other":0,"total":109162389}},{"type":"LineString","arcs":[523],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[524],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[525],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[526],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[527],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[528],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[529],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[530],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[531],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[532],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[533],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[534],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[535],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[536],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[537],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":3055,"chem":0,"manu":0,"other":0,"total":3055}},{"type":"LineString","arcs":[538],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":3055,"chem":0,"manu":0,"other":0,"total":3055}},{"type":"LineString","arcs":[539],"properties":{"coalpetro":294483,"foodfarm":3617602,"crudemat":2430171,"chem":1580957,"manu":827695,"other":0,"total":8750908}},{"type":"LineString","arcs":[540],"properties":{"coalpetro":294483,"foodfarm":3617602,"crudemat":2430171,"chem":1580957,"manu":827695,"other":0,"total":8750908}},{"type":"LineString","arcs":[541],"properties":{"coalpetro":15840558,"foodfarm":51211447,"crudemat":15242055,"chem":12690244,"manu":9771759,"other":0,"total":104756063}},{"type":"LineString","arcs":[542],"properties":{"coalpetro":294483,"foodfarm":3617602,"crudemat":2430171,"chem":1580957,"manu":827695,"other":0,"total":8750908}},{"type":"LineString","arcs":[543],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[544],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[545],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[546],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[547],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[548],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[549],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[550],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[551],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[552],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[553],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[554],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[555],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[556],"properties":{"coalpetro":15840558,"foodfarm":51211447,"crudemat":15242055,"chem":12690244,"manu":9771759,"other":0,"total":104756063}},{"type":"LineString","arcs":[557],"properties":{"coalpetro":9815459,"foodfarm":35287292,"crudemat":5729176,"chem":10039842,"manu":5707267,"other":0,"total":66579036}},{"type":"LineString","arcs":[558],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[559],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[560],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[561],"properties":{"coalpetro":21599,"foodfarm":0,"crudemat":8199812,"chem":0,"manu":379038,"other":0,"total":8600449}},{"type":"LineString","arcs":[562],"properties":{"coalpetro":21599,"foodfarm":0,"crudemat":8199812,"chem":0,"manu":379038,"other":0,"total":8600449}},{"type":"LineString","arcs":[563],"properties":{"coalpetro":2028679,"foodfarm":50648,"crudemat":27422951,"chem":147685,"manu":985923,"other":152,"total":30636038}},{"type":"LineString","arcs":[564],"properties":{"coalpetro":827544,"foodfarm":110260,"crudemat":27809409,"chem":137338,"manu":1975723,"other":23053,"total":30883327}},{"type":"LineString","arcs":[565],"properties":{"coalpetro":827544,"foodfarm":110260,"crudemat":27809409,"chem":137338,"manu":1975723,"other":23053,"total":30883327}},{"type":"LineString","arcs":[566],"properties":{"coalpetro":827544,"foodfarm":110260,"crudemat":27809409,"chem":137338,"manu":1975723,"other":23053,"total":30883327}},{"type":"LineString","arcs":[567],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[568],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[569],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[570],"properties":{"coalpetro":24323954,"foodfarm":2678413,"crudemat":14409120,"chem":3905349,"manu":5272099,"other":0,"total":50588935}},{"type":"LineString","arcs":[571],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[572],"properties":{"coalpetro":8858959,"foodfarm":1614872,"crudemat":48442083,"chem":112320,"manu":1399202,"other":45262,"total":60472698}},{"type":"LineString","arcs":[573],"properties":{"coalpetro":8858959,"foodfarm":1614872,"crudemat":48442083,"chem":112320,"manu":1399202,"other":45262,"total":60472698}},{"type":"LineString","arcs":[574],"properties":{"coalpetro":8858959,"foodfarm":1614872,"crudemat":48442083,"chem":112320,"manu":1399202,"other":45262,"total":60472698}},{"type":"LineString","arcs":[575],"properties":{"coalpetro":8309165,"foodfarm":1614872,"crudemat":55283185,"chem":112320,"manu":1399202,"other":67662,"total":66786406}},{"type":"LineString","arcs":[576],"properties":{"coalpetro":8309165,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67727962}},{"type":"LineString","arcs":[577],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":71690342,"chem":50839,"manu":138434,"other":241,"total":81607404}},{"type":"LineString","arcs":[578],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[579],"properties":{"coalpetro":8704610,"foodfarm":1201424,"crudemat":25006652,"chem":50839,"manu":138434,"other":241,"total":35102200}},{"type":"LineString","arcs":[580],"properties":{"coalpetro":8704610,"foodfarm":1201424,"crudemat":25006652,"chem":50839,"manu":138434,"other":241,"total":35102200}},{"type":"LineString","arcs":[581],"properties":{"coalpetro":8704610,"foodfarm":1201424,"crudemat":25006652,"chem":50839,"manu":138434,"other":241,"total":35102200}},{"type":"LineString","arcs":[582],"properties":{"coalpetro":8704610,"foodfarm":1201424,"crudemat":42214859,"chem":50839,"manu":138434,"other":241,"total":52310407}},{"type":"LineString","arcs":[583],"properties":{"coalpetro":8704610,"foodfarm":1201424,"crudemat":42214859,"chem":50839,"manu":138434,"other":241,"total":52310407}},{"type":"LineString","arcs":[584],"properties":{"coalpetro":8704610,"foodfarm":1201424,"crudemat":42214859,"chem":50839,"manu":138434,"other":241,"total":52310407}},{"type":"LineString","arcs":[585],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48285029,"chem":50839,"manu":138434,"other":241,"total":58202091}},{"type":"LineString","arcs":[586],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[587],"properties":{"coalpetro":8539666,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":139744,"other":241,"total":58280411}},{"type":"LineString","arcs":[588],"properties":{"coalpetro":8539666,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":139744,"other":241,"total":58280411}},{"type":"LineString","arcs":[589],"properties":{"coalpetro":8539666,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":139744,"other":241,"total":58280411}},{"type":"LineString","arcs":[590],"properties":{"coalpetro":8539666,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":139744,"other":241,"total":58280411}},{"type":"LineString","arcs":[591],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":30075814,"chem":159664,"manu":3228863,"other":23053,"total":34588132}},{"type":"LineString","arcs":[592],"properties":{"coalpetro":979686,"foodfarm":327606,"crudemat":30133529,"chem":159664,"manu":3228863,"other":60201,"total":34889549}},{"type":"LineString","arcs":[593],"properties":{"coalpetro":979686,"foodfarm":327606,"crudemat":30133529,"chem":159664,"manu":3228863,"other":60201,"total":34889549}},{"type":"LineString","arcs":[594],"properties":{"coalpetro":979686,"foodfarm":327606,"crudemat":30133529,"chem":159664,"manu":3228863,"other":60201,"total":34889549}},{"type":"LineString","arcs":[595],"properties":{"coalpetro":979686,"foodfarm":327606,"crudemat":30133529,"chem":159664,"manu":3228863,"other":60201,"total":34889549}},{"type":"LineString","arcs":[596],"properties":{"coalpetro":979686,"foodfarm":327606,"crudemat":30133529,"chem":159664,"manu":3228863,"other":60201,"total":34889549}},{"type":"LineString","arcs":[597],"properties":{"coalpetro":979686,"foodfarm":327606,"crudemat":30130729,"chem":159664,"manu":3228863,"other":60201,"total":34886749}},{"type":"LineString","arcs":[598],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":30075814,"chem":159664,"manu":3228863,"other":23053,"total":34588132}},{"type":"LineString","arcs":[599],"properties":{"coalpetro":1024889,"foodfarm":0,"crudemat":3021991,"chem":113559,"manu":2112968,"other":0,"total":6273407}},{"type":"LineString","arcs":[600],"properties":{"coalpetro":1024889,"foodfarm":0,"crudemat":3021991,"chem":113559,"manu":2112968,"other":0,"total":6273407}},{"type":"LineString","arcs":[601],"properties":{"coalpetro":1176103,"foodfarm":0,"crudemat":3007012,"chem":113559,"manu":1036288,"other":17255,"total":5350217}},{"type":"LineString","arcs":[602],"properties":{"coalpetro":1176103,"foodfarm":0,"crudemat":3007012,"chem":113559,"manu":1036288,"other":17255,"total":5350217}},{"type":"LineString","arcs":[603],"properties":{"coalpetro":1176103,"foodfarm":0,"crudemat":3007012,"chem":113559,"manu":1036288,"other":17255,"total":5350217}},{"type":"LineString","arcs":[604],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[605],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[606],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[607],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[608],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[609],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[610],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[611],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[612],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[613],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[614],"properties":{"coalpetro":2298586,"foodfarm":2353501,"crudemat":22547418,"chem":100551,"manu":2165332,"other":280150,"total":29745538}},{"type":"LineString","arcs":[615],"properties":{"coalpetro":2298586,"foodfarm":2353501,"crudemat":20887185,"chem":100551,"manu":2165332,"other":275150,"total":28080305}},{"type":"LineString","arcs":[616],"properties":{"coalpetro":2298586,"foodfarm":2353501,"crudemat":20887185,"chem":100551,"manu":2165332,"other":275150,"total":28080305}},{"type":"LineString","arcs":[617],"properties":{"coalpetro":2298586,"foodfarm":2353501,"crudemat":20887185,"chem":100551,"manu":2165332,"other":275150,"total":28080305}},{"type":"LineString","arcs":[618],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2418485,"other":231221,"total":11206274}},{"type":"LineString","arcs":[619],"properties":{"coalpetro":421671,"foodfarm":1932754,"crudemat":6029034,"chem":154690,"manu":2581587,"other":284691,"total":11404427}},{"type":"LineString","arcs":[620],"properties":{"coalpetro":421671,"foodfarm":1932754,"crudemat":6022420,"chem":140911,"manu":2150406,"other":162521,"total":10830683}},{"type":"LineString","arcs":[621],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[622],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[623],"properties":{"coalpetro":421671,"foodfarm":1932754,"crudemat":6022420,"chem":140911,"manu":2150406,"other":162521,"total":10830683}},{"type":"LineString","arcs":[624],"properties":{"coalpetro":421671,"foodfarm":1932754,"crudemat":6022420,"chem":140911,"manu":2150406,"other":162521,"total":10830683}},{"type":"LineString","arcs":[625],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[626],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[627],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[628],"properties":{"coalpetro":6559853,"foodfarm":60412,"crudemat":146073,"chem":486752,"manu":90967,"other":0,"total":7344057}},{"type":"LineString","arcs":[629],"properties":{"coalpetro":6559853,"foodfarm":60412,"crudemat":146073,"chem":486752,"manu":90967,"other":0,"total":7344057}},{"type":"LineString","arcs":[630],"properties":{"coalpetro":6559853,"foodfarm":60412,"crudemat":146073,"chem":486752,"manu":90967,"other":0,"total":7344057}},{"type":"LineString","arcs":[631],"properties":{"coalpetro":3738591,"foodfarm":2241631,"crudemat":29969698,"chem":225470,"manu":2196231,"other":202820,"total":38574441}},{"type":"LineString","arcs":[632],"properties":{"coalpetro":3234599,"foodfarm":2383757,"crudemat":26900888,"chem":114547,"manu":2226272,"other":186486,"total":35046549}},{"type":"LineString","arcs":[633],"properties":{"coalpetro":2398525,"foodfarm":2348472,"crudemat":27634921,"chem":114547,"manu":2223817,"other":206328,"total":34926610}},{"type":"LineString","arcs":[634],"properties":{"coalpetro":3235749,"foodfarm":2383757,"crudemat":26900888,"chem":114547,"manu":2226272,"other":186486,"total":35047699}},{"type":"LineString","arcs":[635],"properties":{"coalpetro":5964266,"foodfarm":0,"crudemat":221453,"chem":1082389,"manu":112251,"other":0,"total":7380359}},{"type":"LineString","arcs":[636],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[637],"properties":{"coalpetro":5964266,"foodfarm":0,"crudemat":221453,"chem":1082389,"manu":112251,"other":0,"total":7380359}},{"type":"LineString","arcs":[638],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[639],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[640],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[641],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[642],"properties":{"coalpetro":4155447,"foodfarm":11117,"crudemat":2388166,"chem":735324,"manu":825513,"other":6997,"total":8122564}},{"type":"LineString","arcs":[643],"properties":{"coalpetro":4155672,"foodfarm":11117,"crudemat":2109058,"chem":759436,"manu":784543,"other":6997,"total":7826823}},{"type":"LineString","arcs":[644],"properties":{"coalpetro":4155672,"foodfarm":11117,"crudemat":2109058,"chem":759436,"manu":784543,"other":6997,"total":7826823}},{"type":"LineString","arcs":[645],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":418049,"chem":0,"manu":0,"other":0,"total":418049}},{"type":"LineString","arcs":[646],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":389999,"chem":0,"manu":0,"other":0,"total":389999}},{"type":"LineString","arcs":[647],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":389999,"chem":0,"manu":0,"other":0,"total":389999}},{"type":"LineString","arcs":[648],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":389999,"chem":0,"manu":0,"other":0,"total":389999}},{"type":"LineString","arcs":[649],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":389999,"chem":0,"manu":0,"other":0,"total":389999}},{"type":"LineString","arcs":[650],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":389999,"chem":0,"manu":0,"other":0,"total":389999}},{"type":"LineString","arcs":[651],"properties":{"coalpetro":421671,"foodfarm":1932754,"crudemat":6075656,"chem":152808,"manu":2152173,"other":162521,"total":10897583}},{"type":"LineString","arcs":[652],"properties":{"coalpetro":24894910,"foodfarm":3137017,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45432477}},{"type":"LineString","arcs":[653],"properties":{"coalpetro":24894910,"foodfarm":3137017,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45432477}},{"type":"LineString","arcs":[654],"properties":{"coalpetro":24894910,"foodfarm":3137017,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45432477}},{"type":"LineString","arcs":[655],"properties":{"coalpetro":24894910,"foodfarm":3156328,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45451788}},{"type":"LineString","arcs":[656],"properties":{"coalpetro":24894910,"foodfarm":3156328,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45451788}},{"type":"LineString","arcs":[657],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[658],"properties":{"coalpetro":28245352,"foodfarm":2845518,"crudemat":5293353,"chem":1606711,"manu":7777639,"other":612391,"total":46380964}},{"type":"LineString","arcs":[659],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[660],"properties":{"coalpetro":6559853,"foodfarm":60412,"crudemat":146073,"chem":486752,"manu":90967,"other":0,"total":7344057}},{"type":"LineString","arcs":[661],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[662],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[663],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[664],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[665],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[666],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[667],"properties":{"coalpetro":10620908,"foodfarm":2171320,"crudemat":41572559,"chem":225470,"manu":3009258,"other":167833,"total":57767348}},{"type":"LineString","arcs":[668],"properties":{"coalpetro":10620908,"foodfarm":2171320,"crudemat":41572559,"chem":225470,"manu":3009258,"other":167833,"total":57767348}},{"type":"LineString","arcs":[669],"properties":{"coalpetro":10620908,"foodfarm":2171320,"crudemat":41572559,"chem":225470,"manu":3009258,"other":167833,"total":57767348}},{"type":"LineString","arcs":[670],"properties":{"coalpetro":2298586,"foodfarm":2353501,"crudemat":22523806,"chem":100551,"manu":2165332,"other":280150,"total":29721926}},{"type":"LineString","arcs":[671],"properties":{"coalpetro":10341457,"foodfarm":1996184,"crudemat":41072135,"chem":205406,"manu":3009110,"other":130660,"total":56754952}},{"type":"LineString","arcs":[672],"properties":{"coalpetro":10341457,"foodfarm":1996184,"crudemat":41072135,"chem":205406,"manu":3009110,"other":130660,"total":56754952}},{"type":"LineString","arcs":[673],"properties":{"coalpetro":10341457,"foodfarm":1936659,"crudemat":41922982,"chem":241589,"manu":3009110,"other":150477,"total":57602274}},{"type":"LineString","arcs":[674],"properties":{"coalpetro":10341457,"foodfarm":1936659,"crudemat":41922982,"chem":241589,"manu":3009110,"other":150477,"total":57602274}},{"type":"MultiLineString","arcs":[[675],[676]],"properties":{"coalpetro":2418741,"foodfarm":0,"crudemat":134564,"chem":198515,"manu":296358,"other":0,"total":3048178}},{"type":"LineString","arcs":[677],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[678],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[679],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[680],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[681],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[682],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[683],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[684],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[685],"properties":{"coalpetro":18006834,"foodfarm":12669,"crudemat":1438606,"chem":2091052,"manu":227822,"other":0,"total":21776983}},{"type":"LineString","arcs":[686],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[687],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[688],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[689],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[690],"properties":{"coalpetro":925709,"foodfarm":4360,"crudemat":184741,"chem":123700,"manu":18645,"other":0,"total":1257155}},{"type":"LineString","arcs":[691],"properties":{"coalpetro":6257482,"foodfarm":11117,"crudemat":4829981,"chem":757374,"manu":825525,"other":6997,"total":12688476}},{"type":"LineString","arcs":[692],"properties":{"coalpetro":6219412,"foodfarm":11117,"crudemat":4491815,"chem":614844,"manu":825525,"other":6997,"total":12169710}},{"type":"LineString","arcs":[693],"properties":{"coalpetro":6219412,"foodfarm":11117,"crudemat":4491815,"chem":614844,"manu":825525,"other":6997,"total":12169710}},{"type":"LineString","arcs":[694],"properties":{"coalpetro":3234599,"foodfarm":2383757,"crudemat":26903852,"chem":114547,"manu":2226272,"other":186486,"total":35049513}},{"type":"LineString","arcs":[695],"properties":{"coalpetro":3234599,"foodfarm":2383757,"crudemat":27577209,"chem":114547,"manu":2221862,"other":206328,"total":35738302}},{"type":"LineString","arcs":[696],"properties":{"coalpetro":2398525,"foodfarm":2348472,"crudemat":27634921,"chem":114547,"manu":2223817,"other":206328,"total":34926610}},{"type":"LineString","arcs":[697],"properties":{"coalpetro":2398525,"foodfarm":2348472,"crudemat":27634921,"chem":114547,"manu":2223817,"other":206328,"total":34926610}},{"type":"LineString","arcs":[698],"properties":{"coalpetro":2398525,"foodfarm":2348472,"crudemat":27635053,"chem":114547,"manu":2223817,"other":206328,"total":34926742}},{"type":"LineString","arcs":[699],"properties":{"coalpetro":2374486,"foodfarm":2331937,"crudemat":27033858,"chem":102201,"manu":2223817,"other":206328,"total":34272627}},{"type":"LineString","arcs":[700],"properties":{"coalpetro":6559853,"foodfarm":60412,"crudemat":146073,"chem":486752,"manu":90967,"other":0,"total":7344057}},{"type":"LineString","arcs":[701],"properties":{"coalpetro":6559853,"foodfarm":60412,"crudemat":146073,"chem":486752,"manu":90967,"other":0,"total":7344057}},{"type":"LineString","arcs":[702],"properties":{"coalpetro":6559853,"foodfarm":60412,"crudemat":146073,"chem":486752,"manu":90967,"other":0,"total":7344057}},{"type":"LineString","arcs":[703],"properties":{"coalpetro":5123784,"foodfarm":411102,"crudemat":587738,"chem":453154,"manu":207580,"other":461357,"total":7244715}},{"type":"LineString","arcs":[704],"properties":{"coalpetro":5123784,"foodfarm":411102,"crudemat":587738,"chem":453154,"manu":207580,"other":461357,"total":7244715}},{"type":"LineString","arcs":[705],"properties":{"coalpetro":2298586,"foodfarm":2345564,"crudemat":17316410,"chem":100551,"manu":2274627,"other":266883,"total":24602621}},{"type":"LineString","arcs":[706],"properties":{"coalpetro":2298586,"foodfarm":2345564,"crudemat":13888876,"chem":100551,"manu":2274627,"other":266883,"total":21175087}},{"type":"LineString","arcs":[707],"properties":{"coalpetro":2298586,"foodfarm":2345564,"crudemat":13421528,"chem":100551,"manu":2275936,"other":266883,"total":20709048}},{"type":"LineString","arcs":[708],"properties":{"coalpetro":2298586,"foodfarm":2345564,"crudemat":13421528,"chem":100551,"manu":2275936,"other":266883,"total":20709048}},{"type":"LineString","arcs":[709],"properties":{"coalpetro":1747445,"foodfarm":2345564,"crudemat":8764234,"chem":110195,"manu":2259786,"other":253946,"total":15481170}},{"type":"LineString","arcs":[710],"properties":{"coalpetro":313845,"foodfarm":72300,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":964917}},{"type":"LineString","arcs":[711],"properties":{"coalpetro":313845,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":892617}},{"type":"LineString","arcs":[712],"properties":{"coalpetro":313845,"foodfarm":72300,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":964917}},{"type":"LineString","arcs":[713],"properties":{"coalpetro":313845,"foodfarm":72300,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":964917}},{"type":"LineString","arcs":[714],"properties":{"coalpetro":313845,"foodfarm":72300,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":964917}},{"type":"LineString","arcs":[715],"properties":{"coalpetro":24894910,"foodfarm":3139117,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45434577}},{"type":"LineString","arcs":[716],"properties":{"coalpetro":24894910,"foodfarm":3139117,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45434577}},{"type":"LineString","arcs":[717],"properties":{"coalpetro":24894910,"foodfarm":3139117,"crudemat":6414737,"chem":1921097,"manu":8047372,"other":1072163,"total":45489396}},{"type":"LineString","arcs":[718],"properties":{"coalpetro":24894910,"foodfarm":3139117,"crudemat":6414737,"chem":1921097,"manu":8047372,"other":1072163,"total":45489396}},{"type":"LineString","arcs":[719],"properties":{"coalpetro":313845,"foodfarm":72300,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":964917}},{"type":"LineString","arcs":[720],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[721],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[722],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[723],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[724],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[725],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[726],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[727],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[728],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[729],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[730],"properties":{"coalpetro":92162,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":92162}},{"type":"LineString","arcs":[731],"properties":{"coalpetro":92162,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":92162}},{"type":"LineString","arcs":[732],"properties":{"coalpetro":280748,"foodfarm":0,"crudemat":272971,"chem":7949,"manu":0,"other":0,"total":561668}},{"type":"LineString","arcs":[733],"properties":{"coalpetro":323509,"foodfarm":0,"crudemat":272971,"chem":7949,"manu":0,"other":0,"total":604429}},{"type":"LineString","arcs":[734],"properties":{"coalpetro":266480,"foodfarm":0,"crudemat":1274742,"chem":7949,"manu":0,"other":0,"total":1549171}},{"type":"LineString","arcs":[735],"properties":{"coalpetro":301479,"foodfarm":0,"crudemat":1288936,"chem":740642,"manu":0,"other":0,"total":2331057}},{"type":"LineString","arcs":[736],"properties":{"coalpetro":301479,"foodfarm":0,"crudemat":1138805,"chem":740642,"manu":0,"other":0,"total":2180926}},{"type":"LineString","arcs":[737],"properties":{"coalpetro":29825700,"foodfarm":298046,"crudemat":9600841,"chem":1140716,"manu":3307423,"other":0,"total":44172726}},{"type":"LineString","arcs":[738],"properties":{"coalpetro":29171173,"foodfarm":298046,"crudemat":7622312,"chem":1077601,"manu":2695038,"other":0,"total":40864170}},{"type":"LineString","arcs":[739],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[740],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[741],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[742],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[743],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[744],"properties":{"coalpetro":301479,"foodfarm":0,"crudemat":1138805,"chem":741355,"manu":0,"other":0,"total":2181639}},{"type":"LineString","arcs":[745],"properties":{"coalpetro":301479,"foodfarm":0,"crudemat":1138805,"chem":741355,"manu":0,"other":0,"total":2181639}},{"type":"LineString","arcs":[746],"properties":{"coalpetro":22380685,"foodfarm":287574,"crudemat":1442809,"chem":794354,"manu":735787,"other":3460,"total":25644669}},{"type":"LineString","arcs":[747],"properties":{"coalpetro":301479,"foodfarm":0,"crudemat":1138805,"chem":740642,"manu":0,"other":0,"total":2180926}},{"type":"LineString","arcs":[748],"properties":{"coalpetro":301479,"foodfarm":0,"crudemat":1138805,"chem":740642,"manu":0,"other":0,"total":2180926}},{"type":"LineString","arcs":[749],"properties":{"coalpetro":22380685,"foodfarm":287574,"crudemat":1442809,"chem":794354,"manu":735787,"other":3460,"total":25644669}},{"type":"LineString","arcs":[750],"properties":{"coalpetro":38880788,"foodfarm":8051045,"crudemat":7119155,"chem":4223648,"manu":11322175,"other":1514703,"total":71111514}},{"type":"LineString","arcs":[751],"properties":{"coalpetro":38809736,"foodfarm":8051045,"crudemat":6942600,"chem":4223648,"manu":11321379,"other":1514618,"total":70863026}},{"type":"LineString","arcs":[752],"properties":{"coalpetro":38809736,"foodfarm":8051045,"crudemat":6942600,"chem":4223648,"manu":11321379,"other":1514618,"total":70863026}},{"type":"LineString","arcs":[753],"properties":{"coalpetro":28042299,"foodfarm":3255131,"crudemat":6381436,"chem":1982943,"manu":8090432,"other":1072163,"total":48824404}},{"type":"LineString","arcs":[754],"properties":{"coalpetro":28041283,"foodfarm":3255131,"crudemat":6381436,"chem":1982943,"manu":8086581,"other":1072163,"total":48819537}},{"type":"LineString","arcs":[755],"properties":{"coalpetro":28311163,"foodfarm":3252131,"crudemat":6381436,"chem":1921097,"manu":8086581,"other":1072163,"total":49024571}},{"type":"LineString","arcs":[756],"properties":{"coalpetro":28311163,"foodfarm":3252131,"crudemat":6381436,"chem":1921097,"manu":8086581,"other":1072163,"total":49024571}},{"type":"LineString","arcs":[757],"properties":{"coalpetro":24894910,"foodfarm":3156328,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45451788}},{"type":"LineString","arcs":[758],"properties":{"coalpetro":24894910,"foodfarm":3156328,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45451788}},{"type":"LineString","arcs":[759],"properties":{"coalpetro":24894910,"foodfarm":3156328,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45451788}},{"type":"LineString","arcs":[760],"properties":{"coalpetro":92162,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":92162}},{"type":"LineString","arcs":[761],"properties":{"coalpetro":148153,"foodfarm":0,"crudemat":390022,"chem":0,"manu":1890,"other":0,"total":540065}},{"type":"LineString","arcs":[762],"properties":{"coalpetro":148153,"foodfarm":0,"crudemat":390022,"chem":0,"manu":1890,"other":0,"total":540065}},{"type":"LineString","arcs":[763],"properties":{"coalpetro":148153,"foodfarm":0,"crudemat":390022,"chem":0,"manu":1890,"other":0,"total":540065}},{"type":"LineString","arcs":[764],"properties":{"coalpetro":148153,"foodfarm":0,"crudemat":0,"chem":0,"manu":1890,"other":0,"total":150043}},{"type":"LineString","arcs":[765],"properties":{"coalpetro":92162,"foodfarm":0,"crudemat":0,"chem":0,"manu":1700,"other":0,"total":93862}},{"type":"LineString","arcs":[766],"properties":{"coalpetro":92162,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":92162}},{"type":"LineString","arcs":[767],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[768],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[769],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[770],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[771],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[772],"properties":{"coalpetro":24894910,"foodfarm":3139117,"crudemat":6568887,"chem":1921097,"manu":8047372,"other":1072163,"total":45643546}},{"type":"LineString","arcs":[773],"properties":{"coalpetro":24894910,"foodfarm":3139117,"crudemat":6568887,"chem":1921097,"manu":8047372,"other":1072163,"total":45643546}},{"type":"LineString","arcs":[774],"properties":{"coalpetro":313845,"foodfarm":72300,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":964917}},{"type":"LineString","arcs":[775],"properties":{"coalpetro":24894910,"foodfarm":3139117,"crudemat":6568887,"chem":1921097,"manu":8047372,"other":1072163,"total":45643546}},{"type":"LineString","arcs":[776],"properties":{"coalpetro":1747445,"foodfarm":2345564,"crudemat":8764234,"chem":110195,"manu":2259786,"other":253946,"total":15481170}},{"type":"LineString","arcs":[777],"properties":{"coalpetro":1747445,"foodfarm":2345564,"crudemat":8764234,"chem":110195,"manu":2259786,"other":253946,"total":15481170}},{"type":"LineString","arcs":[778],"properties":{"coalpetro":1691220,"foodfarm":1975756,"crudemat":8514749,"chem":198979,"manu":2352442,"other":274512,"total":15007658}},{"type":"LineString","arcs":[779],"properties":{"coalpetro":76087,"foodfarm":380614,"crudemat":249485,"chem":0,"manu":85172,"other":0,"total":791358}},{"type":"LineString","arcs":[780],"properties":{"coalpetro":76087,"foodfarm":380614,"crudemat":249485,"chem":0,"manu":85172,"other":0,"total":791358}},{"type":"LineString","arcs":[781],"properties":{"coalpetro":76087,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":76087}},{"type":"LineString","arcs":[782],"properties":{"coalpetro":76087,"foodfarm":380614,"crudemat":249485,"chem":0,"manu":85172,"other":0,"total":791358}},{"type":"LineString","arcs":[783],"properties":{"coalpetro":76087,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":76087}},{"type":"LineString","arcs":[784],"properties":{"coalpetro":1691220,"foodfarm":1975756,"crudemat":8514749,"chem":198979,"manu":2352442,"other":274512,"total":15007658}},{"type":"LineString","arcs":[785],"properties":{"coalpetro":1659914,"foodfarm":1938123,"crudemat":8260154,"chem":198979,"manu":2328592,"other":254648,"total":14640410}},{"type":"LineString","arcs":[786],"properties":{"coalpetro":1659914,"foodfarm":1938123,"crudemat":8260154,"chem":198979,"manu":2328592,"other":254648,"total":14640410}},{"type":"LineString","arcs":[787],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2326985,"other":226150,"total":11109703}},{"type":"LineString","arcs":[788],"properties":{"coalpetro":10509043,"foodfarm":1947501,"crudemat":41600517,"chem":277327,"manu":3503843,"other":141608,"total":57979839}},{"type":"LineString","arcs":[789],"properties":{"coalpetro":10380609,"foodfarm":1947501,"crudemat":43557517,"chem":294038,"manu":3089092,"other":150323,"total":59419080}},{"type":"LineString","arcs":[790],"properties":{"coalpetro":10380609,"foodfarm":1947501,"crudemat":43557517,"chem":294038,"manu":3089092,"other":150323,"total":59419080}},{"type":"LineString","arcs":[791],"properties":{"coalpetro":10378733,"foodfarm":1947501,"crudemat":43557517,"chem":294038,"manu":3089825,"other":150323,"total":59417937}},{"type":"LineString","arcs":[792],"properties":{"coalpetro":10341457,"foodfarm":1936659,"crudemat":41922982,"chem":241589,"manu":3009110,"other":150477,"total":57602274}},{"type":"LineString","arcs":[793],"properties":{"coalpetro":10380609,"foodfarm":1947501,"crudemat":43431150,"chem":294038,"manu":3089092,"other":150323,"total":59292713}},{"type":"LineString","arcs":[794],"properties":{"coalpetro":10380609,"foodfarm":1947501,"crudemat":43431150,"chem":294038,"manu":3089092,"other":150323,"total":59292713}},{"type":"LineString","arcs":[795],"properties":{"coalpetro":10509043,"foodfarm":1947501,"crudemat":43464418,"chem":277327,"manu":3508803,"other":141608,"total":59848700}},{"type":"LineString","arcs":[796],"properties":{"coalpetro":10509043,"foodfarm":1947501,"crudemat":43477838,"chem":294038,"manu":3536610,"other":166637,"total":59931667}},{"type":"LineString","arcs":[797],"properties":{"coalpetro":10509043,"foodfarm":1947501,"crudemat":43477838,"chem":294038,"manu":3536610,"other":166637,"total":59931667}},{"type":"LineString","arcs":[798],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2326987,"other":226150,"total":11109705}},{"type":"LineString","arcs":[799],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2418485,"other":231221,"total":11206274}},{"type":"LineString","arcs":[800],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2418485,"other":231221,"total":11206274}},{"type":"LineString","arcs":[801],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2418485,"other":231221,"total":11206274}},{"type":"LineString","arcs":[802],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2326987,"other":226150,"total":11109705}},{"type":"LineString","arcs":[803],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2326987,"other":226150,"total":11109705}},{"type":"LineString","arcs":[804],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2326987,"other":226150,"total":11109705}},{"type":"LineString","arcs":[805],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2326987,"other":226150,"total":11109705}},{"type":"LineString","arcs":[806],"properties":{"coalpetro":17652446,"foodfarm":12669,"crudemat":614759,"chem":2066658,"manu":227810,"other":0,"total":20574342}},{"type":"LineString","arcs":[807],"properties":{"coalpetro":17468320,"foodfarm":12669,"crudemat":690768,"chem":2066658,"manu":227810,"other":0,"total":20466225}},{"type":"LineString","arcs":[808],"properties":{"coalpetro":17468320,"foodfarm":12669,"crudemat":690768,"chem":2066658,"manu":227810,"other":0,"total":20466225}},{"type":"LineString","arcs":[809],"properties":{"coalpetro":17468320,"foodfarm":12669,"crudemat":690768,"chem":2066658,"manu":227810,"other":0,"total":20466225}},{"type":"LineString","arcs":[810],"properties":{"coalpetro":17468320,"foodfarm":12669,"crudemat":690768,"chem":2066658,"manu":227810,"other":0,"total":20466225}},{"type":"LineString","arcs":[811],"properties":{"coalpetro":925709,"foodfarm":4360,"crudemat":184741,"chem":123700,"manu":18645,"other":0,"total":1257155}},{"type":"LineString","arcs":[812],"properties":{"coalpetro":16623820,"foodfarm":11676795,"crudemat":14238534,"chem":6269378,"manu":24848590,"other":2460316,"total":76117433}},{"type":"LineString","arcs":[813],"properties":{"coalpetro":26777457,"foodfarm":1907294,"crudemat":5670195,"chem":2742443,"manu":4618838,"other":318299,"total":42034526}},{"type":"LineString","arcs":[814],"properties":{"coalpetro":19840209,"foodfarm":498328,"crudemat":3175177,"chem":2016475,"manu":1056351,"other":134732,"total":26721272}},{"type":"LineString","arcs":[815],"properties":{"coalpetro":6297777,"foodfarm":621446,"crudemat":3167125,"chem":216760,"manu":301208,"other":6997,"total":10611313}},{"type":"LineString","arcs":[816],"properties":{"coalpetro":19840209,"foodfarm":498328,"crudemat":3175177,"chem":2016475,"manu":1056351,"other":134732,"total":26721272}},{"type":"LineString","arcs":[817],"properties":{"coalpetro":19802874,"foodfarm":313319,"crudemat":3172122,"chem":1994917,"manu":942115,"other":85215,"total":26310562}},{"type":"LineString","arcs":[818],"properties":{"coalpetro":19787669,"foodfarm":12669,"crudemat":4058569,"chem":2361293,"manu":1033093,"other":449,"total":27253742}},{"type":"LineString","arcs":[819],"properties":{"coalpetro":6305126,"foodfarm":621446,"crudemat":4538206,"chem":615548,"manu":862167,"other":6997,"total":12949490}},{"type":"LineString","arcs":[820],"properties":{"coalpetro":19774256,"foodfarm":12669,"crudemat":4058569,"chem":2361293,"manu":1075376,"other":449,"total":27282612}},{"type":"LineString","arcs":[821],"properties":{"coalpetro":19763893,"foodfarm":12669,"crudemat":3193912,"chem":2361293,"manu":581693,"other":0,"total":25913460}},{"type":"LineString","arcs":[822],"properties":{"coalpetro":19497705,"foodfarm":12669,"crudemat":2669496,"chem":2173224,"manu":581693,"other":0,"total":24934787}},{"type":"LineString","arcs":[823],"properties":{"coalpetro":6305126,"foodfarm":621446,"crudemat":4538206,"chem":615548,"manu":862167,"other":6997,"total":12949490}},{"type":"LineString","arcs":[824],"properties":{"coalpetro":6305126,"foodfarm":621446,"crudemat":4538206,"chem":615548,"manu":862167,"other":6997,"total":12949490}},{"type":"LineString","arcs":[825],"properties":{"coalpetro":5123784,"foodfarm":411102,"crudemat":587738,"chem":453154,"manu":207580,"other":461357,"total":7244715}},{"type":"LineString","arcs":[826],"properties":{"coalpetro":5123784,"foodfarm":411102,"crudemat":587738,"chem":453154,"manu":207620,"other":461357,"total":7244755}},{"type":"LineString","arcs":[827],"properties":{"coalpetro":39103121,"foodfarm":12584214,"crudemat":13657999,"chem":7652729,"manu":25973107,"other":2699363,"total":101670533}},{"type":"LineString","arcs":[828],"properties":{"coalpetro":930645,"foodfarm":4360,"crudemat":193097,"chem":123700,"manu":18645,"other":0,"total":1270447}},{"type":"LineString","arcs":[829],"properties":{"coalpetro":19494718,"foodfarm":12669,"crudemat":2669496,"chem":2173224,"manu":581693,"other":0,"total":24931800}},{"type":"LineString","arcs":[830],"properties":{"coalpetro":18104021,"foodfarm":12669,"crudemat":1438606,"chem":2091052,"manu":227822,"other":0,"total":21874170}},{"type":"LineString","arcs":[831],"properties":{"coalpetro":18008082,"foodfarm":12669,"crudemat":1438606,"chem":2091052,"manu":227822,"other":0,"total":21778231}},{"type":"LineString","arcs":[832],"properties":{"coalpetro":5123784,"foodfarm":411102,"crudemat":587738,"chem":453154,"manu":207580,"other":461357,"total":7244715}},{"type":"LineString","arcs":[833],"properties":{"coalpetro":17468320,"foodfarm":12669,"crudemat":722000,"chem":2066658,"manu":227810,"other":0,"total":20497457}},{"type":"LineString","arcs":[834],"properties":{"coalpetro":17428727,"foodfarm":12669,"crudemat":722000,"chem":2066658,"manu":227810,"other":0,"total":20457864}},{"type":"LineString","arcs":[835],"properties":{"coalpetro":17428727,"foodfarm":12669,"crudemat":722000,"chem":2066658,"manu":227810,"other":0,"total":20457864}},{"type":"LineString","arcs":[836],"properties":{"coalpetro":17428727,"foodfarm":12669,"crudemat":722000,"chem":2066658,"manu":227810,"other":0,"total":20457864}},{"type":"LineString","arcs":[837],"properties":{"coalpetro":5123784,"foodfarm":411102,"crudemat":587738,"chem":453154,"manu":207580,"other":461357,"total":7244715}},{"type":"LineString","arcs":[838],"properties":{"coalpetro":5123784,"foodfarm":411102,"crudemat":587738,"chem":453154,"manu":207580,"other":461357,"total":7244715}},{"type":"LineString","arcs":[839],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[840],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[841],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[842],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[843],"properties":{"coalpetro":6257482,"foodfarm":11117,"crudemat":4829981,"chem":757374,"manu":825525,"other":6997,"total":12688476}},{"type":"LineString","arcs":[844],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[845],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[846],"properties":{"coalpetro":17846099,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21451285}},{"type":"LineString","arcs":[847],"properties":{"coalpetro":17846099,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21451285}},{"type":"LineString","arcs":[848],"properties":{"coalpetro":17652446,"foodfarm":12669,"crudemat":614759,"chem":2066658,"manu":227810,"other":0,"total":20574342}},{"type":"LineString","arcs":[849],"properties":{"coalpetro":17652446,"foodfarm":12669,"crudemat":614759,"chem":2066658,"manu":227810,"other":0,"total":20574342}},{"type":"LineString","arcs":[850],"properties":{"coalpetro":17652446,"foodfarm":12669,"crudemat":614759,"chem":2066658,"manu":227810,"other":0,"total":20574342}},{"type":"LineString","arcs":[851],"properties":{"coalpetro":16879950,"foodfarm":11669303,"crudemat":13890152,"chem":6470263,"manu":24918364,"other":2460316,"total":76288348}},{"type":"LineString","arcs":[852],"properties":{"coalpetro":17788106,"foodfarm":11679003,"crudemat":13900152,"chem":6492353,"manu":24918538,"other":2460316,"total":77238468}},{"type":"LineString","arcs":[853],"properties":{"coalpetro":16844467,"foodfarm":11669303,"crudemat":13877481,"chem":6467466,"manu":24918364,"other":2460316,"total":76237397}},{"type":"LineString","arcs":[854],"properties":{"coalpetro":9683165,"foodfarm":4360,"crudemat":116688,"chem":1407350,"manu":221135,"other":0,"total":11432698}},{"type":"LineString","arcs":[855],"properties":{"coalpetro":9683165,"foodfarm":4360,"crudemat":116688,"chem":1407350,"manu":221135,"other":0,"total":11432698}},{"type":"LineString","arcs":[856],"properties":{"coalpetro":9683165,"foodfarm":4360,"crudemat":116688,"chem":1407350,"manu":221135,"other":0,"total":11432698}},{"type":"LineString","arcs":[857],"properties":{"coalpetro":925709,"foodfarm":4360,"crudemat":184741,"chem":123705,"manu":18645,"other":0,"total":1257160}},{"type":"LineString","arcs":[858],"properties":{"coalpetro":10566480,"foodfarm":4360,"crudemat":116688,"chem":1452458,"manu":220472,"other":0,"total":12360458}},{"type":"LineString","arcs":[859],"properties":{"coalpetro":10693863,"foodfarm":4360,"crudemat":116688,"chem":1452458,"manu":220472,"other":0,"total":12487841}},{"type":"LineString","arcs":[860],"properties":{"coalpetro":9683165,"foodfarm":4360,"crudemat":116688,"chem":1407350,"manu":221135,"other":0,"total":11432698}},{"type":"LineString","arcs":[861],"properties":{"coalpetro":17348668,"foodfarm":12669,"crudemat":1246979,"chem":2066658,"manu":227810,"other":0,"total":20902784}},{"type":"LineString","arcs":[862],"properties":{"coalpetro":16595232,"foodfarm":12669,"crudemat":1246979,"chem":2004343,"manu":227810,"other":0,"total":20087033}},{"type":"LineString","arcs":[863],"properties":{"coalpetro":15065932,"foodfarm":12669,"crudemat":1140121,"chem":1865260,"manu":227810,"other":0,"total":18311792}},{"type":"LineString","arcs":[864],"properties":{"coalpetro":15065932,"foodfarm":12669,"crudemat":1140121,"chem":1865260,"manu":227810,"other":0,"total":18311792}},{"type":"LineString","arcs":[865],"properties":{"coalpetro":16257986,"foodfarm":12669,"crudemat":1887962,"chem":1922438,"manu":380441,"other":0,"total":20461496}},{"type":"LineString","arcs":[866],"properties":{"coalpetro":11264430,"foodfarm":15283,"crudemat":1075812,"chem":1452458,"manu":220472,"other":0,"total":14028455}},{"type":"LineString","arcs":[867],"properties":{"coalpetro":11264430,"foodfarm":15283,"crudemat":1075812,"chem":1452458,"manu":220472,"other":0,"total":14028455}},{"type":"LineString","arcs":[868],"properties":{"coalpetro":11264430,"foodfarm":15283,"crudemat":1075812,"chem":1452458,"manu":220472,"other":0,"total":14028455}},{"type":"LineString","arcs":[869],"properties":{"coalpetro":10566480,"foodfarm":4360,"crudemat":116688,"chem":1452458,"manu":220472,"other":0,"total":12360458}},{"type":"LineString","arcs":[870],"properties":{"coalpetro":9683165,"foodfarm":4360,"crudemat":116688,"chem":1407350,"manu":221135,"other":0,"total":11432698}},{"type":"LineString","arcs":[871],"properties":{"coalpetro":10378065,"foodfarm":15283,"crudemat":116688,"chem":1407350,"manu":221135,"other":0,"total":12138521}},{"type":"LineString","arcs":[872],"properties":{"coalpetro":12168482,"foodfarm":14964,"crudemat":192700,"chem":209264,"manu":249348,"other":17408,"total":12852166}},{"type":"LineString","arcs":[873],"properties":{"coalpetro":9547805,"foodfarm":0,"crudemat":265453,"chem":1404363,"manu":231844,"other":0,"total":11449465}},{"type":"LineString","arcs":[874],"properties":{"coalpetro":6933888,"foodfarm":0,"crudemat":264524,"chem":1082389,"manu":384656,"other":0,"total":8665457}},{"type":"LineString","arcs":[875],"properties":{"coalpetro":6933888,"foodfarm":0,"crudemat":264524,"chem":1082389,"manu":384656,"other":0,"total":8665457}},{"type":"LineString","arcs":[876],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[877],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[878],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[879],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[880],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[881],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[882],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[883],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[884],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[885],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[886],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[887],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[888],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[889],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[890],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[891],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[892],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[893],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[894],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[895],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[896],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[897],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[898],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[899],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[900],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[901],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[902],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[903],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[904],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[905],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":0,"other":0,"total":64037}},{"type":"LineString","arcs":[906],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":0,"other":0,"total":64037}},{"type":"LineString","arcs":[907],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":0,"other":0,"total":64037}},{"type":"LineString","arcs":[908],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":44423,"chem":0,"manu":0,"other":0,"total":865363}},{"type":"LineString","arcs":[909],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":44423,"chem":0,"manu":0,"other":0,"total":865363}},{"type":"LineString","arcs":[910],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":835363}},{"type":"LineString","arcs":[911],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":835363}},{"type":"LineString","arcs":[912],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":835363}},{"type":"LineString","arcs":[913],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[914],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[915],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[916],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[917],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[918],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[919],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[920],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[921],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[922],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[923],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[924],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[925],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[926],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[927],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[928],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[929],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[930],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[931],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[932],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[933],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[934],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[935],"properties":{"coalpetro":5964266,"foodfarm":0,"crudemat":221453,"chem":1082389,"manu":112251,"other":0,"total":7380359}},{"type":"LineString","arcs":[936],"properties":{"coalpetro":5964266,"foodfarm":0,"crudemat":221453,"chem":1082389,"manu":112251,"other":0,"total":7380359}},{"type":"LineString","arcs":[937],"properties":{"coalpetro":5964266,"foodfarm":0,"crudemat":221453,"chem":1082389,"manu":112251,"other":0,"total":7380359}},{"type":"LineString","arcs":[938],"properties":{"coalpetro":5964266,"foodfarm":0,"crudemat":221453,"chem":1082389,"manu":112251,"other":0,"total":7380359}},{"type":"LineString","arcs":[939],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[940],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[941],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[942],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[943],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[944],"properties":{"coalpetro":1253260,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":1655132}},{"type":"LineString","arcs":[945],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[946],"properties":{"coalpetro":5964266,"foodfarm":0,"crudemat":221453,"chem":1082389,"manu":112251,"other":0,"total":7380359}},{"type":"LineString","arcs":[947],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[948],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[949],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[950],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[951],"properties":{"coalpetro":308025,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":449422}},{"type":"LineString","arcs":[952],"properties":{"coalpetro":758635,"foodfarm":0,"crudemat":44423,"chem":0,"manu":0,"other":0,"total":803058}},{"type":"LineString","arcs":[953],"properties":{"coalpetro":758635,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":810912}},{"type":"LineString","arcs":[954],"properties":{"coalpetro":758635,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":810912}},{"type":"LineString","arcs":[955],"properties":{"coalpetro":758635,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":810912}},{"type":"LineString","arcs":[956],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":873217}},{"type":"LineString","arcs":[957],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":873217}},{"type":"LineString","arcs":[958],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":71891}},{"type":"LineString","arcs":[959],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":71891}},{"type":"LineString","arcs":[960],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":71891}},{"type":"LineString","arcs":[961],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":71891}},{"type":"LineString","arcs":[962],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":71891}},{"type":"LineString","arcs":[963],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":71891}},{"type":"LineString","arcs":[964],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":71891}},{"type":"LineString","arcs":[965],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[966],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[967],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[968],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[969],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[970],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[971],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[972],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[973],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[974],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[975],"properties":{"coalpetro":2632064,"foodfarm":1079804,"crudemat":4632444,"chem":138505,"manu":512513,"other":56198,"total":9051528}},{"type":"LineString","arcs":[976],"properties":{"coalpetro":5202434,"foodfarm":2246631,"crudemat":41546620,"chem":225470,"manu":3272090,"other":244345,"total":52737590}},{"type":"LineString","arcs":[977],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[978],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[979],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[980],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[981],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[982],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[983],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[984],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[985],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[986],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[987],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[988],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[989],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[990],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[991],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[992],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[993],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[994],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[995],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[996],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[997],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[998],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[999],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1000],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1001],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1002],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1003],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1004],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1005],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1006],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1007],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1008],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1009],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1010],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1011],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1012],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1013],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1014],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1015],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1016],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1017],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1018],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1019],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1020],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1021],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1022],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1023],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1024],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1025],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1026],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1027],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1028],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1029],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1030],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1031],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1032],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1033],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1034],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1035],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1036],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1037],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1038],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1039],"properties":{"coalpetro":75920,"foodfarm":21564,"crudemat":7566916,"chem":9428,"manu":1098431,"other":91422,"total":8873519}},{"type":"LineString","arcs":[1040],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1041],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1042],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1043],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1044],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"MultiLineString","arcs":[[1045],[1046]],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1047],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1048],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1049],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1050],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1051],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1052],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1053],"properties":{"coalpetro":25709325,"foodfarm":16233766,"crudemat":23099220,"chem":7773436,"manu":7888365,"other":0,"total":80704112}},{"type":"LineString","arcs":[1054],"properties":{"coalpetro":27323023,"foodfarm":10314095,"crudemat":11497757,"chem":6142189,"manu":5399748,"other":0,"total":60676812}},{"type":"LineString","arcs":[1055],"properties":{"coalpetro":7481855,"foodfarm":2765936,"crudemat":4816260,"chem":1273516,"manu":2646324,"other":0,"total":18983909}},{"type":"LineString","arcs":[1056],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1057],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1058],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1059],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1060],"properties":{"coalpetro":1491476,"foodfarm":0,"crudemat":0,"chem":44435,"manu":0,"other":0,"total":1535911}},{"type":"LineString","arcs":[1061],"properties":{"coalpetro":92162,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":92162}},{"type":"LineString","arcs":[1062],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1063],"properties":{"coalpetro":37999146,"foodfarm":7795696,"crudemat":5795838,"chem":3895353,"manu":10886787,"other":1051769,"total":67424589}},{"type":"LineString","arcs":[1064],"properties":{"coalpetro":6223565,"foodfarm":523927,"crudemat":4491815,"chem":614844,"manu":825513,"other":6997,"total":12686673}},{"type":"LineString","arcs":[1065],"properties":{"coalpetro":209586,"foodfarm":50648,"crudemat":17368019,"chem":147685,"manu":955321,"other":152,"total":18731411}},{"type":"LineString","arcs":[1066],"properties":{"coalpetro":89262,"foodfarm":12584214,"crudemat":8325687,"chem":7652729,"manu":25973107,"other":2699363,"total":101670533}},{"type":"LineString","arcs":[1067],"properties":{"coalpetro":9585294,"foodfarm":4360,"crudemat":116688,"chem":1423256,"manu":225915,"other":0,"total":11355513}},{"type":"LineString","arcs":[1068],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1069],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"MultiLineString","arcs":[[1070],[1071]],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1072],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1073],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1074],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1075],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1076],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1077],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1078],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1079],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1080],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1081],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1082],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1083],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1084],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1085],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1086],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1087],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1088],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1089],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}}]}},"arcs":[[[99884,14989],[-50,136]],[[99947,14855],[-63,134]],[[99996,14742],[-49,113]],[[99999,14522],[-3,220]],[[16620,12426],[-13,-50],[-2,-54],[-2,-24],[-6,-19],[-16,-15],[-20,2],[-19,16],[-19,24],[-32,14],[-44,-25],[-33,-3],[-45,0],[-30,-16],[-16,-42],[-12,-51],[-16,-29],[-41,-22],[-71,-5],[-34,9],[-25,23],[-16,39],[-14,51],[-16,43],[-29,33],[-15,16],[-20,8],[-31,-5],[-30,-22],[-31,-4],[-18,22],[-14,23],[-7,30],[-10,33],[-23,8],[-32,-11],[-33,-29],[-21,-14],[-36,1],[-27,-11],[-29,-8],[-27,8]],[[18844,95663],[-8,-9]],[[18538,94768],[306,895]],[[3347,98044],[-7,-27],[237,-501]],[[3996,97428],[-419,88]],[[3996,97428],[469,710]],[[13925,90694],[1176,133]],[[15101,90827],[1463,1409]],[[16564,92236],[425,386]],[[17527,93390],[623,1091]],[[18412,94395],[126,373]],[[18150,94481],[175,-16]],[[18325,94465],[87,-70]],[[16989,92622],[538,768]],[[10116,91456],[-211,851]],[[10151,91308],[-35,148]],[[10167,91250],[-16,58]],[[10239,90620],[-72,630]],[[10339,90113],[-87,446]],[[10413,89766],[-74,347]],[[10592,89519],[-179,247]],[[10643,89428],[-51,91]],[[10634,93025],[174,-477]],[[10808,92548],[404,-262]],[[11212,92286],[332,-642]],[[10801,89261],[-158,167]],[[10852,89222],[-51,39]],[[11045,89109],[-193,113]],[[11544,91644],[602,-795],[230,-459]],[[12376,90390],[916,328],[633,-24]],[[8401,60729],[17,928],[-94,1170]],[[8289,63830],[254,495]],[[8324,62827],[-35,1003]],[[4465,98138],[1066,-132]],[[5531,98006],[580,-418],[415,-567],[160,-159],[310,87],[297,-96]],[[7293,96853],[496,-365]],[[7789,96488],[364,-280]],[[8410,95537],[-621,951]],[[8794,94460],[-258,853]],[[8153,96208],[1122,-449],[1075,-893]],[[9905,92307],[-1111,2153]],[[10350,94866],[124,-945]],[[10474,93921],[23,-458]],[[10497,93463],[137,-438]],[[53101,61698],[60,40],[40,24],[27,-23],[22,35],[-4,60],[36,68]],[[52735,61164],[7,16],[28,27],[23,39],[17,45],[15,50],[21,43],[12,12],[13,25],[9,53],[18,40],[32,8],[32,9],[34,-4],[9,51],[4,52],[24,43],[36,28],[32,-3]],[[53282,61902],[103,66],[37,-10],[26,-6],[24,-20]],[[53481,61921],[20,-21],[24,-7],[36,11],[32,40],[24,37],[35,17],[14,31],[4,63],[18,34],[27,15],[40,-14],[23,-23],[19,-39],[12,-42],[16,-19],[19,-11],[16,1],[11,7],[19,34]],[[53897,62049],[12,21],[22,13],[28,-4],[35,-39],[13,-30],[7,-27],[2,-33],[-4,-31],[8,-46],[19,-52],[24,-27],[31,-5],[25,-13],[12,-19]],[[99547,15774],[-61,142]],[[99597,15660],[-50,114]],[[99677,15473],[-80,187]],[[99748,15306],[-71,167]],[[99834,15125],[-86,181]],[[98707,16184],[-40,81]],[[98742,16133],[-35,51]],[[98776,16075],[-34,58]],[[98806,16027],[-30,48]],[[98936,15991],[-130,36]],[[99021,15985],[-85,6]],[[99117,15970],[-96,15]],[[99222,15969],[-105,1]],[[99353,15940],[-131,29]],[[99486,15916],[-133,24]],[[85211,67101],[-936,2001]],[[86090,65882],[-879,1219]],[[86462,64954],[-372,928]],[[63630,38311],[-13,3],[-40,8],[-85,19],[-22,-18]],[[63866,38253],[-4,0],[-8,-3],[-18,-10],[-14,0],[-12,-15],[-20,-5],[-22,-12],[-10,5],[-10,0],[-10,5],[-7,-1],[-13,4],[-17,1],[-14,9],[-14,17],[-9,20],[-14,36],[-20,7]],[[64676,37884],[-4,1],[-5,2],[-5,5],[-38,28],[-5,9],[-24,29],[-38,41],[-29,29],[-41,21],[-32,31],[-29,10],[-10,14],[-32,11],[-21,20],[-21,8],[-24,22],[-5,15],[-13,4],[-44,24],[-44,27],[-15,22],[-37,55],[-19,19],[-44,5],[-9,-11],[-3,-12],[-15,-16],[-26,-10],[-20,12],[-33,-12],[-7,-11],[-18,-8],[-17,3],[-11,-2],[-36,-17],[-18,0],[-9,1]],[[64860,37727],[-9,9],[-25,43],[-32,21],[-5,55],[-15,29],[-3,10],[-5,29],[-14,9],[-45,-57],[-18,5]],[[64968,37449],[-5,9],[-7,9],[-10,10],[-17,38],[-33,50],[-14,11],[-11,20],[-5,20],[8,36],[-2,29],[-7,30],[-5,16]],[[65007,37231],[0,14],[-7,49],[2,14],[-4,34],[0,17],[-2,17],[0,15],[-11,27],[-7,13]],[[68280,67205],[-9,-10],[-9,-8],[-13,0],[-4,7],[12,25],[9,17],[12,13],[7,14],[0,8],[-8,12],[-5,1],[-6,-14],[-10,-23],[-10,-8],[-12,-3],[-7,8],[-7,10],[-3,19],[-4,14],[-1,14],[1,17],[6,16],[4,12],[8,20],[9,17],[10,13],[15,4],[13,-6],[11,-3],[6,3],[-1,14],[-5,18],[-2,11],[-1,21],[1,10],[4,8],[3,9],[6,12],[7,14],[11,6],[6,0]],[[63374,56873],[9,-51],[13,-52],[7,-53],[-5,-54],[-21,-47],[-26,-38],[-33,-5],[-35,2],[-35,34],[-24,48],[-6,60],[8,50],[15,49],[22,49],[8,17]],[[63505,56854],[-10,41],[-17,45],[-24,39],[-31,24],[-34,7],[-26,-28],[-1,-57],[12,-52]],[[68513,66499],[2,0],[3,1],[4,3],[2,2],[1,3],[1,3],[0,3],[-2,6],[-1,3],[-2,2],[-5,6],[-3,1],[-2,0],[-2,-2],[-2,-3],[-4,-8],[-4,-4],[-5,-4],[-3,-1],[-2,0],[-2,1],[-1,2],[-2,3],[0,2],[-1,3],[1,3],[0,4],[0,4],[-1,21],[-1,6],[-1,6],[-1,6],[-2,7],[-2,4],[-4,2],[-4,0],[-4,0],[-3,0],[-2,-2],[-3,-2],[-4,-5],[-3,-4],[-3,-4],[-3,-5],[-5,-6],[-2,-4],[-3,-2],[-3,-1],[-6,-4],[-3,-2],[-3,-3],[0,-2],[0,-14],[0,-2],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-5,0],[-6,-1],[-7,-1],[-4,0],[-6,-1],[-5,1],[-3,1],[-2,2],[-3,4],[-4,3],[-1,5],[-2,5],[-2,5],[-3,7],[-1,6],[-2,35],[-1,18],[-1,3],[-3,4],[-1,1],[-2,2],[-3,3],[-3,4],[-3,4],[0,1],[-1,3],[0,4],[0,2],[1,3],[8,10],[4,5],[10,9],[8,7],[5,5],[3,6],[1,6],[0,5],[-3,8],[-9,25],[-4,6],[-3,5],[-4,4],[-5,2],[-20,3],[-11,2],[-4,1],[-2,4],[-2,6],[-1,4],[1,6],[2,3],[3,5],[4,2],[36,11],[4,2],[5,3],[2,4],[0,4],[1,6],[0,11],[-2,35],[-2,9],[-3,9],[-3,7],[-2,10],[0,7],[2,5],[2,3],[2,2],[2,1],[6,1],[6,2],[5,4],[1,5],[0,3],[-2,5],[-4,8],[-3,6],[-3,8],[-2,7],[-1,6],[1,7],[4,4],[4,3],[15,16],[14,19],[2,4],[3,12],[4,11],[16,60],[0,9],[-6,8],[-7,6],[-8,4],[-6,-3],[-7,-4],[-4,-4],[-2,-6],[-1,-5],[1,-39],[0,-9],[-2,-3],[-2,-1],[-3,-1],[-1,1],[-3,4],[-4,4],[-2,9],[-6,23],[-3,7],[-7,6],[-6,1],[-5,-1],[-12,-2],[-5,-1],[-4,0],[-2,2],[-1,3],[0,2],[-1,14],[-1,9],[-1,5],[0,6],[1,7],[2,4],[8,3],[5,5],[1,1],[1,3],[-1,4],[-25,11],[-8,10],[-17,15],[-7,-1]],[[66056,56545],[14,-30],[11,-33],[4,-65],[1,-52],[-9,-55],[-9,-51],[-6,-55],[-9,-55],[-11,-53],[-14,-53],[-9,-50],[-17,-45],[-11,-54],[-2,-33]],[[65843,51564],[-9,19],[-3,32],[-3,56],[-8,44],[-12,51],[-12,50],[-27,41],[-25,30],[-25,40],[-27,34],[-18,31],[-14,48],[-21,38],[-9,53],[7,52],[4,57],[18,49],[18,46],[18,47],[12,51],[21,40],[28,33],[25,33],[21,38],[20,43],[12,49],[6,20]],[[62296,62531],[-2,-15],[-10,-2],[-2,-67]],[[62458,62310],[0,26],[-21,4],[-14,19],[-15,48],[-26,25],[-32,-15],[-21,-13],[-19,5],[-18,22],[-10,16]],[[62488,62017],[1,158],[-29,64],[-32,22],[-70,-38],[-41,16],[-28,40],[-10,58],[-7,59],[10,51]],[[63175,59166],[-3,7],[-3,53],[-23,40],[-32,2],[-27,-33],[-23,-23],[-34,-22],[-31,-11],[-26,19],[-20,32],[-16,43],[5,66],[59,50],[32,26],[30,17],[15,48],[-16,47],[-28,33],[-28,28],[-28,32],[-24,38],[-25,38],[-25,36],[-26,36],[-26,46],[-34,18],[-30,15],[-24,4],[-22,11],[-17,21],[-33,13],[-30,25],[-21,40],[-6,53],[8,56],[14,49],[23,40],[27,30],[34,7],[28,32],[0,57],[-37,56],[-4,73],[0,56],[3,56],[9,52],[-1,55],[-3,52],[-25,31],[-35,-10],[-33,1],[-32,-11],[-32,13],[-29,20],[-14,49],[5,57],[20,59],[19,140],[-30,42],[-38,41],[-44,36],[-26,42],[-9,53],[-34,122],[-19,198],[10,116],[23,52],[12,34],[15,41],[10,27],[6,30],[7,23],[7,20],[11,51],[7,55]],[[66066,62268],[3,42],[-18,23],[-39,20],[-14,7],[0,18],[20,3],[6,30],[2,19],[-3,19],[10,18],[10,8],[-2,26],[-23,37],[-7,19],[3,15],[1,14],[0,24],[-4,13],[-19,14],[-31,20],[-34,21],[-12,17],[-5,14],[-4,19],[-2,25],[-1,23],[1,29],[0,45],[1,26],[5,19],[9,27],[2,16],[-8,33],[-8,15],[-11,16],[-4,11],[-2,24],[-1,49],[-4,47],[-9,70],[-5,23],[-1,18],[6,22],[9,18],[10,27],[11,26],[22,31],[19,30],[13,28],[5,38],[3,51],[6,34],[6,16],[16,27],[11,27],[7,29],[1,28],[-3,33],[-22,49],[-24,70],[-6,46],[2,29],[-14,33],[-8,48],[-5,74],[-8,53],[2,34],[1,16],[2,41],[0,62],[-13,49],[-24,43],[-29,30],[-11,6],[-9,5],[-18,16],[-26,35],[-11,25],[3,39],[7,69],[3,43],[-1,36],[0,50],[-4,61],[-1,16],[-3,31],[-3,33],[-4,88],[-7,84],[-5,64],[6,82],[2,11],[3,16],[4,24],[6,16],[13,22],[31,51],[22,37],[4,34],[3,36],[7,17],[10,33],[2,36],[0,41],[3,37],[0,45],[-9,38],[-7,15],[-6,25],[-7,72],[-2,23],[-5,59],[-24,42],[-8,16],[-6,11],[-28,57],[-39,77],[-24,49],[-17,30],[-7,12],[-16,34],[-18,35],[-13,28],[-6,50],[-9,68],[-2,27],[-1,50],[3,49],[-2,13],[-2,13],[-5,23],[-4,17],[-3,12],[0,47],[3,10],[3,16],[8,24],[8,19],[10,24],[7,20],[4,16],[5,34],[10,55],[2,13],[4,23],[5,24],[10,34],[10,23],[10,19],[10,21],[3,22],[1,24],[-1,31],[-3,25],[1,12],[3,16],[6,23],[4,20],[2,23],[-4,32],[-2,22],[3,20],[6,19],[7,16],[7,28],[-2,30],[-7,40],[-8,38],[-2,19],[3,35],[6,37],[4,30],[0,25],[1,24],[3,19],[5,14],[8,16],[10,15],[8,16],[7,20],[1,14],[-2,16],[-5,16],[-5,18],[-6,21],[-2,18],[-1,23],[0,27],[-1,24],[4,29],[4,24],[3,29],[3,33],[4,22],[2,15],[3,32],[6,22],[9,9],[20,3],[16,5],[6,7],[8,12],[9,16],[12,30],[10,26],[11,23]],[[66066,62268],[-6,-22],[-2,-56],[11,-52],[8,-53],[-4,-19],[-12,-30],[-20,-25],[-20,-3],[-14,7],[-34,38]],[[63025,58818],[-10,25],[-5,29],[3,48],[19,40],[30,29],[27,29],[28,30],[30,28],[22,39],[6,51]],[[63271,56882],[14,27],[21,40],[7,53],[-12,53],[-23,40],[-5,55],[17,47],[22,45],[19,46],[15,51],[4,50],[-13,56],[-21,43],[-32,15],[-32,-10],[-32,-11],[-33,0],[-30,24],[-8,53],[17,52],[24,37],[33,31],[26,24],[22,44],[-1,56],[-19,43],[-29,30],[-33,10],[-32,-13],[-29,-15],[-25,-4],[-34,23],[-27,38],[1,54],[26,36],[30,30],[25,37],[27,36],[32,25],[22,40],[20,46],[5,56],[-7,45],[-26,36],[-24,31],[-30,27],[-32,13],[-28,34],[-10,56],[0,51],[-4,57],[-1,52],[-7,57],[-15,46],[-21,38]],[[63951,54944],[13,-7],[19,6],[26,39],[7,41],[1,58],[-10,55],[-6,55],[-5,56],[-5,57],[-10,46],[-3,60],[-16,46],[-2,54],[4,55],[9,56],[17,51],[23,56],[1,39],[-9,107],[-16,101],[-13,20],[-11,51],[5,61],[-25,81],[-37,94],[-24,102],[-8,76],[-15,70],[-57,38],[-36,-14],[-67,-108],[-39,-8],[-26,16],[-17,33],[-21,38],[-26,16],[-25,10],[-6,24],[-12,52],[-6,52],[-7,55],[-7,55],[-4,65]],[[62608,51667],[29,18],[29,30],[18,37],[21,46],[25,37],[29,28],[29,35],[31,23],[16,42],[5,55],[-9,68],[9,23],[28,33],[29,14],[25,35],[26,27],[31,21],[32,16],[34,11],[36,7],[27,13],[21,34],[-2,54],[0,53],[0,80],[11,29],[16,77],[-6,27],[-16,39],[-2,64],[3,59],[2,50],[10,49],[19,47],[17,37],[12,53],[14,53],[24,50],[26,37],[26,43],[18,33],[17,53],[13,50],[11,49],[5,43],[-1,50],[-8,54],[-14,68],[-29,25],[-65,26],[-7,25],[-8,21],[-23,38],[-4,57],[-16,94],[6,60],[24,25],[36,0],[50,-10],[11,8],[6,24],[-8,26],[-9,53],[9,53],[12,54],[13,50],[22,44],[17,53],[15,48],[21,44],[20,45],[32,28],[22,41],[10,51],[-5,54],[-7,53],[6,54],[30,38],[34,12],[31,18],[30,25],[45,74],[32,20],[20,-27],[12,-47],[3,-54],[-25,-35],[-28,-26],[-38,-26],[-15,-44],[5,-51],[17,-47],[25,-34],[30,8],[17,35],[23,57],[11,50],[19,51],[31,21],[26,31],[17,36],[8,57],[9,53],[9,22],[22,15],[30,-21],[31,-20],[15,-12]],[[65956,62068],[-4,3],[-30,5],[-28,-16],[-27,-93],[-4,-69],[-9,-58],[-18,-19],[-14,-27],[-1,-84],[-6,-40],[0,-23],[12,-43],[-7,-64],[2,-28],[8,-21],[9,-14],[20,2],[33,15],[13,-5],[11,-11],[2,-14],[0,-18],[1,-50],[-16,-39],[-54,-71],[-2,-29],[20,-28],[25,-4],[28,22],[18,-1],[3,-30],[34,-68],[28,-25],[20,17],[23,-4],[2,-41],[-10,-52],[-28,-58],[-15,-56],[3,-28],[10,-63],[26,-24],[23,-21],[15,-3],[37,23],[36,0],[23,-18],[17,-36],[24,-43],[39,-49],[98,106],[41,-12],[22,-18],[12,-29],[2,-53],[-15,-14],[-15,4],[-33,-18],[-22,3],[-23,-7],[-19,-39],[-14,-44],[2,-37],[15,-17],[5,-18],[10,-27],[59,-37],[17,-35],[6,-42],[4,-53],[-7,-52],[-18,-43],[-25,-41],[-15,-48],[-17,-47],[-20,-46],[-16,-48],[-18,-47],[-1,-38],[12,-66],[9,-54],[4,-54],[-3,-55],[-23,-39],[-12,-51],[-4,-54],[15,-48],[25,-45],[19,-36],[21,-44],[9,-55],[7,-53],[4,-55],[1,-55],[1,-54],[17,-45],[19,-47],[11,-50],[5,-54],[6,-56],[2,-57],[1,-55],[-5,-41],[-7,-4],[-21,3],[-43,13],[-25,8],[-18,-7],[-15,-1],[-27,-16],[-10,-15],[-16,-48],[-5,-56],[9,-35],[17,-22],[12,-28],[1,-26],[-6,-40],[-3,-46],[12,-45],[8,-36],[25,-66],[23,-47],[10,-45],[18,-49],[7,-46],[26,-47],[5,-47],[0,-51],[1,-54],[-13,-49],[-25,-31],[-14,-49],[-6,-42],[-20,-41],[-6,-52],[-9,-31],[-2,-43],[17,-51],[-4,-55],[-9,-53],[-13,-51],[-11,-52],[-18,-39],[-19,-54],[-18,-43],[-31,-28],[-16,-51],[-17,-48],[-14,-46],[-23,-42],[-25,-38],[-24,-32],[-13,-24],[-1,-27],[9,-31],[7,-45],[-7,-35],[-9,-41],[8,-25]],[[64034,54174],[-2,6],[-3,7],[-15,34],[-14,52],[-8,54],[-11,54],[-20,54],[-18,32],[-20,40],[-23,42],[-19,45],[-14,53],[-11,50],[1,53],[9,56],[21,53],[31,43],[33,42]],[[64087,54089],[-36,56]],[[64479,54083],[-32,-18],[-28,-21],[-34,-18],[-32,-14],[-29,-16],[-32,-8],[-34,-7],[-34,1],[-32,0],[-30,19],[-31,28],[-27,30],[-12,21]],[[64805,54279],[-10,-5],[-17,-7],[-32,-18],[-31,4],[-34,3],[-33,-18],[-27,-36],[-29,-31],[-27,-28],[-26,-24],[-31,-18],[-29,-18]],[[64977,54449],[-25,-35],[-25,-36]],[[65265,54175],[-19,78],[-21,23],[-6,51],[-12,52],[-15,47],[-24,43],[-30,24],[-33,3],[-33,-6],[-35,-3],[-31,-13],[-29,-25]],[[65540,54612],[-27,-35],[-24,-47],[-22,-35],[-30,-18],[-27,-17],[-22,2],[-27,-6],[-50,38],[-36,17],[-35,24],[-15,20],[-20,45],[-30,30],[-33,16],[-36,0],[-26,-23],[-29,-48],[-22,-40],[-27,-36],[-19,-23],[-4,-12],[-2,-15]],[[65989,55861],[-1,-21],[-12,-51],[-15,-50],[-19,-43],[-22,-38],[-19,-42],[-13,-46],[-11,-52],[-13,-52],[-8,-67],[-11,-39],[-12,-51],[-14,-48],[-13,-49],[-12,-50],[-20,-42],[-18,-47],[-18,-45],[-10,-52],[-8,-53],[-20,-42],[-18,-32],[-30,-38],[-35,-65]],[[58677,65290],[20,23],[26,24],[18,49],[-1,57],[-2,56],[12,56],[17,48],[27,44],[33,34],[25,9]],[[58538,64333],[-15,46],[-13,42],[9,51],[30,58],[6,40],[-14,45],[-15,41],[7,47],[39,45],[16,24],[6,45],[-12,72],[-10,65],[7,31],[28,34],[18,11],[32,40],[0,59],[-18,48],[-12,30],[7,33],[27,33]],[[58852,65690],[28,36],[19,44],[14,18],[18,5],[22,-7],[16,-25],[7,-23],[12,-38],[14,-9],[16,11],[16,16],[8,23],[6,35],[2,55],[9,41]],[[67234,80905],[1613,-725]],[[59068,65901],[15,28],[17,17],[50,10],[32,20],[28,28],[31,24],[34,5],[22,17],[16,28],[19,79],[24,21],[37,-20],[33,-16],[32,-3],[30,14],[21,20]],[[60184,66719],[6,-5],[14,-21],[17,-24],[13,-10],[56,-18],[28,-6],[44,5]],[[59516,66181],[4,4],[25,33],[19,44],[23,19],[28,0],[21,8],[18,34],[4,57],[-7,29],[6,41],[21,18],[25,-13],[34,-62],[21,-14],[31,12],[46,78],[26,33],[26,-10],[49,-48],[19,-7],[35,56],[8,76],[-2,49],[-1,47],[21,41],[34,35],[19,44],[23,50],[24,1],[34,-51],[34,-66]],[[58253,63949],[25,38],[30,22],[34,9],[34,3],[34,3],[33,12],[27,33],[25,43],[32,18],[16,32],[7,64],[-6,59],[-1,25]],[[60736,67568],[-25,7],[-64,31],[-43,68],[-9,40],[-5,69],[-15,50],[-27,29],[-42,10],[-43,24],[-23,70],[5,35],[14,26],[13,12],[30,6],[38,17],[40,39],[47,58],[14,53],[1,33],[-10,34],[-17,37],[-30,33],[-33,18],[-59,12],[-30,10],[-16,33],[3,29],[21,63],[92,105],[97,105],[22,72],[13,101],[6,81],[-7,59],[3,94],[-19,37]],[[60370,66640],[62,9],[29,6]],[[60473,66659],[5,1],[7,2]],[[60485,66662],[14,6],[10,-1],[7,6],[11,23],[6,16],[8,31],[3,11],[0,13],[-2,15],[-3,11],[2,13],[3,7],[5,4],[7,2],[6,2],[7,9],[3,16],[7,12],[14,15],[6,0],[11,-6],[6,1],[6,5],[6,12],[4,14],[8,28],[9,16],[7,2],[8,-3],[10,-10],[15,-21],[8,-19]],[[60697,66892],[36,7],[32,14],[31,23],[19,51],[4,30],[-25,62],[-21,44],[-18,42],[-22,46],[-3,77],[11,41],[19,48],[18,48],[21,80],[-13,37],[-26,17],[-24,9]],[[61584,64665],[0,39],[-9,56],[5,74],[20,109],[-12,101],[-11,46],[-39,50],[-108,86],[-67,36],[-52,-2],[-37,-8],[-18,32],[-5,31],[6,38],[38,55],[22,87],[-2,46],[-14,46],[-22,31],[-31,5],[-38,-13],[-38,-7],[-29,23],[-14,103],[-15,138],[-18,54],[-63,91],[-47,70],[-33,34],[-31,51],[-3,65],[20,47],[39,38],[30,45],[30,66],[16,56],[-12,52],[-66,70],[-95,15],[-36,35],[-84,109],[-62,10],[-24,58],[9,47],[13,12]],[[61558,64244],[17,84],[25,54],[55,91],[5,28],[0,30],[-6,36],[-31,41],[-39,57]],[[62050,62775],[2,15],[17,49],[26,33],[27,30],[45,31],[13,44],[2,108],[-45,85],[-98,88],[-51,69],[-88,90],[-139,96],[-10,67],[19,61],[30,62],[7,77],[-26,46],[-45,23],[-75,-36],[-63,-11],[-13,42],[-2,101],[9,115],[-28,86],[-6,98]],[[62282,62447],[-3,59],[-11,50],[-24,60],[-26,35],[-22,9],[-47,9],[-36,0],[-30,27],[-23,44],[-9,18],[-1,17]],[[89070,59921],[-2608,5033]],[[2186,51052],[100,930]],[[2151,50731],[35,321]],[[1068,42887],[104,1438]],[[1021,42236],[47,651]],[[1172,44325],[39,533]],[[1211,44858],[51,703]],[[2395,41807],[-453,225],[-921,204]],[[1262,45561],[889,5170]],[[2608,41686],[-146,80],[-67,41]],[[55605,72679],[24,47],[31,1],[16,21],[26,39],[25,51],[11,46],[0,40],[-1,13],[-5,37],[1,17],[3,12],[21,8],[11,9],[4,26],[-25,37],[-16,14],[-5,31],[1,12],[7,23],[13,10],[30,8],[25,-6],[6,-8],[10,1],[5,3],[12,17],[5,17],[2,45],[20,52],[15,16],[19,-1],[26,-15],[13,2],[20,35],[17,44],[23,48],[15,41],[15,28],[7,21],[30,23],[28,43],[5,22],[2,34],[15,43],[9,22],[5,15],[8,19],[7,10],[14,18],[4,2],[5,10],[5,9],[2,11],[2,18],[-1,11],[-1,10],[-4,11],[1,21],[23,45],[28,28],[6,19],[4,36],[0,22],[0,22],[-3,11],[-5,10],[-14,39],[-13,56],[-3,18],[2,20],[13,24],[11,16],[6,66],[9,11],[10,-1],[15,9],[8,18],[0,27],[6,16],[11,7],[13,-14],[13,-21],[10,-3],[11,13],[8,20],[1,31],[-2,27],[3,18],[7,8],[5,3],[12,5],[8,1],[10,5],[15,41],[10,25],[8,27],[3,29],[-7,28],[0,31],[2,20],[14,28],[1,16],[1,6],[-3,10],[7,22],[18,6],[29,-21],[19,1],[10,22],[-2,42],[6,18],[11,3],[20,-7],[16,7],[7,4],[5,4],[6,4],[6,5],[5,5],[6,5],[3,6],[6,7],[19,40],[6,27],[11,32],[12,20],[16,15],[38,14],[16,18],[15,7],[14,-4],[7,-7],[8,0],[8,0],[8,7],[16,13],[11,1],[15,-6],[12,-15],[13,-4],[14,-1],[25,18],[11,43],[-3,39],[3,11],[3,9],[6,6],[7,2],[11,-4],[8,1],[14,23],[8,20],[6,21],[-1,17],[-11,20],[0,17],[7,14],[9,9],[31,1],[18,6],[17,24],[7,29],[8,17],[31,21],[12,20],[13,19],[5,11],[3,16],[0,23],[-15,55],[-1,23],[3,20],[16,12],[23,-13],[18,-6],[13,-1],[7,4],[8,7],[9,11],[4,4],[3,19],[0,17],[-8,33],[-1,20],[4,12],[8,8],[13,3],[5,17],[-1,13],[-11,48],[5,23],[14,10],[11,4],[17,-1],[11,-1],[15,-11],[9,4],[0,29],[2,11],[12,15],[14,6],[20,3],[1,15],[-2,18],[-9,51],[-3,29],[5,23],[17,14],[21,6],[14,7],[17,-3],[10,-2],[21,23],[28,31],[15,7],[14,-1],[20,6],[15,0],[21,2],[12,15],[11,22],[11,36],[7,6],[15,23],[9,17],[14,11],[13,9],[7,13],[-13,24],[1,13],[17,13],[14,21],[22,28],[13,23],[8,14],[7,14],[46,85],[2,22],[-1,16],[-1,18],[-5,13],[-3,11],[-4,10],[-2,11],[-3,19],[6,48],[16,25],[8,18],[1,13],[3,29],[7,31],[10,21],[8,8],[5,5],[5,4],[5,6],[3,7],[4,6],[2,5],[2,10],[3,12],[5,12],[7,11],[8,3],[13,1],[9,-1],[10,-4],[5,3],[4,4],[3,4],[3,5],[2,11],[3,9],[9,13],[15,10],[12,-6],[8,-7],[8,-3],[7,0],[7,1],[6,0],[11,1],[8,-8],[12,-15],[4,-17],[10,-8],[12,1],[13,11],[4,15],[-1,26],[9,22],[13,19],[11,14],[19,11],[10,-6],[11,-10],[27,6],[18,23],[9,16],[6,18],[8,16],[8,6],[16,7],[14,-12],[9,-20],[11,-3],[9,5],[7,9],[2,8],[2,10],[5,16],[-1,16],[5,21],[6,14],[9,9],[10,13],[26,34],[12,14],[28,17],[8,11],[2,26],[1,14],[6,9],[13,15],[8,19],[9,19],[8,11],[4,4],[6,5],[14,6],[6,14],[7,18],[2,9],[0,8],[1,8],[-1,5],[-2,7],[-1,7],[-5,11],[-5,16],[0,16],[4,18],[7,10],[8,8],[9,4],[10,2],[10,3],[8,8],[7,28],[6,7],[32,11],[40,16],[11,6],[5,4],[3,1],[5,4],[4,3],[4,3],[4,2],[4,4],[5,5],[12,11],[11,22],[5,25],[0,21],[-2,30],[6,26],[5,12],[8,12],[16,12],[5,1],[5,1],[4,1],[4,0],[4,2],[5,3],[4,5],[5,6],[5,6],[5,9],[3,5],[4,4],[9,5],[11,0],[10,-3],[9,-11],[7,-18],[3,-25],[-2,-21],[4,-21],[8,-17],[4,-21],[5,-54],[15,-18],[13,-18],[11,-21],[14,-18],[32,-43],[29,-31],[6,-13],[1,-19],[6,-31],[13,-15],[17,-4],[16,8],[12,15],[11,28],[20,47],[10,11],[11,-2],[12,-9],[19,-1],[10,11],[4,3],[10,2],[8,-16],[3,-17],[1,-17],[5,-12],[4,-4],[10,-4],[8,-14],[3,-20],[2,-16],[6,-7],[15,-2],[9,-9],[14,2],[10,19],[12,6],[16,-5],[5,-2],[9,-14],[6,-8],[3,-14],[3,-10],[0,-13],[1,-11],[1,-18],[3,-10],[1,-9],[2,-10],[2,-9],[2,-9],[1,-6],[2,-7],[2,-7],[2,-5],[1,-6],[3,-5],[3,-5],[3,-4],[2,-6],[5,-14],[3,-10],[4,-16],[8,-22],[12,-21],[17,-12],[14,-4],[15,3],[17,10],[19,7],[14,10],[14,14],[28,39],[26,4],[14,5],[8,8],[7,8]],[[56891,85536],[3457,1964],[572,427],[2925,293]],[[86322,89744],[-165,2506]],[[86055,87092],[267,2652]],[[84875,83413],[1180,3679]],[[84275,69102],[-1007,1302]],[[17128,13534],[-12,-21],[-9,-9],[-14,0],[-16,5],[-17,13],[-17,10],[-9,-3],[-5,-7],[-9,-11],[-11,-5],[-11,-10],[-26,-34],[-17,-14],[-17,0],[-32,10],[-15,4],[-15,-3],[-15,-12],[-10,-18],[-1,-23],[11,-28],[9,-20],[-2,-18],[-19,-48],[-13,-21],[-3,-26],[3,-27],[7,-24],[11,-33],[4,-15],[2,-24],[-6,-34],[-4,-42],[2,-34],[-4,-35],[-8,-22],[-35,-97],[-10,-33],[-21,-24],[-29,-12],[-23,-27],[-9,-56],[-5,-22],[-10,-18],[-13,-19],[-8,-23],[-3,-24],[5,-31],[9,-24],[3,-27],[-8,-28],[-33,-28],[-21,-13]],[[48580,97300],[-5,-1],[-8,-7],[-3,-7]],[[48564,97285],[-10,-32]],[[48578,97206],[-1,3],[-9,8],[-5,12],[-4,16],[-5,8]],[[48583,97152],[2,8],[3,12],[0,13],[-5,15],[-5,6]],[[67180,71661],[-22,-1],[-14,-3],[-12,7],[-20,32],[-18,51],[-29,43],[-18,82],[-26,44],[-15,17],[-23,5],[-12,5],[-20,40],[-24,25],[-12,13],[-14,20],[-10,34],[-3,63],[-1,97],[-1,24],[13,10],[26,1],[16,0],[10,13],[13,27],[17,19],[8,17],[30,22],[24,-12],[8,11],[7,32],[13,7],[9,1],[13,20],[8,27],[5,10],[24,10],[4,8],[-6,42],[6,20],[4,21],[-5,14],[-23,9],[-5,-10],[2,-11],[7,-11],[4,-20],[2,-20],[-6,-14],[-10,-5],[-8,5],[-8,17],[-18,17],[-12,-3],[-10,-25],[-8,-13],[-9,9],[-17,48],[-22,-8],[-9,5],[-2,15],[2,7],[6,26],[-5,7],[-19,-13],[-7,3],[1,25],[0,23],[4,16],[14,11],[8,21],[2,41],[-11,30],[0,22],[18,50],[0,29],[-6,34],[0,17],[11,30],[4,27],[-4,44],[-7,66],[-8,47],[-7,9],[-15,-6],[-11,4],[-4,15],[-1,41]],[[67237,71611],[8,3],[9,4],[9,16],[-4,23],[-9,12],[-9,6],[-12,1],[-14,-3],[-25,-9]],[[67221,70652],[4,17],[8,21],[3,12],[11,10],[11,16],[20,31],[8,12],[5,19],[-2,19],[-4,26],[-17,-2],[-10,3],[-10,14],[-5,27],[-2,23],[2,15],[8,13],[8,10],[20,-3],[4,-16],[7,-12],[12,-9],[9,-5],[9,38],[-7,21],[6,31],[5,15],[15,25],[1,19],[-3,14],[-10,19],[0,13],[5,24],[8,14],[11,8],[21,5],[15,-1],[11,-14],[9,-19],[5,-8],[11,8],[7,20],[-6,36],[-11,37],[-11,-5],[-12,-8],[-18,-14],[-9,4],[-21,16],[-14,4],[-17,0],[-12,1],[-5,21],[12,21],[3,26],[10,19],[15,21],[13,7],[10,3],[19,-15],[11,-4],[7,-12],[15,-11],[15,-1],[6,25],[14,46],[11,22],[-18,7],[-17,21],[-5,15],[-5,33],[-9,11],[-7,0],[-4,-19],[2,-19],[-4,-12],[-19,-13],[-7,2],[-7,12],[2,23],[4,20],[1,23],[-6,22],[-4,-5],[-7,-14],[-7,4],[-3,22],[5,23],[5,29],[-4,35],[-14,25],[-8,17],[-8,31],[-13,-9],[-2,-29],[1,-22],[11,-9],[-1,-11],[-14,-21],[-16,-1],[-13,1],[-12,-7],[-2,8],[-13,43],[0,11]],[[67599,68965],[-4,4],[-10,9],[-20,16],[-9,9],[-15,14],[-16,3],[-21,-8],[-11,-9],[-6,-7],[-6,2],[-3,10],[0,25],[1,12],[2,16],[-3,5],[-12,-4],[-11,-6],[-6,-12],[-4,-3],[-6,3],[-2,6],[1,14],[6,2],[6,7],[1,14],[3,11],[8,15],[1,11],[-7,4],[-7,4],[-5,-6],[-3,-14],[-12,-10],[-8,-12],[-3,-14],[-5,3],[1,12],[2,14],[6,20],[2,19],[-5,12],[-13,14],[-3,16],[2,5],[15,-5],[7,8],[1,13],[-1,11],[11,41],[12,14],[7,12],[5,14],[9,9],[12,8],[8,11],[25,11],[9,1],[8,-7],[2,-8],[-1,-11],[-2,-12],[1,-8],[2,-6],[4,-4],[7,1],[6,14],[2,6],[5,5],[8,2],[10,-6],[6,-10],[3,-7],[4,-1],[6,5],[3,8],[3,20],[-5,17],[-12,35],[-3,12],[2,24],[-2,16],[2,18],[3,11],[3,5],[4,-2],[9,-7],[9,-4],[10,-8],[10,-11],[5,0],[5,4],[3,2],[6,7],[0,8],[-2,8],[-5,10],[-6,10],[-4,16],[-13,27],[-17,19],[-12,-3],[-6,-1],[-8,1],[-9,4],[-4,6],[1,10],[5,15],[5,9],[6,13],[0,6],[-5,4],[-13,-1],[-5,3],[-4,10],[2,13],[4,13],[8,13],[0,23],[8,16],[11,18],[-4,8],[-14,12],[-7,4],[-7,-13],[-6,-17],[-2,-24],[-1,-10],[-5,-7],[-9,-3],[-12,-2],[-4,4],[-2,6],[0,12],[2,23],[-6,16],[-5,4],[-6,-1],[-5,-11],[0,-24],[-1,-5],[-4,-4],[-4,1],[-4,9],[-4,11],[-4,20],[-5,22],[-5,7],[-5,0],[-8,-10],[-5,-13],[-2,-9],[-5,-4],[-4,7],[-3,12],[-2,7],[-4,4],[-4,0],[-9,-1],[-3,2],[-2,18],[6,23],[3,7],[10,11],[5,8],[0,12],[-5,15],[-6,10],[-11,3],[-14,-1],[-6,1],[-2,8],[-5,16],[-3,16],[-3,6],[-3,1],[-3,-2],[-2,-3],[-5,-10],[-8,-1],[-6,2],[-3,3],[0,4],[3,5],[6,6],[2,12],[-2,18],[4,10],[16,13],[-7,13],[-10,8],[-4,7],[3,15],[7,-1],[13,-16],[13,0],[4,12],[-5,14],[-7,19],[-3,5],[-3,9],[-4,8],[-12,3],[-9,-3],[-9,0],[-14,20],[-2,17],[-1,9],[-3,1],[-4,-1],[-2,-5],[-3,-7],[-4,1],[-1,11],[1,16],[6,10],[8,7],[5,17],[5,10],[1,7],[-1,10],[-3,11],[-2,8],[-2,4],[-4,-1],[-6,-6],[-1,-6],[-4,-1],[-5,4],[-3,17],[-2,10],[-8,4],[-11,-9],[-5,-3],[-5,5],[-5,9],[-9,-1],[-4,-1],[-2,3],[0,8],[5,13],[0,7],[-3,5],[-10,-3],[-6,-15],[-7,1],[-1,12],[13,6],[7,13],[1,15],[-4,9],[-10,-14],[-11,-1],[3,26],[0,19],[3,10],[0,11],[-23,0],[0,15],[0,17],[5,9],[17,3],[5,7],[1,6],[-1,6],[-6,0],[-6,-2],[-4,0],[-4,3],[-4,14],[2,13],[15,12],[14,6],[3,16],[-4,12],[0,8],[10,13],[-4,22],[1,9],[9,13],[1,4],[-1,5],[-4,4],[-6,5],[0,15],[1,17],[-3,11],[-4,7],[-12,5],[-7,14],[-3,16]],[[67871,68757],[-7,1],[-19,0],[-33,13],[-16,8],[-13,15],[-7,9],[-13,35],[-8,20],[-14,23],[-14,10],[-18,1],[-31,20],[-31,23],[-29,18],[-7,3]],[[68007,67977],[-2,3],[-7,6],[-6,4],[-7,15],[-4,10],[-1,15],[-1,10],[-11,20],[-6,21],[-3,30],[-2,28],[-4,27],[-2,22],[-9,28],[-18,45],[1,21],[8,29],[-4,25],[-7,27],[5,26],[-1,29],[-3,17],[10,37],[8,30],[9,15],[20,11],[8,21],[3,26],[-1,29],[-4,15],[-25,5],[-15,11],[-11,20],[6,55],[-6,27],[-16,13],[-26,4]],[[68324,67517],[4,15],[-5,12],[-21,9],[-9,19],[-10,30],[-10,9],[-16,-1],[-17,-6],[-14,7],[2,35],[-5,27],[-8,20],[-8,16],[-12,-10],[-7,-24],[-10,-23],[-11,-6],[-7,20],[1,30],[14,15],[8,15],[10,17],[-3,20],[-4,9],[-8,3],[-16,-13],[-10,-6],[-11,4],[-2,18],[11,51],[-2,17],[-12,6],[-13,-9],[-6,-31],[-13,-2],[-12,16],[-11,-11],[-10,-12],[-13,5],[0,25],[-10,51],[-21,35],[-2,21],[-1,14],[-5,10]],[[926,24992],[-130,651]],[[64444,84060],[41,19],[52,47],[29,-17],[30,-73],[44,10],[60,55],[111,207]],[[1122,24012],[-196,980]],[[573,38599],[448,3637]],[[2850,41639],[-242,47]],[[3020,41567],[-170,72]],[[3048,41098],[39,162]],[[3126,41021],[-78,77]],[[3082,41588],[-62,-21]],[[5034,42021],[-6,-5],[-23,-27],[-9,-13],[-7,-21],[-11,-36],[-11,-33],[-6,-23],[-4,-10],[-5,-8],[-7,-11],[-12,-16],[-7,-10],[-9,-11],[-8,-5],[-6,-2],[-12,1],[-8,-3],[-10,-17],[-8,-15],[-6,-36],[-5,-24],[-5,-26],[0,-20],[-11,-18],[-14,-30],[-8,-19],[-6,-10],[-6,-15],[-7,-15],[-1,-10],[-3,-15],[-8,-12],[-11,-7],[-22,-15],[-6,4]],[[4695,41372],[7,-67]],[[4746,41488],[0,-9],[-24,-18],[-12,-12],[-2,-8],[7,-20],[-3,-17],[-17,-32]],[[1215,21604],[-34,835]],[[1237,21091],[-22,513]],[[1205,20681],[32,410]],[[1181,22439],[-59,1573]],[[1613,19658],[-408,1023]],[[1908,18909],[-295,749]],[[2238,17899],[-330,1010]],[[2622,16715],[-384,1184]],[[3922,41095],[-35,-23],[-11,-11]],[[4109,41225],[-49,-9],[-33,-30],[-25,-37],[-15,-17],[-34,-23],[-31,-14]],[[4702,41305],[-24,-34],[-29,-28],[-40,1],[-10,38],[-28,-7],[-18,-39],[-22,-9],[-22,21],[-14,84],[-21,25],[-37,34],[-66,33],[-56,-4],[-42,0],[-21,-18],[-27,-14],[-14,-36],[-29,-11],[-14,-22],[-12,-4],[-16,-12],[-20,-33],[-2,-18],[-9,-27]],[[2286,51982],[265,2352],[1118,1047]],[[3669,55381],[666,608],[403,383]],[[4738,56372],[418,389]],[[230,36968],[343,1631]],[[0,33761],[230,3207]],[[237,28533],[-237,5228]],[[796,25643],[-559,2890]],[[3108,41404],[-26,184]],[[3087,41260],[21,144]],[[3282,40894],[-156,127]],[[3488,40893],[-206,1]],[[3548,40923],[-25,-6],[-35,-24]],[[3625,41070],[-9,-8]],[[3616,41062],[-20,-84],[-21,-28],[-27,-27]],[[3657,41087],[-21,-8],[-11,-9]],[[3695,41077],[-32,12],[-6,-2]],[[3775,41054],[-36,7],[-44,16]],[[3876,41061],[-26,-23],[-18,-7],[-17,1],[-40,22]],[[5156,56761],[267,246]],[[5423,57007],[118,113]],[[5541,57120],[82,76]],[[5623,57196],[72,65]],[[5695,57261],[361,341]],[[6484,57967],[350,552]],[[6056,57602],[428,365]],[[6834,58519],[206,325]],[[7040,58844],[337,522]],[[7377,59366],[369,569]],[[7746,59935],[117,179],[227,96]],[[8090,60210],[305,281]],[[8395,60491],[6,238]],[[7684,11836],[4,-19],[-3,-49],[-7,-47]],[[7678,11721],[-4,-47],[10,-54],[13,-52],[8,-56],[-1,-54],[-13,-52],[-15,-107],[-3,-55],[-10,-52]],[[7663,11192],[-14,-51],[4,-54],[5,-56],[-3,-54],[-16,-48],[-29,-57]],[[8877,13232],[-16,-8],[-26,41],[-43,16],[-34,8],[-34,-3],[-33,5],[-31,8],[-31,17],[-31,15],[-32,1],[-32,-7],[-29,0],[-29,12],[-34,13],[-40,-2],[-41,1],[-46,8],[-34,-7],[-33,-21],[-33,-22],[-25,-46],[-8,-57],[-29,-32],[-27,-5],[-31,6],[-38,-2],[-33,-23],[-33,-63],[-35,-32],[-48,-55],[-48,-54],[-116,-90],[-51,-76]],[[9617,13249],[-29,-17],[-34,-5],[-28,5],[-44,-6],[-34,5],[-36,-3],[-32,-14],[-34,-17],[-35,16],[-29,5],[-38,-18],[-30,-33],[-30,-26],[-30,-27],[-34,-21],[-32,3],[-33,3],[-34,13],[-31,25],[-28,25],[-9,46],[-33,22],[-26,10],[-9,-4]],[[4375,8270],[-25,529]],[[4470,7031],[-95,1239]],[[4528,6254],[-58,777]],[[4598,5346],[-70,908]],[[4663,4506],[-65,840]],[[4720,3722],[-57,784]],[[4725,3160],[-5,562]],[[4877,2383],[-152,777]],[[5027,1614],[-150,769]],[[5799,9510],[-1449,-711]],[[5896,9428],[-97,82]],[[5991,9434],[-66,-25],[-29,19]],[[6054,9559],[-47,-105],[-16,-20]],[[6143,9801],[-89,-242]],[[6174,9828],[-31,-27]],[[6413,9797],[-1,0],[-33,5],[-33,10],[-34,12],[-34,11],[-33,-5],[-33,-9],[-38,7]],[[10137,13910],[-18,20],[-25,-2],[-16,-7],[-16,-18],[-14,-40],[9,-37],[5,-56],[1,-56],[-10,-54],[-17,-25],[-33,-32],[-27,-32],[-27,-27],[-22,-55],[-24,-31],[-27,-21],[-30,-9],[-37,-6],[-29,16],[-37,-7],[-30,-25],[-24,-34],[-25,-36],[-21,-52],[-26,-35]],[[10384,13868],[-39,-17],[-34,-14],[-30,-22],[-34,2],[-28,35],[-33,23],[-29,25],[-15,5]],[[10886,13846],[-26,4],[-32,9],[-28,9],[-32,6],[-37,11],[-60,9],[-60,26],[-15,-11],[-20,5],[-13,-12],[-29,16],[-36,-14],[-26,-22],[-32,2],[-28,11],[-28,-27]],[[13197,13958],[-30,2],[-33,-3],[-35,-5],[-31,-7],[-31,-11],[-29,-3],[-32,9],[-37,6],[-32,-14],[-29,-26],[-26,-34],[-22,-41],[-30,-16],[-35,11],[-28,26],[-28,33],[-23,41],[-24,40],[-28,29],[-34,1],[-32,-5],[-25,-5],[-29,-6],[-35,3],[-32,-7],[-33,-15],[-32,-5],[-32,-1],[-37,-7],[-36,3],[-34,-2],[-36,-9],[-32,-8],[-30,1],[-33,6],[-34,8],[-33,16],[-33,19],[-34,16],[-33,-14],[-32,15],[-33,-1],[-34,-2],[-33,13],[-33,10],[-29,21],[-18,45],[-27,34],[-32,7],[-34,-9],[-33,-4],[-32,-13],[-34,0],[-34,5],[-34,-1],[-33,-6],[-33,-6],[-34,-2],[-34,-2],[-33,-6],[-33,-7],[-34,-6],[-28,-27],[-19,-48],[-23,-39],[-15,-49],[-11,-53],[-26,-34],[-30,-25],[-33,-12],[-34,-11],[-33,18],[-31,19],[-30,23],[-29,13]],[[13259,13958],[-30,-6],[-32,6]],[[13795,13922],[-22,24],[-29,26],[-31,25],[-33,11],[-33,10],[-32,13],[-32,20],[-33,15],[-33,3],[-33,11],[-33,-3],[-32,-21],[-32,-14],[-28,-31],[-29,-30],[-32,-16],[-30,-5]],[[13833,13210],[4,8],[16,46],[15,52],[16,51],[11,56],[5,55],[-5,52],[4,58],[8,57],[-2,59],[-15,46],[-4,53],[-6,51],[-31,11],[-26,37],[-28,20]],[[14089,13068],[-6,-1],[-61,1],[-55,-7],[-20,-5],[-34,25],[-27,13],[-33,19],[-4,11],[-8,11],[-6,13],[-2,28],[0,21],[0,13]],[[14597,12529],[-6,16],[2,28],[-4,45],[-8,11],[-31,7],[-11,6],[-26,53],[-14,8],[-20,0],[-7,10],[-9,35],[-4,7],[-5,6],[-9,6],[-5,2],[-23,-12],[-21,-4],[-8,-5],[-4,-1],[-4,2],[-9,21],[-8,17],[-10,17],[-9,30],[-8,32],[-9,9],[-15,10],[-3,17],[7,26],[-3,36],[-16,20],[-12,2],[-26,-16],[-31,1],[-9,2],[-9,5],[-9,8],[-7,25],[-27,16],[-13,32],[-13,11],[-14,5],[-28,-5]],[[14819,12141],[-17,10],[-30,60],[-19,8],[-25,5],[-20,21],[-43,60],[-12,33],[-4,33],[0,15],[-3,16],[-5,15],[-7,17],[-11,19],[-8,13],[-4,16],[1,14],[-13,27],[-2,6]],[[15332,12219],[-21,-46],[-21,-8],[-46,10],[-22,-42],[-10,-18],[-18,-11],[-34,0],[-37,6],[-27,17],[-27,27],[-32,-11],[-28,-32],[-32,-54],[-20,-13],[-15,2],[-13,21],[-13,27],[-32,18],[-35,3],[-20,20]],[[15625,12365],[-12,-1],[-19,9],[-22,4],[-22,-15],[-19,-3],[-10,11],[-13,27],[-15,11],[-16,-1],[-32,-15],[-35,-3],[-13,-14],[-10,-25],[-6,-29],[-13,-32],[-8,-26],[-15,-32],[-13,-12]],[[15633,12369],[-8,-4]],[[3133,14627],[-511,2088]],[[3294,13891],[-161,736]],[[3408,13474],[-114,417]],[[4003,11263],[-595,2211]],[[4055,10902],[-52,361]],[[4350,8799],[-295,2103]],[[7610,10872],[-19,-21],[-26,-38],[-47,-143],[-37,-50],[-27,-61],[-26,-31],[-58,-129],[-43,-29],[-32,-15],[-81,26],[-23,2],[-13,6],[-11,7],[-15,9]],[[7603,12628],[-4,-7],[-12,-28]],[[7693,12778],[-25,-49],[-20,-36],[-8,-9],[-19,-27],[-18,-29]],[[7587,12593],[-4,-16],[-2,-56],[8,-54],[13,-51],[17,-49],[17,-50],[12,-51],[9,-56],[3,-55],[-6,-55],[-9,-52],[-7,-28],[-1,-25],[9,-47],[18,-40],[11,-29]],[[7675,11879],[5,-17],[4,-26]],[[5351,0],[-324,1614]],[[6530,9743],[-7,1],[-85,49],[-25,4]],[[6860,9814],[-50,2],[-48,2],[-73,-21],[-95,-53],[-64,-1]],[[6924,10331],[-7,-23],[-23,-81],[-12,-44],[15,-58],[22,-74],[-3,-41]],[[6900,9907],[-40,-93]],[[6916,10010],[-16,-103]],[[7152,10405],[-32,15],[-45,0],[-35,-2],[-60,-31],[-56,-56]],[[72013,81175],[648,1182],[4393,1349]],[[67314,80660],[-80,245]],[[67325,80559],[-4,57],[-7,44]],[[67325,80244],[-2,105],[13,47],[-11,163]],[[67321,79451],[15,126],[-11,667]],[[64999,84640],[26,80]],[[64811,84308],[20,42]],[[64831,84350],[96,130],[72,160]],[[65445,84599],[-97,51],[-118,87],[-51,20],[-40,57],[-51,4],[-63,-98]],[[65584,85553],[440,-529]],[[65594,84679],[-81,-65],[-68,-15]],[[66024,85024],[7,-83],[-394,-1364]],[[53603,84784],[-14,18],[-7,7]],[[53619,84762],[32,55]],[[53651,84817],[26,22]],[[53677,84839],[110,-10]],[[53787,84829],[58,23],[130,116]],[[53975,84968],[515,589]],[[54391,85631],[99,-74]],[[54490,85557],[1464,11]],[[66816,81536],[418,-631]],[[66946,73190],[-1,29],[-3,22],[-6,21],[-7,33],[3,15],[12,18],[4,20],[2,23],[-6,10],[-13,11],[-11,23],[-12,39],[-7,3],[-25,-28],[-17,-1],[-16,14],[-34,53],[-1,19],[11,28],[3,25],[-3,49],[-2,22],[9,41],[18,33],[22,15],[5,-3],[4,-12],[-5,-10],[-5,-24],[6,-6],[9,4],[6,22],[12,19],[18,22],[10,22],[-16,12],[-3,18],[3,18],[14,36],[-18,27],[-6,-2],[-7,-21],[-9,-14],[-15,-3],[-14,19],[-35,48],[1,10],[13,30],[6,-2],[11,-14],[8,3],[33,70],[6,-4],[34,-61],[18,17],[11,24],[-9,21],[-15,-8],[-16,1],[-8,14],[-7,22],[-11,14],[-14,8],[-20,0],[-17,17],[-16,0],[-12,4],[-2,19],[-4,55],[-5,36],[-6,42],[-5,26],[-20,17],[-6,14],[-5,21],[0,31],[-4,14],[-12,44],[-15,17],[-3,14],[7,27],[9,26],[20,43],[6,37],[1,24],[12,34],[29,41],[13,11],[12,-12],[8,-10]],[[55315,82963],[-58,35],[-9,14],[-7,16],[-1,2],[-1,2],[0,3],[2,2],[2,3],[-1,3],[-7,17],[-4,11],[-6,9],[-4,10],[-4,7],[-86,115],[-20,25],[-16,20],[-9,8],[-9,11],[-155,207],[-4,4],[-61,21],[-16,12],[-261,227],[-38,34],[-28,22],[-42,53],[-10,10],[-7,-1],[-6,-4]],[[55378,82781],[-9,26],[-35,72],[-7,66],[-12,18]],[[52793,85775],[-6,55],[-15,59],[-14,53],[-13,49],[-10,52],[-7,32],[-27,65],[-16,39],[-10,23],[-8,12],[-16,14],[-10,13],[-6,8],[-2,10],[-2,12],[-6,9],[-8,9],[-2,6],[-3,20],[-21,31],[-10,18],[-5,9]],[[52964,85506],[-19,21],[-30,35],[-33,37],[-21,35],[-30,53],[-27,46],[-5,11],[-3,10],[-3,21]],[[48646,90622],[-32,92],[-27,325],[-37,245],[-5,19]],[[65910,68217],[4,9],[5,14],[0,6],[-2,13],[-10,26],[-3,13],[2,18],[6,34],[11,24],[12,4],[3,-3],[3,-2],[5,2],[4,-1],[8,0],[7,-2],[8,-7],[9,3],[3,12],[3,23],[5,20],[2,22],[-1,29],[3,25],[7,25],[7,24],[13,23],[10,18],[13,12],[5,12],[3,15],[7,25],[10,19],[7,24],[12,25],[17,12],[13,3],[10,-7],[11,4],[15,7],[13,8],[8,17],[6,16],[16,8],[4,12],[-5,44],[8,26],[-4,26],[-3,10],[1,11],[-1,23],[2,17],[4,14],[9,22],[5,24],[8,27],[11,33],[6,16],[7,16],[1,19],[-2,10],[-1,13],[0,11],[-3,16],[-1,13],[-1,19],[5,24],[3,13],[15,21],[11,12],[7,12],[3,15],[-3,19],[-2,24],[2,32],[-7,17],[-14,17],[-7,11],[-4,10],[3,15],[9,11],[7,-8],[7,-5],[9,3],[16,-2],[12,7],[1,13],[0,10],[4,9],[5,10],[3,27],[3,28],[3,12],[0,10],[-3,7],[-14,13],[0,7],[3,18],[6,16],[4,7],[7,7],[9,-1],[10,-10],[7,-11],[3,-4],[5,-2],[12,3],[20,7],[15,10],[11,-2],[7,2],[5,8],[5,12],[0,13],[-3,10],[-5,8],[4,12],[7,15],[0,16],[-7,5],[-9,7],[-13,4],[-5,6],[-5,8],[-2,9],[-3,15],[-5,19],[-1,10],[3,13],[8,7],[11,1],[4,10],[2,12],[14,8],[7,-10],[7,-7],[8,-3],[11,7],[6,13],[15,8],[9,4],[8,11],[4,26],[1,13],[1,18],[-2,10],[4,8],[6,12],[1,24],[2,14],[11,15],[11,10],[-2,16],[-8,21],[-7,22],[-3,31],[-6,27],[-6,14],[-26,2],[-13,5],[-11,12],[-7,13],[1,15],[8,20],[11,5],[12,7],[8,22],[13,51],[0,26],[2,25],[8,26],[14,9],[11,19],[6,13],[15,-5],[7,12],[22,38],[14,26],[7,11],[20,42],[6,18],[4,14],[10,16],[13,15],[9,21],[8,19],[8,0],[14,-13],[16,-18],[11,-10],[5,-3],[6,6],[7,18],[9,24],[1,7],[-2,13],[-3,11],[-3,4],[-5,8],[-4,11],[-1,9],[-2,9],[-6,5],[-7,-3],[-5,-7],[-6,-6],[-11,-6],[-12,0],[-7,4],[-5,13],[-5,14],[-1,13],[3,20],[4,18],[2,28],[4,19],[7,21],[8,14],[11,11],[9,9],[9,16],[8,23],[-4,21],[0,15],[-7,17],[-11,10],[-13,12],[-14,2],[-12,2],[-4,11],[6,17],[11,13],[14,12],[16,9],[19,0],[19,-8],[14,-13],[13,-12],[8,-17],[5,-9],[8,3],[13,10],[6,12],[-3,11],[-6,11],[-11,17],[-8,13],[-5,16],[5,17],[6,13],[4,28],[-2,24],[0,18],[-5,14],[-8,10],[-22,-3],[-7,4],[-5,11],[-1,19],[-1,28],[7,23],[15,21],[14,25],[9,24],[6,21],[10,7],[15,-14],[18,-12],[20,-7],[23,-4],[23,-15],[19,-15],[17,-12],[17,-15],[7,-13],[14,-18],[19,-20],[11,-12],[18,-7],[7,-11],[12,-8],[14,2],[15,13],[15,24],[5,31],[12,30],[5,28],[1,14],[17,14],[9,15],[12,16],[11,22],[5,23],[0,23],[5,19],[-3,20],[-1,16],[6,14],[12,21],[8,14],[10,1],[10,-1]],[[55954,85568],[937,-32]],[[52547,83291],[5,-2],[10,3],[7,-5],[7,11],[2,1],[4,-5],[1,-1],[2,2],[5,9],[-1,5],[-3,7],[2,4],[4,0]],[[52592,83320],[6,-6],[5,-3]],[[52491,83265],[5,2],[3,-2],[2,-1],[5,1],[3,1],[2,1],[0,9],[1,2],[2,-2],[3,-3],[8,-1],[3,3],[4,7],[6,5],[5,5],[4,-1]],[[52623,83360],[4,17]],[[52627,83377],[3,18]],[[52608,83321],[10,23]],[[52603,83311],[5,10]],[[52618,83344],[5,16]],[[53619,84762],[-16,22]],[[53480,84286],[129,459],[10,17]],[[53467,84247],[9,21],[4,18]],[[53362,84003],[105,244]],[[54092,84242],[-239,172],[-131,193],[-24,38],[-26,39],[-18,29],[-10,12],[-11,16],[-14,21]],[[54292,84024],[-12,34],[-24,63],[-3,7],[-161,114]],[[54449,83861],[-16,-8],[-19,5],[-14,13],[-3,8],[-1,10],[3,33],[-6,37],[-6,8],[-7,6],[-40,11],[-12,-1],[-22,14],[-14,27]],[[49090,95402],[97,-4305]],[[53427,85053],[-4,6],[-6,5],[-6,1],[-6,0],[-41,-19],[-49,15],[-47,14],[-3,2],[-3,1],[-2,1],[-3,3],[-11,21],[-9,18],[-5,6],[-6,13],[-12,24],[-8,16],[-6,13],[-5,12],[-7,12],[-24,35],[-5,8],[-2,4],[-4,5],[-5,13],[-3,15],[-5,20],[-6,24],[-3,5],[-29,30],[-41,40],[-12,14],[-30,41],[-15,14],[-13,4],[-19,8],[-8,9]],[[53009,87111],[1382,-1480]],[[53432,85039],[-2,7],[-3,7]],[[53460,84975],[-11,12],[-17,52]],[[53582,84809],[-11,16],[-111,150]],[[50389,88228],[-4,5],[-71,42],[-63,38],[-102,84]],[[50534,88109],[-57,68],[-88,51]],[[51185,87379],[-6,6],[-33,28],[-39,33],[-16,5],[-34,6],[-33,33],[-13,13],[-16,35],[-11,7],[-11,3],[-8,5],[-17,19],[-10,12],[-7,0],[-7,-3],[-11,4],[-12,7],[-28,13],[-73,37],[-11,16],[-30,76],[-43,103],[-43,106],[-12,27],[-34,39],[-43,49],[-50,51]],[[52295,86650],[-1,2],[-8,9],[-12,3],[-15,6],[-11,4],[-18,6],[-12,8],[-17,17],[-14,15],[-11,12],[-6,5],[-2,4],[-8,6],[-14,16],[-17,17],[-8,7],[-5,8],[-4,8],[-2,2],[-2,10],[-6,55],[-4,7],[-8,8],[-7,10],[-4,6],[-9,7],[-31,30],[-21,18],[-29,28],[-39,36],[-6,6],[-8,6],[-9,9],[-3,3],[-3,3],[-5,5],[-13,6],[-9,8],[-5,1],[-41,-10],[-11,-2],[-7,4],[-9,12],[-23,22],[-31,25],[-28,16],[-17,10],[-9,5],[-4,1],[-4,-1],[-12,-9],[-10,-10],[-5,-5],[-11,-8],[-12,-3],[-24,1],[-14,0],[-17,2],[-7,2],[-18,9],[-7,2],[-26,13],[-8,4],[-13,8],[-30,17],[-11,7],[-13,7],[-9,5],[-21,11],[-29,17],[-8,7],[-6,4],[-13,7],[-11,5],[-42,21],[-13,9],[-19,15],[-20,16],[-9,8],[-27,22],[-15,14],[-12,9],[-2,2],[-8,6]],[[50993,89240],[2016,-2129]],[[52410,86550],[-2,-1],[-4,-3],[-8,-5],[-7,1],[-28,32],[-8,9],[-31,37],[-23,26],[-4,4]],[[52576,86373],[-6,6],[-6,9],[-5,9],[-10,21],[-7,8],[-16,14],[-2,2],[-2,0],[-2,1],[-2,3],[-3,3],[-14,12],[-7,8],[-8,10],[-5,6],[-4,5],[-14,19],[-11,12],[-8,8],[-7,5],[-9,10]],[[52529,86397],[4,9],[7,3],[5,-4],[8,-25],[10,-5],[7,0],[6,-2]],[[49750,88751],[-23,25]],[[50149,88397],[-169,136],[-15,15],[-20,18],[-48,43],[-32,32],[-16,15],[-34,32],[-21,20],[-21,22],[-23,21]],[[49345,90944],[1648,-1704]],[[48326,96119],[69,285],[6,26],[5,28],[66,330],[111,364]],[[48156,95357],[5,80],[34,145],[58,238],[20,83],[45,184]],[[48545,91303],[-8,28],[-23,79],[-33,108],[-30,99],[-32,103],[-28,91],[-68,231],[-61,201],[-18,67],[-53,209],[-85,637],[-21,485],[-6,84],[-15,203],[-11,155],[-26,355],[41,341],[85,446],[3,132]],[[49050,97287],[40,-1885]],[[98261,16931],[-41,72]],[[48756,90368],[-3,8],[-33,45],[-24,67],[-42,113]],[[48998,89928],[-2,3],[-4,1],[-6,2],[-6,3],[-8,4],[-22,10],[-31,13],[-6,3],[-5,4],[-6,9],[-5,8],[-12,31],[-11,27],[-12,32],[-58,144],[-20,62],[-9,29],[-2,3]],[[49727,88776],[-285,364],[-18,39],[-82,101],[-61,76],[-35,70],[-248,502]],[[53092,83366],[3,2],[41,13],[9,11]],[[53005,83289],[1,-15],[2,-10],[5,-6]],[[53256,83670],[32,144]],[[53231,83552],[4,19]],[[53235,83571],[21,99]],[[53157,83470],[4,8],[6,6],[11,4],[8,1]],[[53145,83392],[6,18],[0,33],[6,27]],[[53186,83489],[14,11],[17,22],[14,30]],[[52781,83346],[5,-5]],[[52786,83341],[10,-7]],[[52796,83334],[18,-11]],[[52814,83323],[11,0],[11,-4]],[[52836,83319],[10,0]],[[52846,83319],[11,10],[18,21],[8,9]],[[53292,83832],[2,12],[68,159]],[[53288,83814],[4,18]],[[52883,83359],[14,1],[8,-3],[9,3],[8,5],[10,7]],[[52932,83372],[8,-2],[7,-8],[5,-8],[5,-3]],[[52957,83351],[2,-3],[4,-3],[7,-1],[7,-2],[3,-4]],[[52980,83338],[2,-5],[2,-9],[2,-7],[3,-5]],[[52989,83312],[2,-5],[8,-8],[3,-4],[3,-6]],[[53013,83258],[11,-7],[16,11],[15,18],[17,63],[20,23]],[[52630,83395],[3,3],[6,6],[4,3]],[[52643,83407],[10,-5]],[[52653,83402],[13,-6],[10,7],[8,13]],[[52684,83416],[1,3],[6,5],[8,1]],[[52705,83422],[9,-10]],[[52714,83412],[12,-11],[10,1]],[[52736,83402],[10,4]],[[52746,83406],[8,-1],[8,-9]],[[52762,83396],[5,-11],[5,-20],[9,-19]],[[62659,83446],[-3,12],[-5,31],[-7,27],[-6,10],[-12,7],[-94,-17],[-62,0],[-99,1],[-47,2],[-10,-2],[-7,-4],[-61,-45],[-7,-3],[-6,1],[-28,7],[-15,4],[-13,-2],[-13,-11],[-55,-53],[-9,-8],[-13,-4],[-12,-3],[-25,-13],[-6,-4],[-11,-13],[-10,-8],[-9,-7],[-11,-2],[-7,9],[-7,12],[-2,36]],[[62659,83446],[10,7],[14,6],[6,3],[10,7],[19,15],[6,11],[10,18],[12,14],[12,16],[4,11],[2,9],[-3,16],[2,16],[5,27],[1,19],[3,17],[5,16],[4,11],[1,13],[0,13],[0,15],[2,9],[10,23],[6,21],[5,11],[5,10],[3,5],[4,12],[10,34],[10,26],[4,15],[5,19],[10,40],[5,20],[5,11],[4,8],[10,14],[9,15],[8,9],[5,7],[4,8],[3,7],[1,13],[1,12],[2,11],[5,11],[6,8],[4,7],[5,7],[5,10],[2,5],[2,10],[1,11],[0,10],[1,17],[2,9],[11,28],[10,24],[3,11],[2,9],[1,13],[2,15],[9,25],[3,16],[4,25],[2,10],[6,23],[4,17],[2,20],[0,21],[7,22],[6,27],[4,27],[5,17],[11,19],[8,15],[4,15],[5,17],[7,18],[3,15],[1,11],[-1,12],[-4,28],[-15,61],[-10,14],[-13,23],[-7,19],[-1,21],[6,34],[2,17],[1,11],[-4,14],[-10,17],[-3,12],[1,10],[5,15],[11,18]],[[62118,81741],[39,-52],[45,-24],[88,11],[67,-31],[28,2],[21,25],[9,148],[23,28],[103,9],[29,35],[16,110],[48,42],[67,24],[26,-7],[20,-22],[32,-74],[40,-43],[38,-11],[42,13],[24,32],[12,36],[17,75],[26,15],[42,-51],[53,-80],[15,-8]],[[60808,80021],[32,-23],[15,-8],[18,8],[10,47],[5,141],[4,116],[-4,62]],[[61251,73038],[-3,63],[-18,47],[-23,40],[-25,34],[-23,41],[-16,48],[-11,53],[-26,56],[-5,49],[0,58],[-14,48],[-8,54],[-1,53],[-6,58],[-5,55],[-22,66],[-32,17],[-30,-5],[-47,-27],[-36,1],[-23,22],[-5,22],[10,50],[23,43],[25,48],[32,47],[6,41],[2,64],[-14,63],[-16,46],[-17,47],[-24,35],[-29,33],[-31,10],[-37,9],[-31,-2],[-27,31],[-17,46],[-3,54],[-3,53],[-4,60],[-7,53],[-17,46],[-22,40],[-26,38],[-27,38],[-32,21],[-31,16],[-33,6],[-34,5],[-32,10],[-26,33],[-9,54],[-7,53],[-9,57],[-4,54],[-2,56],[-2,54],[-10,55],[-13,57],[-20,43],[-15,47],[-5,50],[1,57],[5,51],[7,57],[-2,61],[-4,57],[-3,52],[0,54],[-1,54],[-10,48],[-22,38],[-25,33],[-25,36],[-31,22],[-29,25],[-29,24],[-30,42],[-10,56],[0,55],[0,55],[2,56],[5,51],[66,127],[23,41],[9,74],[-37,76],[-20,64],[-9,52],[-6,54],[0,55],[-5,52],[-14,50],[-29,29],[-33,14],[-34,8],[-33,-2],[-35,-4],[-33,-8],[-61,34],[-5,46],[22,50],[63,53],[44,70],[10,51],[-9,50],[-12,55],[-24,42],[-21,42],[0,54],[9,50],[27,33],[26,34],[24,33],[24,36],[27,43],[-7,54],[-12,56],[-24,41],[-28,25],[-31,29],[-31,20],[-30,25],[-37,40]],[[59708,78179],[-16,29],[-24,18],[-9,44],[-3,35],[-13,12],[-31,13],[-12,29],[9,62],[3,102],[5,65],[0,105],[1,82],[-12,15],[-28,4],[1,24],[53,70],[-4,42],[-18,18],[6,41],[38,40],[24,19],[24,38],[11,60],[14,41],[-7,53],[21,33],[10,47],[23,54],[-2,79],[1,24],[10,29],[-10,25],[-20,10],[7,81],[8,36],[-8,23],[-17,24],[-2,35],[9,26],[-4,61],[0,61],[-6,24],[36,127],[21,39],[1,39],[-13,11],[-27,-4],[-8,30],[12,81],[17,33],[7,63],[12,9],[28,-5],[13,41],[2,31],[34,55],[11,62],[26,11],[34,22],[27,26],[23,42],[6,21],[20,100],[20,93],[6,31],[25,47],[43,72],[-1,22],[-5,21],[7,26],[50,51],[15,57],[32,58],[24,42],[12,29],[5,83],[-3,35],[36,65],[23,37],[9,31],[29,23],[13,56],[7,73],[9,42],[-11,35],[-18,23],[-8,122],[15,57],[35,75],[13,36],[-1,99],[1,65],[13,80],[17,56],[9,18],[10,10],[9,3],[9,3],[7,9],[8,21],[6,33],[4,19],[6,24],[13,19],[19,21],[10,16],[14,21],[15,26],[14,36],[12,51],[12,38],[20,32],[9,27],[16,27],[40,34],[19,22],[20,8],[19,0],[40,-22],[18,-7],[17,-3],[20,7],[13,7],[34,31],[9,13],[7,22],[-1,13],[0,21],[17,21],[7,12],[-1,26]],[[68847,80180],[3166,995]],[[59512,77253],[6,15],[16,28],[22,14],[2,14],[-4,23],[13,20],[21,9],[11,23],[33,16],[32,-7],[18,15],[16,21],[8,29],[6,3],[33,12],[7,-9],[8,-17],[17,-12],[16,22],[19,10],[10,17],[15,42],[-2,11],[-9,14],[2,38],[-1,20],[-9,6],[-12,-5],[-16,4],[-12,24],[-9,35],[-7,27],[-6,37],[4,35],[9,23],[12,2],[12,19],[-3,40],[-13,16],[-10,7],[-8,33],[8,17],[12,18],[5,17],[-19,76],[-22,67],[-23,31],[-12,26]],[[59887,78287],[1,38],[3,54],[12,51],[16,46],[21,40],[32,28],[36,7],[32,-1],[33,-8],[33,-4],[31,17],[27,35],[20,44],[10,53],[2,57],[-13,110],[-18,109],[-7,46],[-19,45],[-31,22],[-33,14],[-25,35],[-2,50],[15,26],[40,36],[33,12],[33,-12],[32,-19],[32,-10],[31,-18],[33,5],[30,15],[33,-5],[33,-25],[28,-33],[29,-27],[38,-5],[22,47],[18,46],[14,47],[9,57],[5,52],[12,51],[6,40],[10,30],[48,26],[31,15],[13,58],[-3,59],[-16,48],[-20,44],[-7,49],[16,26],[40,3],[37,-10],[30,20],[29,34],[10,51],[-10,42],[-68,59],[-10,21],[2,28],[16,10],[33,-9],[53,-38]],[[60990,83160],[-8,-3],[-9,-4],[-13,0],[-9,1]],[[60934,83047],[-3,14],[0,24],[9,30],[11,39]],[[61173,83312],[-4,5],[-5,8],[-8,3],[-7,-1],[-5,-9],[-13,-47],[-8,-26],[-10,-29],[-15,-33],[-11,-13],[-9,-11],[-14,-3],[-13,3],[-14,7],[-21,5],[-11,-6],[-6,-3],[-9,-2]],[[61233,83364],[-13,-14],[-6,-12],[-5,-9],[-11,-9],[-14,-4],[-11,-4]],[[61282,83382],[-10,3],[-7,-3],[-7,-9],[-19,-8],[-6,-1]],[[61977,83511],[-5,9],[-7,15],[-4,2],[-11,0],[-12,2],[-18,13],[-5,5],[-5,12],[-13,50],[-10,31],[-2,5],[-4,1],[-15,1],[-49,5],[-70,8],[-73,8],[-16,-10],[-55,-41],[-57,-40],[-61,-47],[-6,-10],[-14,-38],[-32,-88],[-24,-25],[-22,-16],[-13,3],[-9,6],[-7,1],[-19,-7],[-12,7],[-16,-3],[-29,12]],[[61987,83406],[0,13],[0,15],[-9,34],[-3,11],[0,11],[2,21]],[[60839,80857],[23,26],[31,23],[35,4],[34,-8],[33,-7],[34,13],[31,25],[25,37],[5,52],[-24,31],[-25,28],[-23,40],[-27,39],[-6,56],[6,35],[34,36],[18,-6],[28,-49],[41,-58],[31,-25],[33,-14],[34,-2],[31,20],[26,33],[21,42],[18,47],[17,47],[4,65],[-17,34],[-33,30],[-12,35],[19,20],[51,-2],[17,1]],[[60888,80364],[-10,53],[-17,49],[-22,45],[-19,48],[-10,52],[4,57],[34,23],[33,-20],[39,-20],[41,5],[36,21],[17,36],[-2,39],[-26,17],[-52,-2],[-46,0],[-39,31],[-13,32],[3,27]],[[61352,81505],[65,16],[26,-23],[-8,-68],[24,-24],[32,29],[20,112],[14,76],[30,57],[31,-1],[38,-8],[29,24],[17,70],[20,167],[14,42],[16,3],[69,-125],[55,-16],[56,4],[124,-154],[35,2],[47,59],[12,-6]],[[60920,87932],[2925,288]],[[63024,84977],[24,31],[15,91],[24,59],[-21,38],[-10,24],[-5,48]],[[63051,85268],[794,2952]],[[63845,88220],[595,-1411]],[[64440,86809],[435,-339]],[[64875,86470],[709,-917]],[[64099,83650],[44,56],[42,20],[49,-7],[35,23],[14,38],[-10,87],[2,28],[13,42],[18,31]],[[60694,71326],[-10,68],[24,127],[44,46],[28,-12],[30,-8],[33,-2],[28,13],[22,41],[-4,52],[-8,43],[-17,43],[-28,30],[-31,23],[-31,14],[-39,42],[-16,60],[-4,82],[12,43],[19,50],[21,37],[23,31],[26,39],[7,23],[8,50],[1,58],[-11,53],[-13,57],[0,60],[10,42],[18,40],[20,37],[28,30],[32,22],[32,18],[33,14],[49,29],[31,76],[-20,138],[19,41],[32,16],[33,4],[33,4],[33,6],[33,13],[27,19]],[[60664,70528],[-8,52],[8,55],[13,44],[33,5],[32,18],[29,19],[31,18],[28,29],[19,44],[7,52],[-4,57],[-16,49],[-19,46],[-23,41],[-32,38],[-19,33],[-24,37],[-14,50],[-7,57],[-4,54]],[[60678,69168],[-27,45],[-15,41],[-28,45],[-14,51],[13,49],[22,40],[21,43],[24,39],[23,42],[12,56],[20,50],[22,36],[18,48],[12,55],[8,52],[-1,54],[-1,57],[-2,50],[-4,14],[-15,36],[-32,24],[-34,9],[-32,16],[-27,34],[-15,53],[5,44],[20,63],[11,53],[12,44],[0,49],[-10,68]],[[63471,82031],[69,-4],[34,52],[23,95],[-8,50],[-30,14],[-87,-51],[-18,23],[-6,88],[-44,124],[-6,73],[-28,97],[-4,64],[9,37],[28,39],[32,37],[37,117],[34,75],[13,96],[28,39],[48,26],[60,67],[58,27],[47,8],[37,27],[72,77],[80,116],[63,51],[87,155]],[[63088,81943],[16,24],[11,126],[37,22],[28,-3],[41,-23]],[[63221,82089],[37,-32],[16,-51],[-6,-69],[11,-24],[52,11]],[[63331,81924],[111,99],[29,8]],[[67302,79282],[19,169]],[[67294,79200],[8,82]],[[67259,78825],[4,116],[8,71],[23,188]],[[67243,78651],[0,53],[12,38],[4,83]],[[67225,78525],[18,126]],[[67220,78483],[0,20],[5,22]],[[67339,76938],[-1,14],[2,26],[-9,34],[-11,25],[-6,19],[-10,29],[-10,21],[-9,12],[-3,15],[1,14],[7,17],[8,11],[8,18],[7,24],[-9,11],[-8,-9],[-8,0],[-4,15],[-11,21],[-28,6],[-3,21],[-1,20],[-7,17],[-13,15],[-2,10],[8,20],[22,5],[6,19],[-6,11],[-8,-1],[-12,-9],[-9,-10],[-8,0],[-5,10],[-1,11],[4,17],[7,13],[8,6],[8,1],[18,-9],[15,8],[8,8],[7,13],[0,30],[2,16],[0,16],[-10,0],[-7,-5],[-2,26],[2,17],[1,10],[3,11],[5,9],[11,11],[7,9],[9,17],[7,16],[1,22],[4,12],[11,5],[5,13],[2,15],[3,5],[2,3],[4,2],[3,2],[5,3],[2,11],[-10,12],[-3,20],[4,20],[8,10],[5,7],[1,9],[-8,20],[-11,13],[-13,23],[-11,30],[-5,19],[-4,24],[4,32],[9,17],[10,7],[17,9],[13,9],[11,11],[11,16],[9,14],[7,20],[4,16],[0,17],[-4,17],[-6,10],[-12,5],[-13,1],[-9,5],[-11,15],[-13,12],[-15,11],[-7,9],[-8,10],[-13,5],[-15,2],[-6,9],[-3,12],[2,19],[3,14],[2,29],[-11,18],[-11,37],[-7,20],[-7,28],[-4,23],[-10,57],[-1,7]],[[66851,74629],[6,-8],[16,-14],[17,-1],[10,27],[8,33],[13,33],[3,63],[8,53],[6,23],[4,51],[5,14],[12,19],[5,47],[-1,16],[-10,9],[-12,1],[-1,8],[11,34],[3,40],[7,31],[16,31],[5,11],[-1,22],[-9,21],[3,17],[23,34],[37,30],[29,46],[15,34],[26,27],[21,6],[22,20],[22,12],[18,6],[6,17],[9,8],[13,2],[14,0],[17,2],[12,2],[6,4],[8,9],[7,14],[9,18],[6,21],[5,17],[9,9],[12,8],[10,9],[8,4],[2,11],[-1,16],[-3,20],[-6,23],[-7,22],[-4,14],[3,16],[4,18],[4,19],[1,16],[-6,11],[-8,6],[-13,3],[-10,7],[-1,9],[2,12],[7,5],[9,0],[12,-3],[8,14],[5,16],[10,15],[-3,13],[-14,12],[-4,10],[-10,33],[3,10],[7,-1],[6,-7],[4,-9],[15,1],[9,9],[3,19],[0,16],[22,65],[11,31],[6,20],[1,11],[-7,14],[-7,29],[2,28],[-8,17],[-6,11],[-3,13],[2,18],[0,12],[-7,10],[-10,-2],[-6,-16],[3,-8],[9,-10],[-1,-18],[-12,-12],[-8,0],[-4,11],[1,18],[4,18],[-5,22],[1,24],[-2,22],[-12,8],[-12,-12],[-7,-9],[-22,3],[-10,-5],[-13,10],[-2,14],[10,25],[12,13],[11,4],[6,18],[-2,22],[-15,20],[-1,13],[9,25],[2,12],[-5,11],[-8,0],[-10,-11],[-11,0],[-11,7],[-9,22],[-13,26],[2,7],[5,3],[8,-2],[10,-17],[12,2],[11,29],[9,8],[2,1],[21,0],[7,5],[6,11],[10,25],[7,17],[7,10],[4,5],[-1,7],[-14,18],[-3,9],[1,24],[-17,26],[-2,13],[5,17],[5,16],[5,32],[1,19],[-2,12],[0,12],[12,26],[2,9],[-2,9],[-9,4],[-12,-2],[-12,8],[-10,0],[-12,-6],[-6,0],[-3,7],[0,13],[5,19],[9,14],[9,5],[12,2],[9,-3],[15,-13],[7,0],[5,10],[1,11],[-3,14],[-3,13]],[[98304,16857],[-43,74]],[[64306,83968],[11,20],[48,42],[52,25],[27,5]],[[65637,83577],[404,-750]],[[66041,82827],[302,-483]],[[66343,82344],[473,-808]],[[85353,92908],[804,-658]],[[77054,83706],[220,2829]],[[83238,76533],[1637,6880]],[[83186,74921],[52,1612]],[[83053,73451],[133,1470]],[[82918,71663],[135,1788]],[[77274,86535],[293,2098]],[[83084,71233],[-166,430]],[[83268,70404],[-184,829]],[[69649,20162],[-667,23]],[[69649,20162],[79,-60]],[[69728,20102],[101,-76]],[[69829,20026],[250,-41]],[[70079,19985],[252,-26]],[[70331,19959],[105,-9]],[[70436,19950],[550,-68]],[[70986,19882],[-22,-490]],[[70973,19220],[-9,172]],[[70733,18800],[45,36],[47,165],[58,75]],[[70883,19076],[101,-8]],[[70986,19882],[515,-94]],[[97035,18995],[-28,47]],[[70984,19068],[-11,152]],[[71501,19788],[245,194]],[[73462,34036],[53,169]],[[73427,33001],[-9,58],[-20,61],[6,74],[2,170],[18,75],[4,76],[-5,35],[5,63],[7,82],[-24,149],[10,91]],[[73439,32927],[-12,74]],[[73710,32611],[-29,15],[-46,6],[-38,47],[-25,39],[-39,38],[-44,38],[-23,38],[-25,78],[-2,17]],[[74061,31902],[-194,562],[-157,147]],[[65896,51562],[-18,-6],[-14,-2],[-21,10]],[[66099,51056],[-31,-16],[-22,17],[-22,54],[-17,46],[-19,45],[1,53],[25,47],[28,30],[13,55],[18,52],[-7,62],[-20,28],[-26,30],[-10,52],[-18,44],[-26,-15],[-28,-42],[-18,-17]],[[66369,51158],[-17,43],[-32,37],[-31,-9],[-36,-10],[-33,2],[-33,-6],[-27,-30],[-24,-42],[-16,-47],[-21,-40]],[[66779,51028],[-21,-3],[-35,13],[-33,-8],[-34,-24],[-22,-37],[-10,-46],[8,-66],[-3,-56],[-22,-10],[-14,24],[0,46],[-4,30],[-19,60],[-7,61],[26,51],[30,29],[24,34],[8,55],[-15,50],[-15,51],[-17,48],[-30,23],[-28,28],[-33,16],[-28,-24],[-16,-57],[-7,-54],[10,-52],[14,-51],[-2,-54],[-31,-18],[-25,22],[-31,24],[-28,25]],[[67004,50877],[-22,-8],[-26,-8],[-31,-5],[-35,16],[-29,28],[-26,40],[-23,34],[-17,40],[-16,14]],[[67842,50747],[-33,15],[-35,11],[-29,19],[-30,25],[-29,25],[-25,39],[-20,41],[-6,41],[5,53],[0,54],[-3,60],[-5,49],[-5,60],[-13,45],[-15,50],[-22,39],[-32,20],[-34,8],[-30,-25],[-3,-52],[-13,-50],[-17,-49],[-23,-41],[-29,2],[-34,1],[-27,0],[-39,-5],[-29,-19],[-26,-41],[-24,-44],[-25,-31],[-28,-29],[-31,-28],[-28,-21],[-33,-31],[-29,-25],[-15,-17]],[[68243,50834],[-6,9],[-4,13],[-8,10],[-18,-6],[-15,-17],[-37,-60],[-21,-41],[-17,-45],[-7,-30],[-15,-49],[-15,-48],[-21,-49],[-21,-27],[-30,-3],[-29,26],[-28,34],[-22,35],[-20,44],[-17,47],[-21,41],[-29,29]],[[68839,49604],[-32,-15],[-22,27],[-2,31],[4,25],[4,25],[11,17],[17,10],[24,-1],[20,-1],[21,8],[11,22],[2,25],[-3,30],[-9,24],[-9,13],[-15,6],[-33,2],[-33,10],[-19,33],[-6,50],[-17,11],[-41,-56],[-41,-15],[-28,31],[-2,37],[11,44],[45,23],[16,18],[3,59],[-17,51],[-34,49],[-32,15],[-23,10],[-33,-6],[-22,37],[3,54],[2,55],[4,55],[4,57],[6,52],[22,64],[13,28],[-2,43],[-36,46],[-55,3],[-31,-2],[-21,8],[-15,22],[-1,53],[6,55],[6,54],[-14,51],[-23,40],[-27,36],[-24,14],[-25,-11],[-12,-48],[3,-42],[4,-32],[14,-71],[-5,-51],[-19,-19],[-33,-2],[-26,26],[-16,22]],[[69767,49122],[-14,48],[2,55],[-3,55],[-13,52],[-24,44],[-22,39],[-18,47],[-15,46],[-9,54],[1,56],[4,55],[7,54],[7,54],[3,56],[-5,54],[-7,54],[-1,56],[0,55],[-6,55],[-16,50],[-25,38],[-31,14],[-36,10],[-32,17],[-32,19],[-21,28],[7,80],[-8,35],[-20,3],[-35,-59],[-18,-50],[-20,-41],[-29,-28],[-29,-12],[-34,0],[-32,14],[-36,24],[-29,-11],[-33,-19],[-30,-27],[-27,-35],[-31,-18],[-32,-24],[-21,-44],[-13,-51],[-9,-54],[-3,-55],[4,-55],[4,-54],[-15,-47],[-24,-38],[-31,-25],[-28,-29],[-24,-35],[-26,-28]],[[65005,37186],[0,8],[2,24],[0,13]],[[65202,36664],[-7,9],[-8,10],[-39,36],[-13,11],[-26,24],[-17,14],[-8,8],[-6,6],[-7,5],[-22,20],[-7,8],[-6,10],[-6,14],[-5,17],[-3,17],[-1,17],[0,29],[0,35],[0,30],[0,39],[1,24],[-1,32],[-1,30],[-2,21],[-2,6],[-6,15],[-4,16],[-1,9]],[[65668,36033],[-1,0],[-4,0],[-6,6],[-10,10],[-2,5],[-25,22],[-31,27],[-30,25],[-30,26],[-29,25],[-30,26],[-31,26],[-11,12],[-8,13],[-6,10],[-17,49],[-16,46],[-16,46],[-8,22],[-17,31],[-12,23],[-15,30],[-12,20],[-25,35],[-24,32],[-27,35],[-23,29]],[[65705,35867],[1,2],[0,10],[0,11],[1,9],[2,8],[2,4],[2,10],[1,10],[2,13],[0,13],[1,14],[-1,4],[0,5],[-6,10],[-5,18],[-7,3],[-6,4],[-7,3],[-5,0],[-4,6],[-6,9],[-2,0]],[[65705,35867],[2,-2],[3,-3],[10,-1],[3,-1],[3,-5],[5,-1],[8,0],[5,0]],[[70093,17451],[22,14],[29,12],[30,69],[32,74],[40,71],[14,44],[36,109],[8,9],[88,187],[100,44],[6,12],[19,165],[30,36],[-3,19],[-10,35],[-1,137],[52,87],[66,73],[70,74],[12,78]],[[73923,46768],[-27,-35],[-43,-29],[-37,1],[-29,13],[-26,25],[-16,39],[-25,9],[-31,0],[-32,28],[-17,34],[-6,52],[-1,55],[-9,55],[-31,26],[-46,-13],[-44,-27],[-25,-15],[-37,3],[-31,-8],[-25,-30],[-7,-30],[-11,-52],[-13,-51],[-27,-25],[-34,-5],[-39,-24],[-14,-42],[-11,-52],[-20,-41],[-28,-22],[-49,-9],[-33,-4],[-30,-18],[-27,-26],[-30,-5],[-36,10],[-33,25],[-53,36],[-39,21],[-30,8],[-29,1],[-18,-8],[-111,-50],[-27,-11]],[[75039,46632],[-2,-19],[-2,-29],[-19,-44],[-20,-38],[-4,-63],[2,-56],[-1,-55],[-9,-52],[-26,-28],[-29,8],[-30,23],[-29,31],[-26,32],[-25,43],[-29,13],[-33,-7],[-31,13],[-22,34],[-10,53],[-15,50],[-26,36],[-29,30],[-30,26],[-20,39],[-6,54],[-7,55],[-14,49],[-27,38],[-32,10],[-33,16],[-33,6],[-48,-29],[-26,5],[-26,29],[-17,53],[-20,44],[-20,9],[-22,-13],[-20,-31],[-10,-64],[-19,-38],[-41,-35],[-32,-27],[-31,-5],[-35,-2],[-32,-4],[-35,3],[-31,-9],[-21,-4],[-13,-14]],[[75598,47400],[-13,-36],[-12,-61],[-9,-54],[-18,-42],[-30,-25],[-32,-17],[-29,-33],[-24,-41],[-23,-40],[-19,-44],[-15,-27],[-40,-29]],[[75334,46951],[-28,-22],[-42,8],[-32,7],[-31,4],[-30,-11],[-31,-25],[-29,-28],[-25,-38],[-18,-46],[-11,-55],[-7,-52],[-8,-40]],[[75910,47272],[-29,29],[-33,21],[-30,24],[-28,24],[-29,30],[-31,26],[-33,18],[-32,5],[-33,-12],[-30,-27],[-4,-10]],[[76252,46242],[0,18],[8,60],[20,53],[17,67],[-1,78],[-23,51],[-44,25],[-66,-16],[-28,9],[-35,68],[-5,42],[9,107],[-10,77],[8,86],[-7,71],[-3,82],[-11,63],[-24,29],[-87,49],[-40,-11],[-20,22]],[[76270,45613],[-7,31],[-19,42],[-58,71],[-30,55],[-4,29],[0,32],[9,36],[36,31],[15,35],[12,79],[23,60],[3,59],[2,36],[0,8]],[[76664,45211],[14,-37],[-7,-31],[-28,-63],[-19,-54],[-33,-68],[-32,-16],[-39,26],[-14,-7],[-15,-59],[-21,-45],[-21,-17],[-33,11],[-19,26],[-4,35],[-5,68],[-27,49],[-40,53],[-12,82],[-13,72],[-12,66],[-14,55],[-17,42],[1,53],[16,49],[4,56],[-4,56]],[[76896,44410],[2,15],[-3,53],[-25,55],[-33,26],[-32,-9],[-22,4],[-3,12],[13,71],[27,55],[55,51],[15,36],[7,39],[-3,70],[-11,41],[-6,54],[16,44],[37,51],[5,33],[-16,30],[-39,-7],[-33,-37],[-22,-23],[-27,10],[-19,79],[3,54],[-3,53],[-17,41],[-48,70],[-24,-3],[-32,-25],[-25,-43],[12,-42],[10,-34]],[[73051,35236],[-66,89],[-53,121]],[[67085,22744],[-276,900],[-18,234]],[[67152,22530],[-67,214]],[[67856,21855],[-704,675]],[[71376,46430],[34,-8],[32,7],[31,16],[24,32],[-1,55],[-10,50],[-20,30],[-28,44],[-7,47],[21,51],[19,45],[2,51],[-23,18],[-37,-5],[-43,-15],[-35,2],[-28,20],[-29,32],[-29,29],[-26,9],[-15,4]],[[71368,45632],[-16,19],[-20,42],[-27,61],[-33,40],[-21,28],[-2,32],[19,49],[26,30],[23,41],[22,41],[24,38],[18,44],[9,53],[-6,53],[-24,46],[-16,38],[-23,63],[0,44],[22,39],[33,-3]],[[66262,27467],[-15,540]],[[71940,45566],[-37,20],[-22,-19],[-24,-2],[-14,23],[-21,52],[-36,26],[-18,14],[-22,8],[-36,-11],[-25,-35],[-28,-25],[-40,-2],[-30,-43],[-15,-30],[-22,-44],[-34,-36],[-33,-6],[-21,23],[-14,39],[-19,68],[-20,15],[-30,20],[-11,11]],[[72391,46071],[-28,-52],[-17,-59],[-13,-85],[-21,-60],[-45,-57],[-48,-35],[-106,-13],[-29,-28],[-14,-61],[-8,-94],[-25,-57],[-28,-23],[-27,16],[-19,50],[-23,53]],[[72613,46574],[-25,-1],[-21,0],[-30,-24],[-23,-45],[-12,-52],[-7,-55],[-4,-55],[-3,-55],[-8,-53],[-21,-40],[-21,-45],[-24,-39],[-23,-39]],[[59182,29201],[-5,100],[20,36],[16,27],[-7,33],[-9,52],[-3,45],[2,46],[-20,68],[3,53],[-4,55],[9,23],[9,27],[11,20],[24,6],[2,52],[31,70],[2,80],[-2,53],[-3,86]],[[58866,28544],[14,47],[20,32],[13,36],[20,22],[44,63]],[[58977,28744],[16,45],[9,43],[23,40],[16,70],[31,50],[6,13],[7,14]],[[66466,34995],[-2,901]],[[66471,34871],[-5,124]],[[66492,34023],[-21,848]],[[66533,33878],[-41,145]],[[66524,33277],[9,601]],[[66512,32822],[12,455]],[[66506,32601],[6,221]],[[66498,32374],[8,227]],[[66467,32011],[31,363]],[[66421,31585],[46,426]],[[66400,31414],[21,171]],[[66351,30836],[49,578]],[[66307,30243],[44,593]],[[66221,28801],[86,1442]],[[66218,28722],[3,79]],[[66239,28167],[-21,555]],[[66247,28007],[-8,160]],[[52459,60216],[9,7],[10,10],[3,13],[-7,60],[-1,51],[13,49],[10,25],[13,14],[15,7],[19,-15],[20,-18],[13,-10],[35,4],[16,12],[5,22],[-3,54],[-9,55],[-14,41],[-19,37],[-19,60],[-16,47],[-21,31],[-10,25],[2,28],[12,51],[21,42],[22,42],[17,47],[30,15],[25,-38],[32,-20],[33,16],[5,24],[2,30],[-9,53],[10,49],[8,17]],[[54131,61757],[10,-30],[9,-53],[-4,-97],[9,-30],[21,-23],[32,-3],[23,17],[19,36],[46,54],[19,55],[-7,46],[-12,53],[8,35],[53,36],[26,38]],[[54391,61900],[7,8],[7,6],[21,8],[19,-7],[13,-22],[13,-16],[31,-7],[27,9],[34,-22],[36,-45],[24,-26],[39,-8],[23,2],[15,-19],[7,-23],[-4,-42],[-22,-95],[6,-44],[13,-38],[22,-20],[72,29],[48,-31],[39,-34],[44,-10],[86,-28],[75,-1],[24,9],[40,66],[26,-2],[14,-30],[27,-93],[22,-20],[55,10],[13,24]],[[55314,61407],[9,36],[5,43],[-4,57],[13,79],[24,64],[43,59],[20,9],[36,-15],[27,4],[28,20],[29,-4],[38,-51],[41,-6],[50,30],[32,1],[44,-21],[34,-18],[48,-47],[24,-34],[18,1],[17,52],[41,-14],[20,-38]],[[55951,61614],[16,-41],[31,-26],[27,2],[22,37],[7,54],[6,50],[9,54],[15,50],[16,41],[18,51],[31,24],[33,-9],[30,-25],[30,-5],[28,21],[34,25],[29,31],[30,27],[23,36],[9,55],[22,40],[32,15],[34,-1],[16,2],[40,53],[9,15]],[[56555,62201],[6,12],[18,47],[17,52],[17,49],[3,56],[18,52],[23,25],[37,-9],[19,4],[35,46],[29,5],[36,-9],[32,-18],[33,-18],[36,-13],[36,4],[23,-20],[33,-11],[23,3],[27,13],[48,1],[33,-7],[31,8],[21,29],[11,58],[11,64],[14,39],[19,14],[44,-32]],[[57300,62632],[18,-28],[27,-30],[23,3],[24,39],[14,58],[3,53],[4,55],[13,34],[28,15],[38,-13],[38,-17],[33,6],[19,3],[42,-14],[28,-27],[19,-36],[28,-65],[24,-19],[20,18],[16,60],[9,44],[1,15]],[[58147,63871],[5,1],[28,3],[36,-1],[22,26],[15,49]],[[57767,62811],[-3,35],[-12,54],[-8,30],[-28,49],[-26,32],[-23,54],[-5,33],[10,55],[20,46],[26,35],[28,22],[37,14],[34,2],[33,-4],[33,-1],[27,31],[12,48],[9,50],[21,43],[2,46],[-17,64],[-2,62],[15,34],[28,31],[27,33],[18,43],[31,12],[32,8],[14,34],[14,37],[17,22]],[[52386,44114],[0,24],[1,20],[10,18],[16,16],[41,35],[21,51],[15,30],[24,20],[32,-5],[27,20],[6,23],[1,30],[-12,48],[5,29],[18,19],[34,3],[29,-28],[22,6],[9,21],[-2,45],[6,26],[11,19],[30,19],[21,6],[37,29],[38,-7],[39,-5],[17,-8],[14,-41],[-2,-33],[2,-20],[15,-32],[13,-6],[34,13],[12,2],[27,-14],[17,-6],[22,9],[22,21],[13,29],[0,23],[-4,21],[-12,22],[-11,22],[1,33],[19,37],[25,35],[20,8],[29,-4],[16,16],[10,24],[0,62],[-9,50],[3,43],[13,31],[16,24],[9,33],[-2,46],[-11,51],[-22,26],[-33,17],[-31,-12],[-28,-30],[-22,-31],[-18,-10],[-16,13],[-18,47],[2,55],[6,52],[-3,54],[-9,25],[-19,20],[-40,3],[-19,13],[-18,27],[-13,49],[-22,53],[-11,40],[-3,42],[11,32],[8,27],[-2,33],[-11,42],[-13,21],[-11,10],[-18,-4],[-15,-15],[-18,-3],[-15,10],[-14,45],[-5,58],[11,53],[44,81],[28,29],[19,13],[14,30],[4,43],[3,50],[21,47],[28,27],[36,17],[27,20],[11,28],[5,45],[17,26],[27,18],[10,21],[1,18],[0,32],[12,28],[32,12],[47,-38],[15,6],[17,48],[-5,41],[-37,29],[-14,31],[2,64],[7,98],[18,61],[29,49],[41,30],[36,40],[22,59],[-2,47],[-14,49],[2,16],[19,33],[32,18],[32,-12],[15,10],[12,23],[9,51],[21,42],[31,19],[32,6],[36,-23],[29,-38],[21,-3],[17,15],[11,30],[-4,37]],[[53570,47302],[2,23],[16,7],[22,5],[35,-16],[20,-15],[28,15],[10,17],[0,48],[-11,30],[-18,37],[-4,30]],[[51562,41878],[-6,11],[-7,17],[-2,25],[7,28],[10,27],[3,30],[-10,43],[3,28],[14,16],[32,10],[14,-2],[17,-13],[15,1],[12,20],[5,38],[14,37],[7,25],[-4,54],[1,34],[17,32],[18,19],[24,38],[14,55],[-7,50],[-3,26],[5,26],[17,48],[12,51],[1,66],[25,46],[9,43],[-5,33],[-13,15],[-34,23],[-9,20],[-2,28],[9,15],[10,5],[14,-1],[37,-28],[20,0],[22,23],[13,23],[18,9],[22,2],[14,13],[12,27],[-1,32],[-9,41],[6,27],[25,23],[36,29],[35,-4],[22,2],[18,21],[11,30],[3,63],[-19,52],[-4,44],[14,50],[22,40],[43,33],[8,26],[4,56],[9,24],[18,13],[20,3],[18,17],[7,33],[-3,32],[-10,16],[-14,21],[-6,30],[5,47],[-6,25],[-15,30],[-3,29],[12,64],[26,40],[30,11],[40,-21],[27,11],[21,39],[16,13],[21,13],[9,20],[3,25]],[[60348,46129],[7,6],[29,25],[28,24],[30,24],[27,34],[23,42],[28,34],[30,25],[30,22],[23,36],[16,52],[12,54],[23,17],[28,29],[8,58],[6,53],[11,53],[-1,56],[13,50],[5,55],[1,56],[6,56],[29,41],[17,44],[14,51],[-7,54],[-18,45],[-20,47],[-15,49],[14,51],[12,51],[16,51],[6,25]],[[51278,39060],[23,6],[24,-5],[23,11],[19,39],[6,45],[-2,29],[-13,22],[-41,37],[-19,8],[-13,13],[-1,27],[11,54],[9,45],[-4,34],[-26,69],[3,55],[9,21],[13,14],[33,-2],[32,-11],[35,3],[20,21],[7,30],[-4,25],[-17,9],[-28,-13],[-14,11],[-10,28],[1,56],[18,56],[11,39],[-1,45],[8,70],[-6,36],[-20,35],[-10,26],[1,38],[23,34],[17,28],[1,45],[-8,22],[-8,22],[-3,27],[5,23],[8,20],[14,16],[25,13],[15,25],[8,31],[-2,29],[-7,31],[-11,30],[-4,41],[5,56],[7,29],[17,25],[17,24],[10,35],[-3,45],[-26,36],[-27,11],[-13,32],[2,32],[14,46],[5,40],[-15,64],[4,49],[16,60],[-3,36],[-14,27],[-19,21],[-19,12],[-19,24],[-19,42],[-5,49],[11,53],[42,37],[18,36],[5,43],[4,35],[36,42],[33,8],[29,24],[21,42],[12,53],[0,28],[4,24],[10,18],[13,12],[11,24],[-1,33],[-7,22],[-22,26]],[[53670,47483],[10,16],[13,4],[82,-82],[20,-53],[33,-22],[41,-8],[17,16],[31,55],[28,17],[23,-8],[30,-44],[28,-69],[28,-37],[24,-3],[38,1],[26,-23],[23,-42],[25,-72],[5,-52],[13,-45],[23,-29],[20,-2],[60,3],[20,18],[16,53],[32,34],[28,14],[12,23],[12,63],[19,12],[58,9],[27,20],[23,62],[23,42],[41,29],[49,-11],[30,-37],[29,-40],[24,-17],[30,21],[25,37],[26,7],[20,-22],[14,-36],[28,-28],[25,-18],[26,-54],[33,-64],[27,-36],[33,-27],[33,-4],[30,14],[31,30],[31,14],[30,-26],[32,-13],[33,5],[32,4],[26,-32],[13,-49],[31,-33],[30,2],[31,16],[30,-13],[31,-33],[30,-3],[26,36],[18,48],[32,15],[34,4],[33,-7],[26,-27],[12,-45],[-12,-59],[-8,-53],[0,-59],[19,-49],[31,-12],[21,35],[8,51],[27,14],[42,-8],[20,22],[-2,42],[-20,41],[9,43],[39,12],[44,-37],[19,-26],[40,-33],[8,-35],[-13,-52],[-19,-45],[2,-63],[22,-35],[35,-4],[48,3],[26,-29],[17,-24],[20,-12],[30,-4],[23,-26],[16,-63],[19,-38],[16,-45],[0,-41],[-23,-58],[11,-48],[32,-12],[27,32],[20,59],[26,34],[23,-1],[36,-23],[32,17],[18,45],[2,72],[8,47],[32,48],[29,23],[34,12],[33,-2],[25,-5],[34,-9],[24,17],[9,36],[-9,61],[4,35],[26,33],[39,16],[11,39],[-7,52],[9,49],[26,16],[36,-21],[29,-40],[25,8],[2,56],[-16,71],[-24,50],[-33,39],[-16,30],[-8,32],[1,64],[-16,50],[-21,18],[-22,8],[-8,21],[0,64],[29,28],[35,0],[7,47],[-22,49],[-24,25],[-2,33],[33,109],[9,37],[17,31],[43,24],[24,37],[25,40],[21,12],[38,2],[62,22],[33,-5],[29,-27],[28,-14],[36,-10],[35,24],[15,8],[44,-3],[25,-6],[35,8],[37,15],[30,8],[21,-3],[35,-20],[21,9],[18,34],[17,36],[37,44],[24,40],[21,39],[27,34],[10,31],[-4,31],[-7,40],[2,21],[7,14]],[[55740,24999],[5,5],[3,25],[19,10],[24,42],[19,24],[4,36],[0,22],[1,29],[-4,40]],[[65552,54614],[-5,-5],[-7,3]],[[65584,54694],[-17,-31],[-7,-39]],[[65840,52689],[1,35],[-10,48],[-26,42],[-23,14],[-32,14],[-34,4],[-32,18],[-34,19],[-31,19],[-30,8],[-32,15],[-29,19],[-34,44],[-24,5],[-37,17],[-36,12],[-26,19],[-19,33],[-17,40],[-22,45],[-37,-5],[-23,-36],[-30,-13],[-36,14],[-31,19],[-30,41],[-17,34],[-9,36],[-3,47],[0,55],[-7,50],[-9,52],[-10,54],[-10,52],[-12,53],[0,52],[11,56],[24,40],[24,35],[28,29],[23,30],[14,43],[19,51],[10,52],[10,47],[3,16]],[[57554,48251],[34,41],[21,65],[9,34],[23,40],[23,19],[42,-3],[19,12],[5,14],[6,48],[-10,49],[-37,55],[-4,33],[4,45],[24,57],[58,17],[21,23],[18,40],[3,34],[-12,23],[-21,29],[-4,24],[6,22],[26,21],[92,23],[36,26],[29,52],[35,6],[28,-11],[33,30],[14,50],[-1,65],[11,30],[44,52],[77,62],[61,26],[80,4],[63,-35],[26,-22],[48,-71],[46,-24],[14,-4]],[[58544,49252],[23,-43],[25,-43],[25,-36],[21,-40],[12,-47],[19,-53],[27,-33],[30,-17],[28,-24],[32,-21],[30,0],[34,-1],[31,-15],[21,-43],[23,-35],[26,-9],[44,-2],[33,14],[34,1],[32,-10],[31,13],[27,34],[29,24],[31,9],[50,14]],[[59334,44182],[-15,18],[-11,44],[3,50],[13,50],[10,53],[17,34],[38,35],[30,31],[24,21],[18,42],[11,51],[-7,62],[2,60],[-4,56],[3,41],[29,53],[29,37]],[[59524,44920],[28,30],[26,32],[22,45],[34,17],[16,39],[25,51],[15,34]],[[59262,48889],[12,-10],[27,-35],[28,-25],[33,-22],[31,-18],[33,-19],[33,-16],[32,-2],[35,-1],[30,15],[53,30],[25,-3],[24,-41],[16,-9],[15,10],[35,51],[27,32],[25,34],[23,40],[33,23],[19,45],[3,86],[14,8],[32,15],[33,20],[33,8],[33,7],[34,14],[32,-8],[28,-22],[33,-18],[33,-4],[31,17],[21,37],[15,49],[16,46],[25,34],[33,16],[33,17],[29,28],[28,18],[34,1],[34,-13],[28,-40],[23,-31],[32,-23],[26,-29],[21,-37],[24,-36],[30,-24],[31,-7],[24,-35],[14,-39],[8,-63],[15,-38],[12,-53],[12,-54],[22,-43],[32,-22],[34,-7],[29,-33],[32,-22],[32,-4],[55,47],[23,-8],[45,-7],[34,-14],[13,-36],[3,-54],[-9,-43],[-1,-43],[30,-35],[40,-45],[15,-41],[11,-51],[3,-54],[15,-46],[18,-51],[19,-63],[20,-17],[34,5],[40,22],[26,-1],[28,-21],[15,-41],[17,-50],[-2,-50],[2,-59],[14,-43],[28,-16],[35,11],[22,25],[25,52],[17,44],[24,23],[29,19],[30,27],[35,41],[31,20],[18,-9],[30,-39],[34,-5],[27,34],[14,19]],[[61742,48591],[-8,29],[0,20],[10,46],[10,54],[7,51],[0,55],[-5,47],[-9,58],[-16,51],[-29,43],[-23,44]],[[59695,45177],[27,36],[26,32],[33,16],[30,23],[19,35],[8,54],[4,56],[23,45],[27,32],[37,7],[31,4],[25,26],[13,48],[17,50],[23,43],[10,50],[7,54],[24,43],[24,37],[26,30],[30,22],[29,37],[31,19],[18,48],[25,41],[35,3],[26,28],[15,21]],[[60787,47516],[4,7],[14,42],[6,54],[7,57],[9,53],[11,52],[19,51],[26,29],[21,42],[14,45],[19,43],[33,26],[35,-11],[32,-12],[34,-30],[24,-46],[8,-55],[16,-40],[13,-40],[22,-52],[22,-48],[25,-36],[32,-17],[28,-12]],[[61261,47618],[10,-6],[19,-9],[33,11],[33,23],[32,26],[25,22],[27,29],[31,25],[26,8],[35,-10],[23,1],[35,10],[36,17],[28,32],[22,33],[32,38],[30,24],[28,27],[7,7]],[[60780,44886],[14,52],[14,51],[6,12],[14,17],[16,42],[5,58],[9,35],[13,51],[8,17],[10,49],[9,36],[10,43],[9,51],[-1,21],[-8,43],[-3,16],[5,38],[-5,51],[-5,20],[-5,36],[-6,43],[-8,19],[-14,58],[-3,22],[0,65],[-7,45],[5,57],[4,48],[-3,51],[0,19],[-9,56],[19,127],[7,48],[7,56],[15,43],[-3,40],[-6,68],[0,28],[14,39],[8,14],[5,45],[11,53],[-1,47],[5,27],[-10,41],[-3,32],[-17,23],[-7,69],[3,69],[22,67],[3,51],[24,77],[6,49],[15,28],[-7,34],[-7,13],[0,24],[11,21],[14,18],[8,50],[-5,51],[19,80],[22,33],[33,67],[28,27],[28,-12],[20,-30],[25,-18],[42,-9],[48,8],[11,12]],[[60938,43901],[-5,20],[0,51],[-5,24],[-25,56],[-26,32],[-12,17],[-6,39],[-7,21],[4,50],[9,39],[19,43],[10,23],[-2,24],[-16,26],[-21,70],[-12,24],[-8,49],[-8,39],[4,21],[-16,64],[-17,75],[-11,33],[-14,26],[-6,59],[5,38],[8,22]],[[59158,43277],[10,64],[7,51],[11,40],[5,53],[11,53],[13,50],[-7,55]],[[59208,43643],[-2,38],[24,62],[17,49],[12,52],[13,53],[21,42],[13,47],[22,39],[23,36],[4,49],[-12,57]],[[59095,29038],[8,10],[11,42],[10,21],[14,32],[19,25],[25,33]],[[59413,32117],[2,35],[11,67],[14,59],[11,49],[3,52],[18,45],[1,55],[-5,48],[15,60],[-5,64],[21,36],[29,33],[26,30],[14,41],[5,52],[22,95],[-18,47],[5,50],[-1,68]],[[59584,33123],[5,17],[18,30],[2,29],[-8,37],[7,20],[26,42],[34,13],[27,39],[46,2],[32,33],[22,52],[16,3]],[[59811,33440],[31,32],[24,7],[32,-11],[46,43],[36,14],[18,5],[31,13],[51,13],[36,10],[19,3],[24,-3],[33,18],[32,10],[32,17],[25,35],[13,52],[11,52],[11,49],[22,40],[8,51],[15,47],[23,32]],[[60405,34083],[-26,86],[1,42],[18,37],[35,35],[17,20],[46,27],[26,11],[19,13],[12,33],[8,52],[46,26],[37,36],[32,39],[22,33],[23,26],[21,31],[17,35],[19,35],[16,35],[21,25],[-13,67],[-3,55],[1,54],[6,54],[4,14]],[[60815,35025],[46,81],[7,31],[40,48],[13,6],[21,22],[44,13],[54,54],[51,37],[48,15],[43,39],[19,17],[14,87],[10,11]],[[60391,33990],[8,38],[6,55]],[[59519,31498],[-32,45],[-5,42],[-17,60],[-6,20],[-7,61],[-18,34],[-26,25],[-5,9],[-1,88],[6,42],[-1,127],[2,33],[4,33]],[[62307,51316],[31,14],[27,65],[17,42],[23,41],[22,39],[34,14],[23,28],[28,30],[29,33],[30,22],[37,23]],[[59288,30404],[-1,16],[1,22],[5,21],[-9,59],[-18,39],[0,6],[4,34],[21,45],[25,46],[19,98],[-8,62],[-7,34],[-14,20],[26,73],[30,3],[33,30],[34,23],[33,20],[33,44],[20,30],[11,35],[12,17],[7,25],[23,52],[23,44],[-5,50],[-18,47],[-21,43],[-9,20],[-9,18]],[[59258,30152],[-6,21],[-16,50],[4,36],[13,26],[8,41],[11,26],[3,11],[12,18],[1,23]],[[56832,26347],[8,2],[16,8],[37,6],[23,54],[13,35],[-2,38],[5,8],[10,5],[11,-12],[12,-13],[14,-10],[13,14],[33,18],[16,-11],[45,22],[30,-4],[44,32],[37,1],[34,6],[34,3],[32,17],[25,36],[20,45],[9,50],[14,49],[18,46],[21,44],[22,44],[22,44],[27,32],[32,19],[33,15],[33,12],[33,15],[33,12],[34,3],[33,10],[30,27],[33,2],[10,13],[12,21],[27,34],[20,14],[24,9],[27,31],[21,4],[26,25],[16,49],[30,37],[16,16],[10,21]],[[58013,27361],[5,23],[3,29],[-3,19],[-17,38],[8,31],[44,37],[3,52],[16,34],[-1,22]],[[58215,27977],[6,3],[35,23],[26,23],[32,34]],[[58071,27646],[-8,49],[6,29],[22,49],[4,43],[13,24],[32,17],[28,32],[18,42],[11,23],[9,14]],[[58314,28060],[38,-1],[32,45],[5,80],[14,18],[28,-15],[17,30]],[[58458,28234],[8,17],[8,30],[14,16],[11,36],[37,16],[30,25],[15,44],[29,29],[21,-3],[45,18],[37,-9],[31,23],[41,32],[22,-8],[29,18],[15,7]],[[61225,35486],[48,4],[14,53],[-6,166],[20,106],[33,108],[3,37],[8,42],[-40,113],[-2,62],[13,34],[12,64],[2,56],[0,11]],[[59507,16209],[356,-149]],[[59863,16060],[274,-131]],[[60137,15929],[168,-77]],[[60305,15852],[123,-49]],[[63560,14332],[120,-66]],[[55687,24943],[11,17],[8,16],[5,10]],[[55812,25241],[0,3],[3,15],[16,20],[0,13],[6,19],[4,3],[20,2],[13,-3],[13,-12],[14,-1]],[[55901,25300],[22,-36],[5,-20],[2,-22],[8,-14],[14,-11],[11,-12],[11,-24],[13,-32],[32,-24],[10,-1],[8,5]],[[56386,25810],[5,8],[17,30],[26,-4],[15,-14],[42,15]],[[61846,48131],[5,22],[-7,59],[-5,31],[-5,24],[-7,35],[-11,41],[-22,72],[-12,43],[-11,32],[-9,36],[-11,36]],[[56037,25109],[20,18],[8,41],[-4,32],[17,52],[4,18],[11,15],[25,25],[9,62],[4,28],[8,21],[-1,55],[-2,50],[6,46],[7,15],[-1,19],[-29,78],[-1,22],[16,49],[18,11],[15,-9],[15,-10],[56,36],[39,-33],[57,-7],[14,10],[12,17],[15,19]],[[56491,25845],[10,14],[26,23],[30,30],[29,22],[21,19],[32,46],[25,35],[24,38],[20,43],[24,39],[31,28],[27,24],[18,43],[-7,64],[11,25],[9,4]],[[59249,42445],[-17,48],[-13,48],[-3,54],[-18,49],[-10,52],[-7,52],[13,52],[-1,53],[-8,69],[-25,72],[7,56],[-8,40],[-1,43],[6,44],[-3,31],[-4,52]],[[59306,42357],[-12,15],[-28,31],[-17,42]],[[59375,42304],[-22,22],[-31,13],[-16,18]],[[59940,40378],[-6,9],[-24,37],[-13,51],[-13,43],[-26,41],[-25,38],[-10,54],[10,55],[3,52],[-6,59],[-14,48],[-11,51],[-8,65],[10,43],[3,54],[-7,56],[-9,54],[-25,36],[-28,32],[-27,34],[-30,30],[-28,13],[-34,-7],[-35,-1],[-32,14],[-28,28],[-32,18],[-35,14],[-31,27],[-29,29],[-23,45],[-16,50],[-17,51],[-26,37],[-19,47],[10,47],[26,22],[23,42],[18,49],[9,55],[-2,55],[-10,53],[-13,51],[-4,56],[9,54],[15,65],[0,42]],[[61997,41767],[-7,14],[-8,26],[-1,40],[-19,40],[-36,31],[-35,56],[-27,54],[-10,43],[-23,11],[-31,32],[-17,16],[-13,5],[-9,10],[-12,27],[-7,41],[-6,42],[6,25],[2,14],[-7,43],[-10,16],[-9,16],[-5,19],[3,45],[1,21],[-11,31],[-29,73],[-6,14],[-14,16],[-11,34],[-11,77],[-13,30],[-20,21],[-27,8],[-13,13],[-16,26],[-6,40],[-9,21],[-23,18],[-12,43],[0,50],[2,17],[-6,32],[-19,21],[-31,3],[-27,-11],[-28,-1],[-17,12],[-11,13],[-19,10],[-34,35],[-22,-1],[-24,14],[-17,39],[-10,12],[-22,-2],[-14,12],[-12,43],[-5,40],[-13,32],[-1,15],[5,13],[-2,22],[-8,19],[-21,21],[-32,37],[-2,17],[4,51],[-5,46],[-2,41],[-37,47],[-29,19],[-32,20],[-37,35],[-1,20],[3,16],[5,57],[-17,36],[-8,31],[-10,20],[-1,17]],[[59849,39200],[22,74],[24,25],[26,-12],[32,4],[17,41],[42,108],[25,61],[14,45],[-1,56],[2,55],[13,54],[4,54],[-2,56],[1,56],[-10,51],[-12,53],[8,53],[5,53],[-11,54],[-6,47],[-25,34],[-27,33],[-22,42],[-16,48],[-6,20]],[[59833,38441],[-9,38],[-15,44],[-4,55],[-5,55],[4,55],[1,54],[-17,44],[-17,43],[-7,57],[-25,80],[0,32],[6,30],[39,61],[15,23],[42,71]],[[59894,38297],[-5,1],[-25,11],[-31,27],[-18,35],[18,70]],[[60660,37879],[-23,5],[-30,23],[-8,55],[-24,44],[-25,28],[-25,53],[-18,19],[-29,2],[-23,19],[-53,16],[-36,14],[-32,3],[-34,-4],[-33,-6],[-32,1],[-33,0],[-33,8],[-26,35],[-29,31],[-25,28],[-33,29],[-19,9],[-61,-24],[-19,-8],[-10,2],[-26,17],[-17,13]],[[60761,37862],[-31,-21],[-34,-4],[-23,26]],[[60940,37635],[-12,18],[-21,71],[-13,15],[-49,101],[-46,19],[-38,3]],[[61326,36363],[-21,79],[-6,92],[4,28],[0,14],[-3,12],[-3,23],[-6,13],[5,66],[-12,29],[-61,47],[-49,58],[-25,32],[-18,14],[-27,53],[-27,63],[-8,82],[13,37],[-4,61],[-28,41],[-15,143],[15,182],[-12,44],[-85,45],[-4,4]],[[61679,49089],[-15,50],[-17,50],[-14,49],[-13,50],[-6,54],[-7,54],[-4,56],[-2,57],[-4,54],[-8,61],[-16,43],[-27,37],[-21,44],[-22,43],[-16,47],[-9,50],[-7,53],[-11,51],[-5,53],[2,53],[1,54],[2,54],[6,53],[8,51],[3,46],[9,53],[15,47],[18,46],[17,46],[27,42],[35,16],[26,16],[29,50],[16,40],[19,47],[23,56],[21,43],[30,31],[26,36],[28,30],[27,30],[35,11],[32,0],[25,23],[17,43],[16,50],[24,41],[30,26],[35,12],[30,19],[29,31],[25,45],[22,42],[26,33],[32,5],[39,-15],[28,-18],[19,-17]],[[61781,47934],[40,37],[30,18],[11,55],[-6,52],[-10,35]],[[62447,41096],[-50,113],[-2,30],[15,63],[-4,36],[-34,63],[-13,2],[-8,-20],[-18,-11],[-16,20],[-21,9],[-41,23],[-55,-5],[-72,59],[-35,45],[-25,23],[-25,29],[-28,45],[-3,37],[-2,88],[-13,22]],[[62840,39256],[-9,28],[-5,20],[-29,47],[-28,102],[-12,38],[-5,31],[1,37],[-16,65],[-14,71],[-14,55],[2,50],[-10,58],[5,28],[-11,27],[-8,24],[-25,35],[-11,49],[-4,99],[-40,84],[-10,52],[-14,49],[-18,48],[-13,49],[-12,52],[6,51],[6,54],[6,53],[8,52],[7,55],[-5,53],[-14,49],[-30,33],[-25,33],[-34,73],[-3,28],[14,26],[-16,56],[-8,14]],[[63459,38316],[-6,-2],[-9,-3],[-15,-3],[-11,2],[-48,34],[-27,3],[-8,-1],[-14,6],[-15,-17],[-10,1],[-17,39],[-7,11],[-14,0],[-11,-6],[-10,-28],[-9,-4],[-7,2],[-22,20],[-30,18],[-23,25],[-10,3],[-32,-5],[-25,-2],[-37,-1],[-19,-12],[-28,-9],[-13,-7],[-18,7],[-22,39],[-23,10],[-16,14],[-52,30],[-8,13],[-1,20],[11,32],[-10,66],[-6,26],[-13,137],[8,32],[19,20],[16,41],[10,14],[8,21],[9,64],[7,24],[3,19],[-12,35],[-7,61],[0,59],[-8,32],[-13,14],[-12,10],[-8,17],[-4,19]],[[66304,36780],[2,7],[2,48]],[[66448,36571],[-144,209]],[[66499,36326],[1,109]],[[66498,36242],[1,84]],[[66488,36134],[10,108]],[[66464,35896],[24,238]],[[69889,49158],[-14,-1],[-21,-32],[-13,-18],[-9,-3],[-8,-2]],[[69814,49098],[-3,0],[-18,0],[-26,24]],[[70820,47355],[-15,-4],[-34,-14],[-25,-33],[-19,-45],[-22,-42],[-27,-29],[-32,-9],[-33,3],[-31,12],[-32,21],[-31,22],[-33,12],[-35,-2],[-33,-8],[-31,9],[-25,30],[-15,47],[-11,51],[1,56],[16,48],[21,44],[6,53],[3,57],[4,54],[6,53],[17,46],[17,51],[17,43],[6,55],[-3,55],[-17,51],[-26,35],[-29,26],[-21,44],[-11,52],[-11,57],[-22,38],[-27,33],[-32,20],[-31,17],[-33,9],[-32,19],[-25,37],[-17,48],[-8,53],[-8,53],[-10,52],[-1,56],[5,53],[-8,54],[-6,55],[-9,54],[-16,48],[-23,41],[-26,34],[-27,34],[-26,46],[-26,27],[-35,21]],[[71188,46944],[-23,-4],[-19,7],[-19,30],[-25,36],[-25,34],[-28,31],[-29,28],[-24,35],[-25,36],[-21,42],[-22,39],[-24,39],[-29,32],[-33,21],[-22,5]],[[63680,14266],[475,-107],[620,174]],[[64775,14333],[155,87]],[[64930,14420],[215,110]],[[65145,14530],[632,354]],[[65777,14884],[133,67]],[[65910,14951],[1098,561]],[[60428,15803],[1252,-571]],[[61680,15232],[807,-384]],[[57976,17985],[-492,83],[-9,3]],[[57976,17985],[117,-116]],[[58093,17869],[314,-328]],[[58407,17541],[351,-420]],[[58758,17121],[265,-320]],[[59023,16801],[108,-131]],[[59131,16670],[376,-461]],[[62487,14848],[461,-229]],[[62948,14619],[126,-56]],[[63074,14563],[157,-75]],[[63231,14488],[206,-98]],[[63437,14390],[123,-58]],[[66314,26868],[-54,409]],[[66385,26410],[-71,458]],[[66387,26052],[-2,358]],[[66392,25552],[-5,500]],[[66419,25280],[-27,272]],[[66509,24730],[-90,550]],[[66791,23878],[-282,852]],[[66260,27277],[2,190]],[[68484,21337],[-519,310],[-109,208]],[[68635,21132],[-151,205]],[[68669,21025],[-34,107]],[[68698,20890],[-29,135]],[[68982,20185],[-284,705]],[[67008,15512],[647,347]],[[67655,15859],[470,223]],[[68125,16082],[919,463]],[[69265,16968],[72,122]],[[69337,17090],[133,188]],[[69470,17278],[84,125]],[[69554,17403],[79,104]],[[69633,17507],[91,210],[164,-20],[19,-92],[43,-90],[54,-27],[17,-20],[11,-6]],[[69044,16545],[131,244]],[[69175,16789],[90,179]],[[75904,33548],[338,-482]],[[76242,33066],[315,-434]],[[76557,32632],[94,-137],[93,-71]],[[76744,32424],[591,-363]],[[83490,24990],[78,-23],[36,-199]],[[83604,24768],[218,-1123]],[[83822,23645],[53,-277]],[[89706,57444],[-463,802]],[[90142,56366],[-436,1078]],[[83875,23368],[49,-236],[152,-315]],[[84076,22817],[115,-180],[-2,-89]],[[90729,55365],[-587,1001]],[[90491,53164],[238,2201]],[[89584,50283],[907,2881]],[[89336,47784],[-171,880]],[[89481,47090],[-145,694]],[[89551,46651],[-70,439]],[[73515,34205],[127,335]],[[73642,34540],[428,333]],[[74368,35077],[159,-39]],[[74070,34873],[140,108]],[[95379,25920],[135,17]],[[95514,25937],[416,60]],[[95249,25888],[130,32]],[[95930,25997],[507,899]],[[94941,23682],[-15,149]],[[94959,23510],[-18,172]],[[94979,23320],[-20,190]],[[89239,27775],[-2,47],[6,28],[9,31],[0,23],[8,28],[8,18],[9,32],[7,43],[8,38],[9,42],[-1,38],[-4,23],[-1,17],[-6,35],[-3,27],[-2,26],[-4,24],[-12,15],[-21,35],[-13,40],[-8,33],[2,46],[5,21],[2,22],[-2,13],[0,26],[-6,28],[-12,31],[-12,27],[-10,37],[-4,27],[-1,23],[-3,20],[-1,39],[-6,66],[-4,24],[-6,28],[-1,17],[1,14],[0,22],[5,42],[4,50],[2,14]],[[89169,26812],[-3,23],[1,42],[-4,50],[2,31],[5,20],[10,38],[11,26],[6,22],[5,30],[3,68],[5,43],[-1,67],[-11,54],[-2,22],[-6,56],[3,47],[4,18],[5,9],[5,25],[8,65],[23,97],[1,110]],[[89205,26462],[2,21],[-1,18],[0,30],[3,18],[3,25],[-5,30],[-7,35],[-10,66],[-11,38],[-7,35],[-3,23],[0,11]],[[89213,26401],[1,8],[1,18],[-7,20]],[[89211,26241],[-1,38],[-2,14],[1,24],[3,36],[-2,14],[3,34]],[[89173,25968],[5,15],[5,26],[3,15],[5,10],[8,12],[16,43],[3,8],[2,10],[1,7],[3,10],[4,15],[-2,18],[-3,14],[-5,2],[-3,4],[-4,18],[2,22],[-1,9],[-1,15]],[[89159,25696],[-11,32],[-8,20],[-5,20],[1,9],[0,6],[-3,10],[0,7],[0,18],[1,6],[2,22],[5,11],[5,16],[7,14],[11,11],[4,25],[1,20],[0,17],[4,8]],[[89101,24431],[-3,12],[-10,36],[0,10],[14,34],[8,6],[5,6],[3,6],[4,15],[2,5],[5,8],[2,12],[6,18],[0,9],[-3,18],[2,13],[-1,29],[3,9],[0,9],[1,7],[3,4],[1,8],[3,17],[-2,12],[-3,9],[0,8],[6,12],[7,0],[1,6],[1,12],[8,14],[3,20],[-4,13],[-6,32],[0,12],[3,19],[5,9],[5,6],[4,16],[2,9],[5,9],[6,7],[3,7],[6,9],[7,23],[4,24],[-2,19],[-1,13],[6,15],[4,6],[1,10],[-2,8],[-3,25],[1,14],[3,14],[8,21],[2,18],[-2,7],[-7,14],[-1,6],[2,23],[0,8],[-2,18],[1,21],[6,25],[0,11],[-2,56],[-3,6],[-5,13],[-4,20],[5,39],[1,23],[-3,6],[-28,51],[2,10],[6,20],[3,14],[4,45],[-4,21],[-5,9],[-7,5],[-10,5],[0,6],[-1,4],[-5,16],[-6,19],[0,2]],[[89231,23150],[3,8],[5,9],[2,12],[-2,11],[1,9],[0,6],[1,14],[3,20],[2,20],[3,22],[1,14],[-3,55],[0,8],[0,7],[-3,40],[-3,72],[-3,47],[-10,46],[1,29],[-5,23],[5,36],[-8,22],[-27,46],[-12,13],[-1,50],[7,36],[11,118],[-2,88],[-3,27],[-38,129],[-8,47],[-22,99],[-25,98]],[[86374,18613],[1,30],[-29,16],[-46,13],[-19,40],[-55,20],[-24,17],[-36,22],[-49,35],[-38,22],[-67,54],[-136,106],[-21,40],[-68,79],[-14,31],[-25,11],[-32,49],[-34,82],[-27,33],[-10,24],[-43,46],[-15,41],[-25,30],[-23,36],[-30,8],[-23,31],[-33,49],[-21,36],[13,32],[-42,100],[-15,8],[-35,75],[-19,40],[-39,66],[-29,84],[-14,20],[-10,32],[-22,81],[-25,30],[-149,395],[-40,90],[-23,47],[-104,286],[-32,74],[-34,175],[0,144],[-64,159],[-69,232],[-16,50],[-21,59],[-16,26],[-23,39],[-22,45],[-47,99],[-65,83],[-31,72],[-53,41],[-98,133],[-99,117]],[[87532,46852],[66,104]],[[87494,46660],[38,192]],[[87598,46956],[160,254]],[[87799,47374],[10,240]],[[87758,47210],[41,164]],[[88615,49777],[133,102]],[[87943,49047],[101,161],[285,293],[286,276]],[[88748,49879],[836,404]],[[89165,48664],[-550,1113]],[[97077,28033],[301,523]],[[96895,27705],[182,328]],[[96729,27419],[166,286]],[[96437,26896],[155,273]],[[96592,27169],[137,250]],[[97378,28556],[426,742]],[[74345,31069],[-15,73],[-11,131],[11,97],[-7,102],[-6,25],[-36,65],[-7,28],[-12,28],[-21,39],[-6,19],[-4,42],[-7,17],[-25,12],[-11,-7],[-10,-12],[-13,-6],[-14,2],[-16,13],[-6,11],[-11,18],[-12,21],[-7,27],[-7,16],[-31,72]],[[74319,30648],[1,76],[11,36],[15,44],[14,69],[0,20],[-9,52],[-10,49],[4,75]],[[74367,29928],[-6,29],[-5,29],[2,22],[16,37],[5,23],[-3,32],[-8,34],[-8,24],[-24,55],[-9,37],[-15,162],[15,134],[-1,50],[-7,52]],[[75657,33846],[247,-298]],[[74666,27606],[-299,2322]],[[74556,27049],[110,557]],[[74240,25428],[238,1239]],[[74478,26667],[78,382]],[[97603,31262],[-960,94],[-2546,-526]],[[97603,31262],[2,-1],[3,0],[2,0],[3,-1],[3,0],[2,-1],[3,0],[3,0],[2,-1],[3,-1],[2,0],[3,-1],[3,0],[2,-1],[3,-1],[2,0],[3,-1],[3,-1],[2,0],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[2,-2],[3,-1],[2,-1],[3,-1],[2,-2],[3,-1],[2,-1],[3,-2],[2,-1],[3,-2],[2,-1],[3,-2],[2,-1],[2,-2],[3,-1],[2,-2],[3,-2],[2,-1],[2,-2],[3,-2],[2,-2],[3,-1],[2,-2],[2,-2],[3,-2],[2,-2],[3,-1],[2,-2],[2,-2],[3,-2],[2,-2],[2,-2],[3,-2],[2,-2],[2,-3],[2,-2],[3,-2],[2,-2],[2,-2],[3,-2],[2,-3],[2,-2],[2,-2],[3,-3],[2,-2],[2,-2],[2,-3],[2,-2],[3,-2],[2,-3],[2,-2],[2,-3],[2,-2],[3,-3],[2,-3],[2,-2],[2,-3],[2,-3],[2,-2],[2,-3],[3,-3],[2,-2],[2,-3],[2,-3],[2,-3],[2,-3],[2,-2],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[1,-4],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-4],[1,-3],[2,-4],[2,-3],[2,-4],[1,-3],[2,-4],[2,-4],[2,-3],[1,-4],[2,-3],[2,-4],[2,-4],[1,-4],[2,-3],[2,-4],[1,-4],[2,-4],[2,-3],[1,-4],[2,-4],[2,-4],[1,-4],[2,-4],[1,-4],[2,-4],[1,-4],[2,-4],[1,-4],[2,-4],[2,-4],[1,-4],[2,-4],[1,-4],[1,-4],[2,-4],[1,-4],[2,-4],[1,-5],[2,-4],[1,-4],[1,-4],[2,-4],[1,-5],[2,-4],[1,-4],[1,-5],[2,-4],[1,-4],[1,-5],[2,-4],[1,-5],[1,-4],[1,-4],[2,-5],[1,-4],[1,-5],[1,-4],[1,-5],[2,-4],[1,-5],[1,-4],[1,-5],[1,-5],[1,-4],[1,-5],[2,-5],[1,-4],[1,-5],[1,-5],[1,-4],[1,-5],[1,-5],[1,-4],[1,-5],[1,-5],[1,-5],[1,-4],[1,-5],[1,-5],[1,-5],[1,-5],[1,-5],[0,-5],[1,-4],[1,-5],[1,-5],[1,-5],[1,-5],[1,-5],[0,-5],[1,-5],[1,-5],[1,-5],[1,-5],[0,-5],[1,-5],[1,-5],[0,-5],[1,-5],[1,-5],[0,-5],[1,-5],[1,-6],[0,-5],[1,-5],[1,-5],[0,-5],[1,-5],[0,-5],[1,-6],[0,-5],[1,-5],[1,-5],[0,-5],[0,-6],[1,-5],[0,-5],[1,-5],[0,-6],[1,-5],[0,-5],[1,-5],[0,-6],[0,-5],[1,-5],[0,-6],[0,-5],[1,-5],[0,-6],[0,-5],[1,-5],[0,-6],[0,-5],[0,-5],[1,-6],[0,-5],[0,-6],[0,-5],[0,-5],[1,-6],[0,-5],[0,-6],[0,-5],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[-1,-6],[0,-5],[0,-6],[0,-5],[0,-6],[-1,-5],[0,-6],[0,-5],[0,-6],[-1,-5],[0,-6],[0,-5],[-1,-6],[0,-5],[0,-6],[-1,-6],[0,-5],[0,-6],[-1,-5],[0,-6],[-1,-5],[0,-6],[0,-5],[-1,-6],[0,-5],[-1,-6],[0,-6],[-1,-5],[0,-6],[-1,-5],[-1,-6],[0,-5],[-1,-6],[0,-5],[-1,-6],[0,-5],[-1,-6],[-1,-5],[0,-6],[-1,-5],[-1,-6],[0,-5],[-1,-6],[-1,-6],[-1,-5],[0,-6],[-1,-5],[-1,-6],[-1,-5],[0,-6],[-1,-5],[-1,-5],[-1,-6],[-1,-5],[-1,-6],[0,-5],[-1,-6],[-1,-5],[-1,-6],[-1,-5],[-1,-6],[-1,-5],[-1,-5],[-1,-6],[-1,-5],[-1,-6],[-1,-5],[-1,-6],[-1,-5],[-1,-5],[-1,-6],[-1,-5],[-1,-5],[-1,-6],[-1,-5],[-1,-6],[-1,-5],[-2,-5],[-1,-6],[-1,-5],[-1,-5],[-1,-5],[-1,-6],[-2,-5],[-1,-5],[-1,-6],[-1,-5],[-1,-5],[-2,-5],[-1,-6],[-1,-5],[-2,-5],[-1,-5],[-1,-5],[-2,-6],[-1,-5],[-1,-5],[-2,-5],[-1,-5],[-1,-5],[-2,-6],[-1,-5],[-2,-5],[-1,-5],[-1,-5],[-2,-5],[-1,-5],[-2,-5],[-1,-5],[-2,-5],[-1,-5],[-2,-5],[-1,-5],[-2,-5],[-1,-5],[-2,-5],[-2,-5],[-1,-5],[-2,-5],[-1,-5],[-2,-5],[-2,-5],[-1,-5],[-2,-5],[-2,-4],[-1,-5],[-2,-5],[-2,-5],[-1,-5],[-2,-5],[-2,-4],[-1,-5],[-2,-5],[-2,-5],[-2,-4],[-1,-5],[-2,-5],[-2,-4],[-2,-5],[-2,-5],[-1,-4],[-2,-5],[-2,-5],[-2,-4],[-2,-5],[-2,-4],[-1,-5],[-2,-4],[-2,-5],[-2,-4],[-2,-5],[-2,-4],[-2,-5],[-2,-4],[-2,-5],[-2,-4],[-2,-4],[-2,-5],[-2,-4],[-2,-4],[-1,-5],[-3,-4],[-2,-4],[-2,-5],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-5],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-3,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-3,-4],[-2,-4],[-2,-4],[-2,-4]],[[78355,38570],[19,55],[15,39],[31,51],[8,49],[-8,68],[-1,44],[7,43],[3,51],[0,37],[-16,32],[-19,13],[-2,24],[13,13],[30,15],[12,34],[-2,57],[3,51],[22,41],[9,55],[-6,40],[-12,70],[7,74],[-5,24],[-32,48],[-18,43],[-8,84],[1,84],[-22,73],[-16,80],[-1,41]],[[78421,38188],[-16,19],[-14,-7],[-29,-27],[-29,21],[-27,30],[-14,52],[-26,50],[-7,31],[11,45],[28,29],[35,70],[12,39],[1,5]],[[78497,38088],[-38,38],[-20,34],[-18,28]],[[79075,38269],[-14,-17],[-32,-60],[-21,-60],[-3,-81],[-8,-88],[-22,-66],[-30,-55],[-2,-34],[-6,-19],[-18,-25],[-26,-12],[-14,10],[-14,22],[-53,55]],[[78721,37987],[-28,14],[-23,35],[-14,45],[-23,23],[-27,-3],[-25,-42],[-29,-19],[-29,12],[-26,36]],[[78812,37839],[-23,34],[-29,70],[-11,22],[-14,13]],[[79297,38382],[-28,-8],[-34,-5],[-28,-8],[-42,-13],[-53,-28],[-21,-35],[-7,-6]],[[79455,38586],[-20,-8],[-20,-22],[-3,-26],[-9,-20],[-14,-23],[-13,-33],[-30,-34],[-26,-24],[-11,-9]],[[90117,33597],[4,44]],[[90135,33514],[-18,83]],[[90145,33470],[-10,44]],[[90162,33398],[-17,72]],[[90193,33293],[-31,105]],[[91104,34763],[-836,267]],[[89332,30257],[-25,-67],[-19,-74],[-5,-71],[-9,-68],[-5,-100],[-15,-100],[-36,-82],[-14,-103],[-4,-135],[1,-92],[-6,-131],[-16,-179]],[[89805,32845],[19,198]],[[89784,32750],[21,95]],[[74210,34981],[55,33]],[[74265,35014],[103,63]],[[74527,35038],[155,1]],[[74682,35039],[160,-75]],[[74842,34964],[145,-195]],[[74987,34769],[670,-923]],[[90163,43482],[-612,3169]],[[90010,42660],[153,822]],[[89918,42203],[92,457]],[[89862,41918],[56,285]],[[89831,41721],[31,197]],[[77335,32061],[420,-270]],[[77755,31791],[726,-457]],[[78481,31334],[279,-291]],[[78760,31043],[148,-191]],[[78908,30852],[432,-536]],[[87097,45768],[122,62]],[[86666,45486],[166,118]],[[86832,45604],[48,28]],[[86880,45632],[92,73]],[[86972,45705],[125,63]],[[87465,46507],[29,153]],[[87468,46405],[-3,102]],[[87470,46311],[-2,94]],[[87473,46229],[-3,82]],[[87219,45830],[62,29]],[[86163,45279],[107,-3]],[[86270,45276],[35,-11]],[[86305,45265],[35,-11]],[[86565,45309],[101,177]],[[86340,45254],[115,-4]],[[86455,45250],[110,59]],[[85499,44783],[120,-184],[86,161],[30,133]],[[85758,44994],[73,79]],[[85735,44893],[23,101]],[[85831,45073],[19,22]],[[85474,43546],[-87,83]],[[85443,43145],[1,20],[34,301],[-4,80]],[[85381,48465],[2,20],[0,26],[-4,23],[-3,16],[3,23],[6,14],[11,9],[12,-4],[11,-11],[11,-2],[8,11],[5,22],[6,33],[8,12],[9,5],[8,8],[2,17],[-2,16],[4,12],[11,6],[13,3],[12,5],[16,3],[12,-14],[21,-6],[17,-3],[15,-11],[16,11],[11,10],[1,18],[7,19],[16,15],[20,5],[24,-5],[8,5],[5,8],[3,8],[3,11],[0,21],[-5,65]],[[85347,48216],[8,11],[2,13],[2,19],[1,19],[-2,19],[-3,19],[3,18],[4,19],[1,17],[3,25],[4,29],[3,14],[8,27]],[[85704,48889],[14,6],[15,24],[45,-12],[23,-40]],[[85801,48867],[129,21],[115,-73],[39,136],[25,13],[75,-170],[45,4],[8,57],[42,103],[104,91],[211,-71],[134,137],[73,-119],[78,-54],[62,283],[86,176]],[[87027,49401],[138,120]],[[77148,43749],[-37,0],[-15,-15],[-20,-4],[-26,14],[-41,-1],[-27,8],[-34,32],[-20,53],[7,57],[12,35],[1,34],[-19,23],[-29,18],[-13,15],[-7,22],[-1,43],[-4,28],[-25,35],[-1,26],[34,106],[4,70],[3,22]],[[77303,43165],[-19,24],[-17,41],[-23,58],[-17,33],[-25,42],[-25,34],[-21,43],[-12,47],[4,55],[-3,57],[5,54],[7,63],[-9,33]],[[77553,43290],[-7,12],[-12,26],[-26,38],[-46,17],[-24,-18],[-23,-57],[-15,-68],[-6,-25],[-23,-34],[-19,-15],[-20,-14],[-14,-1],[-15,14]],[[78257,41928],[3,22],[-5,113],[-10,41],[-15,15],[-14,5],[-33,2],[-17,12],[-13,18],[-53,100],[-16,32],[-25,65],[-31,54],[-10,18],[-12,42],[-27,52],[-18,49],[-12,13],[-8,34],[-21,52],[-14,52],[-14,67],[-23,85],[-18,20],[-37,17],[-31,33],[-7,14],[-4,24],[-11,33],[-16,46],[-3,20],[3,29],[-6,26],[-15,12],[-33,-6],[-21,10],[-24,30],[-15,21],[-21,23],[-23,21],[-24,32]],[[78258,41635],[12,15],[33,63],[0,43],[-15,24],[-28,24],[-9,26],[3,63],[1,17]],[[78364,40027],[-3,33],[-3,45],[15,60],[-4,49],[-27,48],[-2,25],[9,37],[3,20],[-4,40],[9,76],[-7,61],[-1,55],[14,79],[-2,65],[-24,44],[-6,25],[12,72],[12,40],[4,35],[-5,21],[-21,0],[-28,-23],[-29,0],[-9,15],[-1,35],[25,60],[16,26],[7,50],[-8,30],[-40,54],[-6,29],[15,65],[4,56],[0,31],[-10,38],[-45,76],[-8,22],[-2,33],[13,37],[17,27],[14,17]],[[89243,58246],[-173,1675]],[[87401,49754],[29,20]],[[87430,49774],[29,-32]],[[87459,49742],[96,-58]],[[87165,49521],[158,140]],[[87323,49661],[78,93]],[[87555,49684],[30,-49]],[[87585,49635],[36,-77]],[[87621,49558],[29,-61],[60,-52]],[[87710,49445],[481,41]],[[87812,48721],[28,145],[103,181]],[[87815,48599],[-3,122]],[[87820,48541],[-5,58]],[[87835,48293],[-15,248]],[[87832,48156],[3,137]],[[87828,48026],[4,130]],[[87809,47614],[19,412]],[[85440,43007],[3,138]],[[85162,44335],[-39,270],[79,272]],[[85202,44877],[120,125],[78,-48],[42,-82],[57,-89]],[[85178,44259],[-16,76]],[[85224,44050],[-46,209]],[[85343,43766],[28,74],[0,43],[-24,32],[-82,67],[-41,68]],[[85387,43629],[-44,137]],[[85850,45095],[59,84]],[[85909,45179],[35,35]],[[85944,45214],[25,5]],[[85969,45219],[94,36]],[[86063,45255],[100,24]],[[87428,46004],[47,113],[-2,112]],[[87407,45952],[21,52]],[[87281,45859],[76,-31]],[[87357,45828],[50,124]],[[79340,30316],[249,-311]],[[79589,30005],[277,-292]],[[79782,29104],[84,609]],[[79866,29713],[267,-387]],[[80133,29326],[203,-254],[35,-135],[12,-74]],[[80346,28664],[-6,-8],[-2,-2],[-5,-8],[-3,-8],[-2,-25],[-3,-18],[-13,-17],[-11,-13]],[[80383,28863],[4,-30]],[[80387,28833],[-19,-20],[-5,-12],[-5,-59]],[[79686,27651],[8,54],[27,94],[25,63],[25,138],[7,75],[-1,41],[-10,92],[5,99],[21,192],[2,125],[-12,183],[-2,186],[5,62],[-4,49]],[[79463,27065],[162,432]],[[79625,27497],[61,154]],[[79463,27065],[167,-184]],[[71746,19982],[757,545]],[[73887,23657],[195,984]],[[73734,22880],[153,777]],[[73661,22472],[73,408]],[[74181,25170],[59,258]],[[74127,24879],[54,291]],[[74082,24641],[45,238]],[[72503,20527],[917,701]],[[73488,21602],[173,870]],[[73420,21228],[68,374]],[[81262,25701],[942,-296]],[[82204,25405],[193,-60]],[[82397,25345],[753,-244]],[[83150,25101],[340,-111]],[[79630,26881],[606,-717]],[[80236,26164],[173,-202]],[[80409,25962],[632,-195]],[[81041,25767],[221,-66]],[[90521,32787],[-68,55]],[[90564,32749],[-43,38]],[[90593,32726],[-29,23]],[[90605,32714],[-12,12]],[[90623,32701],[-18,13]],[[92495,32992],[-1391,1771]],[[89726,34447],[22,62]],[[89753,34328],[-27,119]],[[89768,34304],[-15,24]],[[89760,34243],[-7,85]],[[89793,34262],[-25,42]],[[89794,34229],[-1,33]],[[89839,34161],[-35,28],[-10,40]],[[89770,33919],[-21,104],[11,220]],[[89844,34137],[-5,24]],[[89844,34055],[6,40],[-6,42]],[[89869,33870],[-33,139],[8,46]],[[89801,33666],[-31,253]],[[89820,33486],[-19,180]],[[90547,36548],[172,1014]],[[90357,35390],[190,1158]],[[90021,34919],[90,37]],[[90268,35030],[89,360]],[[89979,33765],[-24,-1],[-19,-4],[-14,16],[-18,16],[0,16],[-6,19],[-3,20],[-8,18],[-18,5]],[[90125,33684],[-38,8],[-45,17],[-12,16],[-27,19],[-24,21]],[[90121,33641],[4,43]],[[90185,41102],[-354,619]],[[90729,32611],[-106,90]],[[90822,32531],[-93,80]],[[90882,32447],[-60,84]],[[91006,32411],[-124,36]],[[90939,38807],[-754,2295]],[[90719,37562],[220,1245]],[[90215,33234],[-22,59]],[[90233,33182],[-18,52]],[[90242,33157],[-9,25]],[[90254,33122],[-12,35]],[[89332,30257],[12,90],[7,71],[2,42],[15,56],[-5,67],[17,111],[-5,-59],[11,124],[8,52],[3,42],[4,44],[1,22],[-3,18],[-3,22],[-12,26],[-8,26],[-7,25],[-3,25],[-1,23],[0,19],[1,8],[1,7],[0,11],[1,15],[1,11],[4,18],[0,9],[1,12],[1,12],[4,13],[1,14],[2,13],[1,8],[2,9],[1,13],[1,14],[2,7],[0,6],[2,11],[1,8],[2,12],[2,11],[1,11],[2,9],[2,9],[2,10],[1,8],[3,11],[6,17],[15,17],[14,20],[11,26],[18,43],[11,21],[4,7],[2,8],[3,7],[5,5],[7,-1],[6,1],[5,7],[1,12],[1,10],[-1,11],[0,16],[-1,15],[-2,13],[0,7],[0,9],[0,10],[0,10],[1,13],[1,11],[2,21],[2,26],[-2,15],[-7,18],[-2,21],[-2,10],[-5,12],[-5,22],[1,19],[2,20],[13,12],[8,9],[8,9],[5,7],[9,10],[10,9],[9,8],[8,12],[2,13],[1,9],[0,9],[0,10],[-6,11],[-3,6],[-4,8],[-2,8],[-2,9],[-2,8],[-1,8],[-1,9],[0,7],[0,10],[0,8],[1,9],[0,7],[1,8],[0,8],[4,8],[6,9],[4,5],[3,8],[-1,-4],[3,8],[4,9],[3,7],[3,7],[8,17],[9,16],[4,6],[17,25],[13,18],[11,14],[6,11],[12,15],[5,11],[9,21],[4,13],[6,10],[7,21],[8,17],[8,20],[7,12],[6,9],[6,10],[5,9],[5,9],[4,18],[5,18],[3,15],[4,15],[3,26],[8,44],[3,26],[3,20],[3,17],[5,18],[3,22],[2,23],[1,4]],[[90272,33074],[-18,48]],[[90286,33037],[-14,37]],[[90302,32991],[-16,46]],[[90317,32957],[-15,34]],[[90382,32902],[-65,55]],[[90426,32866],[-44,36]],[[90453,32842],[-27,24]],[[89778,34586],[17,42],[31,105]],[[89748,34509],[30,77]],[[89826,34733],[29,94],[27,37],[139,55]],[[92081,31419],[-143,126]],[[92177,31333],[-96,86]],[[92354,31174],[-177,159]],[[93602,31513],[-1107,1479]],[[91796,31684],[-83,77]],[[91868,31611],[-72,73]],[[91938,31545],[-70,66]],[[91056,32352],[-50,59]],[[91206,32112],[-150,240]],[[91255,32083],[-49,29]],[[91365,32007],[-110,76]],[[91519,31908],[-154,99]],[[91555,31882],[-36,26]],[[91597,31853],[-42,29]],[[91640,31825],[-43,28]],[[91713,31761],[-73,64]],[[92548,30972],[-194,202]],[[92584,30933],[-36,39]],[[93924,31079],[-322,434]],[[94046,30901],[-122,178]],[[94074,30870],[-28,31]],[[94097,30830],[-23,40]],[[97996,17367],[-40,64]],[[98039,17296],[-43,71]],[[98089,17211],[-50,85]],[[98128,17152],[-39,59]],[[98177,17074],[-49,78]],[[98220,17003],[-43,71]],[[95841,20919],[-118,152]],[[95946,20787],[-105,132]],[[96035,20654],[-89,133]],[[96095,20556],[-60,98]],[[96141,20481],[-46,75]],[[96188,20404],[-47,77]],[[96229,20334],[-41,70]],[[96277,20256],[-48,78]],[[96319,20190],[-42,66]],[[96361,20115],[-42,75]],[[96409,20033],[-48,82]],[[96453,19964],[-44,69]],[[96467,19945],[-14,19]],[[96476,19926],[-9,19]],[[96487,19910],[-11,16]],[[96495,19900],[-8,10]],[[96504,19883],[-9,17]],[[96513,19866],[-9,17]],[[96525,19848],[-12,18]],[[96537,19828],[-12,20]],[[96548,19810],[-11,18]],[[96560,19786],[-12,24]],[[96572,19765],[-12,21]],[[96911,19207],[-33,50]],[[96943,19152],[-32,55]],[[96971,19103],[-28,49]],[[97007,19042],[-36,61]],[[97065,18948],[-30,47]],[[97096,18894],[-31,54]],[[97126,18841],[-30,53]],[[97157,18790],[-31,51]],[[97198,18717],[-41,73]],[[97298,18551],[-100,166]],[[97392,18389],[-94,162]],[[97441,18302],[-49,87]],[[97509,18192],[-68,110]],[[97566,18097],[-57,95]],[[97623,17998],[-57,99]],[[97681,17892],[-58,106]],[[97753,17773],[-72,119]],[[97803,17691],[-50,82]],[[97840,17625],[-37,66]],[[97877,17563],[-37,62]],[[97917,17504],[-40,59]],[[97956,17431],[-39,73]],[[94656,24968],[-15,60]],[[94679,24879],[-23,89]],[[94696,24811],[-17,68]],[[94869,24404],[-110,156],[-63,251]],[[94883,24260],[-14,144]],[[94905,24044],[-22,216]],[[94926,23831],[-21,213]],[[94605,25174],[-87,350]],[[94693,25812],[193,26]],[[94886,25838],[119,18]],[[95005,25856],[120,16]],[[95125,25872],[124,16]],[[94631,25069],[-26,105]],[[94641,25028],[-10,41]],[[95004,23138],[-25,182]],[[95040,22892],[-36,246]],[[95073,22665],[-33,227]],[[95279,22401],[-206,264]],[[94488,25642],[-34,134]],[[94454,25776],[239,36]],[[94518,25524],[-30,118]],[[96584,19747],[-12,18]],[[96596,19726],[-12,21]],[[96604,19712],[-8,14]],[[96614,19694],[-10,18]],[[96625,19675],[-11,19]],[[96635,19658],[-10,17]],[[96645,19640],[-10,18]],[[96659,19620],[-14,20]],[[96669,19598],[-10,22]],[[96680,19583],[-11,15]],[[96693,19566],[-13,17]],[[96706,19545],[-13,21]],[[96741,19488],[-35,57]],[[96776,19431],[-35,57]],[[96810,19370],[-34,61]],[[96846,19314],[-36,56]],[[96878,19257],[-32,57]],[[98346,16791],[-42,66]],[[98382,16726],[-36,65]],[[98422,16667],[-40,59]],[[98461,16598],[-39,69]],[[98505,16528],[-44,70]],[[98541,16481],[-36,47]],[[98578,16398],[-37,83]],[[98623,16334],[-45,64]],[[98667,16265],[-44,69]],[[65596,84683],[414,351]],[[73052,35227],[369,-1071],[10,-71],[-10,-140]],[[73421,33935],[41,101]],[[8410,95537],[126,-224]],[[10801,89261],[-28,-247],[4,-34],[22,-30],[-5,-24],[3,-13],[15,-1],[4,-18],[-10,-13],[-3,-18],[-5,-43],[-14,-8],[-9,-11],[-5,2],[-4,-16],[0,-27],[4,-11],[0,-7],[9,-18],[13,-10]],[[10792,88714],[13,-24],[12,-15],[6,2],[5,-8],[2,-8],[2,-11],[0,-8],[4,-18],[-2,-11],[4,-18]],[[10838,88595],[3,-12],[5,-11],[12,-22],[4,-24],[0,-17],[7,-28],[-1,-26],[2,-11],[13,-35],[6,-16],[7,-23],[0,-32],[0,-25],[3,-11],[7,-7]],[[10906,88295],[0,-29],[4,-4],[8,-7],[5,-10],[3,-12],[1,-17],[-7,-32],[2,-12],[-3,-8],[-3,-2],[-3,-1],[-2,-15],[1,-15],[3,-10],[3,-5],[-4,-30],[3,-13],[-2,-7],[0,-7],[2,-5],[-1,-7],[-1,-3],[-1,-14],[2,-20]],[[10917,88004],[2,-5],[6,-7],[3,-6],[3,-8],[-1,-7],[-5,-10],[-6,-14],[-1,-9],[-4,-6],[-3,-6],[3,-15],[-2,-5],[-4,-2],[-3,-1],[-2,1],[-9,-7],[-5,-5],[-2,-7],[1,-6],[1,-6],[4,-7],[3,-8],[5,-3],[3,-2],[4,-10],[2,-12],[-2,-15],[-4,-6],[-4,-6],[-1,-10],[4,-20],[1,-7],[-2,-11],[1,-8],[2,-8],[2,-6],[2,-9],[-1,-18],[1,-9],[-5,-15]],[[10916,88010],[1,-6]],[[11045,89109],[27,-157],[80,-115],[19,-10],[20,-10],[24,-28],[12,-14],[32,-21],[15,-5],[4,6],[6,3],[7,-1],[6,1],[3,1],[2,-8],[2,-5],[5,-6],[6,-5]],[[11315,88735],[5,-8],[-3,-2],[-4,-9],[2,-1],[4,1],[2,-2],[4,3],[4,-3],[1,-4],[0,-5],[4,-38],[4,-6],[4,-1],[3,-2],[5,-12],[2,-5],[3,-4],[2,-7],[0,-10],[-1,-9],[-3,0],[-4,-6]],[[89231,23150],[-9,-5],[-4,-5],[-18,-12],[-5,-9],[-6,-3],[-7,0],[-5,-5],[-5,-10],[1,-13],[2,-17],[2,-12],[0,-5],[3,-13],[-2,-12],[-4,-13],[-3,-11],[2,-12],[4,-23],[-2,-9],[-10,-17],[-6,-8],[-8,-14],[-1,-6],[0,-21]],[[89150,22895],[1,-9],[6,-11],[4,-8],[1,-17],[-2,-11],[1,-13],[2,-13],[1,-12],[1,-20],[-1,-11],[1,-13],[0,-31],[-6,-17],[1,-11],[6,-12],[2,-4],[2,-8],[0,-10],[2,-13],[0,-5],[3,-12],[2,-11],[2,-8],[1,-8],[3,-7],[7,-16],[2,-10],[4,-18],[-2,-28],[-2,-6],[-3,-12]],[[89189,22510],[-1,-20],[1,-16],[2,-18],[2,-19],[3,-24],[-4,-41],[-7,-28],[-12,-30],[-20,-26],[-9,-5],[-8,-27],[-19,-23],[-12,-18]],[[89105,22215],[-5,-35],[19,-43],[2,-39],[-14,-18],[-13,-83],[-13,-40],[-8,-17],[-20,-32],[-14,-42]],[[89039,21866],[-13,-40],[-9,-34],[-16,-99],[-6,-22],[-4,-22],[-8,-57],[-4,-39],[-8,-35]],[[88971,21518],[-8,-35],[-14,-32],[-15,-5],[-28,-108],[-2,-60],[4,-46],[5,-41],[2,-69],[10,-88],[7,-33],[-1,-26],[-8,-49],[-11,-44],[12,-84],[1,-17],[8,-33],[14,-30],[20,-43],[12,-38],[-1,-44],[3,-16],[12,-28],[-5,-49],[-8,-34],[-7,-24],[-18,-21],[-9,-39],[0,-35],[-5,-28],[-7,-22],[-5,-41],[2,-60],[-2,-58]],[[88929,20138],[-4,-44],[2,-19],[-1,-21],[-5,-21],[-5,-29],[-7,-25],[-9,-19],[-11,-23],[-2,-23],[4,-65],[2,-39],[2,-23],[-3,-55],[-15,-12],[-17,-51],[-12,-31],[-7,-19],[-5,-26],[-7,-22],[-8,-32],[-7,-49],[-8,-38],[-12,-41],[-6,-33],[-12,-21],[-10,-7],[-11,-23],[-4,-23],[-8,-23],[-1,-21],[-10,-33],[-12,-28],[-14,-51],[-8,-23],[-26,-34],[-10,-177]],[[88662,18914],[-9,-172],[7,-295],[-15,-244],[-43,-92],[-70,-188],[-15,-66],[6,-80]],[[89211,26241],[-8,6],[-3,21],[-8,14],[-23,-16],[-7,-10],[-8,-9],[-5,-21],[-17,-18],[-7,-13],[2,-21],[-19,-43],[-15,9],[-6,19],[-6,45],[-17,61],[-2,18],[-7,11],[-11,-11],[-7,-5],[-7,2],[-6,9],[-7,26],[-9,23],[-48,2],[-12,-31],[-21,-14],[-25,-39],[-13,-29],[-17,-25],[-20,-17],[-6,-10],[-12,-47],[-4,-4],[-13,9],[-20,4],[-7,15],[-6,15],[-11,11],[-6,16],[-7,41],[-7,12],[-19,35],[-14,1],[-12,11],[-12,15],[-25,-16],[-7,-10],[-21,-33],[-7,-25],[-6,-15],[-9,-1],[-9,9],[-14,-6],[-6,-15],[1,-20]],[[88592,26184],[-4,-12],[-10,-5],[-7,-7],[-4,-15],[-13,-16],[-8,-3],[-10,-11],[-5,-6],[-5,-4],[-5,0],[-4,5],[-3,4],[-2,3],[-10,-3],[-7,-11],[-4,-4],[-8,-6],[-7,-3],[-8,-3],[-28,-24],[-15,0],[-10,-7],[-33,-5]],[[88382,26051],[-11,-5],[-7,-5],[-4,-2],[-8,0],[-6,2],[-10,9],[-9,-1],[-18,-9],[-14,-5],[-11,-7],[-6,-6],[-3,-4],[-7,-3],[-32,-33],[-5,-1],[-17,-18],[-9,-2],[-14,0]],[[88191,25961],[-14,5],[-20,13],[-8,0],[-13,8],[-4,-2],[-16,10],[-4,12],[-7,11],[-2,7],[-7,11],[-2,7]],[[88094,26043],[-3,11],[-2,10],[3,12],[-4,8],[-7,9],[-10,0],[-8,-3],[-9,-1],[-67,-34],[-24,6],[-7,5],[-20,9],[-18,28]],[[87918,26103],[-8,11],[-5,11],[-4,6],[-20,44],[-4,12],[-15,27],[-7,9],[-7,11],[-13,28],[-2,9],[0,7],[1,9],[-3,13],[-1,5],[-5,10],[-49,30]],[[87776,26345],[-9,5],[-6,0],[-8,5],[-9,6],[-10,2],[-11,3],[-11,-2],[-12,-6],[-5,-11],[-4,-4],[-28,-8],[-14,2],[-6,3],[-17,11],[-21,-8]],[[87605,26343],[-15,-1],[-5,-4],[-12,-18],[-4,-14],[-24,-46],[-9,-13],[-5,-13],[-1,-14],[-1,-8],[-2,-7],[-6,-8],[-4,-5],[-21,-24]],[[87496,26168],[-3,-7],[-8,-27],[-10,-14],[-6,-10],[-9,-9],[-13,-10],[-12,-4],[-10,2],[-7,3],[-12,5],[-20,12],[-11,3],[-7,-12],[-6,-2],[-1,-3],[-4,1],[-17,8],[-7,1],[-2,-1],[-10,9],[-12,-2]],[[87309,26111],[-4,-1],[-3,-5],[-13,-2],[-10,-3],[-5,-3],[-5,-8],[-25,-12],[-10,1],[-5,9],[-15,-9],[-6,-8],[-5,-7],[-5,-5],[-11,-7],[-3,-4],[-3,-5],[-5,-5],[-5,-1],[-7,2],[-40,-8]],[[87124,26030],[-5,-2],[-4,-5],[-3,-6],[-2,1],[-3,4],[-7,3],[-8,6],[-3,3],[-3,7],[1,5],[-6,24],[-3,5],[-3,4],[-2,5],[-2,8],[-2,5],[-10,6],[-8,10],[-6,7],[-3,5],[-3,11],[-2,3],[-14,10],[-33,12],[-10,1],[-20,-1]],[[86960,26161],[-7,0],[-29,13],[-19,13],[-7,8],[-3,6],[-4,4],[-5,1],[-7,-2],[-3,-3],[-19,7],[-7,4],[-7,3],[-7,0],[-4,-2],[-12,-8],[-6,-3],[-5,-2],[-14,5],[-7,-2]],[[86788,26203],[-13,-26],[-7,-15],[-12,-18],[-4,-6],[-3,-3],[-13,-8],[-27,-21],[-11,-14],[-7,-8],[-9,-5],[-22,-6],[-6,-9],[-6,-11],[-24,-14]],[[86624,26039],[-104,-57],[-51,-1],[-33,-22]],[[86436,25959],[-27,-8],[-24,-7],[-43,-15],[-2,-1],[-45,-41],[-23,-27],[-15,-19]],[[86257,25841],[-55,-67],[-53,-26],[-88,26]],[[86061,25774],[-65,18],[-44,10],[-34,8],[-35,9]],[[85883,25819],[-47,11],[-72,17],[-20,5],[-8,3],[-30,7]],[[85706,25862],[-16,6],[-20,15],[-27,21],[-9,7],[-56,25],[-7,10],[-6,14],[-2,4],[-5,11],[-2,6]],[[85556,25981],[-9,4],[-147,15]],[[85400,26000],[-165,17]],[[85235,26017],[-161,16],[-40,3],[-11,2],[-37,0],[-75,0],[-34,0]],[[84877,26038],[-6,0],[-8,3],[-12,-3],[-8,4],[-4,4],[-4,1],[-4,-2],[-3,-4],[-7,-3],[-9,2],[-5,-4],[-10,-4],[-4,3],[-33,38],[-6,6],[-4,5],[-2,5],[-3,7],[0,12],[2,12],[2,6],[2,8],[3,9],[0,6],[-1,8],[-4,12],[-3,13],[1,9],[-1,12],[-5,11],[-8,4]],[[84733,26218],[-8,1],[-6,-4],[-6,-7],[-5,-9],[-6,-3],[-15,-3],[-7,-5],[-5,2],[-10,8],[-10,11],[-3,15],[-1,12],[-1,6],[-2,7],[-5,10],[-9,6],[-2,18],[2,5],[8,7],[3,7],[2,10],[-3,6],[1,5],[2,7],[3,9],[0,11],[1,5],[4,4],[9,2],[4,7],[2,7],[5,7],[5,3],[6,2],[5,3]],[[84691,26390],[7,3],[6,0],[9,7],[7,12],[4,7],[5,7],[3,8],[2,10],[-1,8],[0,11],[1,8],[2,6],[-1,8],[-2,8],[-8,18],[-5,3],[-5,1],[-12,27],[-10,5],[-6,-3],[-4,4],[-6,4],[-15,-12],[-9,-8],[-7,-10],[-6,-11],[-12,-11],[-8,4],[-6,-1],[-8,-13],[-8,-7],[-8,-3],[-6,-13],[-9,-8],[-12,2]],[[84563,26461],[-10,-7],[-22,-2],[-12,4],[-5,6],[-8,4],[-6,7],[0,14],[-6,2],[-6,-9],[-12,0],[-12,-10],[-9,9],[-8,0],[-8,-9],[-6,11],[-5,20],[-9,11],[-8,19],[-2,22],[-1,13],[-5,11]],[[84403,26577],[2,17],[-2,18],[6,26],[0,26],[3,11],[9,8],[22,31],[1,16],[-11,12],[-10,-1],[-40,-41],[-5,3],[-6,9],[-20,19],[-9,3],[-12,3],[-8,10],[-5,13],[-1,13],[2,31],[-4,25]],[[84315,26829],[-3,16],[-15,26],[-5,7],[-5,11],[-8,3],[-10,0],[-10,5],[-14,3],[-10,8],[-4,1],[-5,-6],[-9,-16],[-13,3],[-10,3],[-5,1],[-12,10],[-16,10],[-9,8],[-15,7],[-28,-6],[-9,-4],[-6,-1],[-7,3],[-5,5],[-7,11],[-7,11],[-19,34]],[[84049,26982],[-9,18],[-6,9],[-2,7],[-8,6],[-6,3],[-6,4],[-5,3],[-4,6],[-4,8],[-4,9],[-3,8],[-5,12],[-2,13],[-2,14],[-1,11],[-1,9],[-1,10],[2,8],[2,7],[4,11],[5,10],[2,7],[5,11],[1,7],[-2,10],[-5,12],[-3,6],[-3,9],[-2,8],[-5,8],[-4,6],[-5,5],[-19,15],[-12,10],[-8,6],[-3,1],[-6,2],[-5,0],[-6,0],[-3,-1],[-14,-17],[-25,-24],[-9,-7],[-11,-15],[-6,-9],[-18,-18]],[[83827,27200],[-20,-26],[-17,-22],[-10,-12],[-4,-9],[-8,-23],[-9,-20],[-14,-4],[-6,-2],[-14,-18],[-17,-19],[-18,-4],[-5,-1],[-10,-4],[-10,-2],[-3,1],[-4,4],[-6,9],[-9,16],[-6,11],[-5,11],[-8,15],[-4,7],[-2,6],[-2,15],[-2,53],[-1,47],[0,8],[-5,10],[-7,12],[-6,11],[-4,3],[-6,0],[-3,-5],[-7,-17],[-7,-8],[-9,-8],[-5,-4],[-3,-2],[-6,-5]],[[83545,27224],[-16,-37],[-3,-3],[-3,-1],[-6,1],[-5,1],[-9,-1],[-6,-1],[-5,1],[-3,2],[-6,5],[-5,7],[-7,2],[-4,-2],[-9,-5],[-5,-3],[-7,-7],[-3,-3],[-4,-2],[-4,0],[-4,3],[-9,12],[-11,16],[-10,14],[-6,19],[-10,15],[-8,11],[-8,19],[-12,2],[-9,1],[-11,4],[-10,4],[-13,-2],[-5,-1],[-14,1],[-11,-3]],[[33862,97157],[-860,2137],[-212,525]],[[83284,27293],[-10,21],[-2,5],[-9,13],[-11,16],[-18,7],[-11,-17],[-23,-56],[-7,-11],[-8,1],[-23,19],[-27,9],[-28,-9],[-28,16],[-14,10],[-14,14],[-8,1],[-7,-5],[-8,-10],[-11,-5],[-8,-1]],[[83009,27311],[-20,-3],[-25,-1],[-15,-2],[-7,-1],[-10,0],[-6,2],[-31,19],[-11,7],[-15,6],[-33,-15],[-22,-10],[-21,-10],[-21,5],[-46,-38]],[[82726,27270],[-7,2],[-5,5],[-3,7],[1,9],[5,46],[-4,13],[1,12],[-12,63],[-1,6],[-8,8],[-8,2],[-9,-4],[-17,-32],[-23,-22],[-18,-32],[-4,-5],[-5,-1],[-5,4],[-11,12],[-17,8],[-23,-1],[-18,0],[-75,-25]],[[82460,27345],[-44,-15],[-31,-23],[-25,-21],[-29,-53],[-27,-90],[-35,-29]],[[82269,27114],[-25,-6],[-20,11],[-6,-3],[-11,-11],[-10,-2],[-25,18],[-19,5],[-13,-9],[-11,2],[-27,14],[-21,-15],[-40,9],[-15,-8],[-6,0],[-5,2],[-5,9],[-3,10],[-7,2],[-14,-6]],[[81986,27136],[-25,-10],[-12,3],[-8,-3],[-11,-19],[-6,-3],[-19,3],[-32,-1],[-14,7],[-13,-5],[-10,6],[-4,7],[-58,21],[-14,-16],[-24,-11],[-21,2]],[[81715,27117],[-12,-10],[-6,-11],[-4,-17],[-21,-14],[-17,-23],[-32,-12],[-17,13],[-11,-3],[-14,9],[-15,0],[-41,22],[-22,16],[-29,10],[-17,8],[-11,5],[-16,6]],[[81430,27116],[-9,3],[-19,1],[-20,12],[-18,-6],[-15,-18],[-37,20],[-10,11],[-25,9],[-17,19],[-21,4],[-15,14],[-14,19],[-20,13],[-3,1],[-19,22]],[[81168,27240],[-21,13],[-43,37],[-2,14],[-1,5],[-4,8],[-8,-8],[-18,3],[-13,12],[-24,12],[-23,39],[-5,0],[-14,-12],[-11,0],[-12,18],[-32,22]],[[80937,27403],[-19,-3],[-3,0],[-17,6],[-19,18],[-9,3],[-26,15],[-3,1],[-8,9],[-20,29],[-41,25],[-11,0],[-11,10],[-14,18],[-42,13]],[[80694,27547],[-20,12],[-5,3],[-25,21],[-4,7],[-12,12],[-9,17],[-9,19],[-9,20],[-10,26],[-13,41],[-8,41],[-3,16],[-20,126],[0,18],[4,13]],[[80551,27939],[11,13],[5,18],[1,32],[-3,19],[-2,13],[-5,25],[-1,5],[-5,9],[-10,3],[-9,-4],[-20,10],[-10,19],[-17,2],[-10,3],[-13,3],[-9,19],[3,28],[-2,8],[-8,8],[-13,3],[-7,3],[-6,4],[-4,7],[3,16],[9,17],[9,34],[-9,6],[-2,16],[-12,29],[-16,5],[-14,-8]],[[80385,28304],[-18,1],[-13,12],[-7,-1],[-4,-7],[-13,8],[-10,30],[-37,43],[-30,61],[5,62],[11,18],[32,34]],[[74842,34964],[164,47],[153,-37],[214,-77],[346,183],[320,168]],[[76039,35248],[61,33],[-7,55],[8,10]],[[95279,22401],[444,-1330]],[[52459,60216],[-8,7],[-27,9],[-21,2],[1,-47],[-18,-37],[-7,3],[-27,-11],[-37,25],[-45,31],[-16,14],[-26,16],[-18,-9],[-26,-4],[-23,-10],[-34,-4],[-27,17],[-25,16],[-19,12],[-22,20],[-11,-1],[-13,-6],[-14,2]],[[51996,60261],[-4,17],[-6,3],[-3,7],[-3,3],[-7,-3],[-9,10],[-6,5],[-8,12],[0,7],[-8,12],[-10,19],[-8,-1],[-15,-26],[-14,-4],[-7,-15],[-7,-2],[-12,-12],[-22,-7],[-10,-15],[-6,-8],[-1,-16],[4,-18],[-7,-18],[0,-8],[-1,-7],[3,-14],[-3,-12],[0,-10],[1,-8],[2,-15],[0,-12],[-3,-4],[0,-10],[-1,-5],[-1,-8],[0,-10],[3,-4],[0,-4],[-2,-6],[-2,-15],[-5,-19],[-7,-8]],[[51811,60032],[-4,-18],[2,-14],[0,-19],[0,-18],[6,-2],[4,-8],[3,-15],[1,-10],[-10,-22],[1,-16],[3,-7],[3,-17],[-6,-11],[6,-16],[10,-20],[1,-22],[-5,-12],[-12,-10],[-10,-6],[-1,-12],[-24,-6],[-11,4],[-5,18],[-11,20],[-12,-7],[-7,5],[-8,1],[-5,10],[-7,-4],[-15,-1],[-9,19],[-13,4],[-11,-2],[-4,10],[-11,-2],[-11,4],[-6,-11],[-6,-3],[-19,-16],[-7,-11],[1,-8],[-1,-9],[-9,-11],[-4,-11],[-4,-23],[-2,-8]],[[33537,93512],[443,700],[528,832],[2,4]],[[34510,95539],[-362,905],[-286,713]],[[51582,59719],[-1,-10],[1,-23],[-2,-11],[-2,-22],[-7,-27],[-8,-12],[-6,-1],[-7,1],[-28,-2],[-5,-7],[-22,-8],[-7,2],[-4,17],[-7,1],[-2,4],[4,13],[-4,11],[-7,35],[0,13],[-3,13],[-4,3],[-3,6]],[[51458,59715],[1,7],[-5,6],[-17,-10],[-10,-17],[-12,-21],[-2,-24],[-12,-17],[-16,-1],[-16,-7],[-18,-16],[-2,-10],[-7,1],[-5,-7],[-7,-5],[-5,-7],[-26,-28],[-5,-10],[3,-16],[-5,-13],[-6,-3],[-3,-5],[-5,-4],[-6,-9],[-8,0],[-15,-21],[0,-16],[-3,-8],[-3,-31]],[[51243,59423],[-5,-40],[-12,-38],[-9,-40],[-28,-47],[-2,-38],[-11,-23],[-6,-26],[-2,-20],[-3,-34],[3,-41]],[[51168,59076],[1,-17],[0,-80],[-13,-47],[-20,-28]],[[64034,54174],[17,-29]],[[64087,54089],[5,-9]],[[64805,54279],[66,39],[28,34],[28,26]],[[65215,54063],[28,69],[22,43]],[[65617,54746],[-8,-8],[-25,-44]],[[65560,54624],[-8,-10]],[[68324,67517],[8,-4],[11,5],[0,21],[-2,12],[-1,9],[4,4],[4,-1],[6,-4],[7,-13],[6,-10],[5,-4],[6,0],[9,4],[4,-4],[2,-13],[1,-20],[-2,-15],[-4,-14],[-10,-22],[-2,-8],[0,-5],[3,-2],[3,1],[2,4],[7,16],[4,9],[3,5],[2,1],[3,-2],[2,-8],[2,-8],[-1,-9],[-1,-7],[-2,-9]],[[68403,67426],[1,-9],[3,-3],[3,-1],[4,1],[4,-1],[5,-3],[2,-3],[3,-2],[2,1],[3,4],[2,6],[2,8],[2,32],[1,17],[0,10],[0,8],[0,4],[1,4],[3,1],[9,-4],[9,-6],[4,-2],[4,-2],[4,-5],[-3,-11],[-17,-42],[-6,-10],[0,-4],[2,-9],[7,-18],[5,-3],[22,4],[17,5],[6,7],[4,6],[5,12],[2,2],[4,-2],[2,-3],[1,-10],[3,-11],[4,-6],[2,-2],[6,-15],[6,-10],[7,-8],[5,-5]],[[68558,67348],[2,-3],[0,-5],[-1,-4],[-3,-6],[-6,-6],[-2,-4],[-2,-7],[-1,-10],[1,-7],[-1,-5],[-2,-4],[-9,-6],[-17,-6],[-1,-5],[4,-9],[5,-8]],[[49187,91097],[158,-153]],[[85440,43007],[7,-24],[1,-20],[12,-19],[7,-36],[19,-1],[12,-20],[11,-14]],[[85440,43007],[-15,-44],[-13,-31],[-12,-19],[-17,-18],[-13,-16],[-8,-17],[-3,-15],[-6,-14],[-11,-2],[-11,-3]],[[88191,49486],[112,-11]],[[89820,33486],[7,-241],[-3,-202]],[[66448,36571],[52,-136]],[[90111,34956],[157,74]],[[92584,30933],[1340,146]],[[21599,87705],[-34,-583],[31,-197],[70,-100],[181,-45],[668,-105],[351,-55],[123,-20],[331,-214],[266,-26],[275,47],[494,158],[1996,632],[703,219],[752,1591]],[[27806,89007],[2632,1166],[1175,1462],[136,94],[1184,816],[77,52],[230,451],[297,464]],[[32790,99819],[-73,180]],[[31623,99999],[-1119,-953],[-114,-98],[-53,-60],[-54,-99],[-40,-144],[-65,-472],[-129,-876]],[[30049,97297],[-229,-1464],[-207,-452],[-694,-1261],[-715,-1301],[-723,-1320],[-612,-1122]],[[21599,87705],[18,309],[15,95],[58,103],[76,33],[134,-49],[363,-152],[323,-135],[544,104],[590,196],[82,23],[56,-28],[185,-235],[52,-67],[563,558],[1224,1206]],[[25882,89666],[636,625],[351,86]],[[10239,90620],[13,-61]],[[73051,35236],[1,-9]],[[76896,44410],[-6,-40]],[[76655,45234],[9,-23]],[[76252,46242],[0,-25]],[[75042,46653],[-3,-21]],[[72613,46574],[23,3]],[[71208,46944],[-20,0]],[[69824,49102],[-10,-4]],[[68257,50813],[-14,21]],[[67028,50896],[-24,-19]],[[65920,51581],[-24,-19]],[[48756,90368],[17,-52]],[[48646,90622],[8,-21]],[[48326,96119],[-8,-32]]]} +{"type":"Topology","bbox":[6.041335543554169,11.578588406896188,967.94029901827,609.199999],"transform":{"scale":[0.009619085825605415,0.005976273868669725],"translate":[6.041335543554169,11.578588406896188]},"objects":{"overlay":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[1],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[2],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[3],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[4],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[5],"properties":{"coalpetro":23703323,"foodfarm":439982,"crudemat":139081,"chem":16191,"manu":1456029,"other":948,"total":25755554}},{"type":"LineString","arcs":[6],"properties":{"coalpetro":23235703,"foodfarm":398986,"crudemat":125780,"chem":12769,"manu":1436409,"other":142,"total":25209789}},{"type":"LineString","arcs":[7],"properties":{"coalpetro":470052,"foodfarm":997923,"crudemat":8818,"chem":15912,"manu":155090,"other":4486,"total":1652281}},{"type":"LineString","arcs":[8],"properties":{"coalpetro":261273,"foodfarm":185384,"crudemat":8653,"chem":9972,"manu":110207,"other":538,"total":576027}},{"type":"LineString","arcs":[9],"properties":{"coalpetro":95680,"foodfarm":160131,"crudemat":11578,"chem":7239,"manu":124687,"other":164,"total":399479}},{"type":"LineString","arcs":[10],"properties":{"coalpetro":23248174,"foodfarm":451739,"crudemat":156171,"chem":21084,"manu":1760416,"other":142,"total":25637726}},{"type":"LineString","arcs":[11],"properties":{"coalpetro":23242077,"foodfarm":456141,"crudemat":134024,"chem":21348,"manu":1762702,"other":299,"total":25616591}},{"type":"LineString","arcs":[12],"properties":{"coalpetro":23235089,"foodfarm":398570,"crudemat":124471,"chem":12878,"manu":1438411,"other":142,"total":25209561}},{"type":"LineString","arcs":[13],"properties":{"coalpetro":23235089,"foodfarm":399397,"crudemat":124482,"chem":12878,"manu":1438564,"other":142,"total":25210552}},{"type":"LineString","arcs":[14],"properties":{"coalpetro":23235703,"foodfarm":398986,"crudemat":125780,"chem":12769,"manu":1436409,"other":142,"total":25209789}},{"type":"LineString","arcs":[15],"properties":{"coalpetro":23235530,"foodfarm":463218,"crudemat":134802,"chem":20867,"manu":1757396,"other":1690,"total":25613503}},{"type":"LineString","arcs":[16],"properties":{"coalpetro":23235703,"foodfarm":398986,"crudemat":125780,"chem":12769,"manu":1436409,"other":142,"total":25209789}},{"type":"LineString","arcs":[17],"properties":{"coalpetro":23235089,"foodfarm":398570,"crudemat":124471,"chem":12878,"manu":1438411,"other":142,"total":25209561}},{"type":"LineString","arcs":[18],"properties":{"coalpetro":5081747,"foodfarm":305355,"crudemat":216481,"chem":26057,"manu":1484212,"other":147,"total":7113999}},{"type":"LineString","arcs":[19],"properties":{"coalpetro":5083087,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1484212,"other":147,"total":7093889}},{"type":"LineString","arcs":[20],"properties":{"coalpetro":5084488,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1484212,"other":147,"total":7095290}},{"type":"LineString","arcs":[21],"properties":{"coalpetro":4901954,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1484212,"other":147,"total":6912756}},{"type":"LineString","arcs":[22],"properties":{"coalpetro":4901954,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1484212,"other":147,"total":6912756}},{"type":"LineString","arcs":[23],"properties":{"coalpetro":4901954,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1484212,"other":147,"total":6912756}},{"type":"LineString","arcs":[24],"properties":{"coalpetro":1901125,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1482354,"other":147,"total":3910069}},{"type":"LineString","arcs":[25],"properties":{"coalpetro":1276953,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1482354,"other":147,"total":3285897}},{"type":"LineString","arcs":[26],"properties":{"coalpetro":323094,"foodfarm":170026,"crudemat":15383,"chem":10470,"manu":161535,"other":182,"total":680690}},{"type":"LineString","arcs":[27],"properties":{"coalpetro":4812598,"foodfarm":412144,"crudemat":126379,"chem":13109,"manu":1454328,"other":182,"total":6818740}},{"type":"LineString","arcs":[28],"properties":{"coalpetro":4812598,"foodfarm":412144,"crudemat":126379,"chem":13109,"manu":1454328,"other":182,"total":6818740}},{"type":"LineString","arcs":[29],"properties":{"coalpetro":1276953,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1482354,"other":147,"total":3285897}},{"type":"LineString","arcs":[30],"properties":{"coalpetro":1276953,"foodfarm":305355,"crudemat":195031,"chem":26057,"manu":1482354,"other":147,"total":3285897}},{"type":"LineString","arcs":[31],"properties":{"coalpetro":1276953,"foodfarm":305355,"crudemat":161483,"chem":26057,"manu":1482354,"other":147,"total":3252349}},{"type":"LineString","arcs":[32],"properties":{"coalpetro":4821603,"foodfarm":412144,"crudemat":128455,"chem":13109,"manu":1459618,"other":222,"total":6835151}},{"type":"LineString","arcs":[33],"properties":{"coalpetro":23248174,"foodfarm":451739,"crudemat":133706,"chem":21084,"manu":1760416,"other":142,"total":25615261}},{"type":"LineString","arcs":[34],"properties":{"coalpetro":777944,"foodfarm":44,"crudemat":0,"chem":25401,"manu":3077,"other":0,"total":806466}},{"type":"LineString","arcs":[35],"properties":{"coalpetro":779084,"foodfarm":44,"crudemat":0,"chem":25401,"manu":402,"other":0,"total":804931}},{"type":"LineString","arcs":[36],"properties":{"coalpetro":779084,"foodfarm":44,"crudemat":0,"chem":25401,"manu":402,"other":0,"total":804931}},{"type":"LineString","arcs":[37],"properties":{"coalpetro":95680,"foodfarm":160131,"crudemat":11578,"chem":7239,"manu":124687,"other":164,"total":399479}},{"type":"LineString","arcs":[38],"properties":{"coalpetro":111833,"foodfarm":166494,"crudemat":11633,"chem":7239,"manu":127935,"other":164,"total":425298}},{"type":"LineString","arcs":[39],"properties":{"coalpetro":111833,"foodfarm":166494,"crudemat":11633,"chem":7239,"manu":127935,"other":164,"total":425298}},{"type":"LineString","arcs":[40],"properties":{"coalpetro":106956,"foodfarm":162638,"crudemat":11723,"chem":7236,"manu":128117,"other":178,"total":416848}},{"type":"LineString","arcs":[41],"properties":{"coalpetro":4877,"foodfarm":15756,"crudemat":506,"chem":3,"manu":6696,"other":14,"total":27852}},{"type":"LineString","arcs":[42],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":144,"other":0,"total":144}},{"type":"LineString","arcs":[43],"properties":{"coalpetro":105498,"foodfarm":160972,"crudemat":11649,"chem":7236,"manu":127747,"other":178,"total":413280}},{"type":"LineString","arcs":[44],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":144,"other":0,"total":144}},{"type":"LineString","arcs":[45],"properties":{"coalpetro":108498,"foodfarm":160972,"crudemat":11649,"chem":7236,"manu":127747,"other":178,"total":416280}},{"type":"LineString","arcs":[46],"properties":{"coalpetro":145650,"foodfarm":176138,"crudemat":15383,"chem":8296,"manu":160396,"other":182,"total":506045}},{"type":"LineString","arcs":[47],"properties":{"coalpetro":147372,"foodfarm":170026,"crudemat":15383,"chem":8296,"manu":160342,"other":182,"total":501601}},{"type":"LineString","arcs":[48],"properties":{"coalpetro":451530,"foodfarm":2102725,"crudemat":462098,"chem":2180711,"manu":403014,"other":0,"total":5600078}},{"type":"LineString","arcs":[49],"properties":{"coalpetro":451530,"foodfarm":2102725,"crudemat":462098,"chem":2180711,"manu":403014,"other":0,"total":5600078}},{"type":"LineString","arcs":[50],"properties":{"coalpetro":451530,"foodfarm":2257351,"crudemat":462098,"chem":2180711,"manu":403014,"other":0,"total":5754704}},{"type":"LineString","arcs":[51],"properties":{"coalpetro":451530,"foodfarm":2257351,"crudemat":462098,"chem":2180711,"manu":403014,"other":0,"total":5754704}},{"type":"LineString","arcs":[52],"properties":{"coalpetro":451530,"foodfarm":2257351,"crudemat":462098,"chem":2180711,"manu":403014,"other":0,"total":5754704}},{"type":"LineString","arcs":[53],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[54],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[55],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[56],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[57],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[58],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[59],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[60],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[61],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[62],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[63],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[64],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[65],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[66],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[67],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[68],"properties":{"coalpetro":7307610,"foodfarm":421486,"crudemat":125268,"chem":1438823,"manu":41240,"other":0,"total":9334427}},{"type":"LineString","arcs":[69],"properties":{"coalpetro":7307610,"foodfarm":421486,"crudemat":125268,"chem":1438823,"manu":41240,"other":0,"total":9334427}},{"type":"LineString","arcs":[70],"properties":{"coalpetro":7307610,"foodfarm":421486,"crudemat":125268,"chem":1438823,"manu":41240,"other":0,"total":9334427}},{"type":"LineString","arcs":[71],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[72],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[73],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[74],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[75],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[76],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[77],"properties":{"coalpetro":4379485,"foodfarm":7908,"crudemat":192610,"chem":47770,"manu":216417,"other":0,"total":4844190}},{"type":"LineString","arcs":[78],"properties":{"coalpetro":33348717,"foodfarm":72043224,"crudemat":32093370,"chem":20047313,"manu":13498317,"other":0,"total":171030941}},{"type":"LineString","arcs":[79],"properties":{"coalpetro":33348717,"foodfarm":72043224,"crudemat":32093370,"chem":20047313,"manu":13498317,"other":0,"total":171030941}},{"type":"LineString","arcs":[80],"properties":{"coalpetro":4379485,"foodfarm":7908,"crudemat":192610,"chem":47770,"manu":216417,"other":0,"total":4844190}},{"type":"LineString","arcs":[81],"properties":{"coalpetro":1300609,"foodfarm":2338712,"crudemat":4575901,"chem":948618,"manu":1703772,"other":0,"total":10867612}},{"type":"LineString","arcs":[82],"properties":{"coalpetro":39472981,"foodfarm":10420445,"crudemat":10802167,"chem":6341080,"manu":5496077,"other":0,"total":72532750}},{"type":"LineString","arcs":[83],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":533483,"chem":0,"manu":159929,"other":0,"total":693412}},{"type":"LineString","arcs":[84],"properties":{"coalpetro":1928091,"foodfarm":766102,"crudemat":27961,"chem":714728,"manu":680248,"other":0,"total":4117130}},{"type":"LineString","arcs":[85],"properties":{"coalpetro":33936994,"foodfarm":73251882,"crudemat":28990255,"chem":19758236,"manu":12828248,"other":0,"total":168765615}},{"type":"LineString","arcs":[86],"properties":{"coalpetro":33348717,"foodfarm":72043224,"crudemat":32093370,"chem":20047313,"manu":13498317,"other":0,"total":171030941}},{"type":"LineString","arcs":[87],"properties":{"coalpetro":1506488,"foodfarm":106802,"crudemat":3024026,"chem":1590682,"manu":447147,"other":0,"total":6675145}},{"type":"LineString","arcs":[88],"properties":{"coalpetro":1300609,"foodfarm":2338712,"crudemat":4575901,"chem":948618,"manu":1703772,"other":0,"total":10867612}},{"type":"LineString","arcs":[89],"properties":{"coalpetro":33348717,"foodfarm":72043224,"crudemat":32093370,"chem":20047313,"manu":13498317,"other":0,"total":171030941}},{"type":"LineString","arcs":[90],"properties":{"coalpetro":33348717,"foodfarm":72043224,"crudemat":32093370,"chem":20047313,"manu":13498317,"other":0,"total":171030941}},{"type":"LineString","arcs":[91],"properties":{"coalpetro":33348717,"foodfarm":72043224,"crudemat":32093370,"chem":20047313,"manu":13498317,"other":0,"total":171030941}},{"type":"LineString","arcs":[92],"properties":{"coalpetro":19506779,"foodfarm":52960977,"crudemat":16022203,"chem":12665828,"manu":8006602,"other":0,"total":109162389}},{"type":"LineString","arcs":[93],"properties":{"coalpetro":1300609,"foodfarm":2338712,"crudemat":4575901,"chem":948618,"manu":1703772,"other":0,"total":10867612}},{"type":"LineString","arcs":[94],"properties":{"coalpetro":25709325,"foodfarm":16233766,"crudemat":23099220,"chem":7773436,"manu":7888365,"other":0,"total":80704112}},{"type":"LineString","arcs":[95],"properties":{"coalpetro":25709325,"foodfarm":16233766,"crudemat":23099220,"chem":7773436,"manu":7888365,"other":0,"total":80704112}},{"type":"LineString","arcs":[96],"properties":{"coalpetro":25709325,"foodfarm":16233766,"crudemat":23099220,"chem":7773436,"manu":7888365,"other":0,"total":80704112}},{"type":"LineString","arcs":[97],"properties":{"coalpetro":25709325,"foodfarm":16233766,"crudemat":23099220,"chem":7773436,"manu":7888365,"other":0,"total":80704112}},{"type":"LineString","arcs":[98],"properties":{"coalpetro":25212156,"foodfarm":13331597,"crudemat":22717393,"chem":7475793,"manu":7795848,"other":0,"total":76532787}},{"type":"LineString","arcs":[99],"properties":{"coalpetro":25544216,"foodfarm":10543336,"crudemat":20970379,"chem":6187519,"manu":5347169,"other":0,"total":68592619}},{"type":"LineString","arcs":[100],"properties":{"coalpetro":9177625,"foodfarm":3206907,"crudemat":9683683,"chem":2087285,"manu":2777521,"other":0,"total":26933021}},{"type":"LineString","arcs":[101],"properties":{"coalpetro":1300609,"foodfarm":2338712,"crudemat":4575901,"chem":948618,"manu":1703772,"other":0,"total":10867612}},{"type":"LineString","arcs":[102],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[103],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[104],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[105],"properties":{"coalpetro":42827203,"foodfarm":419022,"crudemat":1236189,"chem":5435070,"manu":77169,"other":0,"total":49994653}},{"type":"LineString","arcs":[106],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[107],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":1098867,"chem":2743763,"manu":1196704,"other":0,"total":8703054}},{"type":"LineString","arcs":[108],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[109],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[110],"properties":{"coalpetro":34273590,"foodfarm":82600549,"crudemat":26910714,"chem":22293311,"manu":12061989,"other":0,"total":178140153}},{"type":"LineString","arcs":[111],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":1098867,"chem":2743763,"manu":1196704,"other":0,"total":8703054}},{"type":"LineString","arcs":[112],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":1098867,"chem":2743763,"manu":1196704,"other":0,"total":8703054}},{"type":"LineString","arcs":[113],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":1098867,"chem":2743763,"manu":1196704,"other":0,"total":8703054}},{"type":"LineString","arcs":[114],"properties":{"coalpetro":33290056,"foodfarm":78768273,"crudemat":26909278,"chem":21949592,"manu":12061989,"other":0,"total":172979188}},{"type":"LineString","arcs":[115],"properties":{"coalpetro":33329535,"foodfarm":75467425,"crudemat":27231936,"chem":20051046,"manu":12420597,"other":0,"total":168500539}},{"type":"LineString","arcs":[116],"properties":{"coalpetro":33329535,"foodfarm":75467425,"crudemat":27231936,"chem":20051046,"manu":12420597,"other":0,"total":168500539}},{"type":"LineString","arcs":[117],"properties":{"coalpetro":33329535,"foodfarm":74170754,"crudemat":27398959,"chem":19843185,"manu":12420597,"other":0,"total":167163030}},{"type":"LineString","arcs":[118],"properties":{"coalpetro":33329535,"foodfarm":74170754,"crudemat":27398959,"chem":19843185,"manu":12420597,"other":0,"total":167163030}},{"type":"LineString","arcs":[119],"properties":{"coalpetro":7219028,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":0,"total":8985093}},{"type":"LineString","arcs":[120],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11821,"other":0,"total":13354757}},{"type":"LineString","arcs":[121],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11746,"other":0,"total":13354682}},{"type":"LineString","arcs":[122],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11746,"other":0,"total":13354682}},{"type":"LineString","arcs":[123],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11746,"other":0,"total":13354682}},{"type":"LineString","arcs":[124],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11746,"other":0,"total":13354682}},{"type":"LineString","arcs":[125],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11746,"other":0,"total":13354682}},{"type":"LineString","arcs":[126],"properties":{"coalpetro":49877674,"foodfarm":8954428,"crudemat":9304025,"chem":2489964,"manu":8822297,"other":748203,"total":80196591}},{"type":"LineString","arcs":[127],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11746,"other":0,"total":13354682}},{"type":"LineString","arcs":[128],"properties":{"coalpetro":49877674,"foodfarm":8954428,"crudemat":9304025,"chem":2489964,"manu":8822297,"other":748203,"total":80196591}},{"type":"LineString","arcs":[129],"properties":{"coalpetro":1803936,"foodfarm":8587,"crudemat":2447264,"chem":73231,"manu":129144,"other":0,"total":4462162}},{"type":"LineString","arcs":[130],"properties":{"coalpetro":34700931,"foodfarm":57017,"crudemat":0,"chem":3875204,"manu":31239,"other":338,"total":38664729}},{"type":"LineString","arcs":[131],"properties":{"coalpetro":11964594,"foodfarm":17089,"crudemat":33925,"chem":2599906,"manu":157575,"other":41,"total":14773130}},{"type":"LineString","arcs":[132],"properties":{"coalpetro":11951387,"foodfarm":536912,"crudemat":34464,"chem":2605856,"manu":170112,"other":26186,"total":15324917}},{"type":"LineString","arcs":[133],"properties":{"coalpetro":11951387,"foodfarm":536912,"crudemat":34464,"chem":2605856,"manu":170112,"other":26186,"total":15324917}},{"type":"LineString","arcs":[134],"properties":{"coalpetro":7527184,"foodfarm":435724,"crudemat":325929,"chem":2260800,"manu":111678,"other":4312,"total":10665627}},{"type":"LineString","arcs":[135],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[136],"properties":{"coalpetro":1625612,"foodfarm":2029,"crudemat":127608,"chem":3320,"manu":67174,"other":0,"total":1825743}},{"type":"LineString","arcs":[137],"properties":{"coalpetro":1625612,"foodfarm":2029,"crudemat":127608,"chem":3320,"manu":67174,"other":0,"total":1825743}},{"type":"LineString","arcs":[138],"properties":{"coalpetro":1625612,"foodfarm":2029,"crudemat":127608,"chem":3320,"manu":67154,"other":0,"total":1825723}},{"type":"LineString","arcs":[139],"properties":{"coalpetro":1625612,"foodfarm":2029,"crudemat":127608,"chem":3320,"manu":67154,"other":0,"total":1825723}},{"type":"LineString","arcs":[140],"properties":{"coalpetro":4672176,"foodfarm":32670,"crudemat":2575522,"chem":1694768,"manu":5500101,"other":0,"total":14475237}},{"type":"LineString","arcs":[141],"properties":{"coalpetro":4672176,"foodfarm":32670,"crudemat":2575522,"chem":1694768,"manu":5500101,"other":0,"total":14475237}},{"type":"LineString","arcs":[142],"properties":{"coalpetro":4379485,"foodfarm":7908,"crudemat":192610,"chem":47770,"manu":216417,"other":0,"total":4844190}},{"type":"LineString","arcs":[143],"properties":{"coalpetro":4379485,"foodfarm":7908,"crudemat":192610,"chem":47770,"manu":216417,"other":0,"total":4844190}},{"type":"LineString","arcs":[144],"properties":{"coalpetro":4379485,"foodfarm":7908,"crudemat":192610,"chem":47770,"manu":216417,"other":0,"total":4844190}},{"type":"LineString","arcs":[145],"properties":{"coalpetro":4379485,"foodfarm":7908,"crudemat":192610,"chem":47770,"manu":216417,"other":0,"total":4844190}},{"type":"LineString","arcs":[146],"properties":{"coalpetro":4379485,"foodfarm":7908,"crudemat":192610,"chem":47770,"manu":216417,"other":0,"total":4844190}},{"type":"LineString","arcs":[147],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[148],"properties":{"coalpetro":125825997,"foodfarm":90183664,"crudemat":20101662,"chem":24407998,"manu":10314546,"other":2181583,"total":273015450}},{"type":"LineString","arcs":[149],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[150],"properties":{"coalpetro":16461705,"foodfarm":2217,"crudemat":222403,"chem":9853,"manu":17972,"other":0,"total":16714150}},{"type":"LineString","arcs":[151],"properties":{"coalpetro":49877674,"foodfarm":8954428,"crudemat":9304025,"chem":2489964,"manu":8822297,"other":748203,"total":80196591}},{"type":"LineString","arcs":[152],"properties":{"coalpetro":49877674,"foodfarm":8954428,"crudemat":9304025,"chem":2489964,"manu":8822297,"other":748203,"total":80196591}},{"type":"LineString","arcs":[153],"properties":{"coalpetro":26910564,"foodfarm":1565778,"crudemat":1182443,"chem":1491794,"manu":2049674,"other":67104,"total":33267357}},{"type":"LineString","arcs":[154],"properties":{"coalpetro":26910564,"foodfarm":1565778,"crudemat":1182443,"chem":1491794,"manu":2049674,"other":67104,"total":33267357}},{"type":"LineString","arcs":[155],"properties":{"coalpetro":49877674,"foodfarm":8954428,"crudemat":9304025,"chem":2489964,"manu":8822297,"other":748203,"total":80196591}},{"type":"LineString","arcs":[156],"properties":{"coalpetro":1769195,"foodfarm":850951,"crudemat":460746,"chem":1073825,"manu":1083410,"other":10019,"total":5248146}},{"type":"LineString","arcs":[157],"properties":{"coalpetro":1769195,"foodfarm":850951,"crudemat":460694,"chem":1073825,"manu":1083302,"other":10019,"total":5247986}},{"type":"LineString","arcs":[158],"properties":{"coalpetro":1769195,"foodfarm":850951,"crudemat":460694,"chem":1073825,"manu":1083302,"other":10019,"total":5247986}},{"type":"LineString","arcs":[159],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[160],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[161],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[162],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[163],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[164],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[165],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[166],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[167],"properties":{"coalpetro":2997587,"foodfarm":1042023,"crudemat":1463242,"chem":1129756,"manu":1672414,"other":10019,"total":8315041}},{"type":"LineString","arcs":[168],"properties":{"coalpetro":2997587,"foodfarm":1042023,"crudemat":1463242,"chem":1129756,"manu":1672414,"other":10019,"total":8315041}},{"type":"LineString","arcs":[169],"properties":{"coalpetro":2997587,"foodfarm":850951,"crudemat":1099765,"chem":1073825,"manu":1085253,"other":10019,"total":7117400}},{"type":"LineString","arcs":[170],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11821,"other":0,"total":13354757}},{"type":"LineString","arcs":[171],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11821,"other":0,"total":13354757}},{"type":"LineString","arcs":[172],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11824,"other":0,"total":13354760}},{"type":"LineString","arcs":[173],"properties":{"coalpetro":16461705,"foodfarm":2217,"crudemat":222403,"chem":9853,"manu":17972,"other":0,"total":16714150}},{"type":"LineString","arcs":[174],"properties":{"coalpetro":16461705,"foodfarm":2217,"crudemat":222403,"chem":9853,"manu":17972,"other":0,"total":16714150}},{"type":"LineString","arcs":[175],"properties":{"coalpetro":16461705,"foodfarm":2217,"crudemat":222403,"chem":9853,"manu":17972,"other":0,"total":16714150}},{"type":"LineString","arcs":[176],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":226532,"chem":9853,"manu":17972,"other":0,"total":16515355}},{"type":"LineString","arcs":[177],"properties":{"coalpetro":50385770,"foodfarm":1887148,"crudemat":2460363,"chem":1743301,"manu":2246917,"other":80390,"total":58803889}},{"type":"LineString","arcs":[178],"properties":{"coalpetro":50385770,"foodfarm":1887148,"crudemat":2460363,"chem":1743301,"manu":2246917,"other":80390,"total":58803889}},{"type":"LineString","arcs":[179],"properties":{"coalpetro":26910564,"foodfarm":1565778,"crudemat":1308258,"chem":1491794,"manu":2051148,"other":67104,"total":33394646}},{"type":"LineString","arcs":[180],"properties":{"coalpetro":26928102,"foodfarm":1565778,"crudemat":1463928,"chem":1491794,"manu":2050778,"other":67104,"total":33567484}},{"type":"LineString","arcs":[181],"properties":{"coalpetro":23776686,"foodfarm":1565778,"crudemat":1463941,"chem":1464657,"manu":2050804,"other":61523,"total":30383389}},{"type":"LineString","arcs":[182],"properties":{"coalpetro":23776686,"foodfarm":1565778,"crudemat":1463941,"chem":1464657,"manu":2050804,"other":61523,"total":30383389}},{"type":"LineString","arcs":[183],"properties":{"coalpetro":23776686,"foodfarm":1565778,"crudemat":1463941,"chem":1464657,"manu":2050804,"other":61523,"total":30383389}},{"type":"LineString","arcs":[184],"properties":{"coalpetro":23776686,"foodfarm":1565778,"crudemat":1463941,"chem":1464657,"manu":2050804,"other":61523,"total":30383389}},{"type":"LineString","arcs":[185],"properties":{"coalpetro":23776686,"foodfarm":1565778,"crudemat":1463941,"chem":1464657,"manu":2050804,"other":61523,"total":30383389}},{"type":"LineString","arcs":[186],"properties":{"coalpetro":3991919,"foodfarm":1042023,"crudemat":1463242,"chem":1153846,"manu":1672414,"other":29809,"total":9353253}},{"type":"LineString","arcs":[187],"properties":{"coalpetro":2997587,"foodfarm":1042023,"crudemat":1463242,"chem":1129756,"manu":1672414,"other":10019,"total":8315041}},{"type":"LineString","arcs":[188],"properties":{"coalpetro":13105074,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11824,"other":0,"total":13354760}},{"type":"LineString","arcs":[189],"properties":{"coalpetro":13186705,"foodfarm":276,"crudemat":217777,"chem":80095,"manu":17987,"other":0,"total":13502840}},{"type":"LineString","arcs":[190],"properties":{"coalpetro":13186705,"foodfarm":276,"crudemat":217777,"chem":80095,"manu":17970,"other":0,"total":13502823}},{"type":"LineString","arcs":[191],"properties":{"coalpetro":13186705,"foodfarm":276,"crudemat":217777,"chem":80095,"manu":15506,"other":0,"total":13500359}},{"type":"LineString","arcs":[192],"properties":{"coalpetro":13187009,"foodfarm":276,"crudemat":217777,"chem":80095,"manu":15506,"other":0,"total":13500663}},{"type":"LineString","arcs":[193],"properties":{"coalpetro":13192043,"foodfarm":276,"crudemat":217777,"chem":80095,"manu":11844,"other":0,"total":13502035}},{"type":"LineString","arcs":[194],"properties":{"coalpetro":13192043,"foodfarm":276,"crudemat":217777,"chem":80095,"manu":11844,"other":0,"total":13502035}},{"type":"LineString","arcs":[195],"properties":{"coalpetro":13192043,"foodfarm":276,"crudemat":217777,"chem":80095,"manu":11844,"other":0,"total":13502035}},{"type":"LineString","arcs":[196],"properties":{"coalpetro":12439957,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11844,"other":0,"total":12689663}},{"type":"LineString","arcs":[197],"properties":{"coalpetro":12439957,"foodfarm":276,"crudemat":217777,"chem":19809,"manu":11895,"other":0,"total":12689714}},{"type":"LineString","arcs":[198],"properties":{"coalpetro":9173664,"foodfarm":551434,"crudemat":1460180,"chem":85362,"manu":942165,"other":383,"total":12213188}},{"type":"LineString","arcs":[199],"properties":{"coalpetro":776289,"foodfarm":44,"crudemat":0,"chem":25401,"manu":3077,"other":0,"total":804811}},{"type":"LineString","arcs":[200],"properties":{"coalpetro":777944,"foodfarm":44,"crudemat":0,"chem":25401,"manu":3077,"other":0,"total":806466}},{"type":"LineString","arcs":[201],"properties":{"coalpetro":2880583,"foodfarm":12880373,"crudemat":5257487,"chem":8588182,"manu":2748205,"other":388974,"total":32743804}},{"type":"LineString","arcs":[202],"properties":{"coalpetro":2880583,"foodfarm":27172819,"crudemat":2888636,"chem":8613622,"manu":3084332,"other":496729,"total":45136721}},{"type":"LineString","arcs":[203],"properties":{"coalpetro":2880583,"foodfarm":27172819,"crudemat":2888636,"chem":8613622,"manu":3084332,"other":496729,"total":45136721}},{"type":"LineString","arcs":[204],"properties":{"coalpetro":1159881,"foodfarm":4630976,"crudemat":2220417,"chem":349964,"manu":0,"other":314394,"total":8675632}},{"type":"LineString","arcs":[205],"properties":{"coalpetro":1159881,"foodfarm":4630976,"crudemat":2220417,"chem":349964,"manu":0,"other":314394,"total":8675632}},{"type":"LineString","arcs":[206],"properties":{"coalpetro":17783901,"foodfarm":2217,"crudemat":101944,"chem":653,"manu":17972,"other":0,"total":17906687}},{"type":"LineString","arcs":[207],"properties":{"coalpetro":17783901,"foodfarm":2217,"crudemat":101944,"chem":653,"manu":17972,"other":0,"total":17906687}},{"type":"LineString","arcs":[208],"properties":{"coalpetro":17783901,"foodfarm":2217,"crudemat":101944,"chem":653,"manu":21278,"other":0,"total":17909993}},{"type":"LineString","arcs":[209],"properties":{"coalpetro":17783901,"foodfarm":56464,"crudemat":4626,"chem":653,"manu":14434,"other":39684,"total":17899762}},{"type":"LineString","arcs":[210],"properties":{"coalpetro":17783901,"foodfarm":56464,"crudemat":4626,"chem":653,"manu":14434,"other":39684,"total":17899762}},{"type":"LineString","arcs":[211],"properties":{"coalpetro":17783901,"foodfarm":56464,"crudemat":4626,"chem":653,"manu":14434,"other":39684,"total":17899762}},{"type":"LineString","arcs":[212],"properties":{"coalpetro":17783901,"foodfarm":56464,"crudemat":4626,"chem":653,"manu":14434,"other":39684,"total":17899762}},{"type":"LineString","arcs":[213],"properties":{"coalpetro":17783901,"foodfarm":56464,"crudemat":4626,"chem":653,"manu":14434,"other":39684,"total":17899762}},{"type":"LineString","arcs":[214],"properties":{"coalpetro":17783901,"foodfarm":56464,"crudemat":4626,"chem":653,"manu":14434,"other":39684,"total":17899762}},{"type":"LineString","arcs":[215],"properties":{"coalpetro":3854925,"foodfarm":34142326,"crudemat":5395016,"chem":9339813,"manu":2831203,"other":496732,"total":56060015}},{"type":"LineString","arcs":[216],"properties":{"coalpetro":3854925,"foodfarm":34142326,"crudemat":5395016,"chem":9339813,"manu":2831203,"other":496732,"total":56060015}},{"type":"LineString","arcs":[217],"properties":{"coalpetro":3854925,"foodfarm":34142326,"crudemat":5395016,"chem":9339813,"manu":2831203,"other":496732,"total":56060015}},{"type":"LineString","arcs":[218],"properties":{"coalpetro":3854925,"foodfarm":34142326,"crudemat":5395016,"chem":9339813,"manu":2831203,"other":496732,"total":56060015}},{"type":"LineString","arcs":[219],"properties":{"coalpetro":3854925,"foodfarm":34142326,"crudemat":5454397,"chem":9339813,"manu":2831203,"other":496732,"total":56119396}},{"type":"LineString","arcs":[220],"properties":{"coalpetro":3854925,"foodfarm":34142326,"crudemat":5466397,"chem":9339813,"manu":2831203,"other":496732,"total":56131396}},{"type":"LineString","arcs":[221],"properties":{"coalpetro":3854925,"foodfarm":34142326,"crudemat":5466397,"chem":9339813,"manu":2831203,"other":496732,"total":56131396}},{"type":"LineString","arcs":[222],"properties":{"coalpetro":1159881,"foodfarm":4630976,"crudemat":2220417,"chem":349964,"manu":0,"other":314394,"total":8675632}},{"type":"LineString","arcs":[223],"properties":{"coalpetro":1159881,"foodfarm":4560585,"crudemat":731319,"chem":349964,"manu":0,"other":314394,"total":7116143}},{"type":"LineString","arcs":[224],"properties":{"coalpetro":1159881,"foodfarm":4560585,"crudemat":731319,"chem":349964,"manu":0,"other":314394,"total":7116143}},{"type":"LineString","arcs":[225],"properties":{"coalpetro":1159881,"foodfarm":4560585,"crudemat":731319,"chem":349964,"manu":0,"other":314394,"total":7116143}},{"type":"LineString","arcs":[226],"properties":{"coalpetro":1159881,"foodfarm":3790602,"crudemat":234613,"chem":282176,"manu":0,"other":0,"total":5467272}},{"type":"LineString","arcs":[227],"properties":{"coalpetro":1159881,"foodfarm":3790602,"crudemat":234613,"chem":282176,"manu":0,"other":0,"total":5467272}},{"type":"LineString","arcs":[228],"properties":{"coalpetro":1159881,"foodfarm":3790602,"crudemat":234613,"chem":282176,"manu":0,"other":0,"total":5467272}},{"type":"LineString","arcs":[229],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[230],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[231],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[232],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[233],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[234],"properties":{"coalpetro":979237,"foodfarm":2428324,"crudemat":224813,"chem":264251,"manu":0,"other":0,"total":3896625}},{"type":"LineString","arcs":[235],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[236],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[237],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[238],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[239],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[240],"properties":{"coalpetro":16258781,"foodfarm":2217,"crudemat":281625,"chem":9853,"manu":17972,"other":0,"total":16570448}},{"type":"LineString","arcs":[241],"properties":{"coalpetro":3854925,"foodfarm":34610563,"crudemat":5729110,"chem":9331189,"manu":3263323,"other":496732,"total":57285842}},{"type":"LineString","arcs":[242],"properties":{"coalpetro":1138461,"foodfarm":10104236,"crudemat":3805191,"chem":814966,"manu":1313269,"other":110891,"total":17287014}},{"type":"LineString","arcs":[243],"properties":{"coalpetro":1233816,"foodfarm":11411794,"crudemat":3098424,"chem":744824,"manu":1069729,"other":110890,"total":17669477}},{"type":"LineString","arcs":[244],"properties":{"coalpetro":2880583,"foodfarm":12880373,"crudemat":5278487,"chem":8588182,"manu":2748205,"other":388974,"total":32764804}},{"type":"LineString","arcs":[245],"properties":{"coalpetro":2880583,"foodfarm":12880373,"crudemat":5257487,"chem":8588182,"manu":2748205,"other":388974,"total":32743804}},{"type":"LineString","arcs":[246],"properties":{"coalpetro":17783901,"foodfarm":56464,"crudemat":4626,"chem":653,"manu":14434,"other":39684,"total":17899762}},{"type":"LineString","arcs":[247],"properties":{"coalpetro":3854925,"foodfarm":34133014,"crudemat":5154630,"chem":9331189,"manu":2831203,"other":496732,"total":55801693}},{"type":"LineString","arcs":[248],"properties":{"coalpetro":3854925,"foodfarm":34133014,"crudemat":5154630,"chem":9331189,"manu":2831203,"other":496732,"total":55801693}},{"type":"LineString","arcs":[249],"properties":{"coalpetro":3854925,"foodfarm":34133014,"crudemat":5195575,"chem":9331189,"manu":3263323,"other":496732,"total":56274758}},{"type":"LineString","arcs":[250],"properties":{"coalpetro":3854925,"foodfarm":34133014,"crudemat":5154630,"chem":9331189,"manu":2831203,"other":496732,"total":55801693}},{"type":"LineString","arcs":[251],"properties":{"coalpetro":3854925,"foodfarm":34133014,"crudemat":5154630,"chem":9331189,"manu":2831203,"other":496732,"total":55801693}},{"type":"LineString","arcs":[252],"properties":{"coalpetro":3854925,"foodfarm":34133014,"crudemat":5164159,"chem":9331189,"manu":3263597,"other":496732,"total":56243616}},{"type":"LineString","arcs":[253],"properties":{"coalpetro":56506907,"foodfarm":438744,"crudemat":2315027,"chem":6187205,"manu":615974,"other":192060,"total":66255917}},{"type":"LineString","arcs":[254],"properties":{"coalpetro":23365357,"foodfarm":729937,"crudemat":5299683,"chem":2069216,"manu":8062545,"other":356731,"total":39883469}},{"type":"LineString","arcs":[255],"properties":{"coalpetro":23366657,"foodfarm":729937,"crudemat":5299683,"chem":2069216,"manu":8100072,"other":356731,"total":39922296}},{"type":"LineString","arcs":[256],"properties":{"coalpetro":23366657,"foodfarm":729937,"crudemat":5299683,"chem":2069216,"manu":8100072,"other":356731,"total":39922296}},{"type":"LineString","arcs":[257],"properties":{"coalpetro":28321562,"foodfarm":775854,"crudemat":6678448,"chem":5210131,"manu":9106767,"other":366376,"total":50459138}},{"type":"LineString","arcs":[258],"properties":{"coalpetro":125573176,"foodfarm":90255314,"crudemat":20059653,"chem":24332370,"manu":10236008,"other":2181583,"total":272638104}},{"type":"LineString","arcs":[259],"properties":{"coalpetro":125830304,"foodfarm":90255314,"crudemat":20090888,"chem":24332370,"manu":10236008,"other":2181583,"total":272926467}},{"type":"LineString","arcs":[260],"properties":{"coalpetro":125574960,"foodfarm":90255314,"crudemat":20081544,"chem":24332370,"manu":10236007,"other":2181583,"total":272661778}},{"type":"LineString","arcs":[261],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":2546,"other":0,"total":2546}},{"type":"LineString","arcs":[262],"properties":{"coalpetro":40751281,"foodfarm":419022,"crudemat":157996,"chem":5750061,"manu":33830,"other":0,"total":47112190}},{"type":"LineString","arcs":[263],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":2546,"other":0,"total":2546}},{"type":"LineString","arcs":[264],"properties":{"coalpetro":40751281,"foodfarm":419022,"crudemat":157996,"chem":5750061,"manu":33830,"other":0,"total":47112190}},{"type":"LineString","arcs":[265],"properties":{"coalpetro":13416206,"foodfarm":160040,"crudemat":1764383,"chem":7362099,"manu":74089,"other":0,"total":22776817}},{"type":"LineString","arcs":[266],"properties":{"coalpetro":165265818,"foodfarm":7346997,"crudemat":4512134,"chem":29748897,"manu":21870187,"other":4315022,"total":233059055}},{"type":"LineString","arcs":[267],"properties":{"coalpetro":165231339,"foodfarm":7346997,"crudemat":4512134,"chem":29748897,"manu":21870187,"other":4315022,"total":233024576}},{"type":"LineString","arcs":[268],"properties":{"coalpetro":163400892,"foodfarm":8604837,"crudemat":4638049,"chem":31256634,"manu":22650677,"other":4409923,"total":234961012}},{"type":"LineString","arcs":[269],"properties":{"coalpetro":163400892,"foodfarm":8604837,"crudemat":4638049,"chem":31256634,"manu":22650677,"other":4409923,"total":234961012}},{"type":"LineString","arcs":[270],"properties":{"coalpetro":163400892,"foodfarm":8604837,"crudemat":4638049,"chem":31256634,"manu":22650677,"other":4409923,"total":234961012}},{"type":"LineString","arcs":[271],"properties":{"coalpetro":13573497,"foodfarm":0,"crudemat":202054,"chem":1662203,"manu":0,"other":1742,"total":15439496}},{"type":"LineString","arcs":[272],"properties":{"coalpetro":17017136,"foodfarm":32542,"crudemat":0,"chem":3430726,"manu":30290,"other":0,"total":20510694}},{"type":"LineString","arcs":[273],"properties":{"coalpetro":43803197,"foodfarm":419022,"crudemat":157996,"chem":6004257,"manu":32517,"other":0,"total":50416989}},{"type":"LineString","arcs":[274],"properties":{"coalpetro":4672176,"foodfarm":32670,"crudemat":2575522,"chem":1694768,"manu":5500101,"other":0,"total":14475237}},{"type":"LineString","arcs":[275],"properties":{"coalpetro":35659323,"foodfarm":347968,"crudemat":2594343,"chem":10191078,"manu":1445860,"other":0,"total":50238572}},{"type":"LineString","arcs":[276],"properties":{"coalpetro":138348824,"foodfarm":907350,"crudemat":5564428,"chem":14841867,"manu":1852116,"other":920033,"total":162434618}},{"type":"LineString","arcs":[277],"properties":{"coalpetro":13053340,"foodfarm":160040,"crudemat":1764383,"chem":6449863,"manu":74089,"other":0,"total":21501715}},{"type":"LineString","arcs":[278],"properties":{"coalpetro":13047340,"foodfarm":160040,"crudemat":1764383,"chem":6449863,"manu":74089,"other":0,"total":21495715}},{"type":"LineString","arcs":[279],"properties":{"coalpetro":1723555,"foodfarm":129254,"crudemat":161166,"chem":109743,"manu":69322,"other":0,"total":2193040}},{"type":"LineString","arcs":[280],"properties":{"coalpetro":1496623,"foodfarm":36094,"crudemat":2170737,"chem":1630041,"manu":466915,"other":0,"total":5800410}},{"type":"LineString","arcs":[281],"properties":{"coalpetro":31254624,"foodfarm":57017,"crudemat":0,"chem":3760288,"manu":30395,"other":0,"total":35102324}},{"type":"LineString","arcs":[282],"properties":{"coalpetro":92418,"foodfarm":0,"crudemat":336786,"chem":74855,"manu":133334,"other":0,"total":637393}},{"type":"LineString","arcs":[283],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[284],"properties":{"coalpetro":92418,"foodfarm":0,"crudemat":336786,"chem":74855,"manu":133334,"other":0,"total":637393}},{"type":"LineString","arcs":[285],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[286],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[287],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[288],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[289],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[290],"properties":{"coalpetro":13416206,"foodfarm":160040,"crudemat":1764383,"chem":7362099,"manu":74089,"other":0,"total":22776817}},{"type":"LineString","arcs":[291],"properties":{"coalpetro":172392692,"foodfarm":7426936,"crudemat":6171646,"chem":36777155,"manu":22991837,"other":4090373,"total":249850639}},{"type":"LineString","arcs":[292],"properties":{"coalpetro":172392692,"foodfarm":7426936,"crudemat":6171646,"chem":36777155,"manu":22991837,"other":4090373,"total":249850639}},{"type":"LineString","arcs":[293],"properties":{"coalpetro":172395338,"foodfarm":7426936,"crudemat":5694374,"chem":36777155,"manu":22994537,"other":4090373,"total":249378713}},{"type":"LineString","arcs":[294],"properties":{"coalpetro":35659323,"foodfarm":347968,"crudemat":2594343,"chem":10191078,"manu":1445860,"other":0,"total":50238572}},{"type":"LineString","arcs":[295],"properties":{"coalpetro":35659323,"foodfarm":347968,"crudemat":2594343,"chem":10191078,"manu":1445860,"other":0,"total":50238572}},{"type":"LineString","arcs":[296],"properties":{"coalpetro":35659323,"foodfarm":347968,"crudemat":2594343,"chem":10191078,"manu":1445860,"other":0,"total":50238572}},{"type":"LineString","arcs":[297],"properties":{"coalpetro":1491476,"foodfarm":0,"crudemat":0,"chem":44435,"manu":0,"other":0,"total":1535911}},{"type":"LineString","arcs":[298],"properties":{"coalpetro":13416206,"foodfarm":160040,"crudemat":1764383,"chem":7362099,"manu":74089,"other":0,"total":22776817}},{"type":"LineString","arcs":[299],"properties":{"coalpetro":13573497,"foodfarm":0,"crudemat":202054,"chem":1662203,"manu":0,"other":1742,"total":15439496}},{"type":"LineString","arcs":[300],"properties":{"coalpetro":13416206,"foodfarm":160040,"crudemat":1764383,"chem":7362099,"manu":74089,"other":0,"total":22776817}},{"type":"LineString","arcs":[301],"properties":{"coalpetro":13416206,"foodfarm":160040,"crudemat":1764383,"chem":7362099,"manu":74089,"other":0,"total":22776817}},{"type":"LineString","arcs":[302],"properties":{"coalpetro":13416206,"foodfarm":160040,"crudemat":1764383,"chem":7362099,"manu":74089,"other":0,"total":22776817}},{"type":"LineString","arcs":[303],"properties":{"coalpetro":11054799,"foodfarm":130760,"crudemat":1441537,"chem":3523922,"manu":73939,"other":0,"total":16224957}},{"type":"LineString","arcs":[304],"properties":{"coalpetro":11764048,"foodfarm":130760,"crudemat":1803783,"chem":3951214,"manu":74052,"other":0,"total":17723857}},{"type":"LineString","arcs":[305],"properties":{"coalpetro":11764048,"foodfarm":130760,"crudemat":1809383,"chem":3951214,"manu":74052,"other":0,"total":17729457}},{"type":"LineString","arcs":[306],"properties":{"coalpetro":12025751,"foodfarm":130760,"crudemat":1809383,"chem":4573316,"manu":74052,"other":0,"total":18613262}},{"type":"LineString","arcs":[307],"properties":{"coalpetro":12438023,"foodfarm":0,"crudemat":202054,"chem":902724,"manu":0,"other":1742,"total":13544543}},{"type":"LineString","arcs":[308],"properties":{"coalpetro":12201183,"foodfarm":130760,"crudemat":1809383,"chem":4573316,"manu":74052,"other":0,"total":18788694}},{"type":"LineString","arcs":[309],"properties":{"coalpetro":12201183,"foodfarm":130760,"crudemat":1809383,"chem":4573316,"manu":74052,"other":0,"total":18788694}},{"type":"LineString","arcs":[310],"properties":{"coalpetro":17200777,"foodfarm":435928,"crudemat":945020,"chem":654126,"manu":584770,"other":179969,"total":20000590}},{"type":"LineString","arcs":[311],"properties":{"coalpetro":10166097,"foodfarm":129254,"crudemat":555738,"chem":2009148,"manu":73939,"other":0,"total":12934176}},{"type":"LineString","arcs":[312],"properties":{"coalpetro":11054799,"foodfarm":130760,"crudemat":1441537,"chem":3523922,"manu":73939,"other":0,"total":16224957}},{"type":"LineString","arcs":[313],"properties":{"coalpetro":12438023,"foodfarm":0,"crudemat":202054,"chem":902724,"manu":0,"other":1742,"total":13544543}},{"type":"LineString","arcs":[314],"properties":{"coalpetro":1625612,"foodfarm":2029,"crudemat":127608,"chem":3320,"manu":67154,"other":0,"total":1825723}},{"type":"LineString","arcs":[315],"properties":{"coalpetro":1721655,"foodfarm":129254,"crudemat":127608,"chem":109743,"manu":67154,"other":0,"total":2155414}},{"type":"LineString","arcs":[316],"properties":{"coalpetro":1723555,"foodfarm":129254,"crudemat":161166,"chem":109743,"manu":69322,"other":0,"total":2193040}},{"type":"LineString","arcs":[317],"properties":{"coalpetro":1491476,"foodfarm":0,"crudemat":0,"chem":44435,"manu":0,"other":0,"total":1535911}},{"type":"LineString","arcs":[318],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[319],"properties":{"coalpetro":10051478,"foodfarm":129254,"crudemat":555738,"chem":2009148,"manu":73939,"other":0,"total":12819557}},{"type":"LineString","arcs":[320],"properties":{"coalpetro":9966196,"foodfarm":129254,"crudemat":555738,"chem":2009148,"manu":73939,"other":0,"total":12734275}},{"type":"LineString","arcs":[321],"properties":{"coalpetro":10166097,"foodfarm":129254,"crudemat":555738,"chem":2009148,"manu":73939,"other":0,"total":12934176}},{"type":"LineString","arcs":[322],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[323],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[324],"properties":{"coalpetro":168532227,"foodfarm":5542092,"crudemat":4787010,"chem":29609527,"manu":16000751,"other":2767790,"total":227239397}},{"type":"LineString","arcs":[325],"properties":{"coalpetro":168532227,"foodfarm":5542092,"crudemat":4787010,"chem":29609527,"manu":16000751,"other":2767790,"total":227239397}},{"type":"LineString","arcs":[326],"properties":{"coalpetro":168532227,"foodfarm":5542092,"crudemat":4787010,"chem":29609527,"manu":16000751,"other":2767790,"total":227239397}},{"type":"LineString","arcs":[327],"properties":{"coalpetro":168565338,"foodfarm":4339873,"crudemat":4068345,"chem":27866641,"manu":11352355,"other":1785326,"total":217977878}},{"type":"LineString","arcs":[328],"properties":{"coalpetro":168565338,"foodfarm":4339873,"crudemat":4068345,"chem":27866641,"manu":11352355,"other":1785326,"total":217977878}},{"type":"LineString","arcs":[329],"properties":{"coalpetro":168776300,"foodfarm":4339873,"crudemat":4068345,"chem":27187111,"manu":11352355,"other":1785326,"total":217509310}},{"type":"LineString","arcs":[330],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[331],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[332],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[333],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[334],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[335],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[336],"properties":{"coalpetro":172395338,"foodfarm":7426936,"crudemat":5694374,"chem":36777155,"manu":22994537,"other":4090373,"total":249378713}},{"type":"LineString","arcs":[337],"properties":{"coalpetro":172395338,"foodfarm":7426936,"crudemat":5694374,"chem":36777155,"manu":22994537,"other":4090373,"total":249378713}},{"type":"LineString","arcs":[338],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[339],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[340],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[341],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[342],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[343],"properties":{"coalpetro":180119177,"foodfarm":4339873,"crudemat":4068345,"chem":30309389,"manu":11352855,"other":1785326,"total":231974965}},{"type":"LineString","arcs":[344],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[345],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[346],"properties":{"coalpetro":2184075,"foodfarm":571531,"crudemat":854969,"chem":1897913,"manu":3637196,"other":201094,"total":9346778}},{"type":"LineString","arcs":[347],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[348],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[349],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[350],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[351],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[352],"properties":{"coalpetro":55132748,"foodfarm":1829273,"crudemat":2103370,"chem":6992548,"manu":7580326,"other":570503,"total":74208768}},{"type":"LineString","arcs":[353],"properties":{"coalpetro":13736334,"foodfarm":852770,"crudemat":4434136,"chem":5115199,"manu":1251208,"other":312506,"total":25702153}},{"type":"LineString","arcs":[354],"properties":{"coalpetro":1047768,"foodfarm":1478,"crudemat":598062,"chem":252207,"manu":5516063,"other":313756,"total":7729334}},{"type":"LineString","arcs":[355],"properties":{"coalpetro":152573062,"foodfarm":149052376,"crudemat":31222345,"chem":48343535,"manu":14395879,"other":832069,"total":396419266}},{"type":"LineString","arcs":[356],"properties":{"coalpetro":53051382,"foodfarm":88939111,"crudemat":22886292,"chem":25024130,"manu":11624973,"other":65914,"total":201591802}},{"type":"LineString","arcs":[357],"properties":{"coalpetro":34854627,"foodfarm":83371867,"crudemat":25868344,"chem":22236239,"manu":11976403,"other":0,"total":178307480}},{"type":"LineString","arcs":[358],"properties":{"coalpetro":4892310,"foodfarm":5937,"crudemat":963815,"chem":667206,"manu":176370,"other":0,"total":6705638}},{"type":"LineString","arcs":[359],"properties":{"coalpetro":56506907,"foodfarm":438744,"crudemat":2315027,"chem":6187205,"manu":615974,"other":192060,"total":66255917}},{"type":"LineString","arcs":[360],"properties":{"coalpetro":2041686,"foodfarm":171634,"crudemat":2662753,"chem":90483,"manu":129144,"other":0,"total":5095700}},{"type":"LineString","arcs":[361],"properties":{"coalpetro":36015831,"foodfarm":83505244,"crudemat":21202477,"chem":22264425,"manu":11654747,"other":0,"total":174642724}},{"type":"LineString","arcs":[362],"properties":{"coalpetro":5364724,"foodfarm":412183,"crudemat":1826513,"chem":2304442,"manu":578782,"other":156615,"total":10643259}},{"type":"LineString","arcs":[363],"properties":{"coalpetro":11764244,"foodfarm":314083,"crudemat":5343772,"chem":4934123,"manu":926583,"other":0,"total":23282805}},{"type":"LineString","arcs":[364],"properties":{"coalpetro":5352389,"foodfarm":412183,"crudemat":1756897,"chem":2303527,"manu":593093,"other":128815,"total":10546904}},{"type":"LineString","arcs":[365],"properties":{"coalpetro":5347028,"foodfarm":405783,"crudemat":2011122,"chem":2308911,"manu":599545,"other":128815,"total":10801204}},{"type":"LineString","arcs":[366],"properties":{"coalpetro":13420090,"foodfarm":852770,"crudemat":4057545,"chem":4937634,"manu":1234584,"other":312506,"total":24815129}},{"type":"LineString","arcs":[367],"properties":{"coalpetro":13540187,"foodfarm":852770,"crudemat":4080708,"chem":4937634,"manu":1239400,"other":312506,"total":24963205}},{"type":"LineString","arcs":[368],"properties":{"coalpetro":13167098,"foodfarm":852770,"crudemat":4091740,"chem":4938463,"manu":1237766,"other":312506,"total":24600343}},{"type":"LineString","arcs":[369],"properties":{"coalpetro":152573062,"foodfarm":149052376,"crudemat":31222345,"chem":48343535,"manu":14395879,"other":832069,"total":396419266}},{"type":"LineString","arcs":[370],"properties":{"coalpetro":152573062,"foodfarm":149052376,"crudemat":31222345,"chem":48343535,"manu":14395879,"other":832069,"total":396419266}},{"type":"LineString","arcs":[371],"properties":{"coalpetro":152573062,"foodfarm":149052376,"crudemat":31222345,"chem":48343535,"manu":14395879,"other":832069,"total":396419266}},{"type":"LineString","arcs":[372],"properties":{"coalpetro":33557,"foodfarm":0,"crudemat":0,"chem":0,"manu":59,"other":0,"total":33616}},{"type":"LineString","arcs":[373],"properties":{"coalpetro":1047768,"foodfarm":1478,"crudemat":598062,"chem":252207,"manu":5516063,"other":313756,"total":7729334}},{"type":"LineString","arcs":[374],"properties":{"coalpetro":936658,"foodfarm":348,"crudemat":19513,"chem":27668,"manu":59720,"other":1250,"total":1045157}},{"type":"LineString","arcs":[375],"properties":{"coalpetro":52966685,"foodfarm":102188,"crudemat":0,"chem":3986310,"manu":24818,"other":338,"total":57080339}},{"type":"LineString","arcs":[376],"properties":{"coalpetro":52966685,"foodfarm":102188,"crudemat":0,"chem":3986310,"manu":24818,"other":338,"total":57080339}},{"type":"LineString","arcs":[377],"properties":{"coalpetro":47347574,"foodfarm":433173,"crudemat":1034768,"chem":6082958,"manu":151573,"other":127858,"total":55177904}},{"type":"LineString","arcs":[378],"properties":{"coalpetro":126943250,"foodfarm":90183664,"crudemat":20163301,"chem":24353372,"manu":10226845,"other":2178531,"total":274048963}},{"type":"LineString","arcs":[379],"properties":{"coalpetro":34273590,"foodfarm":82600549,"crudemat":26910714,"chem":22293311,"manu":12061989,"other":0,"total":178140153}},{"type":"LineString","arcs":[380],"properties":{"coalpetro":34273590,"foodfarm":82600549,"crudemat":26910714,"chem":22293311,"manu":12061989,"other":0,"total":178140153}},{"type":"LineString","arcs":[381],"properties":{"coalpetro":34273590,"foodfarm":82600549,"crudemat":26910714,"chem":22293311,"manu":12061989,"other":0,"total":178140153}},{"type":"LineString","arcs":[382],"properties":{"coalpetro":143455372,"foodfarm":99546026,"crudemat":22766425,"chem":27342448,"manu":11964706,"other":2178531,"total":307253508}},{"type":"LineString","arcs":[383],"properties":{"coalpetro":129896612,"foodfarm":98886634,"crudemat":26052053,"chem":29333940,"manu":12522706,"other":1258002,"total":297949947}},{"type":"LineString","arcs":[384],"properties":{"coalpetro":133190207,"foodfarm":90105832,"crudemat":25214488,"chem":29376817,"manu":11779503,"other":1394276,"total":291061123}},{"type":"LineString","arcs":[385],"properties":{"coalpetro":138056243,"foodfarm":91081389,"crudemat":24094288,"chem":28850835,"manu":12455947,"other":1599237,"total":296137939}},{"type":"LineString","arcs":[386],"properties":{"coalpetro":28343169,"foodfarm":763969,"crudemat":5106426,"chem":3891446,"manu":8875757,"other":341219,"total":47321986}},{"type":"LineString","arcs":[387],"properties":{"coalpetro":28343169,"foodfarm":763969,"crudemat":5106426,"chem":3891446,"manu":8874752,"other":341219,"total":47320981}},{"type":"LineString","arcs":[388],"properties":{"coalpetro":28343169,"foodfarm":763969,"crudemat":5106426,"chem":3891446,"manu":8874752,"other":341219,"total":47320981}},{"type":"LineString","arcs":[389],"properties":{"coalpetro":31192251,"foodfarm":763969,"crudemat":5106426,"chem":3888048,"manu":13299830,"other":341219,"total":54591743}},{"type":"LineString","arcs":[390],"properties":{"coalpetro":19270898,"foodfarm":515465,"crudemat":5175400,"chem":3266385,"manu":9037324,"other":235050,"total":37500522}},{"type":"LineString","arcs":[391],"properties":{"coalpetro":14684117,"foodfarm":69370,"crudemat":3083604,"chem":2715849,"manu":5510216,"other":13669,"total":26076825}},{"type":"LineString","arcs":[392],"properties":{"coalpetro":5911712,"foodfarm":32670,"crudemat":2488569,"chem":1670968,"manu":5531322,"other":0,"total":15635241}},{"type":"LineString","arcs":[393],"properties":{"coalpetro":4672176,"foodfarm":32670,"crudemat":2575522,"chem":1694768,"manu":5500101,"other":0,"total":14475237}},{"type":"LineString","arcs":[394],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[395],"properties":{"coalpetro":127155654,"foodfarm":90183664,"crudemat":20162822,"chem":24354143,"manu":10297896,"other":2178531,"total":274332710}},{"type":"LineString","arcs":[396],"properties":{"coalpetro":40751281,"foodfarm":419022,"crudemat":157996,"chem":5750061,"manu":33830,"other":0,"total":47112190}},{"type":"LineString","arcs":[397],"properties":{"coalpetro":40751281,"foodfarm":419022,"crudemat":157996,"chem":5750061,"manu":33830,"other":0,"total":47112190}},{"type":"LineString","arcs":[398],"properties":{"coalpetro":40751281,"foodfarm":419022,"crudemat":157996,"chem":5750061,"manu":33830,"other":0,"total":47112190}},{"type":"LineString","arcs":[399],"properties":{"coalpetro":15504132,"foodfarm":2398417,"crudemat":1121200,"chem":473331,"manu":4477849,"other":828807,"total":24803736}},{"type":"LineString","arcs":[400],"properties":{"coalpetro":41345756,"foodfarm":419022,"crudemat":233621,"chem":5361336,"manu":85261,"other":0,"total":47444996}},{"type":"LineString","arcs":[401],"properties":{"coalpetro":11229199,"foodfarm":536912,"crudemat":71446,"chem":2664862,"manu":128260,"other":26317,"total":14656996}},{"type":"LineString","arcs":[402],"properties":{"coalpetro":7574681,"foodfarm":436095,"crudemat":33997,"chem":2524436,"manu":41603,"other":0,"total":10610812}},{"type":"LineString","arcs":[403],"properties":{"coalpetro":7574737,"foodfarm":436095,"crudemat":33997,"chem":2524436,"manu":42001,"other":0,"total":10611266}},{"type":"LineString","arcs":[404],"properties":{"coalpetro":7574737,"foodfarm":436095,"crudemat":33997,"chem":2440331,"manu":42152,"other":0,"total":10527312}},{"type":"LineString","arcs":[405],"properties":{"coalpetro":41345756,"foodfarm":419022,"crudemat":233621,"chem":5361336,"manu":85261,"other":0,"total":47444996}},{"type":"LineString","arcs":[406],"properties":{"coalpetro":7527184,"foodfarm":435724,"crudemat":325929,"chem":2260800,"manu":111678,"other":4312,"total":10665627}},{"type":"LineString","arcs":[407],"properties":{"coalpetro":7527184,"foodfarm":435724,"crudemat":325929,"chem":2260800,"manu":111678,"other":4312,"total":10665627}},{"type":"LineString","arcs":[408],"properties":{"coalpetro":1575003,"foodfarm":332606,"crudemat":31560446,"chem":183629,"manu":2391769,"other":138721,"total":36182174}},{"type":"LineString","arcs":[409],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":992927,"chem":0,"manu":0,"other":0,"total":992927}},{"type":"LineString","arcs":[410],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":992927,"chem":0,"manu":8285,"other":0,"total":1001212}},{"type":"LineString","arcs":[411],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":992927,"chem":0,"manu":0,"other":0,"total":992927}},{"type":"LineString","arcs":[412],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":992927,"chem":0,"manu":0,"other":0,"total":992927}},{"type":"LineString","arcs":[413],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":1055646,"chem":0,"manu":0,"other":0,"total":1055646}},{"type":"LineString","arcs":[414],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":1836204,"chem":0,"manu":0,"other":0,"total":1836204}},{"type":"LineString","arcs":[415],"properties":{"coalpetro":9315622,"foodfarm":1614895,"crudemat":57276878,"chem":211130,"manu":1947611,"other":179757,"total":70545893}},{"type":"LineString","arcs":[416],"properties":{"coalpetro":9315622,"foodfarm":1614895,"crudemat":57276878,"chem":211130,"manu":1947611,"other":179757,"total":70545893}},{"type":"LineString","arcs":[417],"properties":{"coalpetro":9315622,"foodfarm":1614895,"crudemat":57800459,"chem":211130,"manu":1928088,"other":131940,"total":71002134}},{"type":"LineString","arcs":[418],"properties":{"coalpetro":9315622,"foodfarm":1614895,"crudemat":56683448,"chem":211130,"manu":1947588,"other":179757,"total":69952440}},{"type":"LineString","arcs":[419],"properties":{"coalpetro":10459428,"foodfarm":1947501,"crudemat":41769151,"chem":277327,"manu":3531349,"other":137014,"total":58121770}},{"type":"LineString","arcs":[420],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":44423,"chem":0,"manu":0,"other":0,"total":865363}},{"type":"LineString","arcs":[421],"properties":{"coalpetro":9315622,"foodfarm":1614895,"crudemat":57276878,"chem":211130,"manu":1947611,"other":179757,"total":70545893}},{"type":"LineString","arcs":[422],"properties":{"coalpetro":10459428,"foodfarm":1947501,"crudemat":41769151,"chem":277327,"manu":3531349,"other":137014,"total":58121770}},{"type":"LineString","arcs":[423],"properties":{"coalpetro":4577274,"foodfarm":2241631,"crudemat":30207983,"chem":225470,"manu":2181854,"other":203319,"total":39637531}},{"type":"LineString","arcs":[424],"properties":{"coalpetro":5202434,"foodfarm":2246631,"crudemat":41546620,"chem":225470,"manu":3272090,"other":244345,"total":52737590}},{"type":"LineString","arcs":[425],"properties":{"coalpetro":5202434,"foodfarm":2246631,"crudemat":41546620,"chem":225470,"manu":3272090,"other":244345,"total":52737590}},{"type":"LineString","arcs":[426],"properties":{"coalpetro":5202434,"foodfarm":2246631,"crudemat":41546620,"chem":225470,"manu":3272090,"other":244345,"total":52737590}},{"type":"LineString","arcs":[427],"properties":{"coalpetro":3603425,"foodfarm":2171320,"crudemat":40579855,"chem":225470,"manu":3009258,"other":153783,"total":49743111}},{"type":"LineString","arcs":[428],"properties":{"coalpetro":39472981,"foodfarm":10420445,"crudemat":10802167,"chem":6341080,"manu":5496077,"other":0,"total":72532750}},{"type":"LineString","arcs":[429],"properties":{"coalpetro":39472981,"foodfarm":10420445,"crudemat":10802167,"chem":6341080,"manu":5496077,"other":0,"total":72532750}},{"type":"LineString","arcs":[430],"properties":{"coalpetro":39472981,"foodfarm":10420445,"crudemat":10802167,"chem":6341080,"manu":5496077,"other":0,"total":72532750}},{"type":"LineString","arcs":[431],"properties":{"coalpetro":39472981,"foodfarm":10420445,"crudemat":10802167,"chem":6341080,"manu":5496077,"other":0,"total":72532750}},{"type":"LineString","arcs":[432],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[433],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[434],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[435],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[436],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[437],"properties":{"coalpetro":2530479,"foodfarm":192892,"crudemat":6591718,"chem":1820803,"manu":2833820,"other":0,"total":13969712}},{"type":"LineString","arcs":[438],"properties":{"coalpetro":2530479,"foodfarm":192892,"crudemat":6591718,"chem":1820803,"manu":2833820,"other":0,"total":13969712}},{"type":"LineString","arcs":[439],"properties":{"coalpetro":359885,"foodfarm":21477,"crudemat":3458767,"chem":1185029,"manu":371605,"other":0,"total":5396763}},{"type":"LineString","arcs":[440],"properties":{"coalpetro":19626,"foodfarm":6367,"crudemat":1722441,"chem":20441,"manu":7624,"other":0,"total":1776499}},{"type":"LineString","arcs":[441],"properties":{"coalpetro":19626,"foodfarm":6367,"crudemat":3465,"chem":11134,"manu":1424,"other":0,"total":42016}},{"type":"LineString","arcs":[442],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56208699,"chem":112320,"manu":1399202,"other":87504,"total":67785765}},{"type":"LineString","arcs":[443],"properties":{"coalpetro":25459279,"foodfarm":789305,"crudemat":13341239,"chem":2665413,"manu":3835405,"other":0,"total":46090641}},{"type":"LineString","arcs":[444],"properties":{"coalpetro":25459279,"foodfarm":789305,"crudemat":13341239,"chem":2665413,"manu":3835405,"other":0,"total":46090641}},{"type":"LineString","arcs":[445],"properties":{"coalpetro":25459279,"foodfarm":789305,"crudemat":13341239,"chem":2665413,"manu":3835405,"other":0,"total":46090641}},{"type":"LineString","arcs":[446],"properties":{"coalpetro":25459279,"foodfarm":789305,"crudemat":13341239,"chem":2665413,"manu":3835405,"other":0,"total":46090641}},{"type":"LineString","arcs":[447],"properties":{"coalpetro":24887283,"foodfarm":298046,"crudemat":10411582,"chem":1547418,"manu":3402889,"other":0,"total":40547218}},{"type":"LineString","arcs":[448],"properties":{"coalpetro":24887283,"foodfarm":298046,"crudemat":10411582,"chem":1547418,"manu":3402889,"other":0,"total":40547218}},{"type":"LineString","arcs":[449],"properties":{"coalpetro":24887283,"foodfarm":298046,"crudemat":10411582,"chem":1547418,"manu":3402889,"other":0,"total":40547218}},{"type":"LineString","arcs":[450],"properties":{"coalpetro":29825700,"foodfarm":298046,"crudemat":9600841,"chem":1140716,"manu":3307423,"other":0,"total":44172726}},{"type":"LineString","arcs":[451],"properties":{"coalpetro":29825700,"foodfarm":298046,"crudemat":9600841,"chem":1140716,"manu":3307423,"other":0,"total":44172726}},{"type":"LineString","arcs":[452],"properties":{"coalpetro":2632064,"foodfarm":1079804,"crudemat":4480741,"chem":138505,"manu":512513,"other":56198,"total":8899825}},{"type":"LineString","arcs":[453],"properties":{"coalpetro":979686,"foodfarm":327606,"crudemat":30130729,"chem":159664,"manu":3228863,"other":60201,"total":34886749}},{"type":"LineString","arcs":[454],"properties":{"coalpetro":1024889,"foodfarm":0,"crudemat":3021991,"chem":113559,"manu":2112968,"other":0,"total":6273407}},{"type":"LineString","arcs":[455],"properties":{"coalpetro":1024889,"foodfarm":0,"crudemat":3021991,"chem":113559,"manu":2112968,"other":0,"total":6273407}},{"type":"LineString","arcs":[456],"properties":{"coalpetro":24323954,"foodfarm":2678413,"crudemat":14409120,"chem":3905349,"manu":5272099,"other":0,"total":50588935}},{"type":"LineString","arcs":[457],"properties":{"coalpetro":24323954,"foodfarm":2678413,"crudemat":14409120,"chem":3905349,"manu":5272099,"other":0,"total":50588935}},{"type":"LineString","arcs":[458],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":30064790,"chem":159664,"manu":3120756,"other":23053,"total":34469001}},{"type":"LineString","arcs":[459],"properties":{"coalpetro":24323954,"foodfarm":2678413,"crudemat":14409120,"chem":3905349,"manu":5272099,"other":0,"total":50588935}},{"type":"LineString","arcs":[460],"properties":{"coalpetro":25459279,"foodfarm":789305,"crudemat":13341239,"chem":2665413,"manu":3835405,"other":0,"total":46090641}},{"type":"LineString","arcs":[461],"properties":{"coalpetro":25459279,"foodfarm":789305,"crudemat":13341239,"chem":2665413,"manu":3835405,"other":0,"total":46090641}},{"type":"LineString","arcs":[462],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[463],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[464],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[465],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27805944,"chem":126204,"manu":1974299,"other":23053,"total":30841311}},{"type":"LineString","arcs":[466],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27830841,"chem":126204,"manu":1976649,"other":23053,"total":30868558}},{"type":"LineString","arcs":[467],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27888861,"chem":126204,"manu":2077184,"other":23053,"total":31027113}},{"type":"LineString","arcs":[468],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27990331,"chem":126204,"manu":2075035,"other":23053,"total":31126434}},{"type":"LineString","arcs":[469],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27990331,"chem":126204,"manu":2075034,"other":23053,"total":31126433}},{"type":"LineString","arcs":[470],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27990331,"chem":126204,"manu":2075034,"other":23053,"total":31126433}},{"type":"LineString","arcs":[471],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27990331,"chem":126204,"manu":2075034,"other":23053,"total":31126433}},{"type":"LineString","arcs":[472],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":27990331,"chem":126204,"manu":2075034,"other":23053,"total":31126433}},{"type":"LineString","arcs":[473],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":28235261,"chem":126204,"manu":2075034,"other":23053,"total":31371363}},{"type":"LineString","arcs":[474],"properties":{"coalpetro":807918,"foodfarm":103893,"crudemat":28235261,"chem":126204,"manu":2075034,"other":23053,"total":31371363}},{"type":"LineString","arcs":[475],"properties":{"coalpetro":741748,"foodfarm":308790,"crudemat":29103775,"chem":126204,"manu":2929364,"other":23053,"total":33232934}},{"type":"LineString","arcs":[476],"properties":{"coalpetro":773132,"foodfarm":308790,"crudemat":29378040,"chem":126204,"manu":3066924,"other":23053,"total":33676143}},{"type":"LineString","arcs":[477],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":29940382,"chem":126204,"manu":3120756,"other":23053,"total":34311133}},{"type":"LineString","arcs":[478],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":29940382,"chem":126204,"manu":3120756,"other":23053,"total":34311133}},{"type":"LineString","arcs":[479],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":29940382,"chem":126204,"manu":3120756,"other":23053,"total":34311133}},{"type":"LineString","arcs":[480],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":29940382,"chem":126204,"manu":3120756,"other":23053,"total":34311133}},{"type":"LineString","arcs":[481],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":29940382,"chem":126204,"manu":3120756,"other":23053,"total":34311133}},{"type":"LineString","arcs":[482],"properties":{"coalpetro":451530,"foodfarm":2102725,"crudemat":462098,"chem":2180711,"manu":403014,"other":0,"total":5600078}},{"type":"LineString","arcs":[483],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[484],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[485],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[486],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[487],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[488],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[489],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[490],"properties":{"coalpetro":567639,"foodfarm":3096081,"crudemat":3599069,"chem":2743763,"manu":1196704,"other":0,"total":11203256}},{"type":"LineString","arcs":[491],"properties":{"coalpetro":0,"foodfarm":71959,"crudemat":153488,"chem":3040,"manu":160675,"other":0,"total":389162}},{"type":"LineString","arcs":[492],"properties":{"coalpetro":0,"foodfarm":71959,"crudemat":153130,"chem":3040,"manu":160675,"other":0,"total":388804}},{"type":"LineString","arcs":[493],"properties":{"coalpetro":0,"foodfarm":71959,"crudemat":153488,"chem":3040,"manu":160675,"other":0,"total":389162}},{"type":"LineString","arcs":[494],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[495],"properties":{"coalpetro":0,"foodfarm":71959,"crudemat":153488,"chem":3040,"manu":160675,"other":0,"total":389162}},{"type":"LineString","arcs":[496],"properties":{"coalpetro":104301,"foodfarm":243896,"crudemat":2478372,"chem":126490,"manu":261207,"other":0,"total":3214266}},{"type":"LineString","arcs":[497],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":3055,"chem":0,"manu":0,"other":0,"total":3055}},{"type":"LineString","arcs":[498],"properties":{"coalpetro":7517295,"foodfarm":2765936,"crudemat":8907952,"chem":1273516,"manu":2646342,"other":0,"total":23111041}},{"type":"LineString","arcs":[499],"properties":{"coalpetro":7517295,"foodfarm":2765936,"crudemat":8907952,"chem":1273516,"manu":2646342,"other":0,"total":23111041}},{"type":"LineString","arcs":[500],"properties":{"coalpetro":27323023,"foodfarm":10314095,"crudemat":11497757,"chem":6142189,"manu":5399748,"other":0,"total":60676812}},{"type":"LineString","arcs":[501],"properties":{"coalpetro":104301,"foodfarm":243896,"crudemat":2478372,"chem":126490,"manu":261207,"other":0,"total":3214266}},{"type":"LineString","arcs":[502],"properties":{"coalpetro":104301,"foodfarm":219896,"crudemat":19874,"chem":124990,"manu":103613,"other":0,"total":572674}},{"type":"LineString","arcs":[503],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[504],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[505],"properties":{"coalpetro":104301,"foodfarm":219896,"crudemat":1022798,"chem":124990,"manu":103613,"other":0,"total":1575598}},{"type":"LineString","arcs":[506],"properties":{"coalpetro":15840558,"foodfarm":51211447,"crudemat":15242055,"chem":12690244,"manu":9771759,"other":0,"total":104756063}},{"type":"LineString","arcs":[507],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[508],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[509],"properties":{"coalpetro":9815459,"foodfarm":35287292,"crudemat":5729176,"chem":10039842,"manu":5707267,"other":0,"total":66579036}},{"type":"LineString","arcs":[510],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[511],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[512],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[513],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[514],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[515],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[516],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[517],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[518],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[519],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[520],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[521],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[522],"properties":{"coalpetro":19506779,"foodfarm":52960977,"crudemat":16022203,"chem":12665828,"manu":8006602,"other":0,"total":109162389}},{"type":"LineString","arcs":[523],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[524],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[525],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[526],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[527],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[528],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[529],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[530],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[531],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[532],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[533],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[534],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[535],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[536],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[537],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":3055,"chem":0,"manu":0,"other":0,"total":3055}},{"type":"LineString","arcs":[538],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":3055,"chem":0,"manu":0,"other":0,"total":3055}},{"type":"LineString","arcs":[539],"properties":{"coalpetro":294483,"foodfarm":3617602,"crudemat":2430171,"chem":1580957,"manu":827695,"other":0,"total":8750908}},{"type":"LineString","arcs":[540],"properties":{"coalpetro":294483,"foodfarm":3617602,"crudemat":2430171,"chem":1580957,"manu":827695,"other":0,"total":8750908}},{"type":"LineString","arcs":[541],"properties":{"coalpetro":15840558,"foodfarm":51211447,"crudemat":15242055,"chem":12690244,"manu":9771759,"other":0,"total":104756063}},{"type":"LineString","arcs":[542],"properties":{"coalpetro":294483,"foodfarm":3617602,"crudemat":2430171,"chem":1580957,"manu":827695,"other":0,"total":8750908}},{"type":"LineString","arcs":[543],"properties":{"coalpetro":294366,"foodfarm":6047768,"crudemat":1513479,"chem":2092678,"manu":836746,"other":0,"total":10785037}},{"type":"LineString","arcs":[544],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[545],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[546],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[547],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[548],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[549],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[550],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[551],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[552],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[553],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[554],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[555],"properties":{"coalpetro":1977423,"foodfarm":21397496,"crudemat":3132655,"chem":4354211,"manu":2051228,"other":0,"total":32913013}},{"type":"LineString","arcs":[556],"properties":{"coalpetro":15840558,"foodfarm":51211447,"crudemat":15242055,"chem":12690244,"manu":9771759,"other":0,"total":104756063}},{"type":"LineString","arcs":[557],"properties":{"coalpetro":9815459,"foodfarm":35287292,"crudemat":5729176,"chem":10039842,"manu":5707267,"other":0,"total":66579036}},{"type":"LineString","arcs":[558],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[559],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[560],"properties":{"coalpetro":7061312,"foodfarm":14223850,"crudemat":5540080,"chem":6387138,"manu":4036407,"other":0,"total":37248787}},{"type":"LineString","arcs":[561],"properties":{"coalpetro":21599,"foodfarm":0,"crudemat":8199812,"chem":0,"manu":379038,"other":0,"total":8600449}},{"type":"LineString","arcs":[562],"properties":{"coalpetro":21599,"foodfarm":0,"crudemat":8199812,"chem":0,"manu":379038,"other":0,"total":8600449}},{"type":"LineString","arcs":[563],"properties":{"coalpetro":2028679,"foodfarm":50648,"crudemat":27422951,"chem":147685,"manu":985923,"other":152,"total":30636038}},{"type":"LineString","arcs":[564],"properties":{"coalpetro":827544,"foodfarm":110260,"crudemat":27809409,"chem":137338,"manu":1975723,"other":23053,"total":30883327}},{"type":"LineString","arcs":[565],"properties":{"coalpetro":827544,"foodfarm":110260,"crudemat":27809409,"chem":137338,"manu":1975723,"other":23053,"total":30883327}},{"type":"LineString","arcs":[566],"properties":{"coalpetro":827544,"foodfarm":110260,"crudemat":27809409,"chem":137338,"manu":1975723,"other":23053,"total":30883327}},{"type":"LineString","arcs":[567],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[568],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[569],"properties":{"coalpetro":34364942,"foodfarm":6678776,"crudemat":23937730,"chem":4988671,"manu":5834603,"other":0,"total":75804722}},{"type":"LineString","arcs":[570],"properties":{"coalpetro":24323954,"foodfarm":2678413,"crudemat":14409120,"chem":3905349,"manu":5272099,"other":0,"total":50588935}},{"type":"LineString","arcs":[571],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[572],"properties":{"coalpetro":8858959,"foodfarm":1614872,"crudemat":48442083,"chem":112320,"manu":1399202,"other":45262,"total":60472698}},{"type":"LineString","arcs":[573],"properties":{"coalpetro":8858959,"foodfarm":1614872,"crudemat":48442083,"chem":112320,"manu":1399202,"other":45262,"total":60472698}},{"type":"LineString","arcs":[574],"properties":{"coalpetro":8858959,"foodfarm":1614872,"crudemat":48442083,"chem":112320,"manu":1399202,"other":45262,"total":60472698}},{"type":"LineString","arcs":[575],"properties":{"coalpetro":8309165,"foodfarm":1614872,"crudemat":55283185,"chem":112320,"manu":1399202,"other":67662,"total":66786406}},{"type":"LineString","arcs":[576],"properties":{"coalpetro":8309165,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67727962}},{"type":"LineString","arcs":[577],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":71690342,"chem":50839,"manu":138434,"other":241,"total":81607404}},{"type":"LineString","arcs":[578],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[579],"properties":{"coalpetro":8704610,"foodfarm":1201424,"crudemat":25006652,"chem":50839,"manu":138434,"other":241,"total":35102200}},{"type":"LineString","arcs":[580],"properties":{"coalpetro":8704610,"foodfarm":1201424,"crudemat":25006652,"chem":50839,"manu":138434,"other":241,"total":35102200}},{"type":"LineString","arcs":[581],"properties":{"coalpetro":8704610,"foodfarm":1201424,"crudemat":25006652,"chem":50839,"manu":138434,"other":241,"total":35102200}},{"type":"LineString","arcs":[582],"properties":{"coalpetro":8704610,"foodfarm":1201424,"crudemat":42214859,"chem":50839,"manu":138434,"other":241,"total":52310407}},{"type":"LineString","arcs":[583],"properties":{"coalpetro":8704610,"foodfarm":1201424,"crudemat":42214859,"chem":50839,"manu":138434,"other":241,"total":52310407}},{"type":"LineString","arcs":[584],"properties":{"coalpetro":8704610,"foodfarm":1201424,"crudemat":42214859,"chem":50839,"manu":138434,"other":241,"total":52310407}},{"type":"LineString","arcs":[585],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48285029,"chem":50839,"manu":138434,"other":241,"total":58202091}},{"type":"LineString","arcs":[586],"properties":{"coalpetro":8526124,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":138434,"other":241,"total":58265559}},{"type":"LineString","arcs":[587],"properties":{"coalpetro":8539666,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":139744,"other":241,"total":58280411}},{"type":"LineString","arcs":[588],"properties":{"coalpetro":8539666,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":139744,"other":241,"total":58280411}},{"type":"LineString","arcs":[589],"properties":{"coalpetro":8539666,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":139744,"other":241,"total":58280411}},{"type":"LineString","arcs":[590],"properties":{"coalpetro":8539666,"foodfarm":1201424,"crudemat":48348497,"chem":50839,"manu":139744,"other":241,"total":58280411}},{"type":"LineString","arcs":[591],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":30075814,"chem":159664,"manu":3228863,"other":23053,"total":34588132}},{"type":"LineString","arcs":[592],"properties":{"coalpetro":979686,"foodfarm":327606,"crudemat":30133529,"chem":159664,"manu":3228863,"other":60201,"total":34889549}},{"type":"LineString","arcs":[593],"properties":{"coalpetro":979686,"foodfarm":327606,"crudemat":30133529,"chem":159664,"manu":3228863,"other":60201,"total":34889549}},{"type":"LineString","arcs":[594],"properties":{"coalpetro":979686,"foodfarm":327606,"crudemat":30133529,"chem":159664,"manu":3228863,"other":60201,"total":34889549}},{"type":"LineString","arcs":[595],"properties":{"coalpetro":979686,"foodfarm":327606,"crudemat":30133529,"chem":159664,"manu":3228863,"other":60201,"total":34889549}},{"type":"LineString","arcs":[596],"properties":{"coalpetro":979686,"foodfarm":327606,"crudemat":30133529,"chem":159664,"manu":3228863,"other":60201,"total":34889549}},{"type":"LineString","arcs":[597],"properties":{"coalpetro":979686,"foodfarm":327606,"crudemat":30130729,"chem":159664,"manu":3228863,"other":60201,"total":34886749}},{"type":"LineString","arcs":[598],"properties":{"coalpetro":773132,"foodfarm":327606,"crudemat":30075814,"chem":159664,"manu":3228863,"other":23053,"total":34588132}},{"type":"LineString","arcs":[599],"properties":{"coalpetro":1024889,"foodfarm":0,"crudemat":3021991,"chem":113559,"manu":2112968,"other":0,"total":6273407}},{"type":"LineString","arcs":[600],"properties":{"coalpetro":1024889,"foodfarm":0,"crudemat":3021991,"chem":113559,"manu":2112968,"other":0,"total":6273407}},{"type":"LineString","arcs":[601],"properties":{"coalpetro":1176103,"foodfarm":0,"crudemat":3007012,"chem":113559,"manu":1036288,"other":17255,"total":5350217}},{"type":"LineString","arcs":[602],"properties":{"coalpetro":1176103,"foodfarm":0,"crudemat":3007012,"chem":113559,"manu":1036288,"other":17255,"total":5350217}},{"type":"LineString","arcs":[603],"properties":{"coalpetro":1176103,"foodfarm":0,"crudemat":3007012,"chem":113559,"manu":1036288,"other":17255,"total":5350217}},{"type":"LineString","arcs":[604],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[605],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[606],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[607],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[608],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[609],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[610],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[611],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[612],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[613],"properties":{"coalpetro":8363168,"foodfarm":1614872,"crudemat":56204899,"chem":112320,"manu":1399202,"other":87504,"total":67781965}},{"type":"LineString","arcs":[614],"properties":{"coalpetro":2298586,"foodfarm":2353501,"crudemat":22547418,"chem":100551,"manu":2165332,"other":280150,"total":29745538}},{"type":"LineString","arcs":[615],"properties":{"coalpetro":2298586,"foodfarm":2353501,"crudemat":20887185,"chem":100551,"manu":2165332,"other":275150,"total":28080305}},{"type":"LineString","arcs":[616],"properties":{"coalpetro":2298586,"foodfarm":2353501,"crudemat":20887185,"chem":100551,"manu":2165332,"other":275150,"total":28080305}},{"type":"LineString","arcs":[617],"properties":{"coalpetro":2298586,"foodfarm":2353501,"crudemat":20887185,"chem":100551,"manu":2165332,"other":275150,"total":28080305}},{"type":"LineString","arcs":[618],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2418485,"other":231221,"total":11206274}},{"type":"LineString","arcs":[619],"properties":{"coalpetro":421671,"foodfarm":1932754,"crudemat":6029034,"chem":154690,"manu":2581587,"other":284691,"total":11404427}},{"type":"LineString","arcs":[620],"properties":{"coalpetro":421671,"foodfarm":1932754,"crudemat":6022420,"chem":140911,"manu":2150406,"other":162521,"total":10830683}},{"type":"LineString","arcs":[621],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[622],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[623],"properties":{"coalpetro":421671,"foodfarm":1932754,"crudemat":6022420,"chem":140911,"manu":2150406,"other":162521,"total":10830683}},{"type":"LineString","arcs":[624],"properties":{"coalpetro":421671,"foodfarm":1932754,"crudemat":6022420,"chem":140911,"manu":2150406,"other":162521,"total":10830683}},{"type":"LineString","arcs":[625],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[626],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[627],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[628],"properties":{"coalpetro":6559853,"foodfarm":60412,"crudemat":146073,"chem":486752,"manu":90967,"other":0,"total":7344057}},{"type":"LineString","arcs":[629],"properties":{"coalpetro":6559853,"foodfarm":60412,"crudemat":146073,"chem":486752,"manu":90967,"other":0,"total":7344057}},{"type":"LineString","arcs":[630],"properties":{"coalpetro":6559853,"foodfarm":60412,"crudemat":146073,"chem":486752,"manu":90967,"other":0,"total":7344057}},{"type":"LineString","arcs":[631],"properties":{"coalpetro":3738591,"foodfarm":2241631,"crudemat":29969698,"chem":225470,"manu":2196231,"other":202820,"total":38574441}},{"type":"LineString","arcs":[632],"properties":{"coalpetro":3234599,"foodfarm":2383757,"crudemat":26900888,"chem":114547,"manu":2226272,"other":186486,"total":35046549}},{"type":"LineString","arcs":[633],"properties":{"coalpetro":2398525,"foodfarm":2348472,"crudemat":27634921,"chem":114547,"manu":2223817,"other":206328,"total":34926610}},{"type":"LineString","arcs":[634],"properties":{"coalpetro":3235749,"foodfarm":2383757,"crudemat":26900888,"chem":114547,"manu":2226272,"other":186486,"total":35047699}},{"type":"LineString","arcs":[635],"properties":{"coalpetro":5964266,"foodfarm":0,"crudemat":221453,"chem":1082389,"manu":112251,"other":0,"total":7380359}},{"type":"LineString","arcs":[636],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[637],"properties":{"coalpetro":5964266,"foodfarm":0,"crudemat":221453,"chem":1082389,"manu":112251,"other":0,"total":7380359}},{"type":"LineString","arcs":[638],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[639],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[640],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[641],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[642],"properties":{"coalpetro":4155447,"foodfarm":11117,"crudemat":2388166,"chem":735324,"manu":825513,"other":6997,"total":8122564}},{"type":"LineString","arcs":[643],"properties":{"coalpetro":4155672,"foodfarm":11117,"crudemat":2109058,"chem":759436,"manu":784543,"other":6997,"total":7826823}},{"type":"LineString","arcs":[644],"properties":{"coalpetro":4155672,"foodfarm":11117,"crudemat":2109058,"chem":759436,"manu":784543,"other":6997,"total":7826823}},{"type":"LineString","arcs":[645],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":418049,"chem":0,"manu":0,"other":0,"total":418049}},{"type":"LineString","arcs":[646],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":389999,"chem":0,"manu":0,"other":0,"total":389999}},{"type":"LineString","arcs":[647],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":389999,"chem":0,"manu":0,"other":0,"total":389999}},{"type":"LineString","arcs":[648],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":389999,"chem":0,"manu":0,"other":0,"total":389999}},{"type":"LineString","arcs":[649],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":389999,"chem":0,"manu":0,"other":0,"total":389999}},{"type":"LineString","arcs":[650],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":389999,"chem":0,"manu":0,"other":0,"total":389999}},{"type":"LineString","arcs":[651],"properties":{"coalpetro":421671,"foodfarm":1932754,"crudemat":6075656,"chem":152808,"manu":2152173,"other":162521,"total":10897583}},{"type":"LineString","arcs":[652],"properties":{"coalpetro":24894910,"foodfarm":3137017,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45432477}},{"type":"LineString","arcs":[653],"properties":{"coalpetro":24894910,"foodfarm":3137017,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45432477}},{"type":"LineString","arcs":[654],"properties":{"coalpetro":24894910,"foodfarm":3137017,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45432477}},{"type":"LineString","arcs":[655],"properties":{"coalpetro":24894910,"foodfarm":3156328,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45451788}},{"type":"LineString","arcs":[656],"properties":{"coalpetro":24894910,"foodfarm":3156328,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45451788}},{"type":"LineString","arcs":[657],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[658],"properties":{"coalpetro":28245352,"foodfarm":2845518,"crudemat":5293353,"chem":1606711,"manu":7777639,"other":612391,"total":46380964}},{"type":"LineString","arcs":[659],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[660],"properties":{"coalpetro":6559853,"foodfarm":60412,"crudemat":146073,"chem":486752,"manu":90967,"other":0,"total":7344057}},{"type":"LineString","arcs":[661],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[662],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[663],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[664],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[665],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[666],"properties":{"coalpetro":1485420,"foodfarm":0,"crudemat":131493,"chem":198515,"manu":23953,"other":0,"total":1839381}},{"type":"LineString","arcs":[667],"properties":{"coalpetro":10620908,"foodfarm":2171320,"crudemat":41572559,"chem":225470,"manu":3009258,"other":167833,"total":57767348}},{"type":"LineString","arcs":[668],"properties":{"coalpetro":10620908,"foodfarm":2171320,"crudemat":41572559,"chem":225470,"manu":3009258,"other":167833,"total":57767348}},{"type":"LineString","arcs":[669],"properties":{"coalpetro":10620908,"foodfarm":2171320,"crudemat":41572559,"chem":225470,"manu":3009258,"other":167833,"total":57767348}},{"type":"LineString","arcs":[670],"properties":{"coalpetro":2298586,"foodfarm":2353501,"crudemat":22523806,"chem":100551,"manu":2165332,"other":280150,"total":29721926}},{"type":"LineString","arcs":[671],"properties":{"coalpetro":10341457,"foodfarm":1996184,"crudemat":41072135,"chem":205406,"manu":3009110,"other":130660,"total":56754952}},{"type":"LineString","arcs":[672],"properties":{"coalpetro":10341457,"foodfarm":1996184,"crudemat":41072135,"chem":205406,"manu":3009110,"other":130660,"total":56754952}},{"type":"LineString","arcs":[673],"properties":{"coalpetro":10341457,"foodfarm":1936659,"crudemat":41922982,"chem":241589,"manu":3009110,"other":150477,"total":57602274}},{"type":"LineString","arcs":[674],"properties":{"coalpetro":10341457,"foodfarm":1936659,"crudemat":41922982,"chem":241589,"manu":3009110,"other":150477,"total":57602274}},{"type":"MultiLineString","arcs":[[675],[676]],"properties":{"coalpetro":2418741,"foodfarm":0,"crudemat":134564,"chem":198515,"manu":296358,"other":0,"total":3048178}},{"type":"LineString","arcs":[677],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[678],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[679],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[680],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[681],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[682],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[683],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[684],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[685],"properties":{"coalpetro":18006834,"foodfarm":12669,"crudemat":1438606,"chem":2091052,"manu":227822,"other":0,"total":21776983}},{"type":"LineString","arcs":[686],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[687],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[688],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[689],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[690],"properties":{"coalpetro":925709,"foodfarm":4360,"crudemat":184741,"chem":123700,"manu":18645,"other":0,"total":1257155}},{"type":"LineString","arcs":[691],"properties":{"coalpetro":6257482,"foodfarm":11117,"crudemat":4829981,"chem":757374,"manu":825525,"other":6997,"total":12688476}},{"type":"LineString","arcs":[692],"properties":{"coalpetro":6219412,"foodfarm":11117,"crudemat":4491815,"chem":614844,"manu":825525,"other":6997,"total":12169710}},{"type":"LineString","arcs":[693],"properties":{"coalpetro":6219412,"foodfarm":11117,"crudemat":4491815,"chem":614844,"manu":825525,"other":6997,"total":12169710}},{"type":"LineString","arcs":[694],"properties":{"coalpetro":3234599,"foodfarm":2383757,"crudemat":26903852,"chem":114547,"manu":2226272,"other":186486,"total":35049513}},{"type":"LineString","arcs":[695],"properties":{"coalpetro":3234599,"foodfarm":2383757,"crudemat":27577209,"chem":114547,"manu":2221862,"other":206328,"total":35738302}},{"type":"LineString","arcs":[696],"properties":{"coalpetro":2398525,"foodfarm":2348472,"crudemat":27634921,"chem":114547,"manu":2223817,"other":206328,"total":34926610}},{"type":"LineString","arcs":[697],"properties":{"coalpetro":2398525,"foodfarm":2348472,"crudemat":27634921,"chem":114547,"manu":2223817,"other":206328,"total":34926610}},{"type":"LineString","arcs":[698],"properties":{"coalpetro":2398525,"foodfarm":2348472,"crudemat":27635053,"chem":114547,"manu":2223817,"other":206328,"total":34926742}},{"type":"LineString","arcs":[699],"properties":{"coalpetro":2374486,"foodfarm":2331937,"crudemat":27033858,"chem":102201,"manu":2223817,"other":206328,"total":34272627}},{"type":"LineString","arcs":[700],"properties":{"coalpetro":6559853,"foodfarm":60412,"crudemat":146073,"chem":486752,"manu":90967,"other":0,"total":7344057}},{"type":"LineString","arcs":[701],"properties":{"coalpetro":6559853,"foodfarm":60412,"crudemat":146073,"chem":486752,"manu":90967,"other":0,"total":7344057}},{"type":"LineString","arcs":[702],"properties":{"coalpetro":6559853,"foodfarm":60412,"crudemat":146073,"chem":486752,"manu":90967,"other":0,"total":7344057}},{"type":"LineString","arcs":[703],"properties":{"coalpetro":5123784,"foodfarm":411102,"crudemat":587738,"chem":453154,"manu":207580,"other":461357,"total":7244715}},{"type":"LineString","arcs":[704],"properties":{"coalpetro":5123784,"foodfarm":411102,"crudemat":587738,"chem":453154,"manu":207580,"other":461357,"total":7244715}},{"type":"LineString","arcs":[705],"properties":{"coalpetro":2298586,"foodfarm":2345564,"crudemat":17316410,"chem":100551,"manu":2274627,"other":266883,"total":24602621}},{"type":"LineString","arcs":[706],"properties":{"coalpetro":2298586,"foodfarm":2345564,"crudemat":13888876,"chem":100551,"manu":2274627,"other":266883,"total":21175087}},{"type":"LineString","arcs":[707],"properties":{"coalpetro":2298586,"foodfarm":2345564,"crudemat":13421528,"chem":100551,"manu":2275936,"other":266883,"total":20709048}},{"type":"LineString","arcs":[708],"properties":{"coalpetro":2298586,"foodfarm":2345564,"crudemat":13421528,"chem":100551,"manu":2275936,"other":266883,"total":20709048}},{"type":"LineString","arcs":[709],"properties":{"coalpetro":1747445,"foodfarm":2345564,"crudemat":8764234,"chem":110195,"manu":2259786,"other":253946,"total":15481170}},{"type":"LineString","arcs":[710],"properties":{"coalpetro":313845,"foodfarm":72300,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":964917}},{"type":"LineString","arcs":[711],"properties":{"coalpetro":313845,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":892617}},{"type":"LineString","arcs":[712],"properties":{"coalpetro":313845,"foodfarm":72300,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":964917}},{"type":"LineString","arcs":[713],"properties":{"coalpetro":313845,"foodfarm":72300,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":964917}},{"type":"LineString","arcs":[714],"properties":{"coalpetro":313845,"foodfarm":72300,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":964917}},{"type":"LineString","arcs":[715],"properties":{"coalpetro":24894910,"foodfarm":3139117,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45434577}},{"type":"LineString","arcs":[716],"properties":{"coalpetro":24894910,"foodfarm":3139117,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45434577}},{"type":"LineString","arcs":[717],"properties":{"coalpetro":24894910,"foodfarm":3139117,"crudemat":6414737,"chem":1921097,"manu":8047372,"other":1072163,"total":45489396}},{"type":"LineString","arcs":[718],"properties":{"coalpetro":24894910,"foodfarm":3139117,"crudemat":6414737,"chem":1921097,"manu":8047372,"other":1072163,"total":45489396}},{"type":"LineString","arcs":[719],"properties":{"coalpetro":313845,"foodfarm":72300,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":964917}},{"type":"LineString","arcs":[720],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[721],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[722],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[723],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[724],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[725],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[726],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[727],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[728],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[729],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[730],"properties":{"coalpetro":92162,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":92162}},{"type":"LineString","arcs":[731],"properties":{"coalpetro":92162,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":92162}},{"type":"LineString","arcs":[732],"properties":{"coalpetro":280748,"foodfarm":0,"crudemat":272971,"chem":7949,"manu":0,"other":0,"total":561668}},{"type":"LineString","arcs":[733],"properties":{"coalpetro":323509,"foodfarm":0,"crudemat":272971,"chem":7949,"manu":0,"other":0,"total":604429}},{"type":"LineString","arcs":[734],"properties":{"coalpetro":266480,"foodfarm":0,"crudemat":1274742,"chem":7949,"manu":0,"other":0,"total":1549171}},{"type":"LineString","arcs":[735],"properties":{"coalpetro":301479,"foodfarm":0,"crudemat":1288936,"chem":740642,"manu":0,"other":0,"total":2331057}},{"type":"LineString","arcs":[736],"properties":{"coalpetro":301479,"foodfarm":0,"crudemat":1138805,"chem":740642,"manu":0,"other":0,"total":2180926}},{"type":"LineString","arcs":[737],"properties":{"coalpetro":29825700,"foodfarm":298046,"crudemat":9600841,"chem":1140716,"manu":3307423,"other":0,"total":44172726}},{"type":"LineString","arcs":[738],"properties":{"coalpetro":29171173,"foodfarm":298046,"crudemat":7622312,"chem":1077601,"manu":2695038,"other":0,"total":40864170}},{"type":"LineString","arcs":[739],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[740],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[741],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[742],"properties":{"coalpetro":36591572,"foodfarm":298046,"crudemat":10142397,"chem":965839,"manu":2680868,"other":4500,"total":50683222}},{"type":"LineString","arcs":[743],"properties":{"coalpetro":7211555,"foodfarm":421486,"crudemat":125268,"chem":1178071,"manu":41240,"other":12050,"total":8989670}},{"type":"LineString","arcs":[744],"properties":{"coalpetro":301479,"foodfarm":0,"crudemat":1138805,"chem":741355,"manu":0,"other":0,"total":2181639}},{"type":"LineString","arcs":[745],"properties":{"coalpetro":301479,"foodfarm":0,"crudemat":1138805,"chem":741355,"manu":0,"other":0,"total":2181639}},{"type":"LineString","arcs":[746],"properties":{"coalpetro":22380685,"foodfarm":287574,"crudemat":1442809,"chem":794354,"manu":735787,"other":3460,"total":25644669}},{"type":"LineString","arcs":[747],"properties":{"coalpetro":301479,"foodfarm":0,"crudemat":1138805,"chem":740642,"manu":0,"other":0,"total":2180926}},{"type":"LineString","arcs":[748],"properties":{"coalpetro":301479,"foodfarm":0,"crudemat":1138805,"chem":740642,"manu":0,"other":0,"total":2180926}},{"type":"LineString","arcs":[749],"properties":{"coalpetro":22380685,"foodfarm":287574,"crudemat":1442809,"chem":794354,"manu":735787,"other":3460,"total":25644669}},{"type":"LineString","arcs":[750],"properties":{"coalpetro":38880788,"foodfarm":8051045,"crudemat":7119155,"chem":4223648,"manu":11322175,"other":1514703,"total":71111514}},{"type":"LineString","arcs":[751],"properties":{"coalpetro":38809736,"foodfarm":8051045,"crudemat":6942600,"chem":4223648,"manu":11321379,"other":1514618,"total":70863026}},{"type":"LineString","arcs":[752],"properties":{"coalpetro":38809736,"foodfarm":8051045,"crudemat":6942600,"chem":4223648,"manu":11321379,"other":1514618,"total":70863026}},{"type":"LineString","arcs":[753],"properties":{"coalpetro":28042299,"foodfarm":3255131,"crudemat":6381436,"chem":1982943,"manu":8090432,"other":1072163,"total":48824404}},{"type":"LineString","arcs":[754],"properties":{"coalpetro":28041283,"foodfarm":3255131,"crudemat":6381436,"chem":1982943,"manu":8086581,"other":1072163,"total":48819537}},{"type":"LineString","arcs":[755],"properties":{"coalpetro":28311163,"foodfarm":3252131,"crudemat":6381436,"chem":1921097,"manu":8086581,"other":1072163,"total":49024571}},{"type":"LineString","arcs":[756],"properties":{"coalpetro":28311163,"foodfarm":3252131,"crudemat":6381436,"chem":1921097,"manu":8086581,"other":1072163,"total":49024571}},{"type":"LineString","arcs":[757],"properties":{"coalpetro":24894910,"foodfarm":3156328,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45451788}},{"type":"LineString","arcs":[758],"properties":{"coalpetro":24894910,"foodfarm":3156328,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45451788}},{"type":"LineString","arcs":[759],"properties":{"coalpetro":24894910,"foodfarm":3156328,"crudemat":6359918,"chem":1921097,"manu":8047372,"other":1072163,"total":45451788}},{"type":"LineString","arcs":[760],"properties":{"coalpetro":92162,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":92162}},{"type":"LineString","arcs":[761],"properties":{"coalpetro":148153,"foodfarm":0,"crudemat":390022,"chem":0,"manu":1890,"other":0,"total":540065}},{"type":"LineString","arcs":[762],"properties":{"coalpetro":148153,"foodfarm":0,"crudemat":390022,"chem":0,"manu":1890,"other":0,"total":540065}},{"type":"LineString","arcs":[763],"properties":{"coalpetro":148153,"foodfarm":0,"crudemat":390022,"chem":0,"manu":1890,"other":0,"total":540065}},{"type":"LineString","arcs":[764],"properties":{"coalpetro":148153,"foodfarm":0,"crudemat":0,"chem":0,"manu":1890,"other":0,"total":150043}},{"type":"LineString","arcs":[765],"properties":{"coalpetro":92162,"foodfarm":0,"crudemat":0,"chem":0,"manu":1700,"other":0,"total":93862}},{"type":"LineString","arcs":[766],"properties":{"coalpetro":92162,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":92162}},{"type":"LineString","arcs":[767],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[768],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[769],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[770],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[771],"properties":{"coalpetro":160302,"foodfarm":0,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":739074}},{"type":"LineString","arcs":[772],"properties":{"coalpetro":24894910,"foodfarm":3139117,"crudemat":6568887,"chem":1921097,"manu":8047372,"other":1072163,"total":45643546}},{"type":"LineString","arcs":[773],"properties":{"coalpetro":24894910,"foodfarm":3139117,"crudemat":6568887,"chem":1921097,"manu":8047372,"other":1072163,"total":45643546}},{"type":"LineString","arcs":[774],"properties":{"coalpetro":313845,"foodfarm":72300,"crudemat":576882,"chem":0,"manu":1890,"other":0,"total":964917}},{"type":"LineString","arcs":[775],"properties":{"coalpetro":24894910,"foodfarm":3139117,"crudemat":6568887,"chem":1921097,"manu":8047372,"other":1072163,"total":45643546}},{"type":"LineString","arcs":[776],"properties":{"coalpetro":1747445,"foodfarm":2345564,"crudemat":8764234,"chem":110195,"manu":2259786,"other":253946,"total":15481170}},{"type":"LineString","arcs":[777],"properties":{"coalpetro":1747445,"foodfarm":2345564,"crudemat":8764234,"chem":110195,"manu":2259786,"other":253946,"total":15481170}},{"type":"LineString","arcs":[778],"properties":{"coalpetro":1691220,"foodfarm":1975756,"crudemat":8514749,"chem":198979,"manu":2352442,"other":274512,"total":15007658}},{"type":"LineString","arcs":[779],"properties":{"coalpetro":76087,"foodfarm":380614,"crudemat":249485,"chem":0,"manu":85172,"other":0,"total":791358}},{"type":"LineString","arcs":[780],"properties":{"coalpetro":76087,"foodfarm":380614,"crudemat":249485,"chem":0,"manu":85172,"other":0,"total":791358}},{"type":"LineString","arcs":[781],"properties":{"coalpetro":76087,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":76087}},{"type":"LineString","arcs":[782],"properties":{"coalpetro":76087,"foodfarm":380614,"crudemat":249485,"chem":0,"manu":85172,"other":0,"total":791358}},{"type":"LineString","arcs":[783],"properties":{"coalpetro":76087,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":76087}},{"type":"LineString","arcs":[784],"properties":{"coalpetro":1691220,"foodfarm":1975756,"crudemat":8514749,"chem":198979,"manu":2352442,"other":274512,"total":15007658}},{"type":"LineString","arcs":[785],"properties":{"coalpetro":1659914,"foodfarm":1938123,"crudemat":8260154,"chem":198979,"manu":2328592,"other":254648,"total":14640410}},{"type":"LineString","arcs":[786],"properties":{"coalpetro":1659914,"foodfarm":1938123,"crudemat":8260154,"chem":198979,"manu":2328592,"other":254648,"total":14640410}},{"type":"LineString","arcs":[787],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2326985,"other":226150,"total":11109703}},{"type":"LineString","arcs":[788],"properties":{"coalpetro":10509043,"foodfarm":1947501,"crudemat":41600517,"chem":277327,"manu":3503843,"other":141608,"total":57979839}},{"type":"LineString","arcs":[789],"properties":{"coalpetro":10380609,"foodfarm":1947501,"crudemat":43557517,"chem":294038,"manu":3089092,"other":150323,"total":59419080}},{"type":"LineString","arcs":[790],"properties":{"coalpetro":10380609,"foodfarm":1947501,"crudemat":43557517,"chem":294038,"manu":3089092,"other":150323,"total":59419080}},{"type":"LineString","arcs":[791],"properties":{"coalpetro":10378733,"foodfarm":1947501,"crudemat":43557517,"chem":294038,"manu":3089825,"other":150323,"total":59417937}},{"type":"LineString","arcs":[792],"properties":{"coalpetro":10341457,"foodfarm":1936659,"crudemat":41922982,"chem":241589,"manu":3009110,"other":150477,"total":57602274}},{"type":"LineString","arcs":[793],"properties":{"coalpetro":10380609,"foodfarm":1947501,"crudemat":43431150,"chem":294038,"manu":3089092,"other":150323,"total":59292713}},{"type":"LineString","arcs":[794],"properties":{"coalpetro":10380609,"foodfarm":1947501,"crudemat":43431150,"chem":294038,"manu":3089092,"other":150323,"total":59292713}},{"type":"LineString","arcs":[795],"properties":{"coalpetro":10509043,"foodfarm":1947501,"crudemat":43464418,"chem":277327,"manu":3508803,"other":141608,"total":59848700}},{"type":"LineString","arcs":[796],"properties":{"coalpetro":10509043,"foodfarm":1947501,"crudemat":43477838,"chem":294038,"manu":3536610,"other":166637,"total":59931667}},{"type":"LineString","arcs":[797],"properties":{"coalpetro":10509043,"foodfarm":1947501,"crudemat":43477838,"chem":294038,"manu":3536610,"other":166637,"total":59931667}},{"type":"LineString","arcs":[798],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2326987,"other":226150,"total":11109705}},{"type":"LineString","arcs":[799],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2418485,"other":231221,"total":11206274}},{"type":"LineString","arcs":[800],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2418485,"other":231221,"total":11206274}},{"type":"LineString","arcs":[801],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2418485,"other":231221,"total":11206274}},{"type":"LineString","arcs":[802],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2326987,"other":226150,"total":11109705}},{"type":"LineString","arcs":[803],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2326987,"other":226150,"total":11109705}},{"type":"LineString","arcs":[804],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2326987,"other":226150,"total":11109705}},{"type":"LineString","arcs":[805],"properties":{"coalpetro":432497,"foodfarm":1932754,"crudemat":6036627,"chem":154690,"manu":2326987,"other":226150,"total":11109705}},{"type":"LineString","arcs":[806],"properties":{"coalpetro":17652446,"foodfarm":12669,"crudemat":614759,"chem":2066658,"manu":227810,"other":0,"total":20574342}},{"type":"LineString","arcs":[807],"properties":{"coalpetro":17468320,"foodfarm":12669,"crudemat":690768,"chem":2066658,"manu":227810,"other":0,"total":20466225}},{"type":"LineString","arcs":[808],"properties":{"coalpetro":17468320,"foodfarm":12669,"crudemat":690768,"chem":2066658,"manu":227810,"other":0,"total":20466225}},{"type":"LineString","arcs":[809],"properties":{"coalpetro":17468320,"foodfarm":12669,"crudemat":690768,"chem":2066658,"manu":227810,"other":0,"total":20466225}},{"type":"LineString","arcs":[810],"properties":{"coalpetro":17468320,"foodfarm":12669,"crudemat":690768,"chem":2066658,"manu":227810,"other":0,"total":20466225}},{"type":"LineString","arcs":[811],"properties":{"coalpetro":925709,"foodfarm":4360,"crudemat":184741,"chem":123700,"manu":18645,"other":0,"total":1257155}},{"type":"LineString","arcs":[812],"properties":{"coalpetro":16623820,"foodfarm":11676795,"crudemat":14238534,"chem":6269378,"manu":24848590,"other":2460316,"total":76117433}},{"type":"LineString","arcs":[813],"properties":{"coalpetro":26777457,"foodfarm":1907294,"crudemat":5670195,"chem":2742443,"manu":4618838,"other":318299,"total":42034526}},{"type":"LineString","arcs":[814],"properties":{"coalpetro":19840209,"foodfarm":498328,"crudemat":3175177,"chem":2016475,"manu":1056351,"other":134732,"total":26721272}},{"type":"LineString","arcs":[815],"properties":{"coalpetro":6297777,"foodfarm":621446,"crudemat":3167125,"chem":216760,"manu":301208,"other":6997,"total":10611313}},{"type":"LineString","arcs":[816],"properties":{"coalpetro":19840209,"foodfarm":498328,"crudemat":3175177,"chem":2016475,"manu":1056351,"other":134732,"total":26721272}},{"type":"LineString","arcs":[817],"properties":{"coalpetro":19802874,"foodfarm":313319,"crudemat":3172122,"chem":1994917,"manu":942115,"other":85215,"total":26310562}},{"type":"LineString","arcs":[818],"properties":{"coalpetro":19787669,"foodfarm":12669,"crudemat":4058569,"chem":2361293,"manu":1033093,"other":449,"total":27253742}},{"type":"LineString","arcs":[819],"properties":{"coalpetro":6305126,"foodfarm":621446,"crudemat":4538206,"chem":615548,"manu":862167,"other":6997,"total":12949490}},{"type":"LineString","arcs":[820],"properties":{"coalpetro":19774256,"foodfarm":12669,"crudemat":4058569,"chem":2361293,"manu":1075376,"other":449,"total":27282612}},{"type":"LineString","arcs":[821],"properties":{"coalpetro":19763893,"foodfarm":12669,"crudemat":3193912,"chem":2361293,"manu":581693,"other":0,"total":25913460}},{"type":"LineString","arcs":[822],"properties":{"coalpetro":19497705,"foodfarm":12669,"crudemat":2669496,"chem":2173224,"manu":581693,"other":0,"total":24934787}},{"type":"LineString","arcs":[823],"properties":{"coalpetro":6305126,"foodfarm":621446,"crudemat":4538206,"chem":615548,"manu":862167,"other":6997,"total":12949490}},{"type":"LineString","arcs":[824],"properties":{"coalpetro":6305126,"foodfarm":621446,"crudemat":4538206,"chem":615548,"manu":862167,"other":6997,"total":12949490}},{"type":"LineString","arcs":[825],"properties":{"coalpetro":5123784,"foodfarm":411102,"crudemat":587738,"chem":453154,"manu":207580,"other":461357,"total":7244715}},{"type":"LineString","arcs":[826],"properties":{"coalpetro":5123784,"foodfarm":411102,"crudemat":587738,"chem":453154,"manu":207620,"other":461357,"total":7244755}},{"type":"LineString","arcs":[827],"properties":{"coalpetro":39103121,"foodfarm":12584214,"crudemat":13657999,"chem":7652729,"manu":25973107,"other":2699363,"total":101670533}},{"type":"LineString","arcs":[828],"properties":{"coalpetro":930645,"foodfarm":4360,"crudemat":193097,"chem":123700,"manu":18645,"other":0,"total":1270447}},{"type":"LineString","arcs":[829],"properties":{"coalpetro":19494718,"foodfarm":12669,"crudemat":2669496,"chem":2173224,"manu":581693,"other":0,"total":24931800}},{"type":"LineString","arcs":[830],"properties":{"coalpetro":18104021,"foodfarm":12669,"crudemat":1438606,"chem":2091052,"manu":227822,"other":0,"total":21874170}},{"type":"LineString","arcs":[831],"properties":{"coalpetro":18008082,"foodfarm":12669,"crudemat":1438606,"chem":2091052,"manu":227822,"other":0,"total":21778231}},{"type":"LineString","arcs":[832],"properties":{"coalpetro":5123784,"foodfarm":411102,"crudemat":587738,"chem":453154,"manu":207580,"other":461357,"total":7244715}},{"type":"LineString","arcs":[833],"properties":{"coalpetro":17468320,"foodfarm":12669,"crudemat":722000,"chem":2066658,"manu":227810,"other":0,"total":20497457}},{"type":"LineString","arcs":[834],"properties":{"coalpetro":17428727,"foodfarm":12669,"crudemat":722000,"chem":2066658,"manu":227810,"other":0,"total":20457864}},{"type":"LineString","arcs":[835],"properties":{"coalpetro":17428727,"foodfarm":12669,"crudemat":722000,"chem":2066658,"manu":227810,"other":0,"total":20457864}},{"type":"LineString","arcs":[836],"properties":{"coalpetro":17428727,"foodfarm":12669,"crudemat":722000,"chem":2066658,"manu":227810,"other":0,"total":20457864}},{"type":"LineString","arcs":[837],"properties":{"coalpetro":5123784,"foodfarm":411102,"crudemat":587738,"chem":453154,"manu":207580,"other":461357,"total":7244715}},{"type":"LineString","arcs":[838],"properties":{"coalpetro":5123784,"foodfarm":411102,"crudemat":587738,"chem":453154,"manu":207580,"other":461357,"total":7244715}},{"type":"LineString","arcs":[839],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[840],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[841],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[842],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[843],"properties":{"coalpetro":6257482,"foodfarm":11117,"crudemat":4829981,"chem":757374,"manu":825525,"other":6997,"total":12688476}},{"type":"LineString","arcs":[844],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[845],"properties":{"coalpetro":17902551,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21507737}},{"type":"LineString","arcs":[846],"properties":{"coalpetro":17846099,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21451285}},{"type":"LineString","arcs":[847],"properties":{"coalpetro":17846099,"foodfarm":12669,"crudemat":1273655,"chem":2091052,"manu":227810,"other":0,"total":21451285}},{"type":"LineString","arcs":[848],"properties":{"coalpetro":17652446,"foodfarm":12669,"crudemat":614759,"chem":2066658,"manu":227810,"other":0,"total":20574342}},{"type":"LineString","arcs":[849],"properties":{"coalpetro":17652446,"foodfarm":12669,"crudemat":614759,"chem":2066658,"manu":227810,"other":0,"total":20574342}},{"type":"LineString","arcs":[850],"properties":{"coalpetro":17652446,"foodfarm":12669,"crudemat":614759,"chem":2066658,"manu":227810,"other":0,"total":20574342}},{"type":"LineString","arcs":[851],"properties":{"coalpetro":16879950,"foodfarm":11669303,"crudemat":13890152,"chem":6470263,"manu":24918364,"other":2460316,"total":76288348}},{"type":"LineString","arcs":[852],"properties":{"coalpetro":17788106,"foodfarm":11679003,"crudemat":13900152,"chem":6492353,"manu":24918538,"other":2460316,"total":77238468}},{"type":"LineString","arcs":[853],"properties":{"coalpetro":16844467,"foodfarm":11669303,"crudemat":13877481,"chem":6467466,"manu":24918364,"other":2460316,"total":76237397}},{"type":"LineString","arcs":[854],"properties":{"coalpetro":9683165,"foodfarm":4360,"crudemat":116688,"chem":1407350,"manu":221135,"other":0,"total":11432698}},{"type":"LineString","arcs":[855],"properties":{"coalpetro":9683165,"foodfarm":4360,"crudemat":116688,"chem":1407350,"manu":221135,"other":0,"total":11432698}},{"type":"LineString","arcs":[856],"properties":{"coalpetro":9683165,"foodfarm":4360,"crudemat":116688,"chem":1407350,"manu":221135,"other":0,"total":11432698}},{"type":"LineString","arcs":[857],"properties":{"coalpetro":925709,"foodfarm":4360,"crudemat":184741,"chem":123705,"manu":18645,"other":0,"total":1257160}},{"type":"LineString","arcs":[858],"properties":{"coalpetro":10566480,"foodfarm":4360,"crudemat":116688,"chem":1452458,"manu":220472,"other":0,"total":12360458}},{"type":"LineString","arcs":[859],"properties":{"coalpetro":10693863,"foodfarm":4360,"crudemat":116688,"chem":1452458,"manu":220472,"other":0,"total":12487841}},{"type":"LineString","arcs":[860],"properties":{"coalpetro":9683165,"foodfarm":4360,"crudemat":116688,"chem":1407350,"manu":221135,"other":0,"total":11432698}},{"type":"LineString","arcs":[861],"properties":{"coalpetro":17348668,"foodfarm":12669,"crudemat":1246979,"chem":2066658,"manu":227810,"other":0,"total":20902784}},{"type":"LineString","arcs":[862],"properties":{"coalpetro":16595232,"foodfarm":12669,"crudemat":1246979,"chem":2004343,"manu":227810,"other":0,"total":20087033}},{"type":"LineString","arcs":[863],"properties":{"coalpetro":15065932,"foodfarm":12669,"crudemat":1140121,"chem":1865260,"manu":227810,"other":0,"total":18311792}},{"type":"LineString","arcs":[864],"properties":{"coalpetro":15065932,"foodfarm":12669,"crudemat":1140121,"chem":1865260,"manu":227810,"other":0,"total":18311792}},{"type":"LineString","arcs":[865],"properties":{"coalpetro":16257986,"foodfarm":12669,"crudemat":1887962,"chem":1922438,"manu":380441,"other":0,"total":20461496}},{"type":"LineString","arcs":[866],"properties":{"coalpetro":11264430,"foodfarm":15283,"crudemat":1075812,"chem":1452458,"manu":220472,"other":0,"total":14028455}},{"type":"LineString","arcs":[867],"properties":{"coalpetro":11264430,"foodfarm":15283,"crudemat":1075812,"chem":1452458,"manu":220472,"other":0,"total":14028455}},{"type":"LineString","arcs":[868],"properties":{"coalpetro":11264430,"foodfarm":15283,"crudemat":1075812,"chem":1452458,"manu":220472,"other":0,"total":14028455}},{"type":"LineString","arcs":[869],"properties":{"coalpetro":10566480,"foodfarm":4360,"crudemat":116688,"chem":1452458,"manu":220472,"other":0,"total":12360458}},{"type":"LineString","arcs":[870],"properties":{"coalpetro":9683165,"foodfarm":4360,"crudemat":116688,"chem":1407350,"manu":221135,"other":0,"total":11432698}},{"type":"LineString","arcs":[871],"properties":{"coalpetro":10378065,"foodfarm":15283,"crudemat":116688,"chem":1407350,"manu":221135,"other":0,"total":12138521}},{"type":"LineString","arcs":[872],"properties":{"coalpetro":12168482,"foodfarm":14964,"crudemat":192700,"chem":209264,"manu":249348,"other":17408,"total":12852166}},{"type":"LineString","arcs":[873],"properties":{"coalpetro":9547805,"foodfarm":0,"crudemat":265453,"chem":1404363,"manu":231844,"other":0,"total":11449465}},{"type":"LineString","arcs":[874],"properties":{"coalpetro":6933888,"foodfarm":0,"crudemat":264524,"chem":1082389,"manu":384656,"other":0,"total":8665457}},{"type":"LineString","arcs":[875],"properties":{"coalpetro":6933888,"foodfarm":0,"crudemat":264524,"chem":1082389,"manu":384656,"other":0,"total":8665457}},{"type":"LineString","arcs":[876],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[877],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[878],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[879],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[880],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[881],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[882],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[883],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[884],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[885],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[886],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[887],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[888],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[889],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[890],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[891],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[892],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[893],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[894],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[895],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[896],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[897],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[898],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[899],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[900],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[901],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[902],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[903],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[904],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[905],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":0,"other":0,"total":64037}},{"type":"LineString","arcs":[906],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":0,"other":0,"total":64037}},{"type":"LineString","arcs":[907],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":0,"other":0,"total":64037}},{"type":"LineString","arcs":[908],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":44423,"chem":0,"manu":0,"other":0,"total":865363}},{"type":"LineString","arcs":[909],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":44423,"chem":0,"manu":0,"other":0,"total":865363}},{"type":"LineString","arcs":[910],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":835363}},{"type":"LineString","arcs":[911],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":835363}},{"type":"LineString","arcs":[912],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":835363}},{"type":"LineString","arcs":[913],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[914],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[915],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[916],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[917],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[918],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[919],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[920],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[921],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[922],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[923],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[924],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[925],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[926],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":14423,"chem":0,"manu":0,"other":0,"total":34037}},{"type":"LineString","arcs":[927],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[928],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[929],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[930],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[931],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[932],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[933],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[934],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[935],"properties":{"coalpetro":5964266,"foodfarm":0,"crudemat":221453,"chem":1082389,"manu":112251,"other":0,"total":7380359}},{"type":"LineString","arcs":[936],"properties":{"coalpetro":5964266,"foodfarm":0,"crudemat":221453,"chem":1082389,"manu":112251,"other":0,"total":7380359}},{"type":"LineString","arcs":[937],"properties":{"coalpetro":5964266,"foodfarm":0,"crudemat":221453,"chem":1082389,"manu":112251,"other":0,"total":7380359}},{"type":"LineString","arcs":[938],"properties":{"coalpetro":5964266,"foodfarm":0,"crudemat":221453,"chem":1082389,"manu":112251,"other":0,"total":7380359}},{"type":"LineString","arcs":[939],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[940],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[941],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[942],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[943],"properties":{"coalpetro":1866824,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2268696}},{"type":"LineString","arcs":[944],"properties":{"coalpetro":1253260,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":1655132}},{"type":"LineString","arcs":[945],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[946],"properties":{"coalpetro":5964266,"foodfarm":0,"crudemat":221453,"chem":1082389,"manu":112251,"other":0,"total":7380359}},{"type":"LineString","arcs":[947],"properties":{"coalpetro":1847210,"foodfarm":0,"crudemat":54829,"chem":347043,"manu":0,"other":0,"total":2249082}},{"type":"LineString","arcs":[948],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[949],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[950],"properties":{"coalpetro":254700,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":396097}},{"type":"LineString","arcs":[951],"properties":{"coalpetro":308025,"foodfarm":0,"crudemat":54554,"chem":86843,"manu":0,"other":0,"total":449422}},{"type":"LineString","arcs":[952],"properties":{"coalpetro":758635,"foodfarm":0,"crudemat":44423,"chem":0,"manu":0,"other":0,"total":803058}},{"type":"LineString","arcs":[953],"properties":{"coalpetro":758635,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":810912}},{"type":"LineString","arcs":[954],"properties":{"coalpetro":758635,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":810912}},{"type":"LineString","arcs":[955],"properties":{"coalpetro":758635,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":810912}},{"type":"LineString","arcs":[956],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":873217}},{"type":"LineString","arcs":[957],"properties":{"coalpetro":820940,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":873217}},{"type":"LineString","arcs":[958],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":71891}},{"type":"LineString","arcs":[959],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":71891}},{"type":"LineString","arcs":[960],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":71891}},{"type":"LineString","arcs":[961],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":71891}},{"type":"LineString","arcs":[962],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":71891}},{"type":"LineString","arcs":[963],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":71891}},{"type":"LineString","arcs":[964],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":44423,"chem":0,"manu":7854,"other":0,"total":71891}},{"type":"LineString","arcs":[965],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[966],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[967],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[968],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[969],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[970],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[971],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[972],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[973],"properties":{"coalpetro":19614,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":19614}},{"type":"LineString","arcs":[974],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[975],"properties":{"coalpetro":2632064,"foodfarm":1079804,"crudemat":4632444,"chem":138505,"manu":512513,"other":56198,"total":9051528}},{"type":"LineString","arcs":[976],"properties":{"coalpetro":5202434,"foodfarm":2246631,"crudemat":41546620,"chem":225470,"manu":3272090,"other":244345,"total":52737590}},{"type":"LineString","arcs":[977],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[978],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[979],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[980],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[981],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[982],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[983],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[984],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[985],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[986],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[987],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[988],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[989],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[990],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[991],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[992],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[993],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[994],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[995],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[996],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[997],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[998],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[999],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1000],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1001],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1002],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1003],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1004],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1005],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1006],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1007],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1008],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1009],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1010],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1011],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1012],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1013],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1014],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1015],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1016],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1017],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1018],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1019],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1020],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1021],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1022],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1023],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1024],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1025],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1026],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1027],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1028],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1029],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1030],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1031],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1032],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1033],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1034],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1035],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1036],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1037],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1038],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1039],"properties":{"coalpetro":75920,"foodfarm":21564,"crudemat":7566916,"chem":9428,"manu":1098431,"other":91422,"total":8873519}},{"type":"LineString","arcs":[1040],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1041],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1042],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1043],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1044],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"MultiLineString","arcs":[[1045],[1046]],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1047],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1048],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1049],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1050],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1051],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1052],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1053],"properties":{"coalpetro":25709325,"foodfarm":16233766,"crudemat":23099220,"chem":7773436,"manu":7888365,"other":0,"total":80704112}},{"type":"LineString","arcs":[1054],"properties":{"coalpetro":27323023,"foodfarm":10314095,"crudemat":11497757,"chem":6142189,"manu":5399748,"other":0,"total":60676812}},{"type":"LineString","arcs":[1055],"properties":{"coalpetro":7481855,"foodfarm":2765936,"crudemat":4816260,"chem":1273516,"manu":2646324,"other":0,"total":18983909}},{"type":"LineString","arcs":[1056],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1057],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1058],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1059],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1060],"properties":{"coalpetro":1491476,"foodfarm":0,"crudemat":0,"chem":44435,"manu":0,"other":0,"total":1535911}},{"type":"LineString","arcs":[1061],"properties":{"coalpetro":92162,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":92162}},{"type":"LineString","arcs":[1062],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1063],"properties":{"coalpetro":37999146,"foodfarm":7795696,"crudemat":5795838,"chem":3895353,"manu":10886787,"other":1051769,"total":67424589}},{"type":"LineString","arcs":[1064],"properties":{"coalpetro":6223565,"foodfarm":523927,"crudemat":4491815,"chem":614844,"manu":825513,"other":6997,"total":12686673}},{"type":"LineString","arcs":[1065],"properties":{"coalpetro":209586,"foodfarm":50648,"crudemat":17368019,"chem":147685,"manu":955321,"other":152,"total":18731411}},{"type":"LineString","arcs":[1066],"properties":{"coalpetro":89262,"foodfarm":12584214,"crudemat":8325687,"chem":7652729,"manu":25973107,"other":2699363,"total":101670533}},{"type":"LineString","arcs":[1067],"properties":{"coalpetro":9585294,"foodfarm":4360,"crudemat":116688,"chem":1423256,"manu":225915,"other":0,"total":11355513}},{"type":"LineString","arcs":[1068],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1069],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"MultiLineString","arcs":[[1070],[1071]],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1072],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1073],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1074],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1075],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1076],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1077],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1078],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1079],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1080],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1081],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1082],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1083],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1084],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1085],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1086],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1087],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1088],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}},{"type":"LineString","arcs":[1089],"properties":{"coalpetro":0,"foodfarm":0,"crudemat":0,"chem":0,"manu":0,"other":0,"total":0}}]}},"arcs":[[[99884,14989],[-50,136]],[[99947,14855],[-63,134]],[[99996,14742],[-49,113]],[[99999,14522],[-3,220]],[[16620,12426],[-13,-50],[-2,-54],[-2,-24],[-6,-19],[-16,-15],[-20,2],[-19,16],[-19,24],[-32,14],[-44,-25],[-33,-3],[-45,0],[-30,-16],[-16,-42],[-12,-51],[-16,-29],[-41,-22],[-71,-5],[-34,9],[-25,23],[-16,39],[-14,51],[-16,43],[-29,33],[-15,16],[-20,8],[-31,-5],[-30,-22],[-31,-4],[-18,22],[-14,23],[-7,30],[-10,33],[-23,8],[-32,-11],[-33,-29],[-21,-14],[-36,1],[-27,-11],[-29,-8],[-27,8]],[[18844,95663],[-8,-9]],[[18538,94768],[306,895]],[[3347,98044],[-7,-27],[237,-501]],[[3996,97428],[-419,88]],[[3996,97428],[469,710]],[[13925,90694],[1176,133]],[[15101,90827],[1463,1409]],[[16564,92236],[425,386]],[[17527,93390],[623,1091]],[[18412,94395],[126,373]],[[18150,94481],[175,-16]],[[18325,94465],[87,-70]],[[16989,92622],[538,768]],[[10116,91456],[-211,851]],[[10151,91308],[-35,148]],[[10167,91250],[-16,58]],[[10239,90620],[-72,630]],[[10339,90113],[-87,446]],[[10413,89766],[-74,347]],[[10592,89519],[-179,247]],[[10643,89428],[-51,91]],[[10634,93025],[174,-477]],[[10808,92548],[404,-262]],[[11212,92286],[332,-642]],[[10801,89261],[-158,167]],[[10852,89222],[-51,39]],[[11045,89109],[-193,113]],[[11544,91644],[602,-795],[230,-459]],[[12376,90390],[916,328],[633,-24]],[[8401,60729],[17,928],[-94,1170]],[[8289,63830],[254,495]],[[8324,62827],[-35,1003]],[[4465,98138],[1066,-132]],[[5531,98006],[580,-418],[415,-567],[160,-159],[310,87],[297,-96]],[[7293,96853],[496,-365]],[[7789,96488],[364,-280]],[[8410,95537],[-621,951]],[[8794,94460],[-258,853]],[[8153,96208],[1122,-449],[1075,-893]],[[9905,92307],[-1111,2153]],[[10350,94866],[124,-945]],[[10474,93921],[23,-458]],[[10497,93463],[137,-438]],[[53101,61698],[60,40],[40,24],[27,-23],[22,35],[-4,60],[36,68]],[[52735,61164],[7,16],[28,27],[23,39],[17,45],[15,50],[21,43],[12,12],[13,25],[9,53],[18,40],[32,8],[32,9],[34,-4],[9,51],[4,52],[24,43],[36,28],[32,-3]],[[53282,61902],[103,66],[37,-10],[26,-6],[24,-20]],[[53481,61921],[20,-21],[24,-7],[36,11],[32,40],[24,37],[35,17],[14,31],[4,63],[18,34],[27,15],[40,-14],[23,-23],[19,-39],[12,-42],[16,-19],[19,-11],[16,1],[11,7],[19,34]],[[53897,62049],[12,21],[22,13],[28,-4],[35,-39],[13,-30],[7,-27],[2,-33],[-4,-31],[8,-46],[19,-52],[24,-27],[31,-5],[25,-13],[12,-19]],[[99547,15774],[-61,142]],[[99597,15660],[-50,114]],[[99677,15473],[-80,187]],[[99748,15306],[-71,167]],[[99834,15125],[-86,181]],[[98707,16184],[-40,81]],[[98742,16133],[-35,51]],[[98776,16075],[-34,58]],[[98806,16027],[-30,48]],[[98936,15991],[-130,36]],[[99021,15985],[-85,6]],[[99117,15970],[-96,15]],[[99222,15969],[-105,1]],[[99353,15940],[-131,29]],[[99486,15916],[-133,24]],[[85211,67101],[-936,2001]],[[86090,65882],[-879,1219]],[[86462,64954],[-372,928]],[[63630,38311],[-13,3],[-40,8],[-85,19],[-22,-18]],[[63866,38253],[-4,0],[-8,-3],[-18,-10],[-14,0],[-12,-15],[-20,-5],[-22,-12],[-10,5],[-10,0],[-10,5],[-7,-1],[-13,4],[-17,1],[-14,9],[-14,17],[-9,20],[-14,36],[-20,7]],[[64676,37884],[-4,1],[-5,2],[-5,5],[-38,28],[-5,9],[-24,29],[-38,41],[-29,29],[-41,21],[-32,31],[-29,10],[-10,14],[-32,11],[-21,20],[-21,8],[-24,22],[-5,15],[-13,4],[-44,24],[-44,27],[-15,22],[-37,55],[-19,19],[-44,5],[-9,-11],[-3,-12],[-15,-16],[-26,-10],[-20,12],[-33,-12],[-7,-11],[-18,-8],[-17,3],[-11,-2],[-36,-17],[-18,0],[-9,1]],[[64860,37727],[-9,9],[-25,43],[-32,21],[-5,55],[-15,29],[-3,10],[-5,29],[-14,9],[-45,-57],[-18,5]],[[64968,37449],[-5,9],[-7,9],[-10,10],[-17,38],[-33,50],[-14,11],[-11,20],[-5,20],[8,36],[-2,29],[-7,30],[-5,16]],[[65007,37231],[0,14],[-7,49],[2,14],[-4,34],[0,17],[-2,17],[0,15],[-11,27],[-7,13]],[[68280,67205],[-9,-10],[-9,-8],[-13,0],[-4,7],[12,25],[9,17],[12,13],[7,14],[0,8],[-8,12],[-5,1],[-6,-14],[-10,-23],[-10,-8],[-12,-3],[-7,8],[-7,10],[-3,19],[-4,14],[-1,14],[1,17],[6,16],[4,12],[8,20],[9,17],[10,13],[15,4],[13,-6],[11,-3],[6,3],[-1,14],[-5,18],[-2,11],[-1,21],[1,10],[4,8],[3,9],[6,12],[7,14],[11,6],[6,0]],[[63374,56873],[9,-51],[13,-52],[7,-53],[-5,-54],[-21,-47],[-26,-38],[-33,-5],[-35,2],[-35,34],[-24,48],[-6,60],[8,50],[15,49],[22,49],[8,17]],[[63505,56854],[-10,41],[-17,45],[-24,39],[-31,24],[-34,7],[-26,-28],[-1,-57],[12,-52]],[[68513,66499],[2,0],[3,1],[4,3],[2,2],[1,3],[1,3],[0,3],[-2,6],[-1,3],[-2,2],[-5,6],[-3,1],[-2,0],[-2,-2],[-2,-3],[-4,-8],[-4,-4],[-5,-4],[-3,-1],[-2,0],[-2,1],[-1,2],[-2,3],[0,2],[-1,3],[1,3],[0,4],[0,4],[-1,21],[-1,6],[-1,6],[-1,6],[-2,7],[-2,4],[-4,2],[-4,0],[-4,0],[-3,0],[-2,-2],[-3,-2],[-4,-5],[-3,-4],[-3,-4],[-3,-5],[-5,-6],[-2,-4],[-3,-2],[-3,-1],[-6,-4],[-3,-2],[-3,-3],[0,-2],[0,-14],[0,-2],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-5,0],[-6,-1],[-7,-1],[-4,0],[-6,-1],[-5,1],[-3,1],[-2,2],[-3,4],[-4,3],[-1,5],[-2,5],[-2,5],[-3,7],[-1,6],[-2,35],[-1,18],[-1,3],[-3,4],[-1,1],[-2,2],[-3,3],[-3,4],[-3,4],[0,1],[-1,3],[0,4],[0,2],[1,3],[8,10],[4,5],[10,9],[8,7],[5,5],[3,6],[1,6],[0,5],[-3,8],[-9,25],[-4,6],[-3,5],[-4,4],[-5,2],[-20,3],[-11,2],[-4,1],[-2,4],[-2,6],[-1,4],[1,6],[2,3],[3,5],[4,2],[36,11],[4,2],[5,3],[2,4],[0,4],[1,6],[0,11],[-2,35],[-2,9],[-3,9],[-3,7],[-2,10],[0,7],[2,5],[2,3],[2,2],[2,1],[6,1],[6,2],[5,4],[1,5],[0,3],[-2,5],[-4,8],[-3,6],[-3,8],[-2,7],[-1,6],[1,7],[4,4],[4,3],[15,16],[14,19],[2,4],[3,12],[4,11],[16,60],[0,9],[-6,8],[-7,6],[-8,4],[-6,-3],[-7,-4],[-4,-4],[-2,-6],[-1,-5],[1,-39],[0,-9],[-2,-3],[-2,-1],[-3,-1],[-1,1],[-3,4],[-4,4],[-2,9],[-6,23],[-3,7],[-7,6],[-6,1],[-5,-1],[-12,-2],[-5,-1],[-4,0],[-2,2],[-1,3],[0,2],[-1,14],[-1,9],[-1,5],[0,6],[1,7],[2,4],[8,3],[5,5],[1,1],[1,3],[-1,4],[-25,11],[-8,10],[-17,15],[-7,-1]],[[66056,56545],[14,-30],[11,-33],[4,-65],[1,-52],[-9,-55],[-9,-51],[-6,-55],[-9,-55],[-11,-53],[-14,-53],[-9,-50],[-17,-45],[-11,-54],[-2,-33]],[[65843,51564],[-9,19],[-3,32],[-3,56],[-8,44],[-12,51],[-12,50],[-27,41],[-25,30],[-25,40],[-27,34],[-18,31],[-14,48],[-21,38],[-9,53],[7,52],[4,57],[18,49],[18,46],[18,47],[12,51],[21,40],[28,33],[25,33],[21,38],[20,43],[12,49],[6,20]],[[62296,62531],[-2,-15],[-10,-2],[-2,-67]],[[62458,62310],[0,26],[-21,4],[-14,19],[-15,48],[-26,25],[-32,-15],[-21,-13],[-19,5],[-18,22],[-10,16]],[[62488,62017],[1,158],[-29,64],[-32,22],[-70,-38],[-41,16],[-28,40],[-10,58],[-7,59],[10,51]],[[63175,59166],[-3,7],[-3,53],[-23,40],[-32,2],[-27,-33],[-23,-23],[-34,-22],[-31,-11],[-26,19],[-20,32],[-16,43],[5,66],[59,50],[32,26],[30,17],[15,48],[-16,47],[-28,33],[-28,28],[-28,32],[-24,38],[-25,38],[-25,36],[-26,36],[-26,46],[-34,18],[-30,15],[-24,4],[-22,11],[-17,21],[-33,13],[-30,25],[-21,40],[-6,53],[8,56],[14,49],[23,40],[27,30],[34,7],[28,32],[0,57],[-37,56],[-4,73],[0,56],[3,56],[9,52],[-1,55],[-3,52],[-25,31],[-35,-10],[-33,1],[-32,-11],[-32,13],[-29,20],[-14,49],[5,57],[20,59],[19,140],[-30,42],[-38,41],[-44,36],[-26,42],[-9,53],[-34,122],[-19,198],[10,116],[23,52],[12,34],[15,41],[10,27],[6,30],[7,23],[7,20],[11,51],[7,55]],[[66066,62268],[3,42],[-18,23],[-39,20],[-14,7],[0,18],[20,3],[6,30],[2,19],[-3,19],[10,18],[10,8],[-2,26],[-23,37],[-7,19],[3,15],[1,14],[0,24],[-4,13],[-19,14],[-31,20],[-34,21],[-12,17],[-5,14],[-4,19],[-2,25],[-1,23],[1,29],[0,45],[1,26],[5,19],[9,27],[2,16],[-8,33],[-8,15],[-11,16],[-4,11],[-2,24],[-1,49],[-4,47],[-9,70],[-5,23],[-1,18],[6,22],[9,18],[10,27],[11,26],[22,31],[19,30],[13,28],[5,38],[3,51],[6,34],[6,16],[16,27],[11,27],[7,29],[1,28],[-3,33],[-22,49],[-24,70],[-6,46],[2,29],[-14,33],[-8,48],[-5,74],[-8,53],[2,34],[1,16],[2,41],[0,62],[-13,49],[-24,43],[-29,30],[-11,6],[-9,5],[-18,16],[-26,35],[-11,25],[3,39],[7,69],[3,43],[-1,36],[0,50],[-4,61],[-1,16],[-3,31],[-3,33],[-4,88],[-7,84],[-5,64],[6,82],[2,11],[3,16],[4,24],[6,16],[13,22],[31,51],[22,37],[4,34],[3,36],[7,17],[10,33],[2,36],[0,41],[3,37],[0,45],[-9,38],[-7,15],[-6,25],[-7,72],[-2,23],[-5,59],[-24,42],[-8,16],[-6,11],[-28,57],[-39,77],[-24,49],[-17,30],[-7,12],[-16,34],[-18,35],[-13,28],[-6,50],[-9,68],[-2,27],[-1,50],[3,49],[-2,13],[-2,13],[-5,23],[-4,17],[-3,12],[0,47],[3,10],[3,16],[8,24],[8,19],[10,24],[7,20],[4,16],[5,34],[10,55],[2,13],[4,23],[5,24],[10,34],[10,23],[10,19],[10,21],[3,22],[1,24],[-1,31],[-3,25],[1,12],[3,16],[6,23],[4,20],[2,23],[-4,32],[-2,22],[3,20],[6,19],[7,16],[7,28],[-2,30],[-7,40],[-8,38],[-2,19],[3,35],[6,37],[4,30],[0,25],[1,24],[3,19],[5,14],[8,16],[10,15],[8,16],[7,20],[1,14],[-2,16],[-5,16],[-5,18],[-6,21],[-2,18],[-1,23],[0,27],[-1,24],[4,29],[4,24],[3,29],[3,33],[4,22],[2,15],[3,32],[6,22],[9,9],[20,3],[16,5],[6,7],[8,12],[9,16],[12,30],[10,26],[11,23]],[[66066,62268],[-6,-22],[-2,-56],[11,-52],[8,-53],[-4,-19],[-12,-30],[-20,-25],[-20,-3],[-14,7],[-34,38]],[[63025,58818],[-10,25],[-5,29],[3,48],[19,40],[30,29],[27,29],[28,30],[30,28],[22,39],[6,51]],[[63271,56882],[14,27],[21,40],[7,53],[-12,53],[-23,40],[-5,55],[17,47],[22,45],[19,46],[15,51],[4,50],[-13,56],[-21,43],[-32,15],[-32,-10],[-32,-11],[-33,0],[-30,24],[-8,53],[17,52],[24,37],[33,31],[26,24],[22,44],[-1,56],[-19,43],[-29,30],[-33,10],[-32,-13],[-29,-15],[-25,-4],[-34,23],[-27,38],[1,54],[26,36],[30,30],[25,37],[27,36],[32,25],[22,40],[20,46],[5,56],[-7,45],[-26,36],[-24,31],[-30,27],[-32,13],[-28,34],[-10,56],[0,51],[-4,57],[-1,52],[-7,57],[-15,46],[-21,38]],[[63951,54944],[13,-7],[19,6],[26,39],[7,41],[1,58],[-10,55],[-6,55],[-5,56],[-5,57],[-10,46],[-3,60],[-16,46],[-2,54],[4,55],[9,56],[17,51],[23,56],[1,39],[-9,107],[-16,101],[-13,20],[-11,51],[5,61],[-25,81],[-37,94],[-24,102],[-8,76],[-15,70],[-57,38],[-36,-14],[-67,-108],[-39,-8],[-26,16],[-17,33],[-21,38],[-26,16],[-25,10],[-6,24],[-12,52],[-6,52],[-7,55],[-7,55],[-4,65]],[[62608,51667],[29,18],[29,30],[18,37],[21,46],[25,37],[29,28],[29,35],[31,23],[16,42],[5,55],[-9,68],[9,23],[28,33],[29,14],[25,35],[26,27],[31,21],[32,16],[34,11],[36,7],[27,13],[21,34],[-2,54],[0,53],[0,80],[11,29],[16,77],[-6,27],[-16,39],[-2,64],[3,59],[2,50],[10,49],[19,47],[17,37],[12,53],[14,53],[24,50],[26,37],[26,43],[18,33],[17,53],[13,50],[11,49],[5,43],[-1,50],[-8,54],[-14,68],[-29,25],[-65,26],[-7,25],[-8,21],[-23,38],[-4,57],[-16,94],[6,60],[24,25],[36,0],[50,-10],[11,8],[6,24],[-8,26],[-9,53],[9,53],[12,54],[13,50],[22,44],[17,53],[15,48],[21,44],[20,45],[32,28],[22,41],[10,51],[-5,54],[-7,53],[6,54],[30,38],[34,12],[31,18],[30,25],[45,74],[32,20],[20,-27],[12,-47],[3,-54],[-25,-35],[-28,-26],[-38,-26],[-15,-44],[5,-51],[17,-47],[25,-34],[30,8],[17,35],[23,57],[11,50],[19,51],[31,21],[26,31],[17,36],[8,57],[9,53],[9,22],[22,15],[30,-21],[31,-20],[15,-12]],[[65956,62068],[-4,3],[-30,5],[-28,-16],[-27,-93],[-4,-69],[-9,-58],[-18,-19],[-14,-27],[-1,-84],[-6,-40],[0,-23],[12,-43],[-7,-64],[2,-28],[8,-21],[9,-14],[20,2],[33,15],[13,-5],[11,-11],[2,-14],[0,-18],[1,-50],[-16,-39],[-54,-71],[-2,-29],[20,-28],[25,-4],[28,22],[18,-1],[3,-30],[34,-68],[28,-25],[20,17],[23,-4],[2,-41],[-10,-52],[-28,-58],[-15,-56],[3,-28],[10,-63],[26,-24],[23,-21],[15,-3],[37,23],[36,0],[23,-18],[17,-36],[24,-43],[39,-49],[98,106],[41,-12],[22,-18],[12,-29],[2,-53],[-15,-14],[-15,4],[-33,-18],[-22,3],[-23,-7],[-19,-39],[-14,-44],[2,-37],[15,-17],[5,-18],[10,-27],[59,-37],[17,-35],[6,-42],[4,-53],[-7,-52],[-18,-43],[-25,-41],[-15,-48],[-17,-47],[-20,-46],[-16,-48],[-18,-47],[-1,-38],[12,-66],[9,-54],[4,-54],[-3,-55],[-23,-39],[-12,-51],[-4,-54],[15,-48],[25,-45],[19,-36],[21,-44],[9,-55],[7,-53],[4,-55],[1,-55],[1,-54],[17,-45],[19,-47],[11,-50],[5,-54],[6,-56],[2,-57],[1,-55],[-5,-41],[-7,-4],[-21,3],[-43,13],[-25,8],[-18,-7],[-15,-1],[-27,-16],[-10,-15],[-16,-48],[-5,-56],[9,-35],[17,-22],[12,-28],[1,-26],[-6,-40],[-3,-46],[12,-45],[8,-36],[25,-66],[23,-47],[10,-45],[18,-49],[7,-46],[26,-47],[5,-47],[0,-51],[1,-54],[-13,-49],[-25,-31],[-14,-49],[-6,-42],[-20,-41],[-6,-52],[-9,-31],[-2,-43],[17,-51],[-4,-55],[-9,-53],[-13,-51],[-11,-52],[-18,-39],[-19,-54],[-18,-43],[-31,-28],[-16,-51],[-17,-48],[-14,-46],[-23,-42],[-25,-38],[-24,-32],[-13,-24],[-1,-27],[9,-31],[7,-45],[-7,-35],[-9,-41],[8,-25]],[[64034,54174],[-2,6],[-3,7],[-15,34],[-14,52],[-8,54],[-11,54],[-20,54],[-18,32],[-20,40],[-23,42],[-19,45],[-14,53],[-11,50],[1,53],[9,56],[21,53],[31,43],[33,42]],[[64087,54089],[-36,56]],[[64479,54083],[-32,-18],[-28,-21],[-34,-18],[-32,-14],[-29,-16],[-32,-8],[-34,-7],[-34,1],[-32,0],[-30,19],[-31,28],[-27,30],[-12,21]],[[64805,54279],[-10,-5],[-17,-7],[-32,-18],[-31,4],[-34,3],[-33,-18],[-27,-36],[-29,-31],[-27,-28],[-26,-24],[-31,-18],[-29,-18]],[[64977,54449],[-25,-35],[-25,-36]],[[65265,54175],[-19,78],[-21,23],[-6,51],[-12,52],[-15,47],[-24,43],[-30,24],[-33,3],[-33,-6],[-35,-3],[-31,-13],[-29,-25]],[[65540,54612],[-27,-35],[-24,-47],[-22,-35],[-30,-18],[-27,-17],[-22,2],[-27,-6],[-50,38],[-36,17],[-35,24],[-15,20],[-20,45],[-30,30],[-33,16],[-36,0],[-26,-23],[-29,-48],[-22,-40],[-27,-36],[-19,-23],[-4,-12],[-2,-15]],[[65989,55861],[-1,-21],[-12,-51],[-15,-50],[-19,-43],[-22,-38],[-19,-42],[-13,-46],[-11,-52],[-13,-52],[-8,-67],[-11,-39],[-12,-51],[-14,-48],[-13,-49],[-12,-50],[-20,-42],[-18,-47],[-18,-45],[-10,-52],[-8,-53],[-20,-42],[-18,-32],[-30,-38],[-35,-65]],[[58677,65290],[20,23],[26,24],[18,49],[-1,57],[-2,56],[12,56],[17,48],[27,44],[33,34],[25,9]],[[58538,64333],[-15,46],[-13,42],[9,51],[30,58],[6,40],[-14,45],[-15,41],[7,47],[39,45],[16,24],[6,45],[-12,72],[-10,65],[7,31],[28,34],[18,11],[32,40],[0,59],[-18,48],[-12,30],[7,33],[27,33]],[[58852,65690],[28,36],[19,44],[14,18],[18,5],[22,-7],[16,-25],[7,-23],[12,-38],[14,-9],[16,11],[16,16],[8,23],[6,35],[2,55],[9,41]],[[67234,80905],[1613,-725]],[[59068,65901],[15,28],[17,17],[50,10],[32,20],[28,28],[31,24],[34,5],[22,17],[16,28],[19,79],[24,21],[37,-20],[33,-16],[32,-3],[30,14],[21,20]],[[60184,66719],[6,-5],[14,-21],[17,-24],[13,-10],[56,-18],[28,-6],[44,5]],[[59516,66181],[4,4],[25,33],[19,44],[23,19],[28,0],[21,8],[18,34],[4,57],[-7,29],[6,41],[21,18],[25,-13],[34,-62],[21,-14],[31,12],[46,78],[26,33],[26,-10],[49,-48],[19,-7],[35,56],[8,76],[-2,49],[-1,47],[21,41],[34,35],[19,44],[23,50],[24,1],[34,-51],[34,-66]],[[58253,63949],[25,38],[30,22],[34,9],[34,3],[34,3],[33,12],[27,33],[25,43],[32,18],[16,32],[7,64],[-6,59],[-1,25]],[[60736,67568],[-25,7],[-64,31],[-43,68],[-9,40],[-5,69],[-15,50],[-27,29],[-42,10],[-43,24],[-23,70],[5,35],[14,26],[13,12],[30,6],[38,17],[40,39],[47,58],[14,53],[1,33],[-10,34],[-17,37],[-30,33],[-33,18],[-59,12],[-30,10],[-16,33],[3,29],[21,63],[92,105],[97,105],[22,72],[13,101],[6,81],[-7,59],[3,94],[-19,37]],[[60370,66640],[62,9],[29,6]],[[60473,66659],[5,1],[7,2]],[[60485,66662],[14,6],[10,-1],[7,6],[11,23],[6,16],[8,31],[3,11],[0,13],[-2,15],[-3,11],[2,13],[3,7],[5,4],[7,2],[6,2],[7,9],[3,16],[7,12],[14,15],[6,0],[11,-6],[6,1],[6,5],[6,12],[4,14],[8,28],[9,16],[7,2],[8,-3],[10,-10],[15,-21],[8,-19]],[[60697,66892],[36,7],[32,14],[31,23],[19,51],[4,30],[-25,62],[-21,44],[-18,42],[-22,46],[-3,77],[11,41],[19,48],[18,48],[21,80],[-13,37],[-26,17],[-24,9]],[[61584,64665],[0,39],[-9,56],[5,74],[20,109],[-12,101],[-11,46],[-39,50],[-108,86],[-67,36],[-52,-2],[-37,-8],[-18,32],[-5,31],[6,38],[38,55],[22,87],[-2,46],[-14,46],[-22,31],[-31,5],[-38,-13],[-38,-7],[-29,23],[-14,103],[-15,138],[-18,54],[-63,91],[-47,70],[-33,34],[-31,51],[-3,65],[20,47],[39,38],[30,45],[30,66],[16,56],[-12,52],[-66,70],[-95,15],[-36,35],[-84,109],[-62,10],[-24,58],[9,47],[13,12]],[[61558,64244],[17,84],[25,54],[55,91],[5,28],[0,30],[-6,36],[-31,41],[-39,57]],[[62050,62775],[2,15],[17,49],[26,33],[27,30],[45,31],[13,44],[2,108],[-45,85],[-98,88],[-51,69],[-88,90],[-139,96],[-10,67],[19,61],[30,62],[7,77],[-26,46],[-45,23],[-75,-36],[-63,-11],[-13,42],[-2,101],[9,115],[-28,86],[-6,98]],[[62282,62447],[-3,59],[-11,50],[-24,60],[-26,35],[-22,9],[-47,9],[-36,0],[-30,27],[-23,44],[-9,18],[-1,17]],[[89070,59921],[-2608,5033]],[[2186,51052],[100,930]],[[2151,50731],[35,321]],[[1068,42887],[104,1438]],[[1021,42236],[47,651]],[[1172,44325],[39,533]],[[1211,44858],[51,703]],[[2395,41807],[-453,225],[-921,204]],[[1262,45561],[889,5170]],[[2608,41686],[-146,80],[-67,41]],[[55605,72679],[24,47],[31,1],[16,21],[26,39],[25,51],[11,46],[0,40],[-1,13],[-5,37],[1,17],[3,12],[21,8],[11,9],[4,26],[-25,37],[-16,14],[-5,31],[1,12],[7,23],[13,10],[30,8],[25,-6],[6,-8],[10,1],[5,3],[12,17],[5,17],[2,45],[20,52],[15,16],[19,-1],[26,-15],[13,2],[20,35],[17,44],[23,48],[15,41],[15,28],[7,21],[30,23],[28,43],[5,22],[2,34],[15,43],[9,22],[5,15],[8,19],[7,10],[14,18],[4,2],[5,10],[5,9],[2,11],[2,18],[-1,11],[-1,10],[-4,11],[1,21],[23,45],[28,28],[6,19],[4,36],[0,22],[0,22],[-3,11],[-5,10],[-14,39],[-13,56],[-3,18],[2,20],[13,24],[11,16],[6,66],[9,11],[10,-1],[15,9],[8,18],[0,27],[6,16],[11,7],[13,-14],[13,-21],[10,-3],[11,13],[8,20],[1,31],[-2,27],[3,18],[7,8],[5,3],[12,5],[8,1],[10,5],[15,41],[10,25],[8,27],[3,29],[-7,28],[0,31],[2,20],[14,28],[1,16],[1,6],[-3,10],[7,22],[18,6],[29,-21],[19,1],[10,22],[-2,42],[6,18],[11,3],[20,-7],[16,7],[7,4],[5,4],[6,4],[6,5],[5,5],[6,5],[3,6],[6,7],[19,40],[6,27],[11,32],[12,20],[16,15],[38,14],[16,18],[15,7],[14,-4],[7,-7],[8,0],[8,0],[8,7],[16,13],[11,1],[15,-6],[12,-15],[13,-4],[14,-1],[25,18],[11,43],[-3,39],[3,11],[3,9],[6,6],[7,2],[11,-4],[8,1],[14,23],[8,20],[6,21],[-1,17],[-11,20],[0,17],[7,14],[9,9],[31,1],[18,6],[17,24],[7,29],[8,17],[31,21],[12,20],[13,19],[5,11],[3,16],[0,23],[-15,55],[-1,23],[3,20],[16,12],[23,-13],[18,-6],[13,-1],[7,4],[8,7],[9,11],[4,4],[3,19],[0,17],[-8,33],[-1,20],[4,12],[8,8],[13,3],[5,17],[-1,13],[-11,48],[5,23],[14,10],[11,4],[17,-1],[11,-1],[15,-11],[9,4],[0,29],[2,11],[12,15],[14,6],[20,3],[1,15],[-2,18],[-9,51],[-3,29],[5,23],[17,14],[21,6],[14,7],[17,-3],[10,-2],[21,23],[28,31],[15,7],[14,-1],[20,6],[15,0],[21,2],[12,15],[11,22],[11,36],[7,6],[15,23],[9,17],[14,11],[13,9],[7,13],[-13,24],[1,13],[17,13],[14,21],[22,28],[13,23],[8,14],[7,14],[46,85],[2,22],[-1,16],[-1,18],[-5,13],[-3,11],[-4,10],[-2,11],[-3,19],[6,48],[16,25],[8,18],[1,13],[3,29],[7,31],[10,21],[8,8],[5,5],[5,4],[5,6],[3,7],[4,6],[2,5],[2,10],[3,12],[5,12],[7,11],[8,3],[13,1],[9,-1],[10,-4],[5,3],[4,4],[3,4],[3,5],[2,11],[3,9],[9,13],[15,10],[12,-6],[8,-7],[8,-3],[7,0],[7,1],[6,0],[11,1],[8,-8],[12,-15],[4,-17],[10,-8],[12,1],[13,11],[4,15],[-1,26],[9,22],[13,19],[11,14],[19,11],[10,-6],[11,-10],[27,6],[18,23],[9,16],[6,18],[8,16],[8,6],[16,7],[14,-12],[9,-20],[11,-3],[9,5],[7,9],[2,8],[2,10],[5,16],[-1,16],[5,21],[6,14],[9,9],[10,13],[26,34],[12,14],[28,17],[8,11],[2,26],[1,14],[6,9],[13,15],[8,19],[9,19],[8,11],[4,4],[6,5],[14,6],[6,14],[7,18],[2,9],[0,8],[1,8],[-1,5],[-2,7],[-1,7],[-5,11],[-5,16],[0,16],[4,18],[7,10],[8,8],[9,4],[10,2],[10,3],[8,8],[7,28],[6,7],[32,11],[40,16],[11,6],[5,4],[3,1],[5,4],[4,3],[4,3],[4,2],[4,4],[5,5],[12,11],[11,22],[5,25],[0,21],[-2,30],[6,26],[5,12],[8,12],[16,12],[5,1],[5,1],[4,1],[4,0],[4,2],[5,3],[4,5],[5,6],[5,6],[5,9],[3,5],[4,4],[9,5],[11,0],[10,-3],[9,-11],[7,-18],[3,-25],[-2,-21],[4,-21],[8,-17],[4,-21],[5,-54],[15,-18],[13,-18],[11,-21],[14,-18],[32,-43],[29,-31],[6,-13],[1,-19],[6,-31],[13,-15],[17,-4],[16,8],[12,15],[11,28],[20,47],[10,11],[11,-2],[12,-9],[19,-1],[10,11],[4,3],[10,2],[8,-16],[3,-17],[1,-17],[5,-12],[4,-4],[10,-4],[8,-14],[3,-20],[2,-16],[6,-7],[15,-2],[9,-9],[14,2],[10,19],[12,6],[16,-5],[5,-2],[9,-14],[6,-8],[3,-14],[3,-10],[0,-13],[1,-11],[1,-18],[3,-10],[1,-9],[2,-10],[2,-9],[2,-9],[1,-6],[2,-7],[2,-7],[2,-5],[1,-6],[3,-5],[3,-5],[3,-4],[2,-6],[5,-14],[3,-10],[4,-16],[8,-22],[12,-21],[17,-12],[14,-4],[15,3],[17,10],[19,7],[14,10],[14,14],[28,39],[26,4],[14,5],[8,8],[7,8]],[[56891,85536],[3457,1964],[572,427],[2925,293]],[[86322,89744],[-165,2506]],[[86055,87092],[267,2652]],[[84875,83413],[1180,3679]],[[84275,69102],[-1007,1302]],[[17128,13534],[-12,-21],[-9,-9],[-14,0],[-16,5],[-17,13],[-17,10],[-9,-3],[-5,-7],[-9,-11],[-11,-5],[-11,-10],[-26,-34],[-17,-14],[-17,0],[-32,10],[-15,4],[-15,-3],[-15,-12],[-10,-18],[-1,-23],[11,-28],[9,-20],[-2,-18],[-19,-48],[-13,-21],[-3,-26],[3,-27],[7,-24],[11,-33],[4,-15],[2,-24],[-6,-34],[-4,-42],[2,-34],[-4,-35],[-8,-22],[-35,-97],[-10,-33],[-21,-24],[-29,-12],[-23,-27],[-9,-56],[-5,-22],[-10,-18],[-13,-19],[-8,-23],[-3,-24],[5,-31],[9,-24],[3,-27],[-8,-28],[-33,-28],[-21,-13]],[[48580,97300],[-5,-1],[-8,-7],[-3,-7]],[[48564,97285],[-10,-32]],[[48578,97206],[-1,3],[-9,8],[-5,12],[-4,16],[-5,8]],[[48583,97152],[2,8],[3,12],[0,13],[-5,15],[-5,6]],[[67180,71661],[-22,-1],[-14,-3],[-12,7],[-20,32],[-18,51],[-29,43],[-18,82],[-26,44],[-15,17],[-23,5],[-12,5],[-20,40],[-24,25],[-12,13],[-14,20],[-10,34],[-3,63],[-1,97],[-1,24],[13,10],[26,1],[16,0],[10,13],[13,27],[17,19],[8,17],[30,22],[24,-12],[8,11],[7,32],[13,7],[9,1],[13,20],[8,27],[5,10],[24,10],[4,8],[-6,42],[6,20],[4,21],[-5,14],[-23,9],[-5,-10],[2,-11],[7,-11],[4,-20],[2,-20],[-6,-14],[-10,-5],[-8,5],[-8,17],[-18,17],[-12,-3],[-10,-25],[-8,-13],[-9,9],[-17,48],[-22,-8],[-9,5],[-2,15],[2,7],[6,26],[-5,7],[-19,-13],[-7,3],[1,25],[0,23],[4,16],[14,11],[8,21],[2,41],[-11,30],[0,22],[18,50],[0,29],[-6,34],[0,17],[11,30],[4,27],[-4,44],[-7,66],[-8,47],[-7,9],[-15,-6],[-11,4],[-4,15],[-1,41]],[[67237,71611],[8,3],[9,4],[9,16],[-4,23],[-9,12],[-9,6],[-12,1],[-14,-3],[-25,-9]],[[67221,70652],[4,17],[8,21],[3,12],[11,10],[11,16],[20,31],[8,12],[5,19],[-2,19],[-4,26],[-17,-2],[-10,3],[-10,14],[-5,27],[-2,23],[2,15],[8,13],[8,10],[20,-3],[4,-16],[7,-12],[12,-9],[9,-5],[9,38],[-7,21],[6,31],[5,15],[15,25],[1,19],[-3,14],[-10,19],[0,13],[5,24],[8,14],[11,8],[21,5],[15,-1],[11,-14],[9,-19],[5,-8],[11,8],[7,20],[-6,36],[-11,37],[-11,-5],[-12,-8],[-18,-14],[-9,4],[-21,16],[-14,4],[-17,0],[-12,1],[-5,21],[12,21],[3,26],[10,19],[15,21],[13,7],[10,3],[19,-15],[11,-4],[7,-12],[15,-11],[15,-1],[6,25],[14,46],[11,22],[-18,7],[-17,21],[-5,15],[-5,33],[-9,11],[-7,0],[-4,-19],[2,-19],[-4,-12],[-19,-13],[-7,2],[-7,12],[2,23],[4,20],[1,23],[-6,22],[-4,-5],[-7,-14],[-7,4],[-3,22],[5,23],[5,29],[-4,35],[-14,25],[-8,17],[-8,31],[-13,-9],[-2,-29],[1,-22],[11,-9],[-1,-11],[-14,-21],[-16,-1],[-13,1],[-12,-7],[-2,8],[-13,43],[0,11]],[[67599,68965],[-4,4],[-10,9],[-20,16],[-9,9],[-15,14],[-16,3],[-21,-8],[-11,-9],[-6,-7],[-6,2],[-3,10],[0,25],[1,12],[2,16],[-3,5],[-12,-4],[-11,-6],[-6,-12],[-4,-3],[-6,3],[-2,6],[1,14],[6,2],[6,7],[1,14],[3,11],[8,15],[1,11],[-7,4],[-7,4],[-5,-6],[-3,-14],[-12,-10],[-8,-12],[-3,-14],[-5,3],[1,12],[2,14],[6,20],[2,19],[-5,12],[-13,14],[-3,16],[2,5],[15,-5],[7,8],[1,13],[-1,11],[11,41],[12,14],[7,12],[5,14],[9,9],[12,8],[8,11],[25,11],[9,1],[8,-7],[2,-8],[-1,-11],[-2,-12],[1,-8],[2,-6],[4,-4],[7,1],[6,14],[2,6],[5,5],[8,2],[10,-6],[6,-10],[3,-7],[4,-1],[6,5],[3,8],[3,20],[-5,17],[-12,35],[-3,12],[2,24],[-2,16],[2,18],[3,11],[3,5],[4,-2],[9,-7],[9,-4],[10,-8],[10,-11],[5,0],[5,4],[3,2],[6,7],[0,8],[-2,8],[-5,10],[-6,10],[-4,16],[-13,27],[-17,19],[-12,-3],[-6,-1],[-8,1],[-9,4],[-4,6],[1,10],[5,15],[5,9],[6,13],[0,6],[-5,4],[-13,-1],[-5,3],[-4,10],[2,13],[4,13],[8,13],[0,23],[8,16],[11,18],[-4,8],[-14,12],[-7,4],[-7,-13],[-6,-17],[-2,-24],[-1,-10],[-5,-7],[-9,-3],[-12,-2],[-4,4],[-2,6],[0,12],[2,23],[-6,16],[-5,4],[-6,-1],[-5,-11],[0,-24],[-1,-5],[-4,-4],[-4,1],[-4,9],[-4,11],[-4,20],[-5,22],[-5,7],[-5,0],[-8,-10],[-5,-13],[-2,-9],[-5,-4],[-4,7],[-3,12],[-2,7],[-4,4],[-4,0],[-9,-1],[-3,2],[-2,18],[6,23],[3,7],[10,11],[5,8],[0,12],[-5,15],[-6,10],[-11,3],[-14,-1],[-6,1],[-2,8],[-5,16],[-3,16],[-3,6],[-3,1],[-3,-2],[-2,-3],[-5,-10],[-8,-1],[-6,2],[-3,3],[0,4],[3,5],[6,6],[2,12],[-2,18],[4,10],[16,13],[-7,13],[-10,8],[-4,7],[3,15],[7,-1],[13,-16],[13,0],[4,12],[-5,14],[-7,19],[-3,5],[-3,9],[-4,8],[-12,3],[-9,-3],[-9,0],[-14,20],[-2,17],[-1,9],[-3,1],[-4,-1],[-2,-5],[-3,-7],[-4,1],[-1,11],[1,16],[6,10],[8,7],[5,17],[5,10],[1,7],[-1,10],[-3,11],[-2,8],[-2,4],[-4,-1],[-6,-6],[-1,-6],[-4,-1],[-5,4],[-3,17],[-2,10],[-8,4],[-11,-9],[-5,-3],[-5,5],[-5,9],[-9,-1],[-4,-1],[-2,3],[0,8],[5,13],[0,7],[-3,5],[-10,-3],[-6,-15],[-7,1],[-1,12],[13,6],[7,13],[1,15],[-4,9],[-10,-14],[-11,-1],[3,26],[0,19],[3,10],[0,11],[-23,0],[0,15],[0,17],[5,9],[17,3],[5,7],[1,6],[-1,6],[-6,0],[-6,-2],[-4,0],[-4,3],[-4,14],[2,13],[15,12],[14,6],[3,16],[-4,12],[0,8],[10,13],[-4,22],[1,9],[9,13],[1,4],[-1,5],[-4,4],[-6,5],[0,15],[1,17],[-3,11],[-4,7],[-12,5],[-7,14],[-3,16]],[[67871,68757],[-7,1],[-19,0],[-33,13],[-16,8],[-13,15],[-7,9],[-13,35],[-8,20],[-14,23],[-14,10],[-18,1],[-31,20],[-31,23],[-29,18],[-7,3]],[[68007,67977],[-2,3],[-7,6],[-6,4],[-7,15],[-4,10],[-1,15],[-1,10],[-11,20],[-6,21],[-3,30],[-2,28],[-4,27],[-2,22],[-9,28],[-18,45],[1,21],[8,29],[-4,25],[-7,27],[5,26],[-1,29],[-3,17],[10,37],[8,30],[9,15],[20,11],[8,21],[3,26],[-1,29],[-4,15],[-25,5],[-15,11],[-11,20],[6,55],[-6,27],[-16,13],[-26,4]],[[68324,67517],[4,15],[-5,12],[-21,9],[-9,19],[-10,30],[-10,9],[-16,-1],[-17,-6],[-14,7],[2,35],[-5,27],[-8,20],[-8,16],[-12,-10],[-7,-24],[-10,-23],[-11,-6],[-7,20],[1,30],[14,15],[8,15],[10,17],[-3,20],[-4,9],[-8,3],[-16,-13],[-10,-6],[-11,4],[-2,18],[11,51],[-2,17],[-12,6],[-13,-9],[-6,-31],[-13,-2],[-12,16],[-11,-11],[-10,-12],[-13,5],[0,25],[-10,51],[-21,35],[-2,21],[-1,14],[-5,10]],[[926,24992],[-130,651]],[[64444,84060],[41,19],[52,47],[29,-17],[30,-73],[44,10],[60,55],[111,207]],[[1122,24012],[-196,980]],[[573,38599],[448,3637]],[[2850,41639],[-242,47]],[[3020,41567],[-170,72]],[[3048,41098],[39,162]],[[3126,41021],[-78,77]],[[3082,41588],[-62,-21]],[[5034,42021],[-6,-5],[-23,-27],[-9,-13],[-7,-21],[-11,-36],[-11,-33],[-6,-23],[-4,-10],[-5,-8],[-7,-11],[-12,-16],[-7,-10],[-9,-11],[-8,-5],[-6,-2],[-12,1],[-8,-3],[-10,-17],[-8,-15],[-6,-36],[-5,-24],[-5,-26],[0,-20],[-11,-18],[-14,-30],[-8,-19],[-6,-10],[-6,-15],[-7,-15],[-1,-10],[-3,-15],[-8,-12],[-11,-7],[-22,-15],[-6,4]],[[4695,41372],[7,-67]],[[4746,41488],[0,-9],[-24,-18],[-12,-12],[-2,-8],[7,-20],[-3,-17],[-17,-32]],[[1215,21604],[-34,835]],[[1237,21091],[-22,513]],[[1205,20681],[32,410]],[[1181,22439],[-59,1573]],[[1613,19658],[-408,1023]],[[1908,18909],[-295,749]],[[2238,17899],[-330,1010]],[[2622,16715],[-384,1184]],[[3922,41095],[-35,-23],[-11,-11]],[[4109,41225],[-49,-9],[-33,-30],[-25,-37],[-15,-17],[-34,-23],[-31,-14]],[[4702,41305],[-24,-34],[-29,-28],[-40,1],[-10,38],[-28,-7],[-18,-39],[-22,-9],[-22,21],[-14,84],[-21,25],[-37,34],[-66,33],[-56,-4],[-42,0],[-21,-18],[-27,-14],[-14,-36],[-29,-11],[-14,-22],[-12,-4],[-16,-12],[-20,-33],[-2,-18],[-9,-27]],[[2286,51982],[265,2352],[1118,1047]],[[3669,55381],[666,608],[403,383]],[[4738,56372],[418,389]],[[230,36968],[343,1631]],[[0,33761],[230,3207]],[[237,28533],[-237,5228]],[[796,25643],[-559,2890]],[[3108,41404],[-26,184]],[[3087,41260],[21,144]],[[3282,40894],[-156,127]],[[3488,40893],[-206,1]],[[3548,40923],[-25,-6],[-35,-24]],[[3625,41070],[-9,-8]],[[3616,41062],[-20,-84],[-21,-28],[-27,-27]],[[3657,41087],[-21,-8],[-11,-9]],[[3695,41077],[-32,12],[-6,-2]],[[3775,41054],[-36,7],[-44,16]],[[3876,41061],[-26,-23],[-18,-7],[-17,1],[-40,22]],[[5156,56761],[267,246]],[[5423,57007],[118,113]],[[5541,57120],[82,76]],[[5623,57196],[72,65]],[[5695,57261],[361,341]],[[6484,57967],[350,552]],[[6056,57602],[428,365]],[[6834,58519],[206,325]],[[7040,58844],[337,522]],[[7377,59366],[369,569]],[[7746,59935],[117,179],[227,96]],[[8090,60210],[305,281]],[[8395,60491],[6,238]],[[7684,11836],[4,-19],[-3,-49],[-7,-47]],[[7678,11721],[-4,-47],[10,-54],[13,-52],[8,-56],[-1,-54],[-13,-52],[-15,-107],[-3,-55],[-10,-52]],[[7663,11192],[-14,-51],[4,-54],[5,-56],[-3,-54],[-16,-48],[-29,-57]],[[8877,13232],[-16,-8],[-26,41],[-43,16],[-34,8],[-34,-3],[-33,5],[-31,8],[-31,17],[-31,15],[-32,1],[-32,-7],[-29,0],[-29,12],[-34,13],[-40,-2],[-41,1],[-46,8],[-34,-7],[-33,-21],[-33,-22],[-25,-46],[-8,-57],[-29,-32],[-27,-5],[-31,6],[-38,-2],[-33,-23],[-33,-63],[-35,-32],[-48,-55],[-48,-54],[-116,-90],[-51,-76]],[[9617,13249],[-29,-17],[-34,-5],[-28,5],[-44,-6],[-34,5],[-36,-3],[-32,-14],[-34,-17],[-35,16],[-29,5],[-38,-18],[-30,-33],[-30,-26],[-30,-27],[-34,-21],[-32,3],[-33,3],[-34,13],[-31,25],[-28,25],[-9,46],[-33,22],[-26,10],[-9,-4]],[[4375,8270],[-25,529]],[[4470,7031],[-95,1239]],[[4528,6254],[-58,777]],[[4598,5346],[-70,908]],[[4663,4506],[-65,840]],[[4720,3722],[-57,784]],[[4725,3160],[-5,562]],[[4877,2383],[-152,777]],[[5027,1614],[-150,769]],[[5799,9510],[-1449,-711]],[[5896,9428],[-97,82]],[[5991,9434],[-66,-25],[-29,19]],[[6054,9559],[-47,-105],[-16,-20]],[[6143,9801],[-89,-242]],[[6174,9828],[-31,-27]],[[6413,9797],[-1,0],[-33,5],[-33,10],[-34,12],[-34,11],[-33,-5],[-33,-9],[-38,7]],[[10137,13910],[-18,20],[-25,-2],[-16,-7],[-16,-18],[-14,-40],[9,-37],[5,-56],[1,-56],[-10,-54],[-17,-25],[-33,-32],[-27,-32],[-27,-27],[-22,-55],[-24,-31],[-27,-21],[-30,-9],[-37,-6],[-29,16],[-37,-7],[-30,-25],[-24,-34],[-25,-36],[-21,-52],[-26,-35]],[[10384,13868],[-39,-17],[-34,-14],[-30,-22],[-34,2],[-28,35],[-33,23],[-29,25],[-15,5]],[[10886,13846],[-26,4],[-32,9],[-28,9],[-32,6],[-37,11],[-60,9],[-60,26],[-15,-11],[-20,5],[-13,-12],[-29,16],[-36,-14],[-26,-22],[-32,2],[-28,11],[-28,-27]],[[13197,13958],[-30,2],[-33,-3],[-35,-5],[-31,-7],[-31,-11],[-29,-3],[-32,9],[-37,6],[-32,-14],[-29,-26],[-26,-34],[-22,-41],[-30,-16],[-35,11],[-28,26],[-28,33],[-23,41],[-24,40],[-28,29],[-34,1],[-32,-5],[-25,-5],[-29,-6],[-35,3],[-32,-7],[-33,-15],[-32,-5],[-32,-1],[-37,-7],[-36,3],[-34,-2],[-36,-9],[-32,-8],[-30,1],[-33,6],[-34,8],[-33,16],[-33,19],[-34,16],[-33,-14],[-32,15],[-33,-1],[-34,-2],[-33,13],[-33,10],[-29,21],[-18,45],[-27,34],[-32,7],[-34,-9],[-33,-4],[-32,-13],[-34,0],[-34,5],[-34,-1],[-33,-6],[-33,-6],[-34,-2],[-34,-2],[-33,-6],[-33,-7],[-34,-6],[-28,-27],[-19,-48],[-23,-39],[-15,-49],[-11,-53],[-26,-34],[-30,-25],[-33,-12],[-34,-11],[-33,18],[-31,19],[-30,23],[-29,13]],[[13259,13958],[-30,-6],[-32,6]],[[13795,13922],[-22,24],[-29,26],[-31,25],[-33,11],[-33,10],[-32,13],[-32,20],[-33,15],[-33,3],[-33,11],[-33,-3],[-32,-21],[-32,-14],[-28,-31],[-29,-30],[-32,-16],[-30,-5]],[[13833,13210],[4,8],[16,46],[15,52],[16,51],[11,56],[5,55],[-5,52],[4,58],[8,57],[-2,59],[-15,46],[-4,53],[-6,51],[-31,11],[-26,37],[-28,20]],[[14089,13068],[-6,-1],[-61,1],[-55,-7],[-20,-5],[-34,25],[-27,13],[-33,19],[-4,11],[-8,11],[-6,13],[-2,28],[0,21],[0,13]],[[14597,12529],[-6,16],[2,28],[-4,45],[-8,11],[-31,7],[-11,6],[-26,53],[-14,8],[-20,0],[-7,10],[-9,35],[-4,7],[-5,6],[-9,6],[-5,2],[-23,-12],[-21,-4],[-8,-5],[-4,-1],[-4,2],[-9,21],[-8,17],[-10,17],[-9,30],[-8,32],[-9,9],[-15,10],[-3,17],[7,26],[-3,36],[-16,20],[-12,2],[-26,-16],[-31,1],[-9,2],[-9,5],[-9,8],[-7,25],[-27,16],[-13,32],[-13,11],[-14,5],[-28,-5]],[[14819,12141],[-17,10],[-30,60],[-19,8],[-25,5],[-20,21],[-43,60],[-12,33],[-4,33],[0,15],[-3,16],[-5,15],[-7,17],[-11,19],[-8,13],[-4,16],[1,14],[-13,27],[-2,6]],[[15332,12219],[-21,-46],[-21,-8],[-46,10],[-22,-42],[-10,-18],[-18,-11],[-34,0],[-37,6],[-27,17],[-27,27],[-32,-11],[-28,-32],[-32,-54],[-20,-13],[-15,2],[-13,21],[-13,27],[-32,18],[-35,3],[-20,20]],[[15625,12365],[-12,-1],[-19,9],[-22,4],[-22,-15],[-19,-3],[-10,11],[-13,27],[-15,11],[-16,-1],[-32,-15],[-35,-3],[-13,-14],[-10,-25],[-6,-29],[-13,-32],[-8,-26],[-15,-32],[-13,-12]],[[15633,12369],[-8,-4]],[[3133,14627],[-511,2088]],[[3294,13891],[-161,736]],[[3408,13474],[-114,417]],[[4003,11263],[-595,2211]],[[4055,10902],[-52,361]],[[4350,8799],[-295,2103]],[[7610,10872],[-19,-21],[-26,-38],[-47,-143],[-37,-50],[-27,-61],[-26,-31],[-58,-129],[-43,-29],[-32,-15],[-81,26],[-23,2],[-13,6],[-11,7],[-15,9]],[[7603,12628],[-4,-7],[-12,-28]],[[7693,12778],[-25,-49],[-20,-36],[-8,-9],[-19,-27],[-18,-29]],[[7587,12593],[-4,-16],[-2,-56],[8,-54],[13,-51],[17,-49],[17,-50],[12,-51],[9,-56],[3,-55],[-6,-55],[-9,-52],[-7,-28],[-1,-25],[9,-47],[18,-40],[11,-29]],[[7675,11879],[5,-17],[4,-26]],[[5351,0],[-324,1614]],[[6530,9743],[-7,1],[-85,49],[-25,4]],[[6860,9814],[-50,2],[-48,2],[-73,-21],[-95,-53],[-64,-1]],[[6924,10331],[-7,-23],[-23,-81],[-12,-44],[15,-58],[22,-74],[-3,-41]],[[6900,9907],[-40,-93]],[[6916,10010],[-16,-103]],[[7152,10405],[-32,15],[-45,0],[-35,-2],[-60,-31],[-56,-56]],[[72013,81175],[648,1182],[4393,1349]],[[67314,80660],[-80,245]],[[67325,80559],[-4,57],[-7,44]],[[67325,80244],[-2,105],[13,47],[-11,163]],[[67321,79451],[15,126],[-11,667]],[[64999,84640],[26,80]],[[64811,84308],[20,42]],[[64831,84350],[96,130],[72,160]],[[65445,84599],[-97,51],[-118,87],[-51,20],[-40,57],[-51,4],[-63,-98]],[[65584,85553],[440,-529]],[[65594,84679],[-81,-65],[-68,-15]],[[66024,85024],[7,-83],[-394,-1364]],[[53603,84784],[-14,18],[-7,7]],[[53619,84762],[32,55]],[[53651,84817],[26,22]],[[53677,84839],[110,-10]],[[53787,84829],[58,23],[130,116]],[[53975,84968],[515,589]],[[54391,85631],[99,-74]],[[54490,85557],[1464,11]],[[66816,81536],[418,-631]],[[66946,73190],[-1,29],[-3,22],[-6,21],[-7,33],[3,15],[12,18],[4,20],[2,23],[-6,10],[-13,11],[-11,23],[-12,39],[-7,3],[-25,-28],[-17,-1],[-16,14],[-34,53],[-1,19],[11,28],[3,25],[-3,49],[-2,22],[9,41],[18,33],[22,15],[5,-3],[4,-12],[-5,-10],[-5,-24],[6,-6],[9,4],[6,22],[12,19],[18,22],[10,22],[-16,12],[-3,18],[3,18],[14,36],[-18,27],[-6,-2],[-7,-21],[-9,-14],[-15,-3],[-14,19],[-35,48],[1,10],[13,30],[6,-2],[11,-14],[8,3],[33,70],[6,-4],[34,-61],[18,17],[11,24],[-9,21],[-15,-8],[-16,1],[-8,14],[-7,22],[-11,14],[-14,8],[-20,0],[-17,17],[-16,0],[-12,4],[-2,19],[-4,55],[-5,36],[-6,42],[-5,26],[-20,17],[-6,14],[-5,21],[0,31],[-4,14],[-12,44],[-15,17],[-3,14],[7,27],[9,26],[20,43],[6,37],[1,24],[12,34],[29,41],[13,11],[12,-12],[8,-10]],[[55315,82963],[-58,35],[-9,14],[-7,16],[-1,2],[-1,2],[0,3],[2,2],[2,3],[-1,3],[-7,17],[-4,11],[-6,9],[-4,10],[-4,7],[-86,115],[-20,25],[-16,20],[-9,8],[-9,11],[-155,207],[-4,4],[-61,21],[-16,12],[-261,227],[-38,34],[-28,22],[-42,53],[-10,10],[-7,-1],[-6,-4]],[[55378,82781],[-9,26],[-35,72],[-7,66],[-12,18]],[[52793,85775],[-6,55],[-15,59],[-14,53],[-13,49],[-10,52],[-7,32],[-27,65],[-16,39],[-10,23],[-8,12],[-16,14],[-10,13],[-6,8],[-2,10],[-2,12],[-6,9],[-8,9],[-2,6],[-3,20],[-21,31],[-10,18],[-5,9]],[[52964,85506],[-19,21],[-30,35],[-33,37],[-21,35],[-30,53],[-27,46],[-5,11],[-3,10],[-3,21]],[[48646,90622],[-32,92],[-27,325],[-37,245],[-5,19]],[[65910,68217],[4,9],[5,14],[0,6],[-2,13],[-10,26],[-3,13],[2,18],[6,34],[11,24],[12,4],[3,-3],[3,-2],[5,2],[4,-1],[8,0],[7,-2],[8,-7],[9,3],[3,12],[3,23],[5,20],[2,22],[-1,29],[3,25],[7,25],[7,24],[13,23],[10,18],[13,12],[5,12],[3,15],[7,25],[10,19],[7,24],[12,25],[17,12],[13,3],[10,-7],[11,4],[15,7],[13,8],[8,17],[6,16],[16,8],[4,12],[-5,44],[8,26],[-4,26],[-3,10],[1,11],[-1,23],[2,17],[4,14],[9,22],[5,24],[8,27],[11,33],[6,16],[7,16],[1,19],[-2,10],[-1,13],[0,11],[-3,16],[-1,13],[-1,19],[5,24],[3,13],[15,21],[11,12],[7,12],[3,15],[-3,19],[-2,24],[2,32],[-7,17],[-14,17],[-7,11],[-4,10],[3,15],[9,11],[7,-8],[7,-5],[9,3],[16,-2],[12,7],[1,13],[0,10],[4,9],[5,10],[3,27],[3,28],[3,12],[0,10],[-3,7],[-14,13],[0,7],[3,18],[6,16],[4,7],[7,7],[9,-1],[10,-10],[7,-11],[3,-4],[5,-2],[12,3],[20,7],[15,10],[11,-2],[7,2],[5,8],[5,12],[0,13],[-3,10],[-5,8],[4,12],[7,15],[0,16],[-7,5],[-9,7],[-13,4],[-5,6],[-5,8],[-2,9],[-3,15],[-5,19],[-1,10],[3,13],[8,7],[11,1],[4,10],[2,12],[14,8],[7,-10],[7,-7],[8,-3],[11,7],[6,13],[15,8],[9,4],[8,11],[4,26],[1,13],[1,18],[-2,10],[4,8],[6,12],[1,24],[2,14],[11,15],[11,10],[-2,16],[-8,21],[-7,22],[-3,31],[-6,27],[-6,14],[-26,2],[-13,5],[-11,12],[-7,13],[1,15],[8,20],[11,5],[12,7],[8,22],[13,51],[0,26],[2,25],[8,26],[14,9],[11,19],[6,13],[15,-5],[7,12],[22,38],[14,26],[7,11],[20,42],[6,18],[4,14],[10,16],[13,15],[9,21],[8,19],[8,0],[14,-13],[16,-18],[11,-10],[5,-3],[6,6],[7,18],[9,24],[1,7],[-2,13],[-3,11],[-3,4],[-5,8],[-4,11],[-1,9],[-2,9],[-6,5],[-7,-3],[-5,-7],[-6,-6],[-11,-6],[-12,0],[-7,4],[-5,13],[-5,14],[-1,13],[3,20],[4,18],[2,28],[4,19],[7,21],[8,14],[11,11],[9,9],[9,16],[8,23],[-4,21],[0,15],[-7,17],[-11,10],[-13,12],[-14,2],[-12,2],[-4,11],[6,17],[11,13],[14,12],[16,9],[19,0],[19,-8],[14,-13],[13,-12],[8,-17],[5,-9],[8,3],[13,10],[6,12],[-3,11],[-6,11],[-11,17],[-8,13],[-5,16],[5,17],[6,13],[4,28],[-2,24],[0,18],[-5,14],[-8,10],[-22,-3],[-7,4],[-5,11],[-1,19],[-1,28],[7,23],[15,21],[14,25],[9,24],[6,21],[10,7],[15,-14],[18,-12],[20,-7],[23,-4],[23,-15],[19,-15],[17,-12],[17,-15],[7,-13],[14,-18],[19,-20],[11,-12],[18,-7],[7,-11],[12,-8],[14,2],[15,13],[15,24],[5,31],[12,30],[5,28],[1,14],[17,14],[9,15],[12,16],[11,22],[5,23],[0,23],[5,19],[-3,20],[-1,16],[6,14],[12,21],[8,14],[10,1],[10,-1]],[[55954,85568],[937,-32]],[[52547,83291],[5,-2],[10,3],[7,-5],[7,11],[2,1],[4,-5],[1,-1],[2,2],[5,9],[-1,5],[-3,7],[2,4],[4,0]],[[52592,83320],[6,-6],[5,-3]],[[52491,83265],[5,2],[3,-2],[2,-1],[5,1],[3,1],[2,1],[0,9],[1,2],[2,-2],[3,-3],[8,-1],[3,3],[4,7],[6,5],[5,5],[4,-1]],[[52623,83360],[4,17]],[[52627,83377],[3,18]],[[52608,83321],[10,23]],[[52603,83311],[5,10]],[[52618,83344],[5,16]],[[53619,84762],[-16,22]],[[53480,84286],[129,459],[10,17]],[[53467,84247],[9,21],[4,18]],[[53362,84003],[105,244]],[[54092,84242],[-239,172],[-131,193],[-24,38],[-26,39],[-18,29],[-10,12],[-11,16],[-14,21]],[[54292,84024],[-12,34],[-24,63],[-3,7],[-161,114]],[[54449,83861],[-16,-8],[-19,5],[-14,13],[-3,8],[-1,10],[3,33],[-6,37],[-6,8],[-7,6],[-40,11],[-12,-1],[-22,14],[-14,27]],[[49090,95402],[97,-4305]],[[53427,85053],[-4,6],[-6,5],[-6,1],[-6,0],[-41,-19],[-49,15],[-47,14],[-3,2],[-3,1],[-2,1],[-3,3],[-11,21],[-9,18],[-5,6],[-6,13],[-12,24],[-8,16],[-6,13],[-5,12],[-7,12],[-24,35],[-5,8],[-2,4],[-4,5],[-5,13],[-3,15],[-5,20],[-6,24],[-3,5],[-29,30],[-41,40],[-12,14],[-30,41],[-15,14],[-13,4],[-19,8],[-8,9]],[[53009,87111],[1382,-1480]],[[53432,85039],[-2,7],[-3,7]],[[53460,84975],[-11,12],[-17,52]],[[53582,84809],[-11,16],[-111,150]],[[50389,88228],[-4,5],[-71,42],[-63,38],[-102,84]],[[50534,88109],[-57,68],[-88,51]],[[51185,87379],[-6,6],[-33,28],[-39,33],[-16,5],[-34,6],[-33,33],[-13,13],[-16,35],[-11,7],[-11,3],[-8,5],[-17,19],[-10,12],[-7,0],[-7,-3],[-11,4],[-12,7],[-28,13],[-73,37],[-11,16],[-30,76],[-43,103],[-43,106],[-12,27],[-34,39],[-43,49],[-50,51]],[[52295,86650],[-1,2],[-8,9],[-12,3],[-15,6],[-11,4],[-18,6],[-12,8],[-17,17],[-14,15],[-11,12],[-6,5],[-2,4],[-8,6],[-14,16],[-17,17],[-8,7],[-5,8],[-4,8],[-2,2],[-2,10],[-6,55],[-4,7],[-8,8],[-7,10],[-4,6],[-9,7],[-31,30],[-21,18],[-29,28],[-39,36],[-6,6],[-8,6],[-9,9],[-3,3],[-3,3],[-5,5],[-13,6],[-9,8],[-5,1],[-41,-10],[-11,-2],[-7,4],[-9,12],[-23,22],[-31,25],[-28,16],[-17,10],[-9,5],[-4,1],[-4,-1],[-12,-9],[-10,-10],[-5,-5],[-11,-8],[-12,-3],[-24,1],[-14,0],[-17,2],[-7,2],[-18,9],[-7,2],[-26,13],[-8,4],[-13,8],[-30,17],[-11,7],[-13,7],[-9,5],[-21,11],[-29,17],[-8,7],[-6,4],[-13,7],[-11,5],[-42,21],[-13,9],[-19,15],[-20,16],[-9,8],[-27,22],[-15,14],[-12,9],[-2,2],[-8,6]],[[50993,89240],[2016,-2129]],[[52410,86550],[-2,-1],[-4,-3],[-8,-5],[-7,1],[-28,32],[-8,9],[-31,37],[-23,26],[-4,4]],[[52576,86373],[-6,6],[-6,9],[-5,9],[-10,21],[-7,8],[-16,14],[-2,2],[-2,0],[-2,1],[-2,3],[-3,3],[-14,12],[-7,8],[-8,10],[-5,6],[-4,5],[-14,19],[-11,12],[-8,8],[-7,5],[-9,10]],[[52529,86397],[4,9],[7,3],[5,-4],[8,-25],[10,-5],[7,0],[6,-2]],[[49750,88751],[-23,25]],[[50149,88397],[-169,136],[-15,15],[-20,18],[-48,43],[-32,32],[-16,15],[-34,32],[-21,20],[-21,22],[-23,21]],[[49345,90944],[1648,-1704]],[[48326,96119],[69,285],[6,26],[5,28],[66,330],[111,364]],[[48156,95357],[5,80],[34,145],[58,238],[20,83],[45,184]],[[48545,91303],[-8,28],[-23,79],[-33,108],[-30,99],[-32,103],[-28,91],[-68,231],[-61,201],[-18,67],[-53,209],[-85,637],[-21,485],[-6,84],[-15,203],[-11,155],[-26,355],[41,341],[85,446],[3,132]],[[49050,97287],[40,-1885]],[[98261,16931],[-41,72]],[[48756,90368],[-3,8],[-33,45],[-24,67],[-42,113]],[[48998,89928],[-2,3],[-4,1],[-6,2],[-6,3],[-8,4],[-22,10],[-31,13],[-6,3],[-5,4],[-6,9],[-5,8],[-12,31],[-11,27],[-12,32],[-58,144],[-20,62],[-9,29],[-2,3]],[[49727,88776],[-285,364],[-18,39],[-82,101],[-61,76],[-35,70],[-248,502]],[[53092,83366],[3,2],[41,13],[9,11]],[[53005,83289],[1,-15],[2,-10],[5,-6]],[[53256,83670],[32,144]],[[53231,83552],[4,19]],[[53235,83571],[21,99]],[[53157,83470],[4,8],[6,6],[11,4],[8,1]],[[53145,83392],[6,18],[0,33],[6,27]],[[53186,83489],[14,11],[17,22],[14,30]],[[52781,83346],[5,-5]],[[52786,83341],[10,-7]],[[52796,83334],[18,-11]],[[52814,83323],[11,0],[11,-4]],[[52836,83319],[10,0]],[[52846,83319],[11,10],[18,21],[8,9]],[[53292,83832],[2,12],[68,159]],[[53288,83814],[4,18]],[[52883,83359],[14,1],[8,-3],[9,3],[8,5],[10,7]],[[52932,83372],[8,-2],[7,-8],[5,-8],[5,-3]],[[52957,83351],[2,-3],[4,-3],[7,-1],[7,-2],[3,-4]],[[52980,83338],[2,-5],[2,-9],[2,-7],[3,-5]],[[52989,83312],[2,-5],[8,-8],[3,-4],[3,-6]],[[53013,83258],[11,-7],[16,11],[15,18],[17,63],[20,23]],[[52630,83395],[3,3],[6,6],[4,3]],[[52643,83407],[10,-5]],[[52653,83402],[13,-6],[10,7],[8,13]],[[52684,83416],[1,3],[6,5],[8,1]],[[52705,83422],[9,-10]],[[52714,83412],[12,-11],[10,1]],[[52736,83402],[10,4]],[[52746,83406],[8,-1],[8,-9]],[[52762,83396],[5,-11],[5,-20],[9,-19]],[[62659,83446],[-3,12],[-5,31],[-7,27],[-6,10],[-12,7],[-94,-17],[-62,0],[-99,1],[-47,2],[-10,-2],[-7,-4],[-61,-45],[-7,-3],[-6,1],[-28,7],[-15,4],[-13,-2],[-13,-11],[-55,-53],[-9,-8],[-13,-4],[-12,-3],[-25,-13],[-6,-4],[-11,-13],[-10,-8],[-9,-7],[-11,-2],[-7,9],[-7,12],[-2,36]],[[62659,83446],[10,7],[14,6],[6,3],[10,7],[19,15],[6,11],[10,18],[12,14],[12,16],[4,11],[2,9],[-3,16],[2,16],[5,27],[1,19],[3,17],[5,16],[4,11],[1,13],[0,13],[0,15],[2,9],[10,23],[6,21],[5,11],[5,10],[3,5],[4,12],[10,34],[10,26],[4,15],[5,19],[10,40],[5,20],[5,11],[4,8],[10,14],[9,15],[8,9],[5,7],[4,8],[3,7],[1,13],[1,12],[2,11],[5,11],[6,8],[4,7],[5,7],[5,10],[2,5],[2,10],[1,11],[0,10],[1,17],[2,9],[11,28],[10,24],[3,11],[2,9],[1,13],[2,15],[9,25],[3,16],[4,25],[2,10],[6,23],[4,17],[2,20],[0,21],[7,22],[6,27],[4,27],[5,17],[11,19],[8,15],[4,15],[5,17],[7,18],[3,15],[1,11],[-1,12],[-4,28],[-15,61],[-10,14],[-13,23],[-7,19],[-1,21],[6,34],[2,17],[1,11],[-4,14],[-10,17],[-3,12],[1,10],[5,15],[11,18]],[[62118,81741],[39,-52],[45,-24],[88,11],[67,-31],[28,2],[21,25],[9,148],[23,28],[103,9],[29,35],[16,110],[48,42],[67,24],[26,-7],[20,-22],[32,-74],[40,-43],[38,-11],[42,13],[24,32],[12,36],[17,75],[26,15],[42,-51],[53,-80],[15,-8]],[[60808,80021],[32,-23],[15,-8],[18,8],[10,47],[5,141],[4,116],[-4,62]],[[61251,73038],[-3,63],[-18,47],[-23,40],[-25,34],[-23,41],[-16,48],[-11,53],[-26,56],[-5,49],[0,58],[-14,48],[-8,54],[-1,53],[-6,58],[-5,55],[-22,66],[-32,17],[-30,-5],[-47,-27],[-36,1],[-23,22],[-5,22],[10,50],[23,43],[25,48],[32,47],[6,41],[2,64],[-14,63],[-16,46],[-17,47],[-24,35],[-29,33],[-31,10],[-37,9],[-31,-2],[-27,31],[-17,46],[-3,54],[-3,53],[-4,60],[-7,53],[-17,46],[-22,40],[-26,38],[-27,38],[-32,21],[-31,16],[-33,6],[-34,5],[-32,10],[-26,33],[-9,54],[-7,53],[-9,57],[-4,54],[-2,56],[-2,54],[-10,55],[-13,57],[-20,43],[-15,47],[-5,50],[1,57],[5,51],[7,57],[-2,61],[-4,57],[-3,52],[0,54],[-1,54],[-10,48],[-22,38],[-25,33],[-25,36],[-31,22],[-29,25],[-29,24],[-30,42],[-10,56],[0,55],[0,55],[2,56],[5,51],[66,127],[23,41],[9,74],[-37,76],[-20,64],[-9,52],[-6,54],[0,55],[-5,52],[-14,50],[-29,29],[-33,14],[-34,8],[-33,-2],[-35,-4],[-33,-8],[-61,34],[-5,46],[22,50],[63,53],[44,70],[10,51],[-9,50],[-12,55],[-24,42],[-21,42],[0,54],[9,50],[27,33],[26,34],[24,33],[24,36],[27,43],[-7,54],[-12,56],[-24,41],[-28,25],[-31,29],[-31,20],[-30,25],[-37,40]],[[59708,78179],[-16,29],[-24,18],[-9,44],[-3,35],[-13,12],[-31,13],[-12,29],[9,62],[3,102],[5,65],[0,105],[1,82],[-12,15],[-28,4],[1,24],[53,70],[-4,42],[-18,18],[6,41],[38,40],[24,19],[24,38],[11,60],[14,41],[-7,53],[21,33],[10,47],[23,54],[-2,79],[1,24],[10,29],[-10,25],[-20,10],[7,81],[8,36],[-8,23],[-17,24],[-2,35],[9,26],[-4,61],[0,61],[-6,24],[36,127],[21,39],[1,39],[-13,11],[-27,-4],[-8,30],[12,81],[17,33],[7,63],[12,9],[28,-5],[13,41],[2,31],[34,55],[11,62],[26,11],[34,22],[27,26],[23,42],[6,21],[20,100],[20,93],[6,31],[25,47],[43,72],[-1,22],[-5,21],[7,26],[50,51],[15,57],[32,58],[24,42],[12,29],[5,83],[-3,35],[36,65],[23,37],[9,31],[29,23],[13,56],[7,73],[9,42],[-11,35],[-18,23],[-8,122],[15,57],[35,75],[13,36],[-1,99],[1,65],[13,80],[17,56],[9,18],[10,10],[9,3],[9,3],[7,9],[8,21],[6,33],[4,19],[6,24],[13,19],[19,21],[10,16],[14,21],[15,26],[14,36],[12,51],[12,38],[20,32],[9,27],[16,27],[40,34],[19,22],[20,8],[19,0],[40,-22],[18,-7],[17,-3],[20,7],[13,7],[34,31],[9,13],[7,22],[-1,13],[0,21],[17,21],[7,12],[-1,26]],[[68847,80180],[3166,995]],[[59512,77253],[6,15],[16,28],[22,14],[2,14],[-4,23],[13,20],[21,9],[11,23],[33,16],[32,-7],[18,15],[16,21],[8,29],[6,3],[33,12],[7,-9],[8,-17],[17,-12],[16,22],[19,10],[10,17],[15,42],[-2,11],[-9,14],[2,38],[-1,20],[-9,6],[-12,-5],[-16,4],[-12,24],[-9,35],[-7,27],[-6,37],[4,35],[9,23],[12,2],[12,19],[-3,40],[-13,16],[-10,7],[-8,33],[8,17],[12,18],[5,17],[-19,76],[-22,67],[-23,31],[-12,26]],[[59887,78287],[1,38],[3,54],[12,51],[16,46],[21,40],[32,28],[36,7],[32,-1],[33,-8],[33,-4],[31,17],[27,35],[20,44],[10,53],[2,57],[-13,110],[-18,109],[-7,46],[-19,45],[-31,22],[-33,14],[-25,35],[-2,50],[15,26],[40,36],[33,12],[33,-12],[32,-19],[32,-10],[31,-18],[33,5],[30,15],[33,-5],[33,-25],[28,-33],[29,-27],[38,-5],[22,47],[18,46],[14,47],[9,57],[5,52],[12,51],[6,40],[10,30],[48,26],[31,15],[13,58],[-3,59],[-16,48],[-20,44],[-7,49],[16,26],[40,3],[37,-10],[30,20],[29,34],[10,51],[-10,42],[-68,59],[-10,21],[2,28],[16,10],[33,-9],[53,-38]],[[60990,83160],[-8,-3],[-9,-4],[-13,0],[-9,1]],[[60934,83047],[-3,14],[0,24],[9,30],[11,39]],[[61173,83312],[-4,5],[-5,8],[-8,3],[-7,-1],[-5,-9],[-13,-47],[-8,-26],[-10,-29],[-15,-33],[-11,-13],[-9,-11],[-14,-3],[-13,3],[-14,7],[-21,5],[-11,-6],[-6,-3],[-9,-2]],[[61233,83364],[-13,-14],[-6,-12],[-5,-9],[-11,-9],[-14,-4],[-11,-4]],[[61282,83382],[-10,3],[-7,-3],[-7,-9],[-19,-8],[-6,-1]],[[61977,83511],[-5,9],[-7,15],[-4,2],[-11,0],[-12,2],[-18,13],[-5,5],[-5,12],[-13,50],[-10,31],[-2,5],[-4,1],[-15,1],[-49,5],[-70,8],[-73,8],[-16,-10],[-55,-41],[-57,-40],[-61,-47],[-6,-10],[-14,-38],[-32,-88],[-24,-25],[-22,-16],[-13,3],[-9,6],[-7,1],[-19,-7],[-12,7],[-16,-3],[-29,12]],[[61987,83406],[0,13],[0,15],[-9,34],[-3,11],[0,11],[2,21]],[[60839,80857],[23,26],[31,23],[35,4],[34,-8],[33,-7],[34,13],[31,25],[25,37],[5,52],[-24,31],[-25,28],[-23,40],[-27,39],[-6,56],[6,35],[34,36],[18,-6],[28,-49],[41,-58],[31,-25],[33,-14],[34,-2],[31,20],[26,33],[21,42],[18,47],[17,47],[4,65],[-17,34],[-33,30],[-12,35],[19,20],[51,-2],[17,1]],[[60888,80364],[-10,53],[-17,49],[-22,45],[-19,48],[-10,52],[4,57],[34,23],[33,-20],[39,-20],[41,5],[36,21],[17,36],[-2,39],[-26,17],[-52,-2],[-46,0],[-39,31],[-13,32],[3,27]],[[61352,81505],[65,16],[26,-23],[-8,-68],[24,-24],[32,29],[20,112],[14,76],[30,57],[31,-1],[38,-8],[29,24],[17,70],[20,167],[14,42],[16,3],[69,-125],[55,-16],[56,4],[124,-154],[35,2],[47,59],[12,-6]],[[60920,87932],[2925,288]],[[63024,84977],[24,31],[15,91],[24,59],[-21,38],[-10,24],[-5,48]],[[63051,85268],[794,2952]],[[63845,88220],[595,-1411]],[[64440,86809],[435,-339]],[[64875,86470],[709,-917]],[[64099,83650],[44,56],[42,20],[49,-7],[35,23],[14,38],[-10,87],[2,28],[13,42],[18,31]],[[60694,71326],[-10,68],[24,127],[44,46],[28,-12],[30,-8],[33,-2],[28,13],[22,41],[-4,52],[-8,43],[-17,43],[-28,30],[-31,23],[-31,14],[-39,42],[-16,60],[-4,82],[12,43],[19,50],[21,37],[23,31],[26,39],[7,23],[8,50],[1,58],[-11,53],[-13,57],[0,60],[10,42],[18,40],[20,37],[28,30],[32,22],[32,18],[33,14],[49,29],[31,76],[-20,138],[19,41],[32,16],[33,4],[33,4],[33,6],[33,13],[27,19]],[[60664,70528],[-8,52],[8,55],[13,44],[33,5],[32,18],[29,19],[31,18],[28,29],[19,44],[7,52],[-4,57],[-16,49],[-19,46],[-23,41],[-32,38],[-19,33],[-24,37],[-14,50],[-7,57],[-4,54]],[[60678,69168],[-27,45],[-15,41],[-28,45],[-14,51],[13,49],[22,40],[21,43],[24,39],[23,42],[12,56],[20,50],[22,36],[18,48],[12,55],[8,52],[-1,54],[-1,57],[-2,50],[-4,14],[-15,36],[-32,24],[-34,9],[-32,16],[-27,34],[-15,53],[5,44],[20,63],[11,53],[12,44],[0,49],[-10,68]],[[63471,82031],[69,-4],[34,52],[23,95],[-8,50],[-30,14],[-87,-51],[-18,23],[-6,88],[-44,124],[-6,73],[-28,97],[-4,64],[9,37],[28,39],[32,37],[37,117],[34,75],[13,96],[28,39],[48,26],[60,67],[58,27],[47,8],[37,27],[72,77],[80,116],[63,51],[87,155]],[[63088,81943],[16,24],[11,126],[37,22],[28,-3],[41,-23]],[[63221,82089],[37,-32],[16,-51],[-6,-69],[11,-24],[52,11]],[[63331,81924],[111,99],[29,8]],[[67302,79282],[19,169]],[[67294,79200],[8,82]],[[67259,78825],[4,116],[8,71],[23,188]],[[67243,78651],[0,53],[12,38],[4,83]],[[67225,78525],[18,126]],[[67220,78483],[0,20],[5,22]],[[67339,76938],[-1,14],[2,26],[-9,34],[-11,25],[-6,19],[-10,29],[-10,21],[-9,12],[-3,15],[1,14],[7,17],[8,11],[8,18],[7,24],[-9,11],[-8,-9],[-8,0],[-4,15],[-11,21],[-28,6],[-3,21],[-1,20],[-7,17],[-13,15],[-2,10],[8,20],[22,5],[6,19],[-6,11],[-8,-1],[-12,-9],[-9,-10],[-8,0],[-5,10],[-1,11],[4,17],[7,13],[8,6],[8,1],[18,-9],[15,8],[8,8],[7,13],[0,30],[2,16],[0,16],[-10,0],[-7,-5],[-2,26],[2,17],[1,10],[3,11],[5,9],[11,11],[7,9],[9,17],[7,16],[1,22],[4,12],[11,5],[5,13],[2,15],[3,5],[2,3],[4,2],[3,2],[5,3],[2,11],[-10,12],[-3,20],[4,20],[8,10],[5,7],[1,9],[-8,20],[-11,13],[-13,23],[-11,30],[-5,19],[-4,24],[4,32],[9,17],[10,7],[17,9],[13,9],[11,11],[11,16],[9,14],[7,20],[4,16],[0,17],[-4,17],[-6,10],[-12,5],[-13,1],[-9,5],[-11,15],[-13,12],[-15,11],[-7,9],[-8,10],[-13,5],[-15,2],[-6,9],[-3,12],[2,19],[3,14],[2,29],[-11,18],[-11,37],[-7,20],[-7,28],[-4,23],[-10,57],[-1,7]],[[66851,74629],[6,-8],[16,-14],[17,-1],[10,27],[8,33],[13,33],[3,63],[8,53],[6,23],[4,51],[5,14],[12,19],[5,47],[-1,16],[-10,9],[-12,1],[-1,8],[11,34],[3,40],[7,31],[16,31],[5,11],[-1,22],[-9,21],[3,17],[23,34],[37,30],[29,46],[15,34],[26,27],[21,6],[22,20],[22,12],[18,6],[6,17],[9,8],[13,2],[14,0],[17,2],[12,2],[6,4],[8,9],[7,14],[9,18],[6,21],[5,17],[9,9],[12,8],[10,9],[8,4],[2,11],[-1,16],[-3,20],[-6,23],[-7,22],[-4,14],[3,16],[4,18],[4,19],[1,16],[-6,11],[-8,6],[-13,3],[-10,7],[-1,9],[2,12],[7,5],[9,0],[12,-3],[8,14],[5,16],[10,15],[-3,13],[-14,12],[-4,10],[-10,33],[3,10],[7,-1],[6,-7],[4,-9],[15,1],[9,9],[3,19],[0,16],[22,65],[11,31],[6,20],[1,11],[-7,14],[-7,29],[2,28],[-8,17],[-6,11],[-3,13],[2,18],[0,12],[-7,10],[-10,-2],[-6,-16],[3,-8],[9,-10],[-1,-18],[-12,-12],[-8,0],[-4,11],[1,18],[4,18],[-5,22],[1,24],[-2,22],[-12,8],[-12,-12],[-7,-9],[-22,3],[-10,-5],[-13,10],[-2,14],[10,25],[12,13],[11,4],[6,18],[-2,22],[-15,20],[-1,13],[9,25],[2,12],[-5,11],[-8,0],[-10,-11],[-11,0],[-11,7],[-9,22],[-13,26],[2,7],[5,3],[8,-2],[10,-17],[12,2],[11,29],[9,8],[2,1],[21,0],[7,5],[6,11],[10,25],[7,17],[7,10],[4,5],[-1,7],[-14,18],[-3,9],[1,24],[-17,26],[-2,13],[5,17],[5,16],[5,32],[1,19],[-2,12],[0,12],[12,26],[2,9],[-2,9],[-9,4],[-12,-2],[-12,8],[-10,0],[-12,-6],[-6,0],[-3,7],[0,13],[5,19],[9,14],[9,5],[12,2],[9,-3],[15,-13],[7,0],[5,10],[1,11],[-3,14],[-3,13]],[[98304,16857],[-43,74]],[[64306,83968],[11,20],[48,42],[52,25],[27,5]],[[65637,83577],[404,-750]],[[66041,82827],[302,-483]],[[66343,82344],[473,-808]],[[85353,92908],[804,-658]],[[77054,83706],[220,2829]],[[83238,76533],[1637,6880]],[[83186,74921],[52,1612]],[[83053,73451],[133,1470]],[[82918,71663],[135,1788]],[[77274,86535],[293,2098]],[[83084,71233],[-166,430]],[[83268,70404],[-184,829]],[[69649,20162],[-667,23]],[[69649,20162],[79,-60]],[[69728,20102],[101,-76]],[[69829,20026],[250,-41]],[[70079,19985],[252,-26]],[[70331,19959],[105,-9]],[[70436,19950],[550,-68]],[[70986,19882],[-22,-490]],[[70973,19220],[-9,172]],[[70733,18800],[45,36],[47,165],[58,75]],[[70883,19076],[101,-8]],[[70986,19882],[515,-94]],[[97035,18995],[-28,47]],[[70984,19068],[-11,152]],[[71501,19788],[245,194]],[[73462,34036],[53,169]],[[73427,33001],[-9,58],[-20,61],[6,74],[2,170],[18,75],[4,76],[-5,35],[5,63],[7,82],[-24,149],[10,91]],[[73439,32927],[-12,74]],[[73710,32611],[-29,15],[-46,6],[-38,47],[-25,39],[-39,38],[-44,38],[-23,38],[-25,78],[-2,17]],[[74061,31902],[-194,562],[-157,147]],[[65896,51562],[-18,-6],[-14,-2],[-21,10]],[[66099,51056],[-31,-16],[-22,17],[-22,54],[-17,46],[-19,45],[1,53],[25,47],[28,30],[13,55],[18,52],[-7,62],[-20,28],[-26,30],[-10,52],[-18,44],[-26,-15],[-28,-42],[-18,-17]],[[66369,51158],[-17,43],[-32,37],[-31,-9],[-36,-10],[-33,2],[-33,-6],[-27,-30],[-24,-42],[-16,-47],[-21,-40]],[[66779,51028],[-21,-3],[-35,13],[-33,-8],[-34,-24],[-22,-37],[-10,-46],[8,-66],[-3,-56],[-22,-10],[-14,24],[0,46],[-4,30],[-19,60],[-7,61],[26,51],[30,29],[24,34],[8,55],[-15,50],[-15,51],[-17,48],[-30,23],[-28,28],[-33,16],[-28,-24],[-16,-57],[-7,-54],[10,-52],[14,-51],[-2,-54],[-31,-18],[-25,22],[-31,24],[-28,25]],[[67004,50877],[-22,-8],[-26,-8],[-31,-5],[-35,16],[-29,28],[-26,40],[-23,34],[-17,40],[-16,14]],[[67842,50747],[-33,15],[-35,11],[-29,19],[-30,25],[-29,25],[-25,39],[-20,41],[-6,41],[5,53],[0,54],[-3,60],[-5,49],[-5,60],[-13,45],[-15,50],[-22,39],[-32,20],[-34,8],[-30,-25],[-3,-52],[-13,-50],[-17,-49],[-23,-41],[-29,2],[-34,1],[-27,0],[-39,-5],[-29,-19],[-26,-41],[-24,-44],[-25,-31],[-28,-29],[-31,-28],[-28,-21],[-33,-31],[-29,-25],[-15,-17]],[[68243,50834],[-6,9],[-4,13],[-8,10],[-18,-6],[-15,-17],[-37,-60],[-21,-41],[-17,-45],[-7,-30],[-15,-49],[-15,-48],[-21,-49],[-21,-27],[-30,-3],[-29,26],[-28,34],[-22,35],[-20,44],[-17,47],[-21,41],[-29,29]],[[68839,49604],[-32,-15],[-22,27],[-2,31],[4,25],[4,25],[11,17],[17,10],[24,-1],[20,-1],[21,8],[11,22],[2,25],[-3,30],[-9,24],[-9,13],[-15,6],[-33,2],[-33,10],[-19,33],[-6,50],[-17,11],[-41,-56],[-41,-15],[-28,31],[-2,37],[11,44],[45,23],[16,18],[3,59],[-17,51],[-34,49],[-32,15],[-23,10],[-33,-6],[-22,37],[3,54],[2,55],[4,55],[4,57],[6,52],[22,64],[13,28],[-2,43],[-36,46],[-55,3],[-31,-2],[-21,8],[-15,22],[-1,53],[6,55],[6,54],[-14,51],[-23,40],[-27,36],[-24,14],[-25,-11],[-12,-48],[3,-42],[4,-32],[14,-71],[-5,-51],[-19,-19],[-33,-2],[-26,26],[-16,22]],[[69767,49122],[-14,48],[2,55],[-3,55],[-13,52],[-24,44],[-22,39],[-18,47],[-15,46],[-9,54],[1,56],[4,55],[7,54],[7,54],[3,56],[-5,54],[-7,54],[-1,56],[0,55],[-6,55],[-16,50],[-25,38],[-31,14],[-36,10],[-32,17],[-32,19],[-21,28],[7,80],[-8,35],[-20,3],[-35,-59],[-18,-50],[-20,-41],[-29,-28],[-29,-12],[-34,0],[-32,14],[-36,24],[-29,-11],[-33,-19],[-30,-27],[-27,-35],[-31,-18],[-32,-24],[-21,-44],[-13,-51],[-9,-54],[-3,-55],[4,-55],[4,-54],[-15,-47],[-24,-38],[-31,-25],[-28,-29],[-24,-35],[-26,-28]],[[65005,37186],[0,8],[2,24],[0,13]],[[65202,36664],[-7,9],[-8,10],[-39,36],[-13,11],[-26,24],[-17,14],[-8,8],[-6,6],[-7,5],[-22,20],[-7,8],[-6,10],[-6,14],[-5,17],[-3,17],[-1,17],[0,29],[0,35],[0,30],[0,39],[1,24],[-1,32],[-1,30],[-2,21],[-2,6],[-6,15],[-4,16],[-1,9]],[[65668,36033],[-1,0],[-4,0],[-6,6],[-10,10],[-2,5],[-25,22],[-31,27],[-30,25],[-30,26],[-29,25],[-30,26],[-31,26],[-11,12],[-8,13],[-6,10],[-17,49],[-16,46],[-16,46],[-8,22],[-17,31],[-12,23],[-15,30],[-12,20],[-25,35],[-24,32],[-27,35],[-23,29]],[[65705,35867],[1,2],[0,10],[0,11],[1,9],[2,8],[2,4],[2,10],[1,10],[2,13],[0,13],[1,14],[-1,4],[0,5],[-6,10],[-5,18],[-7,3],[-6,4],[-7,3],[-5,0],[-4,6],[-6,9],[-2,0]],[[65705,35867],[2,-2],[3,-3],[10,-1],[3,-1],[3,-5],[5,-1],[8,0],[5,0]],[[70093,17451],[22,14],[29,12],[30,69],[32,74],[40,71],[14,44],[36,109],[8,9],[88,187],[100,44],[6,12],[19,165],[30,36],[-3,19],[-10,35],[-1,137],[52,87],[66,73],[70,74],[12,78]],[[73923,46768],[-27,-35],[-43,-29],[-37,1],[-29,13],[-26,25],[-16,39],[-25,9],[-31,0],[-32,28],[-17,34],[-6,52],[-1,55],[-9,55],[-31,26],[-46,-13],[-44,-27],[-25,-15],[-37,3],[-31,-8],[-25,-30],[-7,-30],[-11,-52],[-13,-51],[-27,-25],[-34,-5],[-39,-24],[-14,-42],[-11,-52],[-20,-41],[-28,-22],[-49,-9],[-33,-4],[-30,-18],[-27,-26],[-30,-5],[-36,10],[-33,25],[-53,36],[-39,21],[-30,8],[-29,1],[-18,-8],[-111,-50],[-27,-11]],[[75039,46632],[-2,-19],[-2,-29],[-19,-44],[-20,-38],[-4,-63],[2,-56],[-1,-55],[-9,-52],[-26,-28],[-29,8],[-30,23],[-29,31],[-26,32],[-25,43],[-29,13],[-33,-7],[-31,13],[-22,34],[-10,53],[-15,50],[-26,36],[-29,30],[-30,26],[-20,39],[-6,54],[-7,55],[-14,49],[-27,38],[-32,10],[-33,16],[-33,6],[-48,-29],[-26,5],[-26,29],[-17,53],[-20,44],[-20,9],[-22,-13],[-20,-31],[-10,-64],[-19,-38],[-41,-35],[-32,-27],[-31,-5],[-35,-2],[-32,-4],[-35,3],[-31,-9],[-21,-4],[-13,-14]],[[75598,47400],[-13,-36],[-12,-61],[-9,-54],[-18,-42],[-30,-25],[-32,-17],[-29,-33],[-24,-41],[-23,-40],[-19,-44],[-15,-27],[-40,-29]],[[75334,46951],[-28,-22],[-42,8],[-32,7],[-31,4],[-30,-11],[-31,-25],[-29,-28],[-25,-38],[-18,-46],[-11,-55],[-7,-52],[-8,-40]],[[75910,47272],[-29,29],[-33,21],[-30,24],[-28,24],[-29,30],[-31,26],[-33,18],[-32,5],[-33,-12],[-30,-27],[-4,-10]],[[76252,46242],[0,18],[8,60],[20,53],[17,67],[-1,78],[-23,51],[-44,25],[-66,-16],[-28,9],[-35,68],[-5,42],[9,107],[-10,77],[8,86],[-7,71],[-3,82],[-11,63],[-24,29],[-87,49],[-40,-11],[-20,22]],[[76270,45613],[-7,31],[-19,42],[-58,71],[-30,55],[-4,29],[0,32],[9,36],[36,31],[15,35],[12,79],[23,60],[3,59],[2,36],[0,8]],[[76664,45211],[14,-37],[-7,-31],[-28,-63],[-19,-54],[-33,-68],[-32,-16],[-39,26],[-14,-7],[-15,-59],[-21,-45],[-21,-17],[-33,11],[-19,26],[-4,35],[-5,68],[-27,49],[-40,53],[-12,82],[-13,72],[-12,66],[-14,55],[-17,42],[1,53],[16,49],[4,56],[-4,56]],[[76896,44410],[2,15],[-3,53],[-25,55],[-33,26],[-32,-9],[-22,4],[-3,12],[13,71],[27,55],[55,51],[15,36],[7,39],[-3,70],[-11,41],[-6,54],[16,44],[37,51],[5,33],[-16,30],[-39,-7],[-33,-37],[-22,-23],[-27,10],[-19,79],[3,54],[-3,53],[-17,41],[-48,70],[-24,-3],[-32,-25],[-25,-43],[12,-42],[10,-34]],[[73051,35236],[-66,89],[-53,121]],[[67085,22744],[-276,900],[-18,234]],[[67152,22530],[-67,214]],[[67856,21855],[-704,675]],[[71376,46430],[34,-8],[32,7],[31,16],[24,32],[-1,55],[-10,50],[-20,30],[-28,44],[-7,47],[21,51],[19,45],[2,51],[-23,18],[-37,-5],[-43,-15],[-35,2],[-28,20],[-29,32],[-29,29],[-26,9],[-15,4]],[[71368,45632],[-16,19],[-20,42],[-27,61],[-33,40],[-21,28],[-2,32],[19,49],[26,30],[23,41],[22,41],[24,38],[18,44],[9,53],[-6,53],[-24,46],[-16,38],[-23,63],[0,44],[22,39],[33,-3]],[[66262,27467],[-15,540]],[[71940,45566],[-37,20],[-22,-19],[-24,-2],[-14,23],[-21,52],[-36,26],[-18,14],[-22,8],[-36,-11],[-25,-35],[-28,-25],[-40,-2],[-30,-43],[-15,-30],[-22,-44],[-34,-36],[-33,-6],[-21,23],[-14,39],[-19,68],[-20,15],[-30,20],[-11,11]],[[72391,46071],[-28,-52],[-17,-59],[-13,-85],[-21,-60],[-45,-57],[-48,-35],[-106,-13],[-29,-28],[-14,-61],[-8,-94],[-25,-57],[-28,-23],[-27,16],[-19,50],[-23,53]],[[72613,46574],[-25,-1],[-21,0],[-30,-24],[-23,-45],[-12,-52],[-7,-55],[-4,-55],[-3,-55],[-8,-53],[-21,-40],[-21,-45],[-24,-39],[-23,-39]],[[59182,29201],[-5,100],[20,36],[16,27],[-7,33],[-9,52],[-3,45],[2,46],[-20,68],[3,53],[-4,55],[9,23],[9,27],[11,20],[24,6],[2,52],[31,70],[2,80],[-2,53],[-3,86]],[[58866,28544],[14,47],[20,32],[13,36],[20,22],[44,63]],[[58977,28744],[16,45],[9,43],[23,40],[16,70],[31,50],[6,13],[7,14]],[[66466,34995],[-2,901]],[[66471,34871],[-5,124]],[[66492,34023],[-21,848]],[[66533,33878],[-41,145]],[[66524,33277],[9,601]],[[66512,32822],[12,455]],[[66506,32601],[6,221]],[[66498,32374],[8,227]],[[66467,32011],[31,363]],[[66421,31585],[46,426]],[[66400,31414],[21,171]],[[66351,30836],[49,578]],[[66307,30243],[44,593]],[[66221,28801],[86,1442]],[[66218,28722],[3,79]],[[66239,28167],[-21,555]],[[66247,28007],[-8,160]],[[52459,60216],[9,7],[10,10],[3,13],[-7,60],[-1,51],[13,49],[10,25],[13,14],[15,7],[19,-15],[20,-18],[13,-10],[35,4],[16,12],[5,22],[-3,54],[-9,55],[-14,41],[-19,37],[-19,60],[-16,47],[-21,31],[-10,25],[2,28],[12,51],[21,42],[22,42],[17,47],[30,15],[25,-38],[32,-20],[33,16],[5,24],[2,30],[-9,53],[10,49],[8,17]],[[54131,61757],[10,-30],[9,-53],[-4,-97],[9,-30],[21,-23],[32,-3],[23,17],[19,36],[46,54],[19,55],[-7,46],[-12,53],[8,35],[53,36],[26,38]],[[54391,61900],[7,8],[7,6],[21,8],[19,-7],[13,-22],[13,-16],[31,-7],[27,9],[34,-22],[36,-45],[24,-26],[39,-8],[23,2],[15,-19],[7,-23],[-4,-42],[-22,-95],[6,-44],[13,-38],[22,-20],[72,29],[48,-31],[39,-34],[44,-10],[86,-28],[75,-1],[24,9],[40,66],[26,-2],[14,-30],[27,-93],[22,-20],[55,10],[13,24]],[[55314,61407],[9,36],[5,43],[-4,57],[13,79],[24,64],[43,59],[20,9],[36,-15],[27,4],[28,20],[29,-4],[38,-51],[41,-6],[50,30],[32,1],[44,-21],[34,-18],[48,-47],[24,-34],[18,1],[17,52],[41,-14],[20,-38]],[[55951,61614],[16,-41],[31,-26],[27,2],[22,37],[7,54],[6,50],[9,54],[15,50],[16,41],[18,51],[31,24],[33,-9],[30,-25],[30,-5],[28,21],[34,25],[29,31],[30,27],[23,36],[9,55],[22,40],[32,15],[34,-1],[16,2],[40,53],[9,15]],[[56555,62201],[6,12],[18,47],[17,52],[17,49],[3,56],[18,52],[23,25],[37,-9],[19,4],[35,46],[29,5],[36,-9],[32,-18],[33,-18],[36,-13],[36,4],[23,-20],[33,-11],[23,3],[27,13],[48,1],[33,-7],[31,8],[21,29],[11,58],[11,64],[14,39],[19,14],[44,-32]],[[57300,62632],[18,-28],[27,-30],[23,3],[24,39],[14,58],[3,53],[4,55],[13,34],[28,15],[38,-13],[38,-17],[33,6],[19,3],[42,-14],[28,-27],[19,-36],[28,-65],[24,-19],[20,18],[16,60],[9,44],[1,15]],[[58147,63871],[5,1],[28,3],[36,-1],[22,26],[15,49]],[[57767,62811],[-3,35],[-12,54],[-8,30],[-28,49],[-26,32],[-23,54],[-5,33],[10,55],[20,46],[26,35],[28,22],[37,14],[34,2],[33,-4],[33,-1],[27,31],[12,48],[9,50],[21,43],[2,46],[-17,64],[-2,62],[15,34],[28,31],[27,33],[18,43],[31,12],[32,8],[14,34],[14,37],[17,22]],[[52386,44114],[0,24],[1,20],[10,18],[16,16],[41,35],[21,51],[15,30],[24,20],[32,-5],[27,20],[6,23],[1,30],[-12,48],[5,29],[18,19],[34,3],[29,-28],[22,6],[9,21],[-2,45],[6,26],[11,19],[30,19],[21,6],[37,29],[38,-7],[39,-5],[17,-8],[14,-41],[-2,-33],[2,-20],[15,-32],[13,-6],[34,13],[12,2],[27,-14],[17,-6],[22,9],[22,21],[13,29],[0,23],[-4,21],[-12,22],[-11,22],[1,33],[19,37],[25,35],[20,8],[29,-4],[16,16],[10,24],[0,62],[-9,50],[3,43],[13,31],[16,24],[9,33],[-2,46],[-11,51],[-22,26],[-33,17],[-31,-12],[-28,-30],[-22,-31],[-18,-10],[-16,13],[-18,47],[2,55],[6,52],[-3,54],[-9,25],[-19,20],[-40,3],[-19,13],[-18,27],[-13,49],[-22,53],[-11,40],[-3,42],[11,32],[8,27],[-2,33],[-11,42],[-13,21],[-11,10],[-18,-4],[-15,-15],[-18,-3],[-15,10],[-14,45],[-5,58],[11,53],[44,81],[28,29],[19,13],[14,30],[4,43],[3,50],[21,47],[28,27],[36,17],[27,20],[11,28],[5,45],[17,26],[27,18],[10,21],[1,18],[0,32],[12,28],[32,12],[47,-38],[15,6],[17,48],[-5,41],[-37,29],[-14,31],[2,64],[7,98],[18,61],[29,49],[41,30],[36,40],[22,59],[-2,47],[-14,49],[2,16],[19,33],[32,18],[32,-12],[15,10],[12,23],[9,51],[21,42],[31,19],[32,6],[36,-23],[29,-38],[21,-3],[17,15],[11,30],[-4,37]],[[53570,47302],[2,23],[16,7],[22,5],[35,-16],[20,-15],[28,15],[10,17],[0,48],[-11,30],[-18,37],[-4,30]],[[51562,41878],[-6,11],[-7,17],[-2,25],[7,28],[10,27],[3,30],[-10,43],[3,28],[14,16],[32,10],[14,-2],[17,-13],[15,1],[12,20],[5,38],[14,37],[7,25],[-4,54],[1,34],[17,32],[18,19],[24,38],[14,55],[-7,50],[-3,26],[5,26],[17,48],[12,51],[1,66],[25,46],[9,43],[-5,33],[-13,15],[-34,23],[-9,20],[-2,28],[9,15],[10,5],[14,-1],[37,-28],[20,0],[22,23],[13,23],[18,9],[22,2],[14,13],[12,27],[-1,32],[-9,41],[6,27],[25,23],[36,29],[35,-4],[22,2],[18,21],[11,30],[3,63],[-19,52],[-4,44],[14,50],[22,40],[43,33],[8,26],[4,56],[9,24],[18,13],[20,3],[18,17],[7,33],[-3,32],[-10,16],[-14,21],[-6,30],[5,47],[-6,25],[-15,30],[-3,29],[12,64],[26,40],[30,11],[40,-21],[27,11],[21,39],[16,13],[21,13],[9,20],[3,25]],[[60348,46129],[7,6],[29,25],[28,24],[30,24],[27,34],[23,42],[28,34],[30,25],[30,22],[23,36],[16,52],[12,54],[23,17],[28,29],[8,58],[6,53],[11,53],[-1,56],[13,50],[5,55],[1,56],[6,56],[29,41],[17,44],[14,51],[-7,54],[-18,45],[-20,47],[-15,49],[14,51],[12,51],[16,51],[6,25]],[[51278,39060],[23,6],[24,-5],[23,11],[19,39],[6,45],[-2,29],[-13,22],[-41,37],[-19,8],[-13,13],[-1,27],[11,54],[9,45],[-4,34],[-26,69],[3,55],[9,21],[13,14],[33,-2],[32,-11],[35,3],[20,21],[7,30],[-4,25],[-17,9],[-28,-13],[-14,11],[-10,28],[1,56],[18,56],[11,39],[-1,45],[8,70],[-6,36],[-20,35],[-10,26],[1,38],[23,34],[17,28],[1,45],[-8,22],[-8,22],[-3,27],[5,23],[8,20],[14,16],[25,13],[15,25],[8,31],[-2,29],[-7,31],[-11,30],[-4,41],[5,56],[7,29],[17,25],[17,24],[10,35],[-3,45],[-26,36],[-27,11],[-13,32],[2,32],[14,46],[5,40],[-15,64],[4,49],[16,60],[-3,36],[-14,27],[-19,21],[-19,12],[-19,24],[-19,42],[-5,49],[11,53],[42,37],[18,36],[5,43],[4,35],[36,42],[33,8],[29,24],[21,42],[12,53],[0,28],[4,24],[10,18],[13,12],[11,24],[-1,33],[-7,22],[-22,26]],[[53670,47483],[10,16],[13,4],[82,-82],[20,-53],[33,-22],[41,-8],[17,16],[31,55],[28,17],[23,-8],[30,-44],[28,-69],[28,-37],[24,-3],[38,1],[26,-23],[23,-42],[25,-72],[5,-52],[13,-45],[23,-29],[20,-2],[60,3],[20,18],[16,53],[32,34],[28,14],[12,23],[12,63],[19,12],[58,9],[27,20],[23,62],[23,42],[41,29],[49,-11],[30,-37],[29,-40],[24,-17],[30,21],[25,37],[26,7],[20,-22],[14,-36],[28,-28],[25,-18],[26,-54],[33,-64],[27,-36],[33,-27],[33,-4],[30,14],[31,30],[31,14],[30,-26],[32,-13],[33,5],[32,4],[26,-32],[13,-49],[31,-33],[30,2],[31,16],[30,-13],[31,-33],[30,-3],[26,36],[18,48],[32,15],[34,4],[33,-7],[26,-27],[12,-45],[-12,-59],[-8,-53],[0,-59],[19,-49],[31,-12],[21,35],[8,51],[27,14],[42,-8],[20,22],[-2,42],[-20,41],[9,43],[39,12],[44,-37],[19,-26],[40,-33],[8,-35],[-13,-52],[-19,-45],[2,-63],[22,-35],[35,-4],[48,3],[26,-29],[17,-24],[20,-12],[30,-4],[23,-26],[16,-63],[19,-38],[16,-45],[0,-41],[-23,-58],[11,-48],[32,-12],[27,32],[20,59],[26,34],[23,-1],[36,-23],[32,17],[18,45],[2,72],[8,47],[32,48],[29,23],[34,12],[33,-2],[25,-5],[34,-9],[24,17],[9,36],[-9,61],[4,35],[26,33],[39,16],[11,39],[-7,52],[9,49],[26,16],[36,-21],[29,-40],[25,8],[2,56],[-16,71],[-24,50],[-33,39],[-16,30],[-8,32],[1,64],[-16,50],[-21,18],[-22,8],[-8,21],[0,64],[29,28],[35,0],[7,47],[-22,49],[-24,25],[-2,33],[33,109],[9,37],[17,31],[43,24],[24,37],[25,40],[21,12],[38,2],[62,22],[33,-5],[29,-27],[28,-14],[36,-10],[35,24],[15,8],[44,-3],[25,-6],[35,8],[37,15],[30,8],[21,-3],[35,-20],[21,9],[18,34],[17,36],[37,44],[24,40],[21,39],[27,34],[10,31],[-4,31],[-7,40],[2,21],[7,14]],[[55740,24999],[5,5],[3,25],[19,10],[24,42],[19,24],[4,36],[0,22],[1,29],[-4,40]],[[65552,54614],[-5,-5],[-7,3]],[[65584,54694],[-17,-31],[-7,-39]],[[65840,52689],[1,35],[-10,48],[-26,42],[-23,14],[-32,14],[-34,4],[-32,18],[-34,19],[-31,19],[-30,8],[-32,15],[-29,19],[-34,44],[-24,5],[-37,17],[-36,12],[-26,19],[-19,33],[-17,40],[-22,45],[-37,-5],[-23,-36],[-30,-13],[-36,14],[-31,19],[-30,41],[-17,34],[-9,36],[-3,47],[0,55],[-7,50],[-9,52],[-10,54],[-10,52],[-12,53],[0,52],[11,56],[24,40],[24,35],[28,29],[23,30],[14,43],[19,51],[10,52],[10,47],[3,16]],[[57554,48251],[34,41],[21,65],[9,34],[23,40],[23,19],[42,-3],[19,12],[5,14],[6,48],[-10,49],[-37,55],[-4,33],[4,45],[24,57],[58,17],[21,23],[18,40],[3,34],[-12,23],[-21,29],[-4,24],[6,22],[26,21],[92,23],[36,26],[29,52],[35,6],[28,-11],[33,30],[14,50],[-1,65],[11,30],[44,52],[77,62],[61,26],[80,4],[63,-35],[26,-22],[48,-71],[46,-24],[14,-4]],[[58544,49252],[23,-43],[25,-43],[25,-36],[21,-40],[12,-47],[19,-53],[27,-33],[30,-17],[28,-24],[32,-21],[30,0],[34,-1],[31,-15],[21,-43],[23,-35],[26,-9],[44,-2],[33,14],[34,1],[32,-10],[31,13],[27,34],[29,24],[31,9],[50,14]],[[59334,44182],[-15,18],[-11,44],[3,50],[13,50],[10,53],[17,34],[38,35],[30,31],[24,21],[18,42],[11,51],[-7,62],[2,60],[-4,56],[3,41],[29,53],[29,37]],[[59524,44920],[28,30],[26,32],[22,45],[34,17],[16,39],[25,51],[15,34]],[[59262,48889],[12,-10],[27,-35],[28,-25],[33,-22],[31,-18],[33,-19],[33,-16],[32,-2],[35,-1],[30,15],[53,30],[25,-3],[24,-41],[16,-9],[15,10],[35,51],[27,32],[25,34],[23,40],[33,23],[19,45],[3,86],[14,8],[32,15],[33,20],[33,8],[33,7],[34,14],[32,-8],[28,-22],[33,-18],[33,-4],[31,17],[21,37],[15,49],[16,46],[25,34],[33,16],[33,17],[29,28],[28,18],[34,1],[34,-13],[28,-40],[23,-31],[32,-23],[26,-29],[21,-37],[24,-36],[30,-24],[31,-7],[24,-35],[14,-39],[8,-63],[15,-38],[12,-53],[12,-54],[22,-43],[32,-22],[34,-7],[29,-33],[32,-22],[32,-4],[55,47],[23,-8],[45,-7],[34,-14],[13,-36],[3,-54],[-9,-43],[-1,-43],[30,-35],[40,-45],[15,-41],[11,-51],[3,-54],[15,-46],[18,-51],[19,-63],[20,-17],[34,5],[40,22],[26,-1],[28,-21],[15,-41],[17,-50],[-2,-50],[2,-59],[14,-43],[28,-16],[35,11],[22,25],[25,52],[17,44],[24,23],[29,19],[30,27],[35,41],[31,20],[18,-9],[30,-39],[34,-5],[27,34],[14,19]],[[61742,48591],[-8,29],[0,20],[10,46],[10,54],[7,51],[0,55],[-5,47],[-9,58],[-16,51],[-29,43],[-23,44]],[[59695,45177],[27,36],[26,32],[33,16],[30,23],[19,35],[8,54],[4,56],[23,45],[27,32],[37,7],[31,4],[25,26],[13,48],[17,50],[23,43],[10,50],[7,54],[24,43],[24,37],[26,30],[30,22],[29,37],[31,19],[18,48],[25,41],[35,3],[26,28],[15,21]],[[60787,47516],[4,7],[14,42],[6,54],[7,57],[9,53],[11,52],[19,51],[26,29],[21,42],[14,45],[19,43],[33,26],[35,-11],[32,-12],[34,-30],[24,-46],[8,-55],[16,-40],[13,-40],[22,-52],[22,-48],[25,-36],[32,-17],[28,-12]],[[61261,47618],[10,-6],[19,-9],[33,11],[33,23],[32,26],[25,22],[27,29],[31,25],[26,8],[35,-10],[23,1],[35,10],[36,17],[28,32],[22,33],[32,38],[30,24],[28,27],[7,7]],[[60780,44886],[14,52],[14,51],[6,12],[14,17],[16,42],[5,58],[9,35],[13,51],[8,17],[10,49],[9,36],[10,43],[9,51],[-1,21],[-8,43],[-3,16],[5,38],[-5,51],[-5,20],[-5,36],[-6,43],[-8,19],[-14,58],[-3,22],[0,65],[-7,45],[5,57],[4,48],[-3,51],[0,19],[-9,56],[19,127],[7,48],[7,56],[15,43],[-3,40],[-6,68],[0,28],[14,39],[8,14],[5,45],[11,53],[-1,47],[5,27],[-10,41],[-3,32],[-17,23],[-7,69],[3,69],[22,67],[3,51],[24,77],[6,49],[15,28],[-7,34],[-7,13],[0,24],[11,21],[14,18],[8,50],[-5,51],[19,80],[22,33],[33,67],[28,27],[28,-12],[20,-30],[25,-18],[42,-9],[48,8],[11,12]],[[60938,43901],[-5,20],[0,51],[-5,24],[-25,56],[-26,32],[-12,17],[-6,39],[-7,21],[4,50],[9,39],[19,43],[10,23],[-2,24],[-16,26],[-21,70],[-12,24],[-8,49],[-8,39],[4,21],[-16,64],[-17,75],[-11,33],[-14,26],[-6,59],[5,38],[8,22]],[[59158,43277],[10,64],[7,51],[11,40],[5,53],[11,53],[13,50],[-7,55]],[[59208,43643],[-2,38],[24,62],[17,49],[12,52],[13,53],[21,42],[13,47],[22,39],[23,36],[4,49],[-12,57]],[[59095,29038],[8,10],[11,42],[10,21],[14,32],[19,25],[25,33]],[[59413,32117],[2,35],[11,67],[14,59],[11,49],[3,52],[18,45],[1,55],[-5,48],[15,60],[-5,64],[21,36],[29,33],[26,30],[14,41],[5,52],[22,95],[-18,47],[5,50],[-1,68]],[[59584,33123],[5,17],[18,30],[2,29],[-8,37],[7,20],[26,42],[34,13],[27,39],[46,2],[32,33],[22,52],[16,3]],[[59811,33440],[31,32],[24,7],[32,-11],[46,43],[36,14],[18,5],[31,13],[51,13],[36,10],[19,3],[24,-3],[33,18],[32,10],[32,17],[25,35],[13,52],[11,52],[11,49],[22,40],[8,51],[15,47],[23,32]],[[60405,34083],[-26,86],[1,42],[18,37],[35,35],[17,20],[46,27],[26,11],[19,13],[12,33],[8,52],[46,26],[37,36],[32,39],[22,33],[23,26],[21,31],[17,35],[19,35],[16,35],[21,25],[-13,67],[-3,55],[1,54],[6,54],[4,14]],[[60815,35025],[46,81],[7,31],[40,48],[13,6],[21,22],[44,13],[54,54],[51,37],[48,15],[43,39],[19,17],[14,87],[10,11]],[[60391,33990],[8,38],[6,55]],[[59519,31498],[-32,45],[-5,42],[-17,60],[-6,20],[-7,61],[-18,34],[-26,25],[-5,9],[-1,88],[6,42],[-1,127],[2,33],[4,33]],[[62307,51316],[31,14],[27,65],[17,42],[23,41],[22,39],[34,14],[23,28],[28,30],[29,33],[30,22],[37,23]],[[59288,30404],[-1,16],[1,22],[5,21],[-9,59],[-18,39],[0,6],[4,34],[21,45],[25,46],[19,98],[-8,62],[-7,34],[-14,20],[26,73],[30,3],[33,30],[34,23],[33,20],[33,44],[20,30],[11,35],[12,17],[7,25],[23,52],[23,44],[-5,50],[-18,47],[-21,43],[-9,20],[-9,18]],[[59258,30152],[-6,21],[-16,50],[4,36],[13,26],[8,41],[11,26],[3,11],[12,18],[1,23]],[[56832,26347],[8,2],[16,8],[37,6],[23,54],[13,35],[-2,38],[5,8],[10,5],[11,-12],[12,-13],[14,-10],[13,14],[33,18],[16,-11],[45,22],[30,-4],[44,32],[37,1],[34,6],[34,3],[32,17],[25,36],[20,45],[9,50],[14,49],[18,46],[21,44],[22,44],[22,44],[27,32],[32,19],[33,15],[33,12],[33,15],[33,12],[34,3],[33,10],[30,27],[33,2],[10,13],[12,21],[27,34],[20,14],[24,9],[27,31],[21,4],[26,25],[16,49],[30,37],[16,16],[10,21]],[[58013,27361],[5,23],[3,29],[-3,19],[-17,38],[8,31],[44,37],[3,52],[16,34],[-1,22]],[[58215,27977],[6,3],[35,23],[26,23],[32,34]],[[58071,27646],[-8,49],[6,29],[22,49],[4,43],[13,24],[32,17],[28,32],[18,42],[11,23],[9,14]],[[58314,28060],[38,-1],[32,45],[5,80],[14,18],[28,-15],[17,30]],[[58458,28234],[8,17],[8,30],[14,16],[11,36],[37,16],[30,25],[15,44],[29,29],[21,-3],[45,18],[37,-9],[31,23],[41,32],[22,-8],[29,18],[15,7]],[[61225,35486],[48,4],[14,53],[-6,166],[20,106],[33,108],[3,37],[8,42],[-40,113],[-2,62],[13,34],[12,64],[2,56],[0,11]],[[59507,16209],[356,-149]],[[59863,16060],[274,-131]],[[60137,15929],[168,-77]],[[60305,15852],[123,-49]],[[63560,14332],[120,-66]],[[55687,24943],[11,17],[8,16],[5,10]],[[55812,25241],[0,3],[3,15],[16,20],[0,13],[6,19],[4,3],[20,2],[13,-3],[13,-12],[14,-1]],[[55901,25300],[22,-36],[5,-20],[2,-22],[8,-14],[14,-11],[11,-12],[11,-24],[13,-32],[32,-24],[10,-1],[8,5]],[[56386,25810],[5,8],[17,30],[26,-4],[15,-14],[42,15]],[[61846,48131],[5,22],[-7,59],[-5,31],[-5,24],[-7,35],[-11,41],[-22,72],[-12,43],[-11,32],[-9,36],[-11,36]],[[56037,25109],[20,18],[8,41],[-4,32],[17,52],[4,18],[11,15],[25,25],[9,62],[4,28],[8,21],[-1,55],[-2,50],[6,46],[7,15],[-1,19],[-29,78],[-1,22],[16,49],[18,11],[15,-9],[15,-10],[56,36],[39,-33],[57,-7],[14,10],[12,17],[15,19]],[[56491,25845],[10,14],[26,23],[30,30],[29,22],[21,19],[32,46],[25,35],[24,38],[20,43],[24,39],[31,28],[27,24],[18,43],[-7,64],[11,25],[9,4]],[[59249,42445],[-17,48],[-13,48],[-3,54],[-18,49],[-10,52],[-7,52],[13,52],[-1,53],[-8,69],[-25,72],[7,56],[-8,40],[-1,43],[6,44],[-3,31],[-4,52]],[[59306,42357],[-12,15],[-28,31],[-17,42]],[[59375,42304],[-22,22],[-31,13],[-16,18]],[[59940,40378],[-6,9],[-24,37],[-13,51],[-13,43],[-26,41],[-25,38],[-10,54],[10,55],[3,52],[-6,59],[-14,48],[-11,51],[-8,65],[10,43],[3,54],[-7,56],[-9,54],[-25,36],[-28,32],[-27,34],[-30,30],[-28,13],[-34,-7],[-35,-1],[-32,14],[-28,28],[-32,18],[-35,14],[-31,27],[-29,29],[-23,45],[-16,50],[-17,51],[-26,37],[-19,47],[10,47],[26,22],[23,42],[18,49],[9,55],[-2,55],[-10,53],[-13,51],[-4,56],[9,54],[15,65],[0,42]],[[61997,41767],[-7,14],[-8,26],[-1,40],[-19,40],[-36,31],[-35,56],[-27,54],[-10,43],[-23,11],[-31,32],[-17,16],[-13,5],[-9,10],[-12,27],[-7,41],[-6,42],[6,25],[2,14],[-7,43],[-10,16],[-9,16],[-5,19],[3,45],[1,21],[-11,31],[-29,73],[-6,14],[-14,16],[-11,34],[-11,77],[-13,30],[-20,21],[-27,8],[-13,13],[-16,26],[-6,40],[-9,21],[-23,18],[-12,43],[0,50],[2,17],[-6,32],[-19,21],[-31,3],[-27,-11],[-28,-1],[-17,12],[-11,13],[-19,10],[-34,35],[-22,-1],[-24,14],[-17,39],[-10,12],[-22,-2],[-14,12],[-12,43],[-5,40],[-13,32],[-1,15],[5,13],[-2,22],[-8,19],[-21,21],[-32,37],[-2,17],[4,51],[-5,46],[-2,41],[-37,47],[-29,19],[-32,20],[-37,35],[-1,20],[3,16],[5,57],[-17,36],[-8,31],[-10,20],[-1,17]],[[59849,39200],[22,74],[24,25],[26,-12],[32,4],[17,41],[42,108],[25,61],[14,45],[-1,56],[2,55],[13,54],[4,54],[-2,56],[1,56],[-10,51],[-12,53],[8,53],[5,53],[-11,54],[-6,47],[-25,34],[-27,33],[-22,42],[-16,48],[-6,20]],[[59833,38441],[-9,38],[-15,44],[-4,55],[-5,55],[4,55],[1,54],[-17,44],[-17,43],[-7,57],[-25,80],[0,32],[6,30],[39,61],[15,23],[42,71]],[[59894,38297],[-5,1],[-25,11],[-31,27],[-18,35],[18,70]],[[60660,37879],[-23,5],[-30,23],[-8,55],[-24,44],[-25,28],[-25,53],[-18,19],[-29,2],[-23,19],[-53,16],[-36,14],[-32,3],[-34,-4],[-33,-6],[-32,1],[-33,0],[-33,8],[-26,35],[-29,31],[-25,28],[-33,29],[-19,9],[-61,-24],[-19,-8],[-10,2],[-26,17],[-17,13]],[[60761,37862],[-31,-21],[-34,-4],[-23,26]],[[60940,37635],[-12,18],[-21,71],[-13,15],[-49,101],[-46,19],[-38,3]],[[61326,36363],[-21,79],[-6,92],[4,28],[0,14],[-3,12],[-3,23],[-6,13],[5,66],[-12,29],[-61,47],[-49,58],[-25,32],[-18,14],[-27,53],[-27,63],[-8,82],[13,37],[-4,61],[-28,41],[-15,143],[15,182],[-12,44],[-85,45],[-4,4]],[[61679,49089],[-15,50],[-17,50],[-14,49],[-13,50],[-6,54],[-7,54],[-4,56],[-2,57],[-4,54],[-8,61],[-16,43],[-27,37],[-21,44],[-22,43],[-16,47],[-9,50],[-7,53],[-11,51],[-5,53],[2,53],[1,54],[2,54],[6,53],[8,51],[3,46],[9,53],[15,47],[18,46],[17,46],[27,42],[35,16],[26,16],[29,50],[16,40],[19,47],[23,56],[21,43],[30,31],[26,36],[28,30],[27,30],[35,11],[32,0],[25,23],[17,43],[16,50],[24,41],[30,26],[35,12],[30,19],[29,31],[25,45],[22,42],[26,33],[32,5],[39,-15],[28,-18],[19,-17]],[[61781,47934],[40,37],[30,18],[11,55],[-6,52],[-10,35]],[[62447,41096],[-50,113],[-2,30],[15,63],[-4,36],[-34,63],[-13,2],[-8,-20],[-18,-11],[-16,20],[-21,9],[-41,23],[-55,-5],[-72,59],[-35,45],[-25,23],[-25,29],[-28,45],[-3,37],[-2,88],[-13,22]],[[62840,39256],[-9,28],[-5,20],[-29,47],[-28,102],[-12,38],[-5,31],[1,37],[-16,65],[-14,71],[-14,55],[2,50],[-10,58],[5,28],[-11,27],[-8,24],[-25,35],[-11,49],[-4,99],[-40,84],[-10,52],[-14,49],[-18,48],[-13,49],[-12,52],[6,51],[6,54],[6,53],[8,52],[7,55],[-5,53],[-14,49],[-30,33],[-25,33],[-34,73],[-3,28],[14,26],[-16,56],[-8,14]],[[63459,38316],[-6,-2],[-9,-3],[-15,-3],[-11,2],[-48,34],[-27,3],[-8,-1],[-14,6],[-15,-17],[-10,1],[-17,39],[-7,11],[-14,0],[-11,-6],[-10,-28],[-9,-4],[-7,2],[-22,20],[-30,18],[-23,25],[-10,3],[-32,-5],[-25,-2],[-37,-1],[-19,-12],[-28,-9],[-13,-7],[-18,7],[-22,39],[-23,10],[-16,14],[-52,30],[-8,13],[-1,20],[11,32],[-10,66],[-6,26],[-13,137],[8,32],[19,20],[16,41],[10,14],[8,21],[9,64],[7,24],[3,19],[-12,35],[-7,61],[0,59],[-8,32],[-13,14],[-12,10],[-8,17],[-4,19]],[[66304,36780],[2,7],[2,48]],[[66448,36571],[-144,209]],[[66499,36326],[1,109]],[[66498,36242],[1,84]],[[66488,36134],[10,108]],[[66464,35896],[24,238]],[[69889,49158],[-14,-1],[-21,-32],[-13,-18],[-9,-3],[-8,-2]],[[69814,49098],[-3,0],[-18,0],[-26,24]],[[70820,47355],[-15,-4],[-34,-14],[-25,-33],[-19,-45],[-22,-42],[-27,-29],[-32,-9],[-33,3],[-31,12],[-32,21],[-31,22],[-33,12],[-35,-2],[-33,-8],[-31,9],[-25,30],[-15,47],[-11,51],[1,56],[16,48],[21,44],[6,53],[3,57],[4,54],[6,53],[17,46],[17,51],[17,43],[6,55],[-3,55],[-17,51],[-26,35],[-29,26],[-21,44],[-11,52],[-11,57],[-22,38],[-27,33],[-32,20],[-31,17],[-33,9],[-32,19],[-25,37],[-17,48],[-8,53],[-8,53],[-10,52],[-1,56],[5,53],[-8,54],[-6,55],[-9,54],[-16,48],[-23,41],[-26,34],[-27,34],[-26,46],[-26,27],[-35,21]],[[71188,46944],[-23,-4],[-19,7],[-19,30],[-25,36],[-25,34],[-28,31],[-29,28],[-24,35],[-25,36],[-21,42],[-22,39],[-24,39],[-29,32],[-33,21],[-22,5]],[[63680,14266],[475,-107],[620,174]],[[64775,14333],[155,87]],[[64930,14420],[215,110]],[[65145,14530],[632,354]],[[65777,14884],[133,67]],[[65910,14951],[1098,561]],[[60428,15803],[1252,-571]],[[61680,15232],[807,-384]],[[57976,17985],[-492,83],[-9,3]],[[57976,17985],[117,-116]],[[58093,17869],[314,-328]],[[58407,17541],[351,-420]],[[58758,17121],[265,-320]],[[59023,16801],[108,-131]],[[59131,16670],[376,-461]],[[62487,14848],[461,-229]],[[62948,14619],[126,-56]],[[63074,14563],[157,-75]],[[63231,14488],[206,-98]],[[63437,14390],[123,-58]],[[66314,26868],[-54,409]],[[66385,26410],[-71,458]],[[66387,26052],[-2,358]],[[66392,25552],[-5,500]],[[66419,25280],[-27,272]],[[66509,24730],[-90,550]],[[66791,23878],[-282,852]],[[66260,27277],[2,190]],[[68484,21337],[-519,310],[-109,208]],[[68635,21132],[-151,205]],[[68669,21025],[-34,107]],[[68698,20890],[-29,135]],[[68982,20185],[-284,705]],[[67008,15512],[647,347]],[[67655,15859],[470,223]],[[68125,16082],[919,463]],[[69265,16968],[72,122]],[[69337,17090],[133,188]],[[69470,17278],[84,125]],[[69554,17403],[79,104]],[[69633,17507],[91,210],[164,-20],[19,-92],[43,-90],[54,-27],[17,-20],[11,-6]],[[69044,16545],[131,244]],[[69175,16789],[90,179]],[[75904,33548],[338,-482]],[[76242,33066],[315,-434]],[[76557,32632],[94,-137],[93,-71]],[[76744,32424],[591,-363]],[[83490,24990],[78,-23],[36,-199]],[[83604,24768],[218,-1123]],[[83822,23645],[53,-277]],[[89706,57444],[-463,802]],[[90142,56366],[-436,1078]],[[83875,23368],[49,-236],[152,-315]],[[84076,22817],[115,-180],[-2,-89]],[[90729,55365],[-587,1001]],[[90491,53164],[238,2201]],[[89584,50283],[907,2881]],[[89336,47784],[-171,880]],[[89481,47090],[-145,694]],[[89551,46651],[-70,439]],[[73515,34205],[127,335]],[[73642,34540],[428,333]],[[74368,35077],[159,-39]],[[74070,34873],[140,108]],[[95379,25920],[135,17]],[[95514,25937],[416,60]],[[95249,25888],[130,32]],[[95930,25997],[507,899]],[[94941,23682],[-15,149]],[[94959,23510],[-18,172]],[[94979,23320],[-20,190]],[[89239,27775],[-2,47],[6,28],[9,31],[0,23],[8,28],[8,18],[9,32],[7,43],[8,38],[9,42],[-1,38],[-4,23],[-1,17],[-6,35],[-3,27],[-2,26],[-4,24],[-12,15],[-21,35],[-13,40],[-8,33],[2,46],[5,21],[2,22],[-2,13],[0,26],[-6,28],[-12,31],[-12,27],[-10,37],[-4,27],[-1,23],[-3,20],[-1,39],[-6,66],[-4,24],[-6,28],[-1,17],[1,14],[0,22],[5,42],[4,50],[2,14]],[[89169,26812],[-3,23],[1,42],[-4,50],[2,31],[5,20],[10,38],[11,26],[6,22],[5,30],[3,68],[5,43],[-1,67],[-11,54],[-2,22],[-6,56],[3,47],[4,18],[5,9],[5,25],[8,65],[23,97],[1,110]],[[89205,26462],[2,21],[-1,18],[0,30],[3,18],[3,25],[-5,30],[-7,35],[-10,66],[-11,38],[-7,35],[-3,23],[0,11]],[[89213,26401],[1,8],[1,18],[-7,20]],[[89211,26241],[-1,38],[-2,14],[1,24],[3,36],[-2,14],[3,34]],[[89173,25968],[5,15],[5,26],[3,15],[5,10],[8,12],[16,43],[3,8],[2,10],[1,7],[3,10],[4,15],[-2,18],[-3,14],[-5,2],[-3,4],[-4,18],[2,22],[-1,9],[-1,15]],[[89159,25696],[-11,32],[-8,20],[-5,20],[1,9],[0,6],[-3,10],[0,7],[0,18],[1,6],[2,22],[5,11],[5,16],[7,14],[11,11],[4,25],[1,20],[0,17],[4,8]],[[89101,24431],[-3,12],[-10,36],[0,10],[14,34],[8,6],[5,6],[3,6],[4,15],[2,5],[5,8],[2,12],[6,18],[0,9],[-3,18],[2,13],[-1,29],[3,9],[0,9],[1,7],[3,4],[1,8],[3,17],[-2,12],[-3,9],[0,8],[6,12],[7,0],[1,6],[1,12],[8,14],[3,20],[-4,13],[-6,32],[0,12],[3,19],[5,9],[5,6],[4,16],[2,9],[5,9],[6,7],[3,7],[6,9],[7,23],[4,24],[-2,19],[-1,13],[6,15],[4,6],[1,10],[-2,8],[-3,25],[1,14],[3,14],[8,21],[2,18],[-2,7],[-7,14],[-1,6],[2,23],[0,8],[-2,18],[1,21],[6,25],[0,11],[-2,56],[-3,6],[-5,13],[-4,20],[5,39],[1,23],[-3,6],[-28,51],[2,10],[6,20],[3,14],[4,45],[-4,21],[-5,9],[-7,5],[-10,5],[0,6],[-1,4],[-5,16],[-6,19],[0,2]],[[89231,23150],[3,8],[5,9],[2,12],[-2,11],[1,9],[0,6],[1,14],[3,20],[2,20],[3,22],[1,14],[-3,55],[0,8],[0,7],[-3,40],[-3,72],[-3,47],[-10,46],[1,29],[-5,23],[5,36],[-8,22],[-27,46],[-12,13],[-1,50],[7,36],[11,118],[-2,88],[-3,27],[-38,129],[-8,47],[-22,99],[-25,98]],[[86374,18613],[1,30],[-29,16],[-46,13],[-19,40],[-55,20],[-24,17],[-36,22],[-49,35],[-38,22],[-67,54],[-136,106],[-21,40],[-68,79],[-14,31],[-25,11],[-32,49],[-34,82],[-27,33],[-10,24],[-43,46],[-15,41],[-25,30],[-23,36],[-30,8],[-23,31],[-33,49],[-21,36],[13,32],[-42,100],[-15,8],[-35,75],[-19,40],[-39,66],[-29,84],[-14,20],[-10,32],[-22,81],[-25,30],[-149,395],[-40,90],[-23,47],[-104,286],[-32,74],[-34,175],[0,144],[-64,159],[-69,232],[-16,50],[-21,59],[-16,26],[-23,39],[-22,45],[-47,99],[-65,83],[-31,72],[-53,41],[-98,133],[-99,117]],[[87532,46852],[66,104]],[[87494,46660],[38,192]],[[87598,46956],[160,254]],[[87799,47374],[10,240]],[[87758,47210],[41,164]],[[88615,49777],[133,102]],[[87943,49047],[101,161],[285,293],[286,276]],[[88748,49879],[836,404]],[[89165,48664],[-550,1113]],[[97077,28033],[301,523]],[[96895,27705],[182,328]],[[96729,27419],[166,286]],[[96437,26896],[155,273]],[[96592,27169],[137,250]],[[97378,28556],[426,742]],[[74345,31069],[-15,73],[-11,131],[11,97],[-7,102],[-6,25],[-36,65],[-7,28],[-12,28],[-21,39],[-6,19],[-4,42],[-7,17],[-25,12],[-11,-7],[-10,-12],[-13,-6],[-14,2],[-16,13],[-6,11],[-11,18],[-12,21],[-7,27],[-7,16],[-31,72]],[[74319,30648],[1,76],[11,36],[15,44],[14,69],[0,20],[-9,52],[-10,49],[4,75]],[[74367,29928],[-6,29],[-5,29],[2,22],[16,37],[5,23],[-3,32],[-8,34],[-8,24],[-24,55],[-9,37],[-15,162],[15,134],[-1,50],[-7,52]],[[75657,33846],[247,-298]],[[74666,27606],[-299,2322]],[[74556,27049],[110,557]],[[74240,25428],[238,1239]],[[74478,26667],[78,382]],[[97603,31262],[-960,94],[-2546,-526]],[[97603,31262],[2,-1],[3,0],[2,0],[3,-1],[3,0],[2,-1],[3,0],[3,0],[2,-1],[3,-1],[2,0],[3,-1],[3,0],[2,-1],[3,-1],[2,0],[3,-1],[3,-1],[2,0],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[2,-1],[3,-1],[2,-2],[3,-1],[2,-1],[3,-1],[2,-2],[3,-1],[2,-1],[3,-2],[2,-1],[3,-2],[2,-1],[3,-2],[2,-1],[2,-2],[3,-1],[2,-2],[3,-2],[2,-1],[2,-2],[3,-2],[2,-2],[3,-1],[2,-2],[2,-2],[3,-2],[2,-2],[3,-1],[2,-2],[2,-2],[3,-2],[2,-2],[2,-2],[3,-2],[2,-2],[2,-3],[2,-2],[3,-2],[2,-2],[2,-2],[3,-2],[2,-3],[2,-2],[2,-2],[3,-3],[2,-2],[2,-2],[2,-3],[2,-2],[3,-2],[2,-3],[2,-2],[2,-3],[2,-2],[3,-3],[2,-3],[2,-2],[2,-3],[2,-3],[2,-2],[2,-3],[3,-3],[2,-2],[2,-3],[2,-3],[2,-3],[2,-3],[2,-2],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[1,-4],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-4],[1,-3],[2,-4],[2,-3],[2,-4],[1,-3],[2,-4],[2,-4],[2,-3],[1,-4],[2,-3],[2,-4],[2,-4],[1,-4],[2,-3],[2,-4],[1,-4],[2,-4],[2,-3],[1,-4],[2,-4],[2,-4],[1,-4],[2,-4],[1,-4],[2,-4],[1,-4],[2,-4],[1,-4],[2,-4],[2,-4],[1,-4],[2,-4],[1,-4],[1,-4],[2,-4],[1,-4],[2,-4],[1,-5],[2,-4],[1,-4],[1,-4],[2,-4],[1,-5],[2,-4],[1,-4],[1,-5],[2,-4],[1,-4],[1,-5],[2,-4],[1,-5],[1,-4],[1,-4],[2,-5],[1,-4],[1,-5],[1,-4],[1,-5],[2,-4],[1,-5],[1,-4],[1,-5],[1,-5],[1,-4],[1,-5],[2,-5],[1,-4],[1,-5],[1,-5],[1,-4],[1,-5],[1,-5],[1,-4],[1,-5],[1,-5],[1,-5],[1,-4],[1,-5],[1,-5],[1,-5],[1,-5],[1,-5],[0,-5],[1,-4],[1,-5],[1,-5],[1,-5],[1,-5],[1,-5],[0,-5],[1,-5],[1,-5],[1,-5],[1,-5],[0,-5],[1,-5],[1,-5],[0,-5],[1,-5],[1,-5],[0,-5],[1,-5],[1,-6],[0,-5],[1,-5],[1,-5],[0,-5],[1,-5],[0,-5],[1,-6],[0,-5],[1,-5],[1,-5],[0,-5],[0,-6],[1,-5],[0,-5],[1,-5],[0,-6],[1,-5],[0,-5],[1,-5],[0,-6],[0,-5],[1,-5],[0,-6],[0,-5],[1,-5],[0,-6],[0,-5],[1,-5],[0,-6],[0,-5],[0,-5],[1,-6],[0,-5],[0,-6],[0,-5],[0,-5],[1,-6],[0,-5],[0,-6],[0,-5],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[0,-6],[0,-5],[-1,-6],[0,-5],[0,-6],[0,-5],[0,-6],[-1,-5],[0,-6],[0,-5],[0,-6],[-1,-5],[0,-6],[0,-5],[-1,-6],[0,-5],[0,-6],[-1,-6],[0,-5],[0,-6],[-1,-5],[0,-6],[-1,-5],[0,-6],[0,-5],[-1,-6],[0,-5],[-1,-6],[0,-6],[-1,-5],[0,-6],[-1,-5],[-1,-6],[0,-5],[-1,-6],[0,-5],[-1,-6],[0,-5],[-1,-6],[-1,-5],[0,-6],[-1,-5],[-1,-6],[0,-5],[-1,-6],[-1,-6],[-1,-5],[0,-6],[-1,-5],[-1,-6],[-1,-5],[0,-6],[-1,-5],[-1,-5],[-1,-6],[-1,-5],[-1,-6],[0,-5],[-1,-6],[-1,-5],[-1,-6],[-1,-5],[-1,-6],[-1,-5],[-1,-5],[-1,-6],[-1,-5],[-1,-6],[-1,-5],[-1,-6],[-1,-5],[-1,-5],[-1,-6],[-1,-5],[-1,-5],[-1,-6],[-1,-5],[-1,-6],[-1,-5],[-2,-5],[-1,-6],[-1,-5],[-1,-5],[-1,-5],[-1,-6],[-2,-5],[-1,-5],[-1,-6],[-1,-5],[-1,-5],[-2,-5],[-1,-6],[-1,-5],[-2,-5],[-1,-5],[-1,-5],[-2,-6],[-1,-5],[-1,-5],[-2,-5],[-1,-5],[-1,-5],[-2,-6],[-1,-5],[-2,-5],[-1,-5],[-1,-5],[-2,-5],[-1,-5],[-2,-5],[-1,-5],[-2,-5],[-1,-5],[-2,-5],[-1,-5],[-2,-5],[-1,-5],[-2,-5],[-2,-5],[-1,-5],[-2,-5],[-1,-5],[-2,-5],[-2,-5],[-1,-5],[-2,-5],[-2,-4],[-1,-5],[-2,-5],[-2,-5],[-1,-5],[-2,-5],[-2,-4],[-1,-5],[-2,-5],[-2,-5],[-2,-4],[-1,-5],[-2,-5],[-2,-4],[-2,-5],[-2,-5],[-1,-4],[-2,-5],[-2,-5],[-2,-4],[-2,-5],[-2,-4],[-1,-5],[-2,-4],[-2,-5],[-2,-4],[-2,-5],[-2,-4],[-2,-5],[-2,-4],[-2,-5],[-2,-4],[-2,-4],[-2,-5],[-2,-4],[-2,-4],[-1,-5],[-3,-4],[-2,-4],[-2,-5],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-5],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-3,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-2,-4],[-3,-4],[-2,-4],[-2,-4],[-2,-4]],[[78355,38570],[19,55],[15,39],[31,51],[8,49],[-8,68],[-1,44],[7,43],[3,51],[0,37],[-16,32],[-19,13],[-2,24],[13,13],[30,15],[12,34],[-2,57],[3,51],[22,41],[9,55],[-6,40],[-12,70],[7,74],[-5,24],[-32,48],[-18,43],[-8,84],[1,84],[-22,73],[-16,80],[-1,41]],[[78421,38188],[-16,19],[-14,-7],[-29,-27],[-29,21],[-27,30],[-14,52],[-26,50],[-7,31],[11,45],[28,29],[35,70],[12,39],[1,5]],[[78497,38088],[-38,38],[-20,34],[-18,28]],[[79075,38269],[-14,-17],[-32,-60],[-21,-60],[-3,-81],[-8,-88],[-22,-66],[-30,-55],[-2,-34],[-6,-19],[-18,-25],[-26,-12],[-14,10],[-14,22],[-53,55]],[[78721,37987],[-28,14],[-23,35],[-14,45],[-23,23],[-27,-3],[-25,-42],[-29,-19],[-29,12],[-26,36]],[[78812,37839],[-23,34],[-29,70],[-11,22],[-14,13]],[[79297,38382],[-28,-8],[-34,-5],[-28,-8],[-42,-13],[-53,-28],[-21,-35],[-7,-6]],[[79455,38586],[-20,-8],[-20,-22],[-3,-26],[-9,-20],[-14,-23],[-13,-33],[-30,-34],[-26,-24],[-11,-9]],[[90117,33597],[4,44]],[[90135,33514],[-18,83]],[[90145,33470],[-10,44]],[[90162,33398],[-17,72]],[[90193,33293],[-31,105]],[[91104,34763],[-836,267]],[[89332,30257],[-25,-67],[-19,-74],[-5,-71],[-9,-68],[-5,-100],[-15,-100],[-36,-82],[-14,-103],[-4,-135],[1,-92],[-6,-131],[-16,-179]],[[89805,32845],[19,198]],[[89784,32750],[21,95]],[[74210,34981],[55,33]],[[74265,35014],[103,63]],[[74527,35038],[155,1]],[[74682,35039],[160,-75]],[[74842,34964],[145,-195]],[[74987,34769],[670,-923]],[[90163,43482],[-612,3169]],[[90010,42660],[153,822]],[[89918,42203],[92,457]],[[89862,41918],[56,285]],[[89831,41721],[31,197]],[[77335,32061],[420,-270]],[[77755,31791],[726,-457]],[[78481,31334],[279,-291]],[[78760,31043],[148,-191]],[[78908,30852],[432,-536]],[[87097,45768],[122,62]],[[86666,45486],[166,118]],[[86832,45604],[48,28]],[[86880,45632],[92,73]],[[86972,45705],[125,63]],[[87465,46507],[29,153]],[[87468,46405],[-3,102]],[[87470,46311],[-2,94]],[[87473,46229],[-3,82]],[[87219,45830],[62,29]],[[86163,45279],[107,-3]],[[86270,45276],[35,-11]],[[86305,45265],[35,-11]],[[86565,45309],[101,177]],[[86340,45254],[115,-4]],[[86455,45250],[110,59]],[[85499,44783],[120,-184],[86,161],[30,133]],[[85758,44994],[73,79]],[[85735,44893],[23,101]],[[85831,45073],[19,22]],[[85474,43546],[-87,83]],[[85443,43145],[1,20],[34,301],[-4,80]],[[85381,48465],[2,20],[0,26],[-4,23],[-3,16],[3,23],[6,14],[11,9],[12,-4],[11,-11],[11,-2],[8,11],[5,22],[6,33],[8,12],[9,5],[8,8],[2,17],[-2,16],[4,12],[11,6],[13,3],[12,5],[16,3],[12,-14],[21,-6],[17,-3],[15,-11],[16,11],[11,10],[1,18],[7,19],[16,15],[20,5],[24,-5],[8,5],[5,8],[3,8],[3,11],[0,21],[-5,65]],[[85347,48216],[8,11],[2,13],[2,19],[1,19],[-2,19],[-3,19],[3,18],[4,19],[1,17],[3,25],[4,29],[3,14],[8,27]],[[85704,48889],[14,6],[15,24],[45,-12],[23,-40]],[[85801,48867],[129,21],[115,-73],[39,136],[25,13],[75,-170],[45,4],[8,57],[42,103],[104,91],[211,-71],[134,137],[73,-119],[78,-54],[62,283],[86,176]],[[87027,49401],[138,120]],[[77148,43749],[-37,0],[-15,-15],[-20,-4],[-26,14],[-41,-1],[-27,8],[-34,32],[-20,53],[7,57],[12,35],[1,34],[-19,23],[-29,18],[-13,15],[-7,22],[-1,43],[-4,28],[-25,35],[-1,26],[34,106],[4,70],[3,22]],[[77303,43165],[-19,24],[-17,41],[-23,58],[-17,33],[-25,42],[-25,34],[-21,43],[-12,47],[4,55],[-3,57],[5,54],[7,63],[-9,33]],[[77553,43290],[-7,12],[-12,26],[-26,38],[-46,17],[-24,-18],[-23,-57],[-15,-68],[-6,-25],[-23,-34],[-19,-15],[-20,-14],[-14,-1],[-15,14]],[[78257,41928],[3,22],[-5,113],[-10,41],[-15,15],[-14,5],[-33,2],[-17,12],[-13,18],[-53,100],[-16,32],[-25,65],[-31,54],[-10,18],[-12,42],[-27,52],[-18,49],[-12,13],[-8,34],[-21,52],[-14,52],[-14,67],[-23,85],[-18,20],[-37,17],[-31,33],[-7,14],[-4,24],[-11,33],[-16,46],[-3,20],[3,29],[-6,26],[-15,12],[-33,-6],[-21,10],[-24,30],[-15,21],[-21,23],[-23,21],[-24,32]],[[78258,41635],[12,15],[33,63],[0,43],[-15,24],[-28,24],[-9,26],[3,63],[1,17]],[[78364,40027],[-3,33],[-3,45],[15,60],[-4,49],[-27,48],[-2,25],[9,37],[3,20],[-4,40],[9,76],[-7,61],[-1,55],[14,79],[-2,65],[-24,44],[-6,25],[12,72],[12,40],[4,35],[-5,21],[-21,0],[-28,-23],[-29,0],[-9,15],[-1,35],[25,60],[16,26],[7,50],[-8,30],[-40,54],[-6,29],[15,65],[4,56],[0,31],[-10,38],[-45,76],[-8,22],[-2,33],[13,37],[17,27],[14,17]],[[89243,58246],[-173,1675]],[[87401,49754],[29,20]],[[87430,49774],[29,-32]],[[87459,49742],[96,-58]],[[87165,49521],[158,140]],[[87323,49661],[78,93]],[[87555,49684],[30,-49]],[[87585,49635],[36,-77]],[[87621,49558],[29,-61],[60,-52]],[[87710,49445],[481,41]],[[87812,48721],[28,145],[103,181]],[[87815,48599],[-3,122]],[[87820,48541],[-5,58]],[[87835,48293],[-15,248]],[[87832,48156],[3,137]],[[87828,48026],[4,130]],[[87809,47614],[19,412]],[[85440,43007],[3,138]],[[85162,44335],[-39,270],[79,272]],[[85202,44877],[120,125],[78,-48],[42,-82],[57,-89]],[[85178,44259],[-16,76]],[[85224,44050],[-46,209]],[[85343,43766],[28,74],[0,43],[-24,32],[-82,67],[-41,68]],[[85387,43629],[-44,137]],[[85850,45095],[59,84]],[[85909,45179],[35,35]],[[85944,45214],[25,5]],[[85969,45219],[94,36]],[[86063,45255],[100,24]],[[87428,46004],[47,113],[-2,112]],[[87407,45952],[21,52]],[[87281,45859],[76,-31]],[[87357,45828],[50,124]],[[79340,30316],[249,-311]],[[79589,30005],[277,-292]],[[79782,29104],[84,609]],[[79866,29713],[267,-387]],[[80133,29326],[203,-254],[35,-135],[12,-74]],[[80346,28664],[-6,-8],[-2,-2],[-5,-8],[-3,-8],[-2,-25],[-3,-18],[-13,-17],[-11,-13]],[[80383,28863],[4,-30]],[[80387,28833],[-19,-20],[-5,-12],[-5,-59]],[[79686,27651],[8,54],[27,94],[25,63],[25,138],[7,75],[-1,41],[-10,92],[5,99],[21,192],[2,125],[-12,183],[-2,186],[5,62],[-4,49]],[[79463,27065],[162,432]],[[79625,27497],[61,154]],[[79463,27065],[167,-184]],[[71746,19982],[757,545]],[[73887,23657],[195,984]],[[73734,22880],[153,777]],[[73661,22472],[73,408]],[[74181,25170],[59,258]],[[74127,24879],[54,291]],[[74082,24641],[45,238]],[[72503,20527],[917,701]],[[73488,21602],[173,870]],[[73420,21228],[68,374]],[[81262,25701],[942,-296]],[[82204,25405],[193,-60]],[[82397,25345],[753,-244]],[[83150,25101],[340,-111]],[[79630,26881],[606,-717]],[[80236,26164],[173,-202]],[[80409,25962],[632,-195]],[[81041,25767],[221,-66]],[[90521,32787],[-68,55]],[[90564,32749],[-43,38]],[[90593,32726],[-29,23]],[[90605,32714],[-12,12]],[[90623,32701],[-18,13]],[[92495,32992],[-1391,1771]],[[89726,34447],[22,62]],[[89753,34328],[-27,119]],[[89768,34304],[-15,24]],[[89760,34243],[-7,85]],[[89793,34262],[-25,42]],[[89794,34229],[-1,33]],[[89839,34161],[-35,28],[-10,40]],[[89770,33919],[-21,104],[11,220]],[[89844,34137],[-5,24]],[[89844,34055],[6,40],[-6,42]],[[89869,33870],[-33,139],[8,46]],[[89801,33666],[-31,253]],[[89820,33486],[-19,180]],[[90547,36548],[172,1014]],[[90357,35390],[190,1158]],[[90021,34919],[90,37]],[[90268,35030],[89,360]],[[89979,33765],[-24,-1],[-19,-4],[-14,16],[-18,16],[0,16],[-6,19],[-3,20],[-8,18],[-18,5]],[[90125,33684],[-38,8],[-45,17],[-12,16],[-27,19],[-24,21]],[[90121,33641],[4,43]],[[90185,41102],[-354,619]],[[90729,32611],[-106,90]],[[90822,32531],[-93,80]],[[90882,32447],[-60,84]],[[91006,32411],[-124,36]],[[90939,38807],[-754,2295]],[[90719,37562],[220,1245]],[[90215,33234],[-22,59]],[[90233,33182],[-18,52]],[[90242,33157],[-9,25]],[[90254,33122],[-12,35]],[[89332,30257],[12,90],[7,71],[2,42],[15,56],[-5,67],[17,111],[-5,-59],[11,124],[8,52],[3,42],[4,44],[1,22],[-3,18],[-3,22],[-12,26],[-8,26],[-7,25],[-3,25],[-1,23],[0,19],[1,8],[1,7],[0,11],[1,15],[1,11],[4,18],[0,9],[1,12],[1,12],[4,13],[1,14],[2,13],[1,8],[2,9],[1,13],[1,14],[2,7],[0,6],[2,11],[1,8],[2,12],[2,11],[1,11],[2,9],[2,9],[2,10],[1,8],[3,11],[6,17],[15,17],[14,20],[11,26],[18,43],[11,21],[4,7],[2,8],[3,7],[5,5],[7,-1],[6,1],[5,7],[1,12],[1,10],[-1,11],[0,16],[-1,15],[-2,13],[0,7],[0,9],[0,10],[0,10],[1,13],[1,11],[2,21],[2,26],[-2,15],[-7,18],[-2,21],[-2,10],[-5,12],[-5,22],[1,19],[2,20],[13,12],[8,9],[8,9],[5,7],[9,10],[10,9],[9,8],[8,12],[2,13],[1,9],[0,9],[0,10],[-6,11],[-3,6],[-4,8],[-2,8],[-2,9],[-2,8],[-1,8],[-1,9],[0,7],[0,10],[0,8],[1,9],[0,7],[1,8],[0,8],[4,8],[6,9],[4,5],[3,8],[-1,-4],[3,8],[4,9],[3,7],[3,7],[8,17],[9,16],[4,6],[17,25],[13,18],[11,14],[6,11],[12,15],[5,11],[9,21],[4,13],[6,10],[7,21],[8,17],[8,20],[7,12],[6,9],[6,10],[5,9],[5,9],[4,18],[5,18],[3,15],[4,15],[3,26],[8,44],[3,26],[3,20],[3,17],[5,18],[3,22],[2,23],[1,4]],[[90272,33074],[-18,48]],[[90286,33037],[-14,37]],[[90302,32991],[-16,46]],[[90317,32957],[-15,34]],[[90382,32902],[-65,55]],[[90426,32866],[-44,36]],[[90453,32842],[-27,24]],[[89778,34586],[17,42],[31,105]],[[89748,34509],[30,77]],[[89826,34733],[29,94],[27,37],[139,55]],[[92081,31419],[-143,126]],[[92177,31333],[-96,86]],[[92354,31174],[-177,159]],[[93602,31513],[-1107,1479]],[[91796,31684],[-83,77]],[[91868,31611],[-72,73]],[[91938,31545],[-70,66]],[[91056,32352],[-50,59]],[[91206,32112],[-150,240]],[[91255,32083],[-49,29]],[[91365,32007],[-110,76]],[[91519,31908],[-154,99]],[[91555,31882],[-36,26]],[[91597,31853],[-42,29]],[[91640,31825],[-43,28]],[[91713,31761],[-73,64]],[[92548,30972],[-194,202]],[[92584,30933],[-36,39]],[[93924,31079],[-322,434]],[[94046,30901],[-122,178]],[[94074,30870],[-28,31]],[[94097,30830],[-23,40]],[[97996,17367],[-40,64]],[[98039,17296],[-43,71]],[[98089,17211],[-50,85]],[[98128,17152],[-39,59]],[[98177,17074],[-49,78]],[[98220,17003],[-43,71]],[[95841,20919],[-118,152]],[[95946,20787],[-105,132]],[[96035,20654],[-89,133]],[[96095,20556],[-60,98]],[[96141,20481],[-46,75]],[[96188,20404],[-47,77]],[[96229,20334],[-41,70]],[[96277,20256],[-48,78]],[[96319,20190],[-42,66]],[[96361,20115],[-42,75]],[[96409,20033],[-48,82]],[[96453,19964],[-44,69]],[[96467,19945],[-14,19]],[[96476,19926],[-9,19]],[[96487,19910],[-11,16]],[[96495,19900],[-8,10]],[[96504,19883],[-9,17]],[[96513,19866],[-9,17]],[[96525,19848],[-12,18]],[[96537,19828],[-12,20]],[[96548,19810],[-11,18]],[[96560,19786],[-12,24]],[[96572,19765],[-12,21]],[[96911,19207],[-33,50]],[[96943,19152],[-32,55]],[[96971,19103],[-28,49]],[[97007,19042],[-36,61]],[[97065,18948],[-30,47]],[[97096,18894],[-31,54]],[[97126,18841],[-30,53]],[[97157,18790],[-31,51]],[[97198,18717],[-41,73]],[[97298,18551],[-100,166]],[[97392,18389],[-94,162]],[[97441,18302],[-49,87]],[[97509,18192],[-68,110]],[[97566,18097],[-57,95]],[[97623,17998],[-57,99]],[[97681,17892],[-58,106]],[[97753,17773],[-72,119]],[[97803,17691],[-50,82]],[[97840,17625],[-37,66]],[[97877,17563],[-37,62]],[[97917,17504],[-40,59]],[[97956,17431],[-39,73]],[[94656,24968],[-15,60]],[[94679,24879],[-23,89]],[[94696,24811],[-17,68]],[[94869,24404],[-110,156],[-63,251]],[[94883,24260],[-14,144]],[[94905,24044],[-22,216]],[[94926,23831],[-21,213]],[[94605,25174],[-87,350]],[[94693,25812],[193,26]],[[94886,25838],[119,18]],[[95005,25856],[120,16]],[[95125,25872],[124,16]],[[94631,25069],[-26,105]],[[94641,25028],[-10,41]],[[95004,23138],[-25,182]],[[95040,22892],[-36,246]],[[95073,22665],[-33,227]],[[95279,22401],[-206,264]],[[94488,25642],[-34,134]],[[94454,25776],[239,36]],[[94518,25524],[-30,118]],[[96584,19747],[-12,18]],[[96596,19726],[-12,21]],[[96604,19712],[-8,14]],[[96614,19694],[-10,18]],[[96625,19675],[-11,19]],[[96635,19658],[-10,17]],[[96645,19640],[-10,18]],[[96659,19620],[-14,20]],[[96669,19598],[-10,22]],[[96680,19583],[-11,15]],[[96693,19566],[-13,17]],[[96706,19545],[-13,21]],[[96741,19488],[-35,57]],[[96776,19431],[-35,57]],[[96810,19370],[-34,61]],[[96846,19314],[-36,56]],[[96878,19257],[-32,57]],[[98346,16791],[-42,66]],[[98382,16726],[-36,65]],[[98422,16667],[-40,59]],[[98461,16598],[-39,69]],[[98505,16528],[-44,70]],[[98541,16481],[-36,47]],[[98578,16398],[-37,83]],[[98623,16334],[-45,64]],[[98667,16265],[-44,69]],[[65596,84683],[414,351]],[[73052,35227],[369,-1071],[10,-71],[-10,-140]],[[73421,33935],[41,101]],[[8410,95537],[126,-224]],[[10801,89261],[-28,-247],[4,-34],[22,-30],[-5,-24],[3,-13],[15,-1],[4,-18],[-10,-13],[-3,-18],[-5,-43],[-14,-8],[-9,-11],[-5,2],[-4,-16],[0,-27],[4,-11],[0,-7],[9,-18],[13,-10]],[[10792,88714],[13,-24],[12,-15],[6,2],[5,-8],[2,-8],[2,-11],[0,-8],[4,-18],[-2,-11],[4,-18]],[[10838,88595],[3,-12],[5,-11],[12,-22],[4,-24],[0,-17],[7,-28],[-1,-26],[2,-11],[13,-35],[6,-16],[7,-23],[0,-32],[0,-25],[3,-11],[7,-7]],[[10906,88295],[0,-29],[4,-4],[8,-7],[5,-10],[3,-12],[1,-17],[-7,-32],[2,-12],[-3,-8],[-3,-2],[-3,-1],[-2,-15],[1,-15],[3,-10],[3,-5],[-4,-30],[3,-13],[-2,-7],[0,-7],[2,-5],[-1,-7],[-1,-3],[-1,-14],[2,-20]],[[10917,88004],[2,-5],[6,-7],[3,-6],[3,-8],[-1,-7],[-5,-10],[-6,-14],[-1,-9],[-4,-6],[-3,-6],[3,-15],[-2,-5],[-4,-2],[-3,-1],[-2,1],[-9,-7],[-5,-5],[-2,-7],[1,-6],[1,-6],[4,-7],[3,-8],[5,-3],[3,-2],[4,-10],[2,-12],[-2,-15],[-4,-6],[-4,-6],[-1,-10],[4,-20],[1,-7],[-2,-11],[1,-8],[2,-8],[2,-6],[2,-9],[-1,-18],[1,-9],[-5,-15]],[[10916,88010],[1,-6]],[[11045,89109],[27,-157],[80,-115],[19,-10],[20,-10],[24,-28],[12,-14],[32,-21],[15,-5],[4,6],[6,3],[7,-1],[6,1],[3,1],[2,-8],[2,-5],[5,-6],[6,-5]],[[11315,88735],[5,-8],[-3,-2],[-4,-9],[2,-1],[4,1],[2,-2],[4,3],[4,-3],[1,-4],[0,-5],[4,-38],[4,-6],[4,-1],[3,-2],[5,-12],[2,-5],[3,-4],[2,-7],[0,-10],[-1,-9],[-3,0],[-4,-6]],[[89231,23150],[-9,-5],[-4,-5],[-18,-12],[-5,-9],[-6,-3],[-7,0],[-5,-5],[-5,-10],[1,-13],[2,-17],[2,-12],[0,-5],[3,-13],[-2,-12],[-4,-13],[-3,-11],[2,-12],[4,-23],[-2,-9],[-10,-17],[-6,-8],[-8,-14],[-1,-6],[0,-21]],[[89150,22895],[1,-9],[6,-11],[4,-8],[1,-17],[-2,-11],[1,-13],[2,-13],[1,-12],[1,-20],[-1,-11],[1,-13],[0,-31],[-6,-17],[1,-11],[6,-12],[2,-4],[2,-8],[0,-10],[2,-13],[0,-5],[3,-12],[2,-11],[2,-8],[1,-8],[3,-7],[7,-16],[2,-10],[4,-18],[-2,-28],[-2,-6],[-3,-12]],[[89189,22510],[-1,-20],[1,-16],[2,-18],[2,-19],[3,-24],[-4,-41],[-7,-28],[-12,-30],[-20,-26],[-9,-5],[-8,-27],[-19,-23],[-12,-18]],[[89105,22215],[-5,-35],[19,-43],[2,-39],[-14,-18],[-13,-83],[-13,-40],[-8,-17],[-20,-32],[-14,-42]],[[89039,21866],[-13,-40],[-9,-34],[-16,-99],[-6,-22],[-4,-22],[-8,-57],[-4,-39],[-8,-35]],[[88971,21518],[-8,-35],[-14,-32],[-15,-5],[-28,-108],[-2,-60],[4,-46],[5,-41],[2,-69],[10,-88],[7,-33],[-1,-26],[-8,-49],[-11,-44],[12,-84],[1,-17],[8,-33],[14,-30],[20,-43],[12,-38],[-1,-44],[3,-16],[12,-28],[-5,-49],[-8,-34],[-7,-24],[-18,-21],[-9,-39],[0,-35],[-5,-28],[-7,-22],[-5,-41],[2,-60],[-2,-58]],[[88929,20138],[-4,-44],[2,-19],[-1,-21],[-5,-21],[-5,-29],[-7,-25],[-9,-19],[-11,-23],[-2,-23],[4,-65],[2,-39],[2,-23],[-3,-55],[-15,-12],[-17,-51],[-12,-31],[-7,-19],[-5,-26],[-7,-22],[-8,-32],[-7,-49],[-8,-38],[-12,-41],[-6,-33],[-12,-21],[-10,-7],[-11,-23],[-4,-23],[-8,-23],[-1,-21],[-10,-33],[-12,-28],[-14,-51],[-8,-23],[-26,-34],[-10,-177]],[[88662,18914],[-9,-172],[7,-295],[-15,-244],[-43,-92],[-70,-188],[-15,-66],[6,-80]],[[89211,26241],[-8,6],[-3,21],[-8,14],[-23,-16],[-7,-10],[-8,-9],[-5,-21],[-17,-18],[-7,-13],[2,-21],[-19,-43],[-15,9],[-6,19],[-6,45],[-17,61],[-2,18],[-7,11],[-11,-11],[-7,-5],[-7,2],[-6,9],[-7,26],[-9,23],[-48,2],[-12,-31],[-21,-14],[-25,-39],[-13,-29],[-17,-25],[-20,-17],[-6,-10],[-12,-47],[-4,-4],[-13,9],[-20,4],[-7,15],[-6,15],[-11,11],[-6,16],[-7,41],[-7,12],[-19,35],[-14,1],[-12,11],[-12,15],[-25,-16],[-7,-10],[-21,-33],[-7,-25],[-6,-15],[-9,-1],[-9,9],[-14,-6],[-6,-15],[1,-20]],[[88592,26184],[-4,-12],[-10,-5],[-7,-7],[-4,-15],[-13,-16],[-8,-3],[-10,-11],[-5,-6],[-5,-4],[-5,0],[-4,5],[-3,4],[-2,3],[-10,-3],[-7,-11],[-4,-4],[-8,-6],[-7,-3],[-8,-3],[-28,-24],[-15,0],[-10,-7],[-33,-5]],[[88382,26051],[-11,-5],[-7,-5],[-4,-2],[-8,0],[-6,2],[-10,9],[-9,-1],[-18,-9],[-14,-5],[-11,-7],[-6,-6],[-3,-4],[-7,-3],[-32,-33],[-5,-1],[-17,-18],[-9,-2],[-14,0]],[[88191,25961],[-14,5],[-20,13],[-8,0],[-13,8],[-4,-2],[-16,10],[-4,12],[-7,11],[-2,7],[-7,11],[-2,7]],[[88094,26043],[-3,11],[-2,10],[3,12],[-4,8],[-7,9],[-10,0],[-8,-3],[-9,-1],[-67,-34],[-24,6],[-7,5],[-20,9],[-18,28]],[[87918,26103],[-8,11],[-5,11],[-4,6],[-20,44],[-4,12],[-15,27],[-7,9],[-7,11],[-13,28],[-2,9],[0,7],[1,9],[-3,13],[-1,5],[-5,10],[-49,30]],[[87776,26345],[-9,5],[-6,0],[-8,5],[-9,6],[-10,2],[-11,3],[-11,-2],[-12,-6],[-5,-11],[-4,-4],[-28,-8],[-14,2],[-6,3],[-17,11],[-21,-8]],[[87605,26343],[-15,-1],[-5,-4],[-12,-18],[-4,-14],[-24,-46],[-9,-13],[-5,-13],[-1,-14],[-1,-8],[-2,-7],[-6,-8],[-4,-5],[-21,-24]],[[87496,26168],[-3,-7],[-8,-27],[-10,-14],[-6,-10],[-9,-9],[-13,-10],[-12,-4],[-10,2],[-7,3],[-12,5],[-20,12],[-11,3],[-7,-12],[-6,-2],[-1,-3],[-4,1],[-17,8],[-7,1],[-2,-1],[-10,9],[-12,-2]],[[87309,26111],[-4,-1],[-3,-5],[-13,-2],[-10,-3],[-5,-3],[-5,-8],[-25,-12],[-10,1],[-5,9],[-15,-9],[-6,-8],[-5,-7],[-5,-5],[-11,-7],[-3,-4],[-3,-5],[-5,-5],[-5,-1],[-7,2],[-40,-8]],[[87124,26030],[-5,-2],[-4,-5],[-3,-6],[-2,1],[-3,4],[-7,3],[-8,6],[-3,3],[-3,7],[1,5],[-6,24],[-3,5],[-3,4],[-2,5],[-2,8],[-2,5],[-10,6],[-8,10],[-6,7],[-3,5],[-3,11],[-2,3],[-14,10],[-33,12],[-10,1],[-20,-1]],[[86960,26161],[-7,0],[-29,13],[-19,13],[-7,8],[-3,6],[-4,4],[-5,1],[-7,-2],[-3,-3],[-19,7],[-7,4],[-7,3],[-7,0],[-4,-2],[-12,-8],[-6,-3],[-5,-2],[-14,5],[-7,-2]],[[86788,26203],[-13,-26],[-7,-15],[-12,-18],[-4,-6],[-3,-3],[-13,-8],[-27,-21],[-11,-14],[-7,-8],[-9,-5],[-22,-6],[-6,-9],[-6,-11],[-24,-14]],[[86624,26039],[-104,-57],[-51,-1],[-33,-22]],[[86436,25959],[-27,-8],[-24,-7],[-43,-15],[-2,-1],[-45,-41],[-23,-27],[-15,-19]],[[86257,25841],[-55,-67],[-53,-26],[-88,26]],[[86061,25774],[-65,18],[-44,10],[-34,8],[-35,9]],[[85883,25819],[-47,11],[-72,17],[-20,5],[-8,3],[-30,7]],[[85706,25862],[-16,6],[-20,15],[-27,21],[-9,7],[-56,25],[-7,10],[-6,14],[-2,4],[-5,11],[-2,6]],[[85556,25981],[-9,4],[-147,15]],[[85400,26000],[-165,17]],[[85235,26017],[-161,16],[-40,3],[-11,2],[-37,0],[-75,0],[-34,0]],[[84877,26038],[-6,0],[-8,3],[-12,-3],[-8,4],[-4,4],[-4,1],[-4,-2],[-3,-4],[-7,-3],[-9,2],[-5,-4],[-10,-4],[-4,3],[-33,38],[-6,6],[-4,5],[-2,5],[-3,7],[0,12],[2,12],[2,6],[2,8],[3,9],[0,6],[-1,8],[-4,12],[-3,13],[1,9],[-1,12],[-5,11],[-8,4]],[[84733,26218],[-8,1],[-6,-4],[-6,-7],[-5,-9],[-6,-3],[-15,-3],[-7,-5],[-5,2],[-10,8],[-10,11],[-3,15],[-1,12],[-1,6],[-2,7],[-5,10],[-9,6],[-2,18],[2,5],[8,7],[3,7],[2,10],[-3,6],[1,5],[2,7],[3,9],[0,11],[1,5],[4,4],[9,2],[4,7],[2,7],[5,7],[5,3],[6,2],[5,3]],[[84691,26390],[7,3],[6,0],[9,7],[7,12],[4,7],[5,7],[3,8],[2,10],[-1,8],[0,11],[1,8],[2,6],[-1,8],[-2,8],[-8,18],[-5,3],[-5,1],[-12,27],[-10,5],[-6,-3],[-4,4],[-6,4],[-15,-12],[-9,-8],[-7,-10],[-6,-11],[-12,-11],[-8,4],[-6,-1],[-8,-13],[-8,-7],[-8,-3],[-6,-13],[-9,-8],[-12,2]],[[84563,26461],[-10,-7],[-22,-2],[-12,4],[-5,6],[-8,4],[-6,7],[0,14],[-6,2],[-6,-9],[-12,0],[-12,-10],[-9,9],[-8,0],[-8,-9],[-6,11],[-5,20],[-9,11],[-8,19],[-2,22],[-1,13],[-5,11]],[[84403,26577],[2,17],[-2,18],[6,26],[0,26],[3,11],[9,8],[22,31],[1,16],[-11,12],[-10,-1],[-40,-41],[-5,3],[-6,9],[-20,19],[-9,3],[-12,3],[-8,10],[-5,13],[-1,13],[2,31],[-4,25]],[[84315,26829],[-3,16],[-15,26],[-5,7],[-5,11],[-8,3],[-10,0],[-10,5],[-14,3],[-10,8],[-4,1],[-5,-6],[-9,-16],[-13,3],[-10,3],[-5,1],[-12,10],[-16,10],[-9,8],[-15,7],[-28,-6],[-9,-4],[-6,-1],[-7,3],[-5,5],[-7,11],[-7,11],[-19,34]],[[84049,26982],[-9,18],[-6,9],[-2,7],[-8,6],[-6,3],[-6,4],[-5,3],[-4,6],[-4,8],[-4,9],[-3,8],[-5,12],[-2,13],[-2,14],[-1,11],[-1,9],[-1,10],[2,8],[2,7],[4,11],[5,10],[2,7],[5,11],[1,7],[-2,10],[-5,12],[-3,6],[-3,9],[-2,8],[-5,8],[-4,6],[-5,5],[-19,15],[-12,10],[-8,6],[-3,1],[-6,2],[-5,0],[-6,0],[-3,-1],[-14,-17],[-25,-24],[-9,-7],[-11,-15],[-6,-9],[-18,-18]],[[83827,27200],[-20,-26],[-17,-22],[-10,-12],[-4,-9],[-8,-23],[-9,-20],[-14,-4],[-6,-2],[-14,-18],[-17,-19],[-18,-4],[-5,-1],[-10,-4],[-10,-2],[-3,1],[-4,4],[-6,9],[-9,16],[-6,11],[-5,11],[-8,15],[-4,7],[-2,6],[-2,15],[-2,53],[-1,47],[0,8],[-5,10],[-7,12],[-6,11],[-4,3],[-6,0],[-3,-5],[-7,-17],[-7,-8],[-9,-8],[-5,-4],[-3,-2],[-6,-5]],[[83545,27224],[-16,-37],[-3,-3],[-3,-1],[-6,1],[-5,1],[-9,-1],[-6,-1],[-5,1],[-3,2],[-6,5],[-5,7],[-7,2],[-4,-2],[-9,-5],[-5,-3],[-7,-7],[-3,-3],[-4,-2],[-4,0],[-4,3],[-9,12],[-11,16],[-10,14],[-6,19],[-10,15],[-8,11],[-8,19],[-12,2],[-9,1],[-11,4],[-10,4],[-13,-2],[-5,-1],[-14,1],[-11,-3]],[[33862,97157],[-860,2137],[-212,525]],[[83284,27293],[-10,21],[-2,5],[-9,13],[-11,16],[-18,7],[-11,-17],[-23,-56],[-7,-11],[-8,1],[-23,19],[-27,9],[-28,-9],[-28,16],[-14,10],[-14,14],[-8,1],[-7,-5],[-8,-10],[-11,-5],[-8,-1]],[[83009,27311],[-20,-3],[-25,-1],[-15,-2],[-7,-1],[-10,0],[-6,2],[-31,19],[-11,7],[-15,6],[-33,-15],[-22,-10],[-21,-10],[-21,5],[-46,-38]],[[82726,27270],[-7,2],[-5,5],[-3,7],[1,9],[5,46],[-4,13],[1,12],[-12,63],[-1,6],[-8,8],[-8,2],[-9,-4],[-17,-32],[-23,-22],[-18,-32],[-4,-5],[-5,-1],[-5,4],[-11,12],[-17,8],[-23,-1],[-18,0],[-75,-25]],[[82460,27345],[-44,-15],[-31,-23],[-25,-21],[-29,-53],[-27,-90],[-35,-29]],[[82269,27114],[-25,-6],[-20,11],[-6,-3],[-11,-11],[-10,-2],[-25,18],[-19,5],[-13,-9],[-11,2],[-27,14],[-21,-15],[-40,9],[-15,-8],[-6,0],[-5,2],[-5,9],[-3,10],[-7,2],[-14,-6]],[[81986,27136],[-25,-10],[-12,3],[-8,-3],[-11,-19],[-6,-3],[-19,3],[-32,-1],[-14,7],[-13,-5],[-10,6],[-4,7],[-58,21],[-14,-16],[-24,-11],[-21,2]],[[81715,27117],[-12,-10],[-6,-11],[-4,-17],[-21,-14],[-17,-23],[-32,-12],[-17,13],[-11,-3],[-14,9],[-15,0],[-41,22],[-22,16],[-29,10],[-17,8],[-11,5],[-16,6]],[[81430,27116],[-9,3],[-19,1],[-20,12],[-18,-6],[-15,-18],[-37,20],[-10,11],[-25,9],[-17,19],[-21,4],[-15,14],[-14,19],[-20,13],[-3,1],[-19,22]],[[81168,27240],[-21,13],[-43,37],[-2,14],[-1,5],[-4,8],[-8,-8],[-18,3],[-13,12],[-24,12],[-23,39],[-5,0],[-14,-12],[-11,0],[-12,18],[-32,22]],[[80937,27403],[-19,-3],[-3,0],[-17,6],[-19,18],[-9,3],[-26,15],[-3,1],[-8,9],[-20,29],[-41,25],[-11,0],[-11,10],[-14,18],[-42,13]],[[80694,27547],[-20,12],[-5,3],[-25,21],[-4,7],[-12,12],[-9,17],[-9,19],[-9,20],[-10,26],[-13,41],[-8,41],[-3,16],[-20,126],[0,18],[4,13]],[[80551,27939],[11,13],[5,18],[1,32],[-3,19],[-2,13],[-5,25],[-1,5],[-5,9],[-10,3],[-9,-4],[-20,10],[-10,19],[-17,2],[-10,3],[-13,3],[-9,19],[3,28],[-2,8],[-8,8],[-13,3],[-7,3],[-6,4],[-4,7],[3,16],[9,17],[9,34],[-9,6],[-2,16],[-12,29],[-16,5],[-14,-8]],[[80385,28304],[-18,1],[-13,12],[-7,-1],[-4,-7],[-13,8],[-10,30],[-37,43],[-30,61],[5,62],[11,18],[32,34]],[[74842,34964],[164,47],[153,-37],[214,-77],[346,183],[320,168]],[[76039,35248],[61,33],[-7,55],[8,10]],[[95279,22401],[444,-1330]],[[52459,60216],[-8,7],[-27,9],[-21,2],[1,-47],[-18,-37],[-7,3],[-27,-11],[-37,25],[-45,31],[-16,14],[-26,16],[-18,-9],[-26,-4],[-23,-10],[-34,-4],[-27,17],[-25,16],[-19,12],[-22,20],[-11,-1],[-13,-6],[-14,2]],[[51996,60261],[-4,17],[-6,3],[-3,7],[-3,3],[-7,-3],[-9,10],[-6,5],[-8,12],[0,7],[-8,12],[-10,19],[-8,-1],[-15,-26],[-14,-4],[-7,-15],[-7,-2],[-12,-12],[-22,-7],[-10,-15],[-6,-8],[-1,-16],[4,-18],[-7,-18],[0,-8],[-1,-7],[3,-14],[-3,-12],[0,-10],[1,-8],[2,-15],[0,-12],[-3,-4],[0,-10],[-1,-5],[-1,-8],[0,-10],[3,-4],[0,-4],[-2,-6],[-2,-15],[-5,-19],[-7,-8]],[[51811,60032],[-4,-18],[2,-14],[0,-19],[0,-18],[6,-2],[4,-8],[3,-15],[1,-10],[-10,-22],[1,-16],[3,-7],[3,-17],[-6,-11],[6,-16],[10,-20],[1,-22],[-5,-12],[-12,-10],[-10,-6],[-1,-12],[-24,-6],[-11,4],[-5,18],[-11,20],[-12,-7],[-7,5],[-8,1],[-5,10],[-7,-4],[-15,-1],[-9,19],[-13,4],[-11,-2],[-4,10],[-11,-2],[-11,4],[-6,-11],[-6,-3],[-19,-16],[-7,-11],[1,-8],[-1,-9],[-9,-11],[-4,-11],[-4,-23],[-2,-8]],[[33537,93512],[443,700],[528,832],[2,4]],[[34510,95539],[-362,905],[-286,713]],[[51582,59719],[-1,-10],[1,-23],[-2,-11],[-2,-22],[-7,-27],[-8,-12],[-6,-1],[-7,1],[-28,-2],[-5,-7],[-22,-8],[-7,2],[-4,17],[-7,1],[-2,4],[4,13],[-4,11],[-7,35],[0,13],[-3,13],[-4,3],[-3,6]],[[51458,59715],[1,7],[-5,6],[-17,-10],[-10,-17],[-12,-21],[-2,-24],[-12,-17],[-16,-1],[-16,-7],[-18,-16],[-2,-10],[-7,1],[-5,-7],[-7,-5],[-5,-7],[-26,-28],[-5,-10],[3,-16],[-5,-13],[-6,-3],[-3,-5],[-5,-4],[-6,-9],[-8,0],[-15,-21],[0,-16],[-3,-8],[-3,-31]],[[51243,59423],[-5,-40],[-12,-38],[-9,-40],[-28,-47],[-2,-38],[-11,-23],[-6,-26],[-2,-20],[-3,-34],[3,-41]],[[51168,59076],[1,-17],[0,-80],[-13,-47],[-20,-28]],[[64034,54174],[17,-29]],[[64087,54089],[5,-9]],[[64805,54279],[66,39],[28,34],[28,26]],[[65215,54063],[28,69],[22,43]],[[65617,54746],[-8,-8],[-25,-44]],[[65560,54624],[-8,-10]],[[68324,67517],[8,-4],[11,5],[0,21],[-2,12],[-1,9],[4,4],[4,-1],[6,-4],[7,-13],[6,-10],[5,-4],[6,0],[9,4],[4,-4],[2,-13],[1,-20],[-2,-15],[-4,-14],[-10,-22],[-2,-8],[0,-5],[3,-2],[3,1],[2,4],[7,16],[4,9],[3,5],[2,1],[3,-2],[2,-8],[2,-8],[-1,-9],[-1,-7],[-2,-9]],[[68403,67426],[1,-9],[3,-3],[3,-1],[4,1],[4,-1],[5,-3],[2,-3],[3,-2],[2,1],[3,4],[2,6],[2,8],[2,32],[1,17],[0,10],[0,8],[0,4],[1,4],[3,1],[9,-4],[9,-6],[4,-2],[4,-2],[4,-5],[-3,-11],[-17,-42],[-6,-10],[0,-4],[2,-9],[7,-18],[5,-3],[22,4],[17,5],[6,7],[4,6],[5,12],[2,2],[4,-2],[2,-3],[1,-10],[3,-11],[4,-6],[2,-2],[6,-15],[6,-10],[7,-8],[5,-5]],[[68558,67348],[2,-3],[0,-5],[-1,-4],[-3,-6],[-6,-6],[-2,-4],[-2,-7],[-1,-10],[1,-7],[-1,-5],[-2,-4],[-9,-6],[-17,-6],[-1,-5],[4,-9],[5,-8]],[[49187,91097],[158,-153]],[[85440,43007],[7,-24],[1,-20],[12,-19],[7,-36],[19,-1],[12,-20],[11,-14]],[[85440,43007],[-15,-44],[-13,-31],[-12,-19],[-17,-18],[-13,-16],[-8,-17],[-3,-15],[-6,-14],[-11,-2],[-11,-3]],[[88191,49486],[112,-11]],[[89820,33486],[7,-241],[-3,-202]],[[66448,36571],[52,-136]],[[90111,34956],[157,74]],[[92584,30933],[1340,146]],[[21599,87705],[-34,-583],[31,-197],[70,-100],[181,-45],[668,-105],[351,-55],[123,-20],[331,-214],[266,-26],[275,47],[494,158],[1996,632],[703,219],[752,1591]],[[27806,89007],[2632,1166],[1175,1462],[136,94],[1184,816],[77,52],[230,451],[297,464]],[[32790,99819],[-73,180]],[[31623,99999],[-1119,-953],[-114,-98],[-53,-60],[-54,-99],[-40,-144],[-65,-472],[-129,-876]],[[30049,97297],[-229,-1464],[-207,-452],[-694,-1261],[-715,-1301],[-723,-1320],[-612,-1122]],[[21599,87705],[18,309],[15,95],[58,103],[76,33],[134,-49],[363,-152],[323,-135],[544,104],[590,196],[82,23],[56,-28],[185,-235],[52,-67],[563,558],[1224,1206]],[[25882,89666],[636,625],[351,86]],[[10239,90620],[13,-61]],[[73051,35236],[1,-9]],[[76896,44410],[-6,-40]],[[76655,45234],[9,-23]],[[76252,46242],[0,-25]],[[75042,46653],[-3,-21]],[[72613,46574],[23,3]],[[71208,46944],[-20,0]],[[69824,49102],[-10,-4]],[[68257,50813],[-14,21]],[[67028,50896],[-24,-19]],[[65920,51581],[-24,-19]],[[48756,90368],[17,-52]],[[48646,90622],[8,-21]],[[48326,96119],[-8,-32]]]} \ No newline at end of file diff --git a/frontend/public/world.json b/frontend/public/world.json index 7a4181c0..b808afb3 100644 --- a/frontend/public/world.json +++ b/frontend/public/world.json @@ -1 +1 @@ -{"type":"Topology","bbox":[19.10474953226202,7.901947187500468,940.8952504677379,499.66025213707996],"transform":{"scale":[0.009217997189326652,0.004917632225818053],"translate":[19.10474953226202,7.901947187500468]},"objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]]],"id":"242","properties":{"name":"Fiji"}},{"type":"Polygon","arcs":[[2,3,4,5,6,7,8,9,10]],"id":"834","properties":{"name":"Tanzania"}},{"type":"Polygon","arcs":[[11,12,13,14]],"id":"732","properties":{"name":"W. Sahara"}},{"type":"MultiPolygon","arcs":[[[15,16,17,18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]]],"id":"124","properties":{"name":"Canada"}},{"type":"MultiPolygon","arcs":[[[-19,48,49,50]],[[51]],[[52]],[[53]],[[-17,54]],[[55]]],"id":"840","properties":{"name":"United States of America"}},{"type":"Polygon","arcs":[[56,57,58,59,60,61]],"id":"398","properties":{"name":"Kazakhstan"}},{"type":"Polygon","arcs":[[-59,62,63,64,65]],"id":"860","properties":{"name":"Uzbekistan"}},{"type":"MultiPolygon","arcs":[[[66,67]],[[68]],[[69]],[[70]]],"id":"598","properties":{"name":"Papua New Guinea"}},{"type":"MultiPolygon","arcs":[[[-68,71]],[[72,73]],[[74]],[[75,76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]]],"id":"360","properties":{"name":"Indonesia"}},{"type":"MultiPolygon","arcs":[[[86,87]],[[88,89,90,91,92,93]]],"id":"032","properties":{"name":"Argentina"}},{"type":"MultiPolygon","arcs":[[[-88,94]],[[95,-91,96,97]]],"id":"152","properties":{"name":"Chile"}},{"type":"Polygon","arcs":[[-8,98,99,100,101,102,103,104,105,106,107]],"id":"180","properties":{"name":"Dem. Rep. Congo"}},{"type":"Polygon","arcs":[[108,109,110,111]],"id":"706","properties":{"name":"Somalia"}},{"type":"Polygon","arcs":[[-3,112,113,114,-109,115]],"id":"404","properties":{"name":"Kenya"}},{"type":"Polygon","arcs":[[116,117,118,119,120,121,122,123]],"id":"729","properties":{"name":"Sudan"}},{"type":"Polygon","arcs":[[-118,124,125,126,127]],"id":"148","properties":{"name":"Chad"}},{"type":"Polygon","arcs":[[128,129]],"id":"332","properties":{"name":"Haiti"}},{"type":"Polygon","arcs":[[-129,130]],"id":"214","properties":{"name":"Dominican Rep."}},{"type":"MultiPolygon","arcs":[[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137,138,139]],[[140]],[[141]],[[142]],[[143,144,145,146,147,-62,148,149,150,151,152,153,154,155,156,157,158,159]],[[160]],[[161]],[[162,163]]],"id":"643","properties":{"name":"Russia"}},{"type":"MultiPolygon","arcs":[[[164]],[[165]],[[166]]],"id":"044","properties":{"name":"Bahamas"}},{"type":"Polygon","arcs":[[167]],"id":"238","properties":{"name":"Falkland Is."}},{"type":"MultiPolygon","arcs":[[[168]],[[-159,169,170,171]],[[172]],[[173]]],"id":"578","properties":{"name":"Norway"}},{"type":"Polygon","arcs":[[174]],"id":"304","properties":{"name":"Greenland"}},{"type":"Polygon","arcs":[[175]],"id":"260","properties":{"name":"Fr. S. Antarctic Lands"}},{"type":"Polygon","arcs":[[176,-73]],"id":"626","properties":{"name":"Timor-Leste"}},{"type":"Polygon","arcs":[[177,178,179,180,181,182,183],[184]],"id":"710","properties":{"name":"South Africa"}},{"type":"Polygon","arcs":[[-185]],"id":"426","properties":{"name":"Lesotho"}},{"type":"Polygon","arcs":[[-50,185,186,187,188]],"id":"484","properties":{"name":"Mexico"}},{"type":"Polygon","arcs":[[189,190,-89]],"id":"858","properties":{"name":"Uruguay"}},{"type":"Polygon","arcs":[[-190,-94,191,192,193,194,195,196,197,198,199]],"id":"076","properties":{"name":"Brazil"}},{"type":"Polygon","arcs":[[-193,200,-92,-96,201]],"id":"068","properties":{"name":"Bolivia"}},{"type":"Polygon","arcs":[[-194,-202,-98,202,203,204]],"id":"604","properties":{"name":"Peru"}},{"type":"Polygon","arcs":[[-195,-205,205,206,207,208,209]],"id":"170","properties":{"name":"Colombia"}},{"type":"Polygon","arcs":[[-208,210,211,212]],"id":"591","properties":{"name":"Panama"}},{"type":"Polygon","arcs":[[-212,213,214,215]],"id":"188","properties":{"name":"Costa Rica"}},{"type":"Polygon","arcs":[[-215,216,217,218]],"id":"558","properties":{"name":"Nicaragua"}},{"type":"Polygon","arcs":[[-218,219,220,221,222]],"id":"340","properties":{"name":"Honduras"}},{"type":"Polygon","arcs":[[-221,223,224]],"id":"222","properties":{"name":"El Salvador"}},{"type":"Polygon","arcs":[[-188,225,226,-222,-225,227]],"id":"320","properties":{"name":"Guatemala"}},{"type":"Polygon","arcs":[[-187,228,-226]],"id":"084","properties":{"name":"Belize"}},{"type":"Polygon","arcs":[[-196,-210,229,230]],"id":"862","properties":{"name":"Venezuela"}},{"type":"Polygon","arcs":[[-197,-231,231,232]],"id":"328","properties":{"name":"Guyana"}},{"type":"Polygon","arcs":[[-198,-233,233,234]],"id":"740","properties":{"name":"Suriname"}},{"type":"MultiPolygon","arcs":[[[-199,-235,235]],[[236,237,238,239,240,241,242,243]],[[244]]],"id":"250","properties":{"name":"France"}},{"type":"Polygon","arcs":[[-204,245,-206]],"id":"218","properties":{"name":"Ecuador"}},{"type":"Polygon","arcs":[[246]],"id":"630","properties":{"name":"Puerto Rico"}},{"type":"Polygon","arcs":[[247]],"id":"388","properties":{"name":"Jamaica"}},{"type":"Polygon","arcs":[[248]],"id":"192","properties":{"name":"Cuba"}},{"type":"Polygon","arcs":[[-180,249,250,251]],"id":"716","properties":{"name":"Zimbabwe"}},{"type":"Polygon","arcs":[[-179,252,253,-250]],"id":"072","properties":{"name":"Botswana"}},{"type":"Polygon","arcs":[[-178,254,255,256,-253]],"id":"516","properties":{"name":"Namibia"}},{"type":"Polygon","arcs":[[257,258,259,260,261,262,263]],"id":"686","properties":{"name":"Senegal"}},{"type":"Polygon","arcs":[[-260,264,265,266,267,268,269]],"id":"466","properties":{"name":"Mali"}},{"type":"Polygon","arcs":[[-13,270,-265,-259,271]],"id":"478","properties":{"name":"Mauritania"}},{"type":"Polygon","arcs":[[272,273,274,275,276]],"id":"204","properties":{"name":"Benin"}},{"type":"Polygon","arcs":[[-127,277,278,-276,279,-267,280,281]],"id":"562","properties":{"name":"Niger"}},{"type":"Polygon","arcs":[[-277,-279,282,283]],"id":"566","properties":{"name":"Nigeria"}},{"type":"Polygon","arcs":[[-126,284,285,286,287,288,-283,-278]],"id":"120","properties":{"name":"Cameroon"}},{"type":"Polygon","arcs":[[-274,289,290,291]],"id":"768","properties":{"name":"Togo"}},{"type":"Polygon","arcs":[[-291,292,293,294]],"id":"288","properties":{"name":"Ghana"}},{"type":"Polygon","arcs":[[-269,295,-294,296,297,298]],"id":"384","properties":{"name":"Côte d'Ivoire"}},{"type":"Polygon","arcs":[[-261,-270,-299,299,300,301,302]],"id":"324","properties":{"name":"Guinea"}},{"type":"Polygon","arcs":[[-262,-303,303]],"id":"624","properties":{"name":"Guinea-Bissau"}},{"type":"Polygon","arcs":[[-298,304,305,-300]],"id":"430","properties":{"name":"Liberia"}},{"type":"Polygon","arcs":[[-301,-306,306]],"id":"694","properties":{"name":"Sierra Leone"}},{"type":"Polygon","arcs":[[-268,-280,-275,-292,-295,-296]],"id":"854","properties":{"name":"Burkina Faso"}},{"type":"Polygon","arcs":[[-104,307,-285,-125,-117,308]],"id":"140","properties":{"name":"Central African Rep."}},{"type":"Polygon","arcs":[[-103,309,310,311,-286,-308]],"id":"178","properties":{"name":"Congo"}},{"type":"Polygon","arcs":[[-287,-312,312,313]],"id":"266","properties":{"name":"Gabon"}},{"type":"Polygon","arcs":[[-288,-314,314]],"id":"226","properties":{"name":"Eq. Guinea"}},{"type":"Polygon","arcs":[[-7,315,316,-251,-254,-257,317,-99]],"id":"894","properties":{"name":"Zambia"}},{"type":"Polygon","arcs":[[-6,318,-316]],"id":"454","properties":{"name":"Malawi"}},{"type":"Polygon","arcs":[[-5,319,-183,320,-181,-252,-317,-319]],"id":"508","properties":{"name":"Mozambique"}},{"type":"Polygon","arcs":[[-182,-321]],"id":"748","properties":{"name":"eSwatini"}},{"type":"MultiPolygon","arcs":[[[-102,321,-310]],[[-100,-318,-256,322]]],"id":"024","properties":{"name":"Angola"}},{"type":"Polygon","arcs":[[-9,-108,323]],"id":"108","properties":{"name":"Burundi"}},{"type":"Polygon","arcs":[[324,325,326,327,328,329,330]],"id":"376","properties":{"name":"Israel"}},{"type":"Polygon","arcs":[[-330,331,332]],"id":"422","properties":{"name":"Lebanon"}},{"type":"Polygon","arcs":[[333]],"id":"450","properties":{"name":"Madagascar"}},{"type":"Polygon","arcs":[[-326,334]],"id":"275","properties":{"name":"Palestine"}},{"type":"Polygon","arcs":[[-264,335]],"id":"270","properties":{"name":"Gambia"}},{"type":"Polygon","arcs":[[336,337,338]],"id":"788","properties":{"name":"Tunisia"}},{"type":"Polygon","arcs":[[-12,339,340,-337,341,-281,-266,-271]],"id":"012","properties":{"name":"Algeria"}},{"type":"Polygon","arcs":[[-325,342,343,344,345,-327,-335]],"id":"400","properties":{"name":"Jordan"}},{"type":"Polygon","arcs":[[346,347,348,349,350]],"id":"784","properties":{"name":"United Arab Emirates"}},{"type":"Polygon","arcs":[[351,352]],"id":"634","properties":{"name":"Qatar"}},{"type":"Polygon","arcs":[[353,354,355]],"id":"414","properties":{"name":"Kuwait"}},{"type":"Polygon","arcs":[[-344,356,357,358,359,-356,360]],"id":"368","properties":{"name":"Iraq"}},{"type":"MultiPolygon","arcs":[[[-350,361,362,363]],[[-348,364]]],"id":"512","properties":{"name":"Oman"}},{"type":"MultiPolygon","arcs":[[[365]],[[366]]],"id":"548","properties":{"name":"Vanuatu"}},{"type":"Polygon","arcs":[[367,368,369,370]],"id":"116","properties":{"name":"Cambodia"}},{"type":"Polygon","arcs":[[-368,371,372,373,374,375]],"id":"764","properties":{"name":"Thailand"}},{"type":"Polygon","arcs":[[-369,-376,376,377,378]],"id":"418","properties":{"name":"Laos"}},{"type":"Polygon","arcs":[[-375,379,380,381,382,-377]],"id":"104","properties":{"name":"Myanmar"}},{"type":"Polygon","arcs":[[-370,-379,383,384]],"id":"704","properties":{"name":"Vietnam"}},{"type":"MultiPolygon","arcs":[[[143,143,143]],[[-145,385,386,387,388]]],"id":"408","properties":{"name":"North Korea"}},{"type":"Polygon","arcs":[[-387,389]],"id":"410","properties":{"name":"South Korea"}},{"type":"Polygon","arcs":[[-147,390]],"id":"496","properties":{"name":"Mongolia"}},{"type":"Polygon","arcs":[[-382,391,392,393,394,395,396,397,398]],"id":"356","properties":{"name":"India"}},{"type":"Polygon","arcs":[[-381,399,-392]],"id":"050","properties":{"name":"Bangladesh"}},{"type":"Polygon","arcs":[[-398,400]],"id":"064","properties":{"name":"Bhutan"}},{"type":"Polygon","arcs":[[-396,401]],"id":"524","properties":{"name":"Nepal"}},{"type":"Polygon","arcs":[[-394,402,403,404,405]],"id":"586","properties":{"name":"Pakistan"}},{"type":"Polygon","arcs":[[-65,406,407,-405,408,409]],"id":"004","properties":{"name":"Afghanistan"}},{"type":"Polygon","arcs":[[-64,410,411,-407]],"id":"762","properties":{"name":"Tajikistan"}},{"type":"Polygon","arcs":[[-58,412,-411,-63]],"id":"417","properties":{"name":"Kyrgyzstan"}},{"type":"Polygon","arcs":[[-60,-66,-410,413,414]],"id":"795","properties":{"name":"Turkmenistan"}},{"type":"Polygon","arcs":[[-359,415,416,417,418,419,-414,-409,-404,420]],"id":"364","properties":{"name":"Iran"}},{"type":"Polygon","arcs":[[-331,-333,421,422,-357,-343]],"id":"760","properties":{"name":"Syria"}},{"type":"Polygon","arcs":[[-418,423,424,425,426]],"id":"051","properties":{"name":"Armenia"}},{"type":"Polygon","arcs":[[-171,427,428]],"id":"752","properties":{"name":"Sweden"}},{"type":"Polygon","arcs":[[-154,429,430,431,432]],"id":"112","properties":{"name":"Belarus"}},{"type":"Polygon","arcs":[[-153,433,-163,434,435,436,437,438,439,440,-430]],"id":"804","properties":{"name":"Ukraine"}},{"type":"Polygon","arcs":[[-431,-441,441,442,443,444,-138,445]],"id":"616","properties":{"name":"Poland"}},{"type":"Polygon","arcs":[[446,447,448,449,450,451,452]],"id":"040","properties":{"name":"Austria"}},{"type":"Polygon","arcs":[[-439,453,454,455,456,-447,457]],"id":"348","properties":{"name":"Hungary"}},{"type":"Polygon","arcs":[[-437,458]],"id":"498","properties":{"name":"Moldova"}},{"type":"Polygon","arcs":[[-436,459,460,461,-454,-438,-459]],"id":"642","properties":{"name":"Romania"}},{"type":"Polygon","arcs":[[-432,-446,-140,462,463]],"id":"440","properties":{"name":"Lithuania"}},{"type":"Polygon","arcs":[[-155,-433,-464,464,465]],"id":"428","properties":{"name":"Latvia"}},{"type":"Polygon","arcs":[[-156,-466,466]],"id":"233","properties":{"name":"Estonia"}},{"type":"Polygon","arcs":[[-444,467,-451,468,-237,469,470,471,472,473,474]],"id":"276","properties":{"name":"Germany"}},{"type":"Polygon","arcs":[[-461,475,476,477,478,479]],"id":"100","properties":{"name":"Bulgaria"}},{"type":"MultiPolygon","arcs":[[[480]],[[-478,481,482,483,484]]],"id":"300","properties":{"name":"Greece"}},{"type":"MultiPolygon","arcs":[[[-358,-423,485,486,-425,-416]],[[-477,487,-482]]],"id":"792","properties":{"name":"Turkey"}},{"type":"Polygon","arcs":[[-484,488,489,490,491]],"id":"008","properties":{"name":"Albania"}},{"type":"Polygon","arcs":[[-456,492,493,494,495,496]],"id":"191","properties":{"name":"Croatia"}},{"type":"Polygon","arcs":[[-450,497,-238,-469]],"id":"756","properties":{"name":"Switzerland"}},{"type":"Polygon","arcs":[[-470,-244,498]],"id":"442","properties":{"name":"Luxembourg"}},{"type":"Polygon","arcs":[[-471,-499,-243,499,500]],"id":"056","properties":{"name":"Belgium"}},{"type":"Polygon","arcs":[[-472,-501,501]],"id":"528","properties":{"name":"Netherlands"}},{"type":"Polygon","arcs":[[502,503]],"id":"620","properties":{"name":"Portugal"}},{"type":"Polygon","arcs":[[-503,504,-241,505]],"id":"724","properties":{"name":"Spain"}},{"type":"Polygon","arcs":[[506,507]],"id":"372","properties":{"name":"Ireland"}},{"type":"Polygon","arcs":[[508]],"id":"540","properties":{"name":"New Caledonia"}},{"type":"MultiPolygon","arcs":[[[509]],[[510]],[[511]],[[512]]],"id":"090","properties":{"name":"Solomon Is."}},{"type":"MultiPolygon","arcs":[[[513]],[[514]]],"id":"554","properties":{"name":"New Zealand"}},{"type":"MultiPolygon","arcs":[[[515]],[[516]]],"id":"036","properties":{"name":"Australia"}},{"type":"Polygon","arcs":[[517]],"id":"144","properties":{"name":"Sri Lanka"}},{"type":"MultiPolygon","arcs":[[[518]],[[-57,-148,-391,-146,-389,519,-384,-378,-383,-399,-401,-397,-402,-395,-406,-408,-412,-413]]],"id":"156","properties":{"name":"China"}},{"type":"Polygon","arcs":[[520]],"id":"158","properties":{"name":"Taiwan"}},{"type":"MultiPolygon","arcs":[[[-449,521,522,-239,-498]],[[523]],[[524]]],"id":"380","properties":{"name":"Italy"}},{"type":"MultiPolygon","arcs":[[[-474,525]],[[526]]],"id":"208","properties":{"name":"Denmark"}},{"type":"MultiPolygon","arcs":[[[-508,527]],[[528]]],"id":"826","properties":{"name":"United Kingdom"}},{"type":"Polygon","arcs":[[529]],"id":"352","properties":{"name":"Iceland"}},{"type":"MultiPolygon","arcs":[[[-150,530,-419,-427,531]],[[-417,-424]]],"id":"031","properties":{"name":"Azerbaijan"}},{"type":"Polygon","arcs":[[-151,-532,-426,-487,532]],"id":"268","properties":{"name":"Georgia"}},{"type":"MultiPolygon","arcs":[[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]]],"id":"608","properties":{"name":"Philippines"}},{"type":"MultiPolygon","arcs":[[[-373,540]],[[-77,541,542,543]]],"id":"458","properties":{"name":"Malaysia"}},{"type":"Polygon","arcs":[[-543,544]],"id":"096","properties":{"name":"Brunei"}},{"type":"Polygon","arcs":[[-448,-457,-497,545,-522]],"id":"705","properties":{"name":"Slovenia"}},{"type":"Polygon","arcs":[[-158,546,-428,-170]],"id":"246","properties":{"name":"Finland"}},{"type":"Polygon","arcs":[[-440,-458,-453,547,-442]],"id":"703","properties":{"name":"Slovakia"}},{"type":"Polygon","arcs":[[-443,-548,-452,-468]],"id":"203","properties":{"name":"Czechia"}},{"type":"Polygon","arcs":[[-122,548,549,550]],"id":"232","properties":{"name":"Eritrea"}},{"type":"MultiPolygon","arcs":[[[551]],[[552]],[[553]]],"id":"392","properties":{"name":"Japan"}},{"type":"Polygon","arcs":[[-192,-93,-201]],"id":"600","properties":{"name":"Paraguay"}},{"type":"Polygon","arcs":[[-363,554,555]],"id":"887","properties":{"name":"Yemen"}},{"type":"Polygon","arcs":[[-345,-361,-355,556,-353,557,-351,-364,-556,558]],"id":"682","properties":{"name":"Saudi Arabia"}},{"type":"MultiPolygon","arcs":[[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]]],"id":"010","properties":{"name":"Antarctica"}},{"type":"Polygon","arcs":[[567,568]],"properties":{"name":"N. Cyprus"}},{"type":"Polygon","arcs":[[-569,569]],"id":"196","properties":{"name":"Cyprus"}},{"type":"Polygon","arcs":[[-340,-15,570]],"id":"504","properties":{"name":"Morocco"}},{"type":"Polygon","arcs":[[-120,571,572,-328,573]],"id":"818","properties":{"name":"Egypt"}},{"type":"Polygon","arcs":[[-119,-128,-282,-342,-339,574,-572]],"id":"434","properties":{"name":"Libya"}},{"type":"Polygon","arcs":[[-110,-115,575,-123,-551,576,577]],"id":"231","properties":{"name":"Ethiopia"}},{"type":"Polygon","arcs":[[-550,578,579,-577]],"id":"262","properties":{"name":"Djibouti"}},{"type":"Polygon","arcs":[[-111,-578,-580,580]],"properties":{"name":"Somaliland"}},{"type":"Polygon","arcs":[[-11,581,-106,582,-113]],"id":"800","properties":{"name":"Uganda"}},{"type":"Polygon","arcs":[[-10,-324,-107,-582]],"id":"646","properties":{"name":"Rwanda"}},{"type":"Polygon","arcs":[[-494,583,584]],"id":"070","properties":{"name":"Bosnia and Herz."}},{"type":"Polygon","arcs":[[-479,-485,-492,585,586]],"id":"807","properties":{"name":"Macedonia"}},{"type":"Polygon","arcs":[[-455,-462,-480,-587,587,588,-584,-493]],"id":"688","properties":{"name":"Serbia"}},{"type":"Polygon","arcs":[[-490,589,-495,-585,-589,590]],"id":"499","properties":{"name":"Montenegro"}},{"type":"Polygon","arcs":[[-491,-591,-588,-586]],"properties":{"name":"Kosovo"}},{"type":"Polygon","arcs":[[591]],"id":"780","properties":{"name":"Trinidad and Tobago"}},{"type":"Polygon","arcs":[[-105,-309,-124,-576,-114,-583]],"id":"728","properties":{"name":"S. Sudan"}}]}},"arcs":[[[99364,60250],[155,78],[-90,328],[-325,9],[145,-493],[115,78]],[[99961,59653],[-390,286],[-6,-234],[434,-360],[-38,308]],[[59532,49829],[1063,1351],[17,366],[399,628]],[[61011,52174],[-136,776],[13,357],[177,230],[-84,1036],[198,1015],[100,137]],[[61279,55725],[-229,365],[-580,423],[-270,96],[-333,-177],[-211,51]],[[59656,56483],[-64,-857],[-144,-467],[-274,-118]],[[59174,55041],[-559,-560]],[[58615,54481],[-144,-794],[-160,-351],[-70,-1273]],[[58241,52063],[117,-29],[284,-689],[-77,-595]],[[58565,50750],[98,-450],[-111,-355]],[[58552,49945],[99,-75],[881,-41]],[[47650,31822],[-7,164]],[[47643,31986],[-10,953],[-892,-33],[-12,1610],[-258,57],[-71,324],[42,908],[-1078,-4],[-63,210]],[[45301,36011],[16,-265]],[[45317,35746],[625,-50],[152,-510],[103,-869],[389,-678],[139,-794],[180,-537],[450,14],[257,-163],[38,-337]],[[19455,18509],[-427,-861],[-365,-251],[42,-534],[163,-370],[-220,-256],[135,-482],[-126,-432],[116,-305]],[[18773,15018],[248,-286],[147,-372],[-242,-373],[113,-1081],[-122,-494],[32,-297],[-717,507],[-34,-628],[-351,-174],[2016,-3161],[1539,-1976]],[[21402,6683],[274,126],[293,302],[730,-384],[252,64],[918,-360],[-30,217],[481,-368],[96,56],[-15,469],[535,-355],[-268,397],[502,-239],[223,30],[153,220],[568,282],[224,-33],[102,268],[-460,263],[305,115],[836,-156],[31,319],[387,-270],[-75,-225],[244,-181],[463,-77],[129,414],[256,-42],[233,239],[668,-72],[157,-330],[235,-92],[223,179],[-268,504],[356,-425],[160,15],[379,-532],[-154,-535],[359,-574],[464,-374],[270,310],[-64,585],[-322,256],[321,107],[-283,539],[488,-414],[72,339],[-256,393],[30,361],[773,-843],[301,-577],[529,118],[148,260],[-394,544],[19,284],[-142,261],[-578,376],[-332,83],[-147,-162],[-757,968],[-408,371],[-328,36],[-272,234],[-163,360],[-287,70],[-456,453],[-493,634],[-258,448],[-255,664],[307,97],[-109,982],[364,-116],[359,253],[259,500],[437,409],[629,92],[-168,513],[-69,599],[22,671],[242,572],[229,-196],[264,-618],[88,-945],[-94,-312],[450,-277],[371,-414],[233,-408],[82,-391],[-25,-493],[-159,-435],[449,-601],[59,-515],[213,-878],[200,-130],[543,206],[233,-146],[323,515],[4,219],[391,43],[-141,476],[-117,723],[189,90],[83,340],[414,-321],[597,-897],[51,510],[237,1432],[-170,367],[399,668],[353,152],[120,190],[10,503],[235,304],[-87,674],[-419,437],[-437,215],[-385,498],[-433,99],[-507,-128],[-632,38],[-280,436],[-360,270],[-869,1376],[229,-101],[529,-805],[604,-510],[381,-60],[174,298],[-297,411],[0,1126],[286,308],[430,-90],[344,-692],[-42,447],[135,223],[-364,405],[-610,367],[-627,697],[-189,-46],[59,-524],[510,-511],[-702,95]],[[32952,20882],[-116,-349],[123,-839],[-328,-235],[-263,464],[-281,761],[-255,279],[-855,4],[-508,608],[-119,242],[-486,2],[-131,98],[2,375],[-382,308],[-280,98],[-350,333],[-137,-252],[398,-926],[77,-1101],[-214,-289],[-61,-429],[-141,-238],[-710,-861],[-342,180],[-274,-160],[-219,80],[-202,-190],[-399,-134],[-22,-439],[-139,237],[-6883,0]],[[31270,10610],[261,-258],[302,6],[-416,416],[-147,-164]],[[34629,5087],[-61,-270],[223,-215],[403,53],[121,420],[-686,12]],[[32018,10815],[249,-40],[-187,294],[-62,-254]],[[32709,3989],[-240,194],[-372,-169],[268,-224],[364,-133],[-20,332]],[[33660,2740],[-390,-17],[78,-134],[340,7],[-28,144]],[[33727,2144],[37,165],[-561,272],[-33,-112],[294,-375],[263,50]],[[33521,4283],[-643,-223],[296,-520],[-13,-215],[-401,-211],[239,-200],[336,31],[65,156],[350,0],[-157,345],[155,229],[467,64],[363,-107],[671,-8],[-12,393],[-541,240],[-201,-61],[-974,87]],[[30953,2436],[161,75],[-680,283],[-92,-157],[611,-201]],[[31359,2126],[107,96],[-593,92],[486,-188]],[[36370,17103],[-425,912],[190,-205],[148,129],[-116,213],[198,166],[134,-148],[223,188],[-134,447],[187,-104],[24,704],[-169,541],[-269,-93],[55,-581],[-356,533],[-148,-21],[213,-288],[-222,-150],[-758,18],[171,-397],[-86,-166],[261,-368],[394,-968],[447,-552],[38,190]],[[31867,9143],[342,358],[-82,262],[266,140],[-261,174],[-292,-133],[-27,-248],[-758,580],[52,-324],[-321,53],[302,-273],[493,-932],[74,284],[212,59]],[[34700,5317],[291,-204],[445,504],[-82,225],[420,-117],[57,329],[392,205],[84,700],[-473,246],[355,346],[288,117],[131,491],[321,36],[-189,377],[-577,632],[-191,-234],[-162,-520],[-298,67],[-135,310],[376,714],[-23,545],[-193,400],[-653,-594],[297,814],[-20,196],[-541,-224],[-559,-593],[129,-157],[-454,-549],[-53,159],[-663,87],[-114,-189],[297,-402],[877,-79],[178,-463],[477,-524],[28,-419],[-210,-257],[-339,-179],[191,-134],[-68,-326],[-240,-208],[-182,155],[-400,67],[-678,-117],[-630,-232],[-66,-182],[340,-236],[-280,-2],[243,-522],[426,-456],[326,-206],[573,-135],[-339,327],[-36,318],[418,-411],[605,-207],[29,525],[-210,335],[464,-149]],[[32243,4412],[658,140],[-575,451],[-292,99],[-449,383],[-211,-19],[169,-449],[418,-468],[282,-137]],[[27864,3425],[1394,-681],[575,-64],[-421,373],[-1046,403],[-365,76],[-137,-107]],[[18072,15470],[250,-48],[-332,678],[35,483],[-97,-1],[-85,-737],[146,-452],[83,77]],[[32547,1892],[513,236],[-237,426],[-352,-209],[-361,-17],[317,-142],[120,-294]],[[19201,18809],[-150,85],[-328,-278],[-157,-602],[-220,-111],[78,-470],[549,289],[52,498],[172,251],[4,338]],[[27306,4254],[627,133],[85,358],[-1105,486],[-527,359],[-174,224],[-714,249],[72,-226],[-235,-272],[1171,-923],[95,-309],[705,-79]],[[30454,3559],[404,-61],[-485,478],[-690,77],[-651,217],[-295,12],[117,-164],[576,-220],[-885,59],[-176,-89],[708,-484],[304,-137],[345,166],[53,292],[286,38],[170,-472],[462,-122],[-243,410]],[[29578,4947],[66,206],[-408,863],[380,503],[-162,231],[-359,42],[-174,396],[-589,-226],[-754,211],[-970,129],[50,-249],[-404,-85],[36,-415],[546,-144],[593,-68],[-303,-121],[-733,30],[35,-190],[613,-208],[-310,8],[-241,-136],[761,-588],[762,-309],[118,98],[-284,238],[548,-154],[73,257],[414,-260],[51,167],[-203,503],[249,-212],[245,-524],[354,7]],[[30614,5136],[21,-332],[401,-245],[150,106],[383,-64],[-397,390],[146,219],[-330,462],[-448,200],[-393,-636],[117,-163],[350,63]],[[29762,4682],[331,91],[-412,335],[-38,-355],[119,-71]],[[32502,3129],[-55,227],[-571,623],[-480,-29],[236,-290],[-331,39],[312,-382],[180,15],[709,-203]],[[34811,1294],[553,-271],[389,-22],[-103,238],[314,183],[-146,454],[-1002,496],[-630,-27],[5,-193],[437,-296],[-305,3],[129,-363],[359,-202]],[[36264,722],[923,-164],[447,-157],[136,140],[437,-226],[610,-110],[468,27],[504,-69],[876,84],[379,164],[-126,112],[-1243,371],[335,-3],[-993,396],[-604,374],[-586,171],[-543,51],[-55,375],[-655,299],[-628,444],[237,100],[-678,294],[-375,-135],[-580,75],[-542,-85],[162,-235],[413,-109],[203,-349],[425,174],[20,-308],[-196,-91],[705,-297],[201,-163],[-52,-182],[181,-237],[493,70],[423,-167],[-888,-23],[-99,-153],[265,-458]],[[34230,7883],[-448,184],[272,-559],[322,73],[-146,302]],[[30409,6799],[11,201],[-230,185],[-387,-102],[-143,-237],[550,-388],[199,341]],[[34040,17978],[395,101],[215,255],[-132,123],[-293,-192],[-185,-287]],[[33905,19712],[46,300],[408,65],[-256,292],[-286,-261],[88,-396]],[[32952,20882],[16,203],[-312,300],[-587,397],[-248,509],[-5,659],[124,104],[-787,260],[218,181],[-552,188],[-125,574],[-251,481],[-117,-349],[36,684],[-323,743],[113,-451],[-154,-488],[-61,1096],[69,44],[-34,844],[-221,466],[-296,186],[-353,408],[-222,442],[-338,407],[-351,672],[-89,446],[38,975],[113,1447],[-181,1054],[-216,3],[-109,-421],[-194,-1268],[96,-419],[-196,-872],[-95,-95],[-303,285],[-295,-481],[-544,9],[-332,142],[-20,629],[-399,8],[-163,-333],[-244,78],[-179,-146],[-418,192],[-300,466],[-300,272],[-276,583],[-42,950]],[[23543,32946],[-477,-315],[-53,-736],[-118,-359],[-132,-798],[-158,-252],[-222,12],[-233,497],[-315,-378],[-67,-674],[-298,-698],[-464,0],[-37,259],[-747,4],[-901,-747],[44,-124],[-662,117]],[[18703,28754],[8,-321],[-222,-616],[-446,-264],[-21,-445],[-141,-631],[-88,-1222],[-95,-524],[72,-510],[-65,-342],[283,-1050],[29,-477],[241,-585],[343,-1123],[174,-826],[139,-929],[302,207],[-27,579],[107,-162],[159,-1004]],[[7131,36591],[106,394],[-337,248],[119,-761],[112,119]],[[12068,11776],[146,52],[-318,306],[-118,-261],[290,-97]],[[14284,13162],[136,219],[-699,499],[67,-423],[496,-295]],[[18773,15018],[-174,-411],[153,-513],[-93,-473],[131,-548],[-567,-52],[-190,-166],[-168,-597],[-449,-312],[-345,49],[-425,-504],[-324,120],[-185,396],[-482,155],[-639,316],[163,-338],[438,-559],[348,-174],[26,-141],[-484,315],[-386,379],[-570,406],[7,279],[-451,414],[-715,420],[-197,258],[-527,302],[-217,276],[-406,251],[-141,-45],[-947,563],[-496,170],[13,-100],[1147,-782],[329,-65],[243,-242],[915,-671],[600,-780],[-632,285],[-81,-373],[-510,230],[358,-552],[-20,-204],[-366,109],[-88,-404],[214,-320],[-8,-241],[1012,-921],[296,48],[376,-267],[419,-124],[103,-350],[325,-211],[-462,125],[-594,62],[-214,-132],[79,-536],[1194,-490],[175,0],[-259,270],[468,-21],[110,-334],[-83,-205],[94,-495],[-128,-167],[377,-277],[381,-17],[486,-240],[745,-503],[861,-290],[149,35],[579,-276],[478,392],[475,37],[713,281],[342,-85],[330,230]],[[12278,9871],[460,269],[-322,178],[-83,-221],[-234,-17],[179,-209]],[[71695,18378],[-106,406],[-195,58],[109,614],[-88,278],[-536,-202],[16,1102],[-569,384],[402,1076],[-151,162],[74,355]],[[70651,22611],[-335,-315],[-819,-82],[-82,68],[-403,-260],[-128,128],[12,367],[-452,-215],[-178,361]],[[68266,22663],[-418,549],[-58,446],[-203,-292],[-331,-20],[-115,-510],[-126,-4],[-58,-624],[-365,-453],[-721,139],[-312,-560],[-739,-729],[-610,365],[257,2289]],[[64467,23259],[-129,30],[-230,-488],[-192,-174],[-279,129],[-94,208]],[[63543,22964],[-62,-628],[-318,-212],[-357,-915],[254,58],[-38,-452],[437,-8],[-22,-602],[-89,-380],[-479,-121],[-482,400]],[[62387,20104],[-352,-826],[-184,17],[-257,-415],[93,-463],[-87,-124],[120,-668],[296,351],[-23,-442],[421,-658],[380,-15],[924,662],[224,-255],[387,-12],[363,314],[44,-180],[350,26],[15,-287],[-463,-414],[186,-293],[-73,-164],[205,-155],[-246,-409],[74,-204],[860,-206],[88,-147],[554,-219],[162,-245],[456,127],[209,614],[220,-144],[352,203],[50,325],[225,-34],[477,-562],[-46,186],[413,461],[872,1527],[64,-316],[412,348],[320,-155],[711,835],[302,-82],[210,372]],[[68266,22663],[85,61],[-165,403],[221,235],[164,-155],[349,328],[-274,449],[-206,-61]],[[68440,23923],[-163,-158],[18,-289],[-328,145],[-117,746],[-221,-30],[-36,276],[208,148],[110,466],[-78,634]],[[67833,25861],[-359,-136]],[[67474,25725],[-35,-383],[-683,-574],[-546,-726],[-198,-643],[-489,-213],[-83,-496],[-383,-329],[-374,576],[75,313],[-291,9]],[[89634,50868],[480,434],[511,360],[333,638],[32,372],[453,389],[56,333],[-262,68],[45,419],[230,413],[146,668],[162,-21],[-28,279],[399,490],[-230,226],[-59,-163],[-512,-165],[-333,-748],[-117,-551],[-352,-276],[-427,388],[11,465],[-232,216],[-439,-132]],[[89501,54970],[87,-2051],[46,-2051]],[[92892,51535],[127,528],[-93,168],[-101,-615],[-476,-660],[80,-152],[357,467],[106,264]],[[92475,52907],[-309,301],[-149,-1],[-377,-358],[30,-195],[675,11],[250,-440],[-20,-370],[222,91],[-122,733],[-200,228]],[[93457,52592],[325,755],[-129,240],[-218,-641],[22,-354]],[[89501,54970],[-223,-517],[-278,-126],[-78,179],[-356,20],[142,-513],[185,-175],[-46,-684],[-118,-528],[-529,-533],[-230,-53],[-408,-582],[-199,361],[-55,-504],[-209,-309],[485,-381],[-412,-1],[-107,-375],[-250,-116],[-117,-312],[380,-153],[144,-204],[451,257],[111,1252],[284,378],[245,-669],[327,-379],[250,-1],[444,445],[300,121]],[[85009,54828],[18,316]],[[85027,55144],[-207,469],[-247,139],[146,-673],[290,-251]],[[87653,53571],[-10,-474],[123,-439],[48,485],[-161,428]],[[83119,46626],[-149,568],[214,597],[-45,290],[319,581],[-332,75],[-93,429],[11,570],[-273,431],[-13,627],[-124,962],[-37,-223],[-325,283],[-104,-384],[-337,-238],[-338,226],[-97,-304],[-416,-38],[-34,-845],[-139,-175],[-133,-538],[-9,-1135],[164,-417]],[[80829,47968],[51,421],[194,355],[360,-83],[296,-374],[268,177],[228,-134],[135,-876],[106,-218],[84,-716],[568,106]],[[86364,50995],[305,183],[93,482],[-231,-260],[-587,-33],[71,-347],[349,-25]],[[85650,51617],[-191,-115],[-50,-271],[285,-31],[-44,417]],[[85964,47862],[24,343],[166,56],[15,807],[-144,-61],[-8,790],[-112,-398],[-84,-805],[143,-732]],[[84564,48679],[323,-26],[275,-457],[50,140],[-223,626],[-211,120],[-271,-122],[-714,121],[-40,476],[248,561],[154,-286],[525,-214],[-270,568],[-251,244],[256,807],[-54,216],[236,726],[-12,414],[-155,184],[-104,-220],[148,-516],[-282,244],[-24,-418],[-195,-368],[31,-614],[-190,191],[0,1635],[-296,-94],[95,-579],[-32,-608],[-118,-4],[-80,-431],[368,-2121],[237,-467],[221,185],[355,87]],[[83657,55688],[-349,-441],[267,-124],[226,384],[-144,181]],[[84002,54604],[450,-278],[-57,350],[-428,179],[-370,-78],[10,-230],[227,-131],[168,188]],[[83143,54495],[176,-51],[58,267],[-678,206],[112,-363],[238,-228],[94,169]],[[80445,53274],[31,223],[537,63],[69,-260],[511,303],[88,408],[417,115],[329,374],[-329,240],[-299,-254],[-542,-30],[-575,-352],[-323,16],[-502,-259],[-40,-271],[-256,-47],[210,-601],[339,38],[335,294]],[[79345,49913],[140,791],[206,55],[132,399],[-84,783],[-33,974],[-312,12],[-224,-526],[-349,-513],[-320,-894],[-344,-1354],[-247,-525],[-190,-1032],[-257,-397],[-153,-539],[-522,-1046],[-31,-320],[618,147],[261,615],[383,689],[273,677],[287,10],[239,431],[165,528],[214,287],[-113,514],[261,234]],[[33322,82152],[355,726],[384,357],[365,148],[-48,296],[-220,29],[-165,-208]],[[33993,83500],[-404,-17],[-267,-1331]],[[34492,68250],[-52,1149],[53,625],[-34,547]],[[34459,70571],[10,327],[383,537],[1,434],[188,272],[14,307],[-178,802],[-356,336],[-510,130],[-294,-62],[95,372],[79,782],[-131,220],[-255,86],[-275,-228],[-82,164],[110,619],[197,187],[117,-196],[115,323],[-213,193],[-157,386],[26,955],[-239,2],[-155,315],[-7,463],[313,451],[259,123],[-4,552],[-241,344],[-45,714],[-236,524],[311,945]],[[33299,81950],[-849,-175],[-169,-351],[-80,-453],[-284,-181],[-138,-644],[144,-268],[-68,-698],[49,-524],[-20,-1295],[-198,-358],[48,-260],[-149,-235],[-158,-717],[87,-127],[-143,-759],[-18,-1196],[130,-228],[-150,-610],[-66,-576],[154,-409],[-62,-525],[88,-612],[-364,-1778],[107,-646],[-80,-609],[49,-571],[129,-591],[161,-391],[-144,-1499],[276,-310],[7,-811]],[[31588,63543],[193,-569],[370,153],[188,455],[78,-506],[366,161]],[[32783,63237],[566,1027],[229,95],[362,465],[296,246],[57,278],[-206,957],[596,267],[208,-101],[216,-483],[11,-555]],[[35118,65433],[128,-121],[158,363],[24,503],[-373,604],[-265,610],[-298,858]],[[33993,83500],[-194,422],[-753,-330],[-688,-650],[-476,-669],[650,525],[365,214],[63,-683],[175,-248],[187,71]],[[30716,60297],[158,429],[61,453],[160,267],[-53,609],[192,707],[162,867],[192,-86]],[[33299,81950],[-217,-4],[-266,364],[75,558],[-412,-180],[-737,-760],[-154,-381],[0,-354],[-202,-403],[-223,-1037],[5,-589],[185,-475],[-412,-179],[154,-544],[-71,-1028],[316,218],[-49,-1285],[-195,-166],[28,777],[-174,-87],[-107,-2045],[65,-428],[-255,-1315],[109,-20],[124,-2016],[19,-937],[-152,-942],[33,-518],[-102,-777],[94,-768],[-48,-1217],[-15,-2714],[-190,-1917]],[[30525,60781],[191,-484]],[[58615,54481],[-110,-64],[-454,181],[-84,402],[60,278],[-101,1376],[265,357],[78,-114],[12,679],[-212,-5],[-209,-615],[-213,-87],[-58,-331],[-173,200],[-222,-89],[-90,-285],[-309,-43],[-109,-212]],[[56686,56109],[-492,99],[22,-749],[-92,-233],[27,-766],[-57,-640],[-340,6],[25,-227],[-333,136],[-115,524],[-155,-88],[-278,138],[-169,-532],[-146,-846],[-828,-9],[-297,148]],[[53458,53070],[-39,-195]],[[53419,52875],[230,-635]],[[53649,52240],[324,-170],[122,290],[403,-904],[-9,-518],[123,-611],[315,-628],[85,-650],[19,-915],[154,-1109]],[[55185,47025],[24,-439],[258,-522],[412,445],[416,185],[82,-380],[167,15],[311,-314],[112,133],[236,-226],[483,14]],[[57686,45936],[174,520],[126,75],[361,-197],[317,688]],[[58664,47022],[-13,736],[112,85],[-197,391],[-166,620],[-84,1221]],[[58316,50075],[-81,176],[-77,767]],[[58158,51018],[70,286],[13,759]],[[61691,50290],[-166,-520],[-6,-2292],[241,-714]],[[61760,46764],[256,-210],[246,-445],[365,-27],[770,-1889]],[[63397,44193],[305,-912],[-23,-1233]],[[63679,42048],[595,-387],[3,871],[-119,908],[-284,1507],[-229,923],[-557,1563],[-959,1614],[-308,762],[-130,481]],[[59532,49829],[-2,-668],[320,-1130],[-161,-1038],[-136,-438]],[[59553,46555],[357,-791]],[[59910,45764],[148,106],[100,560],[195,0],[359,535],[405,112],[81,-263],[255,-263],[307,213]],[[61691,50290],[-373,561],[-192,1115],[-115,208]],[[56886,44050],[-315,-456],[20,-715],[-200,-663]],[[56391,42216],[-171,-946],[-98,36],[94,-493],[-5,-601],[188,-852],[241,43],[-58,-2498]],[[56582,36905],[-3,-264],[318,-2],[-28,-1258]],[[56869,35381],[3261,0]],[[60130,35381],[110,618],[-57,114],[184,1400],[269,388]],[[60636,37901],[-131,359],[-283,296],[-115,1344],[36,251]],[[60143,40151],[-134,1162],[-163,312],[-135,737],[-130,177],[-73,659],[11,565]],[[59519,43763],[-85,-1032],[-147,-248],[-15,-919],[-314,129],[99,563],[-281,799],[-144,65],[-240,-368],[-281,563],[-319,-130],[-380,32],[-198,-540],[-200,86],[-141,854],[-180,188],[193,245]],[[56391,42216],[-315,363],[-196,687],[-261,291],[-350,19],[30,221],[-263,466],[-351,241],[-400,54]],[[54285,44558],[43,-170],[-131,-695],[-290,-474],[59,-297],[362,25],[-155,-572],[-15,-836],[-114,-403]],[[54044,41136],[26,-297],[-179,-14],[-4,-405],[-117,-233],[113,-829],[348,-594],[6,-819],[91,-1278],[56,-270],[-230,-580],[-81,-979]],[[54073,34838],[271,-344],[2238,2411]],[[30204,36821],[-59,1050]],[[30145,37871],[-477,-108],[-137,117],[-101,-399],[456,138],[107,-140],[-190,-785],[401,127]],[[30204,36821],[255,-105],[417,357],[226,441],[-116,256],[-343,-140],[-295,91],[-133,432],[-70,-282]],[[64593,1104],[201,-100],[604,224],[920,442],[432,420],[-305,58],[-606,-135],[-464,-179],[-490,-331],[-323,-91],[31,-308]],[[67024,1902],[725,267],[160,193],[-779,185],[-342,-623],[236,-22]],[[75001,3415],[502,22],[963,262],[274,369],[-697,-13],[-183,118],[-711,-325],[-279,-340],[131,-93]],[[77165,3806],[614,131],[15,197],[-915,-241],[-143,-162],[429,75]],[[76667,4799],[170,-247],[624,326],[-794,-79]],[[57097,1299],[722,-147],[300,98],[-429,314],[-232,-251],[-361,-14]],[[55457,15299],[-741,-59]],[[54716,15240],[39,-260],[317,-192]],[[55072,14788],[369,198],[16,313]],[[60129,4606],[271,-441],[-147,-227],[733,-580],[548,-91],[509,-245],[208,346],[-944,481],[-358,476],[-189,982],[195,427],[531,423],[-777,-22],[-131,-229],[-404,-138],[-121,-279],[161,-109],[-105,-280],[218,-432],[-198,-62]],[[84467,15670],[319,576],[225,591],[963,1687],[-437,-201],[142,883],[446,629],[127,430],[-307,-371],[-19,476],[-612,-1775],[-100,-460],[-279,-811],[-366,-594],[-302,-820],[200,-240]],[[13074,7076],[130,934],[-327,334],[21,134],[309,-391],[499,80],[-32,505],[-417,236],[-400,56],[-457,534],[-372,98],[-159,-351],[157,-237],[-447,-18],[283,-391],[-374,128],[-134,255],[-328,232],[2048,-2138]],[[83670,22692],[0,0]],[[83670,22692],[-63,-110]],[[83607,22582],[47,-332],[-150,-733],[-208,-530],[159,-218],[339,109],[1,-601],[-109,-673],[-10,-776],[-356,181],[-143,242],[-382,-1],[-274,-575],[-430,-434],[-492,-195],[-281,-594],[-748,-1237],[-716,-398],[-578,123],[-98,298],[294,475],[-96,834],[83,267],[-237,384],[-363,-230]],[[78859,17968],[-280,51],[-355,-269],[-242,428],[-487,252],[-568,-93],[-552,-603],[-269,-80],[-495,192],[-416,-255],[-166,-454],[-571,-225],[-340,-249],[-91,625],[190,357],[-137,422],[-647,-175],[-232,-283],[-258,-9],[-259,-186],[-309,285],[-355,524],[-239,105]],[[71781,18328],[-86,50]],[[62387,20104],[-78,365],[-235,102],[-190,638],[287,588],[13,418],[347,733]],[[62531,22948],[-163,409],[-402,-442]],[[61966,22915],[-275,-399],[-453,-148],[-373,-298],[-611,-207],[-25,74]],[[60229,21937],[-366,-524],[-309,-234],[-247,-363],[177,-99],[169,-516],[-162,-244],[351,-250],[-236,-36]],[[59606,19671],[99,-443],[238,-45],[-66,-541],[51,-499],[-528,-191],[-180,-285],[-180,97],[-332,-214],[-117,-381],[-199,-30],[14,-309],[-188,-340],[-467,140]],[[57751,16630],[-168,-584],[321,-165],[-256,-264],[-291,-605],[-14,-436],[-675,-365]],[[56668,14211],[-155,-628],[-126,-134]],[[56387,13449],[83,-184],[-123,-539],[85,-432]],[[56432,12294],[226,-316],[-270,-270]],[[56388,11708],[562,-1045],[45,-284],[-380,-381],[38,-359],[-254,-408],[75,-466],[-341,-615],[129,-403],[-376,-354],[-30,-370]],[[55856,7023],[467,-259]],[[56323,6764],[175,-183],[395,318],[586,125],[911,598],[216,253],[92,357],[-175,283],[-320,144],[-1026,-410],[-143,68],[416,396],[168,811],[505,310],[-191,-502],[100,-208],[589,341],[156,-133],[-223,-400],[387,-530],[444,220],[38,-371],[-250,-319],[26,-319],[-234,-329],[622,170],[195,298],[-247,66],[73,297],[212,184],[298,-116],[-37,-342],[956,-709],[162,26],[-104,322],[273,55],[93,-182],[383,-14],[233,-219],[343,319],[113,-350],[-322,-306],[44,-172],[658,158],[344,165],[976,603],[31,-277],[-369,-390],[-266,-52],[-32,-248],[-349,-572],[161,-467],[-87,-465],[95,-100],[575,134],[179,284],[11,417],[427,528],[264,717],[362,324],[56,355],[-119,761],[273,80],[191,-332],[29,-520],[-247,-302],[-52,-349],[-243,-44],[-175,-292],[-74,-523],[-454,-422],[184,-347],[-228,-364],[336,272],[168,496],[257,95],[-272,-372],[224,-202],[390,-27],[516,293],[-403,-427],[-322,-542],[269,-102],[837,-43],[-320,-263],[-3,-328],[202,-14],[182,-246],[431,-66],[-43,-136],[437,-46],[236,111],[189,-261],[336,8],[-159,-418],[220,-198],[453,156],[-123,120],[470,74],[275,241],[52,-118],[525,6],[953,424],[191,257],[-344,574],[672,198],[93,-96],[359,325],[216,-211],[678,83],[244,237],[866,75],[-325,-386],[782,85],[548,268],[375,326],[68,214],[585,406],[485,210],[-265,-542],[516,232],[215,-139],[521,159],[17,-145],[387,73],[-578,-477],[45,-221],[2074,331],[466,306],[898,394],[708,-98],[481,86],[378,214],[345,382],[392,149],[516,-121],[485,103],[327,-58],[816,468],[90,-169],[-501,-336],[-147,-232],[796,146],[388,-32],[847,250],[526,230],[2048,2138],[-69,244],[-317,-41],[445,293],[730,605],[269,378],[-511,-122],[-457,488],[-150,743],[91,260],[-591,-394],[-299,447],[-241,-211],[-63,244],[-356,-78],[161,376],[57,557],[143,235],[340,129],[438,850],[-208,22],[153,492],[228,256],[-271,303],[236,680],[-296,145],[193,610],[-118,563],[-262,-416],[-1231,-2197],[-298,-814],[12,-348],[-137,-272],[290,-129],[15,-1313],[110,-452],[-373,-792],[-237,47],[190,462],[-162,621],[-643,-695],[-453,192],[25,950],[397,351],[-753,210],[-220,-415],[-406,-87],[-125,282],[-760,-99],[-666,170],[-186,1130],[-295,1387],[408,74],[271,372],[288,133],[32,-297],[280,38],[617,656],[208,511],[36,602],[239,723],[217,974],[-96,888],[43,426],[-350,1799],[-248,364],[-159,8],[-239,-302],[-230,454],[11,208]],[[85870,6099],[-408,-137],[5,-216],[403,353]],[[14532,5746],[333,127],[-736,226],[403,-353]],[[58453,20367],[56,-152],[354,297]],[[58863,20512],[140,202],[257,-37],[-34,220],[-270,108],[-320,358],[-150,-127],[36,-290],[-290,-181],[221,-398]],[[28540,32367],[310,-31],[-6,163],[-306,101],[2,-233]],[[28877,32210],[191,282],[-85,448],[-106,-730]],[[28670,33362],[133,547],[-97,396],[-128,-544],[92,-399]],[[35050,81679],[235,-361],[232,151],[110,-242],[237,272],[-40,211],[-301,180],[-144,-211],[-163,271],[-166,-271]],[[52475,1719],[266,-174],[861,509],[-383,187],[-30,352],[-135,90],[-20,403],[-211,19],[-419,-298],[135,-171],[-277,-138],[-381,-402],[-173,-367],[420,-166],[347,156]],[[55856,7023],[24,-368],[-295,-208],[-284,177],[-42,384],[-162,234],[-503,-102],[-263,-278],[-105,139]],[[54226,7001],[-115,369],[-398,-85],[-26,296],[-200,-2],[-266,976],[-279,764],[29,406],[-217,-10],[-114,519],[53,741],[158,286],[-42,666],[-259,723]],[[52550,12650],[-170,-353],[-433,666],[-307,135],[-327,-294],[-95,-617],[-100,-1307],[198,-361],[569,-466],[408,-568],[786,-1798],[805,-1059],[415,-229],[335,28],[241,-430],[366,23],[339,-104],[694,380],[-233,140],[282,328]],[[54422,1542],[-163,249],[-462,55],[-504,-77],[-517,-347],[460,-127],[260,109],[121,-135],[805,273]],[[54266,2580],[-343,196],[-329,-112],[-42,-277],[331,-96],[383,289]],[[43228,411],[683,-244],[478,18],[293,-147],[515,-38],[1065,49],[734,322],[-329,160],[-1385,61],[585,28],[388,149],[341,-132],[70,155],[-254,255],[444,-164],[780,-168],[433,83],[51,188],[-974,523],[-462,642],[-99,532],[154,317],[-599,174],[284,260],[-24,421],[-204,46],[175,430],[-422,36],[187,206],[-88,178],[-547,79],[186,345],[-32,227],[-350,-211],[-123,137],[243,128],[210,314],[18,417],[-371,100],[-323,-498],[12,352],[-276,273],[801,51],[-1230,872],[-865,185],[-253,205],[-394,566],[-527,378],[-796,282],[-252,337],[-259,748],[-445,443],[9,438],[-397,1019],[-328,35],[-251,-463],[-454,-3],[-156,-310],[-35,-548],[-226,-692],[-24,-359],[95,-491],[-163,-502],[187,-397],[-87,-189],[389,-623],[369,-197],[313,-629],[-630,338],[-196,-172],[275,-631],[550,131],[-351,-506],[-340,-56],[392,-477],[-64,-1074],[-148,-194],[98,-208],[-345,-289],[-363,-36],[-953,57],[-236,-465],[926,-178],[-663,-126],[-253,-196],[160,-185],[1586,-454],[191,-169],[-304,-166],[295,-181],[821,-313],[266,-47],[121,-197],[986,-181],[457,-3],[48,133],[591,-234],[619,332],[-188,-231],[164,-181]],[[67178,79723],[352,268],[-128,393],[-387,39],[163,-700]],[[85009,54828],[39,-148],[535,-242],[-8,250],[-548,456]],[[54419,67218],[136,-311],[143,441],[288,165],[395,-367],[52,-2324]],[[55433,64822],[220,692],[22,604],[196,-64],[487,-917],[239,253],[399,-116],[88,-498],[151,-50],[191,-655],[259,-471],[401,-463]],[[58086,63137],[480,101]],[[58566,63238],[161,1333],[-56,927]],[[58671,65498],[-214,-70],[-119,637],[150,341],[227,-347]],[[58715,66059],[206,5]],[[58921,66064],[-137,981],[-334,693],[-385,1093],[-531,1025],[-678,737],[-579,-95],[-272,44],[-805,599],[-347,-597],[-65,-789],[94,-597],[-463,-1940]],[[57827,67457],[-111,-194],[-286,375],[-157,398],[185,483],[309,-362],[146,-511],[-86,-189]],[[23543,32946],[-256,1006],[-157,1150],[88,1138],[265,1138],[281,167],[95,263],[869,-460],[193,-257],[219,-1080],[502,-311],[414,-31],[23,437],[-176,374],[-215,1256],[-118,-151]],[[25570,37585],[-263,435]],[[25307,38020],[-514,-6],[-24,355],[-125,1],[247,531],[-20,214],[-357,2],[-164,512],[-26,449]],[[24324,40078],[-275,-678],[-347,-368],[-541,345],[-626,-575],[-494,-381],[-267,-469],[-419,-236],[-361,-645],[-141,-704],[185,-621],[-126,-851],[-486,-1510],[-236,-411],[88,-389],[-243,-452],[-12,-439],[-138,-51],[-200,-638],[-89,-1152],[41,-241],[-377,-396],[-82,255],[-45,775],[309,1092],[0,406],[221,703],[108,1156],[253,920],[-206,341],[-32,-383],[-424,-823],[64,-801],[-257,-476],[-241,-236],[-112,-365],[133,-12],[180,-518],[-279,-623],[-127,-1308],[-20,-565]],[[34492,68250],[169,-67],[306,486],[98,-19],[541,751],[185,428],[-95,297],[101,355]],[[35797,70481],[-86,396],[-271,348],[-344,-58],[-267,-269],[-179,20],[-191,-347]],[[35118,65433],[29,-1082],[-305,-39],[-103,-820],[-255,-359],[-106,124],[-296,-120],[-27,-855],[-99,-350]],[[33956,61932],[127,-1261],[-83,-391],[-158,-177],[-14,-612],[-534,-26],[-136,-733],[80,-11],[-100,-819],[-343,-180],[-432,-542],[-316,-105],[-322,-563],[-16,-1136],[-362,106],[-379,492],[-56,190],[-353,-39]],[[30559,56125],[-284,36],[-10,-957],[-219,371],[-248,-16],[-116,-335],[-186,-37],[52,-270],[-167,-383],[-130,-567],[65,-381],[166,-182],[-35,-340],[83,-513],[315,-428],[265,-216],[254,30]],[[30364,51937],[111,-1727],[-39,-633],[-125,-230],[2,-458],[224,-279],[-164,-65],[-2,-394],[547,14],[94,-217],[184,494]],[[31196,48442],[154,332],[600,-483],[221,-578],[-238,-54],[-20,-819],[-72,-221],[430,238],[82,-149],[520,-333],[71,-418]],[[32944,45957],[209,117],[-39,276],[156,388],[-128,758],[88,610],[172,295],[702,-366]],[[34104,48035],[153,51],[9,-436],[406,125]],[[34672,47775],[210,-41],[100,204],[244,-284],[260,-1039]],[[35486,46615],[96,-30],[217,1449],[151,103],[5,435],[-211,519],[87,189],[497,98],[11,632],[213,-413],[822,610],[138,369],[-44,348],[326,-194],[548,334],[420,-25],[419,521],[364,706],[457,206],[104,199],[152,1182],[-98,1041],[-518,1286],[-165,712],[-333,1022],[48,1179],[-68,1385],[-81,249],[-22,841],[-252,822],[-22,650],[-212,272],[-50,379],[-298,-3],[-421,242],[-179,280],[-298,185],[-298,500],[-198,625],[49,817],[-58,943],[-169,346],[-228,1107],[-363,792],[-79,598],[-148,358]],[[33956,61932],[-13,-194],[-273,-322],[-257,-10],[-472,184],[-103,554],[-55,1093]],[[30716,60297],[141,-679],[-144,-529],[89,-760],[-19,-978],[52,-213],[-276,-1013]],[[30525,60781],[-298,-362],[-37,-258],[-583,-632],[-532,-688],[-233,-389],[-139,-520],[39,-181],[-272,-826],[-318,-1161],[-303,-1254],[-222,-750],[-434,-666],[86,-282],[-146,-599],[80,-442],[219,-397]],[[27432,51374],[-30,642],[229,19],[123,317],[154,-259],[48,-424],[166,-548],[336,-248],[302,-659],[85,-409],[-39,-479]],[[28806,49326],[75,-60],[408,758],[169,661],[210,78],[154,-167],[270,56],[218,294],[-175,641],[229,350]],[[28806,49326],[-259,-357],[-318,13],[-401,-621]],[[27828,48361],[126,-785],[140,-43],[233,-726],[-101,-150],[58,-365],[-53,-576],[29,-698],[-106,-335]],[[28154,44683],[190,-448],[-18,-462]],[[28326,43773],[144,19],[340,-506],[78,-741],[373,-434],[218,52],[491,-762],[164,205],[-62,212]],[[30072,41818],[-182,105],[-285,729],[-137,817],[144,43],[102,681],[-32,364],[130,273],[523,19],[188,541],[476,-105],[98,108],[-150,1002],[137,747],[-144,313],[173,359],[83,628]],[[28154,44683],[-140,-521],[73,-169],[-250,-426],[-398,570],[124,342],[-252,206],[-39,-376],[-181,-183],[-346,-73]],[[26745,44053],[143,-845]],[[26888,43208],[84,360],[211,131],[437,-331],[102,-188],[418,230],[186,363]],[[26745,44053],[-201,-272],[29,-248],[-342,-469],[-61,151],[-179,-365],[47,-600]],[[26038,42250],[290,4],[209,224],[72,-134]],[[26609,42344],[58,342],[221,522]],[[26038,42250],[-497,-1146],[101,-47]],[[25642,41057],[171,-176],[9,-309],[268,-51],[276,-601],[127,107],[373,-237]],[[26866,39790],[-170,1178],[2,445],[-134,658],[45,273]],[[25642,41057],[-121,-251]],[[25521,40806],[32,-253],[-216,-38],[-217,-365]],[[25120,40150],[78,-404],[282,-416]],[[25480,39330],[498,-34],[130,-141],[448,108],[310,527]],[[25521,40806],[-199,138],[-432,-360]],[[24890,40584],[230,-434]],[[25307,38020],[-100,1210],[83,0]],[[25290,39230],[190,100]],[[24890,40584],[-310,-122],[-256,-384]],[[25570,37585],[47,96],[-142,1144],[-185,405]],[[30072,41818],[-179,221],[68,615],[-135,367],[92,498],[122,-40],[75,-455],[-79,-698],[357,-257],[76,-494],[85,442],[196,10],[175,559],[551,-59],[152,282],[213,78],[170,-355],[683,-47],[-243,186],[88,297],[222,47],[204,310],[34,504],[253,135]],[[33252,43964],[-230,369],[63,464],[-246,218],[-79,465],[184,477]],[[33252,43964],[179,231],[274,749],[252,526]],[[33957,45470],[-52,567],[-173,164],[-41,473],[413,1361]],[[33957,45470],[335,127],[260,-160],[299,170]],[[34851,45607],[-152,541],[124,804],[-151,823]],[[34851,45607],[299,218],[292,532],[44,258]],[[51534,18227],[479,272],[-142,854]],[[51871,19353],[-351,550],[209,453]],[[51729,20356],[71,406],[-86,188],[187,826]],[[51901,21776],[-228,351],[-507,-168],[-371,202],[-28,373]],[[50767,22534],[-297,81],[-291,-281],[-93,134],[-472,-282],[-102,-242]],[[49512,21944],[134,-372],[52,-1231],[-442,-957],[-380,-235],[-20,-446],[324,-134],[416,157],[-75,-690],[233,262],[576,-475],[72,-496],[215,-122]],[[50617,17205],[442,752],[127,-47],[220,277]],[[51406,18187],[128,40]],[[52247,22438],[161,-238],[54,534],[-78,481],[-119,-127],[-18,-650]],[[27432,51374],[144,-471],[-62,-275],[-105,293],[-171,-276],[5,-749],[98,-95],[158,-798],[-19,-256],[348,-386]],[[31662,37575],[104,340],[-372,18],[42,-361],[226,3]],[[28539,37591],[183,57],[173,322],[-285,118],[-294,-331],[223,-166]],[[27451,34634],[449,52],[332,444],[262,-70],[443,821],[246,119],[362,462],[-42,147],[-376,111],[-586,11],[207,-350],[-276,-206],[-122,-540],[-158,24],[-316,-301],[-351,-97],[29,-280],[-267,-32],[-389,489],[-254,9],[237,-421],[570,-392]],[[58086,63137],[-378,-381],[-66,-621],[-117,-68],[-297,-691],[-230,-981]],[[56998,60395],[491,128],[413,-926],[302,-518],[212,-86]],[[58416,58993],[13,235],[233,-13],[453,537],[-19,797],[-89,906],[39,187],[-170,881],[-310,715]],[[55433,64822],[35,-1838],[272,-21],[47,-2243],[637,-241],[101,259],[424,-390]],[[56949,60348],[49,47]],[[54419,67218],[-290,-935],[-186,-2037],[-26,-1097],[-240,-779],[-192,-1150],[-220,-615],[-12,-482]],[[53253,60123],[301,-227],[385,259],[1124,-28],[187,302],[670,89],[513,-257]],[[56433,60261],[230,-143],[286,230]],[[45341,40672],[-247,-713],[124,-120],[208,-766]],[[45426,39073],[527,-291],[314,352],[345,895]],[[46612,40029],[62,752],[111,617]],[[46785,41398],[-275,69],[-334,-160]],[[46176,41307],[-515,-26],[-317,153]],[[45344,41434],[-42,-482]],[[45302,40952],[254,13],[223,-238],[240,144],[66,-323],[-288,-52],[-153,158],[-303,18]],[[46612,40029],[144,-485],[281,161],[308,-223],[1115,-9],[16,-519],[-238,-5434],[418,-10]],[[48656,33510],[1846,2746],[66,295],[301,283],[4,400],[306,-62]],[[51179,37172],[6,1450],[-151,420],[-23,388],[-627,155],[-280,248]],[[50104,39833],[-248,-118],[-413,351],[-426,768],[-134,-84],[-119,585],[-223,522],[-54,845]],[[48487,42702],[-180,173],[-43,-270],[-181,243],[-330,-43]],[[47753,42805],[-164,-380],[70,-366],[-208,-577],[-291,293],[-375,-377]],[[47643,31986],[1013,1524]],[[45426,39073],[103,-1242],[-52,-935],[32,-314],[-208,-571]],[[50755,45290],[-232,74]],[[50523,45364],[-69,-434],[12,-1446],[-68,-439],[-182,-406],[35,-331]],[[50251,42308],[350,-594]],[[50601,41714],[194,-186],[214,362]],[[51009,41890],[28,1006],[-222,583],[-52,396],[-8,1415]],[[54044,41136],[-86,236]],[[53958,41372],[-246,-675],[-281,327],[-217,-184],[-394,33],[-305,283],[-340,-325],[-273,144],[-386,-473],[-299,74],[-190,753],[-18,561]],[[50601,41714],[6,-431],[-322,-143],[-166,-716],[-15,-591]],[[51179,37172],[389,-280],[790,-1237],[929,-1199]],[[53287,34456],[436,271],[159,345],[191,-234]],[[53958,41372],[113,251],[-43,323],[-233,487],[-222,1310],[-148,259],[-131,834],[-192,212],[-264,-248],[-248,374],[-203,1053]],[[52387,46227],[-506,334],[-224,-14],[-244,-849],[-199,-414],[-459,6]],[[54285,44558],[-206,752],[-13,941],[263,880],[129,203],[43,470]],[[54501,47804],[-20,339],[-451,-315],[-354,-24]],[[53676,47804],[-506,3]],[[53170,47807],[-458,-14]],[[52712,47793],[40,-497],[-238,-523],[-127,-546]],[[50523,45364],[-226,134]],[[50297,45498],[-160,-933],[62,-567],[-70,-229],[-26,-954],[-97,-521]],[[50006,42294],[245,14]],[[50297,45498],[-849,767],[-251,-179]],[[49197,46086],[-108,-791],[74,-710],[119,-529],[-74,-896]],[[49208,43160],[-30,-831],[828,-35]],[[48487,42702],[301,478],[229,-182],[191,162]],[[49197,46086],[-323,-116],[-513,117],[-528,396]],[[47833,46483],[41,-846],[-289,-478],[48,-767]],[[47633,44392],[68,-484],[104,-75],[-132,-765],[80,-263]],[[47633,44392],[-137,238],[-230,-776],[-133,85]],[[47133,43939],[-78,36],[-30,-578],[-137,-490],[-366,132],[-233,587]],[[46289,43626],[-369,-826],[-150,-520]],[[45770,42280],[126,-307],[264,-178],[16,-488]],[[45770,42280],[-266,-305],[-160,-541]],[[47833,46483],[-363,-295],[-492,-823],[-188,-406]],[[46790,44959],[83,-385],[260,-635]],[[46790,44959],[-277,-301],[-144,-336],[-80,-696]],[[55185,47025],[-371,-141],[-167,334],[-146,586]],[[56886,44050],[159,459],[311,600],[73,378],[257,449]],[[53649,52240],[-104,-216],[-199,378]],[[53346,52402],[-229,-667]],[[53117,51735],[215,-347],[-106,-417],[286,-235],[23,-278],[150,301],[248,27],[123,-716],[-31,-491],[-133,-373],[121,-729],[-279,-74],[-58,-599]],[[53117,51735],[-474,-1155],[-170,-650],[195,-1335]],[[52668,48595],[504,-31],[-2,-757]],[[52668,48595],[-52,-96],[96,-706]],[[59174,55041],[128,282],[64,533],[-114,681],[45,522],[-188,804],[145,163]],[[59254,58026],[-855,519],[17,448]],[[56433,60261],[-354,-908],[40,-2003],[581,8],[-14,-1249]],[[59656,56483],[-85,478],[62,819],[193,194],[107,454],[6,810],[-219,569],[-172,-389],[44,-988],[-338,-404]],[[61279,55725],[40,283],[-12,2163],[42,309],[-215,886],[-187,390],[-581,546],[-331,675],[-434,707],[-36,449],[205,1004],[-23,1017],[-172,486],[-573,553],[-128,233],[47,638]],[[58715,66059],[-44,-561]],[[53419,52875],[-73,-473]],[[53253,60123],[-23,-397],[160,-1400],[162,-826],[255,-691],[20,-824],[-221,-984],[102,-381],[-250,-1550]],[[58158,51018],[171,49],[87,-358],[149,41]],[[59539,28645],[-38,197]],[[59501,28842],[-100,-87],[-35,742],[123,-85]],[[59489,29412],[-71,1249]],[[59418,30661],[-225,-1080]],[[59193,29581],[175,-1176]],[[59368,28405],[180,-118]],[[59548,28287],[-9,358]],[[59368,28405],[182,-976]],[[59550,27429],[177,278],[-179,580]],[[63828,57081],[125,683],[86,1051],[-94,488],[-81,-370],[-22,654],[-116,412],[-37,533],[-833,4399],[-481,415],[-355,-386],[-136,-1845],[67,-454],[290,-794],[40,-402],[-92,-695],[-4,-579],[158,-752],[527,-274],[409,-747],[344,-947],[116,-661],[89,271]],[[59501,28842],[-12,570]],[[45302,40952],[39,-280]],[[52550,30154],[-127,-1129],[-395,-779],[-28,-473],[159,-351],[56,-517],[-49,-597],[50,-322]],[[52216,25986],[282,-253],[185,75],[-3,317],[220,-230],[-106,427],[97,446],[-26,543],[-170,315],[56,343],[137,10],[175,397]],[[53063,28376],[-7,482],[-389,625],[13,526],[-130,145]],[[47650,31822],[6,-746],[441,-464],[490,-265],[106,-314],[315,-249],[14,-466],[278,-287],[350,-106],[-127,-1422],[-98,-403]],[[49425,27100],[255,-342],[286,-109],[420,-450],[881,-162],[133,92],[246,-246],[570,103]],[[52550,30154],[112,848],[-41,513],[20,1026],[-105,264],[166,459],[114,621],[127,-116],[219,292],[125,395]],[[59539,28645],[309,249],[488,-670]],[[60336,28224],[149,765]],[[60485,28989],[-566,410],[298,629],[-118,317],[-202,87],[-161,421],[-306,-100]],[[59430,30753],[-12,-92]],[[64102,33969],[669,78],[492,-1218]],[[65263,32829],[64,215]],[[65327,33044],[68,497]],[[65395,33541],[-140,3],[1,409],[-109,983]],[[65147,34936],[-48,133],[-841,-317],[-156,-783]],[[63875,33648],[-42,-458],[126,-398],[93,197],[-14,739]],[[64038,33728],[-163,-80]],[[62920,30363],[172,895]],[[63092,31258],[-190,17],[-85,-300],[-244,-61]],[[62573,30914],[163,-603],[184,52]],[[60336,28224],[551,-653],[54,-759],[-54,-458],[243,-546]],[[61130,25808],[106,-98],[534,135]],[[61770,25845],[223,748],[186,188],[45,366],[-117,217],[-30,490],[224,597],[349,345],[168,477],[-15,456],[278,665]],[[63081,30394],[-161,-31]],[[62573,30914],[-504,-50],[-830,-1264],[-422,-441],[-332,-170]],[[65395,33541],[313,658],[374,197],[341,790],[-300,1184],[-127,-33],[-78,470],[54,421],[-313,310],[-71,440],[-172,-6],[-91,413],[-586,364]],[[64739,38749],[-366,-1479]],[[64373,37270],[801,-629],[122,-1260],[-149,-445]],[[65263,32829],[64,215]],[[96460,59235],[134,361],[-101,83],[-33,-444]],[[96358,59094],[24,-656],[113,194],[-9,507],[-128,-45]],[[78644,41559],[-109,-760],[148,-524],[352,-119],[268,89]],[[79303,40245],[245,247],[98,-433],[262,231]],[[79908,40290],[90,420],[10,754],[-443,485],[142,381],[-292,46],[-230,254]],[[79185,42630],[-239,-93],[-302,-978]],[[78644,41559],[-266,-289],[-239,12],[14,-495],[-245,4],[15,692],[-173,1476],[37,456],[184,19],[203,1120],[168,360],[171,74],[155,326]],[[78668,45314],[-268,334],[-31,-324],[-282,-163]],[[78087,45161],[-175,-553],[-307,-654],[-98,20],[76,-996]],[[77583,42978],[233,-1234],[-139,-574],[-63,-644],[-301,-816],[154,-664],[-525,-1427],[108,-114],[73,-681],[192,-28],[284,-418]],[[77599,36378],[183,572],[190,28],[34,1229],[264,-376],[252,92],[39,-218],[213,43],[250,511],[64,621],[263,549],[24,533],[-72,283]],[[77599,36378],[237,-642]],[[77836,35736],[186,165],[-108,-720],[133,-92]],[[78047,35089],[384,1069],[340,5],[156,549],[-223,391],[363,376],[506,1299],[242,438],[101,445],[-8,629]],[[77583,42978],[-48,-468],[65,-481],[-113,-373],[-12,-686],[-132,-326],[-234,-1549],[-157,-522],[-447,765],[-341,-203],[45,-780],[-100,-590],[-270,-726],[-388,-820]],[[75451,36219],[-60,-507],[72,-356]],[[75463,35356],[123,-149],[-59,-1134],[227,144],[55,-826],[97,-528],[-46,-360],[304,-434],[207,114],[-31,-742]],[[76340,31441],[152,-46],[269,520],[108,1000],[-203,525],[43,747],[278,-104],[122,579],[185,123],[-31,522],[356,352],[184,-183],[33,260]],[[78047,35089],[133,-154],[479,-69],[198,-336],[419,352],[-7,362],[156,256],[294,164]],[[79719,35664],[-317,538],[-176,594],[-23,437],[590,1486],[280,389],[206,506],[203,1165],[27,1107],[-513,820],[-205,525],[-325,586],[-118,-403],[61,-427],[-224,-357]],[[83670,22692],[-107,-38],[-87,423],[114,448],[-179,432],[-226,270],[35,340],[333,375]],[[83553,24942],[-287,224],[-170,317]],[[83096,25483],[-430,-225],[10,-800],[-365,-338]],[[82311,24120],[335,-736],[76,-441],[397,218],[-118,-329],[333,-268],[17,-348],[256,366]],[[83553,24942],[382,739],[147,406],[147,723],[-33,345],[-380,380],[-229,54],[-134,-812],[-243,-653],[174,-105],[-288,-536]],[[78859,17968],[-1,1070],[131,250],[394,19],[132,-228],[595,625],[30,219],[-562,13],[-217,582],[-328,240],[-176,327],[-447,-181],[-43,399],[222,443],[-248,541],[-254,219],[-381,23],[-372,215],[-235,336],[-152,-194],[-312,1],[-453,-378],[-271,-93],[-325,86],[-557,-140],[-281,15],[-442,-940],[-551,-454],[-681,-193],[-142,-267],[-43,-720],[-273,-494],[-404,-231],[-276,-324],[-155,-426]],[[75463,35356],[-233,-998],[-84,403],[-179,-326],[171,-394],[75,-532],[-688,-186],[-66,-436],[-375,-304],[-55,427],[228,333],[-188,464],[183,169],[-12,379],[222,991]],[[74462,35346],[-20,230],[-517,123],[52,474],[-119,372],[-367,424],[-260,740],[-434,810],[16,289],[-495,414],[-59,480],[136,1341],[-93,598],[39,1070],[-144,31],[-111,479],[91,208],[-250,179],[-190,608],[-281,-588],[-286,-1516],[-280,-903],[-168,-1180],[-295,-864],[-307,-2026],[-136,-1352],[-376,376],[-199,-74],[-407,-763],[117,-228],[-455,-781]],[[68664,34317],[153,-421],[603,2],[-95,-540],[-178,-319],[-67,-485],[-200,-282],[245,-659],[319,48],[225,-660],[111,-638],[202,-631],[-48,-448],[191,-364],[-248,-310],[-289,-975],[101,-271],[419,153],[286,-94],[195,-526]],[[70589,26897],[370,735],[31,512],[169,642],[-202,-84],[149,693],[724,837]],[[71830,30232],[-141,285],[-47,589],[957,900],[380,81],[187,320],[558,207],[225,-11],[-76,-920]],[[73873,31683],[152,-132],[73,495]],[[74098,32046],[290,366],[161,-98],[453,23],[-21,-387],[-132,-201]],[[74849,31749],[210,-79],[194,-467],[267,-400],[244,154],[161,-265],[173,391],[-61,264],[303,94]],[[75451,36219],[-226,-953],[-146,-366],[-255,-25],[-10,610],[-352,-139]],[[74098,32046],[261,-627],[490,330]],[[71830,30232],[96,-150],[550,603],[284,392],[470,401],[643,205]],[[68664,34317],[-211,-160],[-113,-451],[-244,-480],[-495,119],[-820,100]],[[66781,33445],[54,-732],[369,-325],[-180,-392],[-48,-554],[-280,-276],[-295,-710]],[[66401,30456],[476,320],[474,-151],[192,55],[329,-262],[-35,-535],[117,-355],[214,-176],[302,-23],[115,-933],[154,-160],[-147,-414],[256,19],[13,-468],[104,-263],[-155,-577],[124,-274],[562,-204],[265,-187]],[[69761,25868],[229,293],[134,482],[465,254]],[[67833,25861],[412,-290],[158,12],[116,-561],[235,363],[36,526],[127,206],[318,-475],[457,47]],[[69692,25689],[69,179]],[[66401,30456],[199,-571],[-54,-404],[-212,-107],[-183,-901],[85,-343],[-124,-92],[69,-1239]],[[66181,26799],[293,238],[191,-84],[28,-285],[330,-285],[1,-501],[209,-121],[18,-223],[223,187]],[[68440,23923],[-71,192],[-296,-103],[19,359],[276,-49],[347,203],[482,-94]],[[69197,24431],[137,578],[255,79],[103,601]],[[70651,22611],[-15,141],[-357,337],[-57,247],[-321,74],[-44,399],[-286,-85],[-374,418],[0,289]],[[66181,26799],[-72,-529],[-199,-22],[-353,-555],[-216,-68],[-320,-317],[-473,40],[-154,358],[-220,121]],[[64174,25827],[-88,-442],[-20,-654],[-222,-212],[27,-428],[-175,-36],[8,-526],[259,153],[208,-200],[-334,-730],[-193,159],[18,456],[-119,-403]],[[61770,25845],[-180,-501],[38,-194],[-135,-718],[164,-177]],[[61657,24255],[214,524],[185,83]],[[62056,24862],[94,-18]],[[62150,24844],[270,-461],[186,137],[-64,309],[251,297]],[[62793,25126],[120,461],[259,131],[208,314],[383,108],[398,-166],[13,-147]],[[66781,33445],[-1145,-417],[-164,-772],[-137,-112],[-457,418],[-345,-209],[-303,-484],[-272,-178],[-469,-1437],[-138,103],[-185,-209],[-85,246]],[[59550,27429],[0,-738]],[[59550,26691],[214,-502],[280,-175],[363,116],[289,-235],[434,-87]],[[62056,24862],[-141,-458],[-258,-149]],[[61657,24255],[-321,-337],[-59,-524]],[[61277,23394],[351,-97]],[[61628,23297],[290,642],[-57,199],[248,272],[41,434]],[[54226,7001],[675,619],[110,825],[97,210]],[[55108,8655],[-350,154],[-168,380],[68,335],[-692,921],[-103,789],[430,714],[-166,645],[-232,135],[-31,973],[-104,549],[-290,-57],[-113,466],[-274,27],[-99,-555],[-434,-1481]],[[57751,16630],[-206,36],[-55,436],[-480,-66],[-575,-244],[-439,-33],[-239,186]],[[55757,16945],[-114,-547],[137,-122],[-125,-730]],[[55655,15546],[232,4],[245,-224],[29,-334],[181,-191],[-44,-263]],[[56298,14538],[370,-327]],[[59606,19671],[-348,249],[-233,32],[-200,229],[38,331]],[[58453,20367],[-443,-222],[-33,-230],[-228,76],[-238,795]],[[57511,20786],[-355,-120]],[[57156,20666],[123,-586],[294,9],[-284,-876],[-424,-378],[-216,150]],[[56649,18985],[-421,297],[-444,-220],[-101,131]],[[55683,19193],[-174,-331]],[[55509,18862],[97,-405]],[[55606,18457],[-23,-239],[330,-746],[-156,-527]],[[55606,18457],[-248,-234],[-436,154],[-249,-170]],[[54673,18207],[-344,-527],[-202,90],[-131,-293],[-310,-248]],[[53686,17229],[-105,-593],[-170,-534],[-7,-463]],[[53404,15639],[810,-650],[270,244],[232,7]],[[55457,15299],[198,247]],[[54243,19045],[-166,780]],[[54077,19825],[-387,258],[-209,-46]],[[53481,20037],[-366,-160],[-62,-213],[-426,136]],[[52627,19800],[-245,-129],[24,-259]],[[52406,19412],[858,-69],[-48,-399],[167,-359]],[[53383,18585],[191,196],[218,-295],[435,269]],[[54227,18755],[16,290]],[[55683,19193],[-147,128],[-231,834],[-197,116]],[[55108,20271],[-346,135]],[[54762,20406],[-304,-26],[-282,-340]],[[54176,20040],[-99,-215]],[[54243,19045],[229,224],[579,-349],[133,-181],[325,123]],[[57156,20666],[-76,-815],[-431,-866]],[[57511,20786],[-181,234],[-29,748]],[[57301,21768],[-351,-291],[-412,302],[-675,-84],[-85,-255]],[[55778,21440],[-293,-330],[-377,-839]],[[55072,14788],[-84,-495]],[[54988,14293],[258,-180],[627,-21],[425,446]],[[54988,14293],[-22,-442],[88,-366],[205,-198],[221,435],[188,-12],[7,-446]],[[55675,13264],[190,-103],[329,287],[193,1]],[[55675,13264],[-246,-474],[-49,-331],[558,-242],[494,77]],[[53686,17229],[-174,-6],[-492,516],[83,437],[280,409]],[[52406,19412],[-273,-187],[-262,128]],[[51534,18227],[-42,-404]],[[51492,17823],[22,-410]],[[51514,17413],[-52,-633],[147,0],[107,-775],[-48,-202]],[[51668,15803],[449,-321],[-80,-560]],[[52037,14922],[333,-12]],[[52370,14910],[11,229],[246,139],[5,211],[370,-275],[402,425]],[[57301,21768],[-188,701],[101,354]],[[57214,22823],[-226,-83],[-253,196]],[[56735,22936],[12,310],[-232,59],[-192,-217],[-391,153]],[[55932,23241],[-36,-412],[-137,-199]],[[55759,22630],[131,-555],[-136,-267],[24,-368]],[[56958,27018],[-26,186],[-379,53],[-329,-227],[40,-266],[152,211],[542,43]],[[56735,22936],[134,166],[-120,460]],[[56749,23562],[-296,-77],[-307,162],[195,351],[-272,102],[-151,-322],[30,510],[142,293],[-93,137],[293,470],[17,354],[-249,-166],[90,320],[-164,65],[119,553],[-174,8],[-226,-272],[-176,-918],[-281,-822]],[[55246,24310],[198,-760]],[[55444,23550],[488,-309]],[[59550,26691],[-183,-466],[-229,-144],[-162,360],[-396,70],[-230,-336],[-286,-21],[-227,334],[-270,-333],[-286,11],[-184,-623],[-206,-348],[105,-486],[-178,-299],[260,-597],[399,-24],[84,-474],[497,82],[288,-404],[290,-176],[425,-14],[479,440],[388,241],[521,-41],[281,-325]],[[60730,23118],[273,-30],[274,306]],[[57214,22823],[240,594],[-306,35],[-301,529],[-98,-419]],[[55246,24310],[-207,-391],[-45,-1014]],[[54994,22905],[76,-505],[89,62]],[[55159,22462],[150,456]],[[55309,22918],[22,480],[113,152]],[[54762,20406],[159,415],[-89,233]],[[54832,21054],[-518,-231],[-309,256],[528,1110],[236,235]],[[54769,22424],[-25,106]],[[54744,22530],[-646,-638],[-228,-456],[-85,-516],[-167,-97],[-70,266],[-73,-431]],[[53475,20658],[410,30],[96,-485],[195,-163]],[[52627,19800],[-123,356],[-189,-78],[-49,249],[-166,-78],[-138,209],[-233,-102]],[[51406,18187],[86,-364]],[[50617,17205],[195,-120]],[[50812,17085],[405,-77],[297,405]],[[50812,17085],[124,-165],[204,-884],[327,-250],[201,17]],[[47670,22903],[202,-249],[61,304],[347,-57],[69,312],[-122,169],[-66,874],[-113,50],[99,376],[-77,411],[88,185],[-119,613]],[[48039,25891],[-108,162],[-273,-19],[27,-875],[-175,-295],[218,-1263],[-58,-698]],[[47670,22903],[20,-443],[-100,-270],[370,-448],[926,215],[626,-13]],[[50767,22534],[16,362],[-242,414],[-331,132],[-283,1064],[101,358],[-151,278],[-57,407],[-198,125],[-188,482],[-585,-2],[-269,458],[-129,-52],[-167,-572],[-245,-97]],[[48507,15573],[32,426],[-193,536],[-441,355],[-343,-91],[213,-627],[-109,-607],[527,-743]],[[48193,14822],[-15,637],[329,114]],[[95641,62501],[266,679],[-128,152],[-278,-454],[-247,-777],[109,-204],[278,604]],[[95349,55830],[-132,212],[-79,-387],[211,175]],[[95264,55274],[-50,116],[-173,-546],[60,-376],[163,806]],[[95021,55445],[-277,-49],[-19,-347],[296,396]],[[94753,54280],[59,326],[-441,-704],[382,378]],[[95968,74427],[-466,763],[-278,249],[-72,-253],[309,-513],[21,-345],[-206,-249],[327,-444],[286,-887],[46,-530],[-117,-814],[1,-444],[331,462],[-74,558],[11,660],[123,-428],[73,171],[-94,474],[316,254],[330,-166],[-414,920],[-195,-12],[-258,574]],[[93413,76599],[586,-647],[410,-622],[146,-348],[270,-288],[-46,522],[264,-252],[-92,526],[-721,996],[-6,298],[-199,8],[-299,233],[-574,1030],[-489,451],[-228,-13],[-90,-202],[-258,-44],[38,-227],[295,-457],[527,-611],[466,-353]],[[88260,74890],[144,42],[-181,740],[-315,714],[-41,-170],[-302,433],[-194,-54],[-9,-531],[71,-953],[81,-286],[349,270],[397,-205]],[[83740,69506],[-595,468],[-252,584],[-405,71],[-216,-114],[-390,97],[-615,683],[-367,-24],[-336,-521],[66,-359],[214,-229],[158,-1034],[-46,-637],[72,-716],[-117,-845],[31,-493],[-28,-1078],[163,426],[35,-323],[-119,-882],[218,-833],[11,-369],[161,-452],[-30,479],[162,-432],[641,-711],[199,29],[1009,-669],[473,-936],[74,-593],[240,-535],[70,543],[130,-125],[-73,-298],[113,-306],[110,137],[74,-479],[429,-841],[404,-260],[310,661],[345,64],[-31,-346],[424,-1186],[184,-221],[381,-44],[16,-322],[-192,-208],[155,-91],[307,414],[468,291],[351,-246],[106,311],[-540,1489],[5,176],[387,550],[519,945],[242,213],[205,-215],[371,-1463],[21,-848],[110,-812],[307,-1095],[50,703],[134,661],[-36,585],[58,494],[200,-238],[180,513],[-54,279],[18,854],[79,614],[-22,754],[261,329],[309,573],[63,1228],[284,38],[-50,667],[358,1136],[-7,506],[-140,748],[34,534],[-119,557],[-282,853],[-209,811],[-237,572],[-262,308],[-730,1651],[-345,1100],[-203,217],[-299,23],[-304,256],[-403,512],[-282,-388],[118,-326],[-508,572],[-662,-495],[-81,-385],[63,-793],[-76,-254],[-238,-76],[150,-304],[31,-466],[-218,434],[-259,115],[210,-347],[276,-669],[69,-466],[-529,750],[-201,500],[-156,-258],[74,-333],[-176,-691],[77,-146],[-274,-380],[-184,-18],[-204,-306],[-491,60],[-726,434],[-248,-42]],[[72936,44495],[-27,656],[-355,322],[-144,-500],[-72,-905],[96,-1022],[205,350],[297,1099]],[[80303,37775],[-243,-195],[-55,-542],[111,-284],[445,-162],[84,240],[-128,641],[-214,302]],[[82311,24120],[-324,181],[-131,293],[-247,171],[80,-290],[-105,-244],[117,-419],[-208,-327],[-380,654],[-78,403],[-250,31],[-75,291],[220,424],[234,102],[63,281],[243,184],[207,-448],[454,260],[106,329],[-339,175],[-60,338],[-199,314],[-56,440],[346,345],[211,618],[520,1058],[71,467],[-141,171],[305,531],[39,1011],[-143,56],[-213,1507],[-159,751],[-627,1111],[-302,73],[-137,279],[-117,-205],[-122,313],[-352,316],[-281,96],[-30,664],[-149,38],[-116,-457],[41,-243],[-389,-202],[-119,103]],[[83284,33875],[-102,1526],[-205,-532],[-86,-467],[86,-619],[158,-476],[149,188],[0,380]],[[53481,20037],[49,565]],[[53530,20602],[-204,-90],[-200,220],[-5,482],[91,315],[248,313],[143,513],[300,501],[201,-3],[-1,261],[434,414],[232,325],[-10,340],[-154,-291],[-229,-103],[-97,404],[195,231],[-255,900],[-108,49],[94,-661],[-200,-677],[-481,-711],[-193,-40],[-634,-1044],[-92,-615],[-340,-275],[-364,416]],[[53866,25236],[197,-54],[-86,1008],[-715,-622],[30,-322],[574,-10]],[[52255,23514],[127,-193],[162,442],[-23,827],[-222,168],[-101,-165],[-86,-1111],[143,32]],[[52037,14922],[-106,-327],[-22,-601],[97,-332],[205,-37],[259,-325],[-25,653],[131,89],[-280,581],[74,287]],[[52929,14246],[87,295],[-124,478],[-262,-334],[-42,-245],[341,-194]],[[48193,14822],[200,-24],[250,366],[-136,409]],[[49252,15849],[38,-346],[-160,-374],[-289,-104],[-40,-587],[-132,278],[-5,-566],[-113,-299],[98,-602],[190,-470],[464,-1],[-256,626],[494,-77],[-64,474],[-217,526],[245,37],[228,759],[163,95],[217,915],[295,114],[-152,561],[99,311],[-220,317],[-329,-6],[-420,167],[-114,-119],[-165,284],[-228,-69],[-176,232],[-130,-121],[369,-637],[221,-130],[-383,-101],[-66,-239],[257,-187],[-129,-324],[51,-391],[359,54]],[[46916,8413],[-75,350],[217,371],[-311,417],[-859,478],[-878,-256],[241,-243],[-444,-268],[395,-105],[9,-161],[-437,-126],[188,-353],[332,-79],[292,366],[355,-294],[253,153],[373,-288],[349,38]],[[62531,22948],[335,770],[219,197],[-209,50],[-83,1161]],[[61628,23297],[434,41],[-96,-423]],[[60730,23118],[-79,-690],[-422,-491]],[[83718,41233],[-174,-480],[241,24],[112,227],[-39,543],[-140,-314]],[[84308,42947],[70,-567],[152,-37],[-21,424],[172,-607],[8,600],[-237,791],[-193,-435],[49,-169]],[[85417,43934],[76,771],[-74,576],[-126,-642],[-120,320],[106,463],[-71,295],[-342,-365],[-94,-456],[74,-298],[-190,-299],[-405,588],[-53,-184],[90,-531],[311,-414],[111,286],[207,-173],[32,-281],[197,-16],[-40,-487],[242,298],[69,549]],[[83185,43366],[-346,598],[118,-441],[330,-824],[113,-626],[78,514],[-293,779]],[[83862,37758],[-21,261],[135,451],[-28,523],[-147,209],[-3,507],[100,502],[270,-5],[374,349],[88,783],[-363,-639],[-55,231],[-204,-377],[-248,93],[-148,-139],[-206,-701],[-121,-877],[129,208],[-55,-986],[38,-570],[465,177]],[[84105,42045],[-61,-301],[357,194],[10,263],[-282,457],[-24,-613]],[[85044,41574],[121,703],[-225,-167],[108,600],[-126,141],[-35,-443],[-152,-413],[148,-189],[-200,-480],[268,13],[93,235]],[[78668,45314],[242,439],[126,421],[56,1299],[101,174],[112,769],[-199,43],[-608,-967],[-205,-741],[-157,-864],[-49,-726]],[[80829,47968],[208,215],[216,-117],[51,-533],[454,-256],[323,-896]],[[82081,46381],[135,327],[189,-195],[12,-711]],[[82417,45802],[204,-438],[126,-493],[113,-2],[177,593],[428,364],[-13,247],[-188,31],[58,308],[-203,214]],[[82081,46381],[336,-579]],[[53475,20658],[55,-56]],[[56388,11708],[-408,45],[-742,329],[-396,-497],[1,-556],[-156,-505],[240,-672],[562,-710],[-50,-230],[-331,-257]],[[54227,18755],[446,-548]],[[60636,37901],[273,1306],[555,902],[416,937],[141,190]],[[62021,41236],[-201,99]],[[61820,41335],[-428,-992],[-511,-392],[-160,148],[-175,-285],[-76,469],[-327,-132]],[[87006,24587],[-92,630],[150,646],[12,501],[114,314],[-45,442],[-277,295],[-459,38],[-237,717],[-225,-241],[-104,-469],[-434,138],[-258,296],[-309,12],[357,462],[12,1068],[-127,264],[-172,-244],[-33,-567],[-202,-183],[-186,-430],[216,-194],[65,-394],[205,-325],[109,-428],[489,-188],[309,128],[40,-1114],[241,299],[341,-869],[-15,-765],[-215,-702],[11,-395],[245,-113],[359,864],[115,507]],[[86931,21610],[105,-262],[256,696],[-333,170],[-59,618],[-517,-425],[38,680],[-284,9],[-197,-618],[0,-478],[263,-35],[-231,-1338],[486,644],[473,339]],[[85261,28170],[76,-374],[165,73],[58,-264],[297,351],[-77,379],[-148,-201],[-111,514],[-207,-179],[-53,-299]],[[64739,38749],[-195,169],[-43,494],[-704,559],[-236,445],[-206,-3],[-156,262],[-477,189],[-168,372],[-419,39],[-268,-1940],[11,-395]],[[61878,38940],[115,-201],[28,-575],[119,163],[393,-71],[630,199],[175,-660],[248,-284],[787,-241]],[[63092,31258],[137,543],[401,630],[15,468],[230,749]],[[64038,33728],[64,241]],[[61878,38940],[-163,-710],[-150,-226],[-260,-1040],[-332,-536],[-203,-600],[-49,-811],[-183,-698],[-290,-376],[-95,-503],[-641,-1874],[-135,3],[53,-816]],[[41646,95975],[296,-104],[608,310],[451,723],[-170,145],[-687,309],[-388,-27],[-416,-337],[262,-125],[44,-894]],[[39379,97010],[755,62],[-56,-350],[305,189],[245,435],[-705,-35],[-544,-301]],[[35375,92588],[345,-41],[-319,-877],[168,-330],[817,1086],[211,625],[-366,171],[-258,-10],[-2,-201],[-378,141],[-338,-362],[120,-202]],[[29966,92910],[62,-91],[866,181],[176,-60],[300,291],[-894,-10],[-510,-311]],[[26746,93809],[-106,-169],[619,169],[151,-89],[-21,306],[-643,-217]],[[25772,93709],[41,-109],[763,317],[-804,-208]],[[22326,96236],[-192,-177],[440,75],[1251,526],[-197,64],[-1302,-488]],[[27042,98862],[-803,-211],[730,117],[-397,-132],[899,161],[-533,-176],[137,-67],[1401,256],[1523,201],[842,79],[-68,-93],[1577,170],[-162,-190],[-602,-167],[-1294,-100],[-1262,-232],[-1802,-675],[-1561,-412],[643,-43],[541,148],[-79,-297],[-559,-340],[-908,-264],[-1195,-138],[-1260,-492],[-867,-550],[530,200],[406,-115],[438,210],[210,-48],[120,-400],[208,-48],[-671,-542],[137,-87],[296,164],[240,-223],[449,-59],[332,-333],[554,0],[336,88],[425,-78],[624,97],[1045,-19],[220,-226],[328,108],[206,-266],[727,502],[69,-148],[1006,383],[399,-118],[919,176],[-70,-215],[-473,-344],[-519,-227],[-518,-567],[699,70],[1062,438],[590,-229],[500,80],[-74,-388],[294,229],[486,40],[276,199],[818,188],[13,-368],[302,199],[234,-49],[476,277],[488,-288],[648,-198],[176,-270],[-169,-432],[-582,-793],[-159,-410],[-31,-620],[-229,-440],[145,-599],[209,-329],[174,-525],[569,-376],[199,-315],[322,77],[-273,464],[-351,-32],[-285,429],[114,416],[157,180],[-290,169],[-172,578],[38,198],[323,384],[433,289],[707,972],[214,474],[376,590],[90,268],[-45,375],[-216,69],[-28,342],[-180,185],[-550,291],[-22,202],[-1156,38],[187,191],[327,86],[516,302],[-81,150],[-331,-47],[-149,122],[297,380],[885,498],[406,72],[1181,404],[936,189],[797,268],[584,348],[261,-398],[389,-226],[369,-9],[784,160],[106,-314],[383,-9],[1316,-448],[-357,-498],[-949,91],[-225,-527],[503,-328],[452,-476],[564,-193],[525,-86],[821,-486],[298,-313],[32,-197],[-213,-119],[152,-366],[389,-220],[319,-361],[213,-383],[579,222],[91,-394],[274,243],[236,30],[501,-151],[225,29],[86,213],[216,-171],[653,-234],[611,-316],[130,-184],[357,62],[233,428],[234,-102],[322,-347],[263,31],[61,194],[184,-194],[676,-72],[432,92],[180,327],[232,-92],[692,-30],[436,-133],[810,-431],[318,-465],[198,84],[193,309],[222,-41],[223,319],[360,-350],[462,-269],[488,-176],[587,-354],[180,62],[412,-335],[403,-116],[92,-189],[422,-254],[446,-128],[366,86],[80,380],[213,326],[231,63],[214,292],[188,32],[461,-324],[512,240],[396,42],[-45,550],[-184,371],[-487,327],[-58,204],[227,-11],[-485,608],[278,211],[268,-90],[733,-708],[353,-439],[865,-216],[572,-599],[1029,-595],[186,52],[886,-231],[273,-358],[-7,401],[309,147],[233,-64],[705,32],[102,115],[686,-147],[180,74],[1140,-908],[185,223],[128,517],[395,11],[535,-137],[497,-307],[477,-137],[163,444],[245,-21],[226,273],[475,10],[524,-336],[547,85],[446,-85],[311,105],[541,-179],[927,-116],[401,-489],[34,149],[-256,645],[108,96],[1247,-85],[465,63],[-172,524],[240,260],[534,259],[511,-165],[129,433],[377,113],[-96,205],[223,388],[674,10],[343,112],[172,223],[-276,353],[-1280,798],[-1048,365],[-1028,538],[-1230,789],[-620,539],[209,66],[-287,205],[-870,175],[-349,19],[-1078,481],[-858,337],[-126,148],[-634,341],[-643,528],[-606,192],[73,83],[-442,139],[758,-95],[-367,204],[-5090,794],[-6430,343],[-22875,0],[-6430,-343],[-5090,-794]],[[58669,27119],[471,-334],[-140,385]],[[59000,27170],[-331,-51]],[[59000,27170],[-249,305],[-207,-333],[125,-23]],[[45317,35746],[18,-292],[202,-500],[87,-657],[252,-502],[194,-1091],[185,-230],[183,-642],[144,-250],[253,-69],[357,-599],[232,-524],[-58,-783],[149,-872],[177,-424],[470,-547],[270,-1034],[195,2],[157,267],[252,-44],[389,145]],[[56869,35381],[-122,-4554],[-96,-507],[6,-657],[87,-301]],[[56744,29362],[356,-11],[666,450],[302,-380],[428,28],[572,290],[125,-158]],[[59418,30661],[-223,1166],[-232,-484],[-228,-901],[112,720],[434,1613],[485,1394],[-27,519],[391,693]],[[53063,28376],[317,217],[337,50],[359,280],[137,560],[628,385],[294,312],[249,-452],[-75,-481],[259,-601],[182,-85],[365,128],[100,281],[457,184],[72,208]],[[59910,45764],[-172,-685],[-326,-704],[-173,-45],[92,-359],[188,-208]],[[61820,41335],[-180,573],[33,366],[287,79]],[[61960,42353],[-57,222],[329,874],[929,748],[236,-4]],[[62021,41236],[68,456],[-156,151],[123,172]],[[62056,42015],[-96,338]],[[62056,42015],[285,640],[702,-233],[477,-353],[159,-21]],[[58552,49945],[-236,130]],[[58664,47022],[116,-172],[178,141],[423,-146],[172,-290]],[[54832,21054],[171,508],[-85,320]],[[54918,21882],[-149,542]],[[55309,22918],[245,-242]],[[55554,22676],[205,-46]],[[55554,22676],[40,-273],[-262,-365],[-131,286]],[[55201,22324],[-283,-442]],[[54994,22905],[-250,-375]],[[55201,22324],[-42,138]],[[32750,42457],[221,-60],[-23,469],[-236,69],[38,-478]]]} +{"type":"Topology","bbox":[19.10474953226202,7.901947187500468,940.8952504677379,499.66025213707996],"transform":{"scale":[0.009217997189326652,0.004917632225818053],"translate":[19.10474953226202,7.901947187500468]},"objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]]],"id":"242","properties":{"name":"Fiji"}},{"type":"Polygon","arcs":[[2,3,4,5,6,7,8,9,10]],"id":"834","properties":{"name":"Tanzania"}},{"type":"Polygon","arcs":[[11,12,13,14]],"id":"732","properties":{"name":"W. Sahara"}},{"type":"MultiPolygon","arcs":[[[15,16,17,18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]]],"id":"124","properties":{"name":"Canada"}},{"type":"MultiPolygon","arcs":[[[-19,48,49,50]],[[51]],[[52]],[[53]],[[-17,54]],[[55]]],"id":"840","properties":{"name":"United States of America"}},{"type":"Polygon","arcs":[[56,57,58,59,60,61]],"id":"398","properties":{"name":"Kazakhstan"}},{"type":"Polygon","arcs":[[-59,62,63,64,65]],"id":"860","properties":{"name":"Uzbekistan"}},{"type":"MultiPolygon","arcs":[[[66,67]],[[68]],[[69]],[[70]]],"id":"598","properties":{"name":"Papua New Guinea"}},{"type":"MultiPolygon","arcs":[[[-68,71]],[[72,73]],[[74]],[[75,76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]]],"id":"360","properties":{"name":"Indonesia"}},{"type":"MultiPolygon","arcs":[[[86,87]],[[88,89,90,91,92,93]]],"id":"032","properties":{"name":"Argentina"}},{"type":"MultiPolygon","arcs":[[[-88,94]],[[95,-91,96,97]]],"id":"152","properties":{"name":"Chile"}},{"type":"Polygon","arcs":[[-8,98,99,100,101,102,103,104,105,106,107]],"id":"180","properties":{"name":"Dem. Rep. Congo"}},{"type":"Polygon","arcs":[[108,109,110,111]],"id":"706","properties":{"name":"Somalia"}},{"type":"Polygon","arcs":[[-3,112,113,114,-109,115]],"id":"404","properties":{"name":"Kenya"}},{"type":"Polygon","arcs":[[116,117,118,119,120,121,122,123]],"id":"729","properties":{"name":"Sudan"}},{"type":"Polygon","arcs":[[-118,124,125,126,127]],"id":"148","properties":{"name":"Chad"}},{"type":"Polygon","arcs":[[128,129]],"id":"332","properties":{"name":"Haiti"}},{"type":"Polygon","arcs":[[-129,130]],"id":"214","properties":{"name":"Dominican Rep."}},{"type":"MultiPolygon","arcs":[[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137,138,139]],[[140]],[[141]],[[142]],[[143,144,145,146,147,-62,148,149,150,151,152,153,154,155,156,157,158,159]],[[160]],[[161]],[[162,163]]],"id":"643","properties":{"name":"Russia"}},{"type":"MultiPolygon","arcs":[[[164]],[[165]],[[166]]],"id":"044","properties":{"name":"Bahamas"}},{"type":"Polygon","arcs":[[167]],"id":"238","properties":{"name":"Falkland Is."}},{"type":"MultiPolygon","arcs":[[[168]],[[-159,169,170,171]],[[172]],[[173]]],"id":"578","properties":{"name":"Norway"}},{"type":"Polygon","arcs":[[174]],"id":"304","properties":{"name":"Greenland"}},{"type":"Polygon","arcs":[[175]],"id":"260","properties":{"name":"Fr. S. Antarctic Lands"}},{"type":"Polygon","arcs":[[176,-73]],"id":"626","properties":{"name":"Timor-Leste"}},{"type":"Polygon","arcs":[[177,178,179,180,181,182,183],[184]],"id":"710","properties":{"name":"South Africa"}},{"type":"Polygon","arcs":[[-185]],"id":"426","properties":{"name":"Lesotho"}},{"type":"Polygon","arcs":[[-50,185,186,187,188]],"id":"484","properties":{"name":"Mexico"}},{"type":"Polygon","arcs":[[189,190,-89]],"id":"858","properties":{"name":"Uruguay"}},{"type":"Polygon","arcs":[[-190,-94,191,192,193,194,195,196,197,198,199]],"id":"076","properties":{"name":"Brazil"}},{"type":"Polygon","arcs":[[-193,200,-92,-96,201]],"id":"068","properties":{"name":"Bolivia"}},{"type":"Polygon","arcs":[[-194,-202,-98,202,203,204]],"id":"604","properties":{"name":"Peru"}},{"type":"Polygon","arcs":[[-195,-205,205,206,207,208,209]],"id":"170","properties":{"name":"Colombia"}},{"type":"Polygon","arcs":[[-208,210,211,212]],"id":"591","properties":{"name":"Panama"}},{"type":"Polygon","arcs":[[-212,213,214,215]],"id":"188","properties":{"name":"Costa Rica"}},{"type":"Polygon","arcs":[[-215,216,217,218]],"id":"558","properties":{"name":"Nicaragua"}},{"type":"Polygon","arcs":[[-218,219,220,221,222]],"id":"340","properties":{"name":"Honduras"}},{"type":"Polygon","arcs":[[-221,223,224]],"id":"222","properties":{"name":"El Salvador"}},{"type":"Polygon","arcs":[[-188,225,226,-222,-225,227]],"id":"320","properties":{"name":"Guatemala"}},{"type":"Polygon","arcs":[[-187,228,-226]],"id":"084","properties":{"name":"Belize"}},{"type":"Polygon","arcs":[[-196,-210,229,230]],"id":"862","properties":{"name":"Venezuela"}},{"type":"Polygon","arcs":[[-197,-231,231,232]],"id":"328","properties":{"name":"Guyana"}},{"type":"Polygon","arcs":[[-198,-233,233,234]],"id":"740","properties":{"name":"Suriname"}},{"type":"MultiPolygon","arcs":[[[-199,-235,235]],[[236,237,238,239,240,241,242,243]],[[244]]],"id":"250","properties":{"name":"France"}},{"type":"Polygon","arcs":[[-204,245,-206]],"id":"218","properties":{"name":"Ecuador"}},{"type":"Polygon","arcs":[[246]],"id":"630","properties":{"name":"Puerto Rico"}},{"type":"Polygon","arcs":[[247]],"id":"388","properties":{"name":"Jamaica"}},{"type":"Polygon","arcs":[[248]],"id":"192","properties":{"name":"Cuba"}},{"type":"Polygon","arcs":[[-180,249,250,251]],"id":"716","properties":{"name":"Zimbabwe"}},{"type":"Polygon","arcs":[[-179,252,253,-250]],"id":"072","properties":{"name":"Botswana"}},{"type":"Polygon","arcs":[[-178,254,255,256,-253]],"id":"516","properties":{"name":"Namibia"}},{"type":"Polygon","arcs":[[257,258,259,260,261,262,263]],"id":"686","properties":{"name":"Senegal"}},{"type":"Polygon","arcs":[[-260,264,265,266,267,268,269]],"id":"466","properties":{"name":"Mali"}},{"type":"Polygon","arcs":[[-13,270,-265,-259,271]],"id":"478","properties":{"name":"Mauritania"}},{"type":"Polygon","arcs":[[272,273,274,275,276]],"id":"204","properties":{"name":"Benin"}},{"type":"Polygon","arcs":[[-127,277,278,-276,279,-267,280,281]],"id":"562","properties":{"name":"Niger"}},{"type":"Polygon","arcs":[[-277,-279,282,283]],"id":"566","properties":{"name":"Nigeria"}},{"type":"Polygon","arcs":[[-126,284,285,286,287,288,-283,-278]],"id":"120","properties":{"name":"Cameroon"}},{"type":"Polygon","arcs":[[-274,289,290,291]],"id":"768","properties":{"name":"Togo"}},{"type":"Polygon","arcs":[[-291,292,293,294]],"id":"288","properties":{"name":"Ghana"}},{"type":"Polygon","arcs":[[-269,295,-294,296,297,298]],"id":"384","properties":{"name":"Côte d'Ivoire"}},{"type":"Polygon","arcs":[[-261,-270,-299,299,300,301,302]],"id":"324","properties":{"name":"Guinea"}},{"type":"Polygon","arcs":[[-262,-303,303]],"id":"624","properties":{"name":"Guinea-Bissau"}},{"type":"Polygon","arcs":[[-298,304,305,-300]],"id":"430","properties":{"name":"Liberia"}},{"type":"Polygon","arcs":[[-301,-306,306]],"id":"694","properties":{"name":"Sierra Leone"}},{"type":"Polygon","arcs":[[-268,-280,-275,-292,-295,-296]],"id":"854","properties":{"name":"Burkina Faso"}},{"type":"Polygon","arcs":[[-104,307,-285,-125,-117,308]],"id":"140","properties":{"name":"Central African Rep."}},{"type":"Polygon","arcs":[[-103,309,310,311,-286,-308]],"id":"178","properties":{"name":"Congo"}},{"type":"Polygon","arcs":[[-287,-312,312,313]],"id":"266","properties":{"name":"Gabon"}},{"type":"Polygon","arcs":[[-288,-314,314]],"id":"226","properties":{"name":"Eq. Guinea"}},{"type":"Polygon","arcs":[[-7,315,316,-251,-254,-257,317,-99]],"id":"894","properties":{"name":"Zambia"}},{"type":"Polygon","arcs":[[-6,318,-316]],"id":"454","properties":{"name":"Malawi"}},{"type":"Polygon","arcs":[[-5,319,-183,320,-181,-252,-317,-319]],"id":"508","properties":{"name":"Mozambique"}},{"type":"Polygon","arcs":[[-182,-321]],"id":"748","properties":{"name":"eSwatini"}},{"type":"MultiPolygon","arcs":[[[-102,321,-310]],[[-100,-318,-256,322]]],"id":"024","properties":{"name":"Angola"}},{"type":"Polygon","arcs":[[-9,-108,323]],"id":"108","properties":{"name":"Burundi"}},{"type":"Polygon","arcs":[[324,325,326,327,328,329,330]],"id":"376","properties":{"name":"Israel"}},{"type":"Polygon","arcs":[[-330,331,332]],"id":"422","properties":{"name":"Lebanon"}},{"type":"Polygon","arcs":[[333]],"id":"450","properties":{"name":"Madagascar"}},{"type":"Polygon","arcs":[[-326,334]],"id":"275","properties":{"name":"Palestine"}},{"type":"Polygon","arcs":[[-264,335]],"id":"270","properties":{"name":"Gambia"}},{"type":"Polygon","arcs":[[336,337,338]],"id":"788","properties":{"name":"Tunisia"}},{"type":"Polygon","arcs":[[-12,339,340,-337,341,-281,-266,-271]],"id":"012","properties":{"name":"Algeria"}},{"type":"Polygon","arcs":[[-325,342,343,344,345,-327,-335]],"id":"400","properties":{"name":"Jordan"}},{"type":"Polygon","arcs":[[346,347,348,349,350]],"id":"784","properties":{"name":"United Arab Emirates"}},{"type":"Polygon","arcs":[[351,352]],"id":"634","properties":{"name":"Qatar"}},{"type":"Polygon","arcs":[[353,354,355]],"id":"414","properties":{"name":"Kuwait"}},{"type":"Polygon","arcs":[[-344,356,357,358,359,-356,360]],"id":"368","properties":{"name":"Iraq"}},{"type":"MultiPolygon","arcs":[[[-350,361,362,363]],[[-348,364]]],"id":"512","properties":{"name":"Oman"}},{"type":"MultiPolygon","arcs":[[[365]],[[366]]],"id":"548","properties":{"name":"Vanuatu"}},{"type":"Polygon","arcs":[[367,368,369,370]],"id":"116","properties":{"name":"Cambodia"}},{"type":"Polygon","arcs":[[-368,371,372,373,374,375]],"id":"764","properties":{"name":"Thailand"}},{"type":"Polygon","arcs":[[-369,-376,376,377,378]],"id":"418","properties":{"name":"Laos"}},{"type":"Polygon","arcs":[[-375,379,380,381,382,-377]],"id":"104","properties":{"name":"Myanmar"}},{"type":"Polygon","arcs":[[-370,-379,383,384]],"id":"704","properties":{"name":"Vietnam"}},{"type":"MultiPolygon","arcs":[[[143,143,143]],[[-145,385,386,387,388]]],"id":"408","properties":{"name":"North Korea"}},{"type":"Polygon","arcs":[[-387,389]],"id":"410","properties":{"name":"South Korea"}},{"type":"Polygon","arcs":[[-147,390]],"id":"496","properties":{"name":"Mongolia"}},{"type":"Polygon","arcs":[[-382,391,392,393,394,395,396,397,398]],"id":"356","properties":{"name":"India"}},{"type":"Polygon","arcs":[[-381,399,-392]],"id":"050","properties":{"name":"Bangladesh"}},{"type":"Polygon","arcs":[[-398,400]],"id":"064","properties":{"name":"Bhutan"}},{"type":"Polygon","arcs":[[-396,401]],"id":"524","properties":{"name":"Nepal"}},{"type":"Polygon","arcs":[[-394,402,403,404,405]],"id":"586","properties":{"name":"Pakistan"}},{"type":"Polygon","arcs":[[-65,406,407,-405,408,409]],"id":"004","properties":{"name":"Afghanistan"}},{"type":"Polygon","arcs":[[-64,410,411,-407]],"id":"762","properties":{"name":"Tajikistan"}},{"type":"Polygon","arcs":[[-58,412,-411,-63]],"id":"417","properties":{"name":"Kyrgyzstan"}},{"type":"Polygon","arcs":[[-60,-66,-410,413,414]],"id":"795","properties":{"name":"Turkmenistan"}},{"type":"Polygon","arcs":[[-359,415,416,417,418,419,-414,-409,-404,420]],"id":"364","properties":{"name":"Iran"}},{"type":"Polygon","arcs":[[-331,-333,421,422,-357,-343]],"id":"760","properties":{"name":"Syria"}},{"type":"Polygon","arcs":[[-418,423,424,425,426]],"id":"051","properties":{"name":"Armenia"}},{"type":"Polygon","arcs":[[-171,427,428]],"id":"752","properties":{"name":"Sweden"}},{"type":"Polygon","arcs":[[-154,429,430,431,432]],"id":"112","properties":{"name":"Belarus"}},{"type":"Polygon","arcs":[[-153,433,-163,434,435,436,437,438,439,440,-430]],"id":"804","properties":{"name":"Ukraine"}},{"type":"Polygon","arcs":[[-431,-441,441,442,443,444,-138,445]],"id":"616","properties":{"name":"Poland"}},{"type":"Polygon","arcs":[[446,447,448,449,450,451,452]],"id":"040","properties":{"name":"Austria"}},{"type":"Polygon","arcs":[[-439,453,454,455,456,-447,457]],"id":"348","properties":{"name":"Hungary"}},{"type":"Polygon","arcs":[[-437,458]],"id":"498","properties":{"name":"Moldova"}},{"type":"Polygon","arcs":[[-436,459,460,461,-454,-438,-459]],"id":"642","properties":{"name":"Romania"}},{"type":"Polygon","arcs":[[-432,-446,-140,462,463]],"id":"440","properties":{"name":"Lithuania"}},{"type":"Polygon","arcs":[[-155,-433,-464,464,465]],"id":"428","properties":{"name":"Latvia"}},{"type":"Polygon","arcs":[[-156,-466,466]],"id":"233","properties":{"name":"Estonia"}},{"type":"Polygon","arcs":[[-444,467,-451,468,-237,469,470,471,472,473,474]],"id":"276","properties":{"name":"Germany"}},{"type":"Polygon","arcs":[[-461,475,476,477,478,479]],"id":"100","properties":{"name":"Bulgaria"}},{"type":"MultiPolygon","arcs":[[[480]],[[-478,481,482,483,484]]],"id":"300","properties":{"name":"Greece"}},{"type":"MultiPolygon","arcs":[[[-358,-423,485,486,-425,-416]],[[-477,487,-482]]],"id":"792","properties":{"name":"Turkey"}},{"type":"Polygon","arcs":[[-484,488,489,490,491]],"id":"008","properties":{"name":"Albania"}},{"type":"Polygon","arcs":[[-456,492,493,494,495,496]],"id":"191","properties":{"name":"Croatia"}},{"type":"Polygon","arcs":[[-450,497,-238,-469]],"id":"756","properties":{"name":"Switzerland"}},{"type":"Polygon","arcs":[[-470,-244,498]],"id":"442","properties":{"name":"Luxembourg"}},{"type":"Polygon","arcs":[[-471,-499,-243,499,500]],"id":"056","properties":{"name":"Belgium"}},{"type":"Polygon","arcs":[[-472,-501,501]],"id":"528","properties":{"name":"Netherlands"}},{"type":"Polygon","arcs":[[502,503]],"id":"620","properties":{"name":"Portugal"}},{"type":"Polygon","arcs":[[-503,504,-241,505]],"id":"724","properties":{"name":"Spain"}},{"type":"Polygon","arcs":[[506,507]],"id":"372","properties":{"name":"Ireland"}},{"type":"Polygon","arcs":[[508]],"id":"540","properties":{"name":"New Caledonia"}},{"type":"MultiPolygon","arcs":[[[509]],[[510]],[[511]],[[512]]],"id":"090","properties":{"name":"Solomon Is."}},{"type":"MultiPolygon","arcs":[[[513]],[[514]]],"id":"554","properties":{"name":"New Zealand"}},{"type":"MultiPolygon","arcs":[[[515]],[[516]]],"id":"036","properties":{"name":"Australia"}},{"type":"Polygon","arcs":[[517]],"id":"144","properties":{"name":"Sri Lanka"}},{"type":"MultiPolygon","arcs":[[[518]],[[-57,-148,-391,-146,-389,519,-384,-378,-383,-399,-401,-397,-402,-395,-406,-408,-412,-413]]],"id":"156","properties":{"name":"China"}},{"type":"Polygon","arcs":[[520]],"id":"158","properties":{"name":"Taiwan"}},{"type":"MultiPolygon","arcs":[[[-449,521,522,-239,-498]],[[523]],[[524]]],"id":"380","properties":{"name":"Italy"}},{"type":"MultiPolygon","arcs":[[[-474,525]],[[526]]],"id":"208","properties":{"name":"Denmark"}},{"type":"MultiPolygon","arcs":[[[-508,527]],[[528]]],"id":"826","properties":{"name":"United Kingdom"}},{"type":"Polygon","arcs":[[529]],"id":"352","properties":{"name":"Iceland"}},{"type":"MultiPolygon","arcs":[[[-150,530,-419,-427,531]],[[-417,-424]]],"id":"031","properties":{"name":"Azerbaijan"}},{"type":"Polygon","arcs":[[-151,-532,-426,-487,532]],"id":"268","properties":{"name":"Georgia"}},{"type":"MultiPolygon","arcs":[[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]]],"id":"608","properties":{"name":"Philippines"}},{"type":"MultiPolygon","arcs":[[[-373,540]],[[-77,541,542,543]]],"id":"458","properties":{"name":"Malaysia"}},{"type":"Polygon","arcs":[[-543,544]],"id":"096","properties":{"name":"Brunei"}},{"type":"Polygon","arcs":[[-448,-457,-497,545,-522]],"id":"705","properties":{"name":"Slovenia"}},{"type":"Polygon","arcs":[[-158,546,-428,-170]],"id":"246","properties":{"name":"Finland"}},{"type":"Polygon","arcs":[[-440,-458,-453,547,-442]],"id":"703","properties":{"name":"Slovakia"}},{"type":"Polygon","arcs":[[-443,-548,-452,-468]],"id":"203","properties":{"name":"Czechia"}},{"type":"Polygon","arcs":[[-122,548,549,550]],"id":"232","properties":{"name":"Eritrea"}},{"type":"MultiPolygon","arcs":[[[551]],[[552]],[[553]]],"id":"392","properties":{"name":"Japan"}},{"type":"Polygon","arcs":[[-192,-93,-201]],"id":"600","properties":{"name":"Paraguay"}},{"type":"Polygon","arcs":[[-363,554,555]],"id":"887","properties":{"name":"Yemen"}},{"type":"Polygon","arcs":[[-345,-361,-355,556,-353,557,-351,-364,-556,558]],"id":"682","properties":{"name":"Saudi Arabia"}},{"type":"MultiPolygon","arcs":[[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]]],"id":"010","properties":{"name":"Antarctica"}},{"type":"Polygon","arcs":[[567,568]],"properties":{"name":"N. Cyprus"}},{"type":"Polygon","arcs":[[-569,569]],"id":"196","properties":{"name":"Cyprus"}},{"type":"Polygon","arcs":[[-340,-15,570]],"id":"504","properties":{"name":"Morocco"}},{"type":"Polygon","arcs":[[-120,571,572,-328,573]],"id":"818","properties":{"name":"Egypt"}},{"type":"Polygon","arcs":[[-119,-128,-282,-342,-339,574,-572]],"id":"434","properties":{"name":"Libya"}},{"type":"Polygon","arcs":[[-110,-115,575,-123,-551,576,577]],"id":"231","properties":{"name":"Ethiopia"}},{"type":"Polygon","arcs":[[-550,578,579,-577]],"id":"262","properties":{"name":"Djibouti"}},{"type":"Polygon","arcs":[[-111,-578,-580,580]],"properties":{"name":"Somaliland"}},{"type":"Polygon","arcs":[[-11,581,-106,582,-113]],"id":"800","properties":{"name":"Uganda"}},{"type":"Polygon","arcs":[[-10,-324,-107,-582]],"id":"646","properties":{"name":"Rwanda"}},{"type":"Polygon","arcs":[[-494,583,584]],"id":"070","properties":{"name":"Bosnia and Herz."}},{"type":"Polygon","arcs":[[-479,-485,-492,585,586]],"id":"807","properties":{"name":"Macedonia"}},{"type":"Polygon","arcs":[[-455,-462,-480,-587,587,588,-584,-493]],"id":"688","properties":{"name":"Serbia"}},{"type":"Polygon","arcs":[[-490,589,-495,-585,-589,590]],"id":"499","properties":{"name":"Montenegro"}},{"type":"Polygon","arcs":[[-491,-591,-588,-586]],"properties":{"name":"Kosovo"}},{"type":"Polygon","arcs":[[591]],"id":"780","properties":{"name":"Trinidad and Tobago"}},{"type":"Polygon","arcs":[[-105,-309,-124,-576,-114,-583]],"id":"728","properties":{"name":"S. Sudan"}}]}},"arcs":[[[99364,60250],[155,78],[-90,328],[-325,9],[145,-493],[115,78]],[[99961,59653],[-390,286],[-6,-234],[434,-360],[-38,308]],[[59532,49829],[1063,1351],[17,366],[399,628]],[[61011,52174],[-136,776],[13,357],[177,230],[-84,1036],[198,1015],[100,137]],[[61279,55725],[-229,365],[-580,423],[-270,96],[-333,-177],[-211,51]],[[59656,56483],[-64,-857],[-144,-467],[-274,-118]],[[59174,55041],[-559,-560]],[[58615,54481],[-144,-794],[-160,-351],[-70,-1273]],[[58241,52063],[117,-29],[284,-689],[-77,-595]],[[58565,50750],[98,-450],[-111,-355]],[[58552,49945],[99,-75],[881,-41]],[[47650,31822],[-7,164]],[[47643,31986],[-10,953],[-892,-33],[-12,1610],[-258,57],[-71,324],[42,908],[-1078,-4],[-63,210]],[[45301,36011],[16,-265]],[[45317,35746],[625,-50],[152,-510],[103,-869],[389,-678],[139,-794],[180,-537],[450,14],[257,-163],[38,-337]],[[19455,18509],[-427,-861],[-365,-251],[42,-534],[163,-370],[-220,-256],[135,-482],[-126,-432],[116,-305]],[[18773,15018],[248,-286],[147,-372],[-242,-373],[113,-1081],[-122,-494],[32,-297],[-717,507],[-34,-628],[-351,-174],[2016,-3161],[1539,-1976]],[[21402,6683],[274,126],[293,302],[730,-384],[252,64],[918,-360],[-30,217],[481,-368],[96,56],[-15,469],[535,-355],[-268,397],[502,-239],[223,30],[153,220],[568,282],[224,-33],[102,268],[-460,263],[305,115],[836,-156],[31,319],[387,-270],[-75,-225],[244,-181],[463,-77],[129,414],[256,-42],[233,239],[668,-72],[157,-330],[235,-92],[223,179],[-268,504],[356,-425],[160,15],[379,-532],[-154,-535],[359,-574],[464,-374],[270,310],[-64,585],[-322,256],[321,107],[-283,539],[488,-414],[72,339],[-256,393],[30,361],[773,-843],[301,-577],[529,118],[148,260],[-394,544],[19,284],[-142,261],[-578,376],[-332,83],[-147,-162],[-757,968],[-408,371],[-328,36],[-272,234],[-163,360],[-287,70],[-456,453],[-493,634],[-258,448],[-255,664],[307,97],[-109,982],[364,-116],[359,253],[259,500],[437,409],[629,92],[-168,513],[-69,599],[22,671],[242,572],[229,-196],[264,-618],[88,-945],[-94,-312],[450,-277],[371,-414],[233,-408],[82,-391],[-25,-493],[-159,-435],[449,-601],[59,-515],[213,-878],[200,-130],[543,206],[233,-146],[323,515],[4,219],[391,43],[-141,476],[-117,723],[189,90],[83,340],[414,-321],[597,-897],[51,510],[237,1432],[-170,367],[399,668],[353,152],[120,190],[10,503],[235,304],[-87,674],[-419,437],[-437,215],[-385,498],[-433,99],[-507,-128],[-632,38],[-280,436],[-360,270],[-869,1376],[229,-101],[529,-805],[604,-510],[381,-60],[174,298],[-297,411],[0,1126],[286,308],[430,-90],[344,-692],[-42,447],[135,223],[-364,405],[-610,367],[-627,697],[-189,-46],[59,-524],[510,-511],[-702,95]],[[32952,20882],[-116,-349],[123,-839],[-328,-235],[-263,464],[-281,761],[-255,279],[-855,4],[-508,608],[-119,242],[-486,2],[-131,98],[2,375],[-382,308],[-280,98],[-350,333],[-137,-252],[398,-926],[77,-1101],[-214,-289],[-61,-429],[-141,-238],[-710,-861],[-342,180],[-274,-160],[-219,80],[-202,-190],[-399,-134],[-22,-439],[-139,237],[-6883,0]],[[31270,10610],[261,-258],[302,6],[-416,416],[-147,-164]],[[34629,5087],[-61,-270],[223,-215],[403,53],[121,420],[-686,12]],[[32018,10815],[249,-40],[-187,294],[-62,-254]],[[32709,3989],[-240,194],[-372,-169],[268,-224],[364,-133],[-20,332]],[[33660,2740],[-390,-17],[78,-134],[340,7],[-28,144]],[[33727,2144],[37,165],[-561,272],[-33,-112],[294,-375],[263,50]],[[33521,4283],[-643,-223],[296,-520],[-13,-215],[-401,-211],[239,-200],[336,31],[65,156],[350,0],[-157,345],[155,229],[467,64],[363,-107],[671,-8],[-12,393],[-541,240],[-201,-61],[-974,87]],[[30953,2436],[161,75],[-680,283],[-92,-157],[611,-201]],[[31359,2126],[107,96],[-593,92],[486,-188]],[[36370,17103],[-425,912],[190,-205],[148,129],[-116,213],[198,166],[134,-148],[223,188],[-134,447],[187,-104],[24,704],[-169,541],[-269,-93],[55,-581],[-356,533],[-148,-21],[213,-288],[-222,-150],[-758,18],[171,-397],[-86,-166],[261,-368],[394,-968],[447,-552],[38,190]],[[31867,9143],[342,358],[-82,262],[266,140],[-261,174],[-292,-133],[-27,-248],[-758,580],[52,-324],[-321,53],[302,-273],[493,-932],[74,284],[212,59]],[[34700,5317],[291,-204],[445,504],[-82,225],[420,-117],[57,329],[392,205],[84,700],[-473,246],[355,346],[288,117],[131,491],[321,36],[-189,377],[-577,632],[-191,-234],[-162,-520],[-298,67],[-135,310],[376,714],[-23,545],[-193,400],[-653,-594],[297,814],[-20,196],[-541,-224],[-559,-593],[129,-157],[-454,-549],[-53,159],[-663,87],[-114,-189],[297,-402],[877,-79],[178,-463],[477,-524],[28,-419],[-210,-257],[-339,-179],[191,-134],[-68,-326],[-240,-208],[-182,155],[-400,67],[-678,-117],[-630,-232],[-66,-182],[340,-236],[-280,-2],[243,-522],[426,-456],[326,-206],[573,-135],[-339,327],[-36,318],[418,-411],[605,-207],[29,525],[-210,335],[464,-149]],[[32243,4412],[658,140],[-575,451],[-292,99],[-449,383],[-211,-19],[169,-449],[418,-468],[282,-137]],[[27864,3425],[1394,-681],[575,-64],[-421,373],[-1046,403],[-365,76],[-137,-107]],[[18072,15470],[250,-48],[-332,678],[35,483],[-97,-1],[-85,-737],[146,-452],[83,77]],[[32547,1892],[513,236],[-237,426],[-352,-209],[-361,-17],[317,-142],[120,-294]],[[19201,18809],[-150,85],[-328,-278],[-157,-602],[-220,-111],[78,-470],[549,289],[52,498],[172,251],[4,338]],[[27306,4254],[627,133],[85,358],[-1105,486],[-527,359],[-174,224],[-714,249],[72,-226],[-235,-272],[1171,-923],[95,-309],[705,-79]],[[30454,3559],[404,-61],[-485,478],[-690,77],[-651,217],[-295,12],[117,-164],[576,-220],[-885,59],[-176,-89],[708,-484],[304,-137],[345,166],[53,292],[286,38],[170,-472],[462,-122],[-243,410]],[[29578,4947],[66,206],[-408,863],[380,503],[-162,231],[-359,42],[-174,396],[-589,-226],[-754,211],[-970,129],[50,-249],[-404,-85],[36,-415],[546,-144],[593,-68],[-303,-121],[-733,30],[35,-190],[613,-208],[-310,8],[-241,-136],[761,-588],[762,-309],[118,98],[-284,238],[548,-154],[73,257],[414,-260],[51,167],[-203,503],[249,-212],[245,-524],[354,7]],[[30614,5136],[21,-332],[401,-245],[150,106],[383,-64],[-397,390],[146,219],[-330,462],[-448,200],[-393,-636],[117,-163],[350,63]],[[29762,4682],[331,91],[-412,335],[-38,-355],[119,-71]],[[32502,3129],[-55,227],[-571,623],[-480,-29],[236,-290],[-331,39],[312,-382],[180,15],[709,-203]],[[34811,1294],[553,-271],[389,-22],[-103,238],[314,183],[-146,454],[-1002,496],[-630,-27],[5,-193],[437,-296],[-305,3],[129,-363],[359,-202]],[[36264,722],[923,-164],[447,-157],[136,140],[437,-226],[610,-110],[468,27],[504,-69],[876,84],[379,164],[-126,112],[-1243,371],[335,-3],[-993,396],[-604,374],[-586,171],[-543,51],[-55,375],[-655,299],[-628,444],[237,100],[-678,294],[-375,-135],[-580,75],[-542,-85],[162,-235],[413,-109],[203,-349],[425,174],[20,-308],[-196,-91],[705,-297],[201,-163],[-52,-182],[181,-237],[493,70],[423,-167],[-888,-23],[-99,-153],[265,-458]],[[34230,7883],[-448,184],[272,-559],[322,73],[-146,302]],[[30409,6799],[11,201],[-230,185],[-387,-102],[-143,-237],[550,-388],[199,341]],[[34040,17978],[395,101],[215,255],[-132,123],[-293,-192],[-185,-287]],[[33905,19712],[46,300],[408,65],[-256,292],[-286,-261],[88,-396]],[[32952,20882],[16,203],[-312,300],[-587,397],[-248,509],[-5,659],[124,104],[-787,260],[218,181],[-552,188],[-125,574],[-251,481],[-117,-349],[36,684],[-323,743],[113,-451],[-154,-488],[-61,1096],[69,44],[-34,844],[-221,466],[-296,186],[-353,408],[-222,442],[-338,407],[-351,672],[-89,446],[38,975],[113,1447],[-181,1054],[-216,3],[-109,-421],[-194,-1268],[96,-419],[-196,-872],[-95,-95],[-303,285],[-295,-481],[-544,9],[-332,142],[-20,629],[-399,8],[-163,-333],[-244,78],[-179,-146],[-418,192],[-300,466],[-300,272],[-276,583],[-42,950]],[[23543,32946],[-477,-315],[-53,-736],[-118,-359],[-132,-798],[-158,-252],[-222,12],[-233,497],[-315,-378],[-67,-674],[-298,-698],[-464,0],[-37,259],[-747,4],[-901,-747],[44,-124],[-662,117]],[[18703,28754],[8,-321],[-222,-616],[-446,-264],[-21,-445],[-141,-631],[-88,-1222],[-95,-524],[72,-510],[-65,-342],[283,-1050],[29,-477],[241,-585],[343,-1123],[174,-826],[139,-929],[302,207],[-27,579],[107,-162],[159,-1004]],[[7131,36591],[106,394],[-337,248],[119,-761],[112,119]],[[12068,11776],[146,52],[-318,306],[-118,-261],[290,-97]],[[14284,13162],[136,219],[-699,499],[67,-423],[496,-295]],[[18773,15018],[-174,-411],[153,-513],[-93,-473],[131,-548],[-567,-52],[-190,-166],[-168,-597],[-449,-312],[-345,49],[-425,-504],[-324,120],[-185,396],[-482,155],[-639,316],[163,-338],[438,-559],[348,-174],[26,-141],[-484,315],[-386,379],[-570,406],[7,279],[-451,414],[-715,420],[-197,258],[-527,302],[-217,276],[-406,251],[-141,-45],[-947,563],[-496,170],[13,-100],[1147,-782],[329,-65],[243,-242],[915,-671],[600,-780],[-632,285],[-81,-373],[-510,230],[358,-552],[-20,-204],[-366,109],[-88,-404],[214,-320],[-8,-241],[1012,-921],[296,48],[376,-267],[419,-124],[103,-350],[325,-211],[-462,125],[-594,62],[-214,-132],[79,-536],[1194,-490],[175,0],[-259,270],[468,-21],[110,-334],[-83,-205],[94,-495],[-128,-167],[377,-277],[381,-17],[486,-240],[745,-503],[861,-290],[149,35],[579,-276],[478,392],[475,37],[713,281],[342,-85],[330,230]],[[12278,9871],[460,269],[-322,178],[-83,-221],[-234,-17],[179,-209]],[[71695,18378],[-106,406],[-195,58],[109,614],[-88,278],[-536,-202],[16,1102],[-569,384],[402,1076],[-151,162],[74,355]],[[70651,22611],[-335,-315],[-819,-82],[-82,68],[-403,-260],[-128,128],[12,367],[-452,-215],[-178,361]],[[68266,22663],[-418,549],[-58,446],[-203,-292],[-331,-20],[-115,-510],[-126,-4],[-58,-624],[-365,-453],[-721,139],[-312,-560],[-739,-729],[-610,365],[257,2289]],[[64467,23259],[-129,30],[-230,-488],[-192,-174],[-279,129],[-94,208]],[[63543,22964],[-62,-628],[-318,-212],[-357,-915],[254,58],[-38,-452],[437,-8],[-22,-602],[-89,-380],[-479,-121],[-482,400]],[[62387,20104],[-352,-826],[-184,17],[-257,-415],[93,-463],[-87,-124],[120,-668],[296,351],[-23,-442],[421,-658],[380,-15],[924,662],[224,-255],[387,-12],[363,314],[44,-180],[350,26],[15,-287],[-463,-414],[186,-293],[-73,-164],[205,-155],[-246,-409],[74,-204],[860,-206],[88,-147],[554,-219],[162,-245],[456,127],[209,614],[220,-144],[352,203],[50,325],[225,-34],[477,-562],[-46,186],[413,461],[872,1527],[64,-316],[412,348],[320,-155],[711,835],[302,-82],[210,372]],[[68266,22663],[85,61],[-165,403],[221,235],[164,-155],[349,328],[-274,449],[-206,-61]],[[68440,23923],[-163,-158],[18,-289],[-328,145],[-117,746],[-221,-30],[-36,276],[208,148],[110,466],[-78,634]],[[67833,25861],[-359,-136]],[[67474,25725],[-35,-383],[-683,-574],[-546,-726],[-198,-643],[-489,-213],[-83,-496],[-383,-329],[-374,576],[75,313],[-291,9]],[[89634,50868],[480,434],[511,360],[333,638],[32,372],[453,389],[56,333],[-262,68],[45,419],[230,413],[146,668],[162,-21],[-28,279],[399,490],[-230,226],[-59,-163],[-512,-165],[-333,-748],[-117,-551],[-352,-276],[-427,388],[11,465],[-232,216],[-439,-132]],[[89501,54970],[87,-2051],[46,-2051]],[[92892,51535],[127,528],[-93,168],[-101,-615],[-476,-660],[80,-152],[357,467],[106,264]],[[92475,52907],[-309,301],[-149,-1],[-377,-358],[30,-195],[675,11],[250,-440],[-20,-370],[222,91],[-122,733],[-200,228]],[[93457,52592],[325,755],[-129,240],[-218,-641],[22,-354]],[[89501,54970],[-223,-517],[-278,-126],[-78,179],[-356,20],[142,-513],[185,-175],[-46,-684],[-118,-528],[-529,-533],[-230,-53],[-408,-582],[-199,361],[-55,-504],[-209,-309],[485,-381],[-412,-1],[-107,-375],[-250,-116],[-117,-312],[380,-153],[144,-204],[451,257],[111,1252],[284,378],[245,-669],[327,-379],[250,-1],[444,445],[300,121]],[[85009,54828],[18,316]],[[85027,55144],[-207,469],[-247,139],[146,-673],[290,-251]],[[87653,53571],[-10,-474],[123,-439],[48,485],[-161,428]],[[83119,46626],[-149,568],[214,597],[-45,290],[319,581],[-332,75],[-93,429],[11,570],[-273,431],[-13,627],[-124,962],[-37,-223],[-325,283],[-104,-384],[-337,-238],[-338,226],[-97,-304],[-416,-38],[-34,-845],[-139,-175],[-133,-538],[-9,-1135],[164,-417]],[[80829,47968],[51,421],[194,355],[360,-83],[296,-374],[268,177],[228,-134],[135,-876],[106,-218],[84,-716],[568,106]],[[86364,50995],[305,183],[93,482],[-231,-260],[-587,-33],[71,-347],[349,-25]],[[85650,51617],[-191,-115],[-50,-271],[285,-31],[-44,417]],[[85964,47862],[24,343],[166,56],[15,807],[-144,-61],[-8,790],[-112,-398],[-84,-805],[143,-732]],[[84564,48679],[323,-26],[275,-457],[50,140],[-223,626],[-211,120],[-271,-122],[-714,121],[-40,476],[248,561],[154,-286],[525,-214],[-270,568],[-251,244],[256,807],[-54,216],[236,726],[-12,414],[-155,184],[-104,-220],[148,-516],[-282,244],[-24,-418],[-195,-368],[31,-614],[-190,191],[0,1635],[-296,-94],[95,-579],[-32,-608],[-118,-4],[-80,-431],[368,-2121],[237,-467],[221,185],[355,87]],[[83657,55688],[-349,-441],[267,-124],[226,384],[-144,181]],[[84002,54604],[450,-278],[-57,350],[-428,179],[-370,-78],[10,-230],[227,-131],[168,188]],[[83143,54495],[176,-51],[58,267],[-678,206],[112,-363],[238,-228],[94,169]],[[80445,53274],[31,223],[537,63],[69,-260],[511,303],[88,408],[417,115],[329,374],[-329,240],[-299,-254],[-542,-30],[-575,-352],[-323,16],[-502,-259],[-40,-271],[-256,-47],[210,-601],[339,38],[335,294]],[[79345,49913],[140,791],[206,55],[132,399],[-84,783],[-33,974],[-312,12],[-224,-526],[-349,-513],[-320,-894],[-344,-1354],[-247,-525],[-190,-1032],[-257,-397],[-153,-539],[-522,-1046],[-31,-320],[618,147],[261,615],[383,689],[273,677],[287,10],[239,431],[165,528],[214,287],[-113,514],[261,234]],[[33322,82152],[355,726],[384,357],[365,148],[-48,296],[-220,29],[-165,-208]],[[33993,83500],[-404,-17],[-267,-1331]],[[34492,68250],[-52,1149],[53,625],[-34,547]],[[34459,70571],[10,327],[383,537],[1,434],[188,272],[14,307],[-178,802],[-356,336],[-510,130],[-294,-62],[95,372],[79,782],[-131,220],[-255,86],[-275,-228],[-82,164],[110,619],[197,187],[117,-196],[115,323],[-213,193],[-157,386],[26,955],[-239,2],[-155,315],[-7,463],[313,451],[259,123],[-4,552],[-241,344],[-45,714],[-236,524],[311,945]],[[33299,81950],[-849,-175],[-169,-351],[-80,-453],[-284,-181],[-138,-644],[144,-268],[-68,-698],[49,-524],[-20,-1295],[-198,-358],[48,-260],[-149,-235],[-158,-717],[87,-127],[-143,-759],[-18,-1196],[130,-228],[-150,-610],[-66,-576],[154,-409],[-62,-525],[88,-612],[-364,-1778],[107,-646],[-80,-609],[49,-571],[129,-591],[161,-391],[-144,-1499],[276,-310],[7,-811]],[[31588,63543],[193,-569],[370,153],[188,455],[78,-506],[366,161]],[[32783,63237],[566,1027],[229,95],[362,465],[296,246],[57,278],[-206,957],[596,267],[208,-101],[216,-483],[11,-555]],[[35118,65433],[128,-121],[158,363],[24,503],[-373,604],[-265,610],[-298,858]],[[33993,83500],[-194,422],[-753,-330],[-688,-650],[-476,-669],[650,525],[365,214],[63,-683],[175,-248],[187,71]],[[30716,60297],[158,429],[61,453],[160,267],[-53,609],[192,707],[162,867],[192,-86]],[[33299,81950],[-217,-4],[-266,364],[75,558],[-412,-180],[-737,-760],[-154,-381],[0,-354],[-202,-403],[-223,-1037],[5,-589],[185,-475],[-412,-179],[154,-544],[-71,-1028],[316,218],[-49,-1285],[-195,-166],[28,777],[-174,-87],[-107,-2045],[65,-428],[-255,-1315],[109,-20],[124,-2016],[19,-937],[-152,-942],[33,-518],[-102,-777],[94,-768],[-48,-1217],[-15,-2714],[-190,-1917]],[[30525,60781],[191,-484]],[[58615,54481],[-110,-64],[-454,181],[-84,402],[60,278],[-101,1376],[265,357],[78,-114],[12,679],[-212,-5],[-209,-615],[-213,-87],[-58,-331],[-173,200],[-222,-89],[-90,-285],[-309,-43],[-109,-212]],[[56686,56109],[-492,99],[22,-749],[-92,-233],[27,-766],[-57,-640],[-340,6],[25,-227],[-333,136],[-115,524],[-155,-88],[-278,138],[-169,-532],[-146,-846],[-828,-9],[-297,148]],[[53458,53070],[-39,-195]],[[53419,52875],[230,-635]],[[53649,52240],[324,-170],[122,290],[403,-904],[-9,-518],[123,-611],[315,-628],[85,-650],[19,-915],[154,-1109]],[[55185,47025],[24,-439],[258,-522],[412,445],[416,185],[82,-380],[167,15],[311,-314],[112,133],[236,-226],[483,14]],[[57686,45936],[174,520],[126,75],[361,-197],[317,688]],[[58664,47022],[-13,736],[112,85],[-197,391],[-166,620],[-84,1221]],[[58316,50075],[-81,176],[-77,767]],[[58158,51018],[70,286],[13,759]],[[61691,50290],[-166,-520],[-6,-2292],[241,-714]],[[61760,46764],[256,-210],[246,-445],[365,-27],[770,-1889]],[[63397,44193],[305,-912],[-23,-1233]],[[63679,42048],[595,-387],[3,871],[-119,908],[-284,1507],[-229,923],[-557,1563],[-959,1614],[-308,762],[-130,481]],[[59532,49829],[-2,-668],[320,-1130],[-161,-1038],[-136,-438]],[[59553,46555],[357,-791]],[[59910,45764],[148,106],[100,560],[195,0],[359,535],[405,112],[81,-263],[255,-263],[307,213]],[[61691,50290],[-373,561],[-192,1115],[-115,208]],[[56886,44050],[-315,-456],[20,-715],[-200,-663]],[[56391,42216],[-171,-946],[-98,36],[94,-493],[-5,-601],[188,-852],[241,43],[-58,-2498]],[[56582,36905],[-3,-264],[318,-2],[-28,-1258]],[[56869,35381],[3261,0]],[[60130,35381],[110,618],[-57,114],[184,1400],[269,388]],[[60636,37901],[-131,359],[-283,296],[-115,1344],[36,251]],[[60143,40151],[-134,1162],[-163,312],[-135,737],[-130,177],[-73,659],[11,565]],[[59519,43763],[-85,-1032],[-147,-248],[-15,-919],[-314,129],[99,563],[-281,799],[-144,65],[-240,-368],[-281,563],[-319,-130],[-380,32],[-198,-540],[-200,86],[-141,854],[-180,188],[193,245]],[[56391,42216],[-315,363],[-196,687],[-261,291],[-350,19],[30,221],[-263,466],[-351,241],[-400,54]],[[54285,44558],[43,-170],[-131,-695],[-290,-474],[59,-297],[362,25],[-155,-572],[-15,-836],[-114,-403]],[[54044,41136],[26,-297],[-179,-14],[-4,-405],[-117,-233],[113,-829],[348,-594],[6,-819],[91,-1278],[56,-270],[-230,-580],[-81,-979]],[[54073,34838],[271,-344],[2238,2411]],[[30204,36821],[-59,1050]],[[30145,37871],[-477,-108],[-137,117],[-101,-399],[456,138],[107,-140],[-190,-785],[401,127]],[[30204,36821],[255,-105],[417,357],[226,441],[-116,256],[-343,-140],[-295,91],[-133,432],[-70,-282]],[[64593,1104],[201,-100],[604,224],[920,442],[432,420],[-305,58],[-606,-135],[-464,-179],[-490,-331],[-323,-91],[31,-308]],[[67024,1902],[725,267],[160,193],[-779,185],[-342,-623],[236,-22]],[[75001,3415],[502,22],[963,262],[274,369],[-697,-13],[-183,118],[-711,-325],[-279,-340],[131,-93]],[[77165,3806],[614,131],[15,197],[-915,-241],[-143,-162],[429,75]],[[76667,4799],[170,-247],[624,326],[-794,-79]],[[57097,1299],[722,-147],[300,98],[-429,314],[-232,-251],[-361,-14]],[[55457,15299],[-741,-59]],[[54716,15240],[39,-260],[317,-192]],[[55072,14788],[369,198],[16,313]],[[60129,4606],[271,-441],[-147,-227],[733,-580],[548,-91],[509,-245],[208,346],[-944,481],[-358,476],[-189,982],[195,427],[531,423],[-777,-22],[-131,-229],[-404,-138],[-121,-279],[161,-109],[-105,-280],[218,-432],[-198,-62]],[[84467,15670],[319,576],[225,591],[963,1687],[-437,-201],[142,883],[446,629],[127,430],[-307,-371],[-19,476],[-612,-1775],[-100,-460],[-279,-811],[-366,-594],[-302,-820],[200,-240]],[[13074,7076],[130,934],[-327,334],[21,134],[309,-391],[499,80],[-32,505],[-417,236],[-400,56],[-457,534],[-372,98],[-159,-351],[157,-237],[-447,-18],[283,-391],[-374,128],[-134,255],[-328,232],[2048,-2138]],[[83670,22692],[0,0]],[[83670,22692],[-63,-110]],[[83607,22582],[47,-332],[-150,-733],[-208,-530],[159,-218],[339,109],[1,-601],[-109,-673],[-10,-776],[-356,181],[-143,242],[-382,-1],[-274,-575],[-430,-434],[-492,-195],[-281,-594],[-748,-1237],[-716,-398],[-578,123],[-98,298],[294,475],[-96,834],[83,267],[-237,384],[-363,-230]],[[78859,17968],[-280,51],[-355,-269],[-242,428],[-487,252],[-568,-93],[-552,-603],[-269,-80],[-495,192],[-416,-255],[-166,-454],[-571,-225],[-340,-249],[-91,625],[190,357],[-137,422],[-647,-175],[-232,-283],[-258,-9],[-259,-186],[-309,285],[-355,524],[-239,105]],[[71781,18328],[-86,50]],[[62387,20104],[-78,365],[-235,102],[-190,638],[287,588],[13,418],[347,733]],[[62531,22948],[-163,409],[-402,-442]],[[61966,22915],[-275,-399],[-453,-148],[-373,-298],[-611,-207],[-25,74]],[[60229,21937],[-366,-524],[-309,-234],[-247,-363],[177,-99],[169,-516],[-162,-244],[351,-250],[-236,-36]],[[59606,19671],[99,-443],[238,-45],[-66,-541],[51,-499],[-528,-191],[-180,-285],[-180,97],[-332,-214],[-117,-381],[-199,-30],[14,-309],[-188,-340],[-467,140]],[[57751,16630],[-168,-584],[321,-165],[-256,-264],[-291,-605],[-14,-436],[-675,-365]],[[56668,14211],[-155,-628],[-126,-134]],[[56387,13449],[83,-184],[-123,-539],[85,-432]],[[56432,12294],[226,-316],[-270,-270]],[[56388,11708],[562,-1045],[45,-284],[-380,-381],[38,-359],[-254,-408],[75,-466],[-341,-615],[129,-403],[-376,-354],[-30,-370]],[[55856,7023],[467,-259]],[[56323,6764],[175,-183],[395,318],[586,125],[911,598],[216,253],[92,357],[-175,283],[-320,144],[-1026,-410],[-143,68],[416,396],[168,811],[505,310],[-191,-502],[100,-208],[589,341],[156,-133],[-223,-400],[387,-530],[444,220],[38,-371],[-250,-319],[26,-319],[-234,-329],[622,170],[195,298],[-247,66],[73,297],[212,184],[298,-116],[-37,-342],[956,-709],[162,26],[-104,322],[273,55],[93,-182],[383,-14],[233,-219],[343,319],[113,-350],[-322,-306],[44,-172],[658,158],[344,165],[976,603],[31,-277],[-369,-390],[-266,-52],[-32,-248],[-349,-572],[161,-467],[-87,-465],[95,-100],[575,134],[179,284],[11,417],[427,528],[264,717],[362,324],[56,355],[-119,761],[273,80],[191,-332],[29,-520],[-247,-302],[-52,-349],[-243,-44],[-175,-292],[-74,-523],[-454,-422],[184,-347],[-228,-364],[336,272],[168,496],[257,95],[-272,-372],[224,-202],[390,-27],[516,293],[-403,-427],[-322,-542],[269,-102],[837,-43],[-320,-263],[-3,-328],[202,-14],[182,-246],[431,-66],[-43,-136],[437,-46],[236,111],[189,-261],[336,8],[-159,-418],[220,-198],[453,156],[-123,120],[470,74],[275,241],[52,-118],[525,6],[953,424],[191,257],[-344,574],[672,198],[93,-96],[359,325],[216,-211],[678,83],[244,237],[866,75],[-325,-386],[782,85],[548,268],[375,326],[68,214],[585,406],[485,210],[-265,-542],[516,232],[215,-139],[521,159],[17,-145],[387,73],[-578,-477],[45,-221],[2074,331],[466,306],[898,394],[708,-98],[481,86],[378,214],[345,382],[392,149],[516,-121],[485,103],[327,-58],[816,468],[90,-169],[-501,-336],[-147,-232],[796,146],[388,-32],[847,250],[526,230],[2048,2138],[-69,244],[-317,-41],[445,293],[730,605],[269,378],[-511,-122],[-457,488],[-150,743],[91,260],[-591,-394],[-299,447],[-241,-211],[-63,244],[-356,-78],[161,376],[57,557],[143,235],[340,129],[438,850],[-208,22],[153,492],[228,256],[-271,303],[236,680],[-296,145],[193,610],[-118,563],[-262,-416],[-1231,-2197],[-298,-814],[12,-348],[-137,-272],[290,-129],[15,-1313],[110,-452],[-373,-792],[-237,47],[190,462],[-162,621],[-643,-695],[-453,192],[25,950],[397,351],[-753,210],[-220,-415],[-406,-87],[-125,282],[-760,-99],[-666,170],[-186,1130],[-295,1387],[408,74],[271,372],[288,133],[32,-297],[280,38],[617,656],[208,511],[36,602],[239,723],[217,974],[-96,888],[43,426],[-350,1799],[-248,364],[-159,8],[-239,-302],[-230,454],[11,208]],[[85870,6099],[-408,-137],[5,-216],[403,353]],[[14532,5746],[333,127],[-736,226],[403,-353]],[[58453,20367],[56,-152],[354,297]],[[58863,20512],[140,202],[257,-37],[-34,220],[-270,108],[-320,358],[-150,-127],[36,-290],[-290,-181],[221,-398]],[[28540,32367],[310,-31],[-6,163],[-306,101],[2,-233]],[[28877,32210],[191,282],[-85,448],[-106,-730]],[[28670,33362],[133,547],[-97,396],[-128,-544],[92,-399]],[[35050,81679],[235,-361],[232,151],[110,-242],[237,272],[-40,211],[-301,180],[-144,-211],[-163,271],[-166,-271]],[[52475,1719],[266,-174],[861,509],[-383,187],[-30,352],[-135,90],[-20,403],[-211,19],[-419,-298],[135,-171],[-277,-138],[-381,-402],[-173,-367],[420,-166],[347,156]],[[55856,7023],[24,-368],[-295,-208],[-284,177],[-42,384],[-162,234],[-503,-102],[-263,-278],[-105,139]],[[54226,7001],[-115,369],[-398,-85],[-26,296],[-200,-2],[-266,976],[-279,764],[29,406],[-217,-10],[-114,519],[53,741],[158,286],[-42,666],[-259,723]],[[52550,12650],[-170,-353],[-433,666],[-307,135],[-327,-294],[-95,-617],[-100,-1307],[198,-361],[569,-466],[408,-568],[786,-1798],[805,-1059],[415,-229],[335,28],[241,-430],[366,23],[339,-104],[694,380],[-233,140],[282,328]],[[54422,1542],[-163,249],[-462,55],[-504,-77],[-517,-347],[460,-127],[260,109],[121,-135],[805,273]],[[54266,2580],[-343,196],[-329,-112],[-42,-277],[331,-96],[383,289]],[[43228,411],[683,-244],[478,18],[293,-147],[515,-38],[1065,49],[734,322],[-329,160],[-1385,61],[585,28],[388,149],[341,-132],[70,155],[-254,255],[444,-164],[780,-168],[433,83],[51,188],[-974,523],[-462,642],[-99,532],[154,317],[-599,174],[284,260],[-24,421],[-204,46],[175,430],[-422,36],[187,206],[-88,178],[-547,79],[186,345],[-32,227],[-350,-211],[-123,137],[243,128],[210,314],[18,417],[-371,100],[-323,-498],[12,352],[-276,273],[801,51],[-1230,872],[-865,185],[-253,205],[-394,566],[-527,378],[-796,282],[-252,337],[-259,748],[-445,443],[9,438],[-397,1019],[-328,35],[-251,-463],[-454,-3],[-156,-310],[-35,-548],[-226,-692],[-24,-359],[95,-491],[-163,-502],[187,-397],[-87,-189],[389,-623],[369,-197],[313,-629],[-630,338],[-196,-172],[275,-631],[550,131],[-351,-506],[-340,-56],[392,-477],[-64,-1074],[-148,-194],[98,-208],[-345,-289],[-363,-36],[-953,57],[-236,-465],[926,-178],[-663,-126],[-253,-196],[160,-185],[1586,-454],[191,-169],[-304,-166],[295,-181],[821,-313],[266,-47],[121,-197],[986,-181],[457,-3],[48,133],[591,-234],[619,332],[-188,-231],[164,-181]],[[67178,79723],[352,268],[-128,393],[-387,39],[163,-700]],[[85009,54828],[39,-148],[535,-242],[-8,250],[-548,456]],[[54419,67218],[136,-311],[143,441],[288,165],[395,-367],[52,-2324]],[[55433,64822],[220,692],[22,604],[196,-64],[487,-917],[239,253],[399,-116],[88,-498],[151,-50],[191,-655],[259,-471],[401,-463]],[[58086,63137],[480,101]],[[58566,63238],[161,1333],[-56,927]],[[58671,65498],[-214,-70],[-119,637],[150,341],[227,-347]],[[58715,66059],[206,5]],[[58921,66064],[-137,981],[-334,693],[-385,1093],[-531,1025],[-678,737],[-579,-95],[-272,44],[-805,599],[-347,-597],[-65,-789],[94,-597],[-463,-1940]],[[57827,67457],[-111,-194],[-286,375],[-157,398],[185,483],[309,-362],[146,-511],[-86,-189]],[[23543,32946],[-256,1006],[-157,1150],[88,1138],[265,1138],[281,167],[95,263],[869,-460],[193,-257],[219,-1080],[502,-311],[414,-31],[23,437],[-176,374],[-215,1256],[-118,-151]],[[25570,37585],[-263,435]],[[25307,38020],[-514,-6],[-24,355],[-125,1],[247,531],[-20,214],[-357,2],[-164,512],[-26,449]],[[24324,40078],[-275,-678],[-347,-368],[-541,345],[-626,-575],[-494,-381],[-267,-469],[-419,-236],[-361,-645],[-141,-704],[185,-621],[-126,-851],[-486,-1510],[-236,-411],[88,-389],[-243,-452],[-12,-439],[-138,-51],[-200,-638],[-89,-1152],[41,-241],[-377,-396],[-82,255],[-45,775],[309,1092],[0,406],[221,703],[108,1156],[253,920],[-206,341],[-32,-383],[-424,-823],[64,-801],[-257,-476],[-241,-236],[-112,-365],[133,-12],[180,-518],[-279,-623],[-127,-1308],[-20,-565]],[[34492,68250],[169,-67],[306,486],[98,-19],[541,751],[185,428],[-95,297],[101,355]],[[35797,70481],[-86,396],[-271,348],[-344,-58],[-267,-269],[-179,20],[-191,-347]],[[35118,65433],[29,-1082],[-305,-39],[-103,-820],[-255,-359],[-106,124],[-296,-120],[-27,-855],[-99,-350]],[[33956,61932],[127,-1261],[-83,-391],[-158,-177],[-14,-612],[-534,-26],[-136,-733],[80,-11],[-100,-819],[-343,-180],[-432,-542],[-316,-105],[-322,-563],[-16,-1136],[-362,106],[-379,492],[-56,190],[-353,-39]],[[30559,56125],[-284,36],[-10,-957],[-219,371],[-248,-16],[-116,-335],[-186,-37],[52,-270],[-167,-383],[-130,-567],[65,-381],[166,-182],[-35,-340],[83,-513],[315,-428],[265,-216],[254,30]],[[30364,51937],[111,-1727],[-39,-633],[-125,-230],[2,-458],[224,-279],[-164,-65],[-2,-394],[547,14],[94,-217],[184,494]],[[31196,48442],[154,332],[600,-483],[221,-578],[-238,-54],[-20,-819],[-72,-221],[430,238],[82,-149],[520,-333],[71,-418]],[[32944,45957],[209,117],[-39,276],[156,388],[-128,758],[88,610],[172,295],[702,-366]],[[34104,48035],[153,51],[9,-436],[406,125]],[[34672,47775],[210,-41],[100,204],[244,-284],[260,-1039]],[[35486,46615],[96,-30],[217,1449],[151,103],[5,435],[-211,519],[87,189],[497,98],[11,632],[213,-413],[822,610],[138,369],[-44,348],[326,-194],[548,334],[420,-25],[419,521],[364,706],[457,206],[104,199],[152,1182],[-98,1041],[-518,1286],[-165,712],[-333,1022],[48,1179],[-68,1385],[-81,249],[-22,841],[-252,822],[-22,650],[-212,272],[-50,379],[-298,-3],[-421,242],[-179,280],[-298,185],[-298,500],[-198,625],[49,817],[-58,943],[-169,346],[-228,1107],[-363,792],[-79,598],[-148,358]],[[33956,61932],[-13,-194],[-273,-322],[-257,-10],[-472,184],[-103,554],[-55,1093]],[[30716,60297],[141,-679],[-144,-529],[89,-760],[-19,-978],[52,-213],[-276,-1013]],[[30525,60781],[-298,-362],[-37,-258],[-583,-632],[-532,-688],[-233,-389],[-139,-520],[39,-181],[-272,-826],[-318,-1161],[-303,-1254],[-222,-750],[-434,-666],[86,-282],[-146,-599],[80,-442],[219,-397]],[[27432,51374],[-30,642],[229,19],[123,317],[154,-259],[48,-424],[166,-548],[336,-248],[302,-659],[85,-409],[-39,-479]],[[28806,49326],[75,-60],[408,758],[169,661],[210,78],[154,-167],[270,56],[218,294],[-175,641],[229,350]],[[28806,49326],[-259,-357],[-318,13],[-401,-621]],[[27828,48361],[126,-785],[140,-43],[233,-726],[-101,-150],[58,-365],[-53,-576],[29,-698],[-106,-335]],[[28154,44683],[190,-448],[-18,-462]],[[28326,43773],[144,19],[340,-506],[78,-741],[373,-434],[218,52],[491,-762],[164,205],[-62,212]],[[30072,41818],[-182,105],[-285,729],[-137,817],[144,43],[102,681],[-32,364],[130,273],[523,19],[188,541],[476,-105],[98,108],[-150,1002],[137,747],[-144,313],[173,359],[83,628]],[[28154,44683],[-140,-521],[73,-169],[-250,-426],[-398,570],[124,342],[-252,206],[-39,-376],[-181,-183],[-346,-73]],[[26745,44053],[143,-845]],[[26888,43208],[84,360],[211,131],[437,-331],[102,-188],[418,230],[186,363]],[[26745,44053],[-201,-272],[29,-248],[-342,-469],[-61,151],[-179,-365],[47,-600]],[[26038,42250],[290,4],[209,224],[72,-134]],[[26609,42344],[58,342],[221,522]],[[26038,42250],[-497,-1146],[101,-47]],[[25642,41057],[171,-176],[9,-309],[268,-51],[276,-601],[127,107],[373,-237]],[[26866,39790],[-170,1178],[2,445],[-134,658],[45,273]],[[25642,41057],[-121,-251]],[[25521,40806],[32,-253],[-216,-38],[-217,-365]],[[25120,40150],[78,-404],[282,-416]],[[25480,39330],[498,-34],[130,-141],[448,108],[310,527]],[[25521,40806],[-199,138],[-432,-360]],[[24890,40584],[230,-434]],[[25307,38020],[-100,1210],[83,0]],[[25290,39230],[190,100]],[[24890,40584],[-310,-122],[-256,-384]],[[25570,37585],[47,96],[-142,1144],[-185,405]],[[30072,41818],[-179,221],[68,615],[-135,367],[92,498],[122,-40],[75,-455],[-79,-698],[357,-257],[76,-494],[85,442],[196,10],[175,559],[551,-59],[152,282],[213,78],[170,-355],[683,-47],[-243,186],[88,297],[222,47],[204,310],[34,504],[253,135]],[[33252,43964],[-230,369],[63,464],[-246,218],[-79,465],[184,477]],[[33252,43964],[179,231],[274,749],[252,526]],[[33957,45470],[-52,567],[-173,164],[-41,473],[413,1361]],[[33957,45470],[335,127],[260,-160],[299,170]],[[34851,45607],[-152,541],[124,804],[-151,823]],[[34851,45607],[299,218],[292,532],[44,258]],[[51534,18227],[479,272],[-142,854]],[[51871,19353],[-351,550],[209,453]],[[51729,20356],[71,406],[-86,188],[187,826]],[[51901,21776],[-228,351],[-507,-168],[-371,202],[-28,373]],[[50767,22534],[-297,81],[-291,-281],[-93,134],[-472,-282],[-102,-242]],[[49512,21944],[134,-372],[52,-1231],[-442,-957],[-380,-235],[-20,-446],[324,-134],[416,157],[-75,-690],[233,262],[576,-475],[72,-496],[215,-122]],[[50617,17205],[442,752],[127,-47],[220,277]],[[51406,18187],[128,40]],[[52247,22438],[161,-238],[54,534],[-78,481],[-119,-127],[-18,-650]],[[27432,51374],[144,-471],[-62,-275],[-105,293],[-171,-276],[5,-749],[98,-95],[158,-798],[-19,-256],[348,-386]],[[31662,37575],[104,340],[-372,18],[42,-361],[226,3]],[[28539,37591],[183,57],[173,322],[-285,118],[-294,-331],[223,-166]],[[27451,34634],[449,52],[332,444],[262,-70],[443,821],[246,119],[362,462],[-42,147],[-376,111],[-586,11],[207,-350],[-276,-206],[-122,-540],[-158,24],[-316,-301],[-351,-97],[29,-280],[-267,-32],[-389,489],[-254,9],[237,-421],[570,-392]],[[58086,63137],[-378,-381],[-66,-621],[-117,-68],[-297,-691],[-230,-981]],[[56998,60395],[491,128],[413,-926],[302,-518],[212,-86]],[[58416,58993],[13,235],[233,-13],[453,537],[-19,797],[-89,906],[39,187],[-170,881],[-310,715]],[[55433,64822],[35,-1838],[272,-21],[47,-2243],[637,-241],[101,259],[424,-390]],[[56949,60348],[49,47]],[[54419,67218],[-290,-935],[-186,-2037],[-26,-1097],[-240,-779],[-192,-1150],[-220,-615],[-12,-482]],[[53253,60123],[301,-227],[385,259],[1124,-28],[187,302],[670,89],[513,-257]],[[56433,60261],[230,-143],[286,230]],[[45341,40672],[-247,-713],[124,-120],[208,-766]],[[45426,39073],[527,-291],[314,352],[345,895]],[[46612,40029],[62,752],[111,617]],[[46785,41398],[-275,69],[-334,-160]],[[46176,41307],[-515,-26],[-317,153]],[[45344,41434],[-42,-482]],[[45302,40952],[254,13],[223,-238],[240,144],[66,-323],[-288,-52],[-153,158],[-303,18]],[[46612,40029],[144,-485],[281,161],[308,-223],[1115,-9],[16,-519],[-238,-5434],[418,-10]],[[48656,33510],[1846,2746],[66,295],[301,283],[4,400],[306,-62]],[[51179,37172],[6,1450],[-151,420],[-23,388],[-627,155],[-280,248]],[[50104,39833],[-248,-118],[-413,351],[-426,768],[-134,-84],[-119,585],[-223,522],[-54,845]],[[48487,42702],[-180,173],[-43,-270],[-181,243],[-330,-43]],[[47753,42805],[-164,-380],[70,-366],[-208,-577],[-291,293],[-375,-377]],[[47643,31986],[1013,1524]],[[45426,39073],[103,-1242],[-52,-935],[32,-314],[-208,-571]],[[50755,45290],[-232,74]],[[50523,45364],[-69,-434],[12,-1446],[-68,-439],[-182,-406],[35,-331]],[[50251,42308],[350,-594]],[[50601,41714],[194,-186],[214,362]],[[51009,41890],[28,1006],[-222,583],[-52,396],[-8,1415]],[[54044,41136],[-86,236]],[[53958,41372],[-246,-675],[-281,327],[-217,-184],[-394,33],[-305,283],[-340,-325],[-273,144],[-386,-473],[-299,74],[-190,753],[-18,561]],[[50601,41714],[6,-431],[-322,-143],[-166,-716],[-15,-591]],[[51179,37172],[389,-280],[790,-1237],[929,-1199]],[[53287,34456],[436,271],[159,345],[191,-234]],[[53958,41372],[113,251],[-43,323],[-233,487],[-222,1310],[-148,259],[-131,834],[-192,212],[-264,-248],[-248,374],[-203,1053]],[[52387,46227],[-506,334],[-224,-14],[-244,-849],[-199,-414],[-459,6]],[[54285,44558],[-206,752],[-13,941],[263,880],[129,203],[43,470]],[[54501,47804],[-20,339],[-451,-315],[-354,-24]],[[53676,47804],[-506,3]],[[53170,47807],[-458,-14]],[[52712,47793],[40,-497],[-238,-523],[-127,-546]],[[50523,45364],[-226,134]],[[50297,45498],[-160,-933],[62,-567],[-70,-229],[-26,-954],[-97,-521]],[[50006,42294],[245,14]],[[50297,45498],[-849,767],[-251,-179]],[[49197,46086],[-108,-791],[74,-710],[119,-529],[-74,-896]],[[49208,43160],[-30,-831],[828,-35]],[[48487,42702],[301,478],[229,-182],[191,162]],[[49197,46086],[-323,-116],[-513,117],[-528,396]],[[47833,46483],[41,-846],[-289,-478],[48,-767]],[[47633,44392],[68,-484],[104,-75],[-132,-765],[80,-263]],[[47633,44392],[-137,238],[-230,-776],[-133,85]],[[47133,43939],[-78,36],[-30,-578],[-137,-490],[-366,132],[-233,587]],[[46289,43626],[-369,-826],[-150,-520]],[[45770,42280],[126,-307],[264,-178],[16,-488]],[[45770,42280],[-266,-305],[-160,-541]],[[47833,46483],[-363,-295],[-492,-823],[-188,-406]],[[46790,44959],[83,-385],[260,-635]],[[46790,44959],[-277,-301],[-144,-336],[-80,-696]],[[55185,47025],[-371,-141],[-167,334],[-146,586]],[[56886,44050],[159,459],[311,600],[73,378],[257,449]],[[53649,52240],[-104,-216],[-199,378]],[[53346,52402],[-229,-667]],[[53117,51735],[215,-347],[-106,-417],[286,-235],[23,-278],[150,301],[248,27],[123,-716],[-31,-491],[-133,-373],[121,-729],[-279,-74],[-58,-599]],[[53117,51735],[-474,-1155],[-170,-650],[195,-1335]],[[52668,48595],[504,-31],[-2,-757]],[[52668,48595],[-52,-96],[96,-706]],[[59174,55041],[128,282],[64,533],[-114,681],[45,522],[-188,804],[145,163]],[[59254,58026],[-855,519],[17,448]],[[56433,60261],[-354,-908],[40,-2003],[581,8],[-14,-1249]],[[59656,56483],[-85,478],[62,819],[193,194],[107,454],[6,810],[-219,569],[-172,-389],[44,-988],[-338,-404]],[[61279,55725],[40,283],[-12,2163],[42,309],[-215,886],[-187,390],[-581,546],[-331,675],[-434,707],[-36,449],[205,1004],[-23,1017],[-172,486],[-573,553],[-128,233],[47,638]],[[58715,66059],[-44,-561]],[[53419,52875],[-73,-473]],[[53253,60123],[-23,-397],[160,-1400],[162,-826],[255,-691],[20,-824],[-221,-984],[102,-381],[-250,-1550]],[[58158,51018],[171,49],[87,-358],[149,41]],[[59539,28645],[-38,197]],[[59501,28842],[-100,-87],[-35,742],[123,-85]],[[59489,29412],[-71,1249]],[[59418,30661],[-225,-1080]],[[59193,29581],[175,-1176]],[[59368,28405],[180,-118]],[[59548,28287],[-9,358]],[[59368,28405],[182,-976]],[[59550,27429],[177,278],[-179,580]],[[63828,57081],[125,683],[86,1051],[-94,488],[-81,-370],[-22,654],[-116,412],[-37,533],[-833,4399],[-481,415],[-355,-386],[-136,-1845],[67,-454],[290,-794],[40,-402],[-92,-695],[-4,-579],[158,-752],[527,-274],[409,-747],[344,-947],[116,-661],[89,271]],[[59501,28842],[-12,570]],[[45302,40952],[39,-280]],[[52550,30154],[-127,-1129],[-395,-779],[-28,-473],[159,-351],[56,-517],[-49,-597],[50,-322]],[[52216,25986],[282,-253],[185,75],[-3,317],[220,-230],[-106,427],[97,446],[-26,543],[-170,315],[56,343],[137,10],[175,397]],[[53063,28376],[-7,482],[-389,625],[13,526],[-130,145]],[[47650,31822],[6,-746],[441,-464],[490,-265],[106,-314],[315,-249],[14,-466],[278,-287],[350,-106],[-127,-1422],[-98,-403]],[[49425,27100],[255,-342],[286,-109],[420,-450],[881,-162],[133,92],[246,-246],[570,103]],[[52550,30154],[112,848],[-41,513],[20,1026],[-105,264],[166,459],[114,621],[127,-116],[219,292],[125,395]],[[59539,28645],[309,249],[488,-670]],[[60336,28224],[149,765]],[[60485,28989],[-566,410],[298,629],[-118,317],[-202,87],[-161,421],[-306,-100]],[[59430,30753],[-12,-92]],[[64102,33969],[669,78],[492,-1218]],[[65263,32829],[64,215]],[[65327,33044],[68,497]],[[65395,33541],[-140,3],[1,409],[-109,983]],[[65147,34936],[-48,133],[-841,-317],[-156,-783]],[[63875,33648],[-42,-458],[126,-398],[93,197],[-14,739]],[[64038,33728],[-163,-80]],[[62920,30363],[172,895]],[[63092,31258],[-190,17],[-85,-300],[-244,-61]],[[62573,30914],[163,-603],[184,52]],[[60336,28224],[551,-653],[54,-759],[-54,-458],[243,-546]],[[61130,25808],[106,-98],[534,135]],[[61770,25845],[223,748],[186,188],[45,366],[-117,217],[-30,490],[224,597],[349,345],[168,477],[-15,456],[278,665]],[[63081,30394],[-161,-31]],[[62573,30914],[-504,-50],[-830,-1264],[-422,-441],[-332,-170]],[[65395,33541],[313,658],[374,197],[341,790],[-300,1184],[-127,-33],[-78,470],[54,421],[-313,310],[-71,440],[-172,-6],[-91,413],[-586,364]],[[64739,38749],[-366,-1479]],[[64373,37270],[801,-629],[122,-1260],[-149,-445]],[[65263,32829],[64,215]],[[96460,59235],[134,361],[-101,83],[-33,-444]],[[96358,59094],[24,-656],[113,194],[-9,507],[-128,-45]],[[78644,41559],[-109,-760],[148,-524],[352,-119],[268,89]],[[79303,40245],[245,247],[98,-433],[262,231]],[[79908,40290],[90,420],[10,754],[-443,485],[142,381],[-292,46],[-230,254]],[[79185,42630],[-239,-93],[-302,-978]],[[78644,41559],[-266,-289],[-239,12],[14,-495],[-245,4],[15,692],[-173,1476],[37,456],[184,19],[203,1120],[168,360],[171,74],[155,326]],[[78668,45314],[-268,334],[-31,-324],[-282,-163]],[[78087,45161],[-175,-553],[-307,-654],[-98,20],[76,-996]],[[77583,42978],[233,-1234],[-139,-574],[-63,-644],[-301,-816],[154,-664],[-525,-1427],[108,-114],[73,-681],[192,-28],[284,-418]],[[77599,36378],[183,572],[190,28],[34,1229],[264,-376],[252,92],[39,-218],[213,43],[250,511],[64,621],[263,549],[24,533],[-72,283]],[[77599,36378],[237,-642]],[[77836,35736],[186,165],[-108,-720],[133,-92]],[[78047,35089],[384,1069],[340,5],[156,549],[-223,391],[363,376],[506,1299],[242,438],[101,445],[-8,629]],[[77583,42978],[-48,-468],[65,-481],[-113,-373],[-12,-686],[-132,-326],[-234,-1549],[-157,-522],[-447,765],[-341,-203],[45,-780],[-100,-590],[-270,-726],[-388,-820]],[[75451,36219],[-60,-507],[72,-356]],[[75463,35356],[123,-149],[-59,-1134],[227,144],[55,-826],[97,-528],[-46,-360],[304,-434],[207,114],[-31,-742]],[[76340,31441],[152,-46],[269,520],[108,1000],[-203,525],[43,747],[278,-104],[122,579],[185,123],[-31,522],[356,352],[184,-183],[33,260]],[[78047,35089],[133,-154],[479,-69],[198,-336],[419,352],[-7,362],[156,256],[294,164]],[[79719,35664],[-317,538],[-176,594],[-23,437],[590,1486],[280,389],[206,506],[203,1165],[27,1107],[-513,820],[-205,525],[-325,586],[-118,-403],[61,-427],[-224,-357]],[[83670,22692],[-107,-38],[-87,423],[114,448],[-179,432],[-226,270],[35,340],[333,375]],[[83553,24942],[-287,224],[-170,317]],[[83096,25483],[-430,-225],[10,-800],[-365,-338]],[[82311,24120],[335,-736],[76,-441],[397,218],[-118,-329],[333,-268],[17,-348],[256,366]],[[83553,24942],[382,739],[147,406],[147,723],[-33,345],[-380,380],[-229,54],[-134,-812],[-243,-653],[174,-105],[-288,-536]],[[78859,17968],[-1,1070],[131,250],[394,19],[132,-228],[595,625],[30,219],[-562,13],[-217,582],[-328,240],[-176,327],[-447,-181],[-43,399],[222,443],[-248,541],[-254,219],[-381,23],[-372,215],[-235,336],[-152,-194],[-312,1],[-453,-378],[-271,-93],[-325,86],[-557,-140],[-281,15],[-442,-940],[-551,-454],[-681,-193],[-142,-267],[-43,-720],[-273,-494],[-404,-231],[-276,-324],[-155,-426]],[[75463,35356],[-233,-998],[-84,403],[-179,-326],[171,-394],[75,-532],[-688,-186],[-66,-436],[-375,-304],[-55,427],[228,333],[-188,464],[183,169],[-12,379],[222,991]],[[74462,35346],[-20,230],[-517,123],[52,474],[-119,372],[-367,424],[-260,740],[-434,810],[16,289],[-495,414],[-59,480],[136,1341],[-93,598],[39,1070],[-144,31],[-111,479],[91,208],[-250,179],[-190,608],[-281,-588],[-286,-1516],[-280,-903],[-168,-1180],[-295,-864],[-307,-2026],[-136,-1352],[-376,376],[-199,-74],[-407,-763],[117,-228],[-455,-781]],[[68664,34317],[153,-421],[603,2],[-95,-540],[-178,-319],[-67,-485],[-200,-282],[245,-659],[319,48],[225,-660],[111,-638],[202,-631],[-48,-448],[191,-364],[-248,-310],[-289,-975],[101,-271],[419,153],[286,-94],[195,-526]],[[70589,26897],[370,735],[31,512],[169,642],[-202,-84],[149,693],[724,837]],[[71830,30232],[-141,285],[-47,589],[957,900],[380,81],[187,320],[558,207],[225,-11],[-76,-920]],[[73873,31683],[152,-132],[73,495]],[[74098,32046],[290,366],[161,-98],[453,23],[-21,-387],[-132,-201]],[[74849,31749],[210,-79],[194,-467],[267,-400],[244,154],[161,-265],[173,391],[-61,264],[303,94]],[[75451,36219],[-226,-953],[-146,-366],[-255,-25],[-10,610],[-352,-139]],[[74098,32046],[261,-627],[490,330]],[[71830,30232],[96,-150],[550,603],[284,392],[470,401],[643,205]],[[68664,34317],[-211,-160],[-113,-451],[-244,-480],[-495,119],[-820,100]],[[66781,33445],[54,-732],[369,-325],[-180,-392],[-48,-554],[-280,-276],[-295,-710]],[[66401,30456],[476,320],[474,-151],[192,55],[329,-262],[-35,-535],[117,-355],[214,-176],[302,-23],[115,-933],[154,-160],[-147,-414],[256,19],[13,-468],[104,-263],[-155,-577],[124,-274],[562,-204],[265,-187]],[[69761,25868],[229,293],[134,482],[465,254]],[[67833,25861],[412,-290],[158,12],[116,-561],[235,363],[36,526],[127,206],[318,-475],[457,47]],[[69692,25689],[69,179]],[[66401,30456],[199,-571],[-54,-404],[-212,-107],[-183,-901],[85,-343],[-124,-92],[69,-1239]],[[66181,26799],[293,238],[191,-84],[28,-285],[330,-285],[1,-501],[209,-121],[18,-223],[223,187]],[[68440,23923],[-71,192],[-296,-103],[19,359],[276,-49],[347,203],[482,-94]],[[69197,24431],[137,578],[255,79],[103,601]],[[70651,22611],[-15,141],[-357,337],[-57,247],[-321,74],[-44,399],[-286,-85],[-374,418],[0,289]],[[66181,26799],[-72,-529],[-199,-22],[-353,-555],[-216,-68],[-320,-317],[-473,40],[-154,358],[-220,121]],[[64174,25827],[-88,-442],[-20,-654],[-222,-212],[27,-428],[-175,-36],[8,-526],[259,153],[208,-200],[-334,-730],[-193,159],[18,456],[-119,-403]],[[61770,25845],[-180,-501],[38,-194],[-135,-718],[164,-177]],[[61657,24255],[214,524],[185,83]],[[62056,24862],[94,-18]],[[62150,24844],[270,-461],[186,137],[-64,309],[251,297]],[[62793,25126],[120,461],[259,131],[208,314],[383,108],[398,-166],[13,-147]],[[66781,33445],[-1145,-417],[-164,-772],[-137,-112],[-457,418],[-345,-209],[-303,-484],[-272,-178],[-469,-1437],[-138,103],[-185,-209],[-85,246]],[[59550,27429],[0,-738]],[[59550,26691],[214,-502],[280,-175],[363,116],[289,-235],[434,-87]],[[62056,24862],[-141,-458],[-258,-149]],[[61657,24255],[-321,-337],[-59,-524]],[[61277,23394],[351,-97]],[[61628,23297],[290,642],[-57,199],[248,272],[41,434]],[[54226,7001],[675,619],[110,825],[97,210]],[[55108,8655],[-350,154],[-168,380],[68,335],[-692,921],[-103,789],[430,714],[-166,645],[-232,135],[-31,973],[-104,549],[-290,-57],[-113,466],[-274,27],[-99,-555],[-434,-1481]],[[57751,16630],[-206,36],[-55,436],[-480,-66],[-575,-244],[-439,-33],[-239,186]],[[55757,16945],[-114,-547],[137,-122],[-125,-730]],[[55655,15546],[232,4],[245,-224],[29,-334],[181,-191],[-44,-263]],[[56298,14538],[370,-327]],[[59606,19671],[-348,249],[-233,32],[-200,229],[38,331]],[[58453,20367],[-443,-222],[-33,-230],[-228,76],[-238,795]],[[57511,20786],[-355,-120]],[[57156,20666],[123,-586],[294,9],[-284,-876],[-424,-378],[-216,150]],[[56649,18985],[-421,297],[-444,-220],[-101,131]],[[55683,19193],[-174,-331]],[[55509,18862],[97,-405]],[[55606,18457],[-23,-239],[330,-746],[-156,-527]],[[55606,18457],[-248,-234],[-436,154],[-249,-170]],[[54673,18207],[-344,-527],[-202,90],[-131,-293],[-310,-248]],[[53686,17229],[-105,-593],[-170,-534],[-7,-463]],[[53404,15639],[810,-650],[270,244],[232,7]],[[55457,15299],[198,247]],[[54243,19045],[-166,780]],[[54077,19825],[-387,258],[-209,-46]],[[53481,20037],[-366,-160],[-62,-213],[-426,136]],[[52627,19800],[-245,-129],[24,-259]],[[52406,19412],[858,-69],[-48,-399],[167,-359]],[[53383,18585],[191,196],[218,-295],[435,269]],[[54227,18755],[16,290]],[[55683,19193],[-147,128],[-231,834],[-197,116]],[[55108,20271],[-346,135]],[[54762,20406],[-304,-26],[-282,-340]],[[54176,20040],[-99,-215]],[[54243,19045],[229,224],[579,-349],[133,-181],[325,123]],[[57156,20666],[-76,-815],[-431,-866]],[[57511,20786],[-181,234],[-29,748]],[[57301,21768],[-351,-291],[-412,302],[-675,-84],[-85,-255]],[[55778,21440],[-293,-330],[-377,-839]],[[55072,14788],[-84,-495]],[[54988,14293],[258,-180],[627,-21],[425,446]],[[54988,14293],[-22,-442],[88,-366],[205,-198],[221,435],[188,-12],[7,-446]],[[55675,13264],[190,-103],[329,287],[193,1]],[[55675,13264],[-246,-474],[-49,-331],[558,-242],[494,77]],[[53686,17229],[-174,-6],[-492,516],[83,437],[280,409]],[[52406,19412],[-273,-187],[-262,128]],[[51534,18227],[-42,-404]],[[51492,17823],[22,-410]],[[51514,17413],[-52,-633],[147,0],[107,-775],[-48,-202]],[[51668,15803],[449,-321],[-80,-560]],[[52037,14922],[333,-12]],[[52370,14910],[11,229],[246,139],[5,211],[370,-275],[402,425]],[[57301,21768],[-188,701],[101,354]],[[57214,22823],[-226,-83],[-253,196]],[[56735,22936],[12,310],[-232,59],[-192,-217],[-391,153]],[[55932,23241],[-36,-412],[-137,-199]],[[55759,22630],[131,-555],[-136,-267],[24,-368]],[[56958,27018],[-26,186],[-379,53],[-329,-227],[40,-266],[152,211],[542,43]],[[56735,22936],[134,166],[-120,460]],[[56749,23562],[-296,-77],[-307,162],[195,351],[-272,102],[-151,-322],[30,510],[142,293],[-93,137],[293,470],[17,354],[-249,-166],[90,320],[-164,65],[119,553],[-174,8],[-226,-272],[-176,-918],[-281,-822]],[[55246,24310],[198,-760]],[[55444,23550],[488,-309]],[[59550,26691],[-183,-466],[-229,-144],[-162,360],[-396,70],[-230,-336],[-286,-21],[-227,334],[-270,-333],[-286,11],[-184,-623],[-206,-348],[105,-486],[-178,-299],[260,-597],[399,-24],[84,-474],[497,82],[288,-404],[290,-176],[425,-14],[479,440],[388,241],[521,-41],[281,-325]],[[60730,23118],[273,-30],[274,306]],[[57214,22823],[240,594],[-306,35],[-301,529],[-98,-419]],[[55246,24310],[-207,-391],[-45,-1014]],[[54994,22905],[76,-505],[89,62]],[[55159,22462],[150,456]],[[55309,22918],[22,480],[113,152]],[[54762,20406],[159,415],[-89,233]],[[54832,21054],[-518,-231],[-309,256],[528,1110],[236,235]],[[54769,22424],[-25,106]],[[54744,22530],[-646,-638],[-228,-456],[-85,-516],[-167,-97],[-70,266],[-73,-431]],[[53475,20658],[410,30],[96,-485],[195,-163]],[[52627,19800],[-123,356],[-189,-78],[-49,249],[-166,-78],[-138,209],[-233,-102]],[[51406,18187],[86,-364]],[[50617,17205],[195,-120]],[[50812,17085],[405,-77],[297,405]],[[50812,17085],[124,-165],[204,-884],[327,-250],[201,17]],[[47670,22903],[202,-249],[61,304],[347,-57],[69,312],[-122,169],[-66,874],[-113,50],[99,376],[-77,411],[88,185],[-119,613]],[[48039,25891],[-108,162],[-273,-19],[27,-875],[-175,-295],[218,-1263],[-58,-698]],[[47670,22903],[20,-443],[-100,-270],[370,-448],[926,215],[626,-13]],[[50767,22534],[16,362],[-242,414],[-331,132],[-283,1064],[101,358],[-151,278],[-57,407],[-198,125],[-188,482],[-585,-2],[-269,458],[-129,-52],[-167,-572],[-245,-97]],[[48507,15573],[32,426],[-193,536],[-441,355],[-343,-91],[213,-627],[-109,-607],[527,-743]],[[48193,14822],[-15,637],[329,114]],[[95641,62501],[266,679],[-128,152],[-278,-454],[-247,-777],[109,-204],[278,604]],[[95349,55830],[-132,212],[-79,-387],[211,175]],[[95264,55274],[-50,116],[-173,-546],[60,-376],[163,806]],[[95021,55445],[-277,-49],[-19,-347],[296,396]],[[94753,54280],[59,326],[-441,-704],[382,378]],[[95968,74427],[-466,763],[-278,249],[-72,-253],[309,-513],[21,-345],[-206,-249],[327,-444],[286,-887],[46,-530],[-117,-814],[1,-444],[331,462],[-74,558],[11,660],[123,-428],[73,171],[-94,474],[316,254],[330,-166],[-414,920],[-195,-12],[-258,574]],[[93413,76599],[586,-647],[410,-622],[146,-348],[270,-288],[-46,522],[264,-252],[-92,526],[-721,996],[-6,298],[-199,8],[-299,233],[-574,1030],[-489,451],[-228,-13],[-90,-202],[-258,-44],[38,-227],[295,-457],[527,-611],[466,-353]],[[88260,74890],[144,42],[-181,740],[-315,714],[-41,-170],[-302,433],[-194,-54],[-9,-531],[71,-953],[81,-286],[349,270],[397,-205]],[[83740,69506],[-595,468],[-252,584],[-405,71],[-216,-114],[-390,97],[-615,683],[-367,-24],[-336,-521],[66,-359],[214,-229],[158,-1034],[-46,-637],[72,-716],[-117,-845],[31,-493],[-28,-1078],[163,426],[35,-323],[-119,-882],[218,-833],[11,-369],[161,-452],[-30,479],[162,-432],[641,-711],[199,29],[1009,-669],[473,-936],[74,-593],[240,-535],[70,543],[130,-125],[-73,-298],[113,-306],[110,137],[74,-479],[429,-841],[404,-260],[310,661],[345,64],[-31,-346],[424,-1186],[184,-221],[381,-44],[16,-322],[-192,-208],[155,-91],[307,414],[468,291],[351,-246],[106,311],[-540,1489],[5,176],[387,550],[519,945],[242,213],[205,-215],[371,-1463],[21,-848],[110,-812],[307,-1095],[50,703],[134,661],[-36,585],[58,494],[200,-238],[180,513],[-54,279],[18,854],[79,614],[-22,754],[261,329],[309,573],[63,1228],[284,38],[-50,667],[358,1136],[-7,506],[-140,748],[34,534],[-119,557],[-282,853],[-209,811],[-237,572],[-262,308],[-730,1651],[-345,1100],[-203,217],[-299,23],[-304,256],[-403,512],[-282,-388],[118,-326],[-508,572],[-662,-495],[-81,-385],[63,-793],[-76,-254],[-238,-76],[150,-304],[31,-466],[-218,434],[-259,115],[210,-347],[276,-669],[69,-466],[-529,750],[-201,500],[-156,-258],[74,-333],[-176,-691],[77,-146],[-274,-380],[-184,-18],[-204,-306],[-491,60],[-726,434],[-248,-42]],[[72936,44495],[-27,656],[-355,322],[-144,-500],[-72,-905],[96,-1022],[205,350],[297,1099]],[[80303,37775],[-243,-195],[-55,-542],[111,-284],[445,-162],[84,240],[-128,641],[-214,302]],[[82311,24120],[-324,181],[-131,293],[-247,171],[80,-290],[-105,-244],[117,-419],[-208,-327],[-380,654],[-78,403],[-250,31],[-75,291],[220,424],[234,102],[63,281],[243,184],[207,-448],[454,260],[106,329],[-339,175],[-60,338],[-199,314],[-56,440],[346,345],[211,618],[520,1058],[71,467],[-141,171],[305,531],[39,1011],[-143,56],[-213,1507],[-159,751],[-627,1111],[-302,73],[-137,279],[-117,-205],[-122,313],[-352,316],[-281,96],[-30,664],[-149,38],[-116,-457],[41,-243],[-389,-202],[-119,103]],[[83284,33875],[-102,1526],[-205,-532],[-86,-467],[86,-619],[158,-476],[149,188],[0,380]],[[53481,20037],[49,565]],[[53530,20602],[-204,-90],[-200,220],[-5,482],[91,315],[248,313],[143,513],[300,501],[201,-3],[-1,261],[434,414],[232,325],[-10,340],[-154,-291],[-229,-103],[-97,404],[195,231],[-255,900],[-108,49],[94,-661],[-200,-677],[-481,-711],[-193,-40],[-634,-1044],[-92,-615],[-340,-275],[-364,416]],[[53866,25236],[197,-54],[-86,1008],[-715,-622],[30,-322],[574,-10]],[[52255,23514],[127,-193],[162,442],[-23,827],[-222,168],[-101,-165],[-86,-1111],[143,32]],[[52037,14922],[-106,-327],[-22,-601],[97,-332],[205,-37],[259,-325],[-25,653],[131,89],[-280,581],[74,287]],[[52929,14246],[87,295],[-124,478],[-262,-334],[-42,-245],[341,-194]],[[48193,14822],[200,-24],[250,366],[-136,409]],[[49252,15849],[38,-346],[-160,-374],[-289,-104],[-40,-587],[-132,278],[-5,-566],[-113,-299],[98,-602],[190,-470],[464,-1],[-256,626],[494,-77],[-64,474],[-217,526],[245,37],[228,759],[163,95],[217,915],[295,114],[-152,561],[99,311],[-220,317],[-329,-6],[-420,167],[-114,-119],[-165,284],[-228,-69],[-176,232],[-130,-121],[369,-637],[221,-130],[-383,-101],[-66,-239],[257,-187],[-129,-324],[51,-391],[359,54]],[[46916,8413],[-75,350],[217,371],[-311,417],[-859,478],[-878,-256],[241,-243],[-444,-268],[395,-105],[9,-161],[-437,-126],[188,-353],[332,-79],[292,366],[355,-294],[253,153],[373,-288],[349,38]],[[62531,22948],[335,770],[219,197],[-209,50],[-83,1161]],[[61628,23297],[434,41],[-96,-423]],[[60730,23118],[-79,-690],[-422,-491]],[[83718,41233],[-174,-480],[241,24],[112,227],[-39,543],[-140,-314]],[[84308,42947],[70,-567],[152,-37],[-21,424],[172,-607],[8,600],[-237,791],[-193,-435],[49,-169]],[[85417,43934],[76,771],[-74,576],[-126,-642],[-120,320],[106,463],[-71,295],[-342,-365],[-94,-456],[74,-298],[-190,-299],[-405,588],[-53,-184],[90,-531],[311,-414],[111,286],[207,-173],[32,-281],[197,-16],[-40,-487],[242,298],[69,549]],[[83185,43366],[-346,598],[118,-441],[330,-824],[113,-626],[78,514],[-293,779]],[[83862,37758],[-21,261],[135,451],[-28,523],[-147,209],[-3,507],[100,502],[270,-5],[374,349],[88,783],[-363,-639],[-55,231],[-204,-377],[-248,93],[-148,-139],[-206,-701],[-121,-877],[129,208],[-55,-986],[38,-570],[465,177]],[[84105,42045],[-61,-301],[357,194],[10,263],[-282,457],[-24,-613]],[[85044,41574],[121,703],[-225,-167],[108,600],[-126,141],[-35,-443],[-152,-413],[148,-189],[-200,-480],[268,13],[93,235]],[[78668,45314],[242,439],[126,421],[56,1299],[101,174],[112,769],[-199,43],[-608,-967],[-205,-741],[-157,-864],[-49,-726]],[[80829,47968],[208,215],[216,-117],[51,-533],[454,-256],[323,-896]],[[82081,46381],[135,327],[189,-195],[12,-711]],[[82417,45802],[204,-438],[126,-493],[113,-2],[177,593],[428,364],[-13,247],[-188,31],[58,308],[-203,214]],[[82081,46381],[336,-579]],[[53475,20658],[55,-56]],[[56388,11708],[-408,45],[-742,329],[-396,-497],[1,-556],[-156,-505],[240,-672],[562,-710],[-50,-230],[-331,-257]],[[54227,18755],[446,-548]],[[60636,37901],[273,1306],[555,902],[416,937],[141,190]],[[62021,41236],[-201,99]],[[61820,41335],[-428,-992],[-511,-392],[-160,148],[-175,-285],[-76,469],[-327,-132]],[[87006,24587],[-92,630],[150,646],[12,501],[114,314],[-45,442],[-277,295],[-459,38],[-237,717],[-225,-241],[-104,-469],[-434,138],[-258,296],[-309,12],[357,462],[12,1068],[-127,264],[-172,-244],[-33,-567],[-202,-183],[-186,-430],[216,-194],[65,-394],[205,-325],[109,-428],[489,-188],[309,128],[40,-1114],[241,299],[341,-869],[-15,-765],[-215,-702],[11,-395],[245,-113],[359,864],[115,507]],[[86931,21610],[105,-262],[256,696],[-333,170],[-59,618],[-517,-425],[38,680],[-284,9],[-197,-618],[0,-478],[263,-35],[-231,-1338],[486,644],[473,339]],[[85261,28170],[76,-374],[165,73],[58,-264],[297,351],[-77,379],[-148,-201],[-111,514],[-207,-179],[-53,-299]],[[64739,38749],[-195,169],[-43,494],[-704,559],[-236,445],[-206,-3],[-156,262],[-477,189],[-168,372],[-419,39],[-268,-1940],[11,-395]],[[61878,38940],[115,-201],[28,-575],[119,163],[393,-71],[630,199],[175,-660],[248,-284],[787,-241]],[[63092,31258],[137,543],[401,630],[15,468],[230,749]],[[64038,33728],[64,241]],[[61878,38940],[-163,-710],[-150,-226],[-260,-1040],[-332,-536],[-203,-600],[-49,-811],[-183,-698],[-290,-376],[-95,-503],[-641,-1874],[-135,3],[53,-816]],[[41646,95975],[296,-104],[608,310],[451,723],[-170,145],[-687,309],[-388,-27],[-416,-337],[262,-125],[44,-894]],[[39379,97010],[755,62],[-56,-350],[305,189],[245,435],[-705,-35],[-544,-301]],[[35375,92588],[345,-41],[-319,-877],[168,-330],[817,1086],[211,625],[-366,171],[-258,-10],[-2,-201],[-378,141],[-338,-362],[120,-202]],[[29966,92910],[62,-91],[866,181],[176,-60],[300,291],[-894,-10],[-510,-311]],[[26746,93809],[-106,-169],[619,169],[151,-89],[-21,306],[-643,-217]],[[25772,93709],[41,-109],[763,317],[-804,-208]],[[22326,96236],[-192,-177],[440,75],[1251,526],[-197,64],[-1302,-488]],[[27042,98862],[-803,-211],[730,117],[-397,-132],[899,161],[-533,-176],[137,-67],[1401,256],[1523,201],[842,79],[-68,-93],[1577,170],[-162,-190],[-602,-167],[-1294,-100],[-1262,-232],[-1802,-675],[-1561,-412],[643,-43],[541,148],[-79,-297],[-559,-340],[-908,-264],[-1195,-138],[-1260,-492],[-867,-550],[530,200],[406,-115],[438,210],[210,-48],[120,-400],[208,-48],[-671,-542],[137,-87],[296,164],[240,-223],[449,-59],[332,-333],[554,0],[336,88],[425,-78],[624,97],[1045,-19],[220,-226],[328,108],[206,-266],[727,502],[69,-148],[1006,383],[399,-118],[919,176],[-70,-215],[-473,-344],[-519,-227],[-518,-567],[699,70],[1062,438],[590,-229],[500,80],[-74,-388],[294,229],[486,40],[276,199],[818,188],[13,-368],[302,199],[234,-49],[476,277],[488,-288],[648,-198],[176,-270],[-169,-432],[-582,-793],[-159,-410],[-31,-620],[-229,-440],[145,-599],[209,-329],[174,-525],[569,-376],[199,-315],[322,77],[-273,464],[-351,-32],[-285,429],[114,416],[157,180],[-290,169],[-172,578],[38,198],[323,384],[433,289],[707,972],[214,474],[376,590],[90,268],[-45,375],[-216,69],[-28,342],[-180,185],[-550,291],[-22,202],[-1156,38],[187,191],[327,86],[516,302],[-81,150],[-331,-47],[-149,122],[297,380],[885,498],[406,72],[1181,404],[936,189],[797,268],[584,348],[261,-398],[389,-226],[369,-9],[784,160],[106,-314],[383,-9],[1316,-448],[-357,-498],[-949,91],[-225,-527],[503,-328],[452,-476],[564,-193],[525,-86],[821,-486],[298,-313],[32,-197],[-213,-119],[152,-366],[389,-220],[319,-361],[213,-383],[579,222],[91,-394],[274,243],[236,30],[501,-151],[225,29],[86,213],[216,-171],[653,-234],[611,-316],[130,-184],[357,62],[233,428],[234,-102],[322,-347],[263,31],[61,194],[184,-194],[676,-72],[432,92],[180,327],[232,-92],[692,-30],[436,-133],[810,-431],[318,-465],[198,84],[193,309],[222,-41],[223,319],[360,-350],[462,-269],[488,-176],[587,-354],[180,62],[412,-335],[403,-116],[92,-189],[422,-254],[446,-128],[366,86],[80,380],[213,326],[231,63],[214,292],[188,32],[461,-324],[512,240],[396,42],[-45,550],[-184,371],[-487,327],[-58,204],[227,-11],[-485,608],[278,211],[268,-90],[733,-708],[353,-439],[865,-216],[572,-599],[1029,-595],[186,52],[886,-231],[273,-358],[-7,401],[309,147],[233,-64],[705,32],[102,115],[686,-147],[180,74],[1140,-908],[185,223],[128,517],[395,11],[535,-137],[497,-307],[477,-137],[163,444],[245,-21],[226,273],[475,10],[524,-336],[547,85],[446,-85],[311,105],[541,-179],[927,-116],[401,-489],[34,149],[-256,645],[108,96],[1247,-85],[465,63],[-172,524],[240,260],[534,259],[511,-165],[129,433],[377,113],[-96,205],[223,388],[674,10],[343,112],[172,223],[-276,353],[-1280,798],[-1048,365],[-1028,538],[-1230,789],[-620,539],[209,66],[-287,205],[-870,175],[-349,19],[-1078,481],[-858,337],[-126,148],[-634,341],[-643,528],[-606,192],[73,83],[-442,139],[758,-95],[-367,204],[-5090,794],[-6430,343],[-22875,0],[-6430,-343],[-5090,-794]],[[58669,27119],[471,-334],[-140,385]],[[59000,27170],[-331,-51]],[[59000,27170],[-249,305],[-207,-333],[125,-23]],[[45317,35746],[18,-292],[202,-500],[87,-657],[252,-502],[194,-1091],[185,-230],[183,-642],[144,-250],[253,-69],[357,-599],[232,-524],[-58,-783],[149,-872],[177,-424],[470,-547],[270,-1034],[195,2],[157,267],[252,-44],[389,145]],[[56869,35381],[-122,-4554],[-96,-507],[6,-657],[87,-301]],[[56744,29362],[356,-11],[666,450],[302,-380],[428,28],[572,290],[125,-158]],[[59418,30661],[-223,1166],[-232,-484],[-228,-901],[112,720],[434,1613],[485,1394],[-27,519],[391,693]],[[53063,28376],[317,217],[337,50],[359,280],[137,560],[628,385],[294,312],[249,-452],[-75,-481],[259,-601],[182,-85],[365,128],[100,281],[457,184],[72,208]],[[59910,45764],[-172,-685],[-326,-704],[-173,-45],[92,-359],[188,-208]],[[61820,41335],[-180,573],[33,366],[287,79]],[[61960,42353],[-57,222],[329,874],[929,748],[236,-4]],[[62021,41236],[68,456],[-156,151],[123,172]],[[62056,42015],[-96,338]],[[62056,42015],[285,640],[702,-233],[477,-353],[159,-21]],[[58552,49945],[-236,130]],[[58664,47022],[116,-172],[178,141],[423,-146],[172,-290]],[[54832,21054],[171,508],[-85,320]],[[54918,21882],[-149,542]],[[55309,22918],[245,-242]],[[55554,22676],[205,-46]],[[55554,22676],[40,-273],[-262,-365],[-131,286]],[[55201,22324],[-283,-442]],[[54994,22905],[-250,-375]],[[55201,22324],[-42,138]],[[32750,42457],[221,-60],[-23,469],[-236,69],[38,-478]]]} \ No newline at end of file diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 422a1abf..740123ff 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -20,4 +20,4 @@ }, "include": ["./src", "./setupTests.ts"], "exclude": ["node_modules/**"] -} +} \ No newline at end of file